Repository: simolus3/sqlite3.dart Branch: main Commit: 366921dae224 Files: 359 Total size: 9.0 MB Directory structure: gitextract_d7om4gvc/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── compile_sqlite.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── UPGRADING_TO_V3.md ├── examples/ │ ├── flutter_integration_tests/ │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android/ │ │ │ ├── .gitignore │ │ │ ├── app/ │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src/ │ │ │ │ ├── debug/ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main/ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin/ │ │ │ │ │ │ └── com/ │ │ │ │ │ │ └── example/ │ │ │ │ │ │ └── flutter_integration_tests/ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res/ │ │ │ │ │ ├── drawable/ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable-v21/ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── values/ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values-night/ │ │ │ │ │ └── styles.xml │ │ │ │ └── profile/ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle.kts │ │ │ ├── gradle/ │ │ │ │ └── wrapper/ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradle.properties │ │ │ └── settings.gradle.kts │ │ ├── integration_test/ │ │ │ └── integration_test.dart │ │ ├── ios/ │ │ │ ├── .gitignore │ │ │ ├── Flutter/ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner/ │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.imageset/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj/ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ │ ├── Runner.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── RunnerTests/ │ │ │ └── RunnerTests.swift │ │ ├── lib/ │ │ │ └── main.dart │ │ ├── linux/ │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ └── generated_plugins.cmake │ │ │ └── runner/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cc │ │ │ ├── my_application.cc │ │ │ └── my_application.h │ │ ├── macos/ │ │ │ ├── .gitignore │ │ │ ├── Flutter/ │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Runner/ │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj/ │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs/ │ │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ ├── Release.xcconfig │ │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ │ ├── Runner.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── RunnerTests/ │ │ │ └── RunnerTests.swift │ │ ├── pubspec.yaml │ │ └── windows/ │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter/ │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ └── runner/ │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h │ ├── multiplatform/ │ │ ├── analysis_options.yaml │ │ ├── db/ │ │ │ ├── db.dart │ │ │ └── sqlite3/ │ │ │ ├── native.dart │ │ │ ├── sqlite3.dart │ │ │ ├── unsupported.dart │ │ │ └── web.dart │ │ ├── main.dart │ │ └── pubspec.yaml │ └── pubspec.yaml ├── legacy/ │ ├── sqlcipher_flutter_libs/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib/ │ │ │ └── sqlcipher_flutter_libs.dart │ │ └── pubspec.yaml │ └── sqlite3_flutter_libs/ │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib/ │ │ └── sqlite3_flutter_libs.dart │ └── pubspec.yaml ├── native_tests/ │ ├── all_native_tests.dart │ ├── analysis_options.yaml │ ├── ignorelist.txt │ ├── pubspec.yaml │ └── run.dart ├── pubspec.yaml ├── sqlite3/ │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── assets/ │ │ ├── sqlite3.h │ │ └── sqlite3_dart_wasm.h │ ├── build.yaml │ ├── dart_test.yaml │ ├── dartdoc_options.yaml │ ├── doc/ │ │ ├── common.md │ │ ├── hook.md │ │ ├── native.md │ │ ├── releasing.md │ │ └── wasm.md │ ├── example/ │ │ ├── custom_extension/ │ │ │ ├── README.md │ │ │ ├── example/ │ │ │ │ └── main.dart │ │ │ ├── hook/ │ │ │ │ └── build.dart │ │ │ ├── lib/ │ │ │ │ └── sqlite_vec.dart │ │ │ ├── pubspec.yaml │ │ │ └── test/ │ │ │ └── extension_test.dart │ │ ├── custom_wasm_build/ │ │ │ ├── .cargo/ │ │ │ │ └── config.toml │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── build.rs │ │ │ ├── link.dart │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── jsonb.dart │ │ ├── main.dart │ │ └── web/ │ │ ├── README.md │ │ ├── index.html │ │ ├── main.dart │ │ └── worker.dart │ ├── hook/ │ │ └── build.dart │ ├── lib/ │ │ ├── common.dart │ │ ├── sqlite3.dart │ │ ├── src/ │ │ │ ├── constants.dart │ │ │ ├── database.dart │ │ │ ├── exception.dart │ │ │ ├── ffi/ │ │ │ │ ├── api.dart │ │ │ │ ├── bindings.dart │ │ │ │ ├── implementation.dart │ │ │ │ ├── libsqlite3.g.dart │ │ │ │ └── memory.dart │ │ │ ├── functions.dart │ │ │ ├── hook/ │ │ │ │ ├── asset_hashes.dart │ │ │ │ ├── assets.dart │ │ │ │ ├── description.dart │ │ │ │ ├── used_symbols.dart │ │ │ │ └── utils.dart │ │ │ ├── implementation/ │ │ │ │ ├── bindings.dart │ │ │ │ ├── database.dart │ │ │ │ ├── exception.dart │ │ │ │ ├── session.dart │ │ │ │ ├── sqlite3.dart │ │ │ │ ├── statement.dart │ │ │ │ └── utils.dart │ │ │ ├── in_memory_vfs.dart │ │ │ ├── jsonb.dart │ │ │ ├── result_set.dart │ │ │ ├── session.dart │ │ │ ├── sqlite3.dart │ │ │ ├── statement.dart │ │ │ ├── utils.dart │ │ │ ├── vfs.dart │ │ │ └── wasm/ │ │ │ ├── bindings.dart │ │ │ ├── injected_values.dart │ │ │ ├── js_interop/ │ │ │ │ ├── atomics.dart │ │ │ │ ├── core.dart │ │ │ │ ├── fetch.dart │ │ │ │ ├── file_system_access.dart │ │ │ │ ├── indexed_db.dart │ │ │ │ ├── new_file_system_access.dart │ │ │ │ └── typed_data.dart │ │ │ ├── js_interop.dart │ │ │ ├── loader.dart │ │ │ ├── sqlite3.dart │ │ │ ├── sqlite3_wasm.g.dart │ │ │ ├── vfs/ │ │ │ │ ├── async_opfs/ │ │ │ │ │ ├── client.dart │ │ │ │ │ ├── sync_channel.dart │ │ │ │ │ └── worker.dart │ │ │ │ ├── indexed_db.dart │ │ │ │ └── simple_opfs.dart │ │ │ └── wasm_interop.dart │ │ ├── unstable/ │ │ │ └── ffi_bindings.dart │ │ └── wasm.dart │ ├── pubspec.yaml │ ├── test/ │ │ ├── common/ │ │ │ ├── database.dart │ │ │ ├── prepared_statement.dart │ │ │ ├── session.dart │ │ │ ├── utils.dart │ │ │ └── vfs.dart │ │ ├── ffi/ │ │ │ ├── common_database_test.dart │ │ │ ├── database_test.dart │ │ │ ├── errors_test.dart │ │ │ ├── ffi_test.dart │ │ │ ├── prepared_statement_test.dart │ │ │ ├── sqlite3_test.dart │ │ │ └── vfs_test.dart │ │ ├── hook/ │ │ │ ├── assets_test.dart │ │ │ └── description_test.dart │ │ ├── jsonb_test.dart │ │ ├── source_code_test.dart │ │ └── wasm/ │ │ ├── asset_server.dart │ │ ├── common_database_test.dart │ │ ├── encryption_test.dart │ │ ├── file_system_test.dart │ │ ├── prepared_statement_test.dart │ │ ├── sqlite3_test.dart │ │ ├── utils.dart │ │ ├── worker.dart │ │ └── worker_server.dart │ └── tool/ │ ├── check_compile_time_option.dart │ ├── example_server.dart │ ├── format_native.sh │ └── generate_bindings.dart ├── sqlite3_connection_pool/ │ ├── .cargo/ │ │ └── config.toml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example/ │ │ └── main.dart │ ├── hook/ │ │ └── build.dart │ ├── lib/ │ │ ├── sqlite3_connection_pool.dart │ │ └── src/ │ │ ├── abort_exception.dart │ │ ├── connection.dart │ │ ├── ffi.g.dart │ │ ├── mutex.dart │ │ ├── pool.dart │ │ └── raw.dart │ ├── pubspec.yaml │ ├── src/ │ │ ├── client.rs │ │ ├── connection.rs │ │ ├── dart.rs │ │ ├── headers.h │ │ ├── lib.rs │ │ ├── pool.rs │ │ ├── registry.rs │ │ └── update_hook.rs │ ├── test/ │ │ └── pool_test.dart │ └── tool/ │ ├── build_apple.sh │ ├── build_linux.sh │ ├── build_linux_sanitizer.sh │ └── generate_bindings.dart ├── sqlite3_test/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example/ │ │ └── sqlite3_test_example.dart │ ├── lib/ │ │ └── sqlite3_test.dart │ ├── pubspec.yaml │ └── test/ │ └── sqlite3_test_test.dart ├── sqlite3_wasm_build/ │ ├── README.md │ ├── pubspec.yaml │ ├── src/ │ │ ├── CMakeLists.txt │ │ ├── bridge.h │ │ ├── external_objects.c │ │ ├── external_objects.h │ │ ├── getentropy.c │ │ ├── helpers.c │ │ ├── os_web.c │ │ └── sqlite_cfg.h │ └── tool/ │ └── wasm_symbols.dart ├── sqlite3_web/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── benchmark/ │ │ ├── benchmark.dart │ │ ├── index.html │ │ ├── main.dart │ │ ├── message.dart │ │ ├── sql/ │ │ │ ├── benchmark1.sql │ │ │ ├── benchmark10.sql │ │ │ ├── benchmark11.sql │ │ │ ├── benchmark12.sql │ │ │ ├── benchmark13.sql │ │ │ ├── benchmark14.sql │ │ │ ├── benchmark15.sql │ │ │ ├── benchmark16.sql │ │ │ ├── benchmark2.sql │ │ │ ├── benchmark3.sql │ │ │ ├── benchmark4.sql │ │ │ ├── benchmark5.sql │ │ │ ├── benchmark6.sql │ │ │ ├── benchmark7.sql │ │ │ ├── benchmark8.sql │ │ │ └── benchmark9.sql │ │ └── worker.dart │ ├── build.yaml │ ├── dart_test.yaml │ ├── example/ │ │ ├── controller.dart │ │ ├── index.html │ │ ├── main.dart │ │ ├── main.js │ │ └── worker.dart │ ├── lib/ │ │ ├── protocol_utils.dart │ │ ├── sqlite3_web.dart │ │ └── src/ │ │ ├── channel.dart │ │ ├── client.dart │ │ ├── database.dart │ │ ├── locks.dart │ │ ├── protocol/ │ │ │ ├── compatibility_result.dart │ │ │ ├── dsl.dart │ │ │ ├── extensions.dart │ │ │ ├── helper.g.dart │ │ │ └── messages.dart │ │ ├── protocol.dart │ │ ├── shared.dart │ │ ├── types.dart │ │ ├── worker.dart │ │ └── worker_connector.dart │ ├── pubspec.yaml │ ├── test/ │ │ ├── asset_server.dart │ │ ├── client_test.dart │ │ ├── integration_test.dart │ │ ├── protocol_test.dart │ │ └── worker_test.dart │ ├── tool/ │ │ ├── protocol_generator.dart │ │ └── server.dart │ └── web/ │ ├── controller.dart │ ├── index.html │ ├── main.dart │ ├── main.js │ └── worker.dart └── tool/ ├── build_sqlite.dart ├── build_with_sanitizers.dart ├── download_sqlite.dart ├── hook_overrides.dart └── write_asset_hashes.dart ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ sqlite3_web/benchmark/sql/* -linguist-detectable ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: weekly groups: all-github-actions: patterns: - "*" - package-ecosystem: "pub" versioning-strategy: "increase-if-necessary" directory: "/" schedule: interval: "weekly" groups: all-pub-dependencies: patterns: - "*" ================================================ FILE: .github/workflows/compile_sqlite.yml ================================================ name: Download and compile SQLite on: workflow_call: outputs: artifact_id: description: "ID of the artifact containing prebuilt SQLite libraries" value: ${{ jobs.merge_assets.outputs.sqlite_merged }} pool_libs_artifact_id: description: "ID of the artifact containing libraries for sqlite3_connection_pool" value: ${{ jobs.merge_assets.outputs.pool_libs }} sanitized_artifact_id: description: "ID of the artifact containing libraries compiled with sanitizers" value: ${{ jobs.build_with_sanitizers.outputs.libs }} jobs: download_sqlite: runs-on: ubuntu-latest name: Download SQLite sources steps: - uses: actions/checkout@v6 - uses: actions/cache@v5 id: cache_build with: path: sqlite-src/ key: sqlite-src-${{ hashFiles('tool/download_sqlite.dart') }} - uses: dart-lang/setup-dart@v1 if: steps.cache_build.outputs.cache-hit != 'true' - name: Download sqlite3 if: steps.cache_build.outputs.cache-hit != 'true' run: | dart run tool/download_sqlite.dart - name: Upload sqlite3 sources uses: actions/upload-artifact@v7 with: name: sqlite-src path: sqlite-src/ if-no-files-found: error retention-days: 1 build_sqlite: needs: [download_sqlite] strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} name: Compile sqlite3 steps: - uses: actions/checkout@v6 - uses: actions/cache@v5 id: cache_build with: path: sqlite-compiled key: sqlite-prebuilt-${{ runner.os }}-${{ hashFiles('tool/**', 'sqlite3/lib/src/hook/description.dart', 'sqlite3/lib/src/hook/used_symbols.dart') }} - name: Download sqlite3 sources if: steps.cache_build.outputs.cache-hit != 'true' uses: actions/download-artifact@v8 with: name: sqlite-src path: sqlite-src - uses: dart-lang/setup-dart@v1 if: steps.cache_build.outputs.cache-hit != 'true' - name: Install cross-compiling GCC shell: bash if: runner.os == 'Linux' && steps.cache_build.outputs.cache-hit != 'true' run: | sudo apt update sudo apt install -y gcc-aarch64-linux-gnu gcc-riscv64-linux-gnu gcc-arm-linux-gnueabihf gcc-i686-linux-gnu - name: Compile sqlite3 if: steps.cache_build.outputs.cache-hit != 'true' run: | dart pub get dart run tool/build_sqlite.dart - name: Upload sqlite3 binaries uses: actions/upload-artifact@v7 with: name: sqlite3-libs-${{ runner.os }} path: sqlite-compiled if-no-files-found: error retention-days: 1 build_with_sanitizers: needs: [download_sqlite] runs-on: ubuntu-latest outputs: libs: ${{ steps.upload.outputs.artifact-id }} steps: - uses: actions/checkout@v6 - uses: actions/cache@v5 id: cache_build with: path: sqlite-sanitized key: sqlite-sanitizers-${{ runner.os }}-${{ hashFiles('tool/**', 'sqlite3/lib/src/hook/description.dart', 'sqlite3_connection_pool/src/**') }} - name: Download sqlite3 sources if: steps.cache_build.outputs.cache-hit != 'true' uses: actions/download-artifact@v8 with: name: sqlite-src path: sqlite-src - uses: dart-lang/setup-dart@v1 if: steps.cache_build.outputs.cache-hit != 'true' - uses: dtolnay/rust-toolchain@stable if: steps.cache_build.outputs.cache-hit != 'true' with: toolchain: nightly components: rust-src - name: Install LLVM toolchain shell: bash if: steps.cache_build.outputs.cache-hit != 'true' run: | sudo apt update sudo apt install -y llvm clang lld - name: Compile sqlite3 if: steps.cache_build.outputs.cache-hit != 'true' run: | dart pub get dart run tool/build_with_sanitizers.dart - name: Compile pool libraries if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool run: ./tool/build_linux_sanitizer.sh - name: Upload binaries uses: actions/upload-artifact@v7 id: upload with: name: sqlite3-sanitized path: sqlite-sanitized if-no-files-found: error retention-days: 1 compile_wasm: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: actions/cache@v5 id: cache_build with: path: sqlite3_wasm_build/out/ key: sqlite-prebuilt-wasm-${{ hashFiles('sqlite3_wasm_build/src/**') }} # clang 18 that ships on ubuntu crashes when compiling the wasm sources - name: Install LLVM and Clang if: steps.cache_build.outputs.cache-hit != 'true' uses: KyleMayes/install-llvm-action@v2.0.9 with: version: "21" - name: Download WASI SDK if: steps.cache_build.outputs.cache-hit != 'true' run: | ls -al ${{ env.LLVM_PATH }} curl -L https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-27/wasi-sdk-27.0-x86_64-linux.deb -o wasi-sdk.deb sudo dpkg -i wasi-sdk.deb sudo mkdir /usr/lib/llvm-18/lib/clang/18/lib/wasi sudo cp -r /opt/wasi-sdk/lib/clang/20/lib/* ${{ env.LLVM_PATH }}/lib/clang/21/lib/ curl -L https://github.com/WebAssembly/binaryen/releases/download/version_124/binaryen-version_124-x86_64-linux.tar.gz -o binaryen.tar.gz tar --extract --gzip --file binaryen.tar.gz sudo mv binaryen-version_124/bin/* /usr/local/bin - uses: dart-lang/setup-dart@v1 if: steps.cache_build.outputs.cache-hit != 'true' - name: Compile WASM binaries if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_wasm_build/ run: | cmake -Dwasi_sysroot=/opt/wasi-sdk/share/wasi-sysroot/ -S src -B .dart_tool/sqlite_build cmake --build .dart_tool/sqlite_build/ -t output -j - name: Upload sqlite3 binaries uses: actions/upload-artifact@v7 with: name: sqlite3-libs-wasm path: sqlite3_wasm_build/out/ if-no-files-found: error retention-days: 1 compile_pool_linux_android: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: actions/cache@v5 id: cache_build with: path: sqlite3_connection_pool/out key: pool-helper-${{ runner.os }}-${{ hashFiles('sqlite3_connection_pool/src/**', 'sqlite3_connection_pool/Cargo.toml', 'sqlite3_connection_pool/.cargo/**') }} - uses: dtolnay/rust-toolchain@stable if: steps.cache_build.outputs.cache-hit != 'true' with: toolchain: nightly components: rust-src targets: aarch64-unknown-linux-gnu,x86_64-unknown-linux-gnu,riscv64gc-unknown-linux-gnu,armv7-unknown-linux-gnueabihf,aarch64-linux-android,armv7-linux-androideabi,x86_64-linux-android - run: cargo install cargo-ndk if: steps.cache_build.outputs.cache-hit != 'true' - name: Install cross-compiling GCC if: steps.cache_build.outputs.cache-hit != 'true' run: | sudo apt update sudo apt install -y gcc-aarch64-linux-gnu gcc-riscv64-linux-gnu gcc-arm-linux-gnueabihf - name: Build for Linux if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool run: | rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu ./tool/build_linux.sh - name: Build Android libs if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool env: RUSTFLAGS: "-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort" run: cargo +nightly ndk -t armeabi-v7a -t arm64-v8a -t x86_64 -o target/android build --release -Zbuild-std=std,panic_abort -Zbuild-std-features= - name: Copy libraries if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool run: | mkdir out cp target/x86_64-unknown-linux-gnu/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_x64.so cp target/aarch64-unknown-linux-gnu/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_aarch64.so cp target/armv7-unknown-linux-gnueabihf/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_arm7.so cp target/riscv64gc-unknown-linux-gnu/release/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.linux_riscv.so cp target/android/x86_64/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.android_x86_64.so cp target/android/armeabi-v7a/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.android_v7a.so cp target/android/arm64-v8a/libsqlite3_connection_pool.so out/libsqlite3_connection_pool.android_v8a.so - uses: actions/upload-artifact@v7 with: name: connection-pool-linux retention-days: 1 path: sqlite3_connection_pool/out compile_pool_apple: runs-on: macos-latest steps: - uses: actions/checkout@v6 - uses: actions/cache@v5 id: cache_build with: path: sqlite3_connection_pool/out key: pool-helper-${{ runner.os }}-${{ hashFiles('sqlite3_connection_pool/src/**', 'sqlite3_connection_pool/Cargo.toml', 'sqlite3_connection_pool/.cargo/**') }} - uses: dtolnay/rust-toolchain@stable if: steps.cache_build.outputs.cache-hit != 'true' with: toolchain: nightly components: rust-src targets: x86_64-apple-darwin,aarch64-apple-darwin - name: Build for macOS and iOS if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool run: | rustup component add rust-src --toolchain nightly-aarch64-apple-darwin ./tool/build_apple.sh - name: Copy libraries if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool run: | mkdir out cp target/x86_64-apple-darwin/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.macos_x64.dylib cp target/aarch64-apple-darwin/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.macos_aarch64.dylib cp target/aarch64-apple-ios/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.ios_aarch64.dylib cp target/aarch64-apple-ios-sim/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.ios_sim_aarch64.dylib cp target/x86_64-apple-ios/release/libsqlite3_connection_pool.dylib out/libsqlite3_connection_pool.ios_sim_x64.dylib - uses: actions/upload-artifact@v7 with: name: connection-pool-apple retention-days: 1 path: sqlite3_connection_pool/out compile_pool_windows: runs-on: windows-latest steps: - uses: actions/checkout@v6 - uses: actions/cache@v5 id: cache_build with: path: sqlite3_connection_pool/out key: pool-helper-${{ runner.os }}-${{ hashFiles('sqlite3_connection_pool/src/**', 'sqlite3_connection_pool/Cargo.toml', 'sqlite3_connection_pool/.cargo/**') }} - uses: dtolnay/rust-toolchain@stable if: steps.cache_build.outputs.cache-hit != 'true' with: toolchain: nightly components: rust-src targets: x86_64-pc-windows-msvc,aarch64-pc-windows-msvc - name: Build for Windows if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool env: toolchain: nightly components: rust-src RUSTFLAGS: "-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort" run: | rustup component add rust-src --toolchain nightly-x86_64-pc-windows-msvc cargo +nightly build --release -Z build-std=std,panic_abort -Z build-std-features= --target x86_64-pc-windows-msvc cargo +nightly build --release -Z build-std=std,panic_abort -Z build-std-features= --target aarch64-pc-windows-msvc - name: Copy libraries if: steps.cache_build.outputs.cache-hit != 'true' working-directory: sqlite3_connection_pool run: | mkdir out cp target/x86_64-pc-windows-msvc/release/sqlite3_connection_pool.dll out/sqlite3_connection_pool.win_x64.dll cp target/aarch64-pc-windows-msvc/release/sqlite3_connection_pool.dll out/sqlite3_connection_pool.win_aarch64.dll - uses: actions/upload-artifact@v7 with: name: connection-pool-windows retention-days: 1 path: sqlite3_connection_pool/out merge_assets: runs-on: ubuntu-latest needs: - build_sqlite - compile_wasm - compile_pool_linux_android - compile_pool_apple - compile_pool_windows name: Merge prebuilt libraries into single directory outputs: sqlite_merged: ${{ steps.upload.outputs.artifact-id }} pool_libs: ${{ steps.upload_pool.outputs.artifact-id }} steps: - uses: actions/checkout@v6 - uses: actions/download-artifact@v8 with: path: out/ merge-multiple: true pattern: sqlite3-libs-* - uses: actions/download-artifact@v8 with: path: sqlite3_connection_pool/lib/src/precompiled merge-multiple: true pattern: connection-pool-* - run: ls -al out/ - run: ls -al sqlite3_connection_pool/lib/src/precompiled/ - name: Upload sqlite3 binaries uses: actions/upload-artifact@v7 id: upload with: name: sqlite3-precompiled path: out/ if-no-files-found: error retention-days: 1 - name: Upload pool helper binaries uses: actions/upload-artifact@v7 id: upload_pool with: name: connection-pool-libs path: sqlite3_connection_pool/lib/src/precompiled/ if-no-files-found: error retention-days: 1 ================================================ FILE: .github/workflows/main.yml ================================================ name: CI on: push: branches: ['**'] pull_request: branches: [ main ] jobs: fetch_sqlite: if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) uses: ./.github/workflows/compile_sqlite.yml analyze: if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) timeout-minutes: 5 strategy: matrix: dart: [stable] name: Analyze ${{ matrix.package }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: dart-lang/setup-dart@v1 with: sdk: ${{ matrix.dart }} - uses: actions/cache@v5 with: path: "${{ env.PUB_CACHE }}" key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }} restore-keys: | dart-dependencies-${{ matrix.dart }}- dart-dependencies- - name: Pub get run: dart pub get - name: Format dart run: | dart format --set-exit-if-changed sqlite3 dart format --set-exit-if-changed sqlite3_test dart format --set-exit-if-changed sqlite3_web - name: Format native run: clang-format --Werror --dry-run --style=google assets/*.h working-directory: sqlite3 - name: Format native run: clang-format --Werror --dry-run --style=google src/*{.h,.c} working-directory: sqlite3_wasm_build - name: Analyze run: dart analyze --fatal-infos sqlite3 sqlite3_web sqlite3_test test: if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) timeout-minutes: 5 needs: [analyze, fetch_sqlite] strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] dart: [stable, dev] name: Unit tests with Dart ${{ matrix.dart }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v6 - uses: dart-lang/setup-dart@v1 with: sdk: ${{ matrix.dart }} - name: Download compiled sqlite3 uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }} path: sqlite-compiled - name: Download connection pool libraries uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.pool_libs_artifact_id }} path: sqlite3_connection_pool/lib/src/precompiled/ - name: Download libraries compiled with sanitizers uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.sanitized_artifact_id }} path: sqlite-sanitized/ - uses: actions/cache@v5 with: path: "${{ env.PUB_CACHE }}" key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }} restore-keys: | dart-dependencies-${{ matrix.dart }}- dart-dependencies- - name: Get Dart dependencies run: | dart pub get - name: Write asset hashes run: dart run tool/write_asset_hashes.dart - name: Prepare for tests with pre-compiled SQLite run: | dart run tool/hook_overrides.dart compiled - name: Test sqlite3 package run: | dart test --test-randomize-ordering-seed "random" -P ci working-directory: sqlite3/ - name: Test sqlite3_connection_pool package run: | dart test working-directory: sqlite3_connection_pool/ - name: Test sqlite3_test package run: dart test if: ${{ runner.os != 'windows' }} # TODO: Investigate crashes on Windows working-directory: sqlite3_test/ - name: Test extension example run: dart test working-directory: sqlite3/example/custom_extension - name: Run tests with AOT executable run: dart run run.dart working-directory: native_tests/ - name: Run tests AddressSanitizer and MemorySanitizer if: runner.os == 'Linux' run: | dart run.dart --sanitizer=asan dart run.dart --sanitizer=msan dart run.dart --sanitizer=tsan working-directory: native_tests/ - name: Enable sqlite3mc run: | dart run tool/hook_overrides.dart compiled-ciphers - name: Test sqlite3 package with sqlite3mc run: | dart test --test-randomize-ordering-seed "random" -P ci working-directory: sqlite3/ - name: Prepare for tests with system SQLite run: | dart run tool/hook_overrides.dart system-os-specific - name: Test sqlite3 package run: | dart test --test-randomize-ordering-seed "random" -P ci working-directory: sqlite3/ - name: Test sqlite3_connection_pool package run: | dart test working-directory: sqlite3_connection_pool/ - name: Test sqlite3_test package run: dart test if: ${{ runner.os != 'windows' }} # TODO: Investigate crashes on Windows working-directory: sqlite3_test/ - name: Web tests run: | cp ../sqlite-compiled/*.wasm example/web dart test -P web -r expanded # If browsers behave differently on different platforms, surely that's not our fault... # So, only run browser tests on Linux to be faster. if: runner.os == 'Linux' working-directory: sqlite3/ upload_asset_hashes: if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) timeout-minutes: 5 needs: [test, fetch_sqlite] runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: dart-lang/setup-dart@v1 - name: Download compiled sqlite3 uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }} path: sqlite-compiled - uses: actions/cache@v5 with: path: "${{ env.PUB_CACHE }}" key: dart-dependencies-beta-${{ runner.os }} restore-keys: | dart-dependencies-beta- dart-dependencies- - name: Get Dart dependencies run: | dart pub get - name: Write asset hashes run: dart run tool/write_asset_hashes.dart - name: Upload asset hashes uses: actions/upload-artifact@v7 id: upload with: name: asset-hashes path: sqlite3/lib/src/hook/asset_hashes.dart if-no-files-found: error retention-days: 1 integration_test_web: if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) timeout-minutes: 10 needs: [analyze, fetch_sqlite] runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: dart-lang/setup-dart@v1 - name: Download compiled sqlite3 uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }} path: sqlite-compiled - uses: actions/cache@v5 with: path: "${{ env.PUB_CACHE }}" key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }} restore-keys: | dart-dependencies-${{ matrix.dart }}- dart-dependencies- - name: Prepare for tests run: | dart run tool/write_asset_hashes.dart dart run tool/hook_overrides.dart compiled - name: Web tests run: | cp ../sqlite-compiled/*.wasm web/ dart pub get dart test -P gh_actions -r expanded working-directory: sqlite3_web # The integration tests for android are currently broken (the emulator doesn't want to # start up...) # # integration_test_android: # runs-on: macos-latest # needs: [test] # strategy: # matrix: # test: # - flutter_libs # - sqlcipher_flutter # steps: # - uses: actions/checkout@v6 # - uses: subosito/flutter-action@v2 # with: # channel: dev # - name: pub get # working-directory: "integration_tests/${{ matrix.test }}" # run: flutter pub get # # - name: run tests # uses: reactivecircus/android-emulator-runner@v2 # with: # api-level: 29 # script: flutter test integration_test # working-directory: "integration_tests/${{ matrix.test }}" # Shamelessly stolen from https://medium.com/flutter-community/run-flutter-driver-tests-on-github-actions-13c639c7e4ab integration_test: if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) strategy: matrix: runner: [ubuntu-latest, macos-latest] needs: [test, fetch_sqlite] runs-on: ${{ matrix.runner }} timeout-minutes: 30 env: AVD_NAME: ubuntu-avd-x86_64-34 steps: - name: List simulators if: runner.os == 'macos' run: "xcrun xctrace list devices" - name: Start simulator if: runner.os == 'macos' run: | IPHONE=$(xcrun xctrace list devices 2>&1 | grep -m 1 "iPhone" | awk -F'[()]' '{print $4}') xcrun simctl boot $IPHONE - uses: actions/checkout@v6 - uses: subosito/flutter-action@v2 - name: Flutter version run: flutter --version - name: Setup runner if: runner.os == 'linux' # https://github.com/ReactiveCircus/android-emulator-runner?tab=readme-ov-file#usage--examples run: | sudo apt-get update sudo apt-get install -y cmake ninja-build pkg-config libgtk-3-dev libstdc++-12-dev echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules sudo udevadm control --reload-rules sudo udevadm trigger --name-match=kvm - name: AVD Cache uses: actions/cache@v5 id: avd-cache if: runner.os == 'linux' with: path: | ~/.android/avd/* ~/.android/adb* key: avd-35 - name: Download compiled sqlite3 uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }} path: sqlite-compiled - name: Download connection pool libraries uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.pool_libs_artifact_id }} path: sqlite3_connection_pool/lib/src/precompiled/ - uses: actions/cache@v5 with: path: "${{ env.PUB_CACHE }}" key: dart-dependencies-${{ matrix.dart }}-${{ runner.os }} restore-keys: | dart-dependencies-${{ matrix.dart }}- dart-dependencies- - name: Write asset hashes run: | dart pub get dart run tool/write_asset_hashes.dart dart run tool/hook_overrides.dart compiled - name: Flutter sqlite3 tests on macOS if: runner.os == 'macos' working-directory: examples/flutter_integration_tests run: | flutter config --enable-swift-package-manager flutter test integration_test flutter test integration_test -d macos - name: Flutter sqlite3 tests on Linux if: false # runner.os == 'linux' currently broken in ci, can't reproduce locally or in Ubuntu VM working-directory: examples/flutter_integration_tests run: | flutter test integration_test -d linux - name: SQLite Android emulator tests uses: reactivecircus/android-emulator-runner@v2 if: runner.os == 'linux' with: api-level: 34 force-avd-creation: false target: google_apis arch: x86_64 disable-animations: false avd-name: $AVD_NAME emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none script: flutter test integration_test working-directory: "examples/flutter_integration_tests" - name: Enable sqlite3mc run: | dart run tool/hook_overrides.dart compiled-ciphers - name: Flutter sqlite3mc tests on macOS if: runner.os == 'macos' working-directory: examples/flutter_integration_tests run: | flutter config --enable-swift-package-manager flutter test integration_test -Dsqlite3.multipleciphers=true flutter test integration_test -Dsqlite3.multipleciphers=true -d macos - name: sqlite3mc Android emulator tests uses: reactivecircus/android-emulator-runner@v2 if: runner.os == 'linux' with: api-level: 34 force-avd-creation: false target: google_apis arch: x86_64 disable-animations: false avd-name: $AVD_NAME emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none script: flutter test integration_test -Dsqlite3.multipleciphers=true working-directory: "examples/flutter_integration_tests" ================================================ FILE: .github/workflows/release.yml ================================================ name: Publish to pub.dev on: push: tags: - 'sqlite3-[0-9]+.[0-9]+.[0-9]+*' - 'sqlite3_test-[0-9]+.[0-9]+.[0-9]+*' - 'sqlite3_web-[0-9]+.[0-9]+.[0-9]+*' - 'sqlite3_connection_pool-[0-9]+.[0-9]+.[0-9]+*' jobs: fetch_sqlite: uses: ./.github/workflows/compile_sqlite.yml prepare_release: needs: [fetch_sqlite] permissions: packages: write contents: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: dart-lang/setup-dart@v1 - name: Pub get run: dart pub get - name: Download compiled sqlite3 uses: actions/download-artifact@v8 with: github-token: ${{ github.token }} artifact-ids: ${{ needs.fetch_sqlite.outputs.artifact_id }} path: sqlite-compiled - name: Set tag name if: "${{ startsWith(github.ref_name, 'sqlite3-') }}" id: tag run: | tag=$(basename "${{ github.ref }}") echo "tag=$tag" >> $GITHUB_OUTPUT - name: Verify asset hashes if: "${{ startsWith(github.ref_name, 'sqlite3-') }}" run: dart run tool/write_asset_hashes.dart "${{ steps.tag.outputs.tag }}" - name: List libraries run: ls -al sqlite-compiled - name: Create Release if: "${{ startsWith(github.ref_name, 'sqlite3-') }}" env: GH_TOKEN: ${{ github.token }} GH_REPO: ${{ github.repository }} run: | tag="${{ steps.tag.outputs.tag }}" body="Pending release for $tag" gh release create --draft "$tag" --title "$tag" --notes "$body" gh release upload "$tag" sqlite-compiled/* publish_sqlite3: needs: [prepare_release] permissions: id-token: write if: "${{ startsWith(github.ref_name, 'sqlite3-') }}" uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1 with: environment: 'pub.dev' working-directory: sqlite3/ publish_sqlite3_test: needs: [prepare_release] permissions: id-token: write if: "${{ startsWith(github.ref_name, 'sqlite3_test-') }}" uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1 with: environment: 'pub.dev' working-directory: sqlite3_test/ publish_sqlite3_web: needs: [prepare_release] permissions: id-token: write if: "${{ startsWith(github.ref_name, 'sqlite3_web-') }}" uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1 with: environment: 'pub.dev' working-directory: sqlite3_web/ publish_sqlite3_connection_pool: needs: [fetch_sqlite, prepare_release] permissions: id-token: write if: "${{ startsWith(github.ref_name, 'sqlite3_connection_pool-') }}" runs-on: ubuntu-latest environment: 'pub.dev' # This can't use the workflow because we need to download assets to include in # the package. steps: - uses: actions/checkout@v6 - uses: dart-lang/setup-dart@v1 # This will request an OIDC token for pub.dev - name: Download connection pool libraries uses: actions/download-artifact@v8 with: artifact-ids: ${{ needs.fetch_sqlite.outputs.pool_libs_artifact_id }} path: sqlite3_connection_pool/lib/src/precompiled/ - name: Pub get run: dart pub get - name: Publish - dry run run: dart pub publish --dry-run working-directory: sqlite3_connection_pool - name: Publish to pub.dev run: dart pub publish -f working-directory: sqlite3_connection_pool ================================================ FILE: .gitignore ================================================ # Created by https://www.toptal.com/developers/gitignore/api/flutter,dart # Edit at https://www.toptal.com/developers/gitignore?templates=flutter,dart ### Dart ### # See https://www.dartlang.org/guides/libraries/private-files # Files and directories created by pub .dart_tool/ .packages build/ # If you're building an application, you may want to check-in your pubspec.lock pubspec.lock # Directory created by dartdoc # If you don't generate documentation locally you can remove this line. doc/api/ # dotenv environment variables file .env* # Avoid committing generated Javascript files: *.dart.js *.info.json # Produced by the --dump-info flag. *.js # When generated by dart2js. Don't specify *.js if your # project includes source files written in JavaScript. *.js_ *.js.deps *.js.map .flutter-plugins .flutter-plugins-dependencies ### Dart Patch ### # dotenv environment variables file .env ### Flutter ### # Flutter/Dart/Pub related **/doc/api/ .fvm/ .pub-cache/ .pub/ coverage/ lib/generated_plugin_registrant.dart # For library packages, don’t commit the pubspec.lock file. # Regenerating the pubspec.lock file lets you test your package against the latest compatible versions of its dependencies. # See https://dart.dev/guides/libraries/private-files#pubspeclock #pubspec.lock # Android related **/android/**/gradle-wrapper.jar **/android/.gradle **/android/captures/ **/android/gradlew **/android/gradlew.bat **/android/key.properties **/.idea/ *.iml **/android/local.properties **/android/**/GeneratedPluginRegistrant.java # iOS/XCode related **/ios/**/*.mode1v3 **/ios/**/*.mode2v3 **/ios/**/*.moved-aside **/ios/**/*.pbxuser **/ios/**/*.perspectivev3 **/ios/**/*sync/ **/ios/**/.sconsign.dblite **/ios/**/.tags* **/ios/**/.vagrant/ **/ios/**/DerivedData/ **/ios/**/Icon? **/ios/**/Pods/ **/ios/**/.symlinks/ **/ios/**/profile **/ios/**/xcuserdata **/ios/.generated/ **/ios/Flutter/.last_build_id **/ios/Flutter/App.framework **/ios/Flutter/Flutter.framework **/ios/Flutter/Flutter.podspec **/ios/Flutter/Generated.xcconfig **/ios/Flutter/app.flx **/ios/Flutter/app.zip **/ios/Flutter/flutter_assets/ **/ios/Flutter/flutter_export_environment.sh **/ios/ServiceDefinitions.json **/ios/Runner/GeneratedPluginRegistrant.* # Exceptions to above rules. !**/ios/**/default.mode1v3 !**/ios/**/default.mode2v3 !**/ios/**/default.pbxuser !**/ios/**/default.perspectivev3 !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages # End of https://www.toptal.com/developers/gitignore/api/flutter,dart *.wasm sqlite-src sqlite-compiled tmp ================================================ FILE: .gitmodules ================================================ [submodule "sqlite3_android"] path = sqlite3_android url = https://github.com/rodydavis/sqlite-native-libraries [submodule "sqlite_swift_package"] path = sqlite_swift_package url = https://github.com/rodydavis/CSQLite ================================================ FILE: .vscode/settings.json ================================================ { "rust-analyzer.linkedProjects": [ "sqlite3/example/custom_wasm_build/Cargo.toml" ], "cSpell.words": [ "Patchset" ] } ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2020 Simon Binder Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # sqlite3.dart This project contains Dart packages to use SQLite from Dart via `dart:ffi`. The main package in this repository is [`sqlite3`](sqlite3), which contains all the Dart apis and their implementation. `package:sqlite3` is a pure-Dart package without a dependency on Flutter. It can be used both in Flutter apps or in standalone Dart applications. `package:sqlite3_test` contains utilities that make integrating SQLite databases into Dart tests easier. In particular, they patch `CURRENT_TIMESTAMP` and related constructs to return the (potentially faked) time returned by `package:clock`. `package:sqlite3_web` contains helpers for running SQLite on the web, including code to compile web workers that help with the process. `package:sqlite3_connection_pool` provides an asynchronous connection pool for SQLite that works well across isolates. ## Example Usage A file with basic usage examples for pure Dart can be found [here](sqlite3/example/main.dart). ================================================ FILE: UPGRADING_TO_V3.md ================================================ ## Upgrading `package:sqlite3`. This document collects notes on upgrading the `sqlite3` package from version 2.x to version 3.x. For almost all users, upgrading should be very simple: 1. If you depend on `sqlite3_flutter_libs`, stop doing that. 2. If you depend on `sqlcipher_flutter_libs`, stop doing that and read [encryption](#encryption). 3. Upgrade to `sqlite3: ^3.0.0`. 4. Make sure you update your `sqlite3.wasm` by downloading it from the [latest releases](https://github.com/simolus3/sqlite3.dart/releases). 5. If you had `open.overrideFor` code to customize how SQLite is loaded, that needs to be removed. The package exclusively uses hooks now. This includes calls to `applyWorkaroundToOpenSqlite3OnOldAndroidVersions` which can be removed after upgrading. Version 3.x relies on [hooks](https://dart.dev/tools/hooks) to automatically bundle a pre-compiled version of SQLite with your application. By default, these binaries are downloaded from the GitHub releases of this package. This mechanism replaces the earlier scheme based on platform-specific build scripts. If you want to compile SQLite yourself instead of relying on those downloaded binaries, see [custom SQLite builds](#custom-sqlite-builds). Also note that the build definition for `sqlite3.wasm` has changed. New sources are available in [sqlite3_wasm_build](./sqlite3_wasm_build/). ## Encryption If you've been using SQLCipher to use encrypted databases, note that SQLCipher is no longer available with version 3. However, a precompiled version of SQLite3MultipleCiphers can easily be enabled by adding this to your pubspec: ```yaml hooks: user_defines: sqlite3: source: sqlite3mc ``` SQLite3MultipleCiphers should be compatible with existing databases created by SQLCipher when running the following statements from SQLite3MultipleCiphers: ``` pragma cipher = 'sqlcipher'; pragma legacy = 4; pragma key = '...your key...'; ``` For details, see [hook options](./sqlite3/doc/hook.md) and [sqlite3mc documentation](https://utelle.github.io/SQLite3MultipleCiphers/docs/ciphers/cipher_sqlcipher/). ## Custom SQLite builds If you want to customize the SQLite build for `package:sqlite3`, there are two options: 1. Downloading `sqlite3.c` into your project and then following the "Custom SQLite builds" section of [hook options](./sqlite3/doc/hook.md). 2. Using external build scripts (such as SwiftPM or CMake) to statically link SQLite into your Flutter application, and then following the "Alternatives" section of [hook options](./sqlite3/doc/hook.md). For details, see [hook options](./sqlite3/doc/hook.md). If these customization options don't meet your needs, please open an issue! ================================================ FILE: examples/flutter_integration_tests/.gitignore ================================================ # Miscellaneous *.class *.log *.pyc *.swp .DS_Store .atom/ .build/ .buildlog/ .history .svn/ .swiftpm/ migrate_working_dir/ # IntelliJ related *.iml *.ipr *.iws .idea/ # The .vscode folder contains launch configuration and tasks you configure in # VS Code which you may wish to be included in version control, so this line # is commented out by default. #.vscode/ # Flutter/Dart/Pub related **/doc/api/ **/ios/Flutter/.last_build_id .dart_tool/ .flutter-plugins-dependencies .pub-cache/ .pub/ /build/ /coverage/ # Symbolication related app.*.symbols # Obfuscation related app.*.map.json # Android Studio will place build artifacts here /android/app/debug /android/app/profile /android/app/release ================================================ FILE: examples/flutter_integration_tests/.metadata ================================================ # This file tracks properties of this Flutter project. # Used by Flutter tool to assess capabilities and perform upgrades etc. # # This file should be version controlled and should not be manually edited. version: revision: "465e421f53c05f8f33f83a243c10c55f9f6efbc2" channel: "beta" project_type: app # Tracks metadata for the flutter migrate command migration: platforms: - platform: root create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 - platform: android create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 - platform: ios create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 - platform: linux create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 - platform: macos create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 - platform: web create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 - platform: windows create_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 base_revision: 465e421f53c05f8f33f83a243c10c55f9f6efbc2 # User provided section # List of Local paths (relative to this file) that should be # ignored by the migrate tool. # # Files that are not part of the templates will be ignored by default. unmanaged_files: - 'lib/main.dart' - 'ios/Runner.xcodeproj/project.pbxproj' ================================================ FILE: examples/flutter_integration_tests/README.md ================================================ # flutter_integration_tests Integration tests for the `sqlite3` package embedded Flutter projects. ================================================ FILE: examples/flutter_integration_tests/analysis_options.yaml ================================================ include: package:flutter_lints/flutter.yaml ================================================ FILE: examples/flutter_integration_tests/android/.gitignore ================================================ gradle-wrapper.jar /.gradle /captures/ /gradlew /gradlew.bat /local.properties GeneratedPluginRegistrant.java .cxx/ # Remember to never publicly share your keystore. # See https://flutter.dev/to/reference-keystore key.properties **/*.keystore **/*.jks ================================================ FILE: examples/flutter_integration_tests/android/app/build.gradle.kts ================================================ plugins { id("com.android.application") id("kotlin-android") // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. id("dev.flutter.flutter-gradle-plugin") } android { namespace = "com.example.flutter_integration_tests" compileSdk = flutter.compileSdkVersion ndkVersion = flutter.ndkVersion compileOptions { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId = "com.example.flutter_integration_tests" // You can update the following values to match your application needs. // For more information, see: https://flutter.dev/to/review-gradle-config. minSdk = flutter.minSdkVersion targetSdk = flutter.targetSdkVersion versionCode = flutter.versionCode versionName = flutter.versionName } buildTypes { release { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. signingConfig = signingConfigs.getByName("debug") } } } flutter { source = "../.." } ================================================ FILE: examples/flutter_integration_tests/android/app/src/debug/AndroidManifest.xml ================================================ ================================================ FILE: examples/flutter_integration_tests/android/app/src/main/AndroidManifest.xml ================================================ ================================================ FILE: examples/flutter_integration_tests/android/app/src/main/kotlin/com/example/flutter_integration_tests/MainActivity.kt ================================================ package com.example.flutter_integration_tests import io.flutter.embedding.android.FlutterActivity class MainActivity : FlutterActivity() ================================================ FILE: examples/flutter_integration_tests/android/app/src/main/res/drawable/launch_background.xml ================================================ ================================================ FILE: examples/flutter_integration_tests/android/app/src/main/res/drawable-v21/launch_background.xml ================================================ ================================================ FILE: examples/flutter_integration_tests/android/app/src/main/res/values/styles.xml ================================================ ================================================ FILE: examples/flutter_integration_tests/android/app/src/main/res/values-night/styles.xml ================================================ ================================================ FILE: examples/flutter_integration_tests/android/app/src/profile/AndroidManifest.xml ================================================ ================================================ FILE: examples/flutter_integration_tests/android/build.gradle.kts ================================================ allprojects { repositories { google() mavenCentral() } } val newBuildDir: Directory = rootProject.layout.buildDirectory .dir("../../build") .get() rootProject.layout.buildDirectory.value(newBuildDir) subprojects { val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) project.layout.buildDirectory.value(newSubprojectBuildDir) } subprojects { project.evaluationDependsOn(":app") } tasks.register("clean") { delete(rootProject.layout.buildDirectory) } ================================================ FILE: examples/flutter_integration_tests/android/gradle/wrapper/gradle-wrapper.properties ================================================ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip ================================================ FILE: examples/flutter_integration_tests/android/gradle.properties ================================================ org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError android.useAndroidX=true ================================================ FILE: examples/flutter_integration_tests/android/settings.gradle.kts ================================================ pluginManagement { val flutterSdkPath = run { val properties = java.util.Properties() file("local.properties").inputStream().use { properties.load(it) } val flutterSdkPath = properties.getProperty("flutter.sdk") require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" } flutterSdkPath } includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") repositories { google() mavenCentral() gradlePluginPortal() } } plugins { id("dev.flutter.flutter-plugin-loader") version "1.0.0" id("com.android.application") version "8.9.1" apply false id("org.jetbrains.kotlin.android") version "2.1.0" apply false } include(":app") ================================================ FILE: examples/flutter_integration_tests/integration_test/integration_test.dart ================================================ // ignore_for_file: avoid_print import 'package:integration_test/integration_test.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart'; void main() { IntegrationTestWidgetsFlutterBinding.ensureInitialized(); test('can open sqlite3', () { print(sqlite3.version); final db = sqlite3.openInMemory()..closeWhenDone(); print(db.select('pragma compile_options')); }); test('pool smoke test', () async { final pool = SqliteConnectionPool.open( name: 'test-pool', openConnections: () => PoolConnections(sqlite3.openInMemory(), []), ); pool.execute('CREATE TABLE foo (bar TEXT)'); pool.close(); }); test('can open databases', () { final db = sqlite3.openInMemory() ..closeWhenDone() ..execute('CREATE TABLE foo (bar)') ..execute('INSERT INTO foo VALUES (1), (2)'); expect(db.select('SELECT * FROM foo'), [ {'bar': 1}, {'bar': 2}, ]); }); test('has json support', () { final db = sqlite3.openInMemory()..closeWhenDone(); expect(db.select("SELECT json('[1, 2, 3]') AS r;"), [ {'r': '[1,2,3]'}, ]); }); test('has fts5 support', () { final db = sqlite3.openInMemory()..closeWhenDone(); db.execute('CREATE VIRTUAL TABLE foo USING fts5 (a,b,c);'); }); test('can create collation', () { final db = sqlite3.openInMemory() ..closeWhenDone() ..execute('CREATE TABLE foo2 (bar)') ..execute( "INSERT INTO foo2 VALUES ('AaAaaaAA'), ('BBBbBb'),('cCCCcc '), (' dD ')", ); /// Create a collation to compare String without extra-blank to the right and /// ignoring case db.createCollation( name: "RTRIMNOCASE", function: (String? a, String? b) { // Combining nocase and rtrim // String? compareA = a?.toLowerCase().trimRight(); String? compareB = b?.toLowerCase().trimRight(); if (compareA == null && compareB == null) { return 0; } else if (compareA == null) { // a < b return -1; } else if (compareB == null) { // a > b return 1; } else { return compareA.compareTo(compareB); } }, ); expect( db.select( "SELECT * FROM foo2 WHERE bar = 'aaaaAaAa ' COLLATE RTRIMNOCASE", ), [ {'bar': 'AaAaaaAA'}, ], ); expect( db.select("SELECT * FROM foo2 WHERE bar = 'bbbbbb' COLLATE RTRIMNOCASE"), [ {'bar': 'BBBbBb'}, ], ); expect( db.select("SELECT * FROM foo2 WHERE bar = 'cCcccC' COLLATE RTRIMNOCASE"), [ {'bar': 'cCCCcc '}, ], ); expect( db.select("SELECT * FROM foo2 WHERE bar = 'dd' COLLATE RTRIMNOCASE"), [], ); }); const ciphers = bool.fromEnvironment('sqlite3.multipleciphers'); if (ciphers) { test('contains sqlite3multipleciphers', () { final db = sqlite3.openInMemory()..closeWhenDone(); print(db.select('select sqlite3mc_config(?)', ['cipher'])); }); } } extension on Database { void closeWhenDone() => addTearDown(close); } ================================================ FILE: examples/flutter_integration_tests/ios/.gitignore ================================================ **/dgph *.mode1v3 *.mode2v3 *.moved-aside *.pbxuser *.perspectivev3 **/*sync/ .sconsign.dblite .tags* **/.vagrant/ **/DerivedData/ Icon? **/Pods/ **/.symlinks/ profile xcuserdata **/.generated/ Flutter/App.framework Flutter/Flutter.framework Flutter/Flutter.podspec Flutter/Generated.xcconfig Flutter/ephemeral/ Flutter/app.flx Flutter/app.zip Flutter/flutter_assets/ Flutter/flutter_export_environment.sh ServiceDefinitions.json Runner/GeneratedPluginRegistrant.* # Exceptions to above rules. !default.mode1v3 !default.mode2v3 !default.pbxuser !default.perspectivev3 ================================================ FILE: examples/flutter_integration_tests/ios/Flutter/AppFrameworkInfo.plist ================================================ CFBundleDevelopmentRegion en CFBundleExecutable App CFBundleIdentifier io.flutter.flutter.app CFBundleInfoDictionaryVersion 6.0 CFBundleName App CFBundlePackageType FMWK CFBundleShortVersionString 1.0 CFBundleSignature ???? CFBundleVersion 1.0 MinimumOSVersion 13.0 ================================================ FILE: examples/flutter_integration_tests/ios/Flutter/Debug.xcconfig ================================================ #include "Generated.xcconfig" ================================================ FILE: examples/flutter_integration_tests/ios/Flutter/Release.xcconfig ================================================ #include "Generated.xcconfig" ================================================ FILE: examples/flutter_integration_tests/ios/Runner/AppDelegate.swift ================================================ import Flutter import UIKit @main @objc class AppDelegate: FlutterAppDelegate { override func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { GeneratedPluginRegistrant.register(with: self) return super.application(application, didFinishLaunchingWithOptions: launchOptions) } } ================================================ FILE: examples/flutter_integration_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json ================================================ { "images" : [ { "size" : "20x20", "idiom" : "iphone", "filename" : "Icon-App-20x20@2x.png", "scale" : "2x" }, { "size" : "20x20", "idiom" : "iphone", "filename" : "Icon-App-20x20@3x.png", "scale" : "3x" }, { "size" : "29x29", "idiom" : "iphone", "filename" : "Icon-App-29x29@1x.png", "scale" : "1x" }, { "size" : "29x29", "idiom" : "iphone", "filename" : "Icon-App-29x29@2x.png", "scale" : "2x" }, { "size" : "29x29", "idiom" : "iphone", "filename" : "Icon-App-29x29@3x.png", "scale" : "3x" }, { "size" : "40x40", "idiom" : "iphone", "filename" : "Icon-App-40x40@2x.png", "scale" : "2x" }, { "size" : "40x40", "idiom" : "iphone", "filename" : "Icon-App-40x40@3x.png", "scale" : "3x" }, { "size" : "60x60", "idiom" : "iphone", "filename" : "Icon-App-60x60@2x.png", "scale" : "2x" }, { "size" : "60x60", "idiom" : "iphone", "filename" : "Icon-App-60x60@3x.png", "scale" : "3x" }, { "size" : "20x20", "idiom" : "ipad", "filename" : "Icon-App-20x20@1x.png", "scale" : "1x" }, { "size" : "20x20", "idiom" : "ipad", "filename" : "Icon-App-20x20@2x.png", "scale" : "2x" }, { "size" : "29x29", "idiom" : "ipad", "filename" : "Icon-App-29x29@1x.png", "scale" : "1x" }, { "size" : "29x29", "idiom" : "ipad", "filename" : "Icon-App-29x29@2x.png", "scale" : "2x" }, { "size" : "40x40", "idiom" : "ipad", "filename" : "Icon-App-40x40@1x.png", "scale" : "1x" }, { "size" : "40x40", "idiom" : "ipad", "filename" : "Icon-App-40x40@2x.png", "scale" : "2x" }, { "size" : "76x76", "idiom" : "ipad", "filename" : "Icon-App-76x76@1x.png", "scale" : "1x" }, { "size" : "76x76", "idiom" : "ipad", "filename" : "Icon-App-76x76@2x.png", "scale" : "2x" }, { "size" : "83.5x83.5", "idiom" : "ipad", "filename" : "Icon-App-83.5x83.5@2x.png", "scale" : "2x" }, { "size" : "1024x1024", "idiom" : "ios-marketing", "filename" : "Icon-App-1024x1024@1x.png", "scale" : "1x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: examples/flutter_integration_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json ================================================ { "images" : [ { "idiom" : "universal", "filename" : "LaunchImage.png", "scale" : "1x" }, { "idiom" : "universal", "filename" : "LaunchImage@2x.png", "scale" : "2x" }, { "idiom" : "universal", "filename" : "LaunchImage@3x.png", "scale" : "3x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: examples/flutter_integration_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md ================================================ # Launch Screen Assets You can customize the launch screen with your own desired assets by replacing the image files in this directory. You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. ================================================ FILE: examples/flutter_integration_tests/ios/Runner/Base.lproj/LaunchScreen.storyboard ================================================ ================================================ FILE: examples/flutter_integration_tests/ios/Runner/Base.lproj/Main.storyboard ================================================ ================================================ FILE: examples/flutter_integration_tests/ios/Runner/Info.plist ================================================ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName Flutter Integration Tests CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 CFBundleName flutter_integration_tests CFBundlePackageType APPL CFBundleShortVersionString $(FLUTTER_BUILD_NAME) CFBundleSignature ???? CFBundleVersion $(FLUTTER_BUILD_NUMBER) LSRequiresIPhoneOS UILaunchStoryboardName LaunchScreen UIMainStoryboardFile Main UISupportedInterfaceOrientations UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UISupportedInterfaceOrientations~ipad UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight CADisableMinimumFrameDurationOnPhone UIApplicationSupportsIndirectInputEvents ================================================ FILE: examples/flutter_integration_tests/ios/Runner/Runner-Bridging-Header.h ================================================ #import "GeneratedPluginRegistrant.h" ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 54; objects = { /* Begin PBXBuildFile section */ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 97C146E61CF9000F007C117D /* Project object */; proxyType = 1; remoteGlobalIDString = 97C146ED1CF9000F007C117D; remoteInfo = Runner; }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ 9705A1C41CF9048500538489 /* Embed Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 10; files = ( ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterGeneratedPluginSwiftPackage; path = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 97C146EB1CF9000F007C117D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( 78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 331C8082294A63A400263BE5 /* RunnerTests */ = { isa = PBXGroup; children = ( 331C807B294A618700263BE5 /* RunnerTests.swift */, ); path = RunnerTests; sourceTree = ""; }; 9740EEB11CF90186004384FC /* Flutter */ = { isa = PBXGroup; children = ( 78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */, 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 9740EEB21CF90195004384FC /* Debug.xcconfig */, 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 9740EEB31CF90195004384FC /* Generated.xcconfig */, ); name = Flutter; sourceTree = ""; }; 97C146E51CF9000F007C117D = { isa = PBXGroup; children = ( 9740EEB11CF90186004384FC /* Flutter */, 97C146F01CF9000F007C117D /* Runner */, 97C146EF1CF9000F007C117D /* Products */, 331C8082294A63A400263BE5 /* RunnerTests */, ); sourceTree = ""; }; 97C146EF1CF9000F007C117D /* Products */ = { isa = PBXGroup; children = ( 97C146EE1CF9000F007C117D /* Runner.app */, 331C8081294A63A400263BE5 /* RunnerTests.xctest */, ); name = Products; sourceTree = ""; }; 97C146F01CF9000F007C117D /* Runner */ = { isa = PBXGroup; children = ( 97C146FA1CF9000F007C117D /* Main.storyboard */, 97C146FD1CF9000F007C117D /* Assets.xcassets */, 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 97C147021CF9000F007C117D /* Info.plist */, 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, ); path = Runner; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ 331C8080294A63A400263BE5 /* RunnerTests */ = { isa = PBXNativeTarget; buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; buildPhases = ( 331C807D294A63A400263BE5 /* Sources */, 331C807F294A63A400263BE5 /* Resources */, ); buildRules = ( ); dependencies = ( 331C8086294A63A400263BE5 /* PBXTargetDependency */, ); name = RunnerTests; productName = RunnerTests; productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; 97C146ED1CF9000F007C117D /* Runner */ = { packageProductDependencies = ( 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */, ); isa = PBXNativeTarget; buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; buildPhases = ( 9740EEB61CF901F6004384FC /* Run Script */, 97C146EA1CF9000F007C117D /* Sources */, 97C146EB1CF9000F007C117D /* Frameworks */, 97C146EC1CF9000F007C117D /* Resources */, 9705A1C41CF9048500538489 /* Embed Frameworks */, 3B06AD1E1E4923F5004D2608 /* Thin Binary */, ); buildRules = ( ); dependencies = ( ); name = Runner; productName = Runner; productReference = 97C146EE1CF9000F007C117D /* Runner.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 97C146E61CF9000F007C117D /* Project object */ = { packageReferences = ( 781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */, ); isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = YES; LastUpgradeCheck = 1510; ORGANIZATIONNAME = ""; TargetAttributes = { 331C8080294A63A400263BE5 = { CreatedOnToolsVersion = 14.0; TestTargetID = 97C146ED1CF9000F007C117D; }; 97C146ED1CF9000F007C117D = { CreatedOnToolsVersion = 7.3.1; LastSwiftMigration = 1100; }; }; }; buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; compatibilityVersion = "Xcode 9.3"; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( en, Base, ); mainGroup = 97C146E51CF9000F007C117D; productRefGroup = 97C146EF1CF9000F007C117D /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 97C146ED1CF9000F007C117D /* Runner */, 331C8080294A63A400263BE5 /* RunnerTests */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ 331C807F294A63A400263BE5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; 97C146EC1CF9000F007C117D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; files = ( ); inputPaths = ( "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", ); name = "Thin Binary"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; }; 9740EEB61CF901F6004384FC /* Run Script */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); name = "Run Script"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ 331C807D294A63A400263BE5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; 97C146EA1CF9000F007C117D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 97C146ED1CF9000F007C117D /* Runner */; targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ 97C146FA1CF9000F007C117D /* Main.storyboard */ = { isa = PBXVariantGroup; children = ( 97C146FB1CF9000F007C117D /* Base */, ); name = Main.storyboard; sourceTree = ""; }; 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { isa = PBXVariantGroup; children = ( 97C147001CF9000F007C117D /* Base */, ); name = LaunchScreen.storyboard; sourceTree = ""; }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ 249021D3217E4FDB00AE95B9 /* Profile */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Profile; }; 249021D4217E4FDB00AE95B9 /* Profile */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; }; name = Profile; }; 331C8088294A63A400263BE5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; }; name = Debug; }; 331C8089294A63A400263BE5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; }; name = Release; }; 331C808A294A63A400263BE5 /* Profile */ = { isa = XCBuildConfiguration; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; }; name = Profile; }; 97C147031CF9000F007C117D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; 97C147041CF9000F007C117D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_STRICT_PROTOTYPES = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OPTIMIZATION_LEVEL = "-O"; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; 97C147061CF9000F007C117D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; }; name = Debug; }; 97C147071CF9000F007C117D /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 331C8088294A63A400263BE5 /* Debug */, 331C8089294A63A400263BE5 /* Release */, 331C808A294A63A400263BE5 /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { isa = XCConfigurationList; buildConfigurations = ( 97C147031CF9000F007C117D /* Debug */, 97C147041CF9000F007C117D /* Release */, 249021D3217E4FDB00AE95B9 /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { isa = XCConfigurationList; buildConfigurations = ( 97C147061CF9000F007C117D /* Debug */, 97C147071CF9000F007C117D /* Release */, 249021D4217E4FDB00AE95B9 /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ /* Begin XCLocalSwiftPackageReference section */ 781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */ = { isa = XCLocalSwiftPackageReference; relativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; }; /* End XCLocalSwiftPackageReference section */ /* Begin XCSwiftPackageProductDependency section */ 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */ = { isa = XCSwiftPackageProductDependency; productName = FlutterGeneratedPluginSwiftPackage; }; /* End XCSwiftPackageProductDependency section */ }; rootObject = 97C146E61CF9000F007C117D /* Project object */; } ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist ================================================ IDEDidComputeMac32BitWarning ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings ================================================ PreviewsEnabled ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme ================================================ ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist ================================================ IDEDidComputeMac32BitWarning ================================================ FILE: examples/flutter_integration_tests/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings ================================================ PreviewsEnabled ================================================ FILE: examples/flutter_integration_tests/ios/RunnerTests/RunnerTests.swift ================================================ import Flutter import UIKit import XCTest class RunnerTests: XCTestCase { func testExample() { // If you add code to the Runner application, consider adding tests here. // See https://developer.apple.com/documentation/xctest for more information about using XCTest. } } ================================================ FILE: examples/flutter_integration_tests/lib/main.dart ================================================ import 'package:flutter/material.dart'; import 'package:sqlite3/sqlite3.dart'; void main() { runApp(SqliteDiagnostics()); } class SqliteDiagnostics extends StatelessWidget { const SqliteDiagnostics({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: SafeArea( child: SingleChildScrollView(child: const _SqliteDiagnosticText()), ), ), ); } } class _SqliteDiagnosticText extends StatefulWidget { const _SqliteDiagnosticText(); @override State<_SqliteDiagnosticText> createState() => _SqliteDiagnosticTextState(); } class _SqliteDiagnosticTextState extends State<_SqliteDiagnosticText> { var _text = 'Loading'; @override void initState() { super.initState(); final db = sqlite3.openInMemory(); final options = db.select('pragma compile_options'); setState(() { _text = 'Version: ${sqlite3.version}\nOptions: $options'; }); db.close(); } @override Widget build(BuildContext context) { return Text(_text); } } ================================================ FILE: examples/flutter_integration_tests/linux/.gitignore ================================================ flutter/ephemeral ================================================ FILE: examples/flutter_integration_tests/linux/CMakeLists.txt ================================================ # Project-level configuration. cmake_minimum_required(VERSION 3.13) project(runner LANGUAGES CXX) # The name of the executable created for the application. Change this to change # the on-disk name of your application. set(BINARY_NAME "flutter_integration_tests") # The unique GTK application identifier for this application. See: # https://wiki.gnome.org/HowDoI/ChooseApplicationID set(APPLICATION_ID "com.example.flutter_integration_tests") # Explicitly opt in to modern CMake behaviors to avoid warnings with recent # versions of CMake. cmake_policy(SET CMP0063 NEW) # Load bundled libraries from the lib/ directory relative to the binary. set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") # Root filesystem for cross-building. if(FLUTTER_TARGET_PLATFORM_SYSROOT) set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) endif() # Define build configuration options. if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Flutter build mode" FORCE) set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Profile" "Release") endif() # Compilation settings that should be applied to most targets. # # Be cautious about adding new options here, as plugins use this function by # default. In most cases, you should add new options to specific targets instead # of modifying this function. function(APPLY_STANDARD_SETTINGS TARGET) target_compile_features(${TARGET} PUBLIC cxx_std_14) target_compile_options(${TARGET} PRIVATE -Wall -Werror) target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") endfunction() # Flutter library and tool build rules. set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") add_subdirectory(${FLUTTER_MANAGED_DIR}) # System-level dependencies. find_package(PkgConfig REQUIRED) pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) # Application build; see runner/CMakeLists.txt. add_subdirectory("runner") # Run the Flutter tool portions of the build. This must not be removed. add_dependencies(${BINARY_NAME} flutter_assemble) # Only the install-generated bundle's copy of the executable will launch # correctly, since the resources must in the right relative locations. To avoid # people trying to run the unbundled copy, put it in a subdirectory instead of # the default top-level location. set_target_properties(${BINARY_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" ) # Generated plugin build rules, which manage building the plugins and adding # them to the application. include(flutter/generated_plugins.cmake) # === Installation === # By default, "installing" just makes a relocatable bundle in the build # directory. set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) endif() # Start with a clean build bundle directory every time. install(CODE " file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") " COMPONENT Runtime) set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" COMPONENT Runtime) install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime) foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) install(FILES "${bundled_library}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime) endforeach(bundled_library) # Copy the native assets provided by the build.dart from all packages. set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/") install(DIRECTORY "${NATIVE_ASSETS_DIR}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime) # Fully re-copy the assets directory on each build to avoid having stale files # from a previous install. set(FLUTTER_ASSET_DIR_NAME "flutter_assets") install(CODE " file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") " COMPONENT Runtime) install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) # Install the AOT library on non-Debug builds only. if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime) endif() ================================================ FILE: examples/flutter_integration_tests/linux/flutter/CMakeLists.txt ================================================ # This file controls Flutter-level build steps. It should not be edited. cmake_minimum_required(VERSION 3.10) set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") # Configuration provided via flutter tool. include(${EPHEMERAL_DIR}/generated_config.cmake) # TODO: Move the rest of this into files in ephemeral. See # https://github.com/flutter/flutter/issues/57146. # Serves the same purpose as list(TRANSFORM ... PREPEND ...), # which isn't available in 3.10. function(list_prepend LIST_NAME PREFIX) set(NEW_LIST "") foreach(element ${${LIST_NAME}}) list(APPEND NEW_LIST "${PREFIX}${element}") endforeach(element) set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) endfunction() # === Flutter Library === # System-level dependencies. find_package(PkgConfig REQUIRED) pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") # Published to parent scope for install step. set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) list(APPEND FLUTTER_LIBRARY_HEADERS "fl_basic_message_channel.h" "fl_binary_codec.h" "fl_binary_messenger.h" "fl_dart_project.h" "fl_engine.h" "fl_json_message_codec.h" "fl_json_method_codec.h" "fl_message_codec.h" "fl_method_call.h" "fl_method_channel.h" "fl_method_codec.h" "fl_method_response.h" "fl_plugin_registrar.h" "fl_plugin_registry.h" "fl_standard_message_codec.h" "fl_standard_method_codec.h" "fl_string_codec.h" "fl_value.h" "fl_view.h" "flutter_linux.h" ) list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") add_library(flutter INTERFACE) target_include_directories(flutter INTERFACE "${EPHEMERAL_DIR}" ) target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") target_link_libraries(flutter INTERFACE PkgConfig::GTK PkgConfig::GLIB PkgConfig::GIO ) add_dependencies(flutter flutter_assemble) # === Flutter tool backend === # _phony_ is a non-existent file to force this command to run every time, # since currently there's no way to get a full input/output list from the # flutter tool. add_custom_command( OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} ${CMAKE_CURRENT_BINARY_DIR}/_phony_ COMMAND ${CMAKE_COMMAND} -E env ${FLUTTER_TOOL_ENVIRONMENT} "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} VERBATIM ) add_custom_target(flutter_assemble DEPENDS "${FLUTTER_LIBRARY}" ${FLUTTER_LIBRARY_HEADERS} ) ================================================ FILE: examples/flutter_integration_tests/linux/flutter/generated_plugin_registrant.cc ================================================ // // Generated file. Do not edit. // // clang-format off #include "generated_plugin_registrant.h" void fl_register_plugins(FlPluginRegistry* registry) { } ================================================ FILE: examples/flutter_integration_tests/linux/flutter/generated_plugin_registrant.h ================================================ // // Generated file. Do not edit. // // clang-format off #ifndef GENERATED_PLUGIN_REGISTRANT_ #define GENERATED_PLUGIN_REGISTRANT_ #include // Registers Flutter plugins. void fl_register_plugins(FlPluginRegistry* registry); #endif // GENERATED_PLUGIN_REGISTRANT_ ================================================ FILE: examples/flutter_integration_tests/linux/flutter/generated_plugins.cmake ================================================ # # Generated file, do not edit. # list(APPEND FLUTTER_PLUGIN_LIST ) list(APPEND FLUTTER_FFI_PLUGIN_LIST ) set(PLUGIN_BUNDLED_LIBRARIES) foreach(plugin ${FLUTTER_PLUGIN_LIST}) add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) list(APPEND PLUGIN_BUNDLED_LIBRARIES $) list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) endforeach(plugin) foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) endforeach(ffi_plugin) ================================================ FILE: examples/flutter_integration_tests/linux/runner/CMakeLists.txt ================================================ cmake_minimum_required(VERSION 3.13) project(runner LANGUAGES CXX) # Define the application target. To change its name, change BINARY_NAME in the # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer # work. # # Any new source files that you add to the application should be added here. add_executable(${BINARY_NAME} "main.cc" "my_application.cc" "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" ) # Apply the standard set of build settings. This can be removed for applications # that need different build settings. apply_standard_settings(${BINARY_NAME}) # Add preprocessor definitions for the application ID. add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") # Add dependency libraries. Add any application-specific dependencies here. target_link_libraries(${BINARY_NAME} PRIVATE flutter) target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") ================================================ FILE: examples/flutter_integration_tests/linux/runner/main.cc ================================================ #include "my_application.h" int main(int argc, char** argv) { g_autoptr(MyApplication) app = my_application_new(); return g_application_run(G_APPLICATION(app), argc, argv); } ================================================ FILE: examples/flutter_integration_tests/linux/runner/my_application.cc ================================================ #include "my_application.h" #include #ifdef GDK_WINDOWING_X11 #include #endif #include "flutter/generated_plugin_registrant.h" struct _MyApplication { GtkApplication parent_instance; char** dart_entrypoint_arguments; }; G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) // Called when first Flutter frame received. static void first_frame_cb(MyApplication* self, FlView *view) { gtk_widget_show(gtk_widget_get_toplevel(GTK_WIDGET(view))); } // Implements GApplication::activate. static void my_application_activate(GApplication* application) { MyApplication* self = MY_APPLICATION(application); GtkWindow* window = GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); // Use a header bar when running in GNOME as this is the common style used // by applications and is the setup most users will be using (e.g. Ubuntu // desktop). // If running on X and not using GNOME then just use a traditional title bar // in case the window manager does more exotic layout, e.g. tiling. // If running on Wayland assume the header bar will work (may need changing // if future cases occur). gboolean use_header_bar = TRUE; #ifdef GDK_WINDOWING_X11 GdkScreen* screen = gtk_window_get_screen(window); if (GDK_IS_X11_SCREEN(screen)) { const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); if (g_strcmp0(wm_name, "GNOME Shell") != 0) { use_header_bar = FALSE; } } #endif if (use_header_bar) { GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); gtk_widget_show(GTK_WIDGET(header_bar)); gtk_header_bar_set_title(header_bar, "flutter_integration_tests"); gtk_header_bar_set_show_close_button(header_bar, TRUE); gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); } else { gtk_window_set_title(window, "flutter_integration_tests"); } gtk_window_set_default_size(window, 1280, 720); g_autoptr(FlDartProject) project = fl_dart_project_new(); fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); FlView* view = fl_view_new(project); GdkRGBA background_color; // Background defaults to black, override it here if necessary, e.g. #00000000 for transparent. gdk_rgba_parse(&background_color, "#000000"); fl_view_set_background_color(view, &background_color); gtk_widget_show(GTK_WIDGET(view)); gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); // Show the window when Flutter renders. // Requires the view to be realized so we can start rendering. g_signal_connect_swapped(view, "first-frame", G_CALLBACK(first_frame_cb), self); gtk_widget_realize(GTK_WIDGET(view)); fl_register_plugins(FL_PLUGIN_REGISTRY(view)); gtk_widget_grab_focus(GTK_WIDGET(view)); } // Implements GApplication::local_command_line. static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { MyApplication* self = MY_APPLICATION(application); // Strip out the first argument as it is the binary name. self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); g_autoptr(GError) error = nullptr; if (!g_application_register(application, nullptr, &error)) { g_warning("Failed to register: %s", error->message); *exit_status = 1; return TRUE; } g_application_activate(application); *exit_status = 0; return TRUE; } // Implements GApplication::startup. static void my_application_startup(GApplication* application) { //MyApplication* self = MY_APPLICATION(object); // Perform any actions required at application startup. G_APPLICATION_CLASS(my_application_parent_class)->startup(application); } // Implements GApplication::shutdown. static void my_application_shutdown(GApplication* application) { //MyApplication* self = MY_APPLICATION(object); // Perform any actions required at application shutdown. G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application); } // Implements GObject::dispose. static void my_application_dispose(GObject* object) { MyApplication* self = MY_APPLICATION(object); g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); G_OBJECT_CLASS(my_application_parent_class)->dispose(object); } static void my_application_class_init(MyApplicationClass* klass) { G_APPLICATION_CLASS(klass)->activate = my_application_activate; G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; G_APPLICATION_CLASS(klass)->startup = my_application_startup; G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown; G_OBJECT_CLASS(klass)->dispose = my_application_dispose; } static void my_application_init(MyApplication* self) {} MyApplication* my_application_new() { // Set the program name to the application ID, which helps various systems // like GTK and desktop environments map this running application to its // corresponding .desktop file. This ensures better integration by allowing // the application to be recognized beyond its binary name. g_set_prgname(APPLICATION_ID); return MY_APPLICATION(g_object_new(my_application_get_type(), "application-id", APPLICATION_ID, "flags", G_APPLICATION_NON_UNIQUE, nullptr)); } ================================================ FILE: examples/flutter_integration_tests/linux/runner/my_application.h ================================================ #ifndef FLUTTER_MY_APPLICATION_H_ #define FLUTTER_MY_APPLICATION_H_ #include G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, GtkApplication) /** * my_application_new: * * Creates a new Flutter-based application. * * Returns: a new #MyApplication. */ MyApplication* my_application_new(); #endif // FLUTTER_MY_APPLICATION_H_ ================================================ FILE: examples/flutter_integration_tests/macos/.gitignore ================================================ # Flutter-related **/Flutter/ephemeral/ **/Pods/ # Xcode-related **/dgph **/xcuserdata/ ================================================ FILE: examples/flutter_integration_tests/macos/Flutter/Flutter-Debug.xcconfig ================================================ #include "ephemeral/Flutter-Generated.xcconfig" ================================================ FILE: examples/flutter_integration_tests/macos/Flutter/Flutter-Release.xcconfig ================================================ #include "ephemeral/Flutter-Generated.xcconfig" ================================================ FILE: examples/flutter_integration_tests/macos/Flutter/GeneratedPluginRegistrant.swift ================================================ // // Generated file. Do not edit. // import FlutterMacOS import Foundation func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { } ================================================ FILE: examples/flutter_integration_tests/macos/Runner/AppDelegate.swift ================================================ import Cocoa import FlutterMacOS @main class AppDelegate: FlutterAppDelegate { override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { return true } override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { return true } } ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json ================================================ { "images" : [ { "size" : "16x16", "idiom" : "mac", "filename" : "app_icon_16.png", "scale" : "1x" }, { "size" : "16x16", "idiom" : "mac", "filename" : "app_icon_32.png", "scale" : "2x" }, { "size" : "32x32", "idiom" : "mac", "filename" : "app_icon_32.png", "scale" : "1x" }, { "size" : "32x32", "idiom" : "mac", "filename" : "app_icon_64.png", "scale" : "2x" }, { "size" : "128x128", "idiom" : "mac", "filename" : "app_icon_128.png", "scale" : "1x" }, { "size" : "128x128", "idiom" : "mac", "filename" : "app_icon_256.png", "scale" : "2x" }, { "size" : "256x256", "idiom" : "mac", "filename" : "app_icon_256.png", "scale" : "1x" }, { "size" : "256x256", "idiom" : "mac", "filename" : "app_icon_512.png", "scale" : "2x" }, { "size" : "512x512", "idiom" : "mac", "filename" : "app_icon_512.png", "scale" : "1x" }, { "size" : "512x512", "idiom" : "mac", "filename" : "app_icon_1024.png", "scale" : "2x" } ], "info" : { "version" : 1, "author" : "xcode" } } ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Base.lproj/MainMenu.xib ================================================ ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Configs/AppInfo.xcconfig ================================================ // Application-level settings for the Runner target. // // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the // future. If not, the values below would default to using the project name when this becomes a // 'flutter create' template. // The application's name. By default this is also the title of the Flutter window. PRODUCT_NAME = flutter_integration_tests // The application's bundle identifier PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests // The copyright displayed in application information PRODUCT_COPYRIGHT = Copyright © 2025 com.example. All rights reserved. ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Configs/Debug.xcconfig ================================================ #include "../../Flutter/Flutter-Debug.xcconfig" #include "Warnings.xcconfig" ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Configs/Release.xcconfig ================================================ #include "../../Flutter/Flutter-Release.xcconfig" #include "Warnings.xcconfig" ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Configs/Warnings.xcconfig ================================================ WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings GCC_WARN_UNDECLARED_SELECTOR = YES CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLANG_WARN_PRAGMA_PACK = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_COMMA = YES GCC_WARN_STRICT_SELECTOR_MATCH = YES CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES GCC_WARN_SHADOW = YES CLANG_WARN_UNREACHABLE_CODE = YES ================================================ FILE: examples/flutter_integration_tests/macos/Runner/DebugProfile.entitlements ================================================ com.apple.security.app-sandbox com.apple.security.cs.allow-jit com.apple.security.network.server ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Info.plist ================================================ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIconFile CFBundleIdentifier $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType APPL CFBundleShortVersionString $(FLUTTER_BUILD_NAME) CFBundleVersion $(FLUTTER_BUILD_NUMBER) LSMinimumSystemVersion $(MACOSX_DEPLOYMENT_TARGET) NSHumanReadableCopyright $(PRODUCT_COPYRIGHT) NSMainNibFile MainMenu NSPrincipalClass NSApplication ================================================ FILE: examples/flutter_integration_tests/macos/Runner/MainFlutterWindow.swift ================================================ import Cocoa import FlutterMacOS class MainFlutterWindow: NSWindow { override func awakeFromNib() { let flutterViewController = FlutterViewController() let windowFrame = self.frame self.contentViewController = flutterViewController self.setFrame(windowFrame, display: true) RegisterGeneratedPlugins(registry: flutterViewController) super.awakeFromNib() } } ================================================ FILE: examples/flutter_integration_tests/macos/Runner/Release.entitlements ================================================ com.apple.security.app-sandbox ================================================ FILE: examples/flutter_integration_tests/macos/Runner.xcodeproj/project.pbxproj ================================================ // !$*UTF8*$! { archiveVersion = 1; classes = { }; objectVersion = 54; objects = { /* Begin PBXAggregateTarget section */ 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { isa = PBXAggregateTarget; buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; buildPhases = ( 33CC111E2044C6BF0003C045 /* ShellScript */, ); dependencies = ( ); name = "Flutter Assemble"; productName = FLX; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 33CC10E52044A3C60003C045 /* Project object */; proxyType = 1; remoteGlobalIDString = 33CC10EC2044A3C60003C045; remoteInfo = Runner; }; 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 33CC10E52044A3C60003C045 /* Project object */; proxyType = 1; remoteGlobalIDString = 33CC111A2044C6BA0003C045; remoteInfo = FLX; }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ 33CC110E2044A8840003C045 /* Bundle Framework */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 10; files = ( ); name = "Bundle Framework"; runOnlyForDeploymentPostprocessing = 0; }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; 33CC10ED2044A3C60003C045 /* flutter_integration_tests.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "flutter_integration_tests.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ 331C80D2294CF70F00263BE5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; 33CC10EA2044A3C60003C045 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ 331C80D6294CF71000263BE5 /* RunnerTests */ = { isa = PBXGroup; children = ( 331C80D7294CF71000263BE5 /* RunnerTests.swift */, ); path = RunnerTests; sourceTree = ""; }; 33BA886A226E78AF003329D5 /* Configs */ = { isa = PBXGroup; children = ( 33E5194F232828860026EE4D /* AppInfo.xcconfig */, 9740EEB21CF90195004384FC /* Debug.xcconfig */, 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, ); path = Configs; sourceTree = ""; }; 33CC10E42044A3C60003C045 = { isa = PBXGroup; children = ( 33FAB671232836740065AC1E /* Runner */, 33CEB47122A05771004F2AC0 /* Flutter */, 331C80D6294CF71000263BE5 /* RunnerTests */, 33CC10EE2044A3C60003C045 /* Products */, D73912EC22F37F3D000D13A0 /* Frameworks */, ); sourceTree = ""; }; 33CC10EE2044A3C60003C045 /* Products */ = { isa = PBXGroup; children = ( 33CC10ED2044A3C60003C045 /* flutter_integration_tests.app */, 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, ); name = Products; sourceTree = ""; }; 33CC11242044D66E0003C045 /* Resources */ = { isa = PBXGroup; children = ( 33CC10F22044A3C60003C045 /* Assets.xcassets */, 33CC10F42044A3C60003C045 /* MainMenu.xib */, 33CC10F72044A3C60003C045 /* Info.plist */, ); name = Resources; path = ..; sourceTree = ""; }; 33CEB47122A05771004F2AC0 /* Flutter */ = { isa = PBXGroup; children = ( 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, ); path = Flutter; sourceTree = ""; }; 33FAB671232836740065AC1E /* Runner */ = { isa = PBXGroup; children = ( 33CC10F02044A3C60003C045 /* AppDelegate.swift */, 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, 33E51913231747F40026EE4D /* DebugProfile.entitlements */, 33E51914231749380026EE4D /* Release.entitlements */, 33CC11242044D66E0003C045 /* Resources */, 33BA886A226E78AF003329D5 /* Configs */, ); path = Runner; sourceTree = ""; }; D73912EC22F37F3D000D13A0 /* Frameworks */ = { isa = PBXGroup; children = ( ); name = Frameworks; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ 331C80D4294CF70F00263BE5 /* RunnerTests */ = { isa = PBXNativeTarget; buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; buildPhases = ( 331C80D1294CF70F00263BE5 /* Sources */, 331C80D2294CF70F00263BE5 /* Frameworks */, 331C80D3294CF70F00263BE5 /* Resources */, ); buildRules = ( ); dependencies = ( 331C80DA294CF71000263BE5 /* PBXTargetDependency */, ); name = RunnerTests; productName = RunnerTests; productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; 33CC10EC2044A3C60003C045 /* Runner */ = { isa = PBXNativeTarget; buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; buildPhases = ( 33CC10E92044A3C60003C045 /* Sources */, 33CC10EA2044A3C60003C045 /* Frameworks */, 33CC10EB2044A3C60003C045 /* Resources */, 33CC110E2044A8840003C045 /* Bundle Framework */, 3399D490228B24CF009A79C7 /* ShellScript */, ); buildRules = ( ); dependencies = ( 33CC11202044C79F0003C045 /* PBXTargetDependency */, ); name = Runner; productName = Runner; productReference = 33CC10ED2044A3C60003C045 /* flutter_integration_tests.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 33CC10E52044A3C60003C045 /* Project object */ = { isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = YES; LastSwiftUpdateCheck = 0920; LastUpgradeCheck = 1510; ORGANIZATIONNAME = ""; TargetAttributes = { 331C80D4294CF70F00263BE5 = { CreatedOnToolsVersion = 14.0; TestTargetID = 33CC10EC2044A3C60003C045; }; 33CC10EC2044A3C60003C045 = { CreatedOnToolsVersion = 9.2; LastSwiftMigration = 1100; ProvisioningStyle = Automatic; SystemCapabilities = { com.apple.Sandbox = { enabled = 1; }; }; }; 33CC111A2044C6BA0003C045 = { CreatedOnToolsVersion = 9.2; ProvisioningStyle = Manual; }; }; }; buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; compatibilityVersion = "Xcode 9.3"; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( en, Base, ); mainGroup = 33CC10E42044A3C60003C045; productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 33CC10EC2044A3C60003C045 /* Runner */, 331C80D4294CF70F00263BE5 /* RunnerTests */, 33CC111A2044C6BA0003C045 /* Flutter Assemble */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ 331C80D3294CF70F00263BE5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; 33CC10EB2044A3C60003C045 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ 3399D490228B24CF009A79C7 /* ShellScript */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( ); inputPaths = ( ); outputFileListPaths = ( ); outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; }; 33CC111E2044C6BF0003C045 /* ShellScript */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( Flutter/ephemeral/FlutterInputs.xcfilelist, ); inputPaths = ( Flutter/ephemeral/tripwire, ); outputFileListPaths = ( Flutter/ephemeral/FlutterOutputs.xcfilelist, ); outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ 331C80D1294CF70F00263BE5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; 33CC10E92044A3C60003C045 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 33CC10EC2044A3C60003C045 /* Runner */; targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; }; 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { isa = PBXVariantGroup; children = ( 33CC10F52044A3C60003C045 /* Base */, ); name = MainMenu.xib; path = Runner; sourceTree = ""; }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ 331C80DB294CF71000263BE5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_integration_tests.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_integration_tests"; }; name = Debug; }; 331C80DC294CF71000263BE5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_integration_tests.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_integration_tests"; }; name = Release; }; 331C80DD294CF71000263BE5 /* Profile */ = { isa = XCBuildConfiguration; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterIntegrationTests.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/flutter_integration_tests.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/flutter_integration_tests"; }; name = Profile; }; 338D0CE9231458BD00FA5F75 /* Profile */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = macosx; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OPTIMIZATION_LEVEL = "-O"; }; name = Profile; }; 338D0CEA231458BD00FA5F75 /* Profile */ = { isa = XCBuildConfiguration; baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_VERSION = 5.0; }; name = Profile; }; 338D0CEB231458BD00FA5F75 /* Profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_STYLE = Manual; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Profile; }; 33CC10F92044A3C60003C045 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = macosx; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; }; name = Debug; }; 33CC10FA2044A3C60003C045 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; CODE_SIGN_IDENTITY = "-"; COPY_PHASE_STRIP = NO; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = macosx; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_OPTIMIZATION_LEVEL = "-O"; }; name = Release; }; 33CC10FC2044A3C60003C045 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; }; name = Debug; }; 33CC10FD2044A3C60003C045 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; INFOPLIST_FILE = Runner/Info.plist; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_VERSION = 5.0; }; name = Release; }; 33CC111C2044C6BA0003C045 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_STYLE = Manual; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; }; 33CC111D2044C6BA0003C045 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_STYLE = Automatic; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 331C80DB294CF71000263BE5 /* Debug */, 331C80DC294CF71000263BE5 /* Release */, 331C80DD294CF71000263BE5 /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { isa = XCConfigurationList; buildConfigurations = ( 33CC10F92044A3C60003C045 /* Debug */, 33CC10FA2044A3C60003C045 /* Release */, 338D0CE9231458BD00FA5F75 /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { isa = XCConfigurationList; buildConfigurations = ( 33CC10FC2044A3C60003C045 /* Debug */, 33CC10FD2044A3C60003C045 /* Release */, 338D0CEA231458BD00FA5F75 /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { isa = XCConfigurationList; buildConfigurations = ( 33CC111C2044C6BA0003C045 /* Debug */, 33CC111D2044C6BA0003C045 /* Release */, 338D0CEB231458BD00FA5F75 /* Profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; rootObject = 33CC10E52044A3C60003C045 /* Project object */; } ================================================ FILE: examples/flutter_integration_tests/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist ================================================ IDEDidComputeMac32BitWarning ================================================ FILE: examples/flutter_integration_tests/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme ================================================ ================================================ FILE: examples/flutter_integration_tests/macos/Runner.xcworkspace/contents.xcworkspacedata ================================================ ================================================ FILE: examples/flutter_integration_tests/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist ================================================ IDEDidComputeMac32BitWarning ================================================ FILE: examples/flutter_integration_tests/macos/RunnerTests/RunnerTests.swift ================================================ import Cocoa import FlutterMacOS import XCTest class RunnerTests: XCTestCase { func testExample() { // If you add code to the Runner application, consider adding tests here. // See https://developer.apple.com/documentation/xctest for more information about using XCTest. } } ================================================ FILE: examples/flutter_integration_tests/pubspec.yaml ================================================ name: flutter_integration_tests publish_to: 'none' version: 1.0.0+1 resolution: workspace environment: sdk: ^3.10.0-0 dependencies: flutter: sdk: flutter sqlite3: sqlite3_connection_pool: dev_dependencies: flutter_test: sdk: flutter integration_test: sdk: flutter flutter_lints: ^6.0.0 flutter: uses-material-design: true ================================================ FILE: examples/flutter_integration_tests/windows/.gitignore ================================================ flutter/ephemeral/ # Visual Studio user-specific files. *.suo *.user *.userosscache *.sln.docstates # Visual Studio build-related files. x64/ x86/ # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !*.[Cc]ache/ ================================================ FILE: examples/flutter_integration_tests/windows/CMakeLists.txt ================================================ # Project-level configuration. cmake_minimum_required(VERSION 3.14) project(flutter_integration_tests LANGUAGES CXX) # The name of the executable created for the application. Change this to change # the on-disk name of your application. set(BINARY_NAME "flutter_integration_tests") # Explicitly opt in to modern CMake behaviors to avoid warnings with recent # versions of CMake. cmake_policy(VERSION 3.14...3.25) # Define build configuration option. get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) if(IS_MULTICONFIG) set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" CACHE STRING "" FORCE) else() if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Flutter build mode" FORCE) set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Profile" "Release") endif() endif() # Define settings for the Profile build mode. set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") # Use Unicode for all projects. add_definitions(-DUNICODE -D_UNICODE) # Compilation settings that should be applied to most targets. # # Be cautious about adding new options here, as plugins use this function by # default. In most cases, you should add new options to specific targets instead # of modifying this function. function(APPLY_STANDARD_SETTINGS TARGET) target_compile_features(${TARGET} PUBLIC cxx_std_17) target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") target_compile_options(${TARGET} PRIVATE /EHsc) target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") endfunction() # Flutter library and tool build rules. set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") add_subdirectory(${FLUTTER_MANAGED_DIR}) # Application build; see runner/CMakeLists.txt. add_subdirectory("runner") # Generated plugin build rules, which manage building the plugins and adding # them to the application. include(flutter/generated_plugins.cmake) # === Installation === # Support files are copied into place next to the executable, so that it can # run in place. This is done instead of making a separate bundle (as on Linux) # so that building and running from within Visual Studio will work. set(BUILD_BUNDLE_DIR "$") # Make the "install" step default, as it's required to run. set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) endif() set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" COMPONENT Runtime) install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime) if(PLUGIN_BUNDLED_LIBRARIES) install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime) endif() # Copy the native assets provided by the build.dart from all packages. set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/windows/") install(DIRECTORY "${NATIVE_ASSETS_DIR}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime) # Fully re-copy the assets directory on each build to avoid having stale files # from a previous install. set(FLUTTER_ASSET_DIR_NAME "flutter_assets") install(CODE " file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") " COMPONENT Runtime) install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) # Install the AOT library on non-Debug builds only. install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" CONFIGURATIONS Profile;Release COMPONENT Runtime) ================================================ FILE: examples/flutter_integration_tests/windows/flutter/CMakeLists.txt ================================================ # This file controls Flutter-level build steps. It should not be edited. cmake_minimum_required(VERSION 3.14) set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") # Configuration provided via flutter tool. include(${EPHEMERAL_DIR}/generated_config.cmake) # TODO: Move the rest of this into files in ephemeral. See # https://github.com/flutter/flutter/issues/57146. set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") # Set fallback configurations for older versions of the flutter tool. if (NOT DEFINED FLUTTER_TARGET_PLATFORM) set(FLUTTER_TARGET_PLATFORM "windows-x64") endif() # === Flutter Library === set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") # Published to parent scope for install step. set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) list(APPEND FLUTTER_LIBRARY_HEADERS "flutter_export.h" "flutter_windows.h" "flutter_messenger.h" "flutter_plugin_registrar.h" "flutter_texture_registrar.h" ) list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") add_library(flutter INTERFACE) target_include_directories(flutter INTERFACE "${EPHEMERAL_DIR}" ) target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") add_dependencies(flutter flutter_assemble) # === Wrapper === list(APPEND CPP_WRAPPER_SOURCES_CORE "core_implementations.cc" "standard_codec.cc" ) list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") list(APPEND CPP_WRAPPER_SOURCES_PLUGIN "plugin_registrar.cc" ) list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") list(APPEND CPP_WRAPPER_SOURCES_APP "flutter_engine.cc" "flutter_view_controller.cc" ) list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") # Wrapper sources needed for a plugin. add_library(flutter_wrapper_plugin STATIC ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} ) apply_standard_settings(flutter_wrapper_plugin) set_target_properties(flutter_wrapper_plugin PROPERTIES POSITION_INDEPENDENT_CODE ON) set_target_properties(flutter_wrapper_plugin PROPERTIES CXX_VISIBILITY_PRESET hidden) target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) target_include_directories(flutter_wrapper_plugin PUBLIC "${WRAPPER_ROOT}/include" ) add_dependencies(flutter_wrapper_plugin flutter_assemble) # Wrapper sources needed for the runner. add_library(flutter_wrapper_app STATIC ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_APP} ) apply_standard_settings(flutter_wrapper_app) target_link_libraries(flutter_wrapper_app PUBLIC flutter) target_include_directories(flutter_wrapper_app PUBLIC "${WRAPPER_ROOT}/include" ) add_dependencies(flutter_wrapper_app flutter_assemble) # === Flutter tool backend === # _phony_ is a non-existent file to force this command to run every time, # since currently there's no way to get a full input/output list from the # flutter tool. set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) add_custom_command( OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} ${CPP_WRAPPER_SOURCES_APP} ${PHONY_OUTPUT} COMMAND ${CMAKE_COMMAND} -E env ${FLUTTER_TOOL_ENVIRONMENT} "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" ${FLUTTER_TARGET_PLATFORM} $ VERBATIM ) add_custom_target(flutter_assemble DEPENDS "${FLUTTER_LIBRARY}" ${FLUTTER_LIBRARY_HEADERS} ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} ${CPP_WRAPPER_SOURCES_APP} ) ================================================ FILE: examples/flutter_integration_tests/windows/flutter/generated_plugin_registrant.cc ================================================ // // Generated file. Do not edit. // // clang-format off #include "generated_plugin_registrant.h" void RegisterPlugins(flutter::PluginRegistry* registry) { } ================================================ FILE: examples/flutter_integration_tests/windows/flutter/generated_plugin_registrant.h ================================================ // // Generated file. Do not edit. // // clang-format off #ifndef GENERATED_PLUGIN_REGISTRANT_ #define GENERATED_PLUGIN_REGISTRANT_ #include // Registers Flutter plugins. void RegisterPlugins(flutter::PluginRegistry* registry); #endif // GENERATED_PLUGIN_REGISTRANT_ ================================================ FILE: examples/flutter_integration_tests/windows/flutter/generated_plugins.cmake ================================================ # # Generated file, do not edit. # list(APPEND FLUTTER_PLUGIN_LIST ) list(APPEND FLUTTER_FFI_PLUGIN_LIST ) set(PLUGIN_BUNDLED_LIBRARIES) foreach(plugin ${FLUTTER_PLUGIN_LIST}) add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) list(APPEND PLUGIN_BUNDLED_LIBRARIES $) list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) endforeach(plugin) foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) endforeach(ffi_plugin) ================================================ FILE: examples/flutter_integration_tests/windows/runner/CMakeLists.txt ================================================ cmake_minimum_required(VERSION 3.14) project(runner LANGUAGES CXX) # Define the application target. To change its name, change BINARY_NAME in the # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer # work. # # Any new source files that you add to the application should be added here. add_executable(${BINARY_NAME} WIN32 "flutter_window.cpp" "main.cpp" "utils.cpp" "win32_window.cpp" "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" "Runner.rc" "runner.exe.manifest" ) # Apply the standard set of build settings. This can be removed for applications # that need different build settings. apply_standard_settings(${BINARY_NAME}) # Add preprocessor definitions for the build version. target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") # Disable Windows macros that collide with C++ standard library functions. target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") # Add dependency libraries and include directories. Add any application-specific # dependencies here. target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") # Run the Flutter tool portions of the build. This must not be removed. add_dependencies(${BINARY_NAME} flutter_assemble) ================================================ FILE: examples/flutter_integration_tests/windows/runner/Runner.rc ================================================ // Microsoft Visual C++ generated resource script. // #pragma code_page(65001) #include "resource.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 2 resource. // #include "winres.h" ///////////////////////////////////////////////////////////////////////////// #undef APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // English (United States) resources #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US #ifdef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // // TEXTINCLUDE // 1 TEXTINCLUDE BEGIN "resource.h\0" END 2 TEXTINCLUDE BEGIN "#include ""winres.h""\r\n" "\0" END 3 TEXTINCLUDE BEGIN "\r\n" "\0" END #endif // APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // // Icon // // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. IDI_APP_ICON ICON "resources\\app_icon.ico" ///////////////////////////////////////////////////////////////////////////// // // Version // #if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) #define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD #else #define VERSION_AS_NUMBER 1,0,0,0 #endif #if defined(FLUTTER_VERSION) #define VERSION_AS_STRING FLUTTER_VERSION #else #define VERSION_AS_STRING "1.0.0" #endif VS_VERSION_INFO VERSIONINFO FILEVERSION VERSION_AS_NUMBER PRODUCTVERSION VERSION_AS_NUMBER FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG FILEFLAGS VS_FF_DEBUG #else FILEFLAGS 0x0L #endif FILEOS VOS__WINDOWS32 FILETYPE VFT_APP FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904e4" BEGIN VALUE "CompanyName", "com.example" "\0" VALUE "FileDescription", "flutter_integration_tests" "\0" VALUE "FileVersion", VERSION_AS_STRING "\0" VALUE "InternalName", "flutter_integration_tests" "\0" VALUE "LegalCopyright", "Copyright (C) 2025 com.example. All rights reserved." "\0" VALUE "OriginalFilename", "flutter_integration_tests.exe" "\0" VALUE "ProductName", "flutter_integration_tests" "\0" VALUE "ProductVersion", VERSION_AS_STRING "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1252 END END #endif // English (United States) resources ///////////////////////////////////////////////////////////////////////////// #ifndef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // // Generated from the TEXTINCLUDE 3 resource. // ///////////////////////////////////////////////////////////////////////////// #endif // not APSTUDIO_INVOKED ================================================ FILE: examples/flutter_integration_tests/windows/runner/flutter_window.cpp ================================================ #include "flutter_window.h" #include #include "flutter/generated_plugin_registrant.h" FlutterWindow::FlutterWindow(const flutter::DartProject& project) : project_(project) {} FlutterWindow::~FlutterWindow() {} bool FlutterWindow::OnCreate() { if (!Win32Window::OnCreate()) { return false; } RECT frame = GetClientArea(); // The size here must match the window dimensions to avoid unnecessary surface // creation / destruction in the startup path. flutter_controller_ = std::make_unique( frame.right - frame.left, frame.bottom - frame.top, project_); // Ensure that basic setup of the controller was successful. if (!flutter_controller_->engine() || !flutter_controller_->view()) { return false; } RegisterPlugins(flutter_controller_->engine()); SetChildContent(flutter_controller_->view()->GetNativeWindow()); flutter_controller_->engine()->SetNextFrameCallback([&]() { this->Show(); }); // Flutter can complete the first frame before the "show window" callback is // registered. The following call ensures a frame is pending to ensure the // window is shown. It is a no-op if the first frame hasn't completed yet. flutter_controller_->ForceRedraw(); return true; } void FlutterWindow::OnDestroy() { if (flutter_controller_) { flutter_controller_ = nullptr; } Win32Window::OnDestroy(); } LRESULT FlutterWindow::MessageHandler(HWND hwnd, UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept { // Give Flutter, including plugins, an opportunity to handle window messages. if (flutter_controller_) { std::optional result = flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, lparam); if (result) { return *result; } } switch (message) { case WM_FONTCHANGE: flutter_controller_->engine()->ReloadSystemFonts(); break; } return Win32Window::MessageHandler(hwnd, message, wparam, lparam); } ================================================ FILE: examples/flutter_integration_tests/windows/runner/flutter_window.h ================================================ #ifndef RUNNER_FLUTTER_WINDOW_H_ #define RUNNER_FLUTTER_WINDOW_H_ #include #include #include #include "win32_window.h" // A window that does nothing but host a Flutter view. class FlutterWindow : public Win32Window { public: // Creates a new FlutterWindow hosting a Flutter view running |project|. explicit FlutterWindow(const flutter::DartProject& project); virtual ~FlutterWindow(); protected: // Win32Window: bool OnCreate() override; void OnDestroy() override; LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept override; private: // The project to run. flutter::DartProject project_; // The Flutter instance hosted by this window. std::unique_ptr flutter_controller_; }; #endif // RUNNER_FLUTTER_WINDOW_H_ ================================================ FILE: examples/flutter_integration_tests/windows/runner/main.cpp ================================================ #include #include #include #include "flutter_window.h" #include "utils.h" int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, _In_ wchar_t *command_line, _In_ int show_command) { // Attach to console when present (e.g., 'flutter run') or create a // new console when running with a debugger. if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { CreateAndAttachConsole(); } // Initialize COM, so that it is available for use in the library and/or // plugins. ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); flutter::DartProject project(L"data"); std::vector command_line_arguments = GetCommandLineArguments(); project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); FlutterWindow window(project); Win32Window::Point origin(10, 10); Win32Window::Size size(1280, 720); if (!window.Create(L"flutter_integration_tests", origin, size)) { return EXIT_FAILURE; } window.SetQuitOnClose(true); ::MSG msg; while (::GetMessage(&msg, nullptr, 0, 0)) { ::TranslateMessage(&msg); ::DispatchMessage(&msg); } ::CoUninitialize(); return EXIT_SUCCESS; } ================================================ FILE: examples/flutter_integration_tests/windows/runner/resource.h ================================================ //{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by Runner.rc // #define IDI_APP_ICON 101 // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 102 #define _APS_NEXT_COMMAND_VALUE 40001 #define _APS_NEXT_CONTROL_VALUE 1001 #define _APS_NEXT_SYMED_VALUE 101 #endif #endif ================================================ FILE: examples/flutter_integration_tests/windows/runner/runner.exe.manifest ================================================ PerMonitorV2 ================================================ FILE: examples/flutter_integration_tests/windows/runner/utils.cpp ================================================ #include "utils.h" #include #include #include #include #include void CreateAndAttachConsole() { if (::AllocConsole()) { FILE *unused; if (freopen_s(&unused, "CONOUT$", "w", stdout)) { _dup2(_fileno(stdout), 1); } if (freopen_s(&unused, "CONOUT$", "w", stderr)) { _dup2(_fileno(stdout), 2); } std::ios::sync_with_stdio(); FlutterDesktopResyncOutputStreams(); } } std::vector GetCommandLineArguments() { // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. int argc; wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); if (argv == nullptr) { return std::vector(); } std::vector command_line_arguments; // Skip the first argument as it's the binary name. for (int i = 1; i < argc; i++) { command_line_arguments.push_back(Utf8FromUtf16(argv[i])); } ::LocalFree(argv); return command_line_arguments; } std::string Utf8FromUtf16(const wchar_t* utf16_string) { if (utf16_string == nullptr) { return std::string(); } unsigned int target_length = ::WideCharToMultiByte( CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, -1, nullptr, 0, nullptr, nullptr) -1; // remove the trailing null character int input_length = (int)wcslen(utf16_string); std::string utf8_string; if (target_length == 0 || target_length > utf8_string.max_size()) { return utf8_string; } utf8_string.resize(target_length); int converted_length = ::WideCharToMultiByte( CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, input_length, utf8_string.data(), target_length, nullptr, nullptr); if (converted_length == 0) { return std::string(); } return utf8_string; } ================================================ FILE: examples/flutter_integration_tests/windows/runner/utils.h ================================================ #ifndef RUNNER_UTILS_H_ #define RUNNER_UTILS_H_ #include #include // Creates a console for the process, and redirects stdout and stderr to // it for both the runner and the Flutter library. void CreateAndAttachConsole(); // Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string // encoded in UTF-8. Returns an empty std::string on failure. std::string Utf8FromUtf16(const wchar_t* utf16_string); // Gets the command line arguments passed in as a std::vector, // encoded in UTF-8. Returns an empty std::vector on failure. std::vector GetCommandLineArguments(); #endif // RUNNER_UTILS_H_ ================================================ FILE: examples/flutter_integration_tests/windows/runner/win32_window.cpp ================================================ #include "win32_window.h" #include #include #include "resource.h" namespace { /// Window attribute that enables dark mode window decorations. /// /// Redefined in case the developer's machine has a Windows SDK older than /// version 10.0.22000.0. /// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute #ifndef DWMWA_USE_IMMERSIVE_DARK_MODE #define DWMWA_USE_IMMERSIVE_DARK_MODE 20 #endif constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; /// Registry key for app theme preference. /// /// A value of 0 indicates apps should use dark mode. A non-zero or missing /// value indicates apps should use light mode. constexpr const wchar_t kGetPreferredBrightnessRegKey[] = L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; // The number of Win32Window objects that currently exist. static int g_active_window_count = 0; using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); // Scale helper to convert logical scaler values to physical using passed in // scale factor int Scale(int source, double scale_factor) { return static_cast(source * scale_factor); } // Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. // This API is only needed for PerMonitor V1 awareness mode. void EnableFullDpiSupportIfAvailable(HWND hwnd) { HMODULE user32_module = LoadLibraryA("User32.dll"); if (!user32_module) { return; } auto enable_non_client_dpi_scaling = reinterpret_cast( GetProcAddress(user32_module, "EnableNonClientDpiScaling")); if (enable_non_client_dpi_scaling != nullptr) { enable_non_client_dpi_scaling(hwnd); } FreeLibrary(user32_module); } } // namespace // Manages the Win32Window's window class registration. class WindowClassRegistrar { public: ~WindowClassRegistrar() = default; // Returns the singleton registrar instance. static WindowClassRegistrar* GetInstance() { if (!instance_) { instance_ = new WindowClassRegistrar(); } return instance_; } // Returns the name of the window class, registering the class if it hasn't // previously been registered. const wchar_t* GetWindowClass(); // Unregisters the window class. Should only be called if there are no // instances of the window. void UnregisterWindowClass(); private: WindowClassRegistrar() = default; static WindowClassRegistrar* instance_; bool class_registered_ = false; }; WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; const wchar_t* WindowClassRegistrar::GetWindowClass() { if (!class_registered_) { WNDCLASS window_class{}; window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); window_class.lpszClassName = kWindowClassName; window_class.style = CS_HREDRAW | CS_VREDRAW; window_class.cbClsExtra = 0; window_class.cbWndExtra = 0; window_class.hInstance = GetModuleHandle(nullptr); window_class.hIcon = LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); window_class.hbrBackground = 0; window_class.lpszMenuName = nullptr; window_class.lpfnWndProc = Win32Window::WndProc; RegisterClass(&window_class); class_registered_ = true; } return kWindowClassName; } void WindowClassRegistrar::UnregisterWindowClass() { UnregisterClass(kWindowClassName, nullptr); class_registered_ = false; } Win32Window::Win32Window() { ++g_active_window_count; } Win32Window::~Win32Window() { --g_active_window_count; Destroy(); } bool Win32Window::Create(const std::wstring& title, const Point& origin, const Size& size) { Destroy(); const wchar_t* window_class = WindowClassRegistrar::GetInstance()->GetWindowClass(); const POINT target_point = {static_cast(origin.x), static_cast(origin.y)}; HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); double scale_factor = dpi / 96.0; HWND window = CreateWindow( window_class, title.c_str(), WS_OVERLAPPEDWINDOW, Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), Scale(size.width, scale_factor), Scale(size.height, scale_factor), nullptr, nullptr, GetModuleHandle(nullptr), this); if (!window) { return false; } UpdateTheme(window); return OnCreate(); } bool Win32Window::Show() { return ShowWindow(window_handle_, SW_SHOWNORMAL); } // static LRESULT CALLBACK Win32Window::WndProc(HWND const window, UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept { if (message == WM_NCCREATE) { auto window_struct = reinterpret_cast(lparam); SetWindowLongPtr(window, GWLP_USERDATA, reinterpret_cast(window_struct->lpCreateParams)); auto that = static_cast(window_struct->lpCreateParams); EnableFullDpiSupportIfAvailable(window); that->window_handle_ = window; } else if (Win32Window* that = GetThisFromHandle(window)) { return that->MessageHandler(window, message, wparam, lparam); } return DefWindowProc(window, message, wparam, lparam); } LRESULT Win32Window::MessageHandler(HWND hwnd, UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept { switch (message) { case WM_DESTROY: window_handle_ = nullptr; Destroy(); if (quit_on_close_) { PostQuitMessage(0); } return 0; case WM_DPICHANGED: { auto newRectSize = reinterpret_cast(lparam); LONG newWidth = newRectSize->right - newRectSize->left; LONG newHeight = newRectSize->bottom - newRectSize->top; SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, newHeight, SWP_NOZORDER | SWP_NOACTIVATE); return 0; } case WM_SIZE: { RECT rect = GetClientArea(); if (child_content_ != nullptr) { // Size and position the child window. MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, TRUE); } return 0; } case WM_ACTIVATE: if (child_content_ != nullptr) { SetFocus(child_content_); } return 0; case WM_DWMCOLORIZATIONCOLORCHANGED: UpdateTheme(hwnd); return 0; } return DefWindowProc(window_handle_, message, wparam, lparam); } void Win32Window::Destroy() { OnDestroy(); if (window_handle_) { DestroyWindow(window_handle_); window_handle_ = nullptr; } if (g_active_window_count == 0) { WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); } } Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { return reinterpret_cast( GetWindowLongPtr(window, GWLP_USERDATA)); } void Win32Window::SetChildContent(HWND content) { child_content_ = content; SetParent(content, window_handle_); RECT frame = GetClientArea(); MoveWindow(content, frame.left, frame.top, frame.right - frame.left, frame.bottom - frame.top, true); SetFocus(child_content_); } RECT Win32Window::GetClientArea() { RECT frame; GetClientRect(window_handle_, &frame); return frame; } HWND Win32Window::GetHandle() { return window_handle_; } void Win32Window::SetQuitOnClose(bool quit_on_close) { quit_on_close_ = quit_on_close; } bool Win32Window::OnCreate() { // No-op; provided for subclasses. return true; } void Win32Window::OnDestroy() { // No-op; provided for subclasses. } void Win32Window::UpdateTheme(HWND const window) { DWORD light_mode; DWORD light_mode_size = sizeof(light_mode); LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, kGetPreferredBrightnessRegValue, RRF_RT_REG_DWORD, nullptr, &light_mode, &light_mode_size); if (result == ERROR_SUCCESS) { BOOL enable_dark_mode = light_mode == 0; DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, &enable_dark_mode, sizeof(enable_dark_mode)); } } ================================================ FILE: examples/flutter_integration_tests/windows/runner/win32_window.h ================================================ #ifndef RUNNER_WIN32_WINDOW_H_ #define RUNNER_WIN32_WINDOW_H_ #include #include #include #include // A class abstraction for a high DPI-aware Win32 Window. Intended to be // inherited from by classes that wish to specialize with custom // rendering and input handling class Win32Window { public: struct Point { unsigned int x; unsigned int y; Point(unsigned int x, unsigned int y) : x(x), y(y) {} }; struct Size { unsigned int width; unsigned int height; Size(unsigned int width, unsigned int height) : width(width), height(height) {} }; Win32Window(); virtual ~Win32Window(); // Creates a win32 window with |title| that is positioned and sized using // |origin| and |size|. New windows are created on the default monitor. Window // sizes are specified to the OS in physical pixels, hence to ensure a // consistent size this function will scale the inputted width and height as // as appropriate for the default monitor. The window is invisible until // |Show| is called. Returns true if the window was created successfully. bool Create(const std::wstring& title, const Point& origin, const Size& size); // Show the current window. Returns true if the window was successfully shown. bool Show(); // Release OS resources associated with window. void Destroy(); // Inserts |content| into the window tree. void SetChildContent(HWND content); // Returns the backing Window handle to enable clients to set icon and other // window properties. Returns nullptr if the window has been destroyed. HWND GetHandle(); // If true, closing this window will quit the application. void SetQuitOnClose(bool quit_on_close); // Return a RECT representing the bounds of the current client area. RECT GetClientArea(); protected: // Processes and route salient window messages for mouse handling, // size change and DPI. Delegates handling of these to member overloads that // inheriting classes can handle. virtual LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept; // Called when CreateAndShow is called, allowing subclass window-related // setup. Subclasses should return false if setup fails. virtual bool OnCreate(); // Called when Destroy is called. virtual void OnDestroy(); private: friend class WindowClassRegistrar; // OS callback called by message pump. Handles the WM_NCCREATE message which // is passed when the non-client area is being created and enables automatic // non-client DPI scaling so that the non-client area automatically // responds to changes in DPI. All other messages are handled by // MessageHandler. static LRESULT CALLBACK WndProc(HWND const window, UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept; // Retrieves a class instance pointer for |window| static Win32Window* GetThisFromHandle(HWND const window) noexcept; // Update the window frame's theme to match the system theme. static void UpdateTheme(HWND const window); bool quit_on_close_ = false; // window handle for top level window. HWND window_handle_ = nullptr; // window handle for hosted content. HWND child_content_ = nullptr; }; #endif // RUNNER_WIN32_WINDOW_H_ ================================================ FILE: examples/multiplatform/analysis_options.yaml ================================================ # https://dart.dev/guides/language/analysis-options include: package:lints/recommended.yaml ================================================ FILE: examples/multiplatform/db/db.dart ================================================ import 'package:sqlite3/common.dart' show CommonDatabase; import 'sqlite3/sqlite3.dart' show openSqliteDb; late CommonDatabase sqliteDb; Future openDb() async { sqliteDb = await openSqliteDb(); final dbVersion = sqliteDb .select('PRAGMA user_version') .first['user_version']; print('DB version: $dbVersion'); if (dbVersion == 0) { sqliteDb.execute(''' BEGIN; -- TODO PRAGMA user_version = 1; COMMIT; '''); } } ================================================ FILE: examples/multiplatform/db/sqlite3/native.dart ================================================ import 'package:path/path.dart' as path; import 'package:path_provider/path_provider.dart' show getApplicationDocumentsDirectory; import 'package:sqlite3/common.dart' show CommonDatabase; import 'package:sqlite3/sqlite3.dart' show sqlite3; Future openSqliteDb() async { final docsDir = await getApplicationDocumentsDirectory(); final filename = path.join(docsDir.path, 'my_app.db'); return sqlite3.open(filename); } ================================================ FILE: examples/multiplatform/db/sqlite3/sqlite3.dart ================================================ export 'unsupported.dart' if (dart.library.js) 'web.dart' if (dart.library.ffi) 'native.dart' show openSqliteDb; ================================================ FILE: examples/multiplatform/db/sqlite3/unsupported.dart ================================================ import 'package:sqlite3/common.dart' show CommonDatabase; Future openSqliteDb() async { throw UnsupportedError('Sqlite3 is unsupported on this platform.'); } ================================================ FILE: examples/multiplatform/db/sqlite3/web.dart ================================================ import 'package:sqlite3/common.dart' show CommonDatabase; import 'package:sqlite3/wasm.dart' show IndexedDbFileSystem, WasmSqlite3; Future openSqliteDb() async { const name = 'my_app'; // Please download `sqlite3.wasm` from https://github.com/simolus3/sqlite3.dart/releases // into the `web/` dir of your Flutter app. See `README.md` for details. final sqlite = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3.wasm')); final fileSystem = await IndexedDbFileSystem.open(dbName: name); sqlite.registerVirtualFileSystem(fileSystem, makeDefault: true); return sqlite.open(name); } ================================================ FILE: examples/multiplatform/main.dart ================================================ import 'db/db.dart' show openDb; Future main() async { // WidgetsFlutterBinding.ensureInitialized(); await openDb(); // runApp(const App()); } ================================================ FILE: examples/multiplatform/pubspec.yaml ================================================ name: sqlite3_multiplatform_example description: Uses common interface to `sqlite3` on web and native platforms. version: 0.1.0 publish_to: 'none' resolution: workspace environment: sdk: "^3.9.0" dependencies: path: ^1.8.3 path_provider: ^2.1.1 sqlite3: ^3.0.0-0 dev_dependencies: lints: ^6.0.0 ================================================ FILE: examples/pubspec.yaml ================================================ name: pkg_sqlite3_examples_workspace publish_to: none environment: sdk: ^3.10.0-0 workspace: - flutter_integration_tests - multiplatform dependency_overrides: sqlite3: path: ../sqlite3 sqlite3_connection_pool: path: ../sqlite3_connection_pool ================================================ FILE: legacy/sqlcipher_flutter_libs/CHANGELOG.md ================================================ ## 0.7.0+eol - Deprecate this package. Starting from versions 3.x of the `sqlite3` package, `sqlcipher_flutter_libs` is no longer necessary. See [these notes](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md) for details on how to upgrade. This version removes all code from this package. It can be used to require that the old Flutter-specific scripts are no longer used. ## 0.6.8 - Update SQLCipher to version 4.10.0. ## 0.6.7 - Update SQLCipher to version 4.9.0. ## 0.6.6 - Update SQLCipher to version 4.8.0. ## 0.6.5 - Update SQLCipher to version 4.6.1. - Fix compilation error with Swift 6 on iOS. ## 0.6.4 - Fix compilation on Android by upgrading `compileSdk` version. ## 0.6.3 - Enable extension loading on Windows and Linux to match the compile options used on other platforms. ## 0.6.2 - Update SQLCipher to `4.5.7`. ## 0.6.1 - Update SQLCipher to `4.5.6`. - For Linux builds, you can now include `set(OPENSSL_USE_STATIC_LIBS OFF)` in your `CMakeLists.txt` to link OpenSSL dynamically. ## 0.6.0 - Update SQLCipher to `4.5.5` (https://www.zetetic.net/blog/2023/08/31/sqlcipher-4.5.5-release/) - On Android, migrate from `android-database-sqlcipher` to `sqlcipher-android`. If you use SQLCipher APIs in your native Android platform code, consider migrating as well and follow the [migration guide](https://www.zetetic.net/sqlcipher/sqlcipher-for-android-migration/). ## 0.5.7 - Consistently compile `SQLCipher` with `SQLITE_THREADSAFE=1` on all supported platforms. ## 0.5.6 - Upgrade `SQLCipher` to version `4.5.4` (https://www.zetetic.net/blog/2023/04/27/sqlcipher-4.5.4-release). ## 0.5.5 - Support Android projects built with Gradle 8. ## 0.5.4 - Fix building `SQLCipher` on Windows - see the readme for more details. ## 0.5.3 - Upgrade `SQLCipher` to version `4.5.2`. ## 0.5.2 - This package now works on Windows and Linux too! - Upgrade `SQLCipher` to version `4.5.1` ## 0.5.1 - Upgrade `SQLCipher` to version `4.5.0` ## 0.5.0 - Initial pub release to match the version of `sqlite3_flutter_libs` ================================================ FILE: legacy/sqlcipher_flutter_libs/LICENSE ================================================ sqlcipher_flutter_libs MIT License Copyright (c) 2020 Simon Binder 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. -------------------------------------------------------------------------------- OpenSSL Apache License Version 2.0, January 2004 https://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 -------------------------------------------------------------------------------- SQLCipher Copyright (c) 2008-2020 Zetetic LLC All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the ZETETIC LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY ZETETIC LLC ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ZETETIC LLC BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: legacy/sqlcipher_flutter_libs/README.md ================================================ # sqlcipher_flutter_libs > [!CAUTION] > This package relates to version 2.x of `package:sqlite3`, and is obsolete after upgrading. > Please see [notes on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md) > and remove this package from your dependencies after adopting version 3.x of `package:sqlite3`. Starting from version `0.7.0`, this package no longer does anything. Other libraries can depend on version `0.7.0` after migrating to version 3.x of `package:sqlite3` to ensure that an app does not use the old Flutter-specific SQLite build scripts from `0.6.x` and older. ================================================ FILE: legacy/sqlcipher_flutter_libs/lib/sqlcipher_flutter_libs.dart ================================================ /// This package does not do anything. /// /// This package used to provide SQLCipher libraries for use with version 2.x of /// the `sqlite3` package. Starting from version 3.x, this separate package is /// no longer necessary. /// /// Please see the [documentation on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md). /// The reason for keeping this package around is that other packages can depend /// on version `0.6.0` after upgrading to `package:sqlite3` version 3.x. This /// ensures that the old Flutter build scripts are guaranteed to not be part of /// the build. library sqlcipher_flutter_libs; ================================================ FILE: legacy/sqlcipher_flutter_libs/pubspec.yaml ================================================ name: sqlcipher_flutter_libs description: "Not used anymore, update to version 3.x of package:sqlite3 instead" version: 0.7.0+eol homepage: https://github.com/simolus3/sqlite3.dart/tree/main/legacy/sqlcipher_flutter_libs issue_tracker: https://github.com/simolus3/sqlite3.dart/issues resolution: workspace environment: sdk: ">=3.10.0 <4.0.0" ================================================ FILE: legacy/sqlite3_flutter_libs/CHANGELOG.md ================================================ ## 0.6.0+eol - Deprecate this package. Starting from versions 3.x of the `sqlite3` package, `sqlite3_flutter_libs` is no longer necessary. See [these notes](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md) for details on how to upgrade. This version removes all code from this package. It can be used to require that the old Flutter-specific scripts are no longer used. ## 0.5.41 - Upgrade sqlite to version `3.51.1`. ## 0.5.40 - iOS and macOS: Compile to a shared library when SwiftPM is used to avoid conflicts with the SQLite library from Apple SDKs. ## 0.5.39 - Upgrade sqlite to version `3.50.4`. ## 0.5.38 - Enable pre-update hooks and the session extension. ## 0.5.37 - Upgrade sqlite to version `3.50.3`. ## 0.5.36 - Update Android Gradle buildscript to avoid compiler warnings on recent JDKs. ## 0.5.35 - Upgrade sqlite to version `3.50.2`. ## 0.5.34 - Upgrade sqlite to version `3.50.1`. ## 0.5.33 - Upgrade sqlite to version `3.49.2`. ## 0.5.32 - Enable builtin math functions. ## 0.5.31 - Upgrade sqlite to version `3.49.1`. ## 0.5.30 - Upgrade sqlite to version `3.49.0`. ## 0.5.29+1 - Android: Upgrade `compileSdkVersion` to `35`. ## 0.5.29 - Upgrade sqlite to version `3.48.0`. ## 0.5.28 - Upgrade sqlite to version `3.47.2`. ## 0.5.27 - Upgrade sqlite to version `3.47.1`. - In addition to CocoaPods, this package now supports the Swift Package Manager for iOS and macOS builds. ## 0.5.26 - Upgrade sqlite to version `3.47.0`. ## 0.5.25 - Support 16KiB page sizes on Android 15. ## 0.5.24 - Enable the [dbstat](https://www.sqlite.org/dbstat.html) compile-time option. ## 0.5.23 - Enable extension loading on Windows and Linux to match the compile options used on other platforms. ## 0.5.22 - Upgrade sqlite to version `3.46.0`. ## 0.5.21 - Upgrade sqlite to version `3.45.3`. ## 0.5.20 - Upgrade sqlite to version `3.45.1`. ## 0.5.19+1 - Upgrade sqlite to version `3.45.0`. ## 0.5.18 - Upgrade sqlite to version `3.44.0`. ## 0.5.17 - Upgrade sqlite to version `3.43.1`. ## 0.5.16 - Upgrade sqlite to version `3.43.0`. ## 0.5.15 - Upgrade sqlite to version `3.41.2`. ## 0.5.14 - Support Android projects built with Gradle 8. ## 0.5.13 - Upgrade sqlite to version `3.41.0`. ## 0.5.12 - Upgrade sqlite to version `3.40.0`. ## 0.5.11+1 - Upgrade sqlite3 to version `3.39.4`. - Fix a compilation warning on Windows. - Stop bundling `spellfix1` on platforms where that was still the case by default. ## 0.5.10 - Upgrade sqlite to version `3.39.3`. - Consistently compile sqlite3 with `-DSQLITE_THREADSAFE=1` on all platforms. ## 0.5.9 - Upgrade sqlite to version `3.39.2`. ## 0.5.8 - Upgrade sqlite to version `3.39.0` ## 0.5.7 - Update sqlite to version `3.38.5` ## 0.5.6 - Update sqlite to version `3.38.3` ## 0.5.5 - Update sqlite to version `3.38.2` - Linux is now supported without additional setup. - Windows is now supported without additional setup. ## 0.5.4 - Update sqlite to version `3.38.0` ## 0.5.3 - Update sqlite to version `3.37.2` ## 0.5.2 - Update sqlite to version `3.37.0` ## 0.5.1 - Update sqlite to version `3.36.0` ## 0.5.0 - Also include sqlite when building for macOS ## 0.4.3 - Upgrade to sqlite3 version 3.35.4 on iOS as well ## 0.4.2 - Upgrade to sqlite3 version 3.35.4 on Android ## 0.4.1 - Raise minimum SDK constraint to Dart 2.12 ## 0.4.0 `0.4.0+1` fixes an issue causing sqlite3 libraries to be unavailable in the compiled app. Please don't use `0.4.0`! - Migrate native Android dependencies away from Bintray ## 0.3.0 - Add workaround for an apparent loader bug in Android 6.0.1 (see readme for details) ## 0.2.0 - Use ObjectiveC instead of Swift for the iOS plugin ## 0.1.0 - Add an empty Dart library to improve the pub score ## 0.0.1 - Initial release ================================================ FILE: legacy/sqlite3_flutter_libs/LICENSE ================================================ MIT License Copyright (c) 2020 Simon Binder 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: legacy/sqlite3_flutter_libs/README.md ================================================ # sqlite3_flutter_libs > [!CAUTION] > This package relates to version 2.x of `package:sqlite3`, and is obsolete after upgrading. > Please see [notes on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md) > and remove this package from your dependencies after adopting version 3.x of `package:sqlite3`. Starting from version `0.6.0`, this package no longer does anything. Other libraries can depend on version `0.6.0` after migrating to version 3.x of `package:sqlite3` to ensure that an app does not use the old Flutter-specific SQLite build scripts from `0.5.x` and older. ================================================ FILE: legacy/sqlite3_flutter_libs/lib/sqlite3_flutter_libs.dart ================================================ /// This package does not do anything. /// /// This package used to provide SQLite libraries for use with version 2.x of /// the `sqlite3` package. Starting from version 3.x, this separate package is /// no longer necessary. /// /// Please see the [documentation on upgrading](https://github.com/simolus3/sqlite3.dart/blob/main/UPGRADING_TO_V3.md). /// The reason for keeping this package around is that other packages can depend /// on version `0.6.0` after upgrading to `package:sqlite3` version 3.x. This /// ensures that the old Flutter build scripts are guaranteed to not be part of /// the build. library sqlite3_flutter_libs; ================================================ FILE: legacy/sqlite3_flutter_libs/pubspec.yaml ================================================ name: sqlite3_flutter_libs description: "Not used anymore, update to version 3.x of package:sqlite3 instead" version: 0.6.0+eol homepage: https://github.com/simolus3/sqlite3.dart/tree/main/legacy/sqlite3_flutter_libs issue_tracker: https://github.com/simolus3/sqlite3.dart/issues resolution: workspace environment: sdk: ">=3.10.0 <4.0.0" ================================================ FILE: native_tests/all_native_tests.dart ================================================ import 'package:test/test.dart'; import '../sqlite3/test/ffi/common_database_test.dart' as common_database_test; import '../sqlite3/test/ffi/database_test.dart' as database_test; import '../sqlite3/test/ffi/ffi_test.dart' as ffi_test; import '../sqlite3/test/ffi/prepared_statement_test.dart' as prepared_statement_test; import '../sqlite3/test/ffi/sqlite3_test.dart' as sqlite3_test; import '../sqlite3/test/ffi/vfs_test.dart' as vfs_test; import '../sqlite3_connection_pool/test/pool_test.dart' as pool_test; import '../sqlite3_test/test/sqlite3_test_test.dart' as sqlite3_test_test; /// Runs all native tests. /// /// We aot-compile this file to run tests with different sanitizers. void main() { group('package:sqlite3', () { group('common_database_test.dart', common_database_test.main); group('database_test.dart', database_test.main); group('ffi_test.dart', ffi_test.main); group('prepared_statement_test.dart', prepared_statement_test.main); group('sqlite3_test.dart', sqlite3_test.main); group('vfs_test.dart', vfs_test.main); }); group('package:sqlite3_connection_pool', () { pool_test.main(); }); group('package:sqlite3_test', () { sqlite3_test_test.main(); }); } ================================================ FILE: native_tests/analysis_options.yaml ================================================ include: package:lints/recommended.yaml analyzer: language: strict-casts: true strict-raw-types: true ================================================ FILE: native_tests/ignorelist.txt ================================================ src:*/sqlite3.c ================================================ FILE: native_tests/pubspec.yaml ================================================ name: native_tests description: Helper package to test other packages in this workspace in aot builds. publish_to: none resolution: workspace environment: sdk: ^3.11.0 topics: - sql - database - ffi - sqlite dependencies: sqlite3: sqlite3_test: sqlite3_connection_pool: test: ^1.31.0 path: ^1.9.1 args: ^2.7.0 ================================================ FILE: native_tests/run.dart ================================================ import 'dart:io'; import 'package:args/args.dart'; import 'package:path/path.dart' as p; /// Runs `all_native_tests.dart` as a single AOT-compiled executable. /// /// To run AOT-compiled tests without sanitizers, use `dart run run.dart`. /// /// To run tests with a sanitizer, use `dart run.dart --sanitizer $sanitizer`, /// where `$sanitizer` is one of `asan`, `msan` or `tsan`. Note that sanitizers /// are only supported on X64 Linux hosts. /// /// Running tests with sanitizers also requires an instrumented build of SQLite /// and the pool helper library. Either obtain that from the `sqlite3-sanitized` /// asset uploaded to CI runs on GitHub assets, or use: /// /// 1. tool/download_sqlite.dart /// 2. tool/build_with_sanitizers.dart (requires clang and LLVM). /// 3. tool/build_linux_sanitizer.sh in sqlite3_connection_pool. void main(List args) async { final parser = ArgParser(allowTrailingOptions: false); parser.addOption('sanitizer', allowed: ['asan', 'msan', 'tsan']); final result = parser.parse(args); final sanitizer = result.option('sanitizer'); final dir = await Directory.systemTemp.createTemp('pkg-sqlite3-test'); final aotPath = p.join(dir.path, 'test.aot'); final assetsConfig = await _createNativeAssetsConfig(dir, sanitizer); try { print('AOT-compiling tests'); final result = await Process.run(Platform.executable, [ 'compile', 'aot-snapshot', 'all_native_tests.dart', '--output', aotPath, if (sanitizer != null) '--target-sanitizer=$sanitizer', '--extra-gen-kernel-options=--native-assets=${assetsConfig.path}', ]); if (result.exitCode != 0 || !await File(aotPath).exists()) { throw ''' could not compile test script exitCode: ${result.exitCode} stdout: ${result.stdout} stderr: ${result.stderr} '''; } var runtimeName = 'dartaotruntime'; if (sanitizer != null) runtimeName += '_$sanitizer'; if (Platform.isWindows) runtimeName += '.exe'; print('Running with $runtimeName'); final runtime = p.join(p.dirname(Platform.resolvedExecutable), runtimeName); final process = await Process.start(runtime, [ aotPath, ], mode: ProcessStartMode.inheritStdio); final exit = await process.exitCode; if (exit != 0) { throw 'Expected exit code 0, got $exit'; } } finally { await dir.delete(recursive: true); } } Future _createNativeAssetsConfig( Directory tmpForRun, String? sanitizer, ) async { if (sanitizer == null) { final file = File('.dart_tool/native_assets.yaml'); if (!await file.exists()) { throw 'Expected $file to exist, are you using dart run?'; } return file; } final name = switch (sanitizer) { 'asan' => 'address', 'msan' => 'memory', 'tsan' => 'thread', _ => throw AssertionError(), }; final sqliteFile = p.normalize( p.absolute('../sqlite-sanitized', 'sqlite3.san_$name.so'), ); final poolFile = p.normalize( p.absolute( '../sqlite-sanitized', 'libsqlite3_connection_pool.$name.san.so', ), ); final yaml = ''' format-version: [1, 0, 0] native-assets: linux_x64: "package:sqlite3/src/ffi/libsqlite3.g.dart": - absolute - "$sqliteFile" "package:sqlite3_connection_pool/sqlite3_connection_pool.dart": - absolute - "$poolFile" '''; final file = File(p.join(tmpForRun.path, 'assets.yaml')); await file.writeAsString(yaml); return file; } ================================================ FILE: pubspec.yaml ================================================ name: _ publish_to: none environment: sdk: ^3.6.0 dependencies: path: ^1.9.1 crypto: ^3.0.6 collection: ^1.19.1 file: ^7.0.1 pool: ^1.5.2 hooks: ^1.0.0 workspace: - sqlite3 - sqlite3/example/custom_extension - sqlite3_connection_pool - sqlite3_web - sqlite3_test - native_tests - legacy/sqlcipher_flutter_libs - legacy/sqlite3_flutter_libs ================================================ FILE: sqlite3/CHANGELOG.md ================================================ ## 3.3.2 (unreleased) - Support `native_toolchain_c` versions `0.18.x`. ## 3.3.1 - Avoid memory leaks when `tempDirectory` is set multiple times. - Update to SQLite 3.53.0 and SQLite3 Multiple Ciphers version 2.3.3. ## 3.3.0 - Web: Add `WasmModuleLoader` API to customize how WebAssembly modules are loaded. - Hook: Improve error message for failing downloads. ## 3.2.0 - Add `package:sqlite3/unstable/ffi_bindings.dart` providing low-level access to generated `libsqlite3` bindings. - Add `PreparedStatement.leak` to transfer ownership of a prepared statement into native code. - Add `Database.statementFromPointer`, which can be used to access a statement prepared in native code from Dart. ## 3.1.7 - Update to sqlite version 3.52.0. ## 3.1.6 - Expose the address of `sqlite3_close_v2` as static field on `Sqlite3` class. - Allow wrapping databases without closing them with the `borrowed` parameter on `Sqlite3.fromPointer`. - Add `Database.leak()`, which extracts a `sqlite3*` pointer and disables finalizers. ## 3.1.5 - Build hook: Ensure we use consistent filenames to fix issues on Apple platforms. ## 3.1.4 - Build hook: Fix paths not resolving on Windows when building from source. ## 3.1.3 - Update to SQLite version 3.51.2. ## 3.1.2 - `Database.select()` will now throw an exception if the SQL string contains invalid text after the first statement. - Build hook: Support OS-specific names when using `source: system`. ## 3.1.1 - Hooks: Respect `HTTPS_PROXY` and related environment variables when downloading SQLite (requires Dart 3.11 or later). - Update SQLite to version 3.51.1. ## 3.1.0 - Build hook: Allow using `name` key with `source: system` to load SQLite libraries under a different name (e.g. `name: sqlcipher` to load SQLCipher). - Wasm: Fix an internal memory corruption issue when more than 16 Dart handles are referenced from C. ## 3.0.1 - Build hook: Use clang from XCode when pre-compiling SQLite for iOS and macOS. ## 3.0.0 - __Breaking change__: Use [build hooks](https://dart.dev/tools/hooks) to load SQLite instead of `DynamicLibrary`. - The SQLite library can only be customized with user defines. - You should drop your dependencies on `sqlite3_flutter_libs` and `sqlcipher_flutter_libs` when upgrading. - You can also remove dependencies on `sqlite3_native_assets`, since that package is now part of `package:sqlite3`. - __Breaking change__: Parameters to `SqliteException`s are now named. - Deprecated `dispose()` on `CommonDatabase` and `CommonPreparedStatement`. Use `close()` instead. - On native platforms, use native finalizers to reliably clear statements and databases. - On the web, use regular finalizers more consistently. - Refactor binding text and blob values to reduce the chance of memory leaks. - On the web, use `externref`s to call Dart functions from compiled WebAssembly sources. - Add `busyHandler` setter to install a custom `sqlite3_busy_handler` on databases. ## 2.9.4 - `SimpleOpfsFileSystem`: Allow opening with `readwrite-unsafe`, which can be used to implement multi-tab OPFS databases on Chrome with an outer locking scheme. ## 2.9.3 - Allow iterating over statements after `SQLITE_BUSY` errors. ## 2.9.2 - Fix a bug introduced in version `2.9.1` where the SQLite framework provided by `sqlite3_flutter_libs` would not load correctly on iOS. ## 2.9.1 - Check for error codes when binding values to prepared statements. - Flutter: Fix loading SwiftPM libraries from `sqlite3_flutter_libs`. ## 2.9.0 - Add `CommonDatabase.updatesSync`, a synchronous variant of the updates stream. ## 2.8.0 - Support creating changesets and patchsets via the session extension. - Add the `SubtypedValue` extension type to allow returning values with a subtype. - Add the `subtypeOf` method to the `SqliteArguments` interface passed to user-defined functions. It returns the subtype assigned to an argument. - Web: Refactor SQLite bindings to make them easier for compilers to optimize. ## 2.7.7 - `jsonb` codec: Refuse to encode NaN values since recent SQLite versions reject them. ## 2.7.6 - Export `package:sqlite3/native_assets.dart`, making it easier for libraries to support both the regular `sqlite3` getter and the upcoming `sqlite3NativeAssets` variant. - Fix dereferencing null pointer when reading file names for temporary files in native VFS implementation. ## 2.7.5 - On Windows, try loading `winsqlite3.dll` as a fallback if loading `sqlite3.dll` fails. ## 2.7.4 - Prepare support for accessing SQLite through native assets. This is available as a preview through `package:sqlite3_native_assets`. ## 2.7.3 - Web: Support `localtime` datetime modifier in SQLite. - Introduce topics to dartdoc documentation. - Report locations of syntax errors in `SqliteException`. ## 2.7.2 - Web: Fix update events not being delivered in some shared worker setups. ## 2.7.1 - Web: Fix a crash when using version `2.7.0` of this package with an older WebAssembly bundle. Note: Version `2.7.0` has been retracted from pub.dev for this reason. ## 2.7.0 - Add support for commit and rollback hooks as well as a predicate that can revert transactions. Thanks to [@jackd](https://github.com/jackd)! ## 2.6.1 - Fix out-of-bound reads in the `xWrite` implementation of the OPFS-locks based file-system implementation when writing more than 64 KiB in one operation. - Support SQLite libraries compiled with `SQLITE_OMIT_AUTOINIT`. ## 2.6.0 - Add `SimpleOpfsFileSystem.deleteFromStorage` to delete OPFS-based file systems. - Add `jsonb`, a Dart `Codec` converting Dart object from and to SQLite `JSONB` values. - __Experimentally__ support encryption on the web through SQLite Multiple Ciphers. The readme provides more information on how to use encryption on the web. ## 2.5.0 - Allow registering custom virtual file systems on all platforms. Previously, this was only supported on the web. - IndexedDB file system: Store `ArrayBuffer`s instead of `Blob`s when it looks like storing blobs would cause issues. ## 2.4.7 - Web: Improve performance of in-memory and IndexedDB file system implementations. ## 2.4.6 - WebAssembly: Call `_initialize` function of sqlite3 module if one is present. - Support version 1.0.0 of `package:web`. ## 2.4.5 - Fix a bug in the OPFS-locks implementation causing a deadlock when the `xSleep` VFS call is issued. - Fix selecting large integers (being represented as a `BigInt` in Dart) not working when compiled with dartdevc. ## 2.4.4 - Add a temporary workaround for [a Dart bug](https://github.com/dart-lang/sdk/issues/56064) causing spurious exceptions when databases are closed and a debugger is attached. ## 2.4.3 - Migrate away from legacy web APIs: `dart:html`, `dart:js`, `dart:indexeddb` and `package:js` are no longer imported from this package. - Experimentally support being compiled to WebAssembly. Strong caveats apply, please check [#230](https://github.com/simolus3/sqlite3.dart/issues/230) before relying on this! ## 2.4.2 - Fix string and blob arguments to prepared statements never being deallocated ([#225](https://github.com/simolus3/sqlite3.dart/issues/225)). ## 2.4.1+1 - Allow version `0.7.x` of the `js` package. - Reduce size of `sqlite3.wasm` bundle by removing symbols not referenced in Dart. ## 2.4.0 - Add `isReadOnly` and `isExplain` getters to prepared statements. - Set `NativeCallable.keepIsolateAlive` to `false` for callables managed by this package. ## 2.3.0 - Add the `autocommit` getter on databases wrapping `sqlite3_get_autocommit`. - Improve the error message in the exception when opening a database fails. ## 2.2.0 - Add `updatedRows` getter to eventually replace `getUpdatedRows()` method. - Clarify documentation on `lastInsertRowId` and `updatedRows`. - Allow customizing the amount of pages to lock at a time in `backup`. A larger amount will result in better backup performance. - Use `NativeCallable`s for user-defined functions, collations and update streams. ## 2.1.0 - Add `config` getter to `CommonDatabase` to access `sqlite3_db_config`. ## 2.0.0 - __Breaking__: The WASM implementation no longer registers a default virtual file system. Instead, `registerVirtualFileSystem` needs to be used to add desired file system implementations. - __Breaking__: Fix a typo, `CommmonSqlite3` is now called `CommonSqlite3`. - __Breaking__: Introduce class modifiers on classes of this package that aren't meant to be extended or implemented by users. - Add `PreparedStatement.reset()`. - Add the `CustomStatementParameter` class which can be passed as a statement parameter with a custom `sqlite3_bind_*` call. - Add the `StatementParameters` class and `executeWith`/`selectWith` methods on `CommonPreparedStatement`. They can be used to control whether values are bound by index or by name. The `selectMap` and `executeMap` methods have been deprecated. ## 1.11.2 - Report correct column names for statements that have been re-compiled due to schema changes. ## 1.11.1 - Fix user-defined functions returning text not supporting multi-byte utf8 characters. ## 1.11.0 - Add `WasmSqlite3.loadFromUrl` which uses a streaming `fetch()` request to load the sqlite3 WASM binary. - Add `OpfsFileSystem`, a file system implementation for the WASM library that is based on the synchronous File System Access API. - The WASM version of sqlite3 used by this library is now compiled with `-Oz` instead of `-Ofast`. ## 1.10.1 - Fix a regression introduced in 1.10.0 causing crashes when SQL statements containing non-ASCII characters are prepared. ## 1.10.0 - Rewrite the implementation to allow more code reuse between `dart:ffi` and the WASM-based web implementation. ## 1.9.3 - Provide more information about the source of sqlite exceptions. - Fix prepared statements without parameters not being reused properly. ## 1.9.2 - Include parameters when throwing an exception in prepared statements. ## 1.9.1 - Change `Row.keys` and `Row.values` to return a list. ## 1.9.0 - Add an API for sqlite3's backup API via `Database.backup()`. - Add an API to load extensions via `sqlite3.ensureExtensionLoaded`. ## 1.8.0 - Use a `Finalizer` to automatically dispose databases and statements. As finalizers in Dart aren't reliable, you should still make sure to call `dispose` manually after you're done with a database or a statement. - Avoid using generative constructors on `@staticInterop` classes. ## 1.7.2 - Optimizations in the wasm-based file system. - Fix the `mutex` parameter not doing anything in the FFI-based implementation. ## 1.7.1 - Allow binding `BigInt`s to statements and functions. They must still be representable as a 64-bit int, but this closes a compatibility gap between the web and the native implementations. - Use ABI-specific integer types internally. ## 1.7.0 - Add support for application-defined window functions. To register a custom window function, implement `WindowFunction` and register your function with `database.registerAggregateFunction`. - __Breaking__ (For the experimental `package:sqlite3/wasm.dart` library): - The IndexedDB implementation now stores data in 4k blocks instead of full files. - Removed `IndexedDbFileSystem.load`. Use `IndexedDbFileSystem.open` instead. - An `IndexedDbFileSystem` now stores all files, the concept of a persistence root has been removed. To access independent databases, use two `IndexedDbFileSystem`s with a different database name. ## 1.6.4 - Add `FileSystem.listFiles()` to list all files in a virtual WASM file system. ## 1.6.3 - Support running `sqlite3/wasm.dart` in web workers. ## 1.6.2 - Fix `CURRENT_TIMESTAMP` not working with the WebAssembly backend. ## 1.6.1 - Better support loading sqlite3 on Linux when using `sqlite3_flutter_libs`. ## 1.6.0 - Very experimental web support, based on compiling sqlite3 to web assembly with a custom file system implementation. ## 1.5.1 - Fix `checkNoTail` throwing for harmless whitespace or comments following a SQL statement. - Fix a native null-pointer dereference when calling `prepare` with a statement exclusively containing whitespace or comments. - Fix a potential out-of-bounds read when preparing statements. ## 1.5.0 - Add `prepareMultiple` method to prepare multiple statements from one SQL string. - Add `selectMap` and `executeMap` on `PreparedStatement` to bind SQL parameters by their name instead of their index. - Add support for custom collations with `createCollation`. ## 1.4.0 - Report writes on the database through the `Database.updates` stream - Internal: Use `ffigen` to generate native bindings ## 1.3.1 - Fix a crash with common iOS and macOS configurations. The crash has been introduced in version 1.3.0, which should be avoided. Please consider adding `sqlite3: ^1.3.1` to your pubspec to avoid getting the broken version ## 1.3.0 - Add `Cursor.tableNames` and `Row.toTableColumnMap()` to obtain tables involved in a result set. Thanks to [@juancastillo0](https://github.com/juancastillo0)! ## 1.2.0 - Add the `selectCursor` API on `PreparedStatement` to step through a result set row by row. - Report the causing SQL statement in exceptions - Use a new Dart API to determine whether symbols are available ## 1.1.2 - Attempt opening sqlite3 from `DynamicLibrary.process()` on macOS ## 1.1.1 - Fix memory leak when preparing statements! - Don't allow `execute` with arguments when the provided sql string contains more than one argument. ## 1.1.0 - Add optional parameters to `execute`. ## 1.0.1 - Don't throw when `PreparedStatement.execute` is used on a statement returning rows. ## 1.0.0 - Support version `1.0.0` of `package:ffi` ## 0.1.10-nullsafety.0 - Support version `0.3.0` of `package:ffi` - Migrate library to support breaking ffi changes in Dart 2.13: - Use `Opaque` instead of empty structs - Use `Allocator` api ## 0.1.9-nullsafety.2 - Fix loading sqlite3 on iOS ## 0.1.9-nullsafety.1 - Migrate package to null safety ## 0.1.8 - Added the `mutex` parameter to control the serialization mode when opening databases. ## 0.1.7 - Expose the `sqlite3_temp_directory` global variable ## 0.1.6 - Expose underlying database and statement handles - Support opening databases from uris ## 0.1.5 - Use `sqlite3_version` to determine if `sqlite3_prepare_v3` is available instead of catching an error. ## 0.1.4 - Use `sqlite3_prepare_v2` if `sqlite3_prepare_v3` is not available ## 0.1.3 - Lower minimum version requirement on `collection` to `^1.14.0` ## 0.1.2 - Enable extended result codes - Expose raw rows from a `ResultSet` ## 0.1.1 - Expose the `ResultSet` class ## 0.1.0 - Initial version ================================================ FILE: sqlite3/LICENSE ================================================ MIT License Copyright (c) 2020 Simon Binder 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: sqlite3/README.md ================================================ # sqlite3 Provides Dart bindings to [SQLite](https://www.sqlite.org/index.html) via `dart:ffi`. ## Using this library Because this library uses [hooks](https://dart.dev/tools/hooks), it bundles SQLite with your application and doesn't require any external dependencies or build configuration. To use it, depend on it: ```shell dart pub add sqlite3 ``` For native platforms, the basic sketch for using this library is to: 1. Import `package:sqlite3/sqlite3.dart`. 2. Use `sqlite3.open()` to open a database file, or `sqlite3.openInMemory()` to open a temporary in-memory database. 3. Use `Database.execute` or `Database.prepare` to execute statements directly or by preparing them first. 4. Consider closing statements or databases explicitly with `close()` once you're done with them. `package:sqlite3` uses native finalizers to do that automatically too, though. For a more complete example on how to use this library, see the [example](https://pub.dev/packages/sqlite3/example). ## Supported platforms This library provides prebuilt versions of SQLite for the following platforms: - __Android__: `armv7a`, `aarch64`, `x86`, `x64`. - __iOS__: `arm64` (devices), `arm64` (simulator), `x64` (simulator). - __macOS__: `arm64`, `x64`. - __Linux__: `armv7`, `aarch64`, `x64`, `x86`, `riscv64gc`. - __Windows__: `aarch64`, `x64`, `x86`. For more information, see [hook options](./doc/hook.md). In addition to native platforms, this package supports running on the web by accessing a sqlite3 build compiled to WebAssembly. Web support is only officially supported for `dartdevc` and `dart2js`. Support for `dart2wasm` [is experimental and incomplete](https://github.com/simolus3/sqlite3.dart/issues/230). For more information, see [web support](#wasm-web-support) below. On all supported platforms, you can also use SQLite3MultipleCiphers instead of SQLite to encrypt databases. The [hook options page](./doc/hook.md) describe this setup. ## Supported datatypes When binding parameters to queries, the supported types are `ìnt`, `double`, `String`, `List` (for `BLOB`) and `null`. Result sets will use the same set of types. On the web (but only on the web), `BigInt` is supported as well. ## WASM (web support) This package experimentally supports being used on the web with a bit of setup. The web version binds to a custom version of sqlite3 compiled to WebAssembly without Emscripten or any JavaScript glue code. Please note that stable web support for `package:sqlite3` is restricted to Dart being compiled to JavaScript. Support for `dart2wasm` is experimental. The API is identical, but the implementation [is severely limited](https://github.com/simolus3/sqlite3.dart/issues/230). ### Setup To use this package on the web, you need: - The sqlite3 library compiled as a WebAssembly module, available from the [GitHub releases](https://github.com/simolus3/sqlite3.dart/releases) of this package. Note that, for this package, __sqlite3 has to be compiled in a special way__. Existing WebAssembly files from e.g. sql.js will not work with `package:sqlite3/wasm.dart`. You can also see [this directory](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_wasm_build) for the build files to compile this yourself. - A file system implementation, since websites can't by default access the host's file system. This package provides `InMemoryFileSystem` and an `IndexedDbFileSystem` implementation. After putting `sqlite3.wasm` under the `web/` directory of your project, you can open and use `sqlite3` like this: ```dart import 'package:http/http.dart' as http; import 'package:sqlite3/common.dart'; import 'package:sqlite3/wasm.dart'; Future loadSqlite() async { final sqlite = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3.wasm')); final fileSystem = await IndexedDbFileSystem.open(dbName: 'my_app'); sqlite.registerVirtualFileSystem(fileSystem, makeDefault: true); return sqlite; } ``` The returned `WasmSqlite3` has an interface compatible to that of the standard `sqlite3` field in `package:sqlite3/sqlite3.dart`, databases can be opened in similar ways. An example for such web folder is in `example/web/` of this repo. To view the example, copy a compiled `sqlite3.wasm` file to `web/sqlite3.wasm` in this directory. Then, run `dart run build_runner serve example:8080` and visit `http://localhost:8080/web/` in a browser. Another `../examples/multiplatform/` uses common interface to `sqlite3` on web and native platforms. To run this example, merge its files into a Flutter app. ### Sharing code between web and a Dart VM The `package:sqlite3/common.dart` library defines common interfaces that are implemented by both the FFI-based native version in `package:sqlite3/sqlite3.dart` and the experimental WASM version in `package:sqlite3/wasm.dart`. By having shared code depend on the common interfaces, it can be used for both native and web apps. ### Web encryption Starting from version 2.6.0, `package:sqlite3/wasm.dart` supports loading a compiled version of [SQLite Multiple Ciphers](https://utelle.github.io/SQLite3MultipleCiphers/) providing encryption support for the web. Please note that this variant is not currently tested as well as the regular SQLite version. For this reason, using SQLite Multiple Ciphers with `package:sqlite3/wasm.dart` should be considered experimental for the time being. To test the encryption integration, download `sqlite3mc.wasm` from the [releases](https://github.com/simolus3/sqlite3.dart/releases) of this package and use that as a URL to load sqlite3 on the web: ```dart final sqlite3 = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3mc.wasm')); sqlite3.registerVirtualFileSystem(InMemoryFileSystem(), makeDefault: true); final database = sqlite3.open('/database') ..execute("pragma key = 'test';"); // TODO: Replace key ``` ### Testing To run the tests of this package with wasm, either download the `sqlite3.wasm` file from the GitHub releases to `example/web` or compile it yourself (see [build setup](../sqlite3_wasm_build/)). To run tests on the Dart VM, Firefox and Chrome, use: ``` dart test -P full ``` ================================================ FILE: sqlite3/analysis_options.yaml ================================================ include: package:lints/recommended.yaml analyzer: language: strict-casts: true strict-raw-types: true ================================================ FILE: sqlite3/assets/sqlite3.h ================================================ // This file defines the definitions for which we generate FFI bindings on // native platforms. To re-generate bindings, run: // `dart run tool/generate_bindings.dart`. #include typedef struct sqlite3_char sqlite3_char; typedef struct sqlite3 sqlite3; typedef struct sqlite3_stmt sqlite3_stmt; typedef struct sqlite3_backup sqlite3_backup; typedef struct sqlite3_api_routines sqlite3_api_routines; typedef struct sqlite3_session sqlite3_session; typedef struct sqlite3_changeset_iter sqlite3_changeset_iter; sqlite3_char* sqlite3_temp_directory; int sqlite3_initialize(); void sqlite3_free(void*); int sqlite3_open_v2(sqlite3_char* filename, sqlite3** ppDb, int flags, sqlite3_char* zVfs); int sqlite3_close_v2(sqlite3* db); sqlite3_char* sqlite3_db_filename(sqlite3* db, sqlite3_char* zDbName); int sqlite3_compileoption_used(const sqlite3_char* zOptName); const sqlite3_char* sqlite3_compileoption_get(int N); int sqlite3_busy_handler(sqlite3* db, int (*)(void*, int), void* context); // Error handling int sqlite3_extended_result_codes(sqlite3* db, int onoff); int sqlite3_extended_errcode(sqlite3* db); sqlite3_char* sqlite3_errmsg(sqlite3* db); sqlite3_char* sqlite3_errstr(int code); int sqlite3_error_offset(sqlite3* db); void sqlite3_free(void* ptr); // Versions sqlite3_char* sqlite3_libversion(); sqlite3_char* sqlite3_sourceid(); int sqlite3_libversion_number(); // Database int64_t sqlite3_last_insert_rowid(sqlite3* db); int sqlite3_changes(sqlite3* db); int sqlite3_exec(sqlite3* db, sqlite3_char* sql, void* callback, void* argToCb, sqlite3_char** errorOut); void* sqlite3_update_hook(sqlite3*, void (*)(void*, int, sqlite3_char const*, sqlite3_char const*, int64_t), void*); void* sqlite3_commit_hook(sqlite3*, int (*)(void*), void*); void* sqlite3_rollback_hook(sqlite3*, void (*)(void*), void*); int sqlite3_get_autocommit(sqlite3* db); // Statements int sqlite3_prepare_v2(sqlite3* db, const sqlite3_char* zSql, int nByte, sqlite3_stmt** ppStmt, const sqlite3_char** pzTail); int sqlite3_prepare_v3(sqlite3* db, const sqlite3_char* zSql, int nByte, unsigned int prepFlags, sqlite3_stmt** ppStmt, const sqlite3_char** pzTail); int sqlite3_finalize(sqlite3_stmt* pStmt); int sqlite3_step(sqlite3_stmt* pStmt); int sqlite3_reset(sqlite3_stmt* pStmt); int sqlite3_stmt_isexplain(sqlite3_stmt* pStmt); int sqlite3_stmt_readonly(sqlite3_stmt* pStmt); int sqlite3_column_count(sqlite3_stmt* pStmt); int sqlite3_bind_parameter_count(sqlite3_stmt* pStmt); int sqlite3_bind_parameter_index(sqlite3_stmt*, sqlite3_char* zName); sqlite3_char* sqlite3_column_name(sqlite3_stmt* pStmt, int N); sqlite3_char* sqlite3_column_table_name(sqlite3_stmt* pStmt, int N); int sqlite3_bind_blob64(sqlite3_stmt* pStmt, int index, void* data, uint64_t length, void (*destructor)(void*)); int sqlite3_bind_double(sqlite3_stmt* pStmt, int index, double data); int sqlite3_bind_int64(sqlite3_stmt* pStmt, int index, int64_t data); int sqlite3_bind_null(sqlite3_stmt* pStmt, int index); int sqlite3_bind_text(sqlite3_stmt* pStmt, int index, sqlite3_char* data, int length, void (*destructor)(void*)); void* sqlite3_column_blob(sqlite3_stmt* pStmt, int iCol); double sqlite3_column_double(sqlite3_stmt* pStmt, int iCol); int64_t sqlite3_column_int64(sqlite3_stmt* pStmt, int iCol); sqlite3_char* sqlite3_column_text(sqlite3_stmt* pStmt, int iCol); int sqlite3_column_bytes(sqlite3_stmt* pStmt, int iCol); int sqlite3_column_type(sqlite3_stmt* pStmt, int iCol); // Values typedef struct sqlite3_value sqlite3_value; void* sqlite3_value_blob(sqlite3_value* value); double sqlite3_value_double(sqlite3_value* value); int sqlite3_value_type(sqlite3_value* value); int64_t sqlite3_value_int64(sqlite3_value* value); sqlite3_char* sqlite3_value_text(sqlite3_value* value); int sqlite3_value_bytes(sqlite3_value* value); unsigned int sqlite3_value_subtype(sqlite3_value* value); // Functions typedef struct sqlite3_context sqlite3_context; int sqlite3_create_function_v2( sqlite3* db, sqlite3_char* zFunctionName, int nArg, int eTextRep, void* pApp, void (*xFunc)(sqlite3_context*, int, sqlite3_value**), void (*xStep)(sqlite3_context*, int, sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void*)); int sqlite3_create_window_function( sqlite3* db, sqlite3_char* zFunctionName, int nArg, int eTextRep, void* pApp, void (*xStep)(sqlite3_context*, int, sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*, int, sqlite3_value**), void (*xDestroy)(void*)); void* sqlite3_aggregate_context(sqlite3_context* ctx, int nBytes); void* sqlite3_user_data(sqlite3_context* ctx); void sqlite3_result_blob64(sqlite3_context* ctx, void* data, uint64_t length, void* destructor); void sqlite3_result_double(sqlite3_context* ctx, double result); void sqlite3_result_error(sqlite3_context* ctx, sqlite3_char* msg, int length); void sqlite3_result_int64(sqlite3_context* ctx, int64_t result); void sqlite3_result_null(sqlite3_context* ctx); void sqlite3_result_text(sqlite3_context* ctx, sqlite3_char* data, int length, void* destructor); void sqlite3_result_subtype(sqlite3_context* ctx, unsigned int subtype); // Collations int sqlite3_create_collation_v2(sqlite3*, sqlite3_char* zName, int eTextRep, void* pArg, int (*xCompare)(void*, int, const void*, int, const void*), void (*xDestroy)(void*)); // Backup sqlite3_backup* sqlite3_backup_init(sqlite3* pDestDb, sqlite3_char* zDestDb, sqlite3* pSrcDb, sqlite3_char* zSrcDb); int sqlite3_backup_step(sqlite3_backup* p, int nPage); int sqlite3_backup_finish(sqlite3_backup* p); int sqlite3_backup_remaining(sqlite3_backup* p); int sqlite3_backup_pagecount(sqlite3_backup* p); // Extensions int sqlite3_auto_extension(void* xEntryPoint); // Database configuration int sqlite3_db_config(sqlite3* db, int op, ...); // VFS typedef struct sqlite3_file sqlite3_file; struct sqlite3_io_methods { int iVersion; int (*xClose)(sqlite3_file*); int (*xRead)(sqlite3_file*, void*, int iAmt, int64_t iOfst); int (*xWrite)(sqlite3_file*, const void*, int iAmt, int64_t iOfst); int (*xTruncate)(sqlite3_file*, int64_t size); int (*xSync)(sqlite3_file*, int flags); int (*xFileSize)(sqlite3_file*, int64_t* pSize); int (*xLock)(sqlite3_file*, int); int (*xUnlock)(sqlite3_file*, int); int (*xCheckReservedLock)(sqlite3_file*, int* pResOut); int (*xFileControl)(sqlite3_file*, int op, void* pArg); int (*xSectorSize)(sqlite3_file*); int (*xDeviceCharacteristics)(sqlite3_file*); /* Methods above are valid for version 1 */ int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void**); int (*xShmLock)(sqlite3_file*, int offset, int n, int flags); void (*xShmBarrier)(sqlite3_file*); int (*xShmUnmap)(sqlite3_file*, int deleteFlag); /* Methods above are valid for version 2 */ int (*xFetch)(sqlite3_file*, int64_t iOfst, int iAmt, void** pp); int (*xUnfetch)(sqlite3_file*, int64_t iOfst, void* p); /* Methods above are valid for version 3 */ /* Additional methods may be added in future releases */ }; struct sqlite3_file { const struct sqlite3_io_methods* pMethods; /* Methods for an open file */ }; typedef struct sqlite3_vfs sqlite3_vfs; typedef void (*sqlite3_syscall_ptr)(void); typedef const char* sqlite3_filename; struct sqlite3_vfs { int iVersion; /* Structure version number (currently 3) */ int szOsFile; /* Size of subclassed sqlite3_file */ int mxPathname; /* Maximum file pathname length */ sqlite3_vfs* pNext; /* Next registered VFS */ const char* zName; /* Name of this virtual file system */ void* pAppData; /* Pointer to application-specific data */ int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, int flags, int* pOutFlags); int (*xDelete)(sqlite3_vfs*, const char* zName, int syncDir); int (*xAccess)(sqlite3_vfs*, const char* zName, int flags, int* pResOut); int (*xFullPathname)(sqlite3_vfs*, const char* zName, int nOut, char* zOut); void* (*xDlOpen)(sqlite3_vfs*, const char* zFilename); void (*xDlError)(sqlite3_vfs*, int nByte, char* zErrMsg); void (*(*xDlSym)(sqlite3_vfs*, void*, const char* zSymbol))(void); void (*xDlClose)(sqlite3_vfs*, void*); int (*xRandomness)(sqlite3_vfs*, int nByte, char* zOut); int (*xSleep)(sqlite3_vfs*, int microseconds); int (*xCurrentTime)(sqlite3_vfs*, double*); int (*xGetLastError)(sqlite3_vfs*, int, char*); /* ** The methods above are in version 1 of the sqlite_vfs object ** definition. Those that follow are added in version 2 or later */ int (*xCurrentTimeInt64)(sqlite3_vfs*, int64_t*); /* ** The methods above are in versions 1 and 2 of the sqlite_vfs object. ** Those below are for version 3 and greater. */ int (*xSetSystemCall)(sqlite3_vfs*, const char* zName, sqlite3_syscall_ptr); sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char* zName); const char* (*xNextSystemCall)(sqlite3_vfs*, const char* zName); /* ** The methods above are in versions 1 through 3 of the sqlite_vfs object. ** New fields may be appended in future versions. The iVersion ** value will increment whenever this happens. */ }; int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt); int sqlite3_vfs_unregister(sqlite3_vfs*); // Session int sqlite3session_create( sqlite3* db, /* Database handle */ const sqlite3_char* zDb, /* Name of db (e.g. "main") */ sqlite3_session** ppSession /* OUT: New session object */ ); void sqlite3session_delete(sqlite3_session* pSession); int sqlite3session_enable(sqlite3_session* pSession, int bEnable); int sqlite3session_indirect(sqlite3_session* pSession, int bIndirect); int sqlite3changeset_start( sqlite3_changeset_iter** pp, /* OUT: New changeset iterator handle */ int nChangeset, /* Size of changeset blob in bytes */ void* pChangeset /* Pointer to blob containing changeset */ ); int sqlite3changeset_finalize(sqlite3_changeset_iter* pIter); int sqlite3changeset_next(sqlite3_changeset_iter* pIter); int sqlite3changeset_op( sqlite3_changeset_iter* pIter, /* Iterator object */ const sqlite3_char** pzTab, /* OUT: Pointer to table name */ int* pnCol, /* OUT: Number of columns in table */ int* pOp, /* OUT: SQLITE_INSERT, DELETE or UPDATE */ int* pbIndirect /* OUT: True for an 'indirect' change */ ); int sqlite3changeset_old( sqlite3_changeset_iter* pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value** ppValue /* OUT: Old value (or NULL pointer) */ ); int sqlite3changeset_new( sqlite3_changeset_iter* pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value** ppValue /* OUT: Old value (or NULL pointer) */ ); int sqlite3changeset_apply( sqlite3* db, /* Apply change to "main" db of this handle */ int nChangeset, /* Size of changeset in bytes */ void* pChangeset, /* Changeset blob */ int (*xFilter)(void* pCtx, /* Copy of sixth arg to _apply() */ const char* zTab /* Table name */ ), int (*xConflict)( void* pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter* p /* Handle describing change and conflict */ ), void* pCtx /* First argument passed to xConflict */ ); int sqlite3changeset_invert(int nIn, const void* pIn, /* Input changeset */ int* pnOut, void** ppOut /* OUT: Inverse of input */ ); int sqlite3session_patchset( sqlite3_session* pSession, /* Session object */ int* pnPatchset, /* OUT: Size of buffer at *ppPatchset */ void** ppPatchset /* OUT: Buffer containing patchset */ ); int sqlite3session_changeset( sqlite3_session* pSession, /* Session object */ int* pnChangeset, /* OUT: Size of buffer at *ppChangeset */ void** ppChangeset /* OUT: Buffer containing changeset */ ); int sqlite3session_isempty(sqlite3_session* pSession); int sqlite3session_attach(sqlite3_session* pSession, /* Session object */ const sqlite3_char* zTab /* Table name */ ); int sqlite3session_diff(sqlite3_session* pSession, const sqlite3_char* zFromDb, const sqlite3_char* zTbl, sqlite3_char** pzErrMsg); ================================================ FILE: sqlite3/assets/sqlite3_dart_wasm.h ================================================ #include "sqlite3.h" // Additional bindings we need for WASM interop. // These are implemented in sqlite3_wasm_build, this header is only used for // ffigen. typedef struct { } externref; void* dart_sqlite3_malloc(int size); void dart_sqlite3_free(void* ptr); int dart_sqlite3_bind_blob(sqlite3_stmt* stmt, int index, const void* buf, int len); int dart_sqlite3_bind_text(sqlite3_stmt* stmt, int index, const char* buf, int len); sqlite3_vfs* dart_sqlite3_register_vfs(const char* name, externref* vfs, int makeDefault); int dart_sqlite3_unregister_vfs(sqlite3_vfs* vfs); int dart_sqlite3_create_function_v2(sqlite3* db, const char* zFunctionName, int nArg, int eTextRep, int isAggregate, externref* handlers); int dart_sqlite3_create_window_function(sqlite3* db, const char* zFunctionName, int nArg, int eTextRep, externref* handlers); void dart_sqlite3_updates(sqlite3* db, externref* callback); void dart_sqlite3_commits(sqlite3* db, externref* callback); void dart_sqlite3_rollbacks(sqlite3* db, externref* callback); int dart_sqlite3_create_collation(sqlite3* db, const char* zName, int eTextRep, externref* function); int dart_sqlite3_db_config_int(sqlite3* db, int op, int arg); int dart_sqlite3changeset_apply(sqlite3* db, int nChangeset, void* pChangeset, externref* callbacks, int filter); int dart_sqlite3_busy_handler(sqlite3* db, externref* callback); ================================================ FILE: sqlite3/build.yaml ================================================ targets: # This setup exists so that the main entrypoint (web/main.dart) gets compiled # with dartdevc for debug builds while the worker is compiled with dart2js # (since workers don't support the JS moduled emitted by dartdevc). # In release builds (`--release` on the CLI), both entrypoints are compiled # with dart2js. # # If you're ok with compiling everything with dart2js, just use # `compiler: dartj2s` on the options of the default target and ignore the two # additional targets here. dart2js_archives: auto_apply_builders: false dependencies: [":$default", ":worker"] builders: build_web_compilers:dart2js_archive_extractor: enabled: true worker: auto_apply_builders: false dependencies: [":$default"] builders: build_web_compilers:entrypoint: enabled: true generate_for: - example/web/worker.dart options: compiler: dart2js build_web_compilers:dart2js_archive_extractor: enabled: false $default: sources: include: - lib/** - example/web/** builders: build_web_compilers:entrypoint: generate_for: include: - "example/web/**" # This one is compiled in the other target exclude: - "example/web/worker.dart" # We have a designated target for this step. build_web_compilers:dart2js_archive_extractor: enabled: false ================================================ FILE: sqlite3/dart_test.yaml ================================================ tags: ffi: test_on: dart-vm wasm: test_on: browser ci_only: skip: "This test requires special setup and only runs in the GitHub CI action" platforms: [vm] override_platforms: firefox: settings: arguments: "-headless" chrome: settings: executable: google-chrome-stable arguments: "--enable-features=SharedArrayBuffer" edge: settings: arguments: "--enable-features=SharedArrayBuffer" presets: full: platforms: [vm, chrome, firefox] compilers: [dart2js, dart2wasm] on_os: windows: platforms: [vm, chrome, firefox, edge] web: platforms: [chrome, firefox] on_os: windows: platforms: [chrome, firefox, edge] wasm-only: add_presets: [web] compilers: [dart2wasm] web-full: add_presets: [web] compilers: [dart2js, dart2wasm] ci: tags: ci_only: skip: false ================================================ FILE: sqlite3/dartdoc_options.yaml ================================================ dartdoc: categories: "common": markdown: doc/common.md displayName: Cross-platform definitions "native": markdown: doc/native.md displayName: Native only "wasm": markdown: doc/wasm.md displayName: Web only "hook": markdown: doc/hook.md displayName: Build hook options ================================================ FILE: sqlite3/doc/common.md ================================================ Definitions and common interfaces that are implemented by both the native and the web-specific bindings to SQLite. Restricting your usage of the sqlite3 package to `package:sqlite3/common.dart` means that your code can run on all platforms. However, this doesn't give you access to the actual implementations that are part of the native and web implementations. You can write most of your database code with the common definitions and then use conditional imports to make an implementation available. For this, create three files: 1. `database_stub.dart`. 2. `database_native.dart`. 3. `datbaase_web.dart`. The content of these files depends on your needs, but could look like this: ```dart // database_stub.dart import 'package:sqlite3/common.dart'; Future openDatabase() async { throw UnsupportedError('Unknown platform'); } ``` ```dart // database_native.dart import 'package:sqlite3/sqlite3.dart'; Future openDatabase() async { final path = await pickDatabasePath(); // e.g. with package:path_provider return sqlite3.open(path); } ``` ```dart // database_web.dart import 'package:sqlite3/wasm.dart'; Future openDatabase() async { final sqlite = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3.wasm')); final fs = await IndexedDbFileSystem.open(dbName: 'app.db'); sqlite.registerVirtualFileSystem(fs, makeDefault: true); return sqlite.open('/app.db'); } ``` With those files, you can use a conditional imports to support both web and native platforms: ```dart import 'database_stub.dart' if (dart.library.io) 'database_native.dart' if (dart.library.js_interop) 'database_web.dart'; ``` ================================================ FILE: sqlite3/doc/hook.md ================================================ Most operating systems make copies of SQLite as a native library available to applications. However, these libraries are inconsistent in their compile-time options (resulting in different SQLite features being available on different platforms) and are often outdated. To avoid this inconsistency, `package:sqlite3/` bundles a copy of SQLite with your application by default, and it will prefer to use that copy over the one from the operating system. To do that, it uses a new Dart and Flutter feature called [hooks](https://dart.dev/tools/hooks). More information on hooks is available under that link, this page describes options relevant to `package:sqlite3`. ## Default binaries Each [GitHub release](https://github.com/simolus3/sqlite3.dart/releases) of the SQLite package contains pre-compiled SQLite versions as shared libraries for all platforms supported by Dart. These binaries are compiled directly from upstream sources in GitHub actions, and the version of `package:sqlite3` published to pub.dev contains sha256 references that are compared against downloaded files. These binaries use the following compile-time options: ``` SQLITE_ENABLE_DBSTAT_VTAB SQLITE_ENABLE_FTS5 SQLITE_ENABLE_RTREE SQLITE_ENABLE_MATH_FUNCTIONS SQLITE_DQS=0 SQLITE_DEFAULT_MEMSTATUS=0 SQLITE_TEMP_STORE=2 SQLITE_MAX_EXPR_DEPTH=0 SQLITE_STRICT_SUBTYPE=1 SQLITE_OMIT_AUTHORIZATION SQLITE_OMIT_DECLTYPE SQLITE_OMIT_DEPRECATED SQLITE_OMIT_PROGRESS_CALLBACK SQLITE_OMIT_SHARED_CACHE SQLITE_OMIT_TCL_VARIABLE SQLITE_OMIT_TRACE SQLITE_USE_ALLOCA SQLITE_ENABLE_SESSION SQLITE_ENABLE_PREUPDATE_HOOK SQLITE_UNTESTABLE SQLITE_HAVE_ISNAN SQLITE_HAVE_LOCALTIME_R SQLITE_HAVE_LOCALTIME_S SQLITE_HAVE_MALLOC_USABLE_SIZE SQLITE_HAVE_STRCHRNUL ``` For each platform, two sets of binaries are available: - [Upstream SQLite](https://sqlite.org/download.html). - The [SQLite3MultipleCiphers build](https://github.com/utelle/SQLite3MultipleCiphers/releases) providing encryption support. SQLite is used by default, but SQLite3MultipleCiphers can be selected through user defines, e.g. by adding this to `pubspec.yaml`: ```yaml hooks: user_defines: sqlite3: source: sqlite3mc # for SQLite3MultipleCiphers, default is sqlite3 ``` ## System-provided SQLite Depending on how you distribute your app, you may want to use the SQLite version shipped with the operating system. To do so, use the following user defines: ```yaml hooks: user_defines: sqlite3: source: system # or "process", or "excutable" ``` These options behave as follows: 1. "system" instructs the Dart embedder to lookup SQLite from the operating system, e.g. with a `dlopen("libsqlite3.so")` on Linux. When using `source: system`, you can also add a `name` key to customize the name of the library. For instance, `name: sqlcipher` would load `libsqlcipher.dylib` on macOS. 2. "process" looks for SQLite symbols in the current [process](https://api.dart.dev/dart-ffi/DynamicLibrary/DynamicLibrary.process.html), which can be useful when your executable already depends on SQLite (instead of explicitly requesting it with `dlopen`). 3. "executable" looks for SQLite symbols in the current [executable](https://api.dart.dev/dart-ffi/DynamicLibrary/DynamicLibrary.executable.html), which is useful when linking SQLite statically. ### With custom library names When using `source: system`, you can also add a `name` key to customize the name of the name of the library. For instance, `name: sqlcipher` would load `libsqlcipher.dylib` on macOS, `libsqlcipher.so` on Linux and `sqlcipher.dll` on Windows. To further customize the name for specific operating systems, you can use `name_$os` keys, where `$os` is the [target operating system](https://pub.dev/documentation/code_assets/latest/code_assets/OS-class.html) passed to hooks: ```yaml hooks: user_defines: sqlite3: source: system # Use winsqlite3.dll on Windows, libsqlite3.{so,dylib} on Linux and macOS name_windows: winsqlite3 name: sqlite3 ``` ## Custom SQLite builds If you want to customize the SQLite build to use with `package:sqlite3`, you can also use user defines for that. First, download the `sqlite3.c` file you want to use into your workspace. Then, add this section to your pubspec: ```yaml hooks: user_defines: sqlite3: source: source path: path/to/sqlite3.c # relative to your workspace root defines: # optional default_options: false # optional, to disable default compile-time options used by package:sqlite3 defines: - SQLITE_THREADSAFE=1 - SQLITE_LIKE_DOESNT_MATCH_BLOBS ``` ### Alternatives Using the `source` mode to compile SQLite from sources in build hook can't cover all customization needs you may have. When building SQLCipher for instance, you may want to pass custom linker options to the build process. There is no good way to support arbitrary customization in build hooks today. However, `package:sqlite3` will work with all SQLite builds that are ABI-compatible with standard SQLite (it also runs checks at runtime before using methods that are not commonly enabled on all builds). If you control the build process of your application, you can use an external build system (like SwiftPM or CMake) to statically link SQLite into your application. Then, use `source: executable` to make `package:sqlite3` use that copy instead of building its own. ================================================ FILE: sqlite3/doc/native.md ================================================ Libraries related to accessing SQLite functions via `dart:ffi` on native platforms. ================================================ FILE: sqlite3/doc/releasing.md ================================================ ## Releasing `package:sqlite3`. Because each release contains native SQLite binaries whose hashes are referenced in Dart, adding a new release requires some setup. 1. Run the full actions test pipeline for all changes to include. 2. From that run, download the `asset_hashes.dart` file and copy it to `sqlite3/lib/src/hook/asset_hashes.dart`. 3. In that file, set `releaseTag` to `sqlite3-<$newVersion>`. 4. In `sqlite3/pubspec.yaml`, set `version` to `$newVersion`. 5. Commit and create a git tag `sqlite3-<$newVersion>`. 6. Push that tag and approve the pub.dev publishing workflow. ================================================ FILE: sqlite3/doc/wasm.md ================================================ APIs for using SQLite in web contexts, accessing SQLite through a WebAssembly module. ================================================ FILE: sqlite3/example/custom_extension/README.md ================================================ This shows how a custom SQLite extension can be linked with native assets. The extension (https://github.com/asg017/sqlite-vec) is built with a code asset that will download the extension as a prebuilt file from its GitHub releases. SQLite extensions are shared libraries that have a function called `sqlite3_$extensionName_init`. With the hook linking the extension, you can bind to that function with Dart: ```dart @Native, Pointer, Pointer)>() external int sqlite3_vec_init( Pointer db, Pointer pzErrMsg, Pointer pApi, ); ``` This will then allow linking the extension: ```dart extension LoadVectorExtension on Sqlite3 { void loadSqliteVectorExtension() { ensureExtensionLoaded( SqliteExtension( Native.addressOf< NativeFunction< Int Function(Pointer, Pointer, Pointer) > >(sqlite3_vec_init).cast(), ), ); } } ``` To try this example, run `dart run example/main.dart`. ================================================ FILE: sqlite3/example/custom_extension/example/main.dart ================================================ import 'package:custom_extension/sqlite_vec.dart'; import 'package:sqlite3/sqlite3.dart'; void main() { sqlite3.loadSqliteVectorExtension(); final db = sqlite3.openInMemory(); db.execute(''' create virtual table vec_examples using vec0( sample_embedding float[8] ); insert into vec_examples(rowid, sample_embedding) values (1, '[-0.200, 0.250, 0.341, -0.211, 0.645, 0.935, -0.316, -0.924]'), (2, '[0.443, -0.501, 0.355, -0.771, 0.707, -0.708, -0.185, 0.362]'), (3, '[0.716, -0.927, 0.134, 0.052, -0.669, 0.793, -0.634, -0.162]'), (4, '[-0.710, 0.330, 0.656, 0.041, -0.990, 0.726, 0.385, -0.958]'); '''); print( db.select(''' select rowid, distance from vec_examples where sample_embedding match '[0.890, 0.544, 0.825, 0.961, 0.358, 0.0196, 0.521, 0.175]' order by distance limit 2; '''), ); } ================================================ FILE: sqlite3/example/custom_extension/hook/build.dart ================================================ import 'dart:io'; import 'package:code_assets/code_assets.dart'; import 'package:hooks/hooks.dart'; import 'package:http/http.dart'; import 'package:tar/tar.dart'; void main(List args) { build(args, (input, output) async { final targetOS = input.config.code.targetOS; final arch = input.config.code.targetArchitecture; final (osName, fileName) = switch (targetOS) { OS.linux => ('linux', 'vec0.so'), OS.macOS => ('macos', 'vec0.dylib'), OS.windows => ('windows', 'vec0.dll'), _ => throw UnsupportedError('Unsupported target os $targetOS'), }; final archName = switch (arch) { Architecture.x64 => 'x86_64', Architecture.arm64 => 'aarch64', _ => throw UnsupportedError('Unsupported target architecture $arch'), }; final client = Client(); final uri = Uri.parse( 'https://github.com/asg017/sqlite-vec/releases/download/v$version/sqlite-vec-$version-loadable-$osName-$archName.tar.gz', ); final response = await client.send( Request('GET', uri)..followRedirects = true, ); if (response.statusCode != 200) { throw StateError( 'Unexpected status code ${response.statusCode} for $uri', ); } final reader = TarReader(response.stream.transform(gzip.decoder)); var foundFile = false; while (await reader.moveNext()) { final current = reader.current; if (current.name == fileName) { final targetFilePath = input.outputDirectory.resolve(fileName); final targetFile = File(targetFilePath.toFilePath()); await current.contents.pipe(targetFile.openWrite()); output.assets.code.add( CodeAsset( package: 'custom_extension', name: 'sqlite_vec.dart', file: targetFilePath, linkMode: DynamicLoadingBundled(), ), ); foundFile = true; break; } } if (!foundFile) { throw 'Could not find $fileName in $uri'; } await reader.cancel(); client.close(); }); } const version = '0.1.6'; ================================================ FILE: sqlite3/example/custom_extension/lib/sqlite_vec.dart ================================================ // ignore_for_file: non_constant_identifier_names import 'dart:ffi'; import 'package:sqlite3/sqlite3.dart'; @Native, Pointer, Pointer)>() external int sqlite3_vec_init( Pointer db, Pointer pzErrMsg, Pointer pApi, ); extension LoadVectorExtension on Sqlite3 { void loadSqliteVectorExtension() { ensureExtensionLoaded( SqliteExtension( Native.addressOf< NativeFunction< Int Function(Pointer, Pointer, Pointer) > >(sqlite3_vec_init).cast(), ), ); } } ================================================ FILE: sqlite3/example/custom_extension/pubspec.yaml ================================================ name: custom_extension publish_to: none resolution: workspace environment: sdk: '>=3.7.0 <4.0.0' dependencies: sqlite3: code_assets: ^1.0.0 hooks: ^1.0.0 http: ^1.5.0 tar: ^2.0.0 dev_dependencies: test: ^1.26.0 ================================================ FILE: sqlite3/example/custom_extension/test/extension_test.dart ================================================ import 'package:custom_extension/sqlite_vec.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:test/test.dart'; void main() { setUpAll(() { sqlite3.loadSqliteVectorExtension(); }); test('can use vec0', () { final db = sqlite3.openInMemory(); addTearDown(db.close); db.execute( 'create virtual table vec_examples using vec0(sample_embedding float[8])', ); }); } ================================================ FILE: sqlite3/example/custom_wasm_build/.cargo/config.toml ================================================ [build] rustflags = ["-C", "linker-plugin-lto"] ================================================ FILE: sqlite3/example/custom_wasm_build/.gitignore ================================================ target/ Cargo.lock ================================================ FILE: sqlite3/example/custom_wasm_build/Cargo.toml ================================================ [package] name = "custom_wasm_build" version = "0.1.0" edition = "2021" [lib] crate-type = ["staticlib"] [dependencies] [build-dependencies] cc = "1.0.46" cmake = "0.1.50" [profile.release] opt-level = "z" lto=true ================================================ FILE: sqlite3/example/custom_wasm_build/README.md ================================================ ## custom wasm modules This example demonstrates how to build a custom `sqlite3.wasm` module than can be used with `package:sqlite3`. Using custom wasm modules is useful to include additional extensions in sqlite3, or to use different compile-time options. This example uses existing C source files also used by the default configuration: - `sqlite3.c` for the actual SQLite library. - [`helpers.c`](https://github.com/simolus3/sqlite3.dart/blob/main/sqlite3/assets/wasm/helpers.c) from this repository, which defines a VFS wrapper for virtual filesystem implementations provided from Dart. - Our `os_web.c` file is _not_ included. It contains the implementation for `sqlite3_os_init` and `sqlite3_os_end`, which are implemented in this custom extension instead. `sqlite3_os_init` is a suitable hook to load your sqlite3 extensions. In this example, the extension is a simple Rust library printing a hello message to the web console when the module is loaded. ## Setup We're currently using the libc from [WASI](https://wasi.dev/) to compile sqlite3, so the easiest approach is to compile your custom extensions with that as well: ``` rustup target add wasm32-wasi ``` Additionally, you need to download WASI compiler builtins and the associated libc as described in the [build instructions](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3#compiling). ## Building The `build.rs` file from this example is responsible for compiling sqlite3 to WebAssembly object files. We're not using a static library because that seems to break the `--export-dynamic` option used in the final linking step to expose the relevant functions. To download and compile sqlite3 as well as the patched `sqlite3_os_init` function for this example, run ``` WASI_SYSROOT=/path/to/wasi/ CC=/path/to/clang cargo build --target wasm32-unknown-unknown ``` Or, to compile a release build optimized for size: ``` WASI_SYSROOT=/path/to/wasi/ CC=/path/to/clang cargo build --target wasm32-unknown-unknown --release ``` Cargo compiles sqlite3 to WASM object files, the Rust part is compiled into a static library. A Dart script (`link.dart`) can be used to link them together into a `sqlite3.wasm` file loadable by the `sqlite3` package: ``` CC=/path/to/clang dart run link.dart target/wasm32-unknown-unknown/debug CC=/path/to/clang dart run link.dart target/wasm32-unknown-unknown/release ``` As an additional transformation step, running `wasm-opt -O4` on the resulting WASM file may optimize it further. Similarly, running `dart run tool/wasm_dce.dart ` in the `sqlite3` source directory will remove functions not directly or indirectly used by the Dart package, reduzing bundle size. ================================================ FILE: sqlite3/example/custom_wasm_build/build.rs ================================================ use std::{env, path::PathBuf}; use cmake::Config; fn main() { let sysroot = env::var("WASI_SYSROOT").unwrap_or_else(|_| "/usr/share/wasi-sysroot".to_string()); let cmake_dir = Config::new("../../../sqlite3_wasm_build/src/") .define("wasi_sysroot", &sysroot) .define("CMAKE_C_COMPILER_WORKS", "1") .build_target("sqlite3_opt_lib") .build_target("help") // We only need the sources .build(); let sqlite3_src = cmake_dir.join("build/_deps/sqlite3-src/"); let mut c_build = cc::Build::new(); let objects = c_build .target("wasm32-unknown-wasi") .cargo_warnings(false) .std("c23") .flag("--sysroot") .flag(&sysroot) .file(sqlite3_src.join("sqlite3.c")) .file("../../../sqlite3_wasm_build/src/helpers.c") .flag("-flto=thin") .include(&sqlite3_src) .include("../../../sqlite3_wasm_build/src/") .define("SQLITE_ENABLE_SESSION", None) .define("SQLITE_ENABLE_PREUPDATE_HOOK", None) .define("_HAVE_SQLITE_CONFIG_H", None) .define("SQLITE_API", "__attribute__((visibility(\"default\")))") // Ideally we should be able to compile this into a static library and use that one, but // for some reasons that drops all exported symbols. So we're compiling to objects and // we only compile Rust code to a static library. Then we use the clang driver to link // these objects and the static Rust library in one go. .compile_intermediates(); let output_dir = get_output_path(); for object in objects { // The file name is something like -sqlite3.o let file_name = object.file_name().unwrap().to_str().unwrap().to_owned(); let (_, file_name) = file_name.split_once("-").unwrap(); std::fs::copy(object, output_dir.join(file_name)).unwrap(); } } fn get_output_path() -> PathBuf { let mut out = PathBuf::from(env::var("OUT_DIR").unwrap()); loop { match out.file_name() { Some(name) if name == "build" => { break; } _ => out = out.parent().unwrap().to_path_buf(), } } out.parent().unwrap().to_path_buf() } ================================================ FILE: sqlite3/example/custom_wasm_build/link.dart ================================================ import 'dart:io'; void main(List args) { if (args.length != 1) { print("Usage: dart link.dart target/wasm32-wasi/"); } final directory = Directory(args[0]); final entries = []; for (final entry in directory.listSync()) { if (entry.path.endsWith('.o') || entry.path.endsWith('.a')) { entries.add(entry.path); } } final clang = Platform.environment['CC'] ?? 'clang'; final sysroot = Platform.environment['WASI_SYSROOT'] ?? '/usr/share/wasi-sysroot'; final process = Process.runSync(clang, [ '--target=wasm32-unknown-wasi', '--sysroot=$sysroot', '-flto', ...entries, '-o', 'sqlite3.wasm', '-nostartfiles', '-Wl,--no-entry', '-Wl,--export-dynamic', '-Wl,--import-memory', '-v', ]); if (process.exitCode != 0) { print( 'Could not link: ${process.exitCode}, ${process.stderr}, ${process.stdout}', ); } } ================================================ FILE: sqlite3/example/custom_wasm_build/src/lib.rs ================================================ use std::ffi::c_int; #[no_mangle] pub extern "C" fn sqlite3_os_init() -> c_int { // This would be a good place to set up extensions. unsafe { // package:sqlite3 provides access to Dart's print function via dart.error_log wasm::dartLogError("Hello from a custom Rust build!".as_ptr().cast()); } return 0; } #[no_mangle] pub extern "C" fn sqlite3_os_end() -> c_int { return 0; } mod wasm { use std::ffi::c_char; #[link(wasm_import_module = "dart")] extern "C" { #[link_name = "error_log"] pub fn dartLogError(msg: *const c_char); } } ================================================ FILE: sqlite3/example/jsonb.dart ================================================ import 'package:sqlite3/sqlite3.dart'; void main() { final database = sqlite3.openInMemory() ..execute('CREATE TABLE entries (entry BLOB NOT NULL) STRICT;') // You can insert JSONB-formatted values directly ..execute('INSERT INTO entries (entry) VALUES (?)', [ jsonb.encode({'hello': 'dart'}), ]); // And use them with JSON operators in SQLite without a further conversion: print(database.select('SELECT entry ->> ? AS r FROM entries;', [r'$.hello'])); } ================================================ FILE: sqlite3/example/main.dart ================================================ import 'dart:io'; import 'package:sqlite3/sqlite3.dart'; void main() { print('Using sqlite3 ${sqlite3.version}'); // Create a new in-memory database. To use a database backed by a file, you // can replace this with sqlite3.open(yourFilePath). final db = sqlite3.openInMemory(); // Create a table and insert some data db.execute(''' CREATE TABLE artists ( id INTEGER NOT NULL PRIMARY KEY, name TEXT NOT NULL ); '''); // Prepare a statement to run it multiple times: final stmt = db.prepare('INSERT INTO artists (name) VALUES (?)'); stmt ..execute(['The Beatles']) ..execute(['Led Zeppelin']) ..execute(['The Who']) ..execute(['Nirvana']); // Dispose a statement when you don't need it anymore to clean up resources. stmt.close(); // You can run select statements with PreparedStatement.select, or directly // on the database: final ResultSet resultSet = db.select( 'SELECT * FROM artists WHERE name LIKE ?', ['The %'], ); // You can iterate on the result set in multiple ways to retrieve Row objects // one by one. for (final Row row in resultSet) { print('Artist[id: ${row['id']}, name: ${row['name']}]'); } // Register a custom function we can invoke from sql: db.createFunction( functionName: 'dart_version', argumentCount: const AllowedArgumentCount(0), function: (args) => Platform.version, ); print(db.select('SELECT dart_version()')); // Don't forget to dispose the database to avoid memory leaks (optional on // native platforms). db.close(); } ================================================ FILE: sqlite3/example/web/README.md ================================================ ## sqlite3 web example This folder contains a very simple example demonstrating how to load a sqlite3 database in the web. To run this example, first obtain a `sqlite3.debug.wasm` file from the [releases](https://github.com/simolus3/sqlite3.dart/releases) of this package and put it in this `web/` folder. In a real app, you'll want to use the `sqlite3.wasm` file from the releases, but the debug variant prints more log messages which are relevant for the example. In the `sqlite3/` folder (`../..`), run `dart run build_runner serve example:8080`. Then, you can visit the example at http://localhost:8080/web/. ------ For larger applications using sqlite3, you may want to try out a database framework such as [drift](https://drift.simonbinder.eu/web/), which takes care of the complex setup steps for you. It automatically determines features supported by the current browser to choose a suitable filesystem implementation. ================================================ FILE: sqlite3/example/web/index.html ================================================ sqlite on the web

sqlite3 web demo

This page can be used to launch a sqlite3 database on the web in two different configurations:
  • With an IndexedDb-based storage implementation (doesn't require web workers):
  • With an Origin-Private FileSystem (OPFS)-based storage implementation. Note that this requires two workers and a special header that is not available with build_runner serve, but it will work when launching this website with dart run tool/example_server.dart
  • With an in-memory test (using SQLite3 Multiple Ciphers for encryption):
After launching the example, you can check the console and the code in main.dart (or worker.dart for the OPFS example) for details.
================================================ FILE: sqlite3/example/web/main.dart ================================================ import 'dart:js_interop'; import 'package:web/web.dart'; import 'package:sqlite3/wasm.dart'; Future main() async { final startIndexedDb = document.getElementById('start-idb')!; final startOpfs = document.getElementById('start-opfs')!; final startEncryption = document.getElementById('start-encryption')!; startIndexedDb.onClick.listen((_) async { startIndexedDb.remove(); final sqlite3 = await WasmSqlite3.loadFromUrl( Uri.parse('sqlite3.debug.wasm'), ); print(sqlite3.version); sqlite3.registerVirtualFileSystem( await IndexedDbFileSystem.open(dbName: 'sqlite3-example'), makeDefault: true, ); sqlite3.open('/database') ..execute('pragma user_version = 1') ..execute('CREATE TABLE foo (bar INTEGER NOT NULL);') ..execute('INSERT INTO foo (bar) VALUES (?)', [3]) ..close(); final db = sqlite3.open('/database'); print(db.select('SELECT * FROM foo')); }); startOpfs.onClick.listen((_) async { startOpfs.remove(); final worker = Worker('worker.dart.js'.toJS); worker.postMessage('start'.toJS); }); startEncryption.onClick.listen((_) async { startEncryption.remove(); final sqlite3 = await WasmSqlite3.loadFromUrl(Uri.parse('sqlite3mc.wasm')); sqlite3.registerVirtualFileSystem(InMemoryFileSystem(name: 'testing')); sqlite3.open('/database', vfs: 'multipleciphers-testing') ..execute("pragma key = 'test';") ..execute('pragma user_version = 1') ..execute('CREATE TABLE foo (bar INTEGER NOT NULL);') ..execute('INSERT INTO foo (bar) VALUES (?)', [3]) ..close(); final db = sqlite3.open('/database', vfs: 'multipleciphers-testing'); try { db.select('SELECT * FROM foo'); } on SqliteException { print('database call failed (expected due to missing key)'); } db.execute("pragma key = 'test';"); print(db.select('SELECT * FROM foo')); }); } ================================================ FILE: sqlite3/example/web/worker.dart ================================================ import 'dart:js_interop'; import 'package:sqlite3/wasm.dart'; import 'package:web/web.dart' as web; @JS() external bool get crossOriginIsolated; void main() { print('worker main'); final self = (globalContext as web.DedicatedWorkerGlobalScope); if (!WasmVfs.supportsAtomicsAndSharedMemory) { throw UnsupportedError( 'Missing support for Atomics or SharedArrayBuffer! Isolated: $crossOriginIsolated', ); } Future handleEvent(web.MessageEvent event) async { final data = event.data; if (data.equals('start'.toJS).toDart) { final options = WasmVfs.createOptions(); final worker = web.Worker(''.toJS); // Clone this worker worker.postMessage(options); // Now, wait for the worker to report that it has been initialized. await web.EventStreamProviders.messageEvent.forTarget(worker).first; final sqlite3 = await WasmSqlite3.loadFromUrl( Uri.parse('sqlite3.debug.wasm'), ); sqlite3.registerVirtualFileSystem( await SimpleOpfsFileSystem.loadFromStorage('worker-test'), makeDefault: true, ); sqlite3.open('/database') ..execute('pragma user_version = 1') ..execute('CREATE TABLE foo (bar INTEGER NOT NULL);') ..execute('INSERT INTO foo (bar) VALUES (?)', [3]) ..close(); final db = sqlite3.open('/database'); print(db.select('SELECT * FROM foo')); } else { final message = data as WorkerOptions; final worker = await VfsWorker.create(message); self.postMessage(true.toJS); await worker.start(); } } self.onmessage = (web.MessageEvent event) { handleEvent(event); }.toJS; } ================================================ FILE: sqlite3/hook/build.dart ================================================ import 'dart:io'; import 'package:code_assets/code_assets.dart'; import 'package:hooks/hooks.dart'; import 'package:native_toolchain_c/native_toolchain_c.dart'; import 'package:path/path.dart' as p; import 'package:sqlite3/src/hook/description.dart'; import 'package:sqlite3/src/hook/used_symbols.dart'; void main(List args) async { await build(args, (input, output) async { if (!input.config.buildCodeAssets) { return; } final sqlite = SqliteBinary.forBuild(input); switch (sqlite) { case PrecompiledBinary(): final library = sqlite.resolveLibrary(input.config.code); library.checkSupported(); final downloaded = await sqlite.downloadIntoOutputDirectoryShared( input, output, library, ); output.assets.code.add( CodeAsset( package: package, name: name, linkMode: DynamicLoadingBundled(), file: downloaded.uri, ), ); case CompileSqlite(:final sourceFile, :final defines): // With Flutter on Linux (which already dynamically links SQLite through // its libgtk dependency), we run into issues where loading our SQLite // build causes internal symbols to be resolved against the already // loaded library from the system. // This is terrible and not what we ever want. A proper solution may be // to use namespaces or RTLD_DEEPBIND, but hooks don't support that yet. // An alternative that seems to work is to pass -Bsymbolic-functions to // the linker. // For the full discussion, see https://github.com/dart-lang/native/issues/2724 String? linkerScript; if (input.config.code.targetOS == OS.linux) { linkerScript = input.outputDirectory.resolve('sqlite.map').path; await File(linkerScript).writeAsString(''' { global: ${usedSqliteSymbols.map((symbol) => ' $symbol;').join('\n')} local: *; }; '''); } final library = CBuilder.library( name: 'sqlite3', packageName: 'sqlite3', assetName: name, sources: [sourceFile], includes: [p.dirname(sourceFile)], defines: defines, flags: [ if (input.config.code.targetOS == OS.linux) ...[ // This avoids loading issues on Linux, see comment above. '-Wl,-Bsymbolic', // And since we already have a designated list of symbols to // export, we might as well strip the rest. // TODO: Port this to other targets too. '-Wl,--version-script=$linkerScript', '-ffunction-sections', '-fdata-sections', '-Wl,--gc-sections', ], if (input.config.code.targetOS case OS.iOS || OS.macOS) ...[ '-headerpad_max_install_names', // clang would use the temporary directory passed by // native_toolchain_c otherwise. So this makes improves // reproducibility. '-install_name', '@rpath/libsqlite3.dylib', ], ], libraries: [ if (input.config.code.targetOS == OS.android) // We need to link the math library on Android. 'm', ], ); await library.run(input: input, output: output); case ExternalSqliteBinary(): output.assets.code.add( CodeAsset( package: package, name: name, linkMode: sqlite.resolveLinkMode(input), ), ); } }); } const package = 'sqlite3'; const name = 'src/ffi/libsqlite3.g.dart'; ================================================ FILE: sqlite3/lib/common.dart ================================================ /// Exports common interfaces that are implemented by both the `dart:ffi` and /// the `dart:js` WASM version of this library. /// /// {@category common} /// {@canonicalFor database.CommonDatabase} /// {@canonicalFor statement.CommonPreparedStatement} library; export 'src/constants.dart'; export 'src/database.dart'; export 'src/session.dart'; export 'src/exception.dart'; export 'src/functions.dart'; export 'src/in_memory_vfs.dart' show InMemoryFileSystem; export 'src/jsonb.dart'; export 'src/result_set.dart'; export 'src/sqlite3.dart'; export 'src/statement.dart' show CommonPreparedStatement, StatementParameters, CustomStatementParameter; export 'src/vfs.dart'; ================================================ FILE: sqlite3/lib/sqlite3.dart ================================================ /// Dart bindings to `sqlite3`. /// /// {@category native} /// {@category hook} library; // Hide common base classes that have more specific ffi-APIs. export 'common.dart' hide CommonPreparedStatement, CommonDatabase; export 'src/ffi/api.dart'; ================================================ FILE: sqlite3/lib/src/constants.dart ================================================ // ignore_for_file: constant_identifier_names /// Common result codes, https://www.sqlite.org/rescode.html /// Result Codes /// /// Many SQLite functions return an integer result code from the set shown /// here in order to indicates success or failure. /// /// New error codes may be added in future versions of SQLite. /// /// See also: SQLITE_IOERR_READ | extended result codes, /// sqlite3_vtab_on_conflictstatic const int ) SQLITE_ROLLBACK | result codes. /// {@category common} final class SqlError { /// Successful result static const int SQLITE_OK = 0; /// Generic error static const int SQLITE_ERROR = 1; /// Internal logic error in SQLite static const int SQLITE_INTERNAL = 2; /// Access permission denied static const int SQLITE_PERM = 3; /// Callback routine requested an abort static const int SQLITE_ABORT = 4; /// The database file is locked static const int SQLITE_BUSY = 5; /// A table in the database is locked static const int SQLITE_LOCKED = 6; /// A mallocstatic const int ) failed static const int SQLITE_NOMEM = 7; /// Attempt to write a readonly database static const int SQLITE_READONLY = 8; /// Operation terminated by sqlite3_interruptstatic const int ) static const int SQLITE_INTERRUPT = 9; /// Some kind of disk I/O error occurred static const int SQLITE_IOERR = 10; /// The database disk image is malformed static const int SQLITE_CORRUPT = 11; /// Unknown opcode in sqlite3_file_controlstatic const int ) static const int SQLITE_NOTFOUND = 12; /// Insertion failed because database is full static const int SQLITE_FULL = 13; /// Unable to open the database file static const int SQLITE_CANTOPEN = 14; /// Database lock protocol error static const int SQLITE_PROTOCOL = 15; /// Internal use only static const int SQLITE_EMPTY = 16; /// The database schema changed static const int SQLITE_SCHEMA = 17; /// String or BLOB exceeds size limit static const int SQLITE_TOOBIG = 18; /// Abort due to constraint violation static const int SQLITE_CONSTRAINT = 19; /// Data type mismatch static const int SQLITE_MISMATCH = 20; /// Library used incorrectly static const int SQLITE_MISUSE = 21; /// Uses OS features not supported on host static const int SQLITE_NOLFS = 22; /// Authorization denied static const int SQLITE_AUTH = 23; /// Not used static const int SQLITE_FORMAT = 24; /// 2nd parameter to sqlite3_bind out of range static const int SQLITE_RANGE = 25; /// File opened that is not a database file static const int SQLITE_NOTADB = 26; /// Notifications from sqlite3_logstatic const int ) static const int SQLITE_NOTICE = 27; /// Warnings from sqlite3_logstatic const int ) static const int SQLITE_WARNING = 28; /// sqlite3_stepstatic const int ) has another row ready static const int SQLITE_ROW = 100; /// sqlite3_stepstatic const int ) has finished executing static const int SQLITE_DONE = 101; } /// Extended Result Codes, https://www.sqlite.org/rescode.html /// /// Result codes are signed 32-bit integers. The least significant 8 bits of the result code define a broad category and are called the "primary result code". More significant bits provide more detailed information about the error and are called the "extended result code" /// /// Note that the primary result code is always a part of the extended result code. Given a full 32-bit extended result code, the application can always find the corresponding primary result code merely by extracting the least significant 8 bits of the extended result code. /// /// All extended result codes are also error codes. Hence the terms "extended result code" and "extended error code" are interchangeable. /// {@category common} final class SqlExtendedError { /// The sqlite3_load_extension() interface loads an extension into a single database connection. /// /// The default behavior is for that extension to be automatically unloaded when the database connection closes. However, if the extension entry point returns SQLITE_OK_LOAD_PERMANENTLY instead of SQLITE_OK, then the extension remains loaded into the process address space after the database connection closes. In other words, the xDlClose methods of the sqlite3_vfs object is not called for the extension when the database connection closes. /// /// The SQLITE_OK_LOAD_PERMANENTLY return code is useful to loadable extensions that register new VFSes, for example. static const int SQLITE_OK_LOAD_PERMANENTLY = 256; /// The SQLITE_ERROR_MISSING_COLLSEQ result code means that an SQL statement could not be prepared because a collating sequence named in that SQL statement could not be located. /// /// Sometimes when this error code is encountered, the sqlite3_prepare_v2static const int ) routine will convert the error into SQLITE_ERROR_RETRY and try again to prepare the SQL statement using a different query plan that does not require the use of the unknown collating sequence. static const int SQLITE_ERROR_MISSING_COLLSEQ = 257; /// The SQLITE_BUSY_RECOVERY error code is an extended error code for SQLITE_BUSY that indicates that an operation could not continue because another process is busy recovering a WAL mode database file following a crash. The SQLITE_BUSY_RECOVERY error code only occurs on WAL mode databases. static const int SQLITE_BUSY_RECOVERY = 261; /// The SQLITE_LOCKED_SHAREDCACHE result code indicates that access to an SQLite data record is blocked by another database connection that is using the same record in shared cache mode. /// /// When two or more database connections share the same cache and one of the connections is in the middle of modifying a record in that cache, then other connections are blocked from accessing that data while the modifications are on-going in order to prevent the readers from seeing a corrupt or partially completed change. static const int SQLITE_LOCKED_SHAREDCACHE = 262; /// The SQLITE_READONLY_RECOVERY error code is an extended error code for SQLITE_READONLY. The SQLITE_READONLY_RECOVERY error code indicates that a WAL mode database cannot be opened because the database file needs to be recovered and recovery requires write access but only read access is available. static const int SQLITE_READONLY_RECOVERY = 264; /// The SQLITE_IOERR_READ error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to read from a file on disk. This error might result from a hardware malfunction or because a filesystem came unmounted while the file was open. static const int SQLITE_IOERR_READ = 266; /// The SQLITE_CORRUPT_VTAB error code is an extended error code for SQLITE_CORRUPT used by virtual tables. A virtual table might return SQLITE_CORRUPT_VTAB to indicate that content in the virtual table is corrupt. static const int SQLITE_CORRUPT_VTAB = 267; /// The SQLITE_CANTOPEN_NOTEMPDIR error code is no longer used. static const int SQLITE_CANTOPEN_NOTEMPDIR = 270; /// The SQLITE_CONSTRAINT_CHECK error code is an extended error code for SQLITE_CONSTRAINT indicating that a CHECK constraint failed. static const int SQLITE_CONSTRAINT_CHECK = 275; /// The SQLITE_NOTICE_RECOVER_WAL result code is passed to the callback of sqlite3_logstatic const int ) when a WAL mode database file is recovered. static const int SQLITE_NOTICE_RECOVER_WAL = 283; /// The SQLITE_WARNING_AUTOINDEX result code is passed to the callback of sqlite3_logstatic const int ) whenever automatic indexing is used. This can serve as a warning to application designers that the database might benefit from additional indexes. static const int SQLITE_WARNING_AUTOINDEX = 284; /// The SQLITE_ERROR_RETRY is used internally to provoke sqlite3_prepare_v2static const int ) static const int or one of its sibling routines for creating prepared statements) to try again to prepare a statement that failed with an error on the previous attempt. static const int SQLITE_ERROR_RETRY = 513; /// The SQLITE_ABORT_ROLLBACK error code is an extended error code for SQLITE_ABORT indicating that an SQL statement aborted because the transaction that was active when the SQL statement first started was rolled back. Pending write operations always fail with this error when a rollback occurs. A ROLLBACK will cause a pending read operation to fail only if the schema was changed within the transaction being rolled back. static const int SQLITE_ABORT_ROLLBACK = 516; /// The SQLITE_BUSY_SNAPSHOT error code is an extended error code for SQLITE_BUSY that occurs on WAL mode databases when a database connection tries to promote a read transaction into a write transaction but finds that another database connection has already written to the database and thus invalidated prior reads. /// /// /// The following scenario illustrates how an SQLITE_BUSY_SNAPSHOT error might arise: /// /// Process A starts a read transaction on the database and does one or more SELECT statement. Process A keeps the transaction open. /// /// Process B updates the database, changing values previous read by process A. /// /// Process A now tries to write to the database. But process A's view of the database content is now obsolete because process B has modified the database file after process A read from it. Hence process A gets an SQLITE_BUSY_SNAPSHOT error. static const int SQLITE_BUSY_SNAPSHOT = 517; /// The SQLITE_LOCKED_VTAB result code is not used by the SQLite core, but it is available for use by extensions. Virtual table implementations can return this result code to indicate that they cannot complete the current operation because of locks held by other threads or processes. /// The R-Tree extension returns this result code when an attempt is made to update the R-Tree while another prepared statement is actively reading the R-Tree. /// /// The update cannot proceed because any change to an R-Tree might involve reshuffling and rebalancing of nodes, which would disrupt read cursors, causing some rows to be repeated and other rows to be omitted. static const int SQLITE_LOCKED_VTAB = 518; /// The SQLITE_READONLY_CANTLOCK error code is an extended error code for SQLITE_READONLY. The SQLITE_READONLY_CANTLOCK error code indicates that SQLite is unable to obtain a read lock on a WAL mode database because the shared-memory file associated with that database is read-only. static const int SQLITE_READONLY_CANTLOCK = 520; /// The SQLITE_IOERR_SHORT_READ error code is an extended error code for SQLITE_IOERR indicating that a read attempt in the VFS layer was unable to obtain as many bytes as was requested. This might be due to a truncated file. static const int SQLITE_IOERR_SHORT_READ = 522; /// The SQLITE_CORRUPT_SEQUENCE result code means that the schema of the sqlite_sequence table is corrupt. The sqlite_sequence table is used to help implement the AUTOINCREMENT feature. The sqlite_sequence table should have the following format: /// /// CREATE TABLE sqlite_sequencestatic const int name,seq); /// /// If SQLite discovers that the sqlite_sequence table has any other format, it returns the SQLITE_CORRUPT_SEQUENCE error. static const int SQLITE_CORRUPT_SEQUENCE = 523; /// The SQLITE_CANTOPEN_ISDIR error code is an extended error code for SQLITE_CANTOPEN indicating that a file open operation failed because the file is really a directory. static const int SQLITE_CANTOPEN_ISDIR = 526; /// The SQLITE_CONSTRAINT_COMMITHOOK error code is an extended error code for SQLITE_CONSTRAINT indicating that a commit hook callback returned non-zero that thus caused the SQL statement to be rolled back. static const int SQLITE_CONSTRAINT_COMMITHOOK = 531; /// The SQLITE_NOTICE_RECOVER_ROLLBACK result code is passed to the callback of sqlite3_logstatic const int ) when a hot journal is rolled back. static const int SQLITE_NOTICE_RECOVER_ROLLBACK = 539; /// The SQLITE_ERROR_SNAPSHOT result code might be returned when attempting to start a read transaction on an historical version of the database by using the sqlite3_snapshot_openstatic const int ) interface. /// /// If the historical snapshot is no longer available, then the read transaction will fail with the SQLITE_ERROR_SNAPSHOT. This error code is only possible if SQLite is compiled with -DSQLITE_ENABLE_SNAPSHOT. static const int SQLITE_ERROR_SNAPSHOT = 769; /// The SQLITE_BUSY_TIMEOUT error code indicates that a blocking Posix advisory file lock request in the VFS layer failed due to a timeout. Blocking Posix advisory locks are only available as a proprietary SQLite extension and even then are only supported if SQLite is compiled with the SQLITE_EANBLE_SETLK_TIMEOUT compile-time option. static const int SQLITE_BUSY_TIMEOUT = 773; /// The SQLITE_READONLY_ROLLBACK error code is an extended error code for SQLITE_READONLY. The SQLITE_READONLY_ROLLBACK error code indicates that a database cannot be opened because it has a hot journal that needs to be rolled back but cannot because the database is readonly. static const int SQLITE_READONLY_ROLLBACK = 776; /// The SQLITE_IOERR_WRITE error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to write into a file on disk. /// /// This error might result from a hardware malfunction or because a filesystem came unmounted while the file was open. This error should not occur if the filesystem is full as there is a separate error code static const int SQLITE_FULL) for that purpose. static const int SQLITE_IOERR_WRITE = 778; /// The SQLITE_CORRUPT_INDEX result code means that SQLite detected an entry is or was missing from an index. This is a special case of the SQLITE_CORRUPT error code that suggests that the problem might be resolved by running the REINDEX command, assuming no other problems exist elsewhere in the database file. static const int SQLITE_CORRUPT_INDEX = 779; /// The SQLITE_CANTOPEN_FULLPATH error code is an extended error code for SQLITE_CANTOPEN indicating that a file open operation failed because the operating system was unable to convert the filename into a full pathname. static const int SQLITE_CANTOPEN_FULLPATH = 782; /// The SQLITE_CONSTRAINT_FOREIGNKEY error code is an extended error code for SQLITE_CONSTRAINT indicating that a foreign key constraint failed. static const int SQLITE_CONSTRAINT_FOREIGNKEY = 787; /// The SQLITE_READONLY_DBMOVED error code is an extended error code for SQLITE_READONLY. /// /// The SQLITE_READONLY_DBMOVED error code indicates that a database cannot be modified because the database file has been moved since it was opened, and so any attempt to modify the database might result in database corruption if the processes crashes because the rollback journal would not be correctly named. static const int SQLITE_READONLY_DBMOVED = 1032; /// The SQLITE_IOERR_FSYNC error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to flush previously written content out of OS and/or disk-control buffers and into persistent storage. /// /// In other words, this code indicates a problem with the fsyncstatic const int ) system call in unix or the FlushFileBuffersstatic const int ) system call in windows. static const int SQLITE_IOERR_FSYNC = 1034; /// The SQLITE_CANTOPEN_CONVPATH error code is an extended error code for SQLITE_CANTOPEN used only by Cygwin VFS and indicating that the cygwin_conv_pathstatic const int ) system call failed while trying to open a file. See also: SQLITE_IOERR_CONVPATH static const int SQLITE_CANTOPEN_CONVPATH = 1038; /// The SQLITE_CONSTRAINT_FUNCTION error code is not currently used by the SQLite core. However, this error code is available for use by extension functions. static const int SQLITE_CONSTRAINT_FUNCTION = 1043; /// The SQLITE_READONLY_CANTINIT result code originates in the xShmMap method of a VFS to indicate that the shared memory region used by WAL mode exists buts its content is unreliable and unusable by the current process since the current process does not have write permission on the shared memory region. /// /// static const int The shared memory region for WAL mode is normally a file with a "-wal" suffix that is mmapped into the process space. If the current process does not have write permission on that file, then it cannot write into shared memory.) /// /// Higher level logic within SQLite will normally intercept the error code and create a temporary in-memory shared memory region so that the current process can at least read the content of the database. This result code should not reach the application interface layer. static const int SQLITE_READONLY_CANTINIT = 1288; /// The SQLITE_IOERR_DIR_FSYNC error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to invoke fsyncstatic const int ) on a directory. /// /// The unix VFS attempts to fsyncstatic const int ) directories after creating or deleting certain files to ensure that those files will still appear in the filesystem following a power loss or system crash. /// /// This error code indicates a problem attempting to perform that fsyncstatic const int ). static const int SQLITE_IOERR_DIR_FSYNC = 1290; /// The SQLITE_CANTOPEN_DIRTYWAL result code is not used at this time. static const int SQLITE_CANTOPEN_DIRTYWAL = 1294; /// The SQLITE_CONSTRAINT_NOTNULL error code is an extended error code for SQLITE_CONSTRAINT indicating that a NOT NULL constraint failed. static const int SQLITE_CONSTRAINT_NOTNULL = 1299; /// The SQLITE_READONLY_DIRECTORY result code indicates that the database is read-only because process does not have permission to create a journal file in the same directory as the database and the creation of a journal file is a prerequisite for writing. static const int SQLITE_READONLY_DIRECTORY = 1544; /// The SQLITE_IOERR_TRUNCATE error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to truncate a file to a smaller size. static const int SQLITE_IOERR_TRUNCATE = 1546; /// The SQLITE_CANTOPEN_SYMLINK result code is returned by the sqlite3_openstatic const int ) interface and its siblings when the SQLITE_OPEN_NOFOLLOW flag is used and the database file is a symbolic link. static const int SQLITE_CANTOPEN_SYMLINK = 1550; /// The SQLITE_CONSTRAINT_PRIMARYKEY error code is an extended error code for SQLITE_CONSTRAINT indicating that a PRIMARY KEY constraint failed. static const int SQLITE_CONSTRAINT_PRIMARYKEY = 1555; /// The SQLITE_IOERR_FSTAT error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to invoke fstatstatic const int ) static const int or the equivalent) on a file in order to determine information such as the file size or access permissions. static const int SQLITE_IOERR_FSTAT = 1802; /// The SQLITE_CONSTRAINT_TRIGGER error code is an extended error code for SQLITE_CONSTRAINT indicating that a RAISE function within a trigger fired, causing the SQL statement to abort. static const int SQLITE_CONSTRAINT_TRIGGER = 1811; /// The SQLITE_IOERR_UNLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within xUnlock method on the sqlite3_io_methods object. static const int SQLITE_IOERR_UNLOCK = 2058; /// The SQLITE_CONSTRAINT_UNIQUE error code is an extended error code for SQLITE_CONSTRAINT indicating that a UNIQUE constraint failed. static const int SQLITE_CONSTRAINT_UNIQUE = 2067; /// The SQLITE_IOERR_UNLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within xLock method on the sqlite3_io_methods object while trying to obtain a read lock. static const int SQLITE_IOERR_RDLOCK = 2314; /// The SQLITE_CONSTRAINT_VTAB error code is not currently used by the SQLite core. However, this error code is available for use by application-defined virtual tables. static const int SQLITE_CONSTRAINT_VTAB = 2323; /// The SQLITE_IOERR_UNLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within xDelete method on the sqlite3_vfs object. static const int SQLITE_IOERR_DELETE = 2570; /// The SQLITE_CONSTRAINT_ROWID error code is an extended error code for SQLITE_CONSTRAINT indicating that a rowid is not unique. static const int SQLITE_CONSTRAINT_ROWID = 2579; /// The SQLITE_IOERR_BLOCKED error code is no longer used. static const int SQLITE_IOERR_BLOCKED = 2826; /// The SQLITE_CONSTRAINT_PINNED error code is an extended error code for SQLITE_CONSTRAINT indicating that an UPDATE trigger attempted do delete the row that was being updated in the middle of the update. static const int SQLITE_CONSTRAINT_PINNED = 2835; /// The SQLITE_IOERR_NOMEM error code is sometimes returned by the VFS layer to indicate that an operation could not be completed due to the inability to allocate sufficient memory. This error code is normally converted into SQLITE_NOMEM by the higher layers of SQLite before being returned to the application. static const int SQLITE_IOERR_NOMEM = 3082; /// The SQLITE_IOERR_ACCESS error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xAccess method on the sqlite3_vfs object. static const int SQLITE_IOERR_ACCESS = 3338; /// The SQLITE_IOERR_CHECKRESERVEDLOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xCheckReservedLock method on the sqlite3_io_methods object. static const int SQLITE_IOERR_CHECKRESERVEDLOCK = 3594; /// The SQLITE_IOERR_LOCK error code is an extended error code for SQLITE_IOERR indicating an I/O error in the advisory file locking logic. Usually an SQLITE_IOERR_LOCK error indicates a problem obtaining a PENDING lock. However it can also indicate miscellaneous locking errors on some of the specialized VFSes used on Macs. static const int SQLITE_IOERR_LOCK = 3850; /// The SQLITE_IOERR_ACCESS error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xClose method on the sqlite3_io_methods object. static const int SQLITE_IOERR_CLOSE = 4106; /// The SQLITE_IOERR_DIR_CLOSE error code is no longer used. static const int SQLITE_IOERR_DIR_CLOSE = 4362; /// The SQLITE_IOERR_SHMOPEN error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xShmMap method on the sqlite3_io_methods object while trying to open a new shared memory segment. static const int SQLITE_IOERR_SHMOPEN = 4618; /// The SQLITE_IOERR_SHMSIZE error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xShmMap method on the sqlite3_io_methods object while trying to enlarge a "shm" file as part of WAL mode transaction processing. This error may indicate that the underlying filesystem volume is out of space. static const int SQLITE_IOERR_SHMSIZE = 4874; /// The SQLITE_IOERR_SHMLOCK error code is no longer used. static const int SQLITE_IOERR_SHMLOCK = 5310; /// The SQLITE_IOERR_SHMMAP error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xShmMap method on the sqlite3_io_methods object while trying to map a shared memory segment into the process address space. static const int SQLITE_IOERR_SHMMAP = 5386; /// The SQLITE_IOERR_SEEK error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xRead or xWrite methods on the sqlite3_io_methods object while trying to seek a file descriptor to the beginning point of the file where the read or write is to occur. static const int SQLITE_IOERR_SEEK = 5642; /// The SQLITE_IOERR_DELETE_NOENT error code is an extended error code for SQLITE_IOERR indicating that the xDelete method on the sqlite3_vfs object failed because the file being deleted does not exist. static const int SQLITE_IOERR_DELETE_NOENT = 5898; /// The SQLITE_IOERR_MMAP error code is an extended error code for SQLITE_IOERR indicating an I/O error within the xFetch or xUnfetch methods on the sqlite3_io_methods object while trying to map or unmap part of the database file into the process address space. static const int SQLITE_IOERR_MMAP = 6154; /// The SQLITE_IOERR_GETTEMPPATH error code is an extended error code for SQLITE_IOERR indicating that the VFS is unable to determine a suitable directory in which to place temporary files. static const int SQLITE_IOERR_GETTEMPPATH = 6410; /// The SQLITE_IOERR_CONVPATH error code is an extended error code for SQLITE_IOERR used only by Cygwin VFS and indicating that the cygwin_conv_pathstatic const int ) system call failed. See also: SQLITE_CANTOPEN_CONVPATH static const int SQLITE_IOERR_CONVPATH = 6666; /// The SQLITE_IOERR_VNODE error code is a code reserved for use by extensions. It is not used by the SQLite core. static const int SQLITE_IOERR_VNODE = 6922; /// The SQLITE_IOERR_AUTH error code is a code reserved for use by extensions. It is not used by the SQLite core. static const int SQLITE_IOERR_AUTH = 7178; /// The SQLITE_IOERR_BEGIN_ATOMIC error code indicates that the underlying operating system reported and error on the SQLITE_FCNTL_BEGIN_ATOMIC_WRITE file-control. This only comes up when SQLITE_ENABLE_ATOMIC_WRITE is enabled and the database is hosted on a filesystem that supports atomic writes. static const int SQLITE_IOERR_BEGIN_ATOMIC = 7434; /// The SQLITE_IOERR_COMMIT_ATOMIC error code indicates that the underlying operating system reported and error on the SQLITE_FCNTL_COMMIT_ATOMIC_WRITE file-control. This only comes up when SQLITE_ENABLE_ATOMIC_WRITE is enabled and the database is hosted on a filesystem that supports atomic writes. static const int SQLITE_IOERR_COMMIT_ATOMIC = 7690; /// The SQLITE_IOERR_ROLLBACK_ATOMIC error code indicates that the underlying operating system reported and error on the SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE file-control. This only comes up when SQLITE_ENABLE_ATOMIC_WRITE is enabled and the database is hosted on a filesystem that supports atomic writes. static const int SQLITE_IOERR_ROLLBACK_ATOMIC = 7946; /// The SQLITE_IOERR_DATA error code is an extended error code for SQLITE_IOERR used only by checksum VFS shim to indicate that the checksum on a page of the database file is incorrect. static const int SQLITE_IOERR_DATA = 8202; } /// Flags for file open operations, https://www.sqlite.org/c3ref/c_open_autoproxy.html /// Flags For File Open Operations /// /// These bit values are intended for use in the /// 3rd parameter to the [sqlite3_open_v2static const int )] interface and /// in the 4th parameter to the `xopen` method. /// {@category common} final class SqlFlag { /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_READONLY = 0x00000001; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_READWRITE = 0x00000002; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_CREATE = 0x00000004; /// VFS only static const int SQLITE_OPEN_DELETEONCLOSE = 0x00000008; /// VFS only static const int SQLITE_OPEN_EXCLUSIVE = 0x00000010; /// VFS only static const int SQLITE_OPEN_AUTOPROXY = 0x00000020; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_URI = 0x00000040; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_MEMORY = 0x00000080; /// VFS only static const int SQLITE_OPEN_MAIN_DB = 0x00000100; /// VFS only static const int SQLITE_OPEN_TEMP_DB = 0x00000200; /// VFS only static const int SQLITE_OPEN_TRANSIENT_DB = 0x00000400; /// VFS only static const int SQLITE_OPEN_MAIN_JOURNAL = 0x00000800; /// VFS only static const int SQLITE_OPEN_TEMP_JOURNAL = 0x00001000; /// VFS only static const int SQLITE_OPEN_SUBJOURNAL = 0x00002000; /// VFS only static const int SQLITE_OPEN_MASTER_JOURNAL = 0x00004000; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_NOMUTEX = 0x00008000; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_FULLMUTEX = 0x00010000; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_SHAREDCACHE = 0x00020000; /// Ok for sqlite3_open_v2static const int ) static const int SQLITE_OPEN_PRIVATECACHE = 0x00040000; /// VFS only static const int SQLITE_OPEN_WAL = 0x00080000; } /// Prepare flags, https://www.sqlite.org/c3ref/c_prepare_normalize.html /// /// {@category common} final class SqlPrepareFlag { ///The SQLITE_PREPARE_PERSISTENT flag is a hint to the query planner that the prepared statement will be retained for a long time and probably reused many times. /// Without this flag, sqlite3_prepare_v3static const int ) and sqlite3_prepare16_v3static const int ) assume that the prepared statement will be used just once or at most a few times and then destroyed using sqlite3_finalizestatic const int ) relatively soon. /// The current implementation acts on this hint by avoiding the use of lookaside memory so as not to deplete the limited store of lookaside memory. ///Future versions of SQLite may act on this hint differently. static const int SQLITE_PREPARE_PERSISTENT = 0x01; ///The SQLITE_PREPARE_NORMALIZE flag is a no-op. This flag used to be required for any prepared statement that wanted to use the sqlite3_normalized_sqlstatic const int ) interface. /// However, the sqlite3_normalized_sqlstatic const int ) interface is now available to all prepared statements, regardless of whether or not they use this flag. static const int SQLITE_PREPARE_NORMALIZE = 0x02; ///the SQL compiler to return an error static const int error code SQLITE_ERROR) if the statement uses any virtual tables static const int SQLITE_PREPARE_NO_VTAB = 0x04; } /// Datatypes, https://sqlite.org/c3ref/c_blob.html /// /// {@category common} final class SqlType { static const int SQLITE_INTEGER = 1; static const int SQLITE_FLOAT = 2; static const int SQLITE_TEXT = 3; static const int SQLITE_BLOB = 4; static const int SQLITE_NULL = 5; } /// Text Encodings, https://www.sqlite.org/c3ref/c_any.html /// These constant define integer codes that represent the various text encodings supported by SQLite. /// /// {@category common} final class SqlTextEncoding { ///IMP: R-37514-35566 static const int SQLITE_UTF8 = 1; ///IMP: R-03371-37637 static const int SQLITE_UTF16LE = 2; ///IMP: R-51971-34154 static const int SQLITE_UTF16BE = 3; ///Use native byte order static const int SQLITE_UTF16 = 4; ///Deprecated static const int SQLITE_ANY = 5; ///qlite3_create_collation only static const int SQLITE_UTF16_ALIGNED = 8; } /// File lock levels, https://www.sqlite.org/c3ref/c_lock_exclusive.html /// /// {@category common} final class SqlFileLockingLevels { static const SQLITE_LOCK_NONE = 0; static const SQLITE_LOCK_SHARED = 1; static const SQLITE_LOCK_RESERVED = 2; static const SQLITE_LOCK_PENDING = 3; static const SQLITE_LOCK_EXCLUSIVE = 4; } /// Special destructors, https://www.sqlite.org/c3ref/c_static.html /// /// {@category common} final class SqlSpecialDestructor { /// it means that the content pointer is constant and will never change, It does not need to be destroyed static const SQLITE_STATIC = 0; ///The SQLITE_TRANSIENT value means that the content will likely change in the near future /// and that SQLite should make its own private copy of the content before returning. static const SQLITE_TRANSIENT = -1; } /// Function flags, https://www.sqlite.org/c3ref/c_deterministic.html /// /// {@category common} final class SqlFunctionFlag { /// The SQLITE_DETERMINISTIC flag means that the new function always gives the same output when the input parameters are the same static const SQLITE_DETERMINISTIC = 0x000000800; ///he SQLITE_DIRECTONLY flags is a security feature which is recommended for all application-defined SQL functions, /// and especially for functions that have side-effects or that could potentially leak sensitive information. static const SQLITE_DIRECTONLY = 0x000080000; ///The SQLITE_SUBTYPE flag indicates to SQLite that a function may call sqlite3_value_subtypestatic const int ) to inspect the sub-types of its arguments. static const SQLITE_SUBTYPE = 0x000100000; /// The SQLITE_RESULT_SUBTYPE flag indicates to SQLite that a function might call sqlite3_result_subtype to cause a sub-type to be associated with its result. static const SQLITE_RESULT_SUBTYPE = 0x001000000; ///The SQLITE_INNOCUOUS flag means that the function is unlikely to cause problems even if misused. static const SQLITE_INNOCUOUS = 0x000200000; } final class SqlDeviceCharacteristics { static const SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN = 0x00000800; } const SQLITE_DELETE = 9; const SQLITE_INSERT = 18; const SQLITE_UPDATE = 23; final bigIntMinValue64 = BigInt.parse('-9223372036854775808'); final bigIntMaxValue64 = BigInt.parse('9223372036854775807'); // Connection config options https://www.sqlite.org/c3ref/c_dbconfig_defensive.html const SQLITE_DBCONFIG_DQS_DML = 1013; const SQLITE_DBCONFIG_DQS_DDL = 1014; ================================================ FILE: sqlite3/lib/src/database.dart ================================================ import 'functions.dart'; import 'result_set.dart'; import 'statement.dart'; import 'constants.dart'; /// An opened sqlite3 database. /// /// {@category common} abstract class CommonDatabase { /// Configuration for the database connection. /// /// __Note__: On the web, the [DatabaseConfig] class only works when using a /// version of `sqlite3.wasm` shipped with version 2.1.0 of the `sqlite3` /// Dart package. In previous WASM builds, all setters on the config will /// throw an exception. DatabaseConfig get config; /// The application defined version of this database. abstract int userVersion; /// The row id of the most recent successful insert statement on this database /// connection. /// /// This does not consider `WITHOUT ROWID` tables and won't reliably detect /// inserts made by triggers. For details, see the [sqlite3 docs](https://sqlite.org/c3ref/last_insert_rowid.html). int get lastInsertRowId; /// The amount of rows inserted, updated or deleted by the last `INSERT`, /// `UPDATE` or `DELETE` statement, respectively. /// /// For more details, see the [sqlite3 docs](https://sqlite.org/c3ref/changes.html). int get updatedRows; /// The amount of rows affected by the last `INSERT`, `UPDATE` or `DELETE` /// statement. @Deprecated('Use updatedRows instead') int getUpdatedRows(); /// An async stream of data changes happening on this database. /// /// Listening to this stream will register an "update hook" on the native /// database. Each update that sqlite3 reports through that hook will then /// be added to the stream. /// /// Note that the stream reports updates _asynchronously_, e.g. one event /// loop iteration after sqlite reports them. /// Also, be aware that not every update to the database will be reported. /// In particular, updates to internal system tables like `sqlite_sequence` /// are not reported. Further, updates to `WITHOUT ROWID` tables or truncating /// deletes (without a `WHERE` clause) will not report updates either. /// /// See also: /// - [Data Change Notification Callbacks](https://www.sqlite.org/c3ref/update_hook.html) /// - [updatesSync], a synchronous stream. Stream get updates; /// A _synchronous_ stream of data changes happening on this database. /// /// This stream behaves similarly to [updates], except that listeners are /// invoked synchronously (before the update completes). /// /// The purpose of this stream is to avoid a large internal buffer when a /// transaction updates a large amount of rows - instead, the updates can be /// handled one-by-one with this. /// /// It is crucial that listeners on this stream don't modify the database. Stream get updatesSync; /// The [VoidPredicate] that is used to filter out transactions before commiting. /// /// This is run before every commit, i.e. before the end of an explicit /// transaction and before the end of an implicit transactions created by /// an insert / update / delete operation. /// /// If the filter returns `false`, the commit is converted into a rollback. /// /// The function should not do anything that modifies the database connection, /// e.g. run SQL statements, prepare statements or step. /// /// See also: /// - [Commit Hooks](https://www.sqlite.org/c3ref/commit_hook.html) VoidPredicate? get commitFilter; set commitFilter(VoidPredicate? commitFilter); /// An async stream that fires after each commit. /// /// Listening to this stream will register a "commit hook" on the native /// database. Each commit that sqlite3 reports through that hook will then /// be added to the stream. /// /// Note that the stream reports updates _asynchronously_, e.g. one event /// loop iteration after sqlite reports them. /// /// Also note this works in conjunction with `commitFilter`. If the filter /// function is not null and returns `false`, the commit will not occur and /// this stream will not fire. /// /// See also: /// - [Commit Hooks](https://www.sqlite.org/c3ref/commit_hook.html) Stream get commits; /// An async stream that fires after each rollback. /// /// Listening to this stream will register a "rollback hook" on the native /// database. Each rollback that sqlite3 reports through that hook will then /// be added to the stream. /// /// Note that the stream reports updates _asynchronously_, e.g. one event /// loop iteration after sqlite reports them. /// /// See also: /// - [Commit Hooks](https://www.sqlite.org/c3ref/commit_hook.html) Stream get rollbacks; /// Executes the [sql] statement(s) with the provided [parameters], ignoring /// any rows returned by the statement(s). /// /// For the types supported in [parameters], see [StatementParameters]. /// To view rows returned by a statement, run it with [select]. Statements /// that aren't `SELECT`s in SQL but still return rows (such as updates with /// a `RETURNING` clause) can still be safely executed with [select]. /// /// When no [parameters] are passed to [execute], [sql] is allowed to contain /// multiple SQL statements (separated by a semicolon). Those statements will /// be executed in order, but [execute] will not start a transaction for them /// automatically. If any statement fails, that exception will be thrown and /// subsequent statements will not be executed. void execute(String sql, [List parameters = const []]); /// Prepares the [sql] statement and runs it with the provided [parameters], /// returning all rows returned by the statement. /// /// For the types supported in [parameters], see [StatementParameters]. /// The statement doesn't have to be an SQL `SELECT` statement. Any statement /// that returns rows (e.g. writes with a `RETURNING` clause) can be executed /// with [select]. /// /// This method fully runs the statement, buffers all rows and then returns /// them at once in a [ResultSet]. This package also supports stepping through /// a result set row-by-row. To do that, first prepare the statement with /// [prepare] and then call [CommonPreparedStatement.iterateWith]. ResultSet select(String sql, [List parameters = const []]); /// Compiles the [sql] statement to execute it later. /// /// The [persistent] flag can be used as a hint to the query planner that the /// statement will be retained for a long time and probably reused many times. /// Without this flag, sqlite assumes that the prepared statement will be used /// just once or at most a few times before [CommonPreparedStatement.close] /// is called. /// If [vtab] is disabled (it defaults to `true`) and the statement references /// a virtual table, [prepare] throws an exception. /// For more information on the optional parameters, see /// [the sqlite documentation](https://www.sqlite.org/c3ref/c_prepare_normalize.html) /// If [checkNoTail] is enabled (it defaults to `false`) and the [sql] string /// contains trailing data, an exception will be thrown and the statement will /// not be executed. CommonPreparedStatement prepare( String sql, { bool persistent = false, bool vtab = true, bool checkNoTail = false, }); /// Compiles multiple statements from [sql] to be executed later. /// /// Unlike [prepare], which can only compile a single statement, /// [prepareMultiple] will return multiple statements if the source [sql] /// string contains more than one statement. /// For example, calling [prepareMultiple] with `SELECT 1; SELECT 2;` will /// return `2` prepared statements. /// /// For the [persistent] and [vtab] parameters, see [prepare]. List prepareMultiple( String sql, { bool persistent = false, bool vtab = true, }); /// Creates a collation that can be used from sql queries sent against /// this database. /// /// The [name] defines the (case insensitive) name of the collating in /// sql. The utf8 encoding of [name] must not exceed a length of 255 /// bytes. /// /// The [function] can be any Dart closure, it's not restricted to top-level /// functions supported by `Pointer.fromFunction`. For more details on how /// the sql function behaves, see the documentation on [CollatingFunction]. /// As it is a compare function, the [function] must return an integer value, and /// receives two string parameters (**A** & **B**). [function] will return 0 /// if **A** and **B** /// are considered equals. A negative value is returned if **A** is less than **B**, /// but a positive if **A** is greater than **B**. /// /// /// /// For more information, see https://www.sqlite.org/c3ref/create_collation.html. void createCollation({ required String name, required CollatingFunction function, }); /// Creates a scalar function that can be called from sql queries sent against /// this database. /// /// The [functionName] defines the (case insensitive) name of the function in /// sql. The utf8 encoding of [functionName] must not exceed a length of 255 /// bytes. /// /// {@template sqlite3_function_flags} /// The [argumentCount] parameter can be used to declare how many arguments a /// function supports. If you need a function that can use multiple argument /// counts, you can call [createFunction] multiple times. /// The [deterministic] flag (defaults to `false`) can be set to indicate that /// the function always gives the same output when the input parameters are /// the same. This is a requirement for functions that are used in generated /// columns or partial indexes. It also allows the query planner for optimize /// by factoring invocations out of inner loops. /// The [directOnly] flag (defaults to `true`) is a security measure. When /// enabled, the function may only be invoked form top-level SQL, and cannot /// be used in VIEWs or TRIGGERs nor in schema structures (such as CHECK, /// DEFAULT, etc.). When [directOnly] is set to `false`, the function might /// be invoked when opening a malicious database file. sqlite3 recommends /// this flag for all application-defined functions, especially if they have /// side-effects or if they could potentially leak sensitive information. /// /// The [subtype] flag (defaults to `false`) indicates that the function can /// receive subtypes in arguments (meaning that [SqliteArguments.subtypeOf] /// can be used) and that the function can return values with subtypes (by /// returning an [SubtypedValue]). /// {@endtemplate} /// /// The [function] can be any Dart closure, it's not restricted to top-level /// functions supported by `Pointer.fromFunction`. For more details on how /// the sql function behaves, see the documentation on [ScalarFunction]. /// /// To register aggregate or window functions, see [createAggregateFunction]. /// /// For more information, see https://www.sqlite.org/appfunc.html. void createFunction({ required String functionName, required ScalarFunction function, AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(), bool deterministic = false, bool directOnly = true, bool subtype = false, }); /// Creates an application-defined aggregate function that can be used from /// sql queries sent against this database. /// /// {@macro sqlite3_function_flags} /// /// For more details on how to write aggregate functions (including an /// example), see the documentation of [AggregateFunction]. /// /// If the given [function] implements the [WindowFunction] interface, a /// window function is registered internally. Window functions support being /// used in `OVER` expressions in sqlite3. For more information on writing /// window functions in Dart, see the [WindowFunction] class. For details /// on user-defined window functions in general, see sqlite3's documentation: /// https://www.sqlite.org/windowfunctions.html#udfwinfunc void createAggregateFunction({ required String functionName, required AggregateFunction function, AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(), bool deterministic = false, bool directOnly = true, bool subtype = false, }); /// Installs a function to invoke whenever an attempt is made to access a /// database table when another thread or process has the table locked. /// /// The argument passed to the [handler] is the amount of times it has /// previously been invoked for the same locking event. /// The handler should return `true` if SQLite should make another attempt to /// access the database, or `false` if SQLite should stop making attempts and /// return `SQLITE_BUSY`. /// /// Note that using the `busy_timeout` pragma will overwrite this handler. /// /// See also: https://www.sqlite.org/c3ref/busy_handler.html set busyHandler(bool Function(int count)? handler); /// Checks whether the connection is in autocommit mode. The connection is in /// autocommit by default, except when inside a transaction. /// /// For details, see https://www.sqlite.org/c3ref/get_autocommit.html bool get autocommit; /// Closes this database and releases associated resources. @Deprecated('Call close() instead') void dispose(); /// Closes this database and releases associated resources. /// /// On native platforms, a native finalizer will also close the connection /// automatically. On the web, finalizers are less reliable. For this reason, /// closing databases explicitly is still recommended. void close(); } /// The kind of an [SqliteUpdate] received through a [CommonDatabase.updates] /// stream. /// /// {@category common} enum SqliteUpdateKind { // Note: Changing the order of these fields is a breaking change, as they're // used in the sqlite3_web protocol. /// Notification for a new row being inserted into the database. insert(SQLITE_INSERT), /// Notification for a row being updated. update(SQLITE_UPDATE), /// Notification for a row being deleted. delete(SQLITE_DELETE); /// The raw code to identify this update kind. final int code; const SqliteUpdateKind(this.code); /// Attempts to extract a [SqliteUpdateKind] from the raw [flags]. static SqliteUpdateKind? fromCode(int code) { return switch (code) { SQLITE_INSERT => insert, SQLITE_UPDATE => update, SQLITE_DELETE => delete, _ => null, }; } } /// A data change notification from sqlite. /// /// {@category common} final class SqliteUpdate { /// The kind of write being reported. final SqliteUpdateKind kind; /// The table on which the update has happened. final String tableName; /// The id of the inserted, modified or deleted row. final int rowId; SqliteUpdate(this.kind, this.tableName, this.rowId); @override int get hashCode => Object.hash(kind, tableName, rowId); @override bool operator ==(Object other) { return other is SqliteUpdate && other.kind == kind && other.tableName == tableName && other.rowId == rowId; } @override String toString() { return 'SqliteUpdate: $kind on $tableName, rowid = $rowId'; } } /// Make configuration changes to the database connection. /// /// More information: https://www.sqlite.org/c3ref/db_config.html /// Available options are documented in https://www.sqlite.org/c3ref/c_dbconfig_defensive.html /// /// {@category common} abstract base class DatabaseConfig { /// Update configuration that accepts an int value. /// Would throw when the internal C call returns a non-zero value. void setIntConfig(int key, int configValue); /// Enable or disable SQLite support for double quotes as string literals. /// /// More information: https://www.sqlite.org/compile.html#dqs set doubleQuotedStringLiterals(bool value) { final dqsValue = value ? 1 : 0; setIntConfig(SQLITE_DBCONFIG_DQS_DML, dqsValue); setIntConfig(SQLITE_DBCONFIG_DQS_DDL, dqsValue); } } ================================================ FILE: sqlite3/lib/src/exception.dart ================================================ import 'dart:typed_data'; /// Thrown by sqlite methods. /// /// This is the only exception thrown by `package:sqlite3`. Additionally, errors /// might be thrown on api misuse. /// /// {@category common} final class SqliteException implements Exception { /// An error message indicating what went wrong. final String message; /// An optional explanation providing more detail on what went wrong. final String? explanation; /// SQLite extended result code. /// /// As defined in https://sqlite.org/rescode.html, it represents an error /// code, providing some idea of the cause of the failure. final int extendedResultCode; /// SQLite primary result code. /// /// As defined in https://sqlite.org/rescode.html, it represents an error /// code, providing some idea of the cause of the failure. int get resultCode => extendedResultCode & 0xFF; /// If this error is related to a syntex error in SQL, contains the byte /// offset of the token associated with the error. final int? offset; /// An informal description of what the `sqlite3` package was attempting to do /// when the exception occured, e.g. "preparing a statement", /// "opening the database". final String? operation; /// The SQL statement triggering this exception. /// /// This may be null when no prior statement is known. final String? causingStatement; /// If this exception has a [causingStatement], this list contains the /// parameters used to run that statement. final List? parametersToStatement; SqliteException({ required this.extendedResultCode, required this.message, this.explanation, this.causingStatement, this.parametersToStatement, this.operation, this.offset, }); @override String toString() { final buffer = StringBuffer('SqliteException(') ..write(extendedResultCode) ..write('): ') ..write(operation == null ? '' : 'while $operation, ') ..write(message); if (explanation != null) { buffer ..write(', ') ..write(explanation); } if (causingStatement != null) { buffer ..writeln() ..write(' Causing statement') ..write(offset != null ? ' (at position $offset): ' : ': ') ..write(causingStatement); if (parametersToStatement != null) { final params = parametersToStatement! .map((e) { if (e is Uint8List) { return 'blob (${e.length} bytes)'; } else { return e.toString(); } }) .join(', '); buffer.write(', parameters: $params'); } } return buffer.toString(); } } ================================================ FILE: sqlite3/lib/src/ffi/api.dart ================================================ import 'dart:ffi'; import '../database.dart'; import '../sqlite3.dart'; import '../statement.dart'; import 'libsqlite3.g.dart' as libsqlite3; import 'implementation.dart'; /// Provides access to `sqlite3` functions, such as opening new databases. /// /// {@category native} const Sqlite3 sqlite3 = FfiSqlite3(); /// Provides access to `sqlite3` functions, such as opening new databases. /// /// {@category native} abstract interface class Sqlite3 implements CommonSqlite3 { @override Database open( String filename, { String? vfs, OpenMode mode = OpenMode.readWriteCreate, bool uri = false, bool? mutex, }); /// Creates a [Database] from an opened sqlite3 database connection. /// /// The [database] must be a pointer towards an open sqlite3 database /// connection [handle](https://www.sqlite.org/c3ref/sqlite3.html). /// /// When [borrowed] is set (it defaults to `false`), the returned [Database] /// connection acts as a view of the underlying `sqlite3*` pointer. The /// library will not attach a native finalizer calling `sqlite3_close_v2`, and /// calling [Database.close] in it will only prevent further interactions from /// Dart. Database fromPointer(Pointer database, {bool borrowed = false}); @override Database openInMemory({String? vfs}); /// Opens a new in-memory database and copies another database into it /// https://www.sqlite.org/c3ref/backup_finish.html Database copyIntoMemory(Database restoreFrom); /// Loads an extensions through the `sqlite3_auto_extension` mechanism. /// /// For a more in-depth discussion, including links to an example, see the /// documentation for [SqliteExtension]. void ensureExtensionLoaded(SqliteExtension extension); /// Whether the option, specified by its name, was defined at compile-time. /// /// The `SQLITE_` prefix may be omitted from the option [name]. /// /// See also: https://sqlite.org/c3ref/compileoption_get.html bool usedCompileOption(String name); /// An iterable over the list of options that were defined at compile time. /// /// See also: https://sqlite.org/c3ref/compileoption_get.html Iterable get compileOptions; /// A function pointer to `sqlite3_close_v2`. /// /// This typically shouldn't be used directly since this library attaches /// native finalizers to databases by default, but can be used for custom /// connection management if necessary. /// /// See also: https://sqlite.org/c3ref/close.html @Deprecated("Import 'package:sqlite3/unstable/ffi_bindings.dart' instead") static Pointer)>> get sqliteCloseV2 => libsqlite3.addresses.sqlite3_close_v2.cast(); } /// Information used to load an extension through `sqlite3_auto_extension`, /// exposed by [Sqlite3.ensureExtensionLoaded]. /// /// Note that this feature is __not__ a direct wrapper around sqlite3's dynamic /// extension loading mechanism. In sqlite3 builds created through /// `sqlite3_flutter_libs`, dynamic extensions are omitted from sqlite3 due to /// security concerns. /// /// However, if you want to manually load extensions, you can do that with a /// [SqliteExtension] where the entrypoint is already known. This puts the /// responsibility of dynamically loading code onto you. /// /// For an example of how to write and load extensions, see /// - this C file: https://github.com/simolus3/sqlite3.dart/blob/main/sqlite3/test/ffi/test_extension.c /// - this Dart test loading it: https://github.com/simolus3/sqlite3.dart/blob/a9a379494c6b8d58a3c31cf04fe16e83b49130f1/sqlite3/test/ffi/sqlite3_test.dart#L35 /// - Or, alternatively, this Flutter example: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3/example/custom_extension /// /// {@category native} abstract interface class SqliteExtension { /// A sqlite extension having the given [extensionEntrypoint] as a function /// pointer. /// /// For the exact signature of [extensionEntrypoint], see /// [sqlite3_auto_extension](https://www.sqlite.org/c3ref/auto_extension.html). factory SqliteExtension(Pointer extensionEntrypoint) { return SqliteExtensionImpl(() => extensionEntrypoint); } /// A sqlite extension from another library with a given symbol as an /// entrypoint. factory SqliteExtension.inLibrary(DynamicLibrary library, String symbol) { return SqliteExtensionImpl(() => library.lookup(symbol)); } } /// An opened sqlite3 database with `dart:ffi`. /// /// See [CommonDatabase] for the methods that are available on both the FFI and /// the WebAssembly implementation. /// /// {@category native} abstract class Database extends CommonDatabase { /// The native database connection handle from sqlite. /// /// This returns a pointer towards the opaque sqlite3 structure as defined /// [here](https://www.sqlite.org/c3ref/sqlite3.html). /// /// Note that the connection is still owned by this Dart object, and will be /// closed once it becomes unreachable. In other words, the returned handle is /// a logical reference to this object. /// To transfer ownership of the connection out of this object, use [leak] /// instead. Pointer get handle; /// Like [handle], this returns the native `sqlite3*` pointer wrapped by this /// instance. /// /// Additionally, this also detaches native finalizers that would close the /// connection once this object becomes unreachable. /// /// This is an advanced and low-level API that can be used to transfer /// ownership of connections originally opened in Dart to native code. Pointer leak(); // override for more specific subtype @override PreparedStatement prepare( String sql, { bool persistent = false, bool vtab = true, bool checkNoTail = false, }); @override List prepareMultiple( String sql, { bool persistent = false, bool vtab = true, }); /// Creates a Dart [PreparedStatement] instance from the underlying /// `sqlite3_stmt` pointer. /// /// When [borrowed] is set (it defaults to `false`), the returned [Database] /// connection acts as a view of the underlying `sqlite3_stmt*` pointer. The /// library will not attach a native finalizer calling `sqlite3_finalize`, and /// calling [PreparedStatement.close] in it will only prevent further /// interactions from Dart. PreparedStatement statementFromPointer({ required Pointer statement, required String sql, bool borrowed = false, }); /// Create a backup of the current database (this) into another database /// ([toDatabase]) on memory or disk. /// /// The returned stream returns a rough estimate on the progress of the /// backup, as a fraction between `0` and `1`. No progress is reported if /// either this or [toDatabase] is an in-memory database. /// /// To simply await the backup operation as a future, call [Stream.drain] on /// the returned stream. /// /// [nPage] is the number of pages backed-up in each backup step. /// A larger value increase speed of backup, but will cause other connections to wait /// longer to aquire locks on the source and destination databases. A value of -1 /// can be used to backup the entire database in a single step. /// See https://www.sqlite.org/c3ref/backup_finish.html#sqlite3backupstep for details. /// /// See https://www.sqlite.org/c3ref/backup_finish.html Stream backup(Database toDatabase, {int nPage = 5}); } /// A prepared statement. /// /// {@category native} abstract class PreparedStatement implements CommonPreparedStatement { /// The underlying `sqlite3_stmt` pointer. /// /// Obtains the raw [statement](https://www.sqlite.org/c3ref/stmt.html) from /// the sqlite3 C-api that this [PreparedStatement] wraps. /// /// Note that the statement is still owned by this Dart object, and will be /// finalized once it becomes unreachable. In other words, the returned handle /// is a logical reference to this object. /// To transfer ownership of the statement out of this object, use [leak] /// instead. Pointer get handle; /// Like [handle], this returns the native `sqlite3_stmt*` pointer wrapped by /// this instance. /// /// Additionally, this also detaches native finalizers that would close the /// statement once this object becomes unreachable. /// /// This is an advanced and low-level API that can be used to transfer /// ownership of statements originally opened in Dart to native code. Pointer leak(); } ================================================ FILE: sqlite3/lib/src/ffi/bindings.dart ================================================ // ignore_for_file: non_constant_identifier_names import 'dart:collection'; import 'dart:convert'; import 'dart:ffi'; import 'dart:typed_data'; import 'package:ffi/ffi.dart' as ffi; import '../constants.dart'; import '../exception.dart'; import '../functions.dart'; import '../implementation/bindings.dart'; import '../implementation/exception.dart'; import '../vfs.dart'; import 'libsqlite3.g.dart'; import 'libsqlite3.g.dart' as libsqlite3; import 'memory.dart'; /// The only instance of [FfiBindings]. /// /// Since bindings are using native assets, these bindings don't hold any state /// (unlike the WASM bindings, which require a `WebAssembly.Module` reference). const ffiBindings = FfiBindings._(); // sqlite3_prepare_v3 was added in 3.20.0 const int _firstVersionForV3 = 3020000; // sqlite3_error_offset was added in 3.38.0 const int _firstVersionForErrorOffset = 3038000; final supportsPrepareV3 = sqlite3_libversion_number() >= _firstVersionForV3; final supportsErrorOffset = sqlite3_libversion_number() >= _firstVersionForErrorOffset; final databaseFinalizer = NativeFinalizer(addresses.sqlite3_close_v2.cast()); final statementFinalizer = NativeFinalizer(addresses.sqlite3_finalize.cast()); final sessionDeleteFinalizer = NativeFinalizer( addresses.sqlite3session_delete.cast(), ); final changesetFinalizeFinalizer = NativeFinalizer( addresses.sqlite3changeset_finalize.cast(), ); final hasColumnMetadata = ffiBindings.sqlite3_compileoption_used('ENABLE_COLUMN_METADATA') != 0; final _vfsPointers = Expando<_RegisteredVfs>(); Pointer _globalTempDirectory = nullPtr(); final class FfiBindings implements RawSqliteBindings { const FfiBindings._(); @override RawSqliteSession sqlite3session_create(RawSqliteDatabase db, String name) { final dbImpl = db as FfiDatabase; final namePtr = Utf8Utils.allocateZeroTerminated(name); final sessionPtr = allocate>(); final result = libsqlite3.sqlite3session_create( dbImpl.db, namePtr, sessionPtr, ); namePtr.free(); final sessionValue = sessionPtr.value; sessionPtr.free(); if (result != 0) { throw createExceptionOutsideOfDatabase(this, result); } return FfiSession(sessionValue); } @override int sqlite3changeset_apply( RawSqliteDatabase database, Uint8List changeset, int Function(String tableName)? filter, int Function(int eConflict, RawChangesetIterator iter) conflict, ) { final dbImpl = database as FfiDatabase; final changesetPtr = allocateBytes(changeset); final ctxPtr = dbImpl.db.cast(); final NativeCallable, Pointer)>? filterImpl = filter == null ? null : (NativeCallable.isolateLocal((Pointer ctx, Pointer zTab) { final tbl = zTab.cast().readString(); return filter(tbl); }, exceptionalReturn: 1)..keepIsolateAlive = true); final NativeCallable< Int Function(Pointer, Int, Pointer) > conflictImpl = (NativeCallable.isolateLocal(( Pointer ctx, int eConflict, Pointer p, ) { final iter = FfiChangesetIterator(p, ownsIterator: false); return conflict(eConflict, iter); }, exceptionalReturn: 1)..keepIsolateAlive = true); final result = libsqlite3.sqlite3changeset_apply( dbImpl.db, changeset.length, changesetPtr.cast(), filterImpl?.nativeFunction ?? nullPtr(), conflictImpl.nativeFunction, ctxPtr, ); changesetPtr.free(); filterImpl?.close(); conflictImpl.close(); return result; } @override RawChangesetIterator sqlite3changeset_start(Uint8List changeset) { final (asPtr, region) = allocateBytesWithFinalizer(changeset); final iteratorOut = allocate>(); final result = libsqlite3.sqlite3changeset_start( iteratorOut, changeset.length, asPtr.cast(), ); final iterator = iteratorOut.value; iteratorOut.free(); if (result != SqlError.SQLITE_OK) { asPtr.free(); throw createExceptionOutsideOfDatabase(this, result); } return FfiChangesetIterator( iterator, ownsIterator: true, ownedChangesetBytes: region, ); } @override Uint8List sqlite3changeset_invert(Uint8List changeset) { final sessionPtr = allocateBytes(changeset).cast(); final outSize = allocate(); final outChangeset = allocate>(); try { final result = libsqlite3.sqlite3changeset_invert( changeset.length, sessionPtr, outSize, outChangeset, ); if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(this, result); } final size = outSize.value; final inverted = outChangeset.value.cast().asTypedList( size, finalizer: libsqlite3.addresses.sqlite3_free.cast(), ); return inverted; } finally { sessionPtr.free(); outSize.free(); outChangeset.free(); } } @override String? get sqlite3_temp_directory { return libsqlite3.sqlite3_temp_directory.readNullableString(); } @override set sqlite3_temp_directory(String? value) { final newPtr = value != null ? Utf8Utils.allocateZeroTerminated(value) : nullPtr(); if (!_globalTempDirectory.isNullPointer && _globalTempDirectory != newPtr) { // The previous value was set in Dart too, free that now to avoid leaking // memory. There's still a possibility for leaks if sqlite3_temp_directory // is called in different isolates, but we can't safely avoid that. allocate.free(_globalTempDirectory); } _globalTempDirectory = newPtr; libsqlite3.sqlite3_temp_directory = newPtr; } @override int sqlite3_initialize() { return libsqlite3.sqlite3_initialize(); } @override String sqlite3_errstr(int extendedErrorCode) { return libsqlite3.sqlite3_errstr(extendedErrorCode).readString(); } @override String sqlite3_libversion() { return libsqlite3.sqlite3_libversion().readString(); } @override int sqlite3_libversion_number() { return libsqlite3.sqlite3_libversion_number(); } @override SqliteResult sqlite3_open_v2( String name, int flags, String? zVfs, ) { final namePtr = Utf8Utils.allocateZeroTerminated(name); final outDb = allocate>(); final vfsPtr = zVfs == null ? nullPtr() : Utf8Utils.allocateZeroTerminated(zVfs); final resultCode = libsqlite3.sqlite3_open_v2( namePtr, outDb, flags, vfsPtr, ); final result = ( resultCode: resultCode, result: outDb.value.isNullPointer ? null : FfiDatabase(outDb.value, borrowed: false), ); namePtr.free(); outDb.free(); if (zVfs != null) vfsPtr.free(); return result; } @override String sqlite3_sourceid() { return libsqlite3.sqlite3_sourceid().readString(); } @override void registerVirtualFileSystem(VirtualFileSystem vfs, int makeDefault) { final ptr = _RegisteredVfs.allocate(vfs); final result = libsqlite3.sqlite3_vfs_register(ptr._vfsPtr, makeDefault); if (result != SqlError.SQLITE_OK) { ptr.deallocate(); throw SqliteException( extendedResultCode: result, message: 'Could not register VFS', ); } _vfsPointers[vfs] = ptr; } @override void unregisterVirtualFileSystem(VirtualFileSystem vfs) { final ptr = _vfsPointers[vfs]; if (ptr == null) { throw StateError('vfs has not been registered'); } final result = libsqlite3.sqlite3_vfs_unregister(ptr._vfsPtr); if (result != SqlError.SQLITE_OK) { throw SqliteException( extendedResultCode: result, message: 'Could not unregister VFS', ); } ptr.deallocate(); } String? sqlite3_compileoption_get(int n) { final ptr = libsqlite3.sqlite3_compileoption_get(n); return ptr.readNullableString(); } int sqlite3_compileoption_used(String optName) { final namePtr = Utf8Utils.allocateZeroTerminated(optName); final result = libsqlite3.sqlite3_compileoption_used(namePtr); namePtr.free(); return result; } } final class _RegisteredVfs { static final Map _files = {}; static final Map _vfs = {}; static int _vfsCounter = 0; static int _fileCounter = 0; final Pointer _vfsPtr; final Pointer _name; _RegisteredVfs(this._vfsPtr, this._name); factory _RegisteredVfs.allocate(VirtualFileSystem dartVfs) { final name = Utf8Utils.allocateZeroTerminated(dartVfs.name).cast(); final id = _vfsCounter++; final vfs = ffi.calloc(); vfs.ref ..iVersion = 2 // We don't support syscalls yet ..szOsFile = sizeOf<_DartFile>() ..mxPathname = 1024 ..zName = name ..pAppData = Pointer.fromAddress(id) ..xOpen = Pointer.fromFunction(_xOpen, SqlError.SQLITE_ERROR) ..xDelete = Pointer.fromFunction(_xDelete, SqlError.SQLITE_ERROR) ..xAccess = Pointer.fromFunction(_xAccess, SqlError.SQLITE_ERROR) ..xFullPathname = Pointer.fromFunction( _xFullPathname, SqlError.SQLITE_ERROR, ) ..xDlOpen = nullPtr() ..xDlError = nullPtr() ..xDlSym = nullPtr() ..xDlClose = nullPtr() ..xRandomness = Pointer.fromFunction(_xRandomness, SqlError.SQLITE_ERROR) ..xSleep = Pointer.fromFunction(_xSleep, SqlError.SQLITE_ERROR) ..xCurrentTime = nullPtr() ..xGetLastError = nullPtr() ..xCurrentTimeInt64 = Pointer.fromFunction( _xCurrentTime64, SqlError.SQLITE_ERROR, ); _vfs[id] = dartVfs; return _RegisteredVfs(vfs, name); } void deallocate() { _vfs.remove(_vfsPtr.ref.pAppData.address); ffi.calloc.free(_vfsPtr); _name.free(); } static int _runVfs( Pointer vfs, void Function(VirtualFileSystem) body, ) { final dartVfs = _vfs[vfs.ref.pAppData.address]!; try { body(dartVfs); return SqlError.SQLITE_OK; } on VfsException catch (e) { return e.returnCode; } on Object { return SqlError.SQLITE_ERROR; } } static int _xOpen( Pointer vfsPtr, Pointer zName, Pointer file, int flags, Pointer pOutFlags, ) { return _runVfs(vfsPtr, (vfs) { final fileName = Sqlite3Filename( zName.isNullPointer ? null : zName.cast().readString(), ); final dartFilePtr = file.cast<_DartFile>(); final (file: dartFile, :outFlags) = vfs.xOpen(fileName, flags); final fileId = _fileCounter++; _files[fileId] = dartFile; final ioMethods = ffi.calloc(); ioMethods.ref ..iVersion = 1 ..xClose = Pointer.fromFunction(_xClose, SqlError.SQLITE_ERROR) ..xRead = Pointer.fromFunction(_xRead, SqlError.SQLITE_ERROR) ..xWrite = Pointer.fromFunction(_xWrite, SqlError.SQLITE_ERROR) ..xTruncate = Pointer.fromFunction(_xTruncate, SqlError.SQLITE_ERROR) ..xSync = Pointer.fromFunction(_xSync, SqlError.SQLITE_ERROR) ..xFileSize = Pointer.fromFunction(_xFileSize, SqlError.SQLITE_ERROR) ..xLock = Pointer.fromFunction(_xLock, SqlError.SQLITE_ERROR) ..xUnlock = Pointer.fromFunction(_xUnlock, SqlError.SQLITE_ERROR) ..xCheckReservedLock = Pointer.fromFunction( _xCheckReservedLock, SqlError.SQLITE_ERROR, ) ..xFileControl = Pointer.fromFunction( _xFileControl, SqlError.SQLITE_NOTFOUND, ) ..xSectorSize = Pointer.fromFunction(_xSectorSize, 4096) ..xDeviceCharacteristics = Pointer.fromFunction( _xDeviveCharacteristics, 0, ); if (!pOutFlags.isNullPointer) { pOutFlags.value = outFlags; } dartFilePtr.ref ..pMethods = ioMethods ..dartFileId = fileId; }); } static int _xDelete( Pointer vfsPtr, Pointer zName, int syncDir, ) { return _runVfs( vfsPtr, (vfs) => vfs.xDelete(zName.cast().readString(), syncDir), ); } static int _xAccess( Pointer vfsPtr, Pointer zName, int flags, Pointer pResOut, ) { return _runVfs(vfsPtr, (vfs) { if (!pResOut.isNullPointer) { pResOut.value = vfs.xAccess( zName.cast().readString(), flags, ); } }); } static int _xFullPathname( Pointer vfsPtr, Pointer zName, int nOut, Pointer zOut, ) { return _runVfs(vfsPtr, (vfs) { final bytes = utf8.encode( vfs.xFullPathName(zName.cast().readString()), ); if (bytes.length >= nOut) { throw VfsException(SqlError.SQLITE_TOOBIG); } final target = zOut.cast().asTypedList(nOut); target.setAll(0, bytes); target[bytes.length] = 0; }); } static int _xRandomness( Pointer vfsPtr, int nByte, Pointer zOut, ) { return _runVfs(vfsPtr, (vfs) { vfs.xRandomness(zOut.cast().asTypedList(nByte)); }); } static int _xSleep(Pointer vfsPtr, int microseconds) { return _runVfs( vfsPtr, (vfs) => vfs.xSleep(Duration(microseconds: microseconds)), ); } static int _xCurrentTime64(Pointer vfsPtr, Pointer out) { return _runVfs(vfsPtr, (vfs) { if (!out.isNullPointer) { // https://github.com/sqlite/sqlite/blob/8ee75f7c3ac1456b8d941781857be27bfddb57d6/src/os_unix.c#L6757 const unixEpoch = 24405875 * 8640000; out.value = unixEpoch + vfs.xCurrentTime().millisecondsSinceEpoch; } }); } static int _runFile( Pointer file, void Function(VirtualFileSystemFile) body, ) { final id = file.cast<_DartFile>().ref.dartFileId; final dartFile = _files[id]!; try { body(dartFile); return SqlError.SQLITE_OK; } on VfsException catch (e) { return e.returnCode; } on Object { return SqlError.SQLITE_ERROR; } } static int _xClose(Pointer ptr) { return _runFile(ptr, (file) { file.xClose(); final dartFile = ptr.cast<_DartFile>().ref; _files.remove(dartFile.dartFileId); ffi.calloc.free(dartFile.pMethods); }); } static int _xRead( Pointer ptr, Pointer target, int amount, int offset, ) { return _runFile(ptr, (file) { final buffer = target.cast().asTypedList(amount); file.xRead(buffer, offset); }); } static int _xWrite( Pointer ptr, Pointer target, int amount, int offset, ) { return _runFile(ptr, (file) { final buffer = target.cast().asTypedList(amount); file.xWrite(buffer, offset); }); } static int _xTruncate(Pointer ptr, int size) { return _runFile(ptr, (file) => file.xTruncate(size)); } static int _xSync(Pointer ptr, int flags) { return _runFile(ptr, (file) => file.xSync(flags)); } static int _xFileSize(Pointer ptr, Pointer pSize) { return _runFile(ptr, (file) { if (!pSize.isNullPointer) { pSize.value = file.xFileSize(); } }); } static int _xLock(Pointer ptr, int flags) { return _runFile(ptr, (file) => file.xLock(flags)); } static int _xUnlock(Pointer ptr, int flags) { return _runFile(ptr, (file) => file.xUnlock(flags)); } static int _xCheckReservedLock( Pointer ptr, Pointer pResOut, ) { return _runFile(ptr, (file) { if (!pResOut.isNullPointer) { pResOut.value = file.xCheckReservedLock(); } }); } static int _xFileControl( Pointer ptr, int op, Pointer pArg, ) { // We don't currently support filecontrol operations in the VFS. return SqlError.SQLITE_NOTFOUND; } static int _xSectorSize(Pointer ptr) { // We don't currently support custom sector sizes. return 4096; } static int _xDeviveCharacteristics(Pointer ptr) { return _runFile(ptr, (file) => file.xDeviceCharacteristics); } } final class _DartFile extends Struct { // extends sqlite3_file: external Pointer pMethods; // additional definitions @Int64() external int dartFileId; } final class FfiSession implements RawSqliteSession, Finalizable { final Pointer session; final Object detachToken = Object(); FfiSession(this.session) { sessionDeleteFinalizer.attach(this, session.cast(), detach: detachToken); } @override int sqlite3session_attach([String? name]) { final namePtr = name == null ? nullPtr() : Utf8Utils.allocateZeroTerminated(name); final result = libsqlite3.sqlite3session_attach(session, namePtr); if (name != null) { namePtr.free(); } return result; } Uint8List _handleChangesetResult(int result, int size, Pointer buffer) { if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(ffiBindings, result); } return buffer.cast().asTypedList( size, finalizer: libsqlite3.addresses.sqlite3_free, ); } @override Uint8List sqlite3session_changeset() { final outSize = allocate(); final outChangeset = allocate>(); final result = libsqlite3.sqlite3session_changeset( session, outSize, outChangeset, ); final size = outSize.value; final changeset = outChangeset.value; outSize.free(); outChangeset.free(); return _handleChangesetResult(result, size, changeset); } @override Uint8List sqlite3session_patchset() { final outSize = allocate(); final outPatchset = allocate>(); final result = libsqlite3.sqlite3session_patchset( session, outSize, outPatchset, ); final size = outSize.value; final patchset = outPatchset.value; outSize.free(); outPatchset.free(); return _handleChangesetResult(result, size, patchset); } @override void sqlite3session_delete() { sessionDeleteFinalizer.detach(detachToken); libsqlite3.sqlite3session_delete(session); } @override int sqlite3session_diff(String fromDb, String table) { final fromDbPtr = Utf8Utils.allocateZeroTerminated(fromDb); final tablePtr = Utf8Utils.allocateZeroTerminated(table); final result = libsqlite3.sqlite3session_diff( session, fromDbPtr, tablePtr, nullPtr(), ); fromDbPtr.free(); tablePtr.free(); return result; } @override int sqlite3session_enable(int enable) { return libsqlite3.sqlite3session_enable(session, enable); } @override int sqlite3session_indirect(int indirect) { return libsqlite3.sqlite3session_indirect(session, indirect); } @override int sqlite3session_isempty() { return libsqlite3.sqlite3session_isempty(session); } } final class FfiChangesetIterator implements RawChangesetIterator, Finalizable { final Pointer iterator; final Object detachToken = Object(); /// An optional [Uint8List] backing the changeset we're iterating on with a /// native finalizer attached to it. /// /// This ensures that, as the iterator is GCed, so is the changeset. final Uint8List? ownedChangesetBytes; FfiChangesetIterator( this.iterator, { bool ownsIterator = true, this.ownedChangesetBytes, }) { if (ownsIterator) { changesetFinalizeFinalizer.attach( this, iterator.cast(), detach: detachToken, ); } } @override int sqlite3changeset_finalize() { changesetFinalizeFinalizer.detach(detachToken); final result = libsqlite3.sqlite3changeset_finalize(iterator); return result; } @override SqliteResult sqlite3changeset_new(int columnNumber) { final outValue = allocate>(); final result = libsqlite3.sqlite3changeset_new( iterator, columnNumber, outValue, ); final value = outValue.value; outValue.free(); return ( resultCode: result, result: value.isNullPointer ? null : FfiValue(value), ); } @override int sqlite3changeset_next() { return libsqlite3.sqlite3changeset_next(iterator); } @override SqliteResult sqlite3changeset_old(int columnNumber) { final outValue = allocate>(); final result = libsqlite3.sqlite3changeset_old( iterator, columnNumber, outValue, ); final value = outValue.value; outValue.free(); return ( resultCode: result, result: value.isNullPointer ? null : FfiValue(value), ); } @override RawChangeSetOp sqlite3changeset_op() { final tablePtr = allocate>(); final columnCountPtr = allocate(); final typePtr = allocate(); final indirectPtr = allocate(); final result = libsqlite3.sqlite3changeset_op( iterator, tablePtr, columnCountPtr, typePtr, indirectPtr, ); final tableValue = tablePtr.value; final columnCountValue = columnCountPtr.value; final typeValue = typePtr.value; final indirectValue = indirectPtr.value; tablePtr.free(); columnCountPtr.free(); typePtr.free(); indirectPtr.free(); if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(ffiBindings, result); } final table = tableValue.readString(); return RawChangeSetOp( tableName: table, columnCount: columnCountValue, operation: typeValue, indirect: indirectValue, ); } } /// For user-defined functions, SQLite hooks, or virtual file systems, we /// register function pointers as [NativeCallable]s. /// /// To avoid leaking resources, we should [NativeCallable.close] those once /// they're no longer used. SQLite provides the `xDestroy` callback for this. /// For a long time, this package used an additional callable for `xDestroy` /// that closed the original callables and itself. /// /// After migrating to native finalizers however, this approach stopped working. /// Because native finalizers can run as the Dart isolate is shutting down, we /// can't invoke Dart code anymore. There is no good way to close callables from /// C (https://dartbug.com/61887), so we can't use `xDestroy` callbacks from /// SQLite. /// /// Instead, we: /// /// - Manually close callables when the database is closed in Dart. /// - Use (regular, non-native) finalizers to asynchronously close callbacks /// for databases that haven't been closed manually. final class _FunctionFinalizers { final List _callables = []; void closeAll() { for (final callable in _callables) { callable.close(); } } static final Finalizer<_FunctionFinalizers> finalizer = Finalizer( (f) => f.closeAll(), ); } final class FfiDatabase implements RawSqliteDatabase, Finalizable { final Pointer db; final _FunctionFinalizers _functions = _FunctionFinalizers(); final Object _detachToken = Object(); NativeCallable<_UpdateHook>? _installedUpdateHook; NativeCallable<_CommitHook>? _installedCommitHook; NativeCallable<_RollbackHook>? _installedRollbackHook; FfiDatabase(this.db, {required bool borrowed}) { if (!borrowed) { // This object owns the `sqlite3` connection, so close it once the object // is GCed. databaseFinalizer.attach(this, db.cast(), detach: _detachToken); _FunctionFinalizers.finalizer.attach( this, _functions, detach: _detachToken, ); } } @override int sqlite3_close_v2() { final rc = libsqlite3.sqlite3_close_v2(db); _functions.closeAll(); _FunctionFinalizers.finalizer.detach(_detachToken); detachFinalizer(); return rc; } void detachFinalizer() { databaseFinalizer.detach(_detachToken); } @override String sqlite3_errmsg() { return libsqlite3.sqlite3_errmsg(db).readString(); } @override int sqlite3_extended_errcode() { return libsqlite3.sqlite3_extended_errcode(db); } @override int sqlite3_error_offset() { if (supportsErrorOffset) { return libsqlite3.sqlite3_error_offset(db); } else { return -1; } } @override void sqlite3_extended_result_codes(int onoff) { libsqlite3.sqlite3_extended_result_codes(db, onoff); } @override int sqlite3_changes() => libsqlite3.sqlite3_changes(db); @override int sqlite3_exec(String sql) { final sqlPtr = Utf8Utils.allocateZeroTerminated(sql); final result = libsqlite3.sqlite3_exec( db, sqlPtr, nullPtr(), nullPtr(), nullPtr(), ); sqlPtr.free(); return result; } @override int sqlite3_last_insert_rowid() { return libsqlite3.sqlite3_last_insert_rowid(db); } @override int sqlite3_create_collation_v2({ required Uint8List collationName, required int eTextRep, required RawCollation collation, }) { final name = allocateBytes(collationName, additionalLength: 1); final compare = collation.toNative(_functions); final result = libsqlite3.sqlite3_create_collation_v2( db, name.cast(), eTextRep, nullPtr(), compare.nativeFunction, nullPtr(), ); name.free(); return result; } @override int sqlite3_create_window_function({ required Uint8List functionName, required int nArg, required int eTextRep, required RawXStep xStep, required RawXFinal xFinal, required RawXFinal xValue, required RawXStep xInverse, }) { final functionNamePtr = allocateBytes(functionName, additionalLength: 1); final step = xStep.toNative(_functions); final $final = xFinal.toNative(clean: true, finalizers: _functions); final value = xValue.toNative(clean: false, finalizers: _functions); final inverse = xInverse.toNative(_functions); final result = libsqlite3.sqlite3_create_window_function( db, functionNamePtr.cast(), nArg, eTextRep, nullPtr(), step.nativeFunction, $final.nativeFunction, value.nativeFunction, inverse.nativeFunction, nullPtr(), ); functionNamePtr.free(); return result; } @override int sqlite3_create_function_v2({ required Uint8List functionName, required int nArg, required int eTextRep, RawXFunc? xFunc, RawXStep? xStep, RawXFinal? xFinal, }) { final functionNamePtr = allocateBytes(functionName, additionalLength: 1); final func = xFunc?.toNative(_functions); final step = xStep?.toNative(_functions); final $final = xFinal?.toNative(clean: true, finalizers: _functions); final result = libsqlite3.sqlite3_create_function_v2( db, functionNamePtr.cast(), nArg, eTextRep, nullPtr(), func?.nativeFunction ?? nullPtr(), step?.nativeFunction ?? nullPtr(), $final?.nativeFunction ?? nullPtr(), nullPtr(), ); functionNamePtr.free(); return result; } @override void sqlite3_update_hook(RawUpdateHook? hook) { final previous = _installedUpdateHook; if (hook == null) { _installedUpdateHook = null; libsqlite3.sqlite3_update_hook(db, nullPtr(), nullPtr()); } else { final native = _installedUpdateHook = hook.toNative(_functions); libsqlite3.sqlite3_update_hook(db, native.nativeFunction, nullPtr()); } previous?.close(); } @override void sqlite3_commit_hook(RawCommitHook? hook) { final previous = _installedCommitHook; if (hook == null) { _installedCommitHook = null; libsqlite3.sqlite3_commit_hook(db, nullPtr(), nullPtr()); } else { final native = _installedCommitHook = hook.toNative(_functions); libsqlite3.sqlite3_commit_hook(db, native.nativeFunction, nullPtr()); } previous?.close(); } @override void sqlite3_rollback_hook(RawRollbackHook? hook) { final previous = _installedRollbackHook; if (hook == null) { libsqlite3.sqlite3_rollback_hook(db, nullPtr(), nullPtr()); } else { final native = _installedRollbackHook = hook.toNative(_functions); libsqlite3.sqlite3_rollback_hook(db, native.nativeFunction, nullPtr()); } previous?.close(); } @override int sqlite3_db_config(int op, int value) { final result = libsqlite3.sqlite3_db_config(db, op, value, nullPtr()); return result; } @override int sqlite3_get_autocommit() { return libsqlite3.sqlite3_get_autocommit(db); } @override int sqlite3_busy_handler(int Function(int)? callback) { if (callback == null) { return libsqlite3.sqlite3_busy_handler(db, nullPtr(), nullPtr()); } else { final callable = NativeCallable, Int)>.isolateLocal(( Pointer _, int amount, ) { return callback(amount); }, exceptionalReturn: 0) ..keepIsolateAlive = false ..closeIn(_functions); return libsqlite3.sqlite3_busy_handler( db, callable.nativeFunction, nullPtr(), ); } } @override RawStatementCompiler newCompiler(List utf8EncodedSql) { return FfiStatementCompiler(this, allocateBytes(utf8EncodedSql)); } } final class FfiStatementCompiler implements RawStatementCompiler { final FfiDatabase database; final Pointer sql; final Pointer> stmtOut = allocate(); final Pointer> pzTail = allocate(); FfiStatementCompiler(this.database, this.sql); @override void close() { sql.free(); stmtOut.free(); pzTail.free(); } @override int get endOffset => pzTail.value.address - sql.address; @override SqliteResult sqlite3_prepare( int byteOffset, int length, int prepFlag, ) { final int result; if (supportsPrepareV3) { result = libsqlite3.sqlite3_prepare_v3( database.db, (sql + byteOffset).cast(), length, prepFlag, stmtOut, pzTail, ); } else { assert( prepFlag == 0, 'Used custom preparation flags, but the loaded sqlite library does ' 'not support prepare_v3', ); result = libsqlite3.sqlite3_prepare_v2( database.db, (sql + byteOffset).cast(), length, stmtOut, pzTail, ); } final stmt = stmtOut.value; final libraryStatement = stmt.isNullPointer ? null : FfiStatement(stmt, borrowed: false); return (resultCode: result, result: libraryStatement); } } final class FfiStatement implements RawSqliteStatement, Finalizable { final Pointer stmt; final Object _detachToken = Object(); FfiStatement(this.stmt, {required bool borrowed}) { if (!borrowed) { // This object owns the `sqlite_stmt` pointer, so make sure to dispose it // when the object is GCed. statementFinalizer.attach(this, stmt.cast(), detach: _detachToken); } } void detachFinalizer() { statementFinalizer.detach(_detachToken); } @override int sqlite3_bind_blob64(int index, List value) { final ptr = allocateBytes(value); return libsqlite3.sqlite3_bind_blob64( stmt, index, ptr.cast(), value.length, allocate.nativeFree, ); } @override int sqlite3_bind_double(int index, double value) { return libsqlite3.sqlite3_bind_double(stmt, index, value); } @override int sqlite3_bind_int64(int index, int value) { return libsqlite3.sqlite3_bind_int64(stmt, index, value); } @override int sqlite3_bind_int64BigInt(int index, BigInt value) { return libsqlite3.sqlite3_bind_int64(stmt, index, value.toInt()); } @override int sqlite3_bind_null(int index) { return libsqlite3.sqlite3_bind_null(stmt, index); } @override int sqlite3_bind_parameter_count() { return libsqlite3.sqlite3_bind_parameter_count(stmt); } @override int sqlite3_stmt_isexplain() { return libsqlite3.sqlite3_stmt_isexplain(stmt); } @override int sqlite3_stmt_readonly() { return libsqlite3.sqlite3_stmt_readonly(stmt); } @override int sqlite3_bind_parameter_index(String name) { final ptr = Utf8Utils.allocateZeroTerminated(name); try { return libsqlite3.sqlite3_bind_parameter_index(stmt, ptr); } finally { ptr.free(); } } @override int sqlite3_bind_text(int index, String value) { final bytes = utf8.encode(value); final ptr = allocateBytes(bytes); return libsqlite3.sqlite3_bind_text( stmt, index, ptr.cast(), bytes.length, allocate.nativeFree, ); } @override Uint8List sqlite3_column_bytes(int index) { final length = libsqlite3.sqlite3_column_bytes(stmt, index); if (length == 0) { // sqlite3_column_blob returns a null pointer for non-null blobs with // a length of 0. Note that we can distinguish this from a proper null // by checking the type (which isn't SQLITE_NULL) return Uint8List(0); } return libsqlite3.sqlite3_column_blob(stmt, index).copyRange(length); } @override int sqlite3_column_count() { return libsqlite3.sqlite3_column_count(stmt); } @override double sqlite3_column_double(int index) { return libsqlite3.sqlite3_column_double(stmt, index); } @override int sqlite3_column_int64(int index) { return libsqlite3.sqlite3_column_int64(stmt, index); } @override BigInt sqlite3_column_int64OrBigInt(int index) { return BigInt.from(libsqlite3.sqlite3_column_int64(stmt, index)); } @override String sqlite3_column_name(int index) { return libsqlite3.sqlite3_column_name(stmt, index).readString(); } @override String? sqlite3_column_table_name(int index) { return libsqlite3 .sqlite3_column_table_name(stmt, index) .readNullableString(); } @override String sqlite3_column_text(int index) { final length = libsqlite3.sqlite3_column_bytes(stmt, index); return libsqlite3.sqlite3_column_text(stmt, index).readString(length); } @override int sqlite3_column_type(int index) { return libsqlite3.sqlite3_column_type(stmt, index); } @override void sqlite3_finalize() { libsqlite3.sqlite3_finalize(stmt); detachFinalizer(); } @override void sqlite3_reset() { libsqlite3.sqlite3_reset(stmt); } @override int sqlite3_step() { return libsqlite3.sqlite3_step(stmt); } @override bool get supportsReadingTableNameForColumn => hasColumnMetadata; } final class FfiValue implements RawSqliteValue { final Pointer value; FfiValue(this.value) : assert(!value.isNullPointer); @override Uint8List sqlite3_value_blob() { final byteLength = libsqlite3.sqlite3_value_bytes(value); return libsqlite3.sqlite3_value_blob(value).copyRange(byteLength); } @override double sqlite3_value_double() { return libsqlite3.sqlite3_value_double(value); } @override int sqlite3_value_int64() { return libsqlite3.sqlite3_value_int64(value); } @override String sqlite3_value_text() { final byteLength = libsqlite3.sqlite3_value_bytes(value); return utf8.decode( libsqlite3.sqlite3_value_text(value).copyRange(byteLength), ); } @override int sqlite3_value_type() { return libsqlite3.sqlite3_value_type(value); } @override int sqlite3_value_subtype() { return libsqlite3.sqlite3_value_subtype(value); } } final class FfiContext implements RawSqliteContext { static int _aggregateContextId = 1; static final Map> _contexts = {}; final Pointer context; FfiContext(this.context); Pointer get _rawAggregateContext { final agCtxPtr = libsqlite3 .sqlite3_aggregate_context(context, sizeOf()) .cast(); if (agCtxPtr.isNullPointer) { // We can't run without our 8 bytes! This indicates an out-of-memory error throw StateError( 'Internal error while allocating sqlite3 aggregate context (OOM?)', ); } return agCtxPtr; } @override AggregateContext? get dartAggregateContext { final agCtxPtr = _rawAggregateContext; final value = agCtxPtr.value; // Ok, we have a pointer (that sqlite3 zeroes out for us). Our state counter // starts at one, so if it's still zero we don't have a Dart context yet. if (value == 0) { return null; } else { return _contexts[value]; } } @override set dartAggregateContext(AggregateContext? value) { final ptr = _rawAggregateContext; final id = _aggregateContextId++; _contexts[id] = ArgumentError.checkNotNull(value); ptr.value = id; } @override void sqlite3_result_blob64(List blob) { final ptr = allocateBytes(blob); libsqlite3.sqlite3_result_blob64( context, ptr.cast(), blob.length, Pointer.fromAddress(SqlSpecialDestructor.SQLITE_TRANSIENT), ); ptr.free(); } @override void sqlite3_result_double(double value) { libsqlite3.sqlite3_result_double(context, value); } @override void sqlite3_result_error(String message) { final ptr = allocateBytes(utf8.encode(message)); libsqlite3.sqlite3_result_error(context, ptr.cast(), message.length); ptr.free(); } @override void sqlite3_result_int64(int value) { libsqlite3.sqlite3_result_int64(context, value); } @override void sqlite3_result_int64BigInt(BigInt value) { libsqlite3.sqlite3_result_int64(context, value.toInt()); } @override void sqlite3_result_null() { libsqlite3.sqlite3_result_null(context); } @override void sqlite3_result_text(String text) { final bytes = utf8.encode(text); final ptr = allocateBytes(bytes); libsqlite3.sqlite3_result_text( context, ptr.cast(), bytes.length, Pointer.fromAddress(SqlSpecialDestructor.SQLITE_TRANSIENT), ); ptr.free(); } @override void sqlite3_result_subtype(int value) { libsqlite3.sqlite3_result_subtype(context, value); } void freeContext() { final ctxId = _rawAggregateContext.value; _contexts.remove(ctxId); } } class _ValueList extends ListBase { @override int length; final Pointer> args; _ValueList(this.length, this.args); @override FfiValue operator [](int index) { return FfiValue(args[index]); } @override void operator []=(int index, FfiValue value) {} } typedef _XFunc = Void Function( Pointer, Int, Pointer>, ); typedef _XFinal = Void Function(Pointer); typedef _XCompare = Int Function(Pointer, Int, Pointer, Int, Pointer); typedef _UpdateHook = Void Function( Pointer, Int, Pointer, Pointer, Int64, ); typedef _CommitHook = Int Function(Pointer); typedef _RollbackHook = Void Function(Pointer); extension on NativeCallable { void closeIn(_FunctionFinalizers finalizers) { finalizers._callables.add(this); } } extension on RawXFunc { NativeCallable<_XFunc> toNative(_FunctionFinalizers finalizers) { return NativeCallable.isolateLocal(( Pointer ctx, int nArgs, Pointer> args, ) { this(FfiContext(ctx), _ValueList(nArgs, args)); }) ..closeIn(finalizers) ..keepIsolateAlive = false; } } extension on RawXFinal { NativeCallable<_XFinal> toNative({ required bool clean, required _FunctionFinalizers finalizers, }) { return NativeCallable.isolateLocal((Pointer ctx) { final context = FfiContext(ctx); this(context); if (clean) context.freeContext(); }) ..closeIn(finalizers) ..keepIsolateAlive = false; } } extension on RawCollation { NativeCallable<_XCompare> toNative(_FunctionFinalizers finalizers) { return NativeCallable.isolateLocal(( Pointer _, int lengthA, Pointer a, int lengthB, Pointer b, ) { final dartA = a.cast().readNullableString(lengthA); final dartB = b.cast().readNullableString(lengthB); return this(dartA, dartB); }, exceptionalReturn: 0) ..closeIn(finalizers) ..keepIsolateAlive = false; } } extension on RawUpdateHook { NativeCallable<_UpdateHook> toNative(_FunctionFinalizers finalizers) { return NativeCallable.isolateLocal(( Pointer _, int kind, Pointer db, Pointer table, int rowid, ) { final tableName = table.readString(); this(kind, tableName, rowid); }) ..closeIn(finalizers) ..keepIsolateAlive = false; } } extension on RawCommitHook { NativeCallable<_CommitHook> toNative(_FunctionFinalizers finalizers) { return NativeCallable.isolateLocal((Pointer _) { return this(); }, exceptionalReturn: 1) ..closeIn(finalizers) ..keepIsolateAlive = false; } } extension on RawRollbackHook { NativeCallable<_RollbackHook> toNative(_FunctionFinalizers finalizers) { return NativeCallable.isolateLocal((Pointer _) { this(); }) ..closeIn(finalizers) ..keepIsolateAlive = false; } } ================================================ FILE: sqlite3/lib/src/ffi/implementation.dart ================================================ import 'dart:ffi'; import 'package:meta/meta.dart'; import '../constants.dart'; import '../exception.dart'; import '../implementation/bindings.dart'; import '../implementation/database.dart'; import '../implementation/exception.dart'; import '../implementation/sqlite3.dart'; import '../implementation/statement.dart'; import '../sqlite3.dart'; import 'api.dart'; import 'bindings.dart'; import 'libsqlite3.g.dart' as libsqlite3; import 'memory.dart'; final class FfiSqlite3 extends Sqlite3Implementation implements Sqlite3 { const FfiSqlite3() : super(ffiBindings); @override Database open( String filename, { String? vfs, OpenMode mode = OpenMode.readWriteCreate, bool uri = false, bool? mutex, }) { return super.open(filename, vfs: vfs, mode: mode, uri: uri, mutex: mutex) as Database; } @override FfiDatabaseImplementation openInMemory({String? vfs}) { return super.openInMemory(vfs: vfs) as FfiDatabaseImplementation; } @override Database wrapDatabase(RawSqliteDatabase rawDb, {bool isBorrowed = false}) { return FfiDatabaseImplementation( rawDb as FfiDatabase, isBorrowed: isBorrowed, ); } @override Database copyIntoMemory(Database restoreFrom) { return openInMemory()..restore(restoreFrom); } @override void ensureExtensionLoaded(SqliteExtension extension) { initialize(); final entrypoint = (extension as SqliteExtensionImpl)._resolveEntrypoint; final functionPtr = entrypoint(); final result = libsqlite3.sqlite3_auto_extension(functionPtr); if (result != SqlError.SQLITE_OK) { throw SqliteException( extendedResultCode: result, message: 'Could not load extension', ); } } @override Database fromPointer(Pointer database, {bool borrowed = false}) { return wrapDatabase( FfiDatabase(database.cast(), borrowed: borrowed), isBorrowed: borrowed, ); } @override bool usedCompileOption(String name) { return ffiBindings.sqlite3_compileoption_used(name) != 0; } @override Iterable get compileOptions sync* { var i = 0; while (true) { final option = ffiBindings.sqlite3_compileoption_get(i); if (option == null) { return; } yield option; } } } class SqliteExtensionImpl implements SqliteExtension { /// The internal function resolving the function pointer to pass to /// `sqlite3_auto_extension`. final Pointer Function() _resolveEntrypoint; SqliteExtensionImpl(this._resolveEntrypoint); } final class FfiDatabaseImplementation extends DatabaseImplementation implements Database { final FfiDatabase ffiDatabase; FfiDatabaseImplementation(this.ffiDatabase, {required super.isBorrowed}) : super(ffiBindings, ffiDatabase); @override FfiStatementImplementation wrapStatement( String sql, RawSqliteStatement stmt, { bool borrowed = false, }) { return FfiStatementImplementation( sql, this, stmt as FfiStatement, isBorrowed: borrowed, ); } @override PreparedStatement statementFromPointer({ required Pointer statement, required String sql, bool borrowed = false, }) { final raw = FfiStatement(statement.cast(), borrowed: borrowed); return wrapStatement(sql, raw, borrowed: borrowed); } @override Stream backup(Database toDatabase, {int nPage = 5}) { if (isInMemory) { _loadOrSaveInMemoryDatabase(toDatabase, true); return const Stream.empty(); } else { return _backupDatabase(toDatabase, nPage); } } @override Pointer get handle => ffiDatabase.db; @override Pointer leak() { ffiDatabase.detachFinalizer(); isBorrowed = true; return handle; } @override PreparedStatement prepare( String sql, { bool persistent = false, bool vtab = true, bool checkNoTail = false, }) { return super.prepare( sql, persistent: persistent, vtab: vtab, checkNoTail: checkNoTail, ) as PreparedStatement; } @override List prepareMultiple( String sql, { bool persistent = false, bool vtab = true, }) { return super .prepareMultiple(sql, persistent: persistent, vtab: vtab) .cast(); } /// check if this is a in-memory database @visibleForTesting bool get isInMemory { final zDbName = Utf8Utils.allocateZeroTerminated('main'); final pFileName = libsqlite3.sqlite3_db_filename(ffiDatabase.db, zDbName); zDbName.free(); return pFileName.isNullPointer || pFileName.readString().isEmpty; } /// Ported from https://www.sqlite.org/backup.html Example 1 void _loadOrSaveInMemoryDatabase(Database other, bool isSave) { final fromDatabase = isSave ? this : other; final toDatabase = isSave ? other : this; final zDestDb = Utf8Utils.allocateZeroTerminated('main'); final zSrcDb = Utf8Utils.allocateZeroTerminated('main'); final pBackup = libsqlite3.sqlite3_backup_init( toDatabase.handle.cast(), zDestDb, fromDatabase.handle.cast(), zSrcDb, ); if (!pBackup.isNullPointer) { libsqlite3.sqlite3_backup_step(pBackup, -1); libsqlite3.sqlite3_backup_finish(pBackup); } final extendedErrorCode = libsqlite3.sqlite3_extended_errcode( toDatabase.handle.cast(), ); final errorCode = extendedErrorCode & 0xFF; zDestDb.free(); zSrcDb.free(); if (errorCode != SqlError.SQLITE_OK) { if (errorCode != SqlError.SQLITE_OK) { throw createExceptionFromExtendedCode( bindings, database, errorCode, extendedErrorCode, ); } } } /// Ported from https://www.sqlite.org/backup.html Example 2 Stream _backupDatabase(Database toDatabase, int nPage) async* { final zDestDb = Utf8Utils.allocateZeroTerminated('main'); final zSrcDb = Utf8Utils.allocateZeroTerminated('main'); final pBackup = libsqlite3.sqlite3_backup_init( toDatabase.handle.cast(), zDestDb, ffiDatabase.db, zSrcDb, ); int returnCode; if (!pBackup.isNullPointer) { do { returnCode = libsqlite3.sqlite3_backup_step(pBackup, nPage); final remaining = libsqlite3.sqlite3_backup_remaining(pBackup); final count = libsqlite3.sqlite3_backup_pagecount(pBackup); yield (count - remaining) / count; if (returnCode == SqlError.SQLITE_OK || returnCode == SqlError.SQLITE_BUSY || returnCode == SqlError.SQLITE_LOCKED) { //Give other threads the chance to work with the database await Future.delayed(const Duration(milliseconds: 250)); } } while (returnCode == SqlError.SQLITE_OK || returnCode == SqlError.SQLITE_BUSY || returnCode == SqlError.SQLITE_LOCKED); libsqlite3.sqlite3_backup_finish(pBackup); } final extendedErrorCode = libsqlite3.sqlite3_extended_errcode( toDatabase.handle.cast(), ); final errorCode = extendedErrorCode & 0xFF; zDestDb.free(); zSrcDb.free(); if (errorCode != SqlError.SQLITE_OK) { throw createExceptionFromExtendedCode( bindings, database, errorCode, extendedErrorCode, ); } } @internal void restore(Database fromDatabase) { if (!isInMemory) { throw ArgumentError( 'Restoring is only available for in-memory databases', ); } _loadOrSaveInMemoryDatabase(fromDatabase, false); } } final class FfiStatementImplementation extends StatementImplementation implements PreparedStatement { final FfiStatement ffiStatement; FfiStatementImplementation( String sql, FfiDatabaseImplementation db, this.ffiStatement, { super.isBorrowed, }) : super(sql, db, ffiStatement); @override Pointer get handle => ffiStatement.stmt; @override Pointer leak() { ffiStatement.detachFinalizer(); isBorrowed = true; return handle; } } ================================================ FILE: sqlite3/lib/src/ffi/libsqlite3.g.dart ================================================ // ignore_for_file: type=lint // AUTO GENERATED FILE, DO NOT EDIT. // // Generated by `package:ffigen`. // ignore_for_file: unused_import @ffi.DefaultAsset('package:sqlite3/src/ffi/libsqlite3.g.dart') library; import 'dart:ffi' as ffi; import '' as self; @ffi.Native>() external ffi.Pointer sqlite3_temp_directory; @ffi.Native() external int sqlite3_initialize(); @ffi.Native)>() external void sqlite3_free(ffi.Pointer arg0); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer>, ffi.Int, ffi.Pointer, ) >() external int sqlite3_open_v2( ffi.Pointer filename, ffi.Pointer> ppDb, int flags, ffi.Pointer zVfs, ); @ffi.Native)>() external int sqlite3_close_v2(ffi.Pointer db); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Pointer, ) >() external ffi.Pointer sqlite3_db_filename( ffi.Pointer db, ffi.Pointer zDbName, ); @ffi.Native)>() external int sqlite3_compileoption_used(ffi.Pointer zOptName); @ffi.Native Function(ffi.Int)>() external ffi.Pointer sqlite3_compileoption_get(int N); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer< ffi.NativeFunction, ffi.Int)> >, ffi.Pointer, ) >() external int sqlite3_busy_handler( ffi.Pointer db, ffi.Pointer< ffi.NativeFunction, ffi.Int)> > arg1, ffi.Pointer context, ); @ffi.Native, ffi.Int)>() external int sqlite3_extended_result_codes(ffi.Pointer db, int onoff); @ffi.Native)>() external int sqlite3_extended_errcode(ffi.Pointer db); @ffi.Native Function(ffi.Pointer)>() external ffi.Pointer sqlite3_errmsg(ffi.Pointer db); @ffi.Native Function(ffi.Int)>() external ffi.Pointer sqlite3_errstr(int code); @ffi.Native)>() external int sqlite3_error_offset(ffi.Pointer db); @ffi.Native Function()>() external ffi.Pointer sqlite3_libversion(); @ffi.Native Function()>() external ffi.Pointer sqlite3_sourceid(); @ffi.Native() external int sqlite3_libversion_number(); @ffi.Native)>() external int sqlite3_last_insert_rowid(ffi.Pointer db); @ffi.Native)>() external int sqlite3_changes(ffi.Pointer db); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) >() external int sqlite3_exec( ffi.Pointer db, ffi.Pointer sql, ffi.Pointer callback, ffi.Pointer argToCb, ffi.Pointer> errorOut, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Pointer, ffi.Int64, ) > >, ffi.Pointer, ) >() external ffi.Pointer sqlite3_update_hook( ffi.Pointer arg0, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Pointer, ffi.Int64, ) > > arg1, ffi.Pointer arg2, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Pointer)>>, ffi.Pointer, ) >() external ffi.Pointer sqlite3_commit_hook( ffi.Pointer arg0, ffi.Pointer)>> arg1, ffi.Pointer arg2, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Pointer)>>, ffi.Pointer, ) >() external ffi.Pointer sqlite3_rollback_hook( ffi.Pointer arg0, ffi.Pointer)>> arg1, ffi.Pointer arg2, ); @ffi.Native)>() external int sqlite3_get_autocommit(ffi.Pointer db); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer>, ffi.Pointer>, ) >() external int sqlite3_prepare_v2( ffi.Pointer db, ffi.Pointer zSql, int nByte, ffi.Pointer> ppStmt, ffi.Pointer> pzTail, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.UnsignedInt, ffi.Pointer>, ffi.Pointer>, ) >() external int sqlite3_prepare_v3( ffi.Pointer db, ffi.Pointer zSql, int nByte, int prepFlags, ffi.Pointer> ppStmt, ffi.Pointer> pzTail, ); @ffi.Native)>() external int sqlite3_finalize(ffi.Pointer pStmt); @ffi.Native)>() external int sqlite3_step(ffi.Pointer pStmt); @ffi.Native)>() external int sqlite3_reset(ffi.Pointer pStmt); @ffi.Native)>() external int sqlite3_stmt_isexplain(ffi.Pointer pStmt); @ffi.Native)>() external int sqlite3_stmt_readonly(ffi.Pointer pStmt); @ffi.Native)>() external int sqlite3_column_count(ffi.Pointer pStmt); @ffi.Native)>() external int sqlite3_bind_parameter_count(ffi.Pointer pStmt); @ffi.Native< ffi.Int Function(ffi.Pointer, ffi.Pointer) >() external int sqlite3_bind_parameter_index( ffi.Pointer arg0, ffi.Pointer zName, ); @ffi.Native< ffi.Pointer Function(ffi.Pointer, ffi.Int) >() external ffi.Pointer sqlite3_column_name( ffi.Pointer pStmt, int N, ); @ffi.Native< ffi.Pointer Function(ffi.Pointer, ffi.Int) >() external ffi.Pointer sqlite3_column_table_name( ffi.Pointer pStmt, int N, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Uint64, ffi.Pointer)>>, ) >() external int sqlite3_bind_blob64( ffi.Pointer pStmt, int index, ffi.Pointer data, int length, ffi.Pointer)>> destructor, ); @ffi.Native, ffi.Int, ffi.Double)>() external int sqlite3_bind_double( ffi.Pointer pStmt, int index, double data, ); @ffi.Native, ffi.Int, ffi.Int64)>() external int sqlite3_bind_int64( ffi.Pointer pStmt, int index, int data, ); @ffi.Native, ffi.Int)>() external int sqlite3_bind_null(ffi.Pointer pStmt, int index); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Int, ffi.Pointer)>>, ) >() external int sqlite3_bind_text( ffi.Pointer pStmt, int index, ffi.Pointer data, int length, ffi.Pointer)>> destructor, ); @ffi.Native< ffi.Pointer Function(ffi.Pointer, ffi.Int) >() external ffi.Pointer sqlite3_column_blob( ffi.Pointer pStmt, int iCol, ); @ffi.Native, ffi.Int)>() external double sqlite3_column_double( ffi.Pointer pStmt, int iCol, ); @ffi.Native, ffi.Int)>() external int sqlite3_column_int64(ffi.Pointer pStmt, int iCol); @ffi.Native< ffi.Pointer Function(ffi.Pointer, ffi.Int) >() external ffi.Pointer sqlite3_column_text( ffi.Pointer pStmt, int iCol, ); @ffi.Native, ffi.Int)>() external int sqlite3_column_bytes(ffi.Pointer pStmt, int iCol); @ffi.Native, ffi.Int)>() external int sqlite3_column_type(ffi.Pointer pStmt, int iCol); @ffi.Native Function(ffi.Pointer)>() external ffi.Pointer sqlite3_value_blob( ffi.Pointer value, ); @ffi.Native)>() external double sqlite3_value_double(ffi.Pointer value); @ffi.Native)>() external int sqlite3_value_type(ffi.Pointer value); @ffi.Native)>() external int sqlite3_value_int64(ffi.Pointer value); @ffi.Native Function(ffi.Pointer)>() external ffi.Pointer sqlite3_value_text( ffi.Pointer value, ); @ffi.Native)>() external int sqlite3_value_bytes(ffi.Pointer value); @ffi.Native)>() external int sqlite3_value_subtype(ffi.Pointer value); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer)>>, ) >() external int sqlite3_create_function_v2( ffi.Pointer db, ffi.Pointer zFunctionName, int nArg, int eTextRep, ffi.Pointer pApp, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > > xFunc, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > > xStep, ffi.Pointer< ffi.NativeFunction)> > xFinal, ffi.Pointer)>> xDestroy, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer)>>, ) >() external int sqlite3_create_window_function( ffi.Pointer db, ffi.Pointer zFunctionName, int nArg, int eTextRep, ffi.Pointer pApp, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > > xStep, ffi.Pointer< ffi.NativeFunction)> > xFinal, ffi.Pointer< ffi.NativeFunction)> > xValue, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > > xInverse, ffi.Pointer)>> xDestroy, ); @ffi.Native< ffi.Pointer Function(ffi.Pointer, ffi.Int) >() external ffi.Pointer sqlite3_aggregate_context( ffi.Pointer ctx, int nBytes, ); @ffi.Native Function(ffi.Pointer)>() external ffi.Pointer sqlite3_user_data( ffi.Pointer ctx, ); @ffi.Native< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Uint64, ffi.Pointer, ) >() external void sqlite3_result_blob64( ffi.Pointer ctx, ffi.Pointer data, int length, ffi.Pointer destructor, ); @ffi.Native, ffi.Double)>() external void sqlite3_result_double( ffi.Pointer ctx, double result, ); @ffi.Native< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Int, ) >() external void sqlite3_result_error( ffi.Pointer ctx, ffi.Pointer msg, int length, ); @ffi.Native, ffi.Int64)>() external void sqlite3_result_int64( ffi.Pointer ctx, int result, ); @ffi.Native)>() external void sqlite3_result_null(ffi.Pointer ctx); @ffi.Native< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer, ) >() external void sqlite3_result_text( ffi.Pointer ctx, ffi.Pointer data, int length, ffi.Pointer destructor, ); @ffi.Native, ffi.UnsignedInt)>() external void sqlite3_result_subtype( ffi.Pointer ctx, int subtype, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Int, ffi.Pointer, ) > >, ffi.Pointer)>>, ) >() external int sqlite3_create_collation_v2( ffi.Pointer arg0, ffi.Pointer zName, int eTextRep, ffi.Pointer pArg, ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Int, ffi.Pointer, ) > > xCompare, ffi.Pointer)>> xDestroy, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ) >() external ffi.Pointer sqlite3_backup_init( ffi.Pointer pDestDb, ffi.Pointer zDestDb, ffi.Pointer pSrcDb, ffi.Pointer zSrcDb, ); @ffi.Native, ffi.Int)>() external int sqlite3_backup_step(ffi.Pointer p, int nPage); @ffi.Native)>() external int sqlite3_backup_finish(ffi.Pointer p); @ffi.Native)>() external int sqlite3_backup_remaining(ffi.Pointer p); @ffi.Native)>() external int sqlite3_backup_pagecount(ffi.Pointer p); @ffi.Native)>() external int sqlite3_auto_extension(ffi.Pointer xEntryPoint); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.VarArgs<(ffi.Int, ffi.Pointer)>, ) >() external int sqlite3_db_config( ffi.Pointer db, int op, int va, ffi.Pointer va$1, ); @ffi.Native, ffi.Int)>() external int sqlite3_vfs_register(ffi.Pointer arg0, int makeDflt); @ffi.Native)>() external int sqlite3_vfs_unregister(ffi.Pointer arg0); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) >() external int sqlite3session_create( ffi.Pointer db, ffi.Pointer zDb, ffi.Pointer> ppSession, ); @ffi.Native)>() external void sqlite3session_delete(ffi.Pointer pSession); @ffi.Native, ffi.Int)>() external int sqlite3session_enable( ffi.Pointer pSession, int bEnable, ); @ffi.Native, ffi.Int)>() external int sqlite3session_indirect( ffi.Pointer pSession, int bIndirect, ); @ffi.Native< ffi.Int Function( ffi.Pointer>, ffi.Int, ffi.Pointer, ) >() external int sqlite3changeset_start( ffi.Pointer> pp, int nChangeset, ffi.Pointer pChangeset, ); @ffi.Native)>() external int sqlite3changeset_finalize( ffi.Pointer pIter, ); @ffi.Native)>() external int sqlite3changeset_next(ffi.Pointer pIter); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer>, ffi.Pointer, ffi.Pointer, ffi.Pointer, ) >() external int sqlite3changeset_op( ffi.Pointer pIter, ffi.Pointer> pzTab, ffi.Pointer pnCol, ffi.Pointer pOp, ffi.Pointer pbIndirect, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) >() external int sqlite3changeset_old( ffi.Pointer pIter, int iVal, ffi.Pointer> ppValue, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) >() external int sqlite3changeset_new( ffi.Pointer pIter, int iVal, ffi.Pointer> ppValue, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer pCtx, ffi.Pointer zTab) > >, ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer pCtx, ffi.Int eConflict, ffi.Pointer p, ) > >, ffi.Pointer, ) >() external int sqlite3changeset_apply( ffi.Pointer db, int nChangeset, ffi.Pointer pChangeset, ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer pCtx, ffi.Pointer zTab) > > xFilter, ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer pCtx, ffi.Int eConflict, ffi.Pointer p, ) > > xConflict, ffi.Pointer pCtx, ); @ffi.Native< ffi.Int Function( ffi.Int, ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) >() external int sqlite3changeset_invert( int nIn, ffi.Pointer pIn, ffi.Pointer pnOut, ffi.Pointer> ppOut, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) >() external int sqlite3session_patchset( ffi.Pointer pSession, ffi.Pointer pnPatchset, ffi.Pointer> ppPatchset, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) >() external int sqlite3session_changeset( ffi.Pointer pSession, ffi.Pointer pnChangeset, ffi.Pointer> ppChangeset, ); @ffi.Native)>() external int sqlite3session_isempty(ffi.Pointer pSession); @ffi.Native< ffi.Int Function(ffi.Pointer, ffi.Pointer) >() external int sqlite3session_attach( ffi.Pointer pSession, ffi.Pointer zTab, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) >() external int sqlite3session_diff( ffi.Pointer pSession, ffi.Pointer zFromDb, ffi.Pointer zTbl, ffi.Pointer> pzErrMsg, ); const addresses = _SymbolAddresses(); class _SymbolAddresses { const _SymbolAddresses(); ffi.Pointer> get sqlite3_initialize => ffi.Native.addressOf(self.sqlite3_initialize); ffi.Pointer)>> get sqlite3_free => ffi.Native.addressOf(self.sqlite3_free); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer>, ffi.Int, ffi.Pointer, ) > > get sqlite3_open_v2 => ffi.Native.addressOf(self.sqlite3_open_v2); ffi.Pointer)>> get sqlite3_close_v2 => ffi.Native.addressOf(self.sqlite3_close_v2); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function( ffi.Pointer, ffi.Pointer, ) > > get sqlite3_db_filename => ffi.Native.addressOf(self.sqlite3_db_filename); ffi.Pointer)>> get sqlite3_compileoption_used => ffi.Native.addressOf(self.sqlite3_compileoption_used); ffi.Pointer Function(ffi.Int)>> get sqlite3_compileoption_get => ffi.Native.addressOf(self.sqlite3_compileoption_get); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer< ffi.NativeFunction, ffi.Int)> >, ffi.Pointer, ) > > get sqlite3_busy_handler => ffi.Native.addressOf(self.sqlite3_busy_handler); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_extended_result_codes => ffi.Native.addressOf(self.sqlite3_extended_result_codes); ffi.Pointer)>> get sqlite3_extended_errcode => ffi.Native.addressOf(self.sqlite3_extended_errcode); ffi.Pointer< ffi.NativeFunction Function(ffi.Pointer)> > get sqlite3_errmsg => ffi.Native.addressOf(self.sqlite3_errmsg); ffi.Pointer Function(ffi.Int)>> get sqlite3_errstr => ffi.Native.addressOf(self.sqlite3_errstr); ffi.Pointer)>> get sqlite3_error_offset => ffi.Native.addressOf(self.sqlite3_error_offset); ffi.Pointer Function()>> get sqlite3_libversion => ffi.Native.addressOf(self.sqlite3_libversion); ffi.Pointer Function()>> get sqlite3_sourceid => ffi.Native.addressOf(self.sqlite3_sourceid); ffi.Pointer> get sqlite3_libversion_number => ffi.Native.addressOf(self.sqlite3_libversion_number); ffi.Pointer)>> get sqlite3_last_insert_rowid => ffi.Native.addressOf(self.sqlite3_last_insert_rowid); ffi.Pointer)>> get sqlite3_changes => ffi.Native.addressOf(self.sqlite3_changes); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) > > get sqlite3_exec => ffi.Native.addressOf(self.sqlite3_exec); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function( ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Pointer, ffi.Int64, ) > >, ffi.Pointer, ) > > get sqlite3_update_hook => ffi.Native.addressOf(self.sqlite3_update_hook); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function( ffi.Pointer, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer, ) > > get sqlite3_commit_hook => ffi.Native.addressOf(self.sqlite3_commit_hook); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function( ffi.Pointer, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer, ) > > get sqlite3_rollback_hook => ffi.Native.addressOf(self.sqlite3_rollback_hook); ffi.Pointer)>> get sqlite3_get_autocommit => ffi.Native.addressOf(self.sqlite3_get_autocommit); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer>, ffi.Pointer>, ) > > get sqlite3_prepare_v2 => ffi.Native.addressOf(self.sqlite3_prepare_v2); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.UnsignedInt, ffi.Pointer>, ffi.Pointer>, ) > > get sqlite3_prepare_v3 => ffi.Native.addressOf(self.sqlite3_prepare_v3); ffi.Pointer)>> get sqlite3_finalize => ffi.Native.addressOf(self.sqlite3_finalize); ffi.Pointer)>> get sqlite3_step => ffi.Native.addressOf(self.sqlite3_step); ffi.Pointer)>> get sqlite3_reset => ffi.Native.addressOf(self.sqlite3_reset); ffi.Pointer)>> get sqlite3_stmt_isexplain => ffi.Native.addressOf(self.sqlite3_stmt_isexplain); ffi.Pointer)>> get sqlite3_stmt_readonly => ffi.Native.addressOf(self.sqlite3_stmt_readonly); ffi.Pointer)>> get sqlite3_column_count => ffi.Native.addressOf(self.sqlite3_column_count); ffi.Pointer)>> get sqlite3_bind_parameter_count => ffi.Native.addressOf(self.sqlite3_bind_parameter_count); ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Pointer) > > get sqlite3_bind_parameter_index => ffi.Native.addressOf(self.sqlite3_bind_parameter_index); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer, ffi.Int) > > get sqlite3_column_name => ffi.Native.addressOf(self.sqlite3_column_name); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer, ffi.Int) > > get sqlite3_column_table_name => ffi.Native.addressOf(self.sqlite3_column_table_name); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Uint64, ffi.Pointer< ffi.NativeFunction)> >, ) > > get sqlite3_bind_blob64 => ffi.Native.addressOf(self.sqlite3_bind_blob64); ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Int, ffi.Double) > > get sqlite3_bind_double => ffi.Native.addressOf(self.sqlite3_bind_double); ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Int, ffi.Int64) > > get sqlite3_bind_int64 => ffi.Native.addressOf(self.sqlite3_bind_int64); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_bind_null => ffi.Native.addressOf(self.sqlite3_bind_null); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Int, ffi.Pointer< ffi.NativeFunction)> >, ) > > get sqlite3_bind_text => ffi.Native.addressOf(self.sqlite3_bind_text); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer, ffi.Int) > > get sqlite3_column_blob => ffi.Native.addressOf(self.sqlite3_column_blob); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_column_double => ffi.Native.addressOf(self.sqlite3_column_double); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_column_int64 => ffi.Native.addressOf(self.sqlite3_column_int64); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer, ffi.Int) > > get sqlite3_column_text => ffi.Native.addressOf(self.sqlite3_column_text); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_column_bytes => ffi.Native.addressOf(self.sqlite3_column_bytes); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_column_type => ffi.Native.addressOf(self.sqlite3_column_type); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer) > > get sqlite3_value_blob => ffi.Native.addressOf(self.sqlite3_value_blob); ffi.Pointer< ffi.NativeFunction)> > get sqlite3_value_double => ffi.Native.addressOf(self.sqlite3_value_double); ffi.Pointer)>> get sqlite3_value_type => ffi.Native.addressOf(self.sqlite3_value_type); ffi.Pointer< ffi.NativeFunction)> > get sqlite3_value_int64 => ffi.Native.addressOf(self.sqlite3_value_int64); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer) > > get sqlite3_value_text => ffi.Native.addressOf(self.sqlite3_value_text); ffi.Pointer)>> get sqlite3_value_bytes => ffi.Native.addressOf(self.sqlite3_value_bytes); ffi.Pointer< ffi.NativeFunction)> > get sqlite3_value_subtype => ffi.Native.addressOf(self.sqlite3_value_subtype); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer< ffi.NativeFunction)> >, ) > > get sqlite3_create_function_v2 => ffi.Native.addressOf(self.sqlite3_create_function_v2); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer< ffi.NativeFunction)> >, ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > >, ffi.Pointer< ffi.NativeFunction)> >, ) > > get sqlite3_create_window_function => ffi.Native.addressOf(self.sqlite3_create_window_function); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer, ffi.Int) > > get sqlite3_aggregate_context => ffi.Native.addressOf(self.sqlite3_aggregate_context); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function(ffi.Pointer) > > get sqlite3_user_data => ffi.Native.addressOf(self.sqlite3_user_data); ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Uint64, ffi.Pointer, ) > > get sqlite3_result_blob64 => ffi.Native.addressOf(self.sqlite3_result_blob64); ffi.Pointer< ffi.NativeFunction< ffi.Void Function(ffi.Pointer, ffi.Double) > > get sqlite3_result_double => ffi.Native.addressOf(self.sqlite3_result_double); ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Int, ) > > get sqlite3_result_error => ffi.Native.addressOf(self.sqlite3_result_error); ffi.Pointer< ffi.NativeFunction< ffi.Void Function(ffi.Pointer, ffi.Int64) > > get sqlite3_result_int64 => ffi.Native.addressOf(self.sqlite3_result_int64); ffi.Pointer< ffi.NativeFunction)> > get sqlite3_result_null => ffi.Native.addressOf(self.sqlite3_result_null); ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer, ) > > get sqlite3_result_text => ffi.Native.addressOf(self.sqlite3_result_text); ffi.Pointer< ffi.NativeFunction< ffi.Void Function(ffi.Pointer, ffi.UnsignedInt) > > get sqlite3_result_subtype => ffi.Native.addressOf(self.sqlite3_result_subtype); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Int, ffi.Pointer, ) > >, ffi.Pointer< ffi.NativeFunction)> >, ) > > get sqlite3_create_collation_v2 => ffi.Native.addressOf(self.sqlite3_create_collation_v2); ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ) > > get sqlite3_backup_init => ffi.Native.addressOf(self.sqlite3_backup_init); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_backup_step => ffi.Native.addressOf(self.sqlite3_backup_step); ffi.Pointer)>> get sqlite3_backup_finish => ffi.Native.addressOf(self.sqlite3_backup_finish); ffi.Pointer)>> get sqlite3_backup_remaining => ffi.Native.addressOf(self.sqlite3_backup_remaining); ffi.Pointer)>> get sqlite3_backup_pagecount => ffi.Native.addressOf(self.sqlite3_backup_pagecount); ffi.Pointer)>> get sqlite3_auto_extension => ffi.Native.addressOf(self.sqlite3_auto_extension); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.VarArgs<(ffi.Int, ffi.Pointer)>, ) > > get sqlite3_db_config => ffi.Native.addressOf(self.sqlite3_db_config); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3_vfs_register => ffi.Native.addressOf(self.sqlite3_vfs_register); ffi.Pointer)>> get sqlite3_vfs_unregister => ffi.Native.addressOf(self.sqlite3_vfs_unregister); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) > > get sqlite3session_create => ffi.Native.addressOf(self.sqlite3session_create); ffi.Pointer< ffi.NativeFunction)> > get sqlite3session_delete => ffi.Native.addressOf(self.sqlite3session_delete); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3session_enable => ffi.Native.addressOf(self.sqlite3session_enable); ffi.Pointer< ffi.NativeFunction, ffi.Int)> > get sqlite3session_indirect => ffi.Native.addressOf(self.sqlite3session_indirect); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer>, ffi.Int, ffi.Pointer, ) > > get sqlite3changeset_start => ffi.Native.addressOf(self.sqlite3changeset_start); ffi.Pointer< ffi.NativeFunction)> > get sqlite3changeset_finalize => ffi.Native.addressOf(self.sqlite3changeset_finalize); ffi.Pointer< ffi.NativeFunction)> > get sqlite3changeset_next => ffi.Native.addressOf(self.sqlite3changeset_next); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer>, ffi.Pointer, ffi.Pointer, ffi.Pointer, ) > > get sqlite3changeset_op => ffi.Native.addressOf(self.sqlite3changeset_op); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > > get sqlite3changeset_old => ffi.Native.addressOf(self.sqlite3changeset_old); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer>, ) > > get sqlite3changeset_new => ffi.Native.addressOf(self.sqlite3changeset_new); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer pCtx, ffi.Pointer zTab, ) > >, ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer pCtx, ffi.Int eConflict, ffi.Pointer p, ) > >, ffi.Pointer, ) > > get sqlite3changeset_apply => ffi.Native.addressOf(self.sqlite3changeset_apply); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Int, ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) > > get sqlite3changeset_invert => ffi.Native.addressOf(self.sqlite3changeset_invert); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) > > get sqlite3session_patchset => ffi.Native.addressOf(self.sqlite3session_patchset); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) > > get sqlite3session_changeset => ffi.Native.addressOf(self.sqlite3session_changeset); ffi.Pointer< ffi.NativeFunction)> > get sqlite3session_isempty => ffi.Native.addressOf(self.sqlite3session_isempty); ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Pointer) > > get sqlite3session_attach => ffi.Native.addressOf(self.sqlite3session_attach); ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) > > get sqlite3session_diff => ffi.Native.addressOf(self.sqlite3session_diff); } final class sqlite3_char extends ffi.Opaque {} final class sqlite3 extends ffi.Opaque {} final class sqlite3_stmt extends ffi.Opaque {} final class sqlite3_backup extends ffi.Opaque {} final class sqlite3_api_routines extends ffi.Opaque {} final class sqlite3_session extends ffi.Opaque {} final class sqlite3_changeset_iter extends ffi.Opaque {} final class sqlite3_value extends ffi.Opaque {} final class sqlite3_context extends ffi.Opaque {} final class sqlite3_io_methods extends ffi.Struct { @ffi.Int() external int iVersion; external ffi.Pointer< ffi.NativeFunction)> > xClose; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Int64, ) > > xRead; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Int64, ) > > xWrite; external ffi.Pointer< ffi.NativeFunction, ffi.Int64)> > xTruncate; external ffi.Pointer< ffi.NativeFunction, ffi.Int)> > xSync; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Pointer) > > xFileSize; external ffi.Pointer< ffi.NativeFunction, ffi.Int)> > xLock; external ffi.Pointer< ffi.NativeFunction, ffi.Int)> > xUnlock; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Pointer) > > xCheckReservedLock; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Pointer, ) > > xFileControl; external ffi.Pointer< ffi.NativeFunction)> > xSectorSize; external ffi.Pointer< ffi.NativeFunction)> > xDeviceCharacteristics; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int, ffi.Int, ffi.Int, ffi.Pointer>, ) > > xShmMap; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Int, ffi.Int, ffi.Int) > > xShmLock; external ffi.Pointer< ffi.NativeFunction)> > xShmBarrier; external ffi.Pointer< ffi.NativeFunction, ffi.Int)> > xShmUnmap; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int64, ffi.Int, ffi.Pointer>, ) > > xFetch; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Int64, ffi.Pointer, ) > > xUnfetch; } final class sqlite3_file extends ffi.Struct { external ffi.Pointer pMethods; } final class sqlite3_vfs extends ffi.Struct { @ffi.Int() external int iVersion; @ffi.Int() external int szOsFile; @ffi.Int() external int mxPathname; external ffi.Pointer pNext; external ffi.Pointer zName; external ffi.Pointer pAppData; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer, ) > > xOpen; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Pointer, ffi.Int) > > xDelete; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer, ) > > xAccess; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Int, ffi.Pointer, ) > > xFullPathname; external ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function( ffi.Pointer, ffi.Pointer, ) > > xDlOpen; external ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Int, ffi.Pointer, ) > > xDlError; external ffi.Pointer< ffi.NativeFunction< ffi.Pointer> Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ) > > xDlSym; external ffi.Pointer< ffi.NativeFunction< ffi.Void Function(ffi.Pointer, ffi.Pointer) > > xDlClose; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Int, ffi.Pointer) > > xRandomness; external ffi.Pointer< ffi.NativeFunction, ffi.Int)> > xSleep; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Pointer) > > xCurrentTime; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Int, ffi.Pointer) > > xGetLastError; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function(ffi.Pointer, ffi.Pointer) > > xCurrentTimeInt64; external ffi.Pointer< ffi.NativeFunction< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.Pointer>, ) > > xSetSystemCall; external ffi.Pointer< ffi.NativeFunction< ffi.Pointer> Function( ffi.Pointer, ffi.Pointer, ) > > xGetSystemCall; external ffi.Pointer< ffi.NativeFunction< ffi.Pointer Function( ffi.Pointer, ffi.Pointer, ) > > xNextSystemCall; } ================================================ FILE: sqlite3/lib/src/ffi/memory.dart ================================================ import 'dart:convert'; import 'dart:ffi'; import 'dart:typed_data'; import 'package:ffi/ffi.dart' as ffi; import 'libsqlite3.g.dart'; const allocate = ffi.malloc; final freeFinalizer = NativeFinalizer(allocate.nativeFree); /// Loads a null-pointer with a specified type. /// /// The [nullptr] getter from `dart:ffi` can be slow due to being a /// `Pointer` on which the VM has to perform runtime type checks. See also /// https://github.com/dart-lang/sdk/issues/39488 @pragma('vm:prefer-inline') Pointer nullPtr() => nullptr.cast(); extension FreePointerExtension on Pointer { void free() => allocate.free(this); } Pointer allocateBytes(List bytes, {int additionalLength = 0}) { final ptr = allocate(bytes.length + additionalLength); ptr.asTypedList(bytes.length + additionalLength) ..setAll(0, bytes) ..fillRange(bytes.length, bytes.length + additionalLength, 0); return ptr; } /// Allocates bytes, returning `uint8_t*` pointer an a [Uint8List] backed by /// that memory region. /// /// When the returned [Uint8List] is no longer referenced in Dart, the memory /// region will be freed. (Pointer, Uint8List) allocateBytesWithFinalizer(List bytes) { final ptr = allocateBytes(bytes); return (ptr, ptr.asTypedList(bytes.length, finalizer: allocate.nativeFree)); } extension Utf8Utils on Pointer { int get _length { final asBytes = cast(); var length = 0; for (; asBytes[length] != 0; length++) {} return length; } String? readNullableString([int? length]) { return isNullPointer ? null : readString(length); } String readString([int? length]) { final resolvedLength = length ??= _length; final dartList = cast().asTypedList(resolvedLength); return utf8.decode(dartList); } static Pointer allocateZeroTerminated(String string) { return allocateBytes(utf8.encode(string), additionalLength: 1).cast(); } } extension PointerUtils on Pointer { bool get isNullPointer => address == 0; Uint8List copyRange(int length) { final list = Uint8List(length); list.setAll(0, cast().asTypedList(length)); return list; } } ================================================ FILE: sqlite3/lib/src/functions.dart ================================================ /// @docImport 'dart:typed_data'; library; import 'package:meta/meta.dart'; /// A filter function without any arguments. typedef VoidPredicate = bool Function(); /// A collating function provided to a sql collation. /// /// The function must return a `int`. /// /// If invoking the function throws a Dart exception, the sql function will /// result with an error result as well. typedef CollatingFunction = int Function(String? textA, String? textB); /// A scalar function exposed to sql. /// /// {@template sqlite3_function_behavior} /// The function must either return a `bool`, `num`, `String`, `List`, /// `BigInt` or `null`. It may also return a [SubtypedValue] thereof, see that /// class for more details /// /// If invoking the function throws a Dart exception, the sql function will /// result with an error result as well. /// {@endtemplate} typedef ScalarFunction = Object? Function(SqliteArguments arguments); /// Interface for application-defined aggregate functions. /// /// A subclass of [AggregateFunction] should hold no state across invocations. /// All its state needed during a computation should be stored in an instance of /// [V]. /// /// As an example, take a look at the following Dart implementation of the /// `count()` aggregate. Recall that there are two versions of `count()`. With /// zero arguments, `count()` returns the number of rows. With one argument, /// `count()` returns the number of times that the argument was non-null. /// /// ```dart /// class MyCount implements AggregateFunction { /// @override /// AggregateContext createContext() => AggregateContext(0); /// /// @override /// void step(List arguments, AggregateContext context) { /// if (arguments.isEmpty || arguments.first != null) { /// context.value++; /// } /// } /// /// @override /// Object finalize(AggregateContext context) { /// return context.value; /// } ///} /// ``` /// /// {@category common} @immutable abstract class AggregateFunction { /// Creates an initial context holding the initial value before [step] is /// called. /// /// If [step] is never called before the query concludes, the initial context /// is also used for [finalize]. AggregateContext createContext(); /// Adds a new row to the aggregate. /// /// The [context] should be modified to reflect the new row calling this /// function with [arguments]. void step(SqliteArguments arguments, AggregateContext context); /// Computes the final value from a populated [context]. /// /// This is the last call made with the given [context], so this function may /// also choose to clean up resources associated with the aggregate context. /// /// {@macro sqlite3_function_behavior} Object? finalize(AggregateContext context); } /// A window function for sqlite3. /// /// In addition to [AggregateFunction]s, which run over an entire query, window /// functions can run over a subset of rows as defined in an `OVER` clause. /// /// This example defines a window function taking a single argument, which must /// be an int. The result of the window function is the sum of all arguments /// in the current window. /// /// ```dart /// class _SumInt implements WindowFunction { /// @override /// AggregateContext createContext() => AggregateContext(0); /// /// @override /// Object? finalize(AggregateContext context) { /// // There's nothing to finalize, if our [createContext] had side-effects /// // we'd have to undo them here. /// return value(context); /// } /// /// int _argument(List arguments) { /// return arguments.single! as int; /// } /// /// @override /// void inverse(List arguments, AggregateContext context) { /// context.value -= _argument(arguments); /// } /// /// @override /// void step(List arguments, AggregateContext context) { /// context.value += _argument(arguments); /// } /// /// @override /// Object? value(AggregateContext context) => context.value; ///} /// ``` /// /// {@category common} @immutable abstract class WindowFunction implements AggregateFunction { /// Obtain the current aggregate in the window. /// /// This is similar to [finalize], but shouldn't be used to clean up resources /// as subsequent calls may happen with the same [context]. Object? value(AggregateContext context); /// Removes the row of [arguments] from this window. void inverse(SqliteArguments arguments, AggregateContext context); } /// Application-defined context used to compute results in aggregate functions. /// /// {@category common} final class AggregateContext { /// The current value of this context. V value; /// Creates a context with an initial [value]. AggregateContext(this.value); } /// Describes how many arguments an application-defined sql function can take. /// /// {@category common} final class AllowedArgumentCount { final int allowedArgs; const AllowedArgumentCount(this.allowedArgs); const AllowedArgumentCount.any() : allowedArgs = -1; } /// Arguments passed to a user-defined SQLite function. /// /// Arguments are represented as a regular [List] of Dart [Object]s of the /// following types: [int], [double], [String], [Null], [Uint8List]. /// /// In addition, the [subtypeOf] method can be used to obtain the /// [subtype](https://sqlite.org/c3ref/value_subtype.html) of data passed to the /// function. To use [subtypeOf], the `subtype: true` parameter should be set /// when registering the function. /// {@category common} abstract interface class SqliteArguments implements List { /// Returns the [subtype](https://sqlite.org/c3ref/value_subtype.html) of an /// argument passed to the function. int subtypeOf(int argumentIndex); } /// A value that will be passed to SQLite as a return value with an additional /// subtype (encoded as a byte value) attached to it. /// /// For functions that may return this value, the `subtype: true` parameter /// should be set when registering the function. /// /// For more information, see [Setting The Subtype Of An SQL Function](https://sqlite.org/c3ref/result_subtype.html). /// {@category common} extension type SubtypedValue._((Object?, int) _info) { factory SubtypedValue(Object? value, int subtype) { return SubtypedValue._((value, subtype)); } /// The underlying value to return. Object? get originalValue => _info.$1; /// The configured subtype of the value. int get subtype => _info.$2; } ================================================ FILE: sqlite3/lib/src/hook/asset_hashes.dart ================================================ // This file contains hashes of SQLite binaries downloaded by the default hook. // For tests, it is replaced with actual assets. For releases, a pre-release // check asserts it's up-to-date. // // Generated by tool/write_asset_hashes.dart // dart format off // ignore: unnecessary_nullable_for_final_variable_declarations const String? releaseTag = 'sqlite3-3.3.1'; const Map assetNameToSha256Hash = { 'libsqlite3.arm.android.so': '72d43c7c7119947ce2a7525bd63c4795b3cea250c09dba98c4fb9e52c7dbec82', 'libsqlite3.arm.linux.so': '1d8b40878c73b8204333fa40c2d175c439a9e7a95e0644f7a14ed926cd748061', 'libsqlite3.arm64.android.so': 'cf2378ec6fa20479184d6c44b03c332343d2e0f5c648591f5302dca27ed41a94', 'libsqlite3.arm64.ios.dylib': '81d4c606fecdd06cac958c7ed4420ea274d94bcbf13704f84271920be6b8313d', 'libsqlite3.arm64.ios_sim.dylib': '3b3ad68054d03bbd2ae3b12c1dc316e94bf8d30ec6712d3d9e17884894be9185', 'libsqlite3.arm64.linux.so': '0541443d38cd79160f6262e6a59892657d640459fef8acdd1f4f29a4ed0d2612', 'libsqlite3.arm64.macos.dylib': '44ae2c22adb504b50b9019535d5c7d901eed93cb380b526e710ecb64f529a742', 'libsqlite3.ia32.android.so': 'eb28aed906d4b28ab81cac7742b37652e68b599bb95547cf3fcac456939b2606', 'libsqlite3.ia32.linux.so': 'abfef4eee37a1a7f93c4234cfdb530872b489ebd6eb535b8a3fae9ce0f28805a', 'libsqlite3.riscv64.linux.so': 'f478d471f6b466631cc91a9320f94f3bba9209e419f7ab344fd1ca7547df6839', 'libsqlite3.x64.android.so': '2f235dff75b348ee62e5ae01177ea77ce1b1c9ebae7cb1a499319e7c82ec1358', 'libsqlite3.x64.ios_sim.dylib': '6c15b38f4014cf581d0665c81860f2f1f81e7895878057ca93305b7112bf2b11', 'libsqlite3.x64.linux.so': '148c51687ac3be3487873845690ddbf3d8ee099a5521a193c856008907fb7361', 'libsqlite3.x64.macos.dylib': '0d62e4fe358da23494823804ed66e0dbed43d6f9a5ab71618fad713e4e6d1a38', 'libsqlite3mc.arm.android.so': '7acdde3afc25684b7d14dc3b2af7bb56ccc78032413480b0036af3431c23f45c', 'libsqlite3mc.arm.linux.so': 'cd960fa458519334c7d90ea7ffbe2e652f9e2960d707abd0c9e05b890f999eca', 'libsqlite3mc.arm64.android.so': '858536d508bb0b60f8b06f6f6c1d4465c52431a043ad723f655ea0859e57965c', 'libsqlite3mc.arm64.ios.dylib': '1a45e2fdfdd14eaf4e7f04f35ae4cec153c042b6cfef74a3e56001dd3d2dc589', 'libsqlite3mc.arm64.ios_sim.dylib': 'b49353f173969715cd7dbadb311b22c5cba1d7701fdfd1e4721dadf4c792cc15', 'libsqlite3mc.arm64.linux.so': '2bb3a48cc6baa6697f4a1e8989799ae852e05fc779d7cec0443f01f76a0787c4', 'libsqlite3mc.arm64.macos.dylib': '1fb217fa065b1653b32257eb78e15bc92e5c29ba6ff983ea1b91b2b03e3d35ce', 'libsqlite3mc.ia32.android.so': '23e0625f5df62059432c916c123af2e52547a28b1ef8a7b2ddd76db2d8c5e128', 'libsqlite3mc.riscv64.linux.so': '93a8b841b07b411846dce367e6a9e2e6e56dad438579926f04b4e65e4e581b40', 'libsqlite3mc.x64.android.so': 'a64a3bf30b951915fe196dad47733b8d94351b9711c845858e1079fa35906fef', 'libsqlite3mc.x64.ios_sim.dylib': '1bc73ad3882ed5a179528dacdb9c4ec562780b500a5ea4d00cef460646ce6a9a', 'libsqlite3mc.x64.linux.so': '9139316c6bffee12ea095c5353fa2a10362aa3698cf04cf12ffcf982e248dc1a', 'libsqlite3mc.x64.macos.dylib': '21cd27136d567037eb039228c78c66e904bb20d953f630e2ad5e373ad9f69912', 'sqlite3.arm64.windows.dll': 'eb4a75e3370afdf42046b8d87e3e1b0e6a6b9162f7706af58543457cdf4614ae', 'sqlite3.debug.wasm': '20893f1746963efcd1e2ef03f5183b2b919f7454cc3419622818f9bea9c09fc8', 'sqlite3.ia32.windows.dll': '63e90b2642a59cd4a10c6e47aa19cf3e304a30567f81548c01a5a3ad55ad6797', 'sqlite3.wasm': '3c616bf0d51380daaed7871b3110a634a17c703c22d82cba7a2a73216769e680', 'sqlite3.x64.windows.dll': '15b1e7bee3fede1c90eab94c7eb9bb36ae29c33aa2d61bdc0de546326ae6c089', 'sqlite3mc.arm64.windows.dll': 'cf492f9f796b9e361497150c5bb681f897f1befab4abd1cbd4031a0c02d70515', 'sqlite3mc.ia32.windows.dll': '4ed49dea8e787229d093e02fd0770c5ad7a6ad39f3fa1c48e9924893d6d831f8', 'sqlite3mc.wasm': '79e8fa22aeec7f3ea18de0c54159418e7d23957dd583ba89500704c427329805', 'sqlite3mc.x64.windows.dll': '310882a529f811d34d8b1e29e23f9a6147f6cb0e56bbc5586f2ce3acb00f76ab', }; ================================================ FILE: sqlite3/lib/src/hook/assets.dart ================================================ import 'package:code_assets/code_assets.dart'; import 'asset_hashes.dart'; enum LibraryType { /// SQLite build, with sources taken from https://sqlite.org/download.html. sqlite3, /// SQLite multiple ciphers build, with sources taken from /// https://github.com/utelle/SQLite3MultipleCiphers. sqlite3mc; String get basename => switch (this) { LibraryType.sqlite3 => 'sqlite3', LibraryType.sqlite3mc => 'sqlite3mc', }; String filename(CodeConfig config) { final basename = this.basename; return switch (config.targetOS) { OS.windows => '$basename.dll', OS.iOS || OS.macOS => 'lib$basename.dylib', OS.android || OS.linux || _ => 'lib$basename.so', }; } } enum TargetOperatingSystem { windows(OS.windows), macos(OS.macOS), linux(OS.linux), ios(OS.iOS), iosSimulator(OS.iOS, customName: 'ios_sim'), android(OS.android), unknown(OS.linux, customName: 'unknown'); final OS hookOS; final String? _nameOverride; const TargetOperatingSystem(this.hookOS, {String? customName}) : _nameOverride = customName; String get name => _nameOverride ?? hookOS.name; static TargetOperatingSystem forConfig(CodeConfig config) { return switch (config.targetOS) { OS.windows => windows, OS.macOS => macos, OS.linux => linux, OS.iOS when config.iOS.targetSdk == IOSSdk.iPhoneOS => ios, OS.iOS when config.iOS.targetSdk == IOSSdk.iPhoneSimulator => iosSimulator, OS.android => android, _ => unknown, }; } } final class PrebuiltSqliteLibrary { /// The operating system this library has been compiled for. final TargetOperatingSystem os; /// The target architecture this library has been compiled for. final Architecture architecture; /// The built library (sqlite3 or sqlite3mc). final LibraryType type; PrebuiltSqliteLibrary({ required this.os, required this.architecture, required this.type, }); bool get isSupported { final architectures = _supportedAbis[os]; if (architectures == null || !architectures.contains(architecture)) { return false; } // Compiling sqlite3mc fails for i686 linux builds, so report that as not // supported. final unsupportedCiphersBuild = os == TargetOperatingSystem.linux && architecture == Architecture.ia32 && type == LibraryType.sqlite3mc; return !unsupportedCiphersBuild; } /// The name of this prebuilt library in GitHub releases. String get sourceFilename { if (!isSupported) { throw StateError('Unsupported binary does not have a filename'); } return os.hookOS.dylibFileName( '${type.basename}.${architecture.name}.${os.name}', ); } /// The directory under [HookInput.outputDirectoryShared] used to download /// this library. /// /// There's a test asserting that this is unique for all valid values. String get dirname => 'download-${hashCode.toRadixString(16)}'; @override int get hashCode => Object.hash( os, // Note: Architecture does not have a stable hash code, so we hash its // name instead. architecture.name, type, // This is a constant, but if affects the dirname we want for hook // invocations. releaseTag, ); @override bool operator ==(Object other) { return other is PrebuiltSqliteLibrary && other.os == os && other.architecture == architecture && other.type == type; } void checkSupported() { if (!isSupported) { throw UnsupportedError( 'There is no pre-compiled sqlite3 library for this target. ' 'Please file an issue on https://github.com/simolus3/sqlite3.dart or ' 'use a custom build.', ); } } /// Finds the library instace for the target requested in [CodeConfig]. static PrebuiltSqliteLibrary resolve(CodeConfig config, LibraryType type) { return PrebuiltSqliteLibrary( os: TargetOperatingSystem.forConfig(config), architecture: config.targetArchitecture, type: type, ); } /// All prebuilt sqlite3 libraries attached to GH releases. static Iterable get all sync* { for (final MapEntry(key: os, value: abis) in _supportedAbis.entries) { for (final abi in abis) { for (final product in LibraryType.values) { final built = PrebuiltSqliteLibrary( os: os, architecture: abi, type: product, ); if (built.isSupported) { yield built; } } } } } static const _supportedAbis = { TargetOperatingSystem.linux: [ Architecture.ia32, Architecture.x64, Architecture.riscv64, Architecture.arm, Architecture.arm64, ], TargetOperatingSystem.windows: [ Architecture.ia32, Architecture.x64, Architecture.arm64, ], TargetOperatingSystem.macos: [Architecture.x64, Architecture.arm64], TargetOperatingSystem.ios: [Architecture.arm64], TargetOperatingSystem.iosSimulator: [Architecture.x64, Architecture.arm64], TargetOperatingSystem.android: [ Architecture.ia32, Architecture.x64, Architecture.riscv64, Architecture.arm, Architecture.arm64, ], }; } ================================================ FILE: sqlite3/lib/src/hook/description.dart ================================================ import 'dart:convert'; import 'dart:io'; import 'dart:typed_data'; import 'package:code_assets/code_assets.dart'; import 'package:crypto/crypto.dart'; import 'package:hooks/hooks.dart'; import 'package:path/path.dart' as p; import 'assets.dart'; import 'asset_hashes.dart'; import 'utils.dart'; /// Possible sources to obtain a `libsqlite3.so` (or the equivalent for other /// platforms). sealed class SqliteBinary { static SqliteBinary forBuild(BuildInput input) { final userDefines = input.userDefines; switch (userDefines['source']) { case null: case 'sqlite3': return PrecompiledFromGithubAssets(LibraryType.sqlite3); case 'sqlite3mc': return PrecompiledFromGithubAssets(LibraryType.sqlite3mc); case 'test-sqlite3': return PrecompiledForTesting(LibraryType.sqlite3); case 'test-sqlite3mc': return PrecompiledForTesting(LibraryType.sqlite3mc); case 'system': final osSpecificNameKey = 'name_${input.config.code.targetOS.name}'; return LookupSystem( ((userDefines[osSpecificNameKey] ?? userDefines['name'] ?? 'sqlite3') as String), ); case 'process': return SimpleBinary.fromProcess; case 'executable': return SimpleBinary.fromExecutable; case 'source': return CompileSqlite( sourceFile: userDefines.path('path')!.toFilePath(), defines: CompilerDefines.parse( userDefines, input.config.code.targetOS, ), ); default: throw ArgumentError.value( userDefines['source'], 'source', 'Unknown source. Must be sqlite3, sqlite3mc, system, process or ' 'executable', ); } } } /// A [SqliteBinary] not built or downloaded by the hook. sealed class ExternalSqliteBinary implements SqliteBinary { LinkMode resolveLinkMode(BuildInput input); } /// Load a `sqlite3` library via `dlopen('libsqlite3.so')` or another platform- /// specific name, final class LookupSystem implements ExternalSqliteBinary { /// The base name, used to construct an OS-specific library name. final String name; const LookupSystem(this.name); @override LinkMode resolveLinkMode(BuildInput input) { final targetOS = input.config.code.targetOS; return DynamicLoadingSystem( Uri.parse(targetOS.libraryFileName(name, DynamicLoadingBundled())), ); } } /// Options for resolving a sqlite binary that don't require nested options. enum SimpleBinary implements ExternalSqliteBinary { /// Lookup a `sqlite3` library that has already been loaded into the process. fromProcess, /// Lookup `sqlite3` symbols in the current executable. fromExecutable; @override LinkMode resolveLinkMode(BuildInput input) { switch (this) { case SimpleBinary.fromProcess: return LookupInProcess(); case SimpleBinary.fromExecutable: return LookupInExecutable(); } } } sealed class PrecompiledBinary implements SqliteBinary { final LibraryType type; const PrecompiledBinary._(this.type); PrebuiltSqliteLibrary resolveLibrary(CodeConfig config) { return PrebuiltSqliteLibrary.resolve(config, type); } Stream _fetchFromSource( BuildInput input, BuildOutputBuilder output, String filename, ); Stream fetch( BuildInput input, BuildOutputBuilder output, PrebuiltSqliteLibrary library, ) { return Stream.multi((listener) { final (filename, hash) = _filenameAndHash(library); final source = _fetchFromSource(input, output, filename); final digestSink = OnceSink(); final hasher = sha256.startChunkedConversion(digestSink); source.listen( (data) { listener.addSync(data); hasher.add(data); }, onError: listener.addErrorSync, onDone: () { hasher.close(); final digest = digestSink.value!; if (digest.toString() != hash) { listener.addError( StateError( 'Hash of downloaded file $filename is $digest, expected $hash.', ), ); } listener.close(); }, ); }); } (String, String) _filenameAndHash(PrebuiltSqliteLibrary library) { final filename = library.sourceFilename; final expectedHash = assetNameToSha256Hash[filename]; if (expectedHash == null) { throw UnsupportedError( 'No known file hash for $filename. ' 'Please file an issue on https://github.com/simolus3/sqlite3.dart with ' 'the version of the sqlite3 package in use.', ); } return (filename, expectedHash); } /// Downloads this file into [BuildInput.outputDirectoryShared]. Future downloadIntoOutputDirectoryShared( BuildInput input, BuildOutputBuilder output, PrebuiltSqliteLibrary library, ) async { // Use a subdirectory of shared outputs to allow caching. final dir = Directory( input.outputDirectoryShared.resolve(library.dirname).toFilePath(), ); if (!dir.existsSync()) { dir.createSync(); } // Note: There are name conflicts here, e.g. an Android build will typically // generate a number of libsqlite3.so file names. This is not an issue // because the parent directory is unique per ABI. // We need the file name to be the same because of constraints on Apple // platforms, see https://github.com/flutter/website/pull/13047. final fileName = input.config.code.targetOS.libraryFileName( library.type.basename, DynamicLoadingBundled(), ); final downloadedFile = File(p.join(dir.path, fileName)); if (downloadedFile.existsSync()) { // Hook is re-run with an existing cache. Does the file match what we // expect? final (_, expectedHash) = _filenameAndHash(library); final actualHash = await downloadedFile .openRead() .transform(sha256) .first; if (actualHash.toString() == expectedHash) { // We can reuse the file! return downloadedFile; } } final tmp = File('${downloadedFile.path}.tmp'); await fetch(input, output, library).cast>().pipe(tmp.openWrite()); tmp.renameSync(downloadedFile.path); return downloadedFile; } } /// Download pre-compiled binaries from the GH release for the `sqlite3` /// package. final class PrecompiledFromGithubAssets extends PrecompiledBinary { const PrecompiledFromGithubAssets(super.type) : super._(); @override Stream _fetchFromSource( BuildInput input, BuildOutputBuilder output, String filename, ) async* { final client = HttpClient() // From Dart 3.11, proxy-related environment variables are passed to // hooks. We respect them to ensure we can download these binaries in // environments where that's required // https://github.com/simolus3/sqlite3.dart/issues/335 ..findProxy = HttpClient.findProxyFromEnvironment; final uri = Uri.https( 'github.com', 'simolus3/sqlite3.dart/releases/download/${releaseTag!}/$filename', ); HttpClientResponse response; try { final request = await client.getUrl(uri); response = await request.close(); } catch (e, s) { // Improve error message by providing some context about why we download // SQLite. Error.throwWithStackTrace(CouldNotDownloadException(uri, e), s); } await for (final chunk in response) { if (chunk is Uint8List) { yield chunk; } else { yield Uint8List.fromList(chunk); } } client.close(); } } /// A variant of [PrecompiledFromGithubAssets] that doesn't require a github /// release. /// /// This is only used to test the package: We download the assets we would /// upload for a release build into a folder, and then have the hook look them /// up there. final class PrecompiledForTesting extends PrecompiledBinary { const PrecompiledForTesting(super.type) : super._(); @override Stream _fetchFromSource( BuildInput input, BuildOutputBuilder output, String filename, ) { final uri = input.userDefines.path('directory')!.resolve(filename); output.dependencies.add(uri); return File(uri.toFilePath()).openRead().map( (event) => switch (event) { final Uint8List bytes => bytes, _ => Uint8List.fromList(event), }, ); } } final class CompileSqlite implements SqliteBinary { /// Path to the `sqlite3.c` source file to compile. final String sourceFile; /// User-defines for the SQLite compilation. final CompilerDefines defines; CompileSqlite({required this.sourceFile, required this.defines}); } /// If we're compiling SQLite from source, a way to obtain these sources. sealed class SqliteSources {} /// Obtain a copy of SQLite by downloading the amalgamation. final class DownloadAmalgamation implements SqliteSources { /// The URL to download SQLite from. final String uri; /// The name of the single C file to compile from the downloaded archive. final String filename; const DownloadAmalgamation({ this.uri = 'https://sqlite.org/2025/sqlite-amalgamation-3500200.zip', this.filename = 'sqlite3.c', }); // ignore: unused_element factory DownloadAmalgamation._parse(Object definition) { if (definition is String) { return DownloadAmalgamation(uri: definition); } else if (definition is Map) { return DownloadAmalgamation( uri: definition['uri'] as String, filename: (definition['filename'] as String?) ?? 'sqlite3.c', ); } else { throw ArgumentError.value( definition, 'definition', 'Unknown amalgamation description', ); } } } /// Definition options to use when compiling SQLite. extension type const CompilerDefines(Map flags) implements Map { CompilerDefines overrideWith(CompilerDefines other) { return CompilerDefines({...flags, ...other.flags}); } static CompilerDefines parse(HookInputUserDefines defines, OS targetOS) { final obj = defines['defines']; // Include default options when not explicitly disabled. final includeDefaults = switch (obj) { {'default_options': false} => false, _ => true, }; // Allow adding additional options under defines key or as a top-level // array. final additionalDefines = switch (obj) { {'defines': final options} => _parseOption(options), final List list => _parseOption(list), _ => null, }; final start = includeDefaults ? CompilerDefines.defaults(targetOS == OS.windows) : const CompilerDefines({}); return switch (additionalDefines) { final added? => start.overrideWith(added), null => start, }; } static CompilerDefines _parseOption(Object? option) { if (option is List) { return _parseLines(option.cast()); } else if (option is Map) { return CompilerDefines(option.cast()); } else { throw ArgumentError.value( option, 'option', 'Could not extract defines, should be an array or map of options', ); } } static CompilerDefines _parseLines(Iterable lines) { final entries = {}; for (final line in lines) { if (line.contains('=')) { final [key, value] = line.trim().split('='); entries[key] = value; } else { entries[line.trim()] = null; } } return CompilerDefines(entries); } static CompilerDefines defaults(bool windows) { final defines = _parseLines(const LineSplitter().convert(_defaultDefines)); if (windows) { defines['SQLITE_API'] = '__declspec(dllexport)'; } return defines; } } final class CouldNotDownloadException { final Uri uri; final Object inner; CouldNotDownloadException(this.uri, this.inner); @override String toString() { final message = StringBuffer( 'By default, this package downloads a pre-compiled SQLite library.', ); void line(String line) => message ..writeln() ..write(line); line('This failed (attepted to download $uri).'); if (inner is HandshakeException) { line( 'This looks like a certificate issue. If you need to use proxies, note ' 'that HTTP_PROXY and related environment variables are respected.', ); if (Platform.isWindows) { line( 'Windows loads trusted certificates dynamically, which can cause ' 'issues in Dart (dartbug.com/52266).', ); line( 'Try running this command in PowerShell, and re-build your app ' 'afterwards: Invoke-WebRequest $uri', ); } } line( 'For alternatives to downloading SQLite, see ' 'https://pub.dev/documentation/sqlite3/latest/topics/hook-topic.html', ); line('Original cause: $inner'); return message.toString(); } } // Keep in sync with tool/compile_sqlite.dart const _defaultDefines = ''' SQLITE_ENABLE_DBSTAT_VTAB SQLITE_ENABLE_FTS5 SQLITE_ENABLE_RTREE SQLITE_ENABLE_MATH_FUNCTIONS SQLITE_DQS=0 SQLITE_DEFAULT_MEMSTATUS=0 SQLITE_TEMP_STORE=2 SQLITE_MAX_EXPR_DEPTH=0 SQLITE_STRICT_SUBTYPE=1 SQLITE_OMIT_AUTHORIZATION SQLITE_OMIT_DECLTYPE SQLITE_OMIT_DEPRECATED SQLITE_OMIT_PROGRESS_CALLBACK SQLITE_OMIT_SHARED_CACHE SQLITE_OMIT_TCL_VARIABLE SQLITE_OMIT_TRACE SQLITE_USE_ALLOCA SQLITE_ENABLE_SESSION SQLITE_ENABLE_PREUPDATE_HOOK SQLITE_UNTESTABLE SQLITE_HAVE_ISNAN SQLITE_HAVE_LOCALTIME_R SQLITE_HAVE_LOCALTIME_S SQLITE_HAVE_MALLOC_USABLE_SIZE SQLITE_HAVE_STRCHRNUL '''; ================================================ FILE: sqlite3/lib/src/hook/used_symbols.dart ================================================ // Generated by tool/generate_bindings.dart // Used to generate a linker script hiding functions we don't need. // dart format off const usedSqliteSymbols = { 'sqlite3_temp_directory', 'sqlite3_initialize', 'sqlite3_free', 'sqlite3_open_v2', 'sqlite3_close_v2', 'sqlite3_db_filename', 'sqlite3_compileoption_used', 'sqlite3_compileoption_get', 'sqlite3_busy_handler', 'sqlite3_extended_result_codes', 'sqlite3_extended_errcode', 'sqlite3_errmsg', 'sqlite3_errstr', 'sqlite3_error_offset', 'sqlite3_libversion', 'sqlite3_sourceid', 'sqlite3_libversion_number', 'sqlite3_last_insert_rowid', 'sqlite3_changes', 'sqlite3_exec', 'sqlite3_update_hook', 'sqlite3_commit_hook', 'sqlite3_rollback_hook', 'sqlite3_get_autocommit', 'sqlite3_prepare_v2', 'sqlite3_prepare_v3', 'sqlite3_finalize', 'sqlite3_step', 'sqlite3_reset', 'sqlite3_stmt_isexplain', 'sqlite3_stmt_readonly', 'sqlite3_column_count', 'sqlite3_bind_parameter_count', 'sqlite3_bind_parameter_index', 'sqlite3_column_name', 'sqlite3_column_table_name', 'sqlite3_bind_blob64', 'sqlite3_bind_double', 'sqlite3_bind_int64', 'sqlite3_bind_null', 'sqlite3_bind_text', 'sqlite3_column_blob', 'sqlite3_column_double', 'sqlite3_column_int64', 'sqlite3_column_text', 'sqlite3_column_bytes', 'sqlite3_column_type', 'sqlite3_value_blob', 'sqlite3_value_double', 'sqlite3_value_type', 'sqlite3_value_int64', 'sqlite3_value_text', 'sqlite3_value_bytes', 'sqlite3_value_subtype', 'sqlite3_create_function_v2', 'sqlite3_create_window_function', 'sqlite3_aggregate_context', 'sqlite3_user_data', 'sqlite3_result_blob64', 'sqlite3_result_double', 'sqlite3_result_error', 'sqlite3_result_int64', 'sqlite3_result_null', 'sqlite3_result_text', 'sqlite3_result_subtype', 'sqlite3_create_collation_v2', 'sqlite3_backup_init', 'sqlite3_backup_step', 'sqlite3_backup_finish', 'sqlite3_backup_remaining', 'sqlite3_backup_pagecount', 'sqlite3_auto_extension', 'sqlite3_db_config', 'sqlite3_vfs_register', 'sqlite3_vfs_unregister', 'sqlite3session_create', 'sqlite3session_delete', 'sqlite3session_enable', 'sqlite3session_indirect', 'sqlite3changeset_start', 'sqlite3changeset_finalize', 'sqlite3changeset_next', 'sqlite3changeset_op', 'sqlite3changeset_old', 'sqlite3changeset_new', 'sqlite3changeset_apply', 'sqlite3changeset_invert', 'sqlite3session_patchset', 'sqlite3session_changeset', 'sqlite3session_isempty', 'sqlite3session_attach', 'sqlite3session_diff', }; ================================================ FILE: sqlite3/lib/src/hook/utils.dart ================================================ /// A sink that allows [add] being called exactly once, and then reports the /// value of the added event. final class OnceSink implements Sink { T? value; @override void add(T data) { if (value != null) { throw StateError('add called more than once'); } value = data; } @override void close() { if (value == null) { throw StateError('Must call add before closing.'); } } } ================================================ FILE: sqlite3/lib/src/implementation/bindings.dart ================================================ @internal library; // ignore_for_file: non_constant_identifier_names import 'dart:typed_data'; import 'package:meta/meta.dart'; import '../functions.dart'; import '../vfs.dart'; /// A `sqlite3_changeset_iter` instance. /// /// For iterators created through `sqlite3changeset_start`, implementations /// should use finalizers to automatically call `sqlite3changeset_finalize` /// even when [sqlite3changeset_finalize] is not called explicitly. abstract interface class RawChangesetIterator { // int sqlite3changeset_finalize(sqlite3_changeset_iter *pIter); int sqlite3changeset_finalize(); // int sqlite3changeset_new( // sqlite3_changeset_iter *pIter, /* Changeset iterator */ // int iVal, /* Column number */ // sqlite3_value **ppValue /* OUT: New value (or NULL pointer) */ // ); SqliteResult sqlite3changeset_new(int columnNumber); // int sqlite3changeset_next(sqlite3_changeset_iter *pIter); int sqlite3changeset_next(); // int sqlite3changeset_old( // sqlite3_changeset_iter *pIter, /* Changeset iterator */ // int iVal, /* Column number */ // sqlite3_value **ppValue /* OUT: Old value (or NULL pointer) */ // ); SqliteResult sqlite3changeset_old(int columnNumber); // int sqlite3changeset_op( // sqlite3_changeset_iter *pIter, /* Iterator object */ // const char **pzTab, /* OUT: Pointer to table name */ // int *pnCol, /* OUT: Number of columns in table */ // int *pOp, /* OUT: SQLITE_INSERT, DELETE or UPDATE */ // int *pbIndirect /* OUT: True for an 'indirect' change */ // ); RawChangeSetOp sqlite3changeset_op(); } final class RawChangeSetOp { final String tableName; final int columnCount; final int operation; final int indirect; RawChangeSetOp({ required this.tableName, required this.columnCount, required this.operation, required this.indirect, }); } /// Defines a lightweight abstraction layer around sqlite3 that can be accessed /// without platform-specific APIs (`dart:ffi` or `dart:js`). /// /// The implementation for the user-visible API exposed by this package will /// wrap these raw bindings to provide the more convenient to use Dart API. /// By only requiring platform-specific code for the lowest layer, we can /// advance the overal API with less maintenance overhead, as changes don't /// need to be implemented for both the FFI and the WASM backend. /// /// Methods defined here mirror the corresponding sqlite3 functions where /// applicable. These functions don't do much more than transforming types /// (e.g. a `String` to `sqlite3_char *`). /// Other methods and special considerations are documented separately. /// /// All of the classes and methods defined here are internal and can be changed /// as needed. abstract interface class RawSqliteBindings { // int sqlite3session_create( // sqlite3 *db, /* Database handle */ // const char *zDb, /* Name of db (e.g. "main") */ // sqlite3_session **ppSession /* OUT: New session object */ // ); RawSqliteSession sqlite3session_create(RawSqliteDatabase db, String name); // int sqlite3changeset_apply( // sqlite3 *db, /* Apply change to "main" db of this handle */ // int nChangeset, /* Size of changeset in bytes */ // void *pChangeset, /* Changeset blob */ // int(*xFilter)( // void *pCtx, /* Copy of sixth arg to _apply() */ // const char *zTab /* Table name */ // ), // int(*xConflict)( // void *pCtx, /* Copy of sixth arg to _apply() */ // int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ // sqlite3_changeset_iter *p /* Handle describing change and conflict */ // ), // void *pCtx /* First argument passed to xConflict */ // ); int sqlite3changeset_apply( RawSqliteDatabase database, Uint8List changeset, int Function(String tableName)? filter, int Function(int eConflict, RawChangesetIterator iter) conflict, ); // int sqlite3changeset_start( // sqlite3_changeset_iter **pp, /* OUT: New changeset iterator handle */ // int nChangeset, /* Size of changeset blob in bytes */ // void *pChangeset /* Pointer to blob containing changeset */ // ); RawChangesetIterator sqlite3changeset_start(Uint8List changeset); Uint8List sqlite3changeset_invert(Uint8List changeset); String sqlite3_libversion(); String sqlite3_sourceid(); int sqlite3_libversion_number(); String? sqlite3_temp_directory; SqliteResult sqlite3_open_v2( String name, int flags, String? zVfs, ); String sqlite3_errstr(int extendedErrorCode); void registerVirtualFileSystem(VirtualFileSystem vfs, int makeDefault); void unregisterVirtualFileSystem(VirtualFileSystem vfs); int sqlite3_initialize(); } /// A `sqlite3_session` instance. /// /// Implementations should use finalizers to automatically calls /// `sqlite3session_delete` even when [sqlite3session_delete] is not called /// explcitly. abstract interface class RawSqliteSession { // int sqlite3session_attach( // sqlite3_session *pSession, /* Session object */ // const char *zTab /* Table name */ // ); int sqlite3session_attach([String? name]); // int sqlite3session_changeset( // sqlite3_session *pSession, /* Session object */ // int *pnChangeset, /* OUT: Size of buffer at *ppChangeset */ // void **ppChangeset /* OUT: Buffer containing changeset */ // ); Uint8List sqlite3session_changeset(); Uint8List sqlite3session_patchset(); // void sqlite3session_delete(sqlite3_session *pSession); void sqlite3session_delete(); // int sqlite3session_diff( // sqlite3_session *pSession, // const char *zFromDb, // const char *zTbl, // char **pzErrMsg // ); int sqlite3session_diff(String fromDb, String table); // int sqlite3session_enable(sqlite3_session *pSession, int bEnable); int sqlite3session_enable(int enable); // int sqlite3session_indirect(sqlite3_session *pSession, int bIndirect); int sqlite3session_indirect(int indirect); int sqlite3session_isempty(); } /// Combines a sqlite result code and the result object. typedef SqliteResult = ({T? result, int resultCode}); typedef RawXFunc = void Function(RawSqliteContext, List); typedef RawXStep = void Function(RawSqliteContext, List); typedef RawXFinal = void Function(RawSqliteContext); typedef RawUpdateHook = void Function(int kind, String tableName, int rowId); typedef RawCommitHook = int Function(); typedef RawRollbackHook = void Function(); typedef RawCollation = int Function(String? a, String? b); /// A `sqlite3` instance. /// /// Instances should use finalizers to automatically close the database, even /// when [sqlite3_close_v2] is not called explicitly. abstract interface class RawSqliteDatabase { int sqlite3_changes(); int sqlite3_last_insert_rowid(); int sqlite3_exec(String sql); int sqlite3_extended_errcode(); int sqlite3_error_offset(); void sqlite3_extended_result_codes(int onoff); int sqlite3_close_v2(); String sqlite3_errmsg(); void sqlite3_update_hook(RawUpdateHook? hook); void sqlite3_commit_hook(RawCommitHook? hook); void sqlite3_rollback_hook(RawRollbackHook? hook); /// Returns a compiler able to create prepared statements from the utf8- /// encoded SQL string passed as its argument. RawStatementCompiler newCompiler(List utf8EncodedSql); int sqlite3_create_collation_v2({ required Uint8List collationName, required int eTextRep, required RawCollation collation, }); int sqlite3_create_function_v2({ required Uint8List functionName, required int nArg, required int eTextRep, RawXFunc? xFunc, RawXStep? xStep, RawXFinal? xFinal, }); int sqlite3_create_window_function({ required Uint8List functionName, required int nArg, required int eTextRep, required RawXStep xStep, required RawXFinal xFinal, required RawXFinal xValue, required RawXStep xInverse, }); int sqlite3_busy_handler(int Function(int)? callback); int sqlite3_db_config(int op, int value); int sqlite3_get_autocommit(); } /// A stateful wrapper around multiple `sqlite3_prepare` invocations. abstract interface class RawStatementCompiler { /// The current byte-offset in the SQL statement passed to /// [RawSqliteDatabase.newCompiler]. /// /// After calling [sqlite3_prepare], this value should advance to the end of /// that statement. /// /// The behavior of invoking this getter before the first /// [sqlite3_prepare] is undefined. int get endOffset; /// Compile a statement from the substring at [byteOffset] with a maximum /// length of [length]. SqliteResult sqlite3_prepare( int byteOffset, int length, int prepFlag, ); /// Releases resources used by this compiler interface. void close(); } /// A `sqlite3_stmt` instance. /// /// Instances should use finalizers to automatically call `sqlite3_finalize` on /// the statement, even when [sqlite3_finalize] is not called explicitly. abstract interface class RawSqliteStatement { void sqlite3_reset(); int sqlite3_step(); void sqlite3_finalize(); int sqlite3_bind_parameter_index(String name); int sqlite3_bind_null(int index); int sqlite3_bind_int64(int index, int value); int sqlite3_bind_int64BigInt(int index, BigInt value); int sqlite3_bind_double(int index, double value); int sqlite3_bind_text(int index, String value); int sqlite3_bind_blob64(int index, List value); int sqlite3_column_count(); String sqlite3_column_name(int index); bool get supportsReadingTableNameForColumn; String? sqlite3_column_table_name(int index); int sqlite3_column_type(int index); int sqlite3_column_int64(int index); /// (Only used on the web): Like [sqlite3_column_int64], but wrapping the /// result in a [BigInt] if it's too large to be represented in a JavaScript /// [int] implementation. Object sqlite3_column_int64OrBigInt(int index); double sqlite3_column_double(int index); String sqlite3_column_text(int index); Uint8List sqlite3_column_bytes(int index); int sqlite3_bind_parameter_count(); int sqlite3_stmt_readonly(); int sqlite3_stmt_isexplain(); } abstract interface class RawSqliteContext { AggregateContext? dartAggregateContext; void sqlite3_result_null(); void sqlite3_result_int64(int value); void sqlite3_result_int64BigInt(BigInt value); void sqlite3_result_double(double value); void sqlite3_result_text(String text); void sqlite3_result_blob64(List blob); void sqlite3_result_error(String message); void sqlite3_result_subtype(int value); } abstract interface class RawSqliteValue { int sqlite3_value_type(); int sqlite3_value_int64(); double sqlite3_value_double(); String sqlite3_value_text(); Uint8List sqlite3_value_blob(); int sqlite3_value_subtype(); } ================================================ FILE: sqlite3/lib/src/implementation/database.dart ================================================ import 'dart:async'; import 'dart:collection'; import 'dart:convert'; import 'dart:typed_data'; import 'package:meta/meta.dart'; import '../constants.dart'; import '../database.dart'; import '../exception.dart'; import '../functions.dart'; import '../result_set.dart'; import '../statement.dart'; import 'bindings.dart'; import 'exception.dart'; import 'statement.dart'; import 'utils.dart'; base class DatabaseImplementation implements CommonDatabase { final RawSqliteBindings bindings; // Note: Implementations of this have platform-specific finalizers on them. final RawSqliteDatabase database; /// Whether the raw [database] represents a borrowed SQLite connection not /// owned by this Dart object. /// /// This mainly means that [close] will not call `sqlite3_close_v2` /// internally. bool isBorrowed; _StreamHandlers? _updates; _StreamHandlers? _rollbacks; _StreamHandlers? _commits; @internal var isClosed = false; @override DatabaseConfig get config => DatabaseConfigImplementation(this); @override int get userVersion { final stmt = prepare('PRAGMA user_version;'); try { final result = stmt.select(); final version = result.first.columnAt(0) as int; return version; } finally { stmt.close(); } } @override set userVersion(int value) { execute('PRAGMA user_version = $value;'); } DatabaseImplementation( this.bindings, this.database, { required this.isBorrowed, }); @visibleForOverriding StatementImplementation wrapStatement(String sql, RawSqliteStatement stmt) { return StatementImplementation(sql, this, stmt); } void _ensureOpen() { if (isClosed) { throw StateError('This database has already been closed'); } } _StreamHandlers _updatesHandler() { return _updates ??= _StreamHandlers( database: this, register: () { database.sqlite3_update_hook((kind, tableName, rowId) { final updateKind = SqliteUpdateKind.fromCode(kind); if (updateKind == null) { return; } final update = SqliteUpdate(updateKind, tableName, rowId); _updates!.deliverAsyncEvent(update); }); }, unregister: () => database.sqlite3_update_hook(null), ); } _StreamHandlers _rollbackHandler() { return _rollbacks ??= _StreamHandlers( database: this, register: () => database.sqlite3_rollback_hook(() { _rollbacks!.deliverAsyncEvent(null); }), unregister: () => database.sqlite3_rollback_hook(null), ); } _StreamHandlers _commitHandler() { return _commits ??= _StreamHandlers( database: this, register: () => database.sqlite3_commit_hook(() { var complete = true; if (_commits!.syncCallback case final callback?) { complete = callback(); } if (complete) { _commits!.deliverAsyncEvent(null); // There's no reason to deliver a rollback event if the synchronous // handler determined that the transaction should be reverted, sqlite3 // will emit a rollbacke event for us. } return complete ? 0 : 1; }), unregister: () => database.sqlite3_commit_hook(null), ); } Uint8List _validateAndEncodeFunctionName(String functionName) { final functionNameBytes = utf8.encode(functionName); if (functionNameBytes.length > 255) { throw ArgumentError.value( functionName, 'functionName', 'Must not exceed 255 bytes when utf-8 encoded', ); } return Uint8List.fromList(functionNameBytes); } @override void createAggregateFunction({ required String functionName, required AggregateFunction function, AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(), bool deterministic = false, bool directOnly = true, bool subtype = false, }) { final name = _validateAndEncodeFunctionName(functionName); final textRep = eTextRep(deterministic, directOnly, subtype); int result; AggregateContext readOrCreateContext(RawSqliteContext raw) { var dartContext = raw.dartAggregateContext as AggregateContext?; return dartContext ??= raw.dartAggregateContext = function .createContext(); } void step(RawSqliteContext context, List args) { final dartContext = readOrCreateContext(context); context.runWithArgsAndSetResult( (args) => function.step(args, dartContext), args, ); } void finalize(RawSqliteContext context) { context.runAndSetResult(() { final existingContext = context.dartAggregateContext as AggregateContext?; return function.finalize(existingContext ?? function.createContext()); }); } if (function is WindowFunction) { result = database.sqlite3_create_window_function( functionName: name, nArg: argumentCount.allowedArgs, eTextRep: textRep, xStep: step, xFinal: finalize, xValue: (context) { context.runAndSetResult(() { return function.value(readOrCreateContext(context)); }); }, xInverse: (context, args) { final dartContext = readOrCreateContext(context); context.runWithArgsAndSetResult( (args) => function.inverse(args, dartContext), args, ); }, ); } else { result = database.sqlite3_create_function_v2( functionName: name, nArg: argumentCount.allowedArgs, eTextRep: textRep, xStep: step, xFinal: finalize, ); } if (result != SqlError.SQLITE_OK) { throwException(this, result); } } @override void createFunction({ required String functionName, required ScalarFunction function, AllowedArgumentCount argumentCount = const AllowedArgumentCount.any(), bool deterministic = false, bool directOnly = true, bool subtype = false, }) { final returnCode = database.sqlite3_create_function_v2( functionName: _validateAndEncodeFunctionName(functionName), nArg: argumentCount.allowedArgs, eTextRep: eTextRep(deterministic, directOnly, subtype), xFunc: (context, args) { context.runWithArgsAndSetResult(function, args); }, ); if (returnCode != SqlError.SQLITE_OK) { throwException(this, returnCode); } } @override void createCollation({ required String name, required CollatingFunction function, }) { final result = database.sqlite3_create_collation_v2( collationName: _validateAndEncodeFunctionName(name), eTextRep: eTextRep(false, false, false), collation: function, ); if (result != SqlError.SQLITE_OK) { throwException(this, result); } } @override void dispose() { return close(); } @override void close() { if (isClosed) return; isClosed = true; _updates?.close(); _commits?.close(); _rollbacks?.close(); if (isBorrowed) { // Keep the connection open for the actual owner of it to use. return; } database.sqlite3_update_hook(null); database.sqlite3_commit_hook(null); database.sqlite3_rollback_hook(null); final code = database.sqlite3_close_v2(); SqliteException? exception; if (code != SqlError.SQLITE_OK) { exception = createExceptionRaw( bindings, database, code, operation: 'closing database', ); } if (exception != null) { throw exception; } } @override void execute(String sql, [List parameters = const []]) { if (parameters.isEmpty) { // No parameters? Use sqlite3_exec since that can run multiple statements // at once. _ensureOpen(); final result = database.sqlite3_exec(sql); if (result != SqlError.SQLITE_OK) { throwException( this, result, operation: 'executing', previousStatement: sql, statementArgs: parameters, ); } } else { final stmt = prepare(sql, checkNoTail: true); try { stmt.execute(parameters); } finally { stmt.close(); } } } @override int get updatedRows => database.sqlite3_changes(); @override int getUpdatedRows() => updatedRows; @override int get lastInsertRowId => database.sqlite3_last_insert_rowid(); @override bool get autocommit { return database.sqlite3_get_autocommit() != 0; } @override set busyHandler(bool Function(int count)? handler) { final result = database.sqlite3_busy_handler(switch (handler) { null => null, final handler => (count) => handler(count) ? 1 : 0, }); if (result != SqlError.SQLITE_OK) { throwException(this, result, operation: 'set busy handler'); } } List _prepareInternal( String sql, { bool persistent = false, bool vtab = true, int? maxStatements, bool checkNoTail = false, }) { _ensureOpen(); final bytes = utf8.encode(sql); final compiler = database.newCompiler(bytes); var prepFlags = 0; if (persistent) { prepFlags |= SqlPrepareFlag.SQLITE_PREPARE_PERSISTENT; } if (!vtab) { prepFlags |= SqlPrepareFlag.SQLITE_PREPARE_NO_VTAB; } final createdStatements = []; var offset = 0; void freeIntermediateResults() { compiler.close(); for (final stmt in createdStatements) { stmt.dispose(); } } while (offset < bytes.length) { final result = compiler.sqlite3_prepare( offset, bytes.length - offset, prepFlags, ); if (result.resultCode != SqlError.SQLITE_OK) { freeIntermediateResults(); throwException( this, result.resultCode, operation: 'preparing statement', previousStatement: sql, ); } final endOffset = compiler.endOffset; // prepare can return a null pointer with SQLITE_OK if only whitespace // or comments were parsed. That's fine, just skip over it then. final stmt = result.result; if (stmt != null) { final stmtSql = utf8.decoder.convert(bytes, offset, endOffset); createdStatements.add(wrapStatement(stmtSql, stmt)); } offset = endOffset; if (createdStatements.length == maxStatements) { break; } } if (checkNoTail) { // Issue another prepare call at the current offset to account for // potential whitespace. while (offset < bytes.length) { final result = compiler.sqlite3_prepare( offset, bytes.length - offset, prepFlags, ); offset = compiler.endOffset; final stmt = result.result; if (stmt != null) { // Had an unexpected trailing statement -> throw! createdStatements.add(wrapStatement('', stmt)); freeIntermediateResults(); throw ArgumentError.value( sql, 'sql', 'Had an unexpected trailing statement.', ); } else if (result.resultCode != SqlError.SQLITE_OK) { // Invalid content that's not just a whitespace or a comment. freeIntermediateResults(); throw ArgumentError.value( sql, 'sql', 'Has trailing data after the first sql statement:', ); } } } compiler.close(); return createdStatements; } @override CommonPreparedStatement prepare( String sql, { bool persistent = false, bool vtab = true, bool checkNoTail = false, }) { final stmts = _prepareInternal( sql, persistent: persistent, vtab: vtab, maxStatements: 1, checkNoTail: checkNoTail, ); if (stmts.isEmpty) { // Can happen without a syntax error if we're only given whitespace or // comments. throw ArgumentError.value(sql, 'sql', 'Must contain an SQL statement.'); } return stmts.first; } @override List prepareMultiple( String sql, { bool persistent = false, bool vtab = true, }) { return _prepareInternal(sql, persistent: persistent, vtab: vtab); } @override ResultSet select(String sql, [List parameters = const []]) { final stmt = prepare(sql, checkNoTail: true); try { return stmt.select(parameters); } finally { stmt.close(); } } @override Stream get updates => _updatesHandler().stream; @override Stream get updatesSync => _updatesHandler().syncStream; @override Stream get rollbacks => _rollbackHandler().stream; @override Stream get commits => _commitHandler().stream; @override VoidPredicate? get commitFilter => _commitHandler().syncCallback; @override set commitFilter(VoidPredicate? commitFilter) { _commitHandler().syncCallback = commitFilter; } } extension on RawSqliteContext { void runWithArgsAndSetResult( Object? Function(SqliteArguments) function, List args, ) { final dartArgs = ValueList(args); try { setResult(function(dartArgs)); } on Object catch (e) { sqlite3_result_error(Error.safeToString(e)); } finally { dartArgs.isValid = false; } } void runAndSetResult(Object? Function() function) { try { setResult(function()); } on Object catch (e) { sqlite3_result_error(Error.safeToString(e)); } } void setResult(Object? result) => switch (result) { null => sqlite3_result_null(), int() => sqlite3_result_int64(result), BigInt() => sqlite3_result_int64BigInt(result.checkRange), double() => sqlite3_result_double(result), bool() => sqlite3_result_int64(result ? 1 : 0), String() => sqlite3_result_text(result), List() => sqlite3_result_blob64(result), SubtypedValue() => setSubtypedResult(result), _ => throw ArgumentError.value(result, 'result', 'Unsupported type'), }; void setSubtypedResult(SubtypedValue result) { setResult(result.originalValue); sqlite3_result_subtype(result.subtype); } } /// An unmodifiable Dart list backed by native sqlite3 values. class ValueList extends ListBase implements SqliteArguments { final List rawValues; final List _cachedCopies; bool isValid = true; ValueList(this.rawValues) : _cachedCopies = List.filled(rawValues.length, null); @override int get length => rawValues.length; @override set length(int newLength) { throw UnsupportedError('Changing the length of sql arguments in Dart'); } @override Object? operator [](int index) { assert( isValid, 'Invalid arguments. This commonly happens when an application-defined ' 'sql function leaks its arguments after it finishes running. ' 'Please use List.of(arguments) in the function to create a copy of ' 'the argument instead.', ); RangeError.checkValidIndex(index, this, 'index', length); return _cachedCopies[index] ??= rawValues[index].read(); } @override void operator []=(int index, Object? value) { throw ArgumentError('The argument list is unmodifiable'); } @override int subtypeOf(int argumentIndex) { final value = rawValues[RangeError.checkValidIndex( argumentIndex, this, 'argumentIndex', length, )]; return value.sqlite3_value_subtype(); } } final class DatabaseConfigImplementation extends DatabaseConfig { final DatabaseImplementation database; DatabaseConfigImplementation(this.database); @override void setIntConfig(int key, int configValue) { final resultDML = database.database.sqlite3_db_config(key, configValue); if (resultDML != SqlError.SQLITE_OK) { throwException(database, resultDML); } } } /// A shared implementation for the [CommonDatabase.updates], /// [CommonDatabase.commits] and [CommonDatabase.rollbacks] streams used by /// [DatabaseImplementation]. /// /// [T] is the event type of the stream. These streams wrap SQLite callbacks /// which are not supposed to make their own database calls. Thus, all streams /// have an asynchronous delay from when the C callback is called. /// The commits stream also supports a synchronous callback that can turn /// commits into rollbacks. This is represented by [_syncCallback]. final class _StreamHandlers { final DatabaseImplementation _database; final List<({MultiStreamController controller, bool sync})> _asyncListeners = []; SyncCallback? _syncCallback; /// Registers a native callback on the database. final void Function() _register; /// Unregisters the native callback on the database. final void Function() _unregister; Stream? _stream; Stream? _syncStream; Stream get stream => _stream ??= _generateStream(false); Stream get syncStream => _syncStream ??= _generateStream(true); _StreamHandlers({ required DatabaseImplementation database, required void Function() register, required void Function() unregister, }) : _database = database, _register = register, _unregister = unregister; Stream _generateStream(bool dispatchSynchronously) { return Stream.multi((newListener) { if (_database.isClosed) { newListener.close(); return; } void addListener() { _addAsyncListener(newListener, dispatchSynchronously); } void removeListener() { _removeAsyncListener(newListener, dispatchSynchronously); } newListener ..onPause = removeListener ..onCancel = removeListener ..onResume = addListener; // Since this is a onListen callback, add listener now addListener(); }, isBroadcast: true); } bool get hasListener => _asyncListeners.isNotEmpty || _syncCallback != null; SyncCallback? get syncCallback => _syncCallback; set syncCallback(SyncCallback? value) { if (value != _syncCallback) { final hadListenerBefore = hasListener; _syncCallback = value; final hasListenerNow = hasListener; if (!hadListenerBefore && hasListenerNow) { _register(); } else if (hadListenerBefore && !hasListenerNow) { _unregister(); } } } void _addAsyncListener(MultiStreamController listener, bool sync) { final isFirstListener = !hasListener; _asyncListeners.add((controller: listener, sync: sync)); if (isFirstListener) { _register(); } } void _removeAsyncListener(MultiStreamController listener, bool sync) { _asyncListeners.remove((controller: listener, sync: sync)); if (!hasListener && !_database.isClosed) { _unregister(); } } void deliverAsyncEvent(T event) { for (final listener in _asyncListeners) { if (listener.sync) { listener.controller.addSync(event); } else { listener.controller.add(event); } } } void close() { for (final listener in _asyncListeners) { listener.controller.close(); } _syncCallback = null; } } ================================================ FILE: sqlite3/lib/src/implementation/exception.dart ================================================ import '../exception.dart'; import 'bindings.dart'; import 'database.dart'; SqliteException createExceptionOutsideOfDatabase( RawSqliteBindings bindings, int resultCode, { String? operation, }) { final errStr = bindings.sqlite3_errstr(resultCode); return SqliteException( extendedResultCode: resultCode, message: errStr, operation: operation, ); } SqliteException createExceptionRaw( RawSqliteBindings bindings, RawSqliteDatabase db, int returnCode, { String? operation, String? previousStatement, List? statementArgs, }) { // Getting hold of more explanatory error code as SQLITE_IOERR error group has // an extensive list of extended error codes final extendedCode = db.sqlite3_extended_errcode(); final offset = switch (db.sqlite3_error_offset()) { < 0 => null, final offset => offset, }; return createExceptionFromExtendedCode( bindings, db, returnCode, extendedCode, operation: operation, previousStatement: previousStatement, statementArgs: statementArgs, offset: offset, ); } SqliteException createExceptionFromExtendedCode( RawSqliteBindings bindings, RawSqliteDatabase db, int returnCode, int extendedErrorCode, { String? operation, String? previousStatement, List? statementArgs, int? offset, }) { // We don't need to free the pointer returned by sqlite3_errmsg: "Memory to // hold the error message string is managed internally. The application does // not need to worry about freeing the result." // https://www.sqlite.org/c3ref/errcode.html final dbMessage = db.sqlite3_errmsg(); final errStr = bindings.sqlite3_errstr(extendedErrorCode); final explanation = '$errStr (code $extendedErrorCode)'; return SqliteException( extendedResultCode: returnCode, message: dbMessage, explanation: explanation, causingStatement: previousStatement, parametersToStatement: statementArgs, operation: operation, offset: offset, ); } SqliteException createException( DatabaseImplementation db, int returnCode, { String? operation, String? previousStatement, List? statementArgs, }) { return createExceptionRaw( db.bindings, db.database, returnCode, operation: operation, previousStatement: previousStatement, statementArgs: statementArgs, ); } Never throwException( DatabaseImplementation db, int returnCode, { String? operation, String? previousStatement, List? statementArgs, int? offset, }) { throw createException( db, returnCode, operation: operation, previousStatement: previousStatement, statementArgs: statementArgs, ); } ================================================ FILE: sqlite3/lib/src/implementation/session.dart ================================================ import 'dart:typed_data'; import '../constants.dart'; import '../database.dart'; import '../session.dart'; import 'bindings.dart'; import 'database.dart'; import 'exception.dart'; import 'utils.dart'; final class SessionImplementation implements Session { final RawSqliteBindings bindings; // Note: Implementations of this have platform-specific finalizers on them. final RawSqliteSession session; bool _deleted = false; SessionImplementation(this.bindings, this.session); static SessionImplementation createSession( DatabaseImplementation db, String name, ) { final bindings = db.bindings; final result = bindings.sqlite3session_create(db.database, name); return SessionImplementation(bindings, result); } void _checkNotDeleted() { if (_deleted) { throw StateError('This session has already been deleted'); } } @override Changeset changeset() { _checkNotDeleted(); final bytes = session.sqlite3session_changeset(); return ChangesetImplementation(bytes, bindings); } @override Patchset patchset() { _checkNotDeleted(); final bytes = session.sqlite3session_patchset(); return PatchsetImplementation(bytes, bindings); } @override void delete() { if (!_deleted) { _deleted = true; session.sqlite3session_delete(); } } @override void diff(String fromDb, String table) { final result = session.sqlite3session_diff(fromDb, table); if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(bindings, result); } } @override bool get enabled { _checkNotDeleted(); return session.sqlite3session_enable(-1) == 1; } @override set enabled(bool enabled) { _checkNotDeleted(); final result = session.sqlite3session_enable(enabled ? 1 : 0); if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(bindings, result); } } @override bool get isIndirect { _checkNotDeleted(); return session.sqlite3session_indirect(-1) == 1; } @override set isIndirect(bool isIndirect) { _checkNotDeleted(); final result = session.sqlite3session_enable(isIndirect ? 1 : 0); if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(bindings, result); } } @override bool get isEmpty { _checkNotDeleted(); return session.sqlite3session_isempty() != 0; } @override bool get isNotEmpty => !isEmpty; @override void attach([String? table]) { _checkNotDeleted(); final result = session.sqlite3session_attach(table); if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(bindings, result); } } } final class PatchsetImplementation with Iterable implements Patchset { @override final Uint8List bytes; final RawSqliteBindings bindings; PatchsetImplementation(this.bytes, this.bindings); @override void applyTo( CommonDatabase database, [ ApplyChangesetOptions options = const ApplyChangesetOptions(), ]) { final db = database as DatabaseImplementation; final filter = switch (options.filter) { null => null, final filter => (String table) { return filter(table) ? 1 : 0; }, }; final conflict = switch (options.onConflict) { null => (int _, RawChangesetIterator _) { return ApplyChangesetConflict.abort.flag; }, final conflict => (int conflictKind, RawChangesetIterator it) { return conflict.flag; }, }; db.bindings.sqlite3changeset_apply(db.database, bytes, filter, conflict); } @override ChangesetIterator get iterator { final raw = bindings.sqlite3changeset_start(bytes); return ChangesetIteratorImplementation(bindings, raw); } } final class ChangesetImplementation extends PatchsetImplementation implements Changeset { ChangesetImplementation(super.bytes, super.bindings); @override Changeset operator -() { final result = bindings.sqlite3changeset_invert(bytes); return ChangesetImplementation(result, bindings); } } final class ChangesetIteratorImplementation implements ChangesetIterator { final RawSqliteBindings bindings; final RawChangesetIterator raw; bool _isFinalized = false; @override late ChangesetOperation current; ChangesetIteratorImplementation(this.bindings, this.raw); @override bool moveNext() { if (_isFinalized) { return false; } final result = raw.sqlite3changeset_next(); if (result == SqlError.SQLITE_ROW) { final op = raw.sqlite3changeset_op(); final kind = SqliteUpdateKind.fromCode(op.operation)!; final oldColumns = kind != SqliteUpdateKind.insert ? List.generate(op.columnCount, (i) { final rawValue = raw.sqlite3changeset_old(i); return _readChangesetValue(rawValue); }) : null; final newColumns = kind != SqliteUpdateKind.delete ? List.generate(op.columnCount, (i) { final rawValue = raw.sqlite3changeset_new(i); return _readChangesetValue(rawValue); }) : null; current = ChangesetOperation( table: op.tableName, columnCount: op.columnCount, operation: kind, oldValues: oldColumns, newValues: newColumns, ); return true; } finalize(); return false; } Object? _readChangesetValue(SqliteResult result) { return switch (result.resultCode) { 0 => result.result?.read(), _ => throw createExceptionOutsideOfDatabase(bindings, result.resultCode), }; } @override void finalize() { if (_isFinalized) { return; } _isFinalized = true; final result = raw.sqlite3changeset_finalize(); if (result != SqlError.SQLITE_OK) { throw createExceptionOutsideOfDatabase(bindings, result); } } } ================================================ FILE: sqlite3/lib/src/implementation/sqlite3.dart ================================================ import 'package:meta/meta.dart'; import '../constants.dart'; import '../database.dart'; import '../exception.dart'; import '../sqlite3.dart'; import '../vfs.dart'; import 'bindings.dart'; import 'database.dart'; import 'exception.dart'; base class Sqlite3Implementation implements CommonSqlite3 { final RawSqliteBindings bindings; const Sqlite3Implementation(this.bindings); @visibleForOverriding CommonDatabase wrapDatabase( RawSqliteDatabase rawDb, { bool isBorrowed = false, }) { return DatabaseImplementation(bindings, rawDb, isBorrowed: isBorrowed); } @override String? get tempDirectory => bindings.sqlite3_temp_directory; @override set tempDirectory(String? value) => bindings.sqlite3_temp_directory = value; void initialize() { final rc = bindings.sqlite3_initialize(); if (rc != 0) { throw SqliteException( extendedResultCode: rc, message: 'Error returned by sqlite3_initialize', ); } } @override CommonDatabase open( String filename, { String? vfs, OpenMode mode = OpenMode.readWriteCreate, bool uri = false, bool? mutex, }) { initialize(); int flags; switch (mode) { case OpenMode.readOnly: flags = SqlFlag.SQLITE_OPEN_READONLY; break; case OpenMode.readWrite: flags = SqlFlag.SQLITE_OPEN_READWRITE; break; case OpenMode.readWriteCreate: flags = SqlFlag.SQLITE_OPEN_READWRITE | SqlFlag.SQLITE_OPEN_CREATE; break; } if (uri) { flags |= SqlFlag.SQLITE_OPEN_URI; } if (mutex != null) { flags |= mutex ? SqlFlag.SQLITE_OPEN_FULLMUTEX : SqlFlag.SQLITE_OPEN_NOMUTEX; } final result = bindings.sqlite3_open_v2(filename, flags, vfs); if (result.resultCode != SqlError.SQLITE_OK) { // It's possible for us to have a database even if opening it failed. Only // if allocating memory for the connection failed would we not have a // database. if (result.result case final database?) { final exception = createExceptionRaw( bindings, database, result.resultCode, operation: 'opening the database', ); // Close the database after creating the exception, which needs to read // the extended error from the database. database.sqlite3_close_v2(); throw exception; } else { throw createExceptionOutsideOfDatabase(bindings, result.resultCode); } } return wrapDatabase(result.result!..sqlite3_extended_result_codes(1)); } @override CommonDatabase openInMemory({String? vfs}) { return open(':memory:', vfs: vfs); } @override void registerVirtualFileSystem( VirtualFileSystem vfs, { bool makeDefault = false, }) { initialize(); bindings.registerVirtualFileSystem(vfs, makeDefault ? 1 : 0); } @override void unregisterVirtualFileSystem(VirtualFileSystem vfs) { bindings.unregisterVirtualFileSystem(vfs); } @override Version get version { return Version( bindings.sqlite3_libversion(), bindings.sqlite3_sourceid(), bindings.sqlite3_libversion_number(), ); } } ================================================ FILE: sqlite3/lib/src/implementation/statement.dart ================================================ import '../constants.dart'; import '../result_set.dart'; import '../statement.dart'; import 'bindings.dart'; import 'database.dart'; import 'exception.dart'; import 'utils.dart'; base class StatementImplementation extends CommonPreparedStatement { // Note: Implementations of this have platform-specific finalizers on them. final RawSqliteStatement statement; final DatabaseImplementation database; bool isBorrowed; @override final String sql; List? _latestArguments; bool _inResetState = true; bool _closed = false; _ActiveCursorIterator? _currentCursor; StatementImplementation( this.sql, this.database, this.statement, { this.isBorrowed = false, }); List get _columnNames { final columnCount = statement.sqlite3_column_count(); return [ for (var i = 0; i < columnCount; i++) statement.sqlite3_column_name(i), ]; } List? get _tableNames { if (!statement.supportsReadingTableNameForColumn) { return null; } final columnCount = statement.sqlite3_column_count(); return List.generate(columnCount, statement.sqlite3_column_table_name); } void _ensureNotFinalized() { if (_closed || database.isClosed) { throw StateError('Tried to operate on a released prepared statement'); } } void _ensureMatchingParameters(List? parameters) { final length = parameters?.length ?? 0; final count = parameterCount; if (length != count) { throw ArgumentError.value( parameters, 'parameters', 'Expected $count parameters, got $length', ); } } int _step() => statement.sqlite3_step(); void _execute() { int result; _inResetState = false; // Users should be able to execute statements returning rows, so we should // call _step() to skip past rows. do { result = _step(); } while (result == SqlError.SQLITE_ROW); if (result != SqlError.SQLITE_OK && result != SqlError.SQLITE_DONE) { throwException( database, result, operation: 'executing statement', previousStatement: sql, statementArgs: _latestArguments, ); } } ResultSet _selectResults() { final rows = >[]; _inResetState = false; int columnCount = -1; int resultCode; while ((resultCode = _step()) == SqlError.SQLITE_ROW) { // sqlite3_column_count() must be called after _step() because step() can // re-compile the statement after schema changes, potentially leading to // a different amount of columns. if (columnCount == -1) { columnCount = statement.sqlite3_column_count(); } assert(columnCount >= 0); rows.add([for (var i = 0; i < columnCount; i++) _readValue(i)]); } if (resultCode != SqlError.SQLITE_OK && resultCode != SqlError.SQLITE_DONE) { throwException( database, resultCode, operation: 'selecting from statement', previousStatement: sql, statementArgs: _latestArguments, ); } final names = _columnNames; final tableNames = _tableNames; return ResultSet(names, tableNames, rows); } Object? _readValue(int index) { final type = statement.sqlite3_column_type(index); switch (type) { case SqlType.SQLITE_INTEGER: const hasNativeInts = !identical(0.0, 0); if (hasNativeInts) { return statement.sqlite3_column_int64(index); } else { // Wrap in BigInt if needed return statement.sqlite3_column_int64OrBigInt(index); } case SqlType.SQLITE_FLOAT: return statement.sqlite3_column_double(index); case SqlType.SQLITE_TEXT: return statement.sqlite3_column_text(index); case SqlType.SQLITE_BLOB: return statement.sqlite3_column_bytes(index); case SqlType.SQLITE_NULL: default: return null; } } void _bindIndexedParams(List? params) { _ensureMatchingParameters(params); if (params == null || params.isEmpty) return; // variables in sqlite are 1-indexed for (var i = 1; i <= params.length; i++) { final Object? param = params[i - 1]; _bindParam(param, i); } _latestArguments = params; } void _bindMapParams(Map params) { final expectedLength = parameterCount; final paramsAsList = List.filled(expectedLength, null); if (params.isEmpty) { if (expectedLength != 0) { throw ArgumentError.value( params, 'params', 'Expected $expectedLength parameters, but none were set.', ); } return; } for (final key in params.keys) { final Object? param = params[key]; final i = statement.sqlite3_bind_parameter_index(key); // SQL parameters are 1-indexed, so 0 indicates that no parameter with // that name was found. if (i == 0) { throw ArgumentError.value( params, 'params', 'This statement contains no parameter named `$key`', ); } _bindParam(param, i); paramsAsList[i - 1] = param; } // If we reached this point. All parameters from [params] were bound. Check // if the statement contains no additional parameters. if (expectedLength != params.length) { throw ArgumentError.value( params, 'params', 'Expected $expectedLength parameters', ); } _latestArguments = paramsAsList; } void _bindParam(Object? param, int i) { final rc = switch (param) { null => statement.sqlite3_bind_null(i), int() => statement.sqlite3_bind_int64(i, param), BigInt() => statement.sqlite3_bind_int64BigInt(i, param.checkRange), bool() => statement.sqlite3_bind_int64(i, param ? 1 : 0), double() => statement.sqlite3_bind_double(i, param), String() => statement.sqlite3_bind_text(i, param), List() => statement.sqlite3_bind_blob64(i, param), _ => _bindCustomParam(param, i), }; if (rc != SqlError.SQLITE_OK) { throwException( database, rc, operation: 'binding parameter', previousStatement: sql, statementArgs: _latestArguments, ); } } int _bindCustomParam(Object param, int i) { if (param is CustomStatementParameter) { param.applyTo(this, i); return 0; } throw ArgumentError.value( param, 'params[$i]', 'Allowed parameters must either be null or bool, int, num, String or ' 'List.', ); } void _bindParams(StatementParameters parameters) { switch (parameters) { case IndexedParameters(): _bindIndexedParams(parameters.parameters); case NamedParameters(): _bindMapParams(parameters.parameters); case CustomParameters(): parameters.bind(this); } } @override void reset() { if (!_inResetState) { statement.sqlite3_reset(); _inResetState = true; } _currentCursor = null; } @override void dispose() { close(); } @override void close() { if (!_closed) { _closed = true; reset(); if (!isBorrowed) statement.sqlite3_finalize(); } } @override ResultSet selectWith(StatementParameters parameters) { _ensureNotFinalized(); reset(); _bindParams(parameters); return _selectResults(); } @override void executeWith(StatementParameters parameters) { _ensureNotFinalized(); reset(); _bindParams(parameters); _execute(); } @override IteratingCursor iterateWith(StatementParameters parameters) { _ensureNotFinalized(); reset(); _bindParams(parameters); return _currentCursor = _ActiveCursorIterator(this); } @override int get parameterCount => statement.sqlite3_bind_parameter_count(); @override bool get isReadOnly => statement.sqlite3_stmt_readonly() != 0; @override bool get isExplain => statement.sqlite3_stmt_isexplain() != 0; @override ResultSet selectMap(Map parameters) { _ensureNotFinalized(); reset(); _bindMapParams(parameters); return _selectResults(); } } class _ActiveCursorIterator extends IteratingCursor { final StatementImplementation statement; int columnCount = -1; @override late Row current; /// We can only reliably know the columns of a statement after step() has been /// called once. /// /// However, that also consumes a row which must happen in [moveNext]. This /// interface unfortunately exposes the column names directly - the information /// is potentially incorrect at the beginning but correct at the first row. /// This design issue is documented on [IteratingCursor]. bool _hasReliableColumnNames = false; _ActiveCursorIterator(this.statement) : super(statement._columnNames, statement._tableNames) { statement._inResetState = false; } @override bool moveNext() { if (statement._closed || statement._currentCursor != this) { return false; } final result = statement._step(); if (result == SqlError.SQLITE_ROW) { if (!_hasReliableColumnNames) { columnCount = statement.statement.sqlite3_column_count(); columnNames = statement._columnNames; _hasReliableColumnNames = true; } assert(columnCount >= 0); final rowData = [ for (var i = 0; i < columnCount; i++) statement._readValue(i), ]; current = Row(this, rowData); return true; } // We're at the end of the result set or encountered an exception here. if (result != SqlError.SQLITE_BUSY) { // Statements failing with SQLITE_BUSY can be retried in some instances, // so we don't want to detach the cursor. statement._currentCursor = null; } if (result != SqlError.SQLITE_OK && result != SqlError.SQLITE_DONE) { throwException( statement.database, result, operation: 'iterating through statement', previousStatement: statement.sql, statementArgs: statement._latestArguments, ); } return false; } } ================================================ FILE: sqlite3/lib/src/implementation/utils.dart ================================================ import '../constants.dart'; import 'bindings.dart'; extension BigIntRangeCheck on BigInt { BigInt get checkRange { if (this < bigIntMinValue64 || this > bigIntMaxValue64) { throw Exception('BigInt value exceeds the range of 64 bits'); } return this; } } int eTextRep(bool deterministic, bool directOnly, bool subtype) { var flags = SqlTextEncoding.SQLITE_UTF8; if (deterministic) { flags |= SqlFunctionFlag.SQLITE_DETERMINISTIC; } if (directOnly) { flags |= SqlFunctionFlag.SQLITE_DIRECTONLY; } if (subtype) { flags |= SqlFunctionFlag.SQLITE_SUBTYPE | SqlFunctionFlag.SQLITE_RESULT_SUBTYPE; } return flags; } extension ReadDartValue on RawSqliteValue { Object? read() { return switch (sqlite3_value_type()) { SqlType.SQLITE_INTEGER => sqlite3_value_int64(), SqlType.SQLITE_FLOAT => sqlite3_value_double(), SqlType.SQLITE_TEXT => sqlite3_value_text(), SqlType.SQLITE_BLOB => sqlite3_value_blob(), SqlType.SQLITE_BLOB || _ => null, }; } } ================================================ FILE: sqlite3/lib/src/in_memory_vfs.dart ================================================ import 'dart:math'; import 'dart:typed_data'; import 'package:path/path.dart' as p; import 'package:typed_data/typed_buffers.dart'; import 'constants.dart'; import 'vfs.dart'; import 'utils.dart'; /// A virtual file system implementation that stores all files in memory. /// /// This file system is commonly used on the web as a buffer in front of /// asynchronous storage APIs like IndexedDb. It can also serve as an example on /// how to write custom file systems to be used with sqlite3. /// /// {@category common} final class InMemoryFileSystem extends BaseVirtualFileSystem { final Map fileData = {}; InMemoryFileSystem({super.name = 'dart-memory', super.random}); @override int xAccess(String path, int flags) { return fileData.containsKey(path) ? 1 : 0; } @override void xDelete(String path, int syncDir) { fileData.remove(path); } @override String xFullPathName(String path) { return p.url.normalize('/$path'); } @override XOpenResult xOpen(Sqlite3Filename path, int flags) { final pathStr = path.path ?? random.randomFileName(prefix: '/'); if (!fileData.containsKey(pathStr)) { final create = flags & SqlFlag.SQLITE_OPEN_CREATE; if (create != 0) { fileData[pathStr] = Uint8Buffer(); } else { throw VfsException(SqlError.SQLITE_CANTOPEN); } } return ( outFlags: 0, file: _InMemoryFile( this, pathStr, flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE != 0, ), ); } @override void xSleep(Duration duration) {} } class _InMemoryFile extends BaseVfsFile { final InMemoryFileSystem vfs; final String path; final bool deleteOnClose; var _lockMode = SqlFileLockingLevels.SQLITE_LOCK_NONE; _InMemoryFile(this.vfs, this.path, this.deleteOnClose); @override int readInto(Uint8List buffer, int offset) { final file = vfs.fileData[path]; if (file == null || file.length <= offset) return 0; final available = min(buffer.length, file.length - offset); final list = file.buffer.asUint8List(0, file.length); buffer.setRange(0, available, list, offset); return available; } @override int xCheckReservedLock() { return _lockMode >= SqlFileLockingLevels.SQLITE_LOCK_RESERVED ? 1 : 0; } @override void xClose() { if (deleteOnClose) { vfs.xDelete(path, 0); } } @override int xFileSize() { return vfs.fileData[path]!.length; } @override void xLock(int mode) { _lockMode = mode; } @override void xSync(int flags) {} @override void xTruncate(int size) { final file = vfs.fileData[path]; if (file == null) { vfs.fileData[path] = Uint8Buffer(); vfs.fileData[path]!.length = size; } else { file.length = size; } } @override void xUnlock(int mode) { _lockMode = mode; } @override void xWrite(Uint8List buffer, int fileOffset) { var file = vfs.fileData[path]; if (file == null) { file = Uint8Buffer(); vfs.fileData[path] = file; } var endIndex = fileOffset + buffer.length; if (endIndex > file.length) { file.length = endIndex; } file.setRange(fileOffset, endIndex, buffer); } } ================================================ FILE: sqlite3/lib/src/jsonb.dart ================================================ import 'dart:convert'; import 'dart:typed_data'; import 'package:typed_data/typed_buffers.dart'; /// A [Codec] capable of converting Dart objects from and to the [JSONB] format /// used by sqlite3. /// /// The codec is useful when columns stored as blobs in SQLite are to be /// interpreted as JSONB values, as one conversion step between Dart and SQLite /// (usually implemented by mapping to a JSON string in Dart and then calling /// the `jsonb` SQL function, or calling `json` the other way around) becomes /// superfluous. /// /// This codec's [Codec.encoder] supports the same objects as Dart's [json] /// encoder with the addition of non-finite [double] values that can't be /// represented in regular JSON. When passing a custom object into /// [Codec.encode], it will attempt to call a `toJson()` method. The encoder /// also throws the same [JsonCyclicError] and [JsonUnsupportedObjectError] /// classes thrown by the native JSON encoder. /// /// Example: /// /// ```dart /// import 'package:sqlite3/sqlite3.dart'; /// /// void main() { /// final database = sqlite3.openInMemory() /// ..execute('CREATE TABLE entries (entry BLOB NOT NULL) STRICT;') /// // You can insert JSONB-formatted values directly /// ..execute('INSERT INTO entries (entry) VALUES (?)', [ /// jsonb.encode({'hello': 'dart'}) /// ]); /// // And use them with JSON operators in SQLite without a further conversion: /// print(database.select('SELECT entry ->> ? AS r FROM entries;', [r'$.hello'])); /// } /// ``` /// /// [JSONB]: https://sqlite.org/jsonb.html /// {@category common} const Codec jsonb = _JsonbCodec(); final class _JsonbCodec extends Codec { const _JsonbCodec(); @override Converter get decoder => const _JsonbDecoder(); @override Converter get encoder => const _JsonbEncoder(); } enum _ElementType { _null, _true, _false, _int, _int5, _float, _float5, _text, _textJ, _text5, _textraw, _array, _object, _reserved13, _reserved14, _reserved15, } final class _JsonbDecoder extends Converter { const _JsonbDecoder(); @override Object? convert(Uint8List input) { final state = _JsonbDecodingState(input); final value = state.read(); if (state.remainingLength > 0) { state._malformedJson(); } return value; } } final class _JsonbDecodingState { final Uint8List input; int offset = 0; final List endOffsetStack; _JsonbDecodingState(this.input) : endOffsetStack = [input.length]; int get remainingLength => endOffsetStack.last - offset; Never _malformedJson() { throw ArgumentError('Malformed JSONB'); } int nextByte() => input[offset++]; void pushLengthRestriction(int length) { endOffsetStack.add(offset + length); } void popLengthRestriction() => endOffsetStack.removeLast(); void checkRemainingLength(int requiredBytes) { if (remainingLength < requiredBytes) { _malformedJson(); } } (_ElementType, int) readHeader() { assert(remainingLength >= 1); final firstByte = nextByte(); final type = _ElementType.values[firstByte & 0xF]; final lengthIndicator = firstByte >> 4; var length = 0; if (lengthIndicator <= 11) { length = lengthIndicator; } else { final additionalBytes = 1 << (lengthIndicator - 12); checkRemainingLength(additionalBytes); for (var i = 0; i < additionalBytes; i++) { length <<= 8; length |= nextByte(); } } return (type, length); } List readArray(int payloadLength) { pushLengthRestriction(payloadLength); final result = []; while (remainingLength > 0) { result.add(read()); } popLengthRestriction(); return result; } Map readObject(int payloadLength) { pushLengthRestriction(payloadLength); final result = {}; while (remainingLength > 0) { final name = read(); if (name is! String) { _malformedJson(); } final value = read(); result[name] = value; } popLengthRestriction(); return result; } Object? read() { checkRemainingLength(1); final (type, payloadLength) = readHeader(); checkRemainingLength(payloadLength); final payloadStartOffset = offset; final endIndex = offset + payloadLength; Uint8List payloadBytes() { return input.buffer.asUint8List( input.offsetInBytes + payloadStartOffset, payloadLength, ); } String payloadString() { return utf8.decode(payloadBytes()); } final value = switch (type) { _ElementType._null => null, _ElementType._true => true, _ElementType._false => false, _ElementType._int || _ElementType._int5 => int.parse(payloadString()), _ElementType._float || _ElementType._float5 => double.parse(payloadString()), _ElementType._text || _ElementType._textraw => payloadString(), _ElementType._textJ || _ElementType._text5 => json.decode('"${payloadString()}"'), _ElementType._array => readArray(payloadLength), _ElementType._object => readObject(payloadLength), _ => _malformedJson(), }; assert(offset <= endIndex); offset = endIndex; return value; } } final class _JsonbEncoder extends Converter { const _JsonbEncoder(); @override Uint8List convert(Object? input) { final operation = _JsonbEncodingOperation()..write(input); return operation._buffer.buffer.asUint8List( operation._buffer.offsetInBytes, operation._buffer.length, ); } } final class _JsonbEncodingOperation { final Uint8Buffer _buffer = Uint8Buffer(); /// List of objects currently being traversed. Used to detect cycles. final List _seen = []; void writeHeader(int payloadSize, _ElementType type) { var firstByte = type.index; if (payloadSize <= 11) { _buffer.add((payloadSize << 4) | firstByte); } else { // We can encode the length as a 1, 2, 4 or 8 byte integer. Prefer the // shortest. switch (payloadSize.bitLength) { case <= 8: const prefix = 12 << 4; _buffer ..add(prefix | firstByte) ..add(payloadSize); case <= 16: const prefix = 13 << 4; _buffer ..add(prefix | firstByte) ..add(payloadSize >> 8) ..add(payloadSize); case <= 32: const prefix = 14 << 4; _buffer ..add(prefix | firstByte) ..add(payloadSize >> 24) ..add(payloadSize >> 16) ..add(payloadSize >> 8) ..add(payloadSize); default: const prefix = 15 << 4; _buffer ..add(prefix | firstByte) ..add(payloadSize >> 56) ..add(payloadSize >> 48) ..add(payloadSize >> 40) ..add(payloadSize >> 32) ..add(payloadSize >> 24) ..add(payloadSize >> 16) ..add(payloadSize >> 8) ..add(payloadSize); } } } int prepareUnknownLength(_ElementType type) { const prefix = 15 << 4; _buffer.add(prefix | type.index); final index = _buffer.length; _buffer.addAll(_eightZeroes); return index; } void fillPreviouslyUnknownLength(int index) { final length = _buffer.length - index - 8; for (var i = 0; i < 8; i++) { _buffer[index + i] = length >> (8 * (7 - i)); } } /// Check that [object] is not already being traversed, or add it to the end /// of the seen list otherwise. void checkCycle(Object? object) { for (final entry in _seen) { if (identical(object, entry)) { throw JsonCyclicError(object); } } _seen.add(object); } /// Removes [object] from the end of the [_seen] list. void removeSeen(Object? object) { assert(_seen.isNotEmpty); assert(identical(_seen.last, object)); _seen.removeLast(); } void writeNull() { writeHeader(0, _ElementType._null); } void writeBool(bool value) { writeHeader(0, value ? _ElementType._true : _ElementType._false); } void writeInt(int value) { final encoded = utf8.encode(value.toString()); writeHeader(encoded.length, _ElementType._int); _buffer.addAll(encoded); } void writeDouble(double value) { if (value.isNaN) { // Recent SQLite versions don't accept NaN anymore, and this is consistent // with the json codec from the SDK. throw JsonUnsupportedObjectError(value); } final encoded = utf8.encode(value.toString()); // RFC 8259 does not support infinity or NaN. writeHeader( encoded.length, value.isFinite ? _ElementType._float : _ElementType._float5, ); _buffer.addAll(encoded); } void writeString(String value) { final encoded = utf8.encode(value); writeHeader(encoded.length, _ElementType._textraw); _buffer.addAll(encoded); } void writeArray(Iterable values) { if (values.isEmpty) { return writeHeader(0, _ElementType._array); } final index = prepareUnknownLength(_ElementType._array); values.forEach(write); fillPreviouslyUnknownLength(index); } bool writeMap(Map values) { if (values.isEmpty) { writeHeader(0, _ElementType._object); return true; } final keyValueList = List.filled(values.length * 2, null); var i = 0; var invalidKey = false; for (final MapEntry(:key, :value) in values.entries) { if (key is! String) { invalidKey = true; break; } keyValueList[i++] = key; keyValueList[i++] = value; } if (invalidKey) return false; final index = prepareUnknownLength(_ElementType._object); for (final value in keyValueList) { write(value); } fillPreviouslyUnknownLength(index); return true; } void write(Object? value) { // Try writing values that don't need to be converted into a JSON-compatible // format. if (writeJsonValue(value)) { return; } checkCycle(value); try { final lowered = _encodeObject(value); if (!writeJsonValue(lowered)) { throw JsonUnsupportedObjectError(lowered); } removeSeen(value); } catch (e) { throw JsonUnsupportedObjectError(value, cause: e); } } bool writeJsonValue(Object? value) { switch (value) { case null: writeNull(); return true; case bool b: writeBool(b); return true; case int i: writeInt(i); return true; case double d: writeDouble(d); return true; case String s: writeString(s); return true; case List i: checkCycle(i); writeArray(i); removeSeen(i); return true; case Map o: checkCycle(o); final success = writeMap(o); removeSeen(o); return success; default: return false; } } static final _eightZeroes = Uint8List(8); static Object? _encodeObject(dynamic object) => object.toJson(); } ================================================ FILE: sqlite3/lib/src/result_set.dart ================================================ import 'dart:collection'; import 'package:collection/collection.dart'; import 'package:meta/meta.dart'; /// Base class for result sets. /// /// Result sets are either completely materialized ([ResultSet] with all rows /// being directly available), or executed row-by-row ([IteratingCursor]). /// /// {@category common} sealed class Cursor { List _columnNames; /// The column names of this query, as returned by `sqlite3`. List get columnNames => _columnNames; @protected set columnNames(List names) { _columnNames = names; _calculateIndexes(); } /// The table names of this query, as returned by `sqlite3`. /// /// A table name is null when the column is not directly associated /// with a table, such as a computed column. /// The list is null if the sqlite library was not compiled with the SQLITE_ENABLE_COLUMN_METADATA /// C-preprocessor symbol. /// More information in https://www.sqlite.org/c3ref/column_database_name.html. final List? tableNames; // a result set can have multiple columns with the same name, but that's rare // and users usually use a name as index. So we cache that for O(1) lookups Map _calculatedIndexes = const {}; Cursor(this._columnNames, this.tableNames) { _calculateIndexes(); } void _calculateIndexes() { _calculatedIndexes = { for (var column in _columnNames) column: _columnNames.lastIndexOf(column), }; } } /// A [Cursor] that can only be read once, obtaining rows from the database "on /// the fly" as [moveNext] is called. /// /// This class provides [columnNames] and [tableNames]. Since sqlite3 statements /// are dynamically re-compiled by sqlite3 in response to schema changes, column /// names might change in the first call to [moveNext]. So, these getters are /// only reliable after [moveNext] was called once (regardless of its return /// value). /// /// {@category common} abstract class IteratingCursor extends Cursor implements Iterator { IteratingCursor(super._columnNames, super.tableNames); } /// Stores the full result of a select statement. /// /// {@category common} final class ResultSet extends Cursor with ListMixin, NonGrowableListMixin // ignore: prefer_mixin implements Iterable { /// The raw row data. final List> rows; ResultSet(super._columnNames, super.tableNames, this.rows); @override Iterator get iterator => _ResultIterator(this); @override Row operator [](int index) => Row(this, rows[index]); @override void operator []=(int index, Row value) { throw UnsupportedError("Can't change rows from a result set"); } @override int get length => rows.length; } /// A single row in the result of a select statement. /// /// This class implements the [Map] interface, which can be used to look up the /// value of a column by its name. /// The [columnAt] method may be used to obtain the value of a column by its /// index. /// /// {@category common} final class Row with // ignore: prefer_mixin UnmodifiableMapMixin, MapMixin implements Map { final Cursor _result; final List _data; Row(this._result, List data) : _data = List.unmodifiable(data); /// Returns the value stored in the [i]-th column in this row (zero-indexed). dynamic columnAt(int i) { return _data[i]; } @override dynamic operator [](Object? key) { if (key is! String) { if (key is int) { return _data[key]; } return null; } final index = _result._calculatedIndexes[key]; if (index == null) return null; return columnAt(index); } @override List get keys => _result.columnNames; @override List get values => _data; /// Returns a two-level map that on the first level contains the resolved /// non-aliased table name, and on the second level the column name (or its alias). /// /// A table name (first level map key) is null when the column is not directly associated /// with a table, such as a computed column. /// The map is null if the sqlite3 library was not compiled with the SQLITE_ENABLE_COLUMN_METADATA /// C-preprocessor symbol. /// More information in https://www.sqlite.org/c3ref/column_database_name.html. Map>? toTableColumnMap() { if (_result.tableNames == null) { return null; } final Map> map = {}; for (int i = 0; i < _data.length; i++) { final tableName = _result.tableNames![i]; final columnName = _result.columnNames[i]; final value = _data[i]; final columnsMap = map.putIfAbsent(tableName, () => {}); columnsMap[columnName] = value; } return map; } } final class _ResultIterator implements Iterator { final ResultSet result; int index = -1; _ResultIterator(this.result); @override Row get current => Row(result, result.rows[index]); @override bool moveNext() { index++; return index < result.rows.length; } } ================================================ FILE: sqlite3/lib/src/session.dart ================================================ import 'dart:typed_data'; import 'database.dart'; import 'implementation/database.dart'; import 'implementation/session.dart'; import 'implementation/sqlite3.dart'; import 'sqlite3.dart'; /// A Session tracks database changes made by a Conn. // /// It is used to build changesets. /// /// Equivalent to the sqlite3_session* C object. /// /// {@category common} abstract interface class Session { /// Creates a new session on the given [CommonDatabase] and the optional /// [name] of the schema to track. /// /// __Important__: While `package:sqlite3` uses native finalizers on both the /// database and the session object to ensure they're cleared automatically /// once they're no longer used in Dart, the order in which the objects are /// cleared matters. It is important that the session is closed is before the /// database, closing it afterwards may crash. /// /// This ordering can't be guaranteed with native finalizers alone. For this /// reason, returned [Session]s should be [Session.delete]d explicitly as soon /// as they're no longer needed. factory Session(CommonDatabase database, {String name = 'main'}) { final asImpl = database as DatabaseImplementation; return SessionImplementation.createSession(asImpl, name); } /// Changeset generates a changeset from a session. /// /// https://www.sqlite.org/session/sqlite3session_changeset.html Changeset changeset(); /// Patchset generates a patchset from a session. /// /// https://www.sqlite.org/session/sqlite3session_patchset.html Patchset patchset(); /// Delete deletes a Session object. /// /// https://www.sqlite.org/session/sqlite3session_delete.html void delete(); /// https://www.sqlite.org/session/sqlite3session_attach.html void attach([String? table]); /// Diff appends the difference between two tables (srcDB and the session DB) to the session. /// The two tables must have the same name and schema. /// https://www.sqlite.org/session/sqlite3session_diff.html void diff(String fromDb, String table); /// IsEnabled queries if the session is currently enabled. /// https://www.sqlite.org/session/sqlite3session_enable.html abstract bool enabled; /// https://sqlite.org/session/sqlite3session_indirect.html abstract bool isIndirect; /// https://sqlite.org/session/sqlite3session_isempty.html bool get isEmpty; bool get isNotEmpty; } /// A patchset obtained from a byte sequence or an active [Session]. /// /// Unlike [Changeset]s, patchsets don't store values for deletions (apart from /// the primary key) and don't keep original values for `UPDATE` records. /// /// {@category common} abstract interface class Patchset implements Iterable { /// The binary representation of this patchset or changeset. Uint8List get bytes; @override ChangesetIterator get iterator; /// Creates a patch set from the underlying serialized byte representation. factory Patchset.fromBytes(Uint8List bytes, CommonSqlite3 bindings) { return PatchsetImplementation( bytes, (bindings as Sqlite3Implementation).bindings, ); } /// Applies this changeset or patchset to the [database]. void applyTo( CommonDatabase database, [ ApplyChangesetOptions options = const ApplyChangesetOptions(), ]); } /// A changeset, representing changes made while a [Session] is active. /// /// {@category common} abstract interface class Changeset implements Patchset { /// Creates a changeset from the underlying serialized byte representation. factory Changeset.fromBytes(Uint8List bytes, CommonSqlite3 bindings) { return ChangesetImplementation( bytes, (bindings as Sqlite3Implementation).bindings, ); } /// Inverts this changeset. Changeset operator -(); } /// A recorded operation on a changeset. /// /// {@category common} final class ChangesetOperation { /// Name of the table affected by the operation. final String table; /// The amount of columns in the table, which equals the [List.length] of /// [oldValues] and [newValues]. final int columnCount; /// The type of update made. final SqliteUpdateKind operation; /// If [operation] is not [SqliteUpdateKind.insert], a list of values in the /// row before the operation. final List? oldValues; /// If [operation] is not [SqliteUpdateKind.delete], a list of values in the /// row after the operation. final List? newValues; ChangesetOperation({ required this.table, required this.columnCount, required this.operation, required this.oldValues, required this.newValues, }); @override String toString() { return 'ChangesetOperation: $operation on $table. old: $oldValues, new: $newValues'; } } /// An [Iterator] through a [Changeset] or [Patchset]. abstract interface class ChangesetIterator implements Iterator { /// Aborts this iterator and frees internal resources. /// /// This is also called automatically when [moveNext] returns false, but needs /// to be called manually if the iterator is not completed. void finalize(); } class ApplyChangesetOptions { /// An optional filter to only apply changes on some tables. /// /// When set, only operators on tables for which this function returns true /// are applied. final bool Function(String tableName)? filter; /// Determines how conflicts are handled. **Default**: `SQLITE_CHANGESET_ABORT`. final ApplyChangesetConflict? onConflict; const ApplyChangesetOptions({this.filter, this.onConflict}); } // #define SQLITE_CHANGESET_OMIT 0 // #define SQLITE_CHANGESET_REPLACE 1 // #define SQLITE_CHANGESET_ABORT 2 enum ApplyChangesetConflict { /// Abort the changeset application. abort(2), /// Replace the conflicting row. replace(1), /// Omit the current change. omit(0); final int flag; const ApplyChangesetConflict(this.flag); static ApplyChangesetConflict parse(int flag) { return ApplyChangesetConflict.values.firstWhere((e) => e.flag == flag); } } ================================================ FILE: sqlite3/lib/src/sqlite3.dart ================================================ import 'database.dart'; import 'vfs.dart'; /// Provides access to `sqlite3` functions, such as opening new databases. /// /// {@category common} abstract interface class CommonSqlite3 { /// The version of the sqlite3 library used. Version get version; /// Opens a database file. /// /// The [vfs] option can be used to set the appropriate virtual file system /// implementation. When null, the default file system will be used. /// /// If [uri] is enabled (defaults to `false`), the [filename] will be /// interpreted as an uri as according to https://www.sqlite.org/uri.html. /// /// If the [mutex] parameter is set to true, the `SQLITE_OPEN_FULLMUTEX` flag /// will be set. If it's set to false, `SQLITE_OPEN_NOMUTEX` will be enabled. /// By default, neither parameter will be set. CommonDatabase open( String filename, { String? vfs, OpenMode mode = OpenMode.readWriteCreate, bool uri = false, bool? mutex, }); /// Opens an in-memory database. /// /// The [vfs] option can be used to set the appropriate virtual file system /// implementation. When null, the default file system will be used. CommonDatabase openInMemory({String? vfs}); /// Accesses the `sqlite3_temp_directory` variable. /// /// Note that this operation might not be safe if a database connection is /// being used at the same time in different isolates. /// /// See also: https://www.sqlite.org/c3ref/temp_directory.html String? tempDirectory; /// Registers a custom virtual file system used by this sqlite3 instance to /// emulate I/O functionality that is not supported through WASM directly. /// /// Implementing a suitable [VirtualFileSystem] is a complex task. Users of /// this package on the web should consider using a package that calls this /// method for them (like `drift` or `sqflite_common_ffi_web`). /// For more information on how to implement this, see the readme of the /// `sqlite3` package for details. void registerVirtualFileSystem( VirtualFileSystem vfs, { bool makeDefault = false, }); /// Unregisters a virtual file system implementation that has been registered /// with [registerVirtualFileSystem]. /// /// sqlite3 is not clear about what happens when this method is called with /// the file system being in used. Thus, this method should be used with care. void unregisterVirtualFileSystem(VirtualFileSystem vfs); } /// Version information about the sqlite3 library in use. final class Version { /// A textual description of this sqlite version, such as '3.32.2'. final String libVersion; /// Detailed information about the source code of this sqlite build, which /// contains the Date of the latest change and a commit hash. final String sourceId; /// A numerical representation of [libVersion], such as `3032002`. final int versionNumber; /// Construct a version from the individual components. Version(this.libVersion, this.sourceId, this.versionNumber); @override String toString() { return 'Version(libVersion: $libVersion, sourceId: $sourceId, ' 'number: $versionNumber)'; } } /// Controls how databases should be opened by sqlite enum OpenMode { /// The database is opened in read-only mode. If the database does not already /// exist, an error is returned. readOnly, /// The database is opened for reading and writing if possible, or reading /// only if the file is write protected by the operating system. In either /// case the database must already exist, otherwise an error is returned. readWrite, /// The database is opened for reading and writing, and is created if it does /// not already exist readWriteCreate, } ================================================ FILE: sqlite3/lib/src/statement.dart ================================================ import 'package:meta/meta.dart'; import 'exception.dart'; import 'result_set.dart'; /// A prepared statement. /// /// {@category common} abstract class CommonPreparedStatement { /// The SQL statement backing this prepared statement. String get sql; /// Returns the amount of parameters in this prepared statement. int get parameterCount; /// Returns whether this statement makes no direct changes to the contents of /// the database file. /// /// See also: https://www.sqlite.org/c3ref/stmt_readonly.html bool get isReadOnly; /// Whether this statement is either an `EXPLAIN` or an `EXPLAIN QUERY PLAN` /// statement. /// /// This uses `sqlite3_stmt_isexplain`, which is documented here: /// https://www.sqlite.org/c3ref/stmt_isexplain.html bool get isExplain; /// {@template pkg_sqlite3_stmt_execute} /// Executes this statement, ignoring result rows if there are any. /// /// If the [parameters] list does not match the amount of parameters in the /// original SQL statement ([parameterCount]), an [ArgumentError] will be /// thrown. /// See [StatementParameters] for a list of types supported by this library. /// If sqlite3 reports an error while running this statement, a /// [SqliteException] will be thrown. /// /// To run a statement and also obtaining returned rows, use [selectWith] or /// [iterateWith]. It is safe to call these methods on statements that aren't /// `SELECT` statements (such as writes with a `RETURNING` clause) too. /// {@endtemplate} void executeWith(StatementParameters parameters); /// {@template pkg_sqlite3_stmt_select} /// Selects all rows into a [ResultSet]. /// /// If the [parameters] list does not match the amount of parameters in the /// original SQL statement ([parameterCount]), an [ArgumentError] will be /// thrown. /// See [StatementParameters] for a list of types supported by this library. /// If sqlite3 reports an error while running this statement, a /// [SqliteException] will be thrown. /// /// This statement doesn't have to be a `SELECT` statement for [selectWith] to /// be useful - writes with `RETURNING` clauses also return rows which can /// be fetched via [selectWith]. /// {@endtemplate} ResultSet selectWith(StatementParameters parameters); /// {@template pkg_sqlite3_stmt_iterate} /// Starts selecting rows by running this prepared statement with the given /// [parameters]. /// /// If the [parameters] list does not match the amount of parameters in the /// original SQL statement ([parameterCount]), an [ArgumentError] will be /// thrown. /// See [StatementParameters] for a list of types supported by this library. /// /// If sqlite3 reports an error while running this statement, it will be /// thrown by a call to [Iterator.moveNext]. /// /// The iterator returned here will become invalid with the next call to a /// method that runs this statement ([execute], [executeWith], [select], /// [selectWith], [selectCursor], [iterateWith]). /// {@endtemplate} IteratingCursor iterateWith(StatementParameters parameters); /// {@macro pkg_sqlite3_stmt_execute} void execute([List parameters = const []]) { return executeWith(StatementParameters(parameters)); } /// {@macro pkg_sqlite3_stmt_execute} /// /// Unlike [execute], which binds parameters by their index, [executeMap] /// binds parameters by their name. /// For instance, a SQL query `SELECT :foo, @bar;` has two named parameters /// (`:foo` and `@bar`) that can occur as keys in [parameters]. @Deprecated('Use executeWith(StatementParameters.named) instead') void executeMap(Map parameters) { return executeWith(StatementParameters.named(parameters)); } /// {@macro pkg_sqlite3_stmt_select} ResultSet select([List parameters = const []]) { return selectWith(StatementParameters(parameters)); } /// {@macro pkg_sqlite3_stmt_select} /// /// Similar to [executeMap], parameters are bound by their name instead of /// their index. @Deprecated('Use selectWith(StatementParameters.named) instead') ResultSet selectMap(Map parameters) { return selectWith(StatementParameters.named(parameters)); } /// {@macro pkg_sqlite3_stmt_iterate} IteratingCursor selectCursor([List parameters = const []]) { return iterateWith(StatementParameters(parameters)); } /// Resets this statement to be excuted again. /// /// You typically don't need to call [reset] manually as it is called for you /// internally when [select] or [execute] called multiple times. /// However, [reset] removes all active cursors on this statement, which can /// be useful if a statement is re-used across longer periods of time. /// /// See also: /// - [sqlite3_reset]: https://www.sqlite.org/c3ref/reset.html void reset(); /// Disposes this statement and releases associated memory. @Deprecated('Use close() instead') void dispose(); /// Closes this prepared statement. /// /// On native platforms, a native finalizer will also close statements /// automatically. On the web, finalizers are less reliable. For this reason, /// closing statements explicitly is still recommended. /// /// See also: /// - `sqlite3_finalize`: https://www.sqlite.org/c3ref/finalize.html void close(); } /// A set of values that can be used to bind [parameters] in a SQL query. /// /// Parameters are placeholder values in SQL that can safely be bound to values /// later without a risk of SQL injection attacks. /// Depending on the syntax used to declare a parameter, it may make sense to /// pass parameters by their index or by name. The different constructors of /// this class can be used to control how parameters are passed. /// /// This package supports binding [int], [BigInt], [String], [double], `List` /// and `null` values by default. For custom values, such as those using the /// [pointer-binding](https://www.sqlite.org/bindptr.html) interface provided by /// `sqlite3`, [CustomStatementParameter] can be implemented and passed as a /// parameter as well. /// /// {@category common} /// /// [parameters]: https://www.sqlite.org/lang_expr.html#varparam sealed class StatementParameters { /// Convenience factory to use when no parameters should be passed. const factory StatementParameters.empty() = IndexedParameters.empty; /// Passes parameters by their variable number. const factory StatementParameters(List parameters) = IndexedParameters; /// Passes variables by their name. /// /// For instance, the statement `SELECT * FROM users WHERE id = :id` could be /// bound with `StatementParameters.named({':a': 42})`. const factory StatementParameters.named(Map parameters) = NamedParameters; /// Passes variables by invoking a callback responsible for using a native /// statement handle to bind parameters. /// /// Other constructors validate parameters, making them harder to misuse. In /// special cases where that doesn't work, this constructor can be used to /// indicate that you are fully responsible for binding parameters and don't /// need any validation checks. const factory StatementParameters.bindCustom( void Function(CommonPreparedStatement stmt) bind, ) = CustomParameters; } @internal class IndexedParameters implements StatementParameters { final List parameters; const IndexedParameters(this.parameters); const IndexedParameters.empty() : parameters = const []; } @internal class NamedParameters implements StatementParameters { final Map parameters; const NamedParameters(this.parameters); } @internal class CustomParameters implements StatementParameters { final void Function(CommonPreparedStatement) bind; const CustomParameters(this.bind); } /// A parameter passed to prepared statements that decides how it gets mapped to /// SQL in [applyTo]. /// /// Implementing and using this class is rarely useful, as this package supports /// standard types supported by `sqlite3` directly. /// For advanced APIs, such as the [pointer-passing](https://www.sqlite.org/bindptr.html) /// interface that can't directly be represented in a high-level Dart interface, /// this class can be used to manually bind a value. /// /// {@category common} abstract interface class CustomStatementParameter { /// Applies this custom parameter to the [statement] at the variable index /// [index]. /// /// On native platforms, an implementation can safely cast the `statement` to /// a `PreparedStatement` (from `package:sqlite3/sqlite3.dart`) and use the /// `PreparedStatement.handle` to call `sqlite3_bind_*` manually. void applyTo(CommonPreparedStatement statement, int index); } ================================================ FILE: sqlite3/lib/src/utils.dart ================================================ import 'dart:math'; extension GenerateFilename on Random { String randomFileName({required String prefix, int length = 16}) { const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012346789'; final buffer = StringBuffer(prefix); for (var i = 0; i < length; i++) { buffer.writeCharCode(chars.codeUnitAt(nextInt(chars.length))); } return buffer.toString(); } } ================================================ FILE: sqlite3/lib/src/vfs.dart ================================================ import 'dart:math'; import 'dart:typed_data'; import 'constants.dart'; /// An exception thrown by [VirtualFileSystem] implementations written in Dart /// to signal that an operation could not be completed. /// /// {@category common} final class VfsException implements Exception { /// The error code to return to sqlite3. final int returnCode; const VfsException(this.returnCode) : assert(returnCode != 0); @override String toString() { return 'VfsException($returnCode)'; } } /// A filename passed to [VirtualFileSystem.xOpen]. /// /// {@category common} base class Sqlite3Filename { final String? path; Sqlite3Filename(this.path); } /// A [virtual filesystem][vfs] used by sqlite3 to access the current I/O /// environment. /// /// Instead of having an integer return code, file system implementations should /// throw a [VfsException] to signal invalid operations. /// For details on the individual methods, consult the `sqlite3.h` header file /// and its documentation. /// /// For a file system implementation that implements a few methods already, /// consider extending [BaseVirtualFileSystem]. /// /// [vfs]: https://www.sqlite.org/c3ref/vfs.html /// /// {@category common} abstract base class VirtualFileSystem { /// The name of this virtual file system. /// /// This can be passed as an URI parameter when opening databases to select /// it. final String name; VirtualFileSystem(this.name); /// Opens a file, returning supported flags and a file instance. XOpenResult xOpen(Sqlite3Filename path, int flags); /// Delete a file. void xDelete(String path, int syncDir); /// Check whether a file can be accessed. int xAccess(String path, int flags); /// Resolves a [path] name supplied by the user into a path that can be used /// by the other methods of this VFS. String xFullPathName(String path); /// Fill the [target] with random bytes. /// /// __Safety warning__: Target may be a direct view over native memory that /// must not be used after this function returns. void xRandomness(Uint8List target); /// Sleeps for the passed [duration]. void xSleep(Duration duration); /// Returns the current time. DateTime xCurrentTime(); } /// The result of [VirtualFileSystem.xOpen]. typedef XOpenResult = ({int outFlags, VirtualFileSystemFile file}); /// A file implemented by a VFS author and returned by [VirtualFileSystem.xOpen]. /// /// To avoid common pitfalls, consider extending [BaseVfsFile] instead. /// /// {@category common} abstract interface class VirtualFileSystemFile { /// Close this file. void xClose(); /// Fill the [target] with bytes read from [fileOffset]. /// /// If the file is not large enough to fullfill the read, a [VfsException] /// with an error code of [SqlExtendedError.SQLITE_IOERR_SHORT_READ] must be /// thrown. Additional, the rest of [target] must be filled with zeroes. /// /// __Safety warning__: Target may be a direct view over native memory that /// must not be used after this function returns. void xRead(Uint8List target, int fileOffset); /// Writes the [buffer] into this file at [fileOffset], overwriting existing /// content or appending to it. /// /// If, for some reason, only a part of the buffer could be written, a /// [VfsException] must be thrown. /// /// __Safety warning__: Target may be a direct view over native memory that /// must not be used after this function returns. void xWrite(Uint8List buffer, int fileOffset); /// Truncates this file to a size of [size]. void xTruncate(int size); /// Synchronizes, or flushes, the contents of this file to the file system. void xSync(int flags); /// Returns the size of this file. int xFileSize(); /// Moves the lock state of this file to a more exclusive lock state. void xLock(int mode); /// Moves the lock state of this file to a less exclusive lock state. void xUnlock(int mode); /// Returns the lock state held by any process on this file. int xCheckReservedLock(); /// int get xDeviceCharacteristics; } /// A [VirtualFileSystem] implementation that uses a [Random] instance for /// [xRandomness] and [DateTime.now] for [xCurrentTime]. /// /// {@category common} abstract base class BaseVirtualFileSystem extends VirtualFileSystem { final Random random; BaseVirtualFileSystem({Random? random, required String name}) : random = random ?? _fallbackRandom, super(name); @override void xRandomness(Uint8List target) { generateRandomness(target, random); } @override DateTime xCurrentTime() => DateTime.now(); /// Fills [target] with random bytes. /// /// An optional [random] source can be provided, otherwise a default instance /// of [Random.secure] will be used. static void generateRandomness(Uint8List target, [Random? random]) { random ??= _fallbackRandom; for (var i = 0; i < target.length; i++) { target[i] = random.nextInt(1 << 8); } } static final Random _fallbackRandom = Random.secure(); } /// A [VirtualFileSystemFile] base class that implements [xRead] to zero-fill /// the buffer in case of short reads. /// /// {@category common} abstract class BaseVfsFile implements VirtualFileSystemFile { /// Reads from the file at [offset] into the [buffer] and returns the amount /// of bytes read. /// /// __Safety warning__: [buffer] may be a direct view over native memory that /// must not be used after this function returns. int readInto(Uint8List buffer, int offset); @override int get xDeviceCharacteristics => 0; @override void xRead(Uint8List target, int fileOffset) { final bytesRead = readInto(target, fileOffset); if (bytesRead < target.length) { // Remaining buffer must be filled with zeroes. target.fillRange(bytesRead, target.length, 0); // And we need to return a short read error throw const VfsException(SqlExtendedError.SQLITE_IOERR_SHORT_READ); } } } ================================================ FILE: sqlite3/lib/src/wasm/bindings.dart ================================================ import 'dart:collection'; import 'dart:convert'; import 'dart:js_interop'; import 'dart:typed_data'; import 'package:sqlite3/src/vfs.dart'; import '../constants.dart'; import '../functions.dart'; import '../implementation/bindings.dart'; import '../implementation/exception.dart'; import 'injected_values.dart'; import 'wasm_interop.dart' as wasm; import 'sqlite3_wasm.g.dart'; import 'wasm_interop.dart'; // ignore_for_file: non_constant_identifier_names final class WasmSqliteBindings implements RawSqliteBindings { final wasm.WasmBindings bindings; WasmSqliteBindings(this.bindings); @override String? get sqlite3_temp_directory { final charPtr = bindings.sqlite3_temp_directory; if (charPtr == 0) { return null; } else { return bindings.memory.readString(charPtr); } } @override set sqlite3_temp_directory(String? value) { if (value == null) { bindings.sqlite3_temp_directory = 0; } else { bindings.sqlite3_temp_directory = bindings.allocateZeroTerminated(value); } } @override String sqlite3_errstr(int extendedErrorCode) { return bindings.memory.readString( bindings.sqlite3_errstr(extendedErrorCode), ); } @override String sqlite3_libversion() { return bindings.memory.readString(bindings.sqlite3_libversion()); } @override int sqlite3_libversion_number() { return bindings.sqlite3_libversion_number(); } @override SqliteResult sqlite3_open_v2( String name, int flags, String? zVfs, ) { final namePtr = bindings.allocateZeroTerminated(name); final outDb = bindings.malloc(wasm.WasmBindings.pointerSize); final vfsPtr = zVfs == null ? 0 : bindings.allocateZeroTerminated(zVfs); final result = bindings.sqlite3_open_v2(namePtr, outDb, flags, vfsPtr); final dbPtr = bindings.memory.int32ValueOfPointer(outDb); // Free pointers we allocateed bindings ..free(namePtr) ..free(vfsPtr); if (zVfs != null) bindings.free(vfsPtr); return (resultCode: result, result: WasmDatabase(bindings, dbPtr)); } @override String sqlite3_sourceid() { return bindings.memory.readString(bindings.sqlite3_sourceid()); } @override int sqlite3_initialize() { return bindings.sqlite3_initialize(); } @override void registerVirtualFileSystem(VirtualFileSystem vfs, int makeDefault) { final name = bindings.allocateZeroTerminated(vfs.name); final ptr = bindings.sqlite3.dart_sqlite3_register_vfs( name, vfs.toExternalReference, makeDefault, ); if (ptr == 0) { throw StateError('could not register vfs'); } _sqliteVfsPointer[vfs] = ptr; } @override void unregisterVirtualFileSystem(VirtualFileSystem vfs) { final ptr = _sqliteVfsPointer[vfs]; if (ptr == null) { throw StateError('vfs has not been registered'); } bindings.sqlite3_vfs_unregister(ptr); } @override RawSqliteSession sqlite3session_create(RawSqliteDatabase db, String name) { final zDb = bindings.allocateZeroTerminated(name); final sessionPtr = bindings.malloc(WasmBindings.pointerSize); final result = bindings.sqlite3session_create( (db as WasmDatabase).db, zDb, sessionPtr, ); final session = bindings.memory.int32ValueOfPointer(sessionPtr); bindings ..free(zDb) ..free(sessionPtr); if (result != 0) { throw createExceptionOutsideOfDatabase(this, result); } return WasmSession(this, session); } @override int sqlite3changeset_apply( RawSqliteDatabase database, Uint8List changeset, int Function(String tableName)? filter, int Function(int eConflict, RawChangesetIterator iter) conflict, ) { final callbacks = SessionApplyCallbacks( switch (filter) { null => null, final filter => (Pointer tableName) { final table = bindings.memory.readString(tableName); return filter(table); }, }, (int eConflict, Pointer iterator) { final impl = WasmChangesetIterator(this, iterator, owned: false); return conflict(eConflict, impl); }, ); final changesetPtr = bindings.allocateBytes(changeset); final result = bindings.sqlite3.dart_sqlite3changeset_apply( (database as WasmDatabase).db, changeset.length, changesetPtr, callbacks.toExternalReference, filter != null ? 1 : 0, ); bindings.free(changesetPtr); return result; } @override Uint8List sqlite3changeset_invert(Uint8List changeset) { final originalPtr = bindings.allocateBytes(changeset); final lengthPtr = bindings.malloc(WasmBindings.pointerSize); final outPtr = bindings.malloc(WasmBindings.pointerSize); final result = bindings.sqlite3changeset_invert( changeset.length, originalPtr, lengthPtr, outPtr, ); final length = bindings.memory.int32ValueOfPointer(lengthPtr); final inverted = bindings.memory.int32ValueOfPointer(outPtr); bindings ..free(originalPtr) ..free(lengthPtr) ..free(outPtr); if (result != 0) { throw createExceptionOutsideOfDatabase(this, result); } final out = bindings.memory.copyRange(inverted, length); bindings.sqlite3_free(inverted); return out; } @override RawChangesetIterator sqlite3changeset_start(Uint8List changeset) { final changesetPtr = bindings.allocateBytes(changeset); final outPtr = bindings.malloc(WasmBindings.pointerSize); final result = bindings.sqlite3changeset_start( outPtr, changeset.length, changesetPtr, ); final iterator = bindings.memory.int32ValueOfPointer(outPtr); bindings.free(outPtr); if (result != 0) { throw createExceptionOutsideOfDatabase(this, result); } return WasmChangesetIterator(this, iterator, dataPointer: changesetPtr); } static final _sqliteVfsPointer = Expando(); } final class WasmDatabase implements RawSqliteDatabase { final wasm.WasmBindings bindings; final Pointer db; final Object detach = Object(); WasmDatabase(this.bindings, this.db) { bindings.databaseFinalizer?.attach(this, db, detach: detach); } @override int sqlite3_close_v2() { bindings.databaseFinalizer?.detach(detach); return bindings.sqlite3_close_v2(db); } @override String sqlite3_errmsg() { return bindings.memory.readString(bindings.sqlite3_errmsg(db)); } @override int sqlite3_extended_errcode() { return bindings.sqlite3_extended_errcode(db); } @override int sqlite3_error_offset() { return bindings.sqlite3_error_offset(db); } @override void sqlite3_extended_result_codes(int onoff) { bindings.sqlite3_extended_result_codes(db, onoff); } @override RawStatementCompiler newCompiler(List utf8EncodedSql) { final ptr = bindings.allocateBytes(utf8EncodedSql); return WasmStatementCompiler(this, ptr); } @override int sqlite3_changes() => bindings.sqlite3_changes(db); @override int sqlite3_create_collation_v2({ required Uint8List collationName, required int eTextRep, required RawCollation collation, }) { final ptr = bindings.allocateBytes(collationName, additionalLength: 1); final result = bindings.sqlite3.dart_sqlite3_create_collation( db, ptr, eTextRep, RegisteredFunctionSet(collation: collation).toExternalReference, ); bindings.free(ptr); return result; } @override int sqlite3_create_function_v2({ required Uint8List functionName, required int nArg, required int eTextRep, RawXFunc? xFunc, RawXStep? xStep, RawXFinal? xFinal, }) { final ptr = bindings.allocateBytes(functionName, additionalLength: 1); var isAggregate = false; RegisteredFunctionSet set; if (xFunc != null) { set = RegisteredFunctionSet(xFunc: xFunc); } else { isAggregate = true; set = RegisteredFunctionSet(xStep: xStep, xFinal: xFinal); } final result = bindings.sqlite3.dart_sqlite3_create_function_v2( db, ptr, nArg, eTextRep, isAggregate ? 1 : 0, set.toExternalReference, ); bindings.free(ptr); return result; } @override int sqlite3_create_window_function({ required Uint8List functionName, required int nArg, required int eTextRep, required RawXStep xStep, required RawXFinal xFinal, required RawXFinal xValue, required RawXStep xInverse, }) { final ptr = bindings.allocateBytes(functionName, additionalLength: 1); final result = bindings.create_window_function( db, ptr, nArg, eTextRep, RegisteredFunctionSet( xStep: xStep, xFinal: xFinal, xValue: xValue, xInverse: xInverse, ), ); bindings.free(ptr); return result; } @override int sqlite3_exec(String sql) { final stmt = bindings.allocateZeroTerminated(sql); final result = bindings.sqlite3_exec(db, stmt, 0, 0, 0); bindings.free(stmt); return result; } @override int sqlite3_last_insert_rowid() { return bindings.sqlite3_last_insert_rowid(db); } @override void sqlite3_update_hook(RawUpdateHook? hook) { bindings.dart_sqlite3_updates(db, hook); } @override void sqlite3_commit_hook(RawCommitHook? hook) { bindings.dart_sqlite3_commits(db, hook); } @override void sqlite3_rollback_hook(RawRollbackHook? hook) { bindings.dart_sqlite3_rollbacks(db, hook); } @override int sqlite3_get_autocommit() { return bindings.sqlite3_get_autocommit(db); } @override int sqlite3_db_config(int op, int value) { return bindings.sqlite3_db_config(db, op, value); } @override int sqlite3_busy_handler(int Function(int p1)? callback) { return bindings.sqlite3.dart_sqlite3_busy_handler( db, callback?.toExternalReference, ); } } final class WasmStatementCompiler implements RawStatementCompiler { final WasmDatabase database; final Pointer sql; final Pointer stmtOut; final Pointer pzTail; WasmStatementCompiler(this.database, this.sql) : stmtOut = database.bindings.malloc(WasmBindings.pointerSize), pzTail = database.bindings.malloc(WasmBindings.pointerSize); @override void close() { database.bindings ..free(sql) ..free(stmtOut) ..free(pzTail); } @override int get endOffset { final bindings = database.bindings; return bindings.memory.int32ValueOfPointer(pzTail) - sql; } @override SqliteResult sqlite3_prepare( int byteOffset, int length, int prepFlag, ) { final result = database.bindings.sqlite3_prepare_v3( database.db, sql + byteOffset, length, prepFlag, stmtOut, pzTail, ); final stmt = database.bindings.memory.int32ValueOfPointer(stmtOut); final libraryStatement = stmt == 0 ? null : WasmStatement(database, stmt); return (resultCode: result, result: libraryStatement); } } final class WasmStatement implements RawSqliteStatement { final WasmDatabase database; final Pointer stmt; final WasmBindings bindings; final Object detach = Object(); WasmStatement(this.database, this.stmt) : bindings = database.bindings { bindings.statementFinalizer?.attach(this, stmt, detach: detach); } @override int sqlite3_bind_blob64(int index, List value) { final ptr = bindings.allocateBytes(value); return bindings.sqlite3_bind_blob_finalizerFree( stmt, index, ptr, value.length, ); } @override int sqlite3_bind_double(int index, double value) { return bindings.sqlite3_bind_double(stmt, index, value); } @override int sqlite3_bind_int64(int index, int value) { return bindings.sqlite3_bind_int(stmt, index, value); } @override int sqlite3_bind_int64BigInt(int index, BigInt value) { return bindings.sqlite3_bind_int64(stmt, index, value); } @override int sqlite3_bind_null(int index) { return bindings.sqlite3_bind_null(stmt, index); } @override int sqlite3_bind_parameter_count() { return bindings.sqlite3_bind_parameter_count(stmt); } @override int sqlite3_stmt_isexplain() { return bindings.sqlite3_stmt_isexplain(stmt); } @override int sqlite3_stmt_readonly() { return bindings.sqlite3_stmt_readonly(stmt); } @override int sqlite3_bind_parameter_index(String name) { final namePtr = bindings.allocateZeroTerminated(name); final result = bindings.sqlite3_bind_parameter_index(stmt, namePtr); bindings.free(namePtr); return result; } @override int sqlite3_bind_text(int index, String value) { final encoded = utf8.encode(value); final ptr = bindings.allocateBytes(encoded); return bindings.sqlite3_bind_text_finalizerFree( stmt, index, ptr, encoded.length, ); } @override Uint8List sqlite3_column_bytes(int index) { final length = bindings.sqlite3_column_bytes(stmt, index); final ptr = bindings.sqlite3_column_blob(stmt, index); return bindings.memory.copyRange(ptr, length); } @override int sqlite3_column_count() { return bindings.sqlite3_column_count(stmt); } @override double sqlite3_column_double(int index) { return bindings.sqlite3_column_double(stmt, index); } @override int sqlite3_column_int64(int index) { final jsBigInt = bindings.sqlite3_column_int64(stmt, index); return jsBigInt.asDartInt; } @override Object sqlite3_column_int64OrBigInt(int index) { final jsBigInt = bindings.sqlite3_column_int64(stmt, index); return jsBigInt.toDart(); } @override String sqlite3_column_name(int index) { final namePtr = bindings.sqlite3_column_name(stmt, index); return bindings.memory.readString(namePtr); } @override String? sqlite3_column_table_name(int index) { return null; } @override String sqlite3_column_text(int index) { final ptr = bindings.sqlite3_column_text(stmt, index); return bindings.memory.readString(ptr); } @override int sqlite3_column_type(int index) { return bindings.sqlite3_column_type(stmt, index); } @override void sqlite3_finalize() { bindings.sqlite3_finalize(stmt); bindings.statementFinalizer?.detach(detach); } @override void sqlite3_reset() { bindings.sqlite3_reset(stmt); } @override int sqlite3_step() { return bindings.sqlite3_step(stmt); } @override bool get supportsReadingTableNameForColumn => false; } final class WasmContext implements RawSqliteContext { final WasmBindings bindings; final Pointer context; final DartBridgeCallbacks callbacks; WasmContext(this.bindings, this.context, this.callbacks); Pointer get _rawAggregateContext { final agCtxPtr = bindings.sqlite3_aggregate_context(context, 4); if (agCtxPtr == 0) { // We can't run without our 4 bytes! This indicates an out-of-memory error throw StateError( 'Internal error while allocating sqlite3 aggregate context (OOM?)', ); } return agCtxPtr; } @override AggregateContext? get dartAggregateContext { final agCtxPtr = _rawAggregateContext; final value = bindings.memory.int32ValueOfPointer(agCtxPtr); // Ok, we have a pointer (that sqlite3 zeroes out for us). Our state counter // starts at one, so if it's still zero we don't have a Dart context yet. if (value == 0) { return null; } else { return callbacks.aggregateContexts[value]; } } @override set dartAggregateContext(AggregateContext? value) { final ptr = _rawAggregateContext; final id = callbacks.aggregateContextId++; callbacks.aggregateContexts[id] = ArgumentError.checkNotNull(value); bindings.memory.setInt32Value(ptr, id); } @override void sqlite3_result_blob64(List blob) { final ptr = bindings.allocateBytes(blob); bindings.sqlite3_result_blob64( context, ptr, blob.length, SqlSpecialDestructor.SQLITE_TRANSIENT, ); bindings.free(ptr); } @override void sqlite3_result_double(double value) { return bindings.sqlite3_result_double(context, value); } @override void sqlite3_result_error(String message) { final encoded = utf8.encode(message); final ptr = bindings.allocateBytes(encoded); bindings.sqlite3_result_error(context, ptr, encoded.length); bindings.free(ptr); } @override void sqlite3_result_int64(int value) { bindings.sqlite3_result_int64(context, BigInt.from(value)); } @override void sqlite3_result_int64BigInt(BigInt value) { bindings.sqlite3_result_int64(context, value); } @override void sqlite3_result_null() { return bindings.sqlite3_result_null(context); } @override void sqlite3_result_text(String text) { final encoded = utf8.encode(text); final ptr = bindings.allocateBytes(encoded); bindings.sqlite3_result_text( context, ptr, encoded.length, SqlSpecialDestructor.SQLITE_TRANSIENT, ); bindings.free(ptr); } @override void sqlite3_result_subtype(int value) { bindings.sqlite3_result_subtype(context, value); } } final class WasmValue implements RawSqliteValue { final WasmBindings bindings; final Pointer value; WasmValue(this.bindings, this.value); @override Uint8List sqlite3_value_blob() { final length = bindings.sqlite3_value_bytes(value); return bindings.memory.copyRange( bindings.sqlite3_value_blob(value), length, ); } @override double sqlite3_value_double() { return bindings.sqlite3_value_double(value); } @override int sqlite3_value_int64() { return bindings.sqlite3_value_int64(value).asDartInt; } @override String sqlite3_value_text() { final length = bindings.sqlite3_value_bytes(value); return bindings.memory.readString( bindings.sqlite3_value_text(value), length, ); } @override int sqlite3_value_type() { return bindings.sqlite3_value_type(value); } @override int sqlite3_value_subtype() { return bindings.sqlite3_value_subtype(value); } } class WasmValueList extends ListBase { final WasmBindings bindings; @override final int length; final Pointer value; WasmValueList(this.bindings, this.length, this.value); @override set length(int value) { throw UnsupportedError('Setting length in WasmValueList'); } @override WasmValue operator [](int index) { final valuePtr = bindings.memory.int32ValueOfPointer( value + index * WasmBindings.pointerSize, ); return WasmValue(bindings, valuePtr); } @override void operator []=(int index, WasmValue value) { throw UnsupportedError('Setting element in WasmValueList'); } } final class WasmSession implements RawSqliteSession { final WasmSqliteBindings bindings; final int pointer; // the sqlite3_session ptr final Object detach = Object(); final WasmBindings _bindings; WasmSession(this.bindings, this.pointer) : _bindings = bindings.bindings { _bindings.sessionFinalizer?.attach(this, pointer, detach: detach); } @override int sqlite3session_attach([String? name]) { final zTab = name == null ? 0 : _bindings.malloc(WasmBindings.pointerSize); final resultCode = _bindings.sqlite3session_attach(pointer, zTab); if (name != null) { _bindings.free(zTab); } return resultCode; } Uint8List _extractBytes(int Function(Pointer, Pointer, Pointer) raw) { final sizePtr = _bindings.malloc(WasmBindings.pointerSize); final patchsetPtr = _bindings.malloc(WasmBindings.pointerSize); final rc = raw(pointer, sizePtr, patchsetPtr); if (rc != 0) { throw createExceptionOutsideOfDatabase(bindings, rc); } final length = _bindings.memory.int32ValueOfPointer(sizePtr); final patchset = _bindings.memory.int32ValueOfPointer(patchsetPtr); _bindings ..free(sizePtr) ..free(patchsetPtr); final bytes = _bindings.memory.copyRange(patchset, length); _bindings.sqlite3_free(patchset); return bytes; } @override Uint8List sqlite3session_changeset() { return _extractBytes(_bindings.sqlite3session_changeset); } @override Uint8List sqlite3session_patchset() { return _extractBytes(_bindings.sqlite3session_patchset); } @override void sqlite3session_delete() { _bindings.sessionFinalizer?.detach(detach); _bindings.sqlite3session_delete(pointer); } @override int sqlite3session_diff(String fromDb, String table) { final dbPtr = _bindings.allocateZeroTerminated(fromDb); final tableptr = _bindings.allocateZeroTerminated(table); final code = _bindings.sqlite3session_diff(pointer, dbPtr, tableptr, 0); _bindings ..free(dbPtr) ..free(tableptr); return code; } @override int sqlite3session_enable(int enable) { return _bindings.sqlite3session_enable(pointer, enable); } @override int sqlite3session_indirect(int indirect) { return _bindings.sqlite3session_indirect(pointer, indirect); } @override int sqlite3session_isempty() => _bindings.sqlite3session_isempty(pointer); } final class WasmChangesetIterator implements RawChangesetIterator { final WasmSqliteBindings bindings; /// If this iterator was created from an uint8list allocated when creating it, /// the pointer towards that. final int? dataPointer; final int pointer; // the sqlite3_changeset_iter ptr final Object detach = Object(); final WasmBindings _bindings; WasmChangesetIterator( this.bindings, this.pointer, { this.dataPointer, bool owned = true, }) : _bindings = bindings.bindings { if (owned) { bindings.bindings.changesetFinalizer?.attach( this, pointer, detach: detach, ); } } @override int sqlite3changeset_finalize() { final rc = _bindings.sqlite3changeset_finalize(pointer); bindings.bindings.changesetFinalizer?.detach(detach); if (dataPointer case final data?) { _bindings.free(data); } return rc; } @override int sqlite3changeset_next() => _bindings.sqlite3changeset_next(pointer); SqliteResult _extractValue( int Function(Pointer, int, Pointer) extract, int index, ) { final outValue = _bindings.malloc(WasmBindings.pointerSize); final resultCode = extract(pointer, index, outValue); final value = _bindings.memory.int32ValueOfPointer(outValue); _bindings.free(outValue); return ( resultCode: resultCode, result: value != 0 ? WasmValue(_bindings, value) : null, ); } @override SqliteResult sqlite3changeset_old(int columnNumber) { return _extractValue(_bindings.sqlite3changeset_old, columnNumber); } @override SqliteResult sqlite3changeset_new(int columnNumber) { return _extractValue(_bindings.sqlite3changeset_new, columnNumber); } @override RawChangeSetOp sqlite3changeset_op() { final outTable = _bindings.malloc(WasmBindings.pointerSize); final outColCount = _bindings.malloc(WasmBindings.pointerSize); final outOp = _bindings.malloc(WasmBindings.pointerSize); final outIndirect = _bindings.malloc(WasmBindings.pointerSize); final value = _bindings.sqlite3changeset_op( pointer, outTable, outColCount, outOp, outIndirect, ); final colCount = _bindings.memory.int32ValueOfPointer(outColCount); final op = _bindings.memory.int32ValueOfPointer(outOp); final indirect = _bindings.memory.int32ValueOfPointer(outIndirect); final rawTable = _bindings.memory.int32ValueOfPointer(outTable); final table = value == 0 ? _bindings.memory.readString(rawTable) : ''; _bindings ..free(outTable) ..free(outColCount) ..free(outOp) ..free(outIndirect); if (value != 0) { throw createExceptionOutsideOfDatabase(bindings, value); } return RawChangeSetOp( tableName: table, columnCount: colCount, operation: op, indirect: indirect, ); } } ================================================ FILE: sqlite3/lib/src/wasm/injected_values.dart ================================================ // Dart functions that are injected into the SQLite WebAssembly module. For // details, see sqlite3_wasm_build/bridge.h import 'dart:convert'; import 'dart:js_interop'; import 'package:web/web.dart'; import '../constants.dart'; import '../functions.dart'; import '../implementation/bindings.dart'; import '../vfs.dart'; import 'bindings.dart'; import 'js_interop.dart'; import 'sqlite3_wasm.g.dart'; import 'wasm_interop.dart'; final class DartBridgeCallbacks { // We only have access to bindings and memory after instantiating the module. late final WasmBindings bindings; late final Memory memory; int aggregateContextId = 1; final Map> aggregateContexts = {}; @JSExport('error_log') void logError(Pointer message) { print('[sqlite3] ${memory.readString(message)}'); } @JSExport() void localtime(JsBigInt timestamp, int resultPtr) { // struct tm { // int tm_sec; // int tm_min; // int tm_hour; // int tm_mday; // int tm_mon; // int tm_year; // With 0 representing 1900 // int tm_wday; // int tm_yday; // int tm_isdst; // long __tm_gmtoff; // const char *__tm_zone; // Set by native helper // }; final time = timestamp.asDartInt * 1000; final dateTime = DateTime.fromMillisecondsSinceEpoch(time); final tmValues = memory.buffer.toDart.asUint32List(resultPtr, 8); tmValues[0] = dateTime.second; tmValues[1] = dateTime.minute; tmValues[2] = dateTime.hour; tmValues[3] = dateTime.day; tmValues[4] = dateTime.month - 1; tmValues[5] = dateTime.year - 1900; // In Dart, the range is Monday=1 to Sunday=7. We want Sunday = 0 and // Saturday = 6. tmValues[6] = dateTime.weekday % 7; // yday not used by sqlite3, what could possibly go wrong by us not // setting that field (at least we have tests for this). // the other fields don't matter though, localtime_r is not supposed // to set them. } @JSExport() ExternalDartReference? xOpen( ExternalDartReference vfs, Pointer zName, Pointer rcPtr, int flags, Pointer pOutFlags, ) { final path = Sqlite3Filename(memory.readNullableString(zName)); try { final result = vfs.toDartObject.xOpen(path, flags); if (pOutFlags != 0) { memory.setInt32Value(pOutFlags, result.outFlags); } memory.setInt32Value(rcPtr, 0); return result.file.toExternalReference; } on VfsException catch (e) { memory.setInt32Value(rcPtr, e.returnCode); } on Object { memory.setInt32Value(rcPtr, SqlError.SQLITE_ERROR); } return null; } @JSExport() int xDelete( ExternalDartReference vfs, Pointer zName, int syncDir, ) { final path = memory.readString(zName); return _runVfs(() => vfs.toDartObject.xDelete(path, syncDir)); } @JSExport() int xAccess( ExternalDartReference vfs, Pointer zName, int flags, Pointer pResOut, ) { final path = memory.readString(zName); return _runVfs(() { final res = vfs.toDartObject.xAccess(path, flags); memory.setInt32Value(pResOut, res); }); } @JSExport() int xFullPathname( ExternalDartReference vfs, Pointer zName, int nOut, Pointer zOut, ) { final path = memory.readString(zName); return _runVfs(() { final fullPath = vfs.toDartObject.xFullPathName(path); final encoded = utf8.encode(fullPath); if (encoded.length > nOut) { throw VfsException(SqlError.SQLITE_CANTOPEN); } memory.asBytes ..setAll(zOut, encoded) ..[zOut + encoded.length] = 0; }); } @JSExport() int xRandomness( ExternalDartReference? vfs, int nByte, Pointer zOut, ) { return _runVfs(() { final target = memory.buffer.toDart.asUint8List(zOut, nByte); if (vfs != null) { vfs.toDartObject.xRandomness(target); } else { // Fall back to a default random source. We're using this to // implement `getentropy` in C which is used by sqlite3mc. return BaseVirtualFileSystem.generateRandomness(target); } }); } @JSExport() int xSleep(ExternalDartReference vfs, int micros) { return _runVfs(() { vfs.toDartObject.xSleep(Duration(microseconds: micros)); }); } @JSExport() int xCurrentTimeInt64( ExternalDartReference vfs, Pointer target, ) { final time = vfs.toDartObject.xCurrentTime(); // dartvfs_currentTimeInt64 will turn this into the right value, it's // annoying to do in JS due to the lack of proper ints. memory.setInt64Value(target, JsBigInt.fromInt(time.millisecondsSinceEpoch)); return 0; } @JSExport() int xClose(ExternalDartReference file) { return _runVfs(() => file.toDartObject.xClose()); } @JSExport() int xRead( ExternalDartReference file, Pointer target, int amount, JSBigInt offset, ) { return _runVfs(() { file.toDartObject.xRead( memory.buffer.toDart.asUint8List(target, amount), JsBigInt(offset).asDartInt, ); }); } @JSExport() int xWrite( ExternalDartReference file, Pointer source, int amount, JSBigInt offset, ) { return _runVfs(() { file.toDartObject.xWrite( memory.buffer.toDart.asUint8List(source, amount), JsBigInt(offset).asDartInt, ); }); } @JSExport() int xTruncate( ExternalDartReference file, JSBigInt size, ) { return _runVfs(() => file.toDartObject.xTruncate(JsBigInt(size).asDartInt)); } @JSExport() int xSync(ExternalDartReference file, int flags) { return _runVfs(() => file.toDartObject.xSync(flags)); } @JSExport() int xFileSize( ExternalDartReference file, Pointer sizePtr, ) { return _runVfs(() { final size = file.toDartObject.xFileSize(); memory.setInt32Value(sizePtr, size); }); } @JSExport() int xLock(ExternalDartReference file, int flags) { return _runVfs(() => file.toDartObject.xLock(flags)); } @JSExport() int xUnlock(ExternalDartReference file, int flags) { return _runVfs(() => file.toDartObject.xUnlock(flags)); } @JSExport() int xCheckReservedLock( ExternalDartReference file, Pointer pResOut, ) { return _runVfs(() { final status = file.toDartObject.xCheckReservedLock(); memory.setInt32Value(pResOut, status); }); } @JSExport() int xDeviceCharacteristics( ExternalDartReference file, ) { return file.toDartObject.xDeviceCharacteristics; } @JSExport('dispatch_()v') void dispatchVoid(ExternalDartReference fn) { fn.toDartObject(); } @JSExport('dispatch_()i') int dispatchInt(ExternalDartReference fn) { return fn.toDartObject(); } @JSExport('dispatch_update') void dispatchUpdateHook( ExternalDartReference fn, int kind, Pointer _, Pointer table, JSBigInt rowId, ) { final tableName = memory.readString(table); fn.toDartObject(kind, tableName, JsBigInt(rowId).asDartInt); } @JSExport('dispatch_xFunc') void dispatchXFunc( ExternalDartReference functions, Pointer ctx, int nArgs, Pointer value, ) { functions.toDartObject.xFunc!( WasmContext(bindings, ctx, this), WasmValueList(bindings, nArgs, value), ); } @JSExport('dispatch_xStep') void dispatchXStep( ExternalDartReference functions, Pointer ctx, int nArgs, Pointer value, ) { functions.toDartObject.xStep!( WasmContext(bindings, ctx, this), WasmValueList(bindings, nArgs, value), ); } @JSExport('dispatch_xInverse') void dispatchXInverse( ExternalDartReference functions, Pointer ctx, int nArgs, Pointer value, ) { functions.toDartObject.xInverse!( WasmContext(bindings, ctx, this), WasmValueList(bindings, nArgs, value), ); } @JSExport('dispatch_xValue') void dispatchXValue( ExternalDartReference functions, Pointer ctx, ) { functions.toDartObject.xValue!(WasmContext(bindings, ctx, this)); } @JSExport('dispatch_xFinal') void dispatchXFinal( ExternalDartReference functions, Pointer ctx, ) { functions.toDartObject.xFinal!(WasmContext(bindings, ctx, this)); } @JSExport('dispatch_compare') int dispatchXCompare( ExternalDartReference functions, int lengthA, Pointer a, int lengthB, int b, ) { final aStr = memory.readNullableString(a, lengthA); final bStr = memory.readNullableString(b, lengthB); return functions.toDartObject.collation!(aStr, bStr); } @JSExport('dispatch_busy') int dispatchBusyHandler( ExternalDartReference function, int amount, ) { return function.toDartObject(amount); } @JSExport('changeset_apply_filter') int dispatchApplyFilter( ExternalDartReference callbacks, Pointer zTab, ) { return callbacks.toDartObject.filter!(zTab); } @JSExport('changeset_apply_conflict') int dispatchApplyConflict( ExternalDartReference callbacks, int eConflict, Pointer iterator, ) { return callbacks.toDartObject.conflict!(eConflict, iterator); } } int _runVfs(void Function() body) { try { body(); return SqlError.SQLITE_OK; } on VfsException catch (e) { return e.returnCode; } on Object { return SqlError.SQLITE_ERROR; } } final class RegisteredFunctionSet { final RawXFunc? xFunc; final RawXStep? xStep; final RawXFinal? xFinal; final RawXFinal? xValue; final RawXStep? xInverse; final RawCollation? collation; RegisteredFunctionSet({ this.xFunc, this.xStep, this.xFinal, this.xValue, this.xInverse, this.collation, }); } typedef RawFilter = int Function(Pointer tableName); typedef RawConflict = int Function(int eConflict, Pointer iterator); final class SessionApplyCallbacks { final RawFilter? filter; final RawConflict? conflict; SessionApplyCallbacks(this.filter, this.conflict); } ================================================ FILE: sqlite3/lib/src/wasm/js_interop/atomics.dart ================================================ import 'dart:typed_data'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; @JS('Int32Array') external JSFunction _int32Array; @JS('Uint8Array') external JSFunction _uint8Array; @JS('DataView') external JSFunction _dataView; @JS() extension type SharedArrayBuffer._(JSObject _) implements JSObject { external factory SharedArrayBuffer(int length); external int get byteLength; Int32List asInt32List() { return _int32Array.callAsConstructor(this).toDart; } ByteData asByteData(int offset, int length) { return _dataView .callAsConstructor(this, offset.toJS, length.toJS) .toDart; } Uint8List asUint8List() { return _uint8Array.callAsConstructor(this).toDart; } Uint8List asUint8ListSlice(int offset, int length) { return _uint8Array .callAsConstructor(this, offset.toJS, length.toJS) .toDart; } } @JS('Atomics') extension type _Atomics._(JSObject _) implements JSObject { @JS('wait') external static JSString wait(JSInt32Array typedArray, int index, int value); @JS('wait') external static JSString waitWithTimeout( JSInt32Array typedArray, int index, int value, int timeOutInMillis, ); @JS() external static void notify(JSInt32Array typedArray, int index, [num count]); @JS() external static int store(JSInt32Array typedArray, int index, int value); @JS() external static int load(JSInt32Array typedArray, int index); } class Atomics { static const ok = 'ok'; static const notEqual = 'not-equal'; static const timedOut = 'timed-out'; static bool get supported { return globalContext.has('Atomics'); } static String wait(Int32List typedArray, int index, int value) { return _Atomics.wait(typedArray.toJS, index, value).toDart; } static String waitWithTimeout( Int32List typedArray, int index, int value, int timeOutInMillis, ) { return _Atomics.waitWithTimeout( typedArray.toJS, index, value, timeOutInMillis, ).toDart; } static void notify( Int32List typedArray, int index, [ num count = double.infinity, ]) { _Atomics.notify(typedArray.toJS, index, count); } static int store(Int32List typedArray, int index, int value) { return _Atomics.store(typedArray.toJS, index, value); } static int load(Int32List typedArray, int index) { return _Atomics.load(typedArray.toJS, index); } } ================================================ FILE: sqlite3/lib/src/wasm/js_interop/core.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; @JS('BigInt') external JSBigInt _bigInt(JSAny? s); @JS('Number') external JSNumber _number(JSAny? obj); extension type WrappedJSAny._(JSAny _) implements JSAny { external static JSArray keys(JSObject o); @JS('toString') external JSString _toString(); } @JS('Object') extension type WrappedJSObject._(JSObject _) implements JSObject { external static JSArray keys(JSObject o); } extension type JsBigInt(JSBigInt _jsBigInt) implements JSBigInt { factory JsBigInt.parse(String s) => JsBigInt(_bigInt(s.toJS)); factory JsBigInt.fromInt(int i) => JsBigInt(_bigInt(i.toJS)); factory JsBigInt.fromBigInt(BigInt i) => JsBigInt.parse(i.toString()); int get asDartInt => _number(_jsBigInt).toDartInt; BigInt get asDartBigInt => BigInt.parse(jsToString()); JSBigInt get jsObject => _jsBigInt; bool get isSafeInteger { const maxSafeInteger = 9007199254740992; const minSafeInteger = -maxSafeInteger; return minSafeInteger.toJS.lessThanOrEqualTo(_jsBigInt).toDart && _jsBigInt.lessThanOrEqualTo(maxSafeInteger.toJS).toDart; } Object toDart() { return isSafeInteger ? asDartInt : asDartBigInt; } String jsToString() { return (_jsBigInt as WrappedJSAny)._toString().toDart; } } extension type IteratorResult(JSObject _) implements JSObject { external JSBoolean? get done; external T? get value; } extension type AsyncIterator(JSObject _) implements JSObject { external JSPromise> next(); } @JS('Symbol.asyncIterator') external JSSymbol get _asyncIterator; /// Exposes the async iterable interface as a Dart stream. /// /// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols class AsyncJavaScriptIteratable extends Stream { final JSObject _jsObject; AsyncJavaScriptIteratable(this._jsObject) { if (!_jsObject.hasProperty(_asyncIterator).toDart) { throw ArgumentError( 'Target object does not implement the async iterable ' 'interface', ); } } @override StreamSubscription listen( void Function(T event)? onData, { Function? onError, void Function()? onDone, bool? cancelOnError, }) { final iterator = _jsObject.callMethod>(_asyncIterator); final controller = StreamController(sync: true); JSPromise>? currentlyPendingPromise; void fetchNext() { assert(currentlyPendingPromise == null); final promise = currentlyPendingPromise = iterator.next(); promise.toDart.then((result) { final done = result.done?.toDart ?? false; final value = result.value; if (done) { controller.close(); currentlyPendingPromise = null; } else { controller.add(value as T); currentlyPendingPromise = null; if (!controller.isPaused) { fetchNext(); } } }, onError: controller.addError); } void fetchNextIfNecessary() { if (currentlyPendingPromise == null && !controller.isPaused) { fetchNext(); } } controller ..onListen = fetchNext ..onResume = fetchNextIfNecessary; return controller.stream.listen( onData, onError: onError, onDone: onDone, cancelOnError: cancelOnError, ); } } ================================================ FILE: sqlite3/lib/src/wasm/js_interop/fetch.dart ================================================ @JS() library; import 'dart:js_interop'; import 'package:web/web.dart' show URL, Response, RequestInit; @JS() external JSPromise fetch(URL resource, [RequestInit? options]); ================================================ FILE: sqlite3/lib/src/wasm/js_interop/file_system_access.dart ================================================ /// Very regrettably, `package:drift` imports this exact file and because it /// used to define FileSystem Access API bindings before we've migrated these to /// `package:web`. /// /// To avoid breaking drift, we're exporting the subset of APIs used by drift /// to keep that working. This file is not used anywhere in this package and /// will be removed in the next major release. @Deprecated('Do not import this at all') library; import 'dart:js_interop'; import 'package:web/web.dart' as web; import 'core.dart'; import 'new_file_system_access.dart' as fixed; typedef FileSystemDirectoryHandle = LegacyDirectoryHandle; typedef FileSystemFileHandle = LegacyFileHandle; typedef FileSystemSyncAccessHandle = LegacySyncFileHandle; LegacyStorageManager? get storageManager { final raw = fixed.storageManager; return raw != null ? LegacyStorageManager(raw) : null; } extension type LegacyStorageManager(web.StorageManager inner) { Future get directory async => FileSystemDirectoryHandle(await inner.directory); } extension type LegacyHandle(web.FileSystemHandle inner) { bool get isDirectory => inner.isDirectory; String get name => inner.name; } extension type LegacyDirectoryHandle(web.FileSystemDirectoryHandle inner) { Future openFile(String name, {bool create = false}) async { return LegacyFileHandle(await inner.openFile(name, create: create)); } Future removeEntry(String name, {bool recursive = false}) async { await fixed.FileSystemDirectoryHandleApi( inner, ).remove(name, recursive: recursive); } Future getDirectory(String name) async { return LegacyDirectoryHandle(await inner.getDirectory(name)); } Stream list() { return AsyncJavaScriptIteratable( inner, ).map((data) => LegacyHandle(data.toDart[1] as web.FileSystemHandle)); } } extension type LegacyFileHandle(web.FileSystemFileHandle inner) { Future createSyncAccessHandle() async { final raw = await inner.createSyncAccessHandle().toDart; return LegacySyncFileHandle(raw); } } extension type LegacySyncFileHandle(web.FileSystemSyncAccessHandle inner) { void close() { inner.close(); } } ================================================ FILE: sqlite3/lib/src/wasm/js_interop/indexed_db.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'package:web/web.dart' show IDBFactory, IDBDatabaseInfo, IDBRequest, IDBCursor, EventStreamProviders; extension RequestExt on IDBRequest { /// A [StreamIterator] to asynchronously iterate over a [Cursor]. /// /// Dart provides a streaming view over cursors, but the confusing pause /// behavior of `await for` loops and IndexedDB's behavior of closing /// transactions that are not immediately used after an event leads to code /// that is hard to reason about. /// /// An explicit pull-based model makes it easy to iterate over values in a /// cursor while also being clearer about asynchronous suspensions one might /// want to avoid. StreamIterator cursorIterator() { return _CursorReader(this); } } class _CursorReader implements StreamIterator { T? _cursor; StreamSubscription? _onSuccess, _onError; final IDBRequest _cursorRequest; _CursorReader(this._cursorRequest); @override Future cancel() async { unawaited(_onSuccess?.cancel()); unawaited(_onError?.cancel()); _onSuccess = null; _onError = null; } @override T get current => _cursor ?? (throw StateError('Await moveNext() first')); @override Future moveNext() { assert(_onSuccess == null && _onError == null, 'moveNext() called twice'); _cursor?.continue_(); final completer = Completer.sync(); _onSuccess = EventStreamProviders.successEvent .forTarget(_cursorRequest) .listen((event) { cancel(); _cursor = _cursorRequest.result as T?; completer.complete(_cursor != null); }); _onError = EventStreamProviders.errorEvent.forTarget(_cursorRequest).listen( (event) { cancel(); completer.completeError(_cursorRequest.error ?? event); }, ); return completer.future; } } @JS() external IDBFactory? get indexedDB; extension IdbFactoryExt on IDBFactory { Future?> listDatabases() async { if (!has('databases')) { return null; } return (await databases().toDart).toDart; } } extension CompleteIdbRequest on IDBRequest { Future complete() { final completer = Completer.sync(); EventStreamProviders.successEvent.forTarget(this).listen((event) { completer.complete(result as T); }); EventStreamProviders.errorEvent.forTarget(this).listen((event) { completer.completeError(error ?? event); }); return completer.future; } } extension CompleteOpenIdbRequest on IDBRequest { Future completeOrBlocked() { final completer = Completer.sync(); EventStreamProviders.successEvent.forTarget(this).listen((event) { completer.complete(result as T); }); EventStreamProviders.errorEvent.forTarget(this).listen((event) { completer.completeError(error ?? event); }); EventStreamProviders.blockedEvent.forTarget(this).listen((event) { completer.completeError(error ?? event); }); return completer.future; } } ================================================ FILE: sqlite3/lib/src/wasm/js_interop/new_file_system_access.dart ================================================ import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'dart:typed_data'; import 'package:web/web.dart'; import 'core.dart'; @JS('navigator') external Navigator get _navigator; StorageManager? get storageManager { final navigator = _navigator; if (navigator.has('storage')) { return navigator.storage; } return null; } extension StorageManagerApi on StorageManager { Future get directory => getDirectory().toDart; } extension FileSystemSyncAccessHandleApi on FileSystemSyncAccessHandle { int readDart(Uint8List buffer, [FileSystemReadWriteOptions? options]) { if (options == null) { return read(buffer.toJS); } else { return read(buffer.toJS, options); } } int writeDart(Uint8List buffer, [FileSystemReadWriteOptions? options]) { if (options == null) { return write(buffer.toJS); } else { return write(buffer.toJS, options); } } } extension FileSystemHandleApi on FileSystemHandle { bool get isFile => kind == 'file'; bool get isDirectory => kind == 'directory'; } extension FileSystemDirectoryHandleApi on FileSystemDirectoryHandle { Future openFile(String name, {bool create = false}) { return getFileHandle(name, FileSystemGetFileOptions(create: create)).toDart; } Future getDirectory( String name, { bool create = false, }) { return getDirectoryHandle( name, FileSystemGetDirectoryOptions(create: create), ).toDart; } Future remove(String name, {bool recursive = false}) { return removeEntry( name, FileSystemRemoveOptions(recursive: recursive), ).toDart; } Stream list() { return AsyncJavaScriptIteratable( this, ).map((data) => data.toDart[1] as FileSystemHandle); } Stream getFilesRecursively() async* { await for (final entry in list()) { if (entry.isFile) { yield entry; } else if (entry.isDirectory) { yield* (entry as FileSystemDirectoryHandle).getFilesRecursively(); } } } } // https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md extension ProposedLockingSchemeApi on FileSystemFileHandle { external JSPromise createSyncAccessHandle( FileSystemCreateSyncAccessHandleOptions options, ); } // https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md#modes-of-creating-a-filesystemsyncaccesshandle @anonymous extension type FileSystemCreateSyncAccessHandleOptions._(JSObject _) implements JSObject { external factory FileSystemCreateSyncAccessHandleOptions({JSString? mode}); static FileSystemCreateSyncAccessHandleOptions unsafeReadWrite() { return FileSystemCreateSyncAccessHandleOptions( mode: 'readwrite-unsafe'.toJS, ); } } ================================================ FILE: sqlite3/lib/src/wasm/js_interop/typed_data.dart ================================================ import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'dart:typed_data'; import 'core.dart'; extension NativeUint8List on Uint8List { /// A native version of [setRange] that takes another typed array directly. /// This avoids the type checks part of [setRange] in compiled JavaScript /// code. void set(Uint8List from, int offset) { toJS.callMethod('set'.toJS, from.toJS, offset.toJS); } } extension NativeDataView on ByteData { void setBigInt64(int offset, JsBigInt value, bool littleEndian) { toJS.callMethod( 'setBigInt64'.toJS, offset.toJS, value.jsObject, littleEndian.toJS, ); } } ================================================ FILE: sqlite3/lib/src/wasm/js_interop.dart ================================================ import 'dart:js_interop'; import 'dart:typed_data'; import 'package:web/web.dart' show Blob; // This internal library exports wrappers around newer Web APIs for which no // up-to-date bindings exist in the Dart SDK. export 'js_interop/atomics.dart'; export 'js_interop/core.dart'; export 'js_interop/fetch.dart'; export 'js_interop/new_file_system_access.dart'; export 'js_interop/indexed_db.dart'; export 'js_interop/typed_data.dart'; extension ReadBlob on Blob { Future byteBuffer() async { final buffer = await arrayBuffer().toDart; return buffer.toDart; } } ================================================ FILE: sqlite3/lib/src/wasm/loader.dart ================================================ import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'package:meta/meta.dart'; import 'injected_values.dart'; import 'package:web/web.dart' as web; /// Utility to load `sqlite3.wasm` files. /// /// This class can be extended to inject additional host functions into loaded /// modules. /// /// {@category wasm} @experimental base class WasmModuleLoader { final _dartFunctions = DartBridgeCallbacks(); /// Creates a JavaScript object providing definitions used as imported /// functions by the WebAssembly module. /// /// The default build uses the `dart` namespace to import definitions provided /// by the `sqlite3` package. Custom builds might need additional functions, /// which can be provided by overriding this method to install additional /// namespaces. JSObject createImportObject() { return JSObject()..['dart'] = createJSInteropWrapper(_dartFunctions); } /// Instantiates a module by calling `WebAssembly.instantiateStreaming` /// with the response and [createImportObject]. Future instantiateModule( web.Response response, ) { return web.WebAssembly.instantiateStreaming( response as JSPromise, createImportObject(), ).toDart; } /// Load and instantiate a WebAssembly module from a fetch response by /// providing host imports. /// /// Returns a `WebAssembly.Instance` JavaScript object. Future loadModule(web.Response response) async { final module = await instantiateModule(response); // If the module has an `_initialize` export, it needs to be called to run // C constructors and set up memory. final exports = module.instance.exports; if (exports.has('_initialize')) { (exports['_initialize'] as JSFunction).callAsFunction(); } return module.instance; } } // Hidden in public interface @internal extension InternalWasmLoader on WasmModuleLoader { DartBridgeCallbacks get dartFunctions => _dartFunctions; } ================================================ FILE: sqlite3/lib/src/wasm/sqlite3.dart ================================================ import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'dart:typed_data'; import 'package:web/web.dart' as web; import '../implementation/sqlite3.dart'; import 'bindings.dart'; import 'js_interop.dart'; import 'loader.dart'; import 'wasm_interop.dart'; /// A WebAssembly version of the [CommmonSqlite3] interface. /// /// This implementation supports the same API as the native version based on /// `dart:ffi`, but runs in the web. /// /// {@category wasm} final class WasmSqlite3 extends Sqlite3Implementation { /// Loads a web version of the sqlite3 libraries. /// /// [source] must be a byte buffer of a `sqlite.wasm` file prepared for this /// package. This file can be obtained at the [releases][pgk release] for this /// package. /// /// When the [source] is obtained through a HTTP request, consider directly /// using [loadFromUrl] as that method is more efficient. /// /// [pgk release]: https://github.com/simolus3/sqlite3.dart/releases static Future load( Uint8List source, { WasmModuleLoader? loader, }) { final headers = JSObject()..['content-type'] = 'application/wasm'.toJS; final fakeResponse = web.Response( source.toJS, web.ResponseInit(headers: headers), ); return _load(fakeResponse, loader); } /// Loads a web version of the sqlite3 libraries. /// /// The native wasm library for sqlite3 is loaded from the [uri] with the /// desired [headers] through a `fetch` request. /// /// [pgk release]: https://github.com/simolus3/sqlite3.dart/releases static Future loadFromUrl( Uri uri, { Map? headers, WasmModuleLoader? loader, }) async { web.RequestInit? options; if (headers != null) { final headersJs = JSObject(); headers.forEach((key, value) { headersJs[key] = value.toJS; }); options = web.RequestInit(headers: headersJs); } final jsUri = uri.isAbsolute ? web.URL(uri.toString()) : web.URL(uri.toString(), Uri.base.toString()); final response = await fetch(jsUri, options).toDart; return _load(response, loader); } static Future _load( web.Response fetchResponse, WasmModuleLoader? loader, ) async { loader ??= WasmModuleLoader(); final module = await loader.loadModule(fetchResponse); final bindings = WasmBindings(module, loader.dartFunctions); return WasmSqlite3._(bindings); } WasmSqlite3._(WasmBindings bindings) : super(WasmSqliteBindings(bindings)); } ================================================ FILE: sqlite3/lib/src/wasm/sqlite3_wasm.g.dart ================================================ import 'dart:js_interop'; import 'package:web/web.dart' show Global; // ignore_for_file: non_constant_identifier_names typedef Pointer = int; /// Typed wrappers around the symbols exported by SQLite. /// /// Generated by `tool/generate_bindings.dart`. extension type SqliteExports(JSObject raw) implements JSObject { external Global get sqlite3_temp_directory; external int sqlite3_initialize(); external void sqlite3_free(Pointer /**/ arg0); external int sqlite3_open_v2( Pointer /**/ filename, Pointer /**/ ppDb, int flags, Pointer /**/ zVfs, ); external int sqlite3_close_v2(Pointer /**/ db); external int sqlite3_extended_result_codes( Pointer /**/ db, int onoff, ); external int sqlite3_extended_errcode(Pointer /**/ db); external Pointer /**/ sqlite3_errmsg( Pointer /**/ db, ); external Pointer /**/ sqlite3_errstr(int code); external int sqlite3_error_offset(Pointer /**/ db); external Pointer /**/ sqlite3_libversion(); external Pointer /**/ sqlite3_sourceid(); external int sqlite3_libversion_number(); external JSBigInt sqlite3_last_insert_rowid( Pointer /**/ db, ); external int sqlite3_changes(Pointer /**/ db); external int sqlite3_exec( Pointer /**/ db, Pointer /**/ sql, Pointer /**/ callback, Pointer /**/ argToCb, Pointer /**/ errorOut, ); external int sqlite3_get_autocommit(Pointer /**/ db); external int sqlite3_prepare_v2( Pointer /**/ db, Pointer /**/ zSql, int nByte, Pointer /**/ ppStmt, Pointer /**/ pzTail, ); external int sqlite3_prepare_v3( Pointer /**/ db, Pointer /**/ zSql, int nByte, int prepFlags, Pointer /**/ ppStmt, Pointer /**/ pzTail, ); external int sqlite3_finalize(Pointer /**/ pStmt); external int sqlite3_step(Pointer /**/ pStmt); external int sqlite3_reset(Pointer /**/ pStmt); external int sqlite3_stmt_isexplain( Pointer /**/ pStmt, ); external int sqlite3_stmt_readonly(Pointer /**/ pStmt); external int sqlite3_column_count(Pointer /**/ pStmt); external int sqlite3_bind_parameter_count( Pointer /**/ pStmt, ); external int sqlite3_bind_parameter_index( Pointer /**/ arg0, Pointer /**/ zName, ); external Pointer /**/ sqlite3_column_name( Pointer /**/ pStmt, int N, ); external int sqlite3_bind_double( Pointer /**/ pStmt, int index, double data, ); external int sqlite3_bind_int64( Pointer /**/ pStmt, int index, JSBigInt data, ); external int sqlite3_bind_null( Pointer /**/ pStmt, int index, ); external Pointer /**/ sqlite3_column_blob( Pointer /**/ pStmt, int iCol, ); external double sqlite3_column_double( Pointer /**/ pStmt, int iCol, ); external JSBigInt sqlite3_column_int64( Pointer /**/ pStmt, int iCol, ); external Pointer /**/ sqlite3_column_text( Pointer /**/ pStmt, int iCol, ); external int sqlite3_column_bytes( Pointer /**/ pStmt, int iCol, ); external int sqlite3_column_type( Pointer /**/ pStmt, int iCol, ); external Pointer /**/ sqlite3_value_blob( Pointer /**/ value, ); external double sqlite3_value_double( Pointer /**/ value, ); external int sqlite3_value_type(Pointer /**/ value); external JSBigInt sqlite3_value_int64( Pointer /**/ value, ); external Pointer /**/ sqlite3_value_text( Pointer /**/ value, ); external int sqlite3_value_bytes(Pointer /**/ value); external int sqlite3_value_subtype( Pointer /**/ value, ); external Pointer /**/ sqlite3_aggregate_context( Pointer /**/ ctx, int nBytes, ); external Pointer /**/ sqlite3_user_data( Pointer /**/ ctx, ); external void sqlite3_result_blob64( Pointer /**/ ctx, Pointer /**/ data, JSBigInt length, Pointer /**/ destructor, ); external void sqlite3_result_double( Pointer /**/ ctx, double result, ); external void sqlite3_result_error( Pointer /**/ ctx, Pointer /**/ msg, int length, ); external void sqlite3_result_int64( Pointer /**/ ctx, JSBigInt result, ); external void sqlite3_result_null(Pointer /**/ ctx); external void sqlite3_result_text( Pointer /**/ ctx, Pointer /**/ data, int length, Pointer /**/ destructor, ); external void sqlite3_result_subtype( Pointer /**/ ctx, int subtype, ); external int sqlite3_db_config(Pointer /**/ db, int op); external int sqlite3session_create( Pointer /**/ db, Pointer /**/ zDb, Pointer /**/ ppSession, ); external void sqlite3session_delete( Pointer /**/ pSession, ); external int sqlite3session_enable( Pointer /**/ pSession, int bEnable, ); external int sqlite3session_indirect( Pointer /**/ pSession, int bIndirect, ); external int sqlite3changeset_start( Pointer /**/ pp, int nChangeset, Pointer /**/ pChangeset, ); external int sqlite3changeset_finalize( Pointer /**/ pIter, ); external int sqlite3changeset_next( Pointer /**/ pIter, ); external int sqlite3changeset_op( Pointer /**/ pIter, Pointer /**/ pzTab, Pointer /**/ pnCol, Pointer /**/ pOp, Pointer /**/ pbIndirect, ); external int sqlite3changeset_old( Pointer /**/ pIter, int iVal, Pointer /**/ ppValue, ); external int sqlite3changeset_new( Pointer /**/ pIter, int iVal, Pointer /**/ ppValue, ); external int sqlite3changeset_invert( int nIn, Pointer /**/ pIn, Pointer /**/ pnOut, Pointer /**/ ppOut, ); external int sqlite3session_patchset( Pointer /**/ pSession, Pointer /**/ pnPatchset, Pointer /**/ ppPatchset, ); external int sqlite3session_changeset( Pointer /**/ pSession, Pointer /**/ pnChangeset, Pointer /**/ ppChangeset, ); external int sqlite3session_isempty( Pointer /**/ pSession, ); external int sqlite3session_attach( Pointer /**/ pSession, Pointer /**/ zTab, ); external int sqlite3session_diff( Pointer /**/ pSession, Pointer /**/ zFromDb, Pointer /**/ zTbl, Pointer /**/ pzErrMsg, ); external Pointer /**/ dart_sqlite3_malloc(int size); external void dart_sqlite3_free(Pointer /**/ ptr); external int dart_sqlite3_bind_blob( Pointer /**/ stmt, int index, Pointer /**/ buf, int len, ); external int dart_sqlite3_bind_text( Pointer /**/ stmt, int index, Pointer /**/ buf, int len, ); external Pointer /**/ dart_sqlite3_register_vfs( Pointer /**/ name, ExternalDartReference? vfs, int makeDefault, ); external int dart_sqlite3_unregister_vfs( Pointer /**/ vfs, ); external int dart_sqlite3_create_function_v2( Pointer /**/ db, Pointer /**/ zFunctionName, int nArg, int eTextRep, int isAggregate, ExternalDartReference? handlers, ); external int dart_sqlite3_create_window_function( Pointer /**/ db, Pointer /**/ zFunctionName, int nArg, int eTextRep, ExternalDartReference? handlers, ); external void dart_sqlite3_updates( Pointer /**/ db, ExternalDartReference? callback, ); external void dart_sqlite3_commits( Pointer /**/ db, ExternalDartReference? callback, ); external void dart_sqlite3_rollbacks( Pointer /**/ db, ExternalDartReference? callback, ); external int dart_sqlite3_create_collation( Pointer /**/ db, Pointer /**/ zName, int eTextRep, ExternalDartReference? function, ); external int dart_sqlite3_db_config_int( Pointer /**/ db, int op, int arg, ); external int dart_sqlite3changeset_apply( Pointer /**/ db, int nChangeset, Pointer /**/ pChangeset, ExternalDartReference? callbacks, int filter, ); external int dart_sqlite3_busy_handler( Pointer /**/ db, ExternalDartReference? callback, ); } ================================================ FILE: sqlite3/lib/src/wasm/vfs/async_opfs/client.dart ================================================ import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'dart:math'; import 'dart:typed_data'; import 'package:path/path.dart' as p; import '../../../constants.dart'; import '../../../vfs.dart'; import '../../js_interop.dart'; import '../../../utils.dart'; import 'sync_channel.dart'; import 'worker.dart'; /// A VFS implementation based on the file system access API without shared /// workers. /// /// The file system access API provides synchronous access to opened files. /// These need to be opened first however, and that process is asynchronous. /// SQLite, being a C library, expects synchronous access to the file system. /// [WasmVfs] is a workaround for this problem that relies on a pair of workers /// that together make asynchronous APIs synchronous. /// /// 1. One worker is responsible for hosting the database. This worker installs /// a [WasmVfs] on the registered SQLite instance. /// The worker uses [WasmVfs.createOptions] to obtain an options object /// containing shared array buffers for efficient communication. /// 2. Another worker is hosting the file system. This is asynchronous, but by /// using `Atomics` APIs and the shared array buffers, the database worker /// can access the file system synchronously. /// /// The second worker is implemented by [VfsWorker]. Note that [WasmVfs] is only /// available in browsing contexts where shared array buffers and atomics are /// available. /// For an automatic feature detection and logic to pick a suitable /// implementation based on browser features, consider using a package like /// `sqlite3_web` (or `sqlite_async` for cross-platform support). /// /// {@category wasm} final class WasmVfs extends BaseVirtualFileSystem { final RequestResponseSynchronizer synchronizer; final MessageSerializer serializer; final String chroot; final p.Context pathContext; WasmVfs({ super.random, required WorkerOptions workerOptions, this.chroot = '/', String vfsName = 'dart-sqlite3-vfs', }) : synchronizer = RequestResponseSynchronizer( workerOptions.synchronizationBuffer, ), serializer = MessageSerializer(workerOptions.communicationBuffer), pathContext = p.Context(style: p.Style.url, current: chroot), super(name: vfsName); Res _runInWorker( WorkerOperation operation, Req requestData, ) { serializer.write(requestData); final rc = synchronizer.requestAndWaitForResponse(operation.index); if (rc != 0) { throw VfsException(rc); } return operation.readResponse(serializer); } @override int xAccess(String path, int flags) { final res = _runInWorker( WorkerOperation.xAccess, NameAndInt32Flags(path, flags, 0, 0), ); return res.flag0; } @override void xDelete(String path, int syncDir) { _runInWorker( WorkerOperation.xDelete, NameAndInt32Flags(path, syncDir, 0, 0), ); } @override String xFullPathName(String path) { final resolved = pathContext.absolute(path); if (!p.isWithin(chroot, resolved)) { throw const VfsException(SqlError.SQLITE_CANTOPEN); } return resolved; } @override XOpenResult xOpen(Sqlite3Filename path, int flags) { final filePath = path.path ?? random.randomFileName(prefix: chroot); final result = _runInWorker( WorkerOperation.xOpen, NameAndInt32Flags(filePath, flags, 0, 0), ); final outFlags = result.flag0; final fd = result.flag1; return (outFlags: outFlags, file: WasmFile(this, fd)); } @override void xSleep(Duration duration) { _runInWorker(WorkerOperation.xSleep, Flags(duration.inMilliseconds, 0, 0)); } void close() { _runInWorker(WorkerOperation.stopServer, const EmptyMessage()); } static bool get supportsAtomicsAndSharedMemory { return Atomics.supported && globalContext.has('SharedArrayBuffer'); } /// Creates [WorkerOptions] that can be sent to an [VfsWorker] instance which /// is responsible for hosting the file system on the other end. static WorkerOptions createOptions({String root = 'pkg_sqlite3_db/'}) { return WorkerOptions( synchronizationBuffer: RequestResponseSynchronizer.createBuffer(), communicationBuffer: SharedArrayBuffer(MessageSerializer.totalSize), root: root, ); } } class WasmFile extends BaseVfsFile { final WasmVfs vfs; final int fd; int lockStatus = SqlFileLockingLevels.SQLITE_LOCK_NONE; WasmFile(this.vfs, this.fd); @override int get xDeviceCharacteristics { return SqlDeviceCharacteristics.SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN; } @override int readInto(Uint8List buffer, int offset) { var remainingBytes = buffer.length; var totalBytesRead = 0; while (remainingBytes > 0) { // There's a limit on the length of byte data we can transmit with one // worker call. A single read call is unlikely to exceed this, but we run // this in a loop to be safe. final bytesToRead = min(MessageSerializer.dataSize, remainingBytes); remainingBytes -= bytesToRead; final result = vfs._runInWorker( WorkerOperation.xRead, Flags(fd, offset + totalBytesRead, bytesToRead), ); final bytesRead = result.flag0; // Copy read bytes into result buffer. buffer.set(vfs.serializer.viewByteRange(0, bytesRead), totalBytesRead); totalBytesRead += bytesRead; if (bytesRead < bytesToRead) { // short read! No point in reading further as the end of the file has // been reached. break; } } return totalBytesRead; } @override int xCheckReservedLock() { // Copying the approach from sqlite3's implementation here: We can't check // whether another tab has a lock on this file without racing. So, we just // reprot whether _we_ have a lock... return lockStatus != SqlFileLockingLevels.SQLITE_LOCK_NONE ? 1 : 0; } @override void xClose() { vfs._runInWorker(WorkerOperation.xClose, Flags(fd, 0, 0)); } @override int xFileSize() { final response = vfs._runInWorker( WorkerOperation.xFileSize, Flags(fd, 0, 0), ); return response.flag0; } @override void xLock(int mode) { // In our implementation, all locks are exclusive. So we only need to lock // if this file is not currently locked. if (lockStatus == SqlFileLockingLevels.SQLITE_LOCK_NONE) { vfs._runInWorker(WorkerOperation.xLock, Flags(fd, mode, 0)); } lockStatus = mode; } @override void xSync(int flags) { vfs._runInWorker(WorkerOperation.xSync, Flags(fd, 0, 0)); } @override void xTruncate(int size) { vfs._runInWorker(WorkerOperation.xTruncate, Flags(fd, size, 0)); } @override void xUnlock(int mode) { // As we only have exlusive locks in OPFS, this only needs to do something // when sqlite3 requests to clear the lock entirely. if (lockStatus != SqlFileLockingLevels.SQLITE_LOCK_NONE && mode == SqlFileLockingLevels.SQLITE_LOCK_NONE) { vfs._runInWorker(WorkerOperation.xUnlock, Flags(fd, mode, 0)); } } @override void xWrite(Uint8List buffer, int fileOffset) { var remainingBytes = buffer.length; var totalBytesWritten = 0; while (remainingBytes > 0) { // Again, we may have to split this into multiple write calls if the // buffer would otherwise overflow. final bytesToWrite = min(MessageSerializer.dataSize, remainingBytes); final subBuffer = (bytesToWrite == remainingBytes && totalBytesWritten == 0) ? buffer : buffer.buffer.asUint8List( buffer.offsetInBytes + totalBytesWritten, bytesToWrite, ); vfs.serializer.byteView.set(subBuffer, 0); vfs._runInWorker( WorkerOperation.xWrite, Flags(fd, fileOffset + totalBytesWritten, bytesToWrite), ); totalBytesWritten += bytesToWrite; remainingBytes -= bytesToWrite; } } } ================================================ FILE: sqlite3/lib/src/wasm/vfs/async_opfs/sync_channel.dart ================================================ import 'dart:convert'; import 'dart:typed_data'; import '../../js_interop.dart'; const protocolVersion = 1; const asyncIdleWaitTimeMs = 150; const asyncIdleWaitTime = Duration(milliseconds: asyncIdleWaitTimeMs); /// Implements a synchronous mechanism to wait for requests and responses. class RequestResponseSynchronizer { static const _requestIndex = 0; static const _responseIndex = 1; // 2 32-bit slots for the int32 array static const _byteLength = 2 * 4; /// The shared array buffer used with atomics for synchronization. /// /// It must have a length of [byteLength]. final SharedArrayBuffer buffer; /// A int32 view over [buffer], required for atomics to work. final Int32List int32View; RequestResponseSynchronizer._(this.buffer) : int32View = buffer.asInt32List(); factory RequestResponseSynchronizer([SharedArrayBuffer? buffer]) { if (buffer != null && buffer.byteLength != _byteLength) { throw ArgumentError('Must be $_byteLength in length'); } return RequestResponseSynchronizer._( buffer ?? SharedArrayBuffer(_byteLength), ); } /// Creates a shared buffer and fills it with the initial state suitable for /// a request synchronization channel. static SharedArrayBuffer createBuffer() { final buffer = SharedArrayBuffer(_byteLength); final view = buffer.asInt32List(); // The server will wait for the request index to not be -1 to wait for a // request. The initial value when allocating shared buffers is 0, which is // also a valid opcode. Atomics.store(view, _requestIndex, -1); return buffer; } /// Send a request with the given [opcode], wait for the remote worker to /// process it and returns the response code. int requestAndWaitForResponse(int opcode) { assert(opcode >= 0); Atomics.store(int32View, _responseIndex, -1); Atomics.store(int32View, _requestIndex, opcode); Atomics.notify(int32View, _requestIndex); // Async worker will take over here... Atomics.wait(int32View, _responseIndex, -1); return Atomics.load(int32View, _responseIndex); } String waitForRequest() { return Atomics.waitWithTimeout( int32View, _requestIndex, -1, asyncIdleWaitTimeMs, ); } int takeOpcode() { final opcode = Atomics.load(int32View, _requestIndex); Atomics.store(int32View, _requestIndex, -1); return opcode; } void respond(int rc) { assert(rc != -1); Atomics.store(int32View, _responseIndex, rc); Atomics.notify(int32View, _responseIndex); } } class MessageSerializer { static const dataSize = 64 * 1024; static const metaOffset = dataSize; static const metaSize = 2048; static const totalSize = metaOffset + metaSize; final SharedArrayBuffer buffer; final ByteData dataView; final Uint8List byteView; MessageSerializer(this.buffer) : dataView = buffer.asByteData(metaOffset, metaSize), byteView = buffer.asUint8List(); void write(Message message) { if (message is EmptyMessage) { // Nothing to do } else if (message is Flags) { dataView.setInt32(0, message.flag0); dataView.setInt32(4, message.flag1); dataView.setInt32(8, message.flag2); if (message is NameAndInt32Flags) { _writeString(12, message.name); } } else { throw UnsupportedError('Message $message'); } } Uint8List viewByteRange(int offset, int length) { return buffer.asUint8ListSlice(offset, length); } String _readString(int offset) { final length = dataView.getInt32(offset); return utf8.decode(buffer.asUint8ListSlice(offset + 4, length)); } void _writeString(int offset, String data) { final encoded = utf8.encode(data); dataView.setInt32(offset, encoded.length); byteView.setAll(offset + 4, encoded); } static EmptyMessage readEmpty(MessageSerializer unused) { return const EmptyMessage(); } static Flags readFlags(MessageSerializer msg) { return Flags( msg.dataView.getInt32(0), msg.dataView.getInt32(4), msg.dataView.getInt32(8), ); } static NameAndInt32Flags readNameAndFlags(MessageSerializer msg) { return NameAndInt32Flags( msg._readString(12), msg.dataView.getInt32(0), msg.dataView.getInt32(4), msg.dataView.getInt32(8), ); } } enum WorkerOperation { xAccess( MessageSerializer.readNameAndFlags, MessageSerializer.readFlags, ), xDelete( MessageSerializer.readNameAndFlags, MessageSerializer.readEmpty, ), xOpen( MessageSerializer.readNameAndFlags, MessageSerializer.readFlags, ), xRead(MessageSerializer.readFlags, MessageSerializer.readFlags), xWrite( MessageSerializer.readFlags, MessageSerializer.readEmpty, ), xSleep( MessageSerializer.readFlags, MessageSerializer.readEmpty, ), xClose( MessageSerializer.readFlags, MessageSerializer.readEmpty, ), xFileSize( MessageSerializer.readFlags, MessageSerializer.readFlags, ), xSync( MessageSerializer.readFlags, MessageSerializer.readEmpty, ), xTruncate( MessageSerializer.readFlags, MessageSerializer.readEmpty, ), xLock( MessageSerializer.readFlags, MessageSerializer.readEmpty, ), xUnlock( MessageSerializer.readFlags, MessageSerializer.readEmpty, ), stopServer( MessageSerializer.readEmpty, MessageSerializer.readEmpty, ); final Req Function(MessageSerializer) readRequest; final Res Function(MessageSerializer) readResponse; const WorkerOperation(this.readRequest, this.readResponse); } abstract class Message { const Message(); } class EmptyMessage extends Message { const EmptyMessage(); } class Flags extends Message { final int flag0; final int flag1; final int flag2; Flags(this.flag0, this.flag1, this.flag2); } class NameAndInt32Flags extends Flags { final String name; NameAndInt32Flags(this.name, super.flag0, super.flag1, super.flag2); } ================================================ FILE: sqlite3/lib/src/wasm/vfs/async_opfs/worker.dart ================================================ // https://github.com/dart-lang/sdk/issues/54801 @JS() library; import 'dart:js_interop'; import 'package:path/path.dart' as p show url; import 'package:web/web.dart' show FileSystemDirectoryHandle, FileSystemFileHandle, FileSystemSyncAccessHandle, FileSystemReadWriteOptions; import '../../../constants.dart'; import '../../../vfs.dart'; import '../../js_interop.dart'; import 'sync_channel.dart'; const _workerDebugLog = bool.fromEnvironment( 'sqlite3.wasm.worker.debug', defaultValue: false, ); void _log(String message) { if (_workerDebugLog) print(message); } /// Options created by an [WasmVfs]. These include the shared array buffers used /// to make asynchronous web APIs synchronous for SQLite. /// /// {@category wasm} @JS() @anonymous extension type WorkerOptions._raw(JSObject _) implements JSObject { external int get clientVersion; external String get root; external SharedArrayBuffer get synchronizationBuffer; external SharedArrayBuffer get communicationBuffer; external factory WorkerOptions._({ required int clientVersion, required String root, required SharedArrayBuffer synchronizationBuffer, required SharedArrayBuffer communicationBuffer, }); factory WorkerOptions({ int clientVersion = protocolVersion, required String root, required SharedArrayBuffer synchronizationBuffer, required SharedArrayBuffer communicationBuffer, }) { return WorkerOptions._( clientVersion: clientVersion, root: root, synchronizationBuffer: synchronizationBuffer, communicationBuffer: communicationBuffer, ); } } class _ResolvedPath { final String fullPath; final FileSystemDirectoryHandle directory; final String filename; _ResolvedPath(this.fullPath, this.directory, this.filename); Future openFile({bool create = false}) { return directory.openFile(filename, create: create); } } /// Contains code used to implement web workers that are prodiving synchronous /// access to asynchronous web APIs (like OPFS). /// /// Users of this library are supposed to construct [WorkerOptions] in their /// database worker and send them to another worker responsible for hosting the /// file system. /// That worker uses [VfsWorker.create] to make the file system accessible. /// For more details and an overview of this implementation, see [WasmVfs]. /// /// {@category wasm} class VfsWorker { final RequestResponseSynchronizer synchronizer; final MessageSerializer messages; final FileSystemDirectoryHandle root; var _fdCounter = 0; var _stopped = false; final Map _openFiles = {}; final Set<_OpenedFileHandle> _implicitlyHeldLocks = {}; VfsWorker._(WorkerOptions options, this.root) : synchronizer = RequestResponseSynchronizer(options.synchronizationBuffer), messages = MessageSerializer(options.communicationBuffer); static Future create(WorkerOptions options) async { var root = await storageManager!.directory; final split = p.url.split(options.root); for (final directory in split) { root = await root.getDirectory(directory, create: true); } return VfsWorker._(options, root); } Future<_ResolvedPath> _resolvePath( String absolutePath, { bool createDirectories = false, }) async { final fullPath = p.url.relative(absolutePath, from: '/'); final [...directories, file] = p.url.split(fullPath); var dirHandle = root; for (final entry in directories) { dirHandle = await dirHandle.getDirectory( entry, create: createDirectories, ); } return _ResolvedPath(fullPath, dirHandle, file); } Future _xAccess(NameAndInt32Flags flags) async { try { final resolved = await _resolvePath(flags.name); // If we can open the file, it exists. For OPFS, that means that it's both // readable and writable. await resolved.openFile(); return Flags(1, 0, 0); } catch (e) { return Flags(0, 0, 0); } } Future _xDelete(NameAndInt32Flags options) async { final resolved = await _resolvePath(options.name); try { await resolved.directory.remove(resolved.filename); } catch (e) { _log('Could not delete entry: $e'); throw const VfsException(SqlExtendedError.SQLITE_IOERR_DELETE); } } Future _xOpen(NameAndInt32Flags req) async { final flags = req.flag0; final create = (flags & SqlFlag.SQLITE_OPEN_CREATE) != 0; _ResolvedPath resolved; try { resolved = await _resolvePath(req.name, createDirectories: create); } catch (e) { // Error traversing the path throw VfsException(SqlError.SQLITE_NOTFOUND); } final fileHandle = await resolved.openFile(create: create); final readonly = !create && (flags & SqlFlag.SQLITE_OPEN_READONLY) != 0; final opened = _OpenedFileHandle( fd: _fdCounter++, directory: resolved.directory, fullPath: resolved.fullPath, filename: resolved.filename, file: fileHandle, deleteOnClose: (flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE) != 0, readonly: readonly, ); _openFiles[opened.fd] = opened; var outFlags = 0; if (readonly) { outFlags |= SqlFlag.SQLITE_OPEN_READONLY; } // flag0 are the outFlags passed to sqlite, flag1 is the descriptor return Flags(outFlags, opened.fd, 0); } Future _xRead(Flags req) async { final file = _openFiles[req.flag0]!; final offset = req.flag1; final bufferLength = req.flag2; assert(bufferLength <= MessageSerializer.dataSize); final syncHandle = await _openForSynchronousAccess(file); final bytesRead = syncHandle.readDart( messages.viewByteRange(0, bufferLength), FileSystemReadWriteOptions(at: offset), ); return Flags(bytesRead, 0, 0); } Future _xWrite(Flags req) async { final file = _openFiles[req.flag0]!; final offset = req.flag1; final bufferLength = req.flag2; assert(bufferLength <= MessageSerializer.dataSize); final syncHandle = await _openForSynchronousAccess(file); final bytesWritten = syncHandle.writeDart( messages.viewByteRange(0, bufferLength), FileSystemReadWriteOptions(at: offset), ); if (bytesWritten != bufferLength) { throw const VfsException(SqlExtendedError.SQLITE_IOERR_WRITE); } return const EmptyMessage(); } Future _xClose(Flags req) async { final file = _openFiles.remove(req.flag0); _implicitlyHeldLocks.remove(file); if (file == null) { throw const VfsException(SqlError.SQLITE_NOTFOUND); } _closeSyncHandle(file); if (file.deleteOnClose) { await file.directory.remove(file.filename); } } Future _xFileSize(Flags req) async { final file = _openFiles[req.flag0]!; try { final syncHandle = await _openForSynchronousAccess(file); final size = syncHandle.getSize(); return Flags(size, 0, 0); } finally { _releaseImplicitLock(file); } } Future _xTruncate(Flags req) async { final file = _openFiles[req.flag0]!; file.checkMayWrite(); try { final syncHandle = await _openForSynchronousAccess(file); syncHandle.truncate(req.flag1); } finally { _releaseImplicitLock(file); } return const EmptyMessage(); } Future _xSync(Flags req) async { final file = _openFiles[req.flag0]!; // Closing a sync handle will also flush it, so we only need to call flush // explicitly if the file is currently opened. final syncHandle = file.syncHandle; if (!file.readonly && syncHandle != null) { syncHandle.flush(); } return const EmptyMessage(); } Future _xLock(Flags req) async { final file = _openFiles[req.flag0]!; if (file.syncHandle == null) { try { await _openForSynchronousAccess(file); file.explicitlyLocked = true; } on Object { throw const VfsException(SqlExtendedError.SQLITE_IOERR_LOCK); } } else { // We already have an (implicit) lock on this file, so we just need to // make it explicit. file.explicitlyLocked = true; } return const EmptyMessage(); } Future _xUnlock(Flags req) async { final file = _openFiles[req.flag0]!; final mode = req.flag1; final existingHandle = file.syncHandle; if (existingHandle != null && mode == SqlFileLockingLevels.SQLITE_LOCK_NONE) { _closeSyncHandle(file); } return const EmptyMessage(); } Future start() async { while (!_stopped) { final waitResult = synchronizer.waitForRequest(); if (waitResult == Atomics.timedOut) { // No requests for some time, transition to idle _releaseImplicitLocks(); continue; } int rc; WorkerOperation? opcode; Object? request; try { opcode = WorkerOperation.values[synchronizer.takeOpcode()]; request = opcode.readRequest(messages); Message response; switch (opcode) { case WorkerOperation.xSleep: _releaseImplicitLocks(); await Future.delayed( Duration(milliseconds: (request as Flags).flag0), ); response = const EmptyMessage(); break; case WorkerOperation.xAccess: response = await _xAccess(request as NameAndInt32Flags); break; case WorkerOperation.xDelete: await _xDelete(request as NameAndInt32Flags); response = const EmptyMessage(); break; case WorkerOperation.xOpen: response = await _xOpen(request as NameAndInt32Flags); break; case WorkerOperation.xRead: response = await _xRead(request as Flags); break; case WorkerOperation.xWrite: response = await _xWrite(request as Flags); break; case WorkerOperation.xClose: await _xClose(request as Flags); response = const EmptyMessage(); break; case WorkerOperation.xFileSize: response = await _xFileSize(request as Flags); break; case WorkerOperation.xTruncate: response = await _xTruncate(request as Flags); break; case WorkerOperation.xSync: response = await _xSync(request as Flags); break; case WorkerOperation.xLock: response = await _xLock(request as Flags); break; case WorkerOperation.xUnlock: response = await _xUnlock(request as Flags); break; case WorkerOperation.stopServer: response = const EmptyMessage(); _stopped = true; _releaseImplicitLocks(); break; } messages.write(response); rc = 0; } on VfsException catch (e) { _log('Caught $e while handling $opcode($request)'); rc = e.returnCode; } catch (e) { _log('Caught $e while handling $opcode($request)'); rc = 1; } synchronizer.respond(rc); } } void _releaseImplicitLocks() { _implicitlyHeldLocks.toList().forEach(_releaseImplicitLock); } void _releaseImplicitLock(_OpenedFileHandle handle) { if (_implicitlyHeldLocks.remove(handle)) { _closeSyncHandleNoThrow(handle); } } Future _openForSynchronousAccess( _OpenedFileHandle file, ) async { final existing = file.syncHandle; if (existing != null) { return existing; } var attempt = 1; const maxAttempts = 6; while (true) { try { final handle = file.syncHandle = await file.file .createSyncAccessHandle() .toDart; // We've locked the file simply because we've created an (exclusive) // synchronous access handle. If there was no explicit lock on this // file (through xLock), let's remember that we've locked the file. For // most operations (e.g. subsequent reads and writes), we keep a lock // across requests. if (!file.explicitlyLocked) { _implicitlyHeldLocks.add(file); _log('Acquired implicit lock for ${file.fullPath}'); } return handle; } catch (e) { if (attempt == maxAttempts) { throw const VfsException(SqlError.SQLITE_IOERR); } _log('Could not obtain sync handle (attempt $attempt / $maxAttempts)'); attempt++; } } } void _closeSyncHandleNoThrow(_OpenedFileHandle handle) { try { _closeSyncHandle(handle); } catch (e) { _log('Ignoring error during close'); } } void _closeSyncHandle(_OpenedFileHandle handle) { final syncHandle = handle.syncHandle; if (syncHandle != null) { _log('Closing sync handle for ${handle.fullPath}'); handle.syncHandle = null; _implicitlyHeldLocks.remove(handle); handle.explicitlyLocked = false; syncHandle.close(); } } } class _OpenedFileHandle { final int fd; final bool readonly; final bool deleteOnClose; final String fullPath; final FileSystemDirectoryHandle directory; final String filename; final FileSystemFileHandle file; bool explicitlyLocked = false; FileSystemSyncAccessHandle? syncHandle; _OpenedFileHandle({ required this.fd, required this.readonly, required this.deleteOnClose, required this.fullPath, required this.directory, required this.filename, required this.file, }); void checkMayWrite() { if (readonly) { throw const VfsException(SqlError.SQLITE_READONLY); } } } ================================================ FILE: sqlite3/lib/src/wasm/vfs/indexed_db.dart ================================================ @JS() library; import 'dart:async'; import 'dart:collection'; import 'dart:js_interop'; import 'dart:math'; import 'dart:typed_data'; import 'package:meta/meta.dart'; import 'package:typed_data/typed_buffers.dart'; import 'package:web/web.dart' as web; import '../../constants.dart'; import '../../vfs.dart'; import '../js_interop.dart'; import '../../in_memory_vfs.dart'; import '../../utils.dart'; /// An (asynchronous) file system implementation backed by IndexedDB. /// /// For a synchronous variant of this that implements [FileSystem], use /// [IndexedDbFileSystem]. It uses an in-memory cache to synchronously wrap this /// file system (at the loss of durability guarantees). @internal class AsynchronousIndexedDbFileSystem { // Format of the files store: `{name: , length: }`. See also // [_FileEntry], which is the actual object that we're storing in the // database. static const _filesStore = 'files'; static const _fileName = 'name'; static const _fileNameIndex = 'fileName'; // Format of blocks store: Key is a (file id, offset) pair, value is a blob. // Each blob is 4096 bytes large. If we have a file that isn't a multiple of // this length, we set the "length" attribute on the file instead of storing // shorter blobs. This simplifies the implementation. static const _blocksStore = 'blocks'; static const _stores = [_filesStore, _blocksStore]; static final _storesJs = [_filesStore.toJS, _blocksStore.toJS].toJS; static const _blockSize = 4096; static const _maxFileSize = 9007199254740992; web.IDBDatabase? _database; final String _dbName; AsynchronousIndexedDbFileSystem(this._dbName); bool get _isClosed => _database == null; web.IDBKeyRange _rangeOverFile( int fileId, { int startOffset = 0, int endOffsetInclusive = _maxFileSize, }) { // The key of blocks is an array, [fileId, offset]. So if we want to iterate // through a fixed file, we use `[fileId, 0]` as a lower and `[fileId, max]` // as a higher bound. return web.IDBKeyRange.bound( [fileId.toJS, startOffset.toJS].toJS, [fileId.toJS, endOffsetInclusive.toJS].toJS, ); } Future open() async { // We need to wrap the open call in a completer. Otherwise the `open()` // future never completes if we're blocked. final completer = Completer.sync(); final openRequest = indexedDB!.open(_dbName, 1); openRequest.onupgradeneeded = (web.IDBVersionChangeEvent change) { final database = openRequest.result as web.IDBDatabase; if (change.oldVersion == 0) { final files = database.createObjectStore( _filesStore, web.IDBObjectStoreParameters(autoIncrement: true), ); files.createIndex( _fileNameIndex, _fileName.toJS, web.IDBIndexParameters(unique: true), ); database.createObjectStore(_blocksStore); } }.toJS; final openFuture = openRequest.completeOrBlocked(); completer.complete(openFuture); _database = await completer.future; } void close() { _database?.close(); } Future clear() { final transaction = _database!.transaction(_storesJs, 'readwrite'); return Future.wait([ for (final name in _stores) transaction.objectStore(name).clear().complete(), ]); } /// Loads all file paths and their ids. Future> listFiles() async { final transaction = _database!.transaction(_filesStore.toJS, 'readonly'); final result = {}; final iterator = transaction .objectStore(_filesStore) .index(_fileNameIndex) .openKeyCursor() .cursorIterator(); while (await iterator.moveNext()) { final row = iterator.current; result[(row.key! as JSString).toDart] = (row.primaryKey! as JSNumber).toDartInt; } return result; } Future fileIdForPath(String path) async { final transaction = _database!.transaction(_filesStore.toJS, 'readonly'); final index = transaction.objectStore(_filesStore).index(_fileNameIndex); return (await index.getKey(path.toJS).complete()).toDartInt; } Future createFile(String path) async { final transaction = _database!.transaction(_filesStore.toJS, 'readwrite'); final store = transaction.objectStore(_filesStore); final res = await store .put(_FileEntry(name: path, length: 0)) .complete(); return res.toDartInt; } Future<_FileEntry> _readFile(web.IDBTransaction transaction, int fileId) { final files = transaction.objectStore(_filesStore); return files.get(fileId.toJS).complete<_FileEntry?>().then((value) { if (value == null) { throw ArgumentError.value( fileId, 'fileId', 'File not found in database', ); } else { return value; } }); } Future readFully(int fileId) async { final transaction = _database!.transaction(_storesJs, 'readonly'); final blocks = transaction.objectStore(_blocksStore); final file = await _readFile(transaction, fileId); final result = Uint8List(file.length); final readOperations = >[]; final reader = blocks .openCursor(_rangeOverFile(fileId)) .cursorIterator(); while (await reader.moveNext()) { final row = reader.current; final key = (row.key as JSArray).toDart; final rowOffset = (key[1] as JSNumber).toDartInt; final length = min(_blockSize, file.length - rowOffset); // We can't have an async suspension in here because that would close the // transaction. Launch the reader now and wait for all reads later. readOperations.add( Future.sync(() async { ByteBuffer data; if (row.value.instanceOfString('Blob')) { data = await (row.value as web.Blob).byteBuffer(); } else { data = (row.value as JSArrayBuffer).toDart; } result.setAll(rowOffset, data.asUint8List(0, length)); }), ); } await Future.wait(readOperations); return result; } Future read(int fileId, int offset, Uint8List target) async { final transaction = _database!.transaction(_storesJs, 'readonly'); final blocks = transaction.objectStore(_blocksStore); final file = await _readFile(transaction, fileId); final previousBlockStart = (offset ~/ _blockSize) * _blockSize; final range = _rangeOverFile(fileId, startOffset: previousBlockStart); var bytesRead = 0; final readOperations = >[]; final iterator = blocks .openCursor(range) .cursorIterator(); while (await iterator.moveNext()) { final row = iterator.current; final key = (row.key as JSArray).toDart; final rowOffset = (key[1] as JSNumber).toDartInt; final value = row.value; final isBlob = value.instanceOfString('Blob'); final valueSize = isBlob ? (value as web.Blob).size : (value as _JSArrayBuffer).byteLength; final dataLength = min(valueSize, file.length - rowOffset); if (rowOffset < offset) { // This block starts before the section that we're interested in, so cut // off the initial bytes. final startInRow = offset - rowOffset; final lengthToCopy = min(dataLength, target.length); bytesRead += lengthToCopy; // Do the reading async because we loose the transaction on the first // suspension. readOperations.add( Future.sync(() async { final data = isBlob ? await (value as web.Blob).byteBuffer() : (value as _JSArrayBuffer).toDart; target.setRange( 0, lengthToCopy, data.asUint8List(startInRow, lengthToCopy), ); }), ); if (lengthToCopy >= target.length) { break; } } else { final startInTarget = rowOffset - offset; final lengthToCopy = min(dataLength, target.length - startInTarget); if (lengthToCopy < 0) { // This row starts past the end of the section we're interested in. break; } bytesRead += lengthToCopy; readOperations.add( Future.sync(() async { final data = isBlob ? await (value as web.Blob).byteBuffer() : (value as _JSArrayBuffer).toDart; target.setAll(startInTarget, data.asUint8List(0, lengthToCopy)); }), ); if (lengthToCopy >= target.length - startInTarget) { break; } } } await Future.wait(readOperations); return bytesRead; } Future _write(int fileId, _FileWriteRequest writes) async { final transaction = _database!.transaction(_storesJs, 'readwrite'); final blocks = transaction.objectStore(_blocksStore); final file = await _readFile(transaction, fileId); Future writeBlock(int blockStart, Uint8List block) async { assert(block.length == _blockSize, 'Invalid block size'); // Check if we're overriding (parts of) an existing block final cursor = await blocks .openCursor(web.IDBKeyRange.only([fileId.toJS, blockStart.toJS].toJS)) .complete(); final value = block.buffer.toJS; if (cursor == null) { // There isn't, let's write a new block await blocks .put(value, [fileId.toJS, blockStart.toJS].toJS) .complete(); } else { await cursor.update(value).complete(); } } final changedOffsets = writes.replacedBlocks.keys.toList()..sort(); await Future.wait( changedOffsets.map( (offset) => writeBlock(offset, writes.replacedBlocks[offset]!), ), ); if (writes.newFileLength != file.length) { final files = transaction.objectStore(_filesStore); final fileCursor = files.openCursor(fileId.toJS).cursorIterator(); await fileCursor.moveNext(); // Update the file length as recorded in the database await fileCursor.current .update(_FileEntry(name: file.name, length: writes.newFileLength)) .complete(); } } Future truncate(int fileId, int length) async { final transaction = _database!.transaction(_storesJs, 'readwrite'); final files = transaction.objectStore(_filesStore); final blocks = transaction.objectStore(_blocksStore); // First, let's find the size of the file final file = await _readFile(transaction, fileId); final fileLength = file.length; if (fileLength > length) { final lastBlock = (length ~/ _blockSize) * _blockSize; // Delete all higher blocks await blocks .delete(_rangeOverFile(fileId, startOffset: lastBlock + 1)) .complete(); } else if (fileLength < length) {} // Update the file length as recorded in the database final fileCursor = files.openCursor(fileId.toJS).cursorIterator(); await fileCursor.moveNext(); await fileCursor.current .update(_FileEntry(name: file.name, length: length)) .complete(); } Future deleteFile(int id) async { final transaction = _database!.transaction( [_filesStore.toJS, _blocksStore.toJS].toJS, 'readwrite', ); final blocksRange = _rangeOverFile( id, startOffset: 0, endOffsetInclusive: _maxFileSize, ); await Future.wait([ transaction.objectStore(_blocksStore).delete(blocksRange).complete(), transaction.objectStore(_filesStore).delete(id.toJS).complete(), ]); } } /// An object that we store in IndexedDB to keep track of files. /// /// Using a `@JS` is easier than dealing with JavaScript objects exported as /// maps. @JS() extension type _FileEntry._(JSObject _) implements JSObject { external String get name; external int get length; external factory _FileEntry({required String name, required int length}); } class _FileWriteRequest { static const _blockLength = AsynchronousIndexedDbFileSystem._blockSize; final Uint8List originalContent; final Map replacedBlocks = {}; int newFileLength; _FileWriteRequest(this.originalContent) : newFileLength = originalContent.length; void _updateBlock(int blockOffset, int offsetInBlock, Uint8List data) { final block = replacedBlocks.putIfAbsent(blockOffset, () { final block = Uint8List(_blockLength); if (originalContent.length > blockOffset) { block.setAll( 0, originalContent.buffer.asUint8List( originalContent.offsetInBytes + blockOffset, min(_blockLength, originalContent.length - blockOffset), ), ); } return block; }); block.setAll(offsetInBlock, data); } void addWrite(int offset, Uint8List data) { var offsetInData = 0; while (offsetInData < data.length) { final offsetInFile = offset + offsetInData; final blockStart = offsetInFile ~/ _blockLength * _blockLength; int offsetInBlock, bytesToWrite; if (offsetInFile % _blockLength != 0) { // Write to block boundary offsetInBlock = offsetInFile % _blockLength; bytesToWrite = min( _blockLength - offsetInBlock, data.length - offsetInData, ); } else { // Write full block if possible bytesToWrite = min(_blockLength, data.length - offsetInData); offsetInBlock = 0; } final chunk = data.buffer.asUint8List( data.offsetInBytes + offsetInData, bytesToWrite, ); offsetInData += bytesToWrite; _updateBlock(blockStart, offsetInBlock, chunk); } newFileLength = max(newFileLength, offset + data.length); } } class _OffsetAndBuffer { final int offset; final Uint8List buffer; _OffsetAndBuffer(this.offset, this.buffer); } /// A file system storing files divided into blocks in an IndexedDB database. /// /// As sqlite3's file system is synchronous and IndexedDB isn't, no guarantees /// on durability can be made. Instead, file changes are written at some point /// after the database is changed. However you can wait for changes manually /// with [flush] /// /// In the future, we may want to store individual blocks instead. /// /// {@category wasm} final class IndexedDbFileSystem extends BaseVirtualFileSystem { final AsynchronousIndexedDbFileSystem _asynchronous; var _isClosing = false; _IndexedDbWorkItem? _currentWorkItem; // A cache so that synchronous changes are visible right away final InMemoryFileSystem _memory; final LinkedList<_IndexedDbWorkItem> _pendingWork = LinkedList(); final Set _inMemoryOnlyFiles = {}; final Map _knownFileIds = {}; IndexedDbFileSystem._( String dbName, { String vfsName = 'indexeddb', super.random, }) : _asynchronous = AsynchronousIndexedDbFileSystem(dbName), _memory = InMemoryFileSystem(random: random), super(name: vfsName); /// Loads an IndexedDB file system identified by the [dbName]. /// /// Each file system with a different name will store an independent file /// system. static Future open({ required String dbName, String vfsName = 'indexeddb', Random? random, }) async { final fs = IndexedDbFileSystem._(dbName, vfsName: vfsName, random: random); await fs._asynchronous.open(); await fs._readFiles(); return fs; } /// Returns all IndexedDB database names accessible from the current context. /// /// This may return `null` if `IDBFactory.databases()` is not supported by the /// current browser. static Future?> databases() async { return (await indexedDB!.databases().toDart).toDart .map((e) => e.name) .toList(); } /// Deletes an IndexedDB database. static Future deleteDatabase([ String dbName = 'sqlite3_databases', ]) async { // A bug in Dart SDK can cause deadlock here. Timeout added as workaround // https://github.com/dart-lang/sdk/issues/48854 await indexedDB! .deleteDatabase(dbName) .completeOrBlocked() .timeout( const Duration(milliseconds: 1000), onTimeout: () => throw VfsException(1), ); } /// Whether this file system is closing or closed. /// /// To await a full close operation, call and await [close]. bool get isClosed => _isClosing || _asynchronous._isClosed; Future _submitWork(_IndexedDbWorkItem work) { _checkClosed(); // See if this unit of work can be combined with scheduled work units. if (work.insertInto(_pendingWork)) { _startWorkingIfNeeded(); return work.completer.future; } else { // This item determined that it doesn't need to do any work at its place // in the queue, so just skip it. return Future.value(); } } Future _submitWorkFunction( FutureOr Function() work, String description, ) { return _submitWork(_FunctionWorkItem(work, description)); } void _startWorkingIfNeeded() { if (_currentWorkItem == null && _pendingWork.isNotEmpty) { final item = _currentWorkItem = _pendingWork.first; _pendingWork.remove(item); final workUnit = Future(item.run).whenComplete(() { _currentWorkItem = null; // In case there's another item in the waiting list _startWorkingIfNeeded(); }); item.completer.complete(workUnit); } } Future close() async { if (!_isClosing) { final result = _submitWorkFunction(_asynchronous.close, 'close'); _isClosing = true; return result; } else if (_pendingWork.isNotEmpty) { // Already closing, await all pending operations then. final op = _pendingWork.last; return op.completer.future; } } void _checkClosed() { if (isClosed) { throw VfsException(SqlError.SQLITE_IOERR); } } Future _fileId(String path) async { if (_knownFileIds.containsKey(path)) { return _knownFileIds[path]!; } else { return _knownFileIds[path] = (await _asynchronous.fileIdForPath(path))!; } } Future _readFiles() async { final rawFiles = await _asynchronous.listFiles(); _knownFileIds.addAll(rawFiles); for (final entry in rawFiles.entries) { final name = entry.key; final fileId = entry.value; final buffer = Uint8Buffer(); final data = await _asynchronous.readFully(fileId); buffer.length = data.length; buffer.setRange(0, data.length, data); _memory.fileData[name] = buffer; } } /// Waits for all pending operations to finish, then completes the future. /// /// Each call to [flush] will await pending operations made _before_ the call. /// Operations started after this [flush] call will not be awaited by the /// returned future. Future flush() { return _submitWorkFunction(() {}, 'flush'); } @override int xAccess(String path, int flags) => _memory.xAccess(path, flags); @override void xDelete(String path, int syncDir) { _memory.xDelete(path, syncDir); if (!_inMemoryOnlyFiles.remove(path)) { _submitWork(_DeleteFileWorkItem(this, path)); } } @override String xFullPathName(String path) => _memory.xFullPathName(path); @override XOpenResult xOpen(Sqlite3Filename path, int flags) { final pathStr = path.path ?? random.randomFileName(prefix: '/'); final existedBefore = _memory.xAccess(pathStr, 0) != 0; final inMemoryFile = _memory.xOpen(Sqlite3Filename(pathStr), flags); final deleteOnClose = (flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE) != 0; if (!existedBefore) { if (deleteOnClose) { // No point in persisting this file, it doesn't exist and won't exist // after we're done. _inMemoryOnlyFiles.add(pathStr); } else { _submitWork(_CreateFileWorkItem(this, pathStr)); } } return ( outFlags: 0, file: _IndexedDbFile(this, inMemoryFile.file, pathStr), ); } @override void xSleep(Duration duration) { // noop } } class _IndexedDbFile implements VirtualFileSystemFile { final IndexedDbFileSystem vfs; final VirtualFileSystemFile memoryFile; final String path; _IndexedDbFile(this.vfs, this.memoryFile, this.path); @override void xRead(Uint8List target, int fileOffset) { memoryFile.xRead(target, fileOffset); } @override int get xDeviceCharacteristics => 0; @override int xCheckReservedLock() => memoryFile.xCheckReservedLock(); @override void xClose() {} @override int xFileSize() => memoryFile.xFileSize(); @override void xLock(int mode) => memoryFile.xLock(mode); @override void xSync(int flags) { // We can't wait for a sync either way, so this just has to be a noop } @override void xTruncate(int size) { vfs._checkClosed(); memoryFile.xTruncate(size); if (!vfs._inMemoryOnlyFiles.contains(path)) { vfs._submitWorkFunction( () async => vfs._asynchronous.truncate(await vfs._fileId(path), size), 'truncate $path', ); } } @override void xUnlock(int mode) => memoryFile.xUnlock(mode); @override void xWrite(Uint8List buffer, int fileOffset) { vfs._checkClosed(); if (vfs._inMemoryOnlyFiles.contains(path)) { // There's nothing to persist, so we just forward the write to the in- // memory buffer. memoryFile.xWrite(buffer, fileOffset); return; } final previousContent = vfs._memory.fileData[path] ?? Uint8Buffer(); final previousList = previousContent.buffer.asUint8List( 0, previousContent.length, ); memoryFile.xWrite(buffer, fileOffset); // We need to copy the buffer for the write because it will become invalid // after this synchronous method returns. final copy = Uint8List(buffer.length)..setAll(0, buffer); vfs._submitWork( _WriteFileWorkItem(vfs, path, previousList) ..writes.add(_OffsetAndBuffer(fileOffset, copy)), ); } } sealed class _IndexedDbWorkItem extends LinkedListEntry<_IndexedDbWorkItem> { final Completer completer = Completer.sync(); /// Insert this item into the [pending] list, returning whether the item was /// actually added. /// /// Some items may want to look at the current state of the work queue for /// optimization purposes. For instance: /// /// - if two writes to the same file are scheduled, they can be merged into /// a single transaction for efficiency. /// - if a file creation or writes are followed by inserting a delete request /// to the same file, previous items can be deleted from the queue. bool insertInto(LinkedList<_IndexedDbWorkItem> pending) { pending.add(this); return true; } FutureOr run(); } final class _FunctionWorkItem extends _IndexedDbWorkItem { final FutureOr Function() work; final String description; _FunctionWorkItem(this.work, this.description); @override FutureOr run() => work(); } final class _DeleteFileWorkItem extends _IndexedDbWorkItem { final IndexedDbFileSystem fileSystem; final String path; _DeleteFileWorkItem(this.fileSystem, this.path); @override bool insertInto(LinkedList<_IndexedDbWorkItem> pending) { if (pending.isNotEmpty) { // Check queue from back to front and see if this delete can be merged // into an existing operation or if it cancels out a creation operation // that is pending. _IndexedDbWorkItem? current = pending.last; while (current != null) { if (current is _DeleteFileWorkItem) { // If there already is a pending "delete" request available, we don't // have to run a new one. if (current.path == path) { // File is already getting deleted, no need to do that again. return false; } else { // Unrelated delete request, look further current = current.previous; } } else if (current is _WriteFileWorkItem) { final previous = current.previous; if (current.path == path) { // There's a pending write to a file that we're deleting now, that // can be unscheduled now. current.unlink(); } current = previous; } else if (current is _CreateFileWorkItem) { if (current.path == path) { // The creation of this file is pending. Since we're now enqueuing // its deletion, those two just cancel each other out. current.unlink(); return false; } current = current.previous; } else { // Can't simplify further, we don't know what this general item is // doing. break; } } } pending.add(this); return true; } @override Future run() async { final id = await fileSystem._fileId(path); fileSystem._knownFileIds.remove(path); await fileSystem._asynchronous.deleteFile(id); } } final class _CreateFileWorkItem extends _IndexedDbWorkItem { final IndexedDbFileSystem fileSystem; final String path; _CreateFileWorkItem(this.fileSystem, this.path); @override Future run() async { final id = await fileSystem._asynchronous.createFile(path); fileSystem._knownFileIds[path] = id; } } final class _WriteFileWorkItem extends _IndexedDbWorkItem { final IndexedDbFileSystem fileSystem; final String path; final Uint8List originalContent; final List<_OffsetAndBuffer> writes = []; _WriteFileWorkItem(this.fileSystem, this.path, this.originalContent); @override bool insertInto(LinkedList<_IndexedDbWorkItem> pending) { var current = pending.isEmpty ? null : pending.last; while (current != null) { if (current is _WriteFileWorkItem) { if (current.path == path) { // Merge the two pending writes into one transaction. current.writes.addAll(writes); return false; } else { current = current.previous; } } else if (current is _CreateFileWorkItem) { if (current.path == path) { // Don't look further than the item that created this file, who knows // what happened before that. break; } current = current.previous; } else { break; } } pending.add(this); return true; } @override Future run() async { final request = _FileWriteRequest(originalContent); for (final write in writes) { request.addWrite(write.offset, write.buffer); } await fileSystem._asynchronous._write( await fileSystem._fileId(path), request, ); } } @JS('ArrayBuffer') extension type _JSArrayBuffer(JSArrayBuffer _) implements JSArrayBuffer { external int get byteLength; } ================================================ FILE: sqlite3/lib/src/wasm/vfs/simple_opfs.dart ================================================ import 'dart:js_interop'; import 'dart:typed_data'; import 'package:meta/meta.dart'; import 'package:path/path.dart' as p; import 'package:web/web.dart' show FileSystemDirectoryHandle, FileSystemSyncAccessHandle, FileSystemReadWriteOptions, FileSystemRemoveOptions, DOMException; import '../../constants.dart'; import '../../vfs.dart'; import '../js_interop.dart'; import '../../in_memory_vfs.dart'; @internal enum FileType { database('/database'), journal('/database-journal'); final String filePath; const FileType(this.filePath); static final byName = {for (final entry in values) entry.filePath: entry}; } /// A [VirtualFileSystem] for the `sqlite3` wasm library based on the [file system access API]. /// /// By design, this file system can only store two files: `/database` and /// `/database-journal`. Thus, when this file system is used, the only sqlite3 /// database that will be persisted properly is the one at `/database`. /// /// The limitation of only being able to store two files comes from the fact /// that we can't synchronously _open_ files in with the file system access API, /// only reads and writes are synchronous. /// By having a known amount of files to store, we can open both files (done in /// [SimpleOpfsFileSystem.inDirectory] or [SimpleOpfsFileSystem.loadFromStorage]), /// which is asynchronous too. The actual file system work, which needs to be /// synchronous for sqlite3 to function, does not need any further wrapper. /// /// Please note that [SimpleOpfsFileSystem]s are only available in dedicated web workers, /// not in the JavaScript context for a tab or a shared web worker. /// /// [file system access API]: https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API /// /// {@category wasm} final class SimpleOpfsFileSystem extends BaseVirtualFileSystem { // The storage idea here is to open sync file handles at the beginning, so // that no new async open needs to happen when these callbacks are invoked by // sqlite3. // We open a sync file for each stored file ([FileType]), plus a meta file // file handle that describes whether files exist or not. Handles for stored // files just store the raw data directly. The meta file is a 2-byte file // storing whether the database or the journal file exists. By storing this // information in a secondary file, we avoid the problem of having to query // the FileSystem Access API to check whether a file exists, which can only be // done asynchronously. final FileSystemSyncAccessHandle _metaHandle; final Uint8List _existsList = Uint8List(FileType.values.length); final Map _files; final InMemoryFileSystem _memory = InMemoryFileSystem(); SimpleOpfsFileSystem._( this._metaHandle, this._files, { String vfsName = 'simple-opfs', }) : super(name: vfsName); static Future<(FileSystemDirectoryHandle?, FileSystemDirectoryHandle)> _resolveDir(String path, {bool create = true}) async { final storage = storageManager; if (storage == null) { throw VfsException(SqlError.SQLITE_ERROR); } FileSystemDirectoryHandle? parent; var opfsDirectory = await storage.directory; for (final segment in p.split(path)) { parent = opfsDirectory; opfsDirectory = await opfsDirectory.getDirectory(segment, create: create); } return (parent, opfsDirectory); } /// Loads an [SimpleOpfsFileSystem] in the desired [path] under the root directory /// for OPFS as given by `navigator.storage.getDirectory()` in JavaScript. /// /// Throws a [VfsException] if OPFS is not available - please note that /// this file system implementation requires a recent browser and only works /// in dedicated web workers. /// /// When [readWriteUnsafe] is passed, the synchronous file handles are opened /// using the [proposed lock mode](https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md). /// This mode is currently not supported across browsers, but can be used on /// Chrome for faster database access across tabs. static Future loadFromStorage( String path, { String vfsName = 'simple-opfs', bool readWriteUnsafe = false, }) async { final storage = storageManager; if (storage == null) { throw VfsException(SqlError.SQLITE_ERROR); } final (_, directory) = await _resolveDir(path); return inDirectory( directory, vfsName: vfsName, readWriteUnsafe: readWriteUnsafe, ); } /// Deletes the file system directory handle that would store sqlite3 /// databases when using [loadFromStorage] with the same path. static Future deleteFromStorage(String path) async { final FileSystemDirectoryHandle? parent; final FileSystemDirectoryHandle handle; try { (parent, handle) = await _resolveDir(path, create: false); } on DOMException catch (e) { if (e.name == 'NotFoundError' || e.name == 'TypeMismatchError') { // Directory doesn't exist, ignore. return; } else { rethrow; } } if (parent != null) { await parent .removeEntry(handle.name, FileSystemRemoveOptions(recursive: true)) .toDart; } } /// Loads an [SimpleOpfsFileSystem] in the desired [root] directory, which must be /// a Dart wrapper around a [FileSystemDirectoryHandle]. /// /// When [readWriteUnsafe] is passed, the synchronous file handles are opened /// using the [proposed lock mode](https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md). /// This mode is currently not supported across browsers, but can be used on /// Chrome for faster database access across tabs. /// /// [FileSystemDirectoryHandle]: https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryHandle static Future inDirectory( FileSystemDirectoryHandle root, { String vfsName = 'simple-opfs', bool readWriteUnsafe = false, }) async { Future open(String name) async { final handle = await root.openFile(name, create: true); final syncHandlePromise = readWriteUnsafe ? ProposedLockingSchemeApi(handle).createSyncAccessHandle( FileSystemCreateSyncAccessHandleOptions.unsafeReadWrite(), ) : handle.createSyncAccessHandle(); return await syncHandlePromise.toDart; } final meta = await open('meta'); meta.truncate(2); final files = { for (final type in FileType.values) type: await open(type.name), }; return SimpleOpfsFileSystem._(meta, files, vfsName: vfsName); } void _markExists(FileType type, bool exists) { _existsList[type.index] = exists ? 1 : 0; _metaHandle.writeDart(_existsList, FileSystemReadWriteOptions(at: 0)); } FileType? _recognizeType(String path) { return FileType.byName[path]; } @override int xAccess(String path, int flags) { final type = _recognizeType(path); if (type == null) { return _memory.xAccess(path, flags); } else { _metaHandle.readDart(_existsList, FileSystemReadWriteOptions(at: 0)); return _existsList[type.index]; } } @override void xDelete(String path, int syncDir) { final type = _recognizeType(path); if (type == null) { return _memory.xDelete(path, syncDir); } else { _markExists(type, false); } } @override String xFullPathName(String path) { return p.url.normalize('/$path'); } @override XOpenResult xOpen(Sqlite3Filename path, int flags) { final pathStr = path.path; if (pathStr == null) return _memory.xOpen(path, flags); final recognized = _recognizeType(pathStr); if (recognized == null) return _memory.xOpen(path, flags); final create = (flags & SqlFlag.SQLITE_OPEN_CREATE) != 0; final deleteOnClose = (flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE) != 0; _metaHandle.readDart(_existsList, FileSystemReadWriteOptions(at: 0)); final existsAlready = _existsList[recognized.index] != 0; final syncHandle = _files[recognized]!; if (!existsAlready) { if (create) { syncHandle.truncate(0); _markExists(recognized, true); } else { throw const VfsException(SqlError.SQLITE_CANTOPEN); } } return ( outFlags: 0, file: _SimpleOpfsFile(this, recognized, syncHandle, deleteOnClose), ); } @override void xSleep(Duration duration) {} /// Closes the synchronous access handles kept open while this file system is /// active. void close() { _metaHandle.close(); for (final file in _files.values) { file.close(); } } } class _SimpleOpfsFile extends BaseVfsFile { final SimpleOpfsFileSystem vfs; final FileType type; final FileSystemSyncAccessHandle syncHandle; final bool deleteOnClose; var _lockMode = SqlFileLockingLevels.SQLITE_LOCK_NONE; _SimpleOpfsFile(this.vfs, this.type, this.syncHandle, this.deleteOnClose); @override int readInto(Uint8List buffer, int offset) { return syncHandle.readDart(buffer, FileSystemReadWriteOptions(at: offset)); } @override int xCheckReservedLock() { return _lockMode >= SqlFileLockingLevels.SQLITE_LOCK_RESERVED ? 1 : 0; } @override void xClose() { syncHandle.flush(); if (deleteOnClose) { vfs._markExists(type, false); } } @override int xFileSize() { return syncHandle.getSize(); } @override void xLock(int mode) { _lockMode = mode; } @override void xSync(int flags) { syncHandle.flush(); } @override void xTruncate(int size) { syncHandle.truncate(size); } @override void xUnlock(int mode) { _lockMode = mode; } @override void xWrite(Uint8List buffer, int fileOffset) { final bytesWritten = syncHandle.writeDart( buffer, FileSystemReadWriteOptions(at: fileOffset), ); if (bytesWritten < buffer.length) { throw const VfsException(SqlExtendedError.SQLITE_IOERR_WRITE); } } } ================================================ FILE: sqlite3/lib/src/wasm/wasm_interop.dart ================================================ import 'dart:convert'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'dart:typed_data'; import 'package:web/web.dart'; import '../implementation/bindings.dart'; import 'injected_values.dart'; import 'js_interop.dart'; import 'sqlite3_wasm.g.dart'; // ignore_for_file: non_constant_identifier_names class WasmBindings { // We're compiling to 32bit wasm static const pointerSize = 4; final Instance instance; final Memory memory; final DartBridgeCallbacks callbacks; final SqliteExports sqlite3; // Finalizers are deliberately referenced from this instance only - if the // entire instance and module is GCed, we don't need to manually invoke // finalizers anymore. Finalizer? changesetFinalizer, sessionFinalizer, databaseFinalizer, statementFinalizer; WasmBindings(this.instance, this.callbacks) : memory = callbacks.memory = _exportedMemory(instance), sqlite3 = SqliteExports(instance.exports) { callbacks.bindings = this; changesetFinalizer = Finalizer((p) => sqlite3.sqlite3changeset_finalize(p)); sessionFinalizer = Finalizer((p) => sqlite3.sqlite3session_delete(p)); databaseFinalizer = Finalizer((p) => sqlite3.sqlite3_close_v2(p)); statementFinalizer = Finalizer((p) => sqlite3.sqlite3_finalize(p)); } Pointer allocateBytes(List bytes, {int additionalLength = 0}) { final ptr = malloc(bytes.length + additionalLength); memory.asBytes ..setRange(ptr, ptr + bytes.length, bytes) ..fillRange(ptr + bytes.length, ptr + bytes.length + additionalLength, 0); return ptr; } Pointer allocateZeroTerminated(String string) { return allocateBytes(utf8.encode(string), additionalLength: 1); } Pointer malloc(int size) { return sqlite3.dart_sqlite3_malloc(size); } void free(Pointer pointer) { sqlite3.dart_sqlite3_free(pointer); } void sqlite3_free(Pointer ptr) => sqlite3.sqlite3_free(ptr); int sqlite3_initialize() => sqlite3.sqlite3_initialize(); int create_window_function( Pointer db, Pointer functionName, int nArg, int eTextRep, RegisteredFunctionSet set, ) { return sqlite3.dart_sqlite3_create_window_function( db, functionName, nArg, eTextRep, set.toExternalReference, ); } int sqlite3_vfs_unregister(Pointer vfs) { return sqlite3.dart_sqlite3_unregister_vfs(vfs); } int sqlite3_libversion() => sqlite3.sqlite3_libversion(); Pointer sqlite3_sourceid() => sqlite3.sqlite3_sourceid(); int sqlite3_libversion_number() => sqlite3.sqlite3_libversion_number(); int sqlite3_open_v2(Pointer filename, Pointer ppDb, int flags, Pointer zVfs) { return sqlite3.sqlite3_open_v2(filename, ppDb, flags, zVfs); } int sqlite3_close_v2(Pointer db) => sqlite3.sqlite3_close_v2(db); int sqlite3_extended_errcode(Pointer db) => sqlite3.sqlite3_extended_errcode(db); Pointer sqlite3_errmsg(Pointer db) => sqlite3.sqlite3_errmsg(db); Pointer sqlite3_errstr(int resultCode) => sqlite3.sqlite3_errstr(resultCode); int sqlite3_error_offset(Pointer db) { return sqlite3.sqlite3_error_offset(db); } int sqlite3_extended_result_codes(Pointer db, int onoff) { return sqlite3.sqlite3_extended_result_codes(db, onoff); } /// Pass a non-negative [id] to enable update tracking on the db, a negative /// one to stop it. void dart_sqlite3_updates(Pointer db, RawUpdateHook? hook) { return sqlite3.dart_sqlite3_updates(db, hook?.toExternalReference); } void dart_sqlite3_commits(Pointer db, RawCommitHook? hook) { return sqlite3.dart_sqlite3_commits(db, hook?.toExternalReference); } void dart_sqlite3_rollbacks(Pointer db, RawRollbackHook? rollback) { return sqlite3.dart_sqlite3_rollbacks(db, rollback?.toExternalReference); } int sqlite3_exec( Pointer db, Pointer sql, Pointer callback, Pointer callbackArg, Pointer errorOut, ) { return sqlite3.sqlite3_exec(db, sql, callback, callbackArg, errorOut); } int sqlite3_prepare_v3( Pointer db, Pointer sql, int length, int prepFlags, Pointer ppStmt, Pointer pzTail, ) { return sqlite3.sqlite3_prepare_v3( db, sql, length, prepFlags, ppStmt, pzTail, ); } int sqlite3_bind_parameter_count(Pointer stmt) { return sqlite3.sqlite3_bind_parameter_count(stmt); } int sqlite3_bind_null(Pointer stmt, int index) { return sqlite3.sqlite3_bind_null(stmt, index); } int sqlite3_bind_int64(Pointer stmt, int index, BigInt value) { return sqlite3.sqlite3_bind_int64( stmt, index, JsBigInt.fromBigInt(value).jsObject, ); } int sqlite3_bind_int(Pointer stmt, int index, int value) { return sqlite3.sqlite3_bind_int64( stmt, index, JsBigInt.fromInt(value).jsObject, ); } int sqlite3_bind_double(Pointer stmt, int index, double value) { return sqlite3.sqlite3_bind_double(stmt, index, value); } /// Calls `sqlite3_bind_text` with `free` as the destructor argument. int sqlite3_bind_text_finalizerFree( Pointer stmt, int index, Pointer text, int length, ) { return sqlite3.dart_sqlite3_bind_text(stmt, index, text, length); } /// Calls `sqlite3_bind_blob` with `free` as the destructor argument. int sqlite3_bind_blob_finalizerFree( Pointer stmt, int index, Pointer test, int length, ) { return sqlite3.dart_sqlite3_bind_blob(stmt, index, test, length); } int sqlite3_bind_parameter_index(Pointer statement, Pointer key) { return sqlite3.sqlite3_bind_parameter_index(statement, key); } int sqlite3_column_count(Pointer stmt) { return sqlite3.sqlite3_column_count(stmt); } Pointer sqlite3_column_name(Pointer stmt, int index) { return sqlite3.sqlite3_column_name(stmt, index); } int sqlite3_column_type(Pointer stmt, int index) { return sqlite3.sqlite3_column_type(stmt, index); } JsBigInt sqlite3_column_int64(Pointer stmt, int index) { return JsBigInt(sqlite3.sqlite3_column_int64(stmt, index)); } double sqlite3_column_double(Pointer stmt, int index) { return sqlite3.sqlite3_column_double(stmt, index); } int sqlite3_column_bytes(Pointer stmt, int index) { return sqlite3.sqlite3_column_bytes(stmt, index); } Pointer sqlite3_column_text(Pointer stmt, int index) { return sqlite3.sqlite3_column_text(stmt, index); } Pointer sqlite3_column_blob(Pointer stmt, int index) { return sqlite3.sqlite3_column_blob(stmt, index); } int sqlite3_value_type(Pointer value) { return sqlite3.sqlite3_value_type(value); } int sqlite3_value_subtype(Pointer value) { return sqlite3.sqlite3_value_subtype(value); } JsBigInt sqlite3_value_int64(Pointer value) { return JsBigInt(sqlite3.sqlite3_value_int64(value)); } double sqlite3_value_double(Pointer value) { return sqlite3.sqlite3_value_double(value); } int sqlite3_value_bytes(Pointer value) { return sqlite3.sqlite3_value_bytes(value); } Pointer sqlite3_value_text(Pointer value) { return sqlite3.sqlite3_value_text(value); } Pointer sqlite3_value_blob(Pointer value) { return sqlite3.sqlite3_value_blob(value); } void sqlite3_result_null(Pointer context) { sqlite3.sqlite3_result_null(context); } void sqlite3_result_int64(Pointer context, BigInt value) { sqlite3.sqlite3_result_int64(context, JsBigInt.fromBigInt(value).jsObject); } void sqlite3_result_double(Pointer context, double value) { sqlite3.sqlite3_result_double(context, value); } void sqlite3_result_text( Pointer context, Pointer text, int length, Pointer a, ) { sqlite3.sqlite3_result_text(context, text, length, a); } void sqlite3_result_blob64( Pointer context, Pointer blob, int length, Pointer a, ) { sqlite3.sqlite3_result_blob64(context, blob, JsBigInt.fromInt(length), a); } void sqlite3_result_error(Pointer context, Pointer text, int length) { sqlite3.sqlite3_result_error(context, text, length); } void sqlite3_result_subtype(Pointer context, int subtype) { sqlite3.sqlite3_result_subtype(context, subtype); } int sqlite3_user_data(Pointer context) { return sqlite3.sqlite3_user_data(context); } Pointer sqlite3_aggregate_context(Pointer context, int nBytes) { return sqlite3.sqlite3_aggregate_context(context, nBytes); } int sqlite3_step(Pointer stmt) => sqlite3.sqlite3_step(stmt); int sqlite3_reset(Pointer stmt) => sqlite3.sqlite3_reset(stmt); int sqlite3_finalize(Pointer stmt) => sqlite3.sqlite3_finalize(stmt); int sqlite3_changes(Pointer db) => sqlite3.sqlite3_changes(db); int sqlite3_stmt_isexplain(Pointer stmt) => sqlite3.sqlite3_stmt_isexplain(stmt); int sqlite3_stmt_readonly(Pointer stmt) => sqlite3.sqlite3_stmt_readonly(stmt); int sqlite3_last_insert_rowid(Pointer db) => JsBigInt(sqlite3.sqlite3_last_insert_rowid(db)).asDartInt; int sqlite3_get_autocommit(Pointer db) => sqlite3.sqlite3_get_autocommit(db); int sqlite3_db_config(Pointer db, int op, int value) { return sqlite3.dart_sqlite3_db_config_int(db, op, value); } int sqlite3session_create(Pointer db, Pointer zDb, Pointer sessionOut) { return sqlite3.sqlite3session_create(db, zDb, sessionOut); } void sqlite3session_delete(Pointer session) { sqlite3.sqlite3session_delete(session); } int sqlite3session_enable(Pointer session, int enable) { return sqlite3.sqlite3session_enable(session, enable); } int sqlite3session_indirect(Pointer session, int enable) { return sqlite3.sqlite3session_indirect(session, enable); } int sqlite3session_isempty(Pointer session) { return sqlite3.sqlite3session_isempty(session); } int sqlite3session_attach(Pointer session, Pointer zTab) { return sqlite3.sqlite3session_attach(session, zTab); } int sqlite3session_diff( Pointer session, Pointer zFromDb, Pointer zTbl, Pointer pzErrMsg, ) { return sqlite3.sqlite3session_diff(session, zFromDb, zTbl, pzErrMsg); } int sqlite3session_patchset( Pointer session, Pointer pnPatchset, Pointer ppPatchset, ) { return sqlite3.sqlite3session_patchset(session, pnPatchset, ppPatchset); } int sqlite3session_changeset( Pointer session, Pointer pnPatchset, Pointer ppPatchset, ) { return sqlite3.sqlite3session_changeset(session, pnPatchset, ppPatchset); } int sqlite3changeset_invert( int nIn, Pointer pIn, Pointer pnOut, Pointer ppOut, ) { return sqlite3.sqlite3changeset_invert(nIn, pIn, pnOut, ppOut); } int sqlite3changeset_start(Pointer outPtr, int size, Pointer changeset) { return sqlite3.sqlite3changeset_start(outPtr, size, changeset); } int sqlite3changeset_finalize(Pointer iterator) { return sqlite3.sqlite3changeset_finalize(iterator); } int sqlite3changeset_next(Pointer iterator) { return sqlite3.sqlite3changeset_next(iterator); } int sqlite3changeset_op( Pointer iterator, Pointer outTable, Pointer outColCount, Pointer outOp, Pointer outIndirect, ) { return sqlite3.sqlite3changeset_op( iterator, outTable, outColCount, outOp, outIndirect, ); } int sqlite3changeset_old(Pointer iterator, int iVal, Pointer outValue) { return sqlite3.sqlite3changeset_old(iterator, iVal, outValue); } int sqlite3changeset_new(Pointer iterator, int iVal, Pointer outValue) { return sqlite3.sqlite3changeset_new(iterator, iVal, outValue); } Pointer get sqlite3_temp_directory { return (sqlite3.sqlite3_temp_directory.value as JSNumber).toDartInt; } set sqlite3_temp_directory(Pointer value) { sqlite3.sqlite3_temp_directory.value = value.toJS; } } extension WrappedMemory on Memory { ByteBuffer get dartBuffer => buffer.toDart; Uint8List get asBytes => buffer.toDart.asUint8List(); int strlen(int address) { assert(address != 0, 'Null pointer dereference'); final bytes = dartBuffer.asUint8List(address); var length = 0; while (bytes[length] != 0) { length++; } return length; } int int32ValueOfPointer(Pointer pointer) { assert(pointer != 0, 'Null pointer dereference'); return dartBuffer.asInt32List()[pointer >> 2]; } void setInt32Value(Pointer pointer, int value) { assert(pointer != 0, 'Null pointer dereference'); dartBuffer.asInt32List()[pointer >> 2] = value; } void setInt64Value(Pointer pointer, JsBigInt value) { assert(pointer != 0, 'Null pointer dereference'); dartBuffer.asByteData().setBigInt64(pointer, value, true); } String readString(int address, [int? length]) { assert(address != 0, 'Null pointer dereference'); return utf8.decode( dartBuffer.asUint8List(address, length ?? strlen(address)), ); } String? readNullableString(int address, [int? length]) { if (address == 0) return null; return utf8.decode( dartBuffer.asUint8List(address, length ?? strlen(address)), ); } Uint8List copyRange(Pointer pointer, int length) { final list = Uint8List(length); list.setAll(0, dartBuffer.asUint8List(pointer, length)); return list; } } Memory _exportedMemory(Instance instance) { return instance.exports['memory'] as Memory; } ================================================ FILE: sqlite3/lib/unstable/ffi_bindings.dart ================================================ /// Direct and raw access to `ffigen` generated bindings to `libsqlite3`. /// /// This is inherently unstable, this library is not covered by semver releases /// for the `sqlite3` Dart package. /// /// @nodoc library; export '../src/ffi/libsqlite3.g.dart'; ================================================ FILE: sqlite3/lib/wasm.dart ================================================ /// Experimental access to `sqlite3` on the web. /// /// Using this library requires additional setup, see the readme of the /// `sqlite3` package for details. /// /// Also, please note that this library is not production-ready at the moment /// and should be used with caution. /// In particular, the implementation of the virtual file system used to store /// persistent databases may change in a way that requires migration work in the /// future. /// /// {@category wasm} library; export 'common.dart'; export 'src/wasm/vfs/simple_opfs.dart' show SimpleOpfsFileSystem; export 'src/wasm/vfs/indexed_db.dart' show IndexedDbFileSystem; export 'src/wasm/vfs/async_opfs/client.dart' show WasmVfs; export 'src/wasm/vfs/async_opfs/worker.dart' show WorkerOptions, VfsWorker; export 'src/wasm/loader.dart' show WasmModuleLoader; export 'src/wasm/sqlite3.dart'; ================================================ FILE: sqlite3/pubspec.yaml ================================================ name: sqlite3 description: Provides lightweight yet convenient bindings to SQLite by using dart:ffi version: 3.3.2-wip homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3 issue_tracker: https://github.com/simolus3/sqlite3.dart/issues resolution: workspace environment: # We want >=3.10, but Flutter 3.38 somehow ships with a beta Dart SDK that rejects >=3.10 deps. sdk: '>=3.9.999 <4.0.0' # This package supports all platforms listed below. platforms: android: ios: linux: macos: web: windows: topics: - sql - database - ffi - sqlite dependencies: collection: ^1.15.0 ffi: '^2.1.0' meta: ^1.3.0 path: ^1.8.0 web: ^1.1.0 typed_data: ^1.3.2 hooks: ^1.0.0 code_assets: ^1.0.0 native_toolchain_c: '>=0.17.5 <0.19.0' crypto: ^3.0.6 dev_dependencies: analyzer: ^12.0.0 build_daemon: ^4.0.0 build_runner: ^2.1.7 build_web_compilers: ^4.0.3 dart_style: ^3.0.1 ffigen: ^20.1.0 http: ^1.2.1 lints: ^6.0.0 shelf: ^1.4.0 shelf_proxy: ^1.0.2 shelf_static: ^1.1.0 stream_channel: ^2.1.0 test: ^1.31.0 test_descriptor: ^2.0.0 pub_semver: ^2.1.5 convert: ^3.1.2 package_config: ^2.2.0 logging: ^1.3.0 ================================================ FILE: sqlite3/test/common/database.dart ================================================ import 'dart:async'; import 'dart:convert'; import 'dart:typed_data'; import 'package:sqlite3/common.dart'; import 'package:test/test.dart'; import 'utils.dart'; void testDatabase( FutureOr Function() loadSqlite, { bool hasColumnMetadata = false, bool hasSharedCache = false, }) { late CommonSqlite3 sqlite3; late CommonDatabase database; setUpAll(() async => sqlite3 = await loadSqlite()); setUp(() => database = sqlite3.openInMemory()); tearDown(() => database.close()); test('user version', () { expect(database.userVersion, 0); database.userVersion = 1; expect(database.userVersion, 1); }); test("database can't be used after close", () { database.close(); expect(() => database.execute('SELECT 1;'), throwsStateError); }); test('closing multiple times works', () { database.close(); database.close(); // shouldn't throw or crash }); test('updated rows', () { database ..execute('CREATE TABLE foo (bar INT);') ..execute('INSERT INTO foo VALUES (3), (4);'); expect(database.updatedRows, 2); // ignore: deprecated_member_use_from_same_package expect(database.getUpdatedRows(), 2); }); test('last insert id', () { database.execute('CREATE TABLE tbl(a INTEGER PRIMARY KEY AUTOINCREMENT)'); for (var i = 0; i < 5; i++) { database.execute('INSERT INTO tbl DEFAULT VALUES'); expect(database.lastInsertRowId, i + 1); } }); group('execute', () { test('can run multiple statements at once', () { database.execute('CREATE TABLE foo (a); CREATE TABLE bar (b);'); final result = database .select('SELECT name FROM sqlite_master') .map((row) => row['name'] as String); expect(result, containsAll(['foo', 'bar'])); }); test('can use parameters', () { database.execute('CREATE TABLE foo (a);'); database.execute('INSERT INTO foo VALUES (?)', [123]); final result = database.select('SELECT * FROM foo'); expect(result, hasLength(1)); expect(result.single['a'], 123); }); test('does not allow multiple statements with parameters', () { database.execute('CREATE TABLE foo (a);'); expect( () => database.execute( 'INSERT INTO foo VALUES (?); INSERT INTO foo VALUES (?);', [123], ), throwsArgumentError, ); }); test( 'inner join with toTableColumnMap and computed column', () { database.execute(''' CREATE TABLE foo ( a INT ); CREATE TABLE bar ( b TEXT, a_ref INT, FOREIGN KEY (a_ref) REFERENCES foo (a) ); '''); database.execute('INSERT INTO foo(a) VALUES (1), (2), (3);'); database.execute( "INSERT INTO bar(b, a_ref) VALUES ('1', NULL), ('2', 2), ('3', 3);", ); final result = database.select( 'SELECT *, foo.a > 2 is_greater_than_2 FROM foo' ' INNER JOIN bar bar_alias ON bar_alias.a_ref = foo.a;', ); expect(result, [ {'a': 2, 'b': '2', 'a_ref': 2, 'is_greater_than_2': 0}, {'a': 3, 'b': '3', 'a_ref': 3, 'is_greater_than_2': 1}, ]); expect(result.map((row) => row.toTableColumnMap()), [ { null: {'is_greater_than_2': 0}, 'foo': {'a': 2}, 'bar': {'b': '2', 'a_ref': 2}, }, { null: {'is_greater_than_2': 1}, 'foo': {'a': 3}, 'bar': {'b': '3', 'a_ref': 3}, }, ]); }, skip: hasColumnMetadata ? null : 'sqlite3 was compiled without column metadata', ); }); group('throws', () { test('when executing an invalid statement', () { database.execute('CREATE TABLE foo (bar INTEGER CHECK (bar > 10));'); expect( () => database.execute('INSERT INTO foo VALUES (3);'), throwsA( const TypeMatcher().having( (e) => e.message, 'message', contains('CHECK constraint failed'), ), ), ); }); test('when preparing an invalid statement', () { expect( () => database.prepare('INSERT INTO foo VALUES (3);'), throwsA( const TypeMatcher() .having((e) => e.operation, 'operation', 'preparing statement') .having((e) => e.message, 'message', contains('no such table')), ), ); }); test('when selecting multiple statements', () { expect(() => database.select('SELECT 1; SELECT 2;'), throwsArgumentError); expect( () => database.select('SELECT 1; invalid text'), throwsArgumentError, ); database.select('SELECT 1 '); database.select('SELECT 1; '); database.select('SELECT 1; /* SELECT 2; SELECT 3; */'); }); group('with statement and args', () { setUp(() { database.createFunction( functionName: 'throw_if_3', argumentCount: const AllowedArgumentCount(1), function: (args) { if (args[0] == 3) { throw Exception('intended exception'); } return null; }, ); }); Matcher sqlite3Exception( dynamic operation, dynamic causingStatement, dynamic parameters, dynamic toString, ) { return isA() .having((e) => e.operation, 'operation', operation) .having( (e) => e.causingStatement, 'causingStatement', causingStatement, ) .having( (e) => e.parametersToStatement, 'parametersToStatement', parameters, ) .having((e) => e.toString(), 'toString()', toString); } test('for execute', () { expect( () => database.execute('SELECT throw_if_3(?)', [3]), throwsA( sqlite3Exception( 'executing statement', 'SELECT throw_if_3(?)', [3], contains( 'Causing statement: SELECT throw_if_3(?), parameters: 3', ), ), ), ); }); test('for reading prepared statements', () { final stmt = database.prepare('SELECT throw_if_3(?)'); expect( () => stmt.select([3]), throwsA( sqlite3Exception( 'selecting from statement', 'SELECT throw_if_3(?)', [3], contains( 'Causing statement: SELECT throw_if_3(?), parameters: 3', ), ), ), ); }); test('for writing prepared statements', () { database.execute('CREATE TABLE foo (bar INTEGER);'); final stmt = database.prepare('INSERT INTO foo VALUES (throw_if_3(?))'); expect( () => stmt.execute([3]), throwsA( sqlite3Exception( 'executing statement', 'INSERT INTO foo VALUES (throw_if_3(?))', [3], contains( 'Causing statement: INSERT INTO foo VALUES (throw_if_3(?)), parameters: 3', ), ), ), ); }); test('for prepared statements with map', () { final stmt = database.prepare('SELECT :a, throw_if_3(:b)'); final expectation = throwsA( sqlite3Exception( 'selecting from statement', 'SELECT :a, throw_if_3(:b)', [1, 3], contains( 'Causing statement: SELECT :a, throw_if_3(:b), parameters: 1, 3', ), ), ); expect( // ignore: deprecated_member_use_from_same_package () => stmt.selectMap({':a': 1, ':b': 3}), expectation, ); expect( () => stmt.selectWith(StatementParameters.named({':a': 1, ':b': 3})), expectation, ); }); test('for prepared statements with cursor', () { const sql = 'SELECT throw_if_3(column1) FROM (VALUES (?), (?))'; final stmt = database.prepare(sql); final cursor = stmt.selectCursor([1, 3]); expect(cursor.moveNext(), isTrue); expect( () => cursor.moveNext(), throwsA( sqlite3Exception( 'iterating through statement', sql, [1, 3], contains('Causing statement: $sql, parameters: 1, 3'), ), ), ); }); }); }); test('violating constraint throws exception with extended error code', () { database.execute('CREATE TABLE tbl(a INTEGER NOT NULL)'); final statement = database.prepare('INSERT INTO tbl DEFAULT VALUES'); expect( statement.execute, throwsA( isA().having( (e) => e.explanation, 'explanation', endsWith(' (code 1299)'), ), ), ); }); test( 'open shared in-memory instances', () { final db1 = sqlite3.open('file:test?mode=memory&cache=shared', uri: true); final db2 = sqlite3.open('file:test?mode=memory&cache=shared', uri: true); addTearDown(() { db1.close(); db2.close(); }); db1 ..execute('CREATE TABLE tbl (a INTEGER NOT NULL);') ..execute('INSERT INTO tbl VALUES (1), (2), (3);'); final result = db2.select('SELECT * FROM tbl'); expect(result, hasLength(3)); }, skip: hasSharedCache ? null : 'Test requires shared cache', ); test('locked exceptions', () { final db1 = sqlite3.open('file:busy?mode=memory&cache=shared', uri: true); final db2 = sqlite3.open('file:busy?mode=memory&cache=shared', uri: true); addTearDown(() { db1.close(); db2.close(); }); db1.execute('BEGIN EXCLUSIVE TRANSACTION'); expect( () => db2.execute('BEGIN EXCLUSIVE TRANSACTION'), throwsSqlError(SqlError.SQLITE_LOCKED, 262), ); }, skip: hasSharedCache ? null : 'Test requires shared cache'); test('result sets are lists', () { final result = database.select('SELECT 1, 2 UNION ALL SELECT 3, 4;'); expect(result, isA>()); expect(result[0], {'1': 1, '2': 2}); expect(result[1], {'1': 3, '2': 4}); // ignore: collection_methods_unrelated_type expect(result[0][0], 1); expect(result[0]['1'], 1); // ignore: collection_methods_unrelated_type expect(result[0][1], 2); expect(result[0]['2'], 2); }); group('user-defined functions', () { test('can read arguments of user defined functions', () { late List readArguments; database.createFunction( functionName: 'test_fun', argumentCount: const AllowedArgumentCount(6), function: (args) { // copy since the args become invalid as soon as this function // finishes. readArguments = List.of(args); return null; }, ); database.execute( r'''SELECT test_fun(1, 2.5, 'hello world', X'ff00ff', X'', NULL)''', ); expect(readArguments, [ 1, 2.5, 'hello world', Uint8List.fromList([255, 0, 255]), Uint8List(0), null, ]); }); test('throws when using a long function name', () { expect( () => database.createFunction( functionName: 'foo' * 100, function: (args) => null, ), throwsArgumentError, ); }); group('scalar return', () { test('null', () { database.createFunction( functionName: 'test_null', function: (args) => null, argumentCount: const AllowedArgumentCount(0), ); final stmt = database.prepare('SELECT test_null() AS result'); expect(stmt.select(), [ {'result': null}, ]); }); test('integers', () { database.createFunction( functionName: 'test_int', function: (args) => 420, argumentCount: const AllowedArgumentCount(0), ); final stmt = database.prepare('SELECT test_int() AS result'); expect(stmt.select(), [ {'result': 420}, ]); }); test('big int', () { database.createFunction( functionName: 'test_int', function: (args) => BigInt.from(12), argumentCount: const AllowedArgumentCount(0), ); final stmt = database.prepare('SELECT test_int() AS result'); expect(stmt.select(), [ {'result': 12}, ]); }); test('doubles', () { database.createFunction( functionName: 'test_double', function: (args) => 133.7, argumentCount: const AllowedArgumentCount(0), ); final stmt = database.prepare('SELECT test_double() AS result'); expect(stmt.select(), [ {'result': 133.7}, ]); }); test('bytes', () { database.createFunction( functionName: 'test_blob', function: (args) => [1, 2, 3], argumentCount: const AllowedArgumentCount(0), ); final stmt = database.prepare('SELECT test_blob() AS result'); expect(stmt.select(), [ { 'result': [1, 2, 3], }, ]); }); test('text', () { database.createFunction( functionName: 'test_text', function: (args) => 'hello from Dart', argumentCount: const AllowedArgumentCount(0), ); final stmt = database.prepare('SELECT test_text() AS result'); expect(stmt.select(), [ {'result': 'hello from Dart'}, ]); }); test('can return subtypes', () { const int $J = 0x4A; database.createFunction( functionName: 'dart_json_function', function: (_) => SubtypedValue(json.encode({'hello': 'dart'}), $J), subtype: true, ); final stmt = database.prepare( "SELECT json_object('foo', dart_json_function()) AS result", ); expect(stmt.select(), [ { // Importantly, the returned JSON object should be embedded // directly (instead of being a string) because we're including // the JSON subtype. 'result': json.encode({ 'foo': {'hello': 'dart'}, }), }, ]); }); test('can read subtypes', () { database.createFunction( functionName: 'dart_get_subtype', function: (args) { return switch (args.subtypeOf(0)) { 0 => null, final other => String.fromCharCode(other), }; }, argumentCount: const AllowedArgumentCount(1), subtype: true, ); final [row] = database.select( 'SELECT dart_get_subtype(json_object()) AS r', ); expect(row, {'r': 'J'}); }); }); test('aggregate functions', () { database ..execute('CREATE TABLE test (a INT, b TEXT);') ..execute( 'INSERT INTO test VALUES ' "(1, 'hello world'), " "(2, 'foo'), " "(1, 'another'), " "(2, 'bar');", ); database.createAggregateFunction( functionName: 'sum_lengths', function: const _SummedStringLength(), argumentCount: const AllowedArgumentCount(1), ); expect( database.select( 'SELECT a, sum_lengths(b) AS l FROM test GROUP BY a ' 'ORDER BY 2;', ), [ {'a': 2, 'l': 6 /* foo + bar */}, {'a': 1, 'l': 18 /* hello world + another */}, ], ); }); test('window functions', () { // Dart port of https://www.sqlite.org/windowfunctions.html#udfwinfunc database ..execute('CREATE TABLE t3 (x, y);') ..execute( 'INSERT INTO t3 VALUES ' "('a', 4), " "('b', 5), " "('c', 3), " "('d', 8), " "('e', 1)", ); database.createAggregateFunction( functionName: 'sumint', function: _SumInt(), argumentCount: const AllowedArgumentCount(1), ); expect( database.select( 'SELECT x, sumint(y) OVER (' ' ORDER BY x ROWS BETWEEN 1 PRECEDING AND 1 FOLLOWING' ') AS sum_y FROM t3 ORDER BY x', ), [ {'x': 'a', 'sum_y': 9}, {'x': 'b', 'sum_y': 12}, {'x': 'c', 'sum_y': 16}, {'x': 'd', 'sum_y': 12}, {'x': 'e', 'sum_y': 9}, ], ); }); }); test('createCollation', () { database ..execute('CREATE TABLE foo2 (bar)') ..execute( "INSERT INTO foo2 VALUES ('AaAaaaAA'), ('BBBbBb'),('cCCCcc '), (' dD ')", ) ..createCollation( name: "RTRIMNOCASE", function: (String? a, String? b) { final compareA = a?.toLowerCase().trimRight(); final compareB = b?.toLowerCase().trimRight(); if (compareA == null && compareB == null) { return 0; } else if (compareA == null) { // a < b return -1; } else if (compareB == null) { // a > b return 1; } else { return compareA.compareTo(compareB); } }, ); expect( database.select( "SELECT * FROM foo2 WHERE bar = 'aaaaAaAa ' COLLATE RTRIMNOCASE", ), [ {'bar': 'AaAaaaAA'}, ], ); expect( database.select( "SELECT * FROM foo2 WHERE bar = 'bbbbbb' COLLATE RTRIMNOCASE", ), [ {'bar': 'BBBbBb'}, ], ); expect( database.select( "SELECT * FROM foo2 WHERE bar = 'cCcccC' COLLATE RTRIMNOCASE", ), [ {'bar': 'cCCCcc '}, ], ); expect( database.select( "SELECT * FROM foo2 WHERE bar = 'dd' COLLATE RTRIMNOCASE", ), isEmpty, ); }); test('prepare does not throw for multiple statements by default', () { final stmt = database.prepare('SELECT 1; SELECT 2'); expect(stmt.sql, 'SELECT 1;'); }); test('prepare throws with checkNoTail', () { expect( () => database.prepare('SELECT 1; SELECT 2', checkNoTail: true), throwsArgumentError, ); }); group('prepareMultiple', () { test('can prepare multiple statements', () { final statements = database.prepareMultiple('SELECT 1; SELECT 2;'); expect(statements, [_statement('SELECT 1;'), _statement(' SELECT 2;')]); }); test('fails for trailing syntax error', () { expect( () => database.prepareMultiple('SELECT 1; error here '), throwsA(isA()), ); }); test('fails for syntax error in the middle', () { expect( () => database.prepareMultiple('SELECT 1; error here; SELECT 2;'), throwsA(isA()), ); }); group('edge-cases', () { test('empty string', () { expect(() => database.prepare(''), throwsArgumentError); expect(database.prepareMultiple(''), isEmpty); }); test('whitespace only', () { expect(() => database.prepare(' '), throwsArgumentError); expect(() => database.prepare('/* oh hi */'), throwsArgumentError); expect(database.prepareMultiple(' '), isEmpty); expect(database.prepareMultiple('/* oh hi */'), isEmpty); }); test('leading whitespace', () { final stmt = database.prepare( ' /*wait for it*/ SELECT 1;', checkNoTail: true, ); expect(stmt.sql, ' /*wait for it*/ SELECT 1;'); }); test('trailing comment', () { final stmt = database.prepare( 'SELECT 1; /* done! */', checkNoTail: true, ); expect(stmt.sql, 'SELECT 1;'); }); test('whitespace between statements', () { final stmts = database.prepareMultiple('SELECT 1; /* and */ SELECT 2;'); expect(stmts, hasLength(2)); expect(stmts[0].sql, 'SELECT 1;'); expect(stmts[1].sql, ' /* and */ SELECT 2;'); }); test('BigInt bounds', () { database.execute('CREATE TABLE foo (a INTEGER);'); database.execute('INSERT INTO foo VALUES (?)', [ BigInt.parse('-9223372036854775808'), ]); database.execute('INSERT INTO foo VALUES (?)', [ BigInt.parse('9223372036854775807'), ]); final result = database.select('SELECT * FROM foo'); expect(result, hasLength(2)); expect(result.rows[0][0].toString(), '-9223372036854775808'); expect(result.rows[1][0].toString(), '9223372036854775807'); expect( () => database.execute('INSERT INTO foo VALUES (?)', [ BigInt.parse('-9223372036854775809'), ]), throwsA( const TypeMatcher().having( (e) => e.toString(), 'message', contains('BigInt value exceeds the range of 64 bits'), ), ), ); expect( () => database.execute('INSERT INTO foo VALUES (?)', [ BigInt.parse('9223372036854775808'), ]), throwsA( const TypeMatcher().having( (e) => e.toString(), 'message', contains('BigInt value exceeds the range of 64 bits'), ), ), ); }); }); }); group('update stream', () { setUp(() { database.execute('CREATE TABLE tbl (a TEXT, b INT);'); }); test('emits event after insert', () { expect( database.updates, emits(_update(SqliteUpdate(SqliteUpdateKind.insert, 'tbl', 1))), ); database.execute("INSERT INTO tbl VALUES ('', 1);"); }); test('emits event after update', () { database.execute("INSERT INTO tbl VALUES ('', 1);"); expect( database.updates, emits(_update(SqliteUpdate(SqliteUpdateKind.update, 'tbl', 1))), ); database.execute("UPDATE tbl SET b = b + 1;"); }); test('emits event after delete', () { database.execute("INSERT INTO tbl VALUES ('', 1);"); expect( database.updates, emits(_update(SqliteUpdate(SqliteUpdateKind.delete, 'tbl', 1))), ); database.execute("DELETE FROM tbl WHERE b = 1;"); }); test('removes callback when no listener exists', () async { database.execute("INSERT INTO tbl VALUES ('', 1);"); final subscription = database.updates.listen( expectAsync1((data) {}, count: 0), ); // Pause the subscription, cause an update and resume. As no listener // exists, no event should have been received and buffered. subscription.pause(); database.execute("DELETE FROM tbl WHERE b = 1;"); subscription.resume(); await pumpEventQueue(); await subscription.cancel(); }); test('closes when disposing the database', () { expect(database.updates.listen(null).asFuture(null), completes); database.close(); }); test('can listen synchronously', () async { var notifications = 0; var asyncNotifications = 0; database.updatesSync.listen((_) => notifications++); database.updates.listen((_) => asyncNotifications++); database.execute('INSERT INTO tbl DEFAULT VALUES'); expect(notifications, 1); expect(asyncNotifications, 0); await pumpEventQueue(); expect(asyncNotifications, 1); }); }); group('rollback stream', () { setUp(() { database.execute('CREATE TABLE tbl (a TEXT, b INT);'); }); test('emits on rollback', () { expect(database.rollbacks, emits(anything)); database.execute('BEGIN TRANSACTION;'); database.execute("ROLLBACK;"); }); test('emits on rollback after insert', () { expect(database.rollbacks, emits(anything)); database.execute('BEGIN TRANSACTION;'); database.execute("INSERT INTO tbl VALUES ('', 1);"); database.execute("ROLLBACK;"); }); test('emits on rollback after erroneous SQL', () { expect(database.rollbacks, emits(anything)); database.execute('BEGIN TRANSACTION;'); try { database.execute('Erroneous SQL'); } catch (_) { // ignore } database.execute("ROLLBACK;"); }); test('emits on rollback due to commit filter', () { expect(database.rollbacks, emits(anything)); database.commitFilter = expectAsync0(() => false); database.execute('begin'); database.execute("INSERT INTO tbl VALUES ('', 1);"); expect(() => database.execute('commit'), throwsSqlError(19, 531)); }); }); group('commit filter', () { setUp(() { database.execute('CREATE TABLE tbl (a TEXT, b INT);'); }); test('explicit commits with always fails filter raises exception', () { database.commitFilter = () => false; expect( () { database.execute('BEGIN TRANSACTION;'); database.execute("INSERT INTO tbl VALUES ('', 1);"); database.execute("COMMIT;"); }, throwsA( predicate( (e) => e.operation == 'executing' && e.message.startsWith('constraint failed'), ), ), ); }); test('implicit commits with always fails filter raises exception', () { database.commitFilter = () => false; expect( () => database.execute("INSERT INTO tbl VALUES ('', 1);"), throwsA( predicate( (e) => e.operation == 'executing' && e.message.startsWith('constraint failed'), ), ), ); }); test('side effects run on explicit commit', () { var sideEffects = 0; database.commitFilter = () { ++sideEffects; return true; }; database.execute('BEGIN TRANSACTION;'); database.execute("INSERT INTO tbl VALUES ('', 1);"); database.execute("COMMIT;"); // ensure the transaction committed correctly expect( database.select('SELECT COUNT(*) AS c FROM tbl;').first['c'], equals(1), ); // ensure side-effects ran expect(sideEffects, equals(1)); }); test('side effects run on implicit commit', () { var sideEffects = 0; database.commitFilter = () { ++sideEffects; return true; }; database.execute("INSERT INTO tbl VALUES ('', 1);"); // ensure the transaction committed correctly expect( database.select('SELECT COUNT(*) AS c FROM tbl;').first['c'], equals(1), ); // ensure side-effects ran expect(sideEffects, equals(1)); }); }); group('commit stream', () { setUp(() { database.commitFilter = null; database.execute('CREATE TABLE tbl (a TEXT, b INT);'); }); test('emits on implicit commit', () { expect(database.commits, emits(anything)); database.execute("INSERT INTO tbl VALUES ('', 1);"); }); test('emits on explicit commit', () { expect(database.commits, emits(anything)); database.execute('BEGIN TRANSACTION;'); database.execute("INSERT INTO tbl VALUES ('', 1);"); database.execute("COMMIT;"); }); test('is async', () async { var commits = 0; database.commits.listen((_) => commits++); database.execute("INSERT INTO tbl VALUES ('', 1);"); expect(commits, 0); await pumpEventQueue(); expect(commits, 1); }); test('does not emit on implicit commit with commitFilter false', () async { expect(database.commits, neverEmits(anything)); database.commitFilter = () => false; try { database.execute("INSERT INTO tbl VALUES ('', 1);"); } on SqliteException { // ignore } // Disposing the database here so that the stream closes and neverEmits // completes. database.close(); }); }); group('unicode handling', () { test('accents in statements', () { final table = 'télé'; // with accent final column = 'mycolumn'; database ..execute(''' CREATE TABLE $table ( $column INTEGER )''') ..execute('INSERT INTO $table($column) VALUES(1)'); final statement = database.prepare('SELECT * FROM $table;'); final cursor = statement.selectCursor(); expect(cursor.moveNext(), isTrue); database.close(); }); test('return value of function', () { database.createFunction(functionName: 'test', function: (args) => 'télé'); expect(database.select('SELECT test() AS r'), [ {'r': 'télé'}, ]); }); test('parameter', () { expect(database.select('SELECT ? AS r', ['télé']), [ {'r': 'télé'}, ]); }); }); group('double quotes as literals', () { const query = 'SELECT "foo" AS double, \'bar\' AS single'; test('enable', () { database.config.doubleQuotedStringLiterals = true; expect(database.select(query), [ {'double': 'foo', 'single': 'bar'}, ]); }); test('disable', () { database.config.doubleQuotedStringLiterals = false; expect( () => database.select(query), throwsSqlError(SqlError.SQLITE_ERROR, 1), ); }); }); test('autocommit', () { expect(database.autocommit, equals(true)); database.execute('BEGIN'); expect(database.autocommit, equals(false)); database.execute('ROLLBACK'); expect(database.autocommit, equals(true)); }); } /// Aggregate function that counts the length of all string parameters it /// receives. class _SummedStringLength implements AggregateFunction { const _SummedStringLength(); @override AggregateContext createContext() { return AggregateContext(0); } @override void step(List arguments, AggregateContext context) { if (arguments.length != 1) return; final arg = arguments.single; if (arg is String) { context.value += arg.length; } } @override Object finalize(AggregateContext context) => context.value; } class _SumInt implements WindowFunction { @override AggregateContext createContext() => AggregateContext(0); @override Object? finalize(AggregateContext context) { // There's nothing to finalize return value(context); } int _argument(List arguments) { return arguments.single! as int; } @override void inverse(List arguments, AggregateContext context) { context.value -= _argument(arguments); } @override void step(List arguments, AggregateContext context) { context.value += _argument(arguments); } @override Object? value(AggregateContext context) => context.value; } Matcher _statement(String sql) { return isA().having((e) => e.sql, 'sql', sql); } Matcher _update(SqliteUpdate update) { return isA() .having((e) => e.kind, 'kind', update.kind) .having((e) => e.tableName, 'tableName', update.tableName) .having((e) => e.rowId, 'rowId', update.rowId); } ================================================ FILE: sqlite3/test/common/prepared_statement.dart ================================================ import 'dart:async'; import 'dart:typed_data'; import 'package:sqlite3/common.dart'; import 'package:sqlite3/src/implementation/statement.dart'; import 'package:test/test.dart'; import 'utils.dart'; void testPreparedStatements( FutureOr Function() loadSqlite, { bool supportsReturning = true, }) { late CommonSqlite3 sqlite3; setUpAll(() async => sqlite3 = await loadSqlite()); test('report used SQL', () { final db = sqlite3.openInMemory() ..execute('CREATE TABLE foo (a INTEGER);') ..execute('CREATE TABLE télé (a INTEGER);'); addTearDown(db.close); final stmts = db.prepareMultiple('SELECT * FROM foo;SELECT * FROM télé;'); expect(stmts[0].sql, 'SELECT * FROM foo;'); expect(stmts[1].sql, 'SELECT * FROM télé;'); }); test('prepared statements can be used multiple times', () { final opened = sqlite3.openInMemory(); opened.execute('CREATE TABLE tbl (a TEXT);'); final stmt = opened.prepare('INSERT INTO tbl(a) VALUES(?)'); stmt.execute(['a']); stmt.execute(['b']); stmt.close(); final select = opened.prepare('SELECT * FROM tbl ORDER BY a'); final result = select.select(); expect(result, hasLength(2)); expect(result.map((row) => row['a'] as String), ['a', 'b']); select.close(); opened.close(); }); test('prepared statements without parameters can be used multiple times', () { final opened = sqlite3.openInMemory(); addTearDown(opened.close); opened ..execute('CREATE TABLE tbl (a TEXT);') ..execute('INSERT INTO tbl DEFAULT VALUES;'); final stmt = opened.prepare('SELECT * FROM tbl'); expect(stmt.select(), hasLength(1)); expect(stmt.select(), hasLength(1)); }); test('prepared statements cannot be used after close', () { final opened = sqlite3.openInMemory(); final stmt = opened.prepare('SELECT ?'); stmt.close(); expect(stmt.select, throwsStateError); opened.close(); }); test('prepared statements cannot be used after db is closed', () { final opened = sqlite3.openInMemory(); final stmt = opened.prepare('SELECT 1'); opened.close(); expect(stmt.select, throwsStateError); }); test('parameterCount', () { final opened = sqlite3.openInMemory(); addTearDown(opened.close); expect(opened.prepare('SELECT 1').parameterCount, 0); expect(opened.prepare('SELECT 1, ?2 AS r').parameterCount, 2); }); test('isReadOnly', () { final opened = sqlite3.openInMemory() ..execute('CREATE TABLE tbl (a TEXT);'); addTearDown(opened.close); expect(opened.prepare('SELECT 1').isReadOnly, isTrue); expect(opened.prepare('UPDATE tbl SET a = a || ?').isReadOnly, isFalse); }); test('isExplain', () { final opened = sqlite3.openInMemory() ..execute('CREATE TABLE tbl (a TEXT);'); addTearDown(opened.close); expect(opened.prepare('SELECT 1').isExplain, isFalse); expect(opened.prepare('EXPLAIN SELECT 1').isExplain, isTrue); }); Uint8List? insertBlob(Uint8List? value) { final opened = sqlite3.openInMemory(); opened.execute('CREATE TABLE tbl (x BLOB);'); final insert = opened.prepare('INSERT INTO tbl VALUES (?)'); insert.execute([value]); insert.close(); final select = opened.prepare('SELECT * FROM tbl'); final result = select.select().single; opened.close(); return result['x'] as Uint8List?; } test('can bind empty blob in prepared statements', () { expect(insertBlob(Uint8List(0)), isEmpty); }); test('can bind null blob in prepared statements', () { expect(insertBlob(null), isNull); }); test('can bind and read non-empty blob', () { const bytes = [1, 2, 3]; expect(insertBlob(Uint8List.fromList(bytes)), bytes); }); test('throws when sql statement has an error', () { final db = sqlite3.openInMemory(); db.execute('CREATE TABLE foo (id INTEGER CHECK (id > 10));'); final stmt = db.prepare('INSERT INTO foo VALUES (9)'); expect( stmt.execute, throwsA( isA().having( (e) => e.message, 'message', contains('constraint failed'), ), ), ); db.close(); }); test('throws an exception when iterating over result rows', () { final db = sqlite3.openInMemory() ..createFunction( functionName: 'raise_if_two', function: (args) { if (args.first == 2) { // ignore: only_throw_errors throw 'parameter was two'; } else { return null; } }, ); db.execute( 'CREATE TABLE tbl (a INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT)', ); // insert with a = 1..3 for (var i = 0; i < 3; i++) { db.execute('INSERT INTO tbl DEFAULT VALUES'); } final statement = db.prepare('SELECT raise_if_two(a) FROM tbl ORDER BY a'); expect( statement.select, throwsA( isA().having( (e) => e.message, 'message', contains('was two'), ), ), ); }); test('can bind booleans', () { final db = sqlite3.openInMemory(); final stmt = db.prepare('SELECT ?'); final result = stmt.select([false]).single; expect(result.values.single, isZero); db.close(); }); test('can bind named parameters', () { final db = sqlite3.openInMemory(); final stmt = db.prepare('SELECT ?1, :a, @b'); final result = stmt .selectWith( StatementParameters.named({ '?1': 'first', ':a': 'second', '@b': 'third', }), ) .single; expect(result.values, ['first', 'second', 'third']); }); test('can bind custom values', () { final db = sqlite3.openInMemory(); addTearDown(db.close); final stmt = db.prepare('SELECT :a AS a, :b AS b'); final result = stmt.selectWith( StatementParameters.named({ ':a': 'normal parameter', ':b': _CustomValue(), }), ); expect(result, [ {'a': 'normal parameter', 'b': 42}, ]); }); group('checks that the amount of parameters are correct', () { late CommonDatabase db; setUp(() => db = sqlite3.openInMemory()); tearDown(() => db.close()); test('when no parameters are set', () { final stmt = db.prepare('SELECT ?'); expect(stmt.select, throwsArgumentError); }); test('when the wrong amount of parameters are set', () { final stmt = db.prepare('SELECT ?, ?'); expect(() => stmt.select([1]), throwsArgumentError); }); test('when not all names are covered', () { final stmt = db.prepare('SELECT :a, @b'); expect( () => stmt.executeWith(StatementParameters.named({':a': 'a'})), throwsArgumentError, ); }); test('when an invalid name is passed', () { final stmt = db.prepare('SELECT :a, @b'); expect( () => stmt.executeWith( StatementParameters.named({':a': 'a', '@b': 'b', ':c': 'c'}), ), throwsArgumentError, ); }); test('when named parameters are empty', () { final stmt = db.prepare('SELECT :a, @b'); expect( () => stmt.executeWith(const StatementParameters.named({})), throwsArgumentError, ); }); }); test('select statements return expected value', () { final opened = sqlite3.openInMemory(); final prepared = opened.prepare('SELECT ?'); final result1 = prepared.select([1]); expect(result1.columnNames, ['?']); expect(result1.single.columnAt(0), 1); final result2 = prepared.select([2]); expect(result2.columnNames, ['?']); expect(result2.single.columnAt(0), 2); final result3 = prepared.select(['']); expect(result3.columnNames, ['?']); expect(result3.single.columnAt(0), ''); opened.close(); }); test('does not validate custom parameters', () { final opened = sqlite3.openInMemory(); addTearDown(opened.close); final stmt = opened.prepare('SELECT ? AS r'); expect(stmt.selectWith(StatementParameters.bindCustom((stmt) {})), [ {'r': null}, ]); }); test('handles recompilations', () { final opened = sqlite3.openInMemory() ..execute('create table t (c1)') ..execute('insert into t values (1)'); addTearDown(opened.close); final stmt = opened.prepare('select * from t'); expect(stmt.select(), [ {'c1': 1}, ]); opened.execute('alter table t add column c2 default 2'); expect(stmt.select(), [ {'c1': 1, 'c2': 2}, ]); }); test( 'reset', () { final opened = sqlite3.openInMemory() ..execute('create table t (c1)') ..execute('begin;'); final stmt = opened.prepare('insert into t values (1), (2) returning c1'); final cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); // This fails due to the pending write of the active statement expect(() => opened.execute('commit'), throwsSqlError(5, 5)); stmt.reset(); expect(cursor.moveNext(), isFalse); opened.execute('commit'); opened.close(); }, skip: supportsReturning ? null : 'RETURNING not supported by current sqlite3 version', ); group('cursors', () { late CommonDatabase database; setUp(() => database = sqlite3.openInMemory()); tearDown(() => database.close()); test('report correct values', () { final stmt = database.prepare('VALUES (1), (2), (3);'); expect(_TestIterable(stmt.selectCursor()).toList(), [ {'column1': 1}, {'column1': 2}, {'column1': 3}, ]); }); test('bind variables', () { final stmt = database.prepare('VALUES (?), (?), (?);'); expect(_TestIterable(stmt.selectCursor([2, 3, 5])).toList(), [ {'column1': 2}, {'column1': 3}, {'column1': 5}, ]); }); test('throw exceptions', () { database ..execute('CREATE TABLE foo (a);') ..execute('INSERT INTO foo VALUES (1), (2), (3);') ..createFunction( functionName: 'throw_if', function: (args) { if (args[0] == args[1]) throw Exception('boom!'); return args[0]; }, argumentCount: const AllowedArgumentCount(2), ); final stmt = database.prepare( 'WITH seq(a) AS (VALUES (1), (2), (3)) SELECT throw_if(a, 3) AS r FROM seq;', ); final cursor = stmt.selectCursor(); expect(cursor.columnNames, ['r']); expect(cursor.moveNext(), isTrue); expect(cursor.current, {'r': 1}); expect(cursor.moveNext(), isTrue); expect(cursor.current, {'r': 2}); expect(cursor.moveNext, throwsA(isA())); expect(cursor.moveNext(), isFalse); }); test('handle recompilations while not running', () { final opened = sqlite3.openInMemory() ..execute('create table t (c1)') ..execute('insert into t values (1)'); addTearDown(opened.close); final stmt = opened.prepare('select * from t'); var cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); expect(cursor.current, {'c1': 1}); expect(cursor.moveNext(), isFalse); opened.execute('alter table t add column c2 default 2'); cursor = stmt.selectCursor(); expect(cursor.columnNames, ['c1']); expect(cursor.moveNext(), isTrue); expect(cursor.columnNames, ['c1', 'c2']); expect(cursor.current, {'c1': 1, 'c2': 2}); expect(cursor.moveNext(), isFalse); }); test('handles recompilations while running', () { final opened = sqlite3.openInMemory() ..execute('create table t (c1)') ..execute('insert into t values (1)') ..execute('insert into t values (2)'); addTearDown(opened.close); final stmt = opened.prepare('select * from t'); final cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); expect(cursor.current, {'c1': 1}); opened.execute('alter table t add column c2 default 2'); // alter statements while the cursor is iterating don't seem to be causing // a recompile expect(cursor.moveNext(), isTrue); expect(cursor.current, {'c1': 2}); }); group('are closed', () { test('by closing the prepared statement', () { final stmt = database.prepare('VALUES (1), (2), (3);'); final cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); stmt.close(); expect(cursor.moveNext(), isFalse); }); test('by resetting the prepared statement', () { final stmt = database.prepare('VALUES (1), (2), (3);'); final cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); stmt.reset(); expect(cursor.moveNext(), isFalse); stmt.close(); }); test('by invoking select', () { final stmt = database.prepare('VALUES (1), (2), (3);'); final cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); stmt.select(); expect(cursor.moveNext(), isFalse); }); test('by invoking execute', () { final stmt = database.prepare('VALUES (1), (2), (3);'); final cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); stmt.execute(); expect(cursor.moveNext(), isFalse); }); test('by invoking selectCursor', () { final stmt = database.prepare('VALUES (1), (2), (3);'); final cursor = stmt.selectCursor(); expect(cursor.moveNext(), isTrue); stmt.selectCursor(); expect(cursor.moveNext(), isFalse); }); }); }); group( 'returning', () { late CommonDatabase database; late CommonPreparedStatement statement; setUp(() { database = sqlite3.openInMemory() ..execute('CREATE TABLE tbl (foo TEXT);'); statement = database.prepare( 'INSERT INTO tbl DEFAULT VALUES RETURNING *', ); }); tearDown(() { statement.close(); database.close(); }); test('can be used with execute', () { statement.execute(); }); test('can get returned rows', () { final result = statement.select(); expect(result, hasLength(1)); final row = result.single; expect(row, {'foo': null}); }); }, skip: supportsReturning ? null : 'RETURNING not supported by current sqlite3 version', ); group('errors', () { late CommonDatabase db; setUp(() => db = sqlite3.openInMemory()); tearDown(() => db.close()); test('for syntax', () { final throwsSyntaxError = throwsSqlError(1, 1); expect(() => db.execute('DUMMY'), throwsSyntaxError); expect(() => db.prepare('DUMMY'), throwsSyntaxError); }); test('for missing table', () { expect( () => db.execute('SELECT * FROM missing_table'), throwsSqlError(1, 1), ); }); test('for violated primary key constraint', () { db ..execute('CREATE TABLE Test (name TEXT PRIMARY KEY)') ..execute("INSERT INTO Test(name) VALUES('test1')"); expect( () => db.execute("INSERT INTO Test(name) VALUES('test1')"), // SQLITE_CONSTRAINT_PRIMARYKEY (1555) throwsSqlError(19, 1555), ); expect( () => db.prepare('INSERT INTO Test(name) VALUES(?)').execute(['test1']), // SQLITE_CONSTRAINT_PRIMARYKEY (1555) throwsSqlError(19, 1555), ); }); test('for violated unique constraint', () { db ..execute('CREATE TABLE Test (id INT PRIMARY KEY, name TEXT UNIQUE)') ..execute("INSERT INTO Test(name) VALUES('test')"); expect( () => db.execute("INSERT INTO Test(name) VALUES('test')"), // SQLITE_CONSTRAINT_UNIQUE (2067) throwsSqlError(19, 2067), ); expect( () => db.prepare('INSERT INTO Test(name) VALUES(?)').execute(['test']), // SQLITE_CONSTRAINT_UNIQUE (2067) throwsSqlError(19, 2067), ); }); test('recovers from SQLITE_BUSY', () { final vfs = _ErrorInjectingVfs( InMemoryFileSystem(), name: 'test-recover-sqlite-busy', ); sqlite3.registerVirtualFileSystem(vfs); addTearDown(() => sqlite3.unregisterVirtualFileSystem(vfs)); var db = sqlite3.open('/db', vfs: vfs.name); addTearDown(() => db.close()); db ..execute('CREATE TABLE foo (bar TEXT) STRICT') ..execute('INSERT INTO foo (bar) VALUES (?)', ['testing']) ..close(); db = db = sqlite3.open('/db', vfs: vfs.name); final stmt = db.prepare('SELECT * FROM foo'); final cursor = stmt.selectCursor(); vfs.maybeError = () => throw VfsException(SqlError.SQLITE_BUSY); expect( () => cursor.moveNext(), throwsSqlError(SqlError.SQLITE_BUSY, SqlError.SQLITE_BUSY), ); vfs.maybeError = null; expect(cursor.moveNext(), isTrue); expect(cursor.current, {'bar': 'testing'}); stmt.close(); }); }); } class _TestIterable extends Iterable { @override final Iterator iterator; _TestIterable(this.iterator); } class _CustomValue implements CustomStatementParameter { @override void applyTo(CommonPreparedStatement statement, int index) { final stmt = statement as StatementImplementation; stmt.statement.sqlite3_bind_int64(index, 42); } } final class _ErrorInjectingVfs extends BaseVirtualFileSystem { final VirtualFileSystem _base; void Function()? maybeError; _ErrorInjectingVfs(this._base, {required super.name}); void _op() { maybeError?.call(); } @override int xAccess(String path, int flags) { _op(); return _base.xAccess(path, flags); } @override void xDelete(String path, int syncDir) { _op(); return _base.xDelete(path, syncDir); } @override String xFullPathName(String path) { _op(); return _base.xFullPathName(path); } @override XOpenResult xOpen(Sqlite3Filename path, int flags) { _op(); final inner = _base.xOpen(path, flags); return ( outFlags: inner.outFlags, file: _ErrorInjectingFile(this, inner.file), ); } @override void xSleep(Duration duration) { return _base.xSleep(duration); } } final class _ErrorInjectingFile implements VirtualFileSystemFile { final _ErrorInjectingVfs _vfs; final VirtualFileSystemFile _base; _ErrorInjectingFile(this._vfs, this._base); @override void xRead(Uint8List target, int fileOffset) { _vfs._op(); return _base.xRead(target, fileOffset); } @override int xCheckReservedLock() { _vfs._op(); return _base.xCheckReservedLock(); } @override int get xDeviceCharacteristics => _base.xDeviceCharacteristics; @override void xClose() { _vfs._op(); _base.xClose(); } @override int xFileSize() { _vfs._op(); return _base.xFileSize(); } @override void xLock(int mode) { _vfs._op(); _base.xLock(mode); } @override void xSync(int flags) { _vfs._op(); _base.xSync(flags); } @override void xTruncate(int size) { _vfs._op(); _base.xTruncate(size); } @override void xUnlock(int mode) { _vfs._op(); _base.xUnlock(mode); } @override void xWrite(Uint8List buffer, int fileOffset) { _vfs._op(); _base.xWrite(buffer, fileOffset); } } ================================================ FILE: sqlite3/test/common/session.dart ================================================ import 'dart:async'; import 'dart:typed_data'; import 'package:convert/convert.dart'; import 'package:sqlite3/common.dart'; import 'package:test/test.dart'; void testSession(FutureOr Function() loadSqlite) { late CommonSqlite3 sqlite3; late CommonDatabase database; setUpAll(() async => sqlite3 = await loadSqlite()); setUp(() { database = sqlite3.openInMemory(); database ..execute('CREATE TABLE entries (id INTEGER PRIMARY KEY, content TEXT);') ..execute( 'CREATE TABLE other (id INTEGER PRIMARY KEY, content INTEGER);', ); }); tearDown(() => database.close()); Session createSession() { final session = Session(database); // Ensure we close the session before disposing the database. SQLite // mentions that session objects should be closed before the database, and // that closing them afterwards is UB. addTearDown(session.delete); return session; } test('enabled by default', () { final session = createSession(); expect(session.enabled, isTrue); }); test('isEmpty', () { final session = createSession(); expect(session.isEmpty, isTrue); expect(session.isNotEmpty, isFalse); // Change without attaching session database.execute('INSERT INTO entries DEFAULT VALUES;'); expect(session.isEmpty, isTrue); session.attach(); database.execute('INSERT INTO entries (content) VALUES (?);', [ 'my first entry', ]); expect(session.isEmpty, isFalse); expect(session.isNotEmpty, isTrue); }); test('attaching to some tables only', () { final session = createSession(); expect(session.isEmpty, isTrue); session.attach('entries'); database.execute('INSERT INTO other (content) VALUES (?);', [ 'ignored table', ]); expect(session.isEmpty, isTrue); }); test('iterator', () { final session = createSession()..attach(); database ..execute('INSERT INTO entries (content) VALUES (?);', ['a']) ..execute('UPDATE entries SET content = ?', ['b']); final changeset = session.changeset(); expect( hex.encode(changeset.bytes), '54020100656e7472696573001200010000000000000001030162', ); expect(changeset, [ isOp( operation: SqliteUpdateKind.insert, oldValues: isNull, newValues: [1, 'b'], ), ]); }); test('bytes', () { final changeset = Changeset.fromBytes( hex.decode('54020100656e7472696573001200010000000000000001030162') as Uint8List, sqlite3, ); expect( hex.encode((-changeset).bytes), '54020100656e7472696573000900010000000000000001030162', ); }); test('changeset invert', () { final session = createSession()..attach(); database.execute('INSERT INTO entries (content) VALUES (?);', ['a']); final changeset = session.changeset(); final inverted = -changeset; expect(inverted, [ isOp( operation: SqliteUpdateKind.delete, oldValues: [1, 'a'], newValues: null, ), ]); expect(database.select('SELECT * FROM entries'), isNotEmpty); inverted.applyTo(database); expect(database.select('SELECT * FROM entries'), isEmpty); // Full changeset should be empty after applying a and -a expect(session.changeset(), isEmpty); }); test('apply changeset', () { final session = createSession()..attach(); database.execute('INSERT INTO entries (content) VALUES (?);', ['a']); final changeset = session.changeset(); session.delete(); expect(changeset, hasLength(1)); database.execute('DELETE FROM entries'); changeset.applyTo(database); expect(database.select('SELECT * FROM entries'), [ {'id': 1, 'content': 'a'}, ]); }); test('apply patchset', () { final session = createSession()..attach(); database.execute('INSERT INTO entries (content) VALUES (?);', ['a']); final patchset = session.patchset(); session.delete(); database.execute('DELETE FROM entries'); patchset.applyTo(database); expect(database.select('SELECT * FROM entries'), [ {'id': 1, 'content': 'a'}, ]); }); test('diff', () { var session = createSession(); database.execute('INSERT INTO entries (content) VALUES (?);', ['a']); database ..execute("ATTACH ':memory:' AS another;") ..execute( 'CREATE TABLE another.entries (id INTEGER PRIMARY KEY, content TEXT);', ) ..execute('INSERT INTO another.entries (content) VALUES (?);', ['b']); session = createSession()..diff('another', 'entries'); final changeset = session.changeset(); expect(changeset.toList(), [ isOp( operation: SqliteUpdateKind.update, oldValues: [1, 'b'], newValues: [null, 'a'], ), ]); }, onPlatform: {'vm': Skip('diff seems to be unreliable in CI')}); } TypeMatcher isOp({ Object? table = 'entries', Object? columnCount = 2, required Object? operation, required Object? oldValues, required Object? newValues, }) { return isA() .having((e) => e.table, 'table', table) .having((e) => e.columnCount, 'colummCount', columnCount) .having((e) => e.operation, 'operation', operation) .having((e) => e.oldValues, 'oldValues', oldValues) .having((e) => e.newValues, 'newValues', newValues); } ================================================ FILE: sqlite3/test/common/utils.dart ================================================ import 'package:sqlite3/common.dart'; import 'package:test/test.dart'; Matcher throwsSqlError(int resultCode, int extendedResultCode) { return throwsA( isA() .having( (e) => e.extendedResultCode, 'extendedResultCode', extendedResultCode, ) .having((e) => e.resultCode, 'resultCode', resultCode), ); } ================================================ FILE: sqlite3/test/common/vfs.dart ================================================ import 'dart:async'; import 'dart:typed_data'; import 'package:sqlite3/common.dart'; import 'package:test/test.dart'; import 'utils.dart'; void testVfs(FutureOr Function() loadSqlite) { late CommonSqlite3 sqlite3; setUpAll(() async => sqlite3 = await loadSqlite()); test('smoke check', () { final vfs = InMemoryFileSystem(name: 'dart'); sqlite3.registerVirtualFileSystem(vfs); addTearDown(() => sqlite3.unregisterVirtualFileSystem(vfs)); expect(vfs.xAccess('/database', 0), isZero); var database = sqlite3.open('/database', vfs: 'dart'); database.execute('CREATE TABLE foo (bar TEXT);'); database.execute('INSERT INTO foo (bar) VALUES (?)', ['first row']); expect(vfs.xAccess('/database', 0), isPositive); database.close(); database = sqlite3.open('/database', vfs: 'dart'); expect(database.select('SELECT * FROM foo'), hasLength(1)); database.close(); }); test("can't use vfs after unregistering it", () { final vfs = InMemoryFileSystem(name: 'dart'); sqlite3.registerVirtualFileSystem(vfs); sqlite3.open('/database', vfs: 'dart').close(); sqlite3.unregisterVirtualFileSystem(vfs); expect(() => sqlite3.open('/database', vfs: 'dart'), throwsSqlError(1, 1)); }); test('reports current time', () { final memory = InMemoryFileSystem(); final vfs = TestVfs('dart') ..xOpenDelegate = memory.xOpen ..xCurrentTimeDelegate = () => DateTime.utc(2024, 11, 19); sqlite3.registerVirtualFileSystem(vfs); addTearDown(() => sqlite3.unregisterVirtualFileSystem(vfs)); final database = sqlite3.openInMemory(vfs: 'dart'); addTearDown(database.close); expect(database.select('SELECT CURRENT_TIMESTAMP AS r'), [ {'r': '2024-11-19 00:00:00'}, ]); }); test('can use temporary files', () { final memory = InMemoryFileSystem(name: 'dart-tmp'); sqlite3.registerVirtualFileSystem(memory); addTearDown(() => sqlite3.unregisterVirtualFileSystem(memory)); final db = sqlite3.open('/db', vfs: 'dart-tmp'); addTearDown(db.close); db.execute('CREATE TEMP TABLE foo (bar TEXT);'); final insert = db.prepare('INSERT INTO foo (bar) VALUES (?);'); final data = 'new row' * 100; for (var i = 0; i < 10000; i++) { insert.execute([data]); } insert.close(); }); } final class TestVfs extends VirtualFileSystem { TestVfs(super.name); int Function(String, int) xAccessDelegate = (_, _) => 0; DateTime Function() xCurrentTimeDelegate = DateTime.now; void Function(String, int)? xDeleteDelegate; String Function(String) xFullPathNameDelegate = (_) => throw UnimplementedError(); XOpenResult Function(Sqlite3Filename path, int flags) xOpenDelegate = (path, flags) => throw UnimplementedError(); void Function(Uint8List)? xRandomnessDelegate; void Function(Duration)? xSleepDelegate; @override int xAccess(String path, int flags) { return xAccessDelegate(path, flags); } @override DateTime xCurrentTime() { return xCurrentTimeDelegate(); } @override void xDelete(String path, int syncDir) { return xDeleteDelegate?.call(path, syncDir); } @override String xFullPathName(String path) { return xFullPathNameDelegate(path); } @override XOpenResult xOpen(Sqlite3Filename path, int flags) { return xOpenDelegate(path, flags); } @override void xRandomness(Uint8List target) { return xRandomnessDelegate?.call(target); } @override void xSleep(Duration duration) { xSleepDelegate?.call(duration); } } ================================================ FILE: sqlite3/test/ffi/common_database_test.dart ================================================ @Tags(['ffi']) library; import 'package:sqlite3/sqlite3.dart'; import 'package:test/scaffolding.dart'; import '../common/database.dart'; import '../common/session.dart'; void main() { final hasColumnMeta = sqlite3.usedCompileOption('ENABLE_COLUMN_METADATA'); final hasSession = sqlite3.usedCompileOption('ENABLE_SESSION'); final hasSharedCache = !sqlite3.usedCompileOption('OMIT_SHARED_CACHE'); testDatabase( () => sqlite3, hasColumnMetadata: hasColumnMeta, hasSharedCache: hasSharedCache, ); group('session', () { testSession(() => sqlite3); }, skip: hasSession ? false : 'Missing session extension'); } ================================================ FILE: sqlite3/test/ffi/database_test.dart ================================================ @Tags(['ffi']) library; import 'dart:io'; import 'package:path/path.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3/src/ffi/implementation.dart'; import 'package:test/test.dart'; import 'package:test_descriptor/test_descriptor.dart' as d; import '../common/utils.dart'; /// Additional tests to `common_database_test.dart` that aren't supported on /// the web. void main() { late Database database; setUp(() => database = sqlite3.openInMemory()); tearDown(() => database.close()); test('can bind and retrieve 64 bit ints', () { const value = 1 << 63; final stmt = database.prepare('SELECT ?'); final result = stmt.select([value]); expect(result, [ {'?': value}, ]); }); test('open read-only', () async { final path = d.path('read_only.db'); // Opening a non-existent database should fail expect( () => sqlite3.open(path, mode: OpenMode.readOnly), throwsSqlError(SqlError.SQLITE_CANTOPEN, SqlError.SQLITE_CANTOPEN), ); // Open in read-write mode to create the database var db = sqlite3.open(path); // Change the user version to test read-write access db.userVersion = 1; db.close(); // Open in read-only db = sqlite3.open(path, mode: OpenMode.readOnly); // Change the user version to test read-only mode expect( () => db.userVersion = 2, throwsSqlError(SqlError.SQLITE_READONLY, SqlError.SQLITE_READONLY), ); // Check that it has not changed expect(db.userVersion, 1); db.close(); }); test('throws meaningful exception for open failure', () { final path = d.path('nested/does/not/exist.db'); expect( () => sqlite3.open(path), throwsSqlError(SqlError.SQLITE_CANTOPEN, SqlError.SQLITE_CANTOPEN), ); }); test('busy handler', () { final path = d.path('test.db'); final a = sqlite3.open(path); final b = sqlite3.open(path); addTearDown(() { a.close(); b.close(); }); a.execute('BEGIN EXCLUSIVE'); final busyHandlerInvocations = []; b.busyHandler = (int amount) { busyHandlerInvocations.add(amount); return amount < 3; }; expect(() => b.execute('BEGIN EXCLUSIVE'), throwsSqlError(5, 5)); expect(busyHandlerInvocations, [0, 1, 2, 3]); }); group('borrowed connections', () { test('fromPointer', () { final originalConnection = sqlite3.openInMemory(); originalConnection.execute('CREATE TABLE foo (bar);'); final ptr = originalConnection.handle; final borrowed = sqlite3.fromPointer(ptr, borrowed: true); expect(borrowed.select('SELECT * FROM foo'), isEmpty); borrowed.close(); expect(() => borrowed.select('SELECT 1'), throwsStateError); // Closing a borrowed connection should keep the actual connection active. expect(originalConnection.select('SELECT * FROM foo'), isEmpty); originalConnection.close(); }); test('leak', () { final originalConnection = sqlite3.openInMemory(); originalConnection.execute('CREATE TABLE foo (bar);'); final ptr = originalConnection.leak(); // originalConnection no longer owns the underlying connection at this // point. originalConnection.close(); expect(() => originalConnection.execute('SELECT 1'), throwsStateError); // But the connection is still open! final sameConnection = sqlite3.fromPointer(ptr); expect(sameConnection.select('SELECT * FROM foo'), isEmpty); sameConnection.close(); }); }); group('borrowed statements', () { test('fromPointer', () { final db = sqlite3.openInMemory(); db.execute('CREATE TABLE foo (bar);'); final originalStatement = db.prepare('SELECT * FROM foo'); final ptr = originalStatement.handle; final borrowed = db.statementFromPointer( statement: ptr, sql: 'unused', borrowed: true, ); expect(borrowed.select(), isEmpty); borrowed.close(); expect(() => borrowed.select(), throwsStateError); // Closing a borrowed statement should keep the actual statement active. expect(originalStatement.select(), isEmpty); originalStatement.close(); }); test('leak', () { final db = sqlite3.openInMemory(); db.execute('CREATE TABLE foo (bar);'); final originalStatement = db.prepare('SELECT * FROM foo'); final ptr = originalStatement.leak(); // originalStatement no longer owns the underlying sqlite3_stmt at this // point. originalStatement.close(); expect(() => originalStatement.select(), throwsStateError); // But the statement is still open! final sameStatement = db.statementFromPointer( statement: ptr, sql: 'unused', ); expect(sameStatement.select(), isEmpty); sameStatement.close(); db.close(); }); }); group('backup', () { late String path; setUp(() { path = d.path('test.db'); }); test('detects if is in-memory database', () { final db1 = sqlite3.open(path) as FfiDatabaseImplementation; final db2 = sqlite3.openInMemory() as FfiDatabaseImplementation; expect(db1.isInMemory, isFalse); expect(db2.isInMemory, isTrue); db1.dispose(); db2.dispose(); }); test('copy in-memory', () { final db1 = sqlite3.openInMemory(); db1.execute('CREATE TABLE a(b INTEGER);'); db1.execute('INSERT INTO a VALUES (1);'); //Should not be included in copy final db2 = sqlite3.copyIntoMemory(db1); db1.execute('INSERT INTO a VALUES (2);'); expect(db2.select('SELECT * FROM a'), hasLength(1)); expect(db1.select('SELECT * FROM a'), hasLength(2)); db1.close(); db2.close(); }); test('restore from disk into memory', () { final db1 = sqlite3.open(path); db1.execute('CREATE TABLE a(b INTEGER);'); db1.execute('INSERT INTO a VALUES (1);'); final db2 = sqlite3.copyIntoMemory(db1); //Should not be included in copy db1.execute('INSERT INTO a VALUES (2);'); expect(db2.select('SELECT * FROM a'), hasLength(1)); expect(db1.select('SELECT * FROM a'), hasLength(2)); db1.close(); db2.close(); }); group('backup memory to disk', () { var inputs = [-1, 1, 5, 1024]; for (var nPage in inputs) { test('nPage = $nPage', () async { final db1 = sqlite3.openInMemory(); db1.execute('CREATE TABLE a(b INTEGER);'); db1.execute('INSERT INTO a VALUES (1);'); final db2 = sqlite3.open(path); final progressStream = db1.backup(db2, nPage: nPage); await expectLater(progressStream, emitsDone); //Should not be included in backup db1.execute('INSERT INTO a VALUES (2);'); db1.close(); db2.close(); final db3 = sqlite3.open(path); expect(db3.select('SELECT * FROM a'), hasLength(1)); db3.close(); }); } }); group('backup disk to disk', () { var inputs = [-1, 1, 5, 1024]; for (var nPage in inputs) { test('nPage = $nPage', () async { final pathFrom = d.path('test_from.db'); Directory(dirname(pathFrom)).createSync(recursive: true); if (File(pathFrom).existsSync()) { File(pathFrom).deleteSync(); } final db1 = sqlite3.open(pathFrom); db1.execute('CREATE TABLE a(b INTEGER);'); db1.execute('INSERT INTO a VALUES (1);'); final db2 = sqlite3.open(path); final progressStream = db1.backup(db2, nPage: nPage); await expectLater( progressStream, emitsInOrder([emitsThrough(1), emitsDone]), ); //Should not be included in backup db1.execute('INSERT INTO a VALUES (2);'); db1.close(); db2.close(); final db3 = sqlite3.open(path); expect(db3.select('SELECT * FROM a'), hasLength(1)); db3.close(); if (File(pathFrom).existsSync()) { File(pathFrom).deleteSync(); } }); } }); }); } ================================================ FILE: sqlite3/test/ffi/errors_test.dart ================================================ @Tags(['ffi']) library; import 'dart:io'; import 'package:path/path.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:test/test.dart'; import 'package:test_descriptor/test_descriptor.dart' as d; void main() { final version = sqlite3.version; final hasErrorOffset = version.versionNumber > 3038000; test('open read-only exception', () async { final path = d.path('read_only_exception.db'); // Opening a non-existent database should fail try { sqlite3.open(path, mode: OpenMode.readOnly); fail('should fail'); } on SqliteException catch (e) { expect(e.extendedResultCode, 14); expect(e.toString(), startsWith('SqliteException(14): ')); } }); test('statement exception', () async { final db = sqlite3.openInMemory(); // Basic syntax error try { db.execute('DUMMY'); fail('should fail'); } on SqliteException catch (e) { expect(e.extendedResultCode, 1); expect(e.resultCode, 1); expect(e.toString(), startsWith('SqliteException(1): ')); } // No table try { db.execute('SELECT * FROM missing_table'); fail('should fail'); } on SqliteException catch (e) { expect(e.extendedResultCode, 1); expect(e.resultCode, 1); } // Constraint primary key db.execute('CREATE TABLE Test (name TEXT PRIMARY KEY)'); db.execute("INSERT INTO Test(name) VALUES('test1')"); try { db.execute("INSERT INTO Test(name) VALUES('test1')"); fail('should fail'); } on SqliteException catch (e) { // SQLITE_CONSTRAINT_PRIMARYKEY (1555) expect(e.extendedResultCode, 1555); expect(e.resultCode, 19); expect(e.toString(), startsWith('SqliteException(1555): ')); } // Constraint using prepared statement db.execute('CREATE TABLE Test2 (id PRIMARY KEY, name TEXT UNIQUE)'); final prepared = db.prepare('INSERT INTO Test2(name) VALUES(?)'); prepared.execute(['test2']); try { prepared.execute(['test2']); fail('should fail'); } on SqliteException catch (e) { // SQLITE_CONSTRAINT_UNIQUE (2067) expect(e.extendedResultCode, 2067); expect(e.resultCode, 19); } db.close(); }); test('busy exception', () async { final path = d.path('busy.db'); final db1 = sqlite3.open(path); final db2 = sqlite3.open(path); db1.execute('BEGIN EXCLUSIVE TRANSACTION'); try { db2.execute('BEGIN EXCLUSIVE TRANSACTION'); fail('should fail'); } on SqliteException catch (e) { expect(e.extendedResultCode, 5); expect(e.resultCode, 5); } db1.close(); db2.close(); }); test('invalid format', () async { final path = d.path('invalid_format.db'); // Make sure the path exists await Directory(dirname(path)).create(recursive: true); await File(path).writeAsString('not a database file'); final db = sqlite3.open(path); try { db.userVersion = 1; fail('should fail'); } on SqliteException catch (e) { expect(e.extendedResultCode, 26); expect(e.resultCode, 26); } db.close(); }); group('reports the causing SQL statement', () { late Database db; setUp(() => db = sqlite3.openInMemory()); tearDown(() => db.close()); test('in execute()', () { expect( () => db.execute('this is no valid sql'), throwsA( isA().having( (e) => e.causingStatement, 'causingStatement', 'this is no valid sql', ), ), ); }); test('for prepared statements (syntax)', () { expect( () => db.prepare('this is no valid sql'), throwsA( isA().having( (e) => e.causingStatement, 'causingStatement', 'this is no valid sql', ), ), ); }); test('for prepared statements (selecting)', () { db.createFunction( functionName: 'fail', function: (args) => throw Exception('not allowed'), ); expect( () => db.prepare('SELECT fail()').select(), throwsA( isA().having( (e) => e.causingStatement, 'causingStatement', 'SELECT fail()', ), ), ); }); test('reports previous statement in toString()', () { expect( SqliteException( extendedResultCode: 1, message: 'message', explanation: 'explanation', causingStatement: 'SELECT foo;', ).toString(), ''' SqliteException(1): message, explanation Causing statement: SELECT foo;''', ); expect( SqliteException( extendedResultCode: 1, message: 'message', explanation: null, causingStatement: 'SELECT foo;', ).toString(), ''' SqliteException(1): message Causing statement: SELECT foo;''', ); }); test( 'reports position', () { final db = sqlite3.openInMemory(); addTearDown(db.close); expect( () => db.select('SELECT totally invalid syntax;'), throwsA( isA() .having( (e) => e.causingStatement, 'causingStatement', 'SELECT totally invalid syntax;', ) .having((e) => e.offset, 'offset', 23) .having( (e) => e.toString(), 'toString()', contains('Causing statement (at position 23): SELECT'), ), ), ); }, skip: hasErrorOffset ? null : 'Missing sqlite3_error_offset', ); }); } ================================================ FILE: sqlite3/test/ffi/ffi_test.dart ================================================ @Tags(['ffi']) library; import 'dart:ffi'; import 'package:sqlite3/src/ffi/memory.dart'; import 'package:test/test.dart'; void main() { test('isNullPointer', () { expect(Pointer.fromAddress(1).isNullPointer, isFalse); expect(Pointer.fromAddress(0).isNullPointer, isTrue); }); } ================================================ FILE: sqlite3/test/ffi/prepared_statement_test.dart ================================================ @Tags(['ffi']) library; import 'package:sqlite3/sqlite3.dart'; import 'package:test/test.dart'; import '../common/prepared_statement.dart'; void main() { final version = sqlite3.version; final hasReturning = version.versionNumber > 3035000; testPreparedStatements(() => sqlite3, supportsReturning: hasReturning); } ================================================ FILE: sqlite3/test/ffi/sqlite3_test.dart ================================================ @Tags(['ffi']) library; import 'dart:ffi'; import 'dart:io'; import 'package:path/path.dart' as p; import 'package:sqlite3/sqlite3.dart'; import 'package:test/test.dart'; import 'package:test_descriptor/test_descriptor.dart' as d; void main() { test('get version', () { final version = sqlite3.version; expect(version, isNotNull); }); test('sqlite3_temp_directory', () { final dir = Directory(d.path('sqlite3/tmp')); dir.createSync(recursive: true); final old = sqlite3.tempDirectory; try { sqlite3.tempDirectory = dir.absolute.path; final db = sqlite3.open(d.path('tmp.db')); db ..execute('PRAGMA temp_store = FILE;') ..execute('CREATE TEMP TABLE my_tbl (foo, bar);') ..userVersion = 3 ..close(); } finally { sqlite3.tempDirectory = old; } }); test( 'can load extensions', () async { final sourcePath = p.join(d.sandbox, 'test_extension.c'); final String dynamicLibraryPath; final ProcessResult result; await File(sourcePath).writeAsString(''' #include SQLITE_EXTENSION_INIT1 static void my_function(sqlite3_context* context, int argc, sqlite3_value** argv) { sqlite3_result_text(context, "my custom extension", -1, SQLITE_STATIC); } #ifdef _WIN32 __declspec(dllexport) #endif int sqlite3_myextension_init(sqlite3* db, char** pzErrMsg, const sqlite3_api_routines* pApi) { int rc = SQLITE_OK; SQLITE_EXTENSION_INIT2(pApi); rc = sqlite3_create_function( db, "my_function", 0, SQLITE_UTF8 | SQLITE_INNOCUOUS | SQLITE_DETERMINISTIC, 0, my_function, 0, 0); return rc; } '''); // https://www.sqlite.org/loadext.html#compiling_a_loadable_extension if (Platform.isLinux) { dynamicLibraryPath = p.join(d.sandbox, 'libmy_extension.so'); result = await Process.run('gcc', [ '-fpic', '-shared', sourcePath, '-o', dynamicLibraryPath, ]); } else if (Platform.isWindows) { dynamicLibraryPath = p.join(d.sandbox, 'my_extension.dll'); result = await Process.run('cl', [ sourcePath, '/link', '/DLL', '/OUT:$dynamicLibraryPath', ]); } else if (Platform.isMacOS) { dynamicLibraryPath = p.join(d.sandbox, 'my_extension.dylib'); result = await Process.run('gcc', [ '-fpic', '-dynamiclib', sourcePath, '-o', dynamicLibraryPath, ]); } else { fail('Test should not run on this platform'); } if (result.exitCode != 0) { fail( 'Could not compile shared library for extension: \n' '${result.stderr}\n${result.stdout}', ); } final library = DynamicLibrary.open(dynamicLibraryPath); sqlite3.ensureExtensionLoaded( SqliteExtension.inLibrary(library, 'sqlite3_myextension_init'), ); final db = sqlite3.openInMemory(); addTearDown(db.close); expect(db.select('SELECT my_function() AS r'), [ {'r': 'my custom extension'}, ]); }, tags: 'ci_only', onPlatform: const { // todo: Ideally we should also test this on macOS, but the extension // doesn't seem to compile with the default includes on this system. // Windows also doesn't seem to work, but I think my poor GitHub actions // setup is to blame for that '!linux': Skip('Unsupported platform'), }, ); } ================================================ FILE: sqlite3/test/ffi/vfs_test.dart ================================================ @Tags(['ffi']) library; import 'package:sqlite3/sqlite3.dart'; import 'package:test/test.dart'; import '../common/vfs.dart'; void main() { testVfs(() => sqlite3); } ================================================ FILE: sqlite3/test/hook/assets_test.dart ================================================ @TestOn('vm') library; import 'package:sqlite3/src/hook/assets.dart'; import 'package:test/test.dart'; void main() { test('prebuilt libraries have no conflicting hash code', () { // We join the hash code against the outputDirectoryShared of hooks, so // there should be no collisions. final hashes = {}; for (final target in PrebuiltSqliteLibrary.all) { expect(hashes.add(target.dirname), isTrue); } }); } ================================================ FILE: sqlite3/test/hook/description_test.dart ================================================ @TestOn('vm') library; import 'package:code_assets/code_assets.dart'; import 'package:hooks/hooks.dart'; import 'package:test/test.dart'; import 'package:test_descriptor/test_descriptor.dart' as d; import '../../hook/build.dart' as hook; void main() { test('system with custom name', () async { await testBuildHook( userDefines: PackageUserDefines( workspacePubspec: PackageUserDefinesSource( defines: {'source': 'system', 'name': 'sqlcipher'}, basePath: Uri.file(d.sandbox), ), ), mainMethod: hook.main, check: (input, output) { expect(output.assets.code, [ isA().having( (e) => e.linkMode, 'linkMode', DynamicLoadingSystem(Uri.parse('sqlcipher.dll')), ), ]); }, extensions: [ CodeAssetExtension( targetArchitecture: Architecture.arm64, targetOS: OS.windows, linkModePreference: LinkModePreference.dynamic, ), ], ); }); } ================================================ FILE: sqlite3/test/jsonb_test.dart ================================================ @Tags(['ffi']) library; import 'dart:convert'; import 'dart:typed_data'; import 'package:sqlite3/sqlite3.dart'; import 'package:test/test.dart'; void main() { final supportsJsonb = sqlite3.version.versionNumber >= 3045000; group('encode', () { void expectEncoded(Object? object, String expectedHex) { final encoded = jsonb.encode(object); final hex = encoded .map((e) => e.toRadixString(16).padLeft(2, '0')) .join(); expect(hex, expectedHex); } test('null', () { expectEncoded(null, '00'); }); test('booleans', () { expectEncoded(true, '01'); expectEncoded(false, '02'); }); test('integers', () { expectEncoded(0, '1330'); expectEncoded(-1, '232d31'); }); test('doubles', () { expectEncoded(0.0, '35302e30'); expectEncoded(-0.0, '452d302e30'); }); test('array', () { expectEncoded([], '0b'); expectEncoded([true], 'fb000000000000000101'); }); test('object', () { expectEncoded({}, '0c'); expectEncoded({'a': true}, 'fc00000000000000031a6101'); }); test('does not encode circular elements', () { final selfContainingList = []; selfContainingList.add(selfContainingList); final selfContainingMap = {}; selfContainingMap['.'] = selfContainingMap; expect( () => jsonb.encode(selfContainingList), throwsA(isA()), ); expect( () => jsonb.encode(selfContainingMap), throwsA(isA()), ); }); test('does not encode invalid elements', () { expect( () => jsonb.encode(jsonb), throwsA(isA()), ); }); test('can call toJson', () { expectEncoded(_CustomJsonRepresentation(), '01'); }); }); group('decode', () { Object? decode(String hex) { expect(hex.length.isEven, true); final bytes = Uint8List(hex.length ~/ 2); for (var i = 0; i < bytes.length; i++) { bytes[i] = int.parse(hex.substring(i * 2, (i * 2) + 2), radix: 16); } return jsonb.decode(bytes); } void expectDecoded(String hex, Object? decoded) { expect(decode(hex), decoded); } test('null', () { expectDecoded('00', null); }); test('true', () { expectDecoded('01', true); }); test('false', () { expectDecoded('02', false); }); test('integers', () { expectDecoded('1330', 0); expectDecoded('232d31', -1); }); test('doubles', () { expectDecoded('35302e30', 0.0); expectDecoded('452d302e30', -0.0); }); test('array', () { expectDecoded('0b', []); expectDecoded('1b01', [true]); }); test('object', () { expectDecoded('0c', {}); expectDecoded('3c1a6101', {'a': true}); }); test('supports long primitives', () { // "Future versions of SQLite might extend the JSONB format with elements // that have a zero element type but a non-zero size. In that way, legacy // versions of SQLite will interpret the element as a NULL for backwards // compatibility while newer versions will interpret the element in some // other way. " expectDecoded('30000000', null); }); test('fails for invalid element types', () { expect(() => decode('0d'), throwsA(_isMalformedJsonException)); expect(() => decode('0e'), throwsA(_isMalformedJsonException)); expect(() => decode('0f'), throwsA(_isMalformedJsonException)); }); test('fails for trailing data', () { expect(() => decode('10'), throwsA(_isMalformedJsonException)); }); }); group('round trips', () { late Database database; late PreparedStatement jsonb2json, json2jsonb; setUpAll(() { database = sqlite3.openInMemory(); if (supportsJsonb) { jsonb2json = database.prepare('SELECT json(?);'); json2jsonb = database.prepare('SELECT jsonb(?);'); } }); tearDownAll(() => database.close()); void check(Object? value, {String? expectDecodesAs}) { final valueMatcher = switch (value) { double(isNaN: true) => isNaN, _ => equals(value), }; // Check our encoder -> our decoder roundtrip expect(jsonb.decode(jsonb.encode(value)), valueMatcher); if (supportsJsonb) { // Check our encoder -> sqlite3 decoder rountrip final sqliteDecoded = jsonb2json.select([jsonb.encode(value)]).single.values.single as String; if (expectDecodesAs != null) { expect(sqliteDecoded, expectDecodesAs); } else { expect(json.decode(sqliteDecoded), valueMatcher); } // Check sqlite3 encoder -> our decoder roundtrip final sqliteEncoded = json2jsonb.select([jsonb.encode(value)]).single.values.single as Uint8List; expect(jsonb.decode(sqliteEncoded), valueMatcher); } } test('primitives', () { check(null); check(true); check(false); check(0); check(-1); check(0.0); check(double.infinity, expectDecodesAs: 'Infinity'); check(double.negativeInfinity, expectDecodesAs: '-Infinity'); check('hello world'); check('hello " world'); check('hello \n world'); }); test('arrays', () { check([]); check([1, 2, 3]); check([0, 1.1, 'hello', false, null, 'world']); }); test('objects', () { check({}); check({'foo': 'bar'}); check({'a': null, 'b': true, 'c': 0, 'd': 0.1, 'e': 'hi'}); }); test('throws on nan', () { expect( () => jsonb.encode(double.nan), throwsA(isA()), ); }); test( 'did use sqlite3 decoder', () {}, skip: supportsJsonb ? null : 'Roundtrip tests with SQLite were skipped because the available ' 'SQLite version does not support JSONB.', ); }); } final class _CustomJsonRepresentation { Object? toJson() => true; } final _isMalformedJsonException = isA().having( (e) => e.message, 'message', 'Malformed JSONB', ); ================================================ FILE: sqlite3/test/source_code_test.dart ================================================ @TestOn('vm') library; import 'dart:io'; import 'package:analyzer/dart/ast/ast.dart'; import 'package:analyzer/dart/analysis/utilities.dart'; import 'package:path/path.dart' as p; import 'package:test/test.dart'; void main() { test('does not import legacy JS interop files', () { final failures = <(String, String)>[]; void check(FileSystemEntity e) { switch (e) { case File(): if (p.extension(e.path) != '.dart') return; final text = e.readAsStringSync(); CompilationUnit parsed; try { parsed = parseString(content: text).unit; } catch (ex) { print('Could not parse ${e.path}'); rethrow; } for (final directive in parsed.directives) { if (directive is ImportDirective) { final uri = directive.uri.stringValue!; if (uri.contains('package:js') || uri == 'dart:js' || uri == 'dart:js_util' || uri == 'dart:html' || uri == 'dart:indexeddb') { failures.add((e.path, directive.toString())); } } } case Directory(): for (final entry in e.listSync()) { check(entry); } } } final root = Directory('lib/'); check(root); expect( failures, isEmpty, reason: 'This package should not import legacy JS code.', ); }); } ================================================ FILE: sqlite3/test/wasm/asset_server.dart ================================================ import 'dart:io'; import 'package:shelf/shelf.dart'; import 'package:shelf/shelf_io.dart' as io; import 'package:shelf_static/shelf_static.dart'; import 'package:stream_channel/stream_channel.dart'; const _corsHeaders = {'Access-Control-Allow-Origin': '*'}; Middleware cors() { Response? handleOptionsRequest(Request request) { if (request.method == 'OPTIONS') { return Response.ok(null, headers: _corsHeaders); } else { // Returning null will run the regular request handler return null; } } Response addCorsHeaders(Response response) { return response.change(headers: _corsHeaders); } return createMiddleware( requestHandler: handleOptionsRequest, responseHandler: addCorsHeaders, ); } Future hybridMain(StreamChannel channel) async { final server = await HttpServer.bind('localhost', 0); final handler = const Pipeline() .addMiddleware(cors()) .addHandler(createStaticHandler('.')); io.serveRequests(server, handler); channel.sink.add(server.port); await channel.stream .listen(null) .asFuture() .then((_) => server.close()); } ================================================ FILE: sqlite3/test/wasm/common_database_test.dart ================================================ @Tags(['wasm']) library; import 'package:test/test.dart'; import '../common/database.dart'; import '../common/session.dart'; import 'utils.dart'; void main() { testDatabase(loadSqlite3); group('session', () { testSession(loadSqlite3); }); } ================================================ FILE: sqlite3/test/wasm/encryption_test.dart ================================================ @Tags(['wasm']) library; import 'dart:typed_data'; import 'package:sqlite3/wasm.dart'; import 'package:test/test.dart'; import 'package:typed_data/typed_data.dart'; import 'utils.dart'; void main() { test('can open databases with sqlite3mc', () async { final sqlite3 = await loadSqlite3WithoutVfs(encryption: true); sqlite3.registerVirtualFileSystem(InMemoryFileSystem(name: 'dart-mem')); sqlite3.open('/test', vfs: 'multipleciphers-dart-mem') ..execute('pragma key = "key"') ..execute('CREATE TABLE foo (bar TEXT) STRICT;') ..execute('INSERT INTO foo VALUES (?)', ['test']) ..close(); final database = sqlite3.open('/test', vfs: 'multipleciphers-dart-mem'); expect( () => database.select('SELECT * FROM foo'), throwsA( isA().having( (e) => e.message, 'message', contains('not a database'), ), ), ); database.execute('pragma key = "key"'); expect(database.select('SELECT * FROM foo'), isNotEmpty); }); test('can encrypt and decrypt databases', () async { final regular = await loadSqlite3WithoutVfs(encryption: false); final ciphers = await loadSqlite3WithoutVfs(encryption: true); final memory = InMemoryFileSystem(); regular.registerVirtualFileSystem(memory); { final db = regular.open('/app.db', vfs: memory.name); db.execute('create table foo (bar text);'); db.close(); } // Replace with encrypted copy. memory.fileData['/app.db'] = Uint8Buffer() ..addAll( _encryptDatabase( ciphers, memory.fileData['/app.db']!.buffer.asUint8List(), 'encryption key', ), ); // Which should now be impossible to open { final db = regular.open('/app.db', vfs: memory.name); expect( () => db.select('SELECT * FROM sqlite_schema'), throwsA(isA()), ); db.close(); } // Replace with decrypted database memory.fileData['/app.db'] = Uint8Buffer() ..addAll( _decryptDatabase( ciphers, memory.fileData['/app.db']!.buffer.asUint8List(), 'encryption key', ), ); // Which we should be able to open again { final db = regular.open('/app.db', vfs: memory.name); expect(db.select('SELECT * FROM sqlite_schema'), hasLength(1)); db.close(); } }); } Uint8List _encryptDatabase( WasmSqlite3 bindings, Uint8List decrypted, String key, ) { final vfs = InMemoryFileSystem(name: 'encrypt'); vfs.fileData['/app.db'] = Uint8Buffer()..addAll(decrypted); bindings.registerVirtualFileSystem(vfs); final db = bindings.open('/app.db', vfs: 'multipleciphers-${vfs.name}'); db.execute("pragma rekey ='${key.replaceAll("'", "''")}'"); db.close(); bindings.unregisterVirtualFileSystem(vfs); final data = vfs.fileData['/app.db']!; return data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes); } Uint8List _decryptDatabase( WasmSqlite3 bindings, Uint8List decrypted, String key, ) { final vfs = InMemoryFileSystem(name: 'decrypt'); vfs.fileData['/app.db'] = Uint8Buffer()..addAll(decrypted); bindings.registerVirtualFileSystem(vfs); final db = bindings.open('/app.db', vfs: 'multipleciphers-${vfs.name}'); db.execute("pragma key ='${key.replaceAll("'", "''")}'"); db.execute("pragma rekey = ''"); db.close(); bindings.unregisterVirtualFileSystem(vfs); final data = vfs.fileData['/app.db']!; return data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes); } ================================================ FILE: sqlite3/test/wasm/file_system_test.dart ================================================ @Tags(['wasm']) library; import 'dart:async'; import 'dart:math'; import 'dart:typed_data'; import 'package:sqlite3/wasm.dart'; import 'package:test/test.dart'; import '../common/vfs.dart'; import 'utils.dart'; const _fsRoot = '/test'; Future main() async { // dart2wasm does not currently support Random.secure(), so we have to use // this as a fallback. final random = Random(); group('common test', () { testVfs(loadSqlite3WithoutVfs); }); group('in memory', () { _testWith(() => InMemoryFileSystem(random: random)); }); group('indexed db', () { _testWith( () => IndexedDbFileSystem.open(dbName: _randomName(), random: random), ); test( 'example with frequent writes', () async { final fileSystem = await IndexedDbFileSystem.open( dbName: 'test', random: random, ); final sqlite3 = await loadSqlite3(fileSystem); final database = sqlite3.open('test'); expect(database.userVersion, 0); database.userVersion = 1; expect(database.userVersion, 1); database.execute( 'CREATE TABLE IF NOT EXISTS users ( ' 'id INTEGER NOT NULL, ' 'name TEXT NOT NULL, ' 'email TEXT NOT NULL UNIQUE, ' 'user_id INTEGER NOT NULL, ' 'PRIMARY KEY (id));', ); final prepared = database.prepare( 'INSERT INTO users ' '(id, name, email, user_id) VALUES (?, ?, ?, ?)', ); for (var i = 0; i < 200; i++) { prepared.execute([ BigInt.from(i), 'name', 'email${BigInt.from(i)}', BigInt.from(i), ]); } expect(database.select('SELECT * FROM users'), hasLength(200)); database.close(); // file-system should save reasonably quickly await fileSystem.close().timeout(const Duration(seconds: 1)); final fileSystem2 = await IndexedDbFileSystem.open( dbName: 'test', random: random, ); final sqlite32 = await loadSqlite3(fileSystem2); final database2 = sqlite32.open('test'); expect(database2.userVersion, 1); expect(database2.select('SELECT * FROM users'), hasLength(200)); }, onPlatform: {'wasm': Skip('Broken on dart2wasm')}, ); }); } final _random = Random(DateTime.now().millisecond); String _randomName() => _random.nextInt(0x7fffffff).toString(); Future _disposeFileSystem(VirtualFileSystem fs, [String? name]) async { if (fs is IndexedDbFileSystem) { await fs.close(); if (name != null) await IndexedDbFileSystem.deleteDatabase(name); } } Future _testWith(FutureOr Function() open) async { late VirtualFileSystem fs; setUp(() async { fs = await open(); }); tearDown(() => _disposeFileSystem(fs)); test('can create files', () { expect(fs.exists('$_fsRoot/foo.txt'), isFalse); fs.createFile('$_fsRoot/foo.txt'); expect(fs.exists('$_fsRoot/foo.txt'), isTrue); fs.xDelete('$_fsRoot/foo.txt', 0); expect(fs.exists('$_fsRoot/foo.txt'), isFalse); }); test('can create and delete multiple files', () { final paths = []; for (var i = 1; i <= 10; i++) { final path = '$_fsRoot/foo$i.txt'; paths.add(path); fs.createFile(path); expect(fs.exists(path), isTrue); } for (final path in paths) { fs.xDelete(path, 0); expect(fs.exists(path), isFalse); } }); test('reads and writes', () { expect(fs.exists('$_fsRoot/foo.txt'), isFalse); final file = fs .xOpen(Sqlite3Filename('$_fsRoot/foo.txt'), SqlFlag.SQLITE_OPEN_CREATE) .file; fs.createFile('$_fsRoot/foo.txt'); addTearDown(() { file.xClose(); fs.xDelete('$_fsRoot/foo.txt', 0); }); expect(file.xFileSize(), isZero); file.xTruncate(1024); expect(file.xFileSize(), 1024); file.xTruncate(600); expect(file.xFileSize(), 600); file.xTruncate(0); expect(file.xFileSize(), 0); file.xWrite(Uint8List.fromList([1, 2, 3]), 0); expect(file.xFileSize(), 3); final target = Uint8List(3); file.xRead(target, 0); expect(target, [1, 2, 3]); }); } extension on VirtualFileSystem { bool exists(String file) => xAccess(file, 0) != 0; void createFile(String path) { final open = xOpen(Sqlite3Filename(path), SqlFlag.SQLITE_OPEN_CREATE); open.file.xClose(); } } ================================================ FILE: sqlite3/test/wasm/prepared_statement_test.dart ================================================ @Tags(['wasm']) library; import 'package:test/scaffolding.dart'; import '../common/prepared_statement.dart'; import 'utils.dart'; void main() { testPreparedStatements(loadSqlite3); } ================================================ FILE: sqlite3/test/wasm/sqlite3_test.dart ================================================ @Tags(['wasm']) library; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'package:http/http.dart' as http; import 'package:sqlite3/wasm.dart'; import 'package:test/test.dart'; import 'package:web/web.dart' as web; import 'utils.dart'; void main() { for (final throughFetch in [false, true]) { group(throughFetch ? 'with fetch' : 'manually', () { late WasmSqlite3 sqlite3; setUpAll(() async { if (throughFetch) { sqlite3 = await loadSqlite3(); } else { final channel = spawnHybridUri('/test/wasm/asset_server.dart'); final port = (await channel.stream.first as double).toInt(); final sqliteWasm = Uri.parse( 'http://localhost:$port/example/web/sqlite3.wasm', ); final response = await http.get(sqliteWasm); if (response.statusCode != 200) { throw StateError( 'Could not load module (${response.statusCode} ${response.body})', ); } sqlite3 = await WasmSqlite3.load(response.bodyBytes); sqlite3.registerVirtualFileSystem( InMemoryFileSystem(), makeDefault: true, ); } }); test('get version', () { final version = sqlite3.version; expect( version, isA().having( (e) => e.libVersion, 'libVersion', startsWith('3.53'), ), ); }); test('can use current date', () { final db = sqlite3.openInMemory(); addTearDown(db.close); final results = db.select( "SELECT strftime('%s', CURRENT_TIMESTAMP) AS r", ); final row = results.single['r'] as String; expect( int.parse(row), closeTo(DateTime.now().millisecondsSinceEpoch ~/ 1000, 5), ); }); test('can use localtime', () { final db = sqlite3.openInMemory(); addTearDown(db.close); final testValues = [ (DateTime(1970, 1, 1), 1), (DateTime(2025, 1, 1), 1), (DateTime(2025, 2, 11, 13, 14, 15), 42), ]; final stmt = db.prepare(''' SELECT CAST(strftime('%Y', column1, 'unixepoch', 'localtime') AS INTEGER) AS year, CAST(strftime('%m', column1, 'unixepoch', 'localtime') AS INTEGER) AS month, CAST(strftime('%d', column1, 'unixepoch', 'localtime') AS INTEGER) AS day, CAST(strftime('%H', column1, 'unixepoch', 'localtime') AS INTEGER) AS hour, CAST(strftime('%M', column1, 'unixepoch', 'localtime') AS INTEGER) AS minute, CAST(strftime('%S', column1, 'unixepoch', 'localtime') AS INTEGER) AS second, CAST(strftime('%j', column1, 'unixepoch', 'localtime') AS INTEGER) AS day_of_year, CAST(strftime('%u', column1, 'unixepoch', 'localtime') AS INTEGER) AS day_of_week FROM (VALUES(?)); '''); for (final (value, dayOfYear) in testValues) { final [row] = stmt.select([value.millisecondsSinceEpoch ~/ 1000]); expect(row, { 'year': value.year, 'month': value.month, 'day': value.day, 'hour': value.hour, 'minute': value.minute, 'second': value.second, 'day_of_year': dayOfYear, 'day_of_week': value.weekday, }); } }); test('can report error location', () { final db = sqlite3.openInMemory(); addTearDown(db.close); expect( () => db.select('SELECT totally invalid syntax;'), throwsA( isA() .having( (e) => e.causingStatement, 'causingStatement', 'SELECT totally invalid syntax;', ) .having((e) => e.offset, 'offset', 23) .having( (e) => e.toString(), 'toString()', contains('Causing statement (at position 23): SELECT'), ), ), ); }); }); } group('can be used in workers', () { late String workerUri; late String wasmUri; setUpAll(() async { final channel = spawnHybridUri('/test/wasm/worker_server.dart'); final port = (await channel.stream.first as double).toInt(); final uri = 'http://localhost:$port/worker.dart.js'; wasmUri = 'http://localhost:$port/sqlite3.wasm'; final blob = web.Blob( ['importScripts("$uri");'.toJS].toJS, web.BlobPropertyBag(type: 'application/javascript'), ); workerUri = web.URL.createObjectURL(blob); }); // See worker.dart for the supported backends for (final backend in ['memory', 'opfs-simple', 'opfs', 'indexeddb']) { final requiresSab = backend == 'opfs'; final missingSab = requiresSab && globalContext.has('SharedArrayBuffer'); test( backend, () async { final worker = web.Worker(workerUri.toJS); web.EventStreamProviders.errorEvent.forTarget(worker).listen((error) { if (error.instanceOfString('ErrorEvent')) { final event = error as web.ErrorEvent; fail('Error ${event.message} - ${event.error}'); } else { fail(error.toString()); } }); // Inform the worker about the test we want to run worker.postMessage([backend.toJS, wasmUri.toJS].toJS); final response = (await web.EventStreamProviders.messageEvent .forTarget(worker) .first) .data as JSArray; final status = response.toDart[0] as JSBoolean; if (!status.toDart) { throw 'Exception in worker: $response'; } }, skip: missingSab ? 'This test requires SharedArrayBuffers that cannot be enabled ' 'on this platform with a simple `dart test` setup.' : null, onPlatform: { if (backend == 'opfs') 'chrome || edge': Skip('todo: Always times out in GitHub actions'), if (backend == 'opfs') 'firefox': Skip('todo: Currently broken in firefox'), }, ); } }); } ================================================ FILE: sqlite3/test/wasm/utils.dart ================================================ import 'package:sqlite3/wasm.dart'; import 'package:test/scaffolding.dart'; Future loadSqlite3WithoutVfs({bool encryption = false}) async { final channel = spawnHybridUri('/test/wasm/asset_server.dart'); final port = (await channel.stream.first as double).toInt(); final filename = encryption ? 'sqlite3mc.wasm' : 'sqlite3.wasm'; final sqliteWasm = Uri.parse('http://localhost:$port/example/web/$filename'); return await WasmSqlite3.loadFromUrl(sqliteWasm); } Future loadSqlite3([VirtualFileSystem? defaultVfs]) async { final sqlite3 = await loadSqlite3WithoutVfs(); sqlite3.registerVirtualFileSystem( defaultVfs ?? InMemoryFileSystem(), makeDefault: true, ); return sqlite3; } ================================================ FILE: sqlite3/test/wasm/worker.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'package:sqlite3/wasm.dart'; import 'package:web/web.dart' as web; @JS('Array') extension type _Array._(JSArray _) implements JSArray { external static bool isArray(JSAny? e); } void main() { final scope = (globalContext as web.DedicatedWorkerGlobalScope); runZonedGuarded( () { scope.onmessage = Zone.current.bindUnaryCallback(( web.MessageEvent event, ) { final rawData = event.data; if (_Array.isArray(rawData)) { final backend = ((rawData as JSArray).toDart[0] as JSString).toDart; final wasmUri = Uri.parse((rawData.toDart[1] as JSString).toDart); _startTest(backend, wasmUri); } else { _startOpfsServer(rawData as WorkerOptions); } }).toJS; }, (error, stack) { // Inform the calling test in sqlite3_test.dart about the error scope.postMessage( [false.toJS, error.toString().toJS, stack.toString().toJS].toJS, ); }, ); } Future _startTest(String fsImplementation, Uri wasmUri) async { final scope = (globalContext as web.DedicatedWorkerGlobalScope); Future test; switch (fsImplementation) { case 'memory': final fs = InMemoryFileSystem(); test = _runTest(open: () => fs, close: (fs) async {}, wasmUri: wasmUri); break; case 'indexeddb': test = _runTest( open: () => IndexedDbFileSystem.open(dbName: 'worker-test'), close: (fs) => fs.close(), wasmUri: wasmUri, ); break; case 'opfs-simple': test = _runTest( open: () => SimpleOpfsFileSystem.loadFromStorage('worker-test'), close: (fs) async { fs.close(); }, wasmUri: wasmUri, ); break; case 'opfs': test = _runTest( open: () async { // Start another worker with this entrypoint to launch the OPFS // server needed for synchronous access. final options = WasmVfs.createOptions(); final worker = web.Worker(scope.location.href.toJS); worker.postMessage(options); // Wait for the worker to acknowledge it being ready await web.EventStreamProviders.messageEvent.forTarget(worker).first; return WasmVfs(workerOptions: options); }, close: (vfs) async { vfs.close(); }, wasmUri: wasmUri, ); break; default: scope.postMessage([false.toJS].toJS); return; } await test; scope.postMessage([true.toJS].toJS); } Future _startOpfsServer(WorkerOptions options) async { final worker = await VfsWorker.create(options); // Inform the worker running the test that we're on it (globalContext as web.DedicatedWorkerGlobalScope).postMessage( [true.toJS].toJS, ); await worker.start(); } void _expect(bool condition, String reason) { if (!condition) { throw reason; } } Future _runTest({ required FutureOr Function() open, required Future Function(T fs) close, required Uri wasmUri, }) async { final fileSystem = await open(); final sqlite3 = await WasmSqlite3.loadFromUrl(wasmUri); sqlite3.registerVirtualFileSystem(fileSystem, makeDefault: true); final database = sqlite3.open('database'); _expect(database.userVersion == 0, 'Database version should be 0'); database.userVersion = 1; _expect(database.userVersion == 1, 'Should be 1 after setting it'); database.execute( 'CREATE TABLE IF NOT EXISTS users ( ' 'id INTEGER NOT NULL, ' 'name TEXT NOT NULL, ' 'email TEXT NOT NULL UNIQUE, ' 'user_id INTEGER NOT NULL, ' 'PRIMARY KEY (id));', ); final prepared = database.prepare( 'INSERT INTO users ' '(id, name, email, user_id) VALUES (?, ?, ?, ?)', ); for (var i = 0; i < 200; i++) { prepared.execute([ BigInt.from(i), 'name', 'email${BigInt.from(i)}', BigInt.from(i), ]); } _expect( database.select('SELECT * FROM users').length == 200, 'Should find 200 rows', ); database.close(); // file-system should save reasonably quickly await close(fileSystem).timeout(const Duration(seconds: 1)); final fileSystem2 = await open(); final sqlite32 = await WasmSqlite3.loadFromUrl(wasmUri); sqlite32.registerVirtualFileSystem(fileSystem2, makeDefault: true); final database2 = sqlite32.open('database'); _expect(database2.userVersion == 1, 'Should be 1 after reload'); _expect( database2.select('SELECT * FROM users').length == 200, 'Should find 200 rows', ); database2.close(); } ================================================ FILE: sqlite3/test/wasm/worker_server.dart ================================================ import 'dart:io'; import 'package:path/path.dart' as p; import 'package:shelf/shelf.dart'; import 'package:shelf/shelf_io.dart' as io; import 'package:shelf_static/shelf_static.dart'; import 'package:stream_channel/stream_channel.dart'; import 'package:test/test.dart'; import 'asset_server.dart'; Future hybridMain(StreamChannel channel) async { final directory = Directory.systemTemp .createTempSync('sqlite_dart_web') .resolveSymbolicLinksSync(); // Copy sqlite3.wasm file expected by the worker await File( 'example/web/sqlite3.wasm', ).copy(p.join(directory, 'sqlite3.wasm')); // And compile worker code final process = await Process.run(Platform.executable, [ 'compile', 'js', '-o', p.join(directory, 'worker.dart.js'), '-O0', 'test/wasm/worker.dart', ]); if (process.exitCode != 0) { fail('Could not compile worker'); } final server = await HttpServer.bind('localhost', 0); final handler = const Pipeline() .addMiddleware(cors()) .addHandler(createStaticHandler(directory)); io.serveRequests(server, handler); channel.sink.add(server.port); await channel.stream.listen(null).asFuture().then((_) async { await server.close(); await Directory(directory).delete(); }); } ================================================ FILE: sqlite3/tool/check_compile_time_option.dart ================================================ import 'dart:ffi'; import 'dart:io'; import 'package:sqlite3/sqlite3.dart'; /// Checks whether the loaded sqlite3 library includes a specific compile-time /// option. /// /// This is used to validate automated tests for this package around sqlite3 /// libraries compiled with different options (we want to make sure the options /// are actually set). /// /// Usage: `dart run tool/check_compile_time_option.dart options...` void main(List args) { final expectedOptions = args.toSet(); sqlite3.compileOptions.forEach(expectedOptions.remove); if (expectedOptions.isNotEmpty) { print('Following compile-time options where not set: $expectedOptions'); exit(1); } } typedef GetNative = Pointer Function(Int32 n); typedef GetDart = Pointer Function(int n); ================================================ FILE: sqlite3/tool/example_server.dart ================================================ import 'dart:io'; import 'package:build_daemon/client.dart'; import 'package:build_daemon/constants.dart'; import 'package:build_daemon/data/build_target.dart'; import 'package:path/path.dart' as p; import 'package:shelf/shelf.dart'; import 'package:shelf/shelf_io.dart'; import 'package:shelf_proxy/shelf_proxy.dart'; Future main() async { final script = Platform.script.toFilePath(windows: Platform.isWindows); final packageDir = p.dirname(p.dirname(script)); final buildRunner = await BuildDaemonClient.connect(packageDir, [ Platform.executable, // dart 'run', 'build_runner', 'daemon', ], logHandler: (log) => print(log.message)); buildRunner ..registerBuildTarget(DefaultBuildTarget((b) => b.target = 'example')) ..startBuild(); final assetServerPortFile = File( p.join(daemonWorkspace(packageDir), '.asset_server_port'), ); final assetServerPort = int.parse(await assetServerPortFile.readAsString()); final proxy = proxyHandler('http://localhost:$assetServerPort/example/'); await serve( (request) async { final pathSegments = request.url.pathSegments; if (pathSegments.isEmpty) { return Response( 302, headers: {'Location': 'http://localhost:8080/web/'}, ); } final response = await proxy(request); return response.change( headers: { // Needed for shared array buffers to work 'Cross-Origin-Opener-Policy': 'same-origin', 'Cross-Origin-Embedder-Policy': 'require-corp', }, ); }, 'localhost', 8080, ); print('Listening on http://localhost:8080'); } ================================================ FILE: sqlite3/tool/format_native.sh ================================================ #!/bin/sh clang-format --style=google -i assets/sqlite3.h assets/sqlite3_dart_wasm.h test/**/*.c ================================================ FILE: sqlite3/tool/generate_bindings.dart ================================================ import 'dart:io'; import 'package:dart_style/dart_style.dart'; import 'package:ffigen/ffigen.dart'; import 'package:ffigen/src/config_provider/config_types.dart'; import 'package:ffigen/src/config_provider/spec_utils.dart'; import 'package:ffigen/src/code_generator.dart'; import 'package:ffigen/src/context.dart'; import 'package:ffigen/src/header_parser.dart' as ffigen; import 'package:logging/logging.dart'; import '../../sqlite3_wasm_build/tool/wasm_symbols.dart'; void main() { Logger.root.onRecord.listen(print); _ffigen(); writeUsedSymbols(); writeWasmDefinitions(); } FfiGenerator createGenerator( bool Function(Declaration) filter, { List headers = const ['assets/sqlite3.h'], }) { return FfiGenerator( output: Output( dartFile: Uri.parse('lib/src/ffi/libsqlite3.g.dart'), preamble: '// ignore_for_file: type=lint', style: NativeExternalBindings( assetId: 'package:sqlite3/src/ffi/libsqlite3.g.dart', ), ), headers: Headers( entryPoints: [for (final header in headers) Uri.parse(header)], ), structs: Structs(include: filter), functions: Functions( include: filter, includeSymbolAddress: Declarations.includeAll, varArgs: makeVarArgFunctionsMapping({ 'sqlite3_db_config': [ RawVarArgFunction('', ['int', 'int*']), ], }, const {}), ), globals: Globals(include: _includeSqlite3Only), ); } void _ffigen() { createGenerator(_includeSqlite3Only).generate(); } bool _includeSqlite3Only(Declaration declaration) => declaration.isSqlite3Symbol; extension on Declaration { bool get isSqlite3Symbol => originalName.startsWith('sqlite3'); } void writeWasmDefinitions() { bool filter(Declaration d) { return stableFunctions.contains(d.originalName) || unstable.contains(d.originalName); } final generator = createGenerator( filter, headers: ['assets/sqlite3_dart_wasm.h', 'assets/sqlite3.h'], ); final library = ffigen.parse(Context(Logger.root, generator)); final buffer = StringBuffer(''' import 'dart:js_interop'; import 'package:web/web.dart' show Global; // ignore_for_file: non_constant_identifier_names typedef Pointer = int; /// Typed wrappers around the symbols exported by SQLite. /// /// Generated by `tool/generate_bindings.dart`. extension type SqliteExports(JSObject raw) implements JSObject { '''); void writeType(Type type) { const bigIntInJs = ['Int64', 'Uint64', 'Long']; switch (type) { case PointerType(): if (type.child.getNativeType() == 'externref ') { buffer.write('ExternalDartReference?'); } else { buffer.write('Pointer /*<${type.getNativeType().trim()}>*/'); } return; case NativeType(): if (bigIntInJs.contains(type.toString())) { buffer.write('JSBigInt'); return; } case ImportedType(): if (bigIntInJs.contains(type.cType)) { buffer.write('JSBigInt'); return; } } buffer.write(type.getDartType(library.context)); } for (final binding in library.bindings) { final mayBeAbsent = !stableFunctions.contains(binding.originalName); switch (binding) { case Func(): buffer.write('external '); if (mayBeAbsent) { buffer.writeln('JSFunction? get ${binding.originalName};'); } else { final type = binding.functionType; writeType(type.returnType); buffer.write(' ${binding.originalName}('); for (final (i, arg) in type.parameters.indexed) { if (i != 0) { buffer.write(', '); } writeType(arg.type); buffer.write(' ${arg.name}'); } buffer.writeln(');'); } case Global(): var jsType = 'Global'; if (mayBeAbsent) { jsType += '?'; } buffer ..write('external $jsType get ') ..write(binding.originalName) ..writeln(';'); } } buffer.writeln('}'); final formatter = DartFormatter(languageVersion: Version(3, 10, 0)); File( 'lib/src/wasm/sqlite3_wasm.g.dart', ).writeAsStringSync(formatter.format(buffer.toString())); } void writeUsedSymbols() { final buffer = StringBuffer(''' // Generated by tool/generate_bindings.dart // Used to generate a linker script hiding functions we don't need. // dart format off const usedSqliteSymbols = { '''); final library = ffigen.parse( Context(Logger.root, createGenerator(_includeSqlite3Only)), ); for (final binding in library.bindings) { if (binding is Global || binding is Func) { buffer.writeln(" '${binding.originalName}',"); } } buffer.writeln('};'); File('lib/src/hook/used_symbols.dart').writeAsString(buffer.toString()); } ================================================ FILE: sqlite3_connection_pool/.cargo/config.toml ================================================ [target.x86_64-unknown-linux-gnu] linker = "x86_64-linux-gnu-gcc" [target.i686-unknown-linux-gnu] linker = "i686-linux-gnu-gcc" [target.aarch64-unknown-linux-gnu] linker = "aarch64-linux-gnu-gcc" [target.armv7-unknown-linux-gnueabihf] linker = "arm-linux-gnueabihf-gcc" [target.riscv64gc-unknown-linux-gnu] linker = "riscv64-linux-gnu-gcc" ================================================ FILE: sqlite3_connection_pool/.gitignore ================================================ target ================================================ FILE: sqlite3_connection_pool/CHANGELOG.md ================================================ ## 0.2.4 - Fix `SqliteConnectionPool.updatedTables` emitting updates before a transaction has completed. ## 0.2.3 - Close read connections before write connection to clean up `-wal` and `-shm` files. - Add `select` and `execute` helpers to `PoolConnection`. - Add `PoolConnection.unsafePointer` and `PoolConnection.unsafeFromPointer`. ## 0.2.2 - Rollback transactions potentially left from killed isolates previously using a connection. ## 0.2.1 - Export the `PoolConnection` class. - Fix errors in `openAsync` being unhandled. ## 0.2.0+1 - Add `SqliteConnectionPool.openAsync` to open pools asynchronously. - Add `SqliteConnectionPool.updatedTables` to listen for table updates. - Add `PoolConnections.preparedStatementCacheSize`. When set to a positive value, `execute` and `select` will cache used prepared statements. ## 0.1.1 - Migrate to automated publishing. ## 0.1.0 - Initial version. ================================================ FILE: sqlite3_connection_pool/Cargo.toml ================================================ [package] name = "sqlite3_connection_pool" version = "0.1.0" edition = "2024" [lib] crate-type = ["cdylib"] [dependencies] lru = { version = "0.16.3", default-features = false } [profile.release] opt-level = "s" lto = true codegen-units = 1 panic = "abort" strip = true ================================================ FILE: sqlite3_connection_pool/LICENSE ================================================ MIT License Copyright (c) 2026 Simon Binder 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: sqlite3_connection_pool/README.md ================================================ # sqlite3_connection_pool A high-performance connection pool for SQLite on native platforms. ## Background SQLite is a synchronous database engine, and this is reflected by `package:sqlite3` having synchronous methods as well. To avoid doing IO on your UI isolate, one typically wraps the `sqlite3` package in a system that transparently runs queries on a background isolate (drift, sqlite_async and sqflite_common_ffi all do this). Having an isolate act as a "server" for SQLite queries works, but doesn't come without issues: 1. The communication scheme between isolates is complex to write. 2. To avoid "database is locked" errors, database access _must_ be coordinated through that isolate. For use-cases like background tasks, getting two isolates in the same process to talk to each other can be complicated. 3. Copying results over isolates can be expensive for large result sets. This package explores a different approach that doesn't have those limitations. Instead of managing a connection pool in Dart, it is maintained by a small Rust library. The library keeps a global map of active connection pools, so pools can be used even across Flutter engines or background tasks. While the pool is asynchronous, it hands out `Database` instances from the `sqlite3` package that can be used synchronously. If you're using databases on existing background isolates where synchronous access is okay, this is _much_ cheaper. Databases can also be used asynchronously. To implement that, the library spawns a short-lived isolate for each call that runs the query. In modern Dart versions, spawning isolates is very cheap. Additionally, because each isolate only runs one query, we can "move" result sets across isolates instead of having to copy! ## Overview To open a connection pool, call `SqliteConnectionPool.open`. That method takes a name, which should typically be the path of the database, and a callback to initialize connections: ```dart final pool = SqliteConnectionPool.open( name: '/path/to/database.db', openConnections: () { // Open one write and multiple read connections. return PoolConnections( openDatabase(true), [for (var i = 0; i < 4; i++) openDatabase(false)] ); }, ); Database openDatabase(bool writer) { final db = sqlite3.open('/path/to/database.db'); db.execute('pragma journal_mode = wal;'); if (!writer) { db.execute('pragma query_only = true'); } } ``` Note that opening pools is synchronized: If two isolates race to create the same pool, `openConnections` will only be called on one of them. After you have access to a pool, you can: - Run statements on the write connection: `await pool.execute('CREATE TABLE foo (bar TEXT);')`. - Run queries on a read connection: `await pool.readQuery('SELECT * FROM foo')`. - Obtain a read or write connection for multiple queries with `await pool.reader()` or `await pool.writer()`. Connections obtained this way must be returned into the pool with `returnLease()`. - Inspect all connections at once with `await pool.exclusiveAccess()`. You can explicitly close pools with `close()`, the underlying connections will be closed once all pools with the shared name have been closed. ================================================ FILE: sqlite3_connection_pool/analysis_options.yaml ================================================ include: package:lints/recommended.yaml analyzer: language: strict-casts: true strict-raw-types: true ================================================ FILE: sqlite3_connection_pool/example/main.dart ================================================ import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart'; void main() async { Database openDatabase() { return sqlite3.openInMemory(); } final pool = SqliteConnectionPool.open( name: 'test.db', openConnections: () => PoolConnections(openDatabase(), [ for (var i = 0; i < 5; i++) openDatabase(), ]), ); { final exclusive = await pool.exclusiveAccess(); await exclusive.writer.execute('CREATE TEMPORARY TABLE conn(id);'); await exclusive.writer.execute('INSERT INTO conn VALUES (?)', ['writer']); for (final (i, reader) in exclusive.readers.indexed) { await reader.execute('CREATE TEMPORARY TABLE conn(id);'); await reader.execute('INSERT INTO conn VALUES (?)', ['reader-$i']); } exclusive.close(); } pool.close(); } ================================================ FILE: sqlite3_connection_pool/hook/build.dart ================================================ import 'dart:io'; import 'package:code_assets/code_assets.dart'; import 'package:hooks/hooks.dart'; Future main(List args) { return build(args, (input, output) async { if (!input.config.buildCodeAssets) { return; } final sourceRoot = input.packageRoot; final config = input.config.code; final outputName = config.targetOS.dylibFileName('sqlite3_connection_pool'); // For versions of this package that are published to pub.dev, assets for // all supported ABIs are copied to lib/src/precompiled. Use those if // available. final precompiled = sourceRoot.resolve('lib/src/precompiled/'); if (Directory.fromUri(precompiled).existsSync()) { final outputPath = input.outputDirectory.resolve(outputName); String assetName; if (config.targetOS == OS.iOS && config.iOS.targetSdk == IOSSdk.iPhoneOS) { assetName = 'libsqlite3_connection_pool.ios_aarch64.dylib'; } else if (_prebuiltAssets[(config.targetOS, config.targetArchitecture)] case final asset?) { assetName = config.targetOS.dylibFileName( 'sqlite3_connection_pool.$asset', ); } else { throw ArgumentError( 'Unsupported target ABI: ${config.targetArchitecture} on ' '${config.targetOS}. Please file an issue on ' 'https://github.com/simolus3/sqlite3.dart/ !', ); } File.fromUri( precompiled.resolve(assetName), ).copySync(outputPath.toFilePath()); output.assets.code.add( CodeAsset( package: 'sqlite3_connection_pool', name: 'sqlite3_connection_pool.dart', linkMode: DynamicLoadingBundled(), file: outputPath, ), ); } else { // We can't use precompiled assets, use cargo to compile for the current // platform. if (config.targetOS != OS.current || config.targetArchitecture != Architecture.current) { throw UnsupportedError( 'Since lib/src/precompiled is missing, this hook only supports ' 'the host ABI.', ); } final build = await Process.start('cargo', [ 'build', ], mode: ProcessStartMode.inheritStdio); if (await build.exitCode case final code when code != 0) { throw StateError('Rust build failed: exit code $code'); } final library = sourceRoot.resolve('target/debug/$outputName'); final depsFile = File.fromUri( library.resolve( Platform.isWindows ? 'sqlite3_connection_pool.d' : 'libsqlite3_connection_pool.d', ), ); final depsContent = depsFile.readAsStringSync(); // Format: "target: dep1 dep2 ..." final [_, depsList] = depsContent.split(': '); // Paths with spaces are escaped as "\ " in the Makefile format. final deps = depsList.split(RegExp(r'(? connection) { return PoolConnection._(PoolConnectionRef(connection.cast())); } /// The underlying pointer representing this pool connection. /// /// The address of this pointer can safely be sent across isolates, but: /// /// 1. The connection must never be used concurrently. /// 2. The pointer is only valid until this connection is closed. Pointer get unsafePointer { return _ref.connection.cast(); } /// Run a query on this connection, using the prepared statement cache if it /// has been enabled. ResultSet select(String sql, [List parameters = const []]) { final cached = lookupCachedStatement(sql); final ResultSet resultSet; if (cached != null) { resultSet = cached.select(parameters); cached.reset(); } else { final stmt = database.prepare(sql, checkNoTail: true); resultSet = stmt.select(parameters); stmt.reset(); if (!storeCachedStatement(sql, stmt)) { stmt.close(); } } return resultSet; } /// Executes the given [sql] statement with the [parameters]. /// /// If parameters are empty, [sql] is allowed to contain more than one /// statement. Otherwise, this relies on prepared statements which might be /// cached depending on how the pool is configured. void execute(String sql, [List parameters = const []]) { if (lookupCachedStatement(sql) case final cached?) { cached ..execute(parameters) ..reset(); } else if (parameters.isNotEmpty) { final stmt = database.prepare(sql, checkNoTail: true); stmt ..execute(parameters) ..reset(); if (!storeCachedStatement(sql, stmt)) { stmt.close(); } } else { // The sql text is allowed to contain multiple statements, so we can't // cache them. database.execute(sql); } } PreparedStatement? lookupCachedStatement(String sql) { final ptr = _ref.lookupCachedStatement(sql); if (ptr.address == 0) return null; return database.statementFromPointer( statement: ptr, sql: sql, borrowed: true, ); } /// A call to this method invalidates all prior [lookupCachedStatement] return /// values, as the underlying statement could have been evicted from this /// call. bool storeCachedStatement(String sql, PreparedStatement stmt) { final didInsert = _ref.putCachedStatement(sql, stmt.handle.cast()); if (didInsert) { // Detach Dart finalizer to move ownership into the pool. stmt.leak(); return true; } return false; } } ================================================ FILE: sqlite3_connection_pool/lib/src/ffi.g.dart ================================================ // ignore_for_file: type=lint // AUTO GENERATED FILE, DO NOT EDIT. // // Generated by `package:ffigen`. // ignore_for_file: unused_import @ffi.DefaultAsset( 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart', ) library; import 'dart:ffi' as ffi; import '' as self; @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.UintPtr, ffi.Pointer Function()>>, ) >() external ffi.Pointer pkg_sqlite3_connection_pool_open( ffi.Pointer name, int name_len, ffi.Pointer Function()>> initialize, ); @ffi.Native)>() external void pkg_sqlite3_connection_pool_close( ffi.Pointer pool, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Int64, ffi.Int64, ) >(isLeaf: true) external ffi.Pointer pkg_sqlite3_connection_pool_obtain_read( ffi.Pointer pool, int tag, int port, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Int64, ffi.Int64, ) >(isLeaf: true) external ffi.Pointer pkg_sqlite3_connection_pool_obtain_write( ffi.Pointer pool, int tag, int port, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Int64, ffi.Int64, ) >(isLeaf: true) external ffi.Pointer pkg_sqlite3_connection_pool_obtain_exclusive( ffi.Pointer pool, int tag, int port, ); @ffi.Native)>() external int pkg_sqlite3_connection_pool_query_read_connection_count( ffi.Pointer pool, ); @ffi.Native< ffi.Void Function( ffi.Pointer, ffi.Pointer>, ffi.Pointer>, ffi.UintPtr, ) >() external void pkg_sqlite3_connection_pool_query_connections( ffi.Pointer pool, ffi.Pointer> writer, ffi.Pointer> readers, int reader_count, ); @ffi.Native)>() external void pkg_sqlite3_connection_pool_request_close( ffi.Pointer request, ); @ffi.Native< ffi.Void Function(ffi.Pointer, ffi.Int, ffi.Int64) >() external void pkg_sqlite3_connection_pool_update_listener( ffi.Pointer pool, int add, int listener, ); @ffi.Native)>() external void pkg_sqlite3_connection_pool_notify_updates( ffi.Pointer request, ); @ffi.Native< ffi.Pointer Function( ffi.Pointer, ffi.Pointer, ffi.UintPtr, ) >(isLeaf: true) external ffi.Pointer pkg_sqlite3_connection_pool_stmt_cache_get( ffi.Pointer connection, ffi.Pointer sql, int sql_len, ); @ffi.Native< ffi.Int Function( ffi.Pointer, ffi.Pointer, ffi.UintPtr, ffi.Pointer, ffi.Pointer)>>, ) >(isLeaf: true) external int pkg_sqlite3_connection_pool_stmt_cache_put( ffi.Pointer connection, ffi.Pointer sql, int sql_len, ffi.Pointer stmt, ffi.Pointer)>> sqlite3_finalize, ); const addresses = _SymbolAddresses(); class _SymbolAddresses { const _SymbolAddresses(); ffi.Pointer< ffi.NativeFunction)> > get pkg_sqlite3_connection_pool_close => ffi.Native.addressOf(self.pkg_sqlite3_connection_pool_close); ffi.Pointer)>> get pkg_sqlite3_connection_pool_request_close => ffi.Native.addressOf(self.pkg_sqlite3_connection_pool_request_close); } final class ConnectionPool extends ffi.Opaque {} final class PoolRequest extends ffi.Opaque {} final class PoolConnection extends ffi.Struct { external ffi.Pointer raw; } final class ExternalFunctions extends ffi.Struct { external ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ) > > sqlite3_update_hook; external ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ) > > sqlite3_commit_hook; external ffi.Pointer< ffi.NativeFunction< ffi.Void Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ) > > sqlite3_rollback_hook; external ffi.Pointer< ffi.NativeFunction)> > sqlite3_get_autocommit; external ffi.Pointer< ffi.NativeFunction)> > sqlite3_finalize; external ffi.Pointer< ffi.NativeFunction)> > sqlite3_close_v2; external ffi.Pointer< ffi.NativeFunction)> > dart_post_c_object; } final class InitializedPool extends ffi.Struct { external ExternalFunctions functions; external ffi.Pointer write; external ffi.Pointer> reads; @ffi.UintPtr() external int read_count; @ffi.UintPtr() external int prepared_statement_cache_size; } ================================================ FILE: sqlite3_connection_pool/lib/src/mutex.dart ================================================ import 'dart:async'; import 'dart:collection'; import 'package:meta/meta.dart'; import 'abort_exception.dart'; /// An asynchronous mutex that allows aborting requests. @internal final class Mutex { bool _inCriticalSection = false; final Queue _waiting = Queue(); Future withCriticalSection( FutureOr Function() action, { Future? abort, }) async { var holdsMutex = false; void markCompleted() { if (!holdsMutex) { return; } if (_waiting.isNotEmpty) { _waiting.removeFirst()(); } else { _inCriticalSection = false; } } if (!_inCriticalSection) { assert(_waiting.isEmpty); _inCriticalSection = true; holdsMutex = true; return Future.sync(action).whenComplete(markCompleted); } else { assert(_inCriticalSection); final completer = Completer.sync(); void complete() { holdsMutex = true; completer.complete(Future.sync(action)); } abort?.whenComplete(() { if (!completer.isCompleted) { final didRemove = _waiting.remove(complete); // The only way for waiters to get removed is for [complete] to get // called, so we wouldn't enter this branch. assert(didRemove); completer.completeError(const PoolAbortException()); } }); _waiting.addLast(complete); return completer.future.whenComplete(markCompleted); } } } ================================================ FILE: sqlite3_connection_pool/lib/src/pool.dart ================================================ /// @docImport 'abort_exception.dart'; library; import 'dart:async'; import 'dart:ffi'; import 'dart:isolate'; import 'package:sqlite3/sqlite3.dart'; import 'connection.dart'; import 'mutex.dart'; import 'raw.dart'; /// The result of calling [ConnectionLease.execute]. This provides access to the /// `autocommit` state (indicating whether the database is in a transaction) as /// well as the changes and last insert rowid. typedef ExecuteResult = ({bool autoCommit, int changes, int lastInsertRowId}); /// A pool giving out SQLite connections asynchronously. /// /// Pools are identified by name and managed by native code, which means that /// even two isolates without a communication channel can safely share pools. /// /// To open a pool, use [SqliteConnectionPool.open]. Pools are closed with /// [SqliteConnectionPool.close] (or by just not referencing them any longer), /// but the underlying connections are only closed once all pool instances /// across isolates are closed. /// /// You can query pools directly, [readQuery] runs a read-only select statement /// and [execute] runs writes (including writes with a `RETURNING` statement). /// /// Additionally, [reader] and [writer] return a [ConnectionLease] which allows /// running multiple statements on the same connection (useful e.g. for /// transactions). Obtained leases must be returned to the pool with /// [ConnectionLease.returnLease]. /// /// Finally, [exclusiveAccess] gives you exclusive access to the pool. This is /// useful in some cases where a schema update needs to be applied to read /// connections explicitly. final class SqliteConnectionPool { /// The name identifying this pool. /// /// In a Dart process (across all isolates), there will at most be one pool /// with a given name at the same time. Multiple instances with the same name /// will always share the same underlying pool. final String name; final RawSqliteConnectionPool _raw; final StreamController> _updatedTables = StreamController.broadcast(); RawReceivePort? _receiveTableUpdates; bool _isClosed = false; SqliteConnectionPool._(this.name, this._raw) { _updatedTables.onListen = () { assert(_receiveTableUpdates == null); final port = _receiveTableUpdates = RawReceivePort( (List msg) => _updatedTables.add(msg.cast()), 'Receive table updates', ); _raw.addUpdateListener(port.sendPort); }; _updatedTables.onCancel = () { if (_receiveTableUpdates case final port?) { port.close(); _raw.removeUpdateListener(port.sendPort); _receiveTableUpdates = null; } }; } void _checkNotClosed() { if (_isClosed) { throw StateError('This connection pool is closed'); } } void _installAbortSignal(RawPoolRequest request, Future? abortSignal) { if (abortSignal != null) { abortSignal.whenComplete(() { if (!request.isCompleted) { request.close(); } }); } } /// A broadcast stream of tables affected by write transactions on this /// database. /// /// For each completed transaction that updated at least one table, this will /// emit a [List] of affected tables. The stream emits updates asynchronously, /// _after_ the source table has been changed. /// /// This stream will also emit items if the update is made by an independent /// isolate or another Dart/Flutter engine in the same process. /// /// By default, updates are only collected when a [writer] or /// [exclusiveAccess] is returned. Emitting in a SQLite commit hook directly /// causes race conditions, as the commit might still be ongoing by the time /// we emit events here. /// For long-running writes that using multiple transactions, /// [ConnectionLease.notifyUpdates] can be used to emit updates before a /// writer is returned. Stream> get updatedTables => _updatedTables.stream; /// Obtains a connection suitable for reads from the connection pool. /// /// The returned [ConnectionLease] must be returned to the pool via /// [ConnectionLease.returnLease] so that it can be given to another writer /// later. It has native finalizers attached to it, so the connection would /// eventually be returned even if the owning isolate crashes or forgets to /// call [ConnectionLease.returnLease]. Explicitly returning the lease is /// strongly recommended though. /// /// If an [abortSignal] is given and the future completes before the write /// connection became available, the future may complete with an /// [PoolAbortException] instead. Future reader({Future? abortSignal}) async { _checkNotClosed(); final (request, future) = _raw.requestRead(); _installAbortSignal(request, abortSignal); final connectionPointer = await future; final lease = ConnectionLease._( PoolConnection.unsafeFromPointer(connectionPointer.connection), request, false, ); await lease._rollbackPendingTransaction(); return lease; } /// Obtains a connection suitable for writes from the connection pool. /// /// There is only one write connection for the entire pool, so different /// isolates or Flutter engines calling this method will not be able to issue /// writes concurrently, preventing "database is locked" errors. /// /// The returned [ConnectionLease] must be returned to the pool via /// [ConnectionLease.returnLease] so that it can be given to another writer /// later. It has native finalizers attached to it, so the connection would /// eventually be returned even if the owning isolate crashes or forgets to /// call [ConnectionLease.returnLease]. Explicitly returning the lease is /// strongly recommended though. /// /// If an [abortSignal] is given and the future completes before the write /// connection became available, the future may complete with an /// [PoolAbortException] instead. Future writer({Future? abortSignal}) async { _checkNotClosed(); final (request, future) = _raw.requestWrite(); _installAbortSignal(request, abortSignal); final connectionPointer = await future; final lease = ConnectionLease._( PoolConnection.unsafeFromPointer(connectionPointer.connection), request, true, ); await lease._rollbackPendingTransaction(); return lease; } /// Requests exclusive access to this pool. /// /// Having exclusive access allows access to all read connections and the /// write connection at the same time. /// /// To unblock after waiters after you're done with exclusive access, call /// [ExclusivePoolAccess.close]. /// /// If an [abortSignal] is given and the future completes before the write /// connection became available, the future may complete with an /// [PoolAbortException] instead. Future exclusiveAccess({ Future? abortSignal, }) async { _checkNotClosed(); final (request, future) = _raw.requestExclusive(); _installAbortSignal(request, abortSignal); await future; final (:writer, :readers) = _raw.queryConnections(); final exclusive = ExclusivePoolAccess._(request, writer, readers); await exclusive._rollbackPendingTransactions(); return exclusive; } /// Executes the [sql] statement on the write connection. Future execute( String sql, { List parameters = const [], }) async { final connection = await writer(); try { return await connection.execute(sql, parameters); } finally { connection.returnLease(); } } /// Runs a query on a reading connection from the pool. Future readQuery( String sql, { List parameters = const [], }) async { final connection = await reader(); try { final (rs, _) = await connection.select(sql, parameters); return rs; } finally { connection.returnLease(); } } /// Closes this connection pool. /// /// This will prevent subsequent [reader] and [writer] requests, but existing /// in-flight requests will continue be valid until they're aborted or until /// [ConnectionLease.returnLease] is called. /// /// Once all pool instances (across isolates) are closed, the underlying /// SQLite connections will be closed as well. void close() { if (!_isClosed) { _raw.close(); _receiveTableUpdates?.close(); _receiveTableUpdates = null; _updatedTables.close(); _isClosed = true; } } /// Opens a connection pool, initializing it with connections if this is the /// first instance of that pool. /// /// The [name] uniquely identifies the pool in this process. If two isolates /// call [open] with the same name, they'll get access to the same physical /// pool. /// /// [openConnections] should return a [PoolConnections] instance with a writer /// and a list of read connections. The exact configuration of those /// connections is up to the user, but connections should be configured to use /// `WAL` mode and there should be at least one read connection: /// ///```dart /// final pool = SqliteConnectionPool.open( /// name: '/path/to/database.db', /// openConnections: () { /// // Open one write and multiple read connections. /// return PoolConnections( /// openDatabase(true), /// [for (var i = 0; i < 4; i++) openDatabase(false)] /// ); /// }, /// ); /// /// Database openDatabase(bool writer) { /// final db = sqlite3.open('/path/to/database.db'); /// db.execute('pragma journal_mode = wal;'); /// if (!writer) { /// db.execute('pragma query_only = true'); /// } /// } /// ``` static SqliteConnectionPool open({ required String name, required PoolConnections Function() openConnections, }) { return SqliteConnectionPool._( name, RawSqliteConnectionPool.open(name, openConnections), ); } /// Like [open], but calls [openConnections] on a fresh isolate to avoid /// blocking the current one in case the setup requires an IO operation. static Future openAsync({ required String name, required PoolConnections Function() openConnections, }) async { final receiveOpenNotification = ReceivePort(); final firstMessage = receiveOpenNotification.first; await Isolate.spawn(_openAsyncEntrypoint, ( name, openConnections, receiveOpenNotification.sendPort, )); final message = await firstMessage; // This is either a send port, to which we send a message to close the // isolate after we've opened the pool on this side, or an (error, trace) // pair on exceptions. if (message is! SendPort) { final (error, trace) = message as (Object, StackTrace); Error.throwWithStackTrace(error, trace); } final closeIsolate = message; final pool = open( name: name, openConnections: () { throw AssertionError( 'The pool is open in the other isolate, so it should not be ' 're-opened here.', ); }, ); closeIsolate.send(null); return pool; } static void _openAsyncEntrypoint( (String, PoolConnections Function(), SendPort) options, ) async { final (name, open, port) = options; SqliteConnectionPool pool; try { pool = SqliteConnectionPool.open(name: name, openConnections: open); } catch (e, s) { Isolate.exit(port, (e, s)); } // Now that we've opened the pool, inform the other isolate. It can open the // same pool and that's guaranteed not to open it. final close = ReceivePort(); port.send(close.sendPort); await close.first; pool.close(); close.close(); } } /// A database connection with utilities to safely use it asynchronously. /// /// This provides asynchronous access to the underlying database. The database /// can be used directly (through [unsafeAccess]). Typically however, one would /// use the [select] and [execute] methods to automatically run statements and /// queries in short-lived background isolates. base class AsyncConnection { final PoolConnection _connection; // Because the database is used across multiple isolates (the current one and // the short-lived ones used for computations), we need to guard access to the // database with a mutex. final Mutex _mutex = Mutex(); var _closed = false; AsyncConnection._(this._connection); /// If the connection is in a transaction, rolls that transaction back. /// /// If we receive a connection that hasn't been returned in an idle state /// (for instance because the isolate originally using it didn't shut down /// cleanly), we want to rollback pending transactions. /// /// This is meant to be called after a connection has been obtained from the /// pool. Future _rollbackPendingTransaction() async { if (!_connection.database.autocommit) { await unsafeAccessOnIsolate((db) => db.database.execute('ROLLBACK')); } } /// Gets unprotected acccess to the [Database] without a mutex. /// /// Calling this method is unsafe if another call on this [ConnectionLease] is /// operating concurrently. PoolConnection get unsafeRawConnection => _connection; /// Calls [computation] as a critical section with the underlying database. /// /// This method is very easy to misuse, and should be used carefully. In /// particular, all of the following can trigger undefined behavior: /// /// 1. Calling [Database.close]. /// 2. Calling any method on [Database] after [computation] (or, if it's /// asynchronous, its future) completes. Future unsafeAccess( FutureOr Function(PoolConnection) computation, ) async { if (_closed) { throw StateError('LeasedDatabase used after callback returned'); } return _mutex.withCriticalSection(() => computation(_connection)); } /// On a short-lived isolate, calls [computation] as a critical section with /// the underlying database. /// /// See [unsafeAccess] for potential issues to be aware of when calling this /// method. Future unsafeAccessOnIsolate( FutureOr Function(PoolConnection) computation, ) { return unsafeAccess((conn) { final address = conn.unsafePointer.address; return Isolate.run(() { final conn = PoolConnection.unsafeFromPointer( Pointer.fromAddress(address), ); return computation(conn); }); }); } /// Returns the [Database.autocommit] status for the wrapped database. Future get autocommit { // the autocommit call is too cheap to justify a background isolate. return unsafeAccess((conn) => conn.database.autocommit); } /// Runs [sql] with [parameters] and returns results (both the [ResultSet] and /// a record of affected rows). Future<(ResultSet, ExecuteResult)> select( String sql, [ List parameters = const [], ]) { return unsafeAccessOnIsolate((conn) { final resultSet = conn.select(sql, parameters); return (resultSet, _execResult(conn.database)); }); } /// Executes [sql] with [parameters] and returns affected rows. Future execute( String sql, [ List parameters = const [], ]) { return unsafeAccessOnIsolate((conn) { conn.execute(sql, parameters); return _execResult(conn.database); }); } void _close() { _closed = true; // This doesn't call sqlite3_close_v2 because the connection has been opened // with borrowed: true. It just prevents using the connection object any // further. _connection.database.close(); } static ExecuteResult _execResult(Database db) { return ( autoCommit: db.autocommit, changes: db.updatedRows, lastInsertRowId: db.lastInsertRowId, ); } } /// A SQLite database connection that has been leased from a connection pool and /// must be returned to it with [returnLease]. /// /// If this object is no longer referenced, or if the isolate with exclusive /// access is closed for any reason, the lease is also automatically returned. final class ConnectionLease extends AsyncConnection { // The native request from which the database has been obtained. Closing this // will return the connection to the pool. final RawPoolRequest _request; final bool _isWriter; ConnectionLease._(super._connection, this._request, this._isWriter) : super._(); /// Returns this leased connection back to the pool. /// /// This connection may not be used after calling this method. void returnLease() { _close(); _request.close(); } /// Manual signal to add tables to [SqliteConnectionPool.updatedTables]. /// /// By default, local writes made while a connection was leased from the pool /// propagate to [SqliteConnectionPool.updatedTables] when the write /// connection is returned. This is a sensible default for most cases, but /// long-running writers issuing multiple transactions might want to notify /// updates after each transaction without returning the write lease. /// /// This method emits pending updates when: /// /// 1. This is a write transaction. /// 2. It is not in a transaction ([autocommit] is true). /// 3. There are pending writes from an earlier completed transaction that /// haven't made it to [SqliteConnectionPool.updatedTables] yet. Future notifyUpdates() { return unsafeAccess((_) { if (_isWriter && !_closed) { _request.notifyUpdates(); } }); } } /// Provides access to all connections of a database pool. /// /// After obtaining this instance, it must eventually be [close]d to allow other /// readers and writers to progress. /// /// If this object is no longer referenced, or if the isolate with exclusive /// access is closed for any reason, the handle is also automatically returned. final class ExclusivePoolAccess { /// The single write connection of the connection pool. final AsyncConnection writer; /// All read connections in the pool. final List readers; final RawPoolRequest _request; ExclusivePoolAccess._( this._request, PoolConnectionRef writer, List readers, ) : writer = AsyncConnection._( PoolConnection.unsafeFromPointer(writer.connection), ), readers = [ for (final reader in readers) AsyncConnection._( PoolConnection.unsafeFromPointer(reader.connection), ), ]; Future _rollbackPendingTransactions() async { await Future.wait([ writer._rollbackPendingTransaction(), for (final reader in readers) reader._rollbackPendingTransaction(), ]); } /// Returns this exclusive access instance, allowing other readers and writers /// to use the pool. void close() { if (writer._closed) { return; } writer._close(); for (final reader in readers) { reader._close(); } _request.close(); } } ================================================ FILE: sqlite3_connection_pool/lib/src/raw.dart ================================================ import 'dart:async'; import 'dart:convert'; import 'dart:ffi'; import 'dart:isolate'; import 'package:ffi/ffi.dart'; import 'package:meta/meta.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3/unstable/ffi_bindings.dart' as libsqlite3; import 'abort_exception.dart'; import 'ffi.g.dart'; final _poolFinalizer = NativeFinalizer( addresses.pkg_sqlite3_connection_pool_close.cast(), ); final _requestFinalizer = NativeFinalizer( addresses.pkg_sqlite3_connection_pool_request_close.cast(), ); @internal final class RawSqliteConnectionPool implements Finalizable { var _requestCounter = 0; final Map> _outstandingRequests = {}; final Pointer _pool; final RawReceivePort _receivePort = RawReceivePort(); final Object _detachToken = Object(); int get _nativePort => _receivePort.sendPort.nativePort; RawSqliteConnectionPool._(this._pool) { _poolFinalizer.attach(this, _pool.cast(), detach: _detachToken); _receivePort.handler = (List message) { final tag = message[0] as int; final isExclusive = message[1] as bool; final completer = _outstandingRequests.remove(tag); if (completer == null) { return; } _PoolLease parsed; if (isExclusive) { parsed = const _ExclusiveLease(); } else { final poolConnection = Pointer.fromAddress( message[2] as int, ); parsed = _SingleConnectionLease(PoolConnectionRef(poolConnection)); } completer.complete(parsed); }; } (int, Completer<_PoolLease>) _createRequest() { final id = _requestCounter++; return (id, _outstandingRequests[id] = Completer()); } (RawPoolRequest, Future) requestRead() { final (tag, completer) = _createRequest(); final request = RawPoolRequest._( tag, this, pkg_sqlite3_connection_pool_obtain_read(_pool, tag, _nativePort), ); return ( request, completer.future.then((f) => (f as _SingleConnectionLease)._connection), ); } (RawPoolRequest, Future) requestWrite() { final (tag, completer) = _createRequest(); final request = RawPoolRequest._( tag, this, pkg_sqlite3_connection_pool_obtain_write(_pool, tag, _nativePort), ); return ( request, completer.future.then((f) => (f as _SingleConnectionLease)._connection), ); } (RawPoolRequest, Future) requestExclusive() { final (tag, completer) = _createRequest(); final request = RawPoolRequest._( tag, this, pkg_sqlite3_connection_pool_obtain_exclusive(_pool, tag, _nativePort), ); return (request, completer.future); } /// May only be called if the caller has an active exclusive request on this /// pool. ({PoolConnectionRef writer, List readers}) queryConnections() { final amountOfReaders = pkg_sqlite3_connection_pool_query_read_connection_count(_pool); return using((alloc) { final writeConnectionPointer = alloc>(); final readConnectionPointers = alloc>( amountOfReaders, ); pkg_sqlite3_connection_pool_query_connections( _pool, writeConnectionPointer, readConnectionPointers, amountOfReaders, ); final readers = List.generate( amountOfReaders, (i) => PoolConnectionRef(readConnectionPointers[i]), ); return ( writer: PoolConnectionRef(writeConnectionPointer.value), readers: readers, ); }); } void addUpdateListener(SendPort port) { pkg_sqlite3_connection_pool_update_listener(_pool, 1, port.nativePort); } void removeUpdateListener(SendPort port) { pkg_sqlite3_connection_pool_update_listener(_pool, 0, port.nativePort); } void close() { _poolFinalizer.detach(_detachToken); pkg_sqlite3_connection_pool_close(_pool); _receivePort.close(); } static RawSqliteConnectionPool open( String name, PoolConnections Function() open, ) { (Object, StackTrace)? openException; final pool = using((alloc) { final encoded = utf8.encode(name); final namePtr = alloc(encoded.length); namePtr.asTypedList(encoded.length).setAll(0, encoded); final initializeCallable = NativeCallable Function()>.isolateLocal(() { final initOptionsPtr = alloc(); final initOptions = initOptionsPtr.ref; initOptions.functions ..sqlite3_update_hook = libsqlite3.addresses.sqlite3_update_hook .cast() ..sqlite3_rollback_hook = libsqlite3 .addresses .sqlite3_rollback_hook .cast() ..sqlite3_commit_hook = libsqlite3.addresses.sqlite3_commit_hook .cast() ..sqlite3_get_autocommit = libsqlite3 .addresses .sqlite3_get_autocommit .cast() ..sqlite3_finalize = libsqlite3.addresses.sqlite3_finalize.cast() ..sqlite3_close_v2 = libsqlite3.addresses.sqlite3_close_v2.cast() ..dart_post_c_object = NativeApi.postCObject.cast(); try { final PoolConnections( :readers, :writer, :preparedStatementCacheSize, ) = open(); initOptions.write = writer.leak().cast(); initOptions.read_count = readers.length; initOptions.reads = alloc(readers.length); initOptions.prepared_statement_cache_size = preparedStatementCacheSize; for (final (i, reader) in readers.indexed) { (initOptions.reads + i).value = reader.leak().cast(); } } catch (e, s) { openException = (e, s); return nullptr; } return initOptionsPtr; }); final connection = pkg_sqlite3_connection_pool_open( namePtr, encoded.length, initializeCallable.nativeFunction, ); initializeCallable.close(); return connection; }); if (pool.address == 0) { if (openException case final exception?) { // Couldn't open because the callback threw an exception, rethrow that. Error.throwWithStackTrace(exception.$1, exception.$2); } // Unreachable, opening a pool can only fail due to the callback throwing. throw AssertionError(); } return RawSqliteConnectionPool._(pool); } } /// A write and a collection of read connections to put into a connection pool. final class PoolConnections { final Database writer; final List readers; /// If set to a positive value, creates a cache of prepared statements for /// each connection. /// /// The cache is a LRU map with the indicated size. final int preparedStatementCacheSize; PoolConnections( this.writer, this.readers, { this.preparedStatementCacheSize = 0, }) : assert(preparedStatementCacheSize >= 0); } extension type PoolConnectionRef( /// The pool connection, used to manage cached prepared statements. Pointer connection ) { /// The `sqlite3*` connection pointer. Pointer get rawDatabase => connection.ref.raw; Pointer lookupCachedStatement(String sql) { final encoded = utf8.encode(sql); return pkg_sqlite3_connection_pool_stmt_cache_get( connection, encoded.address, encoded.length, ); } bool putCachedStatement(String sql, Pointer statement) { final encoded = utf8.encode(sql); return pkg_sqlite3_connection_pool_stmt_cache_put( connection, encoded.address, encoded.length, statement, libsqlite3.addresses.sqlite3_finalize.cast(), ) != 0; } } @internal final class RawPoolRequest implements Finalizable { final int _dartTag; final RawSqliteConnectionPool _pool; final Pointer _handle; final Object _detachToken = Object(); RawPoolRequest._(this._dartTag, this._pool, this._handle) { _requestFinalizer.attach(this, _handle.cast(), detach: _detachToken); } bool get isCompleted => !_pool._outstandingRequests.containsKey(_dartTag); void close() { _requestFinalizer.detach(_detachToken); pkg_sqlite3_connection_pool_request_close(_handle); _pool._outstandingRequests .remove(_dartTag) ?.completeError(PoolAbortException()); } void notifyUpdates() { pkg_sqlite3_connection_pool_notify_updates(_handle); } } sealed class _PoolLease { const _PoolLease(); } final class _SingleConnectionLease extends _PoolLease { /// The SQLite connection being leased. final PoolConnectionRef _connection; _SingleConnectionLease(this._connection); } final class _ExclusiveLease extends _PoolLease { const _ExclusiveLease(); } ================================================ FILE: sqlite3_connection_pool/pubspec.yaml ================================================ name: sqlite3_connection_pool description: High-performance async connection pool for SQLite on native platforms. version: 0.2.4 homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_connection_pool issue_tracker: https://github.com/simolus3/sqlite3.dart/issues resolution: workspace environment: sdk: ^3.10.0 topics: - sql - database - ffi - sqlite dependencies: code_assets: ^1.0.0 ffi: ^2.2.0 hooks: ^1.0.0 meta: ^1.17.0 sqlite3: ^3.2.0 dev_dependencies: async: ^2.13.0 lints: ^6.1.0 ffigen: ^20.1.1 logging: ^1.3.0 test: ^1.29.0 test_descriptor: ^2.0.2 path: ^1.9.1 ================================================ FILE: sqlite3_connection_pool/src/client.rs ================================================ use crate::dart::DartPort; use crate::pool::ConnectionPool; pub struct PoolClient { pub pool: ConnectionPool, update_listeners: Vec, } impl PoolClient { pub fn new(pool: ConnectionPool) -> Self { Self { pool, update_listeners: Default::default(), } } pub fn register_update_listener(&mut self, update_listener: DartPort) { self.update_listeners.push(update_listener); let mut pool = self.pool.lock().unwrap(); pool.register_update_listener(update_listener); } pub fn remove_update_listener(&mut self, update_listener: DartPort) { self.update_listeners .retain(|listener| listener != &update_listener); let mut pool = self.pool.lock().unwrap(); pool.remove_update_listeners(&[update_listener]); } } impl Drop for PoolClient { fn drop(&mut self) { if !self.update_listeners.is_empty() { let mut pool = self.pool.lock().unwrap(); pool.remove_update_listeners(&self.update_listeners); } } } ================================================ FILE: sqlite3_connection_pool/src/connection.rs ================================================ use crate::pool::ExternalFunctions; use lru::LruCache; use std::ffi::{c_int, c_void}; use std::num::NonZeroUsize; use std::ptr::NonNull; #[derive(Copy, Clone)] #[repr(transparent)] pub struct Connection(pub *const c_void); unsafe impl Send for Connection {} unsafe impl Sync for Connection {} #[derive(Copy, Clone, PartialEq, Eq)] #[repr(transparent)] pub struct PreparedStatement(pub NonNull); unsafe impl Send for PreparedStatement {} unsafe impl Sync for PreparedStatement {} pub struct StatementCache { cache: LruCache, } impl StatementCache { pub fn new(size: usize) -> Option { Some(Self { cache: LruCache::new(NonZeroUsize::new(size)?), }) } pub fn lookup(&mut self, sql: &str) -> Option> { self.cache.get(sql).map(|p| p.0) } pub fn put( &mut self, sql: String, stmt: PreparedStatement, finalize: extern "C" fn(PreparedStatement) -> c_int, ) { if let Some((_, old)) = self.cache.push(sql, stmt) { if old != stmt { // We had to remove an older statement from the cache to make room for the new one. // Properly finalize that statement now. finalize(old); } } } pub fn close_statements(&mut self, functions: &ExternalFunctions) { for (_, stmt) in self.cache.iter() { (functions.sqlite3_finalize)(*stmt); } self.cache.clear() } } ================================================ FILE: sqlite3_connection_pool/src/dart.rs ================================================ use std::ffi::{c_int, c_void}; /// A wrapper around a native `SendPort`. #[derive(Clone, Copy, PartialEq, Eq)] #[repr(transparent)] pub struct DartPort(i64); // https://github.com/dart-lang/sdk/blob/0a88f4ef734c464150b253708bb2699be3598c65/runtime/include/dart_native_api.h#L43-L100 #[repr(C)] pub struct RawDartCObject { pub type_: c_int, pub value: RawDartCObjectValue, } impl RawDartCObject { pub const TYPE_BOOL: c_int = 1; pub const TYPE_INT64: c_int = 3; pub const TYPE_STRING: c_int = 5; pub const TYPE_ARRAY: c_int = 6; } impl From for RawDartCObject { fn from(value: bool) -> Self { Self { type_: Self::TYPE_BOOL, value: RawDartCObjectValue { as_bool: value }, } } } impl From for RawDartCObject { fn from(value: i64) -> Self { Self { type_: Self::TYPE_INT64, value: RawDartCObjectValue { as_int64: value }, } } } #[repr(C)] pub union RawDartCObjectValue { pub as_bool: bool, pub as_int32: i32, pub as_int64: i64, pub as_double: f64, pub as_string: *const ::core::ffi::c_char, pub as_send_port: RawDartCObjectSendPort, pub as_capability: RawDartCObjectCapability, pub as_array: RawDartCObjectArray, pub as_typed_data: RawDartCObjectTypedData, pub as_external_typed_data: RawDartCObjectExternalTypedData, pub as_native_pointer: RawDartCObjectNativePointer, } #[repr(C)] #[derive(Clone, Copy)] // to allow use in union pub struct RawDartCObjectSendPort { pub id: DartPort, pub origin_id: DartPort, } #[repr(C)] #[derive(Clone, Copy)] // to allow use in union pub struct RawDartCObjectCapability { pub id: i64, } #[repr(C)] #[derive(Clone, Copy)] // to allow use in union pub struct RawDartCObjectArray { pub length: isize, pub values: *mut *mut RawDartCObject, } #[repr(C)] #[derive(Clone, Copy)] // to allow use in union pub struct RawDartCObjectTypedData { pub type_: c_int, pub length: isize, pub values: *const u8, } #[repr(C)] #[derive(Clone, Copy)] // to allow use in union pub struct RawDartCObjectExternalTypedData { pub type_: c_int, pub length: isize, pub data: *mut u8, pub peer: *mut c_void, pub callback: *mut c_void, } #[repr(C)] #[derive(Clone, Copy)] // to allow use in union pub struct RawDartCObjectNativePointer { pub ptr: isize, pub size: isize, pub callback: *mut c_void, } ================================================ FILE: sqlite3_connection_pool/src/headers.h ================================================ #include typedef struct ConnectionPool ConnectionPool; typedef struct PoolRequest PoolRequest; typedef const void *Connection; struct PoolConnection { Connection raw; }; typedef struct ExternalFunctions { void (*sqlite3_update_hook)(Connection, void*, void*); void (*sqlite3_commit_hook)(Connection, void*, void*); void (*sqlite3_rollback_hook)(Connection, void*, void*); int (*sqlite3_get_autocommit)(Connection); int (*sqlite3_finalize)(void*); int (*sqlite3_close_v2)(Connection); int (*dart_post_c_object)(int64_t, const void* message); } SqliteFunctions; typedef struct InitializedPool { struct ExternalFunctions functions; Connection write; const Connection *reads; uintptr_t read_count; uintptr_t prepared_statement_cache_size; } InitializedPool; typedef struct InitializedPool *(*PoolInitializer)(void); typedef int64_t DartPort; ConnectionPool *pkg_sqlite3_connection_pool_open(const uint8_t *name, uintptr_t name_len, PoolInitializer initialize); void pkg_sqlite3_connection_pool_close(const ConnectionPool *pool); PoolRequest* pkg_sqlite3_connection_pool_obtain_read(const ConnectionPool *pool, int64_t tag, DartPort port); PoolRequest* pkg_sqlite3_connection_pool_obtain_write(const ConnectionPool *pool, int64_t tag, DartPort port); PoolRequest* pkg_sqlite3_connection_pool_obtain_exclusive(const ConnectionPool *pool, int64_t tag, DartPort port); uintptr_t pkg_sqlite3_connection_pool_query_read_connection_count(const ConnectionPool *pool); void pkg_sqlite3_connection_pool_query_connections(const ConnectionPool *pool, struct PoolConnection **writer, struct PoolConnection **readers, uintptr_t reader_count); void pkg_sqlite3_connection_pool_request_close(PoolRequest *request); void pkg_sqlite3_connection_pool_update_listener(const ConnectionPool *pool, int add, DartPort listener); void pkg_sqlite3_connection_pool_notify_updates(const PoolRequest *request); void* pkg_sqlite3_connection_pool_stmt_cache_get(const struct PoolConnection* connection, const uint8_t* sql, uintptr_t sql_len); int pkg_sqlite3_connection_pool_stmt_cache_put(const struct PoolConnection* connection, const uint8_t* sql, uintptr_t sql_len, void* stmt, int (*sqlite3_finalize)(void*)); ================================================ FILE: sqlite3_connection_pool/src/lib.rs ================================================ use crate::client::PoolClient; use crate::connection::PreparedStatement; use crate::dart::DartPort; use crate::pool::{ConnectionPool, PendingMessage, PoolConnection, PoolRequestHandle, PoolState}; use crate::registry::{PoolInitializer, PoolRegistry}; use std::ffi::{c_int, c_void}; use std::ptr::NonNull; use std::sync::{Arc, Mutex}; use std::{ptr, slice}; mod client; mod connection; mod dart; mod pool; mod registry; mod update_hook; #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_open( name: *const u8, name_len: usize, initialize: PoolInitializer, ) -> Option> { let name = unsafe { str::from_utf8_unchecked(slice::from_raw_parts(name, name_len)) }; PoolRegistry::lookup(name, initialize).map(|pool| { let client = PoolClient::new(pool); unsafe { NonNull::new_unchecked(Box::into_raw(Box::new(client))) } }) } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_close(pool: *mut PoolClient) { let pool = unsafe { Box::from_raw(pool) }; drop(pool) } fn clone_arc(pool: &Mutex) -> ConnectionPool { let ptr = ptr::from_ref(pool); unsafe { Arc::increment_strong_count(ptr) }; unsafe { Arc::from_raw(ptr) } } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_obtain_read( client: &PoolClient, tag: i64, port: DartPort, ) -> *mut PoolRequestHandle { let pool = &client.pool; let mut state = pool.lock().unwrap(); let pool = clone_arc(pool); Box::into_raw(Box::new( state.request_read(pool, PendingMessage { tag, port }), )) } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_obtain_write( client: &PoolClient, tag: i64, port: DartPort, ) -> *mut PoolRequestHandle { let pool = &client.pool; let mut state = pool.lock().unwrap(); let pool = clone_arc(pool); Box::into_raw(Box::new( state.request_write(pool, PendingMessage { tag, port }), )) } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_obtain_exclusive( client: &PoolClient, tag: i64, port: DartPort, ) -> *mut PoolRequestHandle { let pool = &client.pool; let mut state = pool.lock().unwrap(); let pool = clone_arc(pool); Box::into_raw(Box::new( state.request_exclusive(pool, PendingMessage { tag, port }), )) } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_request_close(request: *mut PoolRequestHandle) { drop(unsafe { Box::from_raw(request) }); } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_query_read_connection_count( client: &PoolClient, ) -> usize { let state = client.pool.lock().unwrap(); let (_, readers) = state.view_connections(); readers.len() } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_query_connections( client: &PoolClient, writer: &mut *const PoolConnection, readers: *mut *const PoolConnection, reader_count: usize, ) { let state = client.pool.lock().unwrap(); let (pool_writer, pool_readers) = state.view_connections(); *writer = pool_writer; for (i, conn) in pool_readers.iter().enumerate() { if i >= reader_count { break; } unsafe { readers.add(i).write(conn) }; } } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_update_listener( client: &mut PoolClient, add: bool, listener: DartPort, ) { if add { client.register_update_listener(listener) } else { client.remove_update_listener(listener) } } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_notify_updates(request: &PoolRequestHandle) { let pool = request.pool.lock().unwrap(); unsafe { // Safety: Dart must only call this when owning a write connection. pool.send_update_notifications() }; } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_stmt_cache_get( connection: &mut PoolConnection, sql: *const u8, sql_len: usize, ) -> Option> { let sql = unsafe { str::from_utf8_unchecked(slice::from_raw_parts(sql, sql_len)) }; connection .cached_statements .as_mut() .and_then(|cache| cache.lookup(sql)) } #[unsafe(no_mangle)] extern "C" fn pkg_sqlite3_connection_pool_stmt_cache_put( connection: &mut PoolConnection, sql: *const u8, sql_len: usize, stmt: NonNull, finalize: extern "C" fn(PreparedStatement) -> c_int, ) -> c_int { let sql = unsafe { str::from_utf8_unchecked(slice::from_raw_parts(sql, sql_len)) }; if let Some(cache) = connection.cached_statements.as_mut() { cache.put(sql.to_owned(), PreparedStatement(stmt), finalize); 1 } else { 0 } } ================================================ FILE: sqlite3_connection_pool/src/pool.rs ================================================ use crate::connection::{Connection, PreparedStatement, StatementCache}; use crate::dart::{DartPort, RawDartCObject, RawDartCObjectArray, RawDartCObjectValue}; use crate::update_hook::CollectedTableUpdates; use std::cell::UnsafeCell; use std::collections::VecDeque; use std::ffi::{c_char, c_int, c_void}; use std::marker::PhantomData; use std::ptr::NonNull; use std::sync::{Arc, Mutex}; /// A connection pool can be locked, in which case some Dart actor has exclusive access to all /// connections. When a new pool is initialized, it is also in this state. pub type ConnectionPool = Arc>; pub struct PoolState { reads: ReadState, writes: WriteState, /// Function pointers provided from Dart when initializing the pool. /// /// We assume those to be static within a process, so we don't need to track them on a /// per-client basis. pub functions: ExternalFunctions, /// Safety: The context having a write connection lease is assumed to have a mutable reference /// to the updates collector. /// /// This allows not locking in update hooks (since the SQLite connection is never used /// concurrently). table_updates: UnsafeCell, update_listeners: Vec, } #[repr(C)] pub struct PoolConnection { /// The raw `sqlite3*` connection pointer. pub raw: Connection, /// If statement caches are enabled, an LRU cache storing prepared statements by their SQL text. pub cached_statements: Option, } struct ReadState { connections: Vec, idle_connections: VecDeque, waiters: LinkedList, } struct WriteState { connection: PoolConnection, acquired: bool, waiters: LinkedList, } struct LinkedList { first: Option>, last: Option>, _e: PhantomData, } unsafe impl Send for LinkedList {} unsafe impl Sync for LinkedList {} /// A node waiting for access to the connection pool. /// /// A single node can be part of both the read and the write queue of a pool. struct WaitNode { /// If this node is part of the read queue, pointers to the next and previous entry. read_entry: Option, /// If this node is part of the write queue, pointers to the next and previous entry. write_entry: Option, /// The message to send to the Dart client once the connection is obtained. port: PendingMessage, waiter: Waiter, } pub struct PendingMessage { pub tag: i64, pub port: DartPort, } struct QueueEntry { prev: Option>, next: Option>, } // These are only mutated when we have a mutex on the pool, so we can pretend they're send and sync. unsafe impl Send for QueueEntry {} unsafe impl Sync for QueueEntry {} enum Waiter { Reader(ReadPoolRequest), Writer(WritePoolRequest), Exclusive(ExclusivePoolRequest), } #[derive(Default)] struct ReadPoolRequest { assigned_connection: Option, } #[derive(Default)] struct WritePoolRequest { has_writer: bool, } #[derive(Default)] struct ExclusivePoolRequest { has_writer: bool, obtained_read_connections: usize, } impl PoolState { pub fn new( functions: ExternalFunctions, writer: Connection, reads: &[Connection], cache_size: usize, ) -> Self { let wrap_connection = |conn: Connection| -> PoolConnection { PoolConnection { raw: conn, cached_statements: StatementCache::new(cache_size), } }; Self { reads: ReadState { idle_connections: (0usize..reads.len()).collect(), connections: reads.iter().copied().map(wrap_connection).collect(), waiters: Default::default(), }, writes: WriteState { connection: wrap_connection(writer), acquired: false, waiters: Default::default(), }, functions, table_updates: Default::default(), update_listeners: Default::default(), } } unsafe fn drop_waiter(&mut self, waiter: NonNull) { let mut waiter = unsafe { Box::from_raw(waiter.as_ptr()) }; let as_mut = waiter.as_mut(); // Remove waiter from queue if as_mut.read_entry.is_some() { self.reads.waiters.unlink(as_mut); } if as_mut.write_entry.is_some() { self.writes.waiters.unlink(as_mut); } // Return resources owned by waiter match waiter.waiter { Waiter::Reader(ref reader) => { if let Some(ref connection) = reader.assigned_connection { self.return_read_connection(*connection); } } Waiter::Writer(ref writer) => { if writer.has_writer { self.return_write_connection(); } } Waiter::Exclusive(ref exclusive) => { if exclusive.has_writer { self.return_write_connection() } for i in 0..self.reads.connections.len() { self.return_read_connection(i) } } } } fn return_read_connection(&mut self, conn: usize) { self.reads.idle_connections.push_back(conn); if let Some(mut waiting) = self.reads.waiters.first { let waiter = unsafe { waiting.as_mut() }; let did_complete = self.try_complete(waiter); if did_complete { self.reads.waiters.unlink(waiter); } } } /// ## Safety /// /// The caller must currently own a lease to the write connection of the pool. pub unsafe fn send_update_notifications(&self) { if (self.functions.sqlite3_get_autocommit)(self.writes.connection.raw) != 0 { // No longer in a transaction, notify clients for completed writes. let updates = unsafe { // Safety: Because we have an exclusive reference to the write connection, we also // have an exclusive reference to table updates. self.table_updates.get().as_mut().unwrap_unchecked() }; updates.send_notification(self.update_listeners.as_slice(), &self.functions); } } fn return_write_connection(&mut self) { unsafe { // Safety: We have an exclusive reference to the write connection. self.send_update_notifications() }; self.writes.acquired = false; // See if we can complete the next writer. if let Some(mut waiting) = self.writes.waiters.first { let waiter = unsafe { waiting.as_mut() }; let did_complete = self.try_complete(waiter); if did_complete { self.writes.waiters.unlink(waiter); } } } pub fn request_read(&mut self, pool: ConnectionPool, msg: PendingMessage) -> PoolRequestHandle { self.register_waiter(pool, msg, Waiter::Reader(Default::default()), true, false) } pub fn request_write( &mut self, pool: ConnectionPool, msg: PendingMessage, ) -> PoolRequestHandle { self.register_waiter(pool, msg, Waiter::Writer(Default::default()), false, true) } pub fn request_exclusive( &mut self, pool: ConnectionPool, msg: PendingMessage, ) -> PoolRequestHandle { self.register_waiter(pool, msg, Waiter::Exclusive(Default::default()), true, true) } /// Returns the write and all read connections of this pool. pub fn view_connections(&self) -> (&PoolConnection, &[PoolConnection]) { let writer = &self.writes.connection; let readers = self.reads.connections.as_slice(); (writer, readers) } fn register_waiter( &mut self, pool: ConnectionPool, msg: PendingMessage, waiter: Waiter, reads: bool, writes: bool, ) -> PoolRequestHandle { let request = Box::new(WaitNode { read_entry: None, write_entry: None, port: msg, waiter, }); let request = Box::leak(request); let request_completed = self.try_complete(request); let request = NonNull::from(request); if !request_completed { // We couldn't complete the request immediately, add it to relevant queues. if reads { self.reads.waiters.push(request); } if writes { self.writes.waiters.push(request); } } PoolRequestHandle { pool, node: request, } } /// Attempts to assign a connection to the given waiter, if one is available. /// /// Returns whether the node is completed and no longer waiting (in which case this function /// would have notified the Dart port). The node can be removed from its queues in that case. fn try_complete(&mut self, waiter: &mut WaitNode) -> bool { match &mut waiter.waiter { Waiter::Reader(reads) => { assert!(reads.assigned_connection.is_none()); if let Some(conn_idx) = self.reads.idle_connections.pop_front() { reads.assigned_connection = Some(conn_idx); waiter.port.send_did_obtain_connection( &self.reads.connections[conn_idx], &self.functions, ); return true; } false } Waiter::Writer(writes) => { assert!(!writes.has_writer); if self.try_assign_write(&mut writes.has_writer) { waiter .port .send_did_obtain_connection(&self.writes.connection, &self.functions); return true; } false } Waiter::Exclusive(exclusive) => { if !self.try_assign_write(&mut exclusive.has_writer) { return false; } while exclusive.obtained_read_connections < self.reads.connections.len() { let Some(_) = self.reads.idle_connections.pop_front() else { return false; }; exclusive.obtained_read_connections += 1; } waiter.port.send_did_obtain_exclusive(&self.functions); true } } } fn try_assign_write(&mut self, has_write: &mut bool) -> bool { if *has_write { true } else if !self.writes.acquired { self.writes.acquired = true; *has_write = true; true } else { false } } fn drop_connection(conn: &mut PoolConnection, functions: &ExternalFunctions) { if let Some(cache) = &mut conn.cached_statements { cache.close_statements(&functions); } (functions.sqlite3_close_v2)(conn.raw); } pub fn register_update_listener(&mut self, update_listener: DartPort) { self.update_listeners.push(update_listener); } pub fn remove_update_listeners(&mut self, removed_listeners: &[DartPort]) { self.update_listeners .retain(|l| !removed_listeners.contains(l)); } pub fn register_hooks_on_writer(arc: &ConnectionPool) { let pool = arc.lock().unwrap(); let updates_ptr = pool.table_updates.get(); let writer = &pool.writes.connection; CollectedTableUpdates::attach_to(updates_ptr, &pool.functions, writer.raw); } } impl Drop for PoolState { fn drop(&mut self) { // Pool request handles have a reference to the pool and should be dropped first. Still, // let's assert we're not about to close a connection that might still be in use. assert!( !self.writes.acquired, "Tried to drop with leased write connection" ); assert_eq!( self.reads.idle_connections.len(), self.reads.connections.len(), "Tried to drop with leased read connection" ); for read in &mut self.reads.connections { Self::drop_connection(read, &self.functions); } Self::drop_connection(&mut self.writes.connection, &self.functions); } } impl PendingMessage { /// Sends a `[tag, true]` message to this port. fn send_did_obtain_exclusive(&self, api: &ExternalFunctions) { let list_values: &mut [*mut RawDartCObject] = &mut [ &mut RawDartCObject::from(self.tag), &mut RawDartCObject::from(true), ]; let mut array = RawDartCObject { type_: RawDartCObject::TYPE_ARRAY, value: RawDartCObjectValue { as_array: RawDartCObjectArray { length: list_values.len() as isize, values: list_values.as_mut_ptr(), }, }, }; (api.dart_post_c_object)(self.port, &mut array); } /// Sends a `[tag, false, connection_ptr]` message to this port. fn send_did_obtain_connection(&self, connection: &PoolConnection, api: &ExternalFunctions) { let list_values: &mut [*mut RawDartCObject] = &mut [ &mut RawDartCObject::from(self.tag), &mut RawDartCObject::from(false), &mut RawDartCObject::from(connection as *const PoolConnection as i64), ]; let mut array = RawDartCObject { type_: RawDartCObject::TYPE_ARRAY, value: RawDartCObjectValue { as_array: RawDartCObjectArray { length: list_values.len() as isize, values: list_values.as_mut_ptr(), }, }, }; (api.dart_post_c_object)(self.port, &mut array); } } // Trait to extract read_entry or write_entry from a WaitNode struct trait ExtractEntry { fn extract_entry(node: &mut WaitNode) -> &mut Option; } impl ExtractEntry for ReadState { fn extract_entry(node: &mut WaitNode) -> &mut Option { &mut node.read_entry } } impl ExtractEntry for WriteState { fn extract_entry(node: &mut WaitNode) -> &mut Option { &mut node.write_entry } } impl Default for LinkedList { fn default() -> Self { Self { first: None, last: None, _e: PhantomData, } } } impl LinkedList { fn push(&mut self, mut node: NonNull) { let prev = match self.last { None => { self.first = Some(node); None } Some(mut last) => { E::extract_entry(unsafe { last.as_mut() }) .as_mut() .unwrap() .next = Some(node); Some(last) } }; let slot_on_node = E::extract_entry(unsafe { node.as_mut() }); debug_assert!(slot_on_node.is_none()); // We're about to insert it... *slot_on_node = Some(QueueEntry { prev, next: None }); self.last = Some(node); } fn unlink(&mut self, node: &mut WaitNode) { let slot = E::extract_entry(node); let Some(slot) = slot.take() else { panic!("Tried to unlink nonexistent queue entry") }; match slot.prev { Some(mut prev) => { let prev = unsafe { prev.as_mut() }; E::extract_entry(prev).as_mut().unwrap().next = slot.next; } // This was the first node None => { debug_assert!(slot.prev.is_none()); self.first = slot.next } }; match slot.next { Some(mut next) => { let next = unsafe { next.as_mut() }; E::extract_entry(next).as_mut().unwrap().prev = slot.prev; } // This was the last node None => { debug_assert!(slot.next.is_none()); self.last = slot.prev } } } } pub struct PoolRequestHandle { pub pool: ConnectionPool, node: NonNull, } impl Drop for PoolRequestHandle { fn drop(&mut self) { let mut pool = self.pool.lock().unwrap(); unsafe { pool.drop_waiter(self.node) }; } } /// References to `sqlite3` and `Dart_DL` functions we want to use. /// /// The Dart client will provide these function pointers because we want to link SQLite through /// hooks instead of adding it as a link-dependency of this crate. #[derive(Copy, Clone)] #[repr(C)] pub struct ExternalFunctions { pub sqlite3_update_hook: extern "C" fn( Connection, Option, c_int, *const c_char, *const c_char, i64)>, *mut c_void, ) -> *mut c_void, pub sqlite3_commit_hook: extern "C" fn( Connection, Option) -> c_int>, *mut c_void, ) -> *mut c_void, pub sqlite3_rollback_hook: extern "C" fn( Connection, Option)>, *mut c_void, ) -> *mut c_void, pub sqlite3_get_autocommit: extern "C" fn(Connection) -> c_int, pub sqlite3_finalize: extern "C" fn(PreparedStatement) -> c_int, pub sqlite3_close_v2: extern "C" fn(Connection) -> c_int, pub dart_post_c_object: extern "C" fn(port: DartPort, message: &mut RawDartCObject) -> bool, } ================================================ FILE: sqlite3_connection_pool/src/registry.rs ================================================ use crate::connection::Connection; use crate::pool::{ConnectionPool, ExternalFunctions, PoolState}; use std::collections::HashMap; use std::ptr::NonNull; use std::slice; use std::sync::{Arc, LazyLock, Mutex, Weak}; static REGISTRY: LazyLock = LazyLock::new(|| PoolRegistry::default()); #[derive(Default)] pub struct PoolRegistry { pools: Mutex>>>, } #[repr(C)] pub struct InitializedPool { functions: ExternalFunctions, write: Connection, reads: *const Connection, read_count: usize, prepared_statement_cache_size: usize, } pub type PoolInitializer = extern "C" fn() -> Option>; impl PoolRegistry { fn lookup_internal(&self, name: &str, initialize: PoolInitializer) -> Option { let mut pools = self.pools.lock().unwrap(); if let Some(pool) = pools.get(name) { if let Some(pool) = Weak::upgrade(pool) { return Some(pool); } }; // The pool doesn't exist, obtain connections from Dart callback. let Some(initialized) = initialize() else { // Initialization failed, don't insert a pool. return None; }; let initialized = unsafe { // The returned pointer is valid until this function returns. initialized.as_ref() }; let state = PoolState::new( initialized.functions, initialized.write, unsafe { slice::from_raw_parts(initialized.reads, initialized.read_count) }, initialized.prepared_statement_cache_size, ); let pool = ConnectionPool::new(Mutex::new(state)); PoolState::register_hooks_on_writer(&pool); pools.insert(name.to_string(), Arc::downgrade(&pool)); Some(pool) } pub fn lookup(name: &str, initialize: PoolInitializer) -> Option { REGISTRY.lookup_internal(name, initialize) } } ================================================ FILE: sqlite3_connection_pool/src/update_hook.rs ================================================ use crate::connection::Connection; use crate::dart::{DartPort, RawDartCObject, RawDartCObjectArray, RawDartCObjectValue}; use crate::pool::ExternalFunctions; use std::collections::HashSet; use std::ffi::{c_char, c_int, c_void, CStr, CString}; use std::mem; use std::ptr::NonNull; #[derive(Default)] pub struct CollectedTableUpdates { /// Tables that have been updated in the current transaction (that hasn't been committed yet). uncommitted_updates: HashSet, /// Tables that have been updated and committed but for which Dart clients have not been /// notified yet. /// /// We can't notify Dart clients directly in a commit hook because the notification then runs /// concurrently to the rest of the commit. So we might issue reads before the transaction is /// fully committed, causing stale data to get returned. outstanding_notification: HashSet, } impl CollectedTableUpdates { pub fn attach_to( ptr: *mut CollectedTableUpdates, functions: &ExternalFunctions, connection: Connection, ) { extern "C" fn update_hook( context: NonNull, _write_kind: c_int, _database: *const c_char, table: *const c_char, _rowid: i64, ) { let table = unsafe { CStr::from_ptr(table) }; let context = unsafe { context.cast::().as_mut() }; context.handle_update(table) } extern "C" fn rollback_hook(context: NonNull) { let context = unsafe { context.cast::().as_mut() }; context.handle_rollback() } extern "C" fn commit_hook(context: NonNull) -> c_int { let context = unsafe { context.cast::().as_mut() }; context.handle_commit(); // Returning zero makes the COMMIT operation continue normally. 0 } (functions.sqlite3_update_hook)(connection, Some(update_hook), ptr.cast()); (functions.sqlite3_commit_hook)(connection, Some(commit_hook), ptr.cast()); (functions.sqlite3_rollback_hook)(connection, Some(rollback_hook), ptr.cast()); } fn handle_update(&mut self, table: &CStr) { if !self.outstanding_notification.contains(table) && !self.uncommitted_updates.contains(table) { self.uncommitted_updates.insert(table.to_owned()); } } fn handle_commit(&mut self) { for update in mem::take(&mut self.uncommitted_updates) { self.outstanding_notification.insert(update); } } fn handle_rollback(&mut self) { self.uncommitted_updates.clear() } pub fn send_notification(&mut self, listeners: &[DartPort], functions: &ExternalFunctions) { let updates = mem::take(&mut self.outstanding_notification); if updates.is_empty() { return; } if listeners.is_empty() { return; } let mut dart_strings: Vec = Vec::with_capacity(updates.len()); for update in &updates { dart_strings.push(RawDartCObject { type_: RawDartCObject::TYPE_STRING, value: RawDartCObjectValue { as_string: update.as_c_str().as_ptr(), }, }); } let mut dart_string_references: Vec<*mut RawDartCObject> = dart_strings .iter() .map(|d| d as *const _ as *mut _) .collect(); // Create Dart list of strings. let mut dart_msg = RawDartCObject { type_: RawDartCObject::TYPE_ARRAY, value: RawDartCObjectValue { as_array: RawDartCObjectArray { length: dart_string_references.len() as isize, values: dart_string_references.as_mut_ptr(), }, }, }; // Send to registered update ports. for listener in listeners { (functions.dart_post_c_object)(*listener, &mut dart_msg); } } } ================================================ FILE: sqlite3_connection_pool/test/pool_test.dart ================================================ import 'dart:async'; import 'dart:isolate'; import 'package:async/async.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart'; import 'package:path/path.dart' as p; import 'package:test/test.dart'; import 'package:test_descriptor/test_descriptor.dart'; void main() { SqliteConnectionPool testPool({ int readConnections = 5, int preparedStatementCacheSize = 0, }) { final pool = createPool( directory: sandbox, readConnections: readConnections, preparedStatementCacheSize: preparedStatementCacheSize, ); addTearDown(pool.close); return pool; } test('opening pools is synchronized', () async { const numIsolates = 10_000; final receiveControl = ReceivePort(); var countOpened = 0; final allOpened = Completer(); final closePorts = []; receiveControl.listen((message) { final (didOpen, receiveClose) = message as (bool, SendPort); if (didOpen) { countOpened++; } closePorts.add(receiveClose); if (closePorts.length == numIsolates) { allOpened.complete(); } }); // Spawn 10k isolates attempting to open the same pool. for (var i = 0; i < numIsolates; i++) { final notify = receiveControl.sendPort; _startIsolateForOpenTest(notify); } await allOpened.future; expect(countOpened, 1); for (final port in closePorts) { port.send(null); } receiveControl.close(); }); test('can open pool asynchronously', () async { final path = p.join(sandbox, 'test.db'); final pool = await SqliteConnectionPool.openAsync( name: path, openConnections: poolConnectionOpener(path, 5, 0), ); addTearDown(pool.close); await pool.execute('CREATE TABLE foo (bar TEXT) STRICT;'); expect(await pool.readQuery('SELECT * FROM foo'), isEmpty); }); test('can catch exceptions from async opening', () async { final path = p.join(sandbox, 'test.db'); expectLater( SqliteConnectionPool.openAsync( name: path, openConnections: () => throw 'exception', ), throwsA('exception'), ); }); test('simple queries', () async { final pool = testPool(); await pool.execute('CREATE TABLE foo (bar TEXT) STRICT;'); expect(await pool.readQuery('SELECT * FROM foo'), isEmpty); await pool.execute('INSERT INTO foo DEFAULT VALUES;'); expect(await pool.readQuery('SELECT * FROM foo'), hasLength(1)); }); test('does not allow concurrent writers', () async { final pool = testPool(); final futures = >[]; var writers = 0; for (var i = 0; i < 10_000; i++) { futures.add( Future(() async { final writer = await pool.writer(); expect(writers += 1, 1); await pumpEventQueue(times: 5); expect(writers -= 1, 0); writer.returnLease(); }), ); } await Future.wait(futures); }); test('allows concurrent readers', () async { final pool = testPool(); { final exclusive = await pool.exclusiveAccess(); await exclusive.writer.execute('CREATE TEMPORARY TABLE conn(id);'); await exclusive.writer.execute('INSERT INTO conn VALUES (?)', ['writer']); for (final (i, reader) in exclusive.readers.indexed) { await reader.execute('CREATE TEMPORARY TABLE conn(id);'); await reader.execute('INSERT INTO conn VALUES (?)', ['reader-$i']); } exclusive.close(); } final futures = >[]; final connectionDistribution = {}; for (var i = 0; i < 10_000; i++) { futures.add( Future(() async { final results = await pool.readQuery('SELECT id FROM conn'); final id = results.single.columnAt(0) as String; connectionDistribution[id] = (connectionDistribution[id] ?? 0) + 1; }), ); } await Future.wait(futures); expect(connectionDistribution['writer'], isNull); // Connections should be distributed somewhat evenly. expect(connectionDistribution.values.fold(0, (a, b) => a + b), 10_000); for (final amount in connectionDistribution.values) { expect(amount, lessThan(4000)); } }); test('cannot use after closing', () async { final pool = testPool(); pool.close(); expect(() => pool.writer(), throwsStateError); expect(() => pool.reader(), throwsStateError); }); test('autocommit', () async { final pool = testPool(); final db = await pool.writer(); expect(await db.autocommit, isTrue); await db.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY);'); await db.execute('BEGIN'); expect(await db.autocommit, isFalse); expect( (await db.execute('INSERT INTO foo DEFAULT VALUES;')).autoCommit, isFalse, ); await expectLater( () => db.execute('INSERT OR ROLLBACK INTO foo VALUES (1);'), throwsA(isA()), ); expect(await db.autocommit, isTrue); db.returnLease(); }); group('updates stream', () { test('emits updates', () async { final pool = testPool(); final updates = StreamQueue(pool.updatedTables); await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)'); await pool.execute('INSERT INTO foo DEFAULT VALUES;'); await expectLater(updates, emits(['foo'])); }); test('emits updates for isolate write', () async { final pool = testPool(); final updates = StreamQueue(pool.updatedTables); await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)'); final name = pool.name; await Isolate.run(() async { final pool = SqliteConnectionPool.open( name: name, openConnections: () => throw StateError('should already be open'), ); await pool.execute('INSERT INTO foo DEFAULT VALUES;'); }); await expectLater(updates, emits(['foo'])); }); test('does not emit update after rollback', () async { final pool = testPool(); final updates = StreamQueue(pool.updatedTables); await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)'); await pool.execute('CREATE TABLE bar (id INTEGER NOT NULL PRIMARY KEY)'); await pool.execute('BEGIN; INSERT INTO foo DEFAULT VALUES; ROLLBACK;'); await pool.execute('INSERT INTO bar DEFAULT VALUES;'); await expectLater(updates, emits(['bar'])); }); test('waits for returned connection before emitting', () async { final pool = testPool(); await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)'); var hadEvent = false; final event = pool.updatedTables.first.whenComplete( () => hadEvent = true, ); final writer = await pool.writer(); await writer.execute('INSERT INTO foo DEFAULT VALUES'); expect(hadEvent, isFalse); await pumpEventQueue(); expect(hadEvent, isFalse); writer.returnLease(); await event; expect(hadEvent, isTrue); }); test('can manually emit during write', () async { final pool = testPool(); await pool.execute('CREATE TABLE foo (id INTEGER NOT NULL PRIMARY KEY)'); final events = StreamQueue(pool.updatedTables); final writer = await pool.writer(); final firstEvent = events.next; await writer.execute('INSERT INTO foo DEFAULT VALUES'); await writer.notifyUpdates(); await firstEvent; final nextEvent = events.next; await writer.execute('INSERT INTO foo DEFAULT VALUES'); writer.returnLease(); await nextEvent; }); }); test('prepared statement cache', () async { final pool = testPool(preparedStatementCacheSize: 16); final writer = await pool.writer(); for (var i = 0; i < 16; i++) { await writer.select('SELECT $i'); } await writer.unsafeAccess((connection) { for (var i = 0; i < 16; i++) { final statement = connection.lookupCachedStatement('SELECT $i'); expect(statement, isNotNull, reason: 'Should lookup $i'); expect(statement!.select(), [ {'$i': i}, ]); } }); // Prepare more statements replacing existing ones. for (var i = 0; i < 16; i++) { await writer.select('SELECT $i AS another'); } await writer.unsafeAccess((connection) { for (var i = 0; i < 16; i++) { expect(connection.lookupCachedStatement('SELECT $i'), isNull); } }); writer.returnLease(); }); group('aborting request', () { test('writer abort', () async { final pool = testPool(); final firstWriteDone = Completer(); pool.writer().then((writer) async { await firstWriteDone.future; writer.returnLease(); }); final shouldThrow = pool.writer(abortSignal: Future.value()); var secondLockGranted = false; pool.writer().then((writer) { secondLockGranted = true; writer.returnLease(); }); await expectLater(shouldThrow, throwsA(isA())); await pumpEventQueue(); expect(secondLockGranted, false); firstWriteDone.complete(); await pumpEventQueue(); expect(secondLockGranted, true); }); test('reader abort', () async { final pool = testPool(readConnections: 1); final firstReadDone = Completer(); pool.reader().then((reader) async { await firstReadDone.future; reader.returnLease(); }); final shouldThrow = pool.reader(abortSignal: Future.value()); var secondReadGranted = false; pool.reader().then((reader) { secondReadGranted = true; reader.returnLease(); }); await expectLater(shouldThrow, throwsA(isA())); // Aborting the request should not grant the subsequent waiter the mutex. await pumpEventQueue(); expect(secondReadGranted, false); firstReadDone.complete(); await pumpEventQueue(); expect(secondReadGranted, true); }); }); group('rolls back transactions', () { Future leaveInTransaction( SqliteConnectionPool pool, { required bool write, }) async { final port = ReceivePort(); final name = pool.name; Isolate.spawn((SendPort port) async { final pool = SqliteConnectionPool.open( name: name, openConnections: () => throw 'already open', ); final connection = await (write ? pool.writer() : pool.reader()); connection.unsafeAccess((conn) { conn.database.execute('BEGIN'); if (write) { conn.database.execute('INSERT INTO users VALUES (?)', ['exit']); } }); // the connection is in a transaction at this point. Let's say we don't // have a chance to commit. Isolate.exit(port, 'done'); }, port.sendPort); await port.first; } test('write connection', () async { final pool = testPool(); await pool.execute('CREATE TABLE users (name TEXT);'); await leaveInTransaction(pool, write: true); // Even though the connection was left in a transaction, it should be // rolled back once we receive it. final conn = await pool.writer(); expect(conn.unsafeRawConnection.database.autocommit, isTrue); expect((await conn.select('SELECT * FROM users')).$1, isEmpty); conn.returnLease(); }); test('read connection', () async { final pool = testPool(readConnections: 1); await leaveInTransaction(pool, write: false); final conn = await pool.reader(); expect(conn.unsafeRawConnection.database.autocommit, isTrue); conn.returnLease(); }); test('exclusive access', () async { final pool = testPool(readConnections: 1); await leaveInTransaction(pool, write: true); await leaveInTransaction(pool, write: false); final exclusive = await pool.exclusiveAccess(); expect(exclusive.writer.unsafeRawConnection.database.autocommit, isTrue); for (final reader in exclusive.readers) { expect(reader.unsafeRawConnection.database.autocommit, isTrue); } exclusive.close(); }); }); group('cannot use database after returning lease', () { test('read', () async { final pool = testPool(); final reader = await pool.reader(); reader.returnLease(); expect(reader.select('SELECT 1'), throwsStateError); expect( () => reader.unsafeRawConnection.database.select('SELECT 1'), throwsStateError, ); }); test('write', () async { final pool = testPool(); final writer = await pool.writer(); writer.returnLease(); await pumpEventQueue(times: 1); expect(writer.select('SELECT 1'), throwsStateError); expect( () => writer.unsafeRawConnection.database.select('SELECT 1'), throwsStateError, ); }); test('exclusive', () async { final pool = testPool(); final exclusive = await pool.exclusiveAccess(); exclusive.close(); expect(exclusive.writer.select('SELECT 1'), throwsStateError); for (final reader in exclusive.readers) { expect(reader.select('SELECT 1'), throwsStateError); } }); }); } SqliteConnectionPool createPool({ required String directory, int readConnections = 5, int preparedStatementCacheSize = 0, }) { return SqliteConnectionPool.open( name: directory, openConnections: poolConnectionOpener( p.join(directory, 'test.db'), readConnections, preparedStatementCacheSize, ), ); } PoolConnections Function() poolConnectionOpener( String path, int readConnections, int preparedStatementCacheSize, ) { Database openDatabase() { return sqlite3.open(path)..execute('pragma journal_mode = wal;'); } return () => PoolConnections(openDatabase(), [ for (var i = 0; i < readConnections; i++) openDatabase(), ], preparedStatementCacheSize: preparedStatementCacheSize); } void _startIsolateForOpenTest(SendPort notify) { Isolate.run(() async { var didOpenConnections = false; final receiveCloseInstruction = ReceivePort(); final pool = SqliteConnectionPool.open( name: 'pool', openConnections: () { didOpenConnections = true; return PoolConnections(sqlite3.openInMemory(), []); }, ); notify.send((didOpenConnections, receiveCloseInstruction.sendPort)); await receiveCloseInstruction.first; pool.close(); }); } ================================================ FILE: sqlite3_connection_pool/tool/build_apple.sh ================================================ #!/bin/sh set -e function compile() { local triple=$1 RUSTFLAGS="-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort" cargo +nightly build \ --release \ -Z build-std=std,panic_abort \ -Z build-std-features= \ --target $triple } compile aarch64-apple-darwin compile x86_64-apple-darwin compile aarch64-apple-ios compile aarch64-apple-ios-sim compile x86_64-apple-ios ================================================ FILE: sqlite3_connection_pool/tool/build_linux.sh ================================================ #!/bin/bash set -e function compile() { local triple=$1 RUSTFLAGS="-Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort" cargo +nightly build \ --release \ -Z build-std=std,panic_abort \ -Z build-std-features= \ --target $triple } compile x86_64-unknown-linux-gnu compile aarch64-unknown-linux-gnu compile armv7-unknown-linux-gnueabihf compile riscv64gc-unknown-linux-gnu ================================================ FILE: sqlite3_connection_pool/tool/build_linux_sanitizer.sh ================================================ #!/bin/bash set -e function compile() { local sanitizer=$1 RUSTDOCFLAGS="-Zsanitizer=$sanitizer" RUSTFLAGS="-Zsanitizer=$sanitizer -Zlocation-detail=none -Zfmt-debug=none -Zunstable-options -Cpanic=immediate-abort" cargo +nightly build \ --release \ -Z build-std=std,panic_abort \ -Z build-std-features= \ --target x86_64-unknown-linux-gnu cp target/x86_64-unknown-linux-gnu/release/libsqlite3_connection_pool.so ../sqlite-sanitized/libsqlite3_connection_pool.$sanitizer.san.so } compile address compile memory compile thread ================================================ FILE: sqlite3_connection_pool/tool/generate_bindings.dart ================================================ import 'package:ffigen/ffigen.dart'; import 'package:logging/logging.dart'; void main() { Logger.root.onRecord.listen(print); final generator = FfiGenerator( output: Output( dartFile: Uri.parse('lib/src/ffi.g.dart'), preamble: '// ignore_for_file: type=lint', style: NativeExternalBindings( assetId: 'package:sqlite3_connection_pool/sqlite3_connection_pool.dart', ), ), headers: Headers(entryPoints: [Uri.parse('src/headers.h')]), functions: Functions( include: (d) => d.originalName.startsWith('pkg_sqlite3_connection_pool'), // The obtain functions post completions to a port and don't obtain any // locks, so we can mark them as isLeaf. isLeaf: (d) => d.originalName.contains('obtain') || d.originalName.contains('stmt_cache'), // Close functions are used for native finalizers includeSymbolAddress: (d) => d.originalName.contains('close'), ), structs: Structs( include: Declarations.includeSet(const { 'InitializedPool', 'PoolConnection', }), ), ); generator.generate(); } ================================================ FILE: sqlite3_test/.gitignore ================================================ # https://dart.dev/guides/libraries/private-files # Created by `dart pub` .dart_tool/ # Avoid committing pubspec.lock for library packages; see # https://dart.dev/guides/libraries/private-files#pubspeclock. pubspec.lock ================================================ FILE: sqlite3_test/CHANGELOG.md ================================================ ## 0.2.0 - Use version 3.x of `package:sqlite3`. ## 0.1.1 - Fix writes on Windows. ## 0.1.0 - Initial version. ================================================ FILE: sqlite3_test/LICENSE ================================================ MIT License Copyright (c) 2024 Simon Binder 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: sqlite3_test/README.md ================================================ This package provides utilities for accessing SQLite databases in Dart tests. ## Features Given that SQLite has no external dependencies and runs in the process of your app, it can easily be used in unit tests (avoiding the hassle of writing mocks for your database and repositories). However, being a C library, SQLite is unaware of other Dart utilities typically used in tests (like a fake time with `package:clock` or a custom file system based on `package:file`). When your database queries depend on `CURRENT_TIMESTAMP`, this makes it hard to reliably test them as `clock.now()` and `CURRENT_TIMESTAMP` would report different values. As a solution, this small package makes SQLite easier to integrate into your tests by providing a [VFS](https://sqlite.org/vfs.html) that will: 1. Make `CURRENT_TIME`, `CURRENT_DATE` and `CURRENT_TIMESTAMP` reflect the time returned by `package:clock`. 2. For IO operations, allow providing a `FileSystem` from `package:file`. This includes custom implementations and the default one respecting `IOOverrides`. ## Usage This package is intended to be used in tests, so begin by adding a dev dependency on it: ``` $ dart pub add --dev sqlite3_test ``` You can then use it in tests by creating an instance of `TestSqliteFileSystem` for your databases: ```dart import 'package:fake_async/fake_async.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3_test/sqlite3_test.dart'; import 'package:file/local.dart'; import 'package:test/test.dart'; void main() { late TestSqliteFileSystem vfs; setUpAll(() { vfs = TestSqliteFileSystem(fs: const LocalFileSystem()); sqlite3.registerVirtualFileSystem(vfs); }); tearDownAll(() => sqlite3.unregisterVirtualFileSystem(vfs)); test('my test depending on database time', () { final database = sqlite3.openInMemory(vfs: vfs.name); addTearDown(database.dispose); // The VFS uses package:clock to get the current time, which can be // overridden for tests: final moonLanding = DateTime.utc(1969, 7, 20, 20, 18, 04); FakeAsync(initialTime: moonLanding).run((_) { final row = database.select('SELECT unixepoch(current_timestamp)').first; expect(row.columnAt(0), -14182916); }); }); } ``` ## Limitations The layer of indirection through Dart will likely make your databases slower. For this reason, this package is intended to be used in tests (as the overhead is not a problem there). Also, note that `TestSqliteFileSystem` cannot be used with WAL databases as the file system does not implement memory-mapped IO. ================================================ FILE: sqlite3_test/analysis_options.yaml ================================================ include: package:lints/recommended.yaml ================================================ FILE: sqlite3_test/example/sqlite3_test_example.dart ================================================ import 'package:fake_async/fake_async.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3_test/sqlite3_test.dart'; import 'package:file/local.dart'; import 'package:test/test.dart'; void main() { late TestSqliteFileSystem vfs; setUpAll(() { vfs = TestSqliteFileSystem(fs: const LocalFileSystem()); sqlite3.registerVirtualFileSystem(vfs); }); tearDownAll(() => sqlite3.unregisterVirtualFileSystem(vfs)); test('my test depending on database time', () { final database = sqlite3.openInMemory(vfs: vfs.name); addTearDown(database.close); // The VFS uses package:clock to get the current time, which can be // overridden for tests: final moonLanding = DateTime.utc(1969, 7, 20, 20, 18, 04); FakeAsync(initialTime: moonLanding).run((_) { final row = database.select('SELECT unixepoch(current_timestamp)').first; expect(row.columnAt(0), -14182916); }); }); } ================================================ FILE: sqlite3_test/lib/sqlite3_test.dart ================================================ /// Provides a virtual filesystem implementation for SQLite based on the `file` /// and `clock` packages. /// /// This makes it easier to use SQLite in tests, as SQL constructs like /// `CURRENT_TIMESTAMP` will reflect the fake time of `package:clock`, allowing /// SQL logic relying on time to be tested reliably. Additionally, using /// `dart:clock` allows testing the IO behavior of SQLite databases if /// necessary. library; import 'dart:typed_data'; import 'package:clock/clock.dart'; import 'package:file/file.dart'; import 'package:sqlite3/common.dart'; final class TestSqliteFileSystem extends BaseVirtualFileSystem { static int _counter = 0; final FileSystem _fs; Directory? _createdTmp; int _tmpFileCounter = 0; TestSqliteFileSystem({required FileSystem fs, String? name}) : _fs = fs, super(name: name ?? 'dart-test-vfs-${_counter++}'); Directory get _tempDirectory { return _createdTmp ??= _fs.systemTempDirectory.createTempSync( 'dart-sqlite3-test', ); } @override int xAccess(String path, int flags) { switch (flags) { case 0: // Exists return _fs.typeSync(path) == FileSystemEntityType.file ? 1 : 0; default: // Check readable and writable try { final file = _fs.file(path); file.openSync(mode: FileMode.write).closeSync(); return 1; } on IOException { return 0; } } } @override DateTime xCurrentTime() { return clock.now(); } @override void xDelete(String path, int syncDir) { _fs.file(path).deleteSync(); } @override String xFullPathName(String path) { return _fs.path.absolute(path); } @override XOpenResult xOpen(Sqlite3Filename path, int flags) { final fsPath = path.path ?? _tempDirectory.childFile((_tmpFileCounter++).toString()).absolute.path; final type = _fs.typeSync(fsPath); if (type != FileSystemEntityType.notFound && type != FileSystemEntityType.file) { throw VfsException(ErrorCodes.EINVAL); } if (flags & SqlFlag.SQLITE_OPEN_EXCLUSIVE != 0 && type != FileSystemEntityType.notFound) { throw VfsException(ErrorCodes.EEXIST); } if (flags & SqlFlag.SQLITE_OPEN_CREATE != 0 && type == FileSystemEntityType.notFound) { _fs.file(fsPath).createSync(); } final deleteOnClose = flags & SqlFlag.SQLITE_OPEN_DELETEONCLOSE != 0; final readonly = flags & SqlFlag.SQLITE_OPEN_READONLY != 0; final vsFile = _fs.file(fsPath); final file = vsFile.openSync( mode: readonly ? FileMode.read : FileMode.write, ); return ( file: _TestFile(vsFile, file, deleteOnClose), outFlags: readonly ? SqlFlag.SQLITE_OPEN_READONLY : 0, ); } @override void xSleep(Duration duration) {} } final class _TestFile implements VirtualFileSystemFile { final File _path; final RandomAccessFile _file; final bool _deleteOnClose; int _lockLevel = SqlFileLockingLevels.SQLITE_LOCK_NONE; _TestFile(this._path, this._file, this._deleteOnClose); @override void xClose() { _file.closeSync(); if (_deleteOnClose) { _path.deleteSync(); } } @override int get xDeviceCharacteristics => 0; @override int xFileSize() => _file.lengthSync(); @override void xRead(Uint8List target, int fileOffset) { _file.setPositionSync(fileOffset); final bytesRead = _file.readIntoSync(target); if (bytesRead < target.length) { target.fillRange(bytesRead, target.length, 0); throw VfsException(SqlExtendedError.SQLITE_IOERR_SHORT_READ); } } @override void xSync(int flags) { _file.flushSync(); } @override void xTruncate(int size) { _file.truncateSync(size); } @override void xWrite(Uint8List buffer, int fileOffset) { _file ..setPositionSync(fileOffset) ..writeFromSync(buffer); } @override int xCheckReservedLock() { // RandomAccessFile doesn't appear to expose information on whether another // process is holding locks. return _lockLevel > SqlFileLockingLevels.SQLITE_LOCK_NONE ? 1 : 0; } @override void xLock(int mode) { if (_lockLevel >= mode) { return; } if (_lockLevel != SqlFileLockingLevels.SQLITE_LOCK_NONE) { // We want to upgrade our lock, which we do by releasing it and then // re-obtaining it. _file.unlockSync(); _lockLevel = SqlFileLockingLevels.SQLITE_LOCK_NONE; } final exclusive = mode > SqlFileLockingLevels.SQLITE_LOCK_SHARED; _file.lockSync( exclusive ? FileLock.blockingExclusive : FileLock.blockingShared, ); _lockLevel = mode; } @override void xUnlock(int mode) { if (_lockLevel < mode) { return; } _file.unlockSync(); _lockLevel = SqlFileLockingLevels.SQLITE_LOCK_NONE; if (mode != SqlFileLockingLevels.SQLITE_LOCK_NONE) { return xLock(mode); } } } ================================================ FILE: sqlite3_test/pubspec.yaml ================================================ name: sqlite3_test description: Integration of fake clocks and other test utilities for SQLite databases. version: 0.2.0 homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_test repository: https://github.com/simolus3/sqlite3.dart resolution: workspace topics: - database - sqlite environment: # We want >=3.10, but Flutter 3.38 somehow ships with a beta Dart SDK that rejects >=3.10 deps. sdk: '>=3.9.999 <4.0.0' dependencies: clock: ^1.1.2 file: ^7.0.1 sqlite3: ^3.0.0 dev_dependencies: fake_async: ^1.3.2 lints: ^6.0.0 test: ^1.24.0 test_descriptor: ^2.0.1 ================================================ FILE: sqlite3_test/test/sqlite3_test_test.dart ================================================ import 'dart:convert'; import 'dart:io'; import 'package:fake_async/fake_async.dart'; import 'package:sqlite3/sqlite3.dart'; import 'package:sqlite3_test/sqlite3_test.dart'; import 'package:test/test.dart'; import 'package:test_descriptor/test_descriptor.dart' as d; import 'package:file/local.dart'; void main() { late TestSqliteFileSystem vfs; setUp(() { vfs = TestSqliteFileSystem(fs: const LocalFileSystem()); sqlite3.registerVirtualFileSystem(vfs, makeDefault: false); }); tearDown(() => sqlite3.unregisterVirtualFileSystem(vfs)); Database withDatabase(Database db) { addTearDown(db.close); return db; } Database inMemory() => withDatabase(sqlite3.openInMemory(vfs: vfs.name)); Database onDisk(String path) => withDatabase(sqlite3.open(path, vfs: vfs.name)); test('reports fake time', () { final moonLanding = DateTime.utc(1969, 7, 20, 20, 18, 04); FakeAsync(initialTime: moonLanding).run((async) { final db = inMemory(); expect(db.select('SELECT current_time AS r'), [ {'r': '20:18:04'}, ]); expect(db.select('SELECT current_date AS r'), [ {'r': '1969-07-20'}, ]); expect(db.select('SELECT current_timestamp AS r'), [ {'r': '1969-07-20 20:18:04'}, ]); }); }); test('use fake cwd from io overrides', () async { await d.dir('foo').create(); final cwd = Directory(d.path('foo')); IOOverrides.runZoned(() { final db = onDisk('test.db'); db.execute('CREATE TABLE foo (bar);'); }, getCurrentDirectory: () => cwd); await d.dir('foo', [ d.FileDescriptor.binaryMatcher( 'test.db', predicate((bytes) { final firstBytes = (bytes as List).sublist(0, 15); return utf8.decode(firstBytes) == 'SQLite format 3'; }, 'starts with sqlite header'), ), ]).validate(); }); } ================================================ FILE: sqlite3_wasm_build/README.md ================================================ ### Compiling Note: Compiling sqlite3 to WebAssembly is not necessary for users of this package, just grab the `.wasm` from the latest release on GitHub. This section describes how to compile the WebAssembly modules from source. This uses a LLVM-based toolchain with components of the WASI SDK for C runtime components. #### Setup ##### Linux On Linux, you need a LLVM based toolchain capable of compiling to WebAssembly. On Arch Linux, the `wasi-compiler-rt` and `wasi-libc` packages are enough for this. On other distros, you may have to download the sysroot and compiler builtins from their respective package managers or directly from the WASI SDK releases. With wasi in `/usr/share/wasi-sysroot` and the default clang compiler having the required builtins, you can setup the build with: ``` cmake -S src -B .dart_tool/sqlite3_build ``` ##### macOS On macOS, install a WebAssembly-capable C compiler. If you're using Homebrew, you can use ``` brew install cmake llvm binaryen wasi-libc wasi-runtimes ``` Then, set up the build with ``` cmake -Dwasi_sysroot=/opt/homebrew/share/wasi-sysroot -Dclang=/opt/homebrew/opt/llvm/bin/clang -S src -B .dart_tool/sqlite3_build ``` #### Building In this directory, run: ``` cmake --build .dart_tool/sqlite3_build/ -t output -j ``` The `output` target copies `sqlite3.wasm` and `sqlite3.debug.wasm` to `out/`. (Of course, you can also run the build in any other directory than `.dart_tool/sqite3_build` if you want to). ### Customizing the WASM module The build scripts in this repository, which are also used for the default distribution of `sqlite3.wasm` attached to releases, are designed to mirror the options used by `sqlite3_flutter_libs`. If you want to use different options, or include custom extensions in the WASM module, you can customize the build setup. To use regular sqlite3 sources with different compile-time options, alter `assets/wasm/sqlite_cfg.h` and re-run the build as described in [compiling](#compiling). Including additional extensions written in C is possible by adapting the `CMakeLists.txt` in `assets/wasm`. A simple example demonstrating how to include Rust-based extensions is included in `example/custom_wasm_build`. The readme in that directory explains the build process in detail, but you still need the WASI/Clang toolchains described in the [setup section](#linux). ================================================ FILE: sqlite3_wasm_build/pubspec.yaml ================================================ name: sqlite3_wasm_build description: Buildscripts for sqlite3.wasm environment: sdk: '>=3.10.0-0 <4.0.0' topics: - sql - database - ffi - sqlite dev_dependencies: ================================================ FILE: sqlite3_wasm_build/src/CMakeLists.txt ================================================ cmake_minimum_required(VERSION 3.24) set(PROJECT_NAME "sqlite3_web") project(${PROJECT_NAME} LANGUAGES C) set(triple wasm32-unknown-wasi) set(wasi_sysroot "/usr/share/wasi-sysroot" CACHE PATH "Path to wasi sysroot") set(clang "clang" CACHE FILEPATH "Path to wasm-capable clang executable") include(FetchContent) FetchContent_Declare( sqlite3 # NOTE: When changing this, also update `test/wasm/sqlite3_test.dart` URL https://sqlite.org/2026/sqlite-autoconf-3530000.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP NEW ) FetchContent_Declare( sqlite3mc URL https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.3.3/sqlite3mc-2.3.3-sqlite-3.53.0-amalgamation.zip DOWNLOAD_EXTRACT_TIMESTAMP NEW ) FetchContent_MakeAvailable(sqlite3) FetchContent_MakeAvailable(sqlite3mc) # Generate symbols we need to export from the sqlite3.wasm build add_custom_command( OUTPUT required_symbols.txt WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../ COMMAND dart run ${CMAKE_CURRENT_SOURCE_DIR}/../tool/wasm_symbols.dart ${CMAKE_CURRENT_BINARY_DIR}/required_symbols.txt DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/../tool/wasm_symbols.dart VERBATIM ) add_custom_target(required_symbols DEPENDS required_symbols.txt) macro(base_sqlite3_target name debug crypto) set(clang_output ${name}.clang.wasm) set(output ${clang_output}) set(sources ${CMAKE_CURRENT_SOURCE_DIR}/os_web.c ${CMAKE_CURRENT_SOURCE_DIR}/helpers.c ${CMAKE_CURRENT_SOURCE_DIR}/external_objects.c ) set(flags -Wall -Wextra -Wno-unused-parameter -Wno-unused-function) if(${crypto}) list(APPEND sources "${sqlite3mc_SOURCE_DIR}/sqlite3mc_amalgamation.c") list(APPEND sources "${CMAKE_CURRENT_SOURCE_DIR}/getentropy.c") # We only want to support the chacha20 cipher, some of the others are tricky to # compile to webassembly. list(APPEND flags "-DHAVE_CIPHER_AES_128_CBC=0" "-DHAVE_CIPHER_AES_256_CBC=0" "-DHAVE_CIPHER_SQLCIPHER=0" "-DHAVE_CIPHER_RC4=0" "-DHAVE_CIPHER_ASCON128=0" "-DHAVE_CIPHER_AEGIS=0" "-DHAVE_CIPHER_CHACHA20=1" ) else() list(APPEND sources "${sqlite3_SOURCE_DIR}/sqlite3.c") endif() if(${debug}) list(APPEND flags "-g" "-DDEBUG") else() list(APPEND flags "-Oz" "-DNDEBUG" "-flto") endif() add_custom_command( OUTPUT ${clang_output} COMMAND ${clang} --target=${triple} -std=c23 ${flags} -o ${clang_output} -I ${PROJECT_SOURCE_DIR} -I ${sqlite3_SOURCE_DIR} -DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_PREUPDATE_HOOK -D_HAVE_SQLITE_CONFIG_H -D__WASM__ -mcpu=generic -mexec-model=reactor -fno-stack-protector -fno-stack-clash-protection --sysroot ${wasi_sysroot} ${sources} @${CMAKE_CURRENT_BINARY_DIR}/required_symbols.txt DEPENDS ${sources} required_symbols VERBATIM ) if(NOT ${debug}) set(init_output ${name}.init.wasm) set(output ${name}.wasm) add_custom_command( OUTPUT ${init_output} COMMAND wasm-ctor-eval -c _initialize ${clang_output} -o ${init_output} VERBATIM DEPENDS ${clang_output} ) add_custom_command( OUTPUT ${output} COMMAND wasm-opt --strip --strip-producers -c -O4 ${init_output} -o ${output} VERBATIM DEPENDS ${init_output} ) endif() add_custom_target(${name} DEPENDS ${output}) endmacro() base_sqlite3_target(sqlite3_debug true false) base_sqlite3_target(sqlite3_opt false false) base_sqlite3_target(sqlite3mc false true) add_custom_target(output) add_custom_command(TARGET output COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/sqlite3_opt.wasm ${PROJECT_SOURCE_DIR}/../out/sqlite3.wasm) add_custom_command(TARGET output COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/sqlite3_debug.clang.wasm ${PROJECT_SOURCE_DIR}/../out/sqlite3.debug.wasm) add_custom_command(TARGET output COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/sqlite3mc.wasm ${PROJECT_SOURCE_DIR}/../out/sqlite3mc.wasm) add_dependencies(output sqlite3_debug sqlite3_opt sqlite3mc) add_dependencies(output sqlite3_debug) ================================================ FILE: sqlite3_wasm_build/src/bridge.h ================================================ #include #include #include #include "sqlite3.h" #define import_dart(name) \ __attribute__((import_module("dart"), import_name(name))) // Defines functions implemented in Dart. These functions are imported into // the wasm module. // Static import_dart("error_log") extern void dartLogError(const char* msg); import_dart("localtime") extern int dartLocalTime(int64_t time, struct tm* result); // Methods on VirtualFileSystem import_dart("xOpen") extern __externref_t xOpen(__externref_t vfs, sqlite3_filename zName, int* rcPtr, int flags, int* pOutFlags); import_dart("xDelete") extern int xDelete(__externref_t vfs, const char* zName, int syncDir); import_dart("xAccess") extern int xAccess(__externref_t vfs, const char* zName, int flags, int* pResOut); import_dart("xFullPathname") extern int xFullPathname(__externref_t vfs, const char* zName, int nOut, char* zOut); import_dart("xRandomness") extern int xRandomness(__externref_t vfs, int nByte, char* zOut); import_dart("xSleep") extern int xSleep(__externref_t vfs, int microseconds); import_dart("xCurrentTimeInt64") extern int xCurrentTimeInt64(__externref_t vfs, int64_t* target); // Methods on VirtualFileSystemFile import_dart("xClose") extern int xClose(__externref_t file); import_dart("xRead") extern int xRead(__externref_t, void*, int iAmt, sqlite3_int64 iOfst); import_dart("xWrite") extern int xWrite(__externref_t, const void*, int iAmt, sqlite3_int64 iOfst); import_dart("xTruncate") extern int xTruncate(__externref_t, sqlite3_int64 size); import_dart("xSync") extern int xSync(__externref_t, int flags); import_dart("xFileSize") extern int xFileSize(__externref_t, int* pSize); import_dart("xLock") extern int xLock(__externref_t, int); import_dart("xUnlock") extern int xUnlock(__externref_t, int); import_dart("xCheckReservedLock") extern int xCheckReservedLock(__externref_t, int* pResOut); import_dart("xDeviceCharacteristics") extern int xDeviceCharacteristics( __externref_t); // Handles injected as externrefs, are DartExternalReference in Dart. import_dart("dispatch_()v") extern void dartDispatchReturnVoid( __externref_t handle); import_dart("dispatch_()i") extern int dartDispatchReturnInt( __externref_t handle); import_dart("dispatch_update") extern void dartDispatchUpdateHook( __externref_t handle, int kind, const char* schema, const char* table, sqlite3_int64 rowid); // Handles injected as externrefs, are // DartExternalReference in Dart. import_dart("dispatch_xFunc") extern void dispatchXFunc(__externref_t handle, sqlite3_context* ctx, int nArgs, sqlite3_value** value); import_dart("dispatch_xStep") extern void dispatchXStep(__externref_t handle, sqlite3_context* ctx, int nArgs, sqlite3_value** value); import_dart("dispatch_xInverse") extern void dispatchXInverse( __externref_t handle, sqlite3_context* ctx, int nArgs, sqlite3_value** value); import_dart("dispatch_xFinal") extern void dispatchXFinal(__externref_t handle, sqlite3_context* ctx); import_dart("dispatch_xValue") extern void dispatchXValue(__externref_t handle, sqlite3_context* ctx); import_dart("dispatch_compare") extern int dispatchXCompare( __externref_t handle, int lengthA, const void* a, int lengthB, const void* b); import_dart("dispatch_busy") extern int dispatchBusyHandler( __externref_t handle, int amount); // Methods on SessionApplyCallbacks import_dart("changeset_apply_filter") extern int dispatchApplyFilter( __externref_t callbacks, const char* zTab); import_dart("changeset_apply_conflict") extern int dispatchApplyConflict( __externref_t callbacks, int eConflict, sqlite3_changeset_iter* p); ================================================ FILE: sqlite3_wasm_build/src/external_objects.c ================================================ #include "external_objects.h" #include #include // A table of ExternalDartReference objects. When we want to call methods on // them, we pass them as a first argument to a static entrypoint function // injected when instantiating the module. static __externref_t host_objects[0]; // Note: Inlining these functions seems to cause linker errors (something about // clang attempting to take the address of host_objects). void host_table_set(size_t index, __externref_t value) { __builtin_wasm_table_set(host_objects, (int)index, value); } static __externref_t host_table_get(size_t index) { return __builtin_wasm_table_get(host_objects, (int)index); } static size_t host_table_grow(size_t delta) { return (size_t)__builtin_wasm_table_grow( host_objects, __builtin_wasm_ref_null_extern(), delta); } static size_t host_table_size() { return (size_t)__builtin_wasm_table_size(host_objects); } // A simple slab allocator to find free indices in the host objects table. typedef struct { // Index of the next available slot in the slab, or set to capacity if full. size_t first_free_slot; #if DEBUG // Always equal to host_table_size(), only used to assert that invariant in // debug builds. size_t capacity; #endif // A capacity-length array storing indexing information. // // If host_object[i] is unoccupied, freelist[i] contains the next value for // first_free_slot after allocating in that slot. This effectively forms a // linked stack of free slots. // // If host_object[i] is occuped, the value of freelist[i] is unspecified. size_t* freelist; } slab; static slab host_objects_slab = {.first_free_slot = 0, #if DEBUG .capacity = 0, #endif .freelist = nullptr}; void* host_object_insert(__externref_t ref) { #if DEBUG if (__builtin_wasm_ref_is_null_extern(ref)) { __builtin_trap(); } #endif auto slot = host_objects_slab.first_free_slot; auto old_capacity = host_table_size(); #if DEBUG if (old_capacity != host_objects_slab.capacity) { __builtin_trap(); } #endif if (slot == old_capacity) { // Table full? auto target_size = old_capacity * 2; if (target_size == 0) { // It's 0 initially, grow it to a reasonable initial size we're unlikely // to exceed. target_size = 16; } auto grow_result = host_table_grow(target_size - old_capacity); if (grow_result != old_capacity) { __builtin_trap(); } size_t* freelist = realloc(host_objects_slab.freelist, target_size * sizeof(size_t)); if (!freelist) { __builtin_trap(); } for (size_t i = old_capacity; i < target_size; i++) { freelist[i] = i + 1; } // Note: first_free_slot = old_capacity, freelist[old_capacity] = // old_capacity + 1 and so on. host_objects_slab.freelist = freelist; host_objects_slab.first_free_slot = slot + 1; #if DEBUG host_objects_slab.capacity = target_size; #endif } else { // Pop freelist. host_objects_slab.first_free_slot = host_objects_slab.freelist[slot]; } #if DEBUG // Assert that target slot is also vacant in table. if (!__builtin_wasm_ref_is_null_extern(host_table_get(slot))) { __builtin_trap(); } #endif // Persist reference into table. host_table_set(slot, ref); return (void*)slot; } __externref_t host_object_get(void* ptr) { size_t index = (size_t)ptr; return host_table_get(index); } void host_object_free(void* ptr) { size_t index = (size_t)ptr; #if DEBUG if (__builtin_wasm_ref_is_null_extern(host_table_get(index))) { __builtin_trap(); } #endif // Remove external reference from table. host_table_set(index, __builtin_wasm_ref_null_extern()); // Push index to front of freelist. host_objects_slab.freelist[index] = host_objects_slab.first_free_slot; host_objects_slab.first_free_slot = index; } ================================================ FILE: sqlite3_wasm_build/src/external_objects.h ================================================ #pragma once /// Insert an external reference into a global table, returning a pointer /// identifying the slot. void* host_object_insert(__externref_t ref); /// From a slot returned by `host_object_insert`, obtain the external reference. __externref_t host_object_get(void* ptr); /// Free a slot returned by `host_object_insert`. void host_object_free(void* ptr); ================================================ FILE: sqlite3_wasm_build/src/getentropy.c ================================================ #include #include "bridge.h" // sqlite3mc calls getentropy on initialization. That call pulls a bunch of WASI // imports in when using the default WASI libc, which we're trying to avoid // here. Instead, we use a local implementation backed by `Random.secure()` in // Dart. int getentropy(void* buf, size_t n) { return xRandomness(__builtin_wasm_ref_null_extern(), (int)n, (char*)buf); } ================================================ FILE: sqlite3_wasm_build/src/helpers.c ================================================ #include #include "bridge.h" #include "external_objects.h" #include "sqlite3.h" #define DART_FILE(file) (host_object_get(((dart_vfs_file*)(file))->dart_object)) #ifdef SQLITE_ENABLE_VFSTRACE // When this is enabled, assume that `vfstrace_register` exists // See https://www.sqlite.org/src/doc/trunk/src/test_vfstrace.c extern int vfstrace_register( const char* zTraceName, // Name of the newly constructed VFS const char* zOldVfsName, // Name of the underlying VFS int (*xOut)(const char*, void*), // Output routine. ex: fputs void* pOutArg, // 2nd argument to xOut. ex: stderr int makeDefault // Make the new VFS the default ); #endif typedef struct { struct sqlite3_io_methods* pMethods; void* dart_object; } dart_vfs_file; // Interfaces we want to access in Dart SQLITE_API void* dart_sqlite3_malloc(size_t size) { return malloc(size); } SQLITE_API void dart_sqlite3_free(void* ptr) { return free(ptr); } SQLITE_API int dart_sqlite3_bind_blob(sqlite3_stmt* stmt, int index, const void* buf, int len) { return sqlite3_bind_blob64(stmt, index, buf, len, free); } SQLITE_API int dart_sqlite3_bind_text(sqlite3_stmt* stmt, int index, const char* buf, int len) { return sqlite3_bind_text(stmt, index, buf, len, free); } static int dartvfs_trace_log1(const char* msg, void* unused) { dartLogError(msg); return SQLITE_OK; } int dartvfs_close(sqlite3_file* file) { auto rc = xClose(DART_FILE(file)); if (rc == 0) { host_object_free(((dart_vfs_file*)file)->dart_object); } return rc; } int dartvfs_read(sqlite3_file* file, void* buf, int iAmt, sqlite3_int64 iOfst) { return xRead(DART_FILE(file), buf, iAmt, iOfst); } int dartvfs_write(sqlite3_file* file, const void* buf, int iAmt, sqlite3_int64 iOfst) { return xWrite(DART_FILE(file), buf, iAmt, iOfst); } int dartvfs_truncate(sqlite3_file* file, sqlite3_int64 size) { return xTruncate(DART_FILE(file), size); } int dartvfs_sync(sqlite3_file* file, int flags) { return xSync(DART_FILE(file), flags); } int dartvfs_fileSize(sqlite3_file* file, sqlite3_int64* pSize) { int size32; int rc = xFileSize(DART_FILE(file), &size32); *pSize = (sqlite3_int64)size32; return rc; } int dartvfs_lock(sqlite3_file* file, int i) { return xLock(DART_FILE(file), i); } int dartvfs_unlock(sqlite3_file* file, int i) { return xUnlock(DART_FILE(file), i); } int dartvfs_checkReservedLock(sqlite3_file* file, int* pResOut) { return xCheckReservedLock(DART_FILE(file), pResOut); } int dartvfs_fileControl(sqlite3_file* file, int op, void* pArg) { // "VFS implementations should return SQLITE_NOTFOUND for file control opcodes // that they do not recognize". Well, we don't recognize any. return SQLITE_NOTFOUND; } int dartvfs_deviceCharacteristics(sqlite3_file* file) { return xDeviceCharacteristics(DART_FILE(file)); } int dartvfs_sectorSize(sqlite3_file* file) { // This is also the value of SQLITE_DEFAULT_SECTOR_SIZE, which would be picked // if this function didn't exist. We need this method because vfstrace does // not support null callbacks. return 4096; } static int dartvfs_open(sqlite3_vfs* vfs, sqlite3_filename zName, sqlite3_file* file, int flags, int* pOutFlags) { dart_vfs_file* dartFile = (dart_vfs_file*)file; memset(dartFile, 0, sizeof(dart_vfs_file)); static sqlite3_io_methods methods = { .iVersion = 1, .xClose = &dartvfs_close, .xRead = &dartvfs_read, .xWrite = &dartvfs_write, .xTruncate = &dartvfs_truncate, .xSync = &dartvfs_sync, .xFileSize = &dartvfs_fileSize, .xLock = &dartvfs_lock, .xUnlock = &dartvfs_unlock, .xCheckReservedLock = &dartvfs_checkReservedLock, .xFileControl = &dartvfs_fileControl, .xDeviceCharacteristics = &dartvfs_deviceCharacteristics, #ifdef SQLITE_ENABLE_VFSTRACE .xSectorSize = &dartvfs_sectorSize #else .xSectorSize = NULL #endif }; // The xOpen call will also set the dart_fd field. int rc; auto dart_file_object = xOpen(host_object_get(vfs->pAppData), zName, &rc, flags, pOutFlags); if (__builtin_wasm_ref_is_null_extern(dart_file_object)) { dartFile->pMethods = nullptr; } else { // sqlite3 will call xClose() even if this open call returns an error if // methods are set. So, we only provide the methods if a file has actually // been opened. dartFile->pMethods = &methods; dartFile->dart_object = host_object_insert(dart_file_object); } return rc; } static int dartvfs_delete(sqlite3_vfs* vfs, const char* zName, int syncDir) { return xDelete(host_object_get(vfs->pAppData), zName, syncDir); } static int dartvfs_access(sqlite3_vfs* vfs, const char* zName, int flags, int* pResOut) { return xAccess(host_object_get(vfs->pAppData), zName, flags, pResOut); } static int dartvfs_fullPathname(sqlite3_vfs* vfs, const char* zName, int nOut, char* zOut) { return xFullPathname(host_object_get(vfs->pAppData), zName, nOut, zOut); } static int dartvfs_randomness(sqlite3_vfs* vfs, int nByte, char* zOut) { return xRandomness(host_object_get(vfs->pAppData), nByte, zOut); } static int dartvfs_sleep(sqlite3_vfs* vfs, int microseconds) { return xSleep(host_object_get(vfs->pAppData), microseconds); } static int dartvfs_currentTimeInt64(sqlite3_vfs* vfs, sqlite3_int64* timeOut) { int64_t milliseconds; int rc = xCurrentTimeInt64(host_object_get(vfs->pAppData), &milliseconds); if (rc) { return rc; } // https://github.com/sqlite/sqlite/blob/8ee75f7c3ac1456b8d941781857be27bfddb57d6/src/os_unix.c#L6757 static const int64_t unixEpoch = 24405875 * (int64_t)8640000; *timeOut = unixEpoch + milliseconds; return SQLITE_OK; } SQLITE_API sqlite3_vfs* dart_sqlite3_register_vfs(const char* name, __externref_t dart_vfs, int makeDefault) { sqlite3_vfs* vfs = calloc(1, sizeof(sqlite3_vfs)); vfs->iVersion = 2; vfs->szOsFile = sizeof(dart_vfs_file); vfs->mxPathname = 1024; vfs->zName = name; vfs->pAppData = host_object_insert(dart_vfs); vfs->xOpen = &dartvfs_open; vfs->xDelete = &dartvfs_delete; vfs->xAccess = &dartvfs_access; vfs->xFullPathname = &dartvfs_fullPathname; vfs->xRandomness = &dartvfs_randomness; vfs->xSleep = &dartvfs_sleep; vfs->xCurrentTimeInt64 = &dartvfs_currentTimeInt64; #ifdef SQLITE_ENABLE_VFSTRACE sqlite3_vfs_register(vfs, 0); static const char* prefix = "trace_"; static const int prefixLength = 6; char* traceName = malloc(strlen(name) + prefixLength); strcpy(traceName, prefix); strcpy(&traceName[prefixLength], name); vfstrace_register(traceName, name, &dartvfs_trace_log1, NULL, makeDefault); #else // Just register the VFS as is. int rc = sqlite3_vfs_register(vfs, makeDefault); if (rc) { host_object_free(vfs->pAppData); free(vfs); return NULL; } #endif return vfs; } int dart_sqlite3_unregister_vfs(sqlite3_vfs* vfs) { auto rc = sqlite3_vfs_unregister(vfs); if (!rc) { host_object_free(vfs->pAppData); free(vfs->zName); free(vfs); } return rc; } static void dartXFunc(sqlite3_context* context, int nArg, sqlite3_value** args) { auto handle = host_object_get(sqlite3_user_data(context)); return dispatchXFunc(handle, context, nArg, args); } static void dartXStep(sqlite3_context* context, int nArg, sqlite3_value** args) { auto handle = host_object_get(sqlite3_user_data(context)); return dispatchXStep(handle, context, nArg, args); } static void dartXInverse(sqlite3_context* context, int nArg, sqlite3_value** args) { auto handle = host_object_get(sqlite3_user_data(context)); return dispatchXInverse(handle, context, nArg, args); } static void dartXFinal(sqlite3_context* context) { auto handle = host_object_get(sqlite3_user_data(context)); return dispatchXFinal(handle, context); } static void dartXValue(sqlite3_context* context) { auto handle = host_object_get(sqlite3_user_data(context)); return dispatchXValue(handle, context); } SQLITE_API int dart_sqlite3_create_function_v2(sqlite3* db, const char* zFunctionName, int nArg, int eTextRep, int isAggregate, __externref_t handlers) { auto id = host_object_insert(handlers); return sqlite3_create_function_v2( db, zFunctionName, nArg, eTextRep, id, isAggregate ? nullptr : &dartXFunc, isAggregate ? &dartXStep : nullptr, isAggregate ? &dartXFinal : nullptr, &host_object_free); } SQLITE_API int dart_sqlite3_create_window_function(sqlite3* db, const char* zFunctionName, int nArg, int eTextRep, __externref_t handlers) { auto id = host_object_insert(handlers); return sqlite3_create_window_function(db, zFunctionName, nArg, eTextRep, id, &dartXStep, &dartXFinal, &dartXValue, &dartXInverse, &host_object_free); } static void dartXUpdate(void* context, int kind, const char* schema, const char* table, sqlite3_int64 rowid) { // TODO (not supported in clang): Cast to extern => anyref => function => // call_ref dartDispatchUpdateHook(host_object_get(context), kind, schema, table, rowid); } SQLITE_API void dart_sqlite3_updates(sqlite3* db, __externref_t function) { void* previous; if (__builtin_wasm_ref_is_null_extern(function)) { previous = sqlite3_update_hook(db, nullptr, nullptr); } else { previous = sqlite3_update_hook(db, &dartXUpdate, host_object_insert(function)); } if (previous) { host_object_free(previous); } } static int dartXCommit(void* context) { // TODO (not supported in clang): Cast to extern => anyref => function => // call_ref return dartDispatchReturnInt(host_object_get(context)); } SQLITE_API void dart_sqlite3_commits(sqlite3* db, __externref_t function) { void* previous; if (__builtin_wasm_ref_is_null_extern(function)) { previous = sqlite3_commit_hook(db, nullptr, nullptr); } else { previous = sqlite3_commit_hook(db, &dartXCommit, host_object_insert(function)); } if (previous) { host_object_free(previous); } } static void dartXRollback(void* context) { // TODO (not supported in clang): Cast to extern => anyref => function => // call_ref return dartDispatchReturnVoid(host_object_get(context)); } SQLITE_API void dart_sqlite3_rollbacks(sqlite3* db, __externref_t function) { void* previous; if (__builtin_wasm_ref_is_null_extern(function)) { previous = sqlite3_rollback_hook(db, nullptr, nullptr); } else { previous = sqlite3_rollback_hook(db, &dartXRollback, host_object_insert(function)); } if (previous) { host_object_free(previous); } } static int dartXCompare(void* context, int lengthA, const void* a, int lengthB, const void* b) { return dispatchXCompare(host_object_get(context), lengthA, a, lengthB, b); } SQLITE_API int dart_sqlite3_create_collation(sqlite3* db, const char* zName, int eTextRep, __externref_t function) { auto context = host_object_insert(function); return sqlite3_create_collation_v2(db, zName, eTextRep, context, &dartXCompare, &host_object_free); } SQLITE_API int dart_sqlite3_db_config_int(sqlite3* db, int op, int arg) { return sqlite3_db_config(db, op, arg); } static int dartChangesetXFilter(void* pCtx, const char* zTab) { return dispatchApplyFilter(host_object_get(pCtx), zTab); } static int dartChangesetXConflict(void* pCtx, int eConflict, sqlite3_changeset_iter* p) { return dispatchApplyConflict(host_object_get(pCtx), eConflict, p); } SQLITE_API int dart_sqlite3changeset_apply(sqlite3* db, int nChangeset, void* pChangeset, __externref_t callbacks, bool filter) { auto context = host_object_insert(callbacks); auto rc = sqlite3changeset_apply(db, nChangeset, pChangeset, filter ? &dartChangesetXFilter : 0, &dartChangesetXConflict, context); host_object_free(context); return rc; } static int dartBusyHandler(void* context, int amount) { return dispatchBusyHandler(host_object_get(context), amount); } SQLITE_API int dart_sqlite3_busy_handler(sqlite3* db, __externref_t callback) { if (__builtin_wasm_ref_is_null_extern(callback)) { return sqlite3_busy_handler(db, nullptr, nullptr); } return sqlite3_busy_handler(db, &dartBusyHandler, host_object_insert(callback)); } ================================================ FILE: sqlite3_wasm_build/src/os_web.c ================================================ #include #include #include #include #include "bridge.h" #include "sqlite3.h" int sqlite3_os_init(void) { return SQLITE_OK; } int sqlite3_os_end(void) { return SQLITE_OK; } struct tm* localtime_r(const time_t* restrict timep, struct tm* restrict result) { // This is not implemented by the WASI libc, but we can easily implement it // with a Dart hook. static_assert(sizeof(time_t) == sizeof(int64_t)); if (dartLocalTime(*timep, result)) { return 0; } else { return result; } } ================================================ FILE: sqlite3_wasm_build/src/sqlite_cfg.h ================================================ #define WASI_EMULATED_MMAN 1 // Don't include the default VFS implementations, we write our own #define SQLITE_OS_OTHER 1 // Don't include locking code and WAL which require multiple threads to access // the same WASM module, something we can't do #define SQLITE_THREADSAFE 0 #define SQLITE_OMIT_WAL 1 // Our implementation of temporary files is also entirely in-memory, // so there really is no point in using temp files. #define SQLITE_TEMP_STORE 3 // Recommended options #define SQLITE_DQS 0 #define SQLITE_DEFAULT_MEMSTATUS 0 #define SQLITE_DEFAULT_WAL_SYNCHRONOUS 1 #define SQLITE_LIKE_DOESNT_MATCH_BLOBS 1 #define SQLITE_STRICT_SUBTYPE 1 #define SQLITE_MAX_EXPR_DEPTH 0 #define SQLITE_OMIT_DECLTYPE 1 #define SQLITE_USE_ALLOCA 1 #define SQLITE_BYTEORDER 1234 // This apparently improves performance: // https://github.com/sqlite/sqlite/blob/b8d689b6668437e220fa329300e0541ff64e4ef6/ext/wasm/api/sqlite3-wasm.c#L57-L77 #define SQLITE_DEFAULT_CACHE_SIZE -16384 #define SQLITE_DEFAULT_PAGE_SIZE 8192 // We have them, so we may as well let sqlite3 use them? #define HAVE_ISNAN 1 #define HAVE_LOCALTIME_R 1 #define HAVE_MALLOC_USABLE_SIZE 1 #define HAVE_STRCHRNUL 1 #define SQLITE_ENABLE_DBSTAT_VTAB 1 #define SQLITE_ENABLE_FTS5 1 #define SQLITE_ENABLE_MATH_FUNCTIONS 1 #define SQLITE_ENABLE_RTREE 1 #define SQLITE_ENABLE_SESSION 1 #define SQLITE_ENABLE_PREUPDATE_HOOK 1 // Disable things we don't need #define SQLITE_OMIT_DEPRECATED #define SQLITE_OMIT_PROGRESS_CALLBACK #define SQLITE_OMIT_AUTHORIZATION #define SQLITE_UNTESTABLE #define SQLITE_OMIT_COMPILEOPTION_DIAGS #define SQLITE_OMIT_LOAD_EXTENSION #define SQLITE_OMIT_TCL_VARIABLE #define SQLITE_OMIT_UTF16 #define SQLITE_OMIT_DESERIALIZE #define SQLITE_DISABLE_DIRSYNC ================================================ FILE: sqlite3_wasm_build/tool/wasm_symbols.dart ================================================ import 'dart:io'; /// Writes flags for clang that will `-Wl,--export` all symbols used by the /// `sqlite3` Dart package on the web. void main(List args) { final symbols = [...stableFunctions, ...unstable]; final output = File(args[0]); output.writeAsStringSync(symbols.map((e) => '-Wl,--export=$e').join(' ')); } // Functions we can assume to be exported from `sqlite3.wasm` unconditionally. // We regularly add bindings to additional SQLite functions that would not be // exported from older `sqlite3.wasm` bundles which we still support. We have // to generate those as optional functions. const stableFunctions = { 'dart_sqlite3_malloc', 'dart_sqlite3_free', 'dart_sqlite3_bind_blob', 'dart_sqlite3_bind_text', 'dart_sqlite3_register_vfs', 'dart_sqlite3_unregister_vfs', 'dart_sqlite3_create_function_v2', 'dart_sqlite3_busy_handler', 'sqlite3_temp_directory', 'sqlite3_open_v2', 'sqlite3_close_v2', 'sqlite3_column_name', 'sqlite3_extended_result_codes', 'sqlite3_extended_errcode', 'sqlite3_errmsg', 'sqlite3_errstr', 'sqlite3_free', 'sqlite3_libversion', 'sqlite3_sourceid', 'sqlite3_libversion_number', 'sqlite3_last_insert_rowid', 'sqlite3_changes', 'sqlite3_exec', 'sqlite3_get_autocommit', 'sqlite3_prepare_v2', 'sqlite3_prepare_v3', 'sqlite3_finalize', 'sqlite3_step', 'sqlite3_reset', 'sqlite3_stmt_isexplain', 'sqlite3_stmt_readonly', 'sqlite3_column_count', 'sqlite3_bind_parameter_count', 'sqlite3_bind_parameter_index', 'sqlite3_bind_double', 'sqlite3_bind_int64', 'sqlite3_bind_null', 'sqlite3_column_blob', 'sqlite3_column_double', 'sqlite3_column_int64', 'sqlite3_column_text', 'sqlite3_column_bytes', 'sqlite3_column_type', 'sqlite3_value_blob', 'sqlite3_value_double', 'sqlite3_value_type', 'sqlite3_value_int64', 'sqlite3_value_text', 'sqlite3_value_bytes', 'sqlite3_aggregate_context', 'sqlite3_user_data', 'sqlite3_result_blob64', 'sqlite3_result_double', 'sqlite3_result_error', 'sqlite3_result_int64', 'sqlite3_result_null', 'sqlite3_result_text', 'sqlite3_db_config', 'sqlite3_initialize', 'dart_sqlite3_updates', 'dart_sqlite3_commits', 'dart_sqlite3_rollbacks', 'dart_sqlite3_db_config_int', 'sqlite3_error_offset', 'sqlite3_result_subtype', 'sqlite3_value_subtype', 'dart_sqlite3_create_window_function', 'dart_sqlite3_create_collation', 'sqlite3session_create', 'sqlite3session_delete', 'sqlite3session_enable', 'sqlite3session_indirect', 'sqlite3session_isempty', 'sqlite3session_attach', 'sqlite3session_diff', 'sqlite3session_patchset', 'sqlite3session_changeset', 'sqlite3changeset_invert', 'sqlite3changeset_start', 'sqlite3changeset_finalize', 'sqlite3changeset_next', 'sqlite3changeset_op', 'sqlite3changeset_old', 'sqlite3changeset_new', 'dart_sqlite3changeset_apply', }; /// Newer functions that aren't available in older WASM bundles. const unstable = {}; ================================================ FILE: sqlite3_web/.gitignore ================================================ # https://dart.dev/guides/libraries/private-files # Created by `dart pub` .dart_tool/ # Avoid committing pubspec.lock for library packages; see # https://dart.dev/guides/libraries/private-files#pubspeclock. pubspec.lock ================================================ FILE: sqlite3_web/CHANGELOG.md ================================================ ## 0.7.0 - __Breaking__: Introduce `CustomClientRequest` and `CustomClientDatabaseRequest` classes representing client requests. They expose an abort signal for requests and a way to interact with database locks. - Add `LockToken? token` and `Future? abortTrigger` parameters to `Database.customRequest`. ## 0.6.0 - Replace `worker` URI parameter with `WorkerConnector` interface. Use `WorkerConnector.defaultWorkers` to keep passing an URI. - Refactor worker messages to use JS-interop objects directly instead of serializing Dart objects. This makes the package slightly more efficient. ## 0.5.0 - Use version 3 of `package:sqlite3`. ## 0.4.1 - Support older versions of `package:meta`. ## 0.4.0 - Remove `userVersion` and `setUserVersion`. Users should run the pragma statements manually. - Add `requestLock`, which can be used to make multiple database calls in a locked context. - Allow aborting requests. - Add support for a new Web FS (OPFS) access mode based on `readwrite-unsafe`. ## 0.3.2 - Allow workers to send requests to clients. Previously, only the other direction was implemented. ## 0.3.1 - Fix hooks not being delivered to all databases. ## 0.3.0 - Allow passing data to worker when opening databases. - Support `dart2wasm`. - Serialize `SqliteException`s in workers. - Serialize parameters and rows instead of using `jsify()` / `dartify()`. ## 0.2.2 - Recover from worker errors at startup. ## 0.2.1 - Add `WebSqlite.deleteDatabase` to delete databases. - Support opening databases without workers. ## 0.2.0 - Make `FileSystem` implementation functional, add `FileSystem.flush()`. ## 0.1.3 - Support latest version of `package:web`. ## 0.1.2-wip - Fix preferred databases not being sorted correctly. ## 0.1.1-wip - Fix remote error after closing databases. ## 0.1.0-wip - Initial WIP version. ================================================ FILE: sqlite3_web/LICENSE ================================================ MIT License Copyright (c) 2024 Simon Binder 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: sqlite3_web/README.md ================================================ Support for building libraries enabling access to `sqlite3` on the web. ## What does this do? `package:sqlite3` provides all the foundations necessary to access sqlite3 on the web. As the APIs exposed by that package are direct wrappers around the `sqlite3` C library compiled to WebAssembly, some limitations remain. In particular, the most reliable way to access databases on the web involves workers, which are required to use the filesystem access API. When workers are involved however, the database is no longer running in the JavaScript context for your app. To access the database in these setups, you instead have to use asynchronous communication channels between the worker and your app. The synchronous API provided by the `sqlite3` package is unsuitable for this. Further, different browsers support different persistence APIs and you need to check what's available beforehand to use the best storage engine available. And that is what this package can do for you: 1. It provides an API enabling you to write database workers in Dart. 2. It can then use these workers for an asynchronous interface to sqlite3 databases. 3. It automatically detects available storage implementations, and can pick the best one available. ## Getting started Note: While this package can be used by end applications, it is meant as a building block for database packages like `sqlite_async` or `drift`. Using these packages helps avoid some setup work. Workers are responsible for opening databases and exposing them through message channels. This package takes care of these channels, but you are still responsible for opening databases in your workers. To do so, extend the `DatabaseController` class, e.g. [like this](https://github.com/simolus3/sqlite3.dart/blob/main/sqlite3_web/example/controller.dart). With a controller ready, you can define an entrypoint for a web worker like this: ```dart import 'package:sqlite3_web/sqlite3_web.dart'; import 'controller.dart'; void main() { WebSqlite.workerEntrypoint(controller: ExampleController()); } ``` This worker is ready to be compiled with `dart compile js` (consider using `-O4`). Additionally, you need a `sqlite3.wasm` file containing native sqlite3 code to load. You can - grab a prebuilt version [from our releases](https://github.com/simolus3/sqlite3.dart/releases), - [compile it yourself](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3#compiling), or - [compile a custom build](https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3/example/custom_wasm_build) with your own sqlite3 extensions or functions linked directly into the module. With those ready, this package can be used to provide async access to databases that are transparently hosted in the worker: ```dart Future connectToDatabase() async { final sqlite = await WebSqlite.open( workers: WorkerConnector.defaultWorkers(Uri.parse('worker.dart.js')), wasmModule: Uri.parse('sqlite3.wasm'), ); final features = await sqlite.runFeatureDetection(); print('got features: $features'); final connection = await sqlite.connectToRecommended('my_database'); print(await connection.database.select('select sqlite_version()')); } ``` ## Lock and transaction management This package provides the `select` and `execute` method returning: 1. The `autocommit` state of the database after running the statement. 2. The last insert rowid value. 3. For `select`, results. Because each database typically only uses a single connection (likely hosted in a shared worker), implementing transactions requires multiple statements to run without interference from others. The `requestLock` API is a helpful building block for this. In its callback, no other tab will have access to the database: ```dart await db.requestLock((lock) async { await db.execute('BEGIN', token: lock); await db.execute( '... other statements', token: lock, checkInTransaction: true, ); await db.execute('COMMIT', token: lock, checkInTransaction: true); }); ``` Inside a lock context, the `LockToken` must be passed to `select` and `execute`. Additionally, the `checkInTransaction` flag can be used to verify that the database is not in autocommit mode before running a statement. ## Custom requests In some cases, it may be useful to re-use the worker communication scheme created by `package:sqlite3_web` for functionality implemented in your library. For instance, you could use shared workers to let different tabs connect to a single instance of a database. In that case, some synchronization primitives to coordinate which tab gets to open transactions can be implemented in the worker by overriding `handleCustomRequest` in `WorkerDatabase`. You can encode requests and responses as arbitrary values exchanged as `JSAny?`. On the client side, requests can be issued with `Database.customRequest`. ## Testing this package This package uses both regular `dart test` tests and integration tests. All tests need a compatible `sqlite3.wasm` file in `web/`. Integration tests also require `geckodriver` and `chromedriver` to be installed. ================================================ FILE: sqlite3_web/analysis_options.yaml ================================================ # This file configures the static analysis results for your project (errors, # warnings, and lints). # # This enables the 'recommended' set of lints from `package:lints`. # This set helps identify many issues that may lead to problems when running # or consuming Dart code, and enforces writing Dart using a single, idiomatic # style and format. # # If you want a smaller set of lints you can change this to specify # 'package:lints/core.yaml'. These are just the most critical lints # (the recommended set includes the core lints). # The core lints are also what is used by pub.dev for scoring packages. include: package:lints/recommended.yaml # Uncomment the following section to specify additional rules. # linter: # rules: # - camel_case_types # analyzer: # exclude: # - path/to/excluded/files/** # For more information about the core and recommended set of lints, see # https://dart.dev/go/core-lints # For additional information about configuring this file, see # https://dart.dev/guides/language/analysis-options ================================================ FILE: sqlite3_web/benchmark/benchmark.dart ================================================ import 'dart:js_interop'; import 'package:async/async.dart'; import 'package:http/http.dart'; import 'package:jaspr_riverpod/jaspr_riverpod.dart'; import 'package:jaspr_riverpod/legacy.dart'; import 'package:sqlite3_web/sqlite3_web.dart'; import 'package:sqlite3_web/src/locks.dart'; import 'package:web/web.dart' hide Client; import 'message.dart'; final class BenchmarkConfiguration { final DatabaseImplementation implementation; const BenchmarkConfiguration({required this.implementation}); Future delete(WebSqlite client) async { final storage = implementation.storage; if (storage != StorageMode.inMemory) { await client.deleteDatabase(name: databaseName, storage: storage); } } Future connect(WebSqlite client) async { return await client.connect(databaseName, implementation); } static const defaultConfig = BenchmarkConfiguration( implementation: DatabaseImplementation.inMemoryLocal, ); static const databaseName = 'benchmark'; } sealed class BenchmarkTarget { final BenchmarkConfiguration configuration; BenchmarkTarget(this.configuration); BenchmarkTarget changeConfig(BenchmarkConfiguration config); } /// Benchmarks for a single tab, running predefined SQL scripts on a fresh /// database. final class SingleTabBenchmarkTarget extends BenchmarkTarget { SingleTabBenchmarkTarget(super.configuration); @override SingleTabBenchmarkTarget changeConfig(BenchmarkConfiguration config) { return SingleTabBenchmarkTarget(config); } /// Names of benchmark scripts in `benchmark/sql/`. static const names = [ 'Test 1: 1000 INSERTs', 'Test 2: 25000 INSERTs in a transaction', 'Test 3: 25000 INSERTs into an indexed table', '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', ]; } /// Multi-tab / contention benchmarks are not yet supported. /// /// The idea is to eventually aggregate results from individual tabs through the /// shared worker. final class MultiTabBenchmarkTarget extends BenchmarkTarget { MultiTabBenchmarkTarget(super.configuration); @override MultiTabBenchmarkTarget changeConfig(BenchmarkConfiguration config) { return MultiTabBenchmarkTarget(config); } } final class BenchmarkResult { final int? tab; final String name; /// Null if the benchmark is currently running. final Duration? runtime; BenchmarkResult(this.tab, this.name, this.runtime); String get description { final buffer = StringBuffer(); if (tab case final tab?) { buffer.write('Tab $tab '); } buffer ..write(name) ..write(': '); if (runtime case final completedRuntime?) { buffer.write('${completedRuntime.inMilliseconds}ms'); } else { buffer.write('running...'); } return buffer.toString(); } } final class BenchmarkState extends Notifier>> { final _client = Client(); @override Result> build() { return Result.value([]); } Future runSingleTabBenchmarks( SingleTabBenchmarkTarget target, WebSqlite sqlite, ) async { try { await _runSingleTabBenchmarks(target, sqlite); } catch (e, s) { state = Result.error(e, s); } } Future _runSingleTabBenchmarks( SingleTabBenchmarkTarget target, WebSqlite sqlite, ) async { final results = []; void publish() { state = Result.value(results.toList()); } await target.configuration.delete(sqlite); publish(); for (final (i, name) in SingleTabBenchmarkTarget.names.indexed) { results.add(BenchmarkResult(null, name, null)); publish(); final (sql, db) = await ( _fetchBenchmarkSql(i), target.configuration.connect(sqlite), ).wait; results.removeLast(); final stopwatch = Stopwatch()..start(); await db.execute(sql); stopwatch.stop(); results.add(BenchmarkResult(null, name, stopwatch.elapsed)); publish(); } } Future _fetchBenchmarkSql(int index) async { // Files are named starting with benchmark1.slq final response = await _client.get( Uri.parse('sql/benchmark${index + 1}.sql'), ); if (response.statusCode != 200) { throw StateError('Unexpected response: ${response.body}'); } return response.body; } static final provider = NotifierProvider(BenchmarkState.new); } final class ClientState { final int tabId; final int numTabs; ClientState(this.tabId, this.numTabs); int get tabIdPlusOne => tabId + 1; } final class ClientStateNotifier extends Notifier { final SharedWorker worker = SharedWorker('worker.dart.js'.toJS); ClientStateNotifier(); @override ClientState? build() { final lockName = 'tab-close-notification-${DateTime.now().millisecondsSinceEpoch}'; WebLocks.instance!.request(lockName).then((held) { if (!ref.mounted) { return held.release(); } worker.port.postMessage( WorkerMessage( type: ToWorkerMessageType.connectTab.name, payload: ConnectTab(lockName: lockName), ), ); ref.onDispose(held.release); }); worker.port.start(); final subscription = EventStreamProviders.messageEvent .forTarget(worker.port) .listen((event) { final message = event.data as WorkerMessage; switch (ToClientMessageType.values.byName(message.type)) { case ToClientMessageType.tabId: final payload = message.payload as ReceiveTabId; state = ClientState( payload.index.toDartInt, payload.numTabs.toDartInt, ); } }); ref.onDispose(subscription.cancel); return null; } static final provider = NotifierProvider(ClientStateNotifier.new); } final sqlite3 = Provider((ref) { return WebSqlite.open( workers: _EncapsulatedWorkerConnector(), wasmModule: Uri.parse('sqlite3.wasm'), ); }); final featureDetectionResult = FutureProvider((ref) async { final impl = ref.watch(sqlite3); return await impl.runFeatureDetection(); }); final selectedTarget = StateProvider((ref) { return SingleTabBenchmarkTarget(BenchmarkConfiguration.defaultConfig); }); final class _EncapsulatedWorkerConnector implements WorkerConnector { final WorkerConnector _inner = WorkerConnector.defaultWorkers( Uri.parse('worker.dart.js'), ); @override WorkerHandle? spawnDedicatedWorker() => _inner.spawnDedicatedWorker(); @override WorkerHandle? spawnSharedWorker() { return switch (_inner.spawnSharedWorker()) { null => null, final worker => _EncapsulatedWorker(worker), }; } } /// Wraps messages sent to workers in a [WorkerMessage] structure, allowing the /// shared worker to be used for multiple purposes by indicating that messages /// we're sending are from the `sqlite3_web` package. final class _EncapsulatedWorker implements WorkerHandle { final WorkerHandle _inner; _EncapsulatedWorker(this._inner); @override EventTarget get targetForErrorEvents => _inner.targetForErrorEvents; @override void postMessage(JSAny? msg, JSObject transfer) { _inner.postMessage( WorkerMessage(type: ToWorkerMessageType.sqlite.name, payload: msg), transfer, ); } } ================================================ FILE: sqlite3_web/benchmark/index.html ================================================ sqlite3_web benchmarks

sqlite3_web benchmarks

================================================ FILE: sqlite3_web/benchmark/main.dart ================================================ import 'package:async/async.dart'; import 'package:jaspr/client.dart'; import 'package:jaspr/dom.dart'; import 'package:jaspr_riverpod/jaspr_riverpod.dart'; import 'package:sqlite3_web/sqlite3_web.dart'; import 'benchmark.dart'; /// To run benchmarks: `webdev serve benchmark:8080 --release`, also copy a /// `sqlite3.wasm` into this directory. void main() { runApp(const ProviderScope(child: BenchmarkApp()), attachTo: '#app'); } final class BenchmarkApp extends StatelessComponent { const BenchmarkApp(); @override Component build(BuildContext context) { final detectedFeatures = context.watch(featureDetectionResult); final clientState = context.watch(ClientStateNotifier.provider); switch (detectedFeatures) { case AsyncLoading(): return Component.text('Initializing...'); case AsyncData(:final value): return Component.fragment([ Component.text( 'Tab is ready (${clientState?.tabIdPlusOne} / ${clientState?.numTabs} tabs). Select benchmark to run', ), _BenchmarkSelector(value), const _BenchmarkResults(), ]); case AsyncError(:final error): return Component.text('Error initializing: $error'); } } } final class _BenchmarkSelector extends StatelessComponent { final FeatureDetectionResult _features; _BenchmarkSelector(this._features); @override Component build(BuildContext context) { final currentSelection = context.watch(selectedTarget); return div([ select( value: switch (currentSelection) { SingleTabBenchmarkTarget() => 'single', MultiTabBenchmarkTarget() => 'multi', }, onChange: (value) { context.read(selectedTarget.notifier).state = switch (value) { ['multi'] => MultiTabBenchmarkTarget( BenchmarkConfiguration.defaultConfig, ), _ => SingleTabBenchmarkTarget(BenchmarkConfiguration.defaultConfig), }; }, [ const option(value: 'single', [Component.text('Single-tab')]), const option(value: 'multi', [Component.text('Multi tab')]), ], ), select( value: currentSelection.configuration.implementation.name, onChange: (value) { final implementation = DatabaseImplementation.values.byName(value[0]); context.read(selectedTarget.notifier).state = currentSelection .changeConfig( BenchmarkConfiguration(implementation: implementation), ); }, [ for (final available in _features.availableImplementations) option(value: available.name, [Component.text(available.name)]), ], ), button( onClick: () { final loadedSqlite = context.read(sqlite3); final target = context.read(selectedTarget); switch (target) { case SingleTabBenchmarkTarget(): context .read(BenchmarkState.provider.notifier) .runSingleTabBenchmarks(target, loadedSqlite); case MultiTabBenchmarkTarget(): // TODO: Handle this case. throw UnimplementedError(); } }, disabled: false, [Component.text('Run!')], ), ]); } } final class _BenchmarkResults extends StatelessComponent { const _BenchmarkResults(); @override Component build(BuildContext context) { final results = context.watch(BenchmarkState.provider); return div([ const h2([Component.text('Results')]), if (results case ValueResult(value: final results)) ol([ for (final result in results) li(key: ValueKey(result), [Component.text(result.description)]), ]), if (results.asError case final error?) pre([ code([ Component.text(error.error.toString()), const br(), Component.text(error.stackTrace.toString()), ]), ]), ]); } } ================================================ FILE: sqlite3_web/benchmark/message.dart ================================================ import 'dart:js_interop'; enum ToWorkerMessageType { sqlite, connectTab } enum ToClientMessageType { tabId } extension type WorkerMessage._(JSObject _) implements JSObject { external factory WorkerMessage({ required String type, required JSAny? payload, }); external String get type; external JSAny? get payload; } extension type ConnectTab._(JSObject _) implements JSObject { /// A lock obtained by the connecting tab. /// /// The shared worker will attempt to also obtain this lock, and can know that /// the tab has closed once that succeeds. external String get lockName; external factory ConnectTab({required String lockName}); } extension type ReceiveTabId._(JSObject _) implements JSObject { external factory ReceiveTabId({ required JSNumber index, required JSNumber numTabs, }); external JSNumber get index; external JSNumber get numTabs; } ================================================ FILE: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/benchmark11.sql ================================================ BEGIN; INSERT INTO t1 SELECT b,a,c FROM t2; INSERT INTO t2 SELECT b,a,c FROM t1; COMMIT; ================================================ FILE: sqlite3_web/benchmark/sql/benchmark12.sql ================================================ DELETE FROM t2 WHERE c LIKE '%fifty%'; ================================================ FILE: sqlite3_web/benchmark/sql/benchmark13.sql ================================================ DELETE FROM t2 WHERE a>10 AND a<20000; ================================================ FILE: sqlite3_web/benchmark/sql/benchmark14.sql ================================================ INSERT INTO t2 SELECT * FROM t1; ================================================ FILE: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/benchmark16.sql ================================================ DROP TABLE t1; DROP TABLE t2; DROP TABLE t3; ================================================ FILE: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/benchmark6.sql ================================================ CREATE INDEX i2a ON t2(a); CREATE INDEX i2b ON t2(b); ================================================ FILE: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/sql/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: sqlite3_web/benchmark/worker.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'package:sqlite3_web/sqlite3_web.dart'; import 'package:sqlite3_web/src/locks.dart'; import 'package:web/web.dart'; import '../example/controller.dart'; import 'message.dart'; final _locks = WebLocks.instance!; void main() { WorkerEnvironment environment; if (globalContext.instanceOfString('SharedWorkerGlobalScope')) { // This shared worker is used both to hand out database access and to // coordinate multiple tabs running concurrency benchmarks. We encapsulate // messages from the sqlite3_async package in a WorkerMessage struct, which // allows this worker to speak both protocols. final fakeEnvironment = environment = FakeWorkerEnvironment( WorkerConnector.defaultWorkers(Uri.base), ); final scope = globalContext as SharedWorkerGlobalScope; final clients = ClientsDriver(); clients.run(); EventStreamProviders.connectEvent.forTarget(scope).listen((event) { for (final port in (event as MessageEvent).ports.toDart) { port.start(); EventStreamProviders.messageEvent.forTarget(port).listen((message) { final data = message.data as WorkerMessage; switch (ToWorkerMessageType.values.byName(data.type)) { case ToWorkerMessageType.sqlite: fakeEnvironment.postMessage(data.payload); case ToWorkerMessageType.connectTab: final payload = data.payload as ConnectTab; clients._events.add( _ClientConnected(ConnectedClient(port), payload.lockName), ); } }); } }); } else { environment = WorkerEnvironment(); } WebSqlite.workerEntrypoint( controller: ExampleController(), environment: environment, ); } /// Actor handling tabs connecting, disconnecting and requesting benchmark runs. final class ClientsDriver { final StreamController<_ClientsDriverEvent> _events = StreamController(); final List _clients = []; void run() async { await for (final event in _events.stream) { _handleEvent(event); } } void _handleEvent(_ClientsDriverEvent event) { switch (event) { case _ClientConnected(): _clients.add(event.client); _reindexClients(); _locks.request(event.lockName).then((lock) { _events.add(_ClientDisconnected(event.client)); lock.release(); }); case _ClientDisconnected(): _clients.remove(event.client); _reindexClients(); } } void _reindexClients() { for (final (i, client) in _clients.indexed) { client.port.postMessage( WorkerMessage( type: ToClientMessageType.tabId.name, payload: ReceiveTabId(index: i.toJS, numTabs: _clients.length.toJS), ), ); } } } final class ConnectedClient { final MessagePort port; ConnectedClient(this.port); } sealed class _ClientsDriverEvent {} final class _ClientConnected implements _ClientsDriverEvent { final ConnectedClient client; final String lockName; _ClientConnected(this.client, this.lockName); } final class _ClientDisconnected implements _ClientsDriverEvent { final ConnectedClient client; _ClientDisconnected(this.client); } ================================================ FILE: sqlite3_web/build.yaml ================================================ targets: # This setup exists so that the main entrypoint (web/main.dart) gets compiled # with dartdevc for debug builds while the worker is compiled with dart2js # (since workers don't support the JS moduled emitted by dartdevc). # In release builds (`--release` on the CLI), both entrypoints are compiled # with dart2js. # # If you're ok with compiling everything with dart2js, just use # `compiler: dartj2s` on the options of the default target and ignore the two # additional targets here. dart2js_archives: auto_apply_builders: false dependencies: [":$default", ":worker"] builders: build_web_compilers:dart2js_archive_extractor: enabled: true worker: auto_apply_builders: false dependencies: [":$default"] builders: build_web_compilers:entrypoint: enabled: true generate_for: - "**/worker.dart" options: compiler: dart2js build_web_compilers:dart2js_archive_extractor: enabled: false $default: builders: build_web_compilers:entrypoint: generate_for: include: - example/** - benchmark/** - web/** # Workers are compiled by the other target. exclude: - "**/worker.dart" options: compilers: dart2js: dart2wasm: loader: # We have a designated target for this step. build_web_compilers:dart2js_archive_extractor: enabled: false ================================================ FILE: sqlite3_web/dart_test.yaml ================================================ platforms: [vm, chrome, firefox] compilers: [dart2wasm, dart2js] tags: webdriver: # Sometimes spawning the driver times out, it's just easier to retry. retry: 2 override_platforms: firefox: settings: arguments: "-headless" presets: gh_actions: concurrency: 1 ================================================ FILE: sqlite3_web/example/controller.dart ================================================ import 'dart:js_interop'; import 'package:sqlite3/common.dart'; import 'package:sqlite3/src/wasm/sqlite3.dart'; import 'package:sqlite3_web/sqlite3_web.dart'; final class ExampleController extends DatabaseController { @override Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ) async { return null; } @override Future openDatabase( WasmSqlite3 sqlite3, String path, String vfs, JSAny? additionalOptions, ) async { return ExampleDatabase(database: sqlite3.open(path, vfs: vfs)); } } final class ExampleDatabase extends WorkerDatabase { @override final CommonDatabase database; ExampleDatabase({required this.database}); @override Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ) async { return null; } } ================================================ FILE: sqlite3_web/example/index.html ================================================ sqlite on the web

sqlite3 web demo

This demo can be used to open databases in different storage implementations and access modes (e.g. through shared or dedicated workers). To open a database, open the consule and run await open('name', 'implementation'). Supported values for implementation are:
  • inMemoryLocal: Only stores files in memory without persistence.
  • inMemoryShared: In-memory database, but shared across tabs with a shared worker.
  • indexedDbUnsafeLocal: Store data in IndexedDB, using each tab unisolated access to the database. Because data is just read once on startup, this is not a good file system implementation and prone to data corruption when used across multiple tabs.
  • indexedDbUnsafeWorker: Like local, but in a shared worker.
  • indexedDbShared: Safely store data in IndexedDB with a shared worker. Limited durability guarantees compared to OPFS.
  • opfsWithExternalLocks: Uses the Origin private file system. This uses the experimental readwrite-unsafe mode only available on Chrome.
  • opfsAtomics: OPFS storage, but uses a pair of dedicated workers using shared memory and atomics to syncify requests. This requires COOP + COEP headers.
  • opfsShared: OPFS storage, using a dedicated worker in a shared worker. This is only supported on Firefox.
After opening a database, you can use execute in the console to run SQL on it, e.g:
let db = await open('test', 'opfsWithExternalLocks');
await execute(db, 'create table foo (bar);');
================================================ FILE: sqlite3_web/example/main.dart ================================================ import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'package:sqlite3_web/sqlite3_web.dart'; void main() async { final sqlite = WebSqlite.open( workers: WorkerConnector.defaultWorkers(Uri.parse('worker.dart.js')), wasmModule: Uri.parse('sqlite3.wasm'), ); final features = await sqlite.runFeatureDetection(); print('got features: $features'); globalContext['open'] = (JSString name, JSString implementation) { return Future(() async { final database = await sqlite.connect( name.toDart, DatabaseImplementation.values.byName(implementation.toDart), ); database.updates.listen((update) { print('Update on $name: $update'); }); return database.toJSBox; }).toJS; }.toJS; globalContext['execute'] = (JSBoxedDartObject database, JSString sql) { return Future(() async { await (database.toDart as Database).execute(sql.toDart); }).toJS; }.toJS; } ================================================ FILE: sqlite3_web/example/main.js ================================================ (async () => { const thisScript = document.currentScript; const params = new URL(document.location.toString()).searchParams; const wasmOption = params.get("wasm"); function relativeURL(ref) { const base = thisScript?.src ?? document.baseURI; return new URL(ref, base).toString(); } if (wasmOption == "1") { let { compileStreaming } = await import("./main.mjs"); let app = await compileStreaming(fetch(relativeURL("main.wasm"))); let module = await app.instantiate({}); module.invokeMain(); } else { const scriptTag = document.createElement("script"); scriptTag.type = "application/javascript"; scriptTag.src = relativeURL("./main.dart2js.js"); document.head.append(scriptTag); } })(); ================================================ FILE: sqlite3_web/example/worker.dart ================================================ import 'package:sqlite3_web/sqlite3_web.dart'; import 'controller.dart'; void main() { WebSqlite.workerEntrypoint(controller: ExampleController()); } ================================================ FILE: sqlite3_web/lib/protocol_utils.dart ================================================ /// Utilities for encoding sqlite3 types across web message ports. library; import 'dart:js_interop'; import 'package:sqlite3/wasm.dart'; import 'src/protocol.dart'; /// Serializes a list of [parameters] compatible with the sqlite3 package into /// a pair of an [JSArrayBuffer] and a [JSArray]. /// /// The [JSArray] is backwards-compatible with clients calling `toDart` on the /// array and `dartify()` on the entries. /// However, the [JSArrayBuffer] provides out-of-band type information about /// the entries in the array. When one of the communication partners was /// compiled with dart2wasm, this is useful to tell integers and doubles apart /// reliably. (JSArray, JSArrayBuffer) serializeParameters(List parameters) { return TypeCode.encodeValues(parameters); } /// Given an array of values and optionally also type information obtained from /// [serializeParameters], return the parameters. List deserializeParameters(JSArray values, JSArrayBuffer? types) { return TypeCode.decodeValues(values, types); } /// Serializes a [ResultSet] into a serializable [JSObject]. JSObject serializeResultSet(ResultSet resultSet) { return RowsResponseUtils.wrapResultSet( 0, resultSet: resultSet, autoCommit: false, lastInsertRowId: 0, ); } /// Deserializes a result set from the format in [serializeResultSet]. ResultSet deserializeResultSet(JSObject object) { return (object as RowsResponse).readResultSet()!; } ================================================ FILE: sqlite3_web/lib/sqlite3_web.dart ================================================ export 'src/types.dart'; export 'src/database.dart' hide lockTokenFromId, lockTokenToId; export 'src/worker_connector.dart'; ================================================ FILE: sqlite3_web/lib/src/channel.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'dart:math'; import 'package:stream_channel/stream_channel.dart'; import 'package:web/web.dart' hide Request, Response, Notification; import 'locks.dart'; import 'protocol.dart'; import 'types.dart'; const _disconnectMessage = '_disconnect'; final Random _random = Random(); @JS() @anonymous extension type WebEndpoint._(JSObject _) implements JSObject { external MessagePort get port; external String? get lockName; external factory WebEndpoint({ required MessagePort port, required String? lockName, }); StreamChannel connect() { return _channel(port, lockName, null); } } Future<(WebEndpoint, StreamChannel)> createChannel() async { final webChannel = MessageChannel(); final locks = WebLocks.instance; // For servers, it's useful to know when a connection is closed, so that it // can release locks or otherwise clean up resources occupied by the // connection. This is kind of tricky for message ports, because they have // no "closed" event. // As a workaround, we're making one side take a unique lock and tell the // other endpoint about it. When that side closes for any reason, even just // because the tab is improperly closed, the other end will be able to take // the lock and thus know that the connection has been closed. HeldLock? lock; String? lockName; if (locks != null) { lockName = _randomLockName(); lock = await locks.request(lockName); } final channel = _channel(webChannel.port2, lockName, lock); return (WebEndpoint(port: webChannel.port1, lockName: lockName), channel); } String _randomLockName() { final buffer = StringBuffer('channel-close-'); for (var i = 0; i < 16; i++) { const charCodeSmallA = 97; buffer.writeCharCode(charCodeSmallA + _random.nextInt(26)); } return buffer.toString(); } StreamChannel _channel( MessagePort port, String? lockName, HeldLock? lock, ) { final controller = StreamChannelController(); port.start(); EventStreamProviders.messageEvent.forTarget(port).listen((event) { final message = event.data; if (message == _disconnectMessage.toJS) { // Other end has closed the connection controller.local.sink.close(); } else { controller.local.sink.add(message as Message); } }); controller.local.stream.listen( (msg) { msg.sendToPort(port); }, onDone: () { // Closed locally, inform the other end. port ..postMessage(_disconnectMessage.toJS) ..close(); lock?.release(); }, ); if (lock == null && lockName != null) { // Once this side is able to acquire the lock, the connection is closed. WebLocks.instance!.request(lockName).then((lock) { controller.local.sink.close(); lock.release(); }); } return controller.foreign; } abstract base class ProtocolChannel extends RequestHandler { final StreamChannel _channel; var _nextRequestId = 0; final Map> _responses = {}; /// Requests that are currently being handled, identified by their id. This /// allows aborting them. final Map _handlingRequests = {}; ProtocolChannel(this._channel) { _channel.stream.listen( _handleIncoming, onError: (e) { close(e); }, ); } Future get closed => _channel.sink.done; /// Handle an incoming message from the client. void _handleIncoming(Message message) async { dispatchMessage( message, whenResponse: (response) { _responses.remove(response.requestId)?.complete(response); }, whenRequest: (request) async { Response response; final requestId = request.requestId; final abortController = _handlingRequests[requestId] = AbortController(); try { response = await dispatchRequest(request, abortController.signal); } catch (e, s) { if (e is! AbortException) { console.error('Error in worker: ${e.toString()}'.toJS); console.error('Original trace: $s'.toJS); } response = ErrorResponseUtils.wrapException(requestId, e); } finally { _handlingRequests.remove(requestId); } _channel.sink.add(response); }, whenNotification: handleNotification, whenAbortRequest: (abort) { if (_handlingRequests.remove(abort.requestId) case final token?) { token.abort(); } }, whenStartFileSystemServer: (_) => throw StateError('Should only be a top-level message'), ); } /// Sends a request to the other end and expects a response of the /// [expectedType]. /// /// The returned future completes with an error if the type doesn't match /// what's expected (for instance because an [ErrorResponse]) is sent instead. /// It also completes with an error if the channel gets closed in the /// meantime. /// /// If [abortTrigger] is given and completes before this request is completed, /// a request to cancel the request is sent to the remote. Future sendRequest( Request request, MessageType expectedType, { Future? abortTrigger, }) async { final id = _nextRequestId++; final completer = _responses[id] = Completer.sync(); _channel.sink.add(request..requestId = id); var hasResponse = false; if (abortTrigger != null) { abortTrigger.whenComplete(() { if (!hasResponse) { _channel.sink.add(newAbortRequest(requestId: id)); } }); } final response = await completer.future; hasResponse = true; hasResponse = true; if (response.type == expectedType.name) { return response as Res; } else { throw response.interpretAsError(); } } void sendNotification(Notification notification) { _channel.sink.add(notification); } void handleNotification(Notification notification); Future close([Object? error]) async { await _channel.sink.close(); for (final response in _responses.values) { response.completeError( StateError('Channel closed before receiving response: $error'), ); } _responses.clear(); } } extension InjectErrors on StreamChannel { /// Returns a stream channel reporting error events from [target] through its /// [StreamChannel.stream]. StreamChannel injectErrorsFrom(EventTarget target) { return changeStream((original) { return Stream.multi((listener) { // Listen to the original stream... final upstreamSubscription = original.listen( listener.addSync, onDone: listener.closeSync, onError: listener.addErrorSync, cancelOnError: false, ); // And also to errors which are forwarded to the listener final errorSubscription = EventStreamProviders.errorEvent .forTarget(target) .listen(listener.addErrorSync); // Don't pause the error subscription, but propagate pauses upstream. listener ..onPause = upstreamSubscription.pause ..onResume = upstreamSubscription.resume ..onCancel = () async { await upstreamSubscription.cancel(); await errorSubscription.cancel(); }; }); }); } } ================================================ FILE: sqlite3_web/lib/src/client.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'dart:typed_data'; import 'package:sqlite3/wasm.dart' hide WorkerOptions; import 'package:stream_channel/stream_channel.dart'; import 'package:web/web.dart' hide Response, Request, FileSystem, Notification, Lock; import 'locks.dart'; import 'types.dart'; import 'channel.dart'; import 'database.dart'; import 'protocol.dart'; import 'shared.dart'; import 'worker_connector.dart'; final class _CommitOrRollbackStream { StreamSubscription? workerSubscription; final StreamController controller = StreamController.broadcast(); } final class RemoteDatabase implements Database { final WorkerConnection connection; final int databaseId; final Completer _isClosed = Completer(); StreamSubscription? _updateNotificationSubscription; final StreamController _updates = StreamController.broadcast(); final _CommitOrRollbackStream _commits = _CommitOrRollbackStream(); final _CommitOrRollbackStream _rollbacks = _CommitOrRollbackStream(); RemoteDatabase({required this.connection, required this.databaseId}) { connection.closed.then((_) { if (!isClosed) { _isClosed.complete(); _updates.close(); _rollbacks.controller.close(); _commits.controller.close(); } }); _updates ..onListen = (() { _updateNotificationSubscription ??= connection.notifications.stream .listen((notification) { if (notification.type == MessageType.notifyUpdate.name) { if (notification.databaseId == databaseId) { final rawUpdate = notification as UpdateNotification; _updates.add(rawUpdate.sqliteUpdate); } } }); if (!isClosed) { connection.sendRequest( newUpdateStreamRequest( action: true, requestId: 0, databaseId: databaseId, ), MessageType.simpleSuccessResponse, ); } }) ..onCancel = (() { _updateNotificationSubscription?.cancel(); _updateNotificationSubscription = null; if (!isClosed) { connection.sendRequest( newUpdateStreamRequest( action: false, requestId: 0, databaseId: databaseId, ), MessageType.simpleSuccessResponse, ); } }); _setupCommitOrRollbackStream( _commits, (action) => newCommitsStreamRequest( action: action, requestId: 0, databaseId: databaseId, ), MessageType.notifyCommit.name, ); _setupCommitOrRollbackStream( _rollbacks, (action) => newRollbackStreamRequest( action: action, requestId: 0, databaseId: databaseId, ), MessageType.notifyRollback.name, ); } void _setupCommitOrRollbackStream( _CommitOrRollbackStream stream, StreamRequest Function(bool action) generateRequest, String notificationType, ) { stream.controller ..onListen = (() { stream.workerSubscription ??= connection.notifications.stream.listen(( notification, ) { if (notification.type == notificationType && notification.databaseId == databaseId) { stream.controller.add(null); } }); if (!isClosed) { connection.sendRequest( generateRequest(true), MessageType.simpleSuccessResponse, ); } }) ..onCancel = (() { stream.workerSubscription?.cancel(); stream.workerSubscription = null; if (!isClosed) { connection.sendRequest( generateRequest(false), MessageType.simpleSuccessResponse, ); } }); } @override bool get isClosed => _isClosed.isCompleted; @override Future get closed => _isClosed.future; @override Future dispose() async { if (!isClosed) { _isClosed.complete( ( _updates.close(), _rollbacks.controller.close(), _commits.controller.close(), connection.sendRequest( newCloseDatabase(requestId: 0, databaseId: databaseId), MessageType.simpleSuccessResponse, ), ).wait, ); } return await closed; } @override Future customRequest( JSAny? request, { LockToken? token, Future? abortTrigger, }) async { final response = await connection.sendRequest( newCustomRequest( payload: request, requestId: 0, databaseId: databaseId, lockId: token != null ? lockTokenToId(token) : null, ), MessageType.simpleSuccessResponse, abortTrigger: abortTrigger, ); return response.response; } @override Future> execute( String sql, { List parameters = const [], bool checkInTransaction = false, LockToken? token, Future? abortTrigger, }) async { final (serializedParameters, typeVector) = TypeCode.encodeValues( parameters, ); final response = await connection.sendRequest( newRunQuery( requestId: 0, databaseId: databaseId, lockId: token == null ? null : lockTokenToId(token), sql: sql, parameters: serializedParameters, typeVector: typeVector, returnRows: false, checkInTransaction: checkInTransaction, ), MessageType.rowsResponse, abortTrigger: abortTrigger, ); return ( autocommit: response.autoCommit, lastInsertRowid: response.lastInsertRowId, result: null, ); } @override Future requestLock( Future Function(LockToken token) body, { Future? abortTrigger, }) async { final response = await connection.sendRequest( newRequestExclusiveLock(requestId: 0, databaseId: databaseId), MessageType.simpleSuccessResponse, abortTrigger: abortTrigger, ); final lockId = (response.response as JSNumber).toDartInt; try { return await body(lockTokenFromId(lockId)); } finally { await connection.sendRequest( newReleaseLock(requestId: 0, databaseId: databaseId, lockId: lockId), MessageType.simpleSuccessResponse, ); } } @override late final FileSystem fileSystem = RemoteFileSystem(this); @override Future> select( String sql, { List parameters = const [], bool checkInTransaction = false, LockToken? token, Future? abortTrigger, }) async { final (serializedParameters, typeVector) = TypeCode.encodeValues( parameters, ); final response = await connection.sendRequest( newRunQuery( requestId: 0, databaseId: databaseId, lockId: token == null ? null : lockTokenToId(token), sql: sql, parameters: serializedParameters, typeVector: typeVector, returnRows: true, checkInTransaction: checkInTransaction, ), MessageType.rowsResponse, abortTrigger: abortTrigger, ); return ( autocommit: response.autoCommit, lastInsertRowid: response.lastInsertRowId, result: response.readResultSet()!, ); } @override Stream get updates => _updates.stream; @override Stream get rollbacks => _rollbacks.controller.stream; @override Stream get commits => _commits.controller.stream; @override Future additionalConnection() async { final response = await connection.sendRequest( newOpenAdditionalConnection(requestId: 0, databaseId: databaseId), MessageType.endpointResponse, ); final endpoint = response.endpoint; return (endpoint.port, endpoint.lockName!); } } final class RemoteFileSystem implements FileSystem { final RemoteDatabase database; RemoteFileSystem(this.database); @override Future exists(FileType type) async { final response = await database.connection.sendRequest( newFileSystemExistsQuery( databaseId: database.databaseId, fsType: type.index, requestId: 0, ), MessageType.simpleSuccessResponse, ); return (response.response as JSBoolean).toDart; } @override Future flush() async { await database.connection.sendRequest( newFileSystemFlushRequest(databaseId: database.databaseId, requestId: 0), MessageType.simpleSuccessResponse, ); } @override Future readFile(FileType type) async { final response = await database.connection.sendRequest( newFileSystemAccess( databaseId: database.databaseId, requestId: 0, buffer: null, fsType: type.index, ), MessageType.simpleSuccessResponse, ); final buffer = (response.response as JSArrayBuffer); return buffer.toDart.asUint8List(); } @override Future writeFile(FileType type, Uint8List content) async { // We need to copy since we're about to transfer contents over final copy = Uint8List(content.length)..setAll(0, content); await database.connection.sendRequest( newFileSystemAccess( databaseId: database.databaseId, requestId: 0, buffer: copy.buffer.toJS, fsType: type.index, ), MessageType.simpleSuccessResponse, ); } } final class WorkerConnection extends ProtocolChannel { final StreamController notifications = StreamController.broadcast(); final Future Function(JSAny?) handleCustomRequest; WorkerConnection(super.channel, this.handleCustomRequest) { closed.whenComplete(notifications.close); } @override FutureOr handleCustom( CustomRequest request, AbortSignal abortSignal, ) async { final response = await handleCustomRequest(request.payload); return newSimpleSuccessResponse( response: response, requestId: request.requestId, ); } Future requestDatabase({ required Uri wasmUri, required String databaseName, required DatabaseImplementation implementation, required bool onlyOpenVfs, required JSAny? additionalOptions, }) async { final response = await sendRequest( newOpenRequest( requestId: 0, wasmUri: wasmUri.toString(), databaseName: databaseName, storageMode: implementation.resolveToVfs().toJS, onlyOpenVfs: onlyOpenVfs, additionalData: additionalOptions, ), MessageType.simpleSuccessResponse, ); return RemoteDatabase( connection: this, databaseId: (response.response as JSNumber).toDartInt, ); } @override void handleNotification(Notification notification) { notifications.add(notification); } } final class DatabaseClient implements WebSqlite { final WorkerConnector workers; final Uri wasmUri; final DatabaseController _localController; final Future Function(JSAny?) _handleCustomRequest; final Mutex _startWorkers = Mutex(); bool _startedWorkers = false; WorkerConnection? _connectionToDedicated; WorkerConnection? _connectionToShared; WorkerConnection? _connectionToDedicatedInShared; WorkerConnection? _connectionToLocal; final Set _missingFeatures = {}; DatabaseClient( this.workers, this.wasmUri, this._localController, Future Function(JSAny?)? handleCustomRequest, ) : _handleCustomRequest = handleCustomRequest ?? ((_) async { throw StateError('No custom request handler installed'); }); Future startWorkers() { return _startWorkers.withCriticalSection(() async { if (_startedWorkers) { return; } _startedWorkers = true; await _startDedicated(); await _startShared(); }); } WorkerConnection _connection(StreamChannel channel) { return WorkerConnection(channel, _handleCustomRequest); } Future _startDedicated() async { WorkerHandle? dedicated; try { dedicated = workers.spawnDedicatedWorker(); } on Object { // Add missing feature and move on. } if (dedicated == null) { _missingFeatures.add(MissingBrowserFeature.dedicatedWorkers); return; } final (endpoint, channel) = await createChannel(); newConnectRequest( endpoint: endpoint, requestId: 0, databaseId: null, ).sendToWorker(dedicated); _connectionToDedicated = _connection( channel.injectErrorsFrom(dedicated.targetForErrorEvents), ); } Future _startShared() async { WorkerHandle? shared; try { shared = workers.spawnSharedWorker(); } on Object { // Add missing feature and move on. } if (shared == null) { _missingFeatures.add(MissingBrowserFeature.sharedWorkers); return; } final (endpoint, channel) = await createChannel(); newConnectRequest( endpoint: endpoint, requestId: 0, databaseId: null, ).sendToWorker(shared); _connectionToShared = _connection( channel.injectErrorsFrom(shared.targetForErrorEvents), ); } Future _connectToDedicatedInShared() { return _startWorkers.withCriticalSection(() async { if (_connectionToDedicatedInShared case final conn?) { return conn; } final (endpoint, channel) = await createChannel(); await _connectionToShared!.sendRequest( newConnectRequest(requestId: 0, endpoint: endpoint, databaseId: null), MessageType.simpleSuccessResponse, ); return _connectionToDedicatedInShared = _connection(channel); }); } Future _connectToLocal() async { return _startWorkers.withCriticalSection(() async { if (_connectionToLocal case final conn?) { return conn; } final local = FakeWorkerEnvironment(); final (endpoint, channel) = await createChannel(); WebSqlite.workerEntrypoint( controller: _localController, environment: local, ); newConnectRequest( requestId: 0, endpoint: endpoint, databaseId: null, ).sendToWorker(local); return _connectionToLocal = _connection(channel); }); } @override Future deleteDatabase({ required String name, required StorageMode storage, }) async { switch (storage) { case StorageMode.opfs: await SimpleOpfsFileSystem.deleteFromStorage(pathForOpfs(name)); case StorageMode.indexedDb: await IndexedDbFileSystem.deleteDatabase(name); case StorageMode.inMemory: } } @override Future runFeatureDetection({ String? databaseName, }) async { await startWorkers(); final existing = {}; final available = []; var workersReportedIndexedDbSupport = false; Future dedicatedCompatibilityCheck( WorkerConnection connection, ) async { SimpleSuccessResponse response; try { response = await connection .sendRequest( newDedicatedCompatibilityCheck( requestId: 0, databaseName: databaseName, ), MessageType.simpleSuccessResponse, ) .timeout(_workerInitializationTimeout); } on Object { return; } final result = CompatibilityResult.fromJS(response.response as JSObject); existing.addAll(result.existingDatabases); if (result.canUseIndexedDb) { available.add(DatabaseImplementation.indexedDbUnsafeWorker); workersReportedIndexedDbSupport = true; } else { _missingFeatures.add(MissingBrowserFeature.indexedDb); } if (!result.canUseOpfs) { _missingFeatures.add(MissingBrowserFeature.fileSystemAccess); } if (!result.opfsSupportsReadWriteUnsafe) { _missingFeatures.add( MissingBrowserFeature.createSyncAccessHandleReadWriteUnsafe, ); } if (!result.supportsSharedArrayBuffers) { _missingFeatures.add(MissingBrowserFeature.sharedArrayBuffers); } if (!result.dedicatedWorkersCanNest) { _missingFeatures.add(MissingBrowserFeature.dedicatedWorkersCanNest); } // For the OPFS storage layer in dedicated workers, we're spawning two // nested workers communicating through a synchronous channel created by // Atomics and SharedArrayBuffers. if (result.canUseOpfs && result.supportsSharedArrayBuffers && result.dedicatedWorkersCanNest) { available.add(DatabaseImplementation.opfsAtomics); } // Another option is to use a single worker opening files with // readwrite-unsafe. That allows opening the database in multiple tabs, // but we'd then have to use weblocks to coordinate access. if (result.canUseOpfs && result.opfsSupportsReadWriteUnsafe) { available.add(DatabaseImplementation.opfsWithExternalLocks); } } Future sharedCompatibilityCheck(WorkerConnection connection) async { SimpleSuccessResponse response; try { response = await connection .sendRequest( newSharedCompatibilityCheck( requestId: 0, databaseName: databaseName, ), MessageType.simpleSuccessResponse, ) .timeout(_workerInitializationTimeout); } on Object { return; } final result = CompatibilityResult.fromJS(response.response as JSObject); existing.addAll(result.existingDatabases); if (result.canUseIndexedDb) { workersReportedIndexedDbSupport = true; available.add(DatabaseImplementation.indexedDbShared); } else { _missingFeatures.add(MissingBrowserFeature.indexedDb); } if (result.canUseOpfs) { available.add(DatabaseImplementation.opfsShared); } else if (result.sharedCanSpawnDedicated) { // Only report OPFS as unavailable if we can spawn dedicated workers. // If we can't, it's known that we can't use OPFS. _missingFeatures.add(MissingBrowserFeature.fileSystemAccess); } available.add(DatabaseImplementation.inMemoryShared); if (!result.sharedCanSpawnDedicated) { _missingFeatures.add( MissingBrowserFeature.dedicatedWorkersInSharedWorkers, ); } } if (_connectionToDedicated case final dedicated?) { await dedicatedCompatibilityCheck(dedicated); } if (_connectionToShared case final shared?) { await sharedCompatibilityCheck(shared); } available.add(DatabaseImplementation.inMemoryLocal); if (workersReportedIndexedDbSupport || await checkIndexedDbSupport()) { // If the workers can use IndexedDb, so can we. available.add(DatabaseImplementation.indexedDbUnsafeLocal); } return FeatureDetectionResult( missingFeatures: _missingFeatures.toList(), existingDatabases: existing.toList(), availableImplementations: available, ); } Future connectToExisting(SqliteWebEndpoint endpoint) async { final channel = _connection( WebEndpoint(port: endpoint.$1, lockName: endpoint.$2).connect(), ); return RemoteDatabase( connection: channel, // The database id for this pre-existing connection is always zero. // It gets assigned by the worker handling the OpenAdditonalConnection // request. databaseId: 0, ); } @override Future connect( String name, DatabaseImplementation implementation, { bool onlyOpenVfs = false, JSAny? additionalOptions, }) async { await startWorkers(); WorkerConnection connection; switch (implementation.access) { case AccessMode.throughSharedWorker: if (implementation.storage == StorageMode.opfs) { // Shared workers don't support OPFS, but we can spawn a dedicated // worker inside of the shared worker and connect to that one. connection = await _connectToDedicatedInShared(); } else { connection = _connectionToShared!; } case AccessMode.throughDedicatedWorker: connection = _connectionToDedicated!; case AccessMode.inCurrentContext: connection = await _connectToLocal(); } return await connection.requestDatabase( wasmUri: wasmUri, databaseName: name, implementation: implementation, onlyOpenVfs: onlyOpenVfs, additionalOptions: additionalOptions, ); } @override Future connectToRecommended( String name, { bool onlyOpenVfs = false, JSAny? additionalOptions, }) async { final probed = await runFeatureDetection(databaseName: name); // If we have an existing database in storage, we want to keep using that // format to avoid data loss (e.g. after a browser update that enables a // otherwise preferred storage implementation). In the future, we might want // to consider migrating between storage implementations as well. final availableImplementations = probed.availableImplementations.toList(); checkExisting: for (final (location, name) in probed.existingDatabases) { if (name == name) { // If any of the implementations for this location is still availalable, // we want to use it instead of another location. final locationIsAccessible = availableImplementations.any( (e) => e.storage == location, ); if (locationIsAccessible) { availableImplementations.removeWhere((e) => e.storage != location); break checkExisting; } } } // Enum values are ordered by preferrability, so just pick the best option // left. availableImplementations.sort(preferrableMode); final implementation = availableImplementations.firstOrNull ?? DatabaseImplementation.inMemoryLocal; final database = await connect( name, implementation, onlyOpenVfs: onlyOpenVfs, additionalOptions: additionalOptions, ); return ConnectToRecommendedResult( database: database, features: probed, implementation: implementation, ); } /// Compares available ways to access databases by the performance and /// and reliability of the implementation. /// /// Returns negative values if `a` is more preferrable than `b` and positive /// values if `b` is more preferrable than `a`. static int preferrableMode( DatabaseImplementation a, DatabaseImplementation b, ) { // First, prefer OPFS (an actual file system API) over IndexedDB, a custom // file system implementation. if (a.storage != b.storage) { return a.storage.index.compareTo(b.storage.index); } // In a storage API, prefer shared workers which cause less contention // because we can actually share database resources between tabs. if (a.access != b.access) { return a.access.index.compareTo(b.access.index); } // Storage and access are only equal between opfsAtomics and // opfsWithExternalLocks. We prefer the later. return a.index.compareTo(b.index); } static const _workerInitializationTimeout = Duration(seconds: 1); } extension on DatabaseImplementation { FileSystemImplementation resolveToVfs() { return switch (storage) { StorageMode.opfs => switch (this) { DatabaseImplementation.opfsAtomics => FileSystemImplementation.opfsAtomics, DatabaseImplementation.opfsShared => FileSystemImplementation.opfsShared, DatabaseImplementation.opfsWithExternalLocks => FileSystemImplementation.opfsExternalLocks, _ => throw AssertionError('Unknown OPFS implementation'), }, StorageMode.indexedDb => FileSystemImplementation.indexedDb, StorageMode.inMemory => FileSystemImplementation.inMemory, }; } } ================================================ FILE: sqlite3_web/lib/src/database.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'package:meta/meta.dart'; import 'package:sqlite3/wasm.dart'; import 'package:web/web.dart' hide FileSystem; import 'types.dart'; import 'client.dart'; import 'worker.dart'; import 'worker_connector.dart'; /// A controller responsible for opening databases in the worker. abstract base class DatabaseController { /// Constant base constructor. const DatabaseController(); /// Loads a wasm module from the given [uri] with the specified [headers]. Future loadWasmModule( Uri uri, { Map? headers, }) async { return WasmSqlite3.loadFromUrl(uri, headers: headers); } /// Opens a database in the pre-configured [sqlite3] instance under the /// specified [path] in the given [vfs]. /// /// This should virtually always call `sqlite3.open(path, vfs: vfs)` and wrap /// the result in a [WorkerDatabase] subclass. /// /// The [additionalData] can be set by clients when opening the database. It /// might be useful to transport additional options relevant when opening the /// database. Future openDatabase( WasmSqlite3 sqlite3, String path, String vfs, JSAny? additionalData, ); /// Handles custom requests from clients that are not bound to a database. /// /// This is not currently used. Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ); } /// A custom request sent from a client to a worker hosting a database. final class CustomClientRequest { /// The custom message sent from the client. final JSAny? request; /// A signal allowing clients to abort this request. /// /// Implementations can query this signal to throw an [AbortException] instead /// of completing their work if that's more efficient. There is no guarantee /// that aborting a signal actually cancels the pending task, though. final AbortSignal abortSignal; CustomClientRequest({required this.request, required this.abortSignal}); } /// A [CustomClientRequest] sent to a worker-managed database final class CustomClientDatabaseRequest extends CustomClientRequest { /// Runs a synchronous function with exclusive access to the underlying /// database. /// /// This respects the lock token sent by [Database.customRequest], allowing /// custom requests to integrate with the locking mechanism of /// [Database.execute] and [Database.requestLock]. /// /// Requesting a lock automatically respects an [abortSignal]. final Future Function(T Function() inner) useLock; CustomClientDatabaseRequest({ required super.request, required super.abortSignal, required this.useLock, }); } /// An endpoint that can be used, by any running JavaScript context in the same /// website, to connect to an existing [Database]. /// /// These endpoints are created by calling [Database.additionalConnection] and /// consist of a [MessagePort] and a [String] internally identifying the /// connection. Both objects can be transferred over send ports towards another /// worker or context. That context can then use [WebSqlite.connectToPort] to /// connect to the port already opened. typedef SqliteWebEndpoint = (MessagePort, String); typedef DatabaseResult = ({T result, bool autocommit, int lastInsertRowid}); /// Abstraction over a database either available locally or in a remote worker. abstract class Database { FileSystem get fileSystem; /// A relayed stream of [CommonDatabase.updates] from the remote worker. /// /// {@template sqlite3_web_streams} /// This stream only emits events emitted on the worker hosting the database. /// In [DatabaseImplementation]s where each tab has its own worker, events /// from different tabs would not be reflected in the returned stream. /// /// Updates are only sent across worker channels while a subscription to this /// stream is active. /// {@endtemplate} Stream get updates; /// A relayed stream of events triggered by rollbacks from the remote worker. /// /// {@macro sqlite3_web_streams} Stream get rollbacks; /// A relayed stream of events triggered by commits from the remote worker. /// /// {@macro sqlite3_web_streams} Stream get commits; /// A future that resolves when the database is closed. /// /// Typically, databases are closed because [dispose] is called. For databases /// opened with [WebSqlite.connectToPort] however, it's possible that the /// original worker hosting the database gets closed without this [Database] /// instance being explicitly [dispose]d. In those cases, monitoring [closed] /// is useful to react to databases closing. Future get closed; /// Whether the database is currently closed. bool get isClosed; /// Closes this database and instructs the worker to release associated /// resources. /// /// No methods may be called after a call to [dispose]. Future dispose(); /// Prepares [sql] and executes it with the given [parameters]. /// /// If [checkInTransaction] is enabled, the host will verify that the /// autocommit mode is disabled before running the statement (and report an /// exception otherwise). /// /// The [abortTrigger] can be used to abort the request. When that future /// completes before the lock has been granted, the future may complete /// with a [AbortException] without running the statement. Future> execute( String sql, { List parameters = const [], bool checkInTransaction = false, LockToken? token, Future? abortTrigger, }); /// Prepares [sql], executes it with the given [parameters] and returns the /// [ResultSet]. /// /// If [checkInTransaction] is enabled, the host will verify that the /// autocommit mode is disabled before running the statement (and report an /// exception otherwise). /// /// The [abortTrigger] can be used to abort the request. When that future /// completes before the lock has been granted, the future may complete /// with a [AbortException] without running the statement. Future> select( String sql, { List parameters = const [], bool checkInTransaction = false, LockToken? token, Future? abortTrigger, }); /// Runs [body] with an exclusive lock on the database. /// /// This can be used to implement transactions on the database, where multiple /// statements may have to run without interference from other tabs. /// /// The callback receives a [LockToken], which can be passed to [select] and /// [execute] to run statements. /// /// The [abortTrigger] can be used to abort requesting the lock. When that /// future completes before the lock has been granted, the future may complete /// with a [AbortException] without ever invoking [body]. Future requestLock( Future Function(LockToken lock) body, { Future? abortTrigger, }); /// Sends a custom request to the worker database. /// /// Custom requests are handled by implementing `handleCustomRequest` in your /// `WorkerDatabase` subclass. Future customRequest( JSAny? request, { LockToken? token, Future? abortTrigger, }); /// Creates a [MessagePort] (a transferrable object that can be sent to /// another JavaScript context like a worker) that can be used with /// [WebSqlite.connectToPort] to open another instance of this database /// remotely. Future additionalConnection(); } // A token representing a held lock, available to callbacks in /// [Database.requestLock]. extension type LockToken._(int _id) {} @internal LockToken lockTokenFromId(int id) { return LockToken._(id); } @internal int lockTokenToId(LockToken token) { return token._id; } /// A connection from a client from the perspective of a worker. abstract class ClientConnection { /// The unique id for this connection. int get id; /// A future that completes when the connection get closed, for instance /// because the owning tab is closed. Future get closed; /// Sends a custom request __towards the client__. Future customRequest(JSAny? request); } /// A [CommonDatabase] wrapped with functionality to handle custom requests. abstract class WorkerDatabase { /// The database made available to the worker. CommonDatabase get database; /// Handles a custom [request] (encoded as any JS value) from the /// [connection]. /// /// The response is sent over the channel and completes a /// [Database.customRequest] call for clients. Future handleCustomRequest( ClientConnection connection, CustomClientDatabaseRequest request, ); } /// The result of [WebSqlite.connectToRecommended], containing the opened /// [database] as well as the [FeatureDetectionResult] leading to that database /// implementation being chosen. final class ConnectToRecommendedResult { /// The opened [Database] hosted on another worker. final Database database; /// The missing or available browser features that lead to the current /// [DatabaseImplementation] being selected. final FeatureDetectionResult features; /// The [DatabaseImplementation] used. final DatabaseImplementation implementation; StorageMode get storage => implementation.storage; AccessMode get access => implementation.access; ConnectToRecommendedResult({ required this.database, required this.features, required this.implementation, }); } /// Provides asynchronous access to databases hosted in web workers. /// /// Please see the readme of the `sqlite3_web` package for an overview on how /// to set up and use this package. abstract class WebSqlite { /// Deletes a database from the [storage] if it exists. /// /// This method should not be called while the database is still open. Future deleteDatabase({ required String name, required StorageMode storage, }); /// Tries to find features related to storing and accessing databases. /// /// The [databaseName] can optionally be used to make /// [FeatureDetectionResult.existingDatabases] more reliable, as IndexedDB /// databases are not found otherwise. Future runFeatureDetection({String? databaseName}); /// Connects to a database identified by its [name] using the selected /// [DatabaseImplementation]. /// /// For a list of implementations supported by the current browser, use /// [runFeatureDetection]. /// /// When [onlyOpenVfs] is enabled, only the underlying file system for the /// database is initialized before [connect] returns. By default, the database /// will also be opened in [connect]. Otherwise, the database will be opened /// on the worker when it's first used. /// Only opening the VFS can be used to, for instance, check if the database /// already exists and to initialize it manually if it doesn't. /// /// The optional [additionalOptions] must be sendable over message ports and /// is passed to [DatabaseController.openDatabase] on the worker opening the /// database. Future connect( String name, DatabaseImplementation implementation, { bool onlyOpenVfs = false, JSAny? additionalOptions, }); /// Starts a feature detection via [runFeatureDetection] and then [connect]s /// to the best database available. /// /// When [onlyOpenVfs] is enabled, only the underlying file system for the /// database is initialized before [connect] returns. By default, the database /// will also be opened in [connect]. Otherwise, the database will be opened /// on the worker when it's first used. /// Only opening the VFS can be used to, for instance, check if the database /// already exists and to initialize it manually if it doesn't. /// /// The optional [additionalOptions] must be sendable over message ports and /// is passed to [DatabaseController.openDatabase] on the worker opening the /// database. Future connectToRecommended( String name, { bool onlyOpenVfs = false, JSAny? additionalOptions, }); /// Entrypoints for workers hosting databases. static void workerEntrypoint({ required DatabaseController controller, WorkerEnvironment? environment, }) { WorkerRunner( controller, environment ?? WorkerEnvironment(), ).handleRequests(); } /// Opens a [WebSqlite] instance by connecting to workers with the given /// [workers] connector and using the [wasmModule] url to load sqlite3. /// /// The [controller] is used when connecting to a sqlite3 database without /// using workers. It should typically be the same implementation as the one /// passed to [workerEntrypoint]. /// /// The optional [handleCustomRequest] function is invoked when the controller /// sends a custom request to the client (via [ClientConnection.customRequest]). /// If it's absent, the default is to throw an exception when called. static WebSqlite open({ required WorkerConnector workers, required Uri wasmModule, DatabaseController? controller, Future Function(JSAny?)? handleCustomRequest, }) { return DatabaseClient( workers, wasmModule, controller ?? const _DefaultDatabaseController(), handleCustomRequest, ); } /// Connects to an endpoint previously obtained with [Database.additionalConnection]. /// /// As a [SqliteWebEndpoint] record only consists of fields that are /// transferrable in JavaScript, these endpoints can be sent to other workers, /// which can then call [connectToPort] to open a database connection /// originally established by another JavaScript connection. /// /// Note that, depending on the access mode, the returned [Database] may only /// be valid as long as the original [Database] where [Database.additionalConnection] /// was called. This limitation does not exist for databases hosted by shared /// workers. /// /// The optional [handleCustomRequest] function is invoked when the controller /// sends a custom request to the client (via [ClientConnection.customRequest]). /// If it's absent, the default is to throw an exception when called. static Future connectToPort( SqliteWebEndpoint endpoint, { Future Function(JSAny?)? handleCustomRequest, }) { final client = DatabaseClient( const WorkerConnector.unsupported(), Uri.base, const _DefaultDatabaseController(), handleCustomRequest, ); return client.connectToExisting(endpoint); } } final class _DefaultDatabaseController extends DatabaseController { const _DefaultDatabaseController(); @override Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ) { throw UnimplementedError(); } @override Future openDatabase( WasmSqlite3 sqlite3, String path, String vfs, JSAny? additionalOptions, ) async { return _DefaultWorkerDatabase(sqlite3.open(path, vfs: vfs)); } } final class _DefaultWorkerDatabase extends WorkerDatabase { @override final CommonDatabase database; _DefaultWorkerDatabase(this.database); @override Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ) { throw UnimplementedError(); } } ================================================ FILE: sqlite3_web/lib/src/locks.dart ================================================ import 'dart:async'; import 'dart:collection'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'package:web/web.dart'; import 'types.dart'; @JS('navigator') external Navigator get _navigator; class WebLocks { final LockManager _lockManager; WebLocks._(this._lockManager); Future request(String name, {AbortSignal? abortSignal}) { final gotLock = Completer.sync(); JSPromise callback(JSAny lock) { final completer = Completer.sync(); gotLock.complete(HeldLock._(completer)); return completer.future.toJS; } final options = LockOptions(); if (abortSignal case final signal?) { options.signal = signal; } _lockManager.request(name, options, callback.toJS).toDart.onError((e, s) { final domError = e as DOMException; if (!gotLock.isCompleted) { if (domError.name == 'AbortError') { gotLock.completeError(AbortException(), s); } else { gotLock.completeError(domError, s); } } return null; }); return gotLock.future; } static WebLocks? instance = (_navigator as JSObject).hasProperty('locks'.toJS).toDart ? WebLocks._(_navigator.locks) : null; } class HeldLock { final Completer _completer; HeldLock._(this._completer); void release() => _completer.complete(); } final class DatabaseLocks { final String lockName; final Mutex _dartMutex = Mutex(); /// Whether this database needs a lock implementation providing exclusive /// access across tabs. /// /// When a database is hosted by a shared worker, this is not necessary and /// we can use a Dart implementation with less overhead. /// For databases hosted on multiple dedicated workers, the navigator lock API /// is necessary to manage exclusive access. final bool needsInterContextLocks; DatabaseLocks(this.lockName, this.needsInterContextLocks); /// Returns whether a synchronous block could run immediately. /// /// This is the case if no inter-context locks are required and the local /// mutex is not currently held. Because the inner block would run /// synchronously, no concurrency is possible and we don't need to explicitly /// update the lock's state. bool get canRunSynchronousBlockDirectly { return !needsInterContextLocks && !_dartMutex._inCriticalSection; } Future lock( FutureOr Function() criticalSection, AbortSignal? abortSignal, ) async { if (needsInterContextLocks) { final held = await WebLocks.instance!.request( lockName, abortSignal: abortSignal, ); return Future(criticalSection).whenComplete(held.release); } return _dartMutex.withCriticalSection(criticalSection, abort: abortSignal); } } /// A simple async mutex implemented in Dart. final class Mutex { bool _inCriticalSection = false; final Queue _waiting = Queue(); Future withCriticalSection( FutureOr Function() action, { AbortSignal? abort, }) async { var holdsMutex = false; void markCompleted() { if (!holdsMutex) { return; } if (_waiting.isNotEmpty) { _waiting.removeFirst()(); } else { _inCriticalSection = false; } } if (!_inCriticalSection) { assert(_waiting.isEmpty); _inCriticalSection = true; holdsMutex = true; return Future.sync(action).whenComplete(markCompleted); } else { assert(_inCriticalSection); final completer = Completer.sync(); void complete() { holdsMutex = true; completer.complete(Future.sync(action)); } late StreamSubscription abortSubscription; abortSubscription = EventStreamProviders.abortEvent .forTarget(abort) .listen((_) { abortSubscription.cancel(); if (!completer.isCompleted) { final didRemove = _waiting.remove(complete); // The only way for waiters to get removed is for [complete] to get // called, so we wouldn't enter this branch. assert(didRemove); completer.completeError(const AbortException()); } }); _waiting.addLast(complete); return completer.future.whenComplete(markCompleted); } } } ================================================ FILE: sqlite3_web/lib/src/protocol/compatibility_result.dart ================================================ import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import '../types.dart'; final class CompatibilityResult { final List existingDatabases; // Fields set when a shared worker replies. /// Whether shared workers are allowed to spawn dedicated workers. /// /// As far as the web standard goes, they're supposed to. It allows us to /// spawn a dedicated worker using OPFS in the context of a shared worker, /// which is a very reliable storage implementation. Sadly, only Firefox has /// implemented this feature. final bool sharedCanSpawnDedicated; /// Whether dedicated workers can use OPFS. /// /// The file system API is only available in dedicated workers, so if they /// can't use it, the browser just likely doesn't support that API. final bool canUseOpfs; /// Whether dedicated workers can use the proposed [New FS locking scheme](https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md#modes-of-creating-a-filesystemsyncaccesshandle). /// /// While this is not a standardized web API yet, it is supported in Chrome /// and enables a more efficient way to host databases. So, we want to check /// for it. final bool opfsSupportsReadWriteUnsafe; /// Whether IndexedDB is available to shared workers. /// /// On some browsers, IndexedDB is not available in private/incognito tabs. final bool canUseIndexedDb; /// Whether dedicated workers can use shared array buffers and the atomics /// API. /// /// This is required for the synchronous channel used to host an OPFS /// filesystem between threads. However, it is only available when the page is /// served with special headers for security purposes. final bool supportsSharedArrayBuffers; /// Whether dedicated workers can spawn their own dedicated workers. /// /// We need two dedicated workers with a synchronous channel between them to /// host an OPFS filesystem. final bool dedicatedWorkersCanNest; CompatibilityResult({ required this.existingDatabases, required this.sharedCanSpawnDedicated, required this.canUseOpfs, required this.opfsSupportsReadWriteUnsafe, required this.canUseIndexedDb, required this.supportsSharedArrayBuffers, required this.dedicatedWorkersCanNest, }); factory CompatibilityResult.fromJS(JSObject result) { final existing = []; final encodedExisting = (result['a'] as JSArray).toDart; for (var i = 0; i < encodedExisting.length / 2; i++) { final mode = StorageMode.values.byName(encodedExisting[i * 2].toDart); final name = encodedExisting[i * 2 + 1].toDart; existing.add((mode, name)); } return CompatibilityResult( existingDatabases: existing, sharedCanSpawnDedicated: (result['b'] as JSBoolean).toDart, canUseOpfs: (result['c'] as JSBoolean).toDart, canUseIndexedDb: (result['d'] as JSBoolean).toDart, supportsSharedArrayBuffers: (result['e'] as JSBoolean).toDart, dedicatedWorkersCanNest: (result['f'] as JSBoolean).toDart, opfsSupportsReadWriteUnsafe: (result['g'] as JSBoolean).toDart, ); } JSObject get toJS { final encodedDatabases = [ for (final existing in existingDatabases) ...[ existing.$1.name.toJS, existing.$2.toJS, ], ]; return JSObject() ..['a'] = encodedDatabases.toJS ..['b'] = sharedCanSpawnDedicated.toJS ..['c'] = canUseOpfs.toJS ..['d'] = canUseIndexedDb.toJS ..['e'] = supportsSharedArrayBuffers.toJS ..['f'] = dedicatedWorkersCanNest.toJS ..['g'] = opfsSupportsReadWriteUnsafe.toJS; } } ================================================ FILE: sqlite3_web/lib/src/protocol/dsl.dart ================================================ import 'package:meta/meta_meta.dart'; /// Annotation on protocol messages that can't be instantiated. const abstract = 'abstract'; /// Annotation on protocol fields to indicate that they need to be passed in the /// transfer array of `postMessage` calls to e.g. transfer typed buffers. const transfer = 'transfer'; /// Like [transfer], but for `JSAny` types that should only be transferred if /// they're array buffers. const transferIfArrayBuffer = 'transferIfArrayBuffer'; /// Marker for the `Message.type` special field. const isType = 'is:type'; /// Name of the message type used in the protocol. @Target({TargetKind.extensionType}) final class MessageTypeName { final String name; const MessageTypeName(this.name); } ================================================ FILE: sqlite3_web/lib/src/protocol/extensions.dart ================================================ import 'dart:js_interop'; import 'dart:typed_data'; import 'package:sqlite3/wasm.dart'; import 'package:web/web.dart' show MessagePort; import '../types.dart'; import '../worker_connector.dart'; import 'helper.g.dart'; import 'messages.dart'; extension MessageUtils on Message { void sendToPort(MessagePort port) { final transfer = extractTransferrable(this); port.postMessage(this, transfer); } void sendToWorker(WorkerHandle port) { final transfer = extractTransferrable(this); port.postMessage(this, transfer); } } extension ResponseUtils on Response { RemoteException interpretAsError() { if (type == MessageType.errorResponse.name) { final asError = this as ErrorResponse; final exception = asError.deserializeException(); if (exception case final AbortException e?) { return e; } else { return RemoteException(message: asError.message, exception: exception); } } else { return RemoteException( message: 'Did not respond with expected type, got $this', ); } } } extension ErrorResponseUtils on ErrorResponse { static ErrorResponse wrapException(int requestId, Object error) { JSNumber? serializedExceptionType; JSAny? serializedException; if (error is SqliteException) { serializedExceptionType = _typeSqliteException.toJS; serializedException = serializeSqliteException(error); } else if (error is AbortException) { serializedExceptionType = _typeAbortException.toJS; } return newErrorResponse( message: error.toString(), serializedExceptionType: serializedExceptionType, serializedException: serializedException, requestId: requestId, ); } Object? deserializeException() { return switch (serializedExceptionType?.toDartInt) { _typeSqliteException => deserializeSqliteException( serializedException as JSArray, ), _typeAbortException => const AbortException(), _ => null, }; } static SqliteException deserializeSqliteException(JSArray data) { final [ message, explanation, extendedResultCode, operation, causingStatement, paramData, paramTypes, offset, ..._, ] = data.toDart; String? decodeNullableString(JSAny? jsValue) { if (jsValue.isDefinedAndNotNull) { return (jsValue as JSString).toDart; } return null; } return SqliteException( extendedResultCode: (extendedResultCode as JSNumber).toDartInt, message: (message as JSString).toDart, explanation: decodeNullableString(explanation), causingStatement: decodeNullableString(causingStatement), parametersToStatement: paramData.isDefinedAndNotNull && paramTypes.isDefinedAndNotNull ? TypeCode.decodeValues( paramData as JSArray, paramTypes as JSArrayBuffer, ) : null, operation: decodeNullableString(operation), offset: (offset as JSNumber?)?.toDartInt, ); } static JSArray serializeSqliteException(SqliteException e) { final params = switch (e.parametersToStatement) { null => null, final parameters => TypeCode.encodeValues(parameters), }; return [ e.message.toJS, e.explanation?.toJS, e.extendedResultCode.toJS, e.operation?.toJS, e.causingStatement?.toJS, params?.$1, params?.$2, e.offset?.toJS, ].toJS; } static const _typeSqliteException = 0; static const _typeAbortException = 1; } extension UpdateNotificationUtils on UpdateNotification { SqliteUpdate get sqliteUpdate { return SqliteUpdate( SqliteUpdateKind.values[updateKind], updateTableName, rowId, ); } } extension RowsResponseUtils on RowsResponse { static RowsResponse wrapResultSet( int requestId, { required ResultSet resultSet, required bool autoCommit, required int lastInsertRowId, }) { final jsRows = []; final columns = resultSet.columnNames.length; final typeVector = Uint8List(resultSet.length * columns); for (var i = 0; i < resultSet.length; i++) { final row = resultSet.rows[i]; assert(row.length == columns); final jsRow = List.filled(row.length, null); for (var j = 0; j < columns; j++) { final (code, value) = TypeCode.encodeValue(row[j]); jsRow[j] = value; typeVector[i * columns + j] = code.index; } jsRows.add(jsRow.toJS); } final rows = [ for (final row in resultSet.rows) [for (final column in row) column.jsify()].toJS, ].toJS; JSArray? tableNames; if (resultSet.tableNames case var dartTableNames?) { tableNames = [ for (final entry in dartTableNames) entry?.toJS, ].toJS; } return newRowsResponse( columnNames: [ for (final entry in resultSet.columnNames) entry.toJS, ].toJS, tableNames: tableNames, typeVector: typeVector.buffer.toJS, rows: rows, autoCommit: autoCommit, lastInsertRowId: lastInsertRowId, requestId: requestId, ); } ResultSet? readResultSet() { if (columnNames case final rawColumnNames?) { final columnNames = rawColumnNames.toDart.map((e) => e.toDart).toList(); final tableNames = this.tableNames?.toDart.map((e) => e?.toDart).toList(); final typeVector = this.typeVector?.toDart.asUint8List(); final rows = >[]; var i = 0; for (final row in this.rows!.toDart) { final dartRow = []; for (final column in row.toDart) { final typeCode = typeVector != null ? TypeCode.of(typeVector[i]) : TypeCode.unknown; dartRow.add(typeCode.decodeColumn(column)); i++; } rows.add(dartRow); } return ResultSet(columnNames, tableNames, rows); } else { return null; } } } extension CompatibilityCheckUtils on CompatibilityCheck { bool get shouldCheckOpfsCompatibility { return type == MessageType.dedicatedCompatibilityCheck.name || type == MessageType.dedicatedInSharedCompatibilityCheck.name; } bool get shouldCheckIndexedDbCompatbility { return type == MessageType.dedicatedCompatibilityCheck.name || type == MessageType.sharedCompatibilityCheck.name; } } bool isCompatibilityCheck(String messageType) { if (messageType == MessageType.sharedCompatibilityCheck.name || messageType == MessageType.dedicatedCompatibilityCheck.name || messageType == MessageType.dedicatedInSharedCompatibilityCheck.name) { return true; } else { return false; } } ================================================ FILE: sqlite3_web/lib/src/protocol/helper.g.dart ================================================ // Generated by tool/protocol_generator.dart, do not modify by hand. import 'dart:async'; import 'dart:js_interop'; import 'package:web/web.dart' show AbortSignal; import 'package:sqlite3/wasm.dart' show WorkerOptions; import '../channel.dart'; import 'messages.dart'; enum MessageType { open(), connect(), startFileSystemServer(), custom(), fileSystemExists(), fileSystemFlush(), fileSystemAccess(), runQuery(), exclusiveLock(), releaseLock(), closeDatabase(), openAdditionalConnection(), simpleSuccessResponse(), endpointResponse(), rowsResponse(), errorResponse(), updateRequest(), rollbackRequest(), commitRequest(), dedicatedCompatibilityCheck(), sharedCompatibilityCheck(), dedicatedInSharedCompatibilityCheck(), notifyUpdate(), notifyCommit(), notifyRollback(), abort(), } abstract base class RequestHandler { FutureOr handleOpen(OpenRequest request, AbortSignal abortSignal) => _unsupportedRequest(request); FutureOr handleConnect( ConnectRequest request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleCustom( CustomRequest request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleFileSystemExists( FileSystemExistsQuery request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleFileSystemFlush( FileSystemFlushRequest request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleFileSystemAccess( FileSystemAccess request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleRunQuery( RunQuery request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleExclusiveLock( RequestExclusiveLock request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleReleaseLock( ReleaseLock request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleCloseDatabase( CloseDatabase request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleOpenAdditionalConnection( OpenAdditionalConnection request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleUpdateRequest( UpdateStreamRequest request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleRollbackRequest( RollbackStreamRequest request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleCommitRequest( CommitsStreamRequest request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleDedicatedCompatibilityCheck( DedicatedCompatibilityCheck request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleSharedCompatibilityCheck( SharedCompatibilityCheck request, AbortSignal abortSignal, ) => _unsupportedRequest(request); FutureOr handleDedicatedInSharedCompatibilityCheck( DedicatedInSharedCompatibilityCheck request, AbortSignal abortSignal, ) => _unsupportedRequest(request); Future _unsupportedRequest(Request request) { return Future.error(ArgumentError('Unsupported request ${request.type}')); } FutureOr dispatchRequest(Request request, AbortSignal abortSignal) { switch (request.type) { case 'open': return handleOpen(request as OpenRequest, abortSignal); case 'connect': return handleConnect(request as ConnectRequest, abortSignal); case 'custom': return handleCustom(request as CustomRequest, abortSignal); case 'fileSystemExists': return handleFileSystemExists( request as FileSystemExistsQuery, abortSignal, ); case 'fileSystemFlush': return handleFileSystemFlush( request as FileSystemFlushRequest, abortSignal, ); case 'fileSystemAccess': return handleFileSystemAccess(request as FileSystemAccess, abortSignal); case 'runQuery': return handleRunQuery(request as RunQuery, abortSignal); case 'exclusiveLock': return handleExclusiveLock( request as RequestExclusiveLock, abortSignal, ); case 'releaseLock': return handleReleaseLock(request as ReleaseLock, abortSignal); case 'closeDatabase': return handleCloseDatabase(request as CloseDatabase, abortSignal); case 'openAdditionalConnection': return handleOpenAdditionalConnection( request as OpenAdditionalConnection, abortSignal, ); case 'updateRequest': return handleUpdateRequest(request as UpdateStreamRequest, abortSignal); case 'rollbackRequest': return handleRollbackRequest( request as RollbackStreamRequest, abortSignal, ); case 'commitRequest': return handleCommitRequest( request as CommitsStreamRequest, abortSignal, ); case 'dedicatedCompatibilityCheck': return handleDedicatedCompatibilityCheck( request as DedicatedCompatibilityCheck, abortSignal, ); case 'sharedCompatibilityCheck': return handleSharedCompatibilityCheck( request as SharedCompatibilityCheck, abortSignal, ); case 'dedicatedInSharedCompatibilityCheck': return handleDedicatedInSharedCompatibilityCheck( request as DedicatedInSharedCompatibilityCheck, abortSignal, ); default: return _unsupportedRequest(request); } } } @anonymous extension type _OpenRequest._(OpenRequest _) implements OpenRequest { external factory _OpenRequest({ @JS('u') required String wasmUri, @JS('d') required String databaseName, @JS('s') required JSString storageMode, @JS('o') required bool onlyOpenVfs, @JS('a') required JSAny? additionalData, @JS('i') required int requestId, @JS('t') required String type, }); } OpenRequest newOpenRequest({ required String wasmUri, required String databaseName, required JSString storageMode, required bool onlyOpenVfs, required JSAny? additionalData, required int requestId, }) { return _OpenRequest( wasmUri: wasmUri, databaseName: databaseName, storageMode: storageMode, onlyOpenVfs: onlyOpenVfs, additionalData: additionalData, requestId: requestId, type: 'open', ); } @anonymous extension type _ConnectRequest._(ConnectRequest _) implements ConnectRequest { external factory _ConnectRequest({ @JS('r') required WebEndpoint endpoint, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } ConnectRequest newConnectRequest({ required WebEndpoint endpoint, required int requestId, required int? databaseId, }) { return _ConnectRequest( endpoint: endpoint, requestId: requestId, databaseId: databaseId, type: 'connect', ); } @anonymous extension type _StartFileSystemServer._(StartFileSystemServer _) implements StartFileSystemServer { external factory _StartFileSystemServer({ @JS('a') required WorkerOptions options, @JS('t') required String type, }); } StartFileSystemServer newStartFileSystemServer({ required WorkerOptions options, }) { return _StartFileSystemServer( options: options, type: 'startFileSystemServer', ); } @anonymous extension type _CustomRequest._(CustomRequest _) implements CustomRequest { external factory _CustomRequest({ @JS('r') required JSAny? payload, @JS('z') required int? lockId, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } CustomRequest newCustomRequest({ required JSAny? payload, required int? lockId, required int requestId, required int? databaseId, }) { return _CustomRequest( payload: payload, lockId: lockId, requestId: requestId, databaseId: databaseId, type: 'custom', ); } @anonymous extension type _FileSystemExistsQuery._(FileSystemExistsQuery _) implements FileSystemExistsQuery { external factory _FileSystemExistsQuery({ @JS('f') required int fsType, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } FileSystemExistsQuery newFileSystemExistsQuery({ required int fsType, required int requestId, required int? databaseId, }) { return _FileSystemExistsQuery( fsType: fsType, requestId: requestId, databaseId: databaseId, type: 'fileSystemExists', ); } @anonymous extension type _FileSystemFlushRequest._(FileSystemFlushRequest _) implements FileSystemFlushRequest { external factory _FileSystemFlushRequest({ @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } FileSystemFlushRequest newFileSystemFlushRequest({ required int requestId, required int? databaseId, }) { return _FileSystemFlushRequest( requestId: requestId, databaseId: databaseId, type: 'fileSystemFlush', ); } @anonymous extension type _FileSystemAccess._(FileSystemAccess _) implements FileSystemAccess { external factory _FileSystemAccess({ @JS('b') required JSArrayBuffer? buffer, @JS('f') required int fsType, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } FileSystemAccess newFileSystemAccess({ required JSArrayBuffer? buffer, required int fsType, required int requestId, required int? databaseId, }) { return _FileSystemAccess( buffer: buffer, fsType: fsType, requestId: requestId, databaseId: databaseId, type: 'fileSystemAccess', ); } @anonymous extension type _RunQuery._(RunQuery _) implements RunQuery { external factory _RunQuery({ @JS('s') required String sql, @JS('p') required JSArray parameters, @JS('v') required JSArrayBuffer? typeVector, @JS('z') required int? lockId, @JS('r') required bool returnRows, @JS('c') required bool checkInTransaction, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } RunQuery newRunQuery({ required String sql, required JSArray parameters, required JSArrayBuffer? typeVector, required int? lockId, required bool returnRows, required bool checkInTransaction, required int requestId, required int? databaseId, }) { return _RunQuery( sql: sql, parameters: parameters, typeVector: typeVector, lockId: lockId, returnRows: returnRows, checkInTransaction: checkInTransaction, requestId: requestId, databaseId: databaseId, type: 'runQuery', ); } @anonymous extension type _RequestExclusiveLock._(RequestExclusiveLock _) implements RequestExclusiveLock { external factory _RequestExclusiveLock({ @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } RequestExclusiveLock newRequestExclusiveLock({ required int requestId, required int? databaseId, }) { return _RequestExclusiveLock( requestId: requestId, databaseId: databaseId, type: 'exclusiveLock', ); } @anonymous extension type _ReleaseLock._(ReleaseLock _) implements ReleaseLock { external factory _ReleaseLock({ @JS('z') required int lockId, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } ReleaseLock newReleaseLock({ required int lockId, required int requestId, required int? databaseId, }) { return _ReleaseLock( lockId: lockId, requestId: requestId, databaseId: databaseId, type: 'releaseLock', ); } @anonymous extension type _CloseDatabase._(CloseDatabase _) implements CloseDatabase { external factory _CloseDatabase({ @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } CloseDatabase newCloseDatabase({ required int requestId, required int? databaseId, }) { return _CloseDatabase( requestId: requestId, databaseId: databaseId, type: 'closeDatabase', ); } @anonymous extension type _OpenAdditionalConnection._(OpenAdditionalConnection _) implements OpenAdditionalConnection { external factory _OpenAdditionalConnection({ @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } OpenAdditionalConnection newOpenAdditionalConnection({ required int requestId, required int? databaseId, }) { return _OpenAdditionalConnection( requestId: requestId, databaseId: databaseId, type: 'openAdditionalConnection', ); } @anonymous extension type _SimpleSuccessResponse._(SimpleSuccessResponse _) implements SimpleSuccessResponse { external factory _SimpleSuccessResponse({ @JS('r') required JSAny? response, @JS('i') required int requestId, @JS('t') required String type, }); } SimpleSuccessResponse newSimpleSuccessResponse({ required JSAny? response, required int requestId, }) { return _SimpleSuccessResponse( response: response, requestId: requestId, type: 'simpleSuccessResponse', ); } @anonymous extension type _EndpointResponse._(EndpointResponse _) implements EndpointResponse { external factory _EndpointResponse({ @JS('r') required WebEndpoint endpoint, @JS('i') required int requestId, @JS('t') required String type, }); } EndpointResponse newEndpointResponse({ required WebEndpoint endpoint, required int requestId, }) { return _EndpointResponse( endpoint: endpoint, requestId: requestId, type: 'endpointResponse', ); } @anonymous extension type _RowsResponse._(RowsResponse _) implements RowsResponse { external factory _RowsResponse({ @JS('c') required JSArray? columnNames, @JS('n') required JSArray? tableNames, @JS('v') required JSArrayBuffer? typeVector, @JS('r') required JSArray>? rows, @JS('x') required bool autoCommit, @JS('y') required int lastInsertRowId, @JS('i') required int requestId, @JS('t') required String type, }); } RowsResponse newRowsResponse({ required JSArray? columnNames, required JSArray? tableNames, required JSArrayBuffer? typeVector, required JSArray>? rows, required bool autoCommit, required int lastInsertRowId, required int requestId, }) { return _RowsResponse( columnNames: columnNames, tableNames: tableNames, typeVector: typeVector, rows: rows, autoCommit: autoCommit, lastInsertRowId: lastInsertRowId, requestId: requestId, type: 'rowsResponse', ); } @anonymous extension type _ErrorResponse._(ErrorResponse _) implements ErrorResponse { external factory _ErrorResponse({ @JS('e') required String message, @JS('s') required JSNumber? serializedExceptionType, @JS('r') required JSAny? serializedException, @JS('i') required int requestId, @JS('t') required String type, }); } ErrorResponse newErrorResponse({ required String message, required JSNumber? serializedExceptionType, required JSAny? serializedException, required int requestId, }) { return _ErrorResponse( message: message, serializedExceptionType: serializedExceptionType, serializedException: serializedException, requestId: requestId, type: 'errorResponse', ); } @anonymous extension type _UpdateStreamRequest._(UpdateStreamRequest _) implements UpdateStreamRequest { external factory _UpdateStreamRequest({ @JS('a') required bool action, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } UpdateStreamRequest newUpdateStreamRequest({ required bool action, required int requestId, required int? databaseId, }) { return _UpdateStreamRequest( action: action, requestId: requestId, databaseId: databaseId, type: 'updateRequest', ); } @anonymous extension type _RollbackStreamRequest._(RollbackStreamRequest _) implements RollbackStreamRequest { external factory _RollbackStreamRequest({ @JS('a') required bool action, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } RollbackStreamRequest newRollbackStreamRequest({ required bool action, required int requestId, required int? databaseId, }) { return _RollbackStreamRequest( action: action, requestId: requestId, databaseId: databaseId, type: 'rollbackRequest', ); } @anonymous extension type _CommitsStreamRequest._(CommitsStreamRequest _) implements CommitsStreamRequest { external factory _CommitsStreamRequest({ @JS('a') required bool action, @JS('i') required int requestId, @JS('d') required int? databaseId, @JS('t') required String type, }); } CommitsStreamRequest newCommitsStreamRequest({ required bool action, required int requestId, required int? databaseId, }) { return _CommitsStreamRequest( action: action, requestId: requestId, databaseId: databaseId, type: 'commitRequest', ); } @anonymous extension type _DedicatedCompatibilityCheck._(DedicatedCompatibilityCheck _) implements DedicatedCompatibilityCheck { external factory _DedicatedCompatibilityCheck({ @JS('d') required String? databaseName, @JS('i') required int requestId, @JS('t') required String type, }); } DedicatedCompatibilityCheck newDedicatedCompatibilityCheck({ required String? databaseName, required int requestId, }) { return _DedicatedCompatibilityCheck( databaseName: databaseName, requestId: requestId, type: 'dedicatedCompatibilityCheck', ); } @anonymous extension type _SharedCompatibilityCheck._(SharedCompatibilityCheck _) implements SharedCompatibilityCheck { external factory _SharedCompatibilityCheck({ @JS('d') required String? databaseName, @JS('i') required int requestId, @JS('t') required String type, }); } SharedCompatibilityCheck newSharedCompatibilityCheck({ required String? databaseName, required int requestId, }) { return _SharedCompatibilityCheck( databaseName: databaseName, requestId: requestId, type: 'sharedCompatibilityCheck', ); } @anonymous extension type _DedicatedInSharedCompatibilityCheck._( DedicatedInSharedCompatibilityCheck _ ) implements DedicatedInSharedCompatibilityCheck { external factory _DedicatedInSharedCompatibilityCheck({ @JS('d') required String? databaseName, @JS('i') required int requestId, @JS('t') required String type, }); } DedicatedInSharedCompatibilityCheck newDedicatedInSharedCompatibilityCheck({ required String? databaseName, required int requestId, }) { return _DedicatedInSharedCompatibilityCheck( databaseName: databaseName, requestId: requestId, type: 'dedicatedInSharedCompatibilityCheck', ); } @anonymous extension type _UpdateNotification._(UpdateNotification _) implements UpdateNotification { external factory _UpdateNotification({ @JS('k') required int updateKind, @JS('u') required String updateTableName, @JS('r') required int rowId, @JS('d') required int databaseId, @JS('t') required String type, }); } UpdateNotification newUpdateNotification({ required int updateKind, required String updateTableName, required int rowId, required int databaseId, }) { return _UpdateNotification( updateKind: updateKind, updateTableName: updateTableName, rowId: rowId, databaseId: databaseId, type: 'notifyUpdate', ); } @anonymous extension type _CommitNotification._(CommitNotification _) implements CommitNotification { external factory _CommitNotification({ @JS('d') required int databaseId, @JS('t') required String type, }); } CommitNotification newCommitNotification({required int databaseId}) { return _CommitNotification(databaseId: databaseId, type: 'notifyCommit'); } @anonymous extension type _RollbackNotification._(RollbackNotification _) implements RollbackNotification { external factory _RollbackNotification({ @JS('d') required int databaseId, @JS('t') required String type, }); } RollbackNotification newRollbackNotification({required int databaseId}) { return _RollbackNotification(databaseId: databaseId, type: 'notifyRollback'); } @anonymous extension type _AbortRequest._(AbortRequest _) implements AbortRequest { external factory _AbortRequest({ @JS('i') required int requestId, @JS('t') required String type, }); } AbortRequest newAbortRequest({required int requestId}) { return _AbortRequest(requestId: requestId, type: 'abort'); } @JS('ArrayBuffer') external JSFunction get _arrayBufferConstructor; JSArray extractTransferrable(Message message) { final result = JSArray(); switch (message.type) { case 'connect': result.add((message as ConnectRequest).endpoint.port); break; case 'fileSystemAccess': if ((message as FileSystemAccess).buffer case final e?) result.add(e); break; case 'runQuery': if ((message as RunQuery).typeVector case final e?) result.add(e); break; case 'simpleSuccessResponse': if ((message as SimpleSuccessResponse).response case JSAny a when a.instanceof(_arrayBufferConstructor)) { result.add(a); } break; case 'endpointResponse': result.add((message as EndpointResponse).endpoint.port); break; case 'rowsResponse': if ((message as RowsResponse).typeVector case final e?) result.add(e); break; } return result; } T dispatchMessage( Message msg, { required T Function(StartFileSystemServer) whenStartFileSystemServer, required T Function(AbortRequest) whenAbortRequest, required T Function(Notification) whenNotification, required T Function(Response) whenResponse, required T Function(Request) whenRequest, }) { switch (msg.type) { case 'startFileSystemServer': return whenStartFileSystemServer(msg as StartFileSystemServer); case 'abort': return whenAbortRequest(msg as AbortRequest); case 'notifyUpdate': case 'notifyCommit': case 'notifyRollback': return whenNotification(msg as Notification); case 'simpleSuccessResponse': case 'endpointResponse': case 'rowsResponse': case 'errorResponse': return whenResponse(msg as Response); default: return whenRequest(msg as Request); } } ================================================ FILE: sqlite3_web/lib/src/protocol/messages.dart ================================================ import 'dart:js_interop'; import 'dart:typed_data'; import 'package:sqlite3/wasm.dart'; // ignore: implementation_imports import 'package:sqlite3/src/wasm/js_interop/core.dart'; import '../channel.dart'; import 'dsl.dart'; @abstract extension type Message._(JSObject _) implements JSObject { @JS(_UniqueFieldNames.type) @isType external String type; } @abstract extension type Notification._(JSObject _) implements Message { @JS(_UniqueFieldNames.databaseId) external int databaseId; } @abstract extension type Request._(JSObject _) implements Message { /// A unique id, incremented by each endpoint when making requests over the /// channel. @JS(_UniqueFieldNames.id) external int requestId; @JS(_UniqueFieldNames.databaseId) external int? databaseId; } @abstract extension type Response._(JSObject _) implements Message { /// The [Request.requestId] that this is a response of. @JS(_UniqueFieldNames.id) external int requestId; } enum FileSystemImplementation { opfsShared('s'), opfsAtomics('l'), opfsExternalLocks('x'), indexedDb('i'), inMemory('m'); final String jsRepresentation; const FileSystemImplementation(this.jsRepresentation); JSString get toJS => jsRepresentation.toJS; bool get needsExternalLocks => // Technically, opfsAtomics doesn't need external locks around each // database access. We just do this to avoid contention in the underlying // VFS. this == opfsAtomics || this == opfsExternalLocks; static FileSystemImplementation fromJS(JSString js) { final toDart = js.toDart; for (final entry in values) { if (entry.jsRepresentation == toDart) return entry; } throw ArgumentError('Unknown FS implementation: $toDart'); } } @MessageTypeName('open') extension type OpenRequest._(JSObject _) implements Request { @JS(_UniqueFieldNames.wasmUri) external String wasmUri; @JS(_UniqueFieldNames.databaseName) external String databaseName; @JS(_UniqueFieldNames.storageMode) external JSString storageMode; @JS(_UniqueFieldNames.onlyOpenVfs) external bool onlyOpenVfs; /// Additional data passsed to `DatabaseController.openDatabase`. @JS(_UniqueFieldNames.additionalData) external JSAny? additionalData; } /// Requests the receiving end of this message to connect to the channel /// reachable through [endpoint]. /// /// This message it sent to dedicated and shared workers under their top-level /// receive handler. /// This can also be a request as part of an existing communication channel. In /// that form, the client asks the receiver to forward the connect request to /// a nested context. In particular, this is used for different tabs to connect /// to a dedicated worker spawned by a shared worker. /// As only dedicated workers can use synchronous file system APIs, this allows /// different tabs to share a dedicated worker hosting a database with OPFS, /// which is by far the most efficient way access dabases. @MessageTypeName('connect') extension type ConnectRequest._(JSObject _) implements Request { /// The endpoint under which the client is reachable. @JS(_UniqueFieldNames.responseData) @transfer external WebEndpoint endpoint; } @MessageTypeName('startFileSystemServer') extension type StartFileSystemServer._(JSObject _) implements Message { @JS(_UniqueFieldNames.additionalData) external WorkerOptions options; } /// Allows users of this package to implement their own RPC calls handled by /// workers hosting the database. @MessageTypeName('custom') extension type CustomRequest._(JSObject _) implements Request { @JS(_UniqueFieldNames.responseData) external JSAny? payload; @JS(_UniqueFieldNames.lockId) external int? lockId; } /// The other side will respond with a [SimpleSuccessResponse] containing a /// boolean indicating whether the file exists. @MessageTypeName('fileSystemExists') extension type FileSystemExistsQuery._(JSObject _) implements Request { @JS(_UniqueFieldNames.fileType) external int fsType; } @MessageTypeName('fileSystemFlush') extension type FileSystemFlushRequest._(JSObject _) implements Request {} @MessageTypeName('fileSystemAccess') extension type FileSystemAccess._(JSObject _) implements Request { @JS(_UniqueFieldNames.buffer) @transfer external JSArrayBuffer? buffer; @JS(_UniqueFieldNames.fileType) external int fsType; } @MessageTypeName('runQuery') extension type RunQuery._(JSObject _) implements Request { @JS(_UniqueFieldNames.sql) external String sql; @JS(_UniqueFieldNames.parameters) external JSArray parameters; @JS(_UniqueFieldNames.typeVector) @transfer external JSArrayBuffer? typeVector; @JS(_UniqueFieldNames.lockId) external int? lockId; @JS(_UniqueFieldNames.returnRows) external bool returnRows; @JS(_UniqueFieldNames.checkInTransaction) external bool checkInTransaction; } @MessageTypeName('exclusiveLock') extension type RequestExclusiveLock._(JSObject _) implements Request {} @MessageTypeName('releaseLock') extension type ReleaseLock._(JSObject _) implements Request { @JS(_UniqueFieldNames.lockId) external int lockId; } @MessageTypeName('closeDatabase') extension type CloseDatabase._(JSObject _) implements Request {} @MessageTypeName('openAdditionalConnection') extension type OpenAdditionalConnection._(JSObject _) implements Request {} @MessageTypeName('simpleSuccessResponse') extension type SimpleSuccessResponse._(JSObject _) implements Response { @JS(_UniqueFieldNames.responseData) @transferIfArrayBuffer external JSAny? response; } @MessageTypeName('endpointResponse') extension type EndpointResponse._(JSObject _) implements Response { @JS(_UniqueFieldNames.responseData) @transfer external WebEndpoint endpoint; } enum TypeCode { unknown, integer, bigInt, float, text, blob, $null, boolean; static TypeCode of(int i) { return i >= TypeCode.values.length ? TypeCode.unknown : TypeCode.values[i]; } Object? decodeColumn(JSAny? column) { const hasNativeInts = !identical(0, 0.0); return switch (this) { TypeCode.unknown => column.dartify(), TypeCode.integer => (column as JSNumber).toDartInt, TypeCode.bigInt => hasNativeInts ? (column as JsBigInt).asDartInt : (column as JsBigInt).asDartBigInt, TypeCode.float => (column as JSNumber).toDartDouble, TypeCode.text => (column as JSString).toDart, TypeCode.blob => (column as JSUint8Array).toDart, TypeCode.boolean => (column as JSBoolean).toDart, TypeCode.$null => null, }; } static (TypeCode, JSAny?) encodeValue(Object? dart) { // In previous clients/workers, values were encoded with dartify() and // jsify() only. For backwards-compatibility, this value must be compatible // with dartify() used on the other end. // An exception are BigInts, which have not been sent correctly before this // encoder. // The reasons for adopting a custom format are: Being able to properly // serialize BigInts, possible dartify/jsify incompatibilities between // dart2js and dart2wasm and most importantly, being able to keep 1 and 1.0 // apart in dart2wasm when the worker is compiled with dart2js. final JSAny? value; final TypeCode code; switch (dart) { case null: value = null; code = TypeCode.$null; case final int integer: value = integer.toJS; code = TypeCode.integer; case final BigInt bi: value = JsBigInt.fromBigInt(bi); code = TypeCode.bigInt; case final double d: value = d.toJS; code = TypeCode.float; case final String s: value = s.toJS; code = TypeCode.text; case final Uint8List blob: value = blob.toJS; code = TypeCode.blob; case final bool boolean: value = boolean.toJS; code = TypeCode.boolean; case final other: value = other.jsify(); code = TypeCode.unknown; } return (code, value); } static (JSArray, JSArrayBuffer) encodeValues(List values) { final jsParams = []; final typeCodes = Uint8List(values.length); for (var i = 0; i < values.length; i++) { final (code, jsParam) = TypeCode.encodeValue(values[i]); typeCodes[i] = code.index; jsParams.add(jsParam); } final jsTypes = typeCodes.buffer.toJS; return (jsParams.toJS, jsTypes); } static List decodeValues(JSArray array, JSArrayBuffer? types) { final rawParameters = array.toDart; final typeVector = types?.toDart.asUint8List(); final parameters = List.filled(rawParameters.length, null); for (var i = 0; i < parameters.length; i++) { final typeCode = typeVector != null ? TypeCode.of(typeVector[i]) : TypeCode.unknown; parameters[i] = typeCode.decodeColumn(rawParameters[i]); } return parameters; } } @MessageTypeName('rowsResponse') extension type RowsResponse._(JSObject _) implements Response { @JS(_UniqueFieldNames.columnNames) external JSArray? columnNames; @JS(_UniqueFieldNames.tableNames) external JSArray? tableNames; @JS(_UniqueFieldNames.typeVector) @transfer external JSArrayBuffer? typeVector; @JS(_UniqueFieldNames.rows) external JSArray>? rows; @JS(_UniqueFieldNames.autocommit) external bool autoCommit; @JS(_UniqueFieldNames.lastInsertRowid) external int lastInsertRowId; } @MessageTypeName('errorResponse') extension type ErrorResponse._(JSObject _) implements Response { @JS(_UniqueFieldNames.errorMessage) external String message; @JS(_UniqueFieldNames.serializedExceptionType) external JSNumber? serializedExceptionType; @JS(_UniqueFieldNames.serializedException) external JSAny? serializedException; } @abstract extension type StreamRequest._(JSObject _) implements Request { /// When true, the client is requesting to be informed about updates happening /// on the database identified by this request. /// /// When false, the client is requesting to no longer be informed about these /// updates. @JS(_UniqueFieldNames.action) external bool action; } @MessageTypeName('updateRequest') extension type UpdateStreamRequest._(JSObject _) implements StreamRequest {} @MessageTypeName('rollbackRequest') extension type RollbackStreamRequest._(JSObject _) implements StreamRequest {} @MessageTypeName('commitRequest') extension type CommitsStreamRequest._(JSObject _) implements StreamRequest {} @abstract extension type CompatibilityCheck._(JSObject _) implements Request { @JS(_UniqueFieldNames.databaseName) external String? databaseName; } @MessageTypeName('dedicatedCompatibilityCheck') extension type DedicatedCompatibilityCheck._(JSObject _) implements CompatibilityCheck {} @MessageTypeName('sharedCompatibilityCheck') extension type SharedCompatibilityCheck._(JSObject _) implements CompatibilityCheck {} @MessageTypeName('dedicatedInSharedCompatibilityCheck') extension type DedicatedInSharedCompatibilityCheck._(JSObject _) implements CompatibilityCheck {} @MessageTypeName('notifyUpdate') extension type UpdateNotification._(JSObject _) implements Notification { @JS(_UniqueFieldNames.updateKind) external int updateKind; @JS(_UniqueFieldNames.updateTableName) external String updateTableName; @JS(_UniqueFieldNames.updateRowId) external int rowId; } @MessageTypeName('notifyCommit') extension type CommitNotification._(JSObject _) implements Notification {} @MessageTypeName('notifyRollback') extension type RollbackNotification._(JSObject _) implements Notification {} /// Requests a previously issued request to be cancelled. /// /// An endpoint will not respond to this message, but it may abort the previous /// request by completing it with an error. @MessageTypeName('abort') extension type AbortRequest._(JSObject _) implements Message { @JS(_UniqueFieldNames.id) external int requestId; } /// Field names used when serializing messages to JS objects. /// /// Since we're using unsafe JS interop here, these can't be mangled by dart2js. /// Thus, we should keep them short. class _UniqueFieldNames { static const action = 'a'; // Only used in StreamRequest static const additionalData = 'a'; // only used in OpenRequest static const buffer = 'b'; // no clash, used in RowResponse and RunQuery static const columnNames = 'c'; static const checkInTransaction = 'c'; static const databaseId = 'd'; static const databaseName = 'd'; // no clash, used on different types static const errorMessage = 'e'; static const fileType = 'f'; static const id = 'i'; static const updateKind = 'k'; static const tableNames = 'n'; static const onlyOpenVfs = 'o'; static const parameters = 'p'; static const storageMode = 's'; static const serializedExceptionType = 's'; static const sql = 's'; // not used in same message static const type = 't'; static const wasmUri = 'u'; static const updateTableName = 'u'; static const responseData = 'r'; static const returnRows = 'r'; static const updateRowId = 'r'; static const serializedException = 'r'; static const rows = 'r'; // no clash, used on different message types static const typeVector = 'v'; static const autocommit = 'x'; static const lastInsertRowid = 'y'; static const lockId = 'z'; } ================================================ FILE: sqlite3_web/lib/src/protocol.dart ================================================ export 'protocol/compatibility_result.dart'; export 'protocol/extensions.dart'; export 'protocol/helper.g.dart'; export 'protocol/messages.dart'; ================================================ FILE: sqlite3_web/lib/src/shared.dart ================================================ /// Functionality shared between workers and client code. library; import 'dart:async'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; // ignore: implementation_imports import 'package:sqlite3/src/wasm/js_interop/new_file_system_access.dart'; import 'package:web/web.dart'; /// Checks whether IndexedDB is working in the current browser. Future checkIndexedDbSupport() async { if (!globalContext.has('indexedDB') || // FileReader needed to read and write blobs efficiently !globalContext.has('FileReader')) { return false; } final idb = globalContext['indexedDB'] as IDBFactory; try { const name = 'drift_mock_db'; final mockDb = await idb.open(name).completeOpen(); mockDb.close(); idb.deleteDatabase(name); } catch (error) { return false; } return true; } /// Returns whether an drift-wasm database with the given [databaseName] exists. Future checkIndexedDbExists(String databaseName) async { bool? indexedDbExists; try { final idb = globalContext['indexedDB'] as IDBFactory; final openRequest = idb.open(databaseName, 1); openRequest.onupgradeneeded = (IDBVersionChangeEvent event) { // If there's an upgrade, we're going from 0 to 1 - the database doesn't // exist! Abort the transaction so that we don't create it here. openRequest.transaction!.abort(); indexedDbExists = false; }.toJS; final database = await openRequest.complete(); indexedDbExists ??= true; database.close(); } catch (_) { // May throw due to us aborting in the upgrade callback. } return indexedDbExists ?? false; } /// Deletes a database from IndexedDb if supported. Future deleteDatabaseInIndexedDb(String databaseName) async { final idb = globalContext['indexedDB'] as IDBFactory; await idb.deleteDatabase(databaseName).complete(); } /// Collects all drift OPFS databases. Future> opfsDatabases() async { final storage = storageManager; if (storage == null) return const []; var directory = await storage.directory; try { directory = await directory.getDirectory('drift_db'); } on Object { // The drift_db folder doesn't exist, so there aren't any databases. return const []; } return [ await for (final entry in directory.list()) if (entry.isDirectory) entry.name, ]; } /// Constructs the path used by drift to store a database in the origin-private /// section of the agent's file system. String pathForOpfs(String databaseName) { return 'drift_db/$databaseName'; } /// Deletes the OPFS folder storing a database with the given [databaseName] if /// such folder exists. Future deleteDatabaseInOpfs(String databaseName) async { final storage = storageManager; if (storage == null) return; var directory = await storage.directory; try { directory = await directory.getDirectory('drift_db'); await directory.remove(databaseName, recursive: true); } on Object { // fine, an error probably means that the database didn't exist in the first // place. } } extension CompleteIdbRequest on IDBRequest { Future complete() { final completer = Completer.sync(); EventStreamProviders.successEvent.forTarget(this).listen((event) { completer.complete(result as T); }); EventStreamProviders.errorEvent.forTarget(this).listen((event) { completer.completeError(error ?? event); }); return completer.future; } } extension CompleteOpenIdbRequest on IDBRequest { Future completeOpen() { final completer = Completer.sync(); EventStreamProviders.successEvent.forTarget(this).listen((event) { completer.complete(result as T); }); EventStreamProviders.errorEvent.forTarget(this).listen((event) { completer.completeError(error ?? event); }); EventStreamProviders.blockedEvent.forTarget(this).listen((event) { completer.completeError(error ?? event); }); return completer.future; } } ================================================ FILE: sqlite3_web/lib/src/types.dart ================================================ import 'dart:typed_data'; import 'package:sqlite3/common.dart'; /// A [StorageMode], name pair representing an existing database already stored /// by the current browsing context. typedef ExistingDatabase = (StorageMode, String); /// Types of files persisted for databases by virtual file system /// implementations. enum FileType { /// The main database file. database, /// A journal file used to synchronize changes on the database file. journal, } /// An implemented mechanism to use SQLite on the web. /// /// Due to the large variety of browsers and the web standards they support, /// a number of implementations are available. The most important are: /// /// - [opfsShared]: Only available on Firefox, but very efficient. /// - [opfsWithExternalLocks]: Only available on recent Chrome versions, also /// quite efficient. /// - [opfsAtomics]: Only available when using COEP and COOP headers, but also /// reasonably efficient and supported across browsers. /// - [indexedDbShared]: A less efficient IndexedDB-based implementation used /// as a fallback on older Chrome versions. /// /// All other options are not recommended, but may be selected if there's no /// better option (e.g. older Chrome versions on Android may use /// [indexedDbUnsafeWorker]). enum DatabaseImplementation { /// Host an in-memory database in the current tab. /// /// This isn't really useful outside of tests. inMemoryLocal(StorageMode.inMemory, AccessMode.inCurrentContext), /// Host an in-memory database in a shared worker. /// /// This isn't really useful outside of tests. inMemoryShared(StorageMode.inMemory, AccessMode.throughSharedWorker), /// Open an IndexedDB database with a dedicated worker per tab. /// /// There is no concurrency control between these tabs, so this effectively /// does not support multiple tabs. It's mostly included for legacy reasons. indexedDbUnsafeLocal(StorageMode.indexedDb, AccessMode.inCurrentContext), /// Open an IndexedDB database with a dedicated worker per tab. /// /// There is no concurrency control between these tabs, so this effectively /// does not support multiple tabs. It's mostly included for legacy reasons. indexedDbUnsafeWorker( StorageMode.indexedDb, AccessMode.throughDedicatedWorker, ), /// Open an IndexedDB database in a shared worker. indexedDbShared(StorageMode.indexedDb, AccessMode.throughSharedWorker), /// Open an synchronous database stored in OPFS. /// /// The database is opened with the non-standard `readwrite-unsafe` option, /// and the web locks API is used to ensure two tabs don't access the same /// database concurrently. opfsWithExternalLocks(StorageMode.opfs, AccessMode.throughDedicatedWorker), /// Open an asynchronous database stored in OPFS. It is "syncified" by using /// a pair of two dedicated workers implementing an RPC channel over shared /// memory and atomics. opfsAtomics(StorageMode.opfs, AccessMode.throughDedicatedWorker), /// Open a synchronous database stored in OPFS. /// /// This works by letting a shared worker spawn a dedicated worker. This is /// supposed to work, but only implemented in Firefox. opfsShared(StorageMode.opfs, AccessMode.throughSharedWorker); final StorageMode storage; final AccessMode access; const DatabaseImplementation(this.storage, this.access); } /// Available locations to store database content in browsers. enum StorageMode { // Note: Indices in this enum are used in the protocol, changing them is a // backwards-incompatible change. /// A origin-private folder provided by the file system access API. /// /// This is generally considered to be the most reliable way to store large /// data efficiently. opfs, /// A virtual file system implemented by splitting files into chunks which are /// then stored in IndexedDB. /// /// As sqlite3 expects a synchronous file system and IndexedDB is /// asynchronous, we maintain the illusion if synchronous access by keeping /// the entire database cached in memory and then flushing changes /// asynchronously. /// This technically looses durability, but is reasonably reliable in /// practice. indexedDb, /// Don't persist databases, instead keeping them in memory only. inMemory, } /// In addition to the [StorageMode] describing which browser API is used to /// store content, this enum describes how databases are accessed. enum AccessMode { /// Access databases by spawning a shared worker shared across tabs. /// /// This is more efficient as it avoids synchronization conflicts between tabs /// which may slow things down. throughSharedWorker, /// Access databases by spawning a dedicated worker for this tab. throughDedicatedWorker, /// Access databases without any shared or dedicated worker. inCurrentContext, } /// An exception thrown when a operation fails on the remote worker. /// /// As the worker and the main tab have been compiled independently and don't /// share a class hierarchy or object representations, it is impossible to send /// typed exception objects. Instead, this exception wraps every error or /// exception thrown by the remote worker and contains the [toString] /// representation in [message]. final class RemoteException implements Exception { /// The [Object.toString] representation of the original exception. final String message; /// The exception that happened in the context running the operation. /// /// Since that context may be a web worker which can't send arbitrary Dart /// objects to us, only a few common exception types are recognized and /// serialized. /// At the moment, this only includes [SqliteException]. final Object? exception; /// Creates a remote exception from the [message] thrown. const RemoteException({required this.message, this.exception}); @override String toString() { return 'Remote error: $message'; } } /// An exception thrown when the remote end accepts an abort requeset sent for a /// previous request. final class AbortException extends RemoteException { const AbortException() : super(message: 'Operation was cancelled'); } /// A virtual file system used by a worker to persist database files. abstract class FileSystem { /// Returns whether a database file identified by its [type] exists. Future exists(FileType type); /// Reads the database file (or its journal). Future readFile(FileType type); /// Replaces the database file (or its journal), creating the virtual file if /// it doesn't exist. Future writeFile(FileType type, Uint8List content); /// If the file system hosting the database in the worker is not synchronous, /// flushes pending writes. Future flush(); } /// An enumeration of features not supported by the current browsers. /// /// While this information may not be useful to end users, it can be used to /// understand why a particular file system implementation is unavailable. enum MissingBrowserFeature { /// The browser is missing support for [shared workers]. /// /// [shared workers]: https://developer.mozilla.org/en-US/docs/Web/API/SharedWorker sharedWorkers, /// The browser is missing support for [web workers] in general. /// /// [web workers]: https://developer.mozilla.org/en-US/docs/Web/API/Worker dedicatedWorkers, /// The browser doesn't allow shared workers to spawn dedicated workers in /// their context. /// /// While the specification for web workers explicitly allows this, this /// feature is only implemented by Firefox at the time of writing. dedicatedWorkersInSharedWorkers, /// The browser doesn't allow dedicated workers to spawn their own dedicated /// workers. dedicatedWorkersCanNest, /// The browser does not support a synchronous version of the [File System API] /// /// [File System API]: https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API fileSystemAccess, /// The browser does not support the (non-standard) `readwrite-unsafe` open /// mode proposed in https://github.com/whatwg/fs/blob/main/proposals/MultipleReadersWriters.md#modes-of-creating-a-filesystemsyncaccesshandle. createSyncAccessHandleReadWriteUnsafe, /// The browser does not support IndexedDB. indexedDb, /// The browser does not support shared array buffers and `Atomics.wait`. /// /// To enable this feature in most browsers, you need to serve your app with /// two [special headers](https://web.dev/coop-coep/). sharedArrayBuffers, } /// The result of [WebSqlite.runFeatureDetection], describing which browsers /// and databases are available in the current browser. final class FeatureDetectionResult { /// A list of features that were probed and found to be unsupported in the /// current browser. final List missingFeatures; /// All existing databases that have been found. /// /// Databases are only found reliably when a database name is passed to /// [WebSqlite.runFeatureDetection]. final List existingDatabases; /// All available [StorageMode], [AccessMode] pairs describing the databases /// supported by this browser. final List availableImplementations; FeatureDetectionResult({ required this.missingFeatures, required this.existingDatabases, required this.availableImplementations, }); @override String toString() { return 'Existing: $existingDatabases, available: ' '$availableImplementations, missing: $missingFeatures'; } } ================================================ FILE: sqlite3_web/lib/src/worker.dart ================================================ import 'dart:async'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'dart:typed_data'; import 'package:sqlite3/wasm.dart'; import 'package:stream_channel/stream_channel.dart'; import 'package:web/web.dart' show AbortSignal, DedicatedWorkerGlobalScope, EventStreamProviders, FileSystemDirectoryHandle, FileSystemFileHandle, FileSystemSyncAccessHandle, AbortController; // ignore: implementation_imports import 'package:sqlite3/src/wasm/js_interop/new_file_system_access.dart'; import 'database.dart'; import 'channel.dart'; import 'locks.dart'; import 'protocol.dart'; import 'shared.dart'; import 'types.dart'; import 'worker_connector.dart'; extension on WorkerEnvironment { /// Messages outside of a connection being posted to the worker or a connect /// port of a shared worker. /// /// We're not using them for actual channels, but instead have clients /// setup message ports which are then forwarded to workers using these /// top-level requests. Stream get topLevelRequests { return incomingMessages.map((event) { return event.data as Message; }); } } class _StreamState { StreamSubscription? subscription; void cancel() { subscription?.cancel(); subscription = null; } } /// A database opened by a client. final class _ConnectionDatabase { final DatabaseState database; final int id; final _StreamState updates = _StreamState(); final _StreamState rollbacks = _StreamState(); final _StreamState commits = _StreamState(); /// If the connection currently holds a lock on the database, this contains /// an id assigned to that lock and a completer to release it. (int, Completer)? _heldLock; int _nextLockId = 1; final List _activeAbortableOperations = []; _ConnectionDatabase(this.database, [int? id]) : id = id ?? database.id; Future close() async { updates.cancel(); rollbacks.cancel(); commits.cancel(); for (final signal in _activeAbortableOperations) { signal.abort(); } _activeAbortableOperations.clear(); _heldLock?.$2.complete(); await database.decrementRefCount(); } AbortController _startAbortableOperation(AbortSignal parent) { final controller = AbortController(); parent.onabort = (() => controller.abort()).toJS; _activeAbortableOperations.add(controller); return controller; } void _removeAbortableOperation(AbortController controller) { _activeAbortableOperations.remove(controller); } Future useLock( int? lockId, AbortSignal abortSignal, T Function() block, ) { if (lockId == null) { // Not in an explicit lock context, just use global database lock. if (!database.locks.canRunSynchronousBlockDirectly) { final started = _startAbortableOperation(abortSignal); return database.locks.lock(block, started.signal).whenComplete(() { _removeAbortableOperation(started); }); } } else { if (_heldLock?.$1 != lockId) { throw StateError('Requested operation on inactive lock state.'); } } // Can run synchronous block directly. return Future.sync(block); } Future obtainLockAsync(AbortSignal abortSignal) { final started = _startAbortableOperation(abortSignal); final resolvedLockId = Completer(); database.locks .lock(() { // Since we just obtained an exclusive lock, we cannot possibly be holding // the lock already. assert(_heldLock == null); final id = _nextLockId++; final completer = Completer(); _heldLock = (id, completer); resolvedLockId.complete(id); return completer.future; }, started.signal) .onError((e, s) { if (!resolvedLockId.isCompleted) { resolvedLockId.completeError(e, s); } }); return resolvedLockId.future.whenComplete(() { _removeAbortableOperation(started); }); } void releaseLock(int id) { if (_heldLock?.$1 != id) { throw StateError('Lock to be released is not active.'); } _heldLock!.$2.complete(); _heldLock = null; } } final class _ClientConnection extends ProtocolChannel implements ClientConnection { final WorkerRunner _runner; final List<_ConnectionDatabase> _openedDatabases = []; @override final int id; _ClientConnection({ required WorkerRunner runner, required StreamChannel channel, required this.id, }) : _runner = runner, super(channel) { closed.whenComplete(() async { for (final id in _openedDatabases) { await id.close(); } _openedDatabases.clear(); }); } Future _handleCompatibilityCheck( CompatibilityCheck request, AbortSignal abortSignal, ) async { return newSimpleSuccessResponse( response: (await _runner.checkCompatibility(request)).toJS, requestId: request.requestId, ); } @override FutureOr handleDedicatedCompatibilityCheck( DedicatedCompatibilityCheck request, AbortSignal abortSignal, ) { return _handleCompatibilityCheck(request, abortSignal); } @override FutureOr handleDedicatedInSharedCompatibilityCheck( DedicatedInSharedCompatibilityCheck request, AbortSignal abortSignal, ) { return _handleCompatibilityCheck(request, abortSignal); } @override FutureOr handleSharedCompatibilityCheck( SharedCompatibilityCheck request, AbortSignal abortSignal, ) { return _handleCompatibilityCheck(request, abortSignal); } @override Future handleConnect( ConnectRequest request, AbortSignal abortSignal, ) async { // This is only used to let clients connect to a dedicated worker hosted in // this shared worker. final inner = _runner._innerWorker!; newConnectRequest( endpoint: request.endpoint, requestId: 0, databaseId: null, ).sendToWorker(inner); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } @override Future handleCustom( CustomRequest request, AbortSignal abortSignal, ) async { JSAny? response; if (request.databaseId case final id?) { final database = _databaseById(id); final lockId = request.lockId; final wrapped = CustomClientDatabaseRequest( request: request.payload, abortSignal: abortSignal, useLock: (block) { return database.useLock(lockId, abortSignal, block); }, ); response = await (await database.database.opened).handleCustomRequest( this, wrapped, ); } else { response = await _runner._controller.handleCustomRequest( this, CustomClientRequest(request: request, abortSignal: abortSignal), ); } return newSimpleSuccessResponse( requestId: request.requestId, response: response, ); } @override Future handleOpen( OpenRequest request, AbortSignal abortSignal, ) async { await _runner.loadWasmModule(Uri.parse(request.wasmUri)); DatabaseState? database; _ConnectionDatabase? connectionDatabase; try { database = _runner.findDatabase( request.databaseName, FileSystemImplementation.fromJS(request.storageMode), request.additionalData, ); await (request.onlyOpenVfs ? database.vfs : database.opened); connectionDatabase = _ConnectionDatabase(database); _openedDatabases.add(connectionDatabase); return newSimpleSuccessResponse( response: database.id.toJS, requestId: request.requestId, ); } catch (e) { if (database != null) { _openedDatabases.remove(connectionDatabase); await database.decrementRefCount(); } rethrow; } } @override Future handleRunQuery( RunQuery request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); final openedDatabase = await database.database.opened; return database.useLock(request.lockId, abortSignal, () { final db = openedDatabase.database; if (request.checkInTransaction && db.autocommit) { throw StateError('Database is not in a transaction'); } final parameters = TypeCode.decodeValues( request.parameters, request.typeVector, ); ResultSet? resultSet; if (request.returnRows) { resultSet = db.select(request.sql, parameters); return RowsResponseUtils.wrapResultSet( request.requestId, resultSet: resultSet, autoCommit: db.autocommit, lastInsertRowId: db.lastInsertRowId, ); } else { db.execute(request.sql, parameters); return newRowsResponse( columnNames: null, tableNames: null, typeVector: null, rows: null, autoCommit: db.autocommit, lastInsertRowId: db.lastInsertRowId, requestId: request.requestId, ); } }); } @override Future handleExclusiveLock( RequestExclusiveLock request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); final lock = await database.obtainLockAsync(abortSignal); return newSimpleSuccessResponse( response: lock.toJS, requestId: request.requestId, ); } @override Response handleReleaseLock(ReleaseLock request, AbortSignal abortSignal) { final database = _requireDatabase(request); database.releaseLock(request.lockId); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } @override FutureOr handleCommitRequest( CommitsStreamRequest request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); if (request.action) { return await subscribe(database.commits, () async { final rawDatabase = await database.database.opened; return rawDatabase.database.commits.listen((event) { sendNotification(newCommitNotification(databaseId: database.id)); }); }, request); } else { database.commits.cancel(); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } } @override FutureOr handleRollbackRequest( RollbackStreamRequest request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); if (request.action) { return await subscribe(database.rollbacks, () async { final rawDatabase = await database.database.opened; return rawDatabase.database.rollbacks.listen((event) { sendNotification(newRollbackNotification(databaseId: database.id)); }); }, request); } else { database.rollbacks.cancel(); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } } @override FutureOr handleUpdateRequest( UpdateStreamRequest request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); if (request.action) { return await subscribe(database.updates, () async { final rawDatabase = await database.database.opened; return rawDatabase.database.updates.listen((event) { sendNotification( newUpdateNotification( updateKind: event.kind.index, rowId: event.rowId, updateTableName: event.tableName, databaseId: database.id, ), ); }); }, request); } else { database.updates.cancel(); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } } @override Future handleOpenAdditionalConnection( OpenAdditionalConnection request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request).database; database.refCount++; final (endpoint, channel) = await createChannel(); final client = _runner._accept(channel); client._openedDatabases.add(_ConnectionDatabase(database, 0)); return newEndpointResponse( requestId: request.requestId, endpoint: endpoint, ); } @override Future handleCloseDatabase( CloseDatabase request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); _openedDatabases.remove(database); await database.close(); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } @override Future handleFileSystemFlush( FileSystemFlushRequest request, AbortSignal abortSignal, ) async { if (await _requireDatabase(request).database.vfs case IndexedDbFileSystem idb) { await idb.flush(); } return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } @override Future handleFileSystemAccess( FileSystemAccess request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); final fsType = FileType.values[request.fsType]; final buffer = request.buffer; final vfs = await database.database.vfs; final file = vfs .xOpen(Sqlite3Filename(fsType.pathInVfs), SqlFlag.SQLITE_OPEN_CREATE) .file; try { if (buffer != null) { final asDartBuffer = buffer.toDart; file.xTruncate(asDartBuffer.lengthInBytes); file.xWrite(asDartBuffer.asUint8List(), 0); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } else { final buffer = Uint8List(file.xFileSize()); file.xRead(buffer, 0); return newSimpleSuccessResponse( response: buffer.buffer.toJS, requestId: request.requestId, ); } } finally { file.xClose(); } } @override FutureOr handleFileSystemExists( FileSystemExistsQuery request, AbortSignal abortSignal, ) async { final database = _requireDatabase(request); final vfs = await database.database.vfs; final exists = vfs.xAccess(FileType.values[request.fsType].pathInVfs, 0) == 1; return newSimpleSuccessResponse( response: exists.toJS, requestId: request.requestId, ); } Future subscribe( _StreamState state, Future> Function() subscribeInternally, StreamRequest request, ) async { state.subscription ??= await subscribeInternally(); return newSimpleSuccessResponse( response: null, requestId: request.requestId, ); } @override void handleNotification(Notification notification) { // There aren't supposed to be any notifications from the client. } @override Future customRequest(JSAny? request) async { final response = await sendRequest( newCustomRequest( requestId: 0, payload: request, databaseId: null, lockId: null, ), MessageType.simpleSuccessResponse, ); return response.response; } _ConnectionDatabase _databaseById(int id) { return _openedDatabases.firstWhere((e) => e.id == id); } _ConnectionDatabase _requireDatabase(Request request) { if (request.databaseId case final id?) { return _databaseById(id); } else { throw ArgumentError('Request requires database id'); } } } extension on FileType { String get pathInVfs => switch (this) { FileType.database => '/database', FileType.journal => '/database-journal', }; } final class DatabaseState { final WorkerRunner runner; final int id; final String name; final FileSystemImplementation mode; final JSAny? additionalOptions; final DatabaseLocks locks; int refCount = 1; Future? _database; Future? _openVfs; VirtualFileSystem? _resolvedVfs; /// Runs additional async work, such as flushing the VFS to IndexedDB when /// the database is closed. FutureOr Function()? closeHandler; DatabaseState({ required this.id, required this.runner, required this.name, required this.mode, required this.additionalOptions, }) : locks = DatabaseLocks('pkg-sqlite3-web-$name', mode.needsExternalLocks); String get vfsName => 'vfs-web-$id'; Future get vfs async { await (_openVfs ??= Future.sync(() async { switch (mode) { case FileSystemImplementation.opfsAtomics: final options = WasmVfs.createOptions(root: pathForOpfs(name)); final worker = runner._environment.connector.spawnDedicatedWorker()!; newStartFileSystemServer(options: options).sendToWorker(worker); // Wait for the server worker to report that it's ready await EventStreamProviders.messageEvent .forTarget(worker.targetForErrorEvents) .first; final wasmVfs = _resolvedVfs = WasmVfs( workerOptions: options, vfsName: vfsName, ); closeHandler = wasmVfs.close; case FileSystemImplementation.opfsShared: final simple = _resolvedVfs = await SimpleOpfsFileSystem.loadFromStorage( pathForOpfs(name), vfsName: vfsName, ); closeHandler = simple.close; case FileSystemImplementation.opfsExternalLocks: final simple = _resolvedVfs = await SimpleOpfsFileSystem.loadFromStorage( pathForOpfs(name), vfsName: vfsName, readWriteUnsafe: true, ); closeHandler = simple.close; case FileSystemImplementation.indexedDb: final idb = _resolvedVfs = await IndexedDbFileSystem.open( dbName: name, vfsName: vfsName, ); closeHandler = idb.close; case FileSystemImplementation.inMemory: _resolvedVfs = InMemoryFileSystem(name: vfsName); } })); return _resolvedVfs!; } Future get opened async { final database = _database ??= Future.sync(() async { final sqlite3 = await runner._sqlite3!; final fileSystem = await vfs; sqlite3.registerVirtualFileSystem(fileSystem); return await locks.lock(() { return runner._controller.openDatabase( sqlite3, // We're currently using /database as the in-VFS path. This is because // we need to pre-open persistent files in SimpleOpfsFileSystem, and // that VFS only stores `/database` and `/database-journal`. // We still provide support for multiple databases by keeping multiple // VFS instances around. '/database', vfsName, additionalOptions, ); }, null); }); return await database; } Future decrementRefCount() async { if (--refCount == 0) { await close(); } } Future close() async { final sqlite3 = await runner._sqlite3!; final database = await _database!; database.database.close(); if (_resolvedVfs case final vfs?) { sqlite3.unregisterVirtualFileSystem(vfs); } await closeHandler?.call(); } } final class WorkerRunner { final WorkerEnvironment _environment; final DatabaseController _controller; final List<_ClientConnection> _connections = []; var _nextConnectionId = 0; final Map openedDatabases = {}; var _nextDatabaseId = 0; Future? _sqlite3; Uri? _wasmUri; final Mutex _compatibilityCheck = Mutex(); CompatibilityResult? _compatibilityResult; /// For shared workers, a dedicated inner worker allowing tabs to connect to /// a shared context that can use synchronous JS APIs. late final WorkerHandle? _innerWorker = _environment.connector .spawnDedicatedWorker(); WorkerRunner(this._controller, this._environment); void handleRequests() async { await for (final message in _environment.topLevelRequests) { if (message.type == MessageType.connect.name) { final channel = (message as ConnectRequest).endpoint.connect(); _accept(channel); } else if (message.type == MessageType.startFileSystemServer.name) { final worker = await VfsWorker.create( (message as StartFileSystemServer).options, ); // Inform the requester that the VFS is ready (globalContext as DedicatedWorkerGlobalScope).postMessage(true.toJS); await worker.start(); } else if (isCompatibilityCheck(message.type)) { // A compatibility check message is sent to dedicated workers inside of // shared workers, we respond through the top-level port. final result = await checkCompatibility(message as CompatibilityCheck); (globalContext as DedicatedWorkerGlobalScope).postMessage(result.toJS); } } } _ClientConnection _accept(StreamChannel channel) { final connection = _ClientConnection( runner: this, channel: channel, id: _nextConnectionId++, ); _connections.add(connection); connection.closed.whenComplete(() => _connections.remove(connection)); return connection; } Future checkCompatibility(CompatibilityCheck check) { return _compatibilityCheck.withCriticalSection(() async { if (_compatibilityResult != null) { // todo: We may have to update information about existing databases // as they come and go return _compatibilityResult!; } var supportsOpfs = false; var opfsSupportsReadWriteUnsafe = false; final databaseName = check.databaseName; if (check.shouldCheckOpfsCompatibility) { ( basicSupport: supportsOpfs, supportsReadWriteUnsafe: opfsSupportsReadWriteUnsafe, ) = await checkOpfsSupport(); } final supportsIndexedDb = check.shouldCheckIndexedDbCompatbility ? await checkIndexedDbSupport() : false; var sharedCanSpawnDedicated = false; final existingDatabases = {}; if (check.type == MessageType.sharedCompatibilityCheck.name) { if (_innerWorker case final innerWorker?) { sharedCanSpawnDedicated = true; newDedicatedInSharedCompatibilityCheck( databaseName: databaseName, requestId: 0, ).sendToWorker(innerWorker); final response = await EventStreamProviders.messageEvent .forTarget(innerWorker.targetForErrorEvents) .first; final result = CompatibilityResult.fromJS(response.data as JSObject); supportsOpfs = result.canUseOpfs; opfsSupportsReadWriteUnsafe = result.opfsSupportsReadWriteUnsafe; existingDatabases.addAll(result.existingDatabases); } } if (supportsOpfs) { for (final database in await opfsDatabases()) { existingDatabases.add((StorageMode.opfs, database)); } } if (supportsIndexedDb && databaseName != null) { if (await checkIndexedDbExists(databaseName)) { existingDatabases.add((StorageMode.indexedDb, databaseName)); } } return CompatibilityResult( existingDatabases: existingDatabases.toList(), sharedCanSpawnDedicated: sharedCanSpawnDedicated, canUseOpfs: supportsOpfs, opfsSupportsReadWriteUnsafe: opfsSupportsReadWriteUnsafe, canUseIndexedDb: supportsIndexedDb, supportsSharedArrayBuffers: globalContext.has('SharedArrayBuffer'), dedicatedWorkersCanNest: globalContext.has('Worker'), ); }); } Future loadWasmModule(Uri uri) async { if (_sqlite3 != null) { if (_wasmUri != uri) { throw StateError( 'Workers only support a single sqlite3 wasm module, provided ' 'different URI (has $_wasmUri, got $uri)', ); } await _sqlite3; } else { final future = _sqlite3 = _controller.loadWasmModule(uri).onError(( error, stackTrace, ) { _sqlite3 = null; throw error!; }); await future; _wasmUri = uri; } } DatabaseState findDatabase( String name, FileSystemImplementation mode, JSAny? additionalOptions, ) { for (final existing in openedDatabases.values) { if (existing.refCount != 0 && existing.name == name && existing.mode == mode) { existing.refCount++; return existing; } } final id = _nextDatabaseId++; return openedDatabases[id] = DatabaseState( id: id, runner: this, name: name, mode: mode, additionalOptions: additionalOptions, ); } } typedef OpfsSupport = ({bool basicSupport, bool supportsReadWriteUnsafe}); /// Checks whether the OPFS API is likely to be correctly implemented in the /// current browser. /// /// Since OPFS uses the synchronous file system access API, this method can only /// return true when called in a dedicated worker. Future checkOpfsSupport() async { const noSupport = (basicSupport: false, supportsReadWriteUnsafe: false); final storage = storageManager; if (storage == null) return noSupport; const testFileName = '_drift_feature_detection'; FileSystemDirectoryHandle? opfsRoot; FileSystemFileHandle? fileHandle; JSObject? openedFile; var canOpenWithReadWriteUnsafe = false; try { opfsRoot = await storage.directory; fileHandle = await opfsRoot.openFile(testFileName, create: true); (canOpenWithReadWriteUnsafe, openedFile) = await _tryOpeningWithReadWriteUnsafe(fileHandle); // In earlier versions of the OPFS standard, some methods like `getSize()` // on a sync file handle have actually been asynchronous. We don't support // Browsers that implement the outdated spec. final getSizeResult = openedFile.callMethod('getSize'.toJS); if (getSizeResult.typeofEquals('object')) { // Returned a promise, that's no good. await (getSizeResult as JSPromise).toDart; return noSupport; } return ( basicSupport: true, supportsReadWriteUnsafe: canOpenWithReadWriteUnsafe, ); } on Object { return noSupport; } finally { if (openedFile != null) { (openedFile as FileSystemSyncAccessHandle).close(); } if (opfsRoot != null && fileHandle != null) { await opfsRoot.remove(testFileName); } } } Future<(bool, FileSystemSyncAccessHandle)> _tryOpeningWithReadWriteUnsafe( FileSystemFileHandle handle, ) async { FileSystemSyncAccessHandle? opened; try { // First, try opening with readwrite-unsafe opened = await ProposedLockingSchemeApi(handle) .createSyncAccessHandle( FileSystemCreateSyncAccessHandleOptions.unsafeReadWrite(), ) .toDart; // The mode is supported if we can do it again (that means no lock has been // applied). final openedAgain = await ProposedLockingSchemeApi(handle) .createSyncAccessHandle( FileSystemCreateSyncAccessHandleOptions.unsafeReadWrite(), ) .toDart; openedAgain.close(); return (true, opened); } catch (e) { opened?.close(); // Fallback to opening without the special option. final sync = await handle.createSyncAccessHandle().toDart; return (false, sync); } } ================================================ FILE: sqlite3_web/lib/src/worker_connector.dart ================================================ /// @docImport 'database.dart'; library; import 'dart:async'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'package:web/web.dart'; /// Environment for workers hosting SQLite databases. abstract interface class WorkerEnvironment { /// A connector that can be used to spawn nested workers, if that feature is /// available in the current context. WorkerConnector get connector; /// Incoming messages. /// /// For dedicated workers, this would be all messages received on the /// [DedicatedWorkerGlobalScope]. For shared workers, all messages received on /// connecting ports. Stream get incomingMessages; /// The default environment for the current worker context. /// /// This should only be called in Dart programs compiled to workers. factory WorkerEnvironment() { final context = globalContext; if (context.instanceOfString('DedicatedWorkerGlobalScope')) { return _DedicatedWorkerEnvironment(); } else { return _SharedWorkerEnvironment(); } } } abstract class _WorkerEnvironment implements WorkerEnvironment { final T scope; @override final WorkerConnector connector = WorkerConnector.defaultWorkers(Uri.base); _WorkerEnvironment() : scope = globalContext as T; } final class _DedicatedWorkerEnvironment extends _WorkerEnvironment { @override Stream get incomingMessages { return EventStreamProviders.messageEvent.forTarget(scope); } } final class _SharedWorkerEnvironment extends _WorkerEnvironment { @override Stream get incomingMessages { // Listen for connect events, then watch each connected port to send a a // connect message. // Tabs will only use one message port to this worker, but may use multiple // connections for different databases. So we're not using the connect port // for the actual connection and instead wait for clients to send message // ports through the connect port. return Stream.multi((listener) { final connectPorts = []; final subscriptions = []; void handlePort(MessagePort port) { connectPorts.add(port); port.start(); subscriptions.add( EventStreamProviders.messageEvent.forTarget(port).listen((event) { listener.addSync(event); }), ); } subscriptions.add( EventStreamProviders.connectEvent.forTarget(scope).listen((event) { for (final port in (event as MessageEvent).ports.toDart) { handlePort(port); } }), ); listener.onCancel = () { for (final subscription in subscriptions) { subscription.cancel(); } }; }); } } /// A worker environment that isn't in an actual web worker. /// /// This package uses this to connect to a local worker implementation running /// in the same context if workers aren't available. final class FakeWorkerEnvironment implements WorkerEnvironment, WorkerHandle { @override final WorkerConnector connector; @override final EventTarget targetForErrorEvents = EventTarget(); final StreamController _messages = StreamController(); FakeWorkerEnvironment([this.connector = const WorkerConnector.unsupported()]); @override Stream get incomingMessages { return _messages.stream; } /// Adds a message that will show up in [incomingMessages]. @override void postMessage(JSAny? message, [JSObject? options]) { _messages.add(MessageEvent('message', MessageEventInit(data: message))); } void close() { _messages.close(); } } /// An interface abstracting over `Worker` and `SharedWorker` constructors, /// allowing clients of `sqlite3_web` to customize if and how workers are used. abstract interface class WorkerConnector { /// Spawn a new shared database worker, or returns `null` if dedicated workers /// aren't supported. WorkerHandle? spawnDedicatedWorker(); /// Spawn a new shared database worker, or returns `null` if shared workers /// aren't supported. WorkerHandle? spawnSharedWorker(); /// The default implementation, spawning workers with the [Worker] and /// [SharedWorker] constructors. /// /// The [uri] must point to a compiled Dart program using /// [WebSqlite.workerEntrypoint] to receive messages. factory WorkerConnector.defaultWorkers(Uri uri) { return _DefaultWorkerConnector(uri); } /// A [WorkerConnector] implementation that doesn't allow the use of workers. const factory WorkerConnector.unsupported() = _WithoutWorkers; } /// Handle to a shared or dedicated web worker. abstract interface class WorkerHandle { /// The web [EventTarget] representing the worker. /// /// This package will listen for errors on this target. Errors are assumed to /// be fatal and unhandled errors from the worker and will lead to the /// connection closing. EventTarget get targetForErrorEvents; /// Posts a JavaScript value as a message to this worker (or, for shared /// workers, the respective port). /// /// This method can wrap the message to send in another structure, allowing a /// single worker file to handle both `sqlite3_web` and other tasks. void postMessage(JSAny? msg, JSObject transfer); } final class _DefaultWorkerConnector implements WorkerConnector { final Uri _worker; _DefaultWorkerConnector(this._worker); @override WorkerHandle? spawnDedicatedWorker() { if (!globalContext.has('Worker')) { return null; } return _DedicatedWorker( Worker(_worker.toString().toJS, WorkerOptions(name: 'sqlite3_worker')), ); } @override WorkerHandle? spawnSharedWorker() { if (!globalContext.has('SharedWorker')) { return null; } final worker = SharedWorker(_worker.toString().toJS); worker.port.start(); return _SharedWorker(worker); } } final class _WithoutWorkers implements WorkerConnector { const _WithoutWorkers(); @override WorkerHandle? spawnDedicatedWorker() { return null; } @override WorkerHandle? spawnSharedWorker() { return null; } } final class _DedicatedWorker implements WorkerHandle { final Worker _worker; _DedicatedWorker(this._worker); @override void postMessage(JSAny? msg, JSObject transfer) { _worker.postMessage(msg, transfer); } @override EventTarget get targetForErrorEvents => _worker; } final class _SharedWorker implements WorkerHandle { final SharedWorker _worker; _SharedWorker(this._worker); @override void postMessage(JSAny? msg, JSObject transfer) { _worker.port.postMessage(msg, transfer); } @override EventTarget get targetForErrorEvents => _worker; } ================================================ FILE: sqlite3_web/pubspec.yaml ================================================ name: sqlite3_web description: Utilities to simplify accessing sqlite3 on the web, with automated feature detection. version: 0.7.0 homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_web repository: https://github.com/simolus3/sqlite3.dart resolution: workspace environment: sdk: '>=3.10.0 <4.0.0' dependencies: meta: ^1.11.0 sqlite3: ^3.0.0 stream_channel: ^2.1.2 web: ^1.0.0 dev_dependencies: lints: ^6.0.0 test: ^1.25.5 build_web_compilers: ^4.1.0 build_runner: ^2.4.8 build_daemon: ^4.0.2 webdriver: ^3.0.3 shelf: ^1.4.1 shelf_proxy: ^1.0.4 package_config: ^2.1.0 path: ^1.9.0 collection: ^1.18.0 async: ^2.11.0 shelf_static: ^1.1.3 # For benchmarks jaspr: ^0.23.0 jaspr_riverpod: ^0.4.3 http: ^1.6.0 # For the protocol generator analyzer: ^12.0.0 dart_style: ^3.1.5 pub_semver: ^2.2.0 ================================================ FILE: sqlite3_web/test/asset_server.dart ================================================ import 'dart:io'; import 'package:shelf/shelf.dart'; import 'package:shelf/shelf_io.dart' as io; import 'package:shelf_static/shelf_static.dart'; import 'package:stream_channel/stream_channel.dart'; const _corsHeaders = {'Access-Control-Allow-Origin': '*'}; Middleware cors() { Response? handleOptionsRequest(Request request) { if (request.method == 'OPTIONS') { return Response.ok(null, headers: _corsHeaders); } else { // Returning null will run the regular request handler return null; } } Response addCorsHeaders(Response response) { return response.change(headers: _corsHeaders); } return createMiddleware( requestHandler: handleOptionsRequest, responseHandler: addCorsHeaders, ); } Future hybridMain(StreamChannel channel) async { final server = await HttpServer.bind('localhost', 0); final handler = const Pipeline() .addMiddleware(cors()) .addHandler(createStaticHandler('.')); io.serveRequests(server, handler); channel.sink.add(server.port); await channel.stream .listen(null) .asFuture() .then((_) => server.close()); } ================================================ FILE: sqlite3_web/test/client_test.dart ================================================ @TestOn('browser') library; import 'package:sqlite3_web/sqlite3_web.dart'; import 'package:sqlite3_web/src/client.dart'; import 'package:test/test.dart'; void main() { test('finds preferrable implementations', () { final all = DatabaseImplementation.values.toList(); all.shuffle(); all.sort(DatabaseClient.preferrableMode); expect(all, [ DatabaseImplementation.opfsShared, DatabaseImplementation.opfsWithExternalLocks, DatabaseImplementation.opfsAtomics, DatabaseImplementation.indexedDbShared, DatabaseImplementation.indexedDbUnsafeWorker, DatabaseImplementation.indexedDbUnsafeLocal, DatabaseImplementation.inMemoryShared, DatabaseImplementation.inMemoryLocal, ]); }); } ================================================ FILE: sqlite3_web/test/integration_test.dart ================================================ @TestOn('vm') @Tags(['webdriver']) library; import 'dart:async'; import 'dart:io'; import 'package:sqlite3_web/src/types.dart'; import 'package:test/test.dart'; import 'package:webdriver/async_io.dart'; import 'package:webdriver/support/async.dart'; import '../tool/server.dart'; enum Browser { chrome( driverUriString: 'http://localhost:4444/wd/hub/', isChromium: true, unsupportedImplementations: {DatabaseImplementation.opfsShared}, missingFeatures: {MissingBrowserFeature.dedicatedWorkersInSharedWorkers}, defaultImplementation: DatabaseImplementation.opfsWithExternalLocks, ), firefox( driverUriString: 'http://localhost:4444/', defaultImplementation: DatabaseImplementation.opfsShared, unsupportedImplementations: {DatabaseImplementation.opfsWithExternalLocks}, missingFeatures: { MissingBrowserFeature.createSyncAccessHandleReadWriteUnsafe, }, ); final bool isChromium; final String driverUriString; final Set unsupportedImplementations; final Set missingFeatures; final DatabaseImplementation defaultImplementation; const Browser({ required this.driverUriString, required this.defaultImplementation, this.isChromium = false, this.unsupportedImplementations = const {}, this.missingFeatures = const {}, }); Uri get driverUri => Uri.parse(driverUriString); Set get availableImplementations { return DatabaseImplementation.values.where(supports).toSet(); } bool supports(DatabaseImplementation impl) => !unsupportedImplementations.contains(impl); Future spawnDriver() async { return switch (this) { firefox => Process.start('geckodriver', []).then((result) async { // geckodriver seems to take a while to initialize await Future.delayed(const Duration(seconds: 1)); return result; }), chrome => Process.start('chromedriver', [ '--port=4444', '--url-base=/wd/hub', ]), }; } } void main() { late TestAssetServer server; setUpAll(() async { server = await TestAssetServer.start(); }); tearDownAll(() => server.close()); for (final browser in Browser.values) { group(browser.name, () { late Process driverProcess; var isStoppingProcess = false; final processStopped = Completer(); setUpAll(() async { final process = driverProcess = await browser.spawnDriver(); process.exitCode.then((code) { if (!isStoppingProcess) { throw 'Webdriver stopped (code $code) before tearing down tests.'; } processStopped.complete(); }); }); tearDownAll(() { isStoppingProcess = true; driverProcess.kill(); return processStopped.future; }); for (final wasm in [false, true]) { group(wasm ? 'dart2wasm' : 'dart2js', () { final config = _TestConfiguration(browser, () => server, wasm); setUp(() async { await config.setUp(); }); tearDown(() => config.tearDown()); config.declareTests(); }); } }); } } final class _TestConfiguration { final Browser browser; final TestAssetServer Function() _server; final bool isDart2Wasm; late TestWebDriver driver; _TestConfiguration(this.browser, this._server, this.isDart2Wasm); TestAssetServer get server => _server(); Future setUp() async { late WebDriver rawDriver; for (var i = 0; i < 3; i++) { try { rawDriver = await createDriver( spec: browser.isChromium ? WebDriverSpec.JsonWire : WebDriverSpec.W3c, uri: browser.driverUri, desired: { 'goog:chromeOptions': { 'args': [ '--headless=new', '--disable-search-engine-choice-screen', ], }, 'moz:firefoxOptions': { 'args': ['-headless'], }, }, ); break; } on SocketException { // webdriver server taking a bit longer to start up... if (i == 2) { rethrow; } await Future.delayed(const Duration(milliseconds: 500)); } } // logs.get() isn't supported on Firefox if (browser != Browser.firefox) { rawDriver.logs.get(LogType.browser).listen((entry) { print('[console]: ${entry.message}'); }); } driver = TestWebDriver(server, rawDriver); await driver.driver.get( isDart2Wasm ? 'http://localhost:8080/?wasm=1' : 'http://localhost:8080/', ); await driver.waitReady(); } Future tearDown() async { await driver.driver.quit(); } void declareTests() { test('compatibility check', () async { // Make sure we're not testing the same compiler twice due to e.g. bugs in // the loader script. expect(await driver.isDart2wasm(), isDart2Wasm); final result = await driver.probeImplementations(); expect(result.missingFeatures, browser.missingFeatures); expect(result.impls, browser.availableImplementations); }); test('picks recommended option', () async { final implementation = await driver.openDatabase(); expect(implementation, browser.defaultImplementation); }); for (final implementation in browser.availableImplementations) { group(implementation.name, () { test('basic tests', () async { await driver.openDatabase( implementation: implementation, onlyOpenVfs: true, ); await driver.assertFile(false); expect(await driver.customRequest(), 42); await driver.execute('CREATE TABLE foo (bar TEXT);'); var events = await driver.countEvents(); expect(events.updates, 0); expect(events.commits, 0); expect(events.rollbacks, 0); await driver.execute("INSERT INTO foo (bar) VALUES ('hello');"); await waitFor(() async { events = await driver.countEvents(); expect(events.updates, 1); expect(events.commits, 1); }); expect(await driver.assertFile(true), isPositive); await driver.flush(); await driver.execute('begin'); await driver.execute('rollback'); await waitFor(() async { final events = await driver.countEvents(); return events.rollbacks; }, matcher: 1); if (implementation.storage != StorageMode.inMemory) { await driver.driver.refresh(); await driver.waitReady(); await driver.openDatabase( implementation: implementation, onlyOpenVfs: true, ); await driver.assertFile(true); await driver.driver.refresh(); await driver.waitReady(); await driver.delete(implementation.storage); await driver.openDatabase( implementation: implementation, onlyOpenVfs: true, ); await driver.assertFile(false); } }); test('check large write and read', () async { await driver.openDatabase( implementation: implementation, onlyOpenVfs: true, ); await driver.assertFile(false); await driver.checkReadWrite(); }); }); } test('can share databases', () async { await driver.testSecond(); }); test('re-uses IndexedDB after OPFS becomes available', () async { // In 0.4.0, we've added a new OPFS implementation that would be used by // default on browsers that previously only supported IndexedDB. await driver.openDatabase( implementation: DatabaseImplementation.indexedDbShared, ); await driver.execute('CREATE TABLE foo (bar TEXT);'); await driver.closeDatabase(); await driver.driver.refresh(); await driver.waitReady(); final features = await driver.probeImplementations(); expect(features.existing, [(StorageMode.indexedDb, 'database')]); final actualImplementation = await driver.openDatabase(); expect(actualImplementation.storage, StorageMode.indexedDb); await driver.execute('INSERT INTO foo DEFAULT VALUES'); }); } } ================================================ FILE: sqlite3_web/test/protocol_test.dart ================================================ @TestOn('browser') library; import 'dart:async'; import 'dart:js_interop'; import 'dart:typed_data'; import 'package:sqlite3/common.dart'; import 'package:sqlite3_web/sqlite3_web.dart'; import 'package:sqlite3_web/src/channel.dart'; import 'package:sqlite3_web/src/protocol.dart'; import 'package:test/test.dart'; import 'package:web/src/dom/dom.dart'; void main() { late TestServer server; late TestClient client; setUp(() async { final (endpoint, channel) = await createChannel(); server = TestServer(channel); client = TestClient(endpoint.connect()); }); tearDown(() async { await server.close(); await client.close(); }); group('TypeCode', () { test('is compatible with dartify()', () { for (final value in [ 1, 3.4, true, null, {'custom': 'object'}, 'string', Uint8List(10), ]) { final (_, jsified) = TypeCode.encodeValue(value); expect(jsified.dartify(), value); } }); }); test('serializes types in request', () async { server.handleRequestFunction = expectAsync1((request) async { final run = request as RunQuery; expect(run.sql, 'sql'); final parameters = TypeCode.decodeValues(run.parameters, run.typeVector); expect(parameters, [ 1, 1.0, true, false, 'a string', isA().having((e) => e.length, 'length', 10), isDart2Wasm ? 100 : BigInt.from(100), null, {'custom': 'object'}, ]); if (isDart2Wasm) { // Make sure we don't loose type information in the js conversion across // the message ports. expect(parameters[0].runtimeType, int); expect(parameters[1].runtimeType, double); } return newSimpleSuccessResponse( requestId: request.requestId, response: null, ); }); final (serializedParams, typeVector) = TypeCode.encodeValues([ 1, 1.0, true, false, 'a string', Uint8List(10), BigInt.from(100), null, {'custom': 'object'}, ]); await client.sendRequest( newRunQuery( requestId: 0, databaseId: 0, sql: 'sql', checkInTransaction: false, lockId: null, parameters: serializedParams, typeVector: typeVector, returnRows: true, ), MessageType.simpleSuccessResponse, ); }); test('serializes types in response', () async { server.handleRequestFunction = expectAsync1((request) async { return RowsResponseUtils.wrapResultSet( request.requestId, resultSet: ResultSet( ['a'], null, [ [1], [Uint8List(10)], [null], ['string value'], ], ), autoCommit: false, lastInsertRowId: 0, ); }); final response = await client.sendRequest( newRunQuery( requestId: 0, databaseId: 0, sql: 'sql', lockId: null, parameters: JSArray(), typeVector: null, returnRows: true, checkInTransaction: false, ), MessageType.rowsResponse, ); final resultSet = response.readResultSet()!; expect(resultSet.length, 4); expect(resultSet.map((e) => e['a']), [ 1, Uint8List(10), null, 'string value', ]); }); test('can serialize SqliteExceptions', () async { server.handleRequestFunction = expectAsync1((req) { throw SqliteException( extendedResultCode: 42, message: 'test exception', explanation: 'explanation', causingStatement: 'causingStatement', parametersToStatement: [1, null, 'a'], operation: 'operation', offset: 3, ); }); await expectLater( () => client.sendRequest( newRunQuery( requestId: 0, databaseId: 0, sql: 'sql', lockId: null, parameters: JSArray(), typeVector: null, returnRows: true, checkInTransaction: false, ), MessageType.rowsResponse, ), throwsA( isA().having( (e) => e.exception, 'exception', isA() .having((e) => e.extendedResultCode, 'extendedResultCode', 42) .having((e) => e.message, 'message', 'test exception') .having((e) => e.explanation, 'explanation', 'explanation') .having((e) => e.operation, 'operation', 'operation') .having( (e) => e.causingStatement, 'causingStatement', 'causingStatement', ) .having((e) => e.offset, 'offset', 3) .having((e) => e.parametersToStatement, 'parametersToStatement', [ 1, null, 'a', ]), ), ), ); }); } const isDart2Wasm = bool.fromEnvironment('dart.tool.dart2wasm'); final class TestServer extends ProtocolChannel { final StreamController _notifications = StreamController(); Future Function(Request request) handleRequestFunction = (req) async { throw 'unsupported'; }; TestServer(super.channel); Stream get notification => _notifications.stream; @override void handleNotification(Notification notification) { _notifications.add(notification); } @override FutureOr handleRunQuery(RunQuery request, AbortSignal abortSignal) { return handleRequestFunction(request); } } final class TestClient extends ProtocolChannel { TestClient(super.channel); @override void handleNotification(Notification notification) {} } ================================================ FILE: sqlite3_web/test/worker_test.dart ================================================ @TestOn('browser') library; import 'dart:async'; import 'dart:js_interop'; import 'package:sqlite3/common.dart'; import 'package:sqlite3/src/wasm/sqlite3.dart'; import 'package:sqlite3_web/sqlite3_web.dart'; import 'package:sqlite3_web/src/client.dart'; import 'package:test/test.dart'; void main() { late Uri sqlite3WasmUri; late FakeWorkerEnvironment fakeWorkers; setUpAll(() async { final channel = spawnHybridUri('/test/asset_server.dart'); final port = (await channel.stream.first as double).toInt(); sqlite3WasmUri = Uri.parse('http://localhost:$port/web/sqlite3.wasm'); }); setUp(() { fakeWorkers = FakeWorkerEnvironment(); WebSqlite.workerEntrypoint( controller: _TestController(), environment: fakeWorkers, ); }); tearDown(() { fakeWorkers.close(); }); Future requestDatabase( String name, DatabaseImplementation implementation, ) async { final client = WebSqlite.open( workers: _FakeWorkerConnector(fakeWorkers), wasmModule: sqlite3WasmUri, ); return (await client.connect(name, implementation)) as RemoteDatabase; } test('can open database', () async { final db = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); final results = await db.select('SELECT 1 as r;'); expect(results.result, [ {'r': 1}, ]); }); test('can share database between clients', () async { final a = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); final b = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); await a.execute('CREATE TABLE foo (bar TEXT);'); await b.execute('INSERT INTO foo DEFAULT VALUES'); final results = await a.select('SELECT * FROM foo'); expect(results.result, hasLength(1)); }); test('releases resources for closed databases', () async { final a = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); await a.execute('CREATE TABLE foo (bar TEXT);'); await a.dispose(); final b = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); // This would fail if the in-memory database were reused. await b.execute('CREATE TABLE foo (bar TEXT);'); }); test('returns autocommit state', () async { final a = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); var res = await a.execute('BEGIN'); expect(res.autocommit, isFalse); res = await a.execute('COMMIT'); expect(res.autocommit, isTrue); }); test('returns last insert rowid', () async { final a = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); await a.execute('CREATE TABLE foo (bar TEXT);'); final insert = await a.execute( 'INSERT INTO foo (bar) VALUES (?)', parameters: ['test'], ); expect(insert.lastInsertRowid, 1); }); test('check in transaction', () async { final a = await requestDatabase( 'foo', DatabaseImplementation.inMemoryShared, ); await a.execute('CREATE TABLE foo (bar TEXT);'); await a.execute('BEGIN'); await a.execute( 'INSERT INTO foo (bar) VALUES (?)', parameters: ['test'], checkInTransaction: true, ); await a.execute('COMMIT'); await expectLater( a.execute('SELECT 1', checkInTransaction: true), throwsA(isA()), ); }); group('locks', () { late RemoteDatabase a, b; setUp(() async { a = await requestDatabase('foo', DatabaseImplementation.inMemoryShared); b = await requestDatabase('foo', DatabaseImplementation.inMemoryShared); }); test('run sequentially', () async { final obtainedA = Completer(); final releaseA = Completer(); final obtainedB = Completer(); a.requestLock((token) async { obtainedA.complete(); await releaseA.future; }); final futureB = b.requestLock((token) async { obtainedB.complete(); }); await obtainedA.future; expect(obtainedB.isCompleted, isFalse); await pumpEventQueue(); expect(obtainedB.isCompleted, isFalse); releaseA.complete(); await obtainedB.future; await futureB; }); test('does not run statement while in lock', () async { final queryResult = Completer>(); var hasResults = false; await a.requestLock((token) async { // The token needs to be passed for statements to work. queryResult.complete( a.select('SELECT 1').whenComplete(() => hasResults = true), ); expect(hasResults, isFalse); await pumpEventQueue(); expect(hasResults, isFalse); }); final results = await queryResult.future; expect(results.result, hasLength(1)); }); test('can run statements in lock context', () async { await a.requestLock((token) async { final response = await a.select('SELECT 1', token: token); expect(response.result, hasLength(1)); await a.execute('SELECT 1', token: token); }); }); test('closing database releases lock', () async { final obtainedA = Completer(); a.requestLock((token) async { obtainedA.complete(); // Never complete await Future.any([]); }); await obtainedA.future; final lockB = b.requestLock((_) async {}); await a.dispose(); await lockB; }); test('can cancel lock', () async { final obtainedA = Completer(); final releaseA = Completer(); final cancelB = Completer(); final lockA = a.requestLock((token) async { obtainedA.complete(); await releaseA.future; }); await obtainedA.future; final lockB = b.requestLock((token) async { fail('should not grant lock'); }, abortTrigger: cancelB.future); await pumpEventQueue(); cancelB.complete(); await expectLater(lockB, throwsA(isA())); releaseA.complete(); await lockA; }); test('does not cancel lock after it has been granted', () async { final obtainedA = Completer(); final releaseA = Completer(); final cancelA = Completer(); final lockA = a.requestLock((token) async { obtainedA.complete(); await releaseA.future; }, abortTrigger: cancelA.future); await obtainedA.future; cancelA.complete(); await pumpEventQueue(); releaseA.complete(); await lockA; }); test('can cancel statements', () async { final obtainedA = Completer(); final releaseA = Completer(); final lockA = a.requestLock((token) async { obtainedA.complete(); await releaseA.future; }); await obtainedA.future; await expectLater( b.select('SELECT 1', abortTrigger: Future.value(null)), throwsA(isA()), ); await expectLater( b.execute('SELECT 1', abortTrigger: Future.value(null)), throwsA(isA()), ); releaseA.complete(); await lockA; }); test('can integrate with custom requests', () async { final obtainedA = Completer(); final releaseA = Completer(); final lockA = a.requestLock((token) async { obtainedA.complete(); expect( (await a.customRequest(null, token: token) as JSString).toDart, 'response', ); await releaseA.future; }); await obtainedA.future; await expectLater( b.customRequest(null, abortTrigger: Future.value(null)), throwsA(isA()), ); releaseA.complete(); await lockA; expect((await a.customRequest(null) as JSString).toDart, 'response'); }); }); } final class _FakeWorkerConnector implements WorkerConnector { final FakeWorkerEnvironment _env; _FakeWorkerConnector(this._env); @override WorkerHandle? spawnDedicatedWorker() { return _env; } @override WorkerHandle? spawnSharedWorker() { return _env; } } final class _TestController extends DatabaseController { @override Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ) { throw UnimplementedError(); } @override Future openDatabase( WasmSqlite3 sqlite3, String path, String vfs, JSAny? additionalData, ) async { return _TestDatabase(sqlite3.open(path, vfs: vfs)); } } final class _TestDatabase extends WorkerDatabase { @override final CommonDatabase database; _TestDatabase(this.database); @override Future handleCustomRequest( ClientConnection connection, CustomClientDatabaseRequest request, ) { return request.useLock(() { return 'response'.toJS; }); } } ================================================ FILE: sqlite3_web/tool/protocol_generator.dart ================================================ import 'dart:io'; import 'package:analyzer/dart/analysis/features.dart'; import 'package:analyzer/dart/analysis/utilities.dart'; import 'package:analyzer/dart/ast/ast.dart'; import 'package:collection/collection.dart'; import 'package:dart_style/dart_style.dart'; import 'package:pub_semver/pub_semver.dart'; // This tool generates `lib/src/protocol/helper.g.dart` containing an // enumeration of message types and utilities to generate messages as object // literals. void main() { final types = ProtocolMessageType.readFromDart( File('lib/src/protocol/messages.dart').readAsStringSync(), ); final codegen = DartCodeGenerator()..generate(types); File('lib/src/protocol/helper.g.dart').writeAsStringSync(codegen.content); } final class ProtocolMessageType { final String name; /// The name of this message type in `MessageType` enum. final String messageTypeName; final bool isAbstract; final List definedFields = []; final ProtocolMessageType? parent; ProtocolMessageType({ required this.name, required this.messageTypeName, this.parent, this.isAbstract = false, }); String get requestMethodName { final firstChar = messageTypeName.substring(0, 1); final rest = messageTypeName.substring(1); return 'handle${firstChar.toUpperCase()}$rest'; } Iterable get allFields sync* { final fieldNames = {}; ProtocolMessageType? current = this; while (current != null) { for (final field in current.definedFields) { if (fieldNames.add(field.javaScriptName)) { yield field; } } current = current.parent; } } bool inheritsFromName(String name) { return switch (parent) { null => false, final parent => parent.name == name || parent.inheritsFromName(name), }; } static List readFromDart(String source) { final parsed = parseString( content: source, featureSet: FeatureSet.latestLanguageVersion(), ).unit; final messageTypes = {}; final uniqueFieldNames = UniqueFieldNames(); // First, read unique field names (used to resolve @JS annotations without // having to fully resolve the source file). for (final declaration in parsed.declarations) { if (declaration is ClassDeclaration && declaration.namePart.typeName.lexeme == '_UniqueFieldNames') { uniqueFieldNames.readFrom(declaration); } } for (final declaration in parsed.declarations) { if (declaration is ExtensionTypeDeclaration) { final implements = declaration.implementsClause; if (implements == null || implements.interfaces.length != 1) { continue; } final name = declaration.primaryConstructor.typeName.lexeme; var isAbstract = false; var messageTypeName = name; for (final annotation in declaration.metadata) { if (_isAnnotation(annotation, 'abstract')) { isAbstract = true; } if (annotation.name.name == 'MessageTypeName') { messageTypeName = (annotation.arguments!.arguments[0] as SimpleStringLiteral) .value; } } ProtocolMessageType? resolvedParentType; if (name != 'Message') { final parentTypeName = implements.interfaces[0].name.lexeme; resolvedParentType = messageTypes[parentTypeName]; if (resolvedParentType == null) { throw 'For $name: Could not find $parentTypeName'; } } final definedType = ProtocolMessageType( name: name, messageTypeName: messageTypeName, parent: resolvedParentType, isAbstract: isAbstract, ); messageTypes[name] = definedType; for (final definition in declaration.body.childEntities) { if (definition is FieldDeclaration) { String? jsName; TransferMode mode = TransferMode.clone; for (final annotation in definition.metadata) { if (uniqueFieldNames.readJsAnnotation(annotation) case final name?) { jsName = name; continue; } if (_isAnnotation(annotation, 'transfer')) { mode = TransferMode.move; } else if (_isAnnotation(annotation, 'transferIfArrayBuffer')) { mode = TransferMode.moveIfArrayBuffer; } } final type = definition.fields.type!; for (final field in definition.fields.variables) { definedType.definedFields.add( ProtocolMessageField( dartType: source.substring(type.offset, type.end), dartName: field.name.lexeme, javaScriptName: jsName ?? field.name.lexeme, isMessageType: _hasAnnotation(definition, 'isType'), transferMode: mode, ), ); } } } } } return messageTypes.values.toList(); } static bool _isAnnotation(Annotation annotation, String name) { return annotation.name.name == name; } static bool _hasAnnotation(AnnotatedNode node, String name) { return node.metadata.any((a) => _isAnnotation(a, name)); } } final class ProtocolMessageField { final String dartName; final String dartType; final String javaScriptName; /// Whether this is the `type` field on `Message`. /// /// This field is auto-generated for each subtype. final bool isMessageType; final TransferMode transferMode; ProtocolMessageField({ required this.dartName, required this.dartType, required this.javaScriptName, this.isMessageType = false, this.transferMode = TransferMode.clone, }); } enum TransferMode { clone, move, moveIfArrayBuffer } /// Parsed `_UniqueFIeldNames` constants, used to resolve `@JS` annotations. final class UniqueFieldNames { final Map fieldValues = {}; void readFrom(ClassDeclaration declaration) { for (final child in declaration.body.childEntities) { if (child is FieldDeclaration) { for (final variable in child.fields.variables) { final value = variable.initializer as SimpleStringLiteral; fieldValues[variable.name.lexeme] = value.value; } } } } String? readJsAnnotation(Annotation annotation) { if (annotation.name.name == 'JS') { final arg = annotation.arguments!.arguments[0]; if (arg is SimpleStringLiteral) { return arg.value; } if (arg is PrefixedIdentifier && arg.prefix.name == '_UniqueFieldNames') { return fieldValues[arg.identifier.name]!; } throw 'Unsupported @JS argument'; } return null; } } final class DartCodeGenerator { final buffer = StringBuffer(""" // Generated by tool/protocol_generator.dart, do not modify by hand. import 'dart:async'; import 'dart:js_interop'; import 'package:web/web.dart' show AbortSignal; import 'package:sqlite3/wasm.dart' show WorkerOptions; import '../channel.dart'; import 'messages.dart'; """); String get content { final formatter = DartFormatter(languageVersion: Version(3, 10, 0)); try { return formatter.format(buffer.toString()); } on Object { // Probably a syntax error in sources, we want to inspect that further. return buffer.toString(); } } void generate(List types) { _generateMessageTypeEnum(types); _generateRequestHandler(types); _generateFactories(types); _generateExtractTransferrable(types); _generateDispatchMessage(types); } void _generateMessageTypeEnum(List types) { buffer.writeln('enum MessageType {'); for (final type in types) { if (type.isAbstract) continue; buffer.writeln(' ${type.messageTypeName}<${type.name}>(),'); } buffer.writeln('}'); } void _generateRequestHandler(List types) { buffer.writeln('abstract base class RequestHandler {'); for (final type in types) { if (type.isAbstract || !type.inheritsFromName('Request')) continue; buffer ..writeln( 'FutureOr ${type.requestMethodName}' '(${type.name} request, AbortSignal abortSignal) => ' '_unsupportedRequest(request);', ) ..writeln(); } buffer.writeln('Future _unsupportedRequest(Request request) {'); buffer.writeln( " return Future.error(ArgumentError('Unsupported request \${request.type}'));", ); buffer.writeln('}'); buffer.writeln( 'FutureOr dispatchRequest(Request request, AbortSignal abortSignal) {', ); buffer.writeln('switch(request.type) {'); for (final type in types) { if (type.isAbstract || !type.inheritsFromName('Request')) continue; buffer.write("case '${type.messageTypeName}': return "); buffer.writeln( '${type.requestMethodName}(request as ${type.name}, abortSignal);', ); } buffer.writeln('default: return _unsupportedRequest(request);'); buffer.writeln('}'); buffer.writeln('}'); buffer.writeln('}'); } void _generateFactories(List types) { for (final type in types) { if (type.isAbstract) continue; final name = type.name; buffer ..writeln('@anonymous') ..writeln('extension type _$name._($name _) implements $name {') ..writeln('external factory _$name({'); for (final field in type.allFields) { buffer ..write(" @JS('${field.javaScriptName}')") ..write('required ${field.dartType} ${field.dartName},'); } buffer ..writeln('});') ..writeln('}') ..write(type.name) ..write(' new${type.name}({'); final defaultValues = {}; for (final field in type.allFields) { var hasDefault = false; if (field.isMessageType) { defaultValues[field.dartName] = "'${type.messageTypeName}'"; hasDefault = true; continue; } if (!hasDefault) { buffer.write('required '); } buffer ..write('${field.dartType} ') ..write(field.dartName) ..writeln(', '); } buffer ..writeln('}) {') ..write(' return _$name('); for (final field in type.allFields) { buffer ..write(field.dartName) ..write(': '); if (defaultValues[field.dartName] case final defaultValue?) { buffer.write(defaultValue); } else { buffer.write(field.dartName); } buffer.writeln(', '); } buffer ..writeln(');') ..writeln('}'); } } void _generateExtractTransferrable(List types) { buffer ..writeln(r"@JS('ArrayBuffer')") ..writeln('external JSFunction get _arrayBufferConstructor;') ..writeln('JSArray extractTransferrable(Message message) {') ..writeln('final result = JSArray();') ..writeln('switch (message.type) {'); for (final type in types) { if (type.isAbstract) continue; final statements = []; String addToResult(String expr) { return 'result.add($expr);'; } for (final field in type.allFields) { final expr = '(message as ${type.name}).${field.dartName}'; switch (field.transferMode) { case TransferMode.clone: // Don't include this field in transferrable continue; case TransferMode.move: final isNullable = field.dartType.endsWith('?'); if (field.dartType == 'WebEndpoint') { statements.add(addToResult('$expr.port')); } else if (isNullable) { statements.add('if ($expr case final e?) ${addToResult('e')}'); } else { statements.add(addToResult(expr)); } case TransferMode.moveIfArrayBuffer: statements.add( 'if ($expr case JSAny a when a.instanceof(_arrayBufferConstructor)) {${addToResult('a')}}', ); } } if (statements.isNotEmpty) { buffer.writeln( "case '${type.messageTypeName}': ${statements.join()}break;", ); } } buffer ..writeln('}') ..writeln('return result;') ..writeln('}'); } void _generateDispatchMessage(List types) { final typesDirectlyExtendingMessage = types .where( (t) => switch (t.parent) { ProtocolMessageType(name: 'Message') => true, _ => false, }, ) .toList(); Iterable subtypesOf(ProtocolMessageType type) { return types.where((sub) => sub.inheritsFromName(type.name)); } typesDirectlyExtendingMessage.sortBy((parent) => subtypesOf(parent).length); buffer.writeln('T dispatchMessage(Message msg, {'); for (final type in typesDirectlyExtendingMessage) { buffer.writeln(' required T Function(${type.name}) when${type.name},'); } buffer ..writeln('}) {') ..writeln('switch (msg.type) {'); for (final type in typesDirectlyExtendingMessage) { if (type != typesDirectlyExtendingMessage.last) { var subTypes = subtypesOf(type); if (!type.isAbstract) { subTypes = subTypes.followedBy([type]); } for (final subType in subTypes) { buffer.writeln("case '${subType.messageTypeName}':"); } } else { // We've covered all other cases, so handle this one as a default. buffer.write('default:'); } buffer.writeln('return when${type.name}(msg as ${type.name});'); } buffer ..writeln('}') ..writeln('}'); } } ================================================ FILE: sqlite3_web/tool/server.dart ================================================ import 'dart:convert'; import 'dart:io'; import 'dart:isolate'; import 'package:build_daemon/client.dart'; import 'package:build_daemon/constants.dart'; import 'package:build_daemon/data/build_status.dart'; import 'package:build_daemon/data/build_target.dart'; import 'package:collection/collection.dart'; import 'package:package_config/package_config.dart'; import 'package:path/path.dart' as p; import 'package:shelf/shelf_io.dart'; import 'package:shelf_proxy/shelf_proxy.dart'; import 'package:webdriver/async_io.dart'; import 'package:sqlite3_web/src/types.dart'; import 'package:webdriver/support/async.dart'; void main(List args) async { final target = switch (args) { [] => 'web', [final target] => target, _ => throw ArgumentError('Expected no args or one (the folder to serve)'), }; await TestAssetServer.start(target: target); print('Serving $target/ on http://localhost:8080/'); } class TestAssetServer { final BuildDaemonClient buildRunner; late final HttpServer server; TestAssetServer(this.buildRunner); Future close() async { await server.close(force: true); await buildRunner.close(); } static Future start({String target = 'web'}) async { final packageConfig = await loadPackageConfigUri( (await Isolate.packageConfig)!, ); final ownPackage = packageConfig['sqlite3_web']!.root; var packageDir = ownPackage.toFilePath(windows: Platform.isWindows); if (packageDir.endsWith('/')) { packageDir = packageDir.substring(0, packageDir.length - 1); } final buildRunner = await BuildDaemonClient.connect(packageDir, [ Platform.executable, // dart 'run', 'build_runner', 'daemon', ], logHandler: (log) => print(log.message)); buildRunner ..registerBuildTarget(DefaultBuildTarget((b) => b.target = target)) ..startBuild(); // Wait for the build to complete, so that the server we return is ready to // go. await buildRunner.buildResults.firstWhere((b) { final buildResult = b.results.firstWhereOrNull((r) => r.target == target); return buildResult != null && buildResult.status != BuildStatus.started; }); final assetServerPortFile = File( p.join(daemonWorkspace(packageDir), '.asset_server_port'), ); final assetServerPort = int.parse(await assetServerPortFile.readAsString()); final server = TestAssetServer(buildRunner); final proxy = proxyHandler('http://localhost:$assetServerPort/$target/'); server.server = await serve( (request) async { final pathSegments = request.url.pathSegments; if (pathSegments.isNotEmpty && pathSegments[0] == 'no-coep') { // Serve stuff under /no-coep like the regular website, but without // adding the security headers. return await proxy(request.change(path: 'no-coep')); } else { final response = await proxy(request); if (!request.url.path.startsWith('/no-coep')) { return response.change( headers: { // Needed for shared array buffers to work 'Cross-Origin-Opener-Policy': 'same-origin', 'Cross-Origin-Embedder-Policy': 'require-corp', }, ); } return response; } }, 'localhost', 8080, ); return server; } } class TestWebDriver { final TestAssetServer server; final WebDriver driver; TestWebDriver(this.server, this.driver); /// Wait for the Dart code on the test page to finish its main method, which /// it signals by creating an element. Future waitReady() async { await waitFor(() => driver.findElement(By.id('ready'))); } Future isDart2wasm() async { return await driver.executeAsync('isDart2wasm("", arguments[0])', []); } Future< ({ Set impls, Set missingFeatures, List existing, }) > probeImplementations() async { final rawResult = await driver.executeAsync( 'detectImplementations("", arguments[0])', [], ); final result = json.decode(rawResult); return ( impls: { for (final entry in result['impls']) DatabaseImplementation.values.byName(entry as String), }, missingFeatures: { for (final entry in result['missing']) MissingBrowserFeature.values.byName(entry), }, existing: [ for (final entry in result['existing']) (StorageMode.values.byName(entry[0] as String), entry[1] as String), ], ); } Future openDatabase({ DatabaseImplementation? implementation, bool onlyOpenVfs = false, }) async { final desc = implementation?.name; final method = onlyOpenVfs ? 'open_only_vfs' : 'open'; final res = await driver.executeAsync('$method(arguments[0], arguments[1])', [desc]) as String?; // This returns the implementation actually chosen. return DatabaseImplementation.values.byName(res!); } Future closeDatabase() async { await driver.executeAsync("close('', arguments[0])", []); } Future<({int updates, int commits, int rollbacks})> countEvents() async { final result = await driver.executeAsync( 'get_updates("", arguments[0])', [], ); return ( updates: result[0] as int, commits: result[1] as int, rollbacks: result[2] as int, ); } Future execute(String sql) async { await driver.executeAsync('exec(arguments[0], arguments[1])', [sql]); } Future testSecond() async { final res = await driver.executeAsync('test_second("", arguments[0])', []); if (res != true) { throw 'test_second failed! More information may be available in the console.'; } } Future assertFile(bool shouldExist) async { final res = await driver.executeAsync( 'assert_file(arguments[0], arguments[1])', [shouldExist.toString()], ); res!; if (res == false) { throw 'assertFile failed! Expected $shouldExist, match return was $res'; } if (res is int) { return res; } else { return null; } } Future customRequest() async { final res = await driver.executeAsync( 'custom_request("", arguments[0])', [], ); return res as int; } Future flush() async { final result = await driver.executeAsync('flush("", arguments[0])', []); if (result != true) { throw 'flush() failed: $result'; } } Future checkReadWrite() async { final result = await driver.executeAsync( 'check_read_write("", arguments[0])', [], ); if (result != null) { throw 'check_read_write() failed: $result'; } } Future delete(StorageMode mode) async { await driver.executeAsync('delete_db(arguments[0], arguments[1])', [ mode.name, ]); } } ================================================ FILE: sqlite3_web/web/controller.dart ================================================ import 'dart:js_interop'; import 'package:sqlite3/common.dart'; import 'package:sqlite3/src/wasm/sqlite3.dart'; import 'package:sqlite3_web/sqlite3_web.dart'; final class ExampleController extends DatabaseController { final bool isInWorker; ExampleController({required this.isInWorker}); @override Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ) async { return null; } @override Future openDatabase( WasmSqlite3 sqlite3, String path, String vfs, JSAny? additionalData, ) async { final raw = sqlite3.open(path, vfs: vfs); raw.createFunction( functionName: 'database_host', function: (args) => isInWorker ? 'worker' : 'document', argumentCount: const AllowedArgumentCount(0), ); raw.createFunction( functionName: 'additional_data', function: (args) => (additionalData as JSString).toDart, argumentCount: const AllowedArgumentCount(0), ); return ExampleDatabase(database: raw); } } final class ExampleDatabase extends WorkerDatabase { @override final CommonDatabase database; ExampleDatabase({required this.database}); @override Future handleCustomRequest( ClientConnection connection, CustomClientRequest request, ) async { final response = ((await connection.customRequest(null)) as JSNumber).toDartInt; return (2 * response).toJS; } } ================================================ FILE: sqlite3_web/web/index.html ================================================ web_wasm

package:sqlite3_web integration tests

Welcome! For integration tests, this page is opened through a web driver, and scripts are injected to run tests. To test that things are generally working, you can start a quick self-check here. Results are logged to the console. Open this page in a new tab

================================================ FILE: sqlite3_web/web/main.dart ================================================ import 'dart:convert'; import 'dart:js_interop'; import 'dart:js_interop_unsafe'; import 'dart:typed_data'; import 'package:sqlite3_web/sqlite3_web.dart'; import 'package:sqlite3_web/src/client.dart'; import 'package:web/web.dart'; import 'controller.dart'; final sqlite3WasmUri = Uri.parse('sqlite3.wasm'); final workerUri = Uri.parse('worker.dart.js'); const databaseName = 'database'; const additionalOptions = 'test-additional-options'; WebSqlite? webSqlite; Database? database; int updates = 0; int commits = 0; int rollbacks = 0; bool listeningForUpdates = false; void main() { _addCallbackForWebDriver('isDart2wasm', (_) async { const isWasm = bool.fromEnvironment('dart.tool.dart2wasm'); return isWasm.toJS; }); _addCallbackForWebDriver('detectImplementations', _detectImplementations); _addCallbackForWebDriver('close', (arg) async { await database?.dispose(); return null; }); _addCallbackForWebDriver('get_updates', (arg) async { listenForUpdates(); return [updates.toJS, commits.toJS, rollbacks.toJS].toJS; }); _addCallbackForWebDriver('open', (arg) => _open(arg, false)); _addCallbackForWebDriver('open_only_vfs', (arg) => _open(arg, true)); _addCallbackForWebDriver('exec', _exec); _addCallbackForWebDriver('test_second', (arg) async { final sqlite = initializeSqlite(); // Open one database to occupy the database id of zero in the worker final unused = await sqlite.connect( 'a', DatabaseImplementation.inMemoryShared, ); await unused.execute('CREATE TABLE unused (bar TEXT);'); // Then open another one final first = await sqlite.connect('b', DatabaseImplementation.inMemoryShared) as RemoteDatabase; await first.execute('CREATE TABLE foo (bar TEXT);'); final endpoint = await first.additionalConnection(); final second = await WebSqlite.connectToPort(endpoint) as RemoteDatabase; // First and second should have different internal ids (that's what the // setup with the unused database was trying to accomplish). if (first.databaseId == second.databaseId) { return 'Unexpected same id'.toJS; } await second.execute('SELECT * FROM foo;'); var receivedUpdates = 0; second.updates.listen((_) => receivedUpdates++); await first.execute('INSERT INTO foo VALUES (?)', parameters: ['a']); await unused.execute('INSERT INTO unused VALUES (?)', parameters: ['a']); await Future.delayed(const Duration(milliseconds: 200)); await unused.dispose(); await first.dispose(); await second.dispose(); // This should have received the update from the first database without // receiving the one from the unrelated database. return (receivedUpdates == 1).toJS; }); _addCallbackForWebDriver('assert_file', (arg) async { final vfs = database!.fileSystem; final exists = await vfs.exists(FileType.database); print('exists: $exists'); if (exists != bool.parse(arg!)) { return false.toJS; } if (exists) { // Try reading file contents final buffer = await vfs.readFile(FileType.database); return buffer.length.toJS; } return true.toJS; }); _addCallbackForWebDriver('flush', (arg) async { final vfs = database!.fileSystem; await vfs.flush(); return true.toJS; }); _addCallbackForWebDriver('delete_db', (arg) async { final storage = StorageMode.values.byName(arg!); await initializeSqlite().deleteDatabase( name: databaseName, storage: storage, ); return true.toJS; }); _addCallbackForWebDriver('check_read_write', (arg) async { final vfs = database!.fileSystem; final bytes = Uint8List(1024 * 128); for (var i = 0; i < 128; i++) { bytes[i * 1024] = i; } await vfs.writeFile(FileType.database, bytes); await vfs.flush(); final result = await vfs.readFile(FileType.database); if (result.length != bytes.length) { return 'length mismatch'.toJS; } for (var i = 0; i < 128; i++) { if (result[i * 1024] != i) { return 'mismatch, i=$i, byte ${result[i * 1024]}'.toJS; } } return null; }); _addCallbackForWebDriver('custom_request', (arg) async { return database!.customRequest(null); }); document.getElementById('selfcheck')?.onClick.listen((event) async { print('starting'); final sqlite = initializeSqlite(); final database = await sqlite.connectToRecommended(databaseName); print( 'selected storage: ${database.storage} through ${database.access} (${database.implementation})', ); print('missing features: ${database.features.missingFeatures}'); }); document.body!.appendChild(HTMLDivElement()..id = 'ready'); } void _addCallbackForWebDriver( String name, Future Function(String?) impl, ) { globalContext.setProperty( name.toJS, (JSString? arg, JSFunction callback) { Future(() async { JSAny? result; try { result = await impl(arg?.toDart); } catch (e, s) { final console = globalContext['console']! as JSObject; console.callMethod( 'error'.toJS, e.toString().toJS, s.toString().toJS, ); } callback.callAsFunction(null, result); }); }.toJS, ); } WebSqlite initializeSqlite() { return webSqlite ??= WebSqlite.open( workers: WorkerConnector.defaultWorkers(workerUri), wasmModule: sqlite3WasmUri, controller: ExampleController(isInWorker: false), handleCustomRequest: (request) async { return 21.toJS; }, ); } Future _detectImplementations(String? _) async { final instance = initializeSqlite(); final result = await instance.runFeatureDetection(databaseName: 'database'); return json.encode({ 'impls': result.availableImplementations.map((r) => r.name).toList(), 'missing': result.missingFeatures.map((r) => r.name).toList(), 'existing': result.existingDatabases.map((r) => [r.$1.name, r.$2]).toList(), }).toJS; } Future _open(String? implementationName, bool onlyOpenVfs) async { final sqlite = initializeSqlite(); Database db; var returnValue = implementationName; if (implementationName != null) { db = await sqlite.connect( databaseName, DatabaseImplementation.values.byName(implementationName), onlyOpenVfs: onlyOpenVfs, additionalOptions: additionalOptions.toJS, ); } else { final result = await sqlite.connectToRecommended( databaseName, onlyOpenVfs: onlyOpenVfs, additionalOptions: additionalOptions.toJS, ); db = result.database; returnValue = result.implementation.name; } database = db; // Make sure it works! if (!onlyOpenVfs) { final result = await db.select( 'SELECT database_host() as host, additional_data() as data;', ); final rows = result.result; if (rows.length != 1) { throw 'unexpected row count'; } final row = rows[0]; if (row['data'] != additionalOptions) { throw 'unexpected data: $row'; } listenForUpdates(); } return returnValue?.toJS; } void listenForUpdates() { if (!listeningForUpdates) { listeningForUpdates = true; database!.updates.listen((_) => updates++); database!.commits.listen((_) => commits++); database!.rollbacks.listen((_) => rollbacks++); } } Future _exec(String? sql) async { await database!.execute(sql!); return null; } ================================================ FILE: sqlite3_web/web/main.js ================================================ (async () => { const thisScript = document.currentScript; const params = new URL(document.location.toString()).searchParams; const wasmOption = params.get("wasm"); function relativeURL(ref) { const base = thisScript?.src ?? document.baseURI; return new URL(ref, base).toString(); } if (wasmOption == "1") { let { compileStreaming } = await import("./main.mjs"); let app = await compileStreaming(fetch(relativeURL("main.wasm"))); let module = await app.instantiate({}); module.invokeMain(); } else { const scriptTag = document.createElement("script"); scriptTag.type = "application/javascript"; scriptTag.src = relativeURL("./main.dart2js.js"); document.head.append(scriptTag); } })(); ================================================ FILE: sqlite3_web/web/worker.dart ================================================ import 'package:sqlite3_web/sqlite3_web.dart'; import 'controller.dart'; void main() { WebSqlite.workerEntrypoint(controller: ExampleController(isInWorker: true)); } ================================================ FILE: tool/build_sqlite.dart ================================================ import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:code_assets/code_assets.dart'; import 'package:file/local.dart'; import 'package:hooks/hooks.dart'; import 'package:pool/pool.dart'; import 'package:path/path.dart' as p; import '../sqlite3/hook/build.dart' as hook; final _limitConcurrency = Pool(Platform.numberOfProcessors); /// Invokes `package:sqlite3` build hooks for multiple operating systems and /// architectures, merging outputs into `sqlite3-compiled/`. void main(List args) async { Directory.current = Directory('sqlite3'); var operatingSystems = args.map(OS.fromString).toList(); if (operatingSystems.isEmpty) { if (Platform.isLinux) { operatingSystems = [OS.linux, OS.android]; } else if (Platform.isMacOS) { operatingSystems = [OS.macOS, OS.iOS]; } else if (Platform.isWindows) { operatingSystems = [OS.windows]; } } if (operatingSystems.isEmpty) { print('Usage: dart run tool/build_sqlite3.dart '); exit(1); } print('Compiling for $operatingSystems'); const fs = LocalFileSystem(); final outputDirectory = fs.currentDirectory.parent.childDirectory('sqlite-compiled'); print('Compiling to ${outputDirectory.path}'); if (await outputDirectory.exists()) { await outputDirectory.delete(recursive: true); } await outputDirectory.create(); final buildTasks = >[]; for (final mode in ['sqlite3', 'sqlite3mc']) { final sourcePath = fs.currentDirectory.parent .childDirectory('sqlite-src') .childDirectory(mode) .childFile(mode == 'sqlite3' ? 'sqlite3.c' : 'sqlite3mc_amalgamation.c') .path; Future buildAndCopy(OS os, Architecture architecture, {IOSCodeConfig? iOS, String? osNameOverride}) async { final osName = osNameOverride ?? os.name; CCompilerConfig? compilerConfig; if (os == OS.iOS || os == OS.macOS) { // Ensure we use an XCode toolchain to avoid issues when uploading apps // to AppStore connect. final xcode = Process.runSync('xcode-select', ['-p']); final [path] = const LineSplitter().convert(xcode.stdout); Uri tool(String name) { return Uri.file(p.join( path, 'Toolchains/XcodeDefault.xctoolchain/usr/bin/$name')); } compilerConfig = CCompilerConfig( archiver: tool('ar'), compiler: tool('clang'), linker: tool('ld'), ); } await testBuildHook( extensions: [ CodeAssetExtension( cCompiler: compilerConfig, targetArchitecture: architecture, targetOS: os, linkModePreference: LinkModePreference.dynamic, iOS: iOS, macOS: os == OS.macOS ? MacOSCodeConfig(targetVersion: 13) : null, android: os == OS.android ? AndroidCodeConfig(targetNdkApi: 24) : null, ) ], linkingEnabled: true, mainMethod: hook.main, check: (_, output) async { final name = os.dylibFileName('${mode}.${architecture.name}.${osName}'); for (final file in output.assets.code) { await fs .file(file.file!) .copy(outputDirectory.childFile(name).path); } }, userDefines: PackageUserDefines( workspacePubspec: PackageUserDefinesSource( defines: { 'source': 'source', 'path': p.relative(sourcePath, from: fs.currentDirectory.path), }, basePath: fs.currentDirectory.uri, )), ); } void scheduleTask(Future Function() task) { buildTasks.add(_limitConcurrency.withResource(task)); } for (final os in operatingSystems) { for (final architecture in _osToAbis[os]!) { // Compiling sqlite3mc for x86 on Linux does not work. if (mode == 'sqlite3mc' && os == OS.linux && architecture == Architecture.ia32) { continue; } scheduleTask(() => buildAndCopy(os, architecture, iOS: IOSCodeConfig(targetSdk: IOSSdk.iPhoneOS, targetVersion: 12))); } if (os == OS.iOS) { // Also compile for iOS simulators final simulatorConfig = IOSCodeConfig(targetSdk: IOSSdk.iPhoneSimulator, targetVersion: 12); scheduleTask(() => buildAndCopy(os, Architecture.arm64, iOS: simulatorConfig, osNameOverride: 'ios_sim')); scheduleTask(() => buildAndCopy(os, Architecture.x64, iOS: simulatorConfig, osNameOverride: 'ios_sim')); } } } await Future.wait(buildTasks, eagerError: true); print('Done building'); } const _osToAbis = { OS.linux: [ Architecture.arm, Architecture.arm64, Architecture.ia32, Architecture.x64, Architecture.riscv64, ], OS.android: [ Architecture.arm, Architecture.arm64, Architecture.ia32, Architecture.x64, ], OS.windows: [ Architecture.arm64, Architecture.ia32, Architecture.x64, ], OS.macOS: [ Architecture.arm64, Architecture.x64, ], OS.iOS: [ Architecture.arm64, // Note: There's a special check to also compile simulator builds for x64 ], }; ================================================ FILE: tool/build_with_sanitizers.dart ================================================ import 'dart:io'; import 'package:file/local.dart'; import 'package:hooks/hooks.dart'; import 'package:code_assets/code_assets.dart'; import 'package:native_toolchain_c/native_toolchain_c.dart'; import 'package:path/path.dart' as p; import 'package:pool/pool.dart'; import 'package:sqlite3/src/hook/description.dart'; import '../sqlite3/hook/build.dart' as hook; final _limitConcurrency = Pool(Platform.numberOfProcessors); /// Builds `libsqlite3.so` variants for X64 Linux with different sanitizers /// enabled. void main() async { const fs = LocalFileSystem(); Directory.current = Directory('sqlite3'); final sourcePath = fs.currentDirectory.parent .childDirectory('sqlite-src') .childDirectory('sqlite3') .childFile('sqlite3.c') .path; final outputDirectory = fs.currentDirectory.parent.childDirectory('sqlite-sanitized'); if (await outputDirectory.exists()) { await outputDirectory.delete(recursive: true); } await outputDirectory.create(); Future compileWithSanitizer(String sanitizer) async { await testBuildHook( extensions: [ CodeAssetExtension( targetArchitecture: Architecture.x64, targetOS: OS.linux, linkModePreference: LinkModePreference.dynamic, cCompiler: CCompilerConfig( archiver: _which('llvm-ar'), compiler: _which('clang'), linker: _which('lld'), ), ) ], linkingEnabled: true, mainMethod: (args) { return build(args, (input, output) async { final sourceFile = p.relative(sourcePath, from: fs.currentDirectory.path); final library = CBuilder.library( name: 'sqlite3', packageName: 'sqlite3', assetName: hook.name, sources: [sourceFile], includes: [p.dirname(sourceFile)], defines: { 'SQLITE_ENABLE_API_ARMOR': '1', ...CompilerDefines.defaults(false), }, flags: [ '-fsanitize=$sanitizer', '-fno-omit-frame-pointer', // It looks like os calls like stat() don't count as initializing // memory, so we have to exclude SQLite itself from msan tests. // But we can already assume it to be correct, we mainly want to // test Dart parts. if (sanitizer == 'memory') '-fsanitize-ignorelist=../native_tests/ignorelist.txt' ], ); await library.run(input: input, output: output); }); }, check: (_, output) async { final name = 'sqlite3.san_$sanitizer.so'; for (final file in output.assets.code) { await fs.file(file.file!).copy(outputDirectory.childFile(name).path); } }, ); } await [ for (final sanitizer in ['address', 'memory', 'thread']) _limitConcurrency.withResource(() => compileWithSanitizer(sanitizer)), ].wait; } Uri _which(String tool) { final result = Process.runSync('which', [tool]); if (result.exitCode != 0) { throw 'Tool not found: $tool'; } final path = (result.stdout as String).trim(); return Uri.file(path); } ================================================ FILE: tool/download_sqlite.dart ================================================ import 'dart:io'; // Note: When updating these sources, also change // sqlite3_wasm_build/src/CMakeLists.txt const sqlitePath = 'sqlite-amalgamation-3530000'; const sqliteSource = 'https://sqlite.org/2026/$sqlitePath.zip'; const sqliteMultipleCiphersSource = 'https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.3.3/sqlite3mc-2.3.3-sqlite-3.53.0-amalgamation.zip'; const tmpDir = 'tmp'; /// This runs as part of a GitHub actions workflow in this repository. It's not /// really supposed to be used outside of that, but can be used to reproduce /// what hooks are doing in the CI. void main(List args) async { await Directory(tmpDir).create(); await _downloadAndExtract(sqliteSource, 'sqlite3'); await _downloadAndExtract(sqliteMultipleCiphersSource, 'sqlite3mc'); await Directory('sqlite-src').create(); await Directory('sqlite-src/sqlite3mc').create(); await File('$tmpDir/sqlite3mc_amalgamation.h') .copy('sqlite-src/sqlite3mc/sqlite3mc_amalgamation.h'); await File('$tmpDir/sqlite3mc_amalgamation.c') .copy('sqlite-src/sqlite3mc/sqlite3mc_amalgamation.c'); await Directory('sqlite-src/sqlite3').create(); await File('$tmpDir/$sqlitePath/sqlite3.h') .copy('sqlite-src/sqlite3/sqlite3.h'); await File('$tmpDir/$sqlitePath/sqlite3.c') .copy('sqlite-src/sqlite3/sqlite3.c'); await File('$tmpDir/$sqlitePath/sqlite3ext.h') .copy('sqlite-src/sqlite3/sqlite3ext.h'); } Future _downloadAndExtract(String url, String filename) async { await _run('curl -L $url --output $filename.zip', workingDirectory: tmpDir); await _run('unzip $filename.zip', workingDirectory: tmpDir); } Future _run(String command, {String? workingDirectory}) async { print('Running $command'); final proc = await Process.start( 'sh', ['-c', command], mode: ProcessStartMode.inheritStdio, workingDirectory: workingDirectory, ); final exitCode = await proc.exitCode; if (exitCode != 0) { exit(exitCode); } } ================================================ FILE: tool/hook_overrides.dart ================================================ import 'dart:io'; import 'package:path/path.dart' as p; /// Adds a `hooks` section to the `pubspec.yaml` of the directory the script is /// running in to customize how `package:sqlite3` loads `libsqlite3`. void main(List args) async { for (final path in ['pubspec.yaml', 'examples/pubspec.yaml']) { Process.runSync('git', ['restore', '--', path]); final out = await File(path).openWrite(mode: FileMode.append); final [mode] = args; switch (mode) { case 'system': out.write(''' hooks: user_defines: sqlite3: source: system '''); case 'system-os-specific': out.write(''' hooks: user_defines: sqlite3: source: system name_linux: sqlite3 name_macos: sqlite3 name_windows: winsqlite3 name: bogus_value_to_fail_if_selected '''); case 'compiled': final outPath = p.relative('sqlite-compiled', from: p.dirname(path)); out.write(''' hooks: user_defines: sqlite3: source: test-sqlite3 directory: $outPath/ '''); case 'compiled-ciphers': final outPath = p.relative('sqlite-compiled', from: p.dirname(path)); out.write(''' hooks: user_defines: sqlite3: source: test-sqlite3mc directory: $outPath/ '''); default: throw 'Unsupported mode, can use system, system-os-specific, ' 'compiled, compiled-ciphers'; } await out.flush(); await out.close(); } } ================================================ FILE: tool/write_asset_hashes.dart ================================================ import 'dart:io'; import 'package:collection/collection.dart'; import 'package:crypto/crypto.dart'; import 'package:path/path.dart' as p; /// A GH actions step will download all sqlite3 binaries attached to a release /// to `sqlite/out`. /// /// This program replaces `sqlite3/lib/src/hook/asset_hashes.dart` to reference /// those hashes. /// /// When given an argument, that is interpreted as a tag name about to be /// released. It asserts the source matches what this script would generate. void main(List args) { final releaseTag = switch (args) { [] => null, [final arg] => arg, _ => throw ArgumentError.value( args.join(' '), 'args', 'Must be empty or the tag'), }; final buffer = StringBuffer(''' // This file contains hashes of SQLite binaries downloaded by the default hook. // For tests, it is replaced with actual assets. For releases, a pre-release // check asserts it's up-to-date. // // Generated by tool/write_asset_hashes.dart // dart format off // ignore: unnecessary_nullable_for_final_variable_declarations const String? releaseTag = ${releaseTag == null ? 'null' : "'$releaseTag'"}; const Map assetNameToSha256Hash = { '''); final files = Directory('sqlite-compiled').listSync().whereType().toList(); files.sortBy((f) => f.path); for (final file in files) { final name = p.basename(file.path); final hash = sha256.convert(file.readAsBytesSync()); buffer.writeln(" '$name': '$hash',"); } buffer.writeln('};'); print(buffer); final targetFile = File(p.join('sqlite3', 'lib', 'src', 'hook', 'asset_hashes.dart')); if (releaseTag == null) { targetFile.writeAsStringSync(buffer.toString()); } else { final actual = targetFile.readAsStringSync(); if (actual != buffer.toString()) { print('Contents did not match expected outputs'); exit(1); } } }