Repository: DJ2LS/FreeDATA Branch: main Commit: d900e184954e Files: 240 Total size: 5.6 MB Directory structure: gitextract_4euq89rz/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── dependabot.yml │ └── workflows/ │ ├── build_appimage_bundle.yml │ ├── build_docker_image.yml │ ├── build_nsis_bundle.yml │ ├── build_server.yml │ ├── codeql-analysis.yml │ ├── gui_tests.yml │ ├── modem_tests.yml │ ├── pip_package.yml │ └── prettier.yaml ├── .gitignore ├── .obs/ │ └── workflows.yml ├── .prettierignore ├── .stignore ├── Dockerfile ├── LICENSE ├── README.docker.md ├── README.md ├── add-osx-cert.sh ├── documentation/ │ ├── FreeDATA-Frametypes.ods │ ├── FreeDATA-daemon_network_documentation.md │ ├── FreeDATA-protocols.md │ └── cube.xcf ├── entrypoint.sh ├── freedata-nsis-config.nsi ├── freedata_gui/ │ ├── README.md │ ├── babel.config.js │ ├── eslint.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── manifest.json │ ├── src/ │ │ ├── App.vue │ │ ├── assets/ │ │ │ ├── countries-10m.json │ │ │ ├── countries-110m.json │ │ │ ├── countries-50m.json │ │ │ └── waterfall/ │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ ├── colormap.js │ │ │ ├── index.html │ │ │ ├── make_colormap.py │ │ │ ├── spectrum.js │ │ │ └── waterfall.css │ │ ├── components/ │ │ │ ├── chat_conversations.vue │ │ │ ├── chat_messages.vue │ │ │ ├── chat_messages_action_menu.vue │ │ │ ├── chat_messages_image_preview.vue │ │ │ ├── chat_messages_received.vue │ │ │ ├── chat_messages_sent.vue │ │ │ ├── chat_new_message.vue │ │ │ ├── chat_screen.vue │ │ │ ├── dynamic_components.vue │ │ │ ├── grid/ │ │ │ │ ├── grid_CQ.vue │ │ │ │ ├── grid_active_audio.vue │ │ │ │ ├── grid_active_broadcasts.vue │ │ │ │ ├── grid_active_broadcasts_vert.vue │ │ │ │ ├── grid_active_heard_stations.vue │ │ │ │ ├── grid_active_heard_stations_mini.vue │ │ │ │ ├── grid_active_rig_control.vue │ │ │ │ ├── grid_active_stats.vue │ │ │ │ ├── grid_activities.vue │ │ │ │ ├── grid_beacon.vue │ │ │ │ ├── grid_button.vue │ │ │ │ ├── grid_dbfs.vue │ │ │ │ ├── grid_frequency.vue │ │ │ │ ├── grid_mycall small.vue │ │ │ │ ├── grid_mycall.vue │ │ │ │ ├── grid_ping.vue │ │ │ │ ├── grid_ptt.vue │ │ │ │ ├── grid_s-meter.vue │ │ │ │ ├── grid_scatter.vue │ │ │ │ ├── grid_stations_map.vue │ │ │ │ ├── grid_stats_chart.vue │ │ │ │ ├── grid_stop.vue │ │ │ │ ├── grid_swr_meter.vue │ │ │ │ └── grid_tune.vue │ │ │ ├── main_footer_navbar.vue │ │ │ ├── main_left_navbar.vue │ │ │ ├── main_loading_screen.vue │ │ │ ├── main_modals.vue │ │ │ ├── main_screen.vue │ │ │ ├── main_startup_check.vue │ │ │ ├── settings_chat.vue │ │ │ ├── settings_exp.vue │ │ │ ├── settings_flrig.vue │ │ │ ├── settings_gui.vue │ │ │ ├── settings_hamlib.vue │ │ │ ├── settings_modem.vue │ │ │ ├── settings_rigcontrol.vue │ │ │ ├── settings_screen.vue │ │ │ ├── settings_serial_ptt.vue │ │ │ ├── settings_station.vue │ │ │ ├── settings_url.vue │ │ │ └── settings_web.vue │ │ ├── js/ │ │ │ ├── api.js │ │ │ ├── eventHandler.js │ │ │ ├── event_sock.js │ │ │ ├── freedata.js │ │ │ ├── i18n.js │ │ │ ├── messagesHandler.js │ │ │ ├── mobile_devices.js │ │ │ ├── popupHandler.js │ │ │ ├── radioHandler.js │ │ │ ├── stationHandler.js │ │ │ └── waterfallHandler.js │ │ ├── locales/ │ │ │ ├── cz_Čeština.json │ │ │ ├── de_Deutsch.json │ │ │ ├── en_English.json │ │ │ ├── it_Italiano.json │ │ │ └── no_Norsk.json │ │ ├── main.js │ │ ├── store/ │ │ │ ├── audioStore.js │ │ │ ├── chatStore.js │ │ │ ├── index.js │ │ │ ├── serialStore.js │ │ │ ├── settingsStore.js │ │ │ ├── stateStore.js │ │ │ └── stationStore.js │ │ └── styles.css │ └── vue.config.js ├── freedata_server/ │ ├── .gitignore │ ├── __init__.py │ ├── adif_udp_logger.py │ ├── api/ │ │ ├── __init__.py │ │ ├── command_helpers.py │ │ ├── common.py │ │ ├── config.py │ │ ├── devices.py │ │ ├── freedata.py │ │ ├── general.py │ │ ├── modem.py │ │ ├── radio.py │ │ └── websocket.py │ ├── api_validations.py │ ├── arq_data_type_handler.py │ ├── arq_session.py │ ├── arq_session_irs.py │ ├── arq_session_iss.py │ ├── audio.py │ ├── audio_buffer.py │ ├── codec2.py │ ├── codec2_filter_coeff.py │ ├── command.py │ ├── command_arq_raw.py │ ├── command_beacon.py │ ├── command_cq.py │ ├── command_fec.py │ ├── command_message_send.py │ ├── command_p2p_connection.py │ ├── command_ping.py │ ├── command_qrv.py │ ├── command_test.py │ ├── command_transmit_sine.py │ ├── config.ini.example │ ├── config.py │ ├── constants.py │ ├── context.py │ ├── cw.py │ ├── data_frame_factory.py │ ├── demodulator.py │ ├── event_manager.py │ ├── exceptions.py │ ├── explorer.py │ ├── flrig.py │ ├── frame_dispatcher.py │ ├── frame_handler.py │ ├── frame_handler_arq_session.py │ ├── frame_handler_beacon.py │ ├── frame_handler_cq.py │ ├── frame_handler_p2p_connection.py │ ├── frame_handler_ping.py │ ├── helpers.py │ ├── list_ports_winreg.py │ ├── log_handler.py │ ├── maidenhead.py │ ├── message_p2p.py │ ├── message_system_db_attachments.py │ ├── message_system_db_beacon.py │ ├── message_system_db_manager.py │ ├── message_system_db_messages.py │ ├── message_system_db_model.py │ ├── message_system_db_station.py │ ├── modem.py │ ├── modem_frametypes.py │ ├── modulator.py │ ├── p2p_connection.py │ ├── radio_manager.py │ ├── rigctld.py │ ├── rigdummy.py │ ├── schedule_manager.py │ ├── serial_ports.py │ ├── serial_ptt.py │ ├── server.py │ ├── service_manager.py │ ├── socket_interface.py │ ├── socket_interface_commands.py │ ├── socket_interface_data.py │ ├── state_manager.py │ ├── stats.py │ ├── wavelog_api_logger.py │ └── websocket_manager.py ├── requirements.txt ├── setup.py ├── tests/ │ ├── test_arq_session.py │ ├── test_config.py │ ├── test_data_frame_factory.py │ ├── test_data_type_handler.py │ ├── test_message_database.py │ ├── test_message_p2p.py │ ├── test_message_protocol.py │ ├── test_p2p_connection.py │ ├── test_protocols.py │ └── test_server.py └── tools/ ├── Linux/ │ ├── FreeDATA.desktop │ ├── README-Desktop-icon.txt │ ├── README.txt │ ├── install-freedata-linux.sh │ └── run-freedata-linux.sh ├── Windows/ │ ├── GUI-Install-Requirements.bat │ ├── GUI-Launch.bat │ ├── GUI-Update-Requirements.bat │ ├── Modem-Install-Requirements.bat │ ├── Modem-Launch.bat │ ├── Modem-Update-Requirements.bat │ ├── Modem-list-audio-devs.bat │ └── copy-files.bat ├── custom_mode_tests/ │ ├── create_custom_ofdm_mod.py │ ├── over_the_air_mode_test.py │ ├── plot_speed_levels.py │ └── run_mode_tests.py ├── macOS/ │ ├── README.md │ ├── install-freedata-macos.sh │ └── run-freedata-macos.sh ├── run-server.sh ├── run-tests.sh └── socket_interface/ ├── socket_client.py └── socket_data_client.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.yml ================================================ name: Bug Report description: Report a FreeDATA bug title: "[Bug]: " labels: "bug :beetle:" body: - type: markdown attributes: value: | Thanks for taking the time to fill out this bug report! - type: input id: freedata-version attributes: label: FreeDATA Version description: | What version of FreeDATA are you using? validations: required: true - type: dropdown id: operating-system attributes: label: What operating system are you using? options: - Windows - macOS - Ubuntu - Other Linux - Other (specify below) validations: required: true - type: input id: operating-system-version attributes: label: Operating System Version description: What operating system version are you using? On Windows, click Start button > Settings > System > About. On macOS, click the Apple Menu > About This Mac. On Linux, use lsb_release or uname -a. placeholder: "e.g. Windows 10 version 1909, macOS Catalina 10.15.7, or Ubuntu 20.04" validations: required: true - type: dropdown id: architecture attributes: label: Architecture description: Please specify the system architecture. options: - x86 - x64 - ARM Desktop - ARM Raspberry Pi validations: required: true - type: dropdown id: area-of-problem attributes: label: Area of problem description: Select the area where the problem occurred. options: - Server - Message System - Server - General - Server - API - Server - File Transfer - Server - Socket Interface - GUI - Rig Control - Installation validations: required: true - type: textarea id: description attributes: label: Describe the bug description: A clear and concise description of what the bug is. placeholder: "A clear and concise description of what the bug is." validations: required: true - type: textarea id: steps-to-reproduce attributes: label: To Reproduce description: | Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error placeholder: "1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error" validations: required: true - type: textarea id: expected-behavior attributes: label: Expected behavior description: A clear and concise description of what you expected to happen. placeholder: "A clear and concise description of what you expected to happen." validations: required: true - type: textarea id: screenshots attributes: label: Screenshots description: If applicable, add screenshots to help explain your problem. placeholder: "If applicable, add screenshots to help explain your problem." - type: textarea id: log-files attributes: label: Log Files description: If applicable, add log files to help explain your problem. placeholder: "If applicable, add log files to help explain your problem." - type: textarea id: additional-context attributes: label: Additional context description: Add any other context about the problem here. placeholder: "Add any other context about the problem here." ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ contact_links: - name: Discord Chat url: https://discord.gg/QewJE4hrFH about: Have questions? Try asking on our Discord - this issue tracker is for reporting bugs or feature requests only ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.yml ================================================ name: Feature Request description: Suggest an idea for FreeDATA title: "[Feature Request]: " labels: "enhancement :sparkles:" body: - type: textarea attributes: label: Problem Description description: Please add a clear and concise description of the problem you are seeking to solve with this feature request. validations: required: true - type: textarea attributes: label: Proposed Solution description: Describe the solution you'd like in a clear and concise manner. validations: required: true - type: textarea attributes: label: Alternatives Considered description: A clear and concise description of any alternative solutions or features you've considered. validations: required: true - type: textarea attributes: label: Additional Information description: Add any other context about the problem here. validations: required: false ================================================ FILE: .github/dependabot.yml ================================================ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: # Maintain dependencies for GitHub Actions - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" target-branch: "develop" # Maintain dependencies for npm - package-ecosystem: "npm" directory: "/freedata_gui" schedule: interval: "monthly" target-branch: "develop" # Maintain dependencies for pip - package-ecosystem: "pip" directory: "/" schedule: interval: "monthly" target-branch: "develop" ================================================ FILE: .github/workflows/build_appimage_bundle.yml ================================================ name: Build and Release APPIMAGE Installer on: [push] jobs: build-and-release: runs-on: ubuntu-latest steps: - name: Check out repository uses: actions/checkout@v5 - name: Set up Python 3.13 uses: actions/setup-python@v5 with: python-version: "3.13" - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v4 with: node-version: 24 - name: Electron Builder working-directory: freedata_gui run: | npm i npm run build - name: LIST ALL FILES run: ls -R - name: Install Linux dependencies run: | sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake python3-libhamlib2 patchelf desktop-file-utils - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Build binaries working-directory: freedata_server run: | python3 -m nuitka --remove-output --assume-yes-for-downloads --follow-imports --include-data-dir=lib=lib --include-data-files=lib/codec2/*=lib/codec2/ --include-data-files=config.ini.example=config.ini --standalone server.py --output-filename=freedata-server - name: Prepare AppImage folder run: | mkdir -p $HOME/freedata-appimage mkdir -p $HOME/freedata-appimage/gui mkdir -p $HOME/freedata-appimage/server - name: Copy GUI run: | cp -r freedata_gui/release/linux-unpacked/* $HOME/freedata-appimage/gui - name: Copy server run: | cp -r freedata_server/server.dist/* $HOME/freedata-appimage/server - name: Copy Icon run: | cp freedata_gui/build/icon.png $HOME/freedata-appimage/icon.png - name: Create Desktop shortcut run: | echo "[Desktop Entry]" > $HOME/freedata-appimage/FreeDATA.desktop echo "Type=Application" >> $HOME/freedata-appimage/FreeDATA.desktop echo "Name=FreeDATA" >> $HOME/freedata-appimage/FreeDATA.desktop echo "Icon=icon" >> $HOME/freedata-appimage/FreeDATA.desktop echo "Exec=AppRun" >> $HOME/freedata-appimage/FreeDATA.desktop echo "Categories=Utility" >> $HOME/freedata-appimage/FreeDATA.desktop - name: Create AppImage build script run: | echo '#!/bin/bash # Navigate to the AppDir root; this ensures relative paths work as expected cd "$(dirname "$(readlink -f "${0}")")" # check if config exists in ~/.config/FreeDATA/config.ini else create it SERVER_CONFIG_FILE=~/.config/FreeDATA/config.ini if test -f "$SERVER_CONFIG_FILE"; then echo "$SERVER_CONFIG_FILE exists." else echo "$SERVER_CONFIG_FILE does not exist. Copying the default one" mkdir ~/.config/FreeDATA cp ./server/config.ini $SERVER_CONFIG_FILE fi echo "Setting server config variable" export FREEDATA_CONFIG=$SERVER_CONFIG_FILE # ./server/freedata-server # Launch the gui echo "Starting gui" ./gui/freedata ' > $HOME/freedata-appimage/AppRun chmod +x $HOME/freedata-appimage/AppRun - name: Download AppImage run: | wget https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage -O appimagetool-x86_64.AppImage chmod +x appimagetool-x86_64.AppImage - name: Execute AppImage run: | ./appimagetool-x86_64.AppImage $HOME/freedata-appimage/ - name: LIST ALL FILES run: ls -R - name: Upload artifact uses: actions/upload-artifact@v4 with: name: 'FreeDATA-x86_64.AppImage' path: FreeDATA-x86_64.AppImage - name: Upload Installer to Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: draft: true files: FreeDATA-x86_64.AppImage tag_name: ${{ github.ref_name }} name: 'FreeDATA-x86_64.AppImage' ================================================ FILE: .github/workflows/build_docker_image.yml ================================================ name: Build and Release Docker Image on: [push] jobs: build: runs-on: ubuntu-latest name: Build image and upload artifact steps: - name: Checkout Code uses: actions/checkout@v5 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 # Build a single-architecture image (using linux/amd64) so we can load it locally. - name: Build Docker image for artifact run: | docker buildx build --platform linux/amd64 --load -t ghcr.io/dj2ls/freedata:latest . # Save the built image as a tarball. - name: Save Docker image to tar file run: | docker save ghcr.io/dj2ls/freedata:latest -o freedata.tar # Upload the image tarball as an artifact. - name: Upload Docker image artifact uses: actions/upload-artifact@v4 with: name: freedata-image path: freedata.tar release: if: startsWith(github.ref, 'refs/tags/') needs: build runs-on: ubuntu-latest name: Build and Publish Release permissions: packages: write contents: read steps: - name: Checkout Repo uses: actions/checkout@v5 - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log in to GitHub Container Registry uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push multi-arch Docker images uses: docker/build-push-action@v6 with: context: . platforms: linux/amd64,linux/arm64 push: true tags: | ghcr.io/dj2ls/freedata:latest ghcr.io/dj2ls/freedata:${{ github.ref_name }} labels: | org.opencontainers.image.title=FreeDATA org.opencontainers.image.description=Docker image for FreeDATA org.opencontainers.image.url=https://github.com/dj2ls/freedata/pkgs/container/freedata/ ================================================ FILE: .github/workflows/build_nsis_bundle.yml ================================================ name: Build and Release NSIS Installer on: [push] jobs: build-and-release: runs-on: windows-latest steps: - name: Check out repository uses: actions/checkout@v5 - name: Set up Python 3.13 uses: actions/setup-python@v5 with: python-version: "3.13" - name: Install NSIS via choco run: choco install nsis - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v4 with: node-version: 24 - name: Vue Builder working-directory: freedata_gui run: | npm i npm run build - name: LIST ALL FILES run: ls -R - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - uses: robinraju/release-downloader@v1.12 with: repository: "Hamlib/Hamlib" fileName: "hamlib-w64-*.zip" # latest: true extract: true tag: '4.6.5' out-file-path: "freedata_server/lib/hamlib" - name: Move Hamlib Files working-directory: freedata_server run: | # Find the downloaded folder (handle version numbers dynamically) $HAMLIB_DIR = Get-ChildItem -Directory -Path lib/hamlib -Filter "hamlib-w64*" | Select-Object -First 1 # Move all contents from the found directory to the target directory Move-Item "$($HAMLIB_DIR.FullName)\*" "lib/hamlib" -Force # Remove the now empty versioned directory Remove-Item "$($HAMLIB_DIR.FullName)" -Recurse -Force shell: pwsh - name: Build binaries working-directory: freedata_server run: | python3 -m nuitka ` --remove-output ` --assume-yes-for-downloads ` --follow-imports ` --include-data-dir=lib=lib ` --include-data-dir=../freedata_gui/dist=gui ` --include-data-files=lib/codec2/*=lib/codec2/ ` --include-data-files=lib/hamlib/bin/*.exe=lib/hamlib/bin/ ` --include-data-files=lib/hamlib/bin/*.dll=lib/hamlib/bin/ ` --include-data-files=config.ini.example=config.ini ` --nofollow-import-to=sqlalchemy.dialects.mysql,sqlalchemy.dialects.mariadb,sqlalchemy.dialects.postgresql,sqlalchemy.dialects.oracle,sqlalchemy.dialects.mssql ` --include-package=sqlalchemy.dialects.sqlite ` --standalone server.py ` --output-filename=freedata-server ` --low-memory shell: pwsh - name: LIST ALL FILES run: ls -R - name: Create installer uses: joncloud/makensis-action@v5.0 with: script-file: "freedata-nsis-config.nsi" arguments: '/V3' - name: LIST ALL FILES working-directory: freedata_server/server.dist run: ls -R - name: Upload artifact uses: actions/upload-artifact@v4 with: name: 'FreeDATA-Installer' path: ./FreeDATA-Installer.exe - name: Upload Installer to Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: draft: false files: ./FreeDATA-Installer.exe tag_name: ${{ github.ref_name }} ================================================ FILE: .github/workflows/build_server.yml ================================================ name: build_server on: [push] jobs: build_i686_x64_release: name: Build FreeDATA packages runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-24.04, windows-latest] # removed macos-latest as it's broken for now include: - os: ubuntu-24.04 zip_name: freedata-server_ubuntu #generator: Unix Makefiles modem_binary_name: freedata_server #- os: macos-latest # zip_name: freedata-server_macos # generator: Unix Makefiles # modem_binary_name: freedata_server - os: windows-latest zip_name: freedata-server_windows #generator: Visual Studio 17 2022 modem_binary_name: freedata_server.exe steps: - name: Checkout code for ${{ matrix.platform.name }} uses: actions/checkout@v5 with: repository: DJ2LS/FreeDATA - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v4 with: node-version: 24 - name: Vue Builder working-directory: freedata_gui run: | npm i npm run build - name: Set up Python 3.13 uses: actions/setup-python@v5 with: python-version: "3.13" - name: Install Linux dependencies if: ${{startsWith(matrix.os, 'ubuntu')}} run: | sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake patchelf - name: Install MacOS pyAudio if: ${{startsWith(matrix.os, 'macos')}} run: | brew install portaudio python -m pip install --upgrade pip pip3 install pyaudio - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Add MacOS certs if: ${{startsWith(matrix.os, 'macos')}} run: chmod +x add-osx-cert.sh && ./add-osx-cert.sh env: CERTIFICATE_OSX_APPLICATION: ${{ secrets.CERTIFICATE_OSX_APPLICATION }} CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }} - name: Build binaries working-directory: freedata_server run: | python3 -m nuitka --remove-output --nofollow-import-to=sqlalchemy.dialects.mysql,sqlalchemy.dialects.mariadb,sqlalchemy.dialects.postgresql,sqlalchemy.dialects.oracle,sqlalchemy.dialects.mssql --include-package=sqlalchemy.dialects.sqlite --assume-yes-for-downloads --follow-imports --include-data-dir=lib=lib --include-data-dir=../freedata_gui/dist=gui --include-data-files=lib/codec2/*=lib/codec2/ --include-data-files=config.ini.example=config.ini --standalone server.py --output-filename=freedata-server #- name: Download Portaudio binaries Linux macOS # if: ${{!startsWith(matrix.os, 'windows')}} # working-directory: freedata_server # run: | # if ! test -d "server.dist/freedata_server/_sounddevice_data"; then # git clone https://github.com/spatialaudio/portaudio-binaries dist/freedata_server/_sounddevice_data/portaudio-binaries # fi #- name: Download Portaudio binaries Windows # if: ${{startsWith(matrix.os, 'windows')}} # working-directory: freedata_server # run: | # if(Test-Path -Path "server.dist/freedata_server/_sounddevice_data"){ # echo "sounddevice folder already exists" # } else { # git clone https://github.com/spatialaudio/portaudio-binaries dist/freedata_server/_sounddevice_data/portaudio-binaries # } - name: LIST ALL FILES run: ls -R - name: cleanup on macos before code signing if: ${{startsWith(matrix.os, 'macos')}} run: | ls -l # find . -type d -name .git -exec rm -r {} \; find . -type d -o -name ".git" -delete - name: Compress Modem uses: thedoctor0/zip-release@master with: type: 'zip' filename: '${{ matrix.zip_name }}.zip' directory: ./freedata_server/server.dist path: . # exclusions: '*.git* /*node_modules/* .editorconfig' - name: LIST ALL FILES run: ls -R - name: Upload artifact uses: actions/upload-artifact@v4 with: name: '${{ matrix.zip_name }}' path: ./freedata_server/server.dist/${{ matrix.zip_name }}.zip - name: Release Modem uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: draft: false files: ./freedata_server/server.dist/${{ matrix.zip_name }}.zip tag_name: ${{ github.ref_name }} - name: LIST ALL FILES run: ls -R ================================================ FILE: .github/workflows/codeql-analysis.yml ================================================ # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. # # ******** NOTE ******** # We have attempted to detect the languages in your repository. Please check # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # name: "CodeQL" on: push: branches: [ main ] pull_request: # The branches below must be a subset of the branches above branches: [ main ] schedule: - cron: '43 0 * * 2' jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'javascript', 'python' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] # Learn more: # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed steps: - name: Checkout repository uses: actions/checkout@v5 with: ref: ${{ github.head_ref }} # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v3 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines # and modify them (or add more) to build your code if your project # uses a compiled language #- run: | # make bootstrap # make release - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 ================================================ FILE: .github/workflows/gui_tests.yml ================================================ name: GUI tests on: [push] jobs: build: # The CMake configure and build commands are platform-agnostic and should work equally # well on Windows or Mac. You can convert this to a matrix build if you need # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix runs-on: ubuntu-latest strategy: # By default, GitHub will maximize the number of jobs run in parallel # depending on the available runners on GitHub-hosted virtual machines. # max-parallel: 8 fail-fast: false matrix: include: #- node-version: "16" # EOL #- node-version: "18" # EOL - node-version: "20" - node-version: "22" - node-version: "24" steps: - uses: actions/checkout@v5 - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install dependencies working-directory: freedata_gui run: | npm i - name: GUI Linting working-directory: freedata_gui run: | npm run lint - name: GUI Build working-directory: freedata_gui run: | npm run build ================================================ FILE: .github/workflows/modem_tests.yml ================================================ name: Modem tests on: [push] jobs: build: # The CMake configure and build commands are platform-agnostic and should work equally # well on Windows or Mac. You can convert this to a matrix build if you need # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix runs-on: ubuntu-latest strategy: # By default, GitHub will maximize the number of jobs run in parallel # depending on the available runners on GitHub-hosted virtual machines. # max-parallel: 8 fail-fast: false matrix: include: #- python-version: "3.7" EOL - python-version: "3.8" - python-version: "3.9" - python-version: "3.10" - python-version: "3.11" - python-version: "3.12" - python-version: "3.13" steps: - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install system packages shell: bash run: | sudo apt-get update || true sudo apt-get install octave octave-common octave-signal sox portaudio19-dev - name: Install python packages shell: bash run: | pip3 install -r requirements.txt - name: run config tests shell: bash run: | python -m unittest discover tests ================================================ FILE: .github/workflows/pip_package.yml ================================================ name: Deploy Python Package on: [push] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - name: Set up Python 3.13 uses: actions/setup-python@v5 with: python-version: "3.13" - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v4 with: node-version: 24 - name: Install Linux dependencies run: | sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake patchelf - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install wheel - name: Build GUI working-directory: freedata_gui run: | npm i npm run build - name: Build package run: | python setup.py sdist bdist_wheel - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@v1.13.0 if: startsWith(github.ref, 'refs/tags/v') with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} ================================================ FILE: .github/workflows/prettier.yaml ================================================ name: Prettier # This action works with pull requests and pushes on: push: branches: - main jobs: prettier: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v5 with: # Make sure the actual branch is checked out when running on pull requests ref: ${{ github.head_ref }} - name: Prettify code uses: creyD/prettier_action@v4.6 with: # This part is also where you can pass other options, for example: prettier_options: --write **/*.{js,md,css,html} ================================================ FILE: .gitignore ================================================ # possible installation of codec2 within freedata_server freedata_server/codec2 # temporary test artifacts **/build **/Testing .DS_Store # Other various files and virtual environments .coverage .coveragerc .env .envrc .idea .pytest_cache .venv .vscode *.iml *.pyc *.raw coverage.sh coverage.xml #Ignore GUI config /freedata_gui/config/config.json #GUI_WEB /freedata_gui/dist /freedata_gui/node_modules/ /freedata_gui/node_modules!/venv/ # venv packages venv_3.11/ venv/ test_venv/ freedata_server/lib/codec2/codec2/ ================================================ FILE: .obs/workflows.yml ================================================ # .obs/workflows.yml # OBS SCM/CI workflow for FreeDATA # - develop branch -> package freedata-dev (on every push) # - release tags v* -> package freedata (only on tags) # - pushes to main -> no build workflow: version: 1 steps: # === develop branch (dev builds on every push) === - branch_package: source_project: home:DJ2LS source_package: freedata target_project: home:DJ2LS target_package: freedata-dev filters: event: push branches: only: - develop - trigger_services: project: home:DJ2LS package: freedata-dev filters: event: push branches: only: - develop # === release tags (build only for tags, e.g. v1.2.3) === - branch_package: source_project: home:DJ2LS source_package: freedata target_project: home:DJ2LS target_package: freedata filters: event: tag_push branches: only: - "v*" - trigger_services: project: home:DJ2LS package: freedata filters: event: tag_push branches: only: - "v*" ================================================ FILE: .prettierignore ================================================ # Ignore artifacts: build coverage assets freedata_gui/src/waterfall ================================================ FILE: .stignore ================================================ gui/node_modules ================================================ FILE: Dockerfile ================================================ ################################################################################ # Build frontend ################################################################################ FROM node:20-alpine AS frontend WORKDIR /src COPY freedata_gui ./ RUN npm install && npm run build ################################################################################ # Build server ################################################################################ FROM python:3.11-slim-bookworm AS server ARG HAMLIB_VERSION=4.5.5 ENV HAMLIB_VERSION=${HAMLIB_VERSION} RUN apt-get update && \ apt-get install --upgrade -y fonts-noto-color-emoji git build-essential cmake portaudio19-dev python3-pyaudio python3-colorama wget && \ mkdir -p /app/FreeDATA WORKDIR /src ADD https://github.com/Hamlib/Hamlib/releases/download/${HAMLIB_VERSION}/hamlib-${HAMLIB_VERSION}.tar.gz ./hamlib.tar.gz RUN tar -xplf hamlib.tar.gz WORKDIR /src/hamlib-${HAMLIB_VERSION} RUN ./configure --prefix=/app/FreeDATA-hamlib && \ make && \ make install WORKDIR /app/FreeDATA ADD https://github.com/DJ2LS/FreeDATA.git#v0.16.10-alpha ./ RUN python3 -m venv /app/FreeDATA/venv ENV PATH="/app/FreeDATA/venv/bin:$PATH" RUN pip install --no-cache-dir --upgrade pip wheel && \ pip install --no-cache-dir -r requirements.txt WORKDIR /app/FreeDATA/freedata_server/lib ADD https://github.com/drowe67/codec2.git ./codec2 WORKDIR /app/FreeDATA/freedata_server/lib/codec2 RUN mkdir build_linux WORKDIR /app/FreeDATA/freedata_server/lib/codec2/build_linux RUN cmake .. && make codec2 -j4 ################################################################################ # Final image ################################################################################ FROM python:3.11-slim-bookworm ENV PATH="/app/FreeDATA-hamlib/bin:/app/FreeDATA/venv/bin:$PATH" ENV FREEDATA_CONFIG=/data/config.ini ENV FREEDATA_DATABASE=/data/freedata-messages.db ENV HOME=/home/freedata WORKDIR /app COPY --from=server /app ./ COPY --from=frontend /src/dist/ ./FreeDATA/freedata_gui/dist/ COPY entrypoint.sh /entrypoint.sh RUN mkdir -p /data && \ cp FreeDATA/freedata_server/config.ini.example /data/config.ini && \ apt-get update && \ apt-get install --upgrade -y \ portaudio19-dev \ alsa-utils \ libasound2 \ libasound2-plugins \ pulseaudio \ pulseaudio-utils && \ rm -rf /var/lib/apt/lists/* RUN useradd --create-home --home-dir $HOME freedata \ && usermod -aG audio,pulse,pulse-access freedata \ && chown -R freedata:freedata $HOME USER freedata ENTRYPOINT [ "/entrypoint.sh" ] ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: README.docker.md ================================================ # Running FreeDATA in Docker This image was built to allow FreeDATA to be run on MacOS. These instructions are for MacOS, but should work on any platform that supports Docker. ## Prerequisites - An install of Docker (eg. [Docker Desktop for MacOS](https://docs.docker.com/desktop/setup/install/mac-install/)). - Some familiarity with the command line (eg: via `Terminal.app`). - [Brew](https://brew.sh/) - I've tried to avoid this as a requirement but it is the easiest way to install `pulseaudio` on MacOS. ## Setting up ### PulseAudio A lot of this is taken from [this gist](https://gist.github.com/seongyongkim/b7d630a03e74c7ab1c6b53473b592712) and [this Dockerfile](https://github.com/KEINOS/Dockerfile_of_Speaker-Test-for-MacHost/blob/master/Dockerfile) Firstly, install. ```bash brew install pulseaudio ``` Now run the daemon. ```bash pulseaudio --load=module-native-protocol-tcp --exit-idle-time=-1 --daemon ``` Confirm it is running. ```bash pulseaudio --check -v ``` Setup the audio output, this will list your audio output devices. The `*` will show the default output. ```bash pacmd list-sinks | grep -e 'name:' -e 'index:' -e 'card:' ``` If you need to change your default output then this can be done by specifying the index: ```bash pacmd set-default-sink 1 ``` As will above, setup the the audio source. ```bash pacmd list-sources | grep -e 'name:' -e 'index:' -e 'card:' ``` Any updates to sources can be triggered with: ```bash pacmd set-default-source 1 ``` ### FreeDATA Image This can be run in one of two ways. By running the docker image with a long command line or via `docker compose`. Lets start with the long command line. On first run, this will copy the sample config file into the `./freedata-data` directory. This can be edited to suit your needs via the GUI. However, to get the GUI to run you will need to update the `NETWORK` section in `config.ini` file to be: ```bash [NETWORK] modemaddress = 0.0.0.0 modemport = 5050 ``` Now we can start the server. ```bash docker run --rm -it \ -v ./freedata-data:/data -e PULSE_SERVER=host.docker.internal -v /$HOME/.config/pulse:/home/freedata/.config/pulse \ -p 5050:5050 \ --name freedata \ ghcr.io/dj2ls/freedata:latest ``` If you'd like to start a `rigctld` instance in the container (see [the wiki](https://wiki.freedata.app/en/usage/radio-control#hamlib-rigctld-commands)), the arguments can be provided with the `RIGCTL_ARGS` environment variable. In the examples below I'm passing a model for a FlexRadio at IP `192.168.0.10` listening on port `6701`: ```bash docker run --rm -it \ -v ./freedata-data:/data -e PULSE_SERVER=host.docker.internal -e RIGCTLD_ARGS="--model=2036 --port=4532 --rig-file=192.168.0.10:6701" -v /$HOME/.config/pulse:/home/freedata/.config/pulse \ -p 5050:5050 \ --name freedata \ ghcr.io/dj2ls/freedata:latest ``` A slightly more tidy method of provding the same config is via `docker compose`. Create a `docker-compose.yml` file with the following content: ```yaml services: freedata: container_name: freedata image: ghcr.io/dj2ls/freedata:latest pull_policy: always volumes: - ./freedata-data:/data - /$HOME/.config/pulse:/home/freedata/.config/pulse environment: - PULSE_SERVER=host.docker.internal - RIGCTLD_ARGS=--model=2036 --port=4532 --rig-file=192.168.0.10:6701 ports: - 5050:5050 ``` This can then be run with: ```bash docker-compose up -d ``` And its logs viewed with: ```bash docker-compose logs -f ``` ## Usage Once the server is running, you can access the GUI by visiting `http://localhost:5050/gui` in your browser. You will need to set up your audio device and radio config. ================================================ FILE: README.md ================================================ # FreeDATA > FreeDATA is a versatile, **open-source platform designed specifically for HF communications**, leveraging **codec2** data modes for robust global digital communication. It features a network-based server-client architecture, a REST API, multi-platform compatibility, and a messaging system. > Please keep in mind, this project is still **under development** with many issues which need to be solved. [![CodeFactor](https://www.codefactor.io/repository/github/dj2ls/freedata/badge)](https://www.codefactor.io/repository/github/dj2ls/freedata) [![Modem tests](https://github.com/DJ2LS/FreeDATA/actions/workflows/modem_tests.yml/badge.svg)](https://github.com/DJ2LS/FreeDATA/actions/workflows/modem_tests.yml) ![FreeDATA_main_screen.png](documentation%2FFreeDATA_main_screen.png) ![FreeDATA_chat_screen.png](documentation%2FFreeDATA_chat_screen.png) ## Installation Please check the [wiki](https://wiki.freedata.app) for installation instructions Please check the ['Releases'](https://github.com/DJ2LS/FreeDATA/releases) section for downloading precompiled builds ## Credits - David Rowe and the FreeDV team for developing the modem and libraries - FreeDV Codec 2 : https://github.com/drowe67/codec2 ================================================ FILE: add-osx-cert.sh ================================================ #!/usr/bin/env sh KEY_CHAIN=build.keychain CERTIFICATE_P12=certificate.p12 # Recreate the certificate from the secure environment variable echo $CERTIFICATE_OSX_APPLICATION | base64 --decode > $CERTIFICATE_P12 #create a keychain security create-keychain -p actions $KEY_CHAIN # Make the keychain the default so identities are found security default-keychain -s $KEY_CHAIN # Unlock the keychain security unlock-keychain -p actions $KEY_CHAIN security import $CERTIFICATE_P12 -k $KEY_CHAIN -P $CERTIFICATE_PASSWORD -T /usr/bin/codesign; security set-key-partition-list -S apple-tool:,apple: -s -k actions $KEY_CHAIN # remove certs rm -fr *.p12 ================================================ FILE: documentation/FreeDATA-daemon_network_documentation.md ================================================ # FreeDATA - DAEMON network documentation ## GET DAEMON STATE #### Description: Get the current daemon state #### Parameters - Type: GET - Command: DAEMON_STATE - Parameter: --- (str) #### Example ``` {"type" : "GET", "command" : "DAEMON_STATE"} ``` #### Returns ``` { "COMMAND": "DAEMON_STATE", "DAEMON_STATE": [], "PYTHON_VERSION": str(python_version), "HAMLIB_VERSION": str(hamlib_version), "INPUT_DEVICES": [], "OUTPUT_DEVICES": [], "SERIAL_DEVICES": [], "CPU": "", "RAM": "", "VERSION": "0.1-prototype" } ``` ## SET CALLSIGN #### Description: Save your callsign to the daemon #### Parameters - Type: SET - Command: MYCALLSIGN - Parameter: callsign (str) - timestamp: unix timestamp (str) #### Example ``` {"type" : "SET", "command": "MYCALLSIGN" , "parameter": "", "timestamp" : "123456789"} ``` ## SET GRIDSQUARE #### Description: Save your gridsquare/maidenhead-locator to the daemon #### Parameters - Type: SET - Command: MYGRID - Parameter: gridsquare (str) - timestamp: unix timestamp (str) #### Example ``` {"type" : "SET", "command": "MYGRID" , "parameter": "", "timestamp" : "123456789"} ``` ## TEST HAMLIB #### Description: Test your hamlib settings #### Parameters - Type: GET - Command: TEST_HAMLIB - Parameter: obj - devicename - deviceport - pttprotocol - pttport - serialspeed - data_bits - stop_bits - handshake - timestamp: unix timestamp (str) #### Example ``` { "type": "GET", "command" : "TEST_HAMLIB", "parameter" : [{ "devicename" : "", "deviceport" : "", "pttprotocol" : "", "pttport" : "", "serialspeed" : "", "data_bits" : "", "stop_bits" : "", "handshake" : "" }] } ``` ## START TNC #### Description: Start the tnc process #### Parameters - Type: GET - Command: TEST_HAMLIB - Parameter: obj - mycall - mygrid - rx_audio - tx_audio - devicename - deviceport - pttprotocol - pttport - serialspeed - data_bits - stop_bits - handshake #### Example ``` { type: 'SET', command: 'STARTTNC', parameter: [{ mycall: mycall, mygrid: mygrid, rx_audio: rx_audio, tx_audio: tx_audio, devicename: devicename, deviceport: deviceport, pttprotocol: pttprotocol, pttport: pttport, serialspeed: serialspeed, data_bits: data_bits, stop_bits: stop_bits, handshake: handshake }] } ``` ## STOP TNC #### Description: Stop the tnc process #### Parameters - Type: SET - Command: STOPTNC - Parameter: --- #### Example ``` {"type" : "SET", "command": "STOPTNC" , "parameter": "---" } ``` ================================================ FILE: documentation/FreeDATA-protocols.md ================================================ # FreeDATA - Protocols ## ARQ Sessions An ARQ Session represents a reliable data transmission session from a sending station (A) to a receiving station (B). It uses automatic repeat request on top of different codec2 modes according to the transmission channel conditions. So lets say A wants to send some data to B. A typical scenario would be like this: ``` ISS->(1)IRS: OPEN_REQ(session id, origin, dest) IRS->(1)ISS: OPEN_ACK (session id, proto version, speed level, frames, snr) ISS->(1)IRS: INFO(id, total_bytes, total_crc) IRS->(1)ISS: INFO_ACK(id, total_crc) ISS->(1)IRS:BURST (ID, offset, payload),(ID, offset, payload),(ID, offset, payload) IRS->(1)ISS:BURST_ACK (ID, next_offset, speed level, frames, snr) ISS-->(1)IRS:Lost BURST (total or part) IRS->(1)ISS:BURST_NACK (ID, next_offset, speed level, frames, snr) ISS->(1)IRS:BURST (ID, offset, payload),(ID, offset, payload),(ID, offset, payload) IRS->(1)ISS:DATA ACK NACK (ID, next_offset, speed level, frames, snr) ``` ### Frame details #### SESSION_OPEN_REQ ISS sends this first DATAC13 Mode (12 bytes) | field | bytes | | --------------- | ----- | | session id | 1 | | origin | 6 | | destination_crc | 3 | #### SESSION_OPEN_ACK Sent by the IRS in response to a SESSION_OPEN_REQ DATAC13 Mode (12 bytes) | field | bytes | | ---------------- | ----- | | session id | 1 | | origin | 6 | | destination_crc | 3 | | protocol version | 1 | | snr | 1 | #### SESSION_INFO ISS sends this in response to a SESSION_OPEN_ACK DATAC13 Mode (12 bytes) | field | bytes | | ----------- | ----- | | session id | 1 | | total bytes | 4 | | total crc | 4 | | snr | 1 | #### SESSION_INFO_ACK IRS sends this in response to a SESSION_INFO DATAC13 Mode (12 bytes) | field | bytes | | ---------------- | ----- | | session id | 1 | | total crc | 4 | | snr | 1 | | speed level | 1 | | frames per burst | 1 | #### Data Burst ISS sends this to send data to IRS Mode according to handshake speed level Frames per burst according to handshake ##### Modulation Each burst is composed of frames_per_burst frames: |preamble|f1|f2|f3|...|postamble| ##### Each data frame | field | bytes | | ---------- | ------------------------------ | | session id | 1 | | offset | 4 | | payload | (the remaining payload length) | #### DATA_BURST_ACK Sent by the IRS following successful decoding of burst. | field | bytes | | --------------------- | ----- | | session id | 1 | | next offset | 4 | | next speed level | 1 | | next frames per burst | 1 | | snr | 1 | #### DATA_BURST_NACK Sent by the IRS following unsuccessful decoding of burst or timeout. | field | bytes | | --------------------- | ----- | | session id | 1 | | next offset | 4 | | next speed level | 1 | | next frames per burst | 1 | | snr | 1 | #### DATA ACK NACK Sent by the IRS after receiving data with a state information. | field | bytes | | ---------- | ----- | | session id | 1 | | state | 1 | | snr | 1 | ================================================ FILE: entrypoint.sh ================================================ #!/usr/bin/env bash echo "Starting pulseaudio" pulseaudio --exit-idle-time=-1 --daemon & if [ -z "${RIGCTLD_ARGS+x}" ]; then echo "No RIGCTLD_ARGS set, not starting rigctld" else echo "Starting rigctld with args ${RIGCTLD_ARGS}" rigctld ${RIGCTLD_ARGS} & fi echo "Starting FreeDATA server" python3 /app/FreeDATA/freedata_server/server.py ================================================ FILE: freedata-nsis-config.nsi ================================================ !include "MUI2.nsh" ; Request administrative rights RequestExecutionLevel admin ; The name and file name of the installer Name "FreeDATA Installer" OutFile "FreeDATA-Installer.exe" ; Default installation directory for the server InstallDir "$LOCALAPPDATA\FreeDATA" ; Registry key to store the installation directory InstallDirRegKey HKCU "Software\FreeDATA" "Install_Dir" ; Modern UI settings !define MUI_ABORTWARNING ; Installer interface settings !define MUI_ICON "documentation\icon.ico" !define MUI_UNICON "documentation\icon.ico" ; Icon for the uninstaller ; Define the welcome page text !define MUI_WELCOMEPAGE_TEXT "Welcome to the FreeDATA Setup Wizard. This wizard will guide you through the installation process." !define MUI_FINISHPAGE_TEXT "Folder: $INSTDIR" !define MUI_DIRECTORYPAGE_TEXT_TOP "Please select the installation folder. It's recommended to use the suggested one to avoid permission problems." ; Pages !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_LICENSE "LICENSE" !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH ; Uninstaller !insertmacro MUI_UNPAGE_WELCOME !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES !insertmacro MUI_UNPAGE_FINISH ; Language (you can choose and configure the language(s) you want) !insertmacro MUI_LANGUAGE "English" ; Installer Sections Section "FreeData Server" SEC01 ; Set output path to the installation directory SetOutPath $INSTDIR\freedata-server ; Check if "config.ini" exists and back it up IfFileExists $INSTDIR\freedata-server\config.ini backupConfig doneBackup: ; Add your application files here File /r "freedata_server\server.dist\*" ; Restore the original "config.ini" if it was backed up IfFileExists $INSTDIR\freedata-server\config.ini.bak restoreConfig ; Create a shortcut in the user's desktop CreateShortCut "$DESKTOP\FreeDATA Server.lnk" "$INSTDIR\freedata-server\freedata-server.exe" ; Create Uninstaller WriteUninstaller "$INSTDIR\Uninstall.exe" ; Create a Start Menu directory CreateDirectory "$SMPROGRAMS\FreeDATA" ; Create shortcut in the Start Menu directory CreateShortCut "$SMPROGRAMS\FreeDATA\FreeDATA Server.lnk" "$INSTDIR\freedata-server\freedata-server.exe" ; Create an Uninstall shortcut CreateShortCut "$SMPROGRAMS\FreeDATA\Uninstall FreeDATA.lnk" "$INSTDIR\Uninstall.exe" ; Backup "config.ini" before overwriting files backupConfig: Rename $INSTDIR\freedata-server\config.ini $INSTDIR\freedata-server\config.ini.bak Goto doneBackup ; Restore the original "config.ini" restoreConfig: Delete $INSTDIR\freedata-server\config.ini Rename $INSTDIR\freedata-server\config.ini.bak $INSTDIR\freedata-server\config.ini SectionEnd ; Uninstaller Section Section "Uninstall" ; Delete files and directories for the server Delete $INSTDIR\freedata-server\*.* RMDir /r $INSTDIR\freedata-server ; Remove the desktop shortcuts Delete "$DESKTOP\FreeDATA Server.lnk" ; Remove Start Menu shortcuts Delete "$SMPROGRAMS\FreeDATA\*.*" RMDir "$SMPROGRAMS\FreeDATA" ; Attempt to delete the uninstaller itself Delete $EXEPATH ; Now remove the installation directory if it's empty RMDir /r $INSTDIR SectionEnd ================================================ FILE: freedata_gui/README.md ================================================ # freedata_gui ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ================================================ FILE: freedata_gui/babel.config.js ================================================ module.exports = { presets: ["@vue/cli-plugin-babel/preset"], }; ================================================ FILE: freedata_gui/eslint.config.js ================================================ import pluginVue from "eslint-plugin-vue"; import globals from "globals"; export default [ ...pluginVue.configs["flat/base"], //...pluginVue.configs['flat/recommended'], // causes some errors not able to fix, yet. So disabled for now { ignores: [ "**/*.config.js", "!**/eslint.config.js", "**/src/locales/**", "**/node_modules/**", "**/dist/**", ], rules: { "vue/no-unused-vars": "error", "vue/multi-word-component-names": "warn", }, languageOptions: { //sourceType: 'module', globals: { ...globals.browser, }, }, }, ]; ================================================ FILE: freedata_gui/jsconfig.json ================================================ { "compilerOptions": { "target": "es5", "module": "esnext", "baseUrl": "./", "moduleResolution": "node", "paths": { "@/*": [ "src/*" ] }, "lib": [ "esnext", "dom", "dom.iterable", "scripthost" ] } } ================================================ FILE: freedata_gui/package.json ================================================ { "name": "FreeDATA", "version": "0.17.8-beta", "description": "FreeDATA Client application for connecting to FreeDATA server", "private": true, "scripts": { "serve": "vue-cli-service serve", "build": "npm i && vue-cli-service build", "lint": "npx eslint ." }, "repository": { "type": "git", "url": "https://github.com/DJ2LS/FreeDATA.git" }, "keywords": [ "Modem", "GUI", "FreeDATA", "codec2" ], "author": "DJ2LS", "license": "GPL-3.0", "bugs": { "url": "https://github.com/DJ2LS/FreeDATA/issues" }, "homepage": "https://freedata.app", "dependencies": { "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.8", "bootstrap-icons": "^1.13.1", "bootstrap-vue-next": "^0.40.4", "chart.js": "^4.5.0", "chartjs-plugin-annotation": "^3.1.0", "core-js": "^3.45.1", "d3": "^7.9.0", "dompurify": "^3.4.0", "gettext-parser": "^8.0.0", "gridstack": "^12.3.3", "i18next": "^25.5.2", "i18next-vue": "^5.3.0", "js-image-compressor": "^2.0.0", "marked": "^16.3.0", "pinia": "^3.0.3", "qth-locator": "^2.1.0", "topojson-client": "^3.1.0", "uuid": "^13.0.0", "vue": "^3.5.21", "vue-chartjs": "^5.3.2", "vuemoji-picker": "^0.3.2" }, "devDependencies": { "@babel/core": "^7.28.4", "@babel/eslint-parser": "^7.28.4", "@eslint/js": "^9.35.0", "@vue/cli-service": "~5.0.9", "eslint": "^9.35.0", "eslint-plugin-vue": "^10.4.0", "globals": "^16.4.0" }, "browserslist": [ "> 1%", "last 2 versions", "not dead", "not ie 11" ] } ================================================ FILE: freedata_gui/public/index.html ================================================ <%= htmlWebpackPlugin.options.title %>
================================================ FILE: freedata_gui/public/manifest.json ================================================ { "name": "FreeDATA", "short_name": "FreeDATA", "description": "FreeDATA is a communication platform for transferring data over radio.", "categories": ["utilities", "communication", "productivity"], "start_url": ".", "display": "standalone", "background_color": "#ffffff", "theme_color": "#ffffff", "icons": [ { "src": "android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } ] } ================================================ FILE: freedata_gui/src/App.vue ================================================ ================================================ FILE: freedata_gui/src/assets/countries-10m.json ================================================ {"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0,1]],[[2,3,4,5]],[[6,7]],[[8,9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]]],"id":"360","properties":{"name":"Indonesia"}},{"type":"MultiPolygon","arcs":[[[270,-1]],[[271,272]],[[273,-8,274,275,276,277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]]],"id":"458","properties":{"name":"Malaysia"}},{"type":"MultiPolygon","arcs":[[[292,293,294,295]],[[296,297,298,299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]]],"id":"152","properties":{"name":"Chile"}},{"type":"Polygon","arcs":[[461,462,463,464,-293]],"id":"068","properties":{"name":"Bolivia"}},{"type":"MultiPolygon","arcs":[[[-296,465,466,467,468,-462]],[[469]],[[470]],[[471]],[[472]]],"id":"604","properties":{"name":"Peru"}},{"type":"MultiPolygon","arcs":[[[-465,473,474,475,476,-294]],[[-297,477]],[[-299,478]],[[479]],[[480]],[[481]],[[482]],[[483]]],"id":"032","properties":{"name":"Argentina"}},{"type":"Polygon","arcs":[[484,485,486,487,488,489,490,491],[492]],"properties":{"name":"Dhekelia"}},{"type":"MultiPolygon","arcs":[[[-492]],[[-493]],[[-486,493,494,495,496,497,498]],[[499,500,-490]]],"id":"196","properties":{"name":"Cyprus"}},{"type":"MultiPolygon","arcs":[[[501,502,503,504,505,506,507,508,509,510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]]],"id":"356","properties":{"name":"India"}},{"type":"MultiPolygon","arcs":[[[545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,-506,562,-504,563,-502]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]]],"id":"156","properties":{"name":"China"}},{"type":"Polygon","arcs":[[633,634,635,636,637,638,639,640,641,642]],"id":"376","properties":{"name":"Israel"}},{"type":"MultiPolygon","arcs":[[[-634,643,644]],[[645,639,-640,-639]]],"id":"275","properties":{"name":"Palestine"}},{"type":"Polygon","arcs":[[646,647,-636]],"id":"422","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[648,649,650,651,652,653,654]],"id":"231","properties":{"name":"Ethiopia"}},{"type":"Polygon","arcs":[[655,656,657,658,659,-655]],"id":"728","properties":{"name":"S. Sudan"}},{"type":"Polygon","arcs":[[660,661,662,-653]],"id":"706","properties":{"name":"Somalia"}},{"type":"MultiPolygon","arcs":[[[-654,-663,663,664,665,-656]],[[666]]],"id":"404","properties":{"name":"Kenya"}},{"type":"MultiPolygon","arcs":[[[-510,667,668,669,-547,670]],[[671]]],"id":"586","properties":{"name":"Pakistan"}},{"type":"MultiPolygon","arcs":[[[672,673,674]],[[675]],[[676]]],"id":"454","properties":{"name":"Malawi"}},{"type":"MultiPolygon","arcs":[[[677,678,679,680,681,-665,682,683,-675]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]]],"id":"834","properties":{"name":"Tanzania"}},{"type":"Polygon","arcs":[[-637,-648,690,691,692,693]],"id":"760","properties":{"name":"Syria"}},{"type":"Polygon","arcs":[[-661,-652,694,695]],"properties":{"name":"Somaliland"}},{"type":"MultiPolygon","arcs":[[[696,697,698]],[[699,700,701,702,703,704,705,706,707,708,709,710],[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]]],"id":"250","properties":{"name":"France"}},{"type":"Polygon","arcs":[[731,732,733,-697]],"id":"740","properties":{"name":"Suriname"}},{"type":"MultiPolygon","arcs":[[[734,735,736,-733]],[[737]]],"id":"328","properties":{"name":"Guyana"}},{"type":"MultiPolygon","arcs":[[[738,739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]]],"id":"410","properties":{"name":"South Korea"}},{"type":"MultiPolygon","arcs":[[[-740,792,-555,793,794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]]],"id":"408","properties":{"name":"North Korea"}},{"type":"Polygon","arcs":[[804,805,806,807,808,809,810,811]],"id":"504","properties":{"name":"Morocco"}},{"type":"Polygon","arcs":[[812,813,814,-812]],"id":"732","properties":{"name":"W. Sahara"}},{"type":"MultiPolygon","arcs":[[[815,816,817,818]],[[819]],[[820]],[[821]]],"id":"188","properties":{"name":"Costa Rica"}},{"type":"MultiPolygon","arcs":[[[822,823,824,-819]],[[825]],[[826]],[[827]]],"id":"558","properties":{"name":"Nicaragua"}},{"type":"Polygon","arcs":[[828,829,830,831,832,833]],"id":"178","properties":{"name":"Congo"}},{"type":"MultiPolygon","arcs":[[[834,-658,835,836,837,-679,838,839,840,841,-829]],[[842]]],"id":"180","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[-505,-563]],"id":"064","properties":{"name":"Bhutan"}},{"type":"MultiPolygon","arcs":[[[843,844,845,846,847,848,849,850,851,852,853,854,855]],[[856]],[[857]],[[858]]],"id":"804","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[859,860,861,862,-856]],"id":"112","properties":{"name":"Belarus"}},{"type":"Polygon","arcs":[[863,864,865,866,867]],"id":"516","properties":{"name":"Namibia"}},{"type":"MultiPolygon","arcs":[[[868,869,870,871,872,873,-868],[874]],[[875]],[[876]]],"id":"710","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[877,878]],"id":"663","properties":{"name":"St-Martin"}},{"type":"Polygon","arcs":[[-878,879]],"id":"534","properties":{"name":"Sint Maarten"}},{"type":"MultiPolygon","arcs":[[[880],[881]],[[882,883]],[[884,885,886,887]],[[888]],[[889]],[[890]]],"id":"512","properties":{"name":"Oman"}},{"type":"MultiPolygon","arcs":[[[891]],[[892,893,894,895,896],[897]],[[898]]],"id":"860","properties":{"name":"Uzbekistan"}},{"type":"MultiPolygon","arcs":[[[-551,899,-896,900,901,902],[903]],[[904]],[[905]],[[906]],[[907]],[[908]]],"id":"398","properties":{"name":"Kazakhstan"}},{"type":"MultiPolygon","arcs":[[[-898]],[[909,-549,910,-893]],[[911]]],"id":"762","properties":{"name":"Tajikistan"}},{"type":"MultiPolygon","arcs":[[[-861,912,913,914,915]],[[916,917]]],"id":"440","properties":{"name":"Lithuania"}},{"type":"MultiPolygon","arcs":[[[-475,918,-463,-469,919,920,-735,-732,-699,921,922]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]]],"id":"076","properties":{"name":"Brazil"}},{"type":"Polygon","arcs":[[965,-476,-923]],"id":"858","properties":{"name":"Uruguay"}},{"type":"Polygon","arcs":[[-553,966]],"id":"496","properties":{"name":"Mongolia"}},{"type":"MultiPolygon","arcs":[[[967,-794,-554,-967,-552,-903,968,969,970,971,-846,844,-844,-863,972,973,974,975,976,977]],[[978,979,-917,980,-914]],[[-848,981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]]],"id":"643","properties":{"name":"Russia"}},{"type":"Polygon","arcs":[[1193,1194,1195,1196]],"id":"203","properties":{"name":"Czechia"}},{"type":"MultiPolygon","arcs":[[[1197,1198,-702,1199,1200,1201,1202,1203,1204,1205,-1197]],[[1206,1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]]],"id":"276","properties":{"name":"Germany"}},{"type":"MultiPolygon","arcs":[[[1228,-974,1229]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234]],[[1235]],[[1236]]],"id":"233","properties":{"name":"Estonia"}},{"type":"Polygon","arcs":[[-973,-862,-916,1237,-1230]],"id":"428","properties":{"name":"Latvia"}},{"type":"MultiPolygon","arcs":[[[1238,1239,-977,1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]]],"id":"578","properties":{"name":"Norway"}},{"type":"MultiPolygon","arcs":[[[1360,1361,-1239]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391]],[[1392]],[[1393]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400]],[[1401]]],"id":"752","properties":{"name":"Sweden"}},{"type":"MultiPolygon","arcs":[[[-976,1402,-1361,-1241]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]]],"id":"246","properties":{"name":"Finland"}},{"type":"MultiPolygon","arcs":[[[1444,-560,1445,1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]]],"id":"704","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[-1447,1471,1472,1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]]],"id":"116","properties":{"name":"Cambodia"}},{"type":"Polygon","arcs":[[-1200,-701,1479]],"id":"442","properties":{"name":"Luxembourg"}},{"type":"MultiPolygon","arcs":[[[1480,-888,1481,1482,-884],[-881]],[[-882]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]]],"id":"784","properties":{"name":"United Arab Emirates"}},{"type":"Polygon","arcs":[[1491,1492,1493,1494,-1201,-1480,-700]],"id":"056","properties":{"name":"Belgium"}},{"type":"Polygon","arcs":[[-971,1495,1496,1497,1498]],"id":"268","properties":{"name":"Georgia"}},{"type":"Polygon","arcs":[[1499,1500,1501,1502,1503]],"id":"807","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[-1504,1504,1505,1506,1507]],"id":"008","properties":{"name":"Albania"}},{"type":"MultiPolygon","arcs":[[[1508]],[[-1496,-970,1509,1510,1511],[1512]],[[1513,1514,1515]],[[1516]],[[1517]],[[1518]]],"id":"031","properties":{"name":"Azerbaijan"}},{"type":"Polygon","arcs":[[1519,1520,-1500,-1508]],"properties":{"name":"Kosovo"}},{"type":"MultiPolygon","arcs":[[[1521,-1515,1522,1523,-692,1524,-1498]],[[1525,1526,1527]],[[1528]],[[1529]],[[1530]],[[1531]]],"id":"792","properties":{"name":"Turkey"}},{"type":"MultiPolygon","arcs":[[[-806,1532]],[[1533,-809]],[[-710,1534,-708,1535,1536,1537,1538,1539]],[[-712]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]]],"id":"724","properties":{"name":"Spain"}},{"type":"Polygon","arcs":[[-1445,-1474,1559,1560,-561]],"id":"418","properties":{"name":"Laos"}},{"type":"Polygon","arcs":[[-550,-910,-897,-900],[-892],[-899],[-912]],"id":"417","properties":{"name":"Kyrgyzstan"}},{"type":"MultiPolygon","arcs":[[[-1512,1561,-1516,-1522,-1497],[-1509],[-1517]],[[-1513]]],"id":"051","properties":{"name":"Armenia"}},{"type":"MultiPolygon","arcs":[[[1562,-1204]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]]],"id":"208","properties":{"name":"Denmark"}},{"type":"Polygon","arcs":[[1577,1578,1579,1580,1581,1582,1583]],"id":"434","properties":{"name":"Libya"}},{"type":"MultiPolygon","arcs":[[[-1584,1584,1585]],[[1586]],[[1587]],[[1588]]],"id":"788","properties":{"name":"Tunisia"}},{"type":"Polygon","arcs":[[-852,1589,-850,1590,1591,1592,1593]],"id":"642","properties":{"name":"Romania"}},{"type":"Polygon","arcs":[[-1594,1594,1595,1596,1597,1598,-853]],"id":"348","properties":{"name":"Hungary"}},{"type":"Polygon","arcs":[[-854,-1599,1599,-1195,1600]],"id":"703","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[-1194,-1206,1601,-1207,1602,-979,-913,-860,-855,-1601]],"id":"616","properties":{"name":"Poland"}},{"type":"MultiPolygon","arcs":[[[1603,1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]]],"id":"372","properties":{"name":"Ireland"}},{"type":"MultiPolygon","arcs":[[[1611,-1604]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]]],"id":"826","properties":{"name":"United Kingdom"}},{"type":"MultiPolygon","arcs":[[[-1503,1668,-1527,1669,-1505]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1738]],[[1739]],[[1740]],[[1741]],[[1742]]],"id":"300","properties":{"name":"Greece"}},{"type":"Polygon","arcs":[[-674,1743,1744,-866,1745,-839,-678]],"id":"894","properties":{"name":"Zambia"}},{"type":"MultiPolygon","arcs":[[[1746,1747,1748]],[[1749]]],"id":"694","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[1750,1751,1752,1753,1754,1755,-1749]],"id":"324","properties":{"name":"Guinea"}},{"type":"Polygon","arcs":[[-1747,-1756,1756,1757]],"id":"430","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[1758,-659,-835,-834,1759,1760]],"id":"140","properties":{"name":"Central African Rep."}},{"type":"MultiPolygon","arcs":[[[1761,-1580,1762,1763,1764,-649,-660,-1759]],[[1765]]],"id":"729","properties":{"name":"Sudan"}},{"type":"Polygon","arcs":[[-695,-651,1766,1767]],"id":"262","properties":{"name":"Djibouti"}},{"type":"MultiPolygon","arcs":[[[-1767,-650,-1765,1768]],[[1769]],[[1770]]],"id":"232","properties":{"name":"Eritrea"}},{"type":"Polygon","arcs":[[-1600,-1598,1771,1772,1773,1774,1775,-1198,-1196]],"id":"040","properties":{"name":"Austria"}},{"type":"Polygon","arcs":[[1776,1777,1778,1779,1780,-693,-1524]],"id":"368","properties":{"name":"Iraq"}},{"type":"MultiPolygon","arcs":[[[1781,-1773,1782,1783,-704],[1784],[1785]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]]],"id":"380","properties":{"name":"Italy"}},{"type":"Polygon","arcs":[[-1782,-703,-1199,-1776,1814,-1774]],"id":"756","properties":{"name":"Switzerland"}},{"type":"MultiPolygon","arcs":[[[-1514,-1562,-1511,1815,1816,1817,-669,1818,-1777,-1523]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]]],"id":"364","properties":{"name":"Iran"}},{"type":"MultiPolygon","arcs":[[[-1202,-1495,1830]],[[1831,-1493]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]]],"id":"528","properties":{"name":"Netherlands"}},{"type":"Polygon","arcs":[[-1775,-1815]],"id":"438","properties":{"name":"Liechtenstein"}},{"type":"MultiPolygon","arcs":[[[1842,1843,1844,1845,-1757,-1755]],[[1846,1847]]],"id":"384","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-1593,1848,-1501,-1521,1849,1850,1851,-1595]],"id":"688","properties":{"name":"Serbia"}},{"type":"Polygon","arcs":[[1852,1853,1854,1855,-1843,-1754,1856]],"id":"466","properties":{"name":"Mali"}},{"type":"Polygon","arcs":[[-1857,-1753,1857,1858,1859,1860,1861]],"id":"686","properties":{"name":"Senegal"}},{"type":"MultiPolygon","arcs":[[[1862,1863,1864,1865,1866]],[[1867]],[[1868]]],"id":"566","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[-1867,1869,1870,1871,1872]],"id":"204","properties":{"name":"Benin"}},{"type":"MultiPolygon","arcs":[[[-842,1873,-830]],[[-1746,-865,1874,-840]],[[1875]]],"id":"024","properties":{"name":"Angola"}},{"type":"MultiPolygon","arcs":[[[-1596,-1852,1876,1877,1878]],[[1879,1880,1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]]],"id":"191","properties":{"name":"Croatia"}},{"type":"Polygon","arcs":[[1905,-1783,-1772,-1597,-1879]],"id":"705","properties":{"name":"Slovenia"}},{"type":"Polygon","arcs":[[1906,1907]],"id":"634","properties":{"name":"Qatar"}},{"type":"MultiPolygon","arcs":[[[-1908,1908,-1482,-887,1909,1910,1911,-1780,1912,1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]]],"id":"682","properties":{"name":"Saudi Arabia"}},{"type":"Polygon","arcs":[[1924,-869,-867]],"id":"072","properties":{"name":"Botswana"}},{"type":"Polygon","arcs":[[-1745,1925,-870,-1925]],"id":"716","properties":{"name":"Zimbabwe"}},{"type":"Polygon","arcs":[[-1669,-1502,-1849,-1592,1926,-1528]],"id":"100","properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","arcs":[[[1927,-273,1928,1929,-1560,-1473]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]]],"id":"764","properties":{"name":"Thailand"}},{"type":"Polygon","arcs":[[-1785]],"id":"674","properties":{"name":"San Marino"}},{"type":"MultiPolygon","arcs":[[[1949,1950]],[[1951]],[[1952]],[[1953]],[[1954]]],"id":"332","properties":{"name":"Haiti"}},{"type":"MultiPolygon","arcs":[[[1955,-1950]],[[1956]],[[1957]]],"id":"214","properties":{"name":"Dominican Rep."}},{"type":"Polygon","arcs":[[-1864,1958,-1581,-1762,-1761,1959]],"id":"148","properties":{"name":"Chad"}},{"type":"MultiPolygon","arcs":[[[1960,-1913,-1779]],[[1961]],[[1962]],[[1963]]],"id":"414","properties":{"name":"Kuwait"}},{"type":"MultiPolygon","arcs":[[[1964,1965,1966]],[[1967]],[[1968]]],"id":"222","properties":{"name":"El Salvador"}},{"type":"Polygon","arcs":[[-1965,1969,1970,1971,1972,1973]],"id":"320","properties":{"name":"Guatemala"}},{"type":"MultiPolygon","arcs":[[[-6,1974]],[[1975,-4]],[[1976]]],"id":"626","properties":{"name":"Timor-Leste"}},{"type":"MultiPolygon","arcs":[[[-278,1977]],[[-276,1978]]],"id":"096","properties":{"name":"Brunei"}},{"type":"Polygon","arcs":[[1979,-706]],"id":"492","properties":{"name":"Monaco"}},{"type":"Polygon","arcs":[[1980,-813,-811,1981,-1585,-1583,1982,-1854]],"id":"012","properties":{"name":"Algeria"}},{"type":"MultiPolygon","arcs":[[[1983,-871,-1926,-1744,-673,-684,1984,-873],[-676],[-677]],[[1985]],[[1986]],[[1987]]],"id":"508","properties":{"name":"Mozambique"}},{"type":"Polygon","arcs":[[-1984,-872]],"id":"748","properties":{"name":"eSwatini"}},{"type":"Polygon","arcs":[[-680,-838,1988]],"id":"108","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[-837,1989,-681,-1989]],"id":"646","properties":{"name":"Rwanda"}},{"type":"MultiPolygon","arcs":[[[-507,-562,-1561,-1930,1990,1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]]],"id":"104","properties":{"name":"Myanmar"}},{"type":"MultiPolygon","arcs":[[[-1992,2030,-508]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037]],[[2038]],[[2039]],[[2040]],[[2041]],[[2042]],[[2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]]],"id":"050","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[-1535,-709]],"id":"020","properties":{"name":"Andorra"}},{"type":"Polygon","arcs":[[-670,-1818,2052,-894,-911,-548]],"id":"004","properties":{"name":"Afghanistan"}},{"type":"Polygon","arcs":[[-1880,2053,-1850,-1520,-1507,2054]],"id":"499","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[2055,-1877,-1851,-2054,-1882]],"id":"070","properties":{"name":"Bosnia and Herz."}},{"type":"Polygon","arcs":[[-1990,-836,-657,-666,-682]],"id":"800","properties":{"name":"Uganda"}},{"type":"MultiPolygon","arcs":[[[2056,2057]],[[2058,2059]]],"properties":{"name":"USNB Guantanamo Bay"}},{"type":"MultiPolygon","arcs":[[[-2058,2060,-2060,2061]],[[2062]],[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085]],[[2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101]]],"id":"192","properties":{"name":"Cuba"}},{"type":"MultiPolygon","arcs":[[[-1974,2102,-824,2103,-1966]],[[2104]],[[2105]],[[2106]],[[2107]],[[2108]],[[2109]]],"id":"340","properties":{"name":"Honduras"}},{"type":"MultiPolygon","arcs":[[[2110,-467,2111]],[[2112]],[[2113]],[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[2123]],[[2124]],[[2125]],[[2126]]],"id":"218","properties":{"name":"Ecuador"}},{"type":"MultiPolygon","arcs":[[[2127,2128,2129,2130,-920,-468,-2111]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]]],"id":"170","properties":{"name":"Colombia"}},{"type":"Polygon","arcs":[[-464,-919,-474]],"id":"600","properties":{"name":"Paraguay"}},{"type":"MultiPolygon","arcs":[[[2141,-1539]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155]],[[2156]],[[2157]]],"id":"620","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-851,-1590]],"id":"498","properties":{"name":"Moldova"}},{"type":"MultiPolygon","arcs":[[[-1817,2158,-901,-895,-2053]],[[2159]],[[2160]]],"id":"795","properties":{"name":"Turkmenistan"}},{"type":"Polygon","arcs":[[-694,-1781,-1912,2161,-641,-640,639,-640,-646,-638]],"id":"400","properties":{"name":"Jordan"}},{"type":"Polygon","arcs":[[-503,-564]],"id":"524","properties":{"name":"Nepal"}},{"type":"Polygon","arcs":[[-875]],"id":"426","properties":{"name":"Lesotho"}},{"type":"Polygon","arcs":[[2162,2163,-1865,-1960,-1760,-833,2164]],"id":"120","properties":{"name":"Cameroon"}},{"type":"MultiPolygon","arcs":[[[-832,2165,2166,-2165]],[[2167]],[[2168]]],"id":"266","properties":{"name":"Gabon"}},{"type":"Polygon","arcs":[[-1873,2169,-1855,-1983,-1582,-1959,-1863]],"id":"562","properties":{"name":"Niger"}},{"type":"Polygon","arcs":[[-1872,2170,2171,-1844,-1856,-2170]],"id":"854","properties":{"name":"Burkina Faso"}},{"type":"Polygon","arcs":[[-2171,-1871,2172,2173]],"id":"768","properties":{"name":"Togo"}},{"type":"Polygon","arcs":[[-2174,2174,-1847,2175,-1845,-2172]],"id":"288","properties":{"name":"Ghana"}},{"type":"MultiPolygon","arcs":[[[-1752,2176,-1858]],[[2177]],[[2178]],[[2179]],[[2180]],[[2181]],[[2182]],[[2183]],[[2184]],[[2185]],[[2186]],[[2187]],[[2188]]],"id":"624","properties":{"name":"Guinea-Bissau"}},{"type":"Polygon","arcs":[[-1537,2189]],"id":"292","properties":{"name":"Gibraltar"}},{"type":"MultiPolygon","arcs":[[[2190,2191,2192,2193,2194]],[[2195,2196]],[[2197,2198]],[[2199]],[[2200]],[[2201]],[[2202]],[[2203]],[[2204]],[[2205]],[[2206]],[[2207]],[[2208]],[[2209]],[[2210]],[[2211]],[[2212]],[[2213]],[[2214]],[[2215]],[[2216]],[[2217]],[[2218]],[[2219]],[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]],[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254,2255]],[[2256]],[[2257]],[[2258]],[[2259]],[[2260]],[[2261]],[[2262]],[[2263]],[[2264]],[[2265]],[[2266]],[[2267]],[[2268]],[[2269]],[[2270]],[[2271]],[[2272]],[[2273]],[[2274]],[[2275]],[[2276]],[[2277]],[[2278]],[[2279]],[[2280]],[[2281]],[[2282]],[[2283]],[[2284]],[[2285]],[[2286]],[[2287]],[[2288]],[[2289]],[[2290]],[[2291]],[[2292]],[[2293]],[[2294]],[[2295]],[[2296]],[[2297]],[[2298]],[[2299]],[[2300]],[[2301]],[[2302]],[[2303]],[[2304]],[[2305]],[[2306]],[[2307]],[[2308]],[[2309]],[[2310]],[[2311]],[[2312]],[[2313]],[[2314]],[[2315]],[[2316]],[[2317]],[[2318]],[[2319]],[[2320]],[[2321]],[[2322]],[[2323]],[[2324]],[[2325]],[[2326]],[[2327]],[[2328]],[[2329]],[[2330]],[[2331]],[[2332]],[[2333]],[[2334]],[[2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340]],[[2341]],[[2342]],[[2343]],[[2344]],[[2345]],[[2346]],[[2347]],[[2348]],[[2349]],[[2350]],[[2351]],[[2352]],[[2353]],[[2354]],[[2355]],[[2356]],[[2357]],[[2358]],[[2359]],[[2360]],[[2361]],[[2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[2371]],[[2372]],[[2373]],[[2374]],[[2375]],[[2376]],[[2377]],[[2378]],[[2379]],[[2380]],[[2381]],[[2382]],[[2383]],[[2384]],[[2385]],[[2386]],[[2387]],[[2388]],[[2389]],[[2390,2391]],[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[2398]],[[2399]],[[2400]],[[2401]],[[2402]],[[2403]],[[2404]],[[2405]],[[2406]],[[2407]],[[2408]],[[2409]],[[2410]],[[2411]],[[2412]],[[2413]],[[2414]],[[2415]],[[2416]],[[2417]],[[2418]],[[2419]],[[2420]],[[2421]],[[2422]],[[2423]],[[2424]],[[2425]],[[2426]],[[2427]],[[2428]],[[2429]],[[2430]],[[2431]],[[2432]],[[2433]],[[2434]],[[2435]],[[2436]],[[2437]],[[2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443]],[[2444]],[[2445]],[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464,2465]],[[2466]],[[2467]],[[2468]],[[2469]],[[2470]],[[2471]],[[2472]],[[2473]],[[2474]],[[2475]],[[2476]],[[2477]],[[2478]],[[2479]],[[2480]],[[2481]],[[2482]],[[2483]],[[2484]],[[2485]],[[2486]],[[2487]],[[2488]],[[2489]],[[2490]],[[2491]],[[2492]],[[2493]],[[2494]],[[2495]],[[2496]],[[2497]],[[2498]],[[2499]],[[2500]],[[2501]],[[2502]],[[2503]],[[2504]],[[2505]],[[2506]],[[2507]],[[2508]],[[2509]],[[2510]],[[2511]],[[2512]],[[2513]],[[2514]],[[2515]],[[2516]],[[2517]],[[2518]],[[2519]],[[2520]],[[2521]],[[2522]],[[2523]],[[2524]],[[2525]],[[2526]],[[2527]],[[2528]],[[2529]],[[2530]],[[2531]],[[2532]],[[2533]],[[2534]],[[2535]],[[2536]],[[2537]],[[2538]],[[2539]],[[2540]],[[2541,2542]],[[2543,2544]],[[2545]],[[2546]]],"id":"840","properties":{"name":"United States of America"}},{"type":"MultiPolygon","arcs":[[[-2195,2547,-2198,2548,-2196,2549]],[[2550,-2191]],[[2551]],[[2552]],[[2553]],[[2554]],[[2555]],[[2556]],[[2557]],[[2558]],[[2559]],[[2560]],[[2561]],[[2562]],[[2563]],[[2564]],[[2565]],[[2566]],[[2567]],[[2568]],[[2569]],[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]],[[2590]],[[2591]],[[2592]],[[2593]],[[2594]],[[2595]],[[2596]],[[2597]],[[2598,2599]],[[-2600,2600]],[[2601]],[[2602]],[[2603]],[[2604]],[[2605]],[[2606]],[[2607]],[[2608]],[[2609]],[[2610]],[[2611]],[[2612]],[[2613]],[[2614]],[[2615]],[[2616]],[[2617]],[[2618]],[[2619]],[[2620]],[[2621]],[[2622]],[[2623]],[[2624]],[[2625]],[[2626]],[[2627]],[[2628]],[[2629]],[[2630]],[[2631]],[[2632]],[[2633]],[[2634]],[[2635]],[[2636]],[[2637]],[[2638]],[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[2659]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[2676]],[[2677]],[[2678]],[[2679]],[[2680]],[[2681]],[[2682]],[[2683]],[[2684]],[[2685]],[[2686]],[[2687]],[[2688]],[[2689]],[[2690]],[[2691]],[[2692]],[[2693]],[[2694]],[[2695]],[[2696]],[[2697]],[[2698]],[[2699]],[[2700]],[[2701]],[[2702]],[[2703]],[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711]],[[2712]],[[2713]],[[2714]],[[2715]],[[2716]],[[2717]],[[2718]],[[2719]],[[2720]],[[2721]],[[2722]],[[2723]],[[2724]],[[2725]],[[2726]],[[2727]],[[2728]],[[2729]],[[2730]],[[2731]],[[2732]],[[2733]],[[2734]],[[2735]],[[2736]],[[2737]],[[2738]],[[2739]],[[2740]],[[2741]],[[2742]],[[2743]],[[2744]],[[2745]],[[2746]],[[2747]],[[2748]],[[2749]],[[2750]],[[2751]],[[2752]],[[2753]],[[2754]],[[2755]],[[2756]],[[2757]],[[2758]],[[2759]],[[2760]],[[2761]],[[2762]],[[2763]],[[2764]],[[2765]],[[2766]],[[2767]],[[2768]],[[2769]],[[2770]],[[2771]],[[2772]],[[2773]],[[2774]],[[2775]],[[2776]],[[2777]],[[2778]],[[2779]],[[2780]],[[2781]],[[2782]],[[2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791]],[[2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[2801]],[[2802]],[[2803]],[[2804]],[[2805]],[[2806]],[[2807]],[[2808]],[[2809]],[[2810]],[[2811]],[[2812]],[[2813]],[[2814]],[[2815]],[[2816]],[[2817]],[[2818]],[[2819]],[[2820]],[[2821]],[[2822]],[[2823]],[[2824]],[[2825]],[[2826]],[[2827]],[[2828]],[[2829]],[[2830]],[[2831]],[[2832]],[[2833]],[[2834]],[[2835]],[[2836]],[[2837]],[[2838]],[[2839]],[[2840]],[[2841]],[[2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[2861]],[[2862]],[[2863]],[[2864]],[[2865]],[[2866]],[[2867]],[[2868]],[[2869]],[[2870]],[[2871]],[[2872]],[[2873]],[[2874]],[[2875]],[[2876]],[[2877]],[[2878]],[[2879]],[[2880]],[[2881]],[[2882]],[[2883]],[[2884]],[[2885]],[[2886]],[[2887]],[[2888]],[[2889]],[[2890]],[[2891]],[[2892]],[[2893]],[[2894]],[[2895]],[[2896]],[[2897]],[[2898]],[[2899]],[[2900]],[[2901]],[[2902]],[[2903]],[[2904]],[[2905]],[[2906]],[[2907]],[[2908]],[[2909]],[[2910]],[[2911]],[[2912]],[[2913]],[[2914]],[[2915]],[[2916]],[[2917]],[[2918]],[[2919]],[[2920]],[[2921]],[[2922]],[[2923]],[[2924]],[[2925]],[[2926]],[[2927]],[[2928]],[[2929]],[[2930]],[[2931]],[[2932]],[[2933]],[[2934]],[[2935]],[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[2948]],[[2949]],[[2950]],[[2951]],[[2952]],[[2953]],[[2954]],[[2955]],[[2956]],[[2957]],[[2958]],[[2959]]],"id":"124","properties":{"name":"Canada"}},{"type":"MultiPolygon","arcs":[[[2960,2961,-1971,2962,-2193]],[[2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[2970]],[[2971]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978]],[[2979]],[[2980]],[[2981]],[[2982]],[[2983]],[[2984]],[[2985]],[[2986]],[[2987]],[[2988]],[[2989]],[[2990]],[[2991]],[[2992]],[[2993]],[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]]],"id":"484","properties":{"name":"Mexico"}},{"type":"MultiPolygon","arcs":[[[-2962,3013,-1972]],[[3014]],[[3015]],[[3016]],[[3017]],[[3018]],[[3019]],[[3020]],[[3021]],[[3022]]],"id":"084","properties":{"name":"Belize"}},{"type":"MultiPolygon","arcs":[[[3023,-2129,3024,-817]],[[3025]],[[3026]],[[3027]],[[3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]]],"id":"591","properties":{"name":"Panama"}},{"type":"MultiPolygon","arcs":[[[-736,-921,-2131,3039]],[[3040]],[[3041]],[[3042]],[[3043]],[[3044]],[[3045]],[[3046]],[[3047]],[[3048]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]],[[3055]],[[3056]],[[3057]],[[3058]],[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]]],"id":"862","properties":{"name":"Venezuela"}},{"type":"MultiPolygon","arcs":[[[3068,-9]],[[3069]],[[3070]],[[3071]],[[3072]],[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]],[[3079]],[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]],[[3095]],[[3096]],[[3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109]],[[3110]],[[3111]],[[3112]],[[3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]],[[3123]],[[3124]],[[3125]]],"id":"598","properties":{"name":"Papua New Guinea"}},{"type":"MultiPolygon","arcs":[[[-643,3126,-1763,-1579,3127,-644]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]]],"id":"818","properties":{"name":"Egypt"}},{"type":"MultiPolygon","arcs":[[[-886,3135,-1910]],[[3136]],[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142]],[[3143]]],"id":"887","properties":{"name":"Yemen"}},{"type":"MultiPolygon","arcs":[[[-1981,-1853,-1862,3144,-814]],[[3145]],[[3146]],[[3147]],[[3148]]],"id":"478","properties":{"name":"Mauritania"}},{"type":"MultiPolygon","arcs":[[[-2163,-2167,3149]],[[3150]],[[3151]]],"id":"226","properties":{"name":"Eq. Guinea"}},{"type":"Polygon","arcs":[[3152,-1860]],"id":"270","properties":{"name":"Gambia"}},{"type":"MultiPolygon","arcs":[[[3153,-557]],[[3154]],[[3155]],[[3156]]],"id":"344","properties":{"name":"Hong Kong"}},{"type":"Polygon","arcs":[[1785]],"id":"336","properties":{"name":"Vatican"}},{"type":"MultiPolygon","arcs":[[[-488,3157,3158,3159]],[[3160,3161]]],"properties":{"name":"N. Cyprus"}},{"type":"MultiPolygon","arcs":[[[-3160,3162,-500,-489]],[[-487,-499,3163,-3158]],[[3164,-497,3165,-3161]]],"properties":{"name":"Cyprus U.N. Buffer Zone"}},{"type":"Polygon","arcs":[[-671,-546,-511]],"properties":{"name":"Siachen Glacier"}},{"type":"Polygon","arcs":[[-904]],"properties":{"name":"Baikonur"}},{"type":"Polygon","arcs":[[3166,-495]],"properties":{"name":"Akrotiri"}},{"type":"MultiPolygon","arcs":[[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[3178]],[[3179]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[3191]],[[3192]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200]],[[3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[3209]],[[3210]],[[3211]],[[3212]],[[3213]],[[3214]],[[3215]],[[3216]],[[3217]],[[3218]],[[3219]],[[3220]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]],[[3255]],[[3256]],[[3257]],[[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[3273]],[[3274]],[[3275]],[[3276]],[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284]],[[3285]],[[3286]],[[3287]],[[3288]],[[3289]],[[3290]],[[3291]],[[3292]],[[3293]],[[3294]],[[3295]],[[3296]],[[3297]],[[3298]],[[3299]],[[3300]],[[3301]],[[3302]],[[3303]],[[3304]],[[3305]],[[3306]],[[3307]],[[3308]],[[3309]],[[3310]],[[3311]],[[3312]],[[3313]],[[3314]],[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[3329]],[[3330]],[[3331]],[[3332]],[[3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]]],"id":"010","properties":{"name":"Antarctica"}},{"type":"MultiPolygon","arcs":[[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]],[[3365]],[[3366]],[[3367]],[[3368]],[[3369]],[[3370]],[[3371]],[[3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377]],[[3378]],[[3379]],[[3380]],[[3381]],[[3382]],[[3383]],[[3384]],[[3385]],[[3386]],[[3387]],[[3388]],[[3389]],[[3390]],[[3391]],[[3392]],[[3393]],[[3394]],[[3395]],[[3396]],[[3397]],[[3398]],[[3399]],[[3400]],[[3401]],[[3402]],[[3403]],[[3404]],[[3405]],[[3406]],[[3407]],[[3408]],[[3409]],[[3410]],[[3411]],[[3412]],[[3413]],[[3414]],[[3415]],[[3416]],[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424]],[[3425]],[[3426]],[[3427]],[[3428]],[[3429]],[[3430]],[[3431]],[[3432]],[[3433]],[[3434]],[[3435]],[[3436]],[[3437]],[[3438]],[[3439]]],"id":"036","properties":{"name":"Australia"}},{"type":"MultiPolygon","arcs":[[[3440]],[[3441]],[[3442]],[[3443]],[[3444]],[[3445]],[[3446]],[[3447]],[[3448]],[[3449]],[[3450]],[[3451]],[[3452]],[[3453]],[[3454]],[[3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462]],[[3463]],[[3464]],[[3465]],[[3466]],[[3467]],[[3468]],[[3469]],[[3470]],[[3471]],[[3472]],[[3473]],[[3474]],[[3475]],[[3476]],[[3477]],[[3478]],[[3479]],[[3480]],[[3481]],[[3482]],[[3483]],[[3484]],[[3485]],[[3486]],[[3487]],[[3488]],[[3489]],[[3490]],[[3491]],[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]],[[3499]],[[3500]],[[3501]],[[3502]],[[3503]],[[3504]],[[3505]],[[3506]],[[3507]],[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]],[[3514]],[[3515]],[[3516]],[[3517]],[[3518]],[[3519]],[[3520]],[[3521]],[[3522]],[[3523]],[[3524]],[[3525]],[[3526]],[[3527]],[[3528]],[[3529]],[[3530]],[[3531]],[[3532]],[[3533]],[[3534]],[[3535]],[[3536]],[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]],[[3546]],[[3547]],[[3548]],[[3549]],[[3550]],[[3551]],[[3552]],[[3553]],[[3554]],[[3555]],[[3556]],[[3557]],[[3558]],[[3559]],[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]]],"id":"304","properties":{"name":"Greenland"}},{"type":"MultiPolygon","arcs":[[[3568]],[[3569]],[[3570]],[[3571]],[[3572]],[[3573]],[[3574]],[[3575]],[[3576]],[[3577]],[[3578]],[[3579]],[[3580]],[[3581]],[[3582]],[[3583]],[[3584]],[[3585]],[[3586]],[[3587]],[[3588]],[[3589]],[[3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596]],[[3597]],[[3598]],[[3599]],[[3600]],[[3601]],[[3602]],[[3603]],[[3604]],[[3605]],[[3606]],[[3607]],[[3608]],[[3609]],[[3610]],[[3611]]],"id":"242","properties":{"name":"Fiji"}},{"type":"MultiPolygon","arcs":[[[3612]],[[3613]],[[3614]],[[3615]],[[3616]],[[3617]],[[3618]],[[3619]],[[3620]],[[3621]],[[3622]],[[3623]],[[3624]],[[3625]],[[3626]],[[3627]],[[3628]],[[3629]],[[3630]],[[3631]],[[3632]],[[3633]],[[3634]],[[3635]],[[3636]]],"id":"554","properties":{"name":"New Zealand"}},{"type":"MultiPolygon","arcs":[[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642]],[[3643]],[[3644]],[[3645]],[[3646]],[[3647]]],"id":"540","properties":{"name":"New Caledonia"}},{"type":"MultiPolygon","arcs":[[[3648]],[[3649]],[[3650]]],"id":"450","properties":{"name":"Madagascar"}},{"type":"MultiPolygon","arcs":[[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[3663]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[3679]],[[3680]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]],[[3703]],[[3704]],[[3705]],[[3706]],[[3707]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712]],[[3713]],[[3714]],[[3715]],[[3716]],[[3717]],[[3718]],[[3719]],[[3720]],[[3721]],[[3722]],[[3723]],[[3724]],[[3725]],[[3726]],[[3727]],[[3728]],[[3729]],[[3730]],[[3731]],[[3732]],[[3733]],[[3734]],[[3735]],[[3736]],[[3737]],[[3738]],[[3739]],[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]],[[3746]]],"id":"608","properties":{"name":"Philippines"}},{"type":"MultiPolygon","arcs":[[[3747]],[[3748]],[[3749]],[[3750]],[[3751]]],"id":"144","properties":{"name":"Sri Lanka"}},{"type":"Polygon","arcs":[[3752]],"id":"531","properties":{"name":"Curaçao"}},{"type":"Polygon","arcs":[[3753]],"id":"533","properties":{"name":"Aruba"}},{"type":"MultiPolygon","arcs":[[[3754]],[[3755]],[[3756]],[[3757]],[[3758]],[[3759]],[[3760]],[[3761]],[[3762]],[[3763]],[[3764]],[[3765]],[[3766]],[[3767]],[[3768]],[[3769]],[[3770]],[[3771]],[[3772]],[[3773]],[[3774]],[[3775]],[[3776]],[[3777]],[[3778]],[[3779]],[[3780]],[[3781]],[[3782]],[[3783]],[[3784]],[[3785]],[[3786]],[[3787]],[[3788]],[[3789]],[[3790]],[[3791]],[[3792]],[[3793]],[[3794]],[[3795]]],"id":"044","properties":{"name":"Bahamas"}},{"type":"MultiPolygon","arcs":[[[3796]],[[3797]],[[3798]],[[3799]],[[3800]],[[3801]],[[3802]],[[3803]],[[3804]],[[3805]],[[3806]],[[3807]]],"id":"796","properties":{"name":"Turks and Caicos Is."}},{"type":"MultiPolygon","arcs":[[[3808]],[[3809]],[[3810]],[[3811]],[[3812]],[[3813]],[[3814]],[[3815]]],"id":"158","properties":{"name":"Taiwan"}},{"type":"MultiPolygon","arcs":[[[3816]],[[3817]],[[3818]],[[3819]],[[3820]],[[3821]],[[3822]],[[3823]],[[3824]],[[3825]],[[3826]],[[3827]],[[3828]],[[3829]],[[3830]],[[3831]],[[3832]],[[3833]],[[3834]],[[3835]],[[3836]],[[3837]],[[3838]],[[3839]],[[3840]],[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]],[[3848]],[[3849]],[[3850]],[[3851]],[[3852]],[[3853]],[[3854]],[[3855]],[[3856]],[[3857]],[[3858]],[[3859]],[[3860]],[[3861]],[[3862]],[[3863]],[[3864]],[[3865]],[[3866]],[[3867]],[[3868]],[[3869]],[[3870]],[[3871]],[[3872]],[[3873]],[[3874]],[[3875]],[[3876]],[[3877]],[[3878]],[[3879]],[[3880]],[[3881]],[[3882]],[[3883]],[[3884]],[[3885]],[[3886]],[[3887]],[[3888]],[[3889]],[[3890]],[[3891,3892]],[[-3892,3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]],[[3901]],[[3902]],[[3903]],[[3904]],[[3905]],[[3906]],[[3907]],[[3908]],[[3909]],[[3910]],[[3911]],[[3912]],[[3913]],[[3914]],[[3915]],[[3916]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]],[[3923]],[[3924]],[[3925]]],"id":"392","properties":{"name":"Japan"}},{"type":"MultiPolygon","arcs":[[[3926]],[[3927]]],"id":"666","properties":{"name":"St. Pierre and Miquelon"}},{"type":"MultiPolygon","arcs":[[[3928]],[[3929]],[[3930]],[[3931]],[[3932]]],"id":"352","properties":{"name":"Iceland"}},{"type":"MultiPolygon","arcs":[[[3933]],[[3934]],[[3935]],[[3936]]],"id":"612","properties":{"name":"Pitcairn Is."}},{"type":"MultiPolygon","arcs":[[[3937]],[[3938]],[[3939]],[[3940]],[[3941]],[[3942]],[[3943]],[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]],[[3950]],[[3951]],[[3952]],[[3953]],[[3954]],[[3955]],[[3956]],[[3957]],[[3958]],[[3959]],[[3960]],[[3961]],[[3962]],[[3963]],[[3964]],[[3965]],[[3966]],[[3967]],[[3968]],[[3969]],[[3970]],[[3971]],[[3972]],[[3973]],[[3974]],[[3975]],[[3976]],[[3977]],[[3978]],[[3979]],[[3980]],[[3981]],[[3982]],[[3983]],[[3984]],[[3985]],[[3986]],[[3987]],[[3988]],[[3989]],[[3990]],[[3991]],[[3992]],[[3993]],[[3994]],[[3995]],[[3996]],[[3997]],[[3998]],[[3999]],[[4000]],[[4001]],[[4002]],[[4003]],[[4004]],[[4005]],[[4006]],[[4007]],[[4008]],[[4009]],[[4010]],[[4011]],[[4012]],[[4013]],[[4014]],[[4015]],[[4016]],[[4017]],[[4018]],[[4019]],[[4020]],[[4021]],[[4022]],[[4023]],[[4024]]],"id":"258","properties":{"name":"Fr. Polynesia"}},{"type":"MultiPolygon","arcs":[[[4025]],[[4026]],[[4027]],[[4028]],[[4029]],[[4030]],[[4031]],[[4032]],[[4033]],[[4034]],[[4035]],[[4036]],[[4037]],[[4038]],[[4039]],[[4040]],[[4041]],[[4042]]],"id":"260","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":"MultiPolygon","arcs":[[[4043]],[[4044]],[[4045]],[[4046]],[[4047]],[[4048]],[[4049]],[[4050]],[[4051]],[[4052]],[[4053]],[[4054]],[[4055]],[[4056]],[[4057]],[[4058]],[[4059]],[[4060]],[[4061]],[[4062]],[[4063]],[[4064]],[[4065]],[[4066]],[[4067]],[[4068]]],"id":"690","properties":{"name":"Seychelles"}},{"type":"MultiPolygon","arcs":[[[4069]],[[4070]],[[4071]],[[4072]],[[4073]],[[4074]],[[4075]],[[4076]],[[4077]],[[4078]],[[4079]],[[4080]],[[4081]],[[4082]],[[4083]],[[4084]],[[4085,4086]],[[4087]],[[4088]],[[4089]],[[4090]],[[4091]],[[4092]],[[4093]],[[4094]],[[4095]],[[4096]],[[4097]],[[4098]],[[4099]],[[4100]],[[4101]],[[4102]],[[4103]],[[4104]]],"id":"296","properties":{"name":"Kiribati"}},{"type":"MultiPolygon","arcs":[[[4105]],[[4106]],[[4107]],[[4108]],[[4109]],[[4110]],[[4111]],[[4112]],[[4113]],[[4114]],[[4115]],[[4116]],[[4117]],[[4118]],[[4119]],[[4120]],[[4121]],[[4122]],[[4123]],[[4124]],[[4125]],[[4126]]],"id":"584","properties":{"name":"Marshall Is."}},{"type":"MultiPolygon","arcs":[[[4127]],[[4128]]],"id":"780","properties":{"name":"Trinidad and Tobago"}},{"type":"MultiPolygon","arcs":[[[4129]],[[4130]]],"id":"308","properties":{"name":"Grenada"}},{"type":"MultiPolygon","arcs":[[[4131]],[[4132]],[[4133]],[[4134]],[[4135]]],"id":"670","properties":{"name":"St. Vin. and Gren."}},{"type":"Polygon","arcs":[[4136]],"id":"052","properties":{"name":"Barbados"}},{"type":"Polygon","arcs":[[4137]],"id":"662","properties":{"name":"Saint Lucia"}},{"type":"Polygon","arcs":[[4138]],"id":"212","properties":{"name":"Dominica"}},{"type":"MultiPolygon","arcs":[[[4139]],[[4140]],[[4141]],[[4142]],[[4143]],[[4144]],[[4145]],[[4146]],[[4147]],[[4148]],[[4149]],[[4150]],[[4151]]],"id":"581","properties":{"name":"U.S. Minor Outlying Is."}},{"type":"Polygon","arcs":[[4152]],"id":"500","properties":{"name":"Montserrat"}},{"type":"MultiPolygon","arcs":[[[4153]],[[4154]]],"id":"028","properties":{"name":"Antigua and Barb."}},{"type":"MultiPolygon","arcs":[[[4155]],[[4156]]],"id":"659","properties":{"name":"St. Kitts and Nevis"}},{"type":"MultiPolygon","arcs":[[[4157]],[[4158]],[[4159]]],"id":"850","properties":{"name":"U.S. Virgin Is."}},{"type":"Polygon","arcs":[[4160]],"id":"652","properties":{"name":"St-Barthélemy"}},{"type":"MultiPolygon","arcs":[[[4161]],[[4162]],[[4163]],[[4164]]],"id":"630","properties":{"name":"Puerto Rico"}},{"type":"MultiPolygon","arcs":[[[4165]],[[4166]]],"id":"660","properties":{"name":"Anguilla"}},{"type":"MultiPolygon","arcs":[[[4167]],[[4168]],[[4169]],[[4170]],[[4171]],[[4172]]],"id":"092","properties":{"name":"British Virgin Is."}},{"type":"Polygon","arcs":[[4173]],"id":"388","properties":{"name":"Jamaica"}},{"type":"MultiPolygon","arcs":[[[4174]],[[4175]],[[4176]]],"id":"136","properties":{"name":"Cayman Is."}},{"type":"MultiPolygon","arcs":[[[4177]],[[4178]]],"id":"060","properties":{"name":"Bermuda"}},{"type":"Polygon","arcs":[[4179]],"id":"334","properties":{"name":"Heard I. and McDonald Is."}},{"type":"MultiPolygon","arcs":[[[4180]],[[4181]],[[4182]],[[4183]]],"id":"654","properties":{"name":"Saint Helena"}},{"type":"MultiPolygon","arcs":[[[4184]],[[4185]],[[4186]]],"id":"480","properties":{"name":"Mauritius"}},{"type":"MultiPolygon","arcs":[[[4187]],[[4188]],[[4189]]],"id":"174","properties":{"name":"Comoros"}},{"type":"MultiPolygon","arcs":[[[4190]],[[4191]]],"id":"678","properties":{"name":"São Tomé and Principe"}},{"type":"MultiPolygon","arcs":[[[4192]],[[4193]],[[4194]],[[4195]],[[4196]],[[4197]],[[4198]],[[4199]],[[4200]]],"id":"132","properties":{"name":"Cabo Verde"}},{"type":"MultiPolygon","arcs":[[[4201]],[[4202]]],"id":"470","properties":{"name":"Malta"}},{"type":"Polygon","arcs":[[4203]],"id":"832","properties":{"name":"Jersey"}},{"type":"MultiPolygon","arcs":[[[4204]],[[4205]],[[4206]],[[4207]]],"id":"831","properties":{"name":"Guernsey"}},{"type":"Polygon","arcs":[[4208]],"id":"833","properties":{"name":"Isle of Man"}},{"type":"MultiPolygon","arcs":[[[4209]],[[4210]],[[4211]],[[4212]],[[4213]],[[4214]],[[4215]],[[4216]],[[4217]],[[4218]],[[4219]],[[4220]],[[4221]],[[4222]],[[4223]],[[4224]]],"id":"248","properties":{"name":"Åland"}},{"type":"MultiPolygon","arcs":[[[4225]],[[4226]],[[4227]],[[4228]],[[4229]],[[4230]],[[4231]],[[4232]],[[4233]],[[4234]],[[4235]]],"id":"234","properties":{"name":"Faeroe Is."}},{"type":"MultiPolygon","arcs":[[[4236]],[[4237]],[[4238]]],"properties":{"name":"Indian Ocean Ter."}},{"type":"MultiPolygon","arcs":[[[4239]],[[4240]],[[4241]],[[4242]],[[4243]],[[4244]],[[4245]],[[4246]],[[4247]],[[4248]]],"id":"086","properties":{"name":"Br. Indian Ocean Ter."}},{"type":"Polygon","arcs":[[4249]],"id":"702","properties":{"name":"Singapore"}},{"type":"Polygon","arcs":[[4250]],"id":"574","properties":{"name":"Norfolk Island"}},{"type":"MultiPolygon","arcs":[[[4251]],[[4252]],[[4253]],[[4254]],[[4255]],[[4256]],[[4257]],[[4258]],[[4259]],[[4260]],[[4261]],[[4262]],[[4263]]],"id":"184","properties":{"name":"Cook Is."}},{"type":"MultiPolygon","arcs":[[[4264]],[[4265]],[[4266]],[[4267]],[[4268]],[[4269]],[[4270]],[[4271]],[[4272]],[[4273]]],"id":"776","properties":{"name":"Tonga"}},{"type":"MultiPolygon","arcs":[[[4274]],[[4275]]],"id":"876","properties":{"name":"Wallis and Futuna Is."}},{"type":"MultiPolygon","arcs":[[[4276]],[[4277]]],"id":"882","properties":{"name":"Samoa"}},{"type":"MultiPolygon","arcs":[[[4278]],[[4279]],[[4280]],[[4281]],[[4282]],[[4283]],[[4284]],[[4285]],[[4286]],[[4287]],[[4288]],[[4289]],[[4290]],[[4291]],[[4292]],[[4293]],[[4294]],[[4295]],[[4296]],[[4297]],[[4298]],[[4299]],[[4300]],[[4301]],[[4302]],[[4303]],[[4304]],[[4305]],[[4306]],[[4307]],[[4308]],[[4309]],[[4310]],[[4311]],[[4312]],[[4313]],[[4314]],[[4315]],[[4316]],[[4317]],[[4318]],[[4319]],[[4320]],[[4321]],[[4322]],[[4323]],[[4324]],[[4325]]],"id":"090","properties":{"name":"Solomon Is."}},{"type":"MultiPolygon","arcs":[[[4326]],[[4327]],[[4328]],[[4329]],[[4330]],[[4331]],[[4332]],[[4333]],[[4334]]],"id":"798","properties":{"name":"Tuvalu"}},{"type":"MultiPolygon","arcs":[[[4335]],[[4336]],[[4337]],[[4338]],[[4339]],[[4340]],[[4341]],[[4342]],[[4343]],[[4344]],[[4345]],[[4346]],[[4347]],[[4348]],[[4349]],[[4350]],[[4351]],[[4352]],[[4353]],[[4354]],[[4355]],[[4356]],[[4357]],[[4358]],[[4359]],[[4360]],[[4361]],[[4362]],[[4363]],[[4364]],[[4365]],[[4366]],[[4367]],[[4368]],[[4369]],[[4370]],[[4371]],[[4372]],[[4373]],[[4374]],[[4375]],[[4376]],[[4377]],[[4378]],[[4379]],[[4380]],[[4381]],[[4382]],[[4383]],[[4384]],[[4385]],[[4386]],[[4387]],[[4388]],[[4389]],[[4390]],[[4391]],[[4392]],[[4393]],[[4394]],[[4395]],[[4396]],[[4397]],[[4398]],[[4399]],[[4400]],[[4401]],[[4402]],[[4403]],[[4404]],[[4405]],[[4406]],[[4407]],[[4408]],[[4409]],[[4410]],[[4411]],[[4412]],[[4413]],[[4414]],[[4415]],[[4416]],[[4417]],[[4418]],[[4419]],[[4420]],[[4421]],[[4422]],[[4423]],[[4424]],[[4425]],[[4426]],[[4427]],[[4428]],[[4429]],[[4430]],[[4431]],[[4432]],[[4433]],[[4434]],[[4435]],[[4436]],[[4437]],[[4438]],[[4439]],[[4440]],[[4441]],[[4442]],[[4443]],[[4444]],[[4445]],[[4446]],[[4447]],[[4448]],[[4449]],[[4450]],[[4451]],[[4452]],[[4453]],[[4454]],[[4455]],[[4456]],[[4457]],[[4458]],[[4459]],[[4460]],[[4461]],[[4462]],[[4463]],[[4464]],[[4465]],[[4466]],[[4467]],[[4468]],[[4469]],[[4470]],[[4471]],[[4472]],[[4473]],[[4474]],[[4475]],[[4476]],[[4477]],[[4478]],[[4479]],[[4480]],[[4481]],[[4482]],[[4483]],[[4484]],[[4485]],[[4486]],[[4487]],[[4488]],[[4489]],[[4490]],[[4491]],[[4492]],[[4493]],[[4494]],[[4495]],[[4496]],[[4497]],[[4498]],[[4499]],[[4500]],[[4501]],[[4502]],[[4503]],[[4504]],[[4505]],[[4506]],[[4507]],[[4508]],[[4509]],[[4510]]],"id":"462","properties":{"name":"Maldives"}},{"type":"Polygon","arcs":[[4511]],"id":"520","properties":{"name":"Nauru"}},{"type":"MultiPolygon","arcs":[[[4512]],[[4513]],[[4514]],[[4515]],[[4516]],[[4517]],[[4518]],[[4519]],[[4520]],[[4521]],[[4522]],[[4523]],[[4524]],[[4525]],[[4526]],[[4527]],[[4528]],[[4529]],[[4530]],[[4531]]],"id":"583","properties":{"name":"Micronesia"}},{"type":"MultiPolygon","arcs":[[[4532]],[[4533]],[[4534]],[[4535]],[[4536]],[[4537]],[[4538]],[[4539]],[[4540]],[[4541]],[[4542]],[[4543]]],"id":"239","properties":{"name":"S. Geo. and the Is."}},{"type":"MultiPolygon","arcs":[[[4544]],[[4545]],[[4546]],[[4547]],[[4548]],[[4549]],[[4550]],[[4551]],[[4552]],[[4553]],[[4554]],[[4555]],[[4556]],[[4557]],[[4558]]],"id":"238","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[4559]],[[4560]],[[4561]],[[4562]],[[4563]],[[4564]],[[4565]],[[4566]],[[4567]],[[4568]],[[4569]],[[4570]],[[4571]],[[4572]],[[4573]],[[4574]],[[4575]],[[4576]],[[4577]],[[4578]],[[4579]],[[4580]],[[4581]],[[4582]],[[4583]],[[4584]],[[4585]]],"id":"548","properties":{"name":"Vanuatu"}},{"type":"Polygon","arcs":[[4586]],"id":"570","properties":{"name":"Niue"}},{"type":"MultiPolygon","arcs":[[[4587]],[[4588]],[[4589]],[[4590]],[[4591]]],"id":"016","properties":{"name":"American Samoa"}},{"type":"MultiPolygon","arcs":[[[4592]],[[4593]],[[4594]],[[4595]],[[4596]],[[4597]],[[4598]],[[4599]],[[4600]]],"id":"585","properties":{"name":"Palau"}},{"type":"Polygon","arcs":[[4601]],"id":"316","properties":{"name":"Guam"}},{"type":"MultiPolygon","arcs":[[[4602]],[[4603]],[[4604]],[[4605]],[[4606]],[[4607]],[[4608]],[[4609]],[[4610]],[[4611]],[[4612]],[[4613]]],"id":"580","properties":{"name":"N. Mariana Is."}},{"type":"Polygon","arcs":[[4614]],"id":"048","properties":{"name":"Bahrain"}},{"type":"Polygon","arcs":[[4615]],"properties":{"name":"Coral Sea Is."}},{"type":"MultiPolygon","arcs":[[[4616]],[[4617]],[[4618]],[[4619]],[[4620]],[[4621]],[[4622]],[[4623]],[[4624]],[[4625]],[[4626]],[[4627]]],"properties":{"name":"Spratly Is."}},{"type":"Polygon","arcs":[[4628]],"properties":{"name":"Clipperton I."}},{"type":"MultiPolygon","arcs":[[[4629]],[[4630]]],"id":"446","properties":{"name":"Macao"}},{"type":"Polygon","arcs":[[4631]],"id":"036","properties":{"name":"Ashmore and Cartier Is."}},{"type":"Polygon","arcs":[[4632]],"properties":{"name":"Bajo Nuevo Bank"}},{"type":"Polygon","arcs":[[4633]],"properties":{"name":"Serranilla Bank"}},{"type":"Polygon","arcs":[[4634]],"properties":{"name":"Scarborough Reef"}}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[1,270]],[[4,1974,2,1975]],[[276,1977,273,6,274,1978]],[[9,3068]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[2030,508,667,1818,1777,1960,1913,1906,1908,1482,882,1480,884,3135,1910,2161,641,3126,1763,1768,1767,695,661,663,682,1984,873,863,1874,840,1873,830,2165,3149,2163,1865,1869,2172,2174,1847,2175,1845,1757,1747,1750,2176,1858,3152,1860,3144,814,804,1532,806,807,1533,809,1981,1585,1577,3127,644,634,646,690,1524,1498,971,846,981,848,1590,1926,1525,1669,1505,2054,1880,2055,1877,1905,1783,704,1979,706,1535,2189,1537,2141,1539,710,1491,1831,1493,1830,1202,1562,1204,1601,1207,1602,979,917,980,914,1237,1228,974,1402,1361,1239,977,967,794,738,792,555,3153,557,558,1445,1471,1927,271,1928,1990],[968,1509,1815,2158,901]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[294,465,2111,2127,3024,817,822,2103,1966,1969,2962,2193,2547,2198,2548,2196,2549,2550,2191,2960,3013,1972,2102,824,815,3023,2129,3039,736,733,697,921,965,476]],[[297,478,299,477]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[469]],[[470]],[[471]],[[472]],[[479]],[[480]],[[481]],[[482]],[[483]],[[495,3165,3161,3164,497,3163,3158,3162,500,490,484,493,3166]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[666]],[[671]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[737]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[819]],[[820]],[[821]],[[825]],[[826]],[[827]],[[842]],[[856]],[[857]],[[858]],[[875]],[[876]],[[878,879]],[[888]],[[889]],[[890]],[[904]],[[905]],[[906]],[[907]],[[908]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234]],[[1235]],[[1236]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391]],[[1392]],[[1393]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400]],[[1401]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]],[[1517]],[[1518]],[[1528]],[[1529]],[[1530]],[[1531]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1586]],[[1587]],[[1588]],[[1604,1611]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1738]],[[1739]],[[1740]],[[1741]],[[1742]],[[1749]],[[1765]],[[1769]],[[1770]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1867]],[[1868]],[[1875]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1950,1955]],[[1951]],[[1952]],[[1953]],[[1954]],[[1956]],[[1957]],[[1961]],[[1962]],[[1963]],[[1967]],[[1968]],[[1976]],[[1985]],[[1986]],[[1987]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037]],[[2038]],[[2039]],[[2040]],[[2041]],[[2042]],[[2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]],[[2061,2056,2060,2058]],[[2062]],[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085]],[[2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101]],[[2104]],[[2105]],[[2106]],[[2107]],[[2108]],[[2109]],[[2112]],[[2113]],[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[2123]],[[2124]],[[2125]],[[2126]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155]],[[2156]],[[2157]],[[2159]],[[2160]],[[2167]],[[2168]],[[2177]],[[2178]],[[2179]],[[2180]],[[2181]],[[2182]],[[2183]],[[2184]],[[2185]],[[2186]],[[2187]],[[2188]],[[2199]],[[2200]],[[2201]],[[2202]],[[2203]],[[2204]],[[2205]],[[2206]],[[2207]],[[2208]],[[2209]],[[2210]],[[2211]],[[2212]],[[2213]],[[2214]],[[2215]],[[2216]],[[2217]],[[2218]],[[2219]],[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]],[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254,2255]],[[2256]],[[2257]],[[2258]],[[2259]],[[2260]],[[2261]],[[2262]],[[2263]],[[2264]],[[2265]],[[2266]],[[2267]],[[2268]],[[2269]],[[2270]],[[2271]],[[2272]],[[2273]],[[2274]],[[2275]],[[2276]],[[2277]],[[2278]],[[2279]],[[2280]],[[2281]],[[2282]],[[2283]],[[2284]],[[2285]],[[2286]],[[2287]],[[2288]],[[2289]],[[2290]],[[2291]],[[2292]],[[2293]],[[2294]],[[2295]],[[2296]],[[2297]],[[2298]],[[2299]],[[2300]],[[2301]],[[2302]],[[2303]],[[2304]],[[2305]],[[2306]],[[2307]],[[2308]],[[2309]],[[2310]],[[2311]],[[2312]],[[2313]],[[2314]],[[2315]],[[2316]],[[2317]],[[2318]],[[2319]],[[2320]],[[2321]],[[2322]],[[2323]],[[2324]],[[2325]],[[2326]],[[2327]],[[2328]],[[2329]],[[2330]],[[2331]],[[2332]],[[2333]],[[2334]],[[2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340]],[[2341]],[[2342]],[[2343]],[[2344]],[[2345]],[[2346]],[[2347]],[[2348]],[[2349]],[[2350]],[[2351]],[[2352]],[[2353]],[[2354]],[[2355]],[[2356]],[[2357]],[[2358]],[[2359]],[[2360]],[[2361]],[[2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[2371]],[[2372]],[[2373]],[[2374]],[[2375]],[[2376]],[[2377]],[[2378]],[[2379]],[[2380]],[[2381]],[[2382]],[[2383]],[[2384]],[[2385]],[[2386]],[[2387]],[[2388]],[[2389]],[[2390,2391]],[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[2398]],[[2399]],[[2400]],[[2401]],[[2402]],[[2403]],[[2404]],[[2405]],[[2406]],[[2407]],[[2408]],[[2409]],[[2410]],[[2411]],[[2412]],[[2413]],[[2414]],[[2415]],[[2416]],[[2417]],[[2418]],[[2419]],[[2420]],[[2421]],[[2422]],[[2423]],[[2424]],[[2425]],[[2426]],[[2427]],[[2428]],[[2429]],[[2430]],[[2431]],[[2432]],[[2433]],[[2434]],[[2435]],[[2436]],[[2437]],[[2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443]],[[2444]],[[2445]],[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464,2465]],[[2466]],[[2467]],[[2468]],[[2469]],[[2470]],[[2471]],[[2472]],[[2473]],[[2474]],[[2475]],[[2476]],[[2477]],[[2478]],[[2479]],[[2480]],[[2481]],[[2482]],[[2483]],[[2484]],[[2485]],[[2486]],[[2487]],[[2488]],[[2489]],[[2490]],[[2491]],[[2492]],[[2493]],[[2494]],[[2495]],[[2496]],[[2497]],[[2498]],[[2499]],[[2500]],[[2501]],[[2502]],[[2503]],[[2504]],[[2505]],[[2506]],[[2507]],[[2508]],[[2509]],[[2510]],[[2511]],[[2512]],[[2513]],[[2514]],[[2515]],[[2516]],[[2517]],[[2518]],[[2519]],[[2520]],[[2521]],[[2522]],[[2523]],[[2524]],[[2525]],[[2526]],[[2527]],[[2528]],[[2529]],[[2530]],[[2531]],[[2532]],[[2533]],[[2534]],[[2535]],[[2536]],[[2537]],[[2538]],[[2539]],[[2540]],[[2541,2542]],[[2543,2544]],[[2545]],[[2546]],[[2551]],[[2552]],[[2553]],[[2554]],[[2555]],[[2556]],[[2557]],[[2558]],[[2559]],[[2560]],[[2561]],[[2562]],[[2563]],[[2564]],[[2565]],[[2566]],[[2567]],[[2568]],[[2569]],[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]],[[2590]],[[2591]],[[2592]],[[2593]],[[2594]],[[2595]],[[2596]],[[2597]],[[2598,2600]],[[2601]],[[2602]],[[2603]],[[2604]],[[2605]],[[2606]],[[2607]],[[2608]],[[2609]],[[2610]],[[2611]],[[2612]],[[2613]],[[2614]],[[2615]],[[2616]],[[2617]],[[2618]],[[2619]],[[2620]],[[2621]],[[2622]],[[2623]],[[2624]],[[2625]],[[2626]],[[2627]],[[2628]],[[2629]],[[2630]],[[2631]],[[2632]],[[2633]],[[2634]],[[2635]],[[2636]],[[2637]],[[2638]],[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[2659]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[2676]],[[2677]],[[2678]],[[2679]],[[2680]],[[2681]],[[2682]],[[2683]],[[2684]],[[2685]],[[2686]],[[2687]],[[2688]],[[2689]],[[2690]],[[2691]],[[2692]],[[2693]],[[2694]],[[2695]],[[2696]],[[2697]],[[2698]],[[2699]],[[2700]],[[2701]],[[2702]],[[2703]],[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711]],[[2712]],[[2713]],[[2714]],[[2715]],[[2716]],[[2717]],[[2718]],[[2719]],[[2720]],[[2721]],[[2722]],[[2723]],[[2724]],[[2725]],[[2726]],[[2727]],[[2728]],[[2729]],[[2730]],[[2731]],[[2732]],[[2733]],[[2734]],[[2735]],[[2736]],[[2737]],[[2738]],[[2739]],[[2740]],[[2741]],[[2742]],[[2743]],[[2744]],[[2745]],[[2746]],[[2747]],[[2748]],[[2749]],[[2750]],[[2751]],[[2752]],[[2753]],[[2754]],[[2755]],[[2756]],[[2757]],[[2758]],[[2759]],[[2760]],[[2761]],[[2762]],[[2763]],[[2764]],[[2765]],[[2766]],[[2767]],[[2768]],[[2769]],[[2770]],[[2771]],[[2772]],[[2773]],[[2774]],[[2775]],[[2776]],[[2777]],[[2778]],[[2779]],[[2780]],[[2781]],[[2782]],[[2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791]],[[2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[2801]],[[2802]],[[2803]],[[2804]],[[2805]],[[2806]],[[2807]],[[2808]],[[2809]],[[2810]],[[2811]],[[2812]],[[2813]],[[2814]],[[2815]],[[2816]],[[2817]],[[2818]],[[2819]],[[2820]],[[2821]],[[2822]],[[2823]],[[2824]],[[2825]],[[2826]],[[2827]],[[2828]],[[2829]],[[2830]],[[2831]],[[2832]],[[2833]],[[2834]],[[2835]],[[2836]],[[2837]],[[2838]],[[2839]],[[2840]],[[2841]],[[2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[2861]],[[2862]],[[2863]],[[2864]],[[2865]],[[2866]],[[2867]],[[2868]],[[2869]],[[2870]],[[2871]],[[2872]],[[2873]],[[2874]],[[2875]],[[2876]],[[2877]],[[2878]],[[2879]],[[2880]],[[2881]],[[2882]],[[2883]],[[2884]],[[2885]],[[2886]],[[2887]],[[2888]],[[2889]],[[2890]],[[2891]],[[2892]],[[2893]],[[2894]],[[2895]],[[2896]],[[2897]],[[2898]],[[2899]],[[2900]],[[2901]],[[2902]],[[2903]],[[2904]],[[2905]],[[2906]],[[2907]],[[2908]],[[2909]],[[2910]],[[2911]],[[2912]],[[2913]],[[2914]],[[2915]],[[2916]],[[2917]],[[2918]],[[2919]],[[2920]],[[2921]],[[2922]],[[2923]],[[2924]],[[2925]],[[2926]],[[2927]],[[2928]],[[2929]],[[2930]],[[2931]],[[2932]],[[2933]],[[2934]],[[2935]],[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[2948]],[[2949]],[[2950]],[[2951]],[[2952]],[[2953]],[[2954]],[[2955]],[[2956]],[[2957]],[[2958]],[[2959]],[[2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[2970]],[[2971]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978]],[[2979]],[[2980]],[[2981]],[[2982]],[[2983]],[[2984]],[[2985]],[[2986]],[[2987]],[[2988]],[[2989]],[[2990]],[[2991]],[[2992]],[[2993]],[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]],[[3014]],[[3015]],[[3016]],[[3017]],[[3018]],[[3019]],[[3020]],[[3021]],[[3022]],[[3025]],[[3026]],[[3027]],[[3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]],[[3040]],[[3041]],[[3042]],[[3043]],[[3044]],[[3045]],[[3046]],[[3047]],[[3048]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]],[[3055]],[[3056]],[[3057]],[[3058]],[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]],[[3069]],[[3070]],[[3071]],[[3072]],[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]],[[3079]],[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]],[[3095]],[[3096]],[[3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109]],[[3110]],[[3111]],[[3112]],[[3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]],[[3123]],[[3124]],[[3125]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]],[[3136]],[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142]],[[3143]],[[3145]],[[3146]],[[3147]],[[3148]],[[3150]],[[3151]],[[3154]],[[3155]],[[3156]],[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[3178]],[[3179]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[3191]],[[3192]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200]],[[3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[3209]],[[3210]],[[3211]],[[3212]],[[3213]],[[3214]],[[3215]],[[3216]],[[3217]],[[3218]],[[3219]],[[3220]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]],[[3255]],[[3256]],[[3257]],[[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[3273]],[[3274]],[[3275]],[[3276]],[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284]],[[3285]],[[3286]],[[3287]],[[3288]],[[3289]],[[3290]],[[3291]],[[3292]],[[3293]],[[3294]],[[3295]],[[3296]],[[3297]],[[3298]],[[3299]],[[3300]],[[3301]],[[3302]],[[3303]],[[3304]],[[3305]],[[3306]],[[3307]],[[3308]],[[3309]],[[3310]],[[3311]],[[3312]],[[3313]],[[3314]],[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[3329]],[[3330]],[[3331]],[[3332]],[[3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]],[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]],[[3365]],[[3366]],[[3367]],[[3368]],[[3369]],[[3370]],[[3371]],[[3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377]],[[3378]],[[3379]],[[3380]],[[3381]],[[3382]],[[3383]],[[3384]],[[3385]],[[3386]],[[3387]],[[3388]],[[3389]],[[3390]],[[3391]],[[3392]],[[3393]],[[3394]],[[3395]],[[3396]],[[3397]],[[3398]],[[3399]],[[3400]],[[3401]],[[3402]],[[3403]],[[3404]],[[3405]],[[3406]],[[3407]],[[3408]],[[3409]],[[3410]],[[3411]],[[3412]],[[3413]],[[3414]],[[3415]],[[3416]],[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424]],[[3425]],[[3426]],[[3427]],[[3428]],[[3429]],[[3430]],[[3431]],[[3432]],[[3433]],[[3434]],[[3435]],[[3436]],[[3437]],[[3438]],[[3439]],[[3440]],[[3441]],[[3442]],[[3443]],[[3444]],[[3445]],[[3446]],[[3447]],[[3448]],[[3449]],[[3450]],[[3451]],[[3452]],[[3453]],[[3454]],[[3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462]],[[3463]],[[3464]],[[3465]],[[3466]],[[3467]],[[3468]],[[3469]],[[3470]],[[3471]],[[3472]],[[3473]],[[3474]],[[3475]],[[3476]],[[3477]],[[3478]],[[3479]],[[3480]],[[3481]],[[3482]],[[3483]],[[3484]],[[3485]],[[3486]],[[3487]],[[3488]],[[3489]],[[3490]],[[3491]],[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]],[[3499]],[[3500]],[[3501]],[[3502]],[[3503]],[[3504]],[[3505]],[[3506]],[[3507]],[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]],[[3514]],[[3515]],[[3516]],[[3517]],[[3518]],[[3519]],[[3520]],[[3521]],[[3522]],[[3523]],[[3524]],[[3525]],[[3526]],[[3527]],[[3528]],[[3529]],[[3530]],[[3531]],[[3532]],[[3533]],[[3534]],[[3535]],[[3536]],[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]],[[3546]],[[3547]],[[3548]],[[3549]],[[3550]],[[3551]],[[3552]],[[3553]],[[3554]],[[3555]],[[3556]],[[3557]],[[3558]],[[3559]],[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]],[[3568]],[[3569]],[[3570]],[[3571]],[[3572]],[[3573]],[[3574]],[[3575]],[[3576]],[[3577]],[[3578]],[[3579]],[[3580]],[[3581]],[[3582]],[[3583]],[[3584]],[[3585]],[[3586]],[[3587]],[[3588]],[[3589]],[[3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596]],[[3597]],[[3598]],[[3599]],[[3600]],[[3601]],[[3602]],[[3603]],[[3604]],[[3605]],[[3606]],[[3607]],[[3608]],[[3609]],[[3610]],[[3611]],[[3612]],[[3613]],[[3614]],[[3615]],[[3616]],[[3617]],[[3618]],[[3619]],[[3620]],[[3621]],[[3622]],[[3623]],[[3624]],[[3625]],[[3626]],[[3627]],[[3628]],[[3629]],[[3630]],[[3631]],[[3632]],[[3633]],[[3634]],[[3635]],[[3636]],[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642]],[[3643]],[[3644]],[[3645]],[[3646]],[[3647]],[[3648]],[[3649]],[[3650]],[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[3663]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[3679]],[[3680]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]],[[3703]],[[3704]],[[3705]],[[3706]],[[3707]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712]],[[3713]],[[3714]],[[3715]],[[3716]],[[3717]],[[3718]],[[3719]],[[3720]],[[3721]],[[3722]],[[3723]],[[3724]],[[3725]],[[3726]],[[3727]],[[3728]],[[3729]],[[3730]],[[3731]],[[3732]],[[3733]],[[3734]],[[3735]],[[3736]],[[3737]],[[3738]],[[3739]],[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]],[[3746]],[[3747]],[[3748]],[[3749]],[[3750]],[[3751]],[[3752]],[[3753]],[[3754]],[[3755]],[[3756]],[[3757]],[[3758]],[[3759]],[[3760]],[[3761]],[[3762]],[[3763]],[[3764]],[[3765]],[[3766]],[[3767]],[[3768]],[[3769]],[[3770]],[[3771]],[[3772]],[[3773]],[[3774]],[[3775]],[[3776]],[[3777]],[[3778]],[[3779]],[[3780]],[[3781]],[[3782]],[[3783]],[[3784]],[[3785]],[[3786]],[[3787]],[[3788]],[[3789]],[[3790]],[[3791]],[[3792]],[[3793]],[[3794]],[[3795]],[[3796]],[[3797]],[[3798]],[[3799]],[[3800]],[[3801]],[[3802]],[[3803]],[[3804]],[[3805]],[[3806]],[[3807]],[[3808]],[[3809]],[[3810]],[[3811]],[[3812]],[[3813]],[[3814]],[[3815]],[[3816]],[[3817]],[[3818]],[[3819]],[[3820]],[[3821]],[[3822]],[[3823]],[[3824]],[[3825]],[[3826]],[[3827]],[[3828]],[[3829]],[[3830]],[[3831]],[[3832]],[[3833]],[[3834]],[[3835]],[[3836]],[[3837]],[[3838]],[[3839]],[[3840]],[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]],[[3848]],[[3849]],[[3850]],[[3851]],[[3852]],[[3853]],[[3854]],[[3855]],[[3856]],[[3857]],[[3858]],[[3859]],[[3860]],[[3861]],[[3862]],[[3863]],[[3864]],[[3865]],[[3866]],[[3867]],[[3868]],[[3869]],[[3870]],[[3871]],[[3872]],[[3873]],[[3874]],[[3875]],[[3876]],[[3877]],[[3878]],[[3879]],[[3880]],[[3881]],[[3882]],[[3883]],[[3884]],[[3885]],[[3886]],[[3887]],[[3888]],[[3889]],[[3890]],[[3892,3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]],[[3901]],[[3902]],[[3903]],[[3904]],[[3905]],[[3906]],[[3907]],[[3908]],[[3909]],[[3910]],[[3911]],[[3912]],[[3913]],[[3914]],[[3915]],[[3916]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]],[[3923]],[[3924]],[[3925]],[[3926]],[[3927]],[[3928]],[[3929]],[[3930]],[[3931]],[[3932]],[[3933]],[[3934]],[[3935]],[[3936]],[[3937]],[[3938]],[[3939]],[[3940]],[[3941]],[[3942]],[[3943]],[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]],[[3950]],[[3951]],[[3952]],[[3953]],[[3954]],[[3955]],[[3956]],[[3957]],[[3958]],[[3959]],[[3960]],[[3961]],[[3962]],[[3963]],[[3964]],[[3965]],[[3966]],[[3967]],[[3968]],[[3969]],[[3970]],[[3971]],[[3972]],[[3973]],[[3974]],[[3975]],[[3976]],[[3977]],[[3978]],[[3979]],[[3980]],[[3981]],[[3982]],[[3983]],[[3984]],[[3985]],[[3986]],[[3987]],[[3988]],[[3989]],[[3990]],[[3991]],[[3992]],[[3993]],[[3994]],[[3995]],[[3996]],[[3997]],[[3998]],[[3999]],[[4000]],[[4001]],[[4002]],[[4003]],[[4004]],[[4005]],[[4006]],[[4007]],[[4008]],[[4009]],[[4010]],[[4011]],[[4012]],[[4013]],[[4014]],[[4015]],[[4016]],[[4017]],[[4018]],[[4019]],[[4020]],[[4021]],[[4022]],[[4023]],[[4024]],[[4025]],[[4026]],[[4027]],[[4028]],[[4029]],[[4030]],[[4031]],[[4032]],[[4033]],[[4034]],[[4035]],[[4036]],[[4037]],[[4038]],[[4039]],[[4040]],[[4041]],[[4042]],[[4043]],[[4044]],[[4045]],[[4046]],[[4047]],[[4048]],[[4049]],[[4050]],[[4051]],[[4052]],[[4053]],[[4054]],[[4055]],[[4056]],[[4057]],[[4058]],[[4059]],[[4060]],[[4061]],[[4062]],[[4063]],[[4064]],[[4065]],[[4066]],[[4067]],[[4068]],[[4069]],[[4070]],[[4071]],[[4072]],[[4073]],[[4074]],[[4075]],[[4076]],[[4077]],[[4078]],[[4079]],[[4080]],[[4081]],[[4082]],[[4083]],[[4084]],[[4085,4086]],[[4087]],[[4088]],[[4089]],[[4090]],[[4091]],[[4092]],[[4093]],[[4094]],[[4095]],[[4096]],[[4097]],[[4098]],[[4099]],[[4100]],[[4101]],[[4102]],[[4103]],[[4104]],[[4105]],[[4106]],[[4107]],[[4108]],[[4109]],[[4110]],[[4111]],[[4112]],[[4113]],[[4114]],[[4115]],[[4116]],[[4117]],[[4118]],[[4119]],[[4120]],[[4121]],[[4122]],[[4123]],[[4124]],[[4125]],[[4126]],[[4127]],[[4128]],[[4129]],[[4130]],[[4131]],[[4132]],[[4133]],[[4134]],[[4135]],[[4136]],[[4137]],[[4138]],[[4139]],[[4140]],[[4141]],[[4142]],[[4143]],[[4144]],[[4145]],[[4146]],[[4147]],[[4148]],[[4149]],[[4150]],[[4151]],[[4152]],[[4153]],[[4154]],[[4155]],[[4156]],[[4157]],[[4158]],[[4159]],[[4160]],[[4161]],[[4162]],[[4163]],[[4164]],[[4165]],[[4166]],[[4167]],[[4168]],[[4169]],[[4170]],[[4171]],[[4172]],[[4173]],[[4174]],[[4175]],[[4176]],[[4177]],[[4178]],[[4179]],[[4180]],[[4181]],[[4182]],[[4183]],[[4184]],[[4185]],[[4186]],[[4187]],[[4188]],[[4189]],[[4190]],[[4191]],[[4192]],[[4193]],[[4194]],[[4195]],[[4196]],[[4197]],[[4198]],[[4199]],[[4200]],[[4201]],[[4202]],[[4203]],[[4204]],[[4205]],[[4206]],[[4207]],[[4208]],[[4209]],[[4210]],[[4211]],[[4212]],[[4213]],[[4214]],[[4215]],[[4216]],[[4217]],[[4218]],[[4219]],[[4220]],[[4221]],[[4222]],[[4223]],[[4224]],[[4225]],[[4226]],[[4227]],[[4228]],[[4229]],[[4230]],[[4231]],[[4232]],[[4233]],[[4234]],[[4235]],[[4236]],[[4237]],[[4238]],[[4239]],[[4240]],[[4241]],[[4242]],[[4243]],[[4244]],[[4245]],[[4246]],[[4247]],[[4248]],[[4249]],[[4250]],[[4251]],[[4252]],[[4253]],[[4254]],[[4255]],[[4256]],[[4257]],[[4258]],[[4259]],[[4260]],[[4261]],[[4262]],[[4263]],[[4264]],[[4265]],[[4266]],[[4267]],[[4268]],[[4269]],[[4270]],[[4271]],[[4272]],[[4273]],[[4274]],[[4275]],[[4276]],[[4277]],[[4278]],[[4279]],[[4280]],[[4281]],[[4282]],[[4283]],[[4284]],[[4285]],[[4286]],[[4287]],[[4288]],[[4289]],[[4290]],[[4291]],[[4292]],[[4293]],[[4294]],[[4295]],[[4296]],[[4297]],[[4298]],[[4299]],[[4300]],[[4301]],[[4302]],[[4303]],[[4304]],[[4305]],[[4306]],[[4307]],[[4308]],[[4309]],[[4310]],[[4311]],[[4312]],[[4313]],[[4314]],[[4315]],[[4316]],[[4317]],[[4318]],[[4319]],[[4320]],[[4321]],[[4322]],[[4323]],[[4324]],[[4325]],[[4326]],[[4327]],[[4328]],[[4329]],[[4330]],[[4331]],[[4332]],[[4333]],[[4334]],[[4335]],[[4336]],[[4337]],[[4338]],[[4339]],[[4340]],[[4341]],[[4342]],[[4343]],[[4344]],[[4345]],[[4346]],[[4347]],[[4348]],[[4349]],[[4350]],[[4351]],[[4352]],[[4353]],[[4354]],[[4355]],[[4356]],[[4357]],[[4358]],[[4359]],[[4360]],[[4361]],[[4362]],[[4363]],[[4364]],[[4365]],[[4366]],[[4367]],[[4368]],[[4369]],[[4370]],[[4371]],[[4372]],[[4373]],[[4374]],[[4375]],[[4376]],[[4377]],[[4378]],[[4379]],[[4380]],[[4381]],[[4382]],[[4383]],[[4384]],[[4385]],[[4386]],[[4387]],[[4388]],[[4389]],[[4390]],[[4391]],[[4392]],[[4393]],[[4394]],[[4395]],[[4396]],[[4397]],[[4398]],[[4399]],[[4400]],[[4401]],[[4402]],[[4403]],[[4404]],[[4405]],[[4406]],[[4407]],[[4408]],[[4409]],[[4410]],[[4411]],[[4412]],[[4413]],[[4414]],[[4415]],[[4416]],[[4417]],[[4418]],[[4419]],[[4420]],[[4421]],[[4422]],[[4423]],[[4424]],[[4425]],[[4426]],[[4427]],[[4428]],[[4429]],[[4430]],[[4431]],[[4432]],[[4433]],[[4434]],[[4435]],[[4436]],[[4437]],[[4438]],[[4439]],[[4440]],[[4441]],[[4442]],[[4443]],[[4444]],[[4445]],[[4446]],[[4447]],[[4448]],[[4449]],[[4450]],[[4451]],[[4452]],[[4453]],[[4454]],[[4455]],[[4456]],[[4457]],[[4458]],[[4459]],[[4460]],[[4461]],[[4462]],[[4463]],[[4464]],[[4465]],[[4466]],[[4467]],[[4468]],[[4469]],[[4470]],[[4471]],[[4472]],[[4473]],[[4474]],[[4475]],[[4476]],[[4477]],[[4478]],[[4479]],[[4480]],[[4481]],[[4482]],[[4483]],[[4484]],[[4485]],[[4486]],[[4487]],[[4488]],[[4489]],[[4490]],[[4491]],[[4492]],[[4493]],[[4494]],[[4495]],[[4496]],[[4497]],[[4498]],[[4499]],[[4500]],[[4501]],[[4502]],[[4503]],[[4504]],[[4505]],[[4506]],[[4507]],[[4508]],[[4509]],[[4510]],[[4511]],[[4512]],[[4513]],[[4514]],[[4515]],[[4516]],[[4517]],[[4518]],[[4519]],[[4520]],[[4521]],[[4522]],[[4523]],[[4524]],[[4525]],[[4526]],[[4527]],[[4528]],[[4529]],[[4530]],[[4531]],[[4532]],[[4533]],[[4534]],[[4535]],[[4536]],[[4537]],[[4538]],[[4539]],[[4540]],[[4541]],[[4542]],[[4543]],[[4544]],[[4545]],[[4546]],[[4547]],[[4548]],[[4549]],[[4550]],[[4551]],[[4552]],[[4553]],[[4554]],[[4555]],[[4556]],[[4557]],[[4558]],[[4559]],[[4560]],[[4561]],[[4562]],[[4563]],[[4564]],[[4565]],[[4566]],[[4567]],[[4568]],[[4569]],[[4570]],[[4571]],[[4572]],[[4573]],[[4574]],[[4575]],[[4576]],[[4577]],[[4578]],[[4579]],[[4580]],[[4581]],[[4582]],[[4583]],[[4584]],[[4585]],[[4586]],[[4587]],[[4588]],[[4589]],[[4590]],[[4591]],[[4592]],[[4593]],[[4594]],[[4595]],[[4596]],[[4597]],[[4598]],[[4599]],[[4600]],[[4601]],[[4602]],[[4603]],[[4604]],[[4605]],[[4606]],[[4607]],[[4608]],[[4609]],[[4610]],[[4611]],[[4612]],[[4613]],[[4614]],[[4615]],[[4616]],[[4617]],[[4618]],[[4619]],[[4620]],[[4621]],[[4622]],[[4623]],[[4624]],[[4625]],[[4626]],[[4627]],[[4628]],[[4629]],[[4630]],[[4631]],[[4632]],[[4633]],[[4634]]]}]}},"arcs":[[[82695,52935],[9,-3],[13,0],[19,0],[15,-1]],[[82751,52931],[2,-7],[1,-26],[5,-24],[-9,-14],[-4,-3],[-4,0],[-10,5],[-5,17],[-16,19],[-6,19],[-10,18]],[[84569,45033],[4,1],[14,0],[13,5],[11,8],[18,26],[1,3],[1,5],[2,14],[2,4],[1,1],[18,11],[3,3],[6,15],[10,6],[4,4],[8,4],[8,12],[6,7]],[[84699,45162],[1,-14],[-4,-20],[0,-10],[1,-10],[3,-7],[3,-5],[4,-3],[5,1],[4,3],[7,10],[13,12],[4,7],[0,4],[2,12],[1,3],[2,3],[2,-2],[1,-3],[2,-4],[5,-6],[5,-8],[4,-9],[2,-12],[0,-13],[-4,-37],[0,-6],[1,-6],[1,-3],[0,-3],[-1,-6],[-2,-2],[-7,1],[-3,-1],[-4,-5],[-3,-5],[-2,-3],[-4,0],[-2,2],[-3,8],[-2,3],[-2,1],[-6,1],[-9,-4],[-4,-12],[-1,-17],[1,-21],[2,-10],[2,-7],[6,-12],[6,-8],[2,-4],[0,-4],[0,-9],[0,-4],[6,-21],[2,-9],[2,-36]],[[84738,44852],[-8,-13],[-8,-17],[-4,-24],[-2,-43],[-3,-8],[-26,-36],[-8,-14],[-25,-61],[-3,-21],[-3,-8],[-16,-18],[-10,-16],[-9,-18],[-14,-16],[-5,-13],[-5,-28],[-4,-7],[-3,-10],[-13,-20],[-9,-10],[-11,-4],[-30,2],[-21,-4],[-9,-4],[-3,1],[-5,4],[-3,-1],[-4,-7],[-6,-24],[-3,-5],[-5,-3],[-3,-6],[-1,-8],[-3,-8],[-4,-3],[-24,-8],[-30,-41],[-7,-6],[-3,3],[-3,6],[-6,-1],[-10,-7],[-6,3],[-6,6],[-5,5],[-5,-4],[-7,-6],[-4,2],[-8,15],[-4,2],[-6,1],[-6,-2],[-4,-11],[-2,-4],[-3,-3],[-3,0],[-1,6],[1,6],[4,13],[2,13],[0,11],[0,22],[2,9],[4,10],[9,16],[14,12],[4,6],[2,2],[10,4],[3,2],[23,27],[4,13],[-5,15],[-5,6],[-6,5],[-6,4],[-7,1],[-6,-4],[-9,-15],[-5,3],[-3,9],[0,12],[2,42],[2,9],[11,13],[5,10],[3,11],[1,12],[0,14],[-1,6],[-4,12],[0,8],[0,5],[2,3],[2,2],[1,3],[2,12],[0,54],[2,12],[3,11],[7,11],[9,11],[3,4],[8,24],[2,6],[2,1],[3,1],[3,2],[2,3],[2,7],[2,3],[1,0],[3,-1],[2,1],[9,28],[3,4],[1,4],[13,24],[6,16],[3,7],[5,2],[6,1]],[[84452,44937],[9,-33],[8,-14],[8,-3],[4,4],[5,17],[4,6],[5,4],[3,1],[4,-4],[4,-7],[3,-8],[3,-10],[2,-10],[1,-10],[0,-4],[-1,-11],[0,-3],[1,-8],[0,-1],[1,2],[4,2],[5,1],[5,2],[3,5],[3,8],[0,6],[-1,10],[0,4],[1,5],[3,8],[1,4],[0,18],[2,6],[1,1],[1,0],[3,3],[8,15],[6,15],[1,2],[0,2],[2,6],[1,20],[4,33],[0,12]],[[82657,52933],[-4,-5],[-7,-14],[-3,-3],[-3,1],[-37,27],[0,-3],[1,-6],[1,-3],[2,-4],[2,-2],[2,-2],[1,-6],[-1,-3],[-2,-7],[0,-6],[4,-3],[6,-1],[5,-2],[5,-5],[2,-8],[-2,-8],[0,-6],[3,-2],[3,2],[3,4],[3,2],[3,-2],[26,-55],[4,-6],[9,-4],[5,-4],[3,-7],[-1,-7],[-4,-7],[-6,-2],[-6,4],[-11,15],[-5,4],[-13,2],[0,-4],[8,-2],[7,-7],[7,-11],[5,-10],[4,-4],[4,2],[5,2],[4,2],[2,-2],[8,-11],[2,-6],[14,-30],[1,-7],[1,-5],[-2,-3],[-5,-1],[-16,3],[4,-8],[5,-7],[12,-9],[11,-4],[4,-5],[-1,-11],[-3,-5],[-8,-10],[-3,-6],[-4,-14],[-4,-4],[-27,-6],[-6,3],[-12,11],[-5,2],[-6,6],[-4,12],[-2,14],[-5,16],[0,7],[-1,13],[-1,4],[-3,4],[-6,6],[4,-13],[0,-4],[3,-34],[2,-8],[4,-11],[3,-15],[0,-14],[-4,-11],[-4,1],[-13,12],[-5,3],[-36,-1],[-23,9],[-36,-1],[-9,-8],[-7,-23],[6,9],[8,4],[9,3],[15,0],[9,-3],[4,-8],[-3,-15],[-1,-13],[3,-15],[4,-15],[5,-8],[2,-3],[11,-5],[4,-5],[2,-5],[4,-14],[5,6],[8,1],[9,-2],[6,-5],[2,-1],[2,0],[1,0],[1,-5],[0,-17],[-1,-8],[-1,-7],[-2,-5],[-3,-2],[-3,-3],[-2,-6],[-3,-11],[-2,-4],[-3,-4],[-2,-5],[-1,-6],[-1,-24],[-1,-6],[-4,-8],[-3,1],[-6,11],[-9,7],[-2,1],[-2,-2],[0,-4],[1,-6],[0,-6],[3,-7],[20,-23],[5,-4],[5,-1],[12,0],[6,-2],[1,-7],[-1,-9],[1,-10],[7,-16],[11,-1],[12,2],[11,-5],[4,-5],[1,-4],[0,-4],[2,-5],[1,-7],[-1,-6],[-3,-4],[-3,-2],[-2,-4],[-7,-19],[-3,-5],[4,-3],[6,1],[6,3],[4,5],[5,2],[6,-7],[3,-9],[-1,-5],[-4,-2],[-11,-10],[-5,-3],[-19,-5],[0,-4],[7,0],[20,-8],[27,-4],[-3,-9],[-6,-4],[-7,-4],[-4,-5],[-11,-16],[-2,-7],[4,-8],[11,-8],[12,-3],[10,-5],[9,-16],[2,-9],[1,-12],[2,-39],[1,-11],[3,-10],[3,-8],[11,-21],[4,-12],[27,-51],[3,-6],[3,-13],[2,-5],[5,-26],[3,-10],[2,10],[6,-9],[5,-17],[4,-20],[1,-15],[-3,-10],[-9,-25],[-4,-6],[-19,-10],[-5,-6],[-4,-11],[-1,-12],[-1,-11],[-6,-11],[0,-8],[-9,2],[-15,6],[5,-11],[10,-12],[5,-10],[-11,-7],[-10,-1],[-9,1],[-10,5],[-4,-1],[3,-8],[4,-4],[10,-2],[5,-3],[3,-7],[4,-8],[3,-5],[3,4],[2,0],[0,-25],[-1,-13],[-2,-6],[-2,-4],[0,-7],[2,-6],[2,-4],[3,1],[1,1],[2,-6],[3,-9],[2,-13],[4,-10],[6,-4],[5,-2],[5,-5],[4,-5],[4,-5],[7,1],[3,-1],[1,-5],[0,-8],[-1,-6],[0,-5],[2,-6],[20,-46],[16,-14],[24,-41],[11,-12],[12,-5],[5,-7],[6,-15],[7,-3],[2,-3],[-2,-8],[-4,-7],[-1,-4],[1,-5],[3,-3],[7,0],[3,-3],[0,-4],[1,-15],[1,-5],[2,0],[3,4],[5,-4],[8,-13],[4,-2],[13,-2],[8,-9],[17,-42],[11,-10],[5,-6],[6,-14],[7,-17],[2,-12],[-1,-2],[-2,-1],[-2,-2],[-1,-5],[10,-8],[3,-6],[4,-12],[9,-37],[4,-1],[2,0],[3,1],[1,3],[4,8],[2,1],[5,-1],[15,-11],[4,-6],[1,-6],[0,-7],[-2,-6],[0,-7],[1,-3],[1,-2],[2,-4],[0,-7],[-2,-8],[-9,-16],[-4,-14],[-5,-6],[-21,-20],[-4,-7],[-2,-16],[-4,-7],[-4,-5],[-4,-3],[-4,0],[-3,1],[-3,2],[-6,8],[-7,3],[-3,5],[-5,6],[-7,0],[-6,-4],[-16,-15],[-2,-4],[-3,-2],[-3,2],[-3,4],[-3,2],[-5,2],[-12,10],[-12,1],[-3,-2],[-2,-9],[-2,-4],[-3,-4],[-2,-2],[-5,4],[-3,7],[-3,10],[-4,8],[-4,3],[-36,10],[-16,11],[-9,9],[-8,12],[-7,15],[-4,18],[-7,39],[-4,16],[-4,6],[-11,12],[-2,5],[-1,5],[-3,0],[-3,-3],[-3,-4],[0,-5],[0,-6],[3,-10],[9,-23],[1,-4],[10,-29],[1,-10],[2,-24],[2,-9],[1,-2],[2,-8],[1,-1],[2,-2],[1,-1],[2,-8],[1,-9],[1,-9],[1,-13],[-1,-12],[-3,-6],[-5,-1],[-3,0],[-3,1],[-2,5],[-3,11],[-2,4],[-3,4],[-2,3],[-3,1],[-4,1],[-3,-1],[-2,-3],[-2,-3],[-1,-2],[-10,0],[-5,-3],[-5,-5],[-7,-11],[-12,-31],[-4,-15],[-1,-37],[-2,-9],[-7,-12],[-2,-6],[-1,-6],[-1,-13],[-1,-6],[-16,-37],[-2,-14],[1,-5],[3,-15],[0,-6],[-2,-6],[-3,-4],[-3,-3],[-3,-3],[-5,-11],[-4,-23],[-10,-35],[-1,-6],[0,-3],[1,-3],[2,-5],[0,-12],[-1,-10],[-2,-8],[-6,-13],[-2,-6],[-1,-8],[0,-7],[2,-2],[3,0],[3,-1],[2,-5],[-3,-5],[-6,-4],[-3,-4],[-1,-6],[0,-4],[1,-4],[0,-6],[0,-6],[0,-3],[0,-3],[0,-4],[2,-2],[3,0],[1,-2],[-2,-8],[3,-3],[3,-4],[2,-6],[2,-8],[1,-13],[0,-7],[0,-4],[-1,-2],[-3,-10],[-2,-7],[-3,-6],[-2,-3],[-1,-4],[-4,-22],[-2,-9],[-1,-24],[-1,-12],[-6,-20],[0,-15],[2,-10],[4,-16],[5,-13],[3,-3],[3,1],[0,-10],[-1,-13],[-1,-9],[-6,-14],[-3,-9],[1,-7],[2,-11],[-1,-14],[-3,-12],[-3,-10],[0,-4],[9,9],[34,51],[5,5],[4,-2],[3,-11],[-2,-6],[-4,-6],[-2,-6],[-2,-5],[-9,-6],[-4,-3],[-1,-7],[10,-5],[3,-6],[-1,-23],[-1,-9],[-4,-10],[0,-3],[-1,-1],[-9,-1],[-2,-1],[-2,-3],[0,-4],[5,-3],[5,-2],[3,-4],[-1,-11],[-3,-6],[-4,-5],[-2,-5],[3,-9],[-3,-3],[-3,1],[-8,2],[-4,-2],[-1,-4],[2,-4],[3,-2],[6,-1],[15,-9],[8,-2],[3,-2],[2,-5],[1,-8],[0,-9],[-1,-6],[-2,-3],[-8,-4],[-4,1],[-2,0],[-2,-3],[-4,-7],[-1,-3],[-14,9],[1,-18],[-10,5],[-2,-14],[1,-13],[-2,-7],[-5,-2],[-4,4],[-6,15],[-3,6],[-2,-10],[-3,-14],[-4,-10],[-3,-3],[-1,6],[-1,8],[0,16],[-1,5],[-7,15],[-6,4],[-4,-11],[-2,-18],[-1,-15],[-1,-15],[-5,-9],[-11,-14],[-8,-20],[-28,-83],[-7,-9],[-2,-13],[-1,-15],[-1,-11],[-5,-8],[-6,-8],[-8,-6],[-29,-14],[-6,-1],[-3,3],[-1,8],[1,16],[3,10],[0,5],[-3,3],[-2,-2],[-2,-5],[-2,-9],[-1,8],[0,19],[-2,7],[-11,29],[-1,15],[4,36],[-4,0],[-4,-12],[-2,-16],[-2,-31],[1,-7],[9,-20],[2,-7],[0,-4],[-1,-3],[-1,-6],[-4,-7],[0,-3],[11,-8],[1,-2],[1,0],[1,-1],[1,-3],[0,-3],[0,-3],[-3,-12],[-4,-8],[-1,-6],[2,-27],[-2,-13],[-6,-5],[-6,-2],[-30,-26],[-12,-15],[-8,-21],[0,-26],[2,-9],[2,-6],[2,-7],[1,-12],[-2,-14],[-5,-9],[-6,-7],[-24,-15],[-11,-15],[-13,-7],[-5,-4],[-15,-27],[-2,-8],[-9,-9],[-3,-7],[6,-10],[5,-1],[7,1],[6,3],[3,7],[1,4],[2,3],[6,3],[2,0],[2,-3],[2,-1],[0,1],[2,6],[0,1],[6,1],[6,-1],[5,-6],[2,-12],[-4,-15],[-6,-15],[11,-22],[4,-14],[-4,-30],[3,-37],[-1,-13],[-6,-14],[-3,-6],[-19,-10],[-6,-9],[-7,-12],[-5,-13],[-3,-11],[2,0],[13,14],[9,5],[5,-9],[2,-23],[4,-7],[8,3],[17,17],[5,2],[4,-2],[0,-5],[1,-10],[2,-9],[3,2],[4,5],[4,6],[5,2],[2,-5],[-1,-19],[-8,-82],[-10,-88],[-6,-25],[-10,-4],[-2,8],[-2,12],[-2,12],[-4,5],[-7,1],[-4,-1],[-1,-1],[-3,-5],[-1,-2],[-2,0],[-2,2],[-1,1],[-1,1],[-9,-3],[-3,-1],[-3,-3],[-2,-5],[0,-6],[1,-2],[4,-5],[0,-12],[-7,-24],[4,-4],[8,29],[7,6],[5,-1],[3,-10],[-1,-9],[-6,-26],[-1,-11],[1,-102],[-1,-22],[-4,-20],[-5,-18],[-13,-36],[-6,-11],[-6,-2],[-4,4],[-3,10],[-1,27],[-1,5],[-1,5],[-2,4],[-5,4],[-2,3],[-3,9],[-1,13],[-2,13],[0,12],[-1,5],[-1,0],[-2,-4],[-2,-7],[1,-3],[1,-11],[0,-6],[-2,-13],[-4,-12],[-2,-12],[4,-14],[1,-7],[-2,-6],[-3,-6],[-1,-7],[1,-5],[2,1],[4,4],[8,-3],[2,-7],[0,-9],[3,-12],[4,-8],[17,-26],[4,-10],[-1,-7],[-13,-6],[-11,-9],[-3,3],[-1,-9],[5,-21],[2,-14],[-2,-15],[-4,-5],[-5,-3],[-7,-6],[1,9],[2,6],[2,2],[3,-5],[2,4],[2,5],[1,11],[-4,0],[-9,-7],[-4,-5],[-3,-11],[-4,-25],[-17,-62],[-4,-23],[-3,-53],[-3,-25],[-6,-16],[-5,-3],[-18,0],[-7,-3],[-6,-8],[-11,-22],[-11,-16],[-48,-49],[-75,-61],[-71,-61],[-51,-50],[-45,-59],[-14,-8],[-11,8],[-5,22],[1,26],[6,45],[-5,51],[-2,43],[2,101],[-4,27],[-17,44],[-4,26],[0,26],[8,76],[-6,-6],[-5,-6],[-3,-9],[-4,-62],[-3,-7],[-7,1],[-11,8],[-12,15],[-22,21],[-5,6],[-2,10],[1,11],[2,9],[5,4],[3,6],[6,39],[7,19],[3,8],[1,14],[-11,-22],[-10,-34],[-11,-32],[-17,-13],[-10,2],[-7,6],[-5,12],[-1,20],[5,58],[-1,15],[-2,-5],[-1,-5],[-3,-27],[0,-13],[-1,-3],[-4,-6],[-10,-39],[-18,-17],[-9,-6],[-17,-21],[-20,-15],[-28,-10],[-22,10],[-2,44],[3,24],[2,25],[-1,25],[-6,42],[-2,7],[-5,2],[-24,0],[-6,-2],[-5,-6],[-4,-9],[-2,-13],[-2,-10],[-4,-5],[-16,-4],[-4,2],[-2,7],[0,14],[-2,8],[-2,11],[-4,8],[-4,4],[12,-50],[2,-15],[-15,34],[-4,6],[-8,10],[-4,6],[-3,8],[-2,8],[-2,10],[-2,18],[-2,6],[-5,9],[-7,8],[-8,5],[-8,8],[-18,71],[0,-42],[-1,-9],[-2,-5],[-2,-12],[-3,-6],[-1,0],[-3,1],[-1,-1],[-2,-1],[-2,-5],[-3,-7],[-4,-10],[-2,-12],[2,-11],[3,-8],[2,-3],[3,-4],[3,-1],[6,-1],[3,-2],[0,-3],[-98,-134],[-8,-17],[-6,-4],[-10,5],[-2,-3],[-1,-6],[-2,-4],[-2,-3],[-3,-1],[-6,4],[-37,58],[-12,10],[-13,5],[-27,-9],[-24,-31],[-40,-85],[-12,-20],[-7,-8],[-5,1],[-5,6],[-13,9],[-4,7],[0,13],[6,26],[2,12],[2,37],[0,14],[-8,101],[1,27],[4,50],[-3,25],[-17,66],[-2,23],[0,26],[-1,2],[-2,2],[-2,3],[-1,5],[1,12],[5,16],[0,11],[-4,-5],[-5,-7],[-3,-9],[-1,-9],[1,-27],[1,-8],[-2,-7],[-2,-5],[-3,-3],[-1,-3],[-1,-3],[-1,-3],[-2,-4],[0,-5],[1,-4],[2,-2],[1,-2],[3,-5],[1,-1],[1,-3],[1,-4],[-1,-3],[-3,1],[0,-3],[-12,-8],[-18,-28],[-4,-4],[-5,-2],[-5,4],[-2,9],[-2,11],[-2,8],[-8,14],[-10,7],[-24,4],[-10,-2],[-8,-6],[-66,-74],[-20,-16],[-12,-2],[-10,5],[-23,27],[-5,2],[-10,1],[-5,4],[1,8],[2,10],[3,6],[8,15],[9,9],[10,5],[23,21],[3,0],[-3,13],[-6,-3],[-10,-16],[-5,-4],[-14,-10],[-5,-1],[-5,-5],[-4,-9],[-22,-61],[-10,-11],[-9,16],[-1,7],[2,2],[2,1],[1,5],[-1,6],[-1,14],[-1,12],[-1,14],[-4,24],[-8,20],[-11,5],[-11,-4],[-29,-27],[-29,-46],[-10,-3],[-7,18],[-4,25],[-5,21],[4,11],[5,18],[2,19],[0,17],[-5,26],[-1,24],[-3,19],[0,10],[-3,7],[-10,5],[-3,6],[1,6],[6,13],[1,7],[4,15],[9,-2],[9,0],[5,22],[-10,-12],[-7,4],[-5,14],[-12,43],[-1,10],[0,25],[-4,52],[-3,12],[-3,6],[-4,4],[-2,10],[-1,12],[0,10],[3,26],[4,25],[3,25],[-2,26],[-8,39],[-1,6],[-4,16],[-3,3],[-9,5],[-13,15],[-5,1],[-4,5],[-14,28],[1,2],[3,4],[2,2],[-3,3],[-1,5],[-1,6],[1,6],[3,6],[13,15],[4,3],[3,5],[3,11],[8,39],[1,11],[1,40],[8,75],[0,26],[-2,25],[-5,25],[-4,11],[-5,5],[-7,2],[-6,5],[-5,9],[1,12],[-6,4],[-2,13],[1,16],[3,28],[0,9],[-4,5],[-6,2],[-2,1],[-6,7],[-3,1],[-7,-1],[-3,7],[-4,18],[-7,7],[-3,8],[-4,17],[-5,14],[-2,8],[-1,13],[1,8],[2,6],[3,5],[2,7],[2,8],[-1,2],[-8,-5],[-3,-6],[-1,-9],[-1,-13],[-1,-12],[-3,-8],[-7,-14],[-8,10],[-5,9],[-2,0],[-2,-2],[-3,-1],[-2,5],[-4,32],[-7,10],[-9,9],[-10,6],[-14,4],[-3,-1],[-2,-2],[-2,-6],[0,-4],[2,-4],[1,-6],[-2,-11],[-3,-5],[-4,0],[-5,1],[-11,12],[-2,3],[-2,1],[-10,11],[-3,6],[-8,94],[2,10],[3,6],[4,-1],[6,-9],[4,-6],[19,0],[5,-5],[8,-13],[8,-4],[1,-1],[2,-2],[3,0],[6,4],[3,3],[-1,5],[-3,2],[-7,-2],[-3,2],[-5,16],[-2,5],[-6,8],[-7,6],[-3,1],[-4,1],[-2,2],[0,4],[1,1],[2,3],[-1,2],[-1,4],[-1,2],[0,4],[5,0],[9,-4],[5,0],[0,4],[-7,10],[-7,6],[-8,2],[-19,-1],[-4,-4],[-2,2],[-1,4],[-5,3],[-1,4],[-1,4],[-1,3],[-2,3],[-1,1],[-1,0],[-3,0],[-3,-1],[-2,-2],[-2,0],[-4,5],[-5,12],[-3,7],[-2,10],[-5,53],[-1,24],[0,5],[3,1],[7,-1],[-9,28],[-4,16],[3,13],[0,4],[-3,3],[-4,1],[-2,-2],[0,-10],[-5,6],[-1,9],[1,10],[3,7],[3,3],[4,3],[9,2],[8,-1],[8,-4],[7,-6],[5,-9],[1,0],[-1,9],[-6,13],[-2,7],[-1,7],[1,23],[-1,33],[-2,16],[-5,19],[-1,8],[-1,18],[2,8],[3,0],[7,-6],[28,-8],[-5,10],[-12,18],[-17,29],[-3,3],[-18,78],[-15,26],[-4,3],[-5,2],[-17,3],[-7,8],[-2,15],[3,24],[3,16],[1,9],[0,13],[-2,12],[-7,23],[-1,16],[1,6],[4,13],[1,7],[0,25],[-1,14],[-3,12],[-11,32],[0,5],[2,6],[1,12],[-2,14],[-7,20],[0,13],[2,5],[4,8],[4,8],[4,3],[5,1],[5,5],[3,8],[3,10],[5,25],[0,23],[-15,86],[-1,14],[2,8],[6,4],[11,2],[11,7],[21,17],[10,13],[4,9],[16,42],[3,13],[5,13],[6,9],[0,4],[-7,1],[-4,-9],[-3,-11],[-4,-6],[-4,-6],[-6,-28],[-4,-6],[-1,-4],[-1,-7],[-2,-7],[-3,-3],[-3,-1],[-3,-4],[-5,-7],[-6,-4],[-15,-3],[-7,-5],[1,18],[5,16],[9,27],[4,19],[2,19],[0,68],[3,21],[7,16],[43,64],[6,15],[8,35],[5,15],[5,11],[1,3],[0,1],[1,1],[1,2],[0,4],[-1,2],[-1,0],[-1,0],[-1,-2],[-13,-22],[0,10],[3,7],[4,6],[4,9],[2,10],[0,11],[0,20],[2,20],[5,7],[18,5],[38,20],[5,5],[4,6],[3,8],[8,31],[3,5]],[[80456,51703],[-5,-31],[-7,-28],[-5,-13],[-2,-7],[-11,-19],[-2,-7],[0,-9],[2,-21],[-1,-5],[1,-4],[1,-8],[2,-7],[2,-7],[3,-6],[4,-2],[12,-1],[5,-4],[2,-11],[-2,-47],[0,-27],[2,-11],[3,-12],[5,-15],[25,-45],[2,-6],[0,-17],[2,-1],[5,6],[2,-4],[5,-25],[5,-8],[6,-1],[5,1],[6,0],[5,-5],[3,-10],[5,-35],[4,-12],[3,-7],[10,-10],[5,-10],[6,-23],[6,-9],[6,-5],[16,-4],[5,-6],[4,-12],[6,-25],[14,-43],[1,-14],[1,-12],[3,-2],[3,2],[4,2],[14,-7],[4,-3],[4,-9],[12,-34],[11,-17],[12,-14],[14,-3],[11,12],[3,7],[1,4],[1,2],[3,0],[2,-3],[2,-5],[3,-4],[3,-1],[4,3],[5,11],[3,3],[2,0],[3,-2],[1,0],[6,5],[0,1],[3,4],[1,-1],[3,-5],[2,0],[2,2],[0,5],[0,11],[3,9],[16,28],[7,8],[9,3],[17,1],[62,34],[6,-1],[37,-35],[6,-4],[6,0],[6,2],[11,7],[5,0],[3,-5],[1,-9],[1,-10],[3,-14],[4,4],[6,20],[23,19],[5,1],[5,-1],[7,-4],[14,-13],[8,-5],[17,9],[24,62],[18,12],[22,0],[7,2],[4,4],[2,7],[15,89],[8,37],[1,7],[1,7],[-2,5],[-7,0],[-1,5],[2,15],[5,9],[32,32],[7,5],[17,3],[5,4],[5,8],[4,8],[4,7],[7,3],[83,-9],[7,-5],[2,0],[3,3],[2,5],[2,6],[3,5],[5,4],[4,-1],[5,-4],[5,-2],[14,1],[5,-2],[6,-5],[5,-6],[3,-8],[0,-13],[-2,-14],[-3,-11],[-4,-9],[-9,-14],[-1,-6],[0,-5],[5,0],[10,7],[11,4],[11,-2],[10,-10],[9,-15],[4,-3],[13,-2],[16,-7],[13,-10],[21,-34],[12,-1],[11,10],[6,3],[6,0],[6,-8],[14,-35],[8,-8],[6,3],[45,63],[16,45],[7,11],[5,5],[40,13],[11,1],[10,-7],[3,-5],[3,-7],[2,-6],[4,-2],[3,2],[6,8],[0,1],[42,37],[5,3],[6,-2],[7,-7],[22,-33],[6,-4],[6,3],[5,9],[2,12],[0,13],[-2,12],[0,15],[3,10],[10,16],[4,10],[7,26],[6,31],[3,41],[-1,18],[0,8],[-1,4],[-1,4],[1,7],[2,5],[2,5],[3,5],[3,2],[15,4],[15,13],[4,7],[0,12],[-1,12],[0,10],[1,10],[3,12],[1,8],[0,9],[-2,8],[-2,4],[-7,-2],[-4,-4],[-3,0],[-3,14],[0,5],[0,19],[-1,6],[-3,10],[-1,5],[0,11],[3,32],[4,23],[9,11],[21,6],[8,5],[1,7],[-1,9],[0,13],[2,13],[3,4],[11,-2],[5,7],[12,22],[5,4],[4,6],[11,25],[6,8],[12,2],[6,5],[4,11],[-1,11],[-3,13],[-4,14],[-4,10],[-3,4],[-4,3],[-3,2],[-3,1],[-3,-2],[-6,-6],[-4,0],[-4,9],[1,12],[2,13],[2,12],[-1,6],[-3,12],[-1,5],[2,8],[3,2],[3,1],[3,5],[3,14],[-2,12],[-7,20],[-2,8],[1,2],[2,2],[4,7],[2,7],[1,6],[1,6],[1,7],[4,13],[4,9],[16,23],[3,8],[5,21],[5,15],[4,-2],[7,-23],[8,-8],[8,3],[19,17],[11,3],[5,4],[2,11],[1,25],[2,11],[9,27],[0,5],[-5,3],[-4,11],[0,11],[9,89],[5,27],[6,13],[3,-1],[3,-2],[2,-2],[3,3],[2,5],[-1,7],[-2,12],[-4,17],[-1,8],[0,6],[0,12],[0,6],[-7,36],[-1,14],[0,23],[2,24],[10,69],[0,19],[-4,9],[-5,7],[-5,8],[0,14],[2,4],[10,11],[3,7],[5,23],[3,25],[4,53],[1,10],[2,14],[3,5],[5,4],[2,3],[2,6],[12,23],[2,-2],[2,-5],[3,-3],[4,2],[1,6],[1,8],[11,19],[1,18],[0,19],[2,19],[4,8],[3,1],[3,-5],[1,-9],[3,-9],[5,-3],[12,-2],[7,-5],[3,-4],[2,-4],[1,-10],[2,-9],[3,-8],[4,-3],[4,4],[13,28],[5,7],[3,5],[2,7],[2,13],[3,-4],[3,-1],[7,0],[12,-8],[4,-1],[8,5],[8,9],[7,3],[7,-16],[2,0],[2,0],[2,-1],[1,-3],[1,-7],[7,-26],[3,-3],[3,-1],[3,2],[6,15],[3,0],[4,-3],[4,3],[3,5],[-1,4],[-1,4],[0,6],[2,9],[6,12],[1,8],[4,-1],[12,-38],[3,0],[7,7],[8,-6],[5,1],[5,3],[9,16],[5,-2],[10,-15],[11,-5],[22,9],[11,0],[16,-9],[51,2],[3,3],[4,9],[3,1],[4,-1],[3,-4],[1,-6],[2,-6],[11,-15],[22,-25],[16,-35],[6,-9],[8,-4],[10,-3],[4,-1],[8,1],[4,-3],[3,-5]],[[89159,48930],[0,-19],[0,-104],[-1,-115],[0,-147],[0,-196],[0,-130],[1,-120],[0,-101],[0,-250],[0,-105],[0,-128],[0,-6],[0,-2],[0,-115],[0,-75],[0,-24],[0,-152],[0,-110],[0,-116],[0,-134],[0,-63],[-1,-1],[-2,-7],[-2,-12],[-1,-1],[0,-2],[0,-3],[3,-5],[1,-4],[-1,-6],[-3,-4],[-1,-5],[1,-7],[-3,0],[-3,0],[-3,-2],[-3,-2],[3,-1],[2,-3],[1,-5],[0,-8],[4,1],[2,-9],[-1,-11],[-2,-5],[-4,-1],[-2,-4],[-1,-7],[0,-15],[-1,-3],[-1,-2],[-3,0],[-2,-2],[1,-5],[2,-5],[0,-5],[-4,-6],[-4,-2],[-4,-3],[-3,-9],[4,-4],[0,-11],[-2,-20],[-1,-7],[-1,-5],[0,-6],[2,-6],[6,-11],[2,-7],[-1,-4],[-2,-8],[-1,-3],[1,-6],[2,-5],[5,-9],[2,-9],[0,-13],[2,-8],[7,4],[1,-19],[5,-5],[4,0],[0,-64],[0,-90],[0,-74],[0,-25],[0,-156],[0,-110],[0,-112],[0,-23],[0,-100],[0,-157],[1,-104],[0,-111],[-1,-114],[0,-68]],[[89159,45077],[-12,15],[-3,1],[-18,18],[-65,143],[-32,100],[-15,31],[-2,5],[-19,33],[-3,8],[-1,10],[-3,2],[-14,12],[-10,22],[-4,13],[-61,96],[-12,32],[-4,16],[-1,14],[2,12],[5,10],[7,9],[4,2],[3,0],[3,2],[1,10],[1,21],[-2,20],[-1,15],[2,14],[6,9],[8,-8],[5,6],[6,30],[-4,-4],[-5,-14],[-5,-2],[-7,-1],[-4,-2],[-2,-7],[-2,-26],[-1,-39],[-3,-8],[-5,-9],[-11,-13],[-12,-7],[-45,-1],[-39,-9],[-8,-6],[-15,-18],[-9,-8],[-22,-11],[-11,-2],[-11,1],[-10,5],[-10,11],[-8,15],[-4,21],[0,6],[1,6],[1,7],[1,4],[0,3],[-1,11],[-1,20],[-1,7],[-6,14],[4,3],[5,-4],[5,-3],[5,8],[-12,9],[-7,4],[-4,-7],[1,-7],[1,-12],[0,-6],[1,-1],[3,-1],[1,-2],[1,-4],[-1,-3],[-1,-3],[0,-27],[-7,-13],[-22,-13],[-9,-9],[-32,-57],[-3,-9],[-1,-12],[-1,-3],[-1,-7],[-3,-5],[-2,-3],[-4,0],[-2,2],[-10,43],[-7,21],[-2,13],[-2,14],[2,12],[4,10],[12,5],[5,8],[1,5],[0,6],[-1,5],[-4,5],[0,8],[1,13],[0,51],[2,11],[3,6],[11,5],[8,12],[2,17],[1,48],[8,38],[3,9],[1,5],[1,20],[2,6],[2,6],[4,4],[2,6],[1,22],[-6,16],[-10,10],[-10,4],[-11,1],[-4,6],[-3,28],[-2,13],[-11,39],[-6,15],[-7,13],[-21,29],[-4,5],[-1,4],[-2,4],[-3,2],[-6,1],[-2,1],[-3,2],[-3,6],[-3,8],[0,7],[6,3],[60,-4],[11,-4],[5,-5],[8,-13],[3,-2],[43,-2],[5,4],[4,13],[3,15],[4,13],[7,5],[0,5],[-5,4],[-5,-4],[-6,-15],[-4,-12],[-2,-4],[-4,-2],[-12,0],[-12,-4],[-6,1],[-5,10],[-15,18],[-6,4],[-6,3],[-18,2],[-5,2],[-7,9],[-15,10],[-2,4],[-2,5],[-28,58],[-21,34],[-3,14],[6,17],[4,5],[5,3],[11,0],[6,-2],[11,-10],[7,0],[5,6],[7,15],[4,3],[24,4],[9,5],[4,-1],[3,-1],[5,-6],[3,-1],[5,-5],[8,-26],[6,-5],[8,-15],[1,-4],[3,-2],[6,-4],[4,-5],[2,-2],[4,-1],[12,1],[3,-1],[-4,8],[-6,3],[-7,1],[-3,2],[-2,5],[-13,14],[-19,38],[-9,10],[-12,6],[-19,4],[-5,3],[-4,5],[-15,29],[-6,10],[-13,7],[-5,8],[-3,12],[0,14],[3,15],[6,0],[11,-11],[5,-4],[19,-21],[-34,45],[-8,16],[-13,35],[-3,6],[-5,4],[-38,74],[-13,50],[-2,16],[-5,22],[-1,12],[0,28],[0,9],[-5,28],[-1,10],[-1,9],[-5,12],[-1,8],[-1,9],[-18,57],[-4,19],[3,16],[9,11],[20,8],[8,12],[-5,-1],[-12,-7],[-6,-1],[-32,15],[-7,9],[-1,3],[-1,5],[-1,6],[-4,7],[26,33],[16,14],[15,10],[-5,5],[-7,-1],[-12,-4],[-6,-1],[-6,-2],[-5,-5],[-12,-15],[-5,-4],[-13,-1],[-6,-9],[0,1],[-1,3],[-3,3],[0,5],[0,7],[-1,6],[-3,24],[-1,27],[1,13],[1,9],[3,6],[3,6],[3,3],[3,1],[1,2],[1,6],[-1,2],[-6,5],[-2,1],[-4,6],[0,13],[3,26],[0,15],[-1,6],[-3,3],[0,-9],[-2,-7],[-3,-3],[-4,3],[2,-14],[0,-12],[-2,-6],[-8,4],[-3,5],[-8,23],[-12,26],[-2,15],[5,20],[-6,3],[-14,-23],[-9,0],[-2,2],[-2,4],[-7,20],[-1,2],[1,10],[5,16],[2,11],[-10,-12],[-6,-3],[-5,3],[-5,10],[-2,20],[-4,6],[-3,0],[-2,-3],[-3,-2],[-5,5],[-8,4],[-5,5],[-5,9],[-2,9],[6,6],[0,4],[-4,4],[-2,13],[-3,3],[-2,-3],[-4,-14],[-2,-3],[-4,1],[-3,3],[-5,12],[-2,3],[-3,1],[-1,3],[-1,9],[-9,-5],[-8,4],[-7,9],[-7,12],[3,4],[1,5],[0,6],[0,6],[-1,0],[-4,-8],[-4,5],[-8,19],[1,-13],[-3,-3],[-7,4],[-2,3],[0,9],[4,35],[-1,2],[-13,-19],[-2,-8],[2,-10],[-3,-8],[-14,13],[-5,10],[-1,17],[-9,-20],[-7,11],[-1,10],[2,13],[2,19],[-2,0],[-6,-20],[-9,-12],[-10,-1],[-14,13],[-2,3],[-1,5],[2,6],[3,5],[3,4],[2,3],[-3,6],[-6,-4],[-20,-26],[-6,-5],[-6,-2],[-3,2],[-3,5],[-2,6],[-1,6],[1,10],[-1,2],[-4,2],[-6,1],[-3,-3],[-3,-1],[-13,20],[-19,15],[-25,29],[-20,22],[-7,12],[-2,2],[-5,0],[-3,3],[-8,14],[-5,4],[-25,0],[-25,16],[-8,14],[-1,2],[-6,2],[-4,4],[-4,6],[-4,4],[-5,3],[-3,0],[-4,3],[-6,8],[-12,31],[-6,8],[-10,5],[-24,0],[-10,7],[-4,-5],[-7,-2],[-8,1],[-4,4],[-3,1],[-12,1],[-11,7],[-3,3],[-5,5],[-33,9],[-7,3],[-4,6],[-4,-4],[-15,-4],[-8,2],[-16,-11],[-13,-1],[-11,7],[-63,77],[-5,8],[-2,9],[-2,9],[-6,6],[-7,5],[-5,2],[-11,-4],[-1,0],[-3,3],[-5,9],[-14,21],[-2,4],[-1,6],[-1,22],[-1,4],[-4,3],[-7,1],[-7,2],[-3,8],[2,12],[9,15],[3,12],[-1,5],[-4,7],[-1,4],[0,6],[1,33],[3,8],[4,4],[5,2],[5,-1],[12,-6],[22,-2],[5,-3],[7,-11],[3,-2],[3,2],[2,2],[2,3],[1,2],[6,7],[1,3],[-1,6],[-2,-1],[-2,-5],[-3,-2],[-3,1],[-2,3],[-1,3],[1,1],[-1,1],[0,3],[0,2],[-1,2],[-2,1],[-2,-2],[-2,-2],[-2,-1],[-12,0],[-21,7],[-21,2],[-2,1],[-3,3],[-2,-3],[-1,-6],[-1,-4],[-8,-9],[-3,-5],[-2,-8],[-1,-12],[-2,-8],[-5,-4],[-15,-8],[-2,-3],[-4,6],[-7,15],[-6,7],[4,11],[-3,10],[-5,10],[-3,8],[-2,3],[-4,2],[-7,1],[-4,3],[-12,17],[5,-17],[2,-16],[-3,-11],[-12,0],[0,-4],[4,-4],[3,-6],[2,-8],[1,-9],[-4,-14],[-3,0],[-2,3],[-1,3],[-1,2],[-2,4],[-3,8],[-3,9],[-5,4],[-5,1],[-7,4],[-6,7],[-2,10],[0,6],[-2,10],[0,4],[-1,3],[-3,-3],[-4,-4],[-1,-2],[-2,8],[2,9],[12,19],[2,4],[-1,6],[-5,22],[-3,10],[-4,8],[-5,8],[-2,-5],[1,-5],[0,-4],[1,-7],[-1,-11],[-1,-4],[-3,-7],[-5,-4],[-5,7],[-5,8],[-5,3],[-4,-7],[-7,-24],[-3,-5],[-5,2],[-3,8],[-13,64],[-5,16],[-12,29],[-2,9],[-1,12],[0,12],[-1,4],[-2,2],[-2,-1],[-3,-4],[-2,-4],[-1,-4],[-1,-13],[2,-13],[3,-13],[2,-17],[2,-6],[0,-4],[-4,-2],[-1,2],[-3,18],[-3,6],[-3,7],[-4,5],[-5,2],[-4,-4],[-4,-5],[-4,0],[-2,14],[3,11],[1,5],[-1,7],[-2,11],[-3,16],[-11,35],[-2,13],[0,13],[3,10],[7,4],[5,6],[2,14],[-1,15],[-5,43],[0,43],[2,10],[6,-9],[1,4],[0,5],[1,13],[1,7],[4,-1],[6,-4],[4,9],[3,26],[5,6],[6,4],[7,16],[5,4],[5,-6],[4,-13],[4,-8],[5,7],[-2,2],[-1,3],[-1,4],[0,5],[-1,5],[-2,2],[-3,2],[-2,1],[-2,5],[-3,6],[-1,8],[-1,10],[0,10],[4,17],[1,9],[0,7],[-2,7],[-1,6],[-2,5],[-5,-3],[-5,-1],[-2,-3],[3,-12],[0,-3],[-4,-14],[-2,-16],[-2,-5],[-18,-20],[-4,-7],[-9,-17],[-6,-17],[-3,-40],[2,-102],[-10,-32],[-4,-4],[-15,-7],[-2,1],[-2,5],[-5,22],[-1,3],[-3,2],[0,-4],[2,-11],[0,-16],[-2,-5],[-6,1],[0,-4],[6,-7],[11,-8],[5,-7],[3,-11],[3,-13],[0,-14],[-2,-13],[-2,-8],[-5,-9],[-5,-8],[-6,-3],[-4,-5],[-27,-59],[-3,-20],[3,-26],[9,-16],[4,-12],[0,-10],[-3,-5],[-7,-4],[-2,-4],[-2,-6],[-5,-16],[-33,-76],[-5,-9],[-11,-7],[-13,2],[-23,9],[-8,0],[-5,-6],[-7,-20],[-5,-6],[-6,1],[-14,13],[-2,0],[-1,2],[-2,4],[-1,7],[0,12],[-2,7],[-2,5],[-6,7],[-3,4],[-3,7],[-2,13],[-2,7],[-2,4],[-3,4],[-3,6],[-1,8],[1,5],[3,-2],[5,-9],[0,6],[0,6],[-6,35],[-4,8],[-1,4],[0,20],[0,6],[-15,66],[-1,20],[8,12],[11,-3],[13,-8],[11,2],[2,5],[0,5],[0,5],[-1,5],[1,9],[2,5],[4,9],[4,6],[2,4],[-2,6],[-3,5],[-2,3],[-2,4],[-2,7],[-4,22],[-2,2],[-6,0],[-5,6],[-3,14],[-2,28],[-1,14],[2,37],[-2,13],[-5,6],[-5,1],[-9,-4],[-2,-2],[-2,-3],[0,-8],[3,-13],[-2,-6],[-5,-5],[-6,1],[-6,5],[-4,9],[-2,5],[-4,20],[-2,5],[-7,13],[0,6],[4,4],[4,6],[-1,10],[-2,3],[-7,8],[-1,1],[-3,4],[-2,17],[-1,4],[-2,3],[-1,7],[-2,7],[-3,3],[-2,2],[-5,12],[-2,2],[-3,2],[-3,5],[-1,5],[-2,4],[-31,37],[-7,4],[1,12],[-5,7],[-13,6],[-3,0],[-9,0],[-4,1],[-3,3],[-3,4],[-3,3],[-1,-11],[-4,-6],[-5,0],[-3,6],[-3,-3],[-2,-1],[-2,1],[-3,3],[2,-11],[-3,-3],[-7,1],[-1,4],[-4,20],[-5,-5],[-12,6],[-4,-8],[-2,0],[1,9],[2,4],[2,2],[3,5],[2,6],[2,4],[1,14],[-5,1],[-4,3],[0,4],[4,3],[5,4],[4,7],[2,8],[-2,6],[-7,2],[-13,-1],[-2,2],[4,7],[11,11],[4,0],[5,-2],[4,2],[2,8],[2,-6],[2,-2],[1,4],[-1,8],[2,2],[12,-2],[7,3],[7,5],[-6,5],[-13,-2],[0,9],[3,4],[11,9],[5,0],[4,3],[2,1],[30,0],[4,-2],[12,-11],[4,-1],[9,1],[-2,0],[2,1],[4,-1],[-1,-7],[1,-7],[1,-6],[-3,-8],[4,0],[7,7],[4,1],[0,4],[-2,10],[4,5],[6,1],[4,-2],[2,-6],[5,-1],[6,-1],[5,-2],[10,-14],[16,-36],[11,-7],[3,1],[2,2],[6,8],[2,6],[4,4],[16,25],[5,11],[14,43],[7,11],[6,28],[16,39],[2,11],[5,9],[22,22],[7,4],[2,1],[2,1],[2,2],[1,2],[3,2],[2,-1],[2,-2],[2,-1],[5,2],[7,5],[5,1],[15,-16],[2,-8],[1,-21],[1,-8],[4,5],[4,0],[4,-3],[3,-6],[3,-9],[0,-7],[-1,-16],[0,-51],[-2,-14],[7,0],[1,10],[-2,26],[1,14],[2,15],[7,37],[2,5],[3,-2],[1,-5],[-1,-23],[2,-29],[-1,-14],[-2,-14],[4,3],[2,12],[1,27],[-1,8],[-1,7],[0,8],[1,6],[3,3],[2,-4],[2,-6],[3,-10],[1,-13],[2,-10],[5,2],[0,2],[0,8],[1,3],[2,2],[3,0],[2,0],[5,5],[3,4],[3,8],[2,-5],[2,-1],[2,2],[2,0],[2,-2],[7,-12],[2,-7],[0,-8],[0,-36],[-1,-6],[-1,-7],[4,-28],[3,8],[0,8],[-1,9],[0,12],[1,11],[4,23],[1,12],[0,34],[1,5],[6,-3],[3,-7],[5,-22],[6,-19],[4,-26],[3,-7],[1,3],[1,9],[0,13],[3,37],[-2,6],[0,2],[-4,9],[-1,1],[0,7],[0,6],[1,6],[3,6],[-5,4],[-9,-1],[-5,5],[-3,10],[2,5],[5,1],[5,0],[12,6],[7,1],[3,-5],[1,-6],[8,-14],[2,-6],[2,0],[-3,11],[-6,15],[-3,13],[5,5],[20,-4],[9,2],[5,10],[-16,-1],[-8,2],[-6,6],[-1,8],[14,12],[5,10],[-7,-1],[-12,-7],[-7,-1],[0,4],[12,9],[6,6],[4,10],[2,12],[1,15],[0,15],[-3,11],[-2,-31],[-3,-11],[-6,9],[-2,0],[-8,-14],[-5,-7],[-4,-3],[-5,3],[-4,14],[-3,3],[-1,3],[2,7],[3,7],[10,5],[4,6],[4,8],[1,9],[6,-5],[4,4],[4,8],[5,5],[-1,4],[-4,-4],[-5,-4],[-4,0],[-1,8],[2,2],[6,4],[2,2],[1,4],[0,10],[2,4],[0,7],[-5,1],[-7,-1],[-4,-3],[-1,1],[-3,1],[-3,1],[-1,-3],[-4,-14],[-2,-4],[-2,-2],[-5,-1],[-2,-1],[-8,-10],[-2,-2],[-11,-1],[-4,-3],[-2,-10],[-2,-3],[-5,-4],[-5,-5],[-2,-9],[0,-3],[-2,-2],[-2,2],[-2,3],[-2,2],[-3,-2],[-6,-5],[1,25],[-1,7],[-4,-22],[-4,-11],[-4,-4],[-4,4],[-4,17],[-4,4],[0,-5],[3,-9],[-5,-2],[-6,-1],[-9,-4],[-10,10],[-6,3],[-13,-4],[-6,0],[-4,5],[-2,6],[-6,-1],[-12,-6],[-11,1],[-6,-1],[-10,-13],[-6,-3],[-13,-1],[-13,-6],[-11,-10],[-10,-7],[-12,3],[-17,18],[-7,2],[-6,-2],[-6,-7],[-20,-27],[-3,-1],[-2,3],[-2,4],[-1,4],[-3,2],[-6,5],[-3,12],[-2,15],[-2,12],[-3,6],[-5,6],[-7,3],[-5,-4],[-5,-7],[-19,-7],[-19,-24],[-11,-8],[-11,3],[-7,9],[-5,13],[-3,14],[-5,13],[-6,10],[-39,36],[-7,13],[-1,14],[2,4],[8,9],[2,5],[1,8],[3,5],[7,5],[-8,-1],[-12,-9],[-8,-2],[-6,21],[-6,6],[-3,5],[-1,7],[1,6],[1,6],[0,7],[-1,5],[-2,2],[-2,1],[-2,2],[-2,5],[-1,7],[1,20],[-1,7],[0,6],[-3,13],[6,7],[4,9],[3,11],[4,9],[5,8],[3,6],[1,9],[-1,14],[0,-1],[0,-1],[1,1],[0,5],[-6,-1],[-9,-11],[-11,-6],[-3,0],[-2,2],[-3,8],[0,3],[2,4],[0,3],[-2,3],[-1,3],[-2,3],[-1,3],[2,25],[1,5],[4,7],[1,4],[2,2],[8,4],[1,2],[6,13],[2,5],[-5,0],[-16,-16],[-8,-4],[3,10],[-2,3],[-3,-1],[-3,-4],[-11,-23],[-4,-5],[-2,15],[2,19],[1,17],[-5,14],[-1,-17],[-1,-13],[-4,-9],[-6,-6],[-7,1],[-4,9],[-1,13],[5,10],[-5,4],[-6,-2],[-5,-5],[-5,-2],[-5,3],[-5,6],[-6,14],[-5,4],[-6,2],[-8,0],[-2,1],[-2,2],[-2,1],[-3,0],[-3,-2],[-3,-3],[-1,-5],[1,-6],[-3,-3],[-3,-1],[-3,1],[-2,3],[-6,16],[-2,2],[-1,3],[-2,3],[0,3],[2,7],[2,7],[-2,8],[-3,7],[-3,5],[-9,-6],[-5,2],[-13,16],[-1,-11],[5,-10],[12,-18],[1,-8],[-4,-9],[-5,-9],[-4,-4],[-9,-4],[-9,-11],[-6,-5],[-2,2],[-1,15],[-2,6],[-3,5],[-3,4],[-11,10],[-11,1],[-23,-3],[-7,2],[-5,4],[-3,8],[0,12],[1,5],[9,8],[4,7],[1,4],[7,44],[0,8],[0,5],[3,2],[1,3],[4,12],[5,6],[22,7],[7,5],[2,6],[4,26],[8,22],[2,5],[1,7],[4,15],[1,10],[-2,21],[1,8],[4,6],[-1,10],[1,22],[-2,12],[2,2],[6,7],[-11,25],[-5,15],[3,16],[24,16],[12,3],[4,3],[3,10],[8,4],[3,3],[3,2],[11,2],[2,4],[2,4],[4,1],[4,-1],[3,-2],[-6,-15],[-1,-7],[0,-6],[4,1],[6,4],[5,4],[2,5],[3,3],[53,22],[23,16],[3,1],[3,5],[6,28],[12,27],[8,13],[7,9],[14,10],[4,2],[2,5],[4,24],[2,7],[15,21],[4,2],[9,10],[11,8],[9,10],[5,2],[7,1],[23,15],[11,4],[67,-13],[9,5],[54,-55],[6,-2],[3,2],[6,7],[5,-2],[1,-4],[0,-5],[1,-6],[4,-6],[10,-10],[4,-6],[2,-2],[4,0],[6,0],[1,-2],[3,-8],[2,-2],[3,-1],[6,1],[3,0],[37,-58],[7,-15],[3,-14],[3,-7],[12,-16],[3,-4],[47,-12],[1,-1],[1,-1],[2,-2],[2,0],[1,8],[2,3],[2,3],[2,1],[3,-5],[4,-5],[7,-3],[25,-2],[3,3],[-2,9],[3,6],[4,2],[4,-1],[4,-3],[2,-2],[5,-10],[2,1],[4,2],[16,5],[11,-1],[4,2],[4,3],[5,-6],[17,-36],[3,-5],[6,-3],[3,-3],[3,-4],[4,-11],[3,-5],[8,-7],[2,-3],[0,-7],[-6,-4],[-17,-4],[-4,-3],[-2,-8],[0,-14],[-2,-10],[-4,-2],[-3,-4],[12,-52],[3,-10],[2,-5],[1,-13],[1,-6],[3,-7],[4,-19],[4,-11],[5,-10],[5,-8],[4,-4],[3,-5],[18,-70],[4,-12],[-12,-39],[-3,-12],[0,-24],[-2,-40],[-2,-9],[-2,-8],[-15,-33],[-4,-5],[-4,-9],[-2,-2],[-3,-1],[-3,-3],[-2,-5],[0,-7],[0,-8],[4,-24],[12,-120],[1,-45],[0,-6],[0,-2],[1,-3],[1,-3],[-1,-4],[-1,-1],[-2,1],[-1,0],[-1,-2],[-4,-38],[0,-13],[1,-6],[5,-5],[2,-5],[1,-8],[-1,-5],[0,-6],[0,-7],[0,-13],[4,-19],[1,-11],[-1,-13],[-1,-5],[1,-7],[4,-9],[1,-5],[1,-10],[2,-10],[3,-10],[4,-8],[11,-19],[4,-14],[3,-9],[5,-7],[3,-4],[2,-4],[3,-10],[2,-12],[2,-20],[5,-25],[0,-10],[5,-11],[3,-16],[3,-38],[2,-6],[3,-6],[3,-8],[3,-17],[6,-28],[0,-4],[7,0],[5,5],[7,11],[-1,7],[-2,26],[-2,5],[-3,12],[-1,7],[0,8],[0,16],[0,9],[-1,7],[-4,15],[-1,6],[-1,17],[0,15],[1,14],[2,11],[3,13],[4,6],[12,9],[-3,3],[-2,5],[0,5],[3,4],[3,-1],[6,-9],[2,-3],[5,-2],[5,-6],[5,-7],[2,-9],[3,-22],[3,-156],[0,-7],[9,-71],[7,-17],[13,5],[15,38],[7,8],[3,-23],[-3,-38],[-1,-9],[-2,-3],[-1,-1],[-2,-3],[-1,-5],[-1,-7],[1,-20],[-3,-22],[1,-9],[9,-7],[3,-8],[1,-25],[1,-3],[1,-2],[0,-3],[1,-8],[-1,0],[2,-7],[1,-4],[4,-8],[4,-3],[5,4],[9,14],[0,-7],[-2,-12],[0,-6],[1,-3],[4,-9],[3,-17],[5,-4],[12,1],[6,-2],[8,-12],[4,-2],[46,-4],[5,-2],[8,-9],[5,-2],[6,2],[11,9],[19,5],[5,4],[5,5],[4,7],[12,27],[1,5],[1,7],[1,7],[-1,6],[0,4],[8,22],[11,16],[22,17],[9,12],[4,12],[-1,5],[-3,5],[-2,8],[1,5],[1,4],[1,4],[3,2],[0,1],[1,2],[2,0],[6,-4],[5,7],[7,18],[13,7],[6,8],[4,12],[3,14],[0,9],[-3,22],[1,7],[7,16],[2,8],[1,10],[0,27],[1,3],[7,11],[2,4],[3,-1],[3,23],[4,6],[3,1],[2,2],[3,3],[1,5],[1,4],[3,3],[7,3],[25,22],[11,17],[8,21],[3,12],[1,12],[2,42],[2,10],[2,7],[9,22],[2,9],[2,10],[-1,7],[-1,12],[-1,18],[1,3],[2,7],[3,12],[6,11],[6,8],[7,5],[15,0],[3,3],[8,9],[3,1],[1,-6],[-1,-8],[0,-8],[3,-3],[7,-1],[7,-2],[2,-8],[1,-1],[2,1],[4,2],[2,1],[3,-1],[11,-7],[6,13],[3,-1],[6,-6],[3,-2],[3,2],[2,4],[1,4],[2,2],[8,3],[2,2],[15,21],[16,7],[4,2],[1,5],[1,7],[1,6],[9,9],[11,5],[37,4],[6,3],[5,6],[9,13],[2,8],[-3,13],[-6,12],[-3,9],[1,3],[3,4],[1,8],[0,9],[-1,8],[-3,3],[-8,6],[-3,3],[-15,24],[3,8],[1,12],[0,27],[2,7],[5,6],[58,46],[32,40],[6,6],[1,2],[2,5],[3,10],[2,2],[5,1],[72,68],[13,7],[12,1],[12,-8],[2,-5],[6,-15],[3,-3],[5,-11],[1,-3],[4,-1],[3,-2],[12,-28],[5,-7],[12,-4],[31,-19],[36,-36],[47,-29],[19,-6],[7,-5],[12,-7],[20,-32],[19,-46],[11,-17],[5,-4],[18,0],[6,-2],[44,-31],[49,-65],[28,-20],[15,-18],[5,-2],[3,-3],[13,-22],[46,-36],[28,-37],[12,-7],[11,-3],[54,10],[8,7],[3,12],[2,2],[5,-4],[6,-9],[2,2],[0,9],[2,1],[2,-2],[1,-4],[0,-5],[1,-5],[10,-32],[5,-2],[17,-15],[6,-9],[6,-6],[5,8],[3,-4],[3,1],[2,4],[2,7],[-1,6],[-4,4],[-1,4],[4,6],[3,-1],[26,-21],[5,-2],[30,-2],[34,-31],[4,-4],[0,-11],[-1,-19],[-2,-9],[-10,-26],[2,-5],[2,-6],[3,-4],[3,-1],[2,5],[0,6],[0,7],[3,2],[1,-1],[5,-9],[3,-2],[3,1],[6,5],[3,2],[26,0],[12,4],[3,1]],[[81498,45467],[3,-3],[2,-9],[0,-8],[-1,-3],[-4,-1],[-7,-4],[-22,0],[-3,4],[-1,9],[1,9],[4,6],[-1,5],[-1,4],[14,-7],[16,-2]],[[84206,45480],[7,-3],[3,-8],[-1,-10],[-4,-8],[-11,-7],[-24,-3],[-8,-10],[-15,-46],[-6,-11],[-5,-2],[-3,2],[-6,13],[8,40],[25,39],[2,1],[3,-2],[3,-1],[4,1],[8,7],[4,0],[5,-1],[3,1],[2,2],[5,5],[1,1]],[[85619,45583],[2,-7],[-2,-6],[-3,-3],[-4,-2],[-7,-2],[-8,0],[-8,3],[-5,3],[-2,3],[-3,4],[-1,5],[1,6],[2,7],[1,7],[2,5],[3,3],[6,-5],[8,3],[7,6],[6,1],[2,-6],[2,-18],[1,-7]],[[85841,45609],[2,-8],[-1,-9],[-2,-9],[-3,-6],[-3,-1],[-3,1],[-4,4],[-4,6],[-5,5],[-2,-3],[-3,-5],[-4,-3],[-8,6],[-10,13],[-5,14],[7,8],[9,5],[26,-5],[2,-2],[11,-11]],[[85483,45638],[5,-9],[3,-12],[-1,-11],[-6,-5],[-6,-2],[-10,-8],[-5,-2],[-6,3],[-8,14],[-4,3],[22,31],[5,2],[6,-1],[5,-3]],[[82684,45644],[2,-3],[3,-3],[2,-4],[1,-6],[0,-5],[-2,-3],[-5,-6],[-8,-15],[-5,-17],[-15,-66],[-4,-8],[-6,-4],[-2,2],[-9,12],[-2,7],[0,4],[3,8],[4,20],[0,9],[-3,9],[-3,5],[-1,1],[-1,3],[0,24],[0,8],[1,8],[2,4],[15,16],[5,2],[28,-2]],[[85337,45716],[3,-7],[1,-9],[1,-10],[0,-9],[-3,-13],[-6,-2],[-14,9],[0,4],[2,6],[-1,18],[1,8],[3,7],[5,3],[4,-1],[4,-4]],[[86417,45952],[4,5],[2,1],[2,-3],[-4,-24],[-3,-11],[-4,-6],[-12,5],[-4,-2],[2,-15],[-16,1],[-4,6],[3,17],[2,5],[3,4],[3,2],[8,2],[4,3],[4,4],[3,5],[0,-2],[1,-1],[2,0],[1,0],[3,4]],[[86379,46008],[3,-1],[2,-3],[1,-3],[-1,-4],[-2,-2],[-1,3],[-2,3],[-3,2],[-1,-1],[-3,-6],[-1,-1],[-11,1],[-12,4],[-3,3],[-1,8],[1,9],[4,16],[1,-2],[9,-14],[3,4],[4,-2],[4,-5],[3,-2],[9,4],[2,-2],[-5,-9]],[[86437,46085],[0,-2],[1,-2],[1,-3],[-5,-5],[-11,-25],[-3,-3],[-3,-3],[-2,-3],[-2,-10],[-3,-3],[-3,-2],[-3,-1],[0,5],[2,2],[1,2],[1,8],[-7,0],[-6,-3],[-6,-1],[-4,8],[-1,10],[2,10],[3,9],[4,5],[3,2],[2,-1],[4,-2],[5,0],[16,4],[4,3],[4,1],[2,1],[0,1],[1,0],[3,-2]],[[86467,46129],[2,7],[2,-1],[0,-5],[0,-5],[-1,-3],[-7,-9],[2,-8],[-14,5],[-3,3],[2,3],[2,4],[4,9],[4,15],[2,4],[1,-3],[3,-12],[1,-4]],[[83599,46157],[17,1],[8,-3],[5,-10],[-3,-11],[-9,-6],[-9,-1],[-4,4],[-4,7],[-17,6],[-6,5],[-4,-4],[-7,-1],[-7,1],[-4,4],[-2,5],[0,5],[0,5],[2,4],[4,4],[5,-2],[10,-8],[25,-5]],[[83543,46279],[4,10],[3,2],[1,-10],[-1,-9],[-3,-16],[0,-9],[-8,-3],[-11,1],[-6,6],[0,-9],[-3,-7],[-11,11],[-3,14],[1,9],[-7,-3],[-5,4],[-5,-2],[-2,13],[3,3],[7,-7],[6,6],[2,15],[-1,13],[1,14],[4,-5],[5,-2],[7,-20],[14,-14],[4,-4],[4,-1]],[[88542,46455],[1,-7],[7,-14],[1,-9],[-1,-5],[-4,-7],[-6,-8],[-5,-3],[-4,2],[-2,4],[-3,1],[-4,5],[-3,23],[-3,5],[-3,2],[-3,6],[-4,12],[-2,11],[0,12],[3,5],[4,-6],[6,-12],[4,-5],[5,-1],[10,-2],[4,-3],[2,-6]],[[86554,46514],[6,-2],[3,-7],[-1,-9],[-6,-10],[-6,4],[-4,-7],[-1,-12],[7,-9],[-2,-9],[-5,-8],[-4,-3],[-6,12],[2,25],[8,25],[9,10]],[[87418,46568],[3,-4],[3,-6],[2,-7],[0,-8],[-2,-20],[-2,-11],[-2,-8],[-3,-7],[-7,-21],[-1,-8],[-2,-9],[-4,2],[-9,13],[2,7],[1,5],[-1,10],[1,6],[9,29],[3,24],[2,6],[1,5],[3,2],[3,0]],[[87390,46667],[-1,-12],[-4,-8],[-10,-11],[3,-11],[-1,-14],[-5,-8],[-9,9],[-2,8],[-2,9],[-1,8],[0,6],[-1,4],[-7,18],[-3,0],[-4,-2],[-3,1],[-1,7],[-2,5],[-16,16],[-2,4],[-1,7],[1,6],[1,5],[3,5],[2,3],[4,5],[1,2],[4,10],[2,3],[2,3],[3,2],[2,1],[2,-1],[2,-1],[3,-5],[9,-11],[3,-4],[6,-17],[5,-8],[5,-3],[3,-4],[4,-7],[4,-10],[1,-10]],[[87455,46746],[4,2],[5,-2],[3,-7],[1,-9],[-1,-13],[-2,-11],[-4,-21],[-7,-41],[-3,-8],[-4,5],[-4,8],[-1,6],[3,6],[0,4],[-3,13],[1,19],[5,15],[5,2],[0,18],[0,9],[2,5]],[[87326,46766],[3,-2],[2,-4],[4,-5],[4,-1],[0,-4],[-7,-2],[-5,-9],[-4,-10],[-5,-8],[-3,-1],[-1,2],[0,5],[-2,7],[-6,12],[-4,5],[-1,-3],[-3,5],[-12,22],[-4,18],[-4,8],[-6,-6],[-6,5],[1,8],[4,9],[3,10],[-1,10],[-4,-1],[-8,-13],[-6,21],[-2,27],[3,25],[8,17],[0,-25],[2,3],[13,10],[3,1],[2,-3],[3,-20],[1,-6],[1,-2],[2,3],[6,6],[-2,-9],[-5,-12],[-3,-8],[-1,-12],[3,-8],[4,-8],[4,-12],[4,2],[4,-6],[9,-30],[3,-2],[5,0],[-3,-7],[1,-2],[6,0]],[[80529,45828],[-7,-4],[-10,5],[-10,8],[-16,6],[-27,18],[-47,12],[-11,-6],[-6,-1],[-2,5],[-1,4],[-2,2],[-1,1],[-2,3],[0,4],[2,6],[0,3],[-2,2],[-8,6],[-47,10],[-28,5],[-14,-8],[-4,-11],[-3,-7],[-2,-1],[-8,15],[-3,3],[-4,1],[-6,1],[-6,2],[-4,4],[-4,6],[-2,28],[-2,13],[-4,-2],[-2,-3],[-7,-7],[-2,-5],[-4,-12],[-2,-3],[-3,-6],[-7,-11],[-8,8],[-1,2],[-2,3],[-3,3],[-2,0],[-4,-4],[-2,-6],[-3,-5],[2,-11],[-1,-6],[-1,-1],[-6,3],[-1,14],[-2,3],[-4,1],[-18,-1],[-6,-3],[-9,-16],[-1,-26],[-2,-17],[-12,-16],[-35,1],[-52,18],[-52,28],[-13,1],[-11,-4],[-10,9],[-1,17],[-5,9],[-8,3],[-18,5],[-8,6],[-2,13],[-5,15],[-10,10],[-9,16],[-10,5],[-8,8],[-13,6],[-3,13],[-5,3],[-6,3],[-1,-1],[-2,2],[-2,6],[-14,-5],[-18,4],[-14,4],[-10,3],[-9,5],[-9,6],[-11,6],[-65,11],[-23,1],[-50,11],[-24,4],[-12,21],[-6,5],[-7,3],[-7,-8],[-3,-2],[0,11],[0,15],[-6,14],[2,26],[-1,12],[2,10],[3,13],[5,12],[5,5],[5,0],[4,2],[2,6],[-5,12],[5,10],[11,29],[8,15],[0,22],[-1,20],[-7,12],[-9,-2],[-8,7],[-8,-5],[-5,-17],[-1,-1],[-6,-4],[-7,-1],[-6,1],[-4,2],[-2,3],[-2,2],[-4,1],[-2,2],[-2,8],[-2,2],[-4,1],[-1,3],[0,4],[-2,4],[-1,3],[-10,16],[-10,-1],[-12,12],[-20,35],[-12,9],[-8,2],[-6,0],[-5,-2],[-6,-2],[-5,-3],[-1,-8],[-3,-3],[-3,8],[-6,-2],[-8,-1],[-9,-3],[-5,-3],[-5,3],[-9,4],[-6,1],[-29,-7],[-12,-4],[-5,-10],[-11,7],[-3,-4],[-4,8],[-3,5],[-5,1],[-1,-2],[-3,-4],[-2,-2],[-2,2],[0,4],[-2,5],[-1,4],[-2,1],[-11,10],[-13,1],[-2,-2],[-2,-11],[-1,-5],[-2,-3],[-3,-2],[-5,5],[-2,10],[-4,22],[-3,5],[-2,4],[1,5],[2,1],[9,-3],[4,3],[5,8],[8,17],[2,10],[2,11],[3,8],[5,4],[3,-3],[4,-7],[3,-8],[2,-7],[1,-7],[0,-6],[0,-6],[7,-24],[1,-9],[4,-9],[5,-4],[5,4],[3,11],[5,28],[3,12],[22,43],[4,11],[1,10],[-2,49],[7,30],[3,5],[6,-1],[1,-22],[5,-5],[3,-8],[8,2],[12,11],[7,21],[5,25],[-1,20],[3,102],[2,22],[8,48],[6,24],[19,42],[2,4],[3,5],[6,39],[6,15],[9,7],[9,-3],[6,-15],[2,-38],[1,-6],[3,-3],[9,-11],[5,-3],[9,9],[6,19],[7,15],[12,-2],[17,-29],[7,-4],[6,-2],[17,-18],[7,0],[5,6],[4,7],[6,4],[32,-1],[6,-3],[6,-5],[4,-6],[2,-10],[1,-6],[0,-5],[2,-10],[4,-7],[11,-5],[12,1],[42,13],[2,1],[3,4],[1,11],[1,7],[1,7],[-3,9],[-2,6],[2,9],[6,18],[-2,20],[7,6],[10,-4],[9,-10],[3,-6],[3,-8],[4,-7],[6,-4],[5,0],[4,2],[21,13],[11,-4],[10,-8],[7,-20],[9,-32],[9,-24],[7,-25],[11,-11],[15,-12],[16,-2],[9,-22],[7,-8],[6,7],[4,-5],[5,2],[3,5],[7,6],[1,3],[3,2],[3,-2],[2,-2],[3,0],[0,6],[0,7],[4,3],[6,-4],[0,-8],[4,-1],[4,9],[2,3],[3,-14],[0,-12],[15,-19],[12,-11],[16,-17],[7,-5],[5,-5],[6,0],[4,0],[4,2],[4,7],[7,9],[1,1],[2,4],[3,7],[1,8],[-1,7],[-2,6],[-3,5],[3,2],[5,-6],[9,-5],[18,-1],[5,-8],[2,7],[6,2],[1,-15],[3,-40],[23,-60],[5,-6],[4,-3],[14,-18],[10,-108],[8,-55],[16,-3],[12,-17],[12,-10],[12,1],[12,14],[2,-6],[5,-3],[5,-1],[3,-3],[2,-3],[2,-5],[2,-7],[4,-6],[6,-3],[6,1],[4,4],[2,8],[1,13],[2,10],[6,0],[6,-4],[3,-3],[11,-18],[6,-4],[8,-11],[2,0],[7,0],[49,-11],[24,9],[15,35],[11,-20],[54,-17],[47,-32],[12,-3],[12,0],[36,11],[7,4],[3,6],[1,3],[5,13],[2,2],[3,-2],[1,-6],[1,-6],[1,-6],[4,-6],[13,-12],[9,-6],[12,-18],[6,-7],[7,-1],[5,4],[4,6],[5,3],[6,1],[5,3],[4,5],[11,25],[13,35],[20,88],[3,26],[2,22],[0,25],[2,11],[2,7],[1,7],[-3,13],[6,3],[3,4],[4,14],[4,5],[14,12],[7,3],[3,2],[4,4],[3,2],[17,4],[6,4],[2,-4],[8,-10],[3,-2],[5,-1],[3,1],[1,2],[2,4],[2,-3],[2,-5],[0,-2],[4,-6],[3,-5],[2,-8],[2,-23],[4,-21],[11,-62],[5,-22],[2,-3],[1,-1],[2,1],[52,-13],[6,1],[12,6],[6,1],[4,6],[9,29],[5,10],[7,-10],[16,-6],[9,-8],[3,-6],[9,-25],[5,-10],[7,-13],[6,-9],[6,-7],[19,-10],[11,-3],[5,-2],[5,-1],[6,5],[9,10],[6,3],[5,-3],[9,-20],[16,-45],[5,-7],[6,-3],[12,0],[12,4],[9,7],[3,1],[12,0],[5,2],[12,8],[6,2],[10,-4],[5,-3],[2,2],[2,3],[1,2],[6,-3],[4,-7],[4,-8],[4,-6],[6,-4],[6,0],[4,6],[2,12],[-1,8],[1,4],[1,1],[4,-3],[2,-3],[2,-6],[1,-6],[1,-5],[0,-13],[-5,-23],[-1,-15],[1,-6],[7,-20],[2,-4],[3,-3],[4,4],[4,1],[2,-10],[-9,-6],[-4,-4],[-2,-5],[1,-7],[2,-10],[3,-9],[3,-4],[4,-4],[5,-10],[2,-12],[-1,-11],[-4,-4],[-17,4],[5,-13],[7,-9],[15,-15],[4,10],[4,11],[4,9],[7,3],[4,-4],[4,-7],[3,-10],[4,-16],[1,-9],[0,-9],[-2,-22],[-1,-10],[0,-24],[-2,-12],[-11,-15],[-2,-10],[0,-48],[23,-37],[35,-32],[5,-3],[8,0],[5,-2],[6,-4],[5,-10],[10,-20],[6,-9],[9,-5],[6,-5],[4,-2],[2,1],[6,3],[3,1],[6,-6],[6,-19],[4,-4],[7,2],[5,5],[10,13],[10,11],[6,4],[6,2],[4,3],[9,10],[7,2],[36,-11],[3,1],[6,5],[3,2],[6,-1],[11,-9],[6,-2],[5,3],[4,6],[6,15],[5,5],[4,0],[4,-3],[7,-2],[6,1],[4,4],[19,35],[9,4],[8,-11],[11,-30],[7,-12],[9,-7],[6,-1],[12,7],[6,1],[4,-3],[10,-20],[4,-6],[3,-2],[3,-1],[7,1],[3,0],[2,-3],[5,-9],[11,-12],[4,-9],[2,-13],[-1,-13],[-1,-25],[-1,-4],[-4,-11],[-1,-7],[0,-7],[1,-5],[1,-4],[0,-4],[0,-28],[-12,-86],[-10,-118],[-1,-17],[-2,-13],[0,-6],[1,-7],[3,-13],[1,-27],[0,-13],[4,-5],[3,7],[1,15],[1,26],[4,-10],[2,-19],[-1,-39],[2,-12],[4,-12],[4,-9],[5,-4],[5,0],[4,-2],[7,-10],[14,-11],[3,-7],[1,-8],[4,-7],[3,-9],[-1,-15],[-7,-20],[-12,-2],[-24,18],[-6,2],[-16,-2],[-6,4],[1,9],[6,15],[-2,21],[-10,19],[-13,13],[-11,0],[-12,-15],[-6,-5],[-3,6],[-4,9],[-7,-2],[-12,-9],[-3,0],[-10,4],[-2,3],[-3,11],[-2,2],[-6,-3],[-5,-5],[-4,-1],[-3,9],[0,6],[1,9],[1,7],[-3,3],[-3,-1],[-6,-6],[-3,-2],[-4,2],[-8,5],[-7,6],[-4,8],[-2,-3],[-1,-1],[0,-1],[-1,-4],[-1,9],[-2,20],[-2,4],[-4,-1],[-5,-3],[-4,-5],[-1,-5],[-1,-2],[-3,0],[-5,0],[-1,2],[1,10],[-1,4],[-3,5],[-3,0],[-3,-2],[-4,1],[-4,6],[-5,15],[-3,4],[-9,3],[-2,3],[-3,8],[-2,2],[-9,-3],[-3,1],[-11,12],[-2,4],[-1,4],[-2,8],[-1,2],[-6,2],[-5,-5],[-4,-4],[-5,5],[-14,34],[-6,9],[-12,10],[-11,7],[-12,2],[-35,-9],[-13,-6],[-10,-13],[-14,-34],[-10,-13],[-9,7],[-4,-1],[-6,10],[-1,-3],[-1,-5],[-3,-4],[-2,-1],[-3,2],[-2,4],[-2,1],[-4,-5],[-4,-8],[-2,-3],[-4,-2],[-5,-1],[-4,-2],[-3,-5],[-5,-10],[-4,6],[-13,12],[-10,4],[-15,11],[-22,0],[-4,2],[-4,5],[-4,5],[-6,0],[1,6],[1,2],[-5,9],[-7,6],[-7,2],[-6,0],[-3,-2],[-7,-6],[-4,0],[-2,3],[-1,2],[-2,3],[-5,3],[-51,11],[-6,5],[-9,11],[-2,0],[-7,-10],[-2,-2],[-1,-2],[-2,0],[-6,3],[-6,14],[-5,3],[-7,-1],[-3,1],[-3,2],[-3,4],[-2,1],[-3,-3],[-3,-12],[0,-12],[0,-9],[-6,-4],[-1,4],[-1,7],[-2,7],[-3,3],[-2,-2],[-2,-6],[-1,-13],[-1,-2],[-2,-6],[0,-5],[4,-5],[0,-4],[-1,-4],[-3,-2],[-6,2],[-6,6],[-4,9],[-2,11],[-2,0],[-3,-8],[-5,2],[-9,10],[-4,1],[-4,-6],[-5,-2],[-19,10],[-2,9],[1,7],[-1,5],[-4,5],[-3,0],[-4,-4],[-3,0],[-2,1],[-3,5],[-3,2],[-14,0],[-3,-1],[-2,2],[-3,5],[-2,2],[-3,-1],[-2,-2],[-1,-3],[-23,-14],[-2,0],[-2,6],[0,6],[-2,5],[-3,2],[-3,1],[-4,4],[-1,7],[0,8],[-2,5],[-2,0],[-1,-5],[-1,-5],[-2,-5],[-2,-8],[-2,-4],[-2,-1],[-12,0],[-5,3],[-19,17],[-23,12],[-37,5],[-2,1],[-4,9],[-3,2],[-6,1],[-6,5],[-10,10],[0,-4],[-15,14],[-7,5],[-7,1],[-6,4],[-18,21],[-3,1],[-3,0],[-3,1],[-1,4],[-6,14],[-2,2],[-5,10],[-3,2],[-8,2],[-71,77],[-28,18],[-7,10]],[[84462,46939],[2,-14],[-1,-15],[-3,-10],[-5,4],[-1,5],[0,15],[-2,7],[-3,4],[-7,4],[-3,4],[-4,12],[-1,11],[1,13],[3,14],[2,-5],[14,-21],[2,-7],[4,-15],[2,-6]],[[86887,47148],[0,-10],[1,-9],[1,-9],[3,-9],[-2,-5],[0,-3],[-3,3],[-1,3],[-1,5],[-1,5],[0,-9],[-1,-4],[-3,-1],[-2,2],[-2,4],[-4,24],[0,16],[2,18],[4,17],[6,10],[1,-5],[1,-5],[-1,-5],[-1,-5],[1,3],[2,2],[2,0],[2,-1],[0,-6],[-4,-26]],[[86754,47204],[8,-13],[4,-2],[6,3],[-1,-6],[-2,-6],[-2,-5],[-3,-3],[-4,-3],[-1,0],[-1,3],[-4,10],[-2,9],[-1,9],[3,4]],[[84382,47204],[6,-5],[2,-13],[1,-16],[1,-14],[-6,4],[-4,9],[-7,23],[-5,10],[-5,7],[-4,8],[-3,12],[4,0],[8,-2],[4,-8],[3,-10],[5,-5]],[[84316,47363],[6,-4],[9,-2],[8,-6],[3,-15],[1,-31],[-1,-14],[-4,-5],[-8,1],[-5,5],[-4,9],[-10,43],[-1,16],[6,3]],[[86090,47787],[1,9],[3,3],[2,-3],[-1,-25],[-3,-4],[-5,0],[-5,-3],[-1,5],[-3,3],[-3,1],[-4,-1],[4,6],[13,5],[2,4]],[[85342,48207],[3,-9],[2,-8],[1,-15],[-2,-9],[-2,-6],[0,-6],[-4,-4],[-5,1],[-5,2],[-5,1],[-3,7],[-5,8],[-2,9],[0,14],[8,19],[4,3],[5,-1],[10,-6]],[[83977,48390],[4,-3],[3,-7],[2,-9],[1,-8],[-3,0],[-5,-3],[-6,-5],[-3,-6],[-3,11],[2,13],[4,11],[4,6]],[[86861,48425],[2,-10],[1,-10],[0,-11],[-3,-9],[-4,6],[-3,8],[-2,10],[-1,16],[-2,1],[-4,0],[-2,2],[-5,14],[2,3],[5,6],[2,2],[4,-3],[4,-8],[6,-17]],[[84010,48445],[6,-10],[1,-3],[0,-7],[-2,-9],[-2,-7],[-5,-3],[-2,4],[-3,11],[-3,17],[0,6],[0,7],[1,7],[2,5],[0,2],[1,0],[1,0],[1,-1],[1,-4],[2,-11],[1,-4]],[[85448,48511],[4,-9],[3,-10],[1,-10],[-6,-3],[-6,3],[-10,11],[-13,4],[-4,6],[-4,8],[-3,8],[2,1],[6,9],[1,2],[3,7],[1,3],[0,1],[1,1],[1,-1],[9,0],[5,-8],[9,-23]],[[85491,48597],[4,-4],[1,-9],[0,-9],[2,-7],[-3,-14],[-2,-6],[-3,-1],[-7,1],[-17,-4],[-6,4],[-4,12],[4,14],[8,13],[5,13],[10,0],[3,4],[2,0],[0,-1],[1,-2],[1,-3],[1,-1]],[[85542,48742],[4,-2],[5,-5],[2,-6],[-1,-2],[-2,-4],[-4,-14],[-1,-3],[-1,-3],[-3,-16],[-1,-5],[-4,-4],[-4,-2],[-22,-3],[-3,3],[-1,7],[3,9],[5,7],[4,3],[2,1],[1,2],[3,7],[2,4],[2,-1],[1,-1],[1,0],[4,6],[2,5],[0,7],[-2,10],[8,0]],[[84409,49274],[1,-8],[2,-11],[1,-7],[-1,-7],[-2,3],[-3,10],[-1,-1],[-4,0],[-3,3],[2,8],[4,15],[2,3],[2,-8]],[[84541,49309],[4,-7],[2,-12],[-1,-28],[-3,4],[-6,16],[-3,3],[-3,1],[-3,2],[-1,5],[2,8],[3,6],[4,2],[5,0]],[[84348,49339],[2,-24],[0,-8],[-2,0],[-1,8],[-1,9],[0,19],[2,0],[0,-4]],[[84371,49340],[0,-5],[2,-8],[0,-4],[-1,-3],[-8,-9],[-2,13],[2,14],[4,6],[3,-4]],[[80187,49455],[4,8],[9,4],[10,-1],[5,-5],[-5,-8],[-10,-2],[-13,4]],[[85380,49660],[3,-18],[-1,-5],[-5,-1],[-3,-3],[-6,-11],[-3,-3],[-9,7],[0,14],[6,14],[5,2],[0,3],[1,2],[0,3],[1,4],[2,0],[2,-7],[2,0],[3,2],[2,-3]],[[80324,49725],[4,-5],[-2,-7],[-9,-20],[-2,-2],[0,3],[-1,7],[-1,1],[-2,-2],[-2,1],[0,-4],[-2,0],[-2,2],[0,5],[2,5],[2,3],[2,1],[3,0],[3,2],[5,10],[2,0]],[[80348,49777],[3,-3],[0,-8],[-2,-8],[-2,-6],[-2,-4],[-3,-4],[-3,-1],[-1,4],[0,8],[0,5],[1,4],[5,10],[2,2],[2,1]],[[79021,50309],[3,-2],[1,-4],[1,-5],[0,-5],[-1,-6],[-2,-1],[-2,0],[-2,-1],[-4,-4],[-3,-1],[-8,1],[-3,4],[-2,9],[2,8],[4,3],[16,4]],[[78566,50642],[4,7],[8,7],[8,3],[4,-5],[-5,-8],[-9,-8],[-8,-4],[-2,8]],[[78632,50839],[2,-9],[0,-5],[0,-5],[-1,-7],[-1,-3],[-2,2],[-2,4],[-2,7],[-3,18],[-1,8],[0,4],[-1,3],[0,3],[1,2],[4,-1],[3,-6],[2,-7],[1,-8]],[[78751,50885],[3,-2],[1,-5],[0,-6],[-1,-7],[-3,-16],[-2,-8],[-3,-4],[-5,2],[0,8],[1,10],[1,4],[2,4],[4,17],[2,3]],[[78642,50939],[2,-7],[-1,-14],[-4,-13],[-3,-8],[-2,2],[-1,6],[-1,6],[-1,5],[1,4],[1,5],[1,4],[3,6],[1,3],[2,1],[2,0]],[[79045,50942],[11,-2],[5,-4],[-1,-6],[-1,-7],[-4,-1],[-8,4],[-5,0],[-4,-2],[-8,-10],[0,14],[4,9],[5,4],[6,1]],[[78796,50967],[10,-15],[4,-10],[2,-10],[0,-8],[-4,-3],[-3,2],[-2,5],[-1,10],[-7,19],[1,10]],[[78739,51014],[3,-6],[2,-9],[-1,-9],[-2,-5],[-3,0],[-4,2],[-3,4],[-2,6],[-2,4],[-3,4],[-1,4],[13,6],[3,-1]],[[83513,51105],[3,-3],[2,-4],[4,-10],[-4,-1],[-10,15],[-7,3],[3,2],[3,2],[3,-1],[3,-3]],[[83437,51109],[5,4],[2,-5],[1,-10],[0,-10],[-1,-4],[-2,-4],[-2,-3],[-3,-1],[-2,5],[0,10],[1,11],[1,7]],[[83290,49952],[4,24],[1,12],[1,15],[-1,3],[-2,8],[-1,5],[0,20],[0,6],[-2,9],[-6,16],[-2,6],[-1,7],[-6,27],[-3,23],[-1,20],[-1,7],[-4,19],[-1,12],[7,137],[2,18],[4,8],[1,7],[0,17],[-2,18],[-2,10],[-8,-7],[-9,-1],[-9,4],[-7,9],[-5,11],[-5,18],[-3,19],[2,17],[4,-5],[3,-2],[2,-2],[0,7],[1,5],[0,5],[1,4],[7,-8],[5,-9],[7,-20],[6,-19],[4,-8],[6,-5],[5,-3],[2,0],[2,4],[4,13],[3,12],[6,52],[2,15],[-5,20],[-21,54],[-1,7],[-1,8],[0,10],[2,7],[17,12],[4,10],[0,9],[-3,10],[-1,13],[1,13],[7,22],[3,12],[1,6],[0,12],[1,6],[3,7],[3,4],[4,4],[3,4],[5,4],[13,3],[5,6],[4,20],[-1,23],[-3,24],[-2,23],[1,13],[2,14],[3,13],[5,5],[3,0],[7,4],[3,1],[3,1],[18,18],[6,8],[6,10],[2,10],[3,60],[3,21],[6,15],[11,2],[6,-8],[2,-12],[-2,-27],[0,-27],[2,-10],[4,7],[2,0],[2,-11],[3,-8],[4,-8],[6,-6],[8,-4],[5,-4],[2,2],[2,4],[1,2],[7,0],[4,-3],[4,-6],[4,-9],[3,1],[5,9],[8,21],[-3,13],[4,26],[12,41],[6,14],[2,3],[3,-3],[3,-5],[3,-4],[3,2],[2,5],[2,13],[2,6],[2,3],[6,4],[3,3],[2,9],[1,9],[-2,37],[1,7],[0,3],[0,3],[2,6],[2,6],[1,1],[2,13],[0,11],[0,23],[-2,22],[1,11],[3,10],[3,1],[6,-2],[2,1],[3,3],[7,13],[-1,-17],[1,-8],[3,3],[5,13],[3,3],[5,2],[26,-11],[6,2],[14,-10],[7,-7],[7,-18],[23,-25],[15,14],[5,2],[12,0],[5,3],[7,9],[5,10],[3,2],[3,-3],[2,-6],[0,-7],[0,-8],[-1,-6],[-2,-2],[-7,-5],[-1,-1],[0,-4],[2,-9],[1,-5],[1,-6],[0,-3],[0,-5],[1,-7],[5,-12],[1,-6],[3,-10],[13,-22],[5,-6],[11,-7],[13,1],[82,21],[4,-4],[4,-27],[4,-10],[5,-4],[6,1],[5,6],[6,15],[4,3],[6,-2],[18,-14],[7,-1],[4,-2],[2,-3],[7,-9],[3,-1],[3,0],[6,3],[3,1],[1,-1],[3,-3],[1,0],[1,1],[3,5],[1,2],[4,0],[13,-8],[6,0],[13,7],[3,-1],[9,-14],[11,-10],[11,-5],[16,-3],[6,-4],[5,-7],[2,-10],[3,-7],[6,-6],[10,-9],[3,-4],[1,-4],[1,-3],[4,-1],[2,-2],[1,-8],[7,-5],[7,-14],[5,-4],[11,18],[5,3],[3,4],[6,28],[1,3],[3,5],[1,4],[0,11],[1,7],[2,3],[6,-1],[4,-1],[19,-15],[6,-3],[1,0],[4,1],[6,5],[12,-10],[4,3],[-1,6],[-2,13],[2,8],[6,-8],[5,-6],[8,7],[5,-7],[1,-6],[0,-6],[1,-4],[3,-5],[3,-1],[8,0],[3,1],[3,2],[2,4],[2,2],[4,0],[2,-2],[2,-4],[2,-1],[4,3],[7,-11],[21,-9],[9,-10],[3,-2],[10,9],[4,3],[5,-3],[12,-13],[5,-4],[39,-12],[19,4],[3,-1],[5,-4],[2,1],[3,3],[1,5],[-1,4],[-3,3],[4,6],[11,7],[5,11],[31,24],[9,4],[4,6],[7,16],[9,9],[18,11],[7,12],[4,20],[5,41],[4,16],[3,6],[5,5],[5,4],[5,2],[19,-2],[5,2],[3,3],[2,4],[2,4],[3,1],[2,-3],[1,-6],[2,-5],[3,-3],[5,5],[3,11],[2,14],[1,11],[-3,10],[-4,3],[-11,-1],[-5,7],[0,15],[2,17],[2,10],[15,24],[2,6],[3,4],[20,-9],[7,2],[4,6],[7,18],[5,5],[11,4],[6,5],[4,12],[-2,11],[-4,11],[-2,13],[1,14],[3,10],[28,45],[2,8],[1,2],[6,-5],[1,3],[-1,20],[1,6],[3,5],[6,6],[5,2],[3,-7],[0,-24],[2,-7],[6,-4],[5,0],[18,5],[8,-2],[1,-7],[-4,-24],[1,-25],[6,-14],[7,-10],[7,-12],[3,-23],[-8,-15],[-12,-11],[-10,-12],[-8,-21],[-5,-21],[-17,-103],[-13,-49],[-9,-23],[-10,-20],[-1,-4],[-3,-15],[0,-5],[-2,-4],[-10,-11],[-9,-5],[-2,-3],[-2,-6],[-4,-15],[-3,-3],[-6,-3],[-6,-8],[-10,-22],[-9,-14],[-4,-9],[-3,-17],[-4,-11],[-1,-7],[0,-9],[0,-4],[-3,-10],[-10,-18],[-2,-12],[-2,-5],[-1,-6],[1,-5],[2,-6],[0,-4],[0,-11],[-1,-2],[-6,1],[-2,-1],[-1,-2],[-12,-32],[-1,-9],[4,-5],[0,-4],[-5,-4],[-3,-8],[-5,-21],[-7,5],[-7,-5],[-6,-8],[-6,-4],[-6,-3],[-8,-14],[-34,-15],[-14,-2],[-11,10],[-3,-5],[-8,-16],[-8,4],[-2,0],[-3,-2],[-5,-8],[-2,-2],[-18,-1],[-6,-3],[-12,-8],[-3,-1],[-9,1],[-5,-4],[-5,-6],[-2,-2],[-3,3],[-4,3],[-3,2],[-6,-1],[-10,-9],[-9,-4],[-2,-4],[-4,-9],[-2,1],[-3,3],[-9,15],[-4,3],[-29,6],[-6,-1],[-10,-6],[-5,-2],[-27,6],[-9,8],[-4,0],[-2,2],[-1,2],[-2,9],[-2,1],[-1,5],[-7,22],[-1,2],[-6,-1],[-1,3],[0,2],[-8,28],[-12,27],[-5,13],[-1,0],[-4,-9],[-6,-5],[-15,-5],[-41,5],[-26,-6],[-12,1],[-3,3],[-6,16],[-3,5],[1,-18],[-1,-8],[-3,-3],[-5,1],[-4,2],[-3,6],[-4,2],[-5,2],[-67,0],[-3,-1],[-6,-6],[-2,-1],[-21,0],[-3,0],[-3,-2],[-4,-5],[-2,-1],[-6,1],[-11,5],[-18,1],[-5,-3],[-5,-13],[-5,-4],[-26,-7],[-14,-1],[-11,-5],[-4,1],[-2,3],[-13,40],[-5,9],[-7,5],[-4,0],[-9,-4],[-2,-1],[-3,4],[-2,5],[-2,6],[-3,6],[-1,-7],[-2,-4],[-4,-1],[-5,0],[-3,2],[-3,3],[-2,-1],[-3,-8],[-1,-8],[0,-8],[-2,-6],[-3,-2],[-5,-1],[-3,-1],[-4,-3],[-3,-3],[-4,7],[-4,1],[-4,-3],[-10,-3],[-6,-6],[-3,-1],[-3,2],[-6,8],[-3,3],[-7,-1],[-11,-9],[-6,-3],[-6,0],[-4,-2],[-4,-5],[-4,-9],[-3,-10],[-2,-4],[-3,-2],[-2,0],[-10,4],[-5,3],[-7,13],[-4,4],[-5,-1],[-9,-9],[-18,-5],[-4,1],[-4,6],[-2,4],[-1,9],[-1,3],[-2,2],[-9,3],[-1,1],[-1,5],[-1,4],[-2,2],[-4,-1],[-4,-4],[-3,1],[-6,6],[-8,18],[-6,4],[-49,-1],[-4,-3],[-22,-23],[-5,-1],[-4,-3],[-4,-8],[-3,-8],[-3,-6],[-7,-11],[-12,-26],[-16,-51],[-16,-38],[-6,-22],[-2,-6],[-2,-21],[-1,-5],[-4,-12],[-1,-12],[-1,-27],[-3,-27],[-3,-13],[-3,-11],[-10,-16],[-1,-5],[0,-7],[0,-15],[-1,-27],[-2,-13],[-3,-10],[-2,-10],[1,-15],[6,-77],[1,-12],[8,-21],[2,-13],[-1,-6],[-2,-12],[-1,-6],[1,-7],[2,-14],[5,-57],[4,-26],[43,-136],[4,-7],[13,-19],[6,-4],[6,6],[6,10],[5,6],[7,-2],[4,-9],[2,-12],[4,-12],[2,-3],[3,-2],[6,-1],[3,-3],[3,-7],[2,-14],[18,-56],[1,-7],[1,-7],[-1,-5],[-2,-5],[-1,-5],[0,-5],[0,-8],[-2,-15],[0,-8],[2,-7],[13,-32],[3,-11],[2,-25],[3,-13],[3,-12],[4,-6],[17,16],[0,4],[19,10],[7,2],[1,-3],[-2,-19],[2,-4],[3,-3],[7,-3],[6,-1],[19,5],[5,3],[3,1],[3,-3],[7,-13],[2,-5],[12,-3],[9,9],[7,16],[10,33],[2,11],[1,22],[3,27],[2,11],[3,7],[4,10],[5,8],[4,4],[3,3],[3,10],[4,19],[8,20],[15,27],[16,52],[6,16],[13,28],[5,5],[5,2],[12,0],[2,3],[0,5],[0,7],[1,5],[2,3],[7,5],[2,1],[3,-2],[2,-2],[2,-3],[2,-2],[0,-35],[0,-9],[8,-13],[3,-8],[2,-5],[2,-2],[23,0],[13,-4],[12,-6],[11,-2],[10,7],[10,13],[5,3],[7,1],[6,-3],[6,-4],[5,0],[7,10],[3,13],[4,20],[1,20],[-1,13],[11,17],[4,3],[56,4],[11,4],[10,1],[20,-11],[10,2],[2,2],[1,3],[2,2],[3,1],[4,-2],[5,-8],[8,-5],[4,-5],[5,-5],[6,1],[14,10],[35,7],[4,2],[4,5],[5,8],[0,4],[-18,8],[-1,3],[-2,7],[-1,3],[-4,1],[-24,4],[-4,2],[-4,4],[-3,5],[-2,6],[0,6],[5,4],[4,-5],[4,2],[7,11],[2,3],[1,4],[2,2],[4,-5],[2,1],[2,2],[1,3],[24,3],[6,4],[3,-5],[5,0],[5,2],[4,3],[3,5],[4,14],[3,5],[4,1],[45,-8],[10,-8],[19,-22],[17,-13],[4,-7],[-3,-8],[-1,-3],[1,-3],[2,-5],[1,-4],[0,-5],[2,-4],[2,-1],[3,0],[-1,-12],[4,-16],[-4,-21],[1,-24],[-2,-12],[-7,-16],[-3,-8],[-3,-53],[-2,-12],[-8,-21],[-12,-7],[-11,4],[-9,12],[-8,24],[-2,4],[-2,4],[-13,21],[0,7],[2,15],[0,6],[-1,9],[-3,6],[-6,11],[-6,5],[-10,-27],[-6,0],[-9,-8],[-25,-3],[-12,-6],[-10,6],[-7,-15],[-12,-56],[-3,-9],[-7,-17],[-1,-4],[-1,-5],[0,-5],[-1,-6],[-1,-7],[-2,-3],[-3,-2],[-3,-2],[-8,-13],[-4,-10],[-3,-28],[-3,-7],[-11,-11],[-4,-9],[-12,-38],[-5,-6],[-2,-4],[-1,-6],[-1,-6],[-4,-13],[-1,-3],[-20,-39],[-7,-19],[-3,-8],[-18,-19],[-20,-30],[-9,-17],[-5,-6],[-3,2],[-4,6],[-4,4],[-5,-2],[-12,-12],[-5,-2],[-3,0],[-5,4],[-3,0],[-2,-3],[-1,-3],[-1,-3],[-1,-4],[-9,-12],[-6,-5],[-3,1],[-6,-6],[-5,-2],[-11,4],[-2,-11],[-2,-1],[-5,-7],[-3,-4],[-3,-1],[-3,-5],[-2,-11],[-3,-21],[-7,-36],[-4,-17],[-6,-16],[-7,-11],[-9,-8],[-9,-4],[-18,-2],[-3,1],[-4,4],[-1,4],[-1,4],[-6,15],[-2,4],[-2,2],[-1,1],[-10,7],[-3,11],[0,10],[-1,7],[-7,4],[-13,0],[-1,2],[-3,10],[-2,4],[-10,-2],[-4,-20],[2,-18],[10,4],[1,-9],[-1,-12],[-3,-13],[-1,-13],[1,-5],[2,-6],[1,-5],[0,-27],[3,5],[3,5],[2,5],[1,6],[2,8],[1,8],[1,7],[4,5],[3,-11],[6,-31],[9,-12],[3,-12],[4,-9],[5,2],[7,-16],[5,-44],[6,-17],[12,-9],[12,1],[11,-3],[11,-18],[7,-18],[16,-27],[7,-20],[4,-22],[3,-13],[0,-11],[2,-9],[14,-29],[9,-33],[4,-21],[9,-23],[2,-13],[0,-12],[-1,-27],[0,-7],[13,-31],[6,-11],[5,-4],[10,-3],[3,-2],[1,-2],[0,-7],[3,-3],[2,-1],[2,-4],[2,-9],[1,-14],[2,-12],[4,-5],[10,0],[6,-2],[6,-6],[7,-23],[-5,-22],[-7,-22],[3,-22],[2,-3],[7,-10],[20,-42],[3,-1],[3,3],[4,5],[3,3],[1,-8],[1,-7],[2,-5],[3,-5],[3,5],[1,-1],[0,-7],[-2,-9],[-1,-2],[-5,-3],[-2,-3],[0,-3],[0,-9],[0,-4],[-1,-10],[0,-5],[-1,-2],[-3,1],[0,1],[-1,3],[-3,4],[-2,1],[-2,-1],[-1,-2],[-1,-2],[-7,12],[-5,-12],[-5,-11],[-7,-33],[2,-17],[4,-2],[12,-11],[4,-5],[2,-12],[1,-16],[-2,-12],[-5,1],[3,7],[-2,7],[-5,5],[-5,1],[1,6],[1,2],[-3,9],[-4,4],[-4,2],[-4,5],[-1,-6],[-1,-6],[-2,-3],[-4,3],[1,-11],[2,-9],[2,-7],[4,-7],[2,-10],[0,-12],[-2,-13],[-5,-18],[-1,-3],[-2,-3],[-3,-4],[-3,-2],[-6,-4],[-3,-4],[-1,-9],[2,-13],[6,-21],[2,-8],[5,-8],[5,-5],[6,-3],[4,-3],[3,-8],[2,-9],[3,-8],[6,-6],[6,-1],[12,3],[6,-4],[3,-9],[5,-24],[16,-46],[5,-8],[6,-3],[19,0],[3,-1],[2,-3],[2,-4],[2,-7],[-1,-6],[-5,-4],[-3,-3],[-1,-3],[-3,-10],[-3,-2],[-7,-1],[-6,-4],[-4,-4],[1,-3],[13,-2],[6,-3],[5,-5],[4,-8],[2,-10],[1,-11],[-1,-25],[1,-11],[3,-12],[3,-9],[5,-3],[1,2],[0,5],[1,5],[0,5],[7,-9],[11,-4],[11,-1],[7,6],[-15,32],[-4,15],[9,5],[11,-10],[7,-21],[6,-26],[4,-35],[1,-13],[-1,-11],[-4,-18],[0,-12],[3,-25],[1,-24],[-2,-11],[-4,-5],[-5,-2],[-2,-6],[-2,-8],[-3,-9],[-4,11],[-19,30],[-10,22],[-7,8],[-8,3],[3,-12],[12,-23],[1,-5],[3,-11],[2,-6],[1,-1],[4,2],[1,-1],[1,-4],[0,-2],[-1,-2],[0,-4],[1,-7],[1,-5],[0,-11],[-1,-6],[-3,-3],[-4,-1],[-3,2],[-6,18],[-4,0],[0,-3],[0,-5],[2,-4],[-4,-7],[-2,2],[-4,13],[0,16],[-8,14],[-12,7],[-9,-6],[-9,-13],[-10,-4],[-9,3],[-9,8],[-11,-13],[-12,-8],[-12,-6],[-18,-2],[-2,-1],[-2,-3],[-5,-7],[-3,-3],[-6,-4],[-5,-8],[-1,-2],[-11,-3],[-2,-1],[-6,-14],[-6,-23],[-5,-26],[-2,-22],[1,-26],[5,-21],[6,-16],[7,-14],[1,-1],[5,-3],[0,-5],[-5,-3],[-6,-14],[-3,-3],[-7,-1],[-12,-6],[-5,-1],[-29,6],[-5,3],[-8,11],[-5,5],[-4,0],[-5,-3],[-6,-2],[-5,4],[-2,0],[-1,-6],[-2,-2],[-2,-2],[-3,-2],[-3,0],[-5,8],[-8,21],[-5,4],[-4,2],[-16,14],[-4,5],[-14,41],[-1,7],[-1,1],[-1,0],[-1,0],[-1,3],[-2,20],[1,25],[5,48],[6,35],[2,25],[1,25],[-1,46],[1,18],[0,6],[1,4],[3,3],[4,0],[1,-4],[-1,-6],[-2,-6],[9,10],[9,41],[3,47],[-10,28],[-11,11],[-34,13],[-21,19],[-1,6],[-4,8],[-1,6],[-1,6],[-1,7],[-4,9],[-4,6],[-4,-2],[-3,-5],[-5,-3],[-2,5],[1,12],[3,14],[1,10],[-3,11],[-4,5],[-11,0],[-7,2],[-4,5],[-16,39],[-58,113],[-6,24],[-1,17],[0,7],[0,7],[3,13],[0,6],[3,15],[5,12],[6,12],[5,12],[5,25],[3,11],[5,4],[3,2],[3,3],[2,5],[0,5],[2,5],[2,3],[4,3],[2,3],[2,10],[2,32],[0,15],[-2,14],[-1,7],[-2,3],[-2,5],[1,10],[4,16],[0,8],[3,11],[1,7],[-1,25],[2,6],[1,13],[-2,19],[-3,12],[-3,-6],[-2,0],[-1,6],[-2,16],[-3,6],[-2,-5],[-2,-12],[-1,-3],[-3,0],[-3,4],[-1,5],[-1,5],[2,8],[4,2],[4,3],[1,14],[5,-3],[3,4],[4,15],[1,-2],[1,-1],[1,0],[1,-1],[-9,35],[-4,6],[0,2],[-2,4],[-3,8],[-3,3],[-34,11],[-3,-1],[-3,-2],[-2,1],[-3,4],[-3,6],[-3,4],[-3,2],[-3,2],[-7,0],[-4,-4],[-4,-5],[-4,-3],[-6,-1],[-4,-3],[-15,-17],[-4,-2],[-7,-1],[-5,-4],[-3,-8],[-2,-10],[-2,-11],[-5,-9],[-69,-93],[-11,-19],[-6,-9],[-8,-4],[2,-7],[4,-11],[1,-8],[1,-7],[1,-8],[1,-5],[2,-2],[4,-7],[4,-31],[3,-11],[-2,-2],[-1,-3],[-3,-7],[6,-12],[6,-7],[13,-10],[8,-11],[1,-3],[1,-5],[1,-8],[2,-9],[2,-5],[5,2],[-1,-6],[-4,-10],[-2,-8],[1,-6],[1,-7],[0,-6],[-2,-10],[-2,-21],[1,-6],[2,-12],[1,-7],[0,-6],[-2,-9],[-1,-31],[1,-10],[5,-27],[1,-11],[0,-50],[1,-4],[5,-10],[1,-23],[-5,-22],[-12,-36],[-4,-20],[-4,-20],[-1,-21],[-1,-101],[1,-9],[6,-22],[1,-8],[0,-24],[0,-6],[-1,-12],[-1,-7],[1,-8],[3,-18],[0,-21],[-7,-34],[2,-23],[6,-16],[3,-12],[-1,-10],[-1,-10],[0,-15],[1,-15],[1,-10],[4,-11],[8,-20],[1,-12],[0,-6],[-3,-5],[-5,-9],[-1,-5],[-5,-58],[-1,-14],[-2,-11],[-6,-4],[-6,-1],[-5,-3],[-5,-17],[0,-72],[-7,-70],[-2,-14],[-3,-9],[12,-37],[2,-10],[4,-24],[2,-8],[12,-32],[2,-9],[1,-12],[12,-92],[1,-22],[1,-5],[5,-17],[1,-11],[-1,-3],[-8,7],[-4,-2],[-10,24],[-2,7],[0,7],[-5,18],[-2,5],[-7,3],[-7,-6],[-7,-8],[-6,-5],[-12,-4],[-2,-1],[-7,-11],[-5,-5],[-11,-7],[-5,-4],[-1,3],[-2,1],[-4,0],[-18,6],[-3,4],[-3,4],[-7,1],[-8,-1],[-5,-2],[-5,-7],[-11,-24],[-2,-6],[-1,-13],[-1,-5],[-6,-11],[-4,-7],[-10,-6],[-13,-1],[-13,4],[-8,11],[-1,11],[-1,13],[-2,12],[-7,5],[-5,-7],[-3,-13],[-3,-8],[-5,8],[-1,6],[0,14],[-1,8],[-2,6],[-2,3],[-3,5],[-1,8],[-4,1],[-8,-3],[-5,-7],[4,-13],[-6,0],[-4,4],[-2,9],[-1,13],[1,6],[2,5],[1,7],[-1,6],[-2,6],[-3,11],[-10,29],[-5,22],[-2,24],[2,28],[2,19],[2,38],[1,12],[4,21],[3,19],[1,5],[3,4],[5,6],[3,4],[3,11],[2,11],[1,21],[4,20],[10,41],[2,20],[-10,76],[2,22],[1,2],[5,6],[2,3],[3,19],[1,8],[12,44],[2,9],[4,85],[5,40],[1,23],[0,6],[-2,10],[0,6],[-1,7],[-4,8],[-1,5],[2,12],[5,23],[1,12],[-2,25],[-2,5],[-1,3],[-1,2],[1,7],[2,9],[1,6],[0,6],[0,11],[0,7],[6,20],[1,9],[-4,3],[-7,-2],[-1,-6],[-1,-11],[-1,-13],[-2,11],[-1,22],[-5,18],[-13,68],[-6,19],[-3,23],[-8,24],[-1,8],[4,18],[4,33],[3,10],[4,12],[2,9],[-1,9],[-4,31],[-1,4],[-2,3],[-6,3],[-2,4],[-7,-2],[-8,8],[-9,11],[-7,7],[-10,3],[-4,-1],[-1,-4],[-2,-7],[-11,-18],[-4,-5],[-6,-3],[-5,2],[-4,3],[-5,2],[-5,-2],[-7,-11],[-5,-3],[-20,-3],[-8,-9],[2,-20],[-3,1],[-4,9],[-3,1],[-2,-3],[-3,-14],[-3,-3],[-4,5],[-2,11],[-11,62],[-5,18],[-3,13],[-2,13],[-1,12],[1,11],[2,10],[1,10],[-5,21],[-3,40],[-2,12],[-2,6],[-2,3],[-3,3],[-3,5],[-1,7],[-1,6],[-2,11],[-1,7],[1,4],[5,12],[2,2],[2,-1],[6,-5],[4,-2],[4,4],[1,8],[1,48],[2,18],[5,11],[1,8],[1,17],[-1,7],[-1,5],[-3,4],[-3,4],[-7,4],[-6,-2],[-12,-10],[0,13],[-3,25],[-1,13],[1,6],[4,12],[1,6],[0,27],[1,10],[3,13],[4,12],[4,5],[6,-3],[4,-9],[4,-7],[6,-1],[6,4],[12,18],[7,12],[6,8],[3,4],[2,6],[2,21],[5,12],[5,5],[5,5],[14,24],[2,7],[-1,37],[-2,15],[-1,59],[1,7],[2,7],[1,9],[-2,8],[10,32],[4,17],[9,65],[5,17],[8,11],[7,3],[4,-2],[4,-3],[5,-2],[3,6],[2,15],[4,52],[0,8],[-1,3],[-1,2],[-3,5],[-4,11],[-2,10],[-6,51],[0,25],[1,13],[5,22],[1,12],[-6,41],[-2,6],[-2,49],[0,3],[0,4],[1,7],[2,4],[6,12],[1,6],[0,12],[-5,27],[0,23],[4,18],[6,15],[7,12],[2,7],[2,7],[3,7],[3,3],[5,3],[4,7],[3,9],[1,23],[4,22],[3,34],[2,10],[3,9],[2,8],[3,24],[2,10],[3,6],[8,10],[2,2],[4,6],[3,15],[1,2],[9,8],[13,24],[-6,15],[-1,3],[1,6],[3,5],[6,6],[3,7],[6,16],[3,3],[0,-4],[4,-22],[2,-15],[10,-44],[5,-33],[4,-15],[6,-9]],[[85495,51811],[5,0],[2,-1],[1,-5],[1,-12],[-3,-13],[-7,-2],[-7,7],[-2,16],[1,11],[2,2],[7,-3]],[[85608,51872],[0,-8],[-6,-34],[-4,-6],[-4,6],[-3,12],[-2,11],[0,7],[1,6],[2,6],[2,6],[2,7],[2,6],[1,3],[4,-3],[5,-19]],[[78040,51551],[-1,9],[1,12],[0,13],[-3,13],[-3,10],[-3,13],[-2,27],[-6,28],[-17,47],[-6,27],[-1,28],[4,24],[8,18],[12,11],[6,0],[40,-4],[2,-7],[-1,-23],[3,-13],[32,-44],[33,-58],[5,-13],[2,-14],[1,-12],[-1,-25],[1,-13],[6,-34],[8,-51],[5,-22],[8,-16],[19,-18],[10,-5],[10,-9],[7,0],[23,8],[10,1],[11,-5],[8,-11],[68,-122],[26,-30],[7,-17],[3,-28],[-2,-22],[0,-15],[3,-7],[5,-3],[4,-8],[2,-11],[1,-11],[-2,-45],[0,-23],[4,-25],[9,-25],[23,-38],[29,-67],[10,-18],[13,-14],[6,-5],[6,-2],[12,-1],[6,1],[9,6],[5,1],[32,-11],[26,-3],[12,-11],[9,-19],[29,-70],[8,-25],[2,-27],[-5,-16],[-10,-13],[-21,-20],[-12,-18],[-6,-7],[-10,-5],[-32,-35],[-4,-7],[-5,-5],[-19,-9],[-5,-5],[-2,-2],[-2,-5],[-6,-21],[-3,-3],[-7,3],[-5,8],[-10,22],[-4,3],[-8,3],[-6,1],[-2,-1],[3,-5],[2,-1],[7,0],[2,-2],[2,-3],[2,-7],[6,-14],[8,-14],[9,-6],[10,9],[1,4],[3,9],[1,3],[4,5],[6,5],[3,4],[5,4],[13,-3],[6,1],[15,15],[19,4],[4,4],[20,27],[5,3],[4,4],[14,29],[5,5],[7,6],[6,3],[6,2],[7,4],[4,11],[5,26],[6,11],[16,6],[8,9],[8,11],[7,2],[8,-3],[8,-9],[17,-20],[17,-28],[13,-34],[5,-39],[3,11],[2,6],[3,3],[3,0],[2,-3],[3,-3],[7,-5],[6,-9],[5,-11],[4,-9],[4,-23],[12,-121],[2,-6],[1,-3],[0,-6],[-3,-10],[-3,-3],[-3,0],[-7,1],[-23,-4],[-2,-2],[0,-11],[-2,-3],[-4,-1],[-2,-1],[-2,0],[-2,2],[-3,5],[-3,12],[-2,3],[-2,0],[-2,-2],[-3,-2],[-1,-4],[1,-6],[2,-1],[2,-1],[1,-4],[0,-5],[-1,-6],[-1,-6],[2,-13],[-3,-5],[-5,-4],[-4,-2],[-10,0],[-3,-2],[-2,-8],[-1,-17],[-5,-14],[-7,-11],[-8,-9],[-31,-12],[-9,-12],[5,0],[8,-3],[5,-1],[5,3],[8,7],[5,2],[7,6],[10,9],[8,4],[4,-11],[-2,-14],[-11,-20],[-2,-16],[-3,-13],[-8,-7],[-18,-7],[0,-4],[10,-8],[6,-2],[4,4],[4,2],[14,0],[3,-1],[3,-1],[2,-3],[3,-5],[3,-4],[6,-1],[10,-15],[3,-7],[-2,-12],[-5,-11],[-8,-8],[-8,-6],[-28,-11],[-4,5],[-3,11],[-5,25],[2,-39],[1,-5],[6,-11],[2,-6],[1,-14],[-2,-18],[-4,-16],[-6,-9],[0,-4],[4,-7],[-1,-9],[-4,-7],[-7,-1],[3,-10],[6,-9],[6,-7],[10,-4],[1,0],[4,-3],[3,-4],[1,-6],[-1,-9],[-4,-10],[-2,-8],[12,5],[6,0],[6,-7],[3,-8],[4,-18],[3,-8],[1,-1],[4,1],[1,0],[0,-2],[1,-5],[1,-1],[2,-4],[1,-5],[3,-5],[6,-5],[1,-5],[1,-6],[2,-3],[11,-3],[4,-7],[6,-15],[4,-3],[6,-1],[5,-4],[4,-6],[3,-9],[4,-23],[3,-6],[2,24],[5,11],[6,9],[6,5],[12,5],[4,3],[18,-18],[5,-8],[5,-4],[14,-1],[5,-1],[18,-22],[6,-3],[12,10],[2,4],[16,10],[16,1],[1,-6],[8,-52],[-3,-37],[1,-23],[2,-19],[1,-6],[9,-19],[1,-7],[2,-37],[-1,-90],[3,-25],[4,-25],[11,-43],[4,-27],[0,-4],[1,-12],[0,-7],[-1,-7],[-4,-15],[-2,-7],[-6,-23],[-2,-13],[1,-9],[0,-8],[3,-15],[5,10],[4,31],[2,8],[8,-2],[6,-12],[5,-13],[5,-6],[4,-7],[-2,-17],[-4,-17],[-3,-10],[-3,-5],[-2,-5],[1,-4],[4,0],[4,5],[7,17],[3,7],[1,-12],[1,-13],[0,-11],[4,-5],[1,-1],[1,-1],[1,-1],[1,-1],[1,1],[1,3],[1,3],[1,1],[1,2],[6,10],[12,9],[11,-7],[10,-17],[7,-25],[2,-27],[-2,-23],[-4,-21],[-9,-28],[-20,-49],[-3,-7],[-5,-2],[-12,-1],[-3,-3],[-4,-8],[-10,-13],[-5,-9],[20,18],[9,1],[6,-23],[0,-26],[-1,-15],[-4,-20],[0,-27],[-1,-10],[-3,-5],[-5,-5],[-5,-4],[-5,-2],[-3,-2],[-8,-13],[-10,-18],[-5,-16],[-4,-21],[0,-23],[0,1],[-1,-3],[0,-6],[4,7],[4,13],[4,14],[1,13],[2,9],[4,8],[9,13],[19,19],[8,11],[6,18],[5,39],[0,13],[-1,26],[1,9],[4,11],[9,18],[4,12],[4,25],[5,8],[5,3],[5,-5],[3,-12],[0,-15],[0,-13],[5,-9],[1,14],[3,9],[4,5],[6,1],[6,-3],[4,-8],[4,-8],[4,-5],[3,0],[6,3],[3,0],[3,-2],[4,-7],[1,-2],[6,2],[18,17],[6,3],[6,0],[7,-2],[10,-13],[7,-3],[13,-1],[25,-8],[12,-1],[6,-3],[5,-4],[0,-4],[-1,0],[-2,0],[-1,0],[3,-7],[4,3],[5,8],[3,4],[5,0],[4,-4],[3,-8],[0,-16],[-1,-13],[-5,-24],[-1,-14],[0,-14],[1,-13],[2,-12],[2,-12],[3,-9],[5,-11],[5,-8],[8,-5],[6,-6],[3,-1],[6,0],[3,-1],[3,-3],[5,-21],[-1,-81],[5,-22],[8,-19],[11,-12],[12,-4],[3,1],[5,3],[3,0],[4,-1],[4,-5],[3,-2],[4,-3],[4,-8],[4,-17],[3,-21],[0,-48],[1,-25],[1,-5],[4,-13],[1,-6],[0,-7],[-2,-13],[0,-6],[-3,-7],[-18,-20],[-10,-17],[-9,-21],[-8,-25],[-5,-26],[-17,-131],[1,-23],[7,-19],[23,-35],[5,-19],[1,-21],[-5,-24],[-18,-56],[-3,-19],[-2,-20],[-6,-41],[-1,-11],[-4,-48],[0,-20],[1,-16],[3,-14],[5,-17],[3,-17],[-1,-13],[4,-5],[3,-8],[4,-20],[1,2],[0,1],[1,1],[2,-10],[-2,-25],[2,-21],[-1,-11],[-3,-12],[-1,-10],[0,-10],[4,-30],[-4,-5],[-2,-11],[-4,-50],[0,-26],[1,-14],[10,-36],[1,-20],[-4,-19],[-5,-19],[-3,-20],[-2,-50],[2,-51],[-1,-26],[-7,-48],[-2,-27],[2,-51],[-1,-14],[-3,-23],[2,-36],[0,-25],[-1,-12],[-5,-25],[-1,-13],[-4,-46],[-3,-19],[-5,-16],[-8,-21],[-1,-3],[-3,5],[0,23],[-2,10],[-9,8],[-22,5],[-4,11],[-2,46],[-3,20],[-7,13],[-1,-3],[-3,-7],[-1,-2],[-3,0],[-2,3],[-2,4],[-2,1],[-3,3],[-9,21],[-15,25],[-6,14],[-18,55],[-8,12],[-9,-8],[-1,-12],[3,-23],[-2,-12],[0,-2],[-3,-16],[-1,-2],[-1,-3],[-3,1],[-5,4],[-6,-7],[0,-10],[3,-12],[1,-14],[0,-16],[1,-6],[2,-5],[2,-4],[1,-3],[-4,-5],[-7,-5],[-6,-7],[1,-9],[5,-5],[7,-2],[4,-3],[-4,-9],[-5,-5],[-6,-2],[-9,-1],[-3,3],[-13,22],[-48,44],[-17,28],[-13,9],[-6,10],[-17,39],[-3,6],[-5,5],[-10,6],[-6,4],[-3,7],[-2,0],[1,-3],[1,-9],[-7,0],[-5,-1],[-5,-5],[-5,-9],[-1,-9],[1,-12],[43,-147],[3,-22],[1,-25],[3,-13],[1,-7],[-1,-4],[-4,-1],[-38,1],[-2,5],[1,21],[-1,14],[-3,11],[-15,27],[-3,4],[-4,4],[-2,6],[-2,12],[-18,36],[-5,4],[-19,25],[-2,10],[6,12],[-3,12],[-12,27],[-6,7],[-3,2],[-3,1],[-2,1],[-4,4],[-1,5],[-2,7],[-2,6],[-9,6],[-5,7],[-4,9],[-20,53],[-13,26],[-1,10],[3,12],[1,8],[-3,10],[-5,8],[-3,4],[-6,2],[-6,-1],[-5,3],[-2,10],[1,6],[3,12],[1,7],[0,12],[0,5],[-1,5],[-5,11],[-16,21],[-7,16],[-5,6],[-5,3],[-7,0],[-3,2],[-3,4],[0,5],[3,18],[-1,3],[-2,2],[-2,4],[-4,4],[-3,2],[-3,-2],[-3,-4],[-5,-10],[-7,26],[-3,9],[-7,6],[-2,0],[-7,0],[-2,1],[-1,2],[0,2],[-2,2],[-2,5],[-5,8],[-2,4],[-3,3],[-3,3],[-4,2],[-3,0],[-4,-2],[-3,-4],[-4,-3],[-3,1],[-1,5],[-4,28],[-2,5],[-3,4],[-5,7],[-4,-8],[-4,4],[-4,10],[-3,25],[-6,11],[-31,58],[-34,44],[-36,30],[-4,9],[-4,22],[-4,12],[-49,89],[-48,70],[-45,74],[-7,9],[-8,12],[-5,15],[-3,21],[2,9],[5,18],[1,12],[-2,12],[-8,20],[-3,10],[-1,7],[0,6],[1,4],[0,4],[-2,7],[-2,5],[-1,6],[-1,8],[-1,21],[-1,12],[-4,9],[-43,55],[-53,77],[-66,101],[-7,15],[-8,28],[-5,9],[-41,139],[-3,25],[-22,86],[-8,19],[-10,15],[-24,24],[-10,15],[-10,18],[-24,70],[-27,80],[-23,98],[-1,5],[-1,11],[4,13],[9,23],[2,25],[-1,25],[-3,25],[-2,24],[-2,12],[-4,13],[-16,32],[-2,6],[-2,6],[-2,14],[-12,44],[-14,35],[-4,13],[-3,14],[-2,25],[-1,26],[-3,6],[-11,22],[-4,10],[2,3],[1,4],[1,9],[-3,5],[-1,0],[1,2],[1,4],[2,2],[-2,23],[-2,15],[-2,6],[-6,3],[-11,15],[-6,4],[-1,3],[-3,6],[-2,2],[0,-1],[-1,-2],[-1,-2],[-7,-2],[-3,1],[-2,6],[1,3],[4,9],[2,6],[0,3],[0,13],[-1,8],[-12,23],[-4,-4],[-1,6],[0,10],[1,8],[1,2],[1,1],[1,2],[1,5],[-1,4],[-3,14],[3,3],[3,1],[3,-1],[3,-3],[1,5],[0,5],[0,5],[-1,5],[-6,-1],[-3,6],[-8,32],[-2,40],[-5,30],[-7,25],[-40,88],[-7,20],[-12,46],[-15,41],[-10,18],[-19,28],[-3,7],[-3,13],[-6,11],[-12,15],[-6,11],[-3,11],[-1,13],[0,15],[-1,12],[-2,7],[-3,5],[-3,7],[-3,8],[-2,8],[-1,8],[0,10],[1,13],[1,12],[1,12],[-1,14],[-4,13],[-16,30],[-16,36],[-6,10],[-21,25],[-13,9],[-11,3],[-6,0],[-5,2],[-5,4],[-4,10],[-6,22],[-4,8],[-7,2],[-5,-3],[-10,-10],[-5,-2],[-3,0],[-3,2],[-3,3],[-2,4],[-3,7],[-1,1],[-2,-1],[-4,-1],[-2,2],[-5,8],[-1,2],[0,7],[4,8],[1,6],[0,13],[-3,8],[-4,4],[-6,3],[5,28],[1,12],[-1,43],[-2,14],[-3,9],[-3,-6],[-1,10],[2,28],[-1,14],[-3,12],[-5,5],[-6,-6],[-3,18],[2,53],[-1,22],[-10,25],[-3,3],[-4,4],[-1,9],[1,24],[-1,20],[-17,116],[-18,95],[-3,14],[-1,6],[0,6],[2,7],[0,8],[-1,6],[-12,25],[-3,9],[-3,22],[-2,14],[0,11],[-1,3],[-2,4],[-3,2],[-3,1],[-2,3],[-1,5],[-1,13],[-3,11],[0,3],[4,2],[2,-2],[2,-3],[1,-5],[1,-4],[2,-8],[3,8],[6,22],[3,8],[6,12],[1,6],[0,22],[-1,9],[-4,4],[-5,1],[-1,5],[0,7],[0,11],[-3,11],[-3,9],[-10,17],[-3,-4],[-1,-4],[0,-9],[1,0],[3,-4],[0,-4],[-1,-6],[0,-4],[-3,-4],[-6,6],[-9,16],[-23,74],[-11,28],[-25,33],[-5,4],[-5,2],[-6,1],[-6,0],[-3,0],[-1,2],[-1,9],[0,4],[-2,3],[-3,3],[-5,1],[-6,-2],[-6,1],[-2,6],[-1,15],[-4,8],[-9,13],[-16,28],[-18,23],[-29,29],[-8,16],[-6,-1],[-15,-12],[-4,-1],[-4,2],[-6,8],[-3,-4],[-2,3],[-2,5],[-3,4],[-2,0],[-5,-3],[-3,-1],[-4,6],[-10,38],[-8,18],[-4,9],[-1,12],[0,68],[-4,84],[-10,107],[-2,10],[-3,5],[-4,1],[-12,7],[-14,15],[-5,4],[-7,1],[-5,4],[-5,9],[-20,52],[-5,18],[-4,19],[-4,50],[-4,21],[-9,14],[-9,2],[-7,3],[-3,5],[-1,8],[-41,151],[-5,14],[-22,35],[-5,17],[-3,19],[-3,9],[-3,5],[-2,1],[-6,9],[-1,3],[-3,3],[-3,2],[-3,2],[-8,11],[-5,4],[-56,-2],[-11,5],[-11,14],[-14,28],[-42,119],[-18,40],[-1,4],[-2,9],[-1,3],[-2,3],[-4,4],[-3,3],[-2,2],[-3,1],[-4,-1],[-1,-2],[-1,-1],[-3,7],[-14,34],[-4,5],[-6,2],[-5,5],[-30,71],[-25,52],[-2,8],[-13,22],[-9,28],[-20,29],[-11,29],[-4,4],[-7,-1],[-3,2],[-1,5],[1,3],[2,6],[1,3],[-1,5],[-1,0],[-2,0],[-2,1],[-8,12],[-3,10],[-7,29],[-6,16],[-2,5],[-5,8],[-2,3],[-2,6],[-1,3],[0,3],[0,6],[-2,9],[-3,15],[-2,14],[-4,14],[-1,15],[-9,46],[-3,9],[-4,10],[-3,10],[-2,10],[-2,8],[-5,3],[5,17],[1,13],[-3,11],[-5,12],[-5,7],[-2,5],[-1,6],[0,8],[-1,9],[-2,7],[-3,3],[-7,3],[2,9],[5,11],[3,11],[0,9],[3,11],[2,10],[1,9],[-2,8],[-4,16],[3,5],[-2,8],[-4,10],[1,9],[-6,17],[-2,7],[4,16],[3,4],[4,-3],[4,3],[2,-1],[3,-2],[3,0],[2,2],[5,8],[3,4],[5,8],[3,2],[4,1],[3,3],[12,16],[5,3],[5,-3],[8,-15],[4,-7],[3,-4],[2,-1],[3,4],[3,7],[12,6],[10,-3],[42,-30],[21,-28],[5,-4],[5,-1],[4,-5],[2,-11],[2,-25],[8,-22],[34,-60],[9,-10],[11,-8],[46,-14],[3,-3],[12,-13],[4,-4],[13,-5],[6,1],[5,6],[5,4],[6,-3],[6,-7],[5,-4],[12,-2],[23,5],[9,5],[28,21],[12,12],[6,-2],[12,-9],[4,0],[4,4],[14,3],[16,-13],[12,-8],[10,-14],[11,-10],[5,-14],[3,-8],[5,-2],[9,-7],[11,6],[64,57],[8,-6],[38,-100],[46,-80],[12,-11],[6,-8],[4,-10],[13,-48],[2,-11],[4,-49],[2,-17],[6,-26],[1,-6],[-1,-15],[-2,-17],[-2,-10],[2,-4],[8,4],[3,-1],[3,-7],[1,8],[2,1],[5,-5],[0,-3],[1,-3],[2,-2],[2,0],[3,3],[2,1],[7,-3],[6,-7],[4,-11],[3,-12],[2,0],[1,3],[2,3],[1,2],[3,-7],[6,-17],[4,-8],[4,-6],[2,-5],[1,-5],[1,-30],[-4,-43],[0,-3],[-1,-45],[0,-5],[-7,-8],[-12,-9],[-3,-3],[-2,-7],[0,-9],[0,-20],[7,14],[4,7],[5,3],[1,3],[5,10],[1,1],[1,3],[10,-53],[1,-5],[16,4],[6,0],[6,-5],[10,-12],[6,-3],[4,-4],[6,-19],[3,-6],[5,-1],[5,2],[3,-3],[3,-20],[3,-8],[5,-6],[4,-4],[18,-13],[7,-23],[0,-25],[3,-18],[24,-46],[27,-26],[17,-6],[6,-8],[9,-13],[5,-4],[7,-4],[6,-8],[7,-16],[22,-21],[25,-37],[27,-45],[5,-5],[10,-5],[4,-5],[5,-13],[7,-9],[3,-6],[2,-15],[3,-8],[6,-15],[8,-16],[9,-10],[27,-13],[9,-8],[5,-2],[4,-5],[8,-35],[15,-29],[5,-15],[2,-21],[8,4],[6,-11],[6,-14],[7,-8],[6,-8],[3,-20],[2,-69],[0,-8],[-2,-8],[-3,-7],[-2,-8],[-1,-11],[-1,-5],[-3,-9],[0,-5],[2,-5],[2,-2],[3,-1],[2,-2],[2,-6],[0,-3],[-1,-2],[0,-3],[5,-20],[0,-7],[0,-4],[2,-1],[2,4],[2,6],[-1,4],[-2,4],[-1,4],[0,20],[-1,4],[-8,11],[-2,3],[3,10],[9,7],[10,-2],[6,-23],[1,-8],[-1,-16],[0,-8],[4,-20],[0,-6],[2,-12],[3,-15],[5,-9],[3,5],[0,8],[-4,21],[-1,10],[0,24],[1,11],[2,11],[4,8],[4,5],[6,3],[6,0],[3,-2],[0,-5],[0,-6],[1,-5],[2,-3],[5,-4],[2,-3],[1,-4],[1,-16],[1,-5],[2,-10],[1,-3],[1,-4],[7,-11],[3,-2],[1,-4],[0,-4],[0,-1],[19,-118],[7,-25],[8,-23],[20,-44],[15,-25],[16,-16],[13,3],[34,-51],[7,-5],[5,-14],[3,-3],[4,-7],[4,-16],[4,-19],[2,-13],[1,-19],[3,-18],[4,-13],[7,-5]],[[83553,44571],[5,-14],[5,-18],[3,-22],[-4,-24],[-2,-6],[-9,-13],[-12,-28],[-5,-15],[-4,-6],[-17,-10],[-2,-4],[-3,-3],[-18,5],[-5,-4],[-13,-14],[-3,-5],[0,-11],[-2,-10],[-4,-5],[-6,0],[-4,6],[-7,18],[-5,4],[-41,12],[-4,-2],[-2,4],[-18,11],[-2,4],[-3,12],[-1,4],[-12,11],[-1,3],[-8,26],[-3,3],[-2,0],[-2,1],[-2,26],[-3,15],[-11,30],[-3,5],[-2,4],[-3,2],[-5,0],[-3,3],[-2,4],[-1,9],[-3,-5],[-2,2],[-1,6],[-2,5],[-5,6],[-3,2],[-11,2],[-5,3],[-10,16],[-17,19],[-2,7],[-1,16],[-3,8],[-11,6],[0,2],[0,8],[0,2],[-2,1],[-1,-2],[-2,-2],[-1,0],[-7,3],[-13,2],[-12,8],[-6,2],[-4,0],[-6,-3],[-5,-5],[-2,-6],[-2,-10],[-6,4],[-11,16],[-2,1],[-3,-4],[-3,0],[-2,2],[-7,10],[-7,-3],[-11,0],[-12,3],[-11,10],[-11,4],[-4,4],[-13,20],[-3,10],[-5,19],[-3,6],[-4,8],[-8,11],[-4,9],[-1,10],[2,16],[4,16],[6,14],[13,23],[7,8],[8,5],[8,1],[4,2],[8,10],[5,4],[10,4],[9,1],[2,1],[4,6],[2,1],[11,0],[22,-8],[2,1],[4,6],[14,5],[5,-2],[11,-8],[4,0],[5,7],[6,5],[17,7],[5,0],[4,-3],[1,-8],[4,-6],[33,-8],[6,4],[34,53],[4,-1],[1,-14],[2,-6],[12,-20],[16,-49],[7,-12],[4,-6],[5,-4],[6,-1],[4,5],[5,2],[7,-5],[6,-10],[4,-10],[0,-24],[2,-15],[1,-23],[1,-10],[4,-7],[16,-16],[5,0],[2,8],[3,7],[7,4],[13,4],[6,-1],[5,-5],[4,-10],[2,-15],[3,-8],[20,-23],[7,-20],[11,-49],[7,-19],[7,-12],[19,-20],[8,-13]],[[82096,45337],[7,-3],[4,-14],[3,-14],[5,-12],[2,-17],[-5,-11],[-5,-12],[-8,5],[-15,22],[-5,12],[-4,3],[-1,3],[1,4],[9,27],[3,5],[5,-2],[4,4]],[[83256,45364],[4,2],[8,0],[7,-4],[-1,-10],[-9,-12],[-3,-6],[1,-8],[-4,-2],[-4,-1],[-3,-2],[-2,-7],[1,-11],[5,-10],[0,-12],[-2,-5],[-4,-13],[-1,-6],[-3,2],[-3,4],[-2,6],[-2,5],[-2,4],[-3,-3],[-3,-4],[-3,-1],[-2,1],[-3,6],[2,17],[2,6],[4,1],[-1,6],[-1,2],[4,5],[4,6],[1,6],[-5,4],[1,13],[-5,23],[2,13],[6,-9],[1,-4],[1,-6],[2,-13],[1,-5],[6,-5],[4,4],[3,10],[1,13]],[[83210,45425],[1,-8],[2,-5],[2,-5],[3,-8],[-4,-2],[-1,-6],[1,-6],[-1,-3],[-9,-2],[-3,2],[-3,11],[-3,4],[-3,-4],[-4,-11],[-2,-3],[-4,0],[1,-8],[2,-4],[3,1],[1,6],[2,-4],[-3,-14],[-2,-7],[-2,-1],[-3,2],[-2,-5],[-1,-15],[0,-7],[1,-11],[3,-11],[3,-8],[-6,-3],[-13,12],[-5,-9],[-2,4],[2,0],[-1,7],[1,8],[5,20],[0,5],[0,15],[-1,4],[-2,2],[-2,0],[0,2],[0,16],[-1,16],[0,5],[2,5],[2,1],[4,-1],[2,0],[0,2],[2,11],[0,5],[-1,19],[2,4],[0,9],[-3,17],[2,1],[10,10],[1,-9],[0,-12],[2,-11],[3,-4],[14,4],[4,-1],[3,-2],[1,-2],[3,-6],[1,-5],[-1,-3],[-2,-2],[-1,-2]],[[84263,45573],[0,-7],[-1,-4],[-2,-4],[-1,-3],[-2,-41],[-2,-10],[-9,-12],[-12,0],[-23,8],[-23,-10],[-11,-1],[-6,11],[1,20],[4,15],[25,44],[4,5],[4,4],[9,5],[5,1],[9,-1],[7,-2],[7,-5],[7,-9],[2,4],[3,0],[2,-2],[3,-6]],[[82397,45569],[10,-8],[11,-17],[8,-21],[2,-23],[-2,-10],[-10,-29],[-2,-6],[-2,-8],[-1,-45],[-4,-10],[-11,-24],[-3,-12],[-5,-19],[-5,-18],[-7,-28],[-10,-20],[-6,-14],[3,-18],[-1,-9],[1,-6],[3,-1],[2,10],[4,4],[1,-6],[4,-2],[3,-6],[5,-2],[-7,-19],[-11,-4],[-4,3],[-9,-14],[-9,0],[-3,6],[5,14],[2,13],[3,15],[-4,3],[-9,-1],[-7,-12],[0,-16],[1,-20],[0,-22],[-3,3],[-1,7],[0,8],[-2,7],[-3,0],[-2,-8],[-3,-1],[-1,3],[-1,6],[-2,5],[-3,3],[-4,-2],[-11,-9],[-5,-2],[-1,2],[-2,5],[-2,2],[-3,-2],[-4,-6],[-2,-1],[-2,3],[-5,16],[-3,6],[-4,1],[-13,1],[-1,-8],[-3,-5],[-4,1],[-4,6],[3,3],[2,4],[1,5],[-2,4],[-3,1],[-2,-1],[-3,-3],[-2,-1],[-2,-4],[1,-7],[1,-11],[-3,-4],[-3,0],[-3,2],[-2,4],[-2,5],[-2,13],[-2,6],[-3,5],[-1,-1],[-2,-2],[-4,-2],[-5,2],[-16,20],[-8,2],[-3,15],[0,13],[1,12],[4,15],[6,-4],[3,4],[1,-5],[1,-8],[1,-5],[8,1],[6,-1],[4,1],[4,3],[4,6],[2,-3],[3,0],[3,-2],[3,-1],[1,2],[2,3],[2,3],[2,0],[1,-3],[1,-6],[3,-6],[3,10],[3,3],[1,6],[-9,8],[1,24],[2,21],[1,36],[-3,33],[-7,13],[-3,32],[6,18],[6,5],[8,-1],[2,2],[1,4],[2,10],[2,4],[4,7],[8,9],[4,6],[24,53],[5,7],[25,20],[5,1],[8,-10],[21,-12],[11,-3],[4,-5],[6,-7],[5,-4],[11,-3]],[[83079,45654],[7,-9],[5,-12],[2,-14],[-3,-18],[-3,-9],[-4,-9],[-6,-6],[-8,0],[-8,16],[-1,27],[6,24],[13,10]],[[83111,45370],[-1,-1],[-2,-2],[-1,-1],[2,-5],[-2,-3],[-2,-3],[-2,-5],[0,-9],[1,-8],[1,-9],[2,-7],[-2,-2],[-1,-2],[0,-3],[1,-5],[-5,-6],[-3,-7],[-4,-2],[-5,7],[-1,-8],[-2,-3],[-2,1],[-3,4],[-4,3],[-3,-1],[-4,-3],[-17,-5],[-5,2],[-7,12],[-6,19],[-3,4],[-4,2],[-2,-3],[-1,-6],[-2,-6],[-7,-4],[-12,6],[-6,-6],[-8,6],[-5,-4],[-5,-9],[-7,-9],[3,-4],[4,-9],[2,-3],[3,-1],[22,0],[23,-8],[5,-4],[3,-5],[0,-4],[3,-8],[1,-5],[-2,-4],[-3,-3],[-7,-3],[-3,1],[-5,2],[-3,1],[-4,4],[-2,0],[0,-1],[-1,-3],[-2,-2],[-2,-2],[-3,4],[-11,19],[-6,6],[-12,1],[-12,-4],[-57,-34],[-14,6],[-7,35],[1,15],[3,12],[5,11],[4,15],[1,9],[0,9],[0,9],[-1,9],[-2,9],[-2,8],[-2,9],[0,11],[-4,-8],[-1,-13],[1,-26],[-2,-8],[-5,-3],[-5,-3],[-5,-4],[-7,-21],[-4,-18],[-1,-4],[-2,-3],[-4,-1],[-32,-57],[-5,-3],[-6,6],[-6,7],[-5,4],[-3,-1],[-9,-7],[1,1],[-1,2],[-2,1],[-1,0],[-2,-7],[-3,-3],[-2,-8],[-30,-33],[-3,5],[-2,0],[-2,-1],[-3,-2],[-1,3],[-2,11],[-2,3],[-4,0],[-2,-4],[-1,-4],[-2,-5],[-3,-2],[-2,-1],[-4,-1],[-2,1],[-3,3],[-2,4],[-3,6],[-3,-1],[-4,-3],[-1,-2],[-11,-10],[-31,-38],[-11,-10],[-12,-7],[-24,-14],[-15,-3],[-9,7],[-8,4],[-13,10],[-9,0],[-6,-5],[-5,-17],[-4,-10],[-4,-8],[-15,-7],[-17,-3],[-5,13],[-6,8],[-6,7],[-6,-2],[-6,0],[-15,11],[-7,1],[-6,4],[-9,14],[-3,-1],[-1,6],[-4,13],[-4,12],[1,9],[4,14],[-2,11],[-1,13],[0,6],[6,14],[5,14],[11,4],[2,12],[0,7],[-2,4],[-2,3],[-1,2],[-1,4],[-1,6],[-2,6],[-5,-2],[-2,6],[2,19],[0,15],[-7,8],[12,49],[12,6],[2,11],[-1,28],[6,-9],[2,-2],[4,-1],[3,1],[26,18],[13,17],[16,25],[10,12],[-2,13],[6,7],[9,4],[6,4],[6,-16],[4,-2],[9,-1],[3,-3],[4,-6],[8,-9],[10,-16],[23,-20],[-2,9],[1,8],[2,6],[1,8],[0,11],[1,1],[3,-3],[3,-3],[15,0],[6,3],[4,5],[3,-10],[2,-38],[5,-17],[1,12],[1,29],[3,8],[3,-4],[2,-11],[2,-40],[1,-9],[2,-7],[14,-15],[4,2],[2,3],[3,2],[4,-2],[-1,-4],[-1,-4],[3,-2],[2,-2],[2,-4],[3,-5],[-1,-2],[-1,-4],[0,-4],[2,-2],[2,0],[2,-2],[0,-2],[1,-4],[-3,0],[-3,0],[-2,-2],[-1,-2],[2,-9],[3,-21],[3,-9],[5,-5],[5,0],[17,12],[2,-1],[2,-4],[1,-5],[0,-5],[0,-2],[4,0],[5,-1],[5,-4],[4,-7],[6,9],[11,26],[5,6],[0,2],[2,4],[2,3],[1,1],[1,3],[2,2],[2,0],[11,5],[10,0],[2,-1],[5,-6],[2,-1],[15,1],[6,3],[4,6],[3,10],[0,11],[-2,11],[-4,8],[-5,3],[-1,3],[-2,5],[-2,4],[-1,-2],[-1,-4],[-1,-4],[-4,-7],[-4,17],[-13,22],[-4,15],[-2,0],[-2,-6],[-4,5],[-8,18],[-5,4],[-6,-4],[-9,-10],[-4,3],[-5,5],[-5,6],[-4,11],[-16,20],[-16,26],[-4,9],[-6,20],[-4,10],[-8,12],[-4,9],[-2,5],[-3,2],[-2,7],[2,15],[2,17],[3,10],[3,6],[2,2],[2,0],[2,0],[8,11],[1,1],[5,2],[23,19],[6,2],[11,2],[2,-4],[2,-6],[2,-6],[2,1],[3,4],[2,1],[6,-3],[13,0],[12,-5],[10,-13],[5,-22],[1,-24],[1,-12],[2,-5],[1,-4],[10,-24],[6,-24],[2,-7],[2,-1],[1,1],[1,2],[1,0],[9,-18],[3,-2],[4,2],[5,6],[5,8],[8,15],[2,6],[0,6],[2,2],[3,3],[3,5],[4,14],[6,5],[6,2],[5,-1],[3,-3],[4,-8],[3,-1],[12,0],[2,-1],[2,-3],[1,-2],[1,-2],[10,-3],[2,-1],[4,-10],[9,-39],[-2,-10],[-1,-14],[-1,-27],[-7,-41],[0,-9],[3,-3],[5,8],[3,11],[2,6],[1,5],[3,15],[3,11],[0,6],[-2,6],[-1,8],[0,23],[4,18],[6,14],[7,10],[10,8],[13,4],[13,0],[12,-4],[6,-4],[4,-4],[3,-7],[2,-13],[1,-17],[4,-28],[8,-31],[-2,-22],[-4,-23],[2,-21],[0,-15],[1,-13],[3,-9],[7,-4],[4,2],[6,4],[5,5],[3,5],[0,6],[-2,5],[0,4],[6,3],[1,4],[1,5],[0,8],[1,3],[4,-7],[4,-13],[2,-10]],[[84173,45561],[1,-5],[-1,-14],[-2,-8],[-5,-4],[-16,-2],[-6,-3],[-5,-8],[-2,-15],[2,-23],[0,-12],[-2,-8],[-5,-1],[-7,5],[-6,6],[-3,5],[-1,5],[-2,-1],[-2,-5],[-1,-8],[1,-11],[0,-5],[1,-5],[12,-39],[0,-19],[-12,-16],[-3,-1],[-13,-4],[-2,-2],[-4,-7],[-2,-1],[-9,3],[-2,-1],[-7,-7],[-1,-4],[-4,0],[-20,-10],[-3,-5],[-8,-17],[-3,-4],[-18,-13],[-12,-4],[-29,1],[-4,-1],[-6,-4],[-4,-1],[-7,7],[-18,6],[-13,-3],[-10,-12],[-10,-16],[-10,-13],[-36,-21],[-12,-12],[-11,-16],[-4,-2],[-3,0],[-3,2],[-3,0],[-4,3],[-5,5],[-4,7],[-3,5],[-4,-7],[-5,-21],[-3,-4],[-2,5],[-2,26],[-3,9],[-11,12],[-11,1],[-12,-1],[-12,4],[-10,7],[-7,3],[-5,-3],[-3,-13],[1,-13],[2,-13],[-1,-12],[-9,-20],[-12,0],[-24,16],[-13,-2],[-10,-8],[-17,-19],[-5,-2],[-15,2],[-9,6],[-1,3],[-8,-1],[-2,0],[-5,8],[-12,26],[-2,9],[-2,15],[-4,7],[-6,1],[-5,-5],[-4,-8],[-2,-9],[-2,-8],[-5,-3],[-6,2],[-4,5],[-3,5],[-5,4],[-3,0],[-5,-1],[-3,1],[-5,11],[-2,1],[-5,13],[-2,4],[-2,2],[-2,1],[-6,1],[-6,-2],[-12,-6],[-6,0],[-9,3],[-3,1],[-3,-1],[-3,-2],[-3,-1],[-4,4],[-16,-21],[-12,1],[-10,3],[-5,7],[-12,21],[-5,5],[-5,0],[-4,-2],[-10,-10],[-10,-7],[-23,-8],[-8,-11],[-1,0],[-1,0],[-1,-3],[0,-3],[2,-6],[0,-3],[-3,-4],[-4,-4],[-3,0],[-2,6],[-3,32],[-2,2],[-3,0],[-3,1],[-6,5],[-4,8],[-4,10],[-1,13],[-1,86],[1,15],[4,14],[14,31],[0,13],[-1,15],[0,20],[8,-18],[6,-10],[3,2],[1,1],[8,10],[2,1],[2,1],[2,-2],[2,-5],[3,5],[2,8],[2,12],[0,2],[2,8],[0,2],[3,1],[2,-2],[2,-2],[2,-1],[1,1],[1,1],[2,1],[2,1],[2,-1],[1,-6],[2,-1],[4,4],[1,6],[1,9],[1,9],[2,-2],[3,-6],[1,-4],[2,0],[3,13],[10,20],[2,10],[3,4],[17,14],[28,-4],[4,4],[6,19],[3,5],[4,-3],[2,-8],[1,-10],[3,-7],[7,-2],[10,14],[6,-6],[3,-5],[4,-4],[4,-3],[3,2],[2,7],[1,8],[-3,14],[12,-10],[5,-7],[2,-10],[3,-8],[15,-18],[5,-4],[19,5],[5,-3],[5,-5],[6,-3],[11,-2],[13,3],[6,0],[5,-6],[6,-18],[4,-9],[6,-7],[15,-11],[5,-1],[6,0],[3,-2],[2,-4],[3,-3],[7,1],[3,0],[2,-3],[1,-5],[2,-3],[3,-2],[3,0],[5,-2],[3,-2],[3,-6],[7,-22],[6,-6],[12,-28],[8,-6],[4,2],[4,4],[4,3],[5,-1],[5,-4],[2,-4],[1,-7],[1,-4],[2,-1],[3,4],[2,3],[10,13],[3,2],[0,11],[0,5],[2,1],[7,-3],[-1,12],[0,15],[2,12],[4,5],[4,-3],[11,-23],[5,1],[15,11],[6,3],[3,-2],[2,-2],[1,-1],[3,0],[2,2],[6,10],[5,-6],[5,-4],[6,-1],[11,11],[2,4],[1,6],[2,3],[10,3],[2,3],[2,5],[2,4],[3,1],[3,-3],[2,-6],[1,-5],[-4,-7],[-1,-11],[1,-12],[4,-9],[3,-1],[6,2],[3,-1],[3,-3],[5,-7],[4,-2],[4,-4],[25,-44],[8,-9],[8,-1],[45,17],[8,6],[6,11],[4,14],[-1,14],[-1,3],[-5,3],[-1,2],[-1,5],[0,4],[0,3],[1,6],[2,6],[15,13],[4,7],[10,27],[5,5],[10,1],[5,4],[5,-4],[5,3],[4,6],[4,3],[7,2],[4,6],[6,16],[7,11],[17,12],[17,41],[2,8],[-3,6],[-6,3],[-12,1],[-6,-3],[-6,-6],[-6,-8],[-5,-9],[-2,0],[-10,-2],[-2,2],[0,4],[1,9],[8,27],[2,8],[1,15],[3,8],[11,12],[5,9],[3,3],[3,0],[3,-3],[2,-11],[2,-2],[5,-3],[5,-6],[8,-12],[4,-9],[1,-8],[-1,-21],[8,-39],[4,-10],[1,-6]],[[82116,45561],[9,-18],[11,-15],[6,-18],[-4,-26],[-3,-6],[-8,-16],[-6,-6],[-6,-16],[-3,-5],[-20,-3],[-3,-3],[-2,-13],[-5,-9],[-37,-29],[-12,-15],[-9,-21],[-6,-24],[-4,-9],[-6,-4],[-5,-4],[-3,-11],[1,-14],[4,-11],[2,4],[-1,2],[-3,10],[5,4],[2,-10],[-1,-29],[-2,-6],[-4,-5],[-5,-5],[-4,-2],[-7,-1],[-6,1],[-6,3],[-5,7],[0,9],[6,9],[12,13],[3,8],[3,13],[1,14],[-2,11],[-1,4],[-5,21],[-2,2],[-3,2],[-2,2],[-8,13],[-3,9],[-2,8],[-2,9],[-5,9],[-10,13],[-19,38],[-8,10],[-36,37],[-11,4],[-33,0],[-9,7],[-9,14],[-7,17],[-22,69],[-6,57],[2,16],[8,3],[6,-1],[4,-5],[2,-8],[4,-9],[4,-3],[4,2],[8,11],[4,-6],[6,-3],[11,-3],[5,-2],[46,-34],[10,7],[25,0],[11,5],[11,17],[20,42],[11,10],[5,0],[6,-2],[6,-5],[5,-7],[4,-6],[19,-9],[46,-40],[9,-13],[9,-16],[15,-40]],[[80282,45875],[2,-2],[5,0],[1,-4],[-1,-6],[-2,-1],[-3,2],[-7,2],[-15,11],[-17,7],[-3,4],[-5,3],[-11,-4],[-5,3],[-1,8],[1,11],[2,9],[4,4],[15,-14],[14,-5],[9,-5],[15,-18],[2,-5]],[[82102,46381],[1,-16],[-5,-5],[-12,0],[-3,2],[-5,5],[-5,2],[-3,4],[-1,2],[-2,2],[-1,-1],[-2,-3],[-2,-2],[-2,-2],[-2,0],[-2,2],[-1,2],[-2,3],[-3,1],[-9,-10],[-2,0],[1,-8],[3,-3],[3,-1],[3,-3],[3,-5],[2,-3],[1,-4],[-6,-8],[-7,3],[-10,17],[-4,-8],[-1,-3],[0,-4],[0,-2],[1,1],[0,-4],[2,-5],[0,-3],[-1,-2],[-2,-2],[-2,0],[-1,2],[-1,0],[-6,12],[0,4],[3,22],[-10,-2],[-5,2],[-2,7],[1,14],[3,7],[4,7],[4,10],[-4,10],[3,5],[6,2],[6,0],[23,0],[23,-5],[6,-5],[19,-22],[5,-9]],[[81305,47079],[4,-6],[3,-7],[3,-9],[1,-15],[-1,-13],[-2,-11],[-3,-8],[-5,-4],[-3,-1],[-7,1],[-2,2],[-1,5],[-2,-1],[-5,-6],[-7,1],[-2,6],[-1,12],[-3,13],[2,5],[8,13],[1,4],[7,15],[3,-3],[3,2],[4,3],[5,2]],[[78445,47269],[-1,-8],[-4,-7],[-6,-7],[1,-7],[4,-8],[2,-6],[-3,-3],[-13,6],[-2,2],[-1,-2],[-2,0],[-3,0],[-2,0],[-1,-3],[-3,-13],[-3,6],[-4,19],[-3,9],[-33,55],[-8,8],[13,27],[7,6],[8,-4],[8,-9],[4,-3],[5,-1],[4,-2],[3,-7],[5,-11],[17,-11],[8,-9],[3,-17]],[[82179,47648],[0,-2],[0,-4],[2,-3],[1,0],[-14,-25],[-6,-3],[-4,7],[7,17],[15,28],[0,-4],[-1,-7],[0,-4]],[[82332,48460],[2,11],[3,-4],[5,-17],[-1,-22],[-5,-43],[-2,-34],[-3,-21],[0,-12],[-2,-4],[-5,11],[-10,35],[-2,9],[0,8],[1,13],[7,31],[1,11],[2,7],[8,14],[1,7]],[[82306,48268],[1,-4],[5,-4],[1,-5],[1,-6],[-3,-4],[-3,-17],[-3,-8],[-3,-10],[0,-15],[1,-8],[4,-14],[1,-9],[-1,-7],[-3,-2],[-3,0],[-3,-1],[-2,-5],[-2,-5],[-1,-4],[-3,-2],[-4,-1],[-3,0],[-2,-3],[-2,-4],[0,-4],[0,-7],[-1,-4],[-1,-2],[-5,-5],[0,-1],[-1,-3],[-2,-6],[-5,-9],[-2,-2],[-6,-4],[-2,-4],[-5,-14],[-2,-4],[-1,10],[-2,7],[-3,3],[-4,-4],[-2,12],[1,13],[2,13],[1,13],[1,2],[3,1],[3,3],[1,6],[-1,5],[-3,9],[-2,4],[0,11],[2,36],[-1,14],[-2,8],[-6,13],[-5,15],[-2,9],[-2,44],[1,12],[7,38],[1,40],[2,12],[12,46],[6,38],[1,7],[1,3],[10,9],[3,4],[16,31],[5,4],[2,3],[2,6],[2,2],[2,-7],[1,-8],[-1,-7],[-1,-7],[-4,-58],[1,-23],[8,-23],[4,-9],[4,-12],[1,-11],[-13,-9],[0,-12],[2,-12],[2,-8],[2,-10],[0,-11],[0,-26],[1,-14],[1,-6],[0,-22]],[[77918,48621],[0,-11],[2,-8],[6,-14],[-2,-4],[-6,3],[-4,11],[0,13],[4,10]],[[77888,48584],[3,-17],[4,-15],[12,-29],[3,-17],[-5,-11],[-3,5],[-6,13],[-3,6],[-3,4],[-6,6],[-2,3],[0,2],[0,12],[0,4],[-2,1],[-2,0],[-1,1],[-6,9],[-2,6],[0,9],[2,0],[0,-3],[1,-3],[1,-2],[2,0],[2,2],[-1,6],[-3,8],[-2,13],[0,5],[1,10],[1,6],[-15,29],[-4,3],[-5,0],[-3,2],[2,9],[-3,6],[-9,22],[-2,7],[0,7],[-4,10],[-1,7],[0,8],[3,7],[1,5],[-1,14],[-5,41],[0,15],[3,7],[10,11],[4,-4],[2,-3],[2,-4],[5,-18],[2,-3],[2,-2],[1,-1],[1,-2],[16,-35],[9,-12],[9,-31],[14,-29],[1,-13],[0,-9],[-1,-9],[1,-12],[0,-15],[-2,-11],[-5,2],[-3,-4],[-3,-1],[-2,1],[-3,4],[-6,-9],[-1,-5],[2,-3],[4,-1],[0,-4],[-1,-5],[0,-6]],[[77834,48875],[1,-9],[2,-9],[1,-10],[-1,-8],[-3,-4],[-9,-3],[-4,-4],[-2,-8],[-2,-15],[-2,-6],[-6,-4],[-7,2],[-6,5],[-5,5],[-2,-8],[-1,-8],[-3,-3],[-4,3],[-2,9],[0,22],[-2,10],[-4,-1],[1,13],[3,35],[0,16],[-1,12],[-3,8],[-5,6],[2,7],[0,5],[-2,9],[-2,12],[0,4],[2,22],[2,13],[3,5],[5,-3],[3,-9],[2,-8],[3,-4],[15,-30],[6,-14],[3,-5],[9,-6],[4,-6],[2,-10],[1,-6],[7,-13],[1,-9]],[[77728,49112],[7,-25],[3,-13],[0,-11],[0,5],[-2,-6],[-2,-2],[-2,3],[-1,14],[-3,2],[-7,0],[-3,2],[-2,5],[-2,5],[-3,4],[-4,2],[-6,0],[-4,3],[-4,7],[-3,10],[-4,8],[-7,3],[-10,-1],[-2,1],[0,7],[2,6],[1,6],[-3,6],[-2,-3],[-1,0],[0,4],[-1,6],[-2,0],[-2,-7],[-2,5],[-3,19],[-7,16],[-1,6],[1,7],[2,1],[4,-2],[3,3],[-1,5],[-3,12],[0,24],[4,18],[8,9],[11,-2],[3,-6],[2,-8],[3,-7],[6,-3],[3,-5],[2,-12],[2,-23],[4,-19],[15,-46],[0,-3],[-1,-7],[1,-3],[1,-2],[2,-1],[8,-12],[2,-5]],[[80267,49538],[1,-9],[-1,-9],[-2,-9],[-2,-8],[-5,-5],[-17,-13],[-3,-1],[-8,1],[-1,3],[-1,7],[0,8],[0,5],[2,5],[0,6],[0,6],[-1,5],[-2,2],[-4,-1],[-3,3],[3,9],[7,5],[13,6],[3,4],[1,3],[2,1],[5,-4],[3,-3],[8,-11],[2,-6]],[[80488,49816],[1,-3],[2,-4],[2,-4],[1,-5],[-1,-6],[-3,-4],[-6,-4],[-13,-21],[-3,-4],[-4,-2],[-20,-18],[-9,-10],[-9,-7],[-9,-20],[-7,-3],[-4,3],[-5,7],[-6,8],[-2,8],[1,13],[6,37],[3,98],[2,11],[4,5],[4,-1],[10,-6],[5,-1],[3,2],[6,8],[3,2],[5,-3],[10,-12],[4,-5],[5,0],[4,4],[2,5],[3,3],[5,-2],[4,-7],[4,-9],[2,-10],[0,-43]],[[77575,49501],[4,-11],[2,-19],[-1,-19],[-5,-12],[-3,41],[-2,9],[-8,24],[-3,-6],[-2,-1],[-2,-2],[3,-6],[9,-45],[3,-24],[0,-10],[-3,-4],[-4,1],[-6,4],[-7,-2],[-5,-3],[-5,-4],[-3,-6],[-5,-4],[-5,2],[-32,35],[-7,16],[-17,15],[-4,5],[-11,35],[-2,2],[-3,3],[-1,3],[2,22],[-5,24],[-45,137],[-4,5],[-1,3],[-1,3],[1,6],[0,3],[-5,21],[-2,5],[-4,13],[2,13],[7,25],[5,24],[2,13],[0,13],[0,27],[0,13],[2,11],[3,5],[5,4],[5,3],[5,0],[4,-1],[9,-7],[5,0],[5,4],[6,14],[4,2],[12,6],[4,-2],[-2,-11],[7,-3],[6,-12],[2,-14],[-2,-12],[-2,4],[-2,3],[-2,1],[-3,0],[2,-9],[3,-7],[2,-7],[0,-12],[2,-9],[4,-6],[4,-5],[4,-6],[2,-10],[4,-20],[2,-9],[5,-9],[1,-5],[1,-6],[0,-7],[1,-3],[2,-2],[5,-12],[1,-4],[1,-6],[-2,-1],[-2,-5],[-1,-7],[2,-3],[5,-3],[3,-8],[2,-22],[6,-20],[7,-13],[6,-15],[0,-25],[-3,3],[-7,13],[-1,0],[2,-11],[4,-13],[9,-20],[3,-4],[2,-1],[2,-3],[1,-7],[0,-16],[0,-10],[3,-4],[4,-1],[5,1],[3,-4],[3,-9],[1,-11],[-1,-9]],[[77361,50197],[1,-8],[-1,-7],[-2,-8],[-2,-7],[2,-6],[2,-8],[1,-10],[-2,-8],[-1,0],[-1,4],[0,3],[-1,2],[0,3],[-2,-5],[-2,-2],[-2,0],[-2,3],[2,8],[-1,5],[-4,2],[-5,-3],[-1,-7],[-1,-11],[-1,-10],[1,-5],[-9,6],[-21,25],[-11,6],[2,2],[3,5],[2,1],[3,-1],[5,-4],[2,1],[1,7],[7,38],[0,12],[-1,25],[1,11],[1,7],[6,17],[2,5],[2,2],[2,1],[2,2],[2,3],[0,6],[-2,18],[3,8],[3,-1],[3,-7],[12,-42],[3,-21],[-2,-14],[3,-9],[1,-12],[-1,-11],[-2,-11]],[[77355,50376],[5,-25],[9,-23],[8,-23],[-1,-24],[0,4],[-1,-6],[-3,-7],[0,-5],[0,-7],[2,-9],[0,-7],[-2,0],[-8,37],[-30,89],[-4,17],[-8,39],[-5,17],[-3,5],[-5,5],[-4,6],[-1,6],[2,4],[6,3],[11,4],[11,-11],[11,-26],[7,-33],[3,-30]],[[78692,50840],[1,-12],[1,-18],[-2,-15],[-4,-7],[-23,-10],[-4,-3],[-3,-1],[-5,6],[-4,9],[-1,10],[0,11],[6,53],[6,19],[9,7],[5,-2],[5,-6],[4,-8],[3,-9],[4,-12],[2,-12]],[[78754,50954],[2,-6],[0,-5],[0,-13],[-9,26],[-4,7],[-10,7],[-4,6],[-2,11],[3,-3],[16,-14],[2,-3],[3,-3],[2,-5],[1,-5]],[[78838,50995],[12,-6],[10,-14],[7,-18],[5,-19],[0,-9],[-3,-3],[-3,1],[-3,5],[-4,18],[-2,4],[-10,10],[-2,5],[-1,4],[-6,18],[0,4]],[[78746,50930],[4,-8],[1,-5],[1,-7],[-8,-35],[-6,-16],[-7,-6],[-5,6],[-4,12],[-2,13],[-3,5],[-11,33],[-1,12],[-1,12],[1,8],[3,13],[2,19],[3,8],[4,2],[5,-5],[2,-9],[2,-11],[3,-9],[9,-6],[3,-8],[5,-18]],[[78833,50975],[4,-7],[4,-15],[3,-16],[-1,-12],[-1,-2],[-2,0],[-2,2],[-5,9],[-10,12],[-5,11],[-5,15],[-1,15],[5,12],[2,-3],[5,-3],[2,-2],[7,-16]],[[78872,51060],[3,-5],[2,-8],[2,-9],[0,-7],[-2,-5],[-4,-2],[-4,-1],[-3,0],[-3,2],[-15,18],[-3,6],[-1,7],[-1,8],[2,5],[3,1],[5,-6],[0,5],[2,12],[3,-11],[5,-5],[9,-5]],[[79110,51081],[3,-4],[6,-1],[3,-3],[-1,-9],[2,-3],[1,-4],[1,-5],[0,-5],[-1,-4],[-1,-3],[-2,-3],[-2,-2],[-1,6],[0,7],[0,10],[-2,3],[-8,15],[2,5]],[[79878,51084],[6,-7],[4,-5],[1,-4],[-8,-18],[-4,-6],[-4,4],[1,3],[1,3],[2,4],[0,6],[-2,2],[-2,0],[-3,1],[-1,6],[0,5],[2,4],[3,2],[4,0]],[[78733,51069],[1,-3],[0,-4],[-1,-3],[-1,-2],[-4,-1],[-4,3],[-8,9],[-6,-3],[-5,8],[-7,25],[0,7],[2,12],[3,11],[2,5],[2,1],[5,6],[3,1],[4,-2],[0,-5],[-1,-6],[0,-7],[2,-14],[1,-7],[2,-6],[1,-2],[4,-1],[1,-1],[1,-3],[0,-3],[0,-2],[0,-3],[1,-3],[2,-4],[0,-3]],[[78624,50942],[1,-8],[0,-4],[1,0],[-2,-12],[-2,-22],[-2,-9],[-2,-2],[-3,-3],[-3,-1],[-1,2],[-1,2],[-5,12],[-14,29],[-10,12],[-12,4],[-23,-4],[-6,2],[-12,6],[-6,0],[-23,-11],[-11,-3],[-12,6],[-14,21],[-2,4],[-15,24],[1,13],[4,11],[6,9],[13,6],[3,8],[0,12],[-9,56],[-1,23],[6,16],[11,4],[8,-9],[14,-33],[3,-7],[0,-8],[-2,-10],[-1,-9],[4,-6],[7,-3],[5,0],[4,2],[7,8],[4,2],[7,-1],[6,-2],[5,-6],[14,-23],[21,-21],[31,-49],[4,-10],[2,-4],[2,-14]],[[78645,51019],[11,-17],[3,-10],[-2,-14],[-11,-14],[-12,4],[-37,49],[0,2],[-13,24],[-3,4],[-10,8],[-4,1],[-5,3],[-4,8],[-3,8],[-3,6],[-5,2],[-17,-2],[-5,-4],[-6,-6],[-7,-5],[-5,2],[-1,7],[4,11],[9,21],[4,11],[5,25],[3,10],[11,8],[13,-2],[24,-18],[22,-25],[20,-28],[11,-24],[13,-45]],[[78929,51157],[1,-12],[0,-12],[-5,-42],[-3,0],[-4,9],[-1,-4],[0,-4],[1,-3],[1,-5],[-2,-2],[-1,-4],[-1,-5],[-1,-5],[0,-3],[0,-7],[0,-2],[-1,-1],[-4,1],[-1,0],[-6,-3],[-5,3],[-10,12],[-2,0],[-6,-1],[-3,1],[-2,2],[-9,22],[-3,12],[-1,11],[3,6],[3,-2],[4,-10],[3,-1],[2,4],[0,5],[-1,6],[-2,13],[-1,3],[1,3],[3,3],[3,1],[6,-5],[2,0],[4,7],[2,20],[4,5],[3,-4],[8,-21],[4,-7],[2,7],[0,8],[-2,7],[-2,6],[3,4],[4,1],[3,-1],[4,-4],[2,-5],[2,-4],[1,-3]],[[79070,51119],[0,-10],[4,-29],[-5,-13],[-1,-7],[2,-12],[0,-17],[1,-4],[1,-2],[-1,-6],[-2,-5],[-4,-3],[-4,-1],[-2,-4],[0,-5],[-1,-8],[-3,-29],[-9,-3],[-24,17],[2,10],[-2,11],[-3,8],[-6,4],[0,4],[7,0],[3,1],[1,3],[-1,6],[-3,1],[-7,1],[-6,5],[-2,4],[0,7],[2,4],[10,5],[-2,6],[0,5],[2,9],[1,1],[3,4],[2,5],[-4,2],[-1,2],[-3,8],[-1,2],[-4,0],[-2,-2],[-13,-14],[-4,-3],[-6,-1],[-2,-2],[-4,-8],[-3,-2],[-10,-1],[-3,1],[-7,8],[-1,11],[0,12],[-2,12],[0,10],[6,9],[14,11],[3,4],[2,3],[2,9],[2,7],[0,5],[1,3],[4,1],[6,-3],[3,2],[2,7],[1,7],[4,-1],[6,-8],[11,-6],[9,1],[9,7],[9,11],[-1,6],[2,3],[3,-3],[2,-12],[-2,-22],[0,-10],[4,-11],[13,-13],[2,-5]],[[78464,51205],[2,-13],[-1,-15],[-8,-56],[-1,-14],[1,-15],[5,-33],[1,-13],[-1,-6],[-3,0],[-2,0],[-3,-2],[-8,-16],[-2,-3],[-9,5],[-10,16],[-18,44],[-5,17],[-3,10],[-2,10],[1,14],[2,26],[1,22],[-1,10],[-6,10],[-2,12],[-3,13],[-1,10],[1,5],[3,12],[0,6],[-2,24],[1,13],[2,6],[4,3],[6,0],[10,-6],[9,-13],[15,-35],[21,-33],[4,-9],[2,-6]],[[78470,51277],[5,-40],[-1,-11],[-8,-4],[-13,17],[-17,36],[-12,32],[-4,4],[-3,2],[-5,6],[-42,13],[-11,11],[-11,21],[-8,22],[-6,23],[1,17],[12,7],[6,-2],[13,-13],[4,-7],[5,-5],[6,-3],[18,-3],[16,-7],[9,0],[2,0],[3,-3],[6,-7],[3,-3],[23,-13],[8,-15],[1,-28],[0,-47]],[[77376,51466],[4,-6],[6,-12],[2,-12],[-5,-3],[-6,-2],[-9,0],[-8,2],[-9,10],[-4,2],[-3,2],[-3,7],[0,8],[1,10],[3,7],[5,3],[4,-3],[3,-8],[4,-15],[5,-6],[3,4],[3,7],[4,5]],[[76986,51689],[-2,-4],[-6,-8],[-1,-2],[1,-8],[-2,-4],[-4,1],[-9,42],[2,-1],[3,6],[1,6],[3,3],[5,1],[4,-3],[2,-9],[2,-11],[1,-9]],[[78255,51689],[10,-28],[4,-16],[1,-22],[-2,-13],[-9,-22],[-2,-15],[1,-27],[-1,-11],[-4,-12],[-13,-20],[-2,-7],[-3,-6],[-7,-5],[-7,-3],[-6,0],[-13,5],[-11,11],[-8,17],[-6,24],[-3,26],[-2,14],[-7,21],[-1,13],[3,49],[4,18],[6,13],[11,4],[4,-2],[10,-7],[6,1],[4,5],[14,29],[9,7],[9,-11],[7,-18],[4,-12]],[[76845,51729],[4,-3],[3,-5],[0,-6],[-1,-9],[-6,-8],[-6,-2],[-4,6],[0,15],[1,8],[2,4],[2,2],[5,-2]],[[77035,51741],[2,-12],[1,-12],[1,-14],[0,-14],[-1,-6],[-1,-4],[-2,-3],[-2,-3],[0,11],[0,5],[-4,-1],[-3,7],[-2,11],[-3,9],[-12,26],[-2,7],[-6,10],[-29,22],[2,4],[4,4],[12,4],[1,0],[2,-1],[1,-3],[3,-10],[4,-1],[4,4],[3,6],[4,4],[5,1],[5,-2],[2,-5],[-2,-7],[7,-14],[4,-4],[1,-5],[1,-14]],[[82944,51799],[6,-19],[5,-8],[4,-6],[0,-4],[-6,3],[-7,9],[-5,11],[-3,9],[-3,11],[-3,18],[0,16],[6,4],[3,-8],[9,-11],[3,-9],[0,-7],[-5,5],[-8,14],[-3,1],[0,-1],[1,-3],[2,-5],[4,-20]],[[80307,51969],[2,-5],[-1,-4],[-5,-7],[-4,-5],[-8,-5],[-7,-1],[-4,7],[1,8],[2,5],[0,5],[-4,6],[-2,-1],[-3,-4],[-1,-1],[-2,0],[-1,3],[-1,3],[-1,3],[1,7],[3,3],[4,1],[3,-1],[3,-3],[7,-8],[3,-2],[12,-1],[3,-3]],[[79511,52104],[0,-8],[0,-5],[-1,-3],[-2,5],[-3,10],[-2,14],[-3,9],[-1,8],[1,5],[4,2],[2,-3],[2,-6],[2,-8],[1,-20]],[[76799,51900],[-1,-10],[2,-12],[0,-8],[-7,-3],[2,0],[-9,-6],[-3,-4],[-3,1],[-11,14],[-6,-8],[-4,1],[-4,4],[-4,7],[2,2],[3,7],[1,3],[-6,6],[-6,19],[-12,7],[-49,77],[-6,8],[-6,4],[-3,1],[-7,-1],[-1,2],[-3,6],[-2,1],[-1,-4],[-1,-3],[-1,-2],[-2,-1],[-2,-1],[-2,0],[-6,9],[-5,3],[-3,3],[-1,4],[0,5],[-1,6],[-3,5],[-20,0],[-2,3],[1,8],[2,13],[-2,5],[-8,12],[1,9],[-4,6],[-4,5],[0,6],[2,6],[-4,1],[-5,-1],[-3,0],[-1,8],[0,12],[1,12],[5,5],[15,0],[3,3],[0,5],[-1,4],[-2,2],[-1,2],[0,6],[2,10],[0,6],[3,12],[1,4],[1,6],[3,-3],[2,-6],[1,-3],[20,-2],[7,-7],[0,-19],[-5,9],[-3,-3],[0,-23],[10,9],[3,-10],[10,-10],[5,-22],[6,-8],[7,-5],[17,-6],[5,-5],[5,-9],[1,-11],[-8,-24],[0,-12],[5,7],[3,-1],[2,-4],[3,-2],[2,-4],[2,0],[1,4],[-1,4],[-4,5],[-1,5],[4,1],[24,-48],[4,-4],[9,-10],[3,-2],[5,-4],[4,-8],[7,-18],[1,-8],[1,-11],[2,-9],[4,-3],[2,5],[0,9],[0,19],[4,-10],[2,-1],[2,2],[5,-11],[6,-32],[4,-13]],[[80233,52231],[4,17],[7,0],[5,-12],[-4,-17],[0,-7],[2,-23],[-1,-9],[-1,-2],[-6,-4],[-2,-2],[-1,-4],[-2,-10],[-1,-3],[-3,1],[-4,5],[-5,11],[-4,5],[-2,3],[0,4],[0,1],[6,7],[4,8],[5,9],[1,6],[2,8],[0,8]],[[79946,52255],[1,-12],[0,-5],[-12,-4],[-4,0],[-3,3],[2,16],[6,8],[7,0],[3,-6]],[[79389,52245],[3,-1],[8,-5],[3,-2],[-2,-9],[-2,0],[0,5],[-2,0],[-6,-43],[-2,-4],[-4,5],[-2,-1],[-2,-4],[-12,-10],[1,-5],[1,-2],[2,-1],[2,0],[3,-2],[0,-4],[0,-5],[-1,-2],[-3,-1],[-4,-2],[-3,-1],[-3,2],[-2,5],[-2,6],[-1,7],[0,7],[1,7],[2,14],[2,14],[2,15],[1,5],[-2,7],[-7,8],[-3,5],[3,5],[1,9],[0,8],[-2,7],[4,3],[2,-10],[1,-2],[1,-1],[4,-5],[2,-2],[0,-10],[0,-9],[0,-7],[4,-2],[3,-1],[4,-3],[2,0],[1,2],[1,4],[1,4],[2,2]],[[79523,52352],[0,-54],[-2,0],[-6,16],[-4,-4],[-2,5],[-3,6],[-4,1],[1,4],[1,4],[0,3],[0,5],[-3,30],[0,12],[5,-1],[4,1],[6,-7],[5,-10],[2,-11]],[[82639,52444],[5,-5],[2,-5],[0,-7],[0,-8],[-2,-2],[-2,2],[-3,1],[-9,0],[-3,0],[-2,-2],[-4,-6],[-1,0],[-5,5],[-1,10],[2,10],[4,9],[4,4],[5,1],[5,-2],[5,-5]],[[79519,52460],[6,4],[1,-5],[-1,-25],[0,-21],[0,-6],[-2,-4],[-1,2],[-1,6],[0,6],[0,2],[-2,1],[-1,-1],[-1,-2],[0,-4],[3,-16],[2,-4],[0,-4],[-1,-6],[-13,16],[1,3],[0,3],[0,10],[3,13],[1,12],[1,11],[5,9]],[[82673,52506],[4,-1],[5,-2],[4,-4],[3,-7],[0,-9],[0,-13],[-2,-13],[-3,-16],[1,-34],[-3,-10],[-3,-5],[-3,2],[-1,11],[-2,9],[-15,18],[-4,11],[-4,13],[-2,15],[-1,14],[3,15],[7,6],[16,0]],[[82747,52541],[1,-7],[0,-10],[-1,-8],[-4,3],[-14,20],[-2,10],[-10,16],[-2,12],[2,14],[5,5],[7,-1],[6,-8],[4,-10],[4,-11],[3,-12],[1,-13]],[[82643,52529],[-6,-13],[-11,5],[-23,20],[-24,0],[-5,2],[-4,4],[-4,5],[-3,5],[-2,6],[-1,8],[0,7],[1,6],[3,5],[3,5],[4,3],[3,0],[3,-2],[5,-8],[3,-1],[24,-4],[4,-6],[7,-19],[5,-4],[2,-1],[6,-5],[7,-3],[2,-4],[1,-6],[0,-5]],[[82734,52720],[-4,-1],[-5,4],[-8,9],[-4,7],[-7,15],[-4,6],[2,0],[5,4],[2,0],[1,0],[6,-4],[5,-7],[6,-8],[5,-9],[2,-9],[-2,-7]],[[82693,52904],[12,-13],[3,-5],[0,-17],[-3,-15],[-10,-23],[-11,-3],[-13,20],[-7,28],[5,27],[10,19],[4,5],[3,-5],[7,-18]],[[80109,52764],[3,6],[0,-6],[-5,-31],[-2,-7],[-11,-32],[-2,-9],[-2,-10],[-1,-18],[-2,-6],[-4,-4],[-5,-1],[-8,1],[-5,0],[-4,-4],[-8,-10],[-3,-3],[-2,2],[-9,15],[-11,8],[-3,4],[7,17],[1,5],[1,8],[2,3],[2,0],[2,-1],[5,4],[2,8],[1,9],[3,4],[4,0],[4,-1],[3,-4],[3,-7],[8,-20],[4,-4],[-1,8],[-4,28],[-1,1],[-3,9],[-1,2],[-2,1],[-8,-1],[-8,2],[-21,17],[-9,4],[-2,2],[-3,5],[-2,8],[-4,19],[-1,5],[-1,9],[0,5],[-2,3],[-2,3],[-1,3],[-1,4],[1,14],[-1,6],[-2,3],[-2,2],[-1,4],[1,5],[2,8],[7,17],[3,4],[3,1],[2,-1],[3,2],[2,4],[4,10],[1,2],[2,3],[21,44],[4,15],[4,9],[4,9],[4,6],[5,-9],[2,-11],[0,-31],[2,-17],[3,-11],[10,-15],[17,-42],[7,-11],[1,-4],[1,-8],[0,-16],[1,-8],[-3,-7],[-4,-5],[-3,-6],[-1,-10],[3,2],[2,-1],[4,-10]],[[80001,53296],[2,-3],[0,-4],[-2,-5],[0,-4],[-2,-22],[-2,-10],[-3,-5],[-6,1],[-4,1],[-2,3],[-1,2],[0,2],[1,3],[1,3],[3,6],[4,5],[3,5],[2,8],[0,4],[2,5],[2,4],[2,1]],[[76437,53803],[4,-12],[-3,1],[-2,-2],[-3,-2],[-1,-5],[-4,6],[-3,1],[-3,0],[-3,3],[-1,6],[3,6],[3,5],[2,3],[2,11],[3,-4],[6,-17]],[[76420,53852],[3,-5],[2,-7],[0,-6],[-3,-7],[-8,9],[-9,-17],[-1,8],[0,3],[1,6],[-3,1],[-1,2],[1,3],[2,4],[0,4],[-2,3],[0,3],[3,4],[0,4],[-3,3],[-3,0],[-2,-2],[-2,-1],[-3,3],[0,5],[3,5],[3,4],[6,-2],[7,-9],[6,-13],[5,-9],[-2,4]],[[76483,53962],[3,-6],[8,-27],[0,-20],[-1,0],[-1,4],[-1,2],[-4,6],[0,-19],[-2,-7],[-3,-3],[-5,1],[-5,3],[-4,5],[-4,8],[-2,8],[-2,11],[-2,9],[-6,9],[-3,9],[-2,10],[1,5],[6,-1],[3,-2],[3,-5],[4,-16],[3,-7],[4,0],[2,8],[3,9],[2,7],[5,-1]],[[84274,44197],[7,-8],[2,-8],[-1,-26],[-3,-10],[-5,0],[-6,3],[-5,0],[-5,-5],[-15,-25],[-3,-2],[-3,-3],[-4,-2],[-1,-5],[0,-14],[-1,-6],[-1,-6],[-6,-14],[-9,-4],[-10,-2],[-42,-25],[-6,-6],[-3,-7],[4,-7],[0,-4],[-25,-10],[-11,1],[-6,17],[-2,52],[-1,12],[1,4],[6,3],[6,10],[17,11],[7,1],[5,0],[4,0],[2,2],[3,5],[3,1],[3,-1],[3,1],[6,6],[14,29],[6,7],[12,10],[4,9],[1,6],[1,12],[2,6],[2,3],[3,-2],[2,1],[0,9],[2,10],[5,8],[11,12],[15,11],[5,7],[6,21],[3,6],[3,-9],[0,-9],[-1,-7],[-5,-12],[5,-8],[-1,-12],[-4,-11],[-1,-5],[2,-3],[-2,-6],[-3,-5],[-1,-1],[1,-5],[2,-1],[3,1],[3,-1]],[[83871,44293],[6,-6],[5,1],[5,-2],[3,-16],[-3,-24],[-1,-7],[-11,-19],[-6,-8],[-3,-5],[-2,-1],[-1,-1],[-3,0],[-2,-1],[-1,-4],[-1,-4],[-1,-3],[-6,-3],[-17,3],[-13,-1],[-5,2],[-6,7],[-4,6],[-1,2],[-1,4],[4,7],[34,35],[10,32],[5,7],[6,4],[6,1],[4,-6]],[[84295,44459],[2,-8],[9,-5],[0,-9],[-3,-7],[-10,-10],[-2,-5],[-1,-9],[-3,-2],[-4,4],[-3,9],[-4,-4],[6,-27],[2,-16],[-4,-6],[2,-9],[-1,-4],[-3,-2],[-4,3],[-1,3],[-2,8],[-3,6],[-2,-3],[-2,-9],[-4,-9],[-5,-1],[-2,15],[0,17],[2,10],[3,8],[7,12],[4,10],[5,25],[4,10],[4,5],[6,5],[5,1],[2,-6]],[[84424,45597],[3,-3],[0,-6],[-1,-13],[-1,-4],[-3,-3],[-13,-6],[-18,-1],[-6,-3],[-4,-7],[-2,-10],[-5,-20],[-6,-22],[-11,-25],[-3,-2],[-2,7],[-2,8],[-2,5],[-4,-4],[-5,-9],[-4,-11],[-2,-7],[-2,-3],[-3,-2],[-3,-3],[-1,-6],[1,-6],[10,-26],[-3,-12],[-4,-6],[-5,-2],[-6,0],[-3,3],[-6,18],[-3,7],[-13,-28],[-2,-2],[-5,-9],[-2,-2],[-4,1],[-2,2],[-5,10],[-10,15],[-6,5],[-4,-8],[-2,-2],[-3,-2],[-2,-1],[-2,1],[-3,4],[-1,2],[-2,2],[-2,-2],[-1,-2],[-2,0],[-3,13],[7,18],[17,26],[12,24],[4,4],[4,2],[23,21],[3,5],[2,4],[-1,12],[-3,6],[-10,2],[-18,0],[-1,8],[3,9],[6,9],[4,4],[4,-2],[4,-4],[4,-1],[2,6],[4,1],[6,12],[4,3],[8,-1],[7,-3],[-2,-4],[0,-10],[0,-6],[-3,-6],[-7,-15],[-3,-12],[1,-9],[3,-7],[5,-4],[6,-2],[5,1],[5,5],[1,13],[-2,8],[-4,7],[-1,7],[5,6],[3,-8],[4,1],[3,8],[2,11],[-2,8],[-2,5],[-1,5],[1,7],[1,3],[2,3],[2,2],[2,-1],[3,-3],[0,-5],[0,-4],[1,-4],[4,-2],[5,0],[3,4],[-2,7],[0,3],[7,3],[5,8],[5,10],[5,4],[1,1],[3,2],[1,1],[2,-1],[1,-3],[0,-3],[1,-1],[1,-2],[5,-7],[3,-4],[4,-3],[5,-2],[13,-3]],[[84529,45601],[-4,-22],[-1,-13],[2,-11],[1,-12],[-5,-12],[-10,-15],[-4,-10],[-4,-12],[-2,-13],[-2,-25],[-3,-14],[-4,-13],[-4,-10],[-4,-6],[-5,-6],[-7,-3],[-6,-2],[-7,3],[-2,8],[1,22],[-1,11],[-6,16],[-1,7],[-2,8],[-6,0],[-6,-4],[-10,-12],[-3,-1],[-2,-1],[-4,4],[1,7],[4,7],[2,3],[9,38],[5,14],[11,14],[6,5],[4,0],[3,-6],[1,-3],[3,-17],[0,-2],[0,-2],[4,-12],[1,-3],[2,-2],[0,13],[4,8],[7,12],[10,34],[5,12],[8,25],[4,8],[1,4],[2,4],[4,2],[4,-3],[3,-6],[3,-16]],[[88582,45532],[2,-8],[1,-14],[0,-13],[-4,-5],[-54,6],[-13,11],[-7,3],[-13,-1],[-6,4],[-3,11],[1,15],[3,9],[21,30],[5,9],[2,10],[1,13],[2,8],[4,5],[11,2],[16,11],[8,-2],[4,-14],[1,-20],[0,-19],[2,-15],[5,-12],[11,-24]],[[84759,45603],[1,-9],[0,-52],[-1,-11],[-3,-8],[-7,-3],[-6,-1],[-16,-7],[-24,-4],[-47,-18],[-11,-1],[-15,4],[-3,0],[-3,-1],[-3,-3],[-6,-8],[-6,-3],[-5,-5],[-5,-2],[-3,-3],[-1,-1],[-2,1],[-3,6],[-2,2],[-5,1],[-2,0],[-2,-1],[-7,-8],[-2,-1],[-2,-2],[-1,-4],[-2,-4],[-3,-2],[-2,2],[-3,8],[-3,2],[-2,-1],[-5,-5],[-1,-2],[-3,3],[-2,4],[-1,6],[-2,6],[-2,9],[4,10],[8,15],[3,8],[6,22],[1,9],[17,22],[9,3],[2,1],[2,2],[4,9],[2,3],[2,4],[0,4],[-3,2],[-6,-3],[-6,-4],[-20,-20],[-8,1],[1,26],[2,6],[4,5],[4,7],[1,9],[1,8],[3,8],[3,6],[4,3],[5,-3],[14,5],[7,-1],[4,-8],[1,-27],[4,-10],[11,16],[6,6],[7,3],[23,4],[35,-6],[11,6],[2,2],[1,2],[1,1],[4,-1],[1,-1],[2,-3],[2,-3],[3,-1],[14,4],[10,0],[2,0],[1,-2],[3,-6],[6,-20],[3,-7]],[[85580,45654],[9,-11],[1,-7],[-3,-10],[-14,-25],[-3,-3],[-4,-17],[-4,-4],[-5,2],[-4,4],[-12,16],[-3,4],[-4,2],[-17,2],[-6,3],[-4,6],[-7,12],[-3,8],[-1,12],[-1,6],[-3,4],[-4,4],[2,6],[2,3],[3,0],[3,-1],[10,4],[10,-5],[20,-15],[22,-7],[11,1],[9,6]],[[86418,45654],[5,2],[4,4],[6,2],[5,-4],[-5,-16],[-8,-9],[-9,-7],[-11,-16],[-19,-17],[-4,-1],[-7,2],[-14,-10],[-2,-1],[0,-19],[-1,-7],[-3,-8],[-13,-16],[-4,-7],[-3,-2],[-13,0],[3,10],[12,29],[5,10],[3,8],[3,9],[4,4],[2,1],[8,7],[2,3],[2,9],[0,7],[-1,6],[-1,11],[1,10],[3,5],[3,0],[4,-5],[6,-2],[11,29],[6,8],[4,-5],[10,-20],[-2,-5],[-1,-5],[1,-4],[3,-2],[1,2],[3,8],[1,2]],[[86066,45804],[4,-3],[2,-9],[0,-11],[-1,-9],[-3,-8],[-10,-22],[-8,-37],[-2,-6],[-5,1],[-18,9],[-1,6],[-26,62],[-3,13],[1,39],[3,17],[9,7],[26,0],[2,-1],[7,-7],[2,-2],[3,-3],[10,1],[2,-2],[3,-3],[3,-3],[1,-4],[0,-6],[-2,-16],[1,-3]],[[85232,45894],[0,-8],[0,-5],[-1,-6],[-3,-2],[-3,2],[-3,4],[-3,2],[-12,-3],[-6,-1],[-4,4],[-22,-16],[-4,-4],[-6,-12],[-2,-2],[-6,-5],[-2,-3],[-16,-41],[0,-4],[0,-5],[0,-5],[-2,-6],[-2,-6],[-4,-14],[-2,-6],[-4,5],[-5,12],[-4,3],[-13,0],[-7,2],[-13,8],[-8,2],[-23,-7],[-6,5],[-4,8],[-5,8],[-6,3],[-7,-5],[-4,5],[-6,-1],[-15,-5],[-5,-6],[-3,-1],[-7,0],[-3,-1],[-3,-3],[0,-2],[-1,-7],[-1,-3],[-1,-2],[-3,-1],[-1,-1],[-24,-41],[-6,-5],[-5,5],[1,10],[3,12],[3,11],[2,4],[1,7],[0,41],[2,9],[3,7],[3,6],[4,3],[5,5],[2,12],[1,13],[1,10],[1,2],[4,3],[2,2],[1,4],[2,9],[8,25],[2,7],[4,4],[3,1],[3,-2],[8,-8],[3,-4],[1,-4],[3,-3],[44,-11],[3,2],[8,11],[5,3],[5,-1],[7,-4],[6,-1],[5,4],[15,27],[15,14],[9,13],[5,5],[28,12],[4,4],[2,2],[2,-4],[-1,-13],[0,-6],[1,-5],[4,-6],[13,-12],[2,-6],[3,-7],[3,-5],[4,-3],[17,5],[4,-3],[2,-7],[2,-9],[2,-9],[1,-9]],[[85408,46012],[3,-3],[2,-7],[-1,-21],[-1,-6],[-4,-6],[-10,-8],[-4,-1],[-1,-2],[-2,-3],[-2,-12],[-3,-4],[-4,-3],[-5,0],[-2,9],[-1,10],[1,5],[1,5],[2,2],[3,2],[1,2],[1,6],[-1,10],[-3,19],[0,9],[2,9],[4,2],[9,-3],[6,-7],[4,-3],[5,-1]],[[88593,46003],[10,-7],[20,-5],[8,-8],[-5,-11],[-3,-10],[-3,-11],[-4,-25],[-8,-28],[-1,-11],[-2,-54],[-1,-7],[-3,-6],[-16,-16],[-5,-12],[-2,-20],[1,-44],[1,-20],[4,-21],[-13,0],[-6,-2],[-5,-8],[-9,-22],[-4,-8],[-7,-5],[-13,-1],[-6,-2],[-5,-7],[-4,-12],[-7,-27],[-5,-12],[-19,-28],[-5,-4],[-2,-4],[-10,-25],[-8,-13],[-9,-10],[-10,-8],[-11,-5],[-12,0],[-19,16],[-13,4],[-40,2],[-51,2],[-14,-3],[-11,-6],[-23,-19],[-11,0],[0,21],[24,145],[7,26],[1,9],[2,7],[8,13],[3,6],[3,35],[2,6],[2,5],[19,88],[7,20],[13,25],[2,10],[1,12],[2,14],[6,25],[6,16],[17,30],[43,61],[42,30],[37,11],[8,6],[18,7],[27,3],[24,-8],[11,-29],[1,-8],[13,-41],[4,-9],[4,-7],[4,-6]],[[86582,46190],[-4,1],[-3,1],[-2,0],[-3,-6],[-3,-7],[0,-6],[1,-16],[0,-12],[0,-4],[0,-1],[6,-20],[2,-8],[-1,-8],[-3,-7],[2,-6],[2,-4],[3,-3],[2,-4],[1,-1],[1,1],[1,0],[1,-3],[0,-4],[-2,-1],[-1,0],[-1,-2],[-3,-13],[-1,-13],[-1,-4],[-2,-3],[-2,-1],[2,-13],[-2,-14],[-3,-13],[-2,-27],[-3,-12],[-4,-10],[-5,-4],[-1,-3],[-5,-24],[-1,-3],[-5,-7],[-5,-4],[-7,-2],[-5,-6],[2,-13],[-2,-5],[-2,-4],[-2,-2],[-4,3],[2,-13],[-3,-6],[-4,-4],[-2,-3],[-2,-5],[-13,-19],[-2,-8],[0,-8],[-1,-11],[-3,-7],[-3,-5],[-2,-6],[-3,-10],[3,0],[2,-1],[1,-4],[-1,-5],[-2,-5],[0,-3],[0,-4],[-1,-6],[-3,-9],[-5,-10],[-5,-4],[-2,8],[4,23],[1,11],[-2,5],[-2,2],[-2,3],[-1,1],[-4,-6],[-1,-5],[-1,-13],[-1,-6],[-8,-10],[-11,-2],[-21,4],[-2,5],[1,13],[4,24],[-1,9],[-2,9],[-3,5],[-3,-1],[-2,12],[1,13],[4,12],[4,8],[4,0],[3,-3],[2,-1],[3,8],[0,6],[-2,4],[-2,4],[-2,2],[0,4],[5,1],[0,5],[-2,7],[1,8],[-3,-3],[-2,1],[-1,3],[0,7],[-2,0],[0,-4],[-2,0],[-1,15],[2,10],[5,3],[6,-4],[12,-12],[5,-1],[7,5],[-5,2],[-5,5],[-5,6],[-4,20],[0,5],[3,3],[0,3],[1,21],[2,10],[6,20],[2,9],[1,14],[2,11],[4,9],[17,30],[3,3],[2,-3],[2,-5],[1,-4],[3,1],[1,5],[4,17],[1,6],[2,2],[1,2],[1,7],[0,1],[-1,6],[1,6],[1,3],[16,5],[0,4],[-1,5],[0,6],[1,11],[3,7],[5,14],[1,6],[1,5],[1,4],[4,2],[5,1],[3,1],[2,2],[-3,17],[-1,12],[2,10],[9,14],[6,6],[7,5],[6,2],[5,-3],[2,-9],[-2,-22],[0,-4],[4,3],[2,4],[4,12],[4,5],[1,-3],[1,-8],[7,-27],[2,0],[-2,-6],[-3,-6],[-4,-4],[-4,-2]],[[86661,46212],[1,-21],[-1,-12],[-5,-6],[-2,4],[-10,15],[-2,4],[-3,21],[-7,10],[-10,1],[-19,-2],[-9,4],[-3,11],[7,18],[34,2],[6,-2],[5,4],[4,-5],[3,-9],[1,-8],[2,-8],[6,-12],[2,-9]],[[85741,46243],[-3,-4],[2,-8],[4,-9],[-1,-4],[-11,-24],[-4,6],[-11,18],[-10,10],[-4,7],[-1,12],[3,11],[6,12],[8,11],[8,6],[2,-3],[4,-9],[3,-4],[2,-2],[5,0],[2,-2],[4,-8],[1,-8],[-3,-6],[-6,-2]],[[81679,46375],[5,-5],[8,-6],[4,-8],[5,-21],[-8,-1],[-13,-17],[-19,-5],[-7,-14],[-6,-3],[-7,1],[-5,-7],[-6,-21],[4,-3],[3,-6],[0,-6],[-6,-5],[-12,-2],[-15,4],[-20,7],[-5,0],[-6,2],[-6,-12],[-9,1],[-5,-6],[-3,-9],[-2,-9],[-1,-8],[-2,-6],[-2,-11],[-2,-13],[-5,-4],[-5,-5],[-2,5],[-3,6],[-7,5],[-14,-3],[-42,5],[-5,5],[-5,1],[-13,-9],[-6,2],[-2,20],[-1,5],[-2,4],[0,3],[3,4],[0,5],[-3,1],[-7,6],[-2,-1],[-1,-7],[0,-11],[-2,-5],[3,-7],[6,-7],[3,-7],[-1,-7],[-4,-3],[-86,42],[-12,1],[-9,-1],[-5,1],[-2,7],[-1,18],[1,8],[2,8],[-2,4],[-2,-8],[-3,3],[-2,9],[0,11],[0,11],[2,3],[4,1],[5,3],[8,10],[8,16],[15,35],[-1,9],[9,7],[12,3],[8,1],[10,0],[24,6],[22,-8],[35,1],[48,6],[22,-8],[41,10],[33,-2],[37,10],[12,-3],[6,-4],[6,-6],[5,-7],[5,-9]],[[79239,46604],[1,-15],[-1,-23],[-2,-22],[-4,-9],[-5,-3],[-5,-14],[-4,-4],[-2,5],[0,9],[3,11],[2,8],[-3,3],[-2,7],[-2,14],[-12,-26],[-4,-2],[0,11],[5,15],[14,23],[2,-4],[3,6],[3,3],[3,2],[1,-1],[1,3],[2,2],[3,1],[3,0]],[[87356,46575],[7,-2],[3,-4],[-1,-8],[-2,-5],[-2,-11],[-1,-6],[-7,-15],[-7,1],[-6,5],[-7,-3],[0,-4],[5,0],[4,-8],[1,-3],[-2,-5],[-3,-8],[-3,-6],[-3,-3],[-14,-48],[5,-4],[-2,-8],[-13,-23],[-19,-14],[-10,-16],[-6,-5],[-8,27],[-3,9],[-2,2],[-3,3],[-11,7],[-4,7],[-3,18],[-2,12],[-1,7],[0,7],[4,19],[5,46],[5,99],[2,9],[2,5],[1,-6],[3,-11],[15,-5],[7,-11],[-1,10],[-5,16],[0,11],[-15,-3],[-4,18],[2,56],[-2,20],[-6,39],[-1,20],[2,7],[2,4],[4,1],[3,-3],[3,-7],[2,-9],[3,-7],[10,-5],[4,-7],[9,-20],[8,-12],[4,-3],[1,-2],[1,-5],[1,-6],[-1,-5],[-3,-7],[0,-3],[7,-19],[5,-9],[5,-6],[12,-5],[4,-7],[4,-8],[5,-7],[1,-1],[1,2],[1,1],[2,-2],[1,-4],[1,-2],[0,-3],[0,-3],[5,-19],[1,-6],[1,-1],[0,-1],[1,-4],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[2,-27]],[[83484,46953],[3,-24],[1,-26],[0,-26],[-2,-26],[-6,-37],[-1,-13],[1,-32],[0,-23],[-2,-29],[-2,-9],[-4,-13],[0,-11],[1,-23],[-2,-12],[-2,-12],[-3,-3],[-2,25],[-2,19],[-1,11],[2,64],[0,7],[-3,3],[-3,1],[-1,5],[0,7],[0,6],[-4,19],[0,5],[1,7],[4,12],[0,8],[1,36],[-3,61],[2,79],[3,25],[3,20],[3,2],[2,-2],[2,-4],[1,-5],[-1,-14],[2,-10],[3,-8],[1,-9],[1,-13],[7,-38]],[[79119,47059],[4,-8],[1,-6],[-1,-17],[-2,-5],[-5,5],[-8,14],[-4,10],[-2,6],[0,5],[2,7],[3,-1],[6,-7],[5,-2],[1,-1]],[[86889,47042],[2,-5],[0,-14],[-1,-25],[-3,-14],[-2,-12],[-4,-11],[-4,-10],[-5,-5],[-3,9],[-2,14],[-2,9],[0,-7],[-1,-6],[-1,-6],[-3,-2],[-2,2],[-2,4],[-3,10],[0,-4],[-1,7],[-1,7],[0,15],[0,3],[-1,1],[0,2],[0,4],[0,4],[1,1],[2,0],[0,1],[-1,31],[1,14],[4,0],[-1,6],[-3,22],[-1,0],[-2,0],[-2,2],[1,4],[0,3],[1,3],[0,4],[0,4],[-2,0],[-2,0],[-1,2],[-1,4],[0,12],[0,3],[-2,5],[-2,5],[-1,5],[-1,9],[10,-11],[2,-2],[3,7],[4,7],[3,2],[1,-12],[-1,-8],[-2,-7],[0,-4],[3,-5],[2,0],[5,2],[2,0],[1,-3],[1,-5],[1,-11],[3,-22],[0,-5],[2,6],[0,2],[2,0],[1,-12],[1,-13],[2,-11],[5,-5]],[[87432,46823],[0,-6],[0,-5],[-1,-4],[-2,-4],[-1,-5],[2,-12],[-1,-7],[-2,-7],[-5,-24],[-1,-9],[-5,-14],[-20,-18],[-6,-10],[-7,10],[-3,2],[-3,-4],[-2,0],[-4,10],[-1,2],[0,2],[-5,10],[-2,2],[-2,7],[-12,13],[-3,8],[-3,0],[-17,15],[-1,1],[-1,2],[-1,3],[0,3],[-2,2],[-1,-1],[-2,-2],[-1,-1],[-3,3],[-2,7],[-1,7],[-2,5],[-7,20],[-4,22],[0,21],[5,17],[5,4],[5,-1],[5,-1],[5,10],[1,6],[-10,-1],[-6,-1],[-3,7],[1,9],[3,10],[1,10],[-2,7],[-7,18],[1,4],[2,3],[4,6],[3,8],[0,12],[10,11],[-1,9],[0,4],[6,14],[0,7],[-4,7],[-3,-7],[-3,-7],[-3,0],[-1,12],[-2,7],[-6,3],[-9,0],[-5,4],[-4,6],[-7,13],[-2,10],[4,9],[6,8],[6,3],[5,-4],[9,-16],[6,-4],[6,2],[2,7],[1,9],[1,10],[3,6],[4,5],[4,7],[1,8],[1,8],[12,47],[2,-11],[3,-3],[3,3],[2,7],[1,-1],[3,-3],[0,12],[0,6],[-1,4],[-2,6],[-1,3],[0,28],[0,4],[1,3],[2,3],[2,1],[2,0],[1,-1],[0,-3],[2,-2],[3,0],[8,7],[4,2],[13,-12],[2,-6],[3,-22],[3,-7],[9,-12],[2,-6],[-2,-1],[-6,-7],[2,-2],[1,-4],[1,-10],[-2,0],[0,4],[-7,-4],[-2,-2],[-2,-6],[2,1],[8,-1],[2,-1],[3,-4],[6,-7],[7,-17],[6,-20],[-5,-8],[-4,-16],[-2,-15],[0,-9],[2,-1],[2,-1],[1,-2],[1,-4],[0,-4],[-1,-9],[-2,-9],[-5,-12],[-2,-7],[5,-2],[6,-5],[3,-8],[-1,-10],[1,-1],[1,-4],[2,-3],[-3,-4],[-6,-7],[-3,-5],[-1,10],[-3,3],[-2,-4],[-1,-9],[2,-5],[7,-6],[2,-5],[-3,0],[-1,0],[4,-15],[-4,-1],[-8,6],[-5,6],[-2,4],[-2,4],[-2,3],[-4,1],[-4,-1],[-3,-3],[-2,-3],[-2,-5],[12,2],[4,-3],[1,-13],[3,-7],[11,-20],[4,-4],[11,-29],[2,-8],[-1,-14],[-4,-13],[-5,-11],[-5,-6],[-2,2],[0,1],[-2,1],[-1,-8],[-1,-6],[-2,-4],[14,10],[5,8]],[[86995,47325],[1,-9],[0,-11],[-1,-11],[-4,-4],[-1,-7],[-8,-83],[-7,-44],[-2,-6],[-7,-16],[-3,-3],[-3,-1],[-3,-6],[-4,-3],[-2,-5],[-3,-9],[-5,-13],[-6,-17],[-5,-19],[-2,-20],[0,-11],[2,-18],[0,-11],[-2,-7],[-26,-68],[-4,-5],[-1,7],[17,102],[6,16],[2,5],[0,37],[0,10],[10,34],[4,-2],[5,-4],[2,2],[3,24],[1,24],[1,11],[4,20],[11,69],[5,19],[3,9],[1,23],[3,10],[5,4],[5,0],[5,-5],[3,-8]],[[83907,47381],[-1,-5],[-2,-2],[-2,-2],[-1,-7],[1,-16],[1,-96],[-2,-12],[-4,-8],[-5,0],[-5,2],[-4,-4],[-4,0],[-8,28],[-4,10],[-4,3],[-3,0],[-2,1],[-3,4],[-1,5],[-2,13],[-12,36],[-6,24],[2,6],[0,17],[1,7],[3,7],[2,7],[1,7],[1,8],[1,4],[8,3],[2,2],[0,6],[-2,7],[-6,12],[4,9],[4,9],[5,6],[5,4],[-2,-9],[0,-9],[3,-6],[5,0],[2,2],[4,12],[3,3],[2,-2],[1,-5],[4,-35],[4,-9],[6,2],[4,-9],[3,-6],[2,-9],[1,-15]],[[86592,47690],[4,-10],[2,-15],[-2,-14],[-3,-4],[-2,7],[-2,13],[1,15],[2,8]],[[84105,47558],[0,-13],[-1,-6],[-1,-6],[-2,1],[-4,2],[-2,1],[-2,-6],[-1,-7],[-3,-9],[-17,-39],[-5,-14],[-11,-48],[-1,-13],[2,-5],[3,-1],[3,1],[2,-2],[-1,-8],[-1,-6],[-2,-3],[-7,-4],[3,-4],[6,-6],[5,-6],[1,-3],[1,-7],[1,-14],[-1,-15],[-2,-14],[-3,-6],[-3,8],[-3,-8],[-1,-15],[-1,-12],[-1,-7],[-2,-4],[-2,-1],[-1,4],[-1,3],[-2,-3],[-3,-8],[-6,0],[-1,24],[1,29],[-2,14],[-2,5],[-2,9],[-3,3],[-3,-13],[-1,-6],[1,-12],[0,-6],[-4,-20],[-5,-8],[-5,-2],[-5,4],[-4,10],[-3,13],[2,9],[10,10],[0,4],[-5,0],[-3,2],[-3,0],[-4,-6],[-2,-5],[-1,-7],[-1,-18],[-1,-7],[-4,-3],[-14,0],[-3,1],[-3,4],[-3,7],[2,4],[-3,10],[-1,11],[2,11],[7,26],[3,13],[1,14],[2,44],[1,12],[3,9],[3,2],[7,4],[1,4],[1,3],[5,15],[-2,8],[-1,11],[-2,30],[-4,14],[-1,24],[-3,18],[-4,16],[-4,9],[0,4],[5,12],[6,29],[4,12],[7,5],[18,4],[8,3],[8,9],[20,32],[16,19],[9,8],[6,-3],[4,-7],[2,-9],[5,-77],[0,-42],[1,-7],[4,-11],[1,-3],[0,-5],[1,-10],[1,-7]],[[86556,47846],[2,3],[2,0],[2,-1],[2,-2],[4,-13],[6,-22],[3,-21],[-5,-6],[-2,6],[-11,49],[-3,7]],[[84207,47375],[11,-13],[6,-11],[2,-10],[-1,-11],[-3,-9],[-7,-15],[-5,-19],[-4,-7],[-12,-5],[-10,-14],[-5,-4],[-5,3],[-5,14],[-4,3],[-5,-2],[-24,-30],[-5,-8],[-3,-22],[-1,-7],[2,-4],[2,2],[8,7],[2,0],[2,-17],[-6,-26],[-13,-39],[-6,-23],[-4,-7],[-6,-2],[-1,3],[-1,14],[0,5],[-4,7],[-1,1],[0,-4],[-4,-11],[0,-5],[-2,-3],[-2,5],[0,6],[0,14],[-1,6],[-3,0],[-9,-23],[-4,-7],[-6,0],[-5,9],[-19,92],[21,40],[3,9],[-1,8],[-6,4],[2,8],[7,21],[3,19],[1,1],[2,-1],[2,1],[4,11],[4,22],[3,8],[6,4],[8,3],[6,5],[3,12],[0,11],[-1,2],[-13,-11],[-2,1],[3,10],[-3,7],[0,8],[5,12],[1,9],[0,15],[1,9],[5,17],[2,10],[-2,10],[-2,3],[-3,-2],[-4,-4],[-4,-1],[3,10],[15,28],[3,10],[2,14],[0,14],[0,13],[-1,6],[-2,6],[-1,6],[0,6],[2,4],[3,1],[3,2],[2,7],[-2,101],[2,23],[4,24],[8,35],[1,12],[2,9],[3,7],[27,43],[6,3],[8,1],[5,-4],[-7,-19],[2,-11],[4,-9],[18,-31],[4,-11],[8,-24],[3,-13],[1,-13],[-1,-6],[-3,-12],[0,-7],[1,-6],[1,-2],[2,-2],[2,-4],[1,-20],[1,-63],[-2,-15],[-4,3],[-3,12],[-1,24],[-1,3],[-3,9],[-1,2],[-2,3],[-1,5],[-1,7],[-1,6],[-7,4],[-5,-34],[-7,17],[-1,-2],[-1,-3],[-1,-3],[-5,7],[-1,-7],[0,-26],[-1,-4],[-6,-7],[-1,-6],[-2,-19],[0,-7],[2,-24],[-1,-12],[-7,-9],[-3,-10],[-3,-11],[-1,-7],[0,-7],[1,-5],[2,-4],[1,-4],[2,-15],[0,-8],[-1,-13],[-1,-10],[-7,-27],[-2,-13],[1,-11],[5,-4],[6,6],[4,14],[4,12],[8,3],[3,-4],[1,-5],[0,-5],[2,-5],[9,-7],[1,-9],[4,-7],[8,-10]],[[87099,47963],[14,-35],[5,-5],[-7,0],[-7,13],[-6,16],[-6,7],[-3,0],[-7,-3],[-3,-1],[-5,0],[-3,1],[-2,4],[-4,7],[-4,5],[-6,5],[-4,3],[-3,6],[-2,7],[-2,5],[-5,2],[-3,3],[-2,7],[-2,9],[0,8],[2,10],[2,-1],[21,-30],[1,-1],[2,-1],[1,-1],[1,-9],[1,-2],[4,-8],[3,-3],[3,-1],[8,-2],[7,-3],[6,-5],[5,-7]],[[86490,48028],[5,-10],[2,-8],[-2,-2],[-9,14],[-13,11],[-3,3],[-2,6],[-1,6],[-1,6],[0,3],[0,2],[1,3],[1,1],[2,0],[1,-1],[2,-6],[3,-7],[14,-21]],[[86453,48108],[2,-2],[1,-3],[1,-4],[0,-4],[1,-13],[-1,-6],[-2,-3],[-4,5],[-3,12],[-1,13],[-1,10],[7,-5]],[[84223,48105],[8,-13],[5,-21],[0,-23],[-4,-20],[-12,-38],[-7,-20],[-9,-11],[-14,3],[-12,15],[-10,22],[-8,26],[-3,12],[-2,25],[-3,11],[3,7],[7,10],[3,7],[5,15],[4,4],[5,-3],[4,-4],[6,-9],[5,-7],[5,2],[4,6],[7,4],[7,2],[6,-2]],[[86512,48079],[2,-11],[-3,-6],[-6,2],[-6,9],[-2,9],[-6,28],[-1,10],[1,3],[2,3],[5,3],[6,-4],[3,-14],[2,-18],[3,-14]],[[85776,48312],[0,-5],[1,-6],[1,-4],[2,-5],[-4,-10],[-5,-5],[-5,2],[-3,9],[-1,14],[3,10],[5,4],[6,-4]],[[84215,48353],[0,-16],[-5,-2],[-5,1],[-3,-9],[-3,-7],[-6,6],[-5,10],[-4,8],[-1,5],[0,6],[2,2],[4,2],[16,15],[5,-4],[3,-8],[2,-9]],[[85702,48377],[3,-8],[5,-14],[1,-13],[-5,-5],[-4,-2],[-11,-8],[-12,-3],[-4,-2],[-11,-10],[-2,10],[2,12],[2,12],[1,9],[1,8],[1,8],[1,7],[3,5],[10,7],[4,-5],[10,-4],[5,-4]],[[85647,48390],[5,-11],[-2,-7],[-3,-7],[-2,-10],[1,-12],[2,-12],[0,-9],[-7,-5],[-2,1],[-6,7],[-4,3],[-1,1],[-3,0],[-2,-3],[1,-8],[7,-20],[1,-4],[-1,-4],[-5,-17],[-6,-8],[-6,-4],[-8,-1],[-6,-5],[-5,-9],[-5,-9],[-8,-2],[2,6],[6,8],[1,4],[6,24],[14,20],[5,12],[-5,5],[-5,-4],[-11,-18],[-11,-9],[-7,-9],[-7,-3],[-3,-3],[-6,-11],[-5,-12],[-5,-9],[-9,-1],[-6,6],[-2,10],[-1,12],[-3,14],[1,5],[13,32],[6,12],[14,18],[4,3],[4,0],[24,-2],[3,2],[23,37],[12,10],[13,-4]],[[85755,48382],[1,-12],[1,-41],[-6,7],[-5,12],[-6,8],[-4,-7],[0,-6],[1,-7],[0,-6],[-3,-5],[-3,-1],[-2,3],[-2,6],[-3,8],[2,0],[-4,7],[-2,8],[-3,10],[-5,14],[-2,11],[1,10],[6,1],[4,0],[2,-3],[4,-11],[3,-4],[8,-7],[4,-4],[2,14],[3,9],[4,-1],[4,-13]],[[85344,48414],[1,-80],[-5,-22],[-6,-10],[-5,0],[-6,4],[-7,3],[-5,-3],[-34,-36],[-3,-2],[-2,-4],[-7,-18],[-3,-6],[-11,-13],[-22,-14],[-14,-13],[-10,-16],[-6,3],[-6,-6],[-7,13],[-5,5],[-18,10],[-9,14],[-9,2],[-24,24],[-16,28],[-5,3],[-11,6],[-13,14],[-5,13],[-4,6],[-11,0],[-9,17],[-2,21],[-5,25],[-16,25],[-6,9],[-4,13],[-3,15],[0,5],[-10,30],[-4,67],[7,46],[5,10],[8,12],[7,13],[6,-6],[3,-16],[4,-7],[7,-7],[7,-5],[4,-1],[7,5],[0,14],[9,17],[11,9],[34,21],[83,6],[33,-8],[6,-7],[4,-14],[5,-9],[7,6],[5,-9],[6,-5],[6,-2],[6,-5],[10,-14],[5,-3],[8,-9],[3,-4],[2,-6],[2,-5],[0,-6],[1,-21],[0,-4],[-2,-1],[-3,1],[-3,2],[-4,5],[-4,0],[-3,-7],[-1,-9],[2,-11],[2,-10],[2,-7],[2,-1],[3,-8],[4,-7],[6,-4],[3,3],[3,14],[3,3],[3,-2],[10,-11],[12,-4],[6,-5],[3,-9],[-2,-11],[-5,-26],[-1,-13]],[[79696,48735],[2,-13],[-7,-26],[1,-14],[-8,-5],[-1,-1],[-13,6],[-5,5],[-11,19],[-10,7],[1,6],[3,6],[1,2],[2,9],[1,3],[6,9],[6,6],[5,3],[4,-7],[5,-5],[13,-5],[5,-5]],[[79749,48776],[-1,-15],[-1,-11],[-2,-4],[-4,2],[-3,3],[-4,3],[-3,5],[-5,5],[4,13],[4,10],[4,6],[0,2],[1,3],[3,1],[1,-1],[2,-10],[4,-12]],[[79831,48771],[2,10],[7,10],[9,6],[7,2],[3,-1],[0,-9],[1,-4],[2,-6],[-3,-13],[-4,-13],[-5,-10],[-10,-6],[-5,-13],[-3,5],[-8,20],[-8,11],[2,7],[5,-4],[4,4],[4,4]],[[86353,48353],[1,-7],[0,-6],[-1,-11],[-1,-7],[-4,-12],[-1,-4],[-1,-5],[-4,-12],[-1,-7],[-2,-77],[2,-8],[3,-9],[0,-7],[-7,-3],[-5,5],[-9,16],[-4,4],[-6,1],[-27,22],[-5,1],[-2,5],[-12,28],[-4,6],[-4,5],[-5,4],[-7,2],[-4,3],[-3,8],[-5,16],[-4,7],[-4,5],[-6,3],[-6,1],[-6,3],[-12,18],[-52,36],[-5,11],[-1,2],[-4,1],[-14,11],[-10,11],[-5,8],[-3,7],[0,4],[-3,7],[-1,5],[1,18],[-1,5],[-7,20],[-12,9],[-96,21],[-10,-3],[-2,-19],[14,-41],[3,-21],[-9,-15],[-13,1],[-23,24],[-12,7],[-34,5],[-12,7],[-22,24],[-8,5],[-7,0],[-21,-4],[-6,-5],[-6,14],[-1,7],[3,12],[9,29],[-3,11],[-5,8],[-5,4],[-7,1],[-5,4],[-4,1],[-1,-3],[-1,-3],[-5,-15],[-16,-13],[-3,-5],[-2,-6],[-23,-41],[-2,-6],[0,-3],[-2,-3],[-1,-4],[0,-7],[0,-5],[2,-3],[2,-3],[1,-3],[-4,-13],[-12,-3],[-13,2],[-11,-2],[-11,-12],[-7,-3],[-5,5],[-4,7],[-10,10],[-4,9],[-33,112],[-3,6],[-11,1],[-6,3],[-8,6],[-1,0],[0,2],[1,14],[1,16],[4,17],[-1,12],[-3,10],[-5,4],[-9,-5],[-7,-14],[-5,-19],[-4,-18],[-3,-21],[-2,-59],[-2,-8],[-2,-9],[-4,-19],[-2,-6],[-2,-2],[-6,-1],[-2,-2],[-1,-5],[-2,-12],[-4,-12],[-2,-11],[-4,-20],[-1,-11],[0,-5],[2,-6],[0,-4],[-4,-12],[-1,-7],[-7,18],[1,28],[8,51],[0,27],[-1,13],[-2,5],[-2,4],[-8,24],[-3,34],[-2,9],[-7,12],[0,5],[6,5],[3,2],[6,1],[2,1],[3,6],[7,16],[3,3],[5,3],[7,12],[4,5],[5,3],[6,2],[5,-1],[5,-4],[6,4],[-4,20],[0,7],[1,7],[5,10],[1,5],[-3,6],[-6,0],[-4,2],[2,8],[2,2],[8,3],[2,3],[5,20],[0,-1],[0,3],[0,3],[0,4],[1,0],[2,0],[2,1],[1,5],[0,7],[2,6],[2,4],[4,1],[7,-3],[47,0],[10,6],[11,2],[11,6],[5,1],[6,-2],[11,-8],[7,-2],[55,-1],[12,-3],[6,0],[12,4],[11,6],[19,18],[10,6],[5,-10],[0,-20],[-2,-24],[5,-6],[7,-25],[4,-6],[3,1],[6,3],[3,0],[1,0],[1,-2],[1,-1],[1,-1],[2,2],[0,3],[-1,4],[0,4],[-1,1],[0,2],[0,3],[3,2],[1,0],[1,-4],[1,0],[3,-7],[2,0],[1,9],[2,6],[4,5],[9,7],[15,17],[8,6],[2,9],[0,10],[2,10],[8,9],[12,4],[22,0],[3,3],[2,0],[1,-5],[0,-3],[1,-2],[2,-1],[15,-5],[40,-35],[3,-1],[4,-4],[5,-19],[4,-6],[4,0],[3,3],[4,4],[3,1],[2,-2],[0,-5],[1,-7],[3,-5],[3,6],[5,-4],[4,-9],[5,-10],[5,-5],[23,-11],[46,1],[25,8],[12,-1],[12,-9],[28,-56],[4,-4],[21,-17],[3,-4],[1,-5],[2,-20],[1,-5],[5,-19],[3,-24],[0,-50],[1,-9],[5,-17],[2,-7],[1,-6],[5,-2],[11,2],[11,-1],[9,-7],[6,-10],[4,-14],[-6,-4],[0,-12],[3,-12],[3,-13],[9,-18],[3,-10]],[[86555,48909],[7,9],[4,4],[4,0],[-3,-9],[-6,-9],[-7,-6],[-5,-1],[-2,3],[2,3],[6,6]],[[80081,48783],[-2,-11],[-2,-8],[-3,-6],[-1,-6],[-2,-15],[-12,-31],[-3,-16],[0,-6],[2,-9],[0,-5],[-1,-6],[-2,-12],[-1,-5],[-1,-2],[-1,-4],[-1,-5],[-1,-5],[1,-4],[5,-9],[2,-5],[-7,-1],[-10,-9],[-5,-3],[-7,0],[-5,-3],[-3,-6],[-1,-11],[0,-21],[-3,-3],[-8,0],[-6,-3],[-5,-4],[-4,2],[-3,13],[0,27],[-1,13],[-7,9],[-15,28],[1,1],[0,4],[-1,6],[-2,5],[-3,5],[-1,0],[-2,-3],[-4,-2],[-5,-3],[0,-9],[4,-16],[0,-22],[-7,-13],[-17,-19],[-19,1],[-8,-21],[-7,-5],[-8,7],[-2,14],[3,17],[9,27],[1,2],[-1,4],[-1,2],[-1,2],[-2,6],[-7,12],[-2,6],[0,7],[1,7],[-1,7],[-1,6],[-1,5],[-1,6],[0,7],[1,8],[5,12],[1,6],[1,22],[-1,2],[-5,-2],[-7,-6],[-3,0],[-2,6],[1,7],[2,7],[4,5],[4,2],[5,6],[2,17],[-1,18],[-4,16],[4,3],[4,6],[4,7],[2,6],[-1,38],[4,59],[5,14],[11,5],[5,0],[8,-5],[4,0],[5,4],[8,13],[4,4],[4,-14],[10,-9],[10,-3],[4,3],[15,-6],[5,-3],[2,-7],[5,-30],[2,0],[2,16],[2,7],[4,5],[8,-8],[2,-2],[3,-11],[1,-3],[5,-2],[4,-7],[2,-9],[1,-10],[6,5],[4,-2],[19,-47],[3,-22],[4,-21],[1,-11]],[[87383,49039],[0,-13],[0,-4],[-4,-4],[-5,0],[-3,3],[-1,6],[3,8],[-7,9],[1,9],[8,15],[2,9],[1,13],[1,22],[3,-4],[1,-5],[0,-7],[0,-8],[0,-49]],[[87328,49283],[4,-1],[3,-4],[3,-6],[2,-6],[0,-4],[-1,-4],[-7,-27],[-2,-24],[-4,-10],[-5,-3],[-5,11],[-2,14],[0,17],[2,16],[3,14],[1,6],[3,5],[2,4],[3,2]],[[85018,49058],[2,-13],[3,-11],[1,-10],[-4,-13],[-8,-7],[-9,9],[-8,17],[-5,17],[-3,20],[0,39],[-3,18],[-2,7],[-7,12],[-2,5],[-2,8],[0,29],[-3,16],[-4,16],[-3,17],[0,20],[2,10],[3,10],[6,18],[4,9],[2,3],[3,2],[3,0],[3,-4],[8,-13],[2,-6],[2,-7],[0,-7],[-1,-17],[-5,-31],[-1,-16],[1,-27],[24,-108],[1,-12]],[[84404,49315],[2,-24],[1,-5],[-3,4],[-3,-2],[-2,-4],[-2,-2],[-6,3],[-5,5],[-1,7],[-4,34],[-1,16],[5,13],[15,-33],[3,-5],[1,-7]],[[85091,49392],[3,0],[1,1],[0,-7],[-3,-5],[-17,-17],[-4,-1],[-10,1],[-6,-2],[-3,-2],[-1,-2],[-2,-4],[-3,-1],[-7,2],[-23,-4],[-3,-1],[-7,-7],[-9,1],[-3,-1],[-9,-12],[-6,-5],[-5,3],[-6,10],[-4,4],[-5,-1],[-19,-9],[-46,2],[-6,-2],[-13,-8],[-6,-2],[-13,0],[-4,-1],[-11,-7],[2,10],[1,12],[-1,10],[-2,8],[-2,4],[-12,13],[-2,-3],[-2,-11],[-3,-3],[-2,3],[-2,5],[-1,6],[0,5],[0,13],[3,10],[4,5],[4,2],[1,6],[1,5],[2,3],[3,1],[2,-3],[4,-9],[2,-2],[3,0],[5,3],[4,7],[3,2],[1,-3],[0,-5],[0,-4],[1,-3],[1,-2],[18,5],[8,-1],[6,-8],[4,2],[22,-6],[2,1],[3,2],[4,4],[5,8],[3,0],[6,-3],[12,-1],[32,9],[13,0],[35,-12],[47,-4],[12,-4]],[[84203,49424],[3,-6],[2,-14],[0,-14],[-3,-10],[-3,-4],[-4,-7],[-3,-7],[-1,-9],[-1,-6],[-4,-4],[-3,0],[-1,6],[0,31],[2,12],[4,24],[1,6],[0,8],[2,4],[4,-2],[4,-5],[1,-3]],[[87287,49440],[3,-3],[1,-11],[-2,-20],[-2,-2],[-5,-8],[-3,-8],[5,-13],[-4,-21],[-5,-22],[-5,-13],[-4,28],[0,11],[2,28],[16,51],[3,3]],[[86218,49351],[-9,-14],[-3,-9],[25,-21],[1,-8],[-2,-2],[-4,0],[-3,-2],[-2,-4],[-1,-3],[-1,-3],[-2,-5],[-3,-2],[-2,2],[-2,4],[-3,2],[-2,3],[0,6],[0,6],[1,2],[0,3],[-1,6],[-1,3],[-3,-6],[-5,-19],[-2,-4],[-4,-3],[-3,-9],[-3,-10],[-3,-6],[-9,-7],[-19,-1],[-8,-4],[-2,4],[-1,4],[-2,2],[-2,2],[2,3],[2,1],[-8,8],[-5,2],[-15,-2],[-12,12],[-12,1],[-3,1],[-3,5],[-9,7],[-5,7],[-4,4],[-2,2],[-5,11],[-1,3],[-12,11],[-7,3],[-3,5],[-5,13],[8,11],[36,26],[1,2],[0,3],[0,2],[1,1],[4,6],[3,1],[9,3],[6,5],[15,18],[5,4],[6,3],[12,2],[11,6],[7,1],[16,-7],[4,1],[4,9],[6,8],[6,8],[9,7],[3,2],[3,0],[2,-2],[1,-9],[-1,-28],[15,-22],[3,-8],[4,-13],[2,-12],[0,-9],[-3,-3],[-2,0],[-1,-2],[-1,-14],[-2,-2],[-2,0],[-3,-2]],[[84809,49416],[1,-8],[1,-42],[-1,-11],[-3,-2],[-10,7],[-6,0],[-17,-5],[-3,1],[-6,3],[-3,1],[-2,-2],[-5,-8],[-3,-3],[-5,1],[-6,3],[-6,1],[-5,-7],[-2,-10],[-1,-10],[-2,-7],[-7,1],[-8,12],[-4,2],[-8,-2],[-7,3],[-10,12],[-7,1],[-12,-7],[-21,-27],[-11,-10],[-25,-14],[-4,-5],[-3,-2],[-4,-1],[-8,1],[-17,-4],[-6,0],[-7,5],[-2,7],[-1,10],[-16,52],[-2,10],[1,26],[2,11],[4,11],[4,23],[1,27],[4,22],[11,7],[4,1],[13,5],[4,4],[5,8],[2,0],[1,-6],[-1,-12],[8,9],[10,4],[11,2],[16,-5],[11,-7],[4,-5],[4,-3],[16,-3],[16,-14],[18,-6],[2,0],[2,3],[1,1],[1,-1],[3,-5],[1,-2],[7,-4],[3,0],[4,-4],[3,-17],[4,-8],[0,3],[1,2],[1,3],[3,-5],[4,-2],[4,0],[4,3],[-3,3],[-1,1],[2,9],[3,27],[2,5],[3,-1],[2,-3],[1,-3],[2,-2],[10,-3],[3,-11],[0,-13],[-1,-23],[1,-4],[3,-1],[4,1],[1,4],[1,6],[1,7],[2,9],[4,7],[4,3],[4,-1],[4,-7],[1,-5],[-2,-6],[-2,-6],[-2,-7],[1,-2],[6,5],[3,-1]],[[88013,49424],[14,-17],[0,-3],[-3,-2],[-2,-8],[-3,-2],[-21,-1],[-10,-3],[-8,0],[-2,-2],[0,-6],[-2,-4],[-3,-3],[-6,-3],[-3,-3],[-2,-4],[-3,-3],[-3,-2],[-25,6],[-6,0],[0,-4],[2,-3],[2,-6],[0,-5],[-3,-3],[-3,1],[-5,6],[-3,1],[-3,0],[-6,-3],[-3,-1],[-3,2],[-8,6],[-5,2],[-11,9],[-5,2],[-2,-2],[-2,-5],[-2,-1],[0,-1],[-2,0],[-3,0],[0,1],[-2,-4],[-2,-4],[-2,-5],[-1,-8],[-2,0],[-2,7],[-2,3],[-3,-1],[-3,-5],[-4,17],[-9,11],[-21,9],[-3,0],[-6,-1],[-2,1],[-3,3],[-4,8],[-2,1],[-6,1],[-5,2],[-4,4],[-7,9],[-12,12],[-3,2],[-2,7],[-5,2],[-12,1],[-5,4],[-9,10],[-10,3],[-2,2],[-4,8],[-2,2],[-4,-1],[-4,-3],[-3,3],[-3,6],[-4,3],[-2,-2],[-4,-4],[-5,-3],[-3,3],[-7,9],[-7,1],[-8,-2],[-8,2],[-3,5],[-1,5],[-1,6],[-2,8],[-1,1],[-5,-1],[-2,0],[0,4],[-1,5],[-1,5],[-2,3],[-2,2],[4,4],[4,4],[2,0],[2,4],[4,0],[29,-14],[57,-9],[19,-9],[11,-2],[17,9],[21,-12],[8,6],[10,-7],[26,0],[11,-5],[2,-2],[2,-7],[2,-3],[3,0],[7,1],[2,-3],[5,-7],[5,-7],[10,-8],[6,-1],[18,5],[46,-13],[24,5],[5,-2],[10,-9],[5,-2],[10,-1],[5,-3],[5,-4]],[[79657,48953],[13,0],[5,-3],[0,-8],[-2,-4],[-2,0],[-2,1],[-3,-1],[-10,-11],[-3,-2],[-4,-4],[-5,-8],[-13,-42],[-17,-101],[-3,-24],[3,-19],[10,-13],[3,-1],[4,0],[2,-3],[3,-5],[2,-5],[2,-4],[4,-2],[5,-4],[2,-9],[0,-11],[-2,-9],[2,-9],[2,-3],[-3,-4],[-2,3],[-2,-4],[-2,-4],[-4,-3],[-2,1],[-2,3],[-2,1],[-4,-6],[-2,2],[-1,5],[-1,2],[-15,6],[-8,-3],[-2,-15],[-3,3],[-1,1],[-6,-7],[-4,7],[-2,13],[-1,13],[-2,7],[-3,5],[-6,9],[-2,6],[-3,14],[-3,6],[-6,3],[-13,0],[-5,3],[-13,28],[-58,43],[-6,3],[-20,3],[-4,6],[-18,62],[-4,25],[-2,27],[3,25],[6,26],[3,26],[-4,25],[-9,12],[-10,9],[-9,15],[-3,28],[2,18],[0,6],[0,6],[-3,9],[-1,10],[-3,12],[0,6],[0,20],[-1,17],[-2,8],[-2,5],[-5,5],[-4,4],[-17,5],[-1,1],[-3,5],[-1,1],[-2,0],[-3,-3],[-1,-1],[-9,3],[-2,1],[-4,7],[-5,16],[-3,6],[-7,-9],[-14,-10],[-6,-6],[-5,-8],[-3,-1],[-5,1],[-18,0],[-14,-8],[-2,2],[-2,3],[-6,19],[-1,4],[-10,11],[-5,2],[-9,-2],[-5,-3],[-4,-3],[-6,21],[0,24],[3,23],[5,17],[8,11],[32,26],[21,31],[8,23],[-3,26],[-10,14],[-6,10],[2,5],[2,2],[0,5],[-1,11],[1,6],[3,3],[3,2],[2,3],[1,4],[2,9],[1,4],[2,0],[4,0],[1,2],[12,24],[3,3],[13,-1],[5,3],[3,3],[2,5],[3,5],[8,4],[5,-8],[2,-15],[0,-15],[3,-14],[5,-12],[7,-8],[8,-5],[-3,-9],[-11,-21],[-1,-9],[4,-11],[5,-9],[4,-6],[6,-5],[3,1],[4,3],[5,1],[2,-2],[1,-10],[2,-4],[2,-1],[8,1],[-3,12],[-3,11],[-9,20],[-3,10],[0,12],[2,22],[-1,2],[-4,17],[-1,5],[-1,10],[0,5],[-2,8],[-2,8],[-3,7],[-3,5],[7,5],[25,-1],[7,5],[11,17],[5,-1],[6,-2],[2,-6],[2,-9],[3,-10],[2,-2],[3,0],[6,0],[2,-2],[13,-20],[2,-4],[1,-6],[0,-6],[-3,-6],[0,-6],[0,-25],[1,-7],[2,-5],[2,-3],[2,-3],[1,-5],[2,-11],[1,-4],[2,-3],[1,-3],[2,-3],[1,-6],[0,-7],[1,-6],[2,-4],[3,-1],[3,-2],[0,-6],[-1,-7],[-1,-5],[15,-35],[1,-6],[-1,-5],[-3,-39],[0,-26],[10,-101],[18,-103],[7,-25],[8,-22],[10,-19],[5,-5],[7,-6],[6,-2],[3,7],[3,1],[31,-23],[36,-13],[19,-15],[5,-2]],[[87578,49595],[4,-2],[2,-3],[3,-1],[5,2],[-6,-16],[-10,-7],[-25,-2],[-23,5],[-2,5],[0,12],[3,9],[6,-2],[6,-4],[15,4],[6,-6],[4,-2],[12,8]],[[85595,49526],[4,-26],[-2,-19],[-7,-14],[-10,-10],[-11,-3],[-33,19],[-5,0],[-10,-6],[-7,-2],[-42,4],[-5,-3],[-4,-7],[-3,-7],[-3,-3],[-22,-5],[-10,0],[-11,9],[-17,18],[-15,32],[1,13],[5,22],[0,11],[-1,8],[1,8],[4,10],[-3,11],[2,11],[3,10],[1,10],[1,15],[2,1],[7,-10],[6,-11],[1,-1],[2,3],[5,14],[1,5],[2,7],[28,42],[3,1],[22,-10],[8,-6],[7,-8],[2,-9],[3,-11],[6,-10],[7,-7],[6,-3],[1,1],[5,6],[3,2],[4,-3],[5,-12],[3,-2],[22,-32],[5,-15],[3,-6],[3,-4],[6,-6],[3,-4],[3,-3],[2,1],[2,3],[3,1],[3,-2],[2,-6],[3,-12]],[[85469,49751],[2,-10],[-2,-11],[-3,-9],[-4,-5],[-6,1],[-15,16],[-11,4],[-5,0],[-3,-6],[-2,-9],[-5,2],[-5,6],[-4,3],[-1,5],[4,11],[7,16],[4,6],[5,4],[4,1],[17,-13],[5,-8],[13,-2],[5,-2]],[[84306,49721],[5,-1],[5,-4],[3,-7],[1,-11],[-1,-13],[-4,-21],[-1,-12],[0,-19],[0,-5],[-1,-7],[-7,-16],[-12,-20],[-2,-3],[-5,-2],[-2,-3],[-6,-5],[-7,10],[-6,-7],[-1,22],[-2,10],[-5,4],[-1,3],[0,7],[0,7],[-3,3],[-3,0],[-3,-1],[-2,-2],[-2,-5],[-6,-22],[-3,-26],[1,-53],[-1,-13],[-2,-6],[-2,3],[-1,14],[-1,6],[-3,-1],[-11,-16],[-2,2],[-2,5],[-2,6],[-9,5],[-2,3],[-1,6],[-1,6],[1,6],[2,2],[3,3],[13,18],[2,19],[-6,78],[1,19],[-1,6],[-1,3],[-2,3],[-2,1],[-2,-15],[-4,-5],[-4,-3],[-4,-5],[-6,-28],[-2,-4],[-3,-4],[-3,-10],[-3,-19],[-5,-17],[-6,-14],[-20,-39],[-7,-9],[-6,3],[-17,84],[-2,25],[1,25],[3,27],[4,23],[18,53],[4,5],[6,-2],[10,-9],[4,-1],[3,4],[6,10],[3,2],[12,4],[11,0],[2,-2],[2,-4],[2,-4],[3,-2],[4,2],[1,6],[0,7],[2,6],[4,3],[1,-2],[2,-3],[2,-2],[12,-41],[-2,-5],[-2,-6],[-2,-4],[-4,-1],[-2,-3],[-1,-8],[0,-16],[1,-7],[2,-5],[3,-5],[2,-5],[0,-9],[0,-18],[1,-9],[7,10],[4,13],[8,29],[1,2],[4,4],[1,2],[4,12],[2,18],[3,8],[3,3],[5,0],[3,0],[2,2],[2,0],[1,-5],[0,-7],[1,-4],[4,-6],[2,4],[2,8],[3,4],[3,-3],[6,-14],[5,-3]],[[86098,49781],[1,-8],[-2,-8],[-7,-12],[0,3],[-1,3],[-1,2],[0,4],[-11,-18],[-6,-8],[-8,-2],[12,16],[2,4],[-2,4],[-3,-2],[-4,-4],[-1,-2],[-3,-1],[-20,1],[-5,6],[1,8],[6,9],[25,17],[6,1],[4,-8],[6,-1],[6,0],[5,-4]],[[87499,49866],[-2,-8],[0,-10],[0,-20],[-10,-27],[-4,-3],[-4,-1],[-10,1],[-4,2],[-4,6],[-3,7],[-5,22],[-6,13],[-3,13],[4,16],[1,3],[0,11],[2,7],[1,3],[1,2],[4,7],[4,4],[4,1],[13,-8],[4,-4],[1,-6],[1,-5],[3,-9],[0,-6],[0,-5],[-1,-9],[-1,-6],[-5,-14],[-1,-8],[4,-5],[6,6],[4,25],[6,5]],[[86404,49877],[1,-2],[2,-10],[1,-6],[0,-27],[-10,-89],[-6,-25],[-1,-11],[-1,-14],[-3,-12],[-4,-10],[-6,-3],[-3,3],[-5,13],[-3,4],[-3,-1],[-4,-4],[-4,-7],[-5,2],[-3,4],[-6,23],[-3,6],[-6,10],[-8,9],[-3,6],[-3,9],[0,4],[1,8],[-1,4],[0,4],[-2,2],[-1,1],[0,1],[-1,9],[-1,6],[0,4],[-2,6],[-3,5],[-2,3],[-2,4],[-3,8],[7,8],[0,14],[-3,15],[-4,12],[-10,21],[0,9],[8,10],[31,16],[11,13],[10,8],[7,3],[6,-3],[4,-10],[2,-9],[1,-3],[2,0],[4,5],[6,3],[12,2],[2,1],[1,-1],[2,-5],[3,-5],[6,-21],[0,-4],[-4,-10],[-1,-6]],[[86365,50009],[2,-2],[-2,-3],[-3,-2],[-2,-1],[-2,-2],[-3,-1],[-1,-2],[-1,-5],[1,-6],[2,-1],[2,0],[1,-4],[-2,-4],[-2,-4],[-3,-3],[-6,-3],[-8,-12],[-5,-2],[-11,-1],[-40,-19],[-21,-4],[-9,-5],[0,5],[3,2],[1,1],[-6,1],[-4,2],[-4,-1],[-2,-10],[-2,0],[-2,7],[-4,-1],[-11,-10],[3,11],[5,5],[4,6],[-2,11],[4,8],[0,25],[3,8],[0,-7],[0,-2],[2,0],[1,8],[2,4],[3,0],[4,-3],[-2,-14],[6,-7],[9,4],[4,17],[3,-3],[1,-3],[2,-5],[0,-6],[8,13],[5,3],[4,-4],[-1,-1],[0,-1],[-1,-2],[4,-2],[3,2],[2,3],[2,1],[4,-1],[7,-6],[4,-1],[7,5],[6,7],[6,3],[4,-11],[1,6],[-1,2],[-1,5],[1,6],[-4,11],[1,7],[2,-4],[2,-2],[5,0],[4,-1],[1,0],[5,3],[2,0],[2,-2],[5,-5],[3,-1]],[[87881,49822],[3,-8],[-1,-10],[-4,-7],[-5,-3],[-2,-4],[-14,-21],[-17,-6],[-4,-4],[-4,-5],[-6,-4],[-5,-3],[-5,-2],[-12,5],[-18,23],[-12,4],[-7,-2],[-11,-8],[-6,-2],[-6,4],[-6,9],[-5,12],[-3,11],[-2,13],[2,34],[-1,6],[-4,11],[-1,4],[0,6],[-4,20],[-5,58],[-4,20],[-7,12],[-6,-4],[-5,-12],[-5,-13],[-6,-12],[-6,4],[-43,73],[-2,-7],[0,-6],[4,-15],[-9,7],[-10,18],[-9,23],[-6,42],[0,10],[5,5],[3,-2],[4,-10],[3,-4],[1,0],[4,1],[1,0],[2,-1],[3,-4],[1,-2],[9,-5],[14,-2],[3,0],[6,6],[3,-5],[2,-12],[18,7],[3,-1],[1,-4],[2,-10],[1,-7],[1,-5],[3,1],[3,5],[3,1],[8,-13],[6,-6],[3,5],[1,7],[5,9],[5,8],[6,3],[6,-5],[6,-10],[21,-45],[22,-34],[5,-11],[3,-16],[2,-6],[3,-6],[3,-5],[1,-7],[1,-8],[1,-6],[4,-9],[5,-7],[4,-8],[3,-16],[4,-11],[2,-10],[4,2],[3,4],[1,2],[6,3],[8,0],[6,-4],[3,-13],[3,-5],[16,-5]],[[85359,50029],[6,-21],[1,-8],[-12,-7],[-2,0],[-1,2],[-4,7],[-1,3],[-9,1],[-10,-1],[-7,7],[1,25],[3,12],[3,10],[3,11],[1,24],[2,7],[3,4],[9,1],[2,0],[1,-2],[1,-2],[-3,-10],[2,-8],[3,-6],[2,-7],[1,-1],[4,-12],[1,-4],[0,-6],[0,-13],[0,-6]],[[86298,50212],[3,-8],[0,-9],[-1,-8],[-8,-23],[-4,-7],[-12,-6],[-4,-1],[-3,5],[3,4],[4,20],[0,16],[-9,-8],[-1,-2],[-1,-9],[-1,-3],[-2,-3],[-4,-2],[-1,-3],[-3,-2],[-16,-4],[3,6],[3,3],[3,4],[1,7],[-4,-3],[-3,3],[-3,8],[-1,8],[2,-1],[1,-1],[1,-2],[1,-4],[2,8],[3,8],[4,5],[1,-2],[1,-10],[2,-4],[4,0],[4,3],[3,5],[2,7],[4,6],[7,4],[1,2],[1,3],[1,3],[2,2],[2,-1],[4,-5],[6,-6],[2,-3]],[[83847,50232],[12,-16],[2,-5],[2,-14],[2,-6],[-1,-9],[-2,-8],[-3,-5],[-5,-2],[-1,3],[-7,13],[-4,4],[3,-14],[0,-4],[-4,-2],[-4,2],[-4,8],[-3,2],[-12,4],[-3,2],[-3,-1],[-7,-31],[-3,-5],[-5,-4],[-5,-1],[-3,4],[0,8],[2,11],[8,26],[3,6],[3,5],[9,9],[2,4],[3,16],[8,-14],[5,3],[7,8],[8,3]],[[79040,50234],[13,-30],[2,-9],[-3,-12],[-5,-10],[-11,-16],[-2,-12],[-1,-29],[-3,-10],[-9,0],[-9,15],[-7,8],[-7,-23],[-3,-23],[-3,-4],[-5,-1],[-3,49],[-3,21],[-2,8],[-4,-1],[-16,33],[0,9],[2,8],[4,20],[2,7],[8,14],[3,8],[2,10],[2,0],[2,-10],[-3,-24],[1,-14],[2,0],[1,12],[1,12],[2,0],[6,-8],[10,11],[15,30],[5,-10],[2,-3],[6,-5],[2,-3],[2,-4],[2,-9],[2,-5]],[[83896,50273],[4,-2],[2,-4],[1,-8],[0,-11],[-3,-11],[-5,-8],[-5,-3],[-6,6],[-6,-7],[-9,-1],[-9,4],[-7,8],[-4,10],[0,6],[2,6],[0,9],[2,6],[2,1],[6,-1],[0,-1],[2,-2],[2,-2],[2,1],[0,3],[0,10],[1,3],[11,-2],[3,-2],[7,-7],[3,-1],[4,0]],[[85524,50017],[2,-2],[0,-3],[-1,-7],[-1,-10],[-4,-10],[-12,-24],[-3,-3],[-2,-2],[-4,0],[-4,-2],[-5,-8],[-3,-2],[-2,1],[-6,11],[-3,3],[-6,5],[-3,0],[-1,2],[-1,4],[-1,4],[-3,2],[-3,4],[0,7],[2,14],[-1,6],[-1,6],[-2,5],[-2,3],[-3,3],[-2,-2],[-1,-3],[-2,-2],[-5,-3],[-15,-17],[-19,-12],[-3,2],[-1,8],[-1,5],[-2,12],[-2,26],[1,7],[9,38],[0,7],[-1,1],[-9,5],[-2,3],[-6,1],[-2,2],[-1,2],[0,8],[-1,3],[-1,1],[-4,2],[-1,1],[-5,17],[-1,5],[-1,6],[-9,13],[-3,7],[-2,10],[-1,10],[0,10],[2,9],[4,8],[2,9],[2,11],[1,14],[-1,5],[-3,16],[4,0],[5,6],[3,2],[3,-2],[3,-5],[5,-10],[1,-3],[2,-2],[2,-3],[1,-13],[1,-7],[3,-6],[3,-2],[4,5],[2,12],[2,14],[1,9],[2,3],[3,2],[2,2],[1,4],[0,5],[1,6],[1,5],[3,2],[1,0],[0,-1],[0,-2],[1,-1],[9,-7],[4,-5],[1,-10],[2,-6],[6,-8],[2,-7],[0,-6],[1,-7],[1,-6],[1,-3],[2,-1],[3,1],[1,0],[2,-8],[2,-4],[5,-15],[1,-12],[-3,-14],[-16,-41],[-3,-12],[-1,-14],[0,-7],[2,-4],[3,-2],[3,-1],[4,-2],[1,-5],[0,-19],[-1,-7],[1,-6],[4,-6],[3,0],[4,2],[3,4],[2,5],[4,3],[18,2],[4,-2],[13,-12],[2,-4],[1,-3],[4,-11],[1,-6],[0,-4],[0,-1],[1,-1],[2,0]],[[85342,50179],[-6,-13],[-4,-5],[-5,-2],[-17,0],[0,4],[1,2],[1,2],[-5,6],[1,5],[3,4],[2,2],[0,7],[-1,8],[-2,6],[-1,3],[-4,2],[0,7],[3,13],[0,16],[0,5],[1,2],[2,1],[1,2],[-1,14],[-2,16],[-1,13],[3,6],[2,1],[7,6],[2,3],[3,3],[8,-1],[3,5],[2,-5],[2,4],[2,0],[2,-3],[2,-5],[2,-7],[2,-2],[8,1],[1,-2],[0,-5],[-1,-6],[-1,-3],[-1,-1],[-5,0],[-2,-1],[-2,-9],[1,-9],[2,-8],[2,-7],[2,-6],[1,-8],[0,-9],[-5,-7],[0,-8],[2,-17],[-1,-4],[-3,-8],[-1,-12],[-2,1],[-2,2],[-1,1]],[[78808,50310],[6,-7],[6,-12],[3,-14],[-3,-13],[-2,-1],[-10,1],[-4,-1],[-7,-9],[-4,-2],[-2,-1],[-7,-9],[-4,-2],[-2,3],[-3,4],[-3,2],[-4,-3],[-6,-3],[-16,13],[-7,-4],[-1,20],[7,28],[10,25],[10,12],[5,0],[15,-6],[3,-4],[3,-8],[6,-5],[11,-4]],[[83948,50323],[1,-1],[4,-5],[1,-4],[0,-5],[-2,-1],[-2,3],[-2,3],[-1,0],[-3,-2],[-10,11],[-5,3],[-1,7],[4,13],[5,8],[4,-5],[-4,-15],[4,0],[3,-1],[3,-3],[1,-6]],[[83991,50313],[-2,-10],[1,-14],[2,-12],[2,-8],[-2,-5],[-6,15],[-9,38],[-7,12],[-2,0],[-4,-4],[-2,0],[-2,2],[-4,10],[-4,10],[-1,5],[1,6],[3,-4],[7,-6],[2,0],[1,-5],[3,-3],[11,-7],[5,-5],[4,-6],[3,-9]],[[83770,50362],[-2,22],[8,12],[10,0],[5,-14],[-2,-17],[-5,-13],[-7,-3],[-7,13]],[[86471,50329],[2,-8],[9,-16],[2,-6],[-2,-5],[-6,-2],[-1,-5],[-2,-8],[-3,-4],[-2,-5],[-1,-10],[-1,1],[-4,2],[-1,1],[0,-12],[-3,-10],[-4,-3],[-5,7],[-11,18],[-6,8],[-3,-1],[-1,2],[-9,0],[-2,2],[-1,3],[-1,0],[-3,-1],[-5,-5],[-13,-20],[0,9],[-2,1],[-5,-2],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-2,2],[-4,5],[-1,1],[-6,19],[-7,10],[-2,4],[2,4],[-4,12],[-3,6],[-5,2],[-8,1],[-5,3],[-2,0],[-3,3],[-1,7],[1,11],[-2,11],[-2,6],[-15,29],[-3,10],[-1,12],[-2,-1],[-2,0],[-4,1],[2,5],[0,4],[-5,1],[-7,-2],[-7,-3],[-3,-5],[6,-3],[3,-3],[2,-6],[-5,0],[-3,-7],[1,-9],[10,-8],[5,-9],[10,-28],[5,-23],[2,-11],[2,-8],[11,-11],[6,-7],[1,10],[1,4],[2,2],[12,-1],[5,-2],[2,-3],[0,-6],[2,-3],[3,-2],[2,-3],[2,-6],[3,-12],[3,-7],[-3,-2],[-2,-5],[-2,-5],[-1,-6],[-1,-5],[-3,-4],[-11,-10],[-24,-9],[-7,0],[-6,2],[-5,8],[-3,11],[-7,42],[4,4],[1,8],[-1,9],[-2,7],[-22,-13],[-8,-12],[-4,-24],[2,0],[3,5],[-1,-11],[-5,-25],[-2,-4],[-2,-2],[-1,3],[1,7],[3,19],[-4,3],[-1,9],[2,12],[-1,13],[-1,5],[-5,9],[-1,6],[0,5],[1,5],[2,5],[-1,5],[-5,4],[-6,-3],[-8,-9],[-1,-2],[-2,-5],[-1,-1],[-2,1],[-1,6],[-1,1],[-5,1],[-3,1],[-2,2],[-3,-7],[-1,1],[-2,4],[-1,2],[-8,1],[0,-1],[-6,3],[-1,1],[-1,3],[-1,6],[-1,5],[-2,2],[-8,4],[-9,7],[-4,7],[6,3],[3,-1],[5,-5],[2,-2],[1,0],[6,0],[1,0],[9,3],[5,1],[4,-2],[4,-5],[4,0],[4,3],[3,6],[2,7],[-4,2],[-5,0],[-3,5],[4,3],[3,8],[0,9],[-2,8],[-2,-11],[-4,-7],[-3,1],[0,13],[-2,0],[-1,-5],[-2,-2],[-2,1],[-3,3],[1,-9],[2,-8],[1,-7],[-2,-5],[-3,0],[-5,4],[-4,5],[-1,5],[-1,8],[-4,12],[-1,8],[1,7],[3,4],[4,0],[3,-5],[2,3],[2,3],[1,5],[1,6],[2,-9],[0,-9],[1,-7],[3,-4],[3,4],[0,8],[-2,9],[-1,8],[6,3],[4,-5],[3,-9],[6,-6],[-1,13],[-1,4],[2,0],[1,-5],[1,-4],[12,11],[6,8],[3,10],[3,-3],[2,-4],[4,-9],[1,2],[1,6],[1,-3],[1,-3],[0,-2],[1,4],[3,12],[1,-2],[3,-6],[3,7],[7,-3],[5,4],[6,0],[8,6],[7,1],[2,-11],[4,3],[8,-2],[5,3],[-2,5],[-2,2],[-3,2],[-3,-1],[4,8],[5,5],[6,3],[6,0],[38,-24],[2,-2],[1,-3],[1,-2],[1,1],[2,4],[1,1],[9,5],[1,0],[5,0],[4,-2],[0,-4],[-4,-10],[5,-1],[7,-3],[8,-1],[3,-2],[8,-5],[2,-4],[2,-6],[3,-4],[3,-3],[2,-3],[1,-6],[3,-5],[5,2],[1,-2],[1,-1],[4,0],[3,-2],[2,-3],[1,-3],[7,-4],[2,-7],[3,-19],[-3,-8],[-2,-6],[0,-6]],[[79146,50329],[23,-26],[-2,-8],[-6,3],[-7,5],[-6,2],[-5,-6],[1,-6],[3,-9],[1,-11],[-15,14],[-5,2],[-3,2],[-6,11],[-15,15],[-4,9],[-3,9],[-5,8],[-6,3],[-12,-2],[-4,-2],[-4,-5],[-7,-10],[-3,-2],[-1,0],[-4,4],[-2,-2],[-2,-4],[-3,-3],[-3,-9],[-3,-2],[-3,1],[-1,2],[-1,4],[-1,6],[-3,8],[-3,5],[-3,2],[-7,0],[-4,2],[-2,4],[-1,6],[0,7],[1,6],[1,4],[4,4],[10,19],[5,13],[2,15],[2,48],[3,17],[6,-11],[1,5],[1,7],[0,5],[2,-8],[4,-5],[9,-8],[16,-29],[1,-7],[-9,-4],[0,-5],[1,-5],[2,-4],[2,-2],[3,2],[2,4],[2,1],[4,-5],[9,-19],[5,-25],[3,-11],[6,-4],[7,1],[2,6],[0,8],[2,13],[6,5],[8,-16],[14,-42]],[[85982,50390],[5,-14],[3,-10],[1,-10],[-1,-5],[-2,-5],[-3,-3],[-2,-2],[-4,2],[-3,3],[-4,12],[-12,44],[-24,21],[-1,7],[1,10],[0,8],[-3,3],[-7,23],[-1,2],[-6,8],[-3,5],[-2,2],[-1,3],[1,4],[2,2],[2,-2],[42,-76],[15,-20],[7,-12]],[[85405,50467],[0,-12],[0,-8],[-2,-2],[-5,8],[-1,4],[0,6],[0,11],[-1,1],[-4,9],[-1,-5],[0,-3],[-1,-2],[-2,-3],[-2,14],[0,16],[2,32],[2,24],[9,-5],[4,1],[-2,-4],[-2,-8],[6,-74]],[[79026,50512],[-3,-3],[-2,-1],[-2,-1],[2,-11],[1,-5],[0,-7],[-2,0],[-4,14],[-14,26],[-2,16],[1,0],[2,-2],[1,-2],[3,-3],[-1,3],[-4,23],[-1,6],[0,6],[2,3],[2,-2],[2,-5],[3,-11],[14,-37],[2,-7]],[[79079,50512],[6,-16],[-2,-7],[-5,2],[-6,9],[-6,11],[-2,5],[-2,14],[-2,2],[-4,-8],[-3,6],[-4,14],[-3,7],[-1,3],[0,9],[-1,2],[-2,0],[-2,1],[-2,2],[-2,3],[-1,4],[0,7],[-1,3],[-7,17],[-2,5],[-1,6],[4,-2],[2,-3],[6,-10],[-1,1],[1,3],[1,2],[1,1],[1,-1],[1,-1],[39,-91]],[[79001,50670],[3,-6],[1,-6],[0,-7],[-3,-7],[-1,-1],[-2,1],[-1,4],[-1,9],[-1,2],[-2,0],[-2,3],[-8,21],[-2,3],[1,1],[2,2],[1,1],[2,-2],[5,-8],[8,-10]],[[85388,50694],[5,-15],[0,-24],[-6,-19],[-11,2],[-3,7],[-1,11],[-1,11],[0,9],[1,8],[5,6],[5,3],[6,1]],[[78948,50889],[7,-8],[8,-12],[5,-14],[-3,-15],[-3,5],[-2,6],[-2,14],[-8,17],[-2,7]],[[85382,50839],[-1,6],[-3,9],[-1,10],[4,20],[3,34],[3,-3],[2,-1],[2,1],[2,3],[2,-2],[2,-2],[1,-2],[1,-2],[1,-10],[1,-12],[1,-13],[-1,-10],[-4,-9],[-6,-12],[-6,-8],[-3,3]],[[78967,50889],[-3,-3],[-2,0],[-3,1],[-5,8],[-6,2],[-3,3],[-4,11],[-1,11],[2,10],[6,6],[5,-3],[3,0],[2,5],[1,2],[2,1],[3,-2],[1,-5],[0,-14],[1,-10],[2,-10],[3,-13],[-4,0]],[[85380,50934],[-3,-11],[-4,-5],[-4,0],[-5,0],[-3,5],[-3,10],[-2,12],[-1,7],[2,13],[5,11],[5,5],[11,-13],[3,-9],[1,-11],[-2,-14]],[[78951,50991],[4,-2],[5,-5],[2,-7],[-2,-10],[-2,-6],[-3,-4],[-15,-14],[-3,0],[-2,3],[-2,9],[-2,16],[-2,7],[-4,5],[-7,4],[-4,4],[2,9],[-2,22],[2,10],[3,2],[5,-6],[8,-19],[1,-5],[1,-6],[2,-5],[3,-2],[12,0]],[[77202,51060],[3,-6],[-2,-14],[-4,-21],[0,4],[-5,-17],[-1,-18],[2,-36],[-1,-8],[-2,-14],[-3,-35],[0,-45],[-2,-12],[-14,-35],[-2,-3],[-3,1],[-2,4],[-7,11],[-3,-10],[-3,0],[-8,10],[0,-2],[-3,-4],[-3,-1],[-2,8],[-2,3],[-1,3],[-2,1],[4,15],[-2,11],[-5,10],[-2,9],[-1,8],[1,16],[-2,7],[-1,6],[-4,19],[-1,7],[-5,25],[-11,23],[-24,31],[1,11],[-3,6],[-6,3],[-6,1],[-12,-3],[-1,5],[0,14],[-1,25],[-4,24],[-14,48],[-3,16],[-1,4],[-2,5],[-3,5],[-3,5],[-2,13],[-4,8],[-1,7],[0,7],[-2,5],[-2,3],[-2,3],[-2,3],[-3,1],[-3,3],[-3,5],[-2,6],[-2,14],[-3,7],[-11,23],[-6,9],[-6,6],[0,-1],[-4,-6],[-2,12],[5,8],[7,4],[7,0],[2,-2],[4,-4],[2,-4],[1,-5],[2,3],[3,1],[7,-2],[8,2],[6,4],[6,7],[12,23],[3,7],[1,8],[-1,16],[1,6],[4,5],[7,-16],[4,-6],[5,3],[2,3],[3,-2],[3,-12],[1,-6],[0,-3],[2,-2],[3,1],[3,-1],[3,1],[2,-1],[0,-2],[1,-8],[1,-2],[6,-14],[2,-3],[1,-3],[2,-13],[2,-6],[14,-30],[4,-10],[3,-25],[21,-56],[6,-8],[12,-5],[5,-5],[5,-7],[3,-6],[4,-14],[2,-8],[1,-8],[2,-8],[5,-3],[5,-1],[5,-3],[4,-8],[5,-24],[2,-4]],[[84803,51389],[2,0],[0,-13],[-1,-16],[-1,-18],[-1,-5],[-4,-7],[-1,-4],[-1,-19],[-6,-6],[-9,-7],[-8,-1],[-4,8],[1,7],[2,3],[6,4],[13,13],[12,61]],[[85462,50346],[0,14],[5,24],[1,12],[-1,69],[1,6],[0,7],[3,14],[0,6],[0,14],[-4,17],[-1,11],[0,26],[9,68],[1,11],[0,10],[-2,8],[-4,9],[-3,3],[-6,-4],[-2,1],[-12,23],[-1,1],[-1,5],[0,2],[-6,8],[-2,5],[-1,4],[-1,5],[0,19],[-2,27],[-2,9],[-1,3],[-2,3],[-3,4],[-1,6],[-1,6],[1,26],[4,37],[1,28],[2,15],[9,12],[5,15],[4,16],[1,12],[-3,15],[-10,6],[-11,4],[-8,7],[-4,11],[1,10],[3,11],[2,11],[-1,5],[-2,11],[-1,4],[0,2],[-3,0],[-1,2],[1,11],[-1,3],[1,6],[1,6],[0,6],[-4,6],[-2,1],[-2,-3],[-3,-4],[-1,-2],[-5,-2],[-4,-4],[-4,1],[-1,13],[0,9],[1,5],[2,4],[2,7],[2,8],[1,5],[-1,13],[-1,8],[-3,7],[-3,8],[0,12],[2,12],[8,28],[8,22],[6,39],[11,35],[4,22],[-2,18],[-4,15],[2,15],[8,25],[-2,9],[-1,5],[0,4],[1,8],[2,3],[3,1],[1,3],[1,5],[1,7],[-1,5],[-4,3],[-1,2],[1,5],[3,9],[3,21],[14,50],[7,18],[6,24],[4,11],[15,28],[7,21],[25,57],[9,15],[2,5],[1,9],[4,11],[5,9],[5,5],[5,-2],[4,-5],[5,-2],[12,14],[2,-7],[0,-13],[-1,-14],[-6,-22],[-4,-10],[-3,-4],[-1,-3],[-2,-5],[-2,-6],[-6,-5],[-2,-7],[-1,-15],[-3,-21],[-2,-11],[-4,-4],[-5,-1],[-4,-4],[-4,-5],[-3,-6],[-2,-10],[-2,-17],[-1,-19],[2,-15],[6,-11],[18,-4],[4,-7],[3,-9],[11,-20],[3,-12],[-3,-44],[-1,-7],[-2,-4],[2,-8],[2,-4],[2,-3],[2,-5],[1,-7],[3,-26],[-1,-12],[-5,-31],[0,-17],[0,-19],[0,-5],[-1,-4],[-2,-2],[-2,-3],[-1,-6],[2,-10],[4,-21],[0,-7],[-3,-4],[-6,1],[-3,-2],[-1,-4],[-3,-15],[-2,-7],[-5,-12],[-4,-10],[-5,-25],[-1,-7],[-1,-3],[-1,-3],[-3,-3],[-3,-1],[-7,1],[-2,-2],[-22,-39],[-24,-27],[-9,-19],[-4,-27],[1,-10],[2,-11],[3,-10],[3,-7],[4,-7],[10,-9],[4,-6],[1,-5],[3,-11],[2,-5],[2,-2],[3,1],[2,0],[8,-10],[5,0],[6,3],[5,4],[5,8],[10,17],[4,10],[2,9],[1,52],[0,10],[1,10],[16,45],[6,10],[6,7],[5,5],[6,3],[19,0],[4,4],[6,13],[3,14],[1,11],[-1,11],[-4,11],[-6,5],[-12,-6],[-4,3],[-2,12],[4,12],[10,14],[4,11],[5,22],[4,10],[5,10],[11,16],[5,9],[5,6],[12,8],[5,8],[2,5],[2,10],[2,5],[2,2],[6,5],[7,9],[5,5],[6,4],[6,0],[3,-2],[1,-3],[1,-3],[3,-1],[3,3],[2,5],[4,11],[4,4],[14,5],[11,1],[21,-5],[1,-3],[1,-4],[0,-6],[-1,-4],[-7,-11],[-3,-12],[-1,-12],[0,-22],[1,-5],[2,-5],[5,-9],[4,-3],[4,-2],[0,-4],[0,-7],[1,-10],[1,-15],[-1,-14],[-2,-6],[-5,-4],[-1,-10],[-1,-26],[-3,-29],[-1,-14],[3,-40],[-1,-10],[-1,-7],[-1,-2],[-4,-4],[-2,0],[-4,0],[-4,-1],[-1,-5],[-23,-28],[-4,-6],[-2,-6],[-2,-4],[-16,-10],[-6,-13],[-4,-6],[-5,-2],[-5,-1],[-25,-14],[-4,-5],[-2,-8],[-1,-14],[2,-12],[1,-8],[-2,-3],[-3,2],[-6,6],[-3,1],[-5,-4],[-3,-8],[-2,-11],[0,-12],[2,-9],[4,-10],[9,-16],[8,-18],[5,-10],[8,-6],[6,-8],[3,-2],[9,1],[8,-2],[2,-1],[2,-4],[4,-11],[3,-5],[2,-3],[10,-2],[6,-3],[8,-12],[4,-1],[4,2],[5,0],[4,-2],[3,-4],[3,-2],[4,4],[4,-6],[1,-8],[-1,-18],[-1,-3],[-1,-3],[-1,-4],[3,-8],[1,-6],[0,-5],[0,-47],[1,-21],[4,-9],[16,-6],[3,-3],[15,-3],[7,-13],[8,-20],[6,-20],[0,-8],[-11,21],[-4,4],[-4,1],[-37,23],[-5,-4],[-7,8],[-8,6],[-8,5],[-9,1],[-8,5],[-7,12],[-10,24],[-4,5],[-3,1],[-9,-2],[-4,0],[-8,3],[-4,1],[-18,-7],[-9,1],[-8,14],[-7,-4],[-6,8],[-6,12],[-4,8],[-23,5],[-4,-1],[-7,6],[-14,1],[-5,6],[-6,-10],[-5,-8],[-3,-9],[-4,-49],[-4,-11],[-1,-7],[1,-14],[7,-15],[1,-13],[3,-64],[-1,-9],[-2,-7],[-4,-10],[-2,-9],[-1,-12],[0,-25],[2,-25],[3,-19],[8,-34],[6,-33],[5,-20],[1,-27],[1,-13],[3,-10],[8,-18],[1,-10],[0,-12],[4,-28],[2,-11],[11,-39],[3,-22],[9,-15],[3,-9],[25,-90],[15,-33],[15,-28],[3,-6],[6,-17],[5,-9],[9,-9],[5,-6],[1,-10],[-2,0],[-8,10],[-9,5],[-24,4],[-5,2],[-5,4],[-3,6],[-3,10],[2,7],[4,1],[3,-4],[2,0],[-5,22],[-13,16],[-43,34],[-4,8],[-4,10],[-14,72],[-16,49],[-7,42],[-5,10],[-5,14],[-3,3],[-2,2],[-15,17],[-10,15],[-5,3],[-4,7],[-6,16],[-4,17],[-2,13]],[[84841,51884],[6,-6],[1,-6],[-1,-21],[-8,-9],[-9,5],[-6,13],[0,16],[3,7],[5,3],[5,0],[4,-2]],[[85745,51941],[3,-27],[-4,-24],[-6,-21],[-4,-22],[-1,-38],[-16,-63],[-3,-20],[-2,-7],[-16,-28],[-5,-5],[-40,-8],[-4,-3],[-4,-9],[-8,-11],[-6,-4],[2,13],[4,14],[-1,10],[-9,19],[-2,10],[1,41],[-2,28],[-3,14],[-4,7],[-6,5],[3,12],[12,23],[8,25],[12,54],[10,23],[12,12],[5,9],[3,20],[2,5],[6,9],[2,2],[3,-2],[3,-7],[8,-3],[3,5],[1,11],[4,14],[6,5],[5,-5],[3,-9],[7,-29],[3,-9],[3,-4],[12,-32]],[[84845,52124],[2,-9],[-1,-8],[-2,-7],[-7,-13],[-2,-4],[-1,-4],[-1,-10],[1,-8],[4,-11],[1,-7],[0,-7],[-1,-6],[-2,-4],[-6,1],[-2,7],[-2,11],[0,11],[-1,9],[-4,17],[-1,11],[1,7],[6,23],[2,6],[4,5],[4,0],[4,-4],[4,-6]],[[84903,52524],[0,-4],[3,-9],[0,-5],[0,-5],[-1,-3],[-10,-16],[-2,-2],[-4,2],[-1,4],[0,6],[-2,7],[-6,7],[-13,7],[-5,8],[0,10],[2,29],[1,6],[1,2],[0,20],[-1,3],[-6,7],[-15,26],[-3,8],[-3,10],[-1,12],[1,13],[6,16],[10,-4],[10,-13],[6,-15],[10,-33],[1,-10],[0,-4],[0,-3],[-1,-5],[1,-6],[1,-3],[5,-8],[2,-5],[3,-17],[1,-1],[3,-3],[3,-2],[1,0],[1,-13],[2,-14]],[[85206,52752],[10,-6],[9,-12],[6,-16],[2,-10],[4,-13],[-5,-8],[-7,-7],[-13,24],[-8,30],[2,18]],[[85182,52828],[12,-29],[3,-7],[1,-12],[-4,-13],[-4,-15],[3,-25],[-6,0],[-2,26],[-2,25],[1,19],[-5,13],[-6,8],[-2,15],[-1,21],[0,11],[8,-10],[4,-27]],[[85241,53035],[8,-15],[6,-14],[-16,-43],[-15,-31],[0,-42],[0,-29],[-3,-12],[-11,-15],[-12,11],[-11,-4],[-3,18],[3,15],[4,11],[8,11],[11,52],[12,23],[-3,10],[-4,3],[-5,3],[-13,8],[-1,14],[2,12],[-2,15],[-1,6],[-1,7],[-1,7],[0,18],[2,15],[10,30],[0,4],[0,7],[0,6],[-2,13],[0,7],[3,6],[7,2],[7,1],[6,-3],[4,-5],[1,-6],[0,-6],[2,-7],[4,-4],[3,-1],[2,-2],[1,-9],[2,-13],[-2,-12],[-2,-13],[-2,-13],[-1,-15],[3,-21]],[[83988,45476],[8,-2],[6,-5],[3,-10],[-3,-15],[-9,-9],[-7,13],[-2,18],[4,10]],[[83808,45561],[6,-3],[3,-11],[0,-13],[-4,-10],[-6,-2],[-4,6],[-5,21],[3,3],[1,4],[2,3],[4,2]],[[83827,46121],[11,6],[5,-14],[-1,-19],[-7,-9],[-9,-8],[-5,1],[-2,13],[1,9],[1,9],[3,7],[3,5]],[[81831,46247],[3,0],[3,-1],[2,-3],[0,-6],[0,-10],[-1,-2],[-24,5],[-6,0],[-3,0],[-2,3],[1,6],[1,4],[1,2],[10,9],[3,1],[2,-1],[6,-6],[4,-1]],[[81768,46271],[4,-14],[4,-11],[-1,-15],[0,-13],[-4,1],[-6,6],[-7,5],[-2,7],[-5,-1],[-4,3],[-2,10],[-3,15],[-1,12],[7,16],[7,3],[6,-4],[4,-8],[3,-12]],[[84267,49479],[3,-4],[2,-6],[0,-7],[-1,-7],[-2,-4],[-6,-6],[-2,-5],[-7,-21],[-4,-8],[-6,1],[-3,10],[3,12],[14,32],[7,11],[1,1],[1,1]],[[83927,50242],[-5,-5],[-2,2],[-2,4],[-4,1],[-1,-5],[0,-7],[-1,-4],[-4,6],[-3,26],[0,15],[1,19],[3,16],[5,3],[2,-30],[1,-4],[8,-9],[1,-6],[2,-8],[0,-8],[-1,-6]],[[86129,45873],[3,-2],[2,-4],[-1,-9],[-4,0],[-4,6],[-2,1],[-4,0],[-2,2],[1,2],[1,4],[2,0],[2,-1],[3,1],[3,0]],[[86112,45895],[3,-11],[-2,-4],[-4,1],[0,2],[-1,4],[-2,3],[-1,7],[-1,5],[1,5],[3,1],[3,-2],[1,-5],[0,-6]],[[86020,45986],[-6,6],[0,8],[1,7],[2,-1],[5,-10],[2,-3],[3,0],[2,3],[2,-2],[-1,-7],[-5,-5],[-3,0],[-2,4]],[[85867,46328],[-2,6],[0,6],[2,4],[3,3],[3,0],[2,-9],[-1,-9],[-2,-3],[-2,-1],[-3,3]],[[85967,46469],[-1,-3],[-1,3],[0,7],[3,9],[3,3],[3,0],[3,1],[2,-1],[1,-5],[-1,-4],[-3,-15],[-1,-3],[-3,-1],[-3,3],[-1,3],[0,4],[-1,-1]],[[86114,46722],[-2,2],[-2,5],[0,4],[1,2],[5,-4],[1,-3],[-1,-4],[-2,-2]],[[85430,47205],[1,4],[2,-7],[-3,3]],[[85431,47218],[1,-5],[-3,2],[2,3]],[[85496,47266],[3,6],[1,-5],[-4,-1]],[[85493,47302],[0,4],[2,-6],[-2,2]],[[86662,47320],[3,4],[3,-1],[2,-10],[-4,-25],[-2,-3],[-2,0],[-2,-1],[-1,-5],[-3,-1],[-1,10],[0,17],[5,12],[2,3]],[[86043,47791],[1,3],[5,-4],[-3,-9],[-3,10]],[[87308,50918],[4,5],[5,0],[1,-8],[-3,-9],[-4,-4],[-5,2],[-1,6],[3,8]],[[86454,51073],[0,4],[2,6],[0,-4],[-2,-6]],[[86459,51103],[2,4],[2,-2],[0,-7],[-1,-5],[-3,-5],[-1,5],[1,10]],[[85109,51263],[2,-4],[-3,-13],[0,-4],[-2,-11],[-1,-1],[-6,19],[-2,2],[-1,2],[1,8],[3,5],[2,2],[2,0],[2,-3],[3,-2]],[[84831,51724],[3,7],[1,-4],[-1,-9],[-1,-3],[-1,1],[-1,0],[-1,-2],[-4,-5],[-2,-1],[-2,-3],[-2,-5],[-2,-4],[-2,2],[-2,5],[0,6],[2,5],[1,1],[2,4],[2,0],[0,3],[-1,1],[-1,4],[1,4],[1,-1],[2,-3],[1,2],[1,-1],[1,-2],[3,-2],[2,0]],[[85163,53761],[2,5],[2,-1],[-1,-6],[-1,-3],[-2,5]],[[83781,44191],[2,0],[3,-1],[0,-7],[-5,-7],[-5,-4],[-6,-3],[-6,-1],[-6,1],[-1,6],[4,8],[6,7],[9,2],[5,-1]],[[82191,46261],[1,-3],[1,-8],[-1,-23],[-5,-13],[-11,-7],[-11,5],[-11,12],[-4,11],[3,6],[2,1],[1,-3],[1,1],[3,16],[2,-1],[1,-5],[1,-7],[2,-6],[2,-2],[4,1],[6,-5],[7,-1],[3,0],[1,3],[-1,1],[-1,-1],[-2,4],[-1,6],[1,5],[2,3],[2,0],[1,-4],[0,2],[1,8],[0,4]],[[87424,46618],[0,-6],[1,-7],[-1,-12],[-4,-4],[-4,1],[-2,-1],[-1,-3],[-4,-3],[-5,2],[-3,10],[-1,13],[-2,9],[-3,5],[0,7],[2,6],[3,6],[6,6],[5,-2],[6,-7],[4,-10],[3,-10]],[[80675,47013],[7,3],[2,-5],[0,-10],[-4,-10],[-4,-4],[-2,4],[-1,7],[-1,6],[0,5],[3,4]],[[87280,47059],[4,-7],[1,-1],[0,-10],[-2,-15],[-4,-7],[-4,-2],[-4,2],[-3,9],[0,13],[0,13],[3,8],[4,1],[2,-2],[1,0],[2,-2]],[[87108,49012],[4,-4],[0,-12],[-6,-14],[-6,0],[0,2],[-2,3],[-9,9],[-3,7],[-2,10],[-2,8],[-2,9],[4,4],[9,-9],[4,-6],[0,4],[2,0],[3,-5],[4,-4],[2,-2]],[[84333,49520],[2,-5],[2,-7],[0,-10],[-1,-7],[-1,-13],[0,-8],[-2,-9],[-4,-6],[-2,-2],[-1,-2],[-3,-1],[-3,1],[-3,-1],[-3,3],[-3,6],[-2,2],[-1,-4],[-2,-2],[-3,2],[-2,6],[0,4],[-2,14],[-1,12],[1,9],[0,9],[0,2],[1,3],[1,4],[2,5],[-1,6],[-1,3],[-2,2],[-1,4],[0,4],[1,3],[1,8],[2,12],[3,9],[3,2],[2,0],[2,4],[-1,10],[2,1],[2,-3],[2,-7],[4,-29],[0,-6],[-1,-4],[1,-11],[3,-11],[3,-1],[3,2],[3,-3]],[[85657,49884],[10,-4],[2,-8],[-1,-10],[-4,-6],[-6,-1],[-2,1],[1,1],[-2,1],[-5,2],[-4,5],[-1,9],[1,8],[0,8],[-6,10],[-2,4],[0,2],[2,5],[2,2],[3,-1],[2,-4],[1,-7],[1,-6],[5,-6],[3,-5]],[[86083,50228],[2,-3],[2,-8],[-1,-9],[-1,-4],[-2,-6],[-1,-12],[-3,-9],[-3,-5],[-3,2],[-4,10],[-2,12],[0,11],[1,7],[2,3],[1,2],[4,5],[5,3],[3,1]],[[77374,50564],[11,7],[10,2],[13,-3],[13,3],[7,-5],[6,0],[11,-3],[9,-12],[4,-18],[-2,-15],[-12,1],[-11,0],[-10,-7],[-10,-2],[-11,5],[-8,4],[-13,0],[-10,2],[-3,13],[-1,20],[7,8]],[[79089,50914],[5,-1],[4,-7],[-2,-8],[-3,-4],[-2,4],[-3,9],[1,7]],[[79071,50971],[1,-7],[0,-3],[0,-6],[-2,-3],[-1,-3],[-2,-2],[-4,0],[-1,3],[1,3],[2,7],[1,12],[2,6],[3,-7]],[[84769,51535],[1,-4],[1,-8],[-7,-13],[0,-5],[-1,-4],[-1,0],[-3,4],[-1,6],[-1,8],[-1,10],[-1,11],[1,5],[1,7],[2,2],[3,-5],[2,-7],[3,-5],[2,-2]],[[85313,53297],[3,-4],[1,-9],[-2,-7],[-4,7],[0,10],[0,2],[2,1]],[[82695,52935],[-2,4],[-15,27],[-1,7],[2,8],[5,7],[6,6],[4,3],[5,-1],[10,-7],[5,-1],[3,-3],[3,-7],[4,-13],[2,-5],[3,-3],[2,-2],[4,0],[13,-9],[1,-6],[2,-9]],[[78353,54175],[7,-10],[15,-22],[3,-3],[7,3],[1,7],[-3,5],[-4,-3],[3,9],[6,0],[32,-25],[6,-8],[12,-26],[33,-140],[6,-15],[6,-10],[2,-4],[15,-19],[7,-11],[5,-15],[4,-19],[2,-9],[8,-7],[50,-84],[12,-12],[11,-5],[5,-7],[14,-27],[26,-61],[28,-95],[10,-51],[27,-98],[17,-63],[1,-12],[1,-4],[5,-12],[2,-6],[0,-7],[-2,-17],[0,-14],[3,-24],[5,-90],[-1,-13],[-2,-11],[-2,-12],[3,-27],[0,-8],[9,-55],[0,-18],[0,-7],[-4,-20],[-2,-7],[-2,-4],[-4,-10],[-1,-5],[0,-5],[2,-15],[-2,-6],[-2,-2],[0,-1],[-2,-2],[-3,-3],[-5,-16],[-3,-10],[0,-10],[2,-19],[10,-54],[-1,-15],[-6,8],[-5,-17],[-3,-26],[-1,-20],[0,-22],[-1,-10],[-4,-1],[-3,-7],[-2,-11],[-2,-8],[1,-11],[1,-10],[11,-50],[1,-8],[5,-14],[9,-19],[7,-20],[-4,-18],[9,4],[-13,-61],[-2,-24],[5,-73],[2,-12],[1,-12],[-6,-143],[2,-24],[9,-42],[13,-37],[33,-69],[3,-3],[5,-2],[5,-1],[1,-2],[4,-8],[3,-2],[3,1],[7,7],[4,-4],[0,-4],[0,-5],[0,-5],[10,-16],[3,-10],[8,-33],[-3,-14],[0,-11],[2,-11],[20,-55],[3,-5],[6,-10],[2,-4],[1,-6],[0,-12],[1,-6],[2,-7],[5,-13],[1,-7],[-1,-5],[-3,-12],[0,-7],[2,-12],[13,-34],[7,-37],[5,-15],[3,-15],[2,-6],[6,-15],[1,-6],[3,-13],[0,-12],[-1,-25],[2,-13],[3,-12],[4,-7],[3,6],[2,0],[7,-29],[3,-27],[5,-16],[1,-8],[1,-20],[1,-9],[4,-8],[2,-7],[-1,-7],[1,-8],[2,-24],[6,-33],[3,-27],[0,-15],[-2,-6],[-2,-6],[1,-26],[-2,-9],[-10,0],[-2,-2],[-3,-8],[-1,-2],[-13,1],[-5,3],[-11,9],[-2,4],[-1,6],[1,11],[-2,9],[-3,6],[-4,6],[-3,6],[-1,21],[7,11],[10,8],[7,17],[-5,2],[-5,-2],[-5,-6],[-9,-15],[-2,-2],[-1,4],[-2,10],[-9,39],[-6,21],[-6,10],[-2,-8],[3,-16],[10,-35],[0,-8],[-1,-17],[1,-8],[1,-8],[1,-9],[-1,-9],[-10,-17],[-13,7],[-24,26],[-7,-1],[-12,-12],[-5,-3],[-12,2],[-4,-1],[-4,-5],[-15,-39],[-8,-14],[-10,4],[0,3],[-2,6],[-2,4],[-2,-3],[1,-6],[1,-9],[0,-5],[0,-7],[-5,-15],[-4,-21],[-4,12],[-9,17],[-4,12],[-3,12],[-9,64],[-5,23],[-8,19],[-11,16],[-33,26],[-47,63],[-12,11],[-6,4],[-6,1],[-5,3],[-3,6],[-5,15],[-5,14],[-7,12],[-7,11],[-9,8],[-4,-3],[-14,-5],[-5,1],[-6,7],[-4,11],[-5,26],[-5,11],[-22,39],[-4,7],[-2,8],[3,1],[0,2],[0,2],[-1,3],[-3,7],[-5,8],[-11,13],[-39,34],[-44,39],[-10,12],[-7,12],[-21,50],[-3,3],[-6,3],[-6,6],[-3,9],[0,11],[-4,2],[-5,4],[-8,10],[-5,-7],[-8,-1],[-4,-8],[-2,14],[0,19],[-2,17],[-4,7],[-2,2],[-3,4],[-4,10],[-6,34],[-2,6],[-4,4],[-13,2],[-4,5],[-2,6],[-5,8],[-15,5],[-6,6],[-9,3],[-7,6],[-11,16],[-6,17],[-14,44],[-8,16],[-13,6],[-12,3],[-7,9],[5,27],[-6,2],[0,8],[14,36],[4,8],[4,3],[3,7],[0,15],[-2,29],[-2,7],[-8,14],[-1,7],[-6,77],[-2,12],[-4,10],[-9,17],[-1,4],[-1,6],[-2,4],[-5,3],[-3,3],[-2,3],[-1,3],[-2,9],[-13,38],[-9,18],[-2,5],[-2,14],[-6,17],[-2,26],[-2,13],[-5,13],[-20,29],[-7,7],[-3,4],[-1,4],[-5,16],[-7,19],[-4,7],[-13,5],[-3,6],[0,10],[3,14],[5,10],[1,4],[-3,2],[-7,-2],[-3,-2],[-1,-2],[-3,-3],[-7,5],[-7,7],[-4,5],[-3,9],[-2,10],[0,11],[0,29],[1,10],[4,4],[17,-2],[6,2],[4,12],[5,5],[5,2],[5,-2],[-3,12],[-6,-1],[-7,-7],[-3,-4],[-7,1],[-1,9],[1,14],[0,16],[-3,8],[-15,20],[-4,10],[-6,8],[-6,3],[-6,-8],[-3,12],[-3,19],[-1,18],[2,8],[-4,2],[-2,8],[0,9],[-1,9],[-3,7],[-3,1],[-1,4],[1,12],[3,16],[1,8],[0,11],[1,8],[6,8],[1,8],[1,17],[5,38],[3,16],[-4,-3],[-5,2],[-4,8],[-2,11],[1,12],[3,11],[3,6],[5,-6],[2,8],[2,7],[2,6],[3,3],[-7,3],[-6,-5],[-4,0],[-2,16],[-1,30],[3,7],[8,2],[0,4],[-2,1],[-4,3],[2,8],[-1,4],[-5,4],[-3,1],[-2,-2],[-1,1],[-2,8],[0,8],[2,10],[0,6],[-1,2],[-3,1],[-2,2],[-1,8],[-3,-3],[-3,-2],[-7,1],[-3,2],[2,5],[3,5],[1,0],[0,8],[-1,3],[-2,2],[-3,5],[-3,3],[-3,-1],[-3,-4],[-2,-4],[-3,8],[-2,8],[-1,8],[-2,9],[-6,16],[-2,13],[-4,20],[-3,8],[-2,14],[1,5],[1,0],[1,-1],[1,2],[3,6],[3,6],[3,7],[2,19],[4,19],[0,12],[0,6],[-3,12],[-1,4],[1,7],[3,11],[0,6],[-1,8],[-6,27],[-6,17],[-1,8],[-1,13],[2,51],[-2,14],[-6,24],[-2,13],[-1,50],[2,-2],[3,-2],[4,1],[2,3],[0,6],[-2,4],[-2,2],[-2,3],[3,69],[-7,119],[-2,11],[-4,11],[-4,13],[-5,26],[-10,39],[-3,24],[-4,9],[-9,13],[-8,19],[-6,26],[-4,27],[-2,26],[-1,11]],[[77812,54285],[3,9],[2,13],[1,15],[0,5],[-1,10],[0,5],[2,7],[3,4],[1,5],[0,9],[-2,13],[-1,10],[2,24],[1,14],[0,7],[2,5],[4,2],[3,-3],[0,-2],[2,-3],[2,-3],[4,0],[0,1],[4,6],[3,0],[3,0],[3,-3],[2,-4],[10,-67],[3,-11],[6,-10],[8,-8],[3,-3],[6,-4],[4,-1],[8,2],[4,-2],[9,-14],[5,-5],[17,-10],[9,-9],[5,-3],[5,2],[18,27],[5,0],[0,-4],[0,-13],[1,-5],[2,-3],[3,-1],[3,0],[3,-1],[6,-8],[3,-11],[1,-29],[0,-6],[1,-7],[4,-12],[0,-5],[0,-5],[-1,-5],[0,-1],[-1,-5],[0,-17],[1,-5],[2,-9],[2,0],[1,4],[4,3],[3,-1],[12,-6],[5,2],[7,17],[6,2],[9,-15],[4,-3],[13,6],[3,-3],[2,-8],[1,-12],[0,-14],[-3,-5],[-4,-4],[-3,-10],[-1,-13],[5,-9],[5,-9],[2,-11],[-2,-23],[0,-34],[-2,-19],[0,-12],[-2,-11],[-6,-4],[-5,-2],[-5,-6],[-11,-49],[-2,-7],[-1,-7],[1,-7],[1,-5],[2,-7],[3,-14],[2,-4],[3,-3],[5,1],[3,-1],[6,-9],[6,-13],[4,-15],[3,-15],[5,-4],[7,5],[13,17],[5,8],[3,11],[3,12],[1,13],[3,27],[8,9],[11,4],[11,11],[10,14],[30,24],[9,8],[7,3],[6,-3],[4,-12],[1,-7],[2,-4],[2,-3],[3,-1],[3,-3],[0,-4],[-1,-6],[0,-6],[5,-27],[5,-10],[6,-2],[2,3],[1,0],[4,9],[4,3],[3,-3],[3,-6],[1,-7],[3,-6],[6,-7],[4,1],[3,7],[3,13],[1,4],[8,10],[2,5],[1,6],[1,5],[3,4],[9,17],[2,22],[0,26],[4,24],[7,18],[21,33],[7,16],[3,19],[-1,46],[2,31]],[[81984,53377],[5,-1],[4,1],[3,5],[3,20],[3,5],[4,-1],[3,-8],[1,-4],[1,-1],[6,0],[3,-1],[3,-2],[2,-3],[3,-12],[5,-3],[6,-1],[4,2],[3,5],[10,20],[1,3],[11,21],[9,24],[3,4],[6,2],[5,5],[5,7],[2,7],[2,9],[2,24],[0,22],[1,5],[3,12],[2,5],[3,4],[1,4],[-2,8],[-11,-10],[-10,0],[-9,9],[-25,45],[-1,6],[1,5],[0,4],[-3,1],[-1,-1],[-6,-10],[-1,7],[0,8],[2,10],[2,19],[2,8],[2,6],[1,4],[3,7],[14,18],[4,12],[3,9],[19,30],[10,45],[6,11],[4,-13],[-10,-38],[6,-17],[1,6],[1,16],[2,6],[9,-17],[6,-6],[24,-3],[8,1],[8,5],[8,15],[8,24],[5,26],[3,24],[3,26],[1,11],[3,10],[4,7],[25,29],[5,11],[1,13],[1,27],[2,12],[17,59],[4,25],[-5,18],[-6,-5],[-2,8],[3,11],[8,6],[5,6],[13,42],[6,11],[4,4],[4,2],[4,-3],[4,-4],[3,-1],[2,6],[-1,19],[-4,2],[-5,-6],[-7,-1],[0,3],[8,9],[4,10],[1,2],[2,1],[6,-1],[2,4],[1,2],[0,3],[2,19],[1,3],[1,5],[3,7],[25,40],[4,9],[5,8],[5,5],[4,6],[2,13],[0,11],[1,11],[2,9],[4,3],[5,8],[17,49],[4,9],[3,8],[2,11],[0,15],[0,20],[0,6],[1,4],[4,10],[1,6],[-1,23],[1,10],[8,8],[2,9],[3,23],[0,13],[1,6],[2,2],[1,2],[3,9],[2,7],[2,5],[3,4],[3,1],[1,-2],[3,-14],[12,-16],[1,-6],[4,-43],[-5,6],[-3,2],[-1,-2],[-2,-19],[0,-3],[3,-6],[4,-3],[4,-5],[2,-13],[-1,-23],[-3,-16],[-9,-28],[-5,-20],[-4,-26],[1,-21],[11,-6],[6,7],[5,11],[3,10],[3,5],[3,3],[13,25],[9,14],[2,8],[1,20],[1,3],[2,1],[2,3],[4,16],[10,22],[1,9],[-1,12],[-7,26],[1,12],[2,7],[2,1],[3,-2],[3,-2],[2,2],[2,5],[1,4],[-1,2],[-2,3],[-1,6],[1,7],[1,4],[3,1],[3,-2],[3,-2],[2,-1],[3,3],[4,7],[2,0],[2,-3],[7,-6],[2,-1],[1,-3],[15,-18],[1,-3],[1,-5],[1,-10],[-2,-28],[-1,-6],[-4,-4],[-1,-11],[0,-12],[2,-10],[10,-28],[1,-10],[1,-37],[1,-10],[3,-12],[4,-5],[11,1],[4,-3],[4,-7],[6,-14],[7,-14],[5,-8],[5,-3],[4,3],[3,6],[7,24],[4,11],[2,0],[1,-9],[1,-17],[1,0],[6,-14],[-1,1],[-1,-3],[0,-3],[0,-3],[1,-1],[4,-2],[1,-1],[4,-8],[3,-3],[3,-1],[4,4],[3,1],[3,-3],[7,-16],[3,-10],[2,-13],[2,0],[1,5],[2,3],[1,-1],[2,-3],[1,-4],[0,-4],[0,-6],[1,-6],[1,-6],[2,-10],[1,-4],[-1,-6],[-2,-5],[-1,-5],[2,-16],[-2,-39],[-2,-9],[-4,-1],[-9,3],[-6,-3],[-5,-8],[-8,-15],[-2,-10],[1,-9],[6,-15],[5,-23],[4,-4],[1,-3],[0,-6],[1,-5],[0,-5],[-1,-7],[-2,-5],[-3,-2],[-2,-2],[-1,-7],[2,-10],[4,-2],[4,-4],[2,-15],[-2,-9],[-4,-9],[-10,-12],[-35,-25],[-7,-16],[5,2],[16,15],[7,3],[20,1],[19,5],[13,-4],[5,1],[2,7],[-2,15],[2,4],[3,-1],[4,-2],[4,-1],[5,1],[13,5],[2,4],[2,8],[4,7],[8,11],[9,25],[5,6],[1,3],[2,1],[4,-2],[9,-21],[1,-5],[0,-7],[0,-5],[5,-6],[0,-7],[0,-12],[1,-14],[12,-33],[2,-3],[0,-4],[-8,-23],[-5,-5],[-6,-4],[-6,-1],[-5,4],[-5,-3],[-17,3],[-5,-3],[-3,-7],[0,-8],[2,-3],[1,-4],[9,-46],[2,-4],[1,-1],[2,2],[3,1],[4,3],[11,11],[5,2],[2,-1],[2,-5],[3,-2],[2,1],[3,3],[3,1],[2,-3],[3,-9],[2,-2],[3,3],[2,6],[0,6],[-1,6],[2,10],[1,4],[2,5],[0,4],[-2,11],[1,7],[4,7],[12,2],[12,11],[6,-3],[14,-16],[2,-1],[1,3],[3,7],[2,2],[3,-3],[3,-3],[2,-2],[5,-3],[28,-35],[10,-17],[4,-5],[5,-5],[4,-5],[2,-8],[-2,-6],[-2,-3],[-1,-2],[-1,-3],[-3,-33],[-2,-13],[-1,-12],[2,-13],[2,0],[3,15],[1,7],[2,5],[2,6],[-1,16],[1,6],[8,11],[6,0],[5,-8],[13,-34],[6,-11],[4,-4],[8,-3],[5,-8],[4,-12],[2,-14],[2,3],[1,3],[0,4],[0,6],[13,-21],[5,-3],[6,-6],[5,-12],[1,-13],[-5,-6],[3,-5],[4,-3],[5,0],[3,4],[1,8],[-2,6],[0,5],[3,5],[7,0],[13,-15],[9,-1],[21,22],[7,3],[5,-5],[4,-9],[6,-19],[6,-13],[3,-7],[1,-10],[-1,-13],[-2,-20],[-1,-10],[2,-27],[-1,-15],[-6,-12],[-14,-31],[-11,-13],[-51,-40],[-52,-32],[-10,-13],[-6,-6],[-7,-4],[-6,-1],[-4,2],[-9,8],[-8,2],[-6,4],[-3,0],[-3,-3],[-9,-13],[-6,-8],[-2,0],[-4,6],[-2,4],[-5,18],[-9,24],[-9,9],[-6,4],[-2,-3],[-3,2],[-6,-8],[-8,-16],[-3,3],[-1,-2],[-1,-6],[1,-7],[-11,5],[-10,-13],[-15,-37],[-5,-7],[-2,-5],[-1,-6],[0,-7],[2,-3],[1,-1],[8,-10],[1,-3],[2,-6],[3,-17],[7,-22],[7,-19],[9,-17],[10,-15],[3,-7],[3,-4],[2,-1],[3,0],[6,-2],[2,-2],[1,-3],[2,-11],[1,-4],[2,-4],[2,-2],[5,-5],[1,11],[3,2],[5,-3],[4,-5],[3,-8],[1,-8],[-1,-7],[-4,-8],[-1,-7],[3,-7],[3,-6],[2,-4],[2,-4],[5,6],[8,12],[3,-3],[7,-2],[4,-3],[-2,-8],[3,-11],[11,-26],[0,-4],[-2,-6],[-3,-4],[-3,1],[-2,3],[-5,2],[2,-10],[-1,-9],[-3,-8],[-3,-6],[-4,-6],[-4,-2],[-11,1],[-5,-2],[-9,-5],[-5,-2],[-12,0],[-7,2],[-4,7],[-4,-11],[-2,-3],[-25,-15],[-22,-4],[-7,-5],[-37,-39],[-6,-1],[-17,11],[-5,2],[-3,3],[-11,21],[-4,5],[-2,2],[-2,1],[-1,2],[-2,12],[-1,2],[-4,1],[-9,7],[-7,3],[-2,2],[-6,9],[-3,10],[-3,12],[-4,11],[-5,-1],[-6,-9],[-5,-10],[-3,-6],[2,-5],[5,-7],[1,-7],[0,-24],[1,-6],[4,-9],[1,-7],[-2,-7],[-2,-6],[-6,-8],[-2,-4],[-1,-5],[-2,-4],[0,-5],[1,-3],[4,-10],[2,-5],[-2,1],[-3,-1],[-11,-10]],[[80456,51703],[2,-10],[0,-13],[3,-24],[0,-12],[-1,-9],[-1,-9],[0,-9],[2,-13],[8,-25],[6,-11],[5,-9],[17,-15],[10,-14],[12,-10],[4,-8],[4,-10],[4,-21],[4,-9],[4,-2],[13,1],[4,1],[4,5],[6,1],[35,0],[4,-2],[5,-8],[4,-2],[1,1],[4,8],[2,3],[3,2],[1,0],[2,-2],[7,-16],[2,-1],[1,10],[3,7],[0,4],[0,4],[-1,6],[-1,2],[0,19],[0,5],[4,13],[4,6],[4,-3],[2,-17],[3,-7],[1,-4],[0,-4],[-1,-8],[1,-4],[1,-4],[1,-4],[1,-2],[2,-2],[2,-2],[3,-1],[6,-1],[3,2],[3,12],[8,6],[5,6],[5,1],[3,-11],[-3,-9],[-2,-8],[-2,-10],[0,-11],[-1,-5],[-5,-11],[-2,-7],[8,7],[3,1],[4,-4],[3,-6],[1,-7],[1,-5],[3,-2],[2,1],[6,6],[3,1],[4,-3],[12,-13],[16,-10],[7,-9],[3,-14],[-2,-15],[-4,-10],[-11,-15],[0,-4],[7,0],[6,2],[5,6],[6,10],[3,11],[-1,12],[-1,10],[0,10],[7,12],[13,-4],[24,-21],[12,-16],[21,-45],[10,-15],[17,-18],[3,-3],[7,2],[9,11],[6,4],[9,-8],[10,-18],[11,-11],[12,12],[-5,1],[-7,6],[-4,1],[-1,4],[-3,17],[-2,3],[-4,2],[-8,6],[-4,0],[-3,-2],[-10,-9],[-6,-1],[-6,3],[-4,7],[-4,9],[-5,7],[-12,11],[-5,8],[-5,28],[-5,11],[-2,8],[0,17],[0,5],[4,20],[2,22],[3,8],[16,6],[6,1],[6,-4],[3,-11],[4,-14],[4,-8],[7,6],[3,2],[4,-6],[5,-5],[6,3],[-6,4],[-2,3],[-5,8],[-3,0],[-2,0],[-6,3],[-2,0],[0,1],[-1,8],[-3,9],[-1,3],[-1,2],[-5,2],[-1,2],[-1,2],[-7,24],[-1,8],[-1,9],[2,3],[6,3],[2,4],[-1,3],[-4,6],[-1,5],[1,12],[2,11],[6,20],[9,38],[8,55],[1,14],[1,3],[4,-1],[5,-4],[7,1],[-7,13],[-1,14],[4,8],[5,-1],[6,-4],[10,-5],[2,2],[4,5],[2,4],[5,15],[1,5],[-3,5],[-3,-2],[-3,-7],[-2,-14],[-3,-2],[-3,3],[-8,10],[-5,2],[-20,-6],[-4,1],[-2,6],[0,14],[2,9],[4,10],[6,6],[5,-3],[-3,11],[-5,5],[-5,2],[-2,4],[0,11],[4,28],[2,41],[4,17],[7,11],[2,-10],[4,-4],[9,-7],[3,-5],[7,-19],[3,-4],[1,-1],[2,-4],[2,-2],[2,1],[9,13],[3,2],[9,3],[2,-1],[5,-8],[6,-7],[-3,11],[-5,12],[-9,18],[-3,7],[-3,25],[-2,9],[9,-1],[7,-5],[7,0],[5,10],[2,-2],[0,-1],[1,1],[1,2],[-6,5],[-10,5],[-5,6],[-3,6],[-3,7],[-2,9],[1,14],[4,37],[2,23],[2,8],[3,7],[20,33],[30,40],[9,8],[53,23],[42,3],[79,44],[77,43],[42,19],[17,15],[4,0],[48,32],[9,10],[15,34],[6,22],[-4,14],[2,5],[8,10],[13,25],[3,4],[1,5],[10,31],[21,41],[5,16],[1,5],[1,5],[0,13],[2,6],[6,10],[2,4],[2,6],[13,32],[6,24],[3,14],[0,13],[3,11],[5,10],[11,14],[68,123],[58,162],[6,28],[-2,24],[6,19],[3,25],[0,28],[-7,56],[2,10],[7,4]],[[81666,53195],[18,-19],[15,-5],[6,-6],[9,-15],[7,-6],[3,-5],[2,-12],[2,-1],[4,-1],[2,-1],[1,-4],[0,-5],[1,-4],[3,-7],[1,-6],[3,-17],[0,-16],[3,-12],[2,-27],[-1,-6],[-4,-7],[0,-3],[0,-9],[1,-6],[10,-1],[12,-5],[11,4],[5,0],[4,-8],[6,-38],[2,-11],[4,-12],[18,-34],[6,-9],[2,-4],[1,-6],[2,-15],[2,-5],[11,-3],[13,17],[26,52],[2,8],[2,25],[1,11],[7,20],[2,11],[-1,11],[-9,-8],[0,12],[2,6],[1,3],[7,14],[3,10],[2,10],[3,23],[0,16],[-2,3],[-4,-1],[-5,4],[-5,17],[-2,21],[-1,70],[-1,13],[-2,12],[-5,22],[-2,11],[0,10],[3,5],[10,9],[5,6],[9,19],[5,6],[6,4],[5,-1],[5,-2],[5,1],[4,6],[2,9],[0,9],[1,10],[7,13]],[[81939,53365],[3,3],[2,4],[2,4],[2,5],[2,-12],[0,-23],[2,-21]],[[81952,53325],[-2,-47],[1,-49],[2,-23],[10,-46],[3,-23],[3,-58],[2,-9],[4,-5],[16,-13],[6,-2],[8,2],[2,-2],[5,-8],[2,-3],[6,1],[2,-2],[5,-7],[7,-6],[6,-1],[4,10],[-1,12],[-4,13],[-10,19],[-6,18],[-4,24],[-1,25],[0,23],[2,23],[1,11],[-2,14],[-18,111],[-7,22],[-3,5],[-4,3],[-3,6],[0,14]],[[82838,53937],[4,-2],[1,-6],[-2,-6],[-3,-2],[-2,-1],[-5,-3],[-1,-1],[-3,1],[-2,1],[-2,3],[-1,4],[2,5],[3,5],[4,2],[7,0]],[[80947,51886],[0,-3],[0,-5],[0,-3],[-3,3],[-3,2],[-2,-2],[-2,-5],[-2,-6],[-3,8],[-4,24],[-3,5],[-6,6],[-1,12],[2,26],[1,24],[-5,98],[0,30],[4,19],[10,-8],[5,-19],[3,-25],[1,-103],[2,-44],[6,-34]],[[78950,52119],[1,-29],[-1,-7],[-3,-5],[-6,-4],[-5,-1],[-4,4],[-5,12],[-3,7],[0,5],[0,3],[-1,10],[0,5],[2,4],[3,3],[2,3],[3,9],[0,9],[-1,9],[-1,10],[0,6],[2,6],[3,4],[2,-1],[2,-3],[0,-3],[1,-7],[0,-4],[4,-12],[2,-8],[3,-25]],[[82979,53130],[6,-4],[3,-8],[-1,-9],[-6,-3],[-11,0],[-4,-9],[-2,0],[-1,2],[0,2],[-1,12],[-1,3],[-3,6],[-1,3],[-1,7],[1,1],[3,1],[4,0],[15,-4]],[[82919,53223],[3,10],[8,-1],[7,-6],[7,-7],[0,-4],[-5,-1],[-2,-4],[-1,-7],[0,-8],[-5,10],[-2,2],[-1,-3],[-1,-5],[-1,-4],[-3,2],[-4,7],[-4,4],[-5,2],[-3,1],[-2,1],[-2,5],[-1,2],[-10,4],[-19,12],[0,4],[22,0],[3,2],[2,4],[2,4],[2,2],[5,-2],[3,-8],[2,-11],[5,-7]],[[82013,53647],[3,-29],[0,-15],[-5,-11],[-3,0],[-5,8],[-3,-1],[-5,-10],[-7,-9],[0,9],[8,46],[2,6],[8,15],[5,4],[2,-13]],[[77863,53698],[2,-9],[5,-5],[2,-6],[-5,-20],[-1,-23],[-1,-11],[-7,-27],[-1,-11],[-15,6],[-11,0],[0,-1],[0,-2],[-1,0],[-2,1],[-1,3],[0,2],[4,5],[0,8],[-1,32],[1,27],[-1,6],[-1,4],[-2,4],[0,3],[0,5],[1,5],[1,4],[-2,4],[3,3],[2,-3],[1,-6],[3,-2],[2,1],[1,4],[2,4],[1,3],[5,3],[6,-1],[5,-3],[5,-7]],[[77718,54166],[4,19],[6,5],[4,7],[0,-10],[-2,-5],[-2,-6],[0,-8],[0,-3],[0,-10],[2,-10],[-1,-9],[-3,-9],[-3,-2],[-4,8],[-2,9],[-3,2],[-2,11],[6,11]],[[77749,54239],[3,-10],[1,-5],[1,-5],[-3,-3],[-4,-2],[-2,-6],[-4,-4],[-1,-9],[-5,6],[-1,14],[-6,0],[-5,-4],[-4,-11],[-4,-9],[-4,-1],[-4,-7],[-3,-3],[-2,-2],[-4,29],[2,10],[-1,15],[-5,3],[-7,4],[-5,-1],[-2,8],[-1,10],[-1,25],[7,-5],[6,5],[9,-1],[4,-6],[9,-2],[5,1],[4,8],[3,11],[3,0],[4,0],[-1,5],[0,5],[2,-1],[3,-2],[2,-13],[2,-9],[3,-5],[6,-6],[0,-5],[2,-2],[2,-5],[-1,-7],[-3,-8]],[[82629,54477],[7,-19],[5,-18],[-1,-18],[-11,-18],[-7,-5],[-8,0],[-9,3],[-7,5],[-2,4],[-1,5],[0,5],[3,4],[3,2],[14,2],[4,2],[3,6],[2,9],[-3,6],[-10,1],[-1,8],[4,7],[11,3],[4,6]],[[82500,54826],[4,-8],[1,-14],[0,-14],[-3,-9],[-5,10],[-4,-4],[-2,-11],[3,-11],[-26,-14],[1,-6],[2,-3],[2,-3],[-2,-7],[-2,-2],[-4,-1],[-4,1],[-3,2],[13,53],[4,4],[10,5],[4,4],[11,28]],[[82547,54818],[21,8],[6,-4],[3,-10],[1,-14],[-3,-45],[-3,-18],[-4,-11],[-5,5],[-5,-5],[-16,-6],[-4,-4],[-1,-3],[-8,-7],[-2,-4],[-2,-7],[-1,-6],[-2,-6],[-3,-5],[-2,14],[-2,45],[1,10],[1,4],[0,27],[1,5],[2,3],[4,3],[3,3],[6,15],[7,9],[3,3],[4,1]],[[78130,52274],[-1,-7],[-2,-3],[-4,-2],[-2,5],[2,8],[5,5],[2,-6]],[[78149,52277],[-1,-4],[1,-8],[-1,-13],[-4,-8],[-5,-4],[-4,-7],[-2,-3],[-2,-3],[-2,-1],[0,3],[0,7],[7,36],[4,12],[5,4],[3,-3],[1,-8]],[[30691,40102],[1,-46],[3,-22],[6,-18],[22,-41],[10,-23],[7,-27],[2,-21],[0,-44],[3,-22],[4,-14],[3,0],[4,5],[4,2],[6,-13],[2,-4],[2,-2],[6,-3],[9,-10],[4,-4],[5,-3],[6,0],[4,4],[3,0],[3,-9],[0,-1],[-2,-25],[-10,-17],[-8,-17],[4,-28],[8,-18],[3,-10],[1,-14],[0,-6],[0,-5],[5,-25],[0,-5],[-1,-33],[1,-9],[10,-35],[2,-12],[0,-14],[-2,-28],[0,-31],[3,-29],[6,-24],[2,-7],[1,-8],[-1,-8],[-2,-8],[0,-1],[0,-1],[16,-66],[1,-6],[-1,-13],[-2,-11],[-8,-23],[4,-5],[4,-8],[5,-19],[6,-31],[3,-9],[4,-5],[13,-9],[9,-13],[26,-46],[7,-14],[10,-34],[7,-10],[10,-8],[30,-44],[6,-11],[4,-11],[2,-12],[-2,-4],[-11,-10],[-4,-8],[-6,-17],[-12,-38],[-15,-46],[-5,-10],[-12,-21],[-4,-12],[0,-11],[2,-7],[13,-21],[9,-19],[5,-7],[8,-7],[3,-4],[2,-8],[0,-5],[1,-17],[1,-8],[1,-4],[0,-3],[0,-9],[-6,-28],[0,-11],[-3,-20],[-1,-7],[-3,-6],[-2,0],[-3,2],[-4,1],[-9,-2],[-34,-21],[-4,-10],[1,-11],[8,-11],[9,-4],[1,-6],[-1,-17],[-1,-23],[3,-20],[11,-39],[-15,-11],[-7,-10],[-3,-16],[1,-18],[4,-18],[6,-16],[6,-13],[6,-10],[29,-27],[13,-17],[7,-6],[8,-14],[0,-10],[-19,-34],[-4,-12],[-2,-14],[0,-76],[5,-25],[6,-8],[6,-7],[4,-1],[12,1],[6,-3],[4,-9],[58,-192],[4,-26],[-1,-144],[2,-21],[17,-63],[6,-45],[3,-98],[1,-8],[3,-7],[6,-13],[14,-26],[6,-7],[4,-13],[4,-14],[1,-13],[-1,-5],[-4,-10],[-1,-6],[1,-6],[8,-22],[3,-15],[0,-11],[-5,-37],[0,-12],[2,-12],[11,-39],[2,-12],[2,-30],[9,-33],[0,-12],[-9,-88],[0,-46],[1,-15],[3,-9],[11,-4],[1,0],[6,-18],[2,-4],[9,-6],[43,-5],[20,2],[10,4],[88,38]],[[31335,36954],[50,-106],[-2,-18],[-5,-32],[-19,-126],[-20,-125],[-19,-126],[-1,-6],[-10,-60],[-9,-60],[-6,-39],[-6,-17],[-14,-15],[-11,-9],[-3,-2],[-5,-4],[-6,-4],[-2,-2],[-35,-30],[-35,-31],[-34,-30],[-35,-30],[-14,-12],[-14,-11],[-14,-12],[-14,-11],[-9,-8],[-5,-6],[-1,-5],[-3,-16],[-10,-33],[-4,-7],[-5,0],[-5,3],[-5,2],[-5,-6],[-11,-47],[-2,-18],[-2,-11],[-3,3],[-5,15],[-4,-2],[-2,-6],[-1,-9],[-1,-8],[-3,-20],[-14,-56],[-2,-13],[0,-10],[7,-32],[1,-4],[2,-5],[7,-8],[2,-3],[6,0],[3,-2],[1,-5],[2,-9],[0,-2],[-1,-3],[1,-3],[1,-3],[3,-5],[1,-2],[1,-5],[2,-3],[0,-4],[0,-6],[-1,-22],[6,-18],[9,-16],[6,-15],[0,-12],[-4,-8],[-5,-4],[-6,-3],[-6,1],[-5,1],[-4,0],[-5,-6],[-1,-2],[-6,-14],[-10,-64],[-15,-86],[-1,-23],[1,-11],[1,-10],[10,-24],[4,-13],[-4,-9],[2,-12],[0,-16],[0,-16],[5,-15],[6,-11],[4,-13],[2,-16],[4,-48],[19,-152],[2,-30],[-3,-21],[-35,-53],[-8,-21],[-3,-20],[-2,-24],[-1,-47],[3,-30],[4,-25],[8,-23],[9,-23],[53,-143],[4,-17],[1,-17],[-2,-10],[-4,-22],[-2,-11],[0,-7],[1,-15],[-1,-5],[-2,0],[-8,1],[-3,0],[-12,-11],[-6,-3],[-14,-1],[-7,-5],[-6,-8],[-5,-10],[-3,-13],[-2,-12],[-3,-8],[-7,-1],[-11,8],[-9,15],[-10,12],[-13,1],[-10,-5],[-3,-4],[-4,-10],[-12,-37],[-3,-13],[0,-11],[1,-23],[-1,-10],[-14,-59],[-3,-8],[-4,-7],[-10,-10],[-5,-7],[-2,-7],[-1,-7],[0,-8],[2,-8],[-1,-15],[-3,-16],[-7,-28],[-2,-6],[-7,-12],[-2,-6],[0,-10],[2,-7],[2,-8],[1,-8],[-2,-5],[-7,-7],[-3,-4],[-2,-7],[-2,-23],[-11,-89],[-5,-17],[-7,-10],[-16,-8],[-5,-4],[-3,-6],[-3,-9],[0,-5],[1,-4],[-1,-4],[-5,-9],[-10,-47],[-6,-18],[-6,-24],[-3,-6],[-4,2],[-6,8],[-5,4],[-4,-6],[-3,-31],[-3,-10],[-12,-30],[-15,-22],[-12,-25],[-1,-2],[-5,-33],[0,-63],[-1,-6],[-2,-3],[-3,-1],[-2,-2],[-6,-16],[-5,-18],[-3,-19],[-1,-20],[1,-14],[4,-25],[1,-13],[0,-10],[-8,-28],[-1,-5],[0,-5],[0,-5],[-2,-5],[-3,-8],[-3,-9],[-2,-11],[-1,-12],[0,-12],[1,-12],[2,-29],[0,-16],[-2,-13],[-5,-13],[-7,-5],[-13,-5],[-5,-3],[-1,-4],[0,-4],[-2,-7],[-3,-5],[-7,-9],[-5,-8],[-1,0],[-2,-2],[-1,-4],[1,-3],[3,-8],[0,-4],[-1,-6],[-3,-4],[-3,-3],[-3,-2],[-5,-7],[-3,-12],[-1,-29],[0,-10],[2,-8],[3,-7],[2,-9],[2,-31],[3,-5],[1,-7],[2,-7],[6,-56],[0,-18],[-1,-17],[0,-14],[2,-12],[8,-11],[2,-8],[4,-52],[-2,-79],[-2,-22],[-3,-21],[-10,-27],[-1,-9],[2,-10],[4,-2],[11,3],[10,-7],[9,-16],[4,-21],[-4,-22],[-2,-3],[-6,-5],[-2,-5],[-1,-4],[-1,-6],[-1,-11],[-1,-22],[-1,-11],[-2,-10],[-8,-15],[-7,-12],[-8,-8],[-10,-5],[-10,5],[-23,21],[-7,-7],[0,-10],[7,-22],[1,-12],[-2,-12],[-3,-6],[-5,-4],[-4,-6],[-6,-17],[-5,-45],[-4,-21],[-6,-18],[-1,-9],[-1,-12],[0,-8],[0,-6],[1,-5],[-2,-8],[-5,-12],[-1,-4],[-4,-21],[-6,-81],[1,-11],[3,-9],[5,-10],[8,-13],[3,-8],[0,-8],[-3,-1],[-12,3],[-5,-5],[-6,-18],[-3,-12],[-3,-17],[-3,-9],[-4,-8],[-4,-2],[-4,7],[-1,14],[-2,12],[-6,5],[-3,-4],[-16,-45],[-1,-9],[-1,-12],[0,-23],[-1,-11],[-6,-23],[1,-11],[2,-11],[1,-13],[-1,-11],[-5,-19],[-1,-11],[1,-22],[-1,-21],[-3,-26],[0,-11],[3,-15],[15,-54],[8,-18],[3,-10],[0,-25],[1,-14],[2,-14],[3,-10],[10,-19],[10,-5],[10,1],[12,-3],[5,-6],[6,-9],[5,-11],[3,-10],[1,-11],[-2,-8],[-2,-7],[-3,-9],[-2,-22],[-3,-5],[-7,0],[-12,8],[-5,2],[-4,-7],[-1,-7],[1,-5],[5,-9],[2,-5],[0,-5],[0,-11],[1,-6],[5,-6],[1,-4],[0,-6],[-2,-9],[-1,-6],[1,-7],[3,-13],[1,-6],[0,-6],[0,-10],[0,-6],[2,-14],[3,-5],[5,-2],[6,-4],[4,-9],[4,-10],[-1,-43],[5,-19],[11,-11],[4,-7],[4,-12],[0,-12],[0,-11],[0,-10],[6,-16],[-3,-2],[-6,0],[-2,-5],[0,-5],[-1,-11],[0,-13],[7,-64],[4,-18],[15,-33],[9,-16],[5,-5],[6,-5],[4,-5],[0,-8],[-5,-16],[-1,-11],[-3,-25],[-3,-9],[-3,-5],[-9,-4],[-4,-6],[-3,-12],[2,-9],[0,-1],[3,-10],[1,-12],[-5,-34],[0,-12],[2,-10],[4,-9],[10,-14],[3,-8],[8,-36],[8,3],[12,31],[10,3],[9,-7],[10,-10],[6,-14],[2,-32],[5,-21],[0,-12],[-2,-9],[-7,-17],[-3,-9],[-1,-9],[-1,-28],[-1,-7],[-2,-2],[-5,-4],[-2,-3],[-1,-6],[0,-5],[1,-5],[1,-6],[-6,-34],[-1,-12],[3,-9],[7,-20],[0,-9],[-3,-6],[-10,-14],[-2,-7],[0,-12],[5,-46],[-1,-11],[-2,-23],[-1,-16],[3,-2],[4,3],[6,-3],[2,-16],[0,-27],[-2,-45],[-1,-9],[-1,-5],[-1,-6],[2,-9],[2,-8],[6,-24],[3,-14],[-1,-6],[-20,-15],[0,-3],[-1,-4],[-1,-2],[-10,6],[-6,2],[-6,1],[-14,-5],[-2,-3],[-3,-5],[-2,-13],[1,-18],[1,-17],[0,-14],[-3,-11],[-12,-20],[-4,-13],[-7,-28],[-4,-12],[-12,-18],[-5,-10],[-4,-20],[-3,-46],[-6,-18],[-5,-6],[-5,-2],[-2,-3],[3,-11],[4,-8],[3,-5],[1,-7],[-21,-92],[-5,-42],[0,-2],[1,-41],[-5,-42],[-44,-25],[-10,-30],[6,-23],[11,-6],[12,-3],[10,-11],[3,-14],[-3,-6],[-6,-3],[-3,-5],[1,-9],[7,-39],[4,-10],[4,-8],[2,-9],[-3,-24],[2,-24],[0,-12],[-3,-21],[0,-10],[13,-60],[4,-13],[1,-19],[-17,-31],[-1,-21],[3,-3],[6,2],[2,-5],[-1,-4],[-1,-4],[-3,-3],[-1,-4],[-2,-11],[0,-7],[8,-36],[1,-9],[-2,-8],[-5,-9],[-2,-6],[-3,-19],[-2,-8],[-2,-4],[-4,-9],[-6,-6],[-7,-1],[-13,12],[-7,3],[-3,-3],[-2,-4],[-3,-12],[0,-3],[-1,-7],[-1,-4],[-1,-2],[-3,-3],[-1,-2],[-11,-23],[-3,-5],[-5,-2],[-3,-2],[-2,-3],[-1,-6],[0,-5],[1,-5],[-1,-5],[-4,-15],[-1,-5],[1,-7],[4,-13],[1,-7],[0,-14],[-2,-7],[-25,-11],[-2,2],[-2,3],[-2,3],[-11,9],[-6,3],[-5,-3],[-2,-8],[-2,-23],[-3,-9],[-6,-6],[-4,-2],[-6,2],[-5,3],[-5,-2],[-5,-2],[-5,-21],[-2,-27],[0,-23],[4,-40],[0,-9],[-5,-6],[-5,5],[-5,6],[-6,1],[-4,-7],[-1,-9],[1,-22],[-2,-11],[-7,-33],[-1,-4],[-2,-5],[-2,-5],[0,-5],[1,-6],[3,-3],[2,-2],[3,-4],[1,-6],[0,-2],[0,-2],[0,-5],[-1,-5],[-1,-5],[0,-4],[8,-9],[1,-9],[-2,-8],[-5,-6],[-6,0],[-5,3],[-2,-1],[5,-8],[9,-10],[2,-6],[3,-29],[3,-9],[11,-16],[-10,-9],[-4,-8],[-3,-13],[0,-12],[1,-12],[0,-11],[-3,-13],[-11,-23],[-3,-11],[1,-13],[2,-17],[8,-28],[9,-20],[3,-11],[2,-14],[-1,-11],[-4,-23],[-2,-11],[1,-7],[3,-10],[0,-7],[-1,-4],[-7,-7],[-4,-7],[-4,-7],[-2,-8],[0,-13],[2,-26],[14,-79],[11,-35],[2,-25],[7,-23],[3,-12],[2,-12],[2,-10],[8,-17],[0,-4],[1,-3],[-1,-3],[0,-4],[-4,-9],[0,-11],[2,-13],[2,-11],[0,-1],[0,-2],[0,-1],[-2,-20],[-1,-18],[1,-18],[12,-95],[6,-21],[9,-14],[11,-11],[9,-15],[4,-22],[-1,-12],[-3,-9],[-7,-16],[-3,-9],[-1,-4],[0,-7],[1,-5],[2,-3],[1,-4],[0,-6],[-2,-2],[-8,-7],[-2,-3],[-4,-14],[-4,-7],[-6,-2],[-12,3],[-11,-1],[-8,-6],[-17,-21],[-4,-4],[-21,-5],[-2,-2],[-1,-4],[-4,-9],[-7,-10],[-25,-22],[-9,-14],[-4,-14],[-4,-38],[0,-16],[5,-44],[3,-80],[-3,-49],[-2,-14],[-5,-9],[-6,-6],[-5,-9],[0,-12],[4,-19],[-2,-9],[-4,-7],[-5,-16],[-4,-8],[-7,-18],[13,-20],[-2,-21],[-5,-8],[-5,0],[-5,1],[-6,-1],[-6,-3],[-5,2],[-4,6],[-3,4],[-10,19],[-3,0],[-4,-9],[-3,-11],[-1,-13],[1,-13],[6,-17],[-2,-9],[-2,-11],[-2,-11],[1,-12],[5,-26],[2,-12],[0,-13],[2,-9],[3,-7],[9,-14],[4,-7],[1,-9],[-2,-12],[-10,-38],[-2,-3],[-2,-3],[-2,-3],[0,-5],[0,-6],[3,-13],[0,-6],[-3,-23],[-11,4],[-13,10],[-9,-2],[-4,-8],[0,-4],[2,-5],[1,-5],[0,-5],[-1,-5],[-2,-18],[0,-6],[1,-6],[-1,-2],[-2,-9],[0,-4],[2,-10],[4,-9],[8,-15],[6,-15],[2,-3],[4,-1],[1,2],[0,3],[2,3],[4,2],[1,0],[4,-4],[2,-4],[1,-5],[0,-6],[0,-6],[-1,-9],[-11,-43],[-3,-5],[-4,0],[-12,5],[-3,-1],[-2,-7],[-10,-54],[-5,-15],[-1,-4],[0,-6],[3,-7],[1,-5],[-1,-22],[-6,-18],[-21,-37],[-2,-7],[10,-63],[3,-13],[11,-27],[3,-11],[2,-15],[0,-11],[-5,-25],[1,-6],[0,-6],[4,-22],[-1,-13],[-2,-21],[-1,-21],[-2,-10],[-2,-3],[-3,-5],[1,-12],[3,-19],[1,-10],[-1,-12],[-7,-39],[-1,-19],[4,-22],[2,-11],[1,-8],[0,-8],[0,-12],[-2,-17],[0,-8],[2,-10],[3,-9],[3,-6],[1,-7],[-2,-10],[-4,-6],[-10,-10],[-4,-7],[0,-18],[16,-37],[3,-19],[0,-23],[5,-16],[7,-14],[6,-18],[5,-42],[0,-10],[-1,-10],[0,-8],[3,-8],[2,-5],[5,-10],[1,-4],[1,-31],[-4,-12],[-6,-9],[-8,-7],[-20,-5],[-3,-3],[-3,-5],[-2,-6],[-2,-5],[-4,-3],[-7,6],[-4,13],[-4,11],[-9,1],[-8,-12],[-4,-15],[-2,-16],[-5,-14],[-7,-12],[-6,-13],[-2,-15],[3,-15],[14,-22],[3,-11],[-5,-32],[1,-6],[8,-22],[2,-6],[-1,-6],[-14,-12],[-8,-11],[-6,-16],[-2,-21],[1,-5],[3,-8],[1,-6],[0,-4],[-3,-15],[1,-8],[4,-20],[1,-10],[2,-85],[-1,-20],[-7,-39],[-2,-21],[6,-26],[9,-21],[12,-16],[12,-9],[41,-7],[26,-17],[5,-7],[2,-10],[-1,-6],[-2,-10],[-1,-5],[0,-6],[2,-9],[0,-5],[1,-11],[-1,-10],[-3,-7],[-12,4],[-6,-2],[-11,-9],[-7,-1],[-3,-1],[-2,-5],[0,-18],[-1,-4],[-2,-4],[-2,-2],[-2,-3],[-2,-6],[0,-3],[1,-17],[-1,-5],[-3,-2],[-1,-3],[2,-6],[3,-2],[3,1],[3,2],[3,1],[5,-2],[5,-5],[3,-9],[0,-13],[-5,-12],[-1,-3],[2,-9],[6,-2],[8,0],[6,-1],[3,-3],[2,-3],[1,-4],[2,-4],[2,-2],[11,-14],[3,-4],[1,-7],[2,-34],[-2,-8],[-4,-8],[-5,-4],[-12,-7],[-5,-6],[-2,-7],[-2,-11],[1,-10],[5,-4],[6,3],[4,4],[2,-1],[0,-14],[0,-5],[-2,-4],[-1,-5],[1,-6],[2,-4],[5,-4],[2,-3],[4,-7],[15,-40],[0,-8],[-3,-12],[-21,-50],[-4,-12],[-10,-13],[-11,-5],[-6,-8],[4,-22],[9,-25],[2,-10],[0,-11],[-7,-17],[-1,-11],[3,-10],[3,-8],[2,-8],[-2,-11],[-4,-5],[-6,-4],[-5,-6],[1,-11],[11,-16],[12,1],[12,5],[12,0],[14,-5],[57,0],[42,-12],[14,-1],[7,-2],[7,-6],[4,-9],[1,-8],[1,-9],[2,-10],[4,-8],[3,-5],[2,-6],[0,-11],[-2,-13],[-4,-6],[-6,-2],[-6,0],[-3,-4],[-4,-9],[-6,-19],[-1,-12],[0,-9],[2,-21],[-2,-23],[-7,-17],[-9,-11],[-11,-3],[-12,5],[-21,24],[-12,5],[-12,-4],[-25,-18],[-11,1],[-19,13],[-6,1],[-7,-1],[-4,-6],[-3,-7],[-5,-6],[-7,-1],[-37,11],[-6,4],[-11,6],[-7,-3],[-4,-13],[4,-32],[0,-10],[-2,-20],[2,-9],[6,-3],[12,2],[11,-7],[11,-11],[11,-8],[11,3],[6,4],[7,4],[6,1],[6,-3],[5,-5],[7,-14],[4,-5],[12,-4],[10,3],[10,-2],[9,-16],[11,-36],[5,-27],[3,-7],[11,-21],[15,-16],[9,-14],[6,-15],[6,-19],[2,-19],[-6,-14],[-5,-6],[-7,-16],[-4,-7],[-5,-4],[-28,-18],[0,-6],[2,-12],[6,-17],[1,-9],[-3,-9],[-11,-12],[-10,-3],[-21,2],[-9,-2],[-12,-6],[-10,-9],[-4,-14],[1,-2],[4,-7],[1,-4],[-1,-4],[-1,-3],[-2,-3],[-2,-3],[-5,-15],[-1,-7],[0,-9],[0,-5],[1,-3],[1,-4],[-1,-6],[-5,-11],[0,-4],[1,-9],[2,-7],[8,-10],[3,-11],[0,-9],[-3,-8],[-1,-9],[2,-10],[4,-6],[12,-6],[10,-10],[6,-12],[5,-17],[3,-22],[-10,-17],[-20,-34],[-4,-8],[-6,-18],[-3,-7],[-7,-5],[-6,-3],[-21,-4],[-4,-2],[-2,-3],[-1,-6],[2,-3],[2,-1],[3,-3],[13,-19],[17,-17],[5,-12],[2,-17],[-1,-27],[0,-23],[3,-21],[18,-75],[1,-11],[-1,-9],[-2,-9],[-1,-11],[5,-43],[-2,-18],[-10,-15],[-15,-13],[-5,-8],[-7,-17],[-4,-5],[-6,-4],[-15,0],[-7,-3],[-4,-8],[-1,-6],[2,-4],[1,-5],[2,-4],[-1,-5],[-1,-4],[-2,-4],[-1,-4],[-5,-35],[0,-9],[3,-8],[9,-13],[3,-9],[-5,-9],[-18,-16],[-2,-12],[6,-11],[18,-16],[7,-8],[6,-13],[3,-15],[0,-17],[-5,-15],[-9,-7],[-9,4],[-18,17],[-6,1],[-3,-4],[-1,-7],[1,-10],[2,-10],[1,-6],[1,-6],[-3,-10],[-5,-15],[-25,-42],[-7,-15],[-4,-6],[-6,-1],[-15,3],[-7,0],[-12,-7],[-5,-6],[-4,-8],[-2,-14],[3,-6],[6,-2],[5,-7],[0,-8],[-5,-31],[-1,-12],[-1,-10],[-2,-10],[-3,-9],[-26,-68],[-5,-20],[-7,-42],[-7,-17],[-5,-19],[2,-19],[7,-16],[9,-12],[6,-4],[5,-2],[5,-3],[5,-9],[1,-5],[0,-6],[1,-5],[2,-4],[3,-2],[9,-5],[3,-12],[7,-72],[-1,-11],[-3,-23],[-1,-10],[2,-8],[4,-10],[3,-10],[-2,-8],[-4,-2],[-8,4],[-4,0],[-3,-2],[-2,-2],[-3,-8],[-8,-16],[-5,-6],[-17,-8],[-12,-10],[-11,-12],[-10,-35],[2,-30],[6,-32],[2,-63],[-1,-23],[-3,-18],[-7,-17],[-15,-26],[-20,-30],[-10,-12],[-12,-6],[-27,-5],[-14,-7],[-11,-15],[-2,-5],[-17,-36],[-4,-13],[0,-9],[0,-7],[-1,-8],[-3,-8],[-18,-32],[-3,-15],[0,-14],[4,-7],[2,-5],[18,-5],[0,-3],[-9,-4],[-3,-4],[-1,-11],[-87,-2],[-4,-6],[0,-15],[3,-19],[-2,-7],[-4,-8],[-11,-10],[-5,-6],[-3,-10],[0,-11],[2,-9],[0,-8],[-4,-10],[-8,-13],[0,-6],[3,-11],[4,-7],[8,-14],[3,-8],[1,-12],[-3,-9],[-3,-9],[-2,-11],[2,-9],[4,-8],[9,-13],[8,-19],[0,-16],[-5,-14],[-15,-22],[-1,-8],[0,-9],[-1,-11],[-3,-8],[-4,-7],[-1,-7],[5,-9],[15,-18],[4,-8],[2,-11],[-1,-7],[-14,-36],[-2,-18],[3,-16],[34,-46],[12,-8],[5,-7],[6,-15],[6,-18],[5,-20],[3,-19],[0,-12],[-1,-24],[1,-12],[3,-32],[0,-34],[1,-9],[4,-10],[12,-22],[3,-9],[1,-22],[0,-22],[3,-20],[10,-12],[12,0],[13,7],[11,13],[20,30],[10,11],[34,28],[7,2],[6,-5],[14,-21],[6,-5],[12,1],[19,31],[12,8],[34,-11],[11,-10],[6,-3],[6,-4],[-1,-10],[-10,-30],[-2,-8],[0,-8],[3,-11],[7,-16],[8,-13],[6,-15],[1,-23],[-2,-51],[-3,-28],[-5,-13],[-8,-2],[-4,-2],[-4,-6],[-5,-12],[-7,-15],[-3,-8],[1,-12],[6,-20],[9,-14],[21,-20],[4,-8],[0,-8],[-3,-9],[-12,-23],[-2,-8],[-1,-13],[0,-34],[-2,-10],[-1,-5],[-2,-4],[-2,-4],[-1,-6],[0,-5],[1,-6],[0,-6],[-1,-4],[-20,-28],[-7,-18],[5,-13],[8,-3],[7,1],[7,-3],[6,-9],[2,-10],[2,-33],[4,-12],[6,-6],[26,-11],[12,-11],[20,-23],[17,-30],[8,-10],[6,-13],[3,-17],[-3,-19],[-2,-25],[14,-12],[22,0],[62,-1],[63,-1],[63,-2],[62,-1],[63,-1],[63,-1],[62,-1],[63,-1],[22,-1],[34,-19],[47,-27],[49,-28],[76,-3],[57,-25],[41,-32],[11,-5],[55,-13],[5,-2],[9,-7],[4,-2],[22,-7],[7,-3],[1,-6],[0,-22]],[[30986,19469],[-6,6],[-26,-2],[-41,20],[-19,-4],[-11,6],[-22,0],[-13,9],[-5,2],[-12,10],[-22,25],[-12,10],[-15,6],[-14,-3],[-31,-24],[-16,-1],[-11,-4],[-2,-5],[-6,-7],[-2,-7],[-1,-4],[-2,-44],[-2,-12],[-6,-4],[-7,-4],[-3,-9],[-1,-12],[-1,-11],[-4,-9],[-11,-12],[-5,-6],[-6,-10],[-5,-9],[-12,-3],[-18,8],[-9,10],[-4,8],[-5,3],[-7,-5],[-11,-9],[-10,-12],[-38,-26],[-19,-7],[-8,-10],[-5,-11],[-2,-17],[-10,7],[-9,0],[-5,3],[-8,-2],[-3,-4],[0,-9],[-9,2],[-5,-9],[-38,-31],[-8,1],[0,11],[7,9],[6,6],[-1,10],[-6,1],[-5,-4],[-7,-2],[-4,-1],[-2,-10],[6,-9],[-5,-6],[-6,5],[-7,-2],[-7,-7],[-7,-3],[-4,-8],[-5,1],[0,8],[-2,11],[-3,2],[-3,-4],[-2,-5],[-3,-3],[-12,-3],[-4,-1],[-4,2],[-2,3],[-2,1],[-4,-2],[2,-7],[3,-2],[3,-1],[8,-5],[1,-1],[1,-3],[-1,-7],[0,-2],[3,-4],[2,0],[3,1],[9,-2],[1,-4],[-2,-8],[-3,-2],[-11,-6],[-3,-3],[-1,-3],[-3,-10],[-1,-5],[-2,-11],[-1,-4],[-1,-19],[-6,1],[-5,1],[-3,-8],[8,-1],[7,-3],[7,-4],[1,-8],[-1,-12],[0,-10],[-2,-8],[-13,-34],[-2,-7],[-1,-16],[-3,-15],[-15,-37],[-3,-13],[-2,-15],[0,-47],[-1,-14],[-7,-22],[-2,-12],[0,-12],[0,-14],[3,-24],[9,-47],[3,-26],[0,-13],[-1,-15],[-3,-12],[-4,-5],[-3,-7],[0,-16],[2,-17],[0,-12],[-6,-19],[-11,-13],[-54,-39],[-16,-6],[-14,3],[-26,22],[-14,8],[-46,4],[-21,15],[-2,3],[-5,7],[-2,2],[-17,10],[-6,9],[-3,2],[-5,5],[-2,22],[-5,1],[-3,-4],[-4,-14],[-4,-2],[-3,2],[-6,11],[-4,5],[-4,12],[-3,2],[-4,-1],[0,-3],[0,-4],[-1,-4],[-6,-7],[-3,0],[-4,5],[-3,4],[-7,1],[-3,3],[-20,34],[-12,16],[-6,6],[-9,5],[-1,5],[-1,7],[-2,6],[-2,4],[-6,4],[-3,4],[-14,27],[-3,4],[-2,11],[-11,23],[-2,8],[2,13],[6,7],[5,7],[-3,12],[-2,6],[0,4],[1,4],[2,4],[1,0],[5,4],[25,33],[5,4],[35,-9],[6,1],[6,-1],[5,-6],[4,-37],[1,-12],[-1,-13],[-2,-6],[-3,-5],[-3,0],[-7,11],[-2,-2],[-2,-13],[-5,-8],[-14,-8],[-6,-6],[8,-4],[8,2],[8,4],[13,3],[4,2],[6,9],[4,8],[2,2],[2,0],[5,-3],[2,2],[3,25],[-3,32],[-1,29],[11,15],[4,-1],[8,-6],[3,-1],[4,1],[5,5],[4,2],[7,-2],[4,-6],[2,-10],[4,-53],[1,-12],[1,-10],[4,-12],[2,-12],[0,-13],[-4,-9],[-7,-9],[-7,-8],[-5,-2],[-8,-2],[-18,-15],[-8,-3],[-2,-4],[-2,-7],[0,-8],[1,-4],[2,-2],[4,0],[6,3],[12,12],[6,5],[16,3],[7,3],[6,8],[9,21],[2,5],[0,7],[-3,12],[-1,6],[2,13],[0,8],[-1,4],[-1,3],[-2,19],[1,13],[8,57],[4,7],[10,3],[4,2],[2,1],[7,0],[4,2],[3,3],[10,15],[3,3],[8,3],[18,13],[4,2],[13,-1],[4,1],[6,3],[6,7],[6,7],[6,9],[2,6],[4,14],[2,6],[3,5],[5,6],[2,5],[2,12],[1,13],[2,11],[10,19],[8,-4],[14,7],[0,23],[-8,22],[-6,18],[-11,-1],[-11,15],[-16,-10],[-12,0],[-5,13],[-3,10],[-5,23],[-1,-13],[0,-12],[-1,-10],[1,-19],[1,-7],[-7,-3],[-7,4],[-5,3],[-5,0],[-2,-2],[-3,-6],[-1,-3],[-2,-1],[-5,-13],[-13,-14],[-10,-1],[-8,-14],[-7,-1],[-10,-10],[-9,-4],[-12,-15],[-17,-10],[-6,-11],[-12,-5],[-5,-14],[-20,-34],[-5,-16],[-2,-4],[-4,-1],[-3,2],[-4,1],[-7,-7],[-5,0],[-4,3],[-5,8],[-6,5],[-2,4],[-2,6],[-4,9],[-2,6],[-3,6],[-3,3],[-3,3],[-8,1],[-6,6],[-3,2],[-7,-2],[2,-6],[6,-8],[4,-9],[-5,0],[-6,2],[-15,9],[-5,1],[-32,-3],[-11,-5],[-8,-8],[6,-4],[6,2],[7,4],[6,2],[11,-7],[6,-1],[5,6],[8,4],[12,-38],[27,-11],[4,-4],[4,-7],[2,-7],[-1,-6],[-4,-6],[-5,-3],[-8,0],[-7,3],[-5,11],[-6,2],[-13,-1],[0,-4],[11,-2],[3,-9],[-3,-9],[-11,0],[-24,19],[-10,1],[11,-10],[4,-7],[-2,-7],[-6,-1],[-6,7],[-8,14],[-7,-2],[1,-6],[4,-7],[5,-5],[14,-4],[7,-4],[4,-9],[-4,-5],[-2,-5],[-3,-5],[-6,0],[-5,4],[-4,5],[-5,3],[-5,-5],[6,-9],[3,-17],[-1,-17],[-4,-14],[-10,-5],[-10,7],[-9,12],[-6,15],[-1,-13],[4,-11],[12,-17],[4,-7],[2,-7],[3,-4],[6,-2],[1,2],[1,8],[1,2],[2,1],[6,-1],[4,-5],[29,-68],[4,-8],[-43,-4],[-3,1],[-2,4],[-1,4],[-2,3],[-6,5],[-13,5],[-6,6],[-2,5],[-1,6],[-2,4],[-3,2],[-12,2],[-3,1],[-3,8],[1,19],[-3,10],[-6,8],[-2,-7],[0,-12],[-2,-9],[-5,-3],[-2,8],[0,13],[-2,10],[-5,2],[-8,-1],[-6,2],[1,9],[-4,4],[-15,4],[-38,40],[-17,10],[-9,7],[-7,10],[-6,11],[-9,22],[-4,5],[-7,6],[-3,7],[33,-19],[12,-1],[6,3],[9,8],[29,5],[7,0],[4,-3],[4,-6],[3,-9],[3,-2],[7,1],[3,-3],[3,-3],[23,-18],[5,-1],[2,-4],[-2,-9],[-2,-10],[-3,-5],[2,-5],[3,-2],[4,0],[3,7],[4,-6],[2,1],[-1,6],[-3,8],[3,3],[4,6],[3,7],[-2,3],[-7,4],[-9,10],[-8,12],[-3,11],[5,0],[14,-9],[-3,11],[-5,8],[-2,6],[4,4],[6,0],[20,-9],[-2,7],[-4,4],[-5,3],[-4,3],[-2,10],[0,2],[-3,0],[-1,-3],[-1,-3],[-2,-2],[-13,2],[-4,-2],[-8,-14],[-4,-5],[-19,19],[-6,8],[1,10],[11,19],[4,12],[0,11],[-5,-8],[-3,-3],[-2,-1],[-2,3],[-2,5],[0,5],[1,6],[2,10],[-3,11],[-3,11],[-2,10],[-1,5],[1,3],[2,8],[1,4],[2,4],[1,5],[-2,6],[-10,14],[-3,8],[5,8],[7,4],[16,3],[12,15],[20,11],[5,7],[11,29],[4,0],[2,-3],[7,-9],[11,-6],[2,-2],[0,-19],[-11,-16],[-13,-15],[-7,-15],[2,-10],[6,5],[7,11],[11,11],[6,10],[5,6],[7,-5],[-4,-5],[-4,-7],[-1,-6],[5,-2],[5,3],[7,11],[3,2],[9,4],[5,-1],[2,-9],[2,-11],[4,-9],[4,-1],[3,11],[-2,8],[2,10],[3,9],[3,6],[5,5],[19,14],[2,2],[3,4],[2,5],[1,4],[3,11],[1,3],[6,4],[14,1],[5,8],[0,13],[5,3],[13,-3],[5,2],[5,0],[4,-2],[6,-10],[8,1],[2,10],[2,6],[5,0],[5,-2],[4,-11],[8,-8],[19,-8],[62,7],[8,5],[4,8],[18,3],[12,6],[-4,20],[-12,19],[-10,11],[-17,-8],[-15,7],[-12,1],[-9,-4],[-20,9],[-22,7],[-17,-12],[-8,6],[-7,-5],[-6,1],[-6,12],[-5,10],[-2,3],[-8,2],[-22,-6],[-22,5],[-7,-1],[-5,-5],[-5,-10],[-4,-10],[-2,-10],[-2,-8],[-13,-11],[-4,-7],[3,3],[2,1],[3,-1],[2,-3],[-4,-18],[-2,-2],[-3,1],[-3,3],[-5,8],[-12,10],[-1,2],[-5,7],[-7,5],[2,9],[10,16],[5,6],[5,3],[12,-1],[7,3],[4,7],[-1,7],[-6,3],[-3,-1],[-5,-5],[-3,-2],[-4,-1],[-6,1],[-4,0],[-8,-7],[-2,-1],[-2,-3],[-4,-11],[-3,-2],[-5,1],[-6,4],[-5,6],[-1,5],[-7,5],[-6,-2],[-6,-5],[-22,-7],[-4,2],[-2,4],[0,5],[-2,6],[-11,8],[-3,0],[-1,-5],[2,-11],[-2,-6],[-1,-5],[-1,-5],[-1,-3],[0,-1],[-4,-15],[-1,-4],[-1,-11],[-3,-9],[-3,-8],[-3,-6],[-15,-25],[-2,-6],[5,-7],[9,16],[21,46],[6,11],[6,4],[6,-17],[7,-5],[14,-5],[8,0],[2,-1],[3,-5],[1,-6],[-2,-6],[-9,-18],[-14,-21],[-5,-10],[-3,-4],[-4,-2],[-8,0],[-3,-2],[-2,-4],[-2,-14],[-7,-3],[-15,-2],[-19,-21],[-2,-5],[2,-8],[11,-14],[4,-9],[-5,-8],[0,-10],[1,-20],[1,-3],[4,-8],[1,-5],[-2,-23],[-3,-8],[-4,-10],[-5,-6],[-2,6],[-2,-1],[-29,-24],[-7,-1],[-6,6],[-5,9],[-1,5],[-1,4],[2,4],[3,4],[3,5],[0,7],[-5,5],[-5,-9],[-4,-13],[-1,-9],[3,-3],[3,-3],[2,-3],[1,-5],[-2,-6],[-3,-2],[-4,2],[-2,1],[-4,4],[-2,4],[-3,3],[-21,6],[-9,12],[-7,20],[-4,2],[-7,-2],[-3,3],[-5,9],[-1,6],[4,3],[11,1],[3,-1],[2,-2],[2,-4],[3,-3],[4,1],[-1,5],[-2,4],[-2,4],[0,5],[1,5],[4,1],[8,0],[0,2],[0,4],[1,4],[2,2],[1,0],[3,-3],[6,-3],[6,-7],[4,-3],[-1,6],[-5,14],[7,-2],[3,-2],[-2,12],[3,8],[5,2],[-2,6],[-21,-9],[-4,12],[-2,5],[-3,-2],[-4,-4],[-5,-1],[-3,6],[-2,9],[-3,9],[-6,4],[-25,8],[-14,7],[-6,9],[7,11],[13,2],[9,-5],[-2,-16],[5,3],[7,14],[4,4],[4,-4],[3,-13],[3,2],[2,3],[3,2],[4,1],[5,-4],[2,2],[3,4],[3,3],[11,-5],[6,0],[4,9],[-4,-1],[-3,0],[-2,3],[1,6],[-4,5],[-7,-5],[-4,4],[-2,4],[0,4],[0,10],[1,6],[2,0],[4,-4],[6,5],[4,6],[2,7],[4,11],[0,4],[0,6],[0,4],[3,2],[10,0],[5,2],[3,5],[1,8],[1,11],[5,26],[1,5],[20,-3],[8,-6],[3,1],[2,3],[-2,5],[-2,1],[-9,-1],[-16,8],[-3,2],[1,5],[2,6],[1,5],[3,7],[9,2],[14,-3],[23,-11],[6,-8],[2,-1],[4,2],[-1,6],[-2,7],[-3,5],[-3,2],[-12,2],[-17,8],[-10,2],[-7,-4],[-5,-6],[-6,-2],[-6,1],[-4,5],[-7,22],[-3,9],[-2,-5],[1,-5],[1,-6],[1,-6],[-1,-5],[-3,-3],[-3,1],[-3,-2],[-2,-8],[10,-3],[5,-8],[2,-13],[4,-16],[-8,-17],[-5,-8],[-5,-4],[-4,-5],[-5,-24],[-4,-7],[-6,0],[-8,6],[-5,10],[1,10],[6,10],[2,6],[1,6],[-2,4],[-2,0],[-3,-3],[-3,-1],[-4,1],[-3,1],[-2,4],[0,8],[-1,6],[-3,5],[-2,3],[-3,-1],[-1,-11],[6,-24],[0,-12],[-3,-6],[-4,-1],[-7,3],[-4,-2],[-1,-4],[0,-6],[-1,-6],[-5,-1],[-5,5],[-4,0],[0,-14],[-8,3],[-6,-6],[-11,-22],[-2,0],[-2,0],[-1,1],[-1,-3],[0,-3],[1,-2],[1,-1],[0,-2],[-1,-6],[-4,2],[-7,10],[-8,4],[-4,4],[0,6],[8,15],[3,4],[14,6],[7,6],[3,12],[-5,-1],[-16,-7],[-6,2],[-2,6],[-1,10],[-2,10],[8,5],[4,3],[1,6],[1,7],[2,1],[3,-1],[2,0],[2,2],[0,3],[1,2],[3,1],[2,-1],[1,-1],[0,-2],[1,0],[4,1],[2,2],[1,4],[-2,5],[-3,3],[-13,5],[-1,1],[3,4],[7,7],[2,4],[3,10],[1,2],[18,0],[-6,6],[-4,5],[1,7],[4,15],[-5,3],[-4,-7],[-4,-8],[-5,-5],[-21,10],[-3,4],[0,15],[2,9],[3,6],[5,1],[3,-2],[1,-4],[2,-3],[3,1],[2,4],[1,6],[1,12],[1,3],[3,6],[2,6],[-4,3],[-6,10],[-2,3],[-2,11],[1,8],[4,7],[3,10],[1,16],[-3,5],[-6,0],[-6,4],[0,3],[-1,8],[-2,7],[-1,0],[-1,3],[-8,7],[-2,14],[-9,16],[-7,18],[3,21],[5,5],[5,-3],[6,-10],[1,-5],[9,-28],[4,-19],[3,-8],[4,1],[5,5],[4,-8],[3,-14],[2,-9],[6,-5],[5,3],[5,6],[4,4],[3,2],[-4,7],[-11,11],[7,4],[9,-3],[9,-9],[12,-23],[7,-10],[8,-6],[9,-2],[8,4],[8,8],[6,13],[3,18],[-1,14],[1,4],[2,7],[4,2],[5,-2],[5,-5],[3,-6],[7,14],[9,12],[9,8],[10,3],[6,-1],[2,-3],[1,-6],[1,-11],[0,-7],[0,-10],[-2,-9],[-2,-6],[-2,-1],[-6,4],[-2,1],[-2,-2],[-2,-4],[-1,-4],[-1,-4],[-3,-7],[-3,-8],[-2,-9],[-1,-9],[2,-7],[3,3],[11,23],[4,4],[5,0],[14,-9],[7,-7],[1,-7],[-1,-8],[2,-3],[8,-3],[3,-3],[2,-2],[1,1],[6,9],[2,4],[1,5],[0,8],[1,7],[4,12],[1,6],[1,14],[2,10],[8,18],[4,14],[0,11],[-4,3],[-16,-24],[-4,-8],[-3,-12],[0,-21],[-1,-10],[-4,-11],[-4,-1],[-6,5],[-7,7],[-4,7],[1,9],[-2,17],[3,16],[-3,18],[1,9],[4,6],[3,-4],[3,-7],[2,-3],[2,4],[2,19],[2,7],[2,8],[1,18],[1,8],[4,4],[5,4],[5,2],[4,1],[17,-19],[12,-7],[3,-5],[-1,-11],[-4,-8],[-3,-10],[3,-13],[3,-4],[7,-7],[3,-4],[2,-4],[0,-5],[2,-4],[3,-3],[0,2],[1,4],[2,2],[2,-1],[4,-7],[1,-3],[4,-13],[1,-2],[3,-13],[5,-9],[4,-9],[0,-16],[-2,-4],[-2,-3],[-3,-4],[-1,-7],[0,-5],[-1,-8],[-2,-21],[-3,-10],[-4,-7],[-7,-4],[-3,1],[-4,2],[-3,3],[-2,4],[-3,3],[-2,-3],[-3,-12],[-5,-8],[-7,-8],[-7,-1],[-5,7],[2,-10],[-1,-3],[-4,1],[-2,0],[-3,-4],[-5,-12],[-6,-7],[-8,-6],[-8,-3],[-7,-1],[1,-4],[1,-2],[2,-1],[2,0],[7,1],[14,8],[13,5],[12,11],[7,3],[8,-1],[22,-7],[7,-5],[5,-9],[6,-6],[8,3],[4,9],[-4,5],[-24,5],[-4,2],[-3,4],[-1,5],[1,2],[2,2],[4,3],[9,12],[9,14],[5,7],[5,3],[4,6],[7,54],[1,12],[-2,10],[-29,53],[-8,8],[-11,20],[-3,8],[-2,39],[-1,6],[2,2],[2,4],[2,3],[4,-1],[2,-4],[1,-7],[3,-5],[4,-1],[2,4],[2,14],[2,3],[4,-2],[5,-5],[4,-2],[7,2],[5,6],[4,7],[5,10],[-4,10],[-9,13],[-2,9],[-1,13],[3,10],[9,18],[-8,12],[-4,24],[-3,9],[-12,7],[-12,14],[-5,7],[-3,7],[-9,28],[-6,8],[-6,7],[-7,4],[-7,3],[-18,0],[-3,2],[-6,8],[-3,2],[-8,1],[-5,1],[-3,2],[-1,5],[-3,12],[-1,4],[-7,6],[-16,5],[-7,1],[-4,5],[-3,12],[-2,14],[2,9],[-3,0],[-9,-12],[-5,-4],[-29,-11],[-4,-3],[-2,-6],[1,-8],[5,-7],[5,-1],[15,6],[4,5],[5,1],[5,-6],[5,-3],[14,0],[3,-5],[0,-7],[1,-3],[0,-4],[-2,-7],[-2,-3],[-5,-6],[-10,-13],[-1,-6],[4,-6],[16,23],[4,3],[1,3],[-1,4],[1,3],[2,4],[3,4],[4,2],[3,-4],[8,-15],[2,-3],[5,-2],[18,-18],[7,-1],[5,2],[6,0],[6,-7],[4,-9],[12,-35],[1,-5],[2,-5],[4,-1],[15,-4],[1,-1],[3,-6],[1,-2],[2,0],[5,1],[8,-2],[2,-3],[2,-7],[-1,-10],[-3,-12],[-4,-11],[-7,-6],[-8,-11],[-4,-4],[-3,0],[-12,0],[-4,-3],[-2,-1],[-1,3],[-1,2],[-2,7],[0,1],[-14,4],[-4,4],[-3,11],[-5,10],[-8,3],[-7,-7],[-4,-1],[-2,6],[-1,5],[-2,0],[-13,-6],[-4,-1],[-3,4],[0,6],[1,5],[1,6],[-2,7],[-3,2],[-8,1],[-2,4],[-1,5],[-3,3],[-3,2],[-3,0],[-14,-5],[-8,-1],[-6,6],[-3,14],[1,11],[-1,8],[-13,5],[-3,11],[-4,4],[-4,0],[-3,-1],[-3,-3],[-1,-4],[11,-11],[5,-7],[3,-11],[-1,-8],[-1,-5],[0,-5],[3,-8],[3,-4],[3,-2],[36,-2],[13,-12],[8,-27],[-9,7],[-11,14],[-11,6],[-9,-15],[3,-4],[4,0],[3,2],[3,4],[3,3],[2,-1],[4,-4],[3,-5],[1,-12],[0,-12],[-1,-8],[-9,-13],[-25,-3],[-10,-12],[5,-5],[6,-1],[6,2],[5,6],[3,3],[11,-1],[3,2],[7,11],[10,11],[10,6],[8,-3],[6,-19],[-5,-6],[-18,-10],[-16,-18],[-6,-3],[-6,-1],[-6,-3],[-5,-7],[-3,-11],[0,-8],[-5,-30],[-1,-14],[1,-12],[-1,-9],[-5,-5],[-8,-1],[-5,8],[-9,23],[0,10],[1,30],[-1,7],[-2,5],[-6,31],[2,17],[-1,23],[-8,62],[-3,16],[-5,14],[-8,14],[0,-11],[1,-7],[6,-14],[3,-9],[2,-18],[3,-29],[1,-35],[4,-57],[1,-39],[7,-48],[0,-23],[-2,-14],[-7,0],[-7,7],[-5,5],[-10,7],[-1,3],[-1,7],[-2,6],[-3,4],[-9,4],[-24,23],[-7,9],[-5,11],[1,9],[2,13],[-3,11],[-5,10],[-3,8],[3,0],[2,1],[2,1],[2,3],[-4,9],[-8,18],[-6,19],[-2,12],[8,10],[6,-6],[10,-26],[8,-11],[3,-6],[1,-9],[0,-8],[2,-9],[3,-7],[11,-10],[3,-16],[5,-13],[10,0],[-4,15],[-19,46],[2,1],[2,1],[1,2],[3,0],[-2,6],[-3,2],[-2,1],[-3,3],[-1,6],[0,12],[-2,3],[-5,2],[-3,7],[-1,10],[3,9],[-8,8],[-8,13],[-3,11],[16,8],[8,8],[8,10],[4,11],[-8,0],[-6,-5],[-11,-16],[0,25],[-3,-6],[-5,-14],[-3,-5],[-6,1],[-3,8],[-2,8],[-2,4],[-5,-1],[-1,-4],[-1,-5],[-4,-14],[-2,-9],[0,-8],[1,-8],[-5,-9],[-6,5],[-12,24],[0,12],[-14,16],[2,11],[5,6],[14,5],[6,7],[-6,1],[-6,-3],[-7,-1],[-6,5],[-4,4],[-2,1],[-3,-2],[-4,-1],[-3,2],[-3,5],[-3,2],[-4,-5],[-1,5],[0,3],[0,4],[1,5],[2,6],[2,2],[3,1],[3,3],[10,18],[3,6],[-18,0],[-8,6],[-3,17],[1,4],[2,4],[1,3],[-1,5],[-1,3],[-1,6],[-2,3],[-1,7],[0,14],[-2,5],[0,4],[10,15],[5,4],[3,-9],[3,-6],[13,0],[3,-6],[2,-9],[4,-9],[9,-12],[10,-10],[4,-6],[3,-8],[7,-28],[2,-15],[7,-17],[2,-19],[3,1],[2,9],[0,12],[-2,7],[-8,25],[7,8],[3,6],[-1,3],[-9,-1],[-3,2],[-2,7],[1,15],[15,10],[1,11],[-11,-8],[-9,5],[-6,14],[-8,35],[0,5],[0,22],[0,7],[1,3],[0,3],[-2,5],[-5,6],[-1,4],[-1,7],[-1,1],[-6,5],[-3,4],[0,6],[1,5],[2,4],[1,3],[3,5],[6,-8],[9,-17],[1,-6],[0,-6],[0,-6],[2,-5],[3,0],[1,7],[-2,12],[-1,18],[0,7],[5,5],[0,4],[-5,-2],[-4,0],[-3,2],[-4,4],[3,7],[7,17],[-3,5],[-3,-2],[-2,-4],[-3,-2],[-3,2],[-7,14],[-1,-6],[1,-3],[1,-3],[1,-4],[0,-9],[0,-2],[-2,-2],[-4,-4],[-20,-32],[-6,-6],[-5,-1],[-5,5],[-8,13],[-7,9],[-2,4],[-1,4],[-1,17],[-3,9],[-4,11],[-4,4],[-2,-10],[1,-12],[2,-13],[0,-12],[-3,-10],[-7,-3],[-7,5],[-7,6],[-7,4],[-2,6],[1,39],[0,11],[-4,7],[-2,6],[1,6],[1,5],[14,30],[6,8],[-3,4],[0,4],[2,5],[2,3],[0,4],[-5,-2],[-3,-4],[-23,-41],[-3,-3],[-10,2],[-2,4],[0,23],[-1,9],[5,5],[0,6],[-4,5],[-5,5],[7,19],[10,13],[12,7],[13,1],[30,-8],[6,-4],[7,-1],[5,4],[1,13],[7,-5],[8,-10],[5,-12],[0,-14],[15,-16],[0,8],[3,9],[1,7],[-8,25],[-11,20],[-2,1],[-2,-1],[-2,1],[0,5],[0,3],[2,2],[1,1],[1,2],[3,14],[6,0],[8,-7],[7,-10],[4,-3],[4,1],[2,5],[-2,5],[-8,6],[-3,3],[1,5],[2,8],[2,10],[0,8],[-1,9],[-2,17],[-1,8],[3,10],[5,6],[6,3],[9,3],[9,6],[4,1],[5,-1],[5,-3],[4,-4],[4,-4],[8,-25],[2,-4],[6,1],[1,1],[-1,4],[1,6],[3,6],[3,3],[9,0],[-3,7],[-6,2],[-6,0],[-6,2],[-2,12],[-1,3],[-2,2],[-3,1],[-5,-1],[-11,4],[-9,9],[-15,26],[-1,6],[2,9],[3,8],[3,3],[11,1],[5,3],[4,4],[5,11],[7,30],[5,16],[-6,1],[-6,-12],[-11,-30],[-3,-5],[-3,-3],[-4,-3],[-7,-2],[-6,-6],[-8,-5],[-2,-11],[-3,-26],[-2,-6],[-2,-3],[-2,-5],[-1,-8],[0,-7],[1,-6],[0,-5],[-7,-20],[0,-12],[3,-11],[1,-14],[-4,-10],[-6,-11],[-7,-8],[-4,-2],[-4,1],[-2,-5],[-4,-10],[-4,-6],[-3,-1],[-11,-1],[-16,5],[-5,5],[-14,21],[-4,9],[16,16],[3,5],[-1,9],[-5,7],[-11,8],[1,-8],[0,-4],[1,-4],[-6,-11],[-4,2],[-5,25],[-4,12],[-11,24],[-4,13],[4,11],[5,8],[1,8],[-6,10],[-4,1],[-4,0],[-3,3],[-2,17],[-2,6],[-6,9],[4,4],[17,6],[3,0],[1,-8],[3,-10],[4,-11],[3,-7],[3,-9],[5,-23],[4,-7],[5,2],[-2,11],[-8,20],[1,2],[3,7],[1,3],[-6,5],[-2,8],[2,6],[6,1],[5,-4],[10,-17],[5,-3],[32,-11],[6,-3],[6,-2],[5,4],[-8,7],[-19,11],[-8,2],[-3,3],[-1,8],[0,9],[2,6],[1,5],[-2,4],[-3,1],[-2,-1],[-7,-11],[-4,-1],[-3,2],[-4,11],[-7,9],[-2,5],[4,3],[4,1],[4,4],[3,5],[1,8],[2,5],[5,4],[9,5],[-5,1],[-10,5],[-4,-2],[-1,-2],[-1,-11],[0,-3],[-2,-1],[-4,-2],[-15,-12],[-4,-1],[-9,4],[-4,0],[-7,-21],[-10,8],[-8,16],[-1,9],[2,4],[7,22],[2,5],[3,4],[2,5],[-4,9],[2,13],[-3,9],[-5,4],[-3,-4],[-1,-11],[-6,-17],[-1,-8],[-4,-20],[-11,-4],[-13,5],[-10,8],[2,2],[2,5],[2,2],[-4,3],[-7,-1],[-4,2],[-2,2],[-6,13],[4,9],[8,12],[3,8],[-4,-1],[-7,-7],[-4,0],[-3,4],[1,6],[4,7],[2,7],[-7,-3],[-6,-5],[-6,-3],[-8,3],[1,6],[2,6],[2,4],[3,4],[-2,4],[-7,-7],[-9,-5],[-8,3],[-3,16],[1,8],[2,5],[7,9],[5,12],[4,6],[3,2],[4,2],[8,5],[4,1],[6,-2],[1,-6],[0,-6],[1,-6],[3,-2],[4,2],[3,4],[-1,6],[-3,6],[0,6],[1,6],[3,5],[5,-6],[4,-7],[-2,0],[2,0],[32,7],[3,-2],[1,-11],[2,-3],[7,-7],[3,-4],[-8,-18],[-2,-6],[3,2],[3,2],[4,1],[3,-1],[2,-2],[1,-4],[1,-2],[6,-4],[5,-7],[4,-8],[2,-10],[-4,-12],[6,-7],[5,4],[9,15],[6,3],[7,-3],[39,-35],[14,-7],[14,6],[-6,8],[-27,12],[-7,8],[-6,10],[-1,7],[8,-1],[-3,7],[-5,1],[-11,-4],[-1,2],[-4,5],[-2,1],[-2,0],[-4,-3],[-13,-2],[-4,2],[-6,8],[-3,6],[-1,5],[-2,17],[-1,9],[-5,15],[-1,11],[-2,-1],[-11,9],[-3,4],[-13,26],[-5,15],[1,10],[-1,13],[4,9],[6,5],[3,-1],[1,-12],[4,0],[5,6],[4,4],[11,-5],[8,-11],[14,-31],[2,-2],[3,2],[2,4],[3,2],[2,-1],[8,-7],[1,-3],[3,-7],[1,-2],[3,-1],[26,7],[5,-2],[4,-7],[5,-17],[5,-4],[0,12],[-1,12],[-2,10],[-5,6],[-9,-6],[-10,5],[-7,11],[2,17],[11,19],[3,3],[10,0],[5,1],[5,3],[-7,2],[-2,8],[1,27],[-4,-7],[-4,-16],[-3,-6],[-3,-1],[-6,2],[-3,-1],[0,-3],[-1,-13],[-1,-4],[-5,-12],[-6,-3],[-14,3],[-7,3],[-3,7],[-3,10],[-3,8],[-12,8],[-28,3],[-10,13],[-5,25],[-2,14],[0,8],[4,3],[4,-1],[3,-3],[4,-1],[3,2],[1,3],[2,4],[1,3],[6,7],[7,5],[7,4],[29,0],[6,4],[-1,4],[0,4],[2,4],[1,5],[-9,0],[-19,-4],[-10,-5],[-13,0],[-8,-8],[-3,0],[-8,13],[-3,25],[2,27],[5,17],[11,9],[1,2],[2,2],[2,5],[3,4],[4,2],[14,2],[6,2],[12,9],[7,2],[7,-1],[6,-8],[1,-10],[-1,-11],[-1,-11],[4,-7],[4,28],[2,7],[5,4],[6,-1],[6,-3],[3,-6],[-1,-8],[1,-5],[3,-5],[1,-9],[1,-8],[1,-7],[2,-6],[2,-5],[23,-18],[4,-8],[11,-15],[3,-5],[1,-5],[1,-6],[1,-10],[2,-6],[4,10],[5,15],[2,12],[-7,2],[-3,2],[-3,4],[-2,3],[-1,7],[-2,4],[-6,8],[-5,2],[-5,1],[-8,3],[-4,3],[-1,2],[1,3],[-3,17],[-1,5],[-2,5],[-1,7],[1,26],[-1,9],[-10,11],[-45,5],[-4,3],[-3,3],[-2,5],[-1,8],[1,13],[0,6],[-2,3],[-2,6],[1,13],[8,46],[1,14],[1,12],[2,10],[7,2],[7,-4],[5,-6],[4,-11],[4,-12],[4,-9],[10,-5],[5,-5],[3,-2],[15,0],[0,4],[-22,13],[-6,7],[-11,21],[-5,15],[-1,13],[1,7],[6,17],[1,9],[0,4],[-2,3],[-1,4],[-2,16],[-2,5],[-2,6],[-9,14],[18,27],[10,8],[12,-3],[8,-11],[5,-6],[4,1],[5,8],[-3,6],[-10,8],[-6,7],[-7,0],[-32,-9],[-5,2],[-3,4],[-1,-5],[-1,-8],[0,-5],[1,-5],[4,-11],[1,-6],[-1,-12],[-2,-10],[0,-8],[5,-9],[-12,-31],[-7,-14],[-8,-3],[-2,3],[-5,10],[-2,3],[-3,0],[-3,-2],[-1,-3],[0,-5],[2,-3],[6,-5],[1,-4],[0,-5],[2,-10],[2,-3],[-2,-6],[-1,-5],[1,-5],[2,-5],[-2,-7],[-1,-7],[-1,-7],[0,-9],[-1,-8],[-4,-12],[-1,-5],[-4,-44],[2,-11],[-8,-21],[-7,-2],[-8,10],[-10,20],[-3,8],[-3,9],[-3,8],[-4,5],[-7,4],[-5,3],[-4,8],[-3,9],[-1,8],[2,8],[4,7],[3,8],[0,9],[-5,59],[2,15],[9,4],[-8,17],[-3,10],[-1,14],[1,7],[3,10],[0,5],[-1,7],[-4,-2],[-4,-5],[-2,-6],[-4,6],[-2,8],[-2,10],[0,10],[2,7],[5,5],[5,3],[3,4],[3,8],[1,7],[-1,7],[-4,8],[-1,9],[4,3],[7,0],[5,-2],[-5,7],[-8,5],[-4,5],[-3,5],[-1,7],[1,6],[4,2],[0,4],[-7,7],[-2,12],[2,14],[3,12],[10,16],[2,7],[1,6],[2,6],[3,5],[8,-19],[2,-2],[0,3],[-1,6],[9,-6],[9,5],[10,9],[10,4],[23,-4],[4,-3],[4,-4],[4,-3],[3,1],[2,1],[0,4],[-9,10],[-10,6],[-12,2],[-11,-2],[-18,-11],[-9,-2],[-7,9],[3,5],[2,4],[3,3],[4,0],[-3,6],[-2,2],[-2,3],[-1,6],[-3,-8],[-5,-4],[-5,1],[-2,9],[0,17],[0,5],[-2,3],[-3,1],[-2,2],[-1,6],[2,7],[18,29],[5,5],[6,3],[5,1],[-4,6],[4,8],[11,12],[2,3],[2,3],[3,3],[2,1],[3,-2],[6,-8],[8,-6],[15,-24],[8,-5],[3,-4],[2,-4],[3,-12],[1,-4],[8,-4],[5,7],[1,12],[-4,5],[-7,4],[-3,9],[0,13],[0,13],[-2,25],[3,6],[28,11],[7,5],[-2,5],[-1,2],[-3,1],[-6,1],[-17,-11],[-9,2],[-2,2],[-4,7],[-2,3],[-2,1],[-5,-1],[-2,0],[-5,3],[-3,4],[-5,9],[-5,3],[-20,3],[-3,2],[0,3],[5,6],[4,3],[15,0],[13,7],[6,1],[-7,6],[-8,2],[-14,-4],[-6,-3],[-15,-12],[-2,0],[-2,5],[1,5],[2,5],[1,5],[0,7],[-1,5],[-3,8],[-4,7],[-4,7],[-4,8],[1,11],[-22,7],[-13,10],[-5,17],[-2,4],[-9,25],[-1,6],[-2,3],[4,8],[8,12],[0,5],[-1,4],[0,3],[1,5],[-7,-4],[-13,-18],[-7,-6],[-6,-3],[-6,3],[-5,9],[-2,15],[1,8],[1,10],[6,4],[3,2],[6,4],[10,14],[6,2],[3,-2],[6,-8],[3,-2],[12,0],[4,-2],[8,-14],[3,-2],[6,-3],[2,-3],[3,-7],[7,-23],[2,-8],[2,-26],[3,-25],[2,-8],[1,-2],[6,2],[2,-2],[1,-4],[1,-5],[1,-3],[2,-12],[6,-1],[7,4],[2,3],[-3,0],[-3,3],[-2,7],[0,5],[0,1],[-2,1],[-2,5],[-4,10],[-1,3],[0,5],[0,3],[3,2],[1,3],[-2,3],[-1,1],[-2,-1],[-1,1],[-3,7],[-1,3],[-1,4],[-1,8],[-5,16],[-2,2],[-3,5],[-4,11],[-4,12],[-1,9],[6,6],[18,-5],[6,1],[5,4],[40,-6],[3,-3],[3,-14],[2,-3],[3,1],[1,2],[1,2],[3,-1],[3,-3],[6,-7],[3,-2],[12,11],[7,4],[4,-5],[0,-5],[2,-1],[3,0],[1,0],[0,-5],[-1,-2],[-1,-3],[0,-3],[-2,-4],[-2,-4],[-1,-6],[1,-5],[3,2],[13,21],[8,7],[3,9],[3,1],[2,-3],[1,-5],[0,-6],[-1,-7],[-8,-16],[-3,-11],[3,-4],[2,3],[6,14],[4,3],[3,-2],[10,-11],[7,-3],[7,-1],[4,-1],[7,-9],[3,-2],[3,-6],[0,-14],[-2,-15],[-2,-10],[5,-3],[3,-6],[5,-15],[3,8],[5,21],[3,7],[4,5],[5,3],[5,1],[9,-3],[23,-26],[0,9],[1,8],[2,6],[7,4],[6,11],[2,3],[3,7],[0,18],[-1,17],[-3,10],[0,-6],[0,-23],[-1,-9],[-3,-4],[-7,-6],[-5,-6],[-7,-5],[-7,0],[-10,14],[-13,9],[-7,17],[-1,3],[-6,4],[-16,25],[3,11],[0,6],[-3,3],[-10,8],[-4,6],[-2,6],[4,4],[0,4],[-3,5],[-3,11],[-1,13],[1,8],[3,1],[17,-7],[2,-1],[5,-14],[3,-12],[2,-6],[2,-2],[7,-7],[2,-1],[21,-5],[22,6],[9,-1],[11,-12],[8,-4],[5,2],[-2,10],[-7,6],[-15,3],[-12,10],[-24,-7],[-7,1],[-4,1],[-12,19],[0,2],[4,12],[1,6],[-1,7],[-2,4],[-2,3],[-3,2],[-1,-8],[-3,-4],[-3,1],[-4,5],[-2,3],[-8,5],[-2,2],[2,9],[5,10],[7,9],[5,5],[-8,5],[-26,3],[-7,5],[-3,6],[-2,8],[-4,12],[-3,23],[10,18],[10,15],[1,19],[-5,-5],[-5,-3],[-2,12],[2,9],[3,8],[5,7],[-3,5],[-3,3],[-3,0],[-3,-4],[-2,5],[-1,4],[0,4],[2,3],[0,4],[-5,-4],[-5,-24],[-6,-8],[0,-4],[13,-17],[-4,-20],[-8,-24],[-4,-24],[1,-6],[3,-10],[1,-3],[-1,-5],[-4,-8],[0,-3],[-4,-5],[-21,-9],[-10,-11],[-3,-1],[-3,0],[-5,3],[-12,1],[-3,1],[-4,3],[-4,4],[-1,3],[0,4],[-1,5],[-7,18],[-1,-1],[-35,-10],[-6,1],[-12,9],[-8,3],[-7,-13],[-9,1],[-10,5],[-6,7],[5,2],[13,2],[1,4],[-4,6],[-7,0],[-27,-11],[-16,-12],[-4,-1],[1,6],[0,4],[-10,-3],[-13,3],[-12,8],[-3,13],[-4,-4],[-4,1],[-5,4],[-2,7],[0,8],[2,5],[6,9],[6,14],[3,6],[5,2],[5,-1],[12,-6],[5,-5],[-2,-4],[-2,-12],[4,2],[2,4],[5,10],[-3,7],[-6,6],[-6,5],[-5,3],[-2,5],[1,11],[3,12],[1,8],[16,11],[6,1],[3,-7],[0,-15],[1,-11],[4,5],[2,5],[2,14],[2,5],[3,3],[3,-1],[7,-2],[5,-5],[2,-24],[3,-7],[0,7],[2,6],[2,4],[4,-1],[0,-4],[5,-18],[2,-6],[-8,-12],[-22,-9],[-8,-16],[27,12],[5,4],[3,1],[3,-1],[5,-2],[0,-3],[0,-4],[1,-7],[8,-16],[12,-13],[13,-5],[13,5],[-26,5],[-5,4],[-3,10],[-6,22],[8,9],[28,-7],[11,6],[-7,5],[-15,-4],[-8,3],[-6,9],[3,7],[6,3],[10,2],[6,3],[3,1],[3,-2],[5,-5],[3,-1],[13,1],[6,3],[3,8],[-13,-1],[-4,1],[-3,3],[-4,5],[-3,5],[1,3],[7,2],[6,7],[5,9],[4,10],[-5,-7],[-12,-4],[-5,-5],[-4,-5],[-2,-5],[-3,-4],[-3,-2],[-4,0],[-5,3],[-3,1],[-3,-1],[-8,-6],[-3,-3],[-3,-3],[-3,1],[-3,2],[-2,2],[-4,6],[-2,13],[-1,15],[-2,11],[-6,-9],[-7,0],[-6,6],[-6,10],[-5,16],[3,6],[16,7],[-2,7],[-4,1],[-5,-1],[-4,1],[-2,4],[-1,5],[-1,5],[-3,2],[0,-8],[-5,-15],[-7,-8],[-6,23],[0,5],[5,3],[2,3],[3,7],[3,15],[4,8],[5,5],[12,7],[-2,12],[5,9],[8,9],[4,13],[8,30],[3,0],[3,-5],[3,-6],[2,-5],[2,13],[1,5],[2,2],[3,-3],[5,-11],[2,-2],[3,2],[-1,4],[-1,6],[1,6],[2,2],[4,1],[7,-1],[3,-6],[2,-39],[3,-10],[4,-11],[4,-10],[2,-1],[0,4],[2,4],[0,4],[-1,5],[-5,11],[-3,11],[-1,8],[1,20],[1,10],[5,7],[6,4],[5,1],[6,-3],[2,0],[1,5],[1,2],[2,1],[3,0],[2,0],[3,-13],[5,-22],[4,-11],[1,15],[-1,8],[-4,17],[-1,11],[-3,2],[-16,5],[28,57],[3,7],[1,12],[-2,7],[-19,22],[-6,4],[-7,0],[-10,-9],[-5,0],[-5,5],[-4,7],[-15,35],[-1,8],[2,8],[6,7],[2,0],[4,0],[2,1],[2,5],[0,5],[1,4],[2,3],[2,2],[0,4],[-12,-5],[-3,-3],[-3,-4],[-5,-9],[-3,-3],[-6,3],[-7,20],[-6,5],[2,6],[2,2],[3,2],[0,7],[-1,7],[-3,1],[-3,-1],[-4,1],[-2,1],[-2,2],[-1,3],[-1,4],[-1,3],[-2,-1],[-1,-3],[0,-2],[-28,0],[-5,2],[-7,5],[-11,4],[-19,14],[0,-4],[19,-18],[12,-6],[-1,-7],[-6,-7],[-6,-3],[-17,5],[-4,2],[-3,4],[-4,3],[-4,-1],[-3,-5],[0,-5],[1,-6],[1,-7],[-1,-6],[-2,-5],[-5,-7],[34,8],[5,-3],[7,-11],[4,-3],[12,5],[4,0],[-12,-28],[-18,4],[-21,12],[-17,-5],[-3,5],[-3,6],[-2,7],[-1,5],[-2,3],[-12,15],[-7,5],[-3,3],[-1,7],[-1,8],[-2,5],[-3,-1],[-4,-6],[2,0],[-4,-16],[-3,-4],[-3,5],[-7,10],[-2,3],[-15,13],[-1,1],[-13,4],[-3,2],[0,6],[0,7],[0,5],[-16,35],[-3,11],[2,13],[5,10],[9,14],[3,8],[2,8],[3,7],[5,5],[6,4],[5,5],[2,8],[-1,12],[-1,7],[-1,7],[3,13],[-9,-10],[-6,-22],[-8,-17],[-10,4],[-6,-27],[-11,-17],[-25,-25],[-1,15],[0,5],[-8,-16],[-4,-6],[-5,-2],[-16,-2],[-4,-2],[0,-2],[0,-3],[0,-2],[-1,-1],[-12,1],[-3,2],[-1,3],[-1,10],[-3,-2],[-3,-6],[-3,-4],[-35,-18],[-3,-5],[-3,-3],[-2,-2],[-1,-2],[-1,-5],[0,-5],[0,-3],[-1,-3],[-1,-3],[-3,-6],[-8,-8],[-4,-7],[8,-10],[9,16],[9,23],[7,12],[22,-1],[6,-3],[5,-5],[1,-5],[-2,-3],[-6,1],[2,-10],[-2,-8],[-4,-7],[-4,-4],[21,-1],[4,-2],[1,-16],[-4,-13],[-7,-11],[-3,-10],[11,7],[6,2],[5,-4],[2,-7],[0,-7],[-2,-13],[-2,-1],[-14,-17],[-4,-1],[-12,-7],[-14,-2],[-9,0],[-5,5],[-4,18],[0,4],[-3,2],[-6,4],[-3,2],[-4,6],[-2,4],[-1,4],[0,13],[0,6],[-2,6],[-13,22],[-1,25],[1,53],[1,9],[2,7],[6,7],[4,9],[3,9],[4,7],[6,4],[12,-1],[3,1],[3,2],[2,3],[2,3],[5,0],[-5,13],[-2,7],[0,4],[19,0],[6,2],[1,6],[1,6],[3,6],[4,3],[8,-2],[5,4],[0,3],[-8,10],[0,5],[3,8],[12,19],[3,3],[6,2],[5,5],[3,6],[4,3],[5,-2],[4,-6],[3,-8],[2,-8],[3,40],[1,3],[1,6],[0,7],[0,5],[2,1],[2,2],[3,-1],[1,-4],[6,-12],[13,-14],[14,-6],[7,9],[-7,2],[-14,8],[-7,2],[-2,5],[1,10],[3,10],[7,4],[0,4],[-4,4],[-1,6],[1,7],[2,7],[4,6],[6,3],[6,1],[5,-2],[7,-9],[6,-13],[6,-11],[9,-3],[-6,15],[-3,10],[1,9],[9,17],[2,5],[2,17],[6,2],[3,0],[4,-2],[7,-12],[8,-17],[4,-6],[5,-2],[-2,9],[-2,4],[2,4],[3,3],[2,1],[3,-1],[-4,8],[-10,7],[-3,6],[-2,10],[1,8],[2,8],[1,9],[8,22],[2,4],[20,4],[-1,6],[-1,1],[-2,-2],[-2,-1],[-4,2],[0,5],[3,10],[1,3],[2,2],[1,3],[-1,5],[-2,5],[-1,4],[0,10],[10,61],[7,10],[5,5],[5,-5],[4,-9],[3,-4],[3,1],[4,7],[6,4],[3,-11],[1,-18],[-4,-17],[4,0],[4,0],[4,0],[2,-6],[0,-8],[2,-1],[2,2],[1,1],[4,-1],[1,1],[1,-1],[3,-5],[1,-6],[0,-7],[-1,-6],[-1,-6],[-1,-6],[-3,-7],[-1,-6],[1,-7],[3,-1],[3,3],[3,5],[1,4],[0,5],[2,5],[2,4],[1,3],[1,7],[0,6],[2,5],[3,3],[0,4],[-7,8],[-6,13],[-5,17],[-1,19],[2,-3],[2,-1],[5,0],[-4,7],[-3,8],[4,4],[15,5],[9,6],[4,0],[4,-6],[1,-4],[1,-10],[1,-5],[2,0],[2,3],[3,4],[2,3],[28,13],[5,1],[4,-3],[15,-24],[-4,-10],[-5,-8],[-3,1],[-3,-3],[-5,-4],[-5,-2],[2,-1],[18,-8],[-1,-5],[-2,-4],[-2,-3],[-2,-4],[0,-4],[18,5],[6,-5],[-2,-20],[-4,-10],[-8,-8],[-8,-5],[-8,-1],[0,-5],[4,-3],[14,3],[4,-3],[1,-7],[-4,-30],[-6,-13],[-13,-20],[7,3],[10,9],[8,12],[3,11],[2,29],[-1,5],[-2,5],[0,10],[2,8],[5,1],[2,-4],[1,-7],[1,-6],[13,-13],[1,-6],[3,-12],[0,-8],[-1,-6],[-5,-19],[-9,-19],[-12,-14],[-35,-28],[-20,-7],[-14,-11],[-7,-2],[-6,4],[-10,14],[-6,2],[-2,2],[-15,28],[-3,3],[0,-15],[7,-11],[15,-17],[3,-5],[3,-4],[4,-3],[4,-2],[5,-1],[42,11],[32,23],[7,8],[2,-4],[-3,-11],[-5,-10],[9,-8],[0,-15],[-10,-30],[4,3],[7,15],[3,3],[5,-1],[18,-10],[4,-5],[3,-7],[3,-6],[4,-2],[13,-2],[-28,45],[-3,10],[1,11],[-6,5],[-11,2],[-1,9],[2,11],[4,11],[3,8],[5,5],[7,3],[13,2],[4,-3],[3,-8],[4,-17],[8,-12],[9,-7],[7,-11],[2,-23],[-3,-28],[-6,-24],[-8,-22],[-9,-19],[-16,-23],[-2,-8],[-2,-9],[-13,-25],[-4,-12],[2,-4],[5,-2],[11,-16],[7,-3],[7,0],[6,4],[6,11],[3,12],[2,12],[6,19],[1,4],[2,2],[3,-3],[3,-4],[2,-5],[3,-11],[1,7],[0,8],[-2,7],[-2,2],[-4,4],[0,8],[3,17],[4,13],[14,29],[5,8],[14,15],[6,9],[6,5],[18,2],[7,4],[-11,0],[-6,3],[-4,5],[-1,10],[2,7],[3,7],[2,8],[5,34],[5,12],[9,3],[-2,4],[16,43],[6,6],[13,11],[3,9],[-5,2],[-6,2],[-7,-1],[-6,-5],[-4,-11],[-6,-24],[-30,-67],[-10,-10],[0,-4],[3,-12],[-7,-18],[-17,-27],[-4,17],[3,22],[7,18],[9,4],[-4,14],[2,18],[4,20],[2,17],[0,12],[-2,7],[-7,12],[0,5],[-1,27],[0,7],[-2,3],[0,2],[4,7],[7,8],[1,3],[0,7],[3,18],[6,11],[9,4],[9,1],[-4,3],[-4,5],[-2,5],[-2,8],[1,7],[6,10],[1,5],[37,60],[13,9],[44,6],[3,3],[0,6],[-1,4],[-2,-3],[-27,6],[-5,4],[-1,3],[-1,5],[-2,6],[-2,-1],[-7,-7],[-2,-4],[-3,-2],[-12,-4],[-1,-3],[-14,-34],[-4,-8],[-6,-4],[-6,-5],[-9,-21],[-7,-2],[2,17],[2,17],[1,37],[2,16],[6,31],[2,26],[3,19],[1,20],[1,6],[2,5],[2,5],[8,12],[8,6],[7,-3],[2,-19],[2,0],[2,37],[2,8],[6,5],[5,-4],[8,-13],[0,10],[-1,12],[0,10],[4,4],[2,1],[5,6],[3,1],[3,0],[2,1],[2,2],[2,3],[5,6],[5,-1],[4,-6],[4,-9],[1,-5],[1,-10],[2,-5],[1,-3],[6,-5],[10,-14],[5,-5],[5,-2],[6,-3],[9,-17],[6,-4],[25,-8],[12,0],[0,12],[6,10],[2,5],[-1,7],[-3,6],[-4,4],[-4,2],[-5,-2],[-4,-3],[-2,-4],[-3,-3],[-5,-2],[-4,1],[-7,5],[-27,27],[-27,43],[-11,14],[-11,6],[-11,-7],[-9,-14],[-5,-4],[-8,-1],[-7,0],[-7,3],[-7,5],[-3,7],[-1,12],[1,15],[3,13],[4,5],[15,-2],[7,2],[7,8],[0,9],[4,5],[3,5],[-2,12],[-5,9],[-2,5],[0,4],[1,4],[-1,3],[-5,1],[-4,3],[-4,9],[-4,10],[-2,11],[0,11],[2,11],[4,9],[4,5],[6,4],[32,-4],[4,0],[3,3],[5,7],[3,2],[6,1],[11,-3],[5,4],[5,10],[15,21],[6,14],[2,2],[12,0],[6,2],[6,6],[29,48],[12,10],[11,-5],[1,7],[3,8],[1,5],[-1,4],[-3,10],[-1,4],[-1,12],[0,5],[6,14],[1,5],[5,32],[1,11],[1,10],[3,7],[7,8],[7,6],[6,2],[-6,24],[1,26],[6,47],[-1,-5],[-4,-13],[-1,0],[-4,-11],[-1,-3],[-3,-6],[-2,-1],[-3,-1],[-1,-2],[1,-12],[0,-4],[-3,-9],[-4,-20],[-4,-6],[-6,-2],[-3,4],[-2,9],[0,11],[-3,7],[-5,6],[-7,4],[-5,1],[-1,2],[-6,11],[-3,4],[-21,17],[-3,5],[1,11],[2,8],[-1,7],[-3,9],[-6,4],[-15,4],[-10,11],[-30,8],[-4,3],[-3,4],[-2,4],[-1,5],[1,4],[14,10],[5,12],[1,4],[0,14],[-3,8],[-3,0],[-4,-19],[-5,-7],[-7,-4],[-6,0],[-7,1],[-6,4],[-5,8],[-2,13],[1,17],[3,8],[4,1],[6,-4],[2,-3],[2,-4],[1,0],[1,9],[0,20],[1,6],[4,4],[4,1],[4,0],[1,-3],[3,-9],[1,-5],[8,-5],[3,6],[0,11],[-2,5],[-3,6],[-1,15],[-1,23],[2,10],[3,10],[8,15],[3,4],[2,1],[1,2],[2,7],[1,6],[0,5],[0,6],[1,8],[7,20],[3,11],[2,15],[0,6],[2,-1],[3,-7],[2,-6],[0,-6],[1,-5],[5,-3],[4,10],[7,9],[8,6],[7,-1],[2,-4],[1,-7],[2,-6],[3,-3],[4,1],[2,2],[-1,4],[-5,15],[-1,10],[-1,11],[0,14],[2,10],[1,6],[-2,6],[-2,0],[0,-6],[-1,-9],[-1,-5],[-1,-6],[-1,-6],[-1,-6],[-3,-4],[-3,-2],[-7,2],[-4,0],[-3,-3],[-4,-5],[-3,-1],[-2,3],[-3,11],[-3,3],[-7,1],[-5,3],[-1,1],[-2,8],[3,11],[5,7],[6,4],[4,7],[4,26],[6,4],[7,1],[6,4],[-3,11],[-4,1],[-13,-4],[-8,0],[-5,4],[-4,7],[-8,36],[-3,11],[-9,20],[0,11],[6,24],[1,12],[0,39],[3,9],[5,7],[29,25],[6,2],[5,5],[2,12],[-1,15],[-1,12],[-5,27],[-1,15],[3,7],[5,6],[11,34],[5,5],[7,2],[5,-4],[4,-24],[5,-8],[5,-5],[6,-2],[-6,27],[-2,15],[3,13],[0,5],[1,41],[-2,5],[-4,8],[-14,18],[-6,11],[-3,17],[0,10],[-4,25],[1,8],[0,7],[1,8],[-2,9],[9,5],[2,5],[1,9],[-2,7],[-7,11],[-3,8],[0,18],[3,20],[4,19],[5,12],[8,6],[11,1],[12,-2],[9,-5],[3,-5],[4,-7],[4,-6],[9,-5],[8,-11],[4,-2],[7,4],[-1,10],[-4,10],[-7,4],[-6,2],[-15,14],[-6,7],[-11,27],[-1,6],[2,13],[-2,8],[-2,2],[-7,0],[-2,2],[-3,9],[-5,29],[-1,7],[-5,0],[-6,1],[-3,5],[0,10],[10,21],[12,9],[26,11],[14,14],[8,2],[6,-5],[4,-12],[28,-136],[4,-11],[4,-3],[2,14],[-2,26],[-4,25],[-3,9],[-3,9],[-4,9],[-1,12],[2,11],[5,6],[7,6],[5,7],[-7,0],[-6,2],[-4,7],[-2,14],[1,15],[3,6],[5,3],[6,6],[-4,2],[-5,1],[-4,2],[-4,7],[0,6],[0,22],[0,9],[7,47],[0,6],[-6,10],[-9,5],[-7,-16],[-5,-21],[-6,-11],[-7,-1],[-3,1],[-2,9],[-2,4],[-6,-7],[-4,3],[-3,6],[-2,5],[-7,-11],[-7,1],[-22,21],[-3,4],[-3,6],[-1,3],[0,6],[-1,3],[-2,3],[-4,3],[-2,2],[-2,3],[-2,4],[0,3],[7,3],[2,4],[4,9],[2,2],[4,3],[1,1],[0,3],[-1,7],[1,2],[2,5],[25,40],[4,4],[4,4],[7,19],[5,6],[7,0],[8,-4],[7,-1],[9,10],[4,0],[3,-1],[4,0],[3,1],[7,7],[10,3],[2,3],[10,14],[1,2],[5,7],[2,3],[3,1],[11,-1],[-8,8],[-2,4],[-2,9],[1,7],[5,21],[0,4],[0,8],[0,4],[5,6],[1,2],[-2,8],[-5,11],[-1,6],[1,15],[7,31],[0,14],[-6,8],[-5,-2],[-1,-9],[6,-13],[-2,-7],[-4,-13],[-2,-8],[-6,-80],[-2,-11],[-3,-7],[-4,-15],[-3,-7],[-3,-3],[-9,-6],[-17,-5],[-3,-2],[-3,-4],[-8,-9],[-4,-1],[-7,1],[-11,12],[-5,3],[-2,5],[-3,26],[-2,10],[-10,13],[0,3],[-2,3],[-4,19],[-2,3],[-9,7],[-8,13],[-6,6],[-3,1],[-3,0],[-3,-5],[-3,-3],[-3,2],[-2,5],[-2,2],[-7,6],[-3,2],[-3,-1],[-6,-19],[-12,1],[-4,-9],[0,-16],[-12,-5],[-2,-3],[-3,-1],[-2,-3],[-2,-5],[1,-3],[3,-7],[2,-2],[-1,-3],[-1,-2],[0,-1],[0,-2],[5,-5],[1,-5],[-1,-17],[2,-5],[2,-8],[1,-6],[-2,-3],[-6,-1],[-3,-4],[-5,-16],[-3,-6],[-3,-4],[-5,-1],[-4,3],[-8,-20],[-21,1],[-24,6],[-18,-3],[1,-3],[1,-2],[1,-2],[1,-1],[0,-4],[-6,3],[-6,-2],[-11,-5],[-5,1],[-16,15],[-24,12],[-21,2],[-7,3],[1,5],[4,3],[4,6],[5,17],[2,9],[1,8],[1,10],[-1,9],[4,6],[4,6],[8,2],[16,-1],[8,4],[3,11],[2,13],[9,22],[2,12],[-9,-16],[-5,-18],[-7,-14],[-12,-5],[-3,1],[-6,5],[-3,2],[-3,-1],[-4,-2],[-3,-1],[-5,2],[-9,8],[-4,2],[-2,1],[-1,4],[-1,2],[-3,-1],[-1,-1],[-1,-1],[-2,0],[-2,5],[-1,7],[3,6],[-1,7],[-3,16],[-8,17],[-2,16],[-1,11],[3,15],[0,38],[-4,32],[-5,30],[-6,26],[-7,18],[2,11],[-1,11],[-4,13],[1,11],[-3,15],[1,17],[-1,16],[-2,13],[2,8],[4,3],[6,3],[3,7],[6,4],[5,9],[-1,8],[-5,7],[-4,7],[-1,9],[1,6],[3,7],[2,12],[0,15],[2,18],[5,15],[5,14],[5,6],[-3,9],[-5,8],[-1,6],[3,6],[3,9],[4,6],[13,14],[3,20],[6,18],[-3,12],[-3,12],[0,9],[-1,7],[-3,12],[-2,5],[-2,2],[-1,4],[-1,8],[1,5],[4,8],[1,7],[0,25],[1,12],[3,32],[0,8],[1,6],[2,11],[1,7],[3,3],[1,3],[-1,3],[0,4],[-1,2],[-1,-1],[0,4],[-1,5],[0,4],[4,5],[1,3],[5,17],[0,3],[3,0],[4,1],[2,3],[2,6],[-2,25],[-1,13],[-1,9],[-8,18],[-3,13],[0,6],[3,2],[5,13],[3,5],[3,1],[8,-1],[6,5],[8,13],[13,4],[5,6],[5,8],[5,9],[4,11],[3,4],[4,1],[2,-1],[3,-3],[2,-3],[1,-3],[1,-14],[2,-14],[3,-8],[4,5],[1,12],[0,13],[-3,13],[-3,9],[-2,10],[2,13],[3,13],[2,10],[-2,13],[-4,8],[-2,8],[3,10],[10,8],[4,5],[-4,5],[12,24],[5,14],[2,13],[1,6],[1,7],[3,7],[2,2],[1,3],[1,7],[1,7],[4,3],[-3,13],[0,11],[3,9],[5,10],[-1,4],[-5,12],[-1,6],[1,7],[3,3],[2,4],[2,9],[-1,14],[-4,28],[1,13],[6,21],[1,12],[-7,7],[0,-15],[-1,-9],[-2,0],[-2,26],[-4,20],[-5,41],[-21,95],[-20,135],[-3,0],[1,-28],[3,-25],[-3,2],[-2,7],[-2,15],[-1,12],[0,13],[-1,12],[-6,21],[-6,39],[-3,19],[-2,11],[-1,27],[-5,32],[0,13],[4,28],[1,6],[-2,6],[2,3],[3,3],[2,3],[0,6],[-4,23],[1,6],[2,7],[2,3],[2,4],[3,4],[1,5],[5,75],[0,24],[-2,23],[-9,47],[-15,52],[-18,51],[-3,5],[-5,6],[-2,4],[-2,5],[-1,4],[1,33],[-1,6],[-4,13],[-1,6],[1,13],[2,12],[3,9],[3,8],[10,14],[4,8],[2,12],[-1,27],[-1,11],[-2,9],[-17,30],[-2,9],[1,13],[6,21],[2,13],[1,39],[2,11],[5,10],[3,7],[4,1],[4,-3],[4,-9],[2,-6],[3,-2],[1,-1],[11,-11],[7,1],[3,-1],[1,-5],[-1,-6],[0,-5],[2,-5],[3,1],[6,8],[7,-5],[4,1],[7,4],[12,2],[10,6],[13,13],[8,19],[10,50],[0,29],[-1,10],[-1,5],[0,6],[1,4],[5,14],[0,6],[4,69],[-2,15],[-4,9],[-6,6],[-6,5],[3,7],[3,7],[4,6],[4,4],[2,-7],[5,6],[2,11],[-8,6],[7,18],[1,7],[-2,9],[1,10],[2,11],[1,10],[7,-12],[1,-41],[5,-16],[5,-3],[5,-1],[5,1],[4,3],[4,7],[2,7],[0,21],[1,4],[1,5],[2,4],[1,3],[1,4],[0,4],[-1,4],[-2,9],[-4,9],[-1,3],[0,26],[1,4],[1,3],[3,1],[2,-2],[1,-4],[0,-4],[1,-2],[4,2],[3,5],[2,8],[5,32],[3,11],[4,9],[1,5],[1,21],[2,7],[4,13],[3,10],[2,12],[2,12],[1,13],[-4,41],[0,10],[2,6],[5,8],[1,8],[-1,6],[-3,12],[0,6],[1,12],[6,18],[2,13],[0,6],[0,6],[-1,6],[-3,6],[1,6],[2,6],[4,9],[26,41],[4,10],[2,12],[15,16],[4,5],[4,24],[-1,24],[-4,23],[-14,49],[-1,13],[2,12],[4,8],[26,32],[3,5],[6,25],[5,17],[-1,9],[0,8],[1,8],[2,8],[4,7],[6,4],[4,6],[1,13],[1,14],[1,12],[2,11],[4,10],[10,15],[21,23],[9,14],[7,17],[4,21],[3,24],[3,78],[2,14],[3,11],[5,10],[3,12],[4,27],[2,3],[6,11],[2,6],[1,10],[8,33],[2,11],[1,53],[3,37],[0,13],[-3,21],[-1,13],[2,14],[5,8],[6,6],[4,6],[2,9],[0,12],[0,48],[-2,25],[-3,8],[-4,10],[-2,11],[3,13],[12,29],[4,10],[4,21],[4,10],[7,8],[0,7],[0,8],[0,6],[1,5],[7,12],[5,20],[6,50],[6,23],[2,6],[2,3],[2,1],[2,4],[3,2],[6,0],[3,2],[5,9],[5,5],[5,8],[5,13],[5,25],[2,13],[0,13],[0,20],[0,6],[1,4],[4,9],[1,3],[-5,24],[-18,39],[0,27],[1,6],[2,5],[2,3],[4,1],[1,3],[0,7],[0,13],[-1,14],[-3,10],[-3,10],[-3,13],[-4,46],[-1,8],[-7,24],[-3,7],[5,9],[15,1],[3,8],[0,7],[2,7],[1,7],[2,5],[4,5],[2,1],[2,-1],[11,0],[3,2],[2,4],[2,4],[1,11],[3,12],[0,6],[-1,6],[0,7],[2,6],[6,8],[2,7],[1,14],[-3,12],[-3,13],[-2,15],[-1,6],[0,6],[2,7],[3,2],[6,0],[2,2],[2,12],[-2,12],[-1,9],[11,7],[3,8],[2,12],[1,13],[-1,27],[-2,14],[-6,23],[2,11],[4,10],[4,9],[0,7],[3,27],[1,10],[2,6],[2,3],[1,5],[-1,10],[-9,16],[-2,2],[-3,2],[-1,2],[0,1],[0,9],[-3,22],[-1,7],[-4,9],[-5,7],[-5,8],[-3,12],[-1,7],[1,20],[1,7],[3,13],[0,25],[5,63],[-1,10],[-2,6],[-2,6],[0,6],[0,8],[1,6],[3,4],[2,3],[1,3],[-1,12],[-9,19],[0,8],[5,11],[2,9],[-1,9],[-13,99],[-2,10],[0,43],[-6,44],[-5,14],[-10,129],[-6,19],[0,12],[4,48],[1,28],[-1,27],[-3,23],[-2,4],[-1,3],[-1,4],[-1,14],[-1,12],[-1,19],[-5,38],[2,41],[-1,7],[-3,49],[1,13],[4,29],[0,9],[-2,12],[1,14],[4,21],[2,63],[11,54],[0,6],[1,2],[2,-1],[2,-4],[3,-17],[6,-6],[7,-1],[6,1],[7,4],[3,4],[1,6],[0,6],[-1,5],[0,2],[4,1],[1,7],[12,38],[3,-7],[3,-6],[2,-2],[5,7],[3,8],[1,9],[2,19],[0,22],[-2,19],[-3,17],[-5,15],[1,5],[2,3],[2,0],[3,-3],[0,4],[1,4],[1,3],[5,2],[0,3],[-1,4],[1,4],[1,3],[0,2],[1,2],[3,1],[1,-1],[3,-6],[2,-1],[6,5],[3,14],[1,18],[0,18],[-1,8],[-2,7],[-5,9],[-2,6],[-2,7],[-3,35],[0,10],[3,5],[2,4],[0,9],[0,9],[-1,6],[7,20],[2,11],[-3,5],[-3,5],[-3,11],[-3,14],[-1,12],[1,12],[4,19],[1,16],[1,7],[1,7],[0,7],[-2,5],[-4,6],[-2,6],[-1,14],[-1,12],[-1,12],[-4,12],[-4,8],[-26,32],[-5,10],[-2,11],[0,30],[0,2],[0,3],[0,4],[1,3],[2,6],[1,3],[0,8],[-2,4],[-3,4],[-1,6],[1,5],[2,9],[1,6],[-4,27],[1,2],[0,6],[-1,4],[-4,-4],[-2,22],[3,30],[7,26],[9,11],[4,2],[11,10],[3,4],[3,11],[3,24],[3,10],[11,18],[5,11],[4,33],[-1,7],[-1,5],[-3,4],[-2,5],[-1,6],[2,7],[5,6],[5,7],[3,11],[-2,21],[0,5],[2,3],[3,1],[3,0],[2,0],[6,14],[6,25],[4,26],[1,20],[-2,11],[-1,4],[-2,2],[-1,2],[2,6],[4,10],[0,11],[3,22],[1,41],[-1,13],[-4,17],[2,5],[2,6],[2,5],[2,10],[2,61],[2,13],[2,13],[1,4],[3,3],[2,3],[1,6],[-1,13],[-1,8],[2,4],[3,1],[1,5],[0,5],[0,7],[2,13],[5,21],[3,13],[1,12],[1,14],[1,7],[2,6],[2,1],[1,-6],[2,-4],[12,7],[5,-1],[1,7],[2,7],[3,5],[2,2],[3,3],[0,7],[-2,14],[0,25],[7,24],[1,6],[-2,14],[-2,16],[-4,16],[-7,26],[0,13],[2,14],[1,16],[-1,10],[-3,11],[-2,12],[3,17],[-1,6],[-3,9],[-1,4],[0,8],[1,4],[3,17],[0,6],[2,6],[3,4],[4,0],[1,-6],[1,-8],[2,-2],[3,2],[2,2],[3,5],[1,5],[-1,4],[0,6],[2,5],[2,4],[1,4],[1,5],[0,8],[1,2],[2,-2],[2,-2],[4,2],[0,5],[-1,6],[0,4],[2,5],[6,7],[1,4],[0,11],[-5,28],[0,6],[0,3],[-4,17],[-1,8],[1,4],[10,46],[2,6],[2,4],[6,7],[5,6],[-5,12],[-1,4],[-1,5],[1,7],[2,6],[4,6],[1,6],[1,7],[3,31],[5,23],[1,15],[-3,19],[-1,11],[3,12],[2,5],[1,5],[0,5],[0,8],[-1,6],[-3,14],[0,4],[2,6],[7,-1],[3,17],[7,9],[-3,15],[-11,7],[2,16],[5,7],[2,17],[-2,10],[-2,10],[0,16],[-2,9],[1,6],[1,10],[1,20],[0,16],[0,5],[2,5],[3,4],[1,3],[2,20],[-1,21],[-4,18],[-5,14],[-8,21],[-2,11],[-1,15],[-1,4],[-6,3],[-2,0],[2,15],[2,15],[7,3],[2,19],[0,16],[0,14],[2,14],[3,8],[6,3],[5,14],[-1,26],[-1,6],[-2,12],[-1,6],[1,7],[1,4],[6,11],[1,0],[2,0],[3,1],[5,5],[9,13],[4,2],[2,7],[2,31],[3,11],[10,0],[3,2],[2,5],[1,6],[1,5],[2,6],[-1,7],[-2,9],[1,7],[3,18],[2,23],[-1,26],[-3,24],[-7,20],[-5,5],[-2,4],[-1,5],[0,6],[2,9],[0,5],[2,13],[3,11],[2,12],[-1,15],[-13,33],[-2,14],[-1,13],[-5,25],[-2,12],[0,27],[-1,6],[-4,11],[-1,3],[0,47],[6,28],[0,6],[-1,6],[-2,14],[-2,5],[-1,4],[-2,5],[0,8],[1,4],[2,4],[1,5],[2,12],[2,19],[4,21],[-2,17],[0,4],[-2,5],[0,3],[2,3],[1,3],[1,2],[-1,6],[-1,9],[2,5],[2,7],[0,8],[1,8],[-1,11],[1,10],[5,18],[-2,7],[0,7],[4,13],[-3,13],[-1,13],[3,1],[1,5],[1,10],[0,17],[-2,18],[-5,25],[2,18],[5,31],[-1,16],[-2,8],[0,8],[5,13],[-1,31],[1,9],[3,9],[9,15],[3,9],[5,17],[5,20],[3,22],[1,22],[-4,15],[-2,24],[-8,11],[-7,7],[-9,7],[-4,-7],[-2,-14],[-4,-7],[-2,-9],[-6,3],[-5,4],[-7,5],[-4,-12],[-3,9],[2,25],[2,11],[1,5],[3,2],[3,5],[2,7],[-3,10],[-1,1],[-1,15],[-1,13],[4,19],[-1,14],[-2,12],[1,11],[0,11],[3,18],[6,8],[1,15],[-3,12],[2,14],[-4,14],[2,16],[3,12],[7,16],[7,11],[1,3],[1,0],[2,-5],[1,-5],[0,-6],[-1,-6],[-1,-5],[2,-11],[3,-7],[4,-6],[5,-1],[7,5],[8,11],[7,12],[4,12],[6,16],[2,19],[0,5],[0,3],[2,6],[0,1],[3,7],[4,9],[1,10],[1,10],[0,10],[-1,13],[-4,16],[-2,17],[3,17],[0,8],[3,14],[3,17],[-2,18],[2,4],[0,5],[-2,5],[0,6],[2,5],[2,0],[1,2],[1,7],[-1,7],[-2,11],[-1,7],[1,5],[10,36],[0,5],[0,6],[-3,13],[2,42],[-1,34],[2,8],[2,9],[3,81],[0,9],[4,27],[-1,11],[4,4],[2,10],[2,10],[0,10],[-4,12],[0,1],[1,1],[1,0],[0,4],[4,13],[-2,5],[1,5],[2,6],[1,8],[-1,9],[-1,6],[-4,13],[12,14],[1,29],[-2,31],[2,16],[-1,6],[-1,34],[1,7],[2,13],[5,7],[5,7],[3,10],[0,10],[1,9],[1,8],[4,5],[0,9],[-1,6],[-1,7],[-1,7],[0,3],[3,10],[3,9],[1,11],[-2,10],[-5,14],[-2,16],[-1,12],[2,5],[1,5],[3,7],[1,6],[-2,14],[0,11],[-3,5],[0,6],[1,3],[1,4],[-1,4],[-2,6],[-1,8],[0,8],[-4,9],[-1,7],[-2,13],[-1,3],[-1,3],[-1,4],[0,3],[1,3],[1,2],[-1,12],[-4,8],[-6,21],[-2,16],[1,10],[1,6],[4,14],[5,10],[1,6],[-4,12],[1,9],[-1,12],[-2,8],[-2,6],[-4,9],[-4,8],[-3,7],[-5,1],[0,2],[4,4],[2,7],[-3,18],[-1,14],[4,11],[0,4],[-2,1],[0,1],[-1,1],[-1,1],[3,17],[0,20],[-2,60],[-1,9],[2,7],[6,14],[2,9],[1,17],[-1,16],[-1,10],[-4,15],[-1,7],[1,8],[7,9],[5,5],[1,17],[1,4],[2,16],[-8,28],[-2,7],[1,7],[2,2],[2,2],[1,7],[0,4],[-2,14],[0,6],[2,8],[5,19],[1,12],[-1,3],[-2,9],[-1,6],[1,6],[2,13],[1,5],[0,13],[-3,17],[-1,20],[-2,15],[1,7],[1,11],[0,7],[-6,18],[0,16],[3,32],[-1,11],[-6,34],[-1,12],[-2,7],[-7,7],[-8,8],[-1,3],[8,1],[1,10],[2,7],[0,9],[1,11],[-2,27],[-2,17],[-4,14],[0,15],[-4,23],[-7,22],[1,4],[1,3],[-3,6],[-3,6],[-2,1],[0,6],[2,11],[0,6],[0,23],[1,12],[3,15],[-1,4],[-2,3],[-1,4],[2,16],[0,6],[-1,8],[-10,52],[0,8],[1,21],[-3,17],[-2,38],[-5,24],[-2,25],[-1,14],[1,6],[3,16],[0,16],[0,7],[2,13],[0,7],[-1,6],[-2,6],[-1,4],[4,11],[-1,23],[1,19],[3,13],[1,7],[0,6],[-2,14],[0,4],[6,7],[1,9],[-3,9],[-3,10],[-7,18],[-6,12],[-6,14],[0,1]],[[30446,39610],[7,7],[14,3],[30,-6],[14,3],[7,4],[20,23],[6,4],[8,0],[7,5],[4,8],[14,32],[11,20],[5,11],[6,19],[17,78],[0,11],[0,11],[-3,11],[-6,22],[-1,10],[-1,15],[-2,25],[-5,21],[-3,20],[2,25],[9,20],[12,1],[13,-4],[12,5],[13,17],[35,71]],[[30932,18017],[0,-32],[-3,-20]],[[30929,17965],[-3,0],[-6,4],[-15,19],[-52,41],[-10,-3],[0,-4],[23,-10],[3,-9],[3,-7],[6,-10],[7,-8],[5,-5],[14,-8],[2,-6],[-6,-9],[-8,-5],[-78,-17],[-17,4],[-43,26],[-62,22],[-15,9],[-9,10],[-2,3],[-5,0],[-4,0],[-4,1],[-4,4],[-3,6],[-1,4],[-1,7],[2,5],[4,2],[5,1],[3,2],[2,6],[-1,5],[-1,5],[0,4],[1,26],[-4,-3],[-6,-33],[-5,-7],[-3,9],[-2,30],[-5,6],[-1,-5],[2,-40],[0,-12],[0,-4],[-2,-4],[-3,-3],[-4,-1],[-4,1],[-2,6],[2,26],[-1,13],[-3,7],[-5,-3],[-1,-12],[0,-27],[-4,-14],[-9,-6],[-11,-1],[-8,2],[-5,5],[-6,9],[-4,10],[-2,10],[0,25],[1,6],[1,4],[2,5],[0,7],[-3,3],[-4,-8],[-3,-13],[-2,-12],[1,-14],[4,-18],[1,-10],[0,-11],[-1,-5],[-3,-2],[-24,-9],[-4,0],[-1,8],[1,9],[2,9],[1,7],[-1,9],[-3,-1],[-2,-8],[-1,-10],[-8,8],[-1,-6],[-1,-12],[-6,-11],[-9,-5],[-11,-2],[-11,3],[-9,8],[-4,13],[0,12],[5,10],[10,17],[9,22],[3,11],[-5,4],[-2,-6],[-3,-10],[-4,-4],[-3,-3],[-9,-11],[-2,-4],[-1,-5],[-2,-3],[-2,-3],[-1,-3],[-1,-4],[0,-8],[-1,-4],[0,-4],[1,-10],[-1,-3],[-2,-2],[-3,2],[-2,3],[-1,2],[-12,7],[-9,2],[-12,6],[-11,9],[-10,3],[-8,-1],[0,-6],[-5,-7],[-7,-4],[-12,-1],[-6,-4],[-5,-8],[-7,-6],[-8,3],[-10,9],[-2,6],[-1,14],[2,6],[7,6],[7,4],[18,4],[25,13],[22,20],[25,38],[-10,12],[-15,-6],[-24,-26],[3,-4],[7,-5],[3,-4],[-6,-9],[-9,-8],[-9,-5],[-8,-2],[-5,2],[-3,3],[-4,1],[-5,-2],[-4,-4],[-3,-6],[-4,-4],[-4,-2],[-22,1],[-9,6],[1,15],[9,9],[23,3],[9,6],[-7,5],[-16,-4],[-7,-1],[-12,7],[-5,-1],[-4,-10],[5,-8],[-3,-11],[-16,-29],[-5,-4],[-4,1],[-2,8],[2,9],[4,7],[4,5],[3,6],[2,9],[-1,8],[-1,8],[0,8],[11,17],[3,3],[1,2],[-1,4],[-2,3],[-5,-5],[-3,-1],[-5,1],[-3,3],[-8,11],[-5,2],[2,-8],[2,-7],[2,-6],[0,-7],[-2,-10],[-3,-3],[-4,1],[-3,3],[0,4],[-1,4],[-1,4],[-3,1],[-1,-2],[-12,-30],[-4,-6],[-4,-3],[-4,2],[-7,11],[-4,3],[-11,-1],[-5,0],[-4,6],[0,9],[4,3],[20,2],[4,3],[3,7],[-7,3],[-6,0],[-5,5],[-2,19],[0,3],[0,4],[1,6],[2,5],[4,6],[2,5],[-9,-1],[-5,-10],[-4,-5],[-7,8],[-4,14],[-3,3],[-4,-6],[0,-7],[2,-7],[3,-5],[2,-4],[-7,-1],[-6,5],[-5,2],[-3,-14],[11,-5],[6,-4],[4,-7],[-4,-4],[-2,2],[-3,4],[-3,2],[-4,-3],[-1,-6],[-1,-8],[-1,-7],[-3,-7],[-2,3],[-2,5],[-4,3],[-2,-3],[-2,-5],[-3,-5],[-5,0],[3,-13],[-3,-6],[-5,2],[-4,14],[0,13],[2,10],[5,17],[-6,-3],[-5,-9],[-4,-11],[0,-14],[-2,4],[-3,1],[-2,-1],[-3,-4],[-2,10],[2,12],[4,11],[4,8],[-2,1],[-2,-2],[-1,-2],[-3,-1],[-2,2],[-1,4],[-1,1],[-2,-5],[-1,-4],[0,-4],[0,-3],[-1,-5],[-7,-10],[0,-4],[0,-3],[0,-3],[-2,-3],[-2,-1],[-2,1],[-3,1],[-1,2],[-3,9],[2,8],[7,13],[-3,0],[-7,-4],[-3,0],[-4,2],[-7,5],[-4,1],[4,-13],[-6,-5],[-8,0],[-7,2],[2,-7],[1,-5],[-1,-5],[-4,-4],[-8,5],[-5,0],[-14,-5],[-7,0],[-5,5],[-3,8],[-2,12],[6,4],[4,1],[5,-2],[6,-3],[-3,6],[-1,2],[5,5],[2,4],[1,3],[0,7],[-1,0],[-2,-1],[-3,-1],[-9,0],[-2,4],[5,8],[-4,0],[-15,-12],[0,7],[2,7],[2,5],[2,4],[-5,9],[-2,2],[0,5],[1,4],[1,-1],[3,-4],[5,-2],[5,-1],[3,1],[-14,19],[-3,11],[8,6],[9,-6],[6,-3],[1,-2],[0,-3],[1,-2],[8,-4],[5,-11],[2,-7],[0,-8],[2,-7],[5,-2],[10,-2],[25,-14],[10,-1],[-3,4],[-7,5],[-3,5],[-6,17],[-2,5],[10,0],[22,-22],[13,1],[-20,19],[-10,13],[0,13],[-7,4],[-5,-2],[-6,-3],[-7,-3],[-13,4],[-3,2],[-3,7],[0,5],[1,3],[5,0],[-1,5],[-1,4],[-2,4],[-2,3],[10,-1],[3,1],[2,2],[1,4],[2,4],[4,2],[6,-2],[7,-5],[3,-6],[-6,-4],[0,-3],[13,-8],[21,-36],[14,-5],[0,11],[19,-1],[0,10],[-6,7],[-18,1],[-6,8],[-2,4],[-1,6],[-1,7],[1,6],[4,6],[3,-3],[5,-13],[3,-5],[4,-5],[5,-2],[3,2],[1,6],[-1,7],[-3,5],[-2,4],[4,-1],[7,-9],[10,-7],[2,0],[5,1],[5,-1],[1,0],[2,-1],[0,-4],[1,-5],[1,-3],[2,0],[7,8],[8,3],[4,7],[-6,6],[-17,2],[-8,8],[3,1],[2,3],[2,3],[1,5],[4,-3],[2,1],[2,4],[3,2],[4,-1],[5,-6],[9,-3],[31,-23],[6,-7],[5,-21],[5,-9],[11,-11],[-13,35],[-2,9],[6,1],[31,-9],[11,-12],[2,2],[0,15],[1,6],[3,2],[5,7],[-1,16],[-4,29],[6,-3],[6,5],[7,7],[6,4],[17,1],[8,-2],[7,-7],[0,-8],[6,-1],[11,4],[1,2],[2,5],[1,1],[2,1],[3,-3],[1,-1],[6,-1],[2,-1],[3,-3],[-26,-46],[-1,-2],[-5,-3],[-1,-1],[0,-4],[1,-3],[1,-2],[0,-1],[1,-8],[1,-7],[1,-7],[-3,-9],[-15,-28],[-2,-11],[0,-5],[1,-8],[2,-6],[2,-3],[2,4],[2,18],[3,7],[9,-18],[6,-8],[12,-5],[2,2],[-2,6],[-2,4],[-8,10],[-7,19],[2,23],[5,22],[7,18],[5,8],[7,9],[7,5],[5,-4],[1,-3],[0,-6],[1,-1],[1,-1],[4,-4],[3,-5],[10,-6],[10,-16],[5,-6],[12,-5],[14,-12],[5,-6],[13,-27],[9,-8],[4,15],[-6,5],[-5,6],[-4,8],[-4,13],[12,-5],[23,-21],[13,-3],[-6,9],[-16,11],[-12,15],[-49,29],[-6,8],[-1,5],[-1,5],[0,14],[-12,10],[-3,4],[4,11],[-4,12],[-11,20],[-7,7],[-23,7],[-41,-3],[-10,3],[-7,10],[-3,14],[-2,14],[-3,10],[2,5],[4,-5],[5,-3],[10,-5],[-13,18],[-5,3],[-5,3],[-4,8],[-3,9],[-1,8],[109,-85],[32,-21],[29,-20],[3,-4],[3,-5],[3,-5],[12,-4],[5,-8],[10,-18],[11,-14],[4,-2],[-2,21],[3,2],[13,3],[4,3],[-1,5],[-5,6],[-20,6],[-5,6],[-4,11],[2,6],[9,4],[5,4],[2,6],[2,6],[5,8],[5,6],[5,3],[5,-1],[6,-4],[9,-9],[5,-7],[3,-8],[0,-10],[-1,-10],[0,-8],[6,-5],[-4,-16],[8,4],[4,0],[4,-4],[1,-6],[0,-7],[1,-5],[5,-2],[3,-4],[1,-9],[0,-8],[-2,-4],[-2,-3],[1,-25],[2,2],[5,8],[1,2],[1,1],[4,4],[3,4],[2,-1],[2,-3],[7,-6],[0,-11],[-2,-12],[-3,-8],[4,-2],[4,-9],[2,0],[3,4],[1,4],[-1,3],[-2,6],[0,4],[5,13],[1,5],[0,7],[-1,6],[-4,7],[-5,7],[-6,7],[-5,7],[-1,10],[4,11],[-1,2],[-1,1],[-2,7],[-7,5],[-1,6],[0,7],[0,3],[-2,4],[-3,5],[-3,0],[-1,3],[1,9],[5,10],[7,0],[16,-7],[8,-7],[16,-8],[11,-14],[4,-9],[-2,-6],[2,-6],[2,-3],[6,-7],[1,-1],[3,-2],[1,-1],[2,-4],[0,-7],[1,-3],[6,-7],[6,-4],[4,4],[-2,13],[-8,15],[-4,9],[2,10],[6,9],[6,2],[6,-3],[59,-50],[11,-5],[2,-3],[2,-5],[2,-9],[0,-7],[-3,-4],[-6,-3],[-5,-8],[-4,-10],[-5,-8],[-10,-8],[-3,-3],[-2,-6],[-3,-11],[-2,-6],[-10,-20],[8,-14],[-2,-7],[0,-6],[2,-4],[3,-4],[3,11],[-1,15],[-1,13],[6,6],[6,4],[4,10],[4,11],[4,11],[5,8],[6,4],[7,-1],[6,-8],[6,-19],[3,-3],[3,11],[0,10],[-5,32],[0,7],[2,3],[1,5],[2,6],[3,2],[14,1],[4,-1],[4,-2],[8,-10],[8,-1],[4,2],[0,5],[0,5],[1,6],[1,6],[-14,14],[-14,9],[-23,6],[-6,6],[-11,15],[-13,15],[-63,36],[-7,2],[-2,2],[-5,9],[-3,8],[-4,1],[-9,0],[-74,37],[-8,10],[-3,2],[-1,2],[-13,11],[-12,3],[-12,16],[-4,20],[-3,24],[-5,25],[-5,11],[-5,8],[-3,9],[-2,29],[-6,24],[-2,13],[3,30],[10,13],[22,16],[22,14],[15,5],[3,11],[10,2],[20,-5],[43,18],[81,67],[10,18],[2,24],[-3,21],[-2,15],[-4,16],[-1,5],[-12,1],[-19,-2],[-59,-1],[-36,-14],[-25,-3],[-15,-7],[-10,-11],[-10,-11],[-10,5],[-16,-4],[-6,-4],[-12,-13],[-6,-3],[-8,1],[-7,3],[-7,7],[-6,9],[-7,18],[-5,7],[-6,3],[-7,2],[-7,5],[-7,8],[-4,10],[-2,9],[-2,12],[3,22],[0,31],[2,15],[2,8],[3,7],[1,11],[-1,13],[-1,13],[2,21],[0,16],[2,10],[2,9],[7,8],[9,9],[6,8],[3,3],[4,-2],[0,-7],[-4,-8],[-4,-7],[3,-7],[5,-5],[-1,-9],[-5,-6],[3,-6],[8,2],[15,-2],[16,19],[14,10],[5,19],[2,10],[3,10],[2,21],[-5,14],[-6,5],[-2,0],[-2,-2],[-1,-1],[-2,-1],[-2,1],[-3,5],[-1,2],[-8,3],[-4,1],[-3,-2],[-4,-6],[-5,-9],[-3,-7],[-7,-5],[-1,7],[5,12],[8,8],[-3,25],[-4,17],[-15,12],[-22,-1],[-3,2],[0,6],[3,5],[13,7],[26,6],[21,-1],[11,4],[9,-1],[3,-15],[19,-32],[13,-18],[14,-5],[11,1],[16,29],[8,10],[11,3],[14,2],[6,8],[3,8],[3,9],[5,9],[9,18],[6,11],[4,8],[4,7],[-3,16],[-2,11],[-3,10],[-1,12],[1,13],[4,10],[6,7],[21,12],[10,11],[5,3],[4,4],[3,2],[3,2],[6,-2],[6,-9],[8,-21],[5,-11],[3,-9],[5,-14],[6,-10],[14,-35],[11,-17],[13,-9],[14,2],[19,17],[16,0],[12,6],[12,10],[12,11],[6,8],[3,10],[3,10],[3,6],[4,0],[6,-5],[20,-35],[4,-6],[8,-8]],[[30936,19296],[0,-159],[-1,-158],[0,-159],[-1,-159],[0,-158],[-1,-159],[0,-159],[0,-159]],[[30933,18026],[-17,9],[-3,-1],[2,-6],[6,-5],[11,-6]],[[27567,30472],[-5,20],[2,19],[8,10],[8,-12],[1,-7],[1,-10],[0,-12],[0,-8],[-3,-3],[-5,-2],[-5,1],[-2,4]],[[28114,30566],[2,-3],[7,-17],[-4,0],[-3,0],[-3,-2],[-2,-3],[-3,4],[-1,-4],[-8,9],[-6,3],[-6,-1],[-10,-9],[-6,-3],[-4,-2],[-6,-8],[-2,1],[-1,7],[6,13],[7,11],[3,2],[6,3],[3,3],[1,3],[0,6],[1,5],[2,2],[4,-1],[6,-3],[6,-5],[2,-9],[1,-2],[3,0],[5,0]],[[19658,34425],[3,-7],[-2,-8],[-5,-7],[-8,-3],[-5,-6],[-3,-2],[-6,0],[-2,-1],[-3,-2],[-3,-4],[-2,-4],[-2,-3],[-3,-2],[-3,0],[-2,-1],[-4,-3],[-2,-6],[-3,-4],[-3,-1],[-3,3],[-1,5],[1,5],[1,5],[6,42],[3,9],[5,9],[5,6],[3,-2],[16,-14],[2,-1],[6,-6],[3,-1],[2,1],[3,3],[3,1],[3,-1]],[[20705,34797],[-3,4],[2,1],[0,-1],[1,-2],[0,-2]],[[27805,34866],[3,-2],[0,-3],[-2,-1],[-3,0],[2,6]],[[27751,34915],[0,-2],[1,0],[0,-2],[0,-1],[-2,-1],[-2,0],[3,6]],[[31320,17401],[5,-4],[3,-4],[1,-5],[-3,-8],[2,0],[2,-3],[2,-1],[-6,-10],[-9,4],[-18,14],[-4,2],[-3,4],[-1,6],[-2,6],[-4,3],[-8,-3],[-4,2],[4,9],[5,4],[7,1],[21,-6],[7,-5],[3,-6]],[[31362,17409],[0,-8],[0,-11],[2,-11],[3,-9],[1,-7],[-1,-4],[-3,-2],[-4,-1],[-3,1],[-3,4],[-4,9],[-2,3],[-5,4],[-2,3],[0,7],[1,7],[1,5],[2,5],[5,10],[5,6],[6,1],[5,-4],[0,-4],[-1,-2],[-1,-1],[-2,-1]],[[31249,17412],[1,5],[5,3],[3,-6],[-2,-7],[1,-8],[-9,7],[-7,-6],[1,-10],[-4,-19],[-7,-5],[-8,8],[-4,-4],[0,-10],[-3,-6],[-5,3],[-2,5],[1,9],[3,9],[0,9],[-5,0],[-4,-2],[-3,1],[-3,-4],[-3,-7],[1,-6],[-5,2],[-6,5],[3,5],[-1,3],[-2,6],[-4,3],[-2,-6],[-5,-5],[-6,-3],[-2,-5],[0,-10],[-6,5],[-4,6],[-5,-2],[-6,-1],[-7,6],[0,7],[-2,7],[-1,8],[4,5],[6,1],[8,2],[6,4],[7,3],[4,-5],[7,-3],[7,-1],[7,1],[6,1],[5,5],[4,-4],[11,-2],[9,-9],[7,2],[-3,10],[-4,6],[-1,5],[6,-3],[4,-3],[8,3],[3,-2],[2,-3],[1,-3]],[[31324,17441],[5,6],[7,3],[7,-3],[2,-10],[-3,-3],[-3,-1],[-4,1],[-3,3],[-2,-10],[-5,-2],[-3,5],[2,11]],[[31284,17453],[-2,2],[-1,2],[-2,1],[-2,-1],[-6,-10],[-2,-2],[-4,1],[-2,4],[-1,4],[-3,3],[-3,1],[-10,-1],[-5,2],[-6,3],[-4,5],[-4,7],[0,4],[9,2],[3,27],[9,4],[4,-3],[7,-8],[5,-2],[4,-5],[2,-8],[2,-6],[4,5],[0,5],[1,25],[-3,6],[-3,4],[-3,4],[-1,9],[2,8],[3,5],[17,8],[3,-1],[-2,-6],[0,-2],[0,-2],[-1,-1],[-1,0],[4,-4],[1,-4],[-1,-10],[1,-5],[5,-7],[1,-5],[-4,-5],[-4,-6],[-2,-9],[-1,-11],[4,-3],[22,-3],[0,-2],[-2,-9],[-1,-4],[1,-3],[3,-2],[3,-2],[0,-7],[-3,-8],[-7,-3],[-8,-2],[-6,-3],[0,14],[-1,6],[-3,2],[-6,2]],[[31210,17603],[7,-9],[6,-12],[3,-12],[-3,-11],[2,-4],[0,-4],[-7,-1],[-13,-13],[-15,-6],[-5,-1],[-2,3],[1,6],[1,6],[2,4],[3,2],[4,1],[2,3],[2,4],[1,4],[0,8],[-2,5],[-1,3],[-1,4],[-1,11],[0,5],[3,4],[1,2],[2,2],[2,0],[2,0],[1,0],[2,-1],[3,-3]],[[30635,17694],[11,-7],[5,-5],[4,-7],[1,-7],[-5,1],[-9,8],[-5,-2],[1,-5],[9,-10],[-5,-3],[-4,-1],[-28,0],[2,6],[2,5],[1,4],[3,2],[-2,8],[-6,20],[25,-7]],[[30551,17717],[12,10],[7,3],[0,-9],[-9,-16],[-1,-6],[0,-14],[-1,-4],[-6,-5],[-2,8],[-3,12],[-4,5],[1,1],[1,1],[0,1],[2,1],[0,4],[-6,4],[-6,0],[-5,2],[-6,10],[4,0],[7,4],[4,0],[3,-2],[6,-8],[2,-2]],[[31429,17737],[7,-6],[-3,-12],[-8,-12],[-8,-6],[-11,-1],[-34,5],[3,11],[-2,5],[-3,4],[-2,8],[1,7],[4,7],[5,7],[3,4],[10,4],[32,-1],[3,-1],[2,-3],[2,-6],[0,-3],[1,-5],[-1,-4],[-1,-2]],[[31548,17788],[1,-9],[-4,-5],[-10,-4],[-3,-7],[-6,-18],[-3,-4],[-5,-2],[-10,-8],[-5,-2],[-2,2],[-1,4],[-1,3],[-5,-6],[-3,1],[-2,4],[-1,4],[-1,8],[1,11],[1,10],[2,6],[3,5],[15,9],[6,8],[3,3],[3,2],[4,-2],[7,-8],[3,-3],[3,-1],[7,1],[3,-2]],[[31425,17884],[6,-9],[5,-14],[6,-30],[-12,4],[-21,26],[-18,9],[-12,11],[-9,4],[-1,3],[0,4],[1,5],[6,6],[6,-1],[13,-7],[23,-6],[7,-5]],[[31111,17526],[-5,-8],[-3,-5],[-1,-7],[9,1],[4,-2],[0,-7],[-2,-1],[-12,-11],[-7,-10],[-3,-2],[-5,0],[-3,2],[-4,10],[-6,8],[-2,5],[-2,7],[0,3],[2,6],[0,3],[-1,4],[-2,5],[-1,1],[2,12],[-1,5],[-3,1],[-3,-1],[-10,-11],[-7,-2],[-9,0],[-6,5],[2,12],[8,18],[2,10],[-1,10],[-5,5],[-17,8],[-3,5],[-3,11],[-8,-3],[-12,-14],[-9,1],[-12,7],[-11,11],[-4,12],[0,12],[-1,5],[-1,1],[-3,0],[-1,-1],[-1,-4],[-2,-3],[-2,0],[-1,3],[0,6],[-2,5],[-4,2],[0,-9],[1,-8],[1,-8],[2,-7],[-22,3],[-8,-5],[-5,1],[-12,21],[-8,4],[8,-17],[0,-8],[-8,1],[7,-12],[2,-6],[-3,-3],[-5,-1],[-10,-5],[-5,-1],[-4,3],[-4,6],[-5,8],[-1,5],[-2,6],[-7,5],[-4,5],[-5,9],[-1,5],[2,8],[2,3],[15,10],[5,1],[16,-1],[15,4],[6,0],[-5,1],[-11,11],[0,4],[14,12],[-8,0],[-45,-29],[-4,-1],[-2,4],[1,5],[11,16],[3,4],[3,1],[2,3],[1,6],[-1,8],[1,7],[2,6],[9,14],[-1,3],[-2,4],[-1,1],[2,7],[2,5],[3,3],[4,2],[1,2],[5,11],[2,3],[-6,1],[-22,-21],[-13,-6],[-3,-2],[-1,-11],[-1,-4],[-2,-2],[-3,0],[-14,2],[-6,5],[-9,18],[-2,4],[-3,3],[-2,3],[-2,6],[0,8],[1,13],[-1,7],[-8,-13],[2,-15],[6,-15],[4,-14],[-7,-2],[-9,3],[-8,7],[-5,9],[-2,6],[-2,8],[-1,8],[-1,8],[-1,5],[-2,3],[-1,4],[2,11],[-3,-2],[-4,-5],[-2,-2],[-13,1],[-9,-7],[-17,-3],[-7,-3],[5,-3],[10,5],[5,0],[4,-3],[13,-1],[5,-2],[-3,-3],[-1,-1],[3,-9],[5,-14],[2,-9],[-8,4],[-8,-2],[-15,-11],[-9,-1],[-4,0],[-2,3],[-2,6],[-4,1],[-4,-2],[-3,-2],[0,-5],[2,-3],[3,-5],[2,-5],[1,-3],[0,-5],[0,-4],[-1,-5],[-2,-6],[4,1],[5,8],[3,3],[3,0],[4,-1],[3,-3],[3,-4],[3,-4],[1,-3],[2,-2],[4,-3],[4,0],[4,3],[3,1],[4,-4],[-2,-3],[-5,-4],[-3,-1],[0,-4],[3,-2],[1,-2],[0,-4],[-2,-4],[5,-2],[8,-1],[6,-3],[-1,-8],[-10,-11],[-5,-7],[-1,-9],[3,-1],[8,1],[3,0],[1,-3],[1,-4],[2,-4],[2,-1],[7,7],[3,1],[8,-1],[8,-3],[-10,-12],[-1,-4],[1,-5],[5,-4],[1,-6],[-3,-12],[-7,6],[-11,21],[-6,0],[-14,-13],[-6,3],[-2,4],[-3,3],[-2,4],[-1,9],[1,21],[-1,5],[-4,12],[-3,-1],[-3,-9],[-1,-12],[-1,-12],[-1,-14],[-2,-11],[-4,-6],[-5,4],[-2,11],[1,24],[-3,14],[-16,0],[-4,9],[5,8],[30,12],[-6,4],[-19,-4],[0,4],[1,1],[5,7],[-8,2],[-4,-6],[-4,-8],[-6,-4],[-18,0],[-6,4],[5,3],[2,4],[-1,5],[-3,6],[-3,1],[-9,-1],[-5,2],[-2,3],[-3,4],[-3,3],[-5,2],[-17,0],[3,7],[4,1],[5,0],[4,0],[17,10],[5,2],[23,0],[-7,5],[-6,1],[-15,-2],[-1,3],[1,5],[3,9],[5,4],[26,14],[4,4],[8,11],[1,3],[-2,2],[-12,-2],[-5,-3],[-10,-14],[-5,-3],[-4,0],[-3,2],[-3,0],[-3,-4],[-1,-4],[-1,-3],[-1,-4],[-3,-3],[-7,-4],[-37,-9],[-5,2],[1,11],[-4,2],[-9,2],[-4,4],[14,1],[6,3],[5,8],[-16,1],[-5,3],[3,6],[16,10],[-7,3],[-26,1],[-6,-2],[-5,-3],[-5,4],[-3,6],[0,3],[2,3],[10,18],[3,-7],[3,-1],[2,4],[3,19],[3,5],[14,9],[18,-1],[13,7],[34,1],[10,6],[8,0],[3,-14],[2,-21],[2,-15],[-6,-17],[12,6],[1,14],[-3,20],[2,21],[-2,9],[5,3],[14,1],[9,7],[2,1],[4,-4],[0,-5],[-3,-4],[-3,-4],[5,-4],[3,1],[4,4],[4,3],[4,-1],[8,-5],[5,-2],[-3,8],[-12,13],[17,14],[10,4],[9,-3],[11,-13],[4,-2],[3,2],[0,5],[-4,5],[-3,3],[8,-1],[16,3],[8,-2],[10,-6],[3,-1],[3,2],[4,8],[3,2],[50,1],[28,19],[14,4],[30,0],[3,1],[7,6],[3,1],[4,0],[20,-6],[7,-6],[3,-3],[9,-16],[8,-10],[3,-7],[2,-11],[0,-10],[-2,-10],[-4,-6],[-7,-2],[-6,6],[-5,8],[-5,4],[-3,0],[0,-4],[1,-7],[2,-9],[-14,-14],[-8,-6],[-6,2],[-4,8],[-8,11],[-8,7],[-5,-8],[1,-4],[3,-3],[4,-2],[3,-3],[2,-6],[1,-8],[1,-7],[-3,-4],[-3,-1],[-7,-5],[-4,-2],[-5,1],[-12,7],[-17,5],[-11,7],[-4,1],[-6,3],[-18,21],[-20,15],[-8,1],[-3,6],[-7,10],[-6,3],[-3,-15],[1,-9],[3,-2],[4,3],[3,0],[5,-3],[2,-3],[1,-5],[2,-5],[5,-9],[5,-6],[45,-32],[7,-2],[23,0],[20,-4],[6,-6],[6,-4],[42,7],[8,-2],[7,-17],[17,-5],[7,-5],[-4,0],[-12,-4],[25,-13],[6,-1],[3,-2],[1,-5],[-1,-7],[-2,-3],[-3,-2],[-4,0],[-10,7],[-2,-1],[-3,-3],[-3,-1],[-35,-6],[-6,4],[-4,1],[-1,-3],[-2,-5],[-3,-3],[-3,-2],[-26,0],[-7,4],[-3,6],[-6,19],[-3,3],[-11,2],[-6,-2],[-6,-8],[12,4],[6,-1],[2,-9],[-1,-3],[-1,-3],[0,-3],[6,-2],[3,-3],[1,-4],[-2,-4],[5,-5],[7,-1],[13,2],[-3,-6],[-4,-4],[-3,-4],[-2,-6],[6,0],[19,16],[6,2],[12,2],[6,-2],[5,-2],[1,-2],[2,-3],[2,-2],[3,-1],[7,2],[3,-1],[3,-5],[1,-6],[-1,-5],[0,-5],[0,-4],[3,-8],[2,2],[4,5],[4,5],[3,0],[3,0],[2,-3],[5,-8],[2,0],[3,1],[3,2],[12,-2],[6,-5],[0,-8],[-1,-4],[0,-4],[0,-4],[0,-2],[-2,-4],[-4,-4],[-1,-4],[5,-5],[22,5],[6,-4],[-2,-9],[-9,-15],[-1,-11],[3,-4],[5,-4],[6,-8],[1,-6],[1,-4],[1,-4],[3,-4],[5,-2],[8,1],[4,-4],[-4,-2],[-2,-5],[-1,-6],[-2,-7]],[[31143,17753],[7,7],[33,-2],[-5,7],[-22,8],[-7,5],[-6,14],[-4,6],[-1,-2],[-1,-8],[-2,-6],[-3,0],[-2,8],[-2,0],[-5,-17],[-8,-8],[-27,-5],[-8,2],[-7,6],[-6,14],[2,4],[3,3],[7,5],[-9,9],[-3,3],[-2,5],[-6,25],[-1,5],[1,3],[1,8],[2,4],[2,5],[1,4],[0,4],[-1,3],[-1,3],[-1,24],[-3,12],[-4,-1],[-7,-6],[-10,-3],[-11,0],[-8,2],[-4,9],[-3,13],[-1,14],[4,6],[25,-2],[8,2],[0,1],[1,2],[2,3],[1,1],[75,2],[38,-5],[22,-13],[7,2],[6,4],[8,3],[52,-1],[45,-4],[22,-12],[11,-11],[9,-16],[10,-21],[4,-9],[6,-7],[4,-9],[3,-13],[-1,-6],[1,-11],[0,-6],[-2,-7],[-5,-13],[-1,-7],[-2,-7],[-38,-60],[-13,-9],[-22,2],[-17,7],[-6,6],[-3,4],[-2,2],[-1,3],[-1,7],[2,8],[6,8],[2,7],[-6,20],[-16,6],[-18,-3],[-12,-7],[-3,-7],[-2,-7],[-4,-19],[-1,-6],[1,-2],[-1,-2],[-5,-2],[-3,0],[-10,4],[-7,1],[-18,-5],[-6,2],[-17,10]],[[30473,17849],[1,-8],[2,-2],[3,-2],[2,-6],[-12,-8],[-8,-1],[-3,7],[-2,9],[-6,8],[-6,4],[-5,1],[6,-16],[-5,0],[-6,3],[-4,-2],[1,-13],[5,-7],[12,-4],[4,-10],[-5,-4],[-11,-2],[-5,-2],[-4,-5],[-5,-12],[-4,-3],[2,15],[-2,10],[-5,6],[-7,1],[-3,-3],[7,-20],[-1,-9],[-6,-3],[-3,9],[-2,13],[-1,11],[2,11],[3,8],[5,5],[6,3],[0,4],[-10,5],[-4,4],[-4,18],[-4,6],[-4,1],[-3,-6],[2,0],[2,-2],[3,-6],[-3,-2],[-5,-1],[-3,0],[-1,2],[-2,1],[-1,0],[0,-2],[0,-5],[0,-1],[-6,-12],[-3,-4],[-6,0],[0,-8],[-5,2],[-5,7],[-3,7],[4,8],[3,10],[-2,9],[-7,1],[-3,-3],[-3,-4],[-2,-4],[-5,-1],[-1,-2],[0,-3],[-1,-2],[-2,-1],[-3,1],[-1,3],[0,3],[-1,1],[-2,1],[-2,4],[-3,3],[-4,0],[-3,-3],[-4,-7],[-4,-2],[-5,1],[-3,3],[-5,8],[-6,7],[-3,1],[-5,0],[0,4],[5,3],[0,5],[-2,6],[1,7],[6,4],[12,-3],[3,6],[-9,2],[-11,6],[-6,8],[7,9],[5,2],[12,-2],[6,0],[4,4],[3,4],[4,3],[4,-2],[-4,-14],[0,-5],[5,-2],[7,2],[3,-1],[4,-5],[0,14],[0,4],[0,5],[0,2],[2,1],[2,-2],[2,-3],[1,-1],[2,-1],[4,-6],[3,-1],[2,0],[3,-2],[2,-2],[2,-4],[4,5],[4,0],[9,-5],[23,0],[0,4],[-11,2],[-4,4],[2,6],[4,5],[12,4],[17,16],[27,1],[12,3],[10,-4],[0,-5],[-36,-18],[-14,-2],[-3,-5],[-1,-22],[-4,-5],[-15,6],[-6,0],[0,-10],[-18,2],[-8,3],[-8,7],[-3,-13],[1,-5],[3,-2],[5,-1],[13,-7],[24,0],[2,1],[5,6],[3,1],[6,0],[3,-1],[3,-3],[-2,-1],[-3,-3],[-2,0],[5,-6],[8,-4],[16,-3],[3,2],[6,9],[3,2],[15,1],[4,-1],[5,-11],[-5,-5],[-9,-3],[-4,-4],[2,-6],[9,1],[2,-3]],[[30582,17900],[-2,7],[-3,2],[-4,1],[-4,4],[0,12],[10,4],[20,-2],[0,4],[-18,10],[-5,7],[-1,9],[4,7],[6,3],[9,2],[3,3],[4,1],[3,-3],[5,-14],[6,-4],[1,-8],[1,-11],[1,-10],[3,6],[3,5],[4,0],[4,-5],[3,-2],[3,2],[1,4],[-1,5],[-9,10],[3,3],[3,0],[3,-1],[3,-2],[-4,8],[-2,3],[-3,1],[-8,1],[-4,2],[-2,5],[4,7],[9,2],[16,-1],[43,-16],[2,-3],[0,-6],[-4,-12],[-2,-7],[0,-3],[4,-2],[4,1],[2,3],[8,17],[5,5],[6,3],[8,0],[7,-4],[12,-10],[7,-3],[19,-2],[17,-13],[2,-1],[-12,-8],[-14,-1],[-27,9],[5,-9],[2,-5],[-2,-2],[-8,-2],[-17,-7],[-4,0],[-3,3],[-6,8],[-3,3],[-4,-1],[4,-11],[-3,-7],[-8,-2],[-6,0],[-12,4],[-3,0],[-3,-2],[-5,-8],[-2,-2],[-39,-7],[-5,3],[-6,8],[-5,-10],[-7,-3],[-16,0],[0,5],[3,3],[1,5],[1,5],[-1,7]],[[30438,17989],[3,-2],[3,-6],[1,-6],[-1,-2],[-15,-4],[-15,0],[-20,-11],[-21,-2],[-6,2],[-4,7],[1,4],[-1,2],[-6,2],[-1,-1],[-1,-4],[-1,-3],[-2,0],[0,1],[-4,7],[0,4],[10,8],[6,4],[4,-2],[5,-4],[5,4],[4,7],[5,3],[18,0],[33,-8]],[[30282,17940],[-2,1],[-2,3],[-2,1],[-3,0],[-2,-3],[-2,-7],[-1,-3],[-8,-4],[-15,9],[-10,0],[3,7],[5,5],[5,3],[4,0],[-4,8],[-4,2],[-17,-9],[-3,-1],[-3,1],[-1,3],[1,4],[-2,10],[1,4],[-1,2],[-4,1],[-10,-4],[-3,3],[-2,2],[-1,-3],[0,-6],[-2,-3],[-2,-2],[-3,1],[1,-11],[-1,-12],[-3,-10],[-4,-4],[-2,-1],[-1,-2],[-2,0],[-2,3],[-1,5],[1,2],[1,2],[1,3],[4,10],[1,6],[-5,1],[-9,-17],[-5,-8],[-3,2],[-1,15],[-3,7],[-4,5],[-5,8],[15,12],[-3,14],[3,4],[6,-1],[4,1],[3,2],[3,-2],[7,-6],[3,-1],[4,1],[26,-4],[3,6],[3,3],[5,-1],[2,-2],[2,-2],[1,-5],[0,-7],[6,0],[13,-12],[5,2],[4,5],[5,4],[6,2],[3,-1],[2,-8],[3,-4],[4,1],[4,3],[0,-8],[-2,-6],[-2,-4],[-1,-3],[2,-3],[9,-2],[4,-2],[-4,-5],[-5,-1],[-11,1]],[[30014,18074],[5,5],[3,-7],[0,-10],[-2,-8],[-3,-6],[-4,-3],[-5,-2],[-4,0],[-4,1],[-2,4],[-1,5],[2,6],[3,4],[1,3],[1,5],[-2,5],[-8,14],[-4,10],[-1,5],[-3,2],[-4,-3],[-1,-6],[1,-5],[-1,-3],[-4,1],[-2,2],[-3,7],[-1,8],[3,5],[6,3],[9,2],[3,-1],[2,-2],[2,-4],[6,-14],[4,-6],[3,-4],[3,-5],[2,-8]],[[29905,18294],[8,1],[3,-2],[1,-8],[-2,-11],[-6,3],[-8,6],[-7,-2],[3,-3],[2,-5],[2,-6],[-2,-2],[-8,0],[-2,1],[-2,3],[-1,3],[-1,1],[-6,-6],[-5,-25],[-5,-5],[-2,3],[-7,17],[-8,18],[-3,12],[12,-4],[-1,11],[15,-2],[6,3],[-2,11],[3,3],[2,1],[3,-1],[2,-3],[4,-2],[7,-8],[5,-2]],[[30448,18379],[7,-1],[13,3],[7,-2],[1,-2],[3,-8],[2,-3],[3,-1],[6,-1],[2,-1],[3,-12],[-4,-7],[-4,-5],[-2,-7],[-5,-2],[-19,3],[-6,3],[-6,6],[-14,5],[-7,3],[-6,7],[-5,9],[-4,10],[-3,11],[9,15],[10,-3],[19,-20]],[[29917,18443],[5,-6],[7,-6],[4,-7],[0,-9],[3,-1],[2,-2],[4,-5],[0,-4],[-8,1],[-3,-2],[-2,-7],[0,-7],[1,-8],[0,-7],[-4,-3],[-5,1],[-2,2],[-2,-2],[-1,-8],[1,-14],[-1,-8],[-5,-3],[-8,4],[-8,16],[-6,-4],[-3,-6],[-2,-5],[-3,-4],[-5,-1],[-4,1],[-4,1],[-8,6],[0,4],[2,3],[2,2],[2,8],[-9,7],[6,7],[14,12],[6,1],[14,1],[7,5],[4,11],[-9,1],[-4,-1],[-4,-4],[0,11],[9,4],[10,2],[7,3],[-13,4],[-6,0],[-1,0],[-5,4],[-2,3],[8,6],[7,9],[7,4],[5,-10]],[[29672,18447],[-1,-3],[0,-9],[-1,-4],[2,0],[4,-3],[2,-1],[-6,-12],[-7,2],[-8,7],[-6,-1],[1,-7],[-8,-1],[-9,3],[-3,5],[-2,6],[0,5],[0,11],[-2,6],[-4,1],[-4,-3],[-1,-4],[-4,-2],[-9,-1],[-10,2],[-6,3],[4,5],[9,4],[4,4],[6,11],[3,4],[6,1],[24,-3],[8,-8],[-1,-18],[5,1],[6,7],[6,3],[2,-11]],[[30102,18443],[-1,21],[-4,19],[-2,17],[7,17],[5,4],[9,4],[7,0],[4,-10],[1,-6],[1,-6],[3,-5],[2,-2],[4,2],[1,4],[0,5],[1,6],[2,5],[1,4],[1,2],[5,1],[2,-3],[1,-7],[0,-7],[-1,-6],[2,-2],[3,-12],[5,-24],[6,-11],[5,13],[1,22],[-6,16],[6,4],[11,-4],[10,-9],[5,-11],[2,-8],[1,-16],[2,-7],[1,-7],[-3,-6],[-3,-6],[-2,-7],[6,3],[4,-6],[4,-10],[2,-11],[-1,-7],[0,-4],[1,-5],[3,-6],[3,0],[0,5],[-2,7],[1,8],[7,31],[3,7],[4,0],[0,-11],[-2,-27],[1,-2],[3,-1],[4,2],[1,5],[0,24],[2,12],[5,7],[6,4],[6,0],[11,-13],[4,-5],[1,-4],[-1,-13],[-1,-15],[-9,-20],[-3,-12],[5,1],[3,5],[4,13],[4,3],[2,-5],[1,-9],[-2,-8],[2,-6],[0,-6],[-1,-6],[-4,-2],[-4,-1],[0,-2],[5,-5],[5,-9],[0,-4],[-5,-5],[-3,-3],[-4,-2],[-4,-2],[-4,1],[2,-4],[2,-4],[2,-6],[-1,-4],[-3,-5],[-2,1],[-2,4],[-3,2],[-5,2],[-11,9],[-5,1],[2,-7],[2,-4],[7,-7],[8,-2],[1,-2],[0,-4],[0,-5],[-1,-4],[-2,-2],[-1,-2],[-1,-4],[-1,-4],[-2,-2],[-10,0],[-1,3],[-5,15],[-2,13],[-2,-7],[-2,-12],[0,-4],[-4,-2],[-4,4],[-5,10],[-16,17],[-10,2],[-4,3],[-3,7],[3,7],[3,0],[4,-2],[4,-1],[2,2],[2,5],[2,3],[4,2],[2,-1],[5,-4],[2,1],[1,4],[-1,2],[-1,2],[-1,2],[1,6],[6,7],[2,5],[-3,6],[-2,2],[-2,0],[-2,-4],[-4,-10],[-1,-4],[-2,-1],[-2,-1],[-6,-7],[-4,4],[-2,8],[-2,7],[0,3],[1,3],[1,4],[-1,4],[-2,1],[-1,-1],[-1,-4],[-1,-4],[-3,-15],[-7,-1],[-9,8],[-6,11],[-3,17],[4,9],[9,4],[7,6],[-4,3],[-7,-2],[-2,5],[1,3],[1,4],[1,3],[1,0],[-2,8],[-1,2],[-1,-4],[-4,-11],[-8,-1],[-8,1],[-5,-3],[1,-6],[5,-5],[2,-7],[-2,-3],[-4,-2],[-2,-5],[3,-14],[-3,-3],[-7,-4],[-2,-5],[0,-23],[-9,9],[-5,7],[-1,8],[1,10],[4,6],[5,5],[3,7],[-11,-7],[-3,-1],[-2,-3],[-2,-17],[-2,-4],[-9,3],[-3,6],[-2,9],[-5,13],[-3,11],[3,10],[5,10],[5,7],[11,8],[3,4],[2,7],[-1,5],[-4,1],[-5,-1]],[[29995,18370],[-7,4],[-19,25],[5,3],[9,2],[5,3],[-5,4],[-6,1],[-12,-1],[3,10],[6,3],[14,-1],[-3,3],[-7,4],[-2,3],[-2,5],[-1,13],[-2,5],[-4,-1],[-5,-8],[-9,-18],[-5,-1],[-5,8],[-5,11],[-2,9],[7,31],[0,5],[-7,3],[-3,7],[-1,9],[-4,12],[0,9],[7,2],[29,-5],[3,-3],[2,-7],[1,-7],[2,-6],[2,-4],[4,-2],[4,0],[2,4],[0,5],[-3,5],[-4,7],[3,0],[3,-1],[3,-3],[2,-4],[1,6],[0,5],[0,5],[2,6],[3,4],[3,3],[2,6],[-2,9],[4,1],[3,-1],[7,-4],[-2,6],[-2,4],[-3,4],[-3,3],[14,7],[11,-5],[11,-15],[10,-20],[-3,-9],[-3,-13],[0,-10],[6,3],[0,3],[6,18],[3,18],[1,4],[3,0],[5,-6],[2,5],[4,1],[4,-1],[9,-8],[8,-3],[4,-5],[-17,-25],[-6,-6],[-12,-6],[-4,-6],[2,-4],[7,1],[12,11],[5,0],[2,-13],[-3,-14],[-5,-4],[-7,-2],[-6,-6],[3,0],[3,-1],[3,-1],[2,-2],[-2,-13],[-1,-4],[6,0],[8,6],[7,2],[3,-10],[-2,-8],[-15,-26],[-14,-10],[-12,9],[-17,37],[-11,17],[-5,11],[1,5],[1,3],[0,5],[-2,5],[-3,3],[-3,-2],[-1,-5],[0,-6],[0,-7],[1,-8],[1,-4],[2,-4],[1,-5],[4,-21],[1,-5],[6,-8],[16,-18],[4,-10],[3,-10],[4,-9],[11,-6],[4,-7],[0,-9],[-5,-10],[-3,3],[-13,2],[-5,3],[-1,-8],[-2,-5],[-3,-4],[-3,-3],[2,-3],[9,-5],[-6,-7],[-2,-1],[0,-4],[2,-2],[6,-6],[-5,-4],[-5,2],[-6,3],[-5,2],[-12,-1],[-6,1],[-5,5],[7,12],[7,30],[9,10],[-7,10],[-8,5],[-16,1]],[[30429,18720],[-2,-19],[-3,-13],[1,-15],[7,-42],[6,-24],[-3,-14],[4,-27],[-9,-9],[2,-11],[5,-9],[5,-4],[3,-5],[10,-25],[7,-17],[-2,-13],[-12,-13],[-15,-6],[-15,16],[-11,18],[-21,33],[-11,5],[-6,-7],[0,-10],[10,-20],[11,-18],[7,-19],[1,-8],[0,-6],[-2,-4],[-3,-3],[10,-12],[3,-8],[1,-14],[-1,-6],[-2,-4],[-1,-6],[0,-7],[1,-3],[3,-4],[3,-3],[3,-1],[-8,-4],[-15,4],[-25,16],[-38,44],[4,10],[-6,12],[-10,14],[-5,15],[-1,17],[-3,30],[0,10],[3,6],[6,0],[-8,18],[-2,10],[6,5],[6,3],[-7,10],[8,2],[9,2],[9,3],[4,4],[16,-11],[13,-4],[10,-14],[8,5],[1,21],[-8,9],[-19,16],[-2,24],[1,4],[1,2],[0,3],[-1,4],[-1,2],[-1,4],[-1,5],[0,3],[4,6],[10,3],[10,15],[5,4],[12,17],[5,17],[0,12],[3,9],[7,2],[7,-2],[5,-3],[2,-6],[2,-21]],[[29493,18803],[1,-5],[3,-2],[22,-10],[7,-5],[5,-9],[-4,-8],[-4,-2],[-11,2],[-7,-1],[-1,-4],[0,-6],[-1,-9],[-4,-5],[-7,-4],[-6,-1],[-2,4],[1,9],[3,5],[3,4],[2,8],[-14,-1],[-3,1],[-2,7],[3,3],[4,2],[3,0],[6,7],[-3,14],[-4,14],[1,6],[3,-1],[3,-3],[2,-5],[1,-5]],[[29613,18837],[-18,-13],[-9,-9],[-5,-14],[3,-2],[2,1],[1,3],[3,2],[2,-2],[4,-9],[3,-1],[2,-4],[12,-21],[-2,-6],[-4,-3],[-8,1],[-3,-2],[-5,-11],[-3,-3],[-7,2],[-4,9],[-2,13],[-4,12],[-3,-18],[-2,-3],[-5,1],[-4,10],[-2,2],[-14,4],[-3,4],[-8,15],[-5,6],[-16,10],[-4,2],[0,2],[-5,9],[-1,1],[0,7],[1,2],[5,-1],[4,-3],[21,-24],[3,-1],[7,1],[4,-1],[3,-2],[5,-6],[5,-5],[5,-1],[3,6],[-8,6],[-3,4],[-4,6],[5,4],[6,-1],[6,-2],[6,-1],[-3,7],[-14,11],[0,19],[1,4],[4,-1],[3,-3],[3,-7],[3,-2],[4,1],[5,6],[2,2],[16,0],[4,-1],[12,-8],[0,-4]],[[29853,18445],[-4,-14],[-9,3],[-9,11],[-7,11],[2,5],[1,7],[-1,6],[-3,2],[-2,-2],[-2,-5],[-1,-5],[-1,-4],[-6,-11],[-4,-4],[-3,-2],[-1,-1],[0,-3],[-1,-3],[0,-3],[1,-4],[-2,0],[-2,1],[-1,1],[-17,4],[-2,-3],[-6,-17],[-7,-4],[-16,7],[-8,1],[9,4],[3,5],[2,7],[-2,5],[-3,-2],[-4,-4],[-3,-3],[-1,2],[-3,5],[-1,1],[-1,0],[-4,-3],[-8,-3],[-3,0],[-4,2],[-5,11],[7,6],[19,4],[30,-6],[9,6],[-24,14],[-1,6],[7,4],[27,-8],[-3,8],[-10,7],[-4,5],[4,1],[3,2],[3,4],[3,5],[-18,10],[-3,3],[3,4],[16,12],[8,15],[3,5],[6,4],[12,5],[5,4],[4,7],[-26,-10],[-8,2],[7,7],[3,5],[2,9],[-6,-2],[-11,-10],[-6,-1],[7,17],[-1,7],[-4,1],[-4,-2],[-8,-12],[-15,-15],[-6,-4],[-6,3],[-4,6],[-2,4],[-12,-13],[-3,7],[-1,22],[-5,10],[-5,-3],[-3,-11],[-1,-15],[-1,-11],[-7,-21],[-1,-14],[3,-10],[13,-13],[3,-8],[-2,-7],[-5,-11],[-6,-9],[-4,-3],[-2,1],[-1,3],[-2,6],[-2,4],[-2,1],[-2,0],[-2,1],[-13,11],[-4,1],[-19,4],[-10,6],[-8,11],[4,2],[8,3],[3,3],[5,5],[1,4],[-1,4],[1,7],[3,3],[3,1],[1,2],[-3,6],[-6,4],[-3,-1],[-2,1],[-1,10],[-1,7],[-5,4],[-1,6],[2,6],[5,3],[4,1],[2,2],[3,10],[2,7],[-2,7],[-3,6],[-3,4],[-4,3],[-4,1],[0,5],[14,9],[4,6],[-5,9],[-3,0],[-8,-7],[-3,-1],[-14,1],[-47,-23],[-16,-2],[7,9],[13,11],[9,12],[-3,12],[0,9],[-8,1],[-11,-2],[-6,2],[-3,3],[-3,1],[-2,3],[-1,9],[0,8],[1,6],[1,4],[2,5],[6,9],[5,2],[19,-5],[4,0],[3,4],[4,7],[3,3],[3,1],[4,-1],[15,-8],[9,-6],[3,-9],[2,-9],[4,-9],[6,-7],[5,-5],[16,-7],[64,-2],[6,3],[2,10],[-4,8],[-5,-2],[-5,-6],[-4,-4],[-14,1],[-6,2],[0,7],[13,22],[2,9],[-3,-4],[-2,-3],[-3,-1],[-4,0],[-3,-2],[-2,-5],[-2,-10],[-5,-7],[-6,-4],[-6,-2],[-14,2],[-14,6],[-5,5],[-4,12],[1,10],[7,19],[-15,2],[-7,4],[-20,32],[-2,9],[0,4],[0,3],[2,1],[4,1],[3,1],[12,-4],[13,-9],[6,-6],[4,-10],[11,10],[15,-3],[25,-19],[-3,10],[-4,5],[-4,4],[-4,6],[-1,9],[1,11],[-1,9],[-4,3],[-6,2],[-1,6],[4,6],[6,2],[7,1],[7,3],[9,8],[5,1],[2,-3],[-1,-18],[-1,-2],[0,-3],[0,-3],[5,-14],[1,-4],[2,-14],[2,-3],[3,5],[1,12],[0,10],[-1,9],[-3,6],[-3,5],[0,4],[8,-2],[14,-15],[6,5],[0,-14],[-1,-12],[-3,-11],[-3,-10],[-1,-7],[2,-5],[1,-2],[1,2],[2,7],[3,3],[3,0],[4,-4],[3,-10],[-1,-10],[-3,-11],[-2,-18],[-4,-8],[-1,-6],[1,-5],[1,-5],[4,-8],[1,-11],[1,-5],[3,0],[3,6],[-1,7],[-2,13],[2,6],[2,4],[3,3],[1,3],[1,7],[5,14],[2,6],[0,15],[-2,9],[-4,8],[-3,15],[-4,9],[-1,7],[2,3],[4,-4],[6,-9],[4,-2],[4,0],[4,-3],[1,-9],[2,-4],[3,-3],[7,-4],[-3,-12],[-1,-4],[5,-6],[11,-18],[3,-8],[1,-8],[0,-6],[-1,-6],[-3,-7],[-2,-8],[2,-6],[3,-3],[2,1],[1,1],[7,-1],[3,2],[1,4],[-2,37],[-2,12],[-3,10],[-5,10],[0,4],[5,0],[27,-24],[3,-6],[4,-2],[9,9],[5,3],[5,-2],[5,-5],[2,-7],[-2,-9],[2,-3],[6,-4],[5,-7],[-1,-10],[-4,-3],[-11,1],[-5,-4],[-3,-8],[0,-8],[3,-6],[10,-5],[1,-5],[-5,-16],[4,-4],[3,4],[2,8],[3,4],[1,4],[4,9],[5,7],[2,-2],[5,-11],[32,-11],[-11,-18],[1,-3],[12,-2],[11,-6],[9,-11],[4,-1],[-5,-6],[-12,-4],[-5,-4],[-3,-9],[2,-9],[-2,-11],[-6,-4],[-7,3],[-6,6],[-9,13],[-5,5],[-6,0],[-6,-8],[11,-9],[-1,-11],[3,-19],[-2,-10],[-10,14],[-6,6],[-3,-2],[1,-12],[3,-8],[4,-6],[6,-4],[-3,-7],[-3,-2],[-4,0],[-4,-4],[10,-7],[17,-5],[1,-7],[0,-10],[-3,-9],[-4,-6],[-3,-1],[-3,1],[-4,2],[-2,4],[-3,1],[-7,-6],[-3,-1],[-5,3],[-2,7],[2,22],[-5,-3],[-4,-1],[-5,3],[-3,5],[-1,-7],[-2,-8],[-2,-9],[4,-4],[0,-9],[-3,-18]],[[29404,18939],[6,4],[8,4],[6,-1],[4,-12],[-2,-6],[-3,-2],[-4,-1],[-4,-3],[2,-13],[-5,-9],[-8,-5],[-7,-1],[-2,-1],[-3,-6],[-2,-1],[-2,0],[-4,3],[-2,1],[-4,6],[-1,2],[-1,5],[1,2],[1,0],[1,3],[3,8],[22,23]],[[29602,19162],[13,-19],[2,-8],[-1,-9],[-2,-9],[-4,-7],[-5,-3],[-4,1],[-6,2],[-5,5],[-4,6],[-1,8],[1,5],[3,3],[5,0],[0,4],[-3,2],[-6,5],[-3,2],[-13,0],[-3,-1],[-2,-1],[-2,0],[-3,4],[-3,2],[-3,0],[-7,0],[-8,-8],[-3,-1],[-12,1],[-4,-1],[-16,-11],[-6,-1],[3,9],[11,4],[5,8],[-2,6],[3,1],[5,1],[4,2],[3,5],[3,2],[3,0],[7,-2],[9,-6],[4,-1],[2,3],[-3,6],[-8,11],[6,6],[16,-19],[7,9],[6,-8],[8,-9],[8,-3],[5,4]],[[29664,18894],[8,-1],[11,-5],[10,-8],[4,-8],[-5,-8],[-23,6],[-7,-2],[-4,-4],[-5,2],[-8,7],[-3,7],[-2,2],[-1,-2],[-1,-3],[-2,-2],[-2,-2],[-8,6],[-8,11],[-8,13],[-5,12],[-4,-7],[-3,-8],[-3,-7],[-6,-3],[-23,1],[-6,3],[-5,5],[-2,6],[1,4],[7,1],[13,-5],[7,-1],[3,6],[-5,4],[-12,4],[-6,4],[-3,8],[-3,9],[0,8],[5,4],[-4,2],[-2,4],[-2,6],[0,8],[-3,-2],[-4,-8],[-2,-2],[-3,1],[-1,2],[-1,4],[-1,5],[-8,20],[-4,7],[-6,6],[1,-6],[3,-15],[-8,1],[-5,9],[-1,13],[-1,12],[-2,0],[-12,-3],[-4,3],[-7,18],[-6,12],[-1,0],[0,-4],[-2,-4],[-5,-5],[-3,0],[-5,1],[-27,13],[-6,-1],[3,-5],[9,-11],[-2,-2],[-2,-2],[-5,0],[-2,-1],[-2,-6],[-2,-1],[-5,0],[-2,2],[-2,4],[-3,3],[-2,-1],[-3,-3],[-3,-2],[-8,6],[-14,25],[-8,6],[4,-12],[1,-9],[-2,-6],[-7,-5],[-7,4],[0,-1],[0,-6],[-1,-2],[-4,1],[-3,1],[-3,3],[-1,6],[1,7],[1,6],[0,6],[-2,7],[-1,3],[-3,2],[-2,-1],[-2,-6],[-1,-3],[-5,2],[-4,4],[-3,4],[0,2],[1,4],[0,5],[-3,4],[1,5],[1,5],[0,11],[-5,-3],[-21,3],[-2,1],[-2,3],[-1,2],[1,8],[-1,2],[-2,0],[-1,0],[-14,5],[-5,6],[4,16],[-1,5],[-1,4],[0,1],[1,4],[1,4],[3,8],[-3,4],[-2,4],[-5,10],[-28,21],[-6,8],[-5,10],[2,4],[2,1],[2,1],[2,2],[1,1],[3,-1],[1,0],[0,2],[0,5],[0,1],[1,2],[1,2],[1,2],[2,0],[3,-2],[9,-14],[12,-14],[7,-6],[23,-11],[-1,-8],[-1,-4],[-2,-4],[4,-6],[11,-9],[3,-3],[2,-8],[4,-1],[10,3],[3,-4],[-3,-10],[-7,-15],[2,-4],[11,-16],[5,13],[4,1],[16,-20],[3,-1],[3,-1],[1,1],[2,5],[1,2],[1,0],[3,-3],[2,-1],[2,2],[2,4],[3,3],[3,-3],[6,-15],[1,-5],[2,-7],[7,4],[10,13],[-8,5],[-3,4],[-3,7],[12,-7],[4,-1],[13,-20],[1,11],[5,-2],[11,-13],[6,-3],[2,-1],[1,-5],[-1,-3],[-10,0],[3,-6],[1,-1],[2,-2],[-2,0],[4,-1],[13,-7],[-1,9],[0,6],[3,4],[5,1],[2,-3],[7,-17],[4,-4],[1,-2],[1,-4],[2,-4],[2,-2],[2,1],[2,3],[1,3],[0,1],[4,-1],[5,-3],[7,-8],[13,-21],[4,-3],[3,-3],[6,-14],[2,-4],[5,3],[-1,7],[-7,11],[-1,7],[-4,25],[5,0],[5,-1],[4,-4],[3,-7],[-1,-3],[-1,-5],[0,-5],[1,-5],[1,-1],[7,-1],[0,7],[1,-2],[4,-6],[1,-3],[2,-13],[-1,-9],[-2,-7],[-7,-12],[8,-12],[2,-4],[3,-11],[1,-6],[-1,-3],[4,-8],[3,-1],[1,7],[1,8],[2,5],[3,3],[4,2],[-2,6],[-2,6],[-3,5],[-3,3],[5,10],[-3,16],[4,7],[6,0],[7,-5],[4,-7],[-3,-9],[3,1],[4,0],[2,-3],[2,-6],[-4,-4],[14,-10],[5,-6],[6,-9],[1,-5],[-2,-2],[-11,-2],[-3,2],[2,-7],[1,-2],[-2,-8],[7,-1],[15,5],[6,-3],[20,-21],[-3,-3],[-1,-1],[0,-4]],[[29630,19264],[0,-5],[-11,-16],[-5,-5],[-3,5],[8,12],[2,3],[9,6]],[[29489,19259],[-5,0],[0,-1],[-2,-2],[-2,-5],[-2,0],[-2,4],[-2,0],[-1,-1],[-2,-3],[-1,-3],[-2,-1],[-6,1],[-3,2],[-2,5],[1,12],[3,7],[8,12],[13,26],[5,8],[-8,-7],[-23,-27],[-7,2],[0,12],[4,9],[23,31],[4,9],[-11,-6],[-23,-31],[-12,-26],[-24,-30],[-6,0],[-1,6],[3,6],[3,12],[-15,11],[-2,18],[1,18],[11,7],[13,2],[13,5],[9,15],[12,23],[9,10],[-1,7],[-11,2],[-13,-5],[-3,14],[4,13],[15,2],[10,1],[12,10],[11,-7],[10,-3],[9,-2],[4,12],[7,5],[6,-3],[6,-21],[8,-20],[0,-7],[-3,-9],[-2,-4],[-6,-3],[-2,-3],[-2,-5],[-3,-12],[-3,-2],[-8,0],[-2,-3],[2,-5],[3,-6],[3,-2],[6,-10],[-3,-20],[-7,-22],[-6,-13],[-3,-4],[-9,-5]],[[29257,19443],[-8,3],[0,21],[-3,4],[-9,1],[-3,-14],[-8,-1],[-8,10],[-2,17],[6,12],[-2,10],[-19,17],[-9,12],[-2,10],[1,9],[3,8],[6,2],[3,-4],[10,-14],[5,-12],[6,3],[9,11],[21,0],[3,2],[8,3],[7,1],[8,-6],[4,-13],[9,-6],[2,-16],[-1,-10],[-6,-15],[-2,-13],[-1,-17],[-6,-17],[-22,2]],[[29508,19450],[-5,-5],[-5,-3],[-6,-1],[-6,4],[-6,7],[-3,4],[-1,4],[2,3],[15,7],[0,4],[-4,1],[-2,4],[-2,4],[-1,3],[-13,6],[-4,5],[-5,9],[-2,3],[-7,7],[-6,4],[-4,3],[-5,10],[-9,22],[-11,10],[0,11],[4,11],[6,5],[4,-1],[3,-3],[2,-4],[3,-4],[1,-1],[4,2],[2,-1],[2,-3],[2,-7],[1,-2],[2,-2],[2,-4],[2,-4],[6,-4],[10,-11],[21,-11],[4,-7],[1,-3],[3,-5],[2,-5],[1,-7],[-1,-7],[-4,-12],[0,-8],[4,-6],[6,-4],[3,-5],[-6,-13]],[[29410,19439],[-6,6],[-6,7],[-6,5],[-3,8],[3,18],[-11,-2],[-2,2],[-3,4],[0,4],[2,3],[4,1],[2,1],[3,4],[2,4],[1,5],[-11,18],[8,13],[10,-4],[10,-9],[8,0],[-7,13],[-20,14],[-5,10],[5,0],[10,-4],[6,0],[-19,14],[-8,2],[-4,2],[-5,8],[-3,2],[-4,-2],[-7,-7],[-4,-3],[-6,1],[-8,5],[-7,8],[-1,8],[5,6],[15,17],[7,3],[3,1],[4,-1],[2,-2],[7,-8],[7,-4],[33,-43],[10,-18],[12,-14],[5,-8],[7,-16],[13,-18],[4,-11],[-1,-4],[-12,0],[4,-8],[-6,-2],[-8,2],[-6,1],[1,-9],[-6,-9],[-9,-10],[-9,-4]],[[29224,19568],[-3,5],[0,7],[2,18],[1,3],[2,2],[4,1],[2,0],[2,-3],[1,1],[1,2],[17,19],[14,6],[1,2],[2,7],[3,1],[2,-1],[2,-1],[1,-4],[-3,-8],[-13,-23],[-2,-7],[-1,-9],[-1,-8],[-4,-2],[-8,0],[-10,-10],[-6,-3],[-6,5]],[[29348,19637],[-3,-6],[-4,-3],[-5,1],[-3,4],[-1,3],[-1,4],[0,4],[0,5],[13,-8],[4,-4]],[[29307,19687],[0,-8],[-6,-8],[-31,-22],[-4,-6],[-2,-4],[-2,-3],[-3,-2],[-7,-3],[-8,-6],[-4,-1],[1,7],[3,14],[4,14],[4,6],[3,3],[9,11],[2,4],[4,3],[23,35],[2,-4],[5,-4],[3,-3],[2,-7],[1,-6],[0,-5],[1,-5]],[[29525,19564],[1,-3],[4,-6],[1,-4],[0,-5],[-2,-15],[-3,3],[-4,4],[-3,5],[-2,7],[-2,9],[-2,3],[-12,18],[-3,9],[-1,3],[-17,26],[-11,7],[-15,20],[-15,7],[-20,17],[-6,9],[2,-3],[2,-2],[2,1],[2,4],[2,-4],[3,-2],[3,-2],[3,-1],[-2,9],[-4,2],[-5,2],[-4,3],[-3,8],[0,6],[3,3],[6,-1],[-5,9],[0,8],[4,3],[6,-3],[-2,9],[3,2],[5,-4],[5,-5],[8,-15],[5,-5],[6,-2],[4,-4],[42,-55],[7,-13],[9,-26],[5,-20],[0,-1],[0,-10],[0,-5]],[[29236,19649],[-5,-15],[-4,-9],[-6,-3],[-10,-1],[1,-13],[-4,-11],[-6,-4],[-4,7],[-3,8],[2,12],[5,13],[4,8],[16,19],[5,9],[-9,0],[-3,0],[-1,0],[-1,-3],[-1,-1],[-2,2],[0,3],[-1,3],[0,3],[1,2],[3,5],[15,68],[8,22],[1,1],[3,-1],[2,-3],[0,-5],[-2,-7],[1,-5],[1,-3],[4,2],[12,-1],[3,1],[2,7],[10,7],[3,5],[2,0],[-3,-11],[-4,-14],[-5,-11],[-7,-8],[-7,-19],[-3,-6],[-4,-4],[-3,-5],[-2,-8],[4,1],[6,6],[5,1],[-1,-5],[-3,-6],[-3,-6],[-3,-3],[-3,-3],[-6,-21]],[[29149,19744],[-3,-5],[-4,-4],[-4,-1],[-4,3],[-1,10],[2,10],[3,10],[3,11],[-5,11],[4,18],[11,30],[4,5],[6,2],[6,-1],[4,-4],[4,-9],[-1,-7],[-4,-7],[-3,-9],[6,0],[-7,-40],[-3,-11],[-3,-4],[-7,-4],[-4,-4]],[[29323,19766],[4,6],[3,9],[0,7],[-9,6],[-4,6],[-1,7],[4,4],[0,4],[-6,6],[-7,18],[-4,5],[1,4],[25,-12],[11,-9],[1,-16],[4,0],[11,4],[-2,-3],[-1,-4],[-1,-3],[6,-4],[-1,-5],[-1,-6],[1,-5],[5,-5],[5,0],[11,3],[3,-2],[1,-3],[1,-4],[1,-3],[3,-1],[7,2],[2,-1],[3,-11],[-4,-6],[-7,-3],[-5,-1],[11,-6],[5,-2],[7,0],[10,7],[1,-2],[-2,-13],[-2,-7],[-7,-17],[-2,-4],[-6,-3],[-8,1],[-7,2],[-6,4],[-3,8],[-2,3],[-7,5],[-3,-1],[-3,1],[-1,6],[-1,3],[-2,1],[-3,2],[-10,1],[-4,4],[-1,9],[-2,3],[-12,11]],[[29503,19831],[3,-8],[2,-10],[0,-9],[-4,-5],[-2,3],[-2,3],[-2,1],[-3,1],[3,-10],[3,-7],[0,-5],[-7,-2],[-5,2],[-5,7],[-3,9],[-3,16],[-2,11],[-4,11],[-3,5],[-5,3],[-3,8],[0,10],[0,9],[2,4],[7,-4],[10,-10],[3,-3],[2,1],[1,0],[1,-6],[0,-5],[-2,-11],[0,-5],[4,-2],[9,2],[5,-4]],[[29197,19673],[-4,-2],[1,-7],[2,-8],[2,-7],[-18,-40],[-4,-4],[-3,3],[1,7],[7,26],[-12,-21],[-7,-7],[-2,11],[4,6],[5,6],[3,7],[1,10],[-5,-3],[-4,3],[-2,5],[-6,6],[-4,6],[-4,8],[-1,7],[2,8],[11,2],[2,8],[2,3],[9,7],[2,5],[-6,-1],[-5,-3],[-4,0],[-4,7],[8,21],[7,26],[7,16],[10,-13],[-3,-11],[5,-5],[8,-3],[6,-6],[2,7],[5,11],[2,7],[-6,-1],[-4,4],[0,7],[4,10],[-6,7],[-2,4],[-1,7],[1,5],[3,0],[4,-1],[3,2],[0,4],[-4,5],[-1,7],[1,9],[2,8],[-3,3],[-3,1],[-4,-1],[-3,1],[2,7],[0,3],[2,2],[0,4],[-10,10],[-1,12],[6,9],[11,2],[-2,-5],[2,-4],[2,-3],[5,-5],[5,8],[4,-1],[4,-6],[3,-9],[-2,-12],[3,-20],[-4,-9],[5,-5],[1,-9],[0,-9],[2,-9],[-2,-1],[-3,-2],[-3,-1],[2,-10],[-1,-7],[-1,-7],[-3,-16],[-6,-14],[-2,-9],[0,-20],[-1,-10],[-2,-5],[-4,-4],[-6,-19],[-3,-5]],[[29460,19828],[2,-2],[1,-4],[1,-4],[0,-5],[0,-6],[-1,-2],[-2,0],[-11,-10],[-10,-2],[-10,4],[-50,51],[-3,5],[2,10],[4,6],[7,-5],[3,7],[4,0],[4,-2],[5,3],[1,7],[0,9],[-2,8],[-2,7],[0,6],[7,1],[9,-2],[5,1],[-8,23],[-1,7],[2,9],[4,0],[5,-5],[4,-6],[2,-7],[2,-9],[1,-10],[1,-8],[1,-9],[3,-8],[6,-12],[1,-9],[-2,-7],[-3,-7],[0,-7],[2,-4],[2,0],[3,0],[2,-1],[8,-10],[1,-1]],[[29389,20014],[-7,3],[-4,7],[-1,9],[6,9],[-8,5],[-3,11],[-1,15],[0,16],[2,6],[5,-1],[6,-1],[3,0],[4,4],[4,2],[3,-2],[2,-8],[0,-5],[1,-6],[3,-11],[2,-7],[5,-13],[2,-5],[1,-13],[0,-16],[-3,-11],[-5,0],[-6,17],[-2,3],[-3,0],[-3,-6],[-3,-2]],[[29160,20071],[3,-3],[2,-4],[2,-4],[0,-8],[0,-7],[-1,-9],[-1,-9],[-3,-5],[-4,1],[-6,4],[-5,2],[-3,-5],[0,-10],[-2,-4],[-2,-3],[-3,-5],[-1,-5],[0,-3],[0,-4],[0,-2],[-2,-2],[-2,1],[-2,3],[-1,2],[0,8],[-2,7],[-2,5],[-3,2],[1,-14],[5,-31],[1,-18],[-2,-19],[-6,-5],[-7,5],[-7,9],[-2,-15],[3,-10],[1,-6],[-9,-1],[-4,-2],[-10,-12],[-3,-2],[-2,0],[-2,1],[-1,4],[0,6],[0,5],[0,5],[0,3],[-2,5],[0,3],[1,3],[2,17],[0,4],[2,1],[3,3],[3,3],[1,3],[3,4],[7,3],[3,4],[3,6],[0,5],[-1,4],[0,5],[2,32],[1,6],[3,8],[2,2],[1,1],[2,2],[0,3],[0,5],[-2,1],[-2,0],[-1,0],[-2,10],[-2,13],[0,13],[4,5],[6,5],[6,8],[6,6],[4,-3],[0,-10],[-4,-32],[-4,-14],[2,-2],[3,1],[2,2],[2,6],[2,15],[1,6],[0,3],[0,5],[1,3],[2,1],[3,-1],[2,-3],[1,-3],[2,-1],[0,-1],[3,-8],[1,-3],[3,-1],[5,1],[2,0]],[[29502,20114],[7,-14],[3,-10],[-1,-9],[-2,-9],[-1,-11],[-2,-10],[-5,-4],[-2,1],[-2,2],[-1,4],[-1,5],[-4,-4],[-3,-2],[-4,0],[-4,2],[-3,2],[-2,5],[-2,6],[1,7],[3,-3],[6,3],[6,5],[4,7],[-14,-6],[-7,0],[-6,6],[6,13],[10,14],[11,6],[9,-6]],[[29239,20048],[-15,-30],[3,-4],[-5,-3],[-9,-4],[-9,-2],[-12,-7],[-3,1],[-4,2],[-3,0],[-4,-5],[-4,-7],[-4,-3],[-4,0],[-4,4],[-2,7],[1,7],[4,7],[10,6],[27,26],[5,6],[3,8],[4,5],[4,4],[4,5],[2,8],[-36,-28],[-8,1],[-4,11],[1,9],[3,7],[5,8],[6,7],[14,5],[6,4],[1,13],[5,15],[7,11],[5,0],[4,-2],[4,3],[5,6],[4,3],[5,-1],[5,-4],[5,-1],[5,4],[11,-5],[13,-27],[2,-20],[-22,13],[1,-11],[12,-22],[1,-11],[3,-2],[3,-4],[2,-4],[1,-7],[-14,-20],[-8,-4],[-6,8],[0,3],[1,5],[0,5],[0,5],[-3,4],[-4,6],[-2,5],[-2,6],[-1,7],[-1,10],[0,9],[-3,-7],[-2,-8],[-3,-3],[-5,10],[-2,-6],[0,-6],[2,-5],[3,-5],[0,-4],[-1,-6],[-2,-7],[-1,-4]],[[29204,20195],[0,-4],[1,-5],[0,-4],[-1,-5],[-3,-4],[-4,-1],[-9,1],[-6,-2],[-17,-8],[-4,1],[-1,7],[2,8],[3,9],[2,5],[2,5],[3,4],[3,3],[7,2],[9,-1],[9,-4],[4,-7]],[[29327,20201],[8,-7],[2,-12],[-1,-16],[-4,-13],[-3,-5],[-3,-3],[-2,0],[-3,2],[-3,6],[-2,2],[-4,4],[-12,8],[-9,1],[-6,7],[-5,15],[-3,17],[-1,12],[28,35],[5,0],[4,-2],[4,-5],[1,-7],[-2,-10],[-3,-4],[-4,2],[-2,10],[-5,-7],[-3,-11],[1,-10],[4,-5],[2,-1],[7,-3],[5,-5],[3,1],[3,3],[3,1]],[[29375,20128],[-4,-4],[-4,-1],[-2,4],[0,13],[0,10],[-1,10],[-8,42],[-4,46],[-1,10],[1,12],[2,12],[1,6],[-1,6],[-2,4],[-2,3],[-2,3],[-2,7],[8,2],[6,-10],[4,-17],[1,-18],[2,-15],[10,-27],[4,-37],[8,-26],[-1,-15],[-2,-5],[-11,-15]],[[29337,20278],[2,-13],[0,-15],[-3,-6],[-5,10],[1,-9],[2,-16],[1,-10],[-1,-4],[-4,5],[-3,10],[-3,18],[-3,10],[-5,8],[-4,4],[-4,-2],[-13,-14],[-11,-6],[-11,-2],[-5,-3],[-1,-7],[2,-10],[1,-11],[-23,-10],[-4,0],[-4,2],[-3,5],[-2,9],[4,2],[1,5],[-1,7],[-2,7],[5,4],[6,1],[5,4],[3,11],[-18,-1],[-4,3],[-4,7],[0,-6],[0,-11],[-2,-10],[-5,-16],[-3,-5],[-6,-2],[0,1],[-9,7],[-5,2],[-2,2],[-1,5],[15,44],[-4,2],[-1,0],[-2,-2],[-4,5],[-3,3],[-3,1],[-4,-1],[-2,-4],[-3,-6],[-3,-3],[-5,5],[-1,6],[0,8],[1,9],[2,6],[3,3],[4,1],[8,-1],[-8,15],[0,4],[7,2],[7,-1],[51,-19],[10,-9],[2,6],[2,3],[3,-1],[2,-3],[8,18],[4,6],[-16,0],[-4,6],[4,16],[6,6],[14,3],[3,9],[-9,-3],[-4,6],[-3,11],[-5,10],[-12,18],[-1,6],[6,5],[30,-14],[3,-7],[15,-11],[3,-11],[3,-14],[6,-3],[7,0],[5,-9],[1,-15],[-2,-12],[-9,-21],[5,-5],[4,-10],[5,-18]],[[29192,20387],[-11,10],[-4,6],[4,4],[-3,21],[9,1],[22,-13],[-2,10],[-11,9],[-4,9],[2,15],[6,-4],[13,-15],[3,7],[-2,10],[0,8],[7,-1],[17,-24],[-3,-8],[0,-7],[0,-7],[-1,-6],[3,-9],[6,-12],[3,-8],[-18,0],[5,-8],[5,-4],[4,-6],[2,-12],[1,-4],[2,4],[2,7],[0,3],[8,16],[4,-8],[-5,-28],[-4,-11],[-6,3],[-19,2],[-18,6],[-4,3],[-6,7],[-3,2],[-4,0],[-4,-1],[-3,1],[-2,8],[4,4],[19,4],[-6,4],[-7,1],[-6,3],[-4,8],[9,0]],[[29172,20386],[0,-1],[-1,-2],[-5,-5],[-1,-1],[-1,0],[-2,1],[-6,4],[-8,8],[-2,1],[-3,4],[-4,17],[-1,6],[-3,7],[0,7],[2,5],[4,3],[3,-2],[4,-5],[3,-1],[3,8],[-5,9],[-5,13],[0,9],[8,1],[2,-1],[2,-2],[3,-6],[2,-3],[1,1],[1,2],[1,1],[2,3],[3,4],[1,-1],[1,-12],[0,-7],[-3,-13],[-1,-8],[0,-20],[0,-14],[0,-6],[3,-3],[1,0],[1,-1]],[[29275,20554],[7,-9],[-5,-20],[-11,-13],[-9,5],[1,12],[-4,15],[1,10],[4,7],[5,-1],[6,-4],[5,-2]],[[29131,20566],[6,-1],[2,-1],[0,-3],[-4,-12],[-2,-6],[-3,-5],[-2,-4],[-5,-1],[-3,0],[-2,-2],[-2,-10],[-2,4],[-2,3],[-3,1],[-2,0],[3,-14],[0,-7],[-3,-3],[-9,0],[-6,5],[-9,19],[-6,5],[-7,-7],[21,-36],[-5,-14],[-2,4],[-2,-4],[6,-5],[3,-3],[2,-5],[-3,-5],[-2,-3],[0,-3],[-1,-5],[1,-3],[1,-6],[-1,-4],[-6,1],[0,-4],[4,-4],[3,-7],[1,-9],[-1,-9],[-3,-7],[-5,-5],[-5,1],[-3,7],[0,4],[1,7],[0,4],[-1,6],[-3,-3],[-3,-7],[0,-3],[-8,-5],[-7,0],[-14,5],[1,5],[2,4],[2,2],[3,2],[-4,10],[-2,7],[1,3],[4,1],[4,2],[3,5],[1,6],[0,6],[0,1],[-21,-2],[-4,2],[-3,4],[-1,5],[0,5],[3,2],[4,-1],[3,1],[2,5],[0,9],[4,9],[8,1],[15,-4],[-1,3],[-1,6],[0,3],[6,0],[-5,11],[-4,12],[-5,8],[-7,2],[0,2],[1,7],[1,3],[-4,0],[-3,2],[-3,4],[-2,6],[2,2],[3,1],[5,1],[3,2],[2,12],[3,2],[6,-2],[3,-6],[3,-7],[2,-9],[4,8],[1,8],[1,5],[6,-1],[3,-4],[3,-12],[3,-4],[3,1],[2,2],[1,3],[0,2],[2,-2],[2,-2],[1,-3],[1,-1],[1,-1],[1,-1],[1,-2],[3,0],[2,1],[1,3],[1,2],[1,2],[9,1],[10,-1]],[[29358,20365],[-3,-7],[-8,2],[-7,9],[-3,12],[-3,9],[-6,9],[-2,9],[7,8],[-9,3],[-14,1],[-9,6],[3,18],[-9,5],[-2,1],[-1,5],[-6,16],[-3,13],[3,8],[11,9],[1,3],[1,6],[1,5],[2,2],[13,4],[1,3],[-2,13],[0,5],[2,3],[4,1],[4,1],[3,-1],[-3,5],[-3,3],[-4,0],[-3,-4],[-5,5],[-4,2],[-17,2],[-5,3],[-4,6],[-3,10],[-4,-3],[-6,-1],[-5,0],[-4,4],[6,5],[12,16],[4,4],[7,2],[5,3],[4,0],[6,-9],[2,-6],[1,-6],[2,-5],[2,-4],[4,-1],[12,1],[6,4],[4,6],[4,1],[5,-11],[2,-10],[3,-12],[4,-39],[4,-9],[9,-11],[4,-8],[9,-31],[-3,-2],[-27,8],[-11,9],[-6,3],[-5,-4],[6,-6],[17,-5],[9,-10],[3,-2],[3,-3],[1,-8],[2,-6],[3,0],[7,4],[5,-4],[6,-11],[4,-14],[2,-11],[0,-16],[-2,-14],[-3,-9],[-11,4],[-1,21],[-4,9],[-4,2],[-2,-2],[-2,-2],[-8,-4],[-1,-6],[2,-14]],[[29227,20574],[1,12],[3,10],[9,19],[-3,2],[-5,6],[8,16],[11,5],[24,-1],[3,-1],[5,-6],[3,-1],[6,0],[1,-2],[0,-6],[-3,-7],[-7,-4],[-13,-1],[0,-4],[1,-6],[-1,-6],[-4,-6],[-4,-3],[-5,0],[-3,-2],[-10,-19],[-3,-2],[-4,-1],[-9,1],[-2,2],[1,5]],[[29155,20688],[-5,-5],[-5,-10],[-5,-6],[-7,4],[1,-4],[1,-5],[-1,-5],[-2,-2],[-3,-1],[-2,-4],[0,-3],[-1,-4],[-7,-8],[-3,-2],[-1,-3],[-1,-5],[-1,-4],[-3,-8],[-2,-7],[-4,-6],[-6,-1],[-17,4],[-4,3],[-1,5],[0,5],[1,6],[1,5],[12,11],[0,1],[6,5],[6,12],[10,24],[-5,-1],[-8,-6],[-8,-8],[-7,-11],[-3,-1],[-2,3],[2,6],[5,6],[1,4],[-1,4],[-4,2],[-2,-3],[-2,-6],[-2,-5],[-3,-3],[-3,1],[-3,1],[-3,1],[-6,-5],[-6,-10],[-6,-8],[-6,2],[-2,9],[5,43],[2,5],[3,3],[7,3],[-1,5],[-5,9],[1,7],[1,4],[1,2],[1,3],[3,21],[2,6],[6,9],[6,1],[14,-8],[8,0],[2,-2],[1,-5],[-1,-4],[-2,-4],[-2,-1],[-12,-2],[-6,-2],[-4,-5],[6,-11],[4,-4],[3,1],[4,4],[2,-5],[2,-8],[2,-5],[4,-1],[4,2],[4,1],[5,-4],[3,-3],[6,0],[9,5],[-3,16],[3,14],[5,16],[2,19],[-12,-14],[-7,-1],[-7,5],[-4,4],[-5,12],[-3,3],[-9,-2],[-4,1],[-5,7],[-5,10],[-5,8],[-7,4],[-1,2],[-3,15],[-1,5],[2,4],[3,-1],[5,-1],[3,0],[3,4],[4,13],[1,3],[3,1],[5,-2],[3,-3],[0,-6],[-2,-6],[2,-7],[1,-6],[1,-5],[2,-5],[3,4],[8,17],[1,2],[0,-1],[7,-3],[9,7],[4,1],[8,-5],[1,-11],[-2,-12],[-1,-8],[4,-6],[3,3],[3,5],[4,2],[1,-4],[7,-24],[1,-1],[2,0],[3,2],[0,4],[0,4],[1,2],[4,3],[4,1],[4,3],[1,8],[2,4],[3,0],[3,-4],[2,-9],[-1,-9],[-3,-4],[-8,-5],[-22,-32],[0,-4],[5,0],[4,1],[12,10],[4,1],[9,0],[1,-1],[3,-3],[1,0],[2,1],[1,6],[0,1],[5,4],[2,0],[4,-2],[3,-2],[2,2],[4,10],[-1,2],[-1,3],[0,3],[-1,4],[12,0],[4,-4],[2,-12],[0,-15],[-6,-15],[1,-11],[-6,-3],[-31,0],[-2,-3],[-1,-5],[1,-8],[0,-6],[-8,-6],[-11,-11],[-6,-2]],[[29042,20992],[-8,-4],[-4,-3],[-4,-5],[-4,-3],[-6,-4],[0,-10],[-1,-7],[-8,-7],[-12,-10],[-5,22],[4,11],[-4,16],[2,15],[11,7],[9,6],[8,-3],[4,13],[-2,8],[-6,0],[-6,-2],[-7,12],[1,13],[1,14],[-9,3],[11,14],[3,8],[4,6],[5,2],[5,-1],[4,3],[0,5],[-3,6],[1,4],[3,0],[3,-4],[3,-5],[4,1],[3,-5],[4,-2],[6,-1],[5,-4],[3,-7],[8,-4],[2,-15],[5,-10],[5,-12],[1,-5],[2,-11],[1,-4],[1,-2],[3,-1],[2,-2],[2,-8],[0,-2],[1,-3],[0,-5],[3,-9],[12,-19],[2,-12],[7,-42],[-1,-13],[-3,8],[-4,4],[-4,3],[-4,5],[-3,9],[-2,8],[-3,5],[-6,3],[3,-7],[2,-9],[1,-10],[0,-9],[-2,-6],[-4,2],[-5,6],[-2,5],[-8,10],[-8,18],[-2,18],[8,10],[-5,37],[-2,0],[-3,-17],[-13,-6],[-5,-10]],[[29022,21227],[4,-5],[4,-10],[6,0],[2,-9],[-1,-9],[-1,-9],[3,-5],[4,5],[2,-5],[2,-5],[-1,-8],[0,-6],[1,-7],[-3,-9],[-3,-1],[-1,5],[-3,7],[-7,2],[-2,6],[-4,4],[-5,8],[-4,7],[2,7],[5,1],[5,1],[0,10],[-4,4],[-5,-4],[-4,6],[2,12],[6,7]],[[29193,21406],[4,-11],[-1,-25],[-6,-41],[0,-27],[-2,-12],[-4,-5],[-3,2],[-4,4],[-14,19],[-13,25],[-6,14],[2,3],[1,1],[2,0],[1,0],[-9,4],[-31,-8],[0,4],[10,12],[10,5],[3,3],[-10,2],[-13,-7],[-9,-3],[2,17],[2,6],[17,33],[6,3],[11,-2],[-3,3],[-2,4],[-1,4],[-2,5],[4,-1],[5,-4],[4,-4],[8,-10],[10,-10],[4,-5],[3,2],[2,27],[3,-1],[15,-23],[4,-3]],[[29011,21305],[-2,1],[-6,2],[-13,8],[-5,5],[-2,8],[3,1],[3,0],[3,-2],[2,-3],[-3,17],[7,20],[10,16],[11,8],[-6,-21],[5,4],[8,4],[2,4],[-2,-2],[-1,0],[-4,2],[11,15],[6,5],[4,-3],[2,7],[5,8],[2,5],[-5,1],[-3,3],[1,6],[4,10],[5,13],[4,5],[12,8],[4,-3],[1,-12],[-2,-8],[-7,-10],[-2,-9],[7,5],[3,1],[3,-2],[3,-4],[3,-5],[5,-13],[-2,-12],[-6,-16],[-7,-8],[-2,13],[-12,-32],[-4,-4],[-4,3],[-1,8],[3,10],[3,11],[-4,-2],[-2,-6],[-1,-8],[-2,-8],[-2,-2],[-4,0],[-2,-2],[-2,-16],[-1,-2],[-1,0],[-1,-2],[-1,-4],[0,-3],[1,-2],[1,-3],[0,-4],[-2,-8],[-3,-6],[-4,-3],[-4,1],[-3,2],[-4,7],[-3,3]],[[29107,21443],[2,-12],[-2,-11],[-4,-8],[-6,-4],[-7,6],[-5,14],[-6,44],[0,4],[-1,3],[-4,0],[-5,-7],[-4,-1],[-2,8],[-1,-6],[-1,-3],[-2,-1],[-2,-2],[-2,-1],[-3,1],[-2,-2],[-1,-3],[-1,-6],[0,-1],[-11,-25],[-4,-4],[-5,2],[-6,5],[-4,7],[2,9],[5,7],[4,5],[4,7],[3,11],[-5,1],[-5,-7],[-5,-8],[-6,-6],[-7,-2],[-8,1],[-7,5],[-6,8],[-3,9],[-1,11],[1,13],[3,12],[3,11],[6,8],[5,0],[3,-11],[2,10],[3,5],[3,-1],[5,-6],[-1,18],[5,-1],[8,-7],[7,2],[-3,-8],[-11,-24],[-2,-6],[4,-1],[7,7],[6,8],[3,6],[3,7],[5,11],[6,9],[3,-1],[-1,-5],[-2,-7],[-3,-5],[-3,-3],[0,-3],[0,-6],[1,-3],[4,4],[2,-9],[2,-9],[4,-5],[6,-2],[-7,23],[-1,8],[2,9],[5,1],[9,-4],[6,-5],[6,-11],[5,-14],[2,-19],[6,-28],[0,-6],[1,-2],[1,-3],[3,-4],[2,-1]],[[29137,21469],[-8,-1],[-8,-9],[-9,-5],[-8,10],[-3,13],[-3,19],[-1,18],[4,14],[-5,1],[-4,4],[-4,5],[-2,6],[-4,16],[-1,9],[0,4],[9,-2],[18,-8],[25,-23],[8,-12],[3,-14],[-1,-6],[-2,-6],[-3,-5],[-2,-2],[-5,4],[-2,1],[-1,-3],[0,-4],[2,-3],[3,-2],[2,-1],[10,6],[3,-11],[-2,-13],[-9,0]],[[29111,20994],[-2,7],[-1,4],[1,22],[0,5],[-2,5],[-4,4],[-7,3],[-3,5],[1,3],[2,10],[1,3],[-9,7],[-3,1],[-1,3],[0,7],[0,7],[3,4],[5,2],[4,7],[5,19],[-5,-4],[-8,-1],[-6,2],[-4,7],[2,7],[12,16],[3,10],[-4,-4],[-14,-7],[-4,0],[-4,9],[1,6],[3,5],[3,11],[-7,0],[-3,-1],[-3,-3],[-1,6],[1,4],[4,10],[-7,-1],[-7,4],[-4,10],[-3,15],[-2,9],[-4,12],[-1,4],[-1,3],[-1,3],[-1,6],[2,10],[4,9],[6,7],[5,2],[7,-3],[4,-9],[3,-11],[7,-19],[12,-41],[23,-38],[11,-13],[-2,10],[-5,11],[-3,9],[4,7],[-9,8],[-11,14],[-8,19],[-1,18],[-4,6],[-4,8],[-1,10],[2,10],[-1,11],[4,5],[8,0],[5,-5],[21,-49],[2,-8],[2,-4],[5,-7],[5,-1],[12,6],[-5,4],[-10,3],[-4,5],[-2,7],[-6,25],[0,4],[8,-3],[13,-15],[4,6],[-1,6],[-3,8],[0,7],[5,4],[8,-1],[4,1],[4,4],[-5,6],[-5,9],[-4,11],[-1,10],[7,-6],[18,-34],[13,-17],[7,-11],[2,-11],[1,-7],[1,-9],[2,-5],[4,3],[2,30],[0,34],[4,13],[7,-4],[-6,9],[-2,5],[-1,8],[1,7],[2,4],[3,3],[3,0],[0,4],[-3,6],[0,6],[3,7],[2,5],[-2,3],[-1,3],[-2,7],[3,2],[4,1],[8,1],[-42,57],[5,5],[22,13],[3,-2],[8,-16],[0,19],[-2,15],[-4,6],[-7,-4],[-14,-16],[-7,-7],[-8,-1],[1,6],[1,2],[-7,3],[1,9],[8,20],[-9,-1],[-5,2],[-3,4],[-1,6],[1,5],[4,3],[4,2],[4,2],[8,8],[17,11],[3,3],[-12,-1],[-14,-10],[-13,-7],[-11,10],[-3,12],[1,12],[4,9],[5,4],[8,-7],[6,-3],[4,-3],[3,-4],[3,-4],[-1,5],[-1,2],[-1,1],[-2,3],[-4,13],[0,2],[0,2],[-7,1],[-2,1],[-1,3],[7,9],[29,23],[3,5],[5,9],[6,4],[2,-8],[4,-20],[3,-6],[1,4],[-1,9],[0,7],[1,9],[3,6],[3,4],[4,2],[17,-1],[4,-3],[4,-7],[2,-8],[-1,-7],[-5,-3],[4,-2],[9,7],[3,-3],[1,-6],[-2,-7],[-2,-7],[-2,-8],[1,-7],[3,-15],[0,-4],[-2,-8],[-7,-9],[-2,-8],[4,0],[5,1],[4,3],[2,4],[1,6],[0,11],[-1,11],[-1,7],[0,12],[5,17],[8,13],[7,4],[5,-10],[1,-17],[-2,-35],[0,-33],[-2,-9],[-4,-5],[-3,-6],[1,-11],[8,8],[7,0],[4,-8],[4,-16],[0,-17],[-3,-13],[-6,-10],[-6,-9],[6,-6],[4,-11],[2,-13],[7,-24],[-3,-17],[1,-14],[1,-5],[3,-6],[2,-5],[1,-8],[-1,-6],[0,-5],[0,-7],[0,-35],[0,-12],[-5,-34],[-2,-26],[-1,-11],[-3,-10],[-2,-8],[-3,-6],[-7,-10],[-2,-5],[-1,-6],[2,-3],[2,-3],[2,-12],[4,-9],[0,-5],[0,-9],[-1,-3],[-6,-9],[-5,-5],[-2,-3],[-1,-4],[1,-12],[-1,-6],[-3,-6],[-5,-6],[-5,-9],[0,-11],[3,-7],[5,5],[4,10],[7,18],[1,16],[2,8],[5,5],[7,-2],[6,-5],[5,-6],[4,-9],[2,-9],[0,-10],[0,-27],[-1,-6],[-3,-1],[-6,0],[-3,1],[-4,5],[-3,1],[-4,0],[-2,-2],[-6,-5],[7,-6],[16,-9],[5,-10],[1,-12],[-1,-19],[-2,-17],[-3,-9],[-2,14],[-1,6],[-3,5],[0,-12],[-4,-4],[-5,3],[-4,5],[-1,-8],[3,-8],[4,-7],[4,-2],[4,-5],[1,-11],[-2,-11],[-3,-5],[-5,-2],[-4,-2],[-3,-1],[-6,5],[-12,20],[-5,4],[18,-36],[3,-13],[-7,-6],[-18,-22],[-4,-3],[-5,-2],[-6,0],[-4,5],[-1,8],[1,6],[4,6],[2,8],[-4,-2],[-11,-11],[-2,-5],[-2,-9],[-3,-6],[-4,-2],[-4,3],[-6,6],[-4,9],[0,11],[4,11],[-5,-2],[-3,-5],[-2,-8],[2,-10],[-10,7],[3,15],[10,16],[23,25],[5,2],[4,-3],[8,-12],[5,-5],[-6,14],[-7,12],[-8,6],[-10,-4],[-19,-22],[-12,-10],[-5,5],[0,3],[-3,7],[-1,5],[0,5],[2,8],[2,16],[3,5],[4,2],[5,0],[5,-2],[5,-4],[5,-2],[4,2],[5,6],[8,7],[4,6],[-18,-5],[-8,0],[-5,9],[1,6],[3,8],[3,7],[2,3],[3,3],[4,5],[3,6],[-1,3],[-9,1],[-3,-1],[-8,-16],[-3,-4],[-2,-1],[-2,0],[-2,0],[-1,3],[-2,22],[0,6],[2,5],[5,0],[0,4],[-5,5],[-5,9],[-5,10],[-1,9],[4,4],[6,-3],[6,-6],[5,-4],[0,5],[-10,15],[-4,9],[1,8],[0,10],[7,0],[23,-16],[4,-2],[3,2],[3,4],[4,1],[4,0],[3,-3],[-2,8],[-5,0],[-4,-1],[-5,3],[-1,6],[3,13],[1,8],[-4,-5],[-2,-5],[-3,-5],[-5,-1],[-6,0],[-5,3],[-5,5],[-4,8],[-2,7],[-1,9],[1,9],[5,3],[1,3],[16,16],[4,9],[3,2],[9,-22],[2,-2],[0,5],[0,12],[-1,9],[-2,5],[0,5],[5,7],[5,3],[11,1],[5,4],[-6,3],[-5,0],[-5,-2],[-5,-1],[5,13],[15,21],[5,15],[-7,-4],[-16,-21],[-3,-2],[-2,-2],[-8,0],[-3,2],[-4,8],[-3,2],[2,-8],[4,-8],[5,-5],[5,-3],[1,-3],[-4,-8],[-8,-11],[-7,-12],[-9,-13],[-8,-3],[-2,18],[-4,-9],[-3,-14],[-3,-12],[-6,-6],[-6,6],[1,28],[-5,7],[-2,-4],[-1,-7],[1,-7],[-2,-3],[-3,-1],[-1,-5],[-1,-6],[1,-8],[2,-22],[-3,-6],[-9,0],[2,-5],[6,-8],[2,-4],[1,-7],[-1,-5],[-1,-6],[-1,-8],[1,-8],[4,7],[4,13],[5,6],[3,-5],[-1,-13],[-4,-14],[-3,-8],[-8,-16],[-3,-9],[2,-12],[3,10],[3,4],[4,-1],[3,-9],[1,-3],[1,-4],[0,-4],[0,-7],[-9,-14],[-6,-2],[-5,-4],[-3,-4],[5,-2],[4,-5],[1,-11],[0,-25],[-4,2],[-8,2],[-3,2],[-5,12],[-3,2],[-5,0],[-7,4],[-4,9],[-7,24],[-7,18]],[[29143,21666],[3,0],[3,-4],[1,-6],[0,-10],[0,-17],[-6,-29],[-1,-13],[-1,-7],[-3,-8],[-3,-8],[-3,-5],[-3,-1],[-5,0],[-18,10],[-5,5],[-4,6],[-1,10],[6,9],[7,5],[6,2],[0,4],[0,9],[12,16],[3,14],[9,15],[3,3]],[[29160,21635],[1,5],[4,0],[8,-2],[-4,4],[-4,6],[-1,7],[0,11],[11,-9],[6,-2],[14,8],[7,-2],[13,-8],[0,-3],[-8,-7],[-21,-26],[-16,-12],[-10,-3],[-6,7],[1,9],[4,11],[1,6]],[[29072,21674],[3,-2],[1,-4],[-1,-4],[-2,-2],[-1,-1],[-1,-3],[-1,-3],[1,-3],[1,-1],[3,2],[2,0],[4,1],[1,0],[2,-4],[2,-8],[1,-10],[-1,-11],[-2,-8],[-5,-4],[-3,-1],[-3,-1],[-2,0],[-4,4],[-1,2],[-4,0],[-1,2],[0,4],[2,8],[0,3],[2,0],[-5,1],[-4,-6],[-7,-16],[-2,-2],[-5,-4],[-2,-2],[-2,-3],[-3,-7],[-1,-2],[-5,-5],[-4,-2],[-12,-1],[-11,-7],[-6,-1],[-5,4],[-5,5],[-1,11],[0,26],[3,9],[8,-1],[15,-10],[14,1],[13,11],[32,43],[2,2]],[[29075,21716],[2,-5],[1,-8],[0,-9],[-1,-6],[-5,-9],[-46,-47],[-10,-4],[-4,0],[-5,1],[-4,3],[-4,5],[-1,5],[-1,6],[1,4],[3,1],[19,-3],[8,2],[7,8],[6,10],[3,12],[-7,-2],[-13,-11],[-9,-3],[4,5],[9,8],[3,7],[-14,-2],[-4,-2],[-9,-14],[-4,-2],[-8,3],[-5,8],[-8,21],[5,10],[1,11],[-2,26],[1,11],[4,2],[4,0],[4,9],[0,5],[-2,4],[-1,3],[5,4],[3,0],[4,-3],[5,-3],[1,-4],[3,-10],[7,1],[7,6],[4,5],[9,14],[4,1],[2,-18],[2,0],[2,3],[1,10],[1,4],[2,2],[2,1],[3,-2],[0,-4],[-1,-6],[2,-7],[0,-2],[1,0],[3,4],[0,3],[3,7],[3,5],[1,-5],[0,-13],[-4,-37],[0,-3],[-3,-9],[3,0],[3,-1],[2,-2],[2,-4]],[[29313,21773],[-9,17],[-2,12],[10,1],[19,-7],[26,-28],[2,-1],[1,-2],[0,-6],[-1,-5],[-2,-3],[-8,-4],[-16,-15],[-8,0],[-3,5],[-6,22],[-1,5],[0,3],[0,3],[-2,3]],[[29419,21759],[-6,4],[-19,18],[-6,12],[-12,17],[-2,10],[5,5],[6,3],[5,0],[9,-6],[12,-18],[9,-4],[8,-9],[1,-17],[-4,-15],[-6,0]],[[29307,21836],[10,6],[9,-4],[18,-14],[-6,13],[-4,11],[1,10],[6,11],[4,4],[3,3],[4,1],[5,0],[4,-4],[0,-10],[-3,-17],[2,-18],[6,-13],[14,-21],[2,-14],[-5,-9],[-8,-2],[-19,24],[-34,23],[-9,20]],[[29306,21698],[3,-4],[1,-10],[-1,-11],[-2,-9],[-6,-15],[-3,-5],[-10,-4],[-8,-6],[-5,-2],[-3,2],[-10,12],[-3,3],[-7,4],[-4,0],[-2,2],[-7,13],[-3,3],[-4,-1],[-8,-4],[-7,0],[-14,6],[-22,4],[-7,4],[-7,6],[-4,10],[-1,25],[-3,12],[-2,12],[3,11],[4,10],[17,30],[5,4],[3,0],[6,3],[3,1],[4,1],[7,7],[4,0],[3,-8],[3,-27],[3,-12],[5,-9],[4,-2],[5,2],[4,7],[5,12],[1,9],[-4,6],[-8,2],[-15,36],[-1,13],[3,34],[1,11],[8,21],[2,11],[1,14],[-1,11],[0,10],[3,11],[4,5],[5,-3],[3,-7],[2,-9],[1,-8],[0,-8],[-1,-6],[-4,-2],[-3,-5],[2,-9],[3,-7],[2,3],[2,0],[3,-5],[3,-8],[2,-8],[-4,-16],[0,-7],[11,-8],[7,-10],[5,-13],[4,-13],[-1,-16],[-7,-2],[-10,0],[-7,-6],[11,-8],[4,-6],[4,-11],[1,-9],[-1,-31],[1,-13],[1,-8],[2,-7],[12,-24],[5,-4],[2,9],[-1,14],[2,0],[6,0]],[[29293,21853],[-2,11],[-1,10],[-1,25],[8,20],[2,9],[-6,-2],[-3,-7],[-3,-10],[-3,-8],[-5,-4],[-3,7],[1,15],[2,17],[3,10],[-2,1],[-2,2],[-2,1],[7,14],[6,7],[7,-1],[8,-12],[8,-21],[3,-3],[4,-3],[11,-14],[8,-13],[2,-5],[1,-6],[-2,-8],[-3,-8],[-4,-5],[-4,-3],[-6,-1],[-1,-3],[-1,-2],[-2,-3],[-10,-4],[-8,-10],[-4,-1],[-3,8]],[[29122,21867],[1,6],[8,9],[2,7],[-6,-1],[-5,1],[-3,6],[-1,13],[-1,1],[-3,1],[-3,3],[-2,5],[1,2],[2,3],[2,5],[0,6],[-2,5],[-6,5],[-1,4],[0,4],[1,6],[0,2],[-3,8],[-1,5],[-2,3],[-1,3],[-2,3],[0,4],[-1,9],[-1,4],[0,4],[25,-4],[4,-2],[3,-10],[6,-4],[14,-5],[0,4],[-2,2],[-1,2],[0,2],[-1,2],[11,-2],[8,6],[11,-6],[18,-13],[6,-3],[7,-5],[10,-10],[5,-16],[2,-1],[-1,-23],[-1,-11],[-7,-10],[-1,-13],[1,-44],[-2,-8],[-3,-7],[-3,-2],[-2,1],[-3,1],[-3,0],[-3,-3],[-5,-7],[-12,-9],[-9,-15],[-9,-9],[-7,6],[-1,3],[-1,2],[0,3],[-1,9],[-3,6],[-1,4],[-1,7],[-10,24],[-7,8],[-3,5],[-1,9]],[[29125,21653],[-4,-2],[-12,-22],[-5,-4],[-4,3],[-3,9],[-1,12],[1,5],[2,4],[3,2],[1,2],[0,4],[-4,0],[-4,-2],[-3,-1],[-3,3],[-1,4],[-1,4],[2,4],[2,4],[-3,3],[-4,8],[-2,8],[1,7],[2,8],[0,7],[-6,14],[-2,15],[3,18],[6,16],[5,6],[0,4],[-8,5],[-5,5],[-2,4],[2,18],[0,9],[-3,3],[-2,-3],[-6,-16],[-2,-5],[-4,-4],[-5,-2],[-5,-1],[-3,3],[-3,-9],[-6,-6],[-8,-4],[-6,-1],[-8,5],[-5,11],[0,11],[6,5],[3,1],[14,9],[12,2],[7,3],[6,8],[10,18],[0,4],[-5,-1],[-4,-3],[-4,-5],[-4,-4],[2,13],[2,12],[-5,-5],[-9,-15],[-5,-5],[-1,3],[-3,3],[-2,3],[-7,-11],[-5,-4],[-5,3],[-3,8],[1,8],[3,7],[3,5],[16,17],[7,11],[4,17],[-7,-3],[-10,-14],[-7,-4],[-3,1],[-3,3],[-1,5],[1,6],[2,5],[0,3],[-6,11],[-1,1],[-2,2],[-1,8],[0,23],[-1,4],[-3,9],[0,7],[9,17],[5,6],[8,9],[8,3],[4,-11],[2,-12],[3,4],[6,18],[5,5],[7,6],[8,3],[3,-8],[-1,-7],[-2,-13],[0,-5],[4,-9],[3,-9],[0,-4],[0,-6],[1,-2],[5,4],[1,-13],[5,-12],[4,-12],[-4,-13],[-1,-5],[-1,-6],[0,-5],[2,-3],[2,2],[0,3],[1,2],[2,-2],[1,-4],[-1,-5],[-1,-5],[-1,-3],[4,-3],[2,-4],[11,-36],[1,-7],[1,-6],[2,-8],[3,-6],[2,-3],[4,-3],[-2,-9],[-5,-16],[10,1],[5,-8],[4,-13],[6,-13],[-4,-2],[-7,-4],[-3,-4],[1,-3],[12,-6],[4,-1],[1,-4],[0,-10],[-2,-15],[1,-6],[4,-14],[1,-8],[-4,-10],[-6,-12],[-8,-10],[-4,-5]],[[29091,22027],[11,13],[2,8],[-3,12],[8,33],[11,13],[22,16],[12,-1],[10,0],[18,-9],[6,11],[6,11],[3,11],[5,8],[5,-5],[3,3],[3,4],[4,-2],[8,2],[3,-10],[3,-15],[0,-18],[-4,-11],[-2,-8],[-5,-7],[-2,-6],[8,-7],[2,-12],[-2,-11],[-9,-3],[-5,-8],[4,-4],[10,1],[6,-5],[2,-13],[8,-37],[-18,16],[-17,4],[-12,2],[-12,7],[-7,6],[-13,3],[-6,6],[-1,5],[3,10],[-1,7],[-2,3],[-4,2],[-4,0],[-10,-3],[-5,-4],[-4,-7],[-4,-9],[-6,-6],[-8,-3],[-8,-2],[-6,1],[-1,1],[-5,7]],[[29329,22080],[-13,1],[-6,4],[-6,7],[8,13],[15,21],[7,12],[9,6],[11,-9],[12,-12],[9,-7],[-3,10],[-7,9],[-13,14],[12,8],[12,1],[47,-25],[22,-3],[6,-4],[12,-12],[7,-2],[6,2],[7,8],[6,6],[6,-6],[2,-12],[0,-14],[-6,-16],[1,1],[0,-3],[0,-3],[-1,-4],[-2,0],[-6,0],[-14,-2],[-3,-4],[-2,3],[-2,12],[1,-1],[2,3],[1,5],[0,3],[-1,3],[-3,-1],[-4,-4],[-4,-1],[-9,-12],[-8,-4],[-25,4],[-4,0],[-10,-8],[-42,-13],[-8,6],[-4,6],[-4,7],[-4,5],[-7,2]],[[29116,22143],[-3,14],[-8,10],[-13,9],[-10,5],[-11,-9],[3,14],[-6,14],[5,8],[5,9],[6,2],[8,-5],[6,-7],[10,4],[7,3],[5,2],[4,3],[0,3],[10,11],[7,0],[4,-13],[4,-19],[1,-10],[-10,-9],[-3,0],[-3,-3],[-2,-6],[2,-3],[4,1],[4,4],[3,3],[2,-4],[7,-7],[6,-7],[-8,-12],[-12,-2],[-1,-3],[-9,-5],[-8,2],[-19,-11],[2,5],[7,6],[4,3]],[[29198,22214],[7,-19],[-2,-11],[-18,-6],[-7,-1],[-3,1],[-4,4],[-6,8],[-6,8],[-3,16],[-5,13],[4,14],[11,2],[14,-9],[13,-5],[5,-15]],[[29314,22591],[8,8],[11,7],[12,3],[9,-5],[2,-7],[0,-8],[-1,-7],[-3,-7],[-3,-4],[-10,-7],[-4,-5],[-13,-20],[-4,-3],[-4,1],[-1,4],[3,7],[-2,6],[-4,8],[-2,5],[-1,10],[2,7],[2,4],[3,3]],[[29423,22624],[8,-2],[7,-4],[13,-11],[-13,-19],[-2,-7],[-2,-9],[-4,-10],[-5,-8],[-21,-20],[-8,1],[-3,6],[2,5],[7,0],[-1,2],[-2,5],[-1,2],[-2,1],[-1,1],[-9,1],[-3,1],[-2,4],[-1,12],[2,14],[3,12],[8,21],[2,4],[3,2],[3,-1],[8,-7],[2,-2],[2,-14],[5,3],[4,11],[1,6]],[[29521,23198],[3,-5],[4,-3],[3,-5],[2,-9],[-1,-11],[-7,-12],[-2,-8],[0,-2],[-2,0],[-2,-2],[-1,-4],[-1,-11],[-2,-9],[-4,-6],[-4,-1],[-5,1],[-5,4],[-3,5],[-3,9],[0,2],[1,7],[2,5],[3,3],[-4,2],[-5,3],[-14,21],[-10,10],[-3,5],[6,24],[2,7],[4,3],[6,1],[10,-2],[4,-4],[9,-13],[3,-3],[8,3],[4,0],[4,-5]],[[29525,23273],[2,-7],[-1,-21],[6,-28],[-8,-2],[-30,14],[-2,7],[2,10],[10,33],[3,9],[5,6],[2,-18],[0,-3],[3,-1],[6,2],[2,-1]],[[29235,23342],[5,0],[4,-2],[2,-7],[0,-15],[-3,-11],[-6,-20],[-2,-16],[-3,-18],[-1,-19],[-1,-5],[-3,-8],[-4,-8],[-5,-6],[-11,-6],[-4,-7],[-7,-18],[-7,-10],[-9,-4],[-10,-1],[-17,4],[-4,3],[-3,4],[-2,8],[-2,7],[-2,8],[-3,5],[2,7],[4,5],[26,13],[10,-1],[9,-5],[9,-1],[9,11],[-2,3],[-10,-8],[-4,-4],[-14,18],[-5,2],[-3,-1],[-7,-5],[-4,-2],[-3,1],[-10,4],[3,6],[3,2],[8,-1],[0,5],[-16,8],[1,20],[-2,4],[-5,11],[-1,4],[1,6],[4,5],[4,2],[3,0],[4,0],[11,-8],[13,-5],[3,-5],[5,-8],[7,-8],[9,-5],[7,3],[-6,9],[-24,22],[-1,5],[2,5],[4,0],[3,-4],[2,-6],[3,-3],[3,-1],[3,-2],[2,0],[1,5],[0,10],[2,1],[2,-3],[3,-2],[7,2],[2,6],[-1,10],[0,15],[8,-7],[3,-1],[3,1],[5,5],[3,2]],[[29516,23350],[7,-11],[2,-15],[0,-16],[4,-14],[-6,1],[-6,5],[-7,4],[-7,-3],[-4,-9],[-3,-14],[-3,-9],[-6,4],[1,-6],[0,-3],[1,-3],[-5,-14],[-7,-8],[-8,-1],[-7,6],[-3,20],[0,8],[2,9],[3,10],[5,11],[5,8],[5,4],[11,3],[9,8],[17,25]],[[29464,23379],[-11,-15],[-2,-6],[3,-4],[1,-5],[-1,-6],[-1,-7],[0,-2],[-2,-2],[-1,-3],[-1,-3],[1,-3],[2,-7],[1,-4],[-2,-13],[-5,-14],[-6,-6],[-4,6],[-4,22],[-2,7],[-2,5],[-3,4],[-1,6],[2,8],[-7,1],[-3,15],[2,15],[8,-2],[2,13],[4,4],[5,-2],[5,-2],[5,-1],[12,1],[5,0]],[[29224,23445],[12,-38],[-1,-1],[-5,-3],[-1,-1],[-6,5],[-16,24],[-3,3],[-2,1],[-1,2],[-1,7],[0,6],[1,7],[2,5],[2,2],[6,0],[7,-2],[4,-6],[2,-11]],[[29290,23480],[4,-3],[0,-5],[0,-5],[-1,-3],[-6,-19],[-2,-12],[6,-11],[-1,-10],[-2,-11],[-6,-16],[-3,-7],[-5,-3],[-7,-1],[-7,1],[-6,5],[-4,9],[-2,16],[1,16],[2,16],[4,15],[6,12],[4,4],[11,5],[7,7],[2,0],[5,0]],[[29424,23411],[-8,29],[-2,16],[-1,4],[-1,5],[1,7],[8,10],[1,2],[3,5],[5,8],[6,7],[5,-2],[3,-4],[6,-3],[3,-3],[6,-11],[3,-1],[7,-10],[3,-22],[-2,-25],[-4,-16],[-9,-10],[-13,-4],[-12,3],[-8,15]],[[29304,23386],[11,23],[2,10],[0,15],[3,5],[-3,7],[-6,6],[-4,5],[1,4],[9,7],[3,4],[-5,9],[-1,15],[1,17],[4,14],[8,24],[5,4],[9,-2],[15,-10],[7,-7],[5,-9],[5,-12],[2,-12],[-1,-11],[-7,-8],[4,-2],[6,-2],[5,-5],[1,-11],[-3,-8],[-5,-3],[-11,-2],[5,-8],[6,1],[6,2],[5,-2],[-3,-8],[-3,-9],[-3,-7],[-6,-5],[-20,-2],[-7,-6],[6,0],[4,-4],[0,-6],[-2,-6],[-3,-5],[-18,-20],[-9,-6],[-9,1],[-6,16],[-3,9]],[[29537,23561],[10,-4],[7,-8],[5,-13],[1,-20],[-1,-4],[-1,-4],[-2,-4],[0,-6],[0,-14],[0,-4],[-3,-9],[-3,-9],[-1,-9],[3,-6],[-5,-4],[-5,1],[-9,7],[3,-13],[2,-6],[2,-5],[7,-5],[3,-4],[2,-7],[-1,-14],[-4,-14],[-7,-9],[-7,0],[-5,14],[-6,14],[-13,15],[-3,4],[-2,2],[-6,8],[-3,9],[3,4],[18,15],[0,5],[-12,19],[4,34],[13,32],[16,12]],[[29476,23541],[11,11],[6,0],[2,-13],[-1,-11],[-3,-12],[-11,-29],[-4,1],[-4,1],[-6,6],[-3,1],[-7,7],[-7,2],[-9,7],[-4,2],[-9,-2],[-3,-1],[-7,-9],[-3,-2],[-2,-3],[-2,-13],[-1,-4],[-4,0],[-1,10],[1,13],[2,9],[2,5],[2,3],[1,4],[1,7],[2,10],[3,11],[5,11],[3,6],[5,1],[16,-3],[5,-4],[5,-7],[6,-7],[7,-6],[6,-2]],[[29290,23496],[-4,4],[0,10],[5,14],[9,33],[6,11],[8,5],[6,-7],[-2,-15],[-12,-29],[-2,-15],[1,-21],[0,-14],[-6,4],[-1,6],[-2,7],[-3,5],[-3,2]],[[29493,23586],[-4,-9],[-7,-6],[-8,-4],[-8,-2],[-17,6],[-8,5],[-3,11],[4,8],[9,5],[10,3],[13,-6],[10,3],[8,0],[1,-14]],[[29349,23620],[2,-8],[2,-9],[1,-8],[4,-6],[-3,-3],[-3,-2],[-4,-2],[-3,-1],[-6,2],[-31,27],[-6,10],[-4,13],[0,12],[8,6],[19,3],[11,-1],[5,-9],[1,-4],[7,-20]],[[29493,23662],[4,-7],[5,-14],[3,-13],[-1,-6],[-8,-7],[-4,-1],[-42,-1],[-5,-2],[-4,0],[-17,11],[-13,4],[-3,2],[-3,7],[-3,12],[-3,13],[-1,10],[2,11],[6,4],[6,2],[13,12],[4,-6],[7,-23],[12,-10],[31,6],[14,-4]],[[29368,23697],[1,-5],[-2,-3],[-3,-2],[-3,-28],[-2,-13],[-5,-5],[-4,2],[-15,18],[-3,6],[-3,7],[-2,9],[1,19],[3,16],[5,10],[8,-1],[5,-5],[11,-19],[2,-2],[4,-2],[2,-2]],[[29519,23693],[-3,-13],[3,-18],[-3,-8],[-7,-3],[-6,7],[-6,10],[-6,8],[-3,2],[-8,1],[-25,-7],[-8,2],[-5,9],[-5,23],[-4,5],[-5,5],[-7,21],[-6,3],[-2,-4],[-1,-5],[-2,-5],[-3,-3],[-3,4],[-4,6],[-3,3],[-1,-7],[-3,-9],[-6,0],[-6,5],[-4,6],[-2,24],[4,22],[8,18],[9,10],[7,1],[20,-6],[4,1],[5,6],[3,2],[12,-1],[4,1],[6,4],[11,10],[7,2],[6,-2],[6,-4],[19,-22],[2,-5],[3,-9],[0,-3],[-2,-2],[-1,-4],[3,-5],[6,-7],[6,-10],[4,-12],[0,-15],[-1,-12],[-3,-11],[-4,-9]],[[29369,23853],[5,7],[11,28],[7,10],[7,2],[7,-2],[26,-15],[16,-2],[5,-4],[8,-15],[6,-9],[1,-4],[-1,-3],[-6,-8],[-1,-1],[-3,-1],[-6,-6],[-3,-1],[-3,1],[-8,5],[-5,3],[-3,2],[-3,1],[1,-5],[2,-4],[5,-7],[-8,-4],[-34,4],[-8,-6],[-9,-9],[-9,-6],[-8,4],[-7,1],[-6,4],[-2,9],[4,13],[5,6],[17,12]],[[29455,23932],[-4,-14],[-8,-8],[-10,-3],[-9,-1],[-7,8],[-22,14],[-3,7],[6,3],[35,10],[8,6],[4,1],[7,-2],[2,-3],[1,-6],[0,-12]],[[29463,23945],[6,8],[4,4],[3,2],[9,-2],[4,-9],[6,-30],[15,-56],[-4,-10],[-5,-6],[-5,-3],[-7,2],[-12,18],[-12,21],[-1,6],[0,10],[0,6],[3,-2],[8,-15],[4,-4],[5,-3],[-3,4],[-3,6],[-2,7],[-1,13],[-2,4],[-3,2],[-4,4],[-3,4],[-2,5],[0,6],[2,8]],[[29141,23941],[8,-21],[11,-7],[-1,-6],[-4,-10],[2,-12],[1,-8],[-6,-1],[-5,-9],[-4,-2],[-7,-1],[-6,0],[-6,3],[-3,4],[1,5],[3,9],[1,7],[-3,8],[-8,16],[-4,13],[0,5],[7,14],[7,12],[10,-2],[4,-6],[2,-11]],[[29554,23971],[0,-8],[-5,-13],[0,-5],[3,-14],[-4,-10],[-7,-6],[-7,0],[-7,3],[-7,8],[-6,11],[-2,14],[4,14],[7,2],[7,-1],[8,7],[3,4],[5,2],[5,-2],[3,-6]],[[29349,23935],[3,-4],[4,-9],[1,-8],[-4,-4],[-18,-5],[-5,3],[-4,5],[-8,5],[-4,5],[-2,4],[-4,15],[-10,24],[0,6],[1,6],[4,5],[5,3],[7,2],[6,1],[5,-2],[2,-7],[2,-9],[1,-11],[0,-7],[2,-7],[6,-6],[6,-4],[4,-1]],[[29310,24035],[4,-1],[2,-5],[2,-7],[0,-9],[-1,-9],[-3,-5],[-4,0],[-23,3],[-8,6],[-4,-1],[-4,-2],[-4,-1],[-4,2],[-3,4],[-2,5],[1,9],[2,1],[9,15],[1,4],[15,1],[5,-1],[15,-8],[4,-1]],[[29464,24040],[10,-19],[4,-12],[1,-8],[-26,-6],[-12,-7],[-23,-22],[-28,-15],[-15,-13],[-3,-2],[-3,-1],[-3,1],[-11,8],[-5,7],[-5,8],[-3,11],[-1,13],[3,7],[6,2],[6,0],[0,3],[-5,0],[-20,6],[-2,5],[0,20],[4,15],[9,3],[20,-4],[-3,7],[4,5],[7,3],[67,0],[15,-5],[12,-10]],[[29228,24068],[10,5],[3,-12],[-2,-20],[-3,-17],[0,-6],[-4,-4],[-6,-3],[-5,2],[-4,11],[-2,15],[-1,15],[1,14],[3,13],[4,6],[5,-4],[1,-15]],[[29539,24012],[5,-1],[4,1],[3,-1],[4,-6],[3,-11],[-4,-6],[-6,-1],[-6,0],[-18,-11],[-11,-3],[-5,10],[-5,12],[-14,24],[-2,7],[4,6],[3,-7],[1,10],[0,14],[-1,7],[-2,4],[2,10],[3,9],[4,6],[5,1],[6,-1],[6,1],[4,4],[6,4],[5,-4],[5,-9],[2,-9],[-5,0],[3,-7],[8,-13],[2,-8],[0,-11],[-3,-8],[-3,-6],[-3,-7]],[[29390,24121],[5,-7],[6,-21],[6,-5],[-6,-7],[-26,-4],[-14,-7],[-7,-1],[-6,3],[-3,9],[-3,11],[0,9],[11,6],[9,9],[11,-3],[12,7],[5,1]],[[29434,24117],[-6,13],[-24,11],[-6,16],[3,-1],[3,-3],[2,-4],[3,-4],[4,-1],[27,-2],[3,-2],[6,-6],[3,-1],[4,-5],[2,-11],[1,-27],[-4,-4],[-8,-2],[-16,1],[-6,0],[-9,4],[-7,7],[-2,9],[4,4],[23,8]],[[29335,24088],[-8,0],[-20,7],[-8,5],[-5,15],[-2,15],[2,13],[7,10],[3,2],[18,-3],[3,-4],[1,-6],[1,-9],[16,36],[4,5],[8,4],[4,1],[6,-5],[5,-2],[2,-4],[6,-16],[4,-17],[-5,-6],[-17,-4],[-15,-8],[-18,-4],[3,-5],[2,-6],[2,-7],[1,-7]],[[29503,24162],[1,-12],[-4,-7],[-6,-4],[-13,-3],[-6,4],[-4,9],[-2,15],[0,13],[2,11],[4,6],[7,-4],[3,-6],[2,-11],[2,-5],[4,-2],[7,-1],[3,-3]],[[29616,24064],[2,-2],[4,-10],[2,-4],[9,7],[3,1],[3,-3],[8,-11],[5,-4],[1,-3],[2,-1],[3,4],[1,7],[-2,4],[-6,7],[-3,9],[-4,14],[0,12],[6,6],[6,-2],[22,-21],[3,0],[2,3],[2,6],[0,6],[-1,6],[-3,2],[-7,1],[-14,6],[-5,5],[-6,21],[5,23],[10,17],[12,0],[1,-4],[4,-12],[2,-4],[0,2],[1,2],[1,1],[3,0],[3,1],[3,3],[4,-2],[4,-6],[6,-18],[4,-8],[-3,23],[-1,7],[-1,9],[-4,2],[-3,2],[-3,6],[2,11],[17,6],[5,7],[7,-8],[7,-11],[5,-14],[2,-12],[-2,-8],[-13,-36],[7,-1],[14,36],[9,9],[6,-2],[12,-8],[6,-1],[5,-6],[6,-25],[5,-6],[2,-5],[-2,-13],[-4,-12],[-16,-35],[-3,-5],[-25,4],[-11,6],[-11,11],[1,-12],[4,-7],[6,-4],[5,-7],[6,-6],[15,-3],[5,-5],[-2,-20],[-11,-19],[-25,-27],[-11,-15],[-2,-7],[-2,-2],[-2,-2],[-3,-2],[-2,-10],[-2,-4],[-26,-32],[-12,-9],[-18,-7],[-6,0],[-4,4],[-3,10],[-17,28],[-8,16],[-4,11],[1,5],[12,0],[4,2],[5,9],[6,6],[5,-3],[9,-14],[3,3],[7,3],[3,2],[0,5],[-3,1],[-22,19],[-2,-2],[-9,-10],[-6,-6],[-3,-2],[-3,0],[-3,2],[-2,6],[-2,7],[0,7],[-1,5],[-6,13],[-3,11],[-4,26],[-3,12],[11,24],[3,4],[3,1],[4,2],[3,1]],[[29520,24161],[-17,25],[12,11],[4,1],[9,0],[2,2],[2,6],[3,1],[5,-3],[1,-4],[-1,-7],[-1,-9],[-3,-2],[-17,0],[9,-6],[5,-5],[2,-7],[-2,-9],[-3,-2],[-5,2],[-5,6]],[[29436,24202],[8,-1],[14,5],[6,-4],[-2,-14],[2,-31],[-3,-12],[-14,19],[-5,4],[-6,2],[-4,2],[-5,8],[-5,5],[-3,5],[-2,6],[-2,15],[-2,7],[6,5],[6,-6],[5,-8],[6,-7]],[[29649,24182],[-6,4],[-4,8],[-1,11],[3,13],[2,4],[7,7],[3,2],[1,-3],[8,-8],[1,0],[10,-26],[0,-4],[-24,-8]],[[29482,24214],[-9,0],[-10,4],[-8,8],[-4,15],[3,3],[24,-9],[8,2],[2,4],[1,8],[1,2],[2,2],[2,2],[2,0],[2,-1],[1,-2],[0,-3],[4,-20],[-5,-9],[-9,-5],[-7,-1]],[[29337,24264],[5,2],[7,0],[6,-1],[5,-6],[3,-11],[1,-12],[-3,-7],[-4,4],[-7,4],[-11,2],[-9,5],[-2,11],[2,4],[2,3],[5,2]],[[29516,24255],[12,14],[6,0],[3,-14],[-3,-7],[-6,-9],[-7,-6],[-5,2],[-4,10],[-1,12],[2,5],[3,-7]],[[29414,24278],[-5,16],[4,6],[9,0],[8,-4],[0,4],[-2,4],[-3,8],[-1,8],[2,4],[5,-2],[3,-6],[11,-23],[4,-4],[19,-4],[3,-4],[3,-11],[-6,-1],[-9,0],[-7,-4],[-4,-3],[-3,0],[-3,-2],[-2,-9],[0,-8],[7,-25],[-8,0],[-4,1],[-3,3],[-14,23],[-2,8],[0,17],[-2,8]],[[29367,24324],[2,-4],[3,-5],[0,-5],[-2,-3],[-20,-7],[-13,18],[2,5],[6,3],[17,1],[3,-1],[2,-2]],[[29477,24342],[4,-8],[1,-4],[-3,-2],[-1,-1],[-1,-2],[0,-3],[1,-2],[2,-3],[1,1],[2,2],[2,0],[3,-2],[2,1],[1,-2],[0,-7],[-1,-6],[-3,-4],[-4,-3],[-3,-1],[-11,1],[-12,5],[-10,9],[-7,17],[17,22],[10,4],[10,-12]],[[29362,24405],[5,0],[19,-4],[-25,-8],[-2,2],[-2,5],[-1,2],[2,2],[4,1]],[[29515,24440],[5,7],[4,2],[3,-4],[-2,-11],[5,-3],[6,-6],[5,-8],[3,-8],[0,-8],[-2,-5],[-2,-6],[2,-9],[9,-12],[1,-7],[-2,-14],[-4,-9],[-5,-5],[-4,1],[-2,9],[1,12],[-1,8],[-3,7],[-7,8],[-4,3],[-2,3],[0,5],[-1,12],[-1,5],[-3,7],[-2,7],[0,8],[3,11]],[[29659,24405],[-4,6],[-10,5],[-2,7],[-1,19],[1,8],[3,10],[7,10],[9,8],[9,6],[7,-2],[4,-6],[1,-7],[-1,-17],[-1,-7],[-5,-16],[0,-6],[1,-9],[3,-6],[0,-5],[-6,-6],[-4,0],[-5,1],[-4,3],[-2,4]],[[29404,24514],[8,11],[20,8],[13,-11],[8,-8],[15,9],[-2,8],[5,3],[7,1],[4,2],[-1,11],[1,5],[2,-3],[18,-37],[5,-15],[3,-20],[-23,-2],[-7,2],[-10,9],[-2,3],[3,5],[8,1],[3,7],[-8,4],[-10,0],[-9,-6],[-4,-11],[5,-7],[11,-9],[3,-8],[-7,-2],[-11,-13],[-7,-1],[-3,4],[-2,6],[-2,6],[0,6],[-3,4],[-5,-1],[-9,-5],[-15,7],[-3,3],[-4,5],[-1,1],[0,1],[0,8],[0,4],[5,6],[1,9]],[[29217,24628],[1,10],[-3,14],[-1,14],[1,5],[4,-2],[7,-5],[6,3],[5,2],[1,9],[-1,9],[2,3],[6,-1],[6,-5],[4,-7],[9,-1],[8,-14],[10,-12],[7,-17],[-6,-5],[-26,-2],[-14,-8],[-4,-11],[-6,-3],[-4,1],[-4,10],[-8,13]],[[29552,25042],[6,14],[10,-3],[17,-15],[9,-2],[11,-5],[10,-9],[6,-12],[-3,0],[-2,-1],[-1,-2],[-2,-2],[-9,1],[-7,2],[-6,6],[-6,10],[-3,4],[-8,3],[-4,5],[-3,3],[-11,1],[-4,2]],[[29554,25254],[1,-9],[-2,-17],[0,-9],[-2,-1],[-11,9],[-5,1],[-4,-1],[-5,-2],[-4,-4],[-4,5],[-4,8],[-2,8],[5,4],[21,3],[4,3],[4,6],[3,2],[5,-6]],[[29607,25285],[0,-2],[-1,-5],[-1,-3],[0,-3],[0,-3],[0,-6],[-3,5],[-11,32],[-2,3],[-3,1],[-3,1],[-2,1],[-11,10],[-2,2],[-4,2],[-12,9],[-4,5],[-1,5],[0,6],[-1,12],[-1,4],[-3,3],[-1,4],[1,7],[5,4],[6,-1],[18,-6],[3,-8],[1,-10],[3,-9],[28,-55],[1,-5]],[[29698,25450],[2,-5],[2,-6],[1,-7],[-1,-6],[-5,-7],[-7,-6],[-7,-2],[-4,7],[-1,0],[-4,5],[-3,6],[0,3],[-1,3],[-2,7],[0,7],[2,3],[3,-3],[4,-14],[5,-3],[6,15],[4,7],[6,-4]],[[29849,25513],[-18,17],[-3,5],[2,9],[5,10],[5,9],[4,3],[9,-1],[4,-4],[1,-8],[1,-25],[0,-14],[-3,-7],[-7,6]],[[29351,24838],[-8,-6],[-4,13],[-6,5],[-2,14],[1,4],[8,8],[5,23],[-1,12],[2,3],[7,6],[5,3],[1,8],[-5,3],[-3,5],[-1,6],[2,8],[4,9],[5,-2],[5,4],[7,13],[5,8],[2,6],[1,7],[-6,5],[-2,7],[3,6],[7,2],[2,8],[-1,10],[-2,5],[-2,6],[0,7],[2,2],[3,1],[8,5],[5,12],[1,14],[0,11],[-3,7],[2,7],[3,7],[-2,7],[-2,6],[0,10],[5,4],[1,7],[0,9],[-4,8],[2,5],[5,4],[2,6],[1,13],[-1,18],[-2,22],[-2,15],[-2,12],[-1,4],[-2,3],[-1,4],[0,7],[-2,2],[-3,2],[-3,4],[1,10],[2,8],[0,12],[-2,7],[0,12],[10,42],[3,25],[-4,17],[-3,15],[3,14],[3,14],[7,13],[15,25],[4,13],[0,11],[-3,14],[1,5],[3,7],[2,6],[-1,6],[-1,5],[-2,31],[0,13],[1,12],[2,5],[-2,2],[3,4],[3,3],[2,2],[4,6],[1,4],[0,8],[-4,12],[-2,9],[-3,3],[-5,3],[-1,5],[0,8],[-1,9],[3,4],[3,6],[1,7],[1,3],[4,0],[2,-4],[2,-6],[2,-2],[3,-2],[5,-5],[4,-2],[1,-2],[1,-1],[2,2],[1,3],[1,9],[0,2],[5,1],[5,-4],[3,-9],[1,-10],[-3,-12],[-6,0],[-12,9],[-6,4],[-3,0],[-3,-4],[-1,-6],[0,-5],[2,-3],[1,-4],[4,-5],[21,-9],[5,-4],[6,-3],[6,3],[2,14],[4,4],[6,-8],[7,-12],[2,-6],[3,3],[-1,6],[-4,9],[0,8],[9,12],[10,10],[5,7],[4,-3],[6,-8],[6,-3],[4,15],[4,4],[4,1],[3,0],[4,-4],[3,-6],[5,-15],[2,4],[3,0],[2,-1],[2,-3],[0,-4],[-7,-5],[-2,-3],[-3,-5],[0,-3],[0,-1],[2,-8],[2,-4],[1,-3],[0,-3],[-2,-5],[-1,-8],[-3,0],[-3,2],[-3,-2],[-2,-10],[3,-5],[5,-3],[5,-4],[10,-31],[3,-4],[4,-3],[4,-9],[3,-10],[0,-11],[-3,-5],[-10,-9],[-3,-7],[4,-18],[9,-12],[20,-17],[-1,-3],[-2,-6],[-1,-3],[4,-6],[3,-8],[0,-11],[-1,-12],[-2,-9],[-1,-5],[-2,-4],[-2,-1],[-6,5],[-2,1],[-6,-2],[-9,-11],[-6,-2],[-18,1],[-5,-1],[-17,-12],[-4,-5],[-4,-9],[-1,-8],[2,-7],[1,-8],[-1,-12],[-2,-8],[-1,-6],[2,-11],[4,-7],[10,-10],[5,-7],[-3,-3],[-24,-13],[-6,-1],[-6,4],[-6,6],[-4,11],[3,4],[2,6],[4,14],[-2,4],[-11,-12],[-4,-9],[-2,-13],[1,-5],[5,-8],[2,-3],[-1,-8],[-4,-13],[-1,-6],[2,-13],[6,-9],[7,-8],[8,-12],[3,-2],[7,0],[0,-3],[2,-6],[4,-6],[1,-1],[9,-26],[2,-5],[3,-2],[7,-2],[6,-6],[16,-19],[5,-7],[2,-10],[1,-15],[-1,-14],[-5,-6],[-6,-2],[-11,1],[-4,1],[-7,6],[-3,-11],[-8,2],[-9,6],[-7,3],[0,-4],[15,-14],[2,-5],[0,-5],[-2,-8],[0,-5],[2,-3],[3,0],[2,-1],[2,-11],[3,-2],[6,1],[4,-1],[1,-4],[0,-5],[0,-6],[14,-37],[-7,1],[-11,10],[-6,-1],[-1,-8],[12,-2],[11,-12],[11,-16],[-4,-16],[-6,-2],[-6,5],[-6,6],[-5,3],[-7,-2],[-11,-11],[-19,-7],[-2,4],[-2,7],[-1,9],[-7,-1],[-4,-5],[6,-11],[3,-20],[-1,-14],[-2,-10],[3,-10],[5,-7],[5,-5],[3,-6],[6,-13],[3,-9],[0,-9],[-4,-4],[-7,0],[-7,0],[6,-6],[4,-8],[6,-6],[1,-8],[-3,-10],[-8,-4],[-6,-3],[-5,4],[-3,8],[-5,2],[-6,5],[-1,-10],[1,-8],[0,-11],[-4,0],[-4,4],[-2,-7],[-3,-5],[-9,1],[-3,12],[-5,5],[-3,10],[-3,6],[-7,0],[-5,-2],[-6,-12],[-3,9],[-6,6],[-8,1],[-7,-9],[-1,-14],[-4,4],[-5,14],[-4,8],[-10,9],[-10,-2],[-4,9],[-9,2],[-12,4],[-6,14],[-6,9]],[[29698,25689],[-1,5],[2,5],[2,5],[1,4],[-4,24],[0,14],[5,6],[4,-6],[8,-36],[4,-10],[2,-11],[-2,-8],[-7,-2],[-8,3],[-3,3],[-3,4]],[[29712,18220],[17,7],[5,-1],[1,-6],[-3,-6],[-3,-12],[-4,-5],[-7,3],[-7,2],[-5,-4],[-8,-1],[-3,5],[5,9],[7,9],[5,0]],[[30443,18444],[12,4],[6,8],[7,3],[6,-9],[0,-15],[-2,-20],[-6,-14],[-8,-3],[-15,3],[-18,16],[-12,19],[2,11],[7,2],[12,-9],[9,4]],[[30364,19173],[16,8],[3,-6],[-4,-6],[-4,-14],[-8,-10],[-13,-12],[-11,-1],[-7,9],[6,8],[10,11],[12,13]],[[29325,19376],[4,0],[6,-9],[3,-14],[6,-17],[2,-17],[1,-13],[-5,-4],[-14,12],[-12,11],[-6,11],[-2,12],[7,9],[4,4],[6,15]],[[29312,19491],[-2,-11],[4,-15],[-5,-14],[-1,-7],[11,-3],[-3,-11],[0,-15],[-6,-2],[-7,9],[-8,13],[0,21],[2,23],[6,16],[9,-4]],[[29495,19755],[7,6],[4,11],[2,5],[9,-3],[5,-10],[3,-20],[3,-15],[0,-21],[-6,3],[2,-11],[2,-11],[-2,-12],[-7,-9],[-8,3],[-11,15],[-9,22],[0,16],[-11,9],[-10,1],[-8,4],[-2,15],[-8,17],[4,12],[8,6],[10,3],[6,-7],[5,-9],[9,-12],[3,-8]],[[29344,20067],[4,-3],[5,-9],[5,-11],[4,-11],[-3,-14],[-8,-5],[-10,5],[-7,3],[-1,12],[2,12],[-5,3],[4,11],[3,8],[7,-1]],[[29175,20689],[12,7],[10,-12],[-11,-24],[-9,-13],[2,-18],[-6,-26],[-19,-26],[-19,4],[-16,4],[1,19],[13,29],[13,20],[29,36]],[[29326,21087],[-3,7],[1,18],[-2,13],[2,10],[-1,5],[-8,10],[-1,4],[0,5],[2,4],[2,3],[2,5],[1,5],[0,5],[1,12],[1,5],[3,1],[2,-3],[1,-3],[2,-7],[3,-2],[4,0],[3,-1],[5,-7],[13,-32],[2,-8],[2,-4],[1,-6],[-1,-3],[-22,-23],[-2,-8],[-5,-7],[-5,-3],[-3,5]],[[29264,22163],[6,-2],[9,-2],[10,-1],[9,-4],[2,-15],[-2,-18],[-5,-2],[-14,5],[-7,-9],[-1,-15],[1,-10],[-7,-1],[-4,12],[-4,7],[-4,17],[0,17],[0,12],[11,9]],[[29077,22822],[11,1],[8,1],[10,4],[12,-2],[8,-11],[3,-18],[4,-12],[-3,-18],[-9,-2],[-12,18],[-12,5],[-5,11],[-11,6],[-10,7],[6,10]],[[29374,24797],[1,-1],[1,-11],[-2,-11],[2,-6],[4,-4],[0,-4],[-4,0],[-2,-3],[-1,-6],[-3,2],[-5,4],[1,6],[1,11],[1,11],[0,6],[6,6]],[[29530,24893],[5,-1],[5,-4],[2,-19],[-4,-10],[-7,9],[-9,9],[-2,14],[3,7],[7,-5]],[[29719,25185],[4,-3],[2,-10],[2,-10],[7,-2],[0,8],[4,4],[3,-4],[1,-19],[2,-18],[-5,-4],[-5,-9],[-4,10],[-4,17],[-9,17],[-4,12],[0,10],[6,1]],[[29637,25225],[8,0],[1,0],[9,-2],[1,-12],[-6,-4],[-10,2],[-8,7],[-9,8],[3,5],[11,-4]],[[29477,27752],[2,-5],[1,-10],[-2,-9],[-2,-5],[-2,-3],[-2,0],[-3,3],[-5,8],[-5,14],[-1,9],[0,11],[-1,10],[0,5],[6,-6],[14,-22]],[[29572,28564],[2,10],[3,-2],[0,-8],[0,-10],[4,-7],[6,-4],[4,-7],[3,-7],[4,-6],[-5,2],[-3,3],[-5,5],[-5,-5],[-1,-12],[-1,-6],[-3,7],[-2,16],[-4,8],[2,6],[1,11],[0,6]],[[30691,40102],[0,1],[1,42],[-1,21],[-3,17],[-4,11],[-6,12],[-11,18],[-4,3],[-15,4],[5,15],[4,33],[3,13],[1,1],[5,2],[2,1],[15,28],[8,12],[8,6],[8,3],[7,6],[6,14],[2,9],[-2,4],[-2,2],[-1,3],[1,6],[2,4],[12,14],[3,8],[7,33],[29,62],[4,12],[5,32],[2,9],[5,5],[10,2],[5,3],[16,17],[5,7],[4,13],[4,9],[-8,21],[-1,10],[1,18],[-1,35],[1,12],[2,10],[8,19],[9,10],[31,25],[6,20],[-3,16],[-6,9],[-14,12],[-12,26],[-6,8],[-8,-6],[-9,6],[-3,1],[-3,-2],[-5,-9],[-3,-3],[-8,0],[-6,5],[-6,8],[-5,9],[-10,25],[-6,32],[-12,61],[-12,61],[-12,61],[-11,61],[-4,18],[-1,18],[2,17],[18,56],[1,12],[1,12],[2,12],[3,10],[3,3],[8,6],[2,2],[0,6],[-3,17],[1,10],[5,12],[5,10],[9,7],[4,22],[5,1],[7,-1],[4,7],[1,11],[-7,14],[-7,20],[-4,9],[-17,25],[-4,10],[-16,51],[-5,9],[-6,11],[-1,11],[1,11],[4,22],[1,4],[-1,49],[0,10],[3,8],[6,8],[15,9],[5,5],[4,17],[1,76],[4,12],[5,1],[7,-3],[6,0],[1,6],[0,28],[0,10],[2,2],[5,3],[2,2],[11,26],[5,9],[18,20],[6,11],[-1,12],[-4,12],[-2,10],[-1,23],[1,12],[1,10],[7,10],[10,5],[18,5],[6,12],[-2,21],[-6,40],[-2,20],[-2,9],[-3,9],[-15,20],[-3,11],[-2,19],[0,22],[-1,20],[-5,15],[-3,23],[-1,8],[1,9],[2,7],[0,7],[-3,9],[-15,25],[-6,17],[4,14],[3,0],[9,-3],[3,1],[2,7],[0,7],[0,7],[1,8],[2,7],[6,13],[2,8],[2,14],[2,15],[-1,13],[3,116],[-4,47],[0,23],[2,71],[-1,8],[-3,58],[0,26],[1,13],[9,14],[3,15],[3,11],[7,-2],[3,17],[4,12],[6,8],[23,13],[2,5],[6,27],[-2,6],[-9,6],[-3,5],[0,10],[3,8],[4,7],[8,9],[4,8],[3,9],[3,9],[1,11],[2,6],[3,3],[-2,5],[-7,25],[-29,108],[-29,107],[-29,107],[-29,107],[-29,108],[-29,107],[-28,107],[-29,107],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4]],[[30673,43984],[20,-2],[11,2],[19,10],[9,-3],[9,-6],[10,-3],[16,1],[22,-5],[10,-5],[10,2],[4,-2],[21,-19],[1,0],[3,0],[1,0],[6,1],[14,-8],[6,-1],[7,3],[8,6],[7,3],[9,-5],[4,-5],[-4,-13],[-3,-15],[-2,-15],[1,-24],[1,-6],[2,-3],[5,0],[40,17],[7,8],[15,22],[12,8],[4,2],[5,0],[5,-2],[4,2],[9,18],[5,5],[13,3],[5,4],[5,9],[6,11],[4,13],[4,12],[7,35],[4,12],[16,35],[10,39],[4,9],[6,10],[9,9],[4,3],[5,1],[8,-3],[33,3],[4,-1],[4,-2],[5,-7],[11,-18],[6,-4],[9,5],[5,17],[2,21],[3,18],[3,7],[9,14],[3,9],[6,18],[3,8],[4,8],[6,4],[10,10],[11,8],[6,8],[4,9],[4,11],[2,7],[0,5],[0,4],[3,6],[3,1],[12,1],[3,1],[3,2],[2,4],[1,5],[-2,13],[1,5],[4,5],[6,2],[12,1],[5,-2],[11,-6],[4,0],[4,4],[2,7],[1,7],[2,4],[3,2],[6,1],[3,1],[13,15],[45,97],[36,60],[6,6],[22,18],[3,4],[1,5],[1,6],[1,6],[2,5],[3,2],[33,12],[17,-3],[5,2],[6,4],[11,14],[5,4],[27,8],[5,4],[9,12],[4,4],[16,4],[1,-1],[1,-3],[1,-2],[2,-1],[1,3],[2,7],[1,1],[4,2],[2,-1],[3,-2],[7,-9],[4,-2],[5,3],[13,16],[5,3],[5,1],[4,-1],[11,-6],[4,0],[3,4],[4,10],[1,-4],[1,-6],[2,-4],[1,-3],[3,1],[1,5],[0,7],[0,4],[2,12],[2,3],[2,-8],[0,-6],[1,-4],[2,-4],[2,-2],[11,10],[4,0],[-1,-13],[-1,-8],[1,-2],[2,1],[2,-1],[1,1],[3,2],[2,0],[1,-2],[3,-6],[1,-2],[8,-12],[4,-4],[6,-3],[3,1],[1,3],[1,3],[1,5],[1,2],[0,5],[0,3],[2,1],[3,2],[1,1],[3,7],[3,9],[1,5],[1,10],[2,5],[13,22],[4,9],[2,1],[8,0],[5,-4],[7,-14],[4,-18],[1,-2],[4,-27],[2,-6],[4,-7],[4,-8],[1,-9],[-1,-14],[-6,-24],[-2,-13],[-1,-24],[1,-24],[2,-23],[5,-31],[1,-12],[1,-26],[1,-6],[2,-14],[1,-6],[-1,-6],[-5,-15],[-3,-29],[-3,-14],[-10,-10],[-4,-12],[-3,-13],[-1,-11],[-1,0],[1,-4],[0,-2],[2,-2],[-7,-25],[-4,-9],[-7,-3],[0,-4],[3,-10],[1,-4],[0,-3],[-2,-5],[0,-4],[0,-5],[1,-6],[1,-5],[1,-3],[1,-6],[-2,-29],[0,-9],[5,-11],[5,-7],[4,-8],[1,-17],[0,-10],[-2,-23],[-4,-27],[1,-8],[11,-6],[5,-7],[4,-9],[3,-9],[1,-51],[1,-3],[2,-3],[1,-5],[0,-7],[-1,-5],[-2,-4],[-2,-3],[-3,-4],[-4,-14],[0,-11],[2,-10],[1,-12],[-3,-11],[-10,-17],[-5,-11],[0,-14],[3,-9],[5,-7],[2,-8],[-2,-9],[-3,-5],[-3,-7],[1,-14],[3,-11],[6,-9],[5,-6],[2,-4],[-1,-7],[-4,-12],[-2,-7],[0,-6],[0,-5],[9,-51],[8,-17],[10,6],[6,-8],[3,-5],[2,-8],[0,-5],[-2,-11],[0,-8],[1,-8],[2,-2],[2,0],[3,-2],[6,-9],[2,-5],[-7,-5],[-1,-5],[2,-15],[-1,-6],[-3,-9],[0,-5],[0,-22],[2,-8],[3,-9],[5,-8],[4,-2],[2,6],[2,29],[1,7],[2,5],[4,2],[0,-5],[0,-14],[4,-8],[5,-4],[4,-6],[2,-19],[4,-13],[1,-7],[1,-5],[-1,-12],[0,-6],[2,-13],[1,-5],[3,-3],[1,0],[3,-3],[2,-6],[0,-7],[-1,-6],[-4,-11],[0,-11],[2,-10],[3,-7],[4,-4],[4,-3],[12,-1],[6,-2],[5,-5],[6,-2],[7,5],[3,-3],[5,-2],[5,-4],[2,-9],[1,-12],[3,-11],[9,-20],[-2,-8],[1,-7],[4,-3],[3,2],[1,5],[1,16],[1,3],[4,1],[1,-3],[2,-10],[0,-5],[-2,-7],[0,-4],[0,-3],[3,-5],[0,-2],[3,-6],[7,-8],[13,-13],[4,-1],[7,0],[2,-1],[4,-7],[6,-7],[0,2],[0,2],[1,0],[4,-1],[1,-1],[5,-8],[1,-5],[0,-6],[0,-14],[-2,-12],[-5,-24],[1,-10],[2,-3],[6,-4],[2,-3],[3,-6],[3,-12],[2,-6],[4,-9],[4,-7],[5,-5],[7,-2],[11,5],[4,-3],[3,-18],[3,-2],[2,2],[2,1],[2,2],[3,7],[2,3],[6,1],[5,-3],[4,-6],[8,-17],[3,-2],[2,6],[5,12],[4,-10],[17,-1],[6,-17],[5,1],[9,7],[3,-3],[3,-5],[3,-4],[5,0],[3,6],[2,5],[2,6],[9,24],[0,3],[5,2],[8,5],[4,2],[40,-12],[1,-2],[15,-17],[11,-20],[5,-4],[6,-2],[4,-1],[3,-1],[3,-2],[2,-4],[2,-7],[1,-6],[0,-5],[1,-6],[2,-4],[3,-2],[2,-3],[1,-6],[1,-4],[10,-16],[7,-4],[3,-2],[8,-14],[3,-3],[20,1],[3,1],[1,5],[3,5],[6,9],[1,0],[3,-1],[1,1],[2,2],[1,7],[1,3],[8,7],[1,1],[3,-2],[5,-5],[9,-4],[3,-8],[2,-22],[1,-3],[2,-3],[1,-4],[-3,-7],[0,-3],[0,-3],[1,-3],[7,-11],[3,-7],[1,-7],[1,-13],[2,-11],[3,-9],[4,-5],[3,-2],[2,-1],[3,2],[2,3],[2,2],[2,-4],[1,-6],[14,-39],[1,-4],[2,-3],[3,-1],[2,0],[2,-2],[2,-3],[0,-5],[2,-9],[3,-9],[5,-7],[5,-5],[1,11],[3,4],[5,0],[5,1],[3,5],[3,5],[4,1],[5,-7],[3,-5],[2,-5],[1,-5],[0,-14],[1,-3],[24,-22],[18,1],[5,-2],[4,-5],[8,-19],[0,-3],[1,-6],[1,-1],[3,0],[1,0],[5,-6],[2,-2],[13,-3],[4,1],[3,6],[6,-5],[4,2],[4,4],[11,6],[3,1],[3,-2],[7,-11],[1,14],[2,-2],[7,-15],[3,-3],[2,2],[2,-1],[0,-9],[0,-39],[1,-11],[3,-8],[6,-9],[12,-28],[4,-4],[0,-3],[5,-14],[1,-2],[6,-6],[5,-6],[13,-28],[3,-4],[6,-6],[2,-4],[1,-5],[6,-39],[3,-6],[6,-2],[6,2],[5,4],[6,2],[5,-5],[5,7],[7,5],[7,3],[19,4],[1,0],[2,-1],[7,-15],[3,-3],[13,-6],[13,3],[12,9],[19,21],[4,-1],[4,-4],[10,-4],[6,-7],[3,-3],[3,0],[6,4],[19,-1],[3,3],[1,12],[4,6],[12,4],[1,2],[4,4],[3,2],[2,-6],[0,-24],[5,-12],[12,-5],[14,-2],[9,-4],[5,-10],[2,-3],[19,-17],[21,-35],[21,-33],[9,-11],[7,-2],[1,-2],[2,-3],[1,-7],[1,-3],[3,-2],[21,-11],[5,-6],[2,-11],[0,-16],[2,-16],[2,-15],[3,-13],[2,-5],[6,-10],[1,-4],[-1,-6],[1,-4],[3,-2],[2,-2],[0,-5],[0,-4],[-2,-11],[-4,-28],[-3,-13],[-4,-9],[-7,-4],[-2,-3],[-2,-8],[-1,-13],[0,-14],[1,-8],[4,-13],[0,-15],[-1,-16],[0,-16],[3,-11],[15,-26],[2,-10],[4,-37],[9,-42],[2,-25],[-9,-6],[5,-19],[14,-19],[3,-13],[1,-36],[1,-49],[1,-48],[1,-49],[1,-49],[1,-38],[-1,-7],[-32,-1],[-54,-1],[15,-27],[19,-47],[30,-75],[26,-63],[4,-13],[2,-14],[4,-88],[5,-120],[3,-88],[2,-63],[2,-67],[5,-26],[9,-4],[19,-2],[53,-4],[53,-4],[53,-4],[53,-4],[53,-4],[53,-4],[52,-4],[53,-3],[20,-2],[7,2],[5,6],[2,5],[4,15],[2,3],[12,-1],[3,-5],[2,-58],[-2,-8],[-6,-11],[0,-10],[5,-22],[-3,-22],[-28,-64],[-5,-18],[-2,-21],[1,-25],[6,-45],[1,-23],[-1,-4],[-2,-11],[-1,-5],[0,-7],[3,-30],[5,-18],[1,-10],[2,-42],[1,-9],[3,-10],[2,-13],[0,-53],[2,-23],[5,-17],[10,-12],[9,-2],[3,-2],[2,-3],[5,-9],[3,-4],[2,-1],[5,-2],[2,-2],[3,-9],[5,-19],[4,-7],[4,-2],[3,-1],[3,-2],[4,-5],[7,-17],[3,-4],[10,-9],[4,-4],[12,-20],[8,-7],[10,-6],[11,-1],[8,5],[6,2],[5,-2],[6,-5],[4,-8],[3,-13],[0,-15],[0,-14],[1,-9],[-1,-23],[1,-11],[2,-11],[3,-8],[4,-7],[4,-5],[4,-4],[-2,-19],[1,-7],[5,-12],[4,-15],[-1,-10],[-8,-2],[25,-92],[15,-72],[9,-36],[11,-13],[6,0],[5,-1],[2,-6],[0,-13],[-19,-1],[-6,-2],[-3,-7],[-5,-29],[-13,-85],[-13,-84],[-13,-85],[-13,-84],[-3,-20],[11,-2],[3,-5],[1,-12],[2,-35],[1,-26],[-15,-2],[-5,-6],[-6,-28],[-9,-36],[-19,-81],[-19,-80],[-9,-37],[-3,-15],[-7,-32],[-8,-32],[-3,-15],[-10,-42],[2,-16],[21,-39],[23,-41],[28,-52],[-3,-7],[-3,-10],[-4,-9],[-7,-6],[-7,4],[-4,1],[-2,-3],[-1,-5],[-2,-5],[-2,-3],[-4,-1],[-7,-6],[-8,-25],[-8,-6],[-1,-2],[-4,-10],[-1,-4],[-4,-4],[-12,-8]],[[33844,38528],[0,15],[4,31],[1,13],[-1,25],[1,13],[-1,18],[-5,34],[0,19],[1,20],[-1,8],[-3,7],[-11,14],[-26,32],[-26,33],[-26,32],[-26,32],[-26,33],[-25,32],[-26,33],[-26,32],[-14,18],[-8,11],[-9,12],[-5,3],[-23,-1],[-52,-1],[-52,-2],[-53,-1],[-52,-1],[-23,-1],[-42,-18],[-94,-41],[-94,-42],[-94,-41],[-94,-41],[-6,-2],[-13,-4],[-13,-4],[-6,-2],[-25,-7],[-4,-4],[-2,-7],[-5,-29],[-8,-44],[-8,-43],[-8,-44],[-8,-43],[-3,-15],[-4,-16],[-2,-7],[-1,-8],[-4,-15],[-5,-14],[-4,-15],[-5,-14],[-5,-14],[-12,-36],[-12,-36],[-13,-36],[-12,-36],[-6,-17],[-6,-17],[-10,-31],[-3,-16],[1,-54],[0,-52],[0,-57],[1,-86],[-1,-39],[-9,-61],[-9,-61],[-10,-67],[-10,-68],[-9,-63],[-13,-86],[-11,-67],[-12,-81],[-7,-52],[-8,-56],[-6,-30]],[[32597,37302],[-3,2],[0,4],[-1,5],[-1,6],[-3,7],[-12,16],[-13,13],[-4,8],[-2,11],[0,19],[-2,7],[1,5],[0,6],[-2,22],[-1,6],[-4,1],[-12,5],[-41,-4],[0,-1],[-88,1],[-87,1],[-11,-3],[-4,-5],[-13,-23],[-3,3],[-12,20],[-5,5],[-26,4],[-8,-3],[-4,-4],[0,-1],[-1,-4],[-2,-13],[-1,-12],[-1,-4],[-2,-5],[-3,-2],[-1,-1],[-2,-2],[-2,-10],[-5,-33],[-8,-44],[-2,-6],[-6,-6],[-2,-5],[-21,-107],[-6,-19],[-15,-27],[-4,-14],[-12,-89],[0,-43],[-2,-11],[-7,-46],[1,-7],[-6,4],[-1,28],[-3,8],[2,15],[-1,16],[-4,13],[-6,5],[-3,5],[-7,32],[-3,4],[-2,2],[-2,3],[-1,9],[0,7],[2,11],[0,6],[1,7],[2,5],[3,6],[0,9],[-15,30],[-4,11],[-2,13],[-1,4],[-5,7],[-2,4],[0,6],[3,11],[-1,7],[-4,6],[-5,8],[-4,11],[3,14],[3,8],[2,8],[0,10],[-2,12],[-3,7],[-7,18],[-3,4],[-5,2],[-7,6],[-5,8],[-6,2],[-2,2],[-2,-1],[-5,-5],[-3,-1],[-11,6],[-19,22],[-53,24],[-47,-1],[-74,-2],[-15,3],[-19,6],[-2,-1],[-2,-2],[-1,-3],[-2,-2],[-39,-9],[-8,6],[-8,11],[-36,84],[-6,7],[-26,9],[-1,3],[-3,28],[-9,19],[-12,12],[-23,15],[-5,-3],[-14,-98],[-2,-55],[-1,-9],[-2,-7],[-1,0],[-1,1],[-3,-1],[-3,-3],[-2,-5],[-2,-5],[-1,-6],[-7,-10],[-36,-22],[-33,-17],[-1,-3],[-1,-4],[0,-4],[-2,-1],[-4,3],[-6,1],[-3,3],[-3,0],[-4,-3],[-6,-11],[-4,-12],[-2,-14],[-3,-44],[-2,-13],[-4,-9],[0,-5],[1,-17],[0,-6],[-3,-5],[-31,-19],[-7,-8],[-6,-12],[-3,-8],[-3,-4],[-5,-2],[-6,1],[-5,-1],[3,-55],[-1,-13],[-3,-9],[-21,-33],[-8,-19],[-14,-47]],[[30446,39610],[-7,12],[-14,18],[-17,26],[-9,11],[-10,11],[-10,11],[-14,15],[-13,27],[-1,3],[-2,6],[-1,4],[-2,1],[-3,1],[-1,2],[-16,30],[-5,6],[-10,6],[-3,6],[-4,24],[-3,11],[-4,6],[-4,3],[-12,19],[-6,6],[-16,11],[-6,1],[-14,29],[-6,7],[-4,7],[-8,20],[-4,7],[-14,12],[-10,15],[-6,6],[-6,3],[-9,-3],[-1,-1],[-1,6],[2,7],[4,11],[2,14],[-1,12],[-2,12],[-2,59],[-2,11],[-3,24],[-2,20],[-1,2],[-2,2],[-2,2],[-7,21],[-10,14],[-1,2],[-4,18],[-4,7],[-5,3],[-11,4],[-6,5],[-3,3],[-5,9],[-4,7],[-2,1],[-46,24],[-10,10],[-9,15],[-13,31],[-7,13],[-15,19],[-6,5],[-6,4],[-18,2],[-2,3],[-2,5],[1,13],[-1,6],[-4,8],[-11,13],[-2,5],[-3,11],[-7,6],[-13,6],[-7,9],[-1,10],[0,12],[-2,11],[-16,37],[-6,10],[-3,2],[-3,0],[-2,0],[-3,4],[-3,9],[-2,3],[-2,2],[-2,1],[-6,9],[-3,2],[-11,4],[-17,15],[-29,-1],[-24,19],[-30,44],[-48,35],[-9,21],[-12,13],[-11,14],[-5,4],[-10,0],[-6,3],[-4,5],[-4,3],[-4,-4],[-3,8],[-3,25],[-3,5],[-2,3],[-8,4],[-16,16],[-17,8],[-32,23],[-22,7],[-7,-10],[0,15],[-5,8],[-2,6],[-2,4],[-10,7],[-20,18],[-8,11],[-18,25],[-19,29],[-8,15],[0,7],[1,7],[-2,9],[-3,8],[-8,8],[-24,27],[-4,2],[-12,4],[-5,6],[-3,9],[-1,6],[-4,4],[-6,5],[-11,-5],[-10,5],[-9,8],[-13,17],[-1,3],[-1,12],[0,6],[-2,5],[0,8],[-1,8],[-8,5],[-13,9],[-40,36],[-20,22],[-26,23],[-6,17],[-31,33],[-7,12],[-4,3],[-4,-2],[-2,-1],[-2,1],[-5,6],[-8,19],[-3,5],[-6,4],[-5,2],[-4,4],[-2,9],[-1,2],[-5,3],[-1,4],[1,2],[4,4],[5,3],[1,8],[-4,13],[-8,11],[-11,10],[-8,15],[6,0],[3,3],[1,6],[0,7],[-2,5],[-2,6],[-13,26],[-6,5],[-14,5],[-4,6],[-3,10],[-2,14],[-13,39],[-2,12],[-2,6],[-10,14],[-3,6],[-1,4],[1,19],[-1,4],[-13,20],[-22,23],[-8,8],[-6,6],[-6,9],[-12,21],[-14,14],[-1,3],[-3,3],[-2,3],[-3,1],[-3,3],[-2,5],[-2,7],[-1,5],[-2,4],[-2,3],[-12,13],[-4,8],[1,13],[-1,14],[-1,14],[-3,13],[-5,14],[-3,4],[-1,6],[1,6],[2,9],[-1,5],[-3,14],[-6,6],[-10,12],[-3,7],[-5,16],[-4,8],[-3,3],[-7,1],[-3,2],[-1,5],[-3,18],[7,2],[3,6],[0,6],[-2,7],[-3,11],[-1,7],[-2,12],[-4,11],[-4,5],[-5,3],[-2,8],[-2,9],[-2,8],[-3,4],[-10,8],[0,-13],[-6,-18],[-5,20],[2,15],[0,22],[-2,14],[2,4],[1,10],[3,4],[-2,7],[1,4],[1,7],[-3,7],[-1,10],[3,2],[0,15],[-1,10],[-5,6],[-1,8],[0,4],[1,4],[0,5],[-1,3],[-3,2],[-2,-3],[-1,-10],[-2,-5],[-3,3],[-5,-2],[-5,7],[-6,0],[0,16],[1,8],[4,19],[3,8],[-2,8],[3,4],[5,-2],[5,8],[5,0],[3,-1],[2,-7],[-3,-8],[-1,-8],[3,-5],[4,-4],[5,-8],[2,6],[0,13],[2,12],[4,26],[2,18],[0,12],[1,16],[3,20],[4,18],[4,49],[-2,45],[-2,21],[-7,42],[-15,42],[-9,18],[-17,49],[-23,60],[-9,21],[-2,15],[-4,13],[-3,26],[1,21],[-1,24],[-4,15],[-3,7],[-19,35],[-5,14],[-12,48],[-3,8],[1,16],[-1,5],[-2,6],[-4,9],[-9,25],[-12,17],[-5,8],[-4,16],[6,16],[2,22],[-2,22],[-10,17],[-8,30],[-26,31],[-16,14],[-3,0],[-1,3],[-5,10],[-2,6],[0,8],[1,5],[1,5],[0,6],[-4,23],[-10,15],[-7,5],[-5,3],[-12,3],[3,11],[3,8],[3,9],[1,15],[-2,39],[-2,14],[-2,17],[-1,6],[-5,14],[-1,13],[1,14],[-4,14],[0,6],[5,-2],[3,8],[-1,12],[-6,27],[-2,12],[-3,14],[-4,12],[-4,4],[-3,3],[-4,6],[-4,14],[-1,4],[2,5],[0,5],[-1,5],[-5,11],[-4,15],[-2,7],[-3,3],[-3,2],[-2,4],[-3,10],[-5,7],[-12,11],[-9,16],[-43,48],[-7,12],[-4,6],[1,8],[-1,13],[-1,12],[2,4],[-1,5],[2,5],[3,0],[3,-2],[3,4],[3,2],[1,9],[0,16],[-4,13],[-3,9],[2,7],[-6,13],[1,6],[-3,11],[2,5],[-3,11],[-5,14],[1,5],[3,5],[-2,12],[-3,10],[1,8],[-2,11],[-3,11],[-5,11],[-4,13],[1,10],[-7,12],[-5,9],[0,9],[1,5],[-5,14],[1,5],[-8,15],[-5,7],[-1,7],[-2,6],[-2,5],[-6,12],[-17,63],[0,7],[-3,14],[-6,9],[-7,13],[0,9],[-3,13],[-5,15],[-4,11],[-1,6],[3,5],[-1,7],[-3,6],[-10,15],[-1,11],[0,16],[-5,9],[-3,5],[0,10],[-2,12],[1,7],[-3,8],[-1,8],[-5,13],[-12,23],[-3,12],[-2,6],[0,6],[3,1],[1,3],[0,8],[-3,7],[1,3],[0,7],[0,5],[-5,13],[-1,14],[-1,6],[-3,8],[-1,7],[-3,2],[-1,3],[-1,1],[-1,3],[1,3],[2,4],[-1,6],[0,7],[0,7],[-1,10],[-2,5],[-1,10],[2,12],[2,8],[0,19],[-11,20],[-9,22],[-1,14],[-5,10],[-2,11],[-3,6],[-3,12],[-5,10],[-1,18],[2,17],[-5,6],[-2,10],[1,8],[-3,9],[-2,14],[3,8],[3,7],[-2,10],[-4,0],[-6,9],[-1,16],[1,10],[2,5],[2,3],[-3,3],[-3,7],[-2,3],[-2,7],[-3,3],[-4,-1],[-2,-3],[-7,15],[0,6],[-1,6],[-2,4],[-2,5],[2,4],[3,4],[3,2],[2,11],[0,12],[-2,14],[-5,7],[-6,4],[-4,-4],[-2,-3],[-1,-5],[1,-5],[0,-7],[2,-12],[-1,-7],[-3,2],[-3,16],[-6,13],[-4,9],[0,6],[-1,4],[2,2],[4,-3],[7,-4],[1,5],[2,7],[0,12],[-3,14],[-3,9],[-3,7],[-4,0],[-5,-1],[-3,4],[-2,9],[0,10],[2,10],[1,6],[-2,5],[-7,5],[0,7],[2,-2],[2,4],[0,13],[-2,15],[-2,9],[-3,13],[-2,8],[-4,11],[-6,16],[-13,37],[0,5],[0,6],[2,5],[4,5],[0,17],[-1,13],[1,9],[-2,16],[-3,23],[-8,24],[-9,23],[-11,22],[-6,10],[-9,7],[-4,7],[-3,9],[1,7],[3,0],[2,-2],[3,5],[2,13],[-1,12],[-17,53],[0,13],[-7,20],[1,8],[-9,22],[-29,54],[0,14],[-17,24],[-32,51],[-14,35],[-9,27],[-4,25],[-13,32],[-4,7],[-2,6],[1,4],[4,3],[3,6],[0,12],[-3,14],[-10,34],[-20,58],[-8,19],[0,14],[-2,11],[1,6],[3,6],[1,8],[-3,18],[-3,15],[0,11],[-5,27],[-9,21],[-11,23],[-3,9],[1,12],[1,16],[-5,14],[-30,63],[-14,30],[-3,12],[-15,27],[-4,19],[-1,19],[-5,19],[-6,18],[-5,10],[-32,53],[-14,19],[-35,44],[-45,48],[-75,79],[-17,18],[-17,36],[-21,29],[-24,30],[-24,40],[-9,22],[-5,35],[0,23],[0,26],[0,6],[6,10],[1,11],[2,4],[6,1],[3,14],[0,9],[3,8],[5,-1],[5,-18],[8,-8],[11,-8],[8,-3],[11,21],[10,42],[3,55],[-7,46],[-14,65],[-9,20],[-26,53],[-4,13],[-7,3],[-3,-2],[-7,10],[-6,19],[-7,17],[-5,18],[1,6],[2,5],[3,3],[3,12],[-1,7],[-3,6],[1,8],[4,2],[-2,10],[-1,13],[3,9],[4,-2],[5,6],[4,-10],[9,2],[4,13],[1,21],[-6,28],[-9,20],[-9,14],[-6,21],[-5,18],[-9,26],[-23,51],[-9,25],[1,8],[4,4],[4,9],[-1,11],[-2,14],[2,30],[0,9],[-1,11],[-3,12],[-2,12],[1,8],[3,6],[2,3],[2,3],[2,7],[4,20],[0,14],[-4,33],[1,11],[4,14],[3,13],[4,8],[24,36],[6,13],[5,20],[4,9],[5,4],[5,3],[3,6],[5,19],[15,48],[8,20],[11,17],[11,14],[4,8],[2,13],[1,13],[2,12],[5,21],[7,20],[10,17],[44,56],[8,17],[12,36],[2,13],[2,2],[3,1],[2,3],[4,3],[20,-1],[5,2],[6,6],[4,7],[2,11],[1,6],[4,14],[1,6],[0,6]],[[27683,48460],[2,-2],[4,-5],[11,-6],[4,-6],[-1,-11],[-2,-12],[1,-13],[2,-3],[4,-4],[2,-4],[1,-5],[0,-6],[-1,-12],[-2,-16],[0,-4],[2,-4],[3,-2],[2,-2],[1,-6],[0,-7],[1,-11],[1,-6],[-1,-6],[-2,-12],[0,-5],[0,-6],[0,-5],[2,-11],[0,-5],[-1,-5],[-1,-4],[0,-5],[1,-12],[6,-19],[2,-12],[0,-5],[0,-11],[1,-5],[2,-6],[3,-3],[2,-4],[0,-1],[0,-5],[-5,-11],[-21,-21],[-4,-10],[-4,-14],[-5,-12],[-6,-6],[-5,2],[-12,13],[-6,4],[-5,1],[-6,-1],[-5,-3],[-4,-6],[-3,-10],[-3,-14],[-3,-15],[0,-1],[0,-11],[1,-7],[5,-13],[1,-8],[0,-5],[-1,-12],[0,-5],[6,-26],[10,-3],[12,8],[13,3],[-3,-13],[-37,-104],[-1,-10],[2,-12],[4,-7],[12,-15],[5,-4],[5,0],[2,1],[3,5],[11,13],[22,35],[4,10],[2,9],[3,21],[2,8],[3,4],[2,3],[3,2],[12,4],[1,0],[1,-6],[5,-3],[6,-3],[4,-3],[5,-9],[9,-21],[6,-9],[7,-8],[8,-2],[7,0],[7,-4],[7,-14],[6,-19],[7,-15],[10,-3],[19,12],[9,12],[11,3],[7,-8],[14,-30],[2,-2],[4,-6],[2,-2],[7,0],[5,-7],[2,-6],[-1,-8],[-6,-24],[0,-13],[8,-25],[3,-36],[7,-29],[1,-11],[2,-13],[5,-8],[6,-7],[4,-7],[2,-5],[2,-12],[1,-5],[3,-4],[5,-4],[3,-4],[3,-11],[3,-12],[4,-10],[6,-4],[13,1],[7,0],[5,-1],[9,-7],[5,-2],[3,0],[4,2],[3,-1],[3,-3],[3,-4],[6,-11],[8,14],[7,16],[2,13],[3,29],[3,9],[5,3],[8,0],[6,3],[3,12],[-1,14],[-7,27],[0,16],[3,16],[5,16],[13,25],[12,13],[25,22],[3,4],[8,11],[2,10],[1,11],[-1,12],[1,11],[4,13],[4,12],[1,9],[-7,9],[-3,11],[-2,22],[-1,22],[3,13],[5,9],[2,11],[3,26],[17,76],[3,26],[0,35],[1,10],[3,6],[3,2],[3,0],[4,3],[4,4],[1,3],[0,4],[3,44],[2,11],[2,11],[2,3],[3,3],[3,3],[6,15],[2,11],[-3,38],[0,8],[0,3],[1,1],[4,1],[2,3],[0,6],[-1,12],[0,22],[0,11],[2,12],[5,24],[1,3],[3,24],[2,25],[1,7],[-2,11],[0,4],[3,11],[4,3],[6,-1],[12,-8],[4,-6],[2,-8],[4,-38],[2,-11],[4,4],[4,7],[5,3],[5,3],[2,13],[0,16],[-4,8],[-4,7],[-4,11],[0,13],[4,8],[10,16],[3,11],[9,35],[4,9],[13,24],[28,80],[21,38],[5,5],[11,8],[7,6],[35,26],[35,26],[35,26],[35,26],[35,26],[35,26],[35,26],[35,26],[25,20],[5,5],[12,16],[16,26],[16,27],[17,27],[16,27],[17,27],[17,27],[16,27],[17,27],[16,27],[14,34],[14,35],[14,34],[14,35],[14,34],[14,35],[13,34],[14,34],[11,28],[16,30],[4,12],[2,5],[4,21],[4,34],[8,70],[9,70],[8,69],[8,70],[4,30],[1,5],[8,-16],[4,-9],[2,-6],[3,-5],[6,0],[12,3],[13,0],[2,0],[0,4],[-2,6],[-2,5],[-3,7],[0,5],[0,11],[0,5],[-12,89],[0,8],[2,10],[0,6],[0,6],[-1,11],[0,6],[1,7],[3,4],[3,4],[3,6],[0,5],[0,4],[-1,5],[0,5],[1,23],[-1,11],[-3,10],[-1,1],[-3,-3],[-1,1],[-2,3],[-1,7],[-1,2],[-11,18],[-1,4],[-2,2],[-3,-1],[-3,1],[-3,4],[-5,11],[-8,23],[-5,25],[-9,67],[-3,9],[-5,6],[-6,4],[-3,3],[-6,12],[-3,4],[-3,1],[-6,-1],[-3,2],[-2,6],[-3,11],[-1,13],[1,11],[4,3],[5,-3],[5,-5],[5,-1],[5,1],[4,0],[3,-2],[20,-23],[7,-1],[8,10],[2,1],[9,-3],[5,0],[4,3],[3,4],[6,9],[4,9]],[[29088,50406],[4,3],[4,8],[4,8],[1,8],[1,11],[3,6],[4,2],[6,-1],[12,-7],[6,-6],[5,-9],[11,-32],[3,-7],[3,-2],[5,0],[2,-2],[2,-2],[11,-27],[4,-6],[6,-5],[9,-5],[5,-3],[3,0],[3,5],[7,24],[3,2],[6,-11],[4,-12],[9,-41],[-7,-12],[-2,-8],[4,-4],[3,-1],[6,-3],[7,-1],[1,-2],[2,-2],[2,-4],[1,-2],[1,-3],[1,-3],[4,0],[2,1],[1,3],[3,3],[3,1],[2,-4],[8,-28],[12,-27],[7,-12],[17,-21],[3,-6],[4,-9],[2,-8],[2,-2],[4,0],[1,-3],[1,-6],[0,-6],[1,-6],[13,-61],[-1,-4],[-3,-6],[-2,-6],[0,-11],[2,-9],[10,-22],[1,-2],[3,-2],[5,0],[2,-2],[-2,-10],[1,-7],[3,-6],[2,-8],[-2,-6],[-4,0],[-4,2],[-4,-2],[-2,-7],[2,-5],[7,-10],[3,-8],[4,-27],[6,-17],[7,-9],[17,-6],[17,-14],[7,1],[5,17],[3,-6],[6,-42],[2,-5],[2,-4],[3,-3],[2,1],[2,3],[3,3],[1,3],[1,4],[1,1],[2,-4],[1,-5],[-3,-10],[0,-5],[4,-5],[9,5],[4,-4],[2,-5],[4,-24],[5,-17],[3,-6],[4,-5],[7,-6],[5,-2],[3,0],[5,6],[4,15],[4,3],[3,-11],[3,-9],[6,-6],[6,-2],[3,-2],[6,-9],[6,-4],[2,-5],[0,-6],[2,-10],[1,-6],[0,-3],[1,0],[4,1],[1,-1],[1,-4],[0,-5],[1,-13],[0,-4],[2,-5],[1,-4],[5,-4],[-2,-6],[-4,-11],[2,-9],[11,-11],[3,-10],[6,-9],[2,-7],[0,-5],[0,-7],[1,-8],[3,-24],[-1,-12],[-6,-8],[-3,-9],[-3,-20],[-1,-23],[6,-14],[18,-24],[0,-2],[1,-8],[1,-2],[1,0],[3,1],[4,-1],[3,0],[3,-1],[4,-5],[7,-13],[2,-1],[3,7],[4,9],[4,1],[10,-5],[1,2],[1,16],[3,0],[8,-18],[2,-4],[3,-2],[2,-4],[2,-6],[-2,-22],[2,-8],[6,-17],[2,-10],[-1,-5],[-3,-15],[0,-8],[1,-10],[2,-7],[5,-16],[2,-11],[1,-13],[2,-13],[4,-7],[-8,-29],[-3,-13],[-10,-19],[-2,-7],[-1,-4],[-1,-5],[1,-6],[3,-9],[0,-4],[1,-3],[4,-6],[1,-3],[1,-18],[1,-4],[4,-7],[12,-6],[3,-6],[2,-12],[3,7],[4,13],[0,7],[19,-23],[1,-3],[4,-8],[5,-27],[3,-10],[2,-4],[2,0],[12,5],[4,3],[3,7],[8,6],[7,8],[5,-4],[7,-11],[1,7],[1,6],[2,4],[4,4],[1,-5],[1,-5],[1,-6],[1,-15],[2,-2],[4,4],[4,7],[7,32],[4,9],[5,-1],[5,-6],[12,-22],[6,-3],[28,-10],[3,-4],[1,-7],[4,-8],[5,-5],[5,-3],[6,1],[11,7],[6,1],[3,2],[1,4],[-1,12],[2,2],[7,4],[3,0],[18,-9],[4,3],[12,30],[8,14],[8,7],[9,0],[17,-5],[5,2],[3,8],[2,13],[2,4],[13,22],[10,33],[1,6],[3,0],[16,22],[6,6],[2,-3],[0,-21],[2,-10],[6,2],[9,10],[7,-3],[5,-7],[5,-8],[6,-7],[16,-7],[3,-5],[1,-11],[1,-25],[2,-9],[4,-4],[2,7],[3,22],[4,8],[3,-2],[5,-18],[6,-18],[1,-6],[-1,-5],[-3,-8],[-2,-4],[4,-12],[9,4],[20,20],[2,-8],[5,3],[6,6],[4,4],[3,-2],[3,-5],[3,-2],[3,1],[6,9],[7,9],[6,28],[6,6],[8,3],[3,0],[7,-9],[4,-2],[3,1],[3,3],[-3,15],[0,13],[3,9],[7,-1],[12,-10],[7,-3],[6,5],[8,-11],[15,-32],[9,-14],[11,-8],[5,-2],[7,-2],[1,-3],[1,-5],[0,-17],[1,-1],[9,-16],[2,-6],[0,-6],[0,-8],[0,-8],[2,-3],[12,0],[2,3],[0,5],[0,7],[1,6],[5,6],[3,-5],[4,-8],[4,-5],[5,-1],[5,-4],[5,-5],[3,-6],[2,-6],[1,-7],[1,-5],[4,-3],[2,1],[7,6],[3,1],[6,0],[6,-1],[3,-6],[-1,-13],[-1,-2],[-5,-3],[-1,-3],[0,-5],[1,-6],[2,-4],[1,-2],[7,4],[6,7],[5,4],[6,-6],[4,-11],[4,-25],[3,-11],[5,-4],[4,4],[5,3],[6,-9],[0,-6],[0,-6],[1,-5],[2,-3],[3,1],[1,5],[2,7],[1,5],[6,8],[3,-4],[3,-26],[2,-9],[3,-7],[3,-6],[1,-1],[-6,-21],[-22,-73],[-22,-72],[-21,-73],[-22,-72],[-22,-73],[-22,-72],[-22,-73],[-21,-72],[-10,-31],[12,-3],[38,-42],[3,-4],[15,-8],[7,0],[7,6],[11,21],[6,8],[8,2],[11,-8],[10,-16],[9,-21],[7,-20],[3,-21],[2,-21],[3,-19],[7,-16],[28,-31],[9,-14],[5,-14],[5,-15],[8,-33]],[[30565,47961],[1,-17],[-3,-15],[-5,-15],[-9,-14],[-4,-1],[-4,2],[-3,5],[-4,8],[-1,4],[-2,15],[-3,10],[-5,5],[-6,-1],[-5,-6],[-4,-11],[-5,-22],[-5,-10],[-3,8],[-2,9],[-2,6],[-2,1],[-3,0],[-2,2],[-14,23],[-3,8],[0,10],[2,23],[0,12],[-2,8],[-4,8],[-3,2],[-5,-17],[-4,2],[-6,14],[-5,4],[-4,0],[-4,-2],[-5,-4],[-11,-19],[-4,-3],[-3,4],[-1,8],[-1,9],[-4,4],[-5,-5],[-2,-10],[-1,-11],[-2,-6],[-13,16],[-1,9],[1,11],[0,8],[-4,2],[-5,-4],[-2,-6],[-3,-18],[-4,-5],[-5,0],[-17,10],[-3,-1],[-13,-13],[-4,-7],[0,-8],[2,-15],[-1,-5],[-4,-3],[-4,-5],[-3,-8],[-1,-11],[-3,-10],[-8,-17],[-4,-10],[-2,-11],[-6,-12],[-6,11],[-4,11],[-1,-13],[-6,-10],[-14,13],[-7,-6],[-4,-13],[-2,-3],[-5,1],[-2,5],[-3,13],[-2,4],[-4,-6],[-4,-13],[-4,-9],[-8,18],[-6,2],[-7,-3],[-4,-8],[-1,-7],[1,-6],[0,-6],[-3,-8],[-1,1],[-2,1],[-1,1],[-2,-2],[-3,-7],[-1,-2],[-3,-3],[-3,3],[-1,7],[-3,4],[-4,1],[-13,-4],[-8,0],[-4,-1],[-4,-4],[-2,-5],[-2,-13],[-1,-4],[-2,1],[-7,3],[-4,-1],[-13,-11],[1,12],[-3,-2],[-5,-12],[-4,-2],[-2,-1],[-2,3],[-3,6],[-5,7],[-3,-2],[-3,-5],[-5,-2],[-3,2],[-7,7],[-3,0],[-2,-2],[-1,-4],[0,-4],[-1,-3],[-2,-1],[-23,-5],[-5,-3],[-7,-11],[-13,-27],[-8,-6],[-5,-8],[-2,-4],[-2,-1],[-3,2],[-3,3],[-2,0],[-2,-4],[-5,-22],[-3,-9],[-6,-9],[-15,-18],[-14,-22],[-5,-7],[-5,-3],[-4,0],[-10,3],[-4,-2],[-1,-4],[-1,-5],[-1,-3],[-12,-6],[-3,-7],[-2,-33],[-2,-9],[-5,-7],[-6,-7],[-2,0],[-3,-1],[-2,-1],[0,-3],[-1,-4],[0,-3],[0,-2],[-1,-5],[-1,-6],[-2,-3],[-4,0],[-5,-2],[-5,-5],[-4,-7],[-7,-15],[-8,-8],[-4,-8],[-1,-6],[0,-6],[-1,-5],[-2,-5],[-3,-2],[-15,0],[-6,4],[-5,1],[-3,-6],[-4,-9],[-5,-5],[-11,-5],[-2,1],[-3,2],[-2,0],[0,-3],[-1,-9],[0,-2],[-4,-5],[-2,-1],[-4,0],[-6,-4],[-1,-8],[2,-11],[2,-8],[2,-10],[1,-36],[0,-9],[-3,-9],[-3,-8],[-2,-8],[-2,-26],[-1,-9],[-8,-36],[-3,-19],[2,-20],[2,-19],[0,-17],[-5,-54],[-3,-18],[-3,-16],[-29,-82],[-10,-19],[-16,-75],[-6,-20],[-4,-23],[0,-27],[2,-14],[14,-32],[1,-11],[3,-47],[2,-14],[6,-27],[2,-13],[0,-13],[-2,-13],[-4,-25],[-7,-24],[-7,-17],[-10,-11],[-12,-7],[-20,0],[-6,-4],[-10,-19],[-11,-14],[-19,-35],[-22,-27],[-14,-24],[-8,-10],[-3,-6],[-4,-15],[-2,-8],[-12,-15],[-3,-7],[-2,-10],[0,-33],[-7,-53],[-4,-17],[-2,-15],[2,-9],[1,-5],[19,-58],[3,-25],[2,-11],[1,-11],[-3,-12],[-5,-6],[-5,-2],[-11,1],[-7,-1],[-5,-3],[-10,-13],[-7,-5],[-5,1],[-11,9],[-6,0],[1,-11],[8,-28],[2,-16],[-2,-9],[-2,-9],[0,-13],[-4,-13],[-4,-3],[-9,-9],[2,-10],[12,-14],[36,-81],[8,-11],[8,-8],[11,-6],[8,-15],[3,-23],[-3,-23],[-9,-12],[-10,7],[-4,0],[0,-10],[3,-29],[2,-8],[8,-13],[12,-10],[10,-12],[5,-19],[2,-14],[9,-26],[3,-14],[0,-11],[-1,-22],[0,-11],[4,-14],[8,-23],[2,-15],[2,-24],[2,-12],[4,-8],[22,-25],[3,-6],[4,-12],[3,-6],[3,-2],[6,-2],[2,-2],[4,-8],[2,-11],[0,-12],[-2,-26],[0,-12],[2,-9],[11,-33],[5,-10],[6,-7],[16,-7],[6,-6],[4,-10],[4,-11],[4,-25],[22,-66],[4,-8],[10,-14],[4,-8],[8,-25],[1,-9],[3,-50],[-1,-18],[-2,-11],[-3,-7],[-13,-22],[0,-16],[-2,-7],[-3,-5],[-5,-2],[-4,-2],[-3,-4],[-3,-9],[-5,-19],[-6,-18],[-15,-32],[-6,-19],[112,-2],[34,-14],[1,-1],[2,-5],[2,-1],[1,1],[2,3],[1,1],[6,-3],[11,-7],[12,-12],[5,-3],[12,-3],[17,2],[6,-2],[5,-6],[8,-15],[5,-7],[3,0],[3,1],[3,-1],[1,-5],[1,-5],[-1,-18],[1,-12],[3,-10],[7,-19],[2,-11],[-1,-11],[-3,-22],[3,-23],[20,-25],[5,-24],[1,-7],[2,-12],[1,-6],[0,-7],[-5,-11],[-1,-6],[-1,-13],[1,-10],[-1,-10],[-3,-13],[15,0],[50,0],[49,0],[50,0],[49,0],[11,-1],[5,3],[2,5],[2,4],[1,4],[4,1],[3,-3],[2,-3],[2,-3],[4,0],[6,6],[9,17],[14,9],[4,12],[2,13],[4,13],[4,8],[19,17],[17,10],[5,8],[2,7],[4,15],[2,7],[3,5],[7,10],[4,5],[8,25],[4,11],[14,15],[6,10],[10,22],[6,9],[18,22],[5,11],[10,25],[6,11],[5,5],[6,3],[11,3],[1,-8],[-1,-2],[-3,-10],[0,-10],[-2,-8],[-5,-4],[1,-2],[0,-5],[1,-2],[-3,-2],[-3,-6],[0,-7],[3,-14],[-2,-2],[-4,2],[-1,1],[-8,-1],[-1,0],[3,-11],[2,-20],[1,-10],[3,-9],[9,-14],[3,-9],[2,-12],[-1,-11],[-2,-10],[-3,-10],[-1,-4],[-1,-7],[-1,-3],[-2,-1],[-3,4],[-1,0],[-3,-3],[-3,-4],[-2,-6],[-1,-6],[-3,-24],[0,-35],[0,-26],[0,-49],[0,-76],[0,-75],[0,-76],[-1,-75],[0,-75],[0,-76],[0,-75],[0,-48],[24,40],[6,3],[7,-14],[13,-31],[7,-13],[13,-14],[14,-5],[14,2],[14,6],[11,8],[67,72],[12,-1],[5,-3],[6,-1],[11,2],[7,-2],[5,-4],[11,-14],[9,-4],[34,8],[6,0]],[[28834,42023],[2,-7],[1,-5],[3,-3],[-1,-4],[-4,1],[-4,7],[-4,4],[0,7],[3,2],[4,-2]],[[28765,42279],[2,-2],[0,-6],[-1,-6],[-3,-1],[-3,0],[-2,1],[1,7],[2,5],[1,7],[3,-1],[0,-4]],[[28546,43324],[11,-20],[2,-6],[1,-4],[-3,2],[-3,-1],[-4,6],[-5,7],[-3,9],[-2,8],[3,3],[3,-4]],[[27543,46690],[-1,-4],[-2,-10],[1,-8],[3,-6],[0,-7],[0,-10],[0,-10],[-3,-1],[-3,1],[-1,5],[1,6],[-1,9],[-3,5],[2,5],[1,9],[4,20],[2,-4]],[[32597,37302],[3,-1],[2,-3],[2,-3],[1,-5],[-2,0],[2,-8],[-1,-6],[-2,-5],[0,-5],[2,-6],[3,-3],[4,-3],[3,0],[7,-4],[4,-8],[7,-17],[4,-3],[11,-7],[2,-4],[2,-9],[5,-10],[19,-26],[6,-4],[2,-1],[10,-2],[3,-2],[2,-3],[0,-2],[1,-3],[0,-7],[0,-4],[2,-1],[2,0],[1,-1],[6,-14],[3,-10],[-2,-10],[-4,-11],[0,-8],[4,-6],[7,-6],[3,-1],[2,0],[1,-1],[1,-6],[-2,-13],[0,-8],[6,-7],[-4,-14],[1,-3],[4,-2],[2,-5],[1,-7],[2,-6],[7,-16],[1,-5],[1,-5],[1,-5],[2,-2],[0,-2],[3,-4],[3,-4],[1,0],[1,-7],[3,-7],[5,-12],[4,-12],[6,-22],[3,-9],[0,-5],[-1,-14],[1,-3],[0,-3],[4,-11],[10,-22],[31,-37],[2,-4],[6,-18],[3,-6],[7,-7],[3,-5],[3,-7],[1,-6],[1,-7],[0,-11],[1,-10],[4,-5],[4,-4],[4,-5],[4,-10],[2,-3],[4,-2],[13,0],[4,-4],[14,-29],[3,-2],[3,-1],[5,-1],[-1,-4],[-2,-7],[0,-6],[4,-6],[3,-14],[3,-3],[6,-1],[5,-1],[4,-4],[4,-6],[4,-6],[2,-4],[4,-2],[7,-1],[18,-15],[2,-8],[2,-9],[3,-8],[5,-4],[3,-2],[5,-11],[3,-3],[2,0],[5,0],[2,0],[4,-6],[3,-8],[4,-7],[5,-4],[4,-5],[1,-12],[-1,-13],[-3,-10],[3,-5],[5,-16],[7,-8],[4,-11],[4,-13],[0,-8],[2,-3],[4,-13],[2,-5],[9,-11],[11,6],[10,-10],[9,-15],[8,-10],[6,-1],[8,0],[16,1],[3,-1],[6,-10],[2,-1],[13,1],[3,-1],[3,-2],[5,-5],[3,-1],[0,-4],[5,-18],[1,-2],[10,0],[5,-5],[9,-13],[17,-7],[10,1],[3,-1],[3,-3],[5,-10],[3,-3],[3,-1],[9,1],[21,-7],[21,2],[7,3],[13,9],[6,1],[5,-3],[100,-129],[10,-21],[5,-13],[2,-4],[3,-2],[7,-2],[5,-5],[5,-2],[2,-3],[3,-7],[3,-4],[6,-8],[6,-5],[2,-3],[1,-4],[1,-5],[1,-5],[6,-6],[11,-18],[3,-6],[5,-21],[5,-11],[9,-7],[4,-8],[2,-2],[5,-1],[2,-3],[1,-4],[3,-5],[11,-7],[8,-11],[7,-5],[10,-13],[6,-4],[5,0],[2,-1],[2,-3],[6,-11],[3,-4],[9,-4],[53,-78],[6,-3],[14,-1],[4,-2],[2,-3],[2,-2],[2,-3],[0,-5],[2,-2],[61,-24],[6,-6],[4,-6],[6,-18],[18,-39],[2,-6],[1,-5],[1,-3],[4,-2],[3,1],[3,4],[4,4],[8,16],[4,7],[5,0],[25,-33],[3,-9],[4,0],[19,-19],[3,0],[6,1],[2,-1],[2,-5],[1,-7],[2,-6],[4,-2],[22,0],[5,-4],[4,-7],[13,-28],[4,-6],[9,-8],[3,-8],[9,-38],[5,-15],[9,-11],[0,-1],[8,-41],[0,-7],[18,-26],[3,-9],[2,-7],[1,-10],[-4,-51],[-1,-11],[-4,-7],[-4,-1],[-3,-5],[-1,-13],[-2,-4],[-4,0],[-8,2],[-1,-3],[-1,-13],[-1,-5],[-3,-3],[-3,-1],[-3,1],[-3,-1],[-6,-5],[-3,-6],[-6,-17],[2,-5],[2,-4],[3,-2],[3,-1],[-3,-8],[-5,-9],[-5,-8],[-5,-4],[-5,-5],[1,-11],[5,-20],[-3,-8],[-2,-3],[-4,-5],[-6,-6],[-6,-5],[-1,-4],[1,-4],[7,-4],[0,-7],[-2,-6],[-1,-5],[-10,-15],[-2,-9],[13,-8],[0,-8],[-4,-9],[-32,-46],[-9,-11],[-18,-12],[-3,-6],[-3,-20],[-2,-12],[-3,-6],[-1,4],[-1,3],[-3,3],[-2,2],[0,-11],[3,-6],[5,-4],[4,-6],[0,-8],[-5,-7],[-6,-5],[-4,-2],[-3,-4],[0,-10],[2,-19],[-1,-9],[-1,-9],[-10,-31],[-2,-10],[1,-7],[7,-12],[-1,-7],[-4,-5],[-1,-5],[0,-10],[-2,-9],[-1,-9],[1,-10],[2,-4],[6,-9],[2,-4],[2,-8],[2,-4],[-2,-3],[-5,-7],[-1,-2],[0,-7],[2,-5],[1,-5],[1,-5],[-2,-4],[-3,0],[-9,3],[-1,2],[-1,-1],[-1,-6],[-2,-12],[0,-46],[-1,-3],[-2,-1],[-4,0],[-4,-2],[0,-6],[2,-7],[1,-5],[-4,-7],[-4,1],[-5,3],[-5,-3],[-3,-13],[3,-8],[5,-7],[2,-11],[-4,-6],[-13,-2],[-2,-5],[-3,-8],[-6,-4],[-12,-7],[-5,-5],[-2,-8],[1,-8],[4,-7],[-2,-8],[-5,-12],[-3,-8],[-1,-5],[0,-4],[0,-10],[-2,-3],[-2,1],[-2,3],[0,1],[0,3],[-1,4],[-1,2],[-3,-2],[-2,-5],[-1,-4],[-1,-5],[-1,-5],[0,-10],[1,-10],[-2,-6],[-14,-4],[-6,-8],[-4,-12],[-1,-17],[1,-7],[4,-8],[7,-9],[3,-12],[1,-12],[-1,-29],[1,2],[25,20],[75,13],[31,-8],[4,1],[17,5],[8,0],[6,-2],[16,-7],[9,-7],[3,-1],[13,-5],[12,-8],[28,-11],[3,-3],[46,-43],[4,-3],[2,-1],[7,-2],[28,8],[7,0],[1,-1],[6,-3],[3,-3],[4,-8],[2,-4],[3,-3],[3,-1],[12,-7],[3,-3],[8,-12],[2,-3],[3,-2],[7,0],[2,-1],[11,-1],[9,4],[28,29],[10,8],[10,2],[10,-8],[17,-32],[10,-12],[10,4],[14,21],[13,7],[7,4],[18,-6],[11,-26],[6,-16],[7,-16],[8,-13],[9,-7],[9,4],[5,14],[4,19],[5,15],[6,11],[3,12],[1,13],[-1,16],[1,13],[7,7],[8,4],[6,5],[10,23],[5,7],[8,8],[7,-1],[6,-3],[1,0],[18,-14],[6,-2],[6,0],[1,1],[7,1],[6,1],[6,-4],[4,-12],[4,-22],[3,-6],[3,-3],[7,-4],[17,-18],[11,16],[10,22],[7,12],[7,2],[6,6],[5,10],[2,14],[1,8],[-1,5],[0,4],[3,12],[1,6],[-1,7],[-1,6],[-7,25],[1,9],[7,3],[5,5],[1,10],[1,13],[4,9],[5,1],[8,-1],[7,1],[3,9],[0,28],[2,12],[3,11],[5,10],[5,6],[5,3],[13,3],[14,15],[7,0],[6,-5],[5,-5],[4,-3],[11,-1],[6,2],[5,7],[1,13],[-4,24],[2,10],[18,34],[6,4],[13,2],[5,5],[4,9],[2,8],[2,11],[4,27],[3,12],[5,8],[6,4],[13,0],[2,-3],[1,-3],[2,-1],[2,3],[4,9],[3,13],[1,15],[0,13],[-1,11],[-1,9],[-1,8],[3,11],[4,9],[8,13],[8,18],[3,9],[1,9],[3,36],[1,4],[0,3],[4,18],[0,27],[0,12],[0,3],[0,1],[2,8],[4,9],[1,6],[-1,8],[-5,12],[-1,9],[6,38],[0,13],[-3,19],[-1,18],[-1,6],[0,6],[1,6],[3,2],[6,1],[3,2],[2,9],[0,11],[-2,26],[1,10],[3,9],[3,11],[0,13],[-1,7],[-7,15],[-1,8],[-1,12],[-5,31],[0,16],[3,5],[9,-1],[5,5],[-1,12],[-5,19],[1,11]],[[34833,35324],[11,3],[4,-3],[2,-7],[0,-9],[2,-5],[6,2],[5,-4],[5,-7],[4,-10],[1,-12],[0,-6],[1,-6],[1,-4],[3,2],[1,6],[-1,12],[0,6],[2,5],[5,6],[2,4],[1,6],[0,6],[0,6],[2,5],[2,3],[3,-1],[5,-4],[3,1],[4,13],[3,4],[7,1],[4,-2],[3,-8],[3,-12],[2,-5],[1,3],[2,9],[2,1],[2,0],[5,-3],[6,0],[-1,11],[-6,19],[2,2],[3,-1],[5,-4],[4,1],[3,3],[7,17],[2,2],[1,1],[2,0],[1,-3],[-1,-11],[-3,-10],[-1,-10],[0,-11],[2,-6],[2,-5],[3,-4],[3,0],[1,4],[0,6],[-1,7],[0,5],[2,6],[3,-4],[4,-9],[4,2],[1,2],[2,1],[4,-1],[5,-6],[4,-9],[2,-10],[0,-12],[3,-16],[5,2],[11,13],[3,-6],[3,-13],[3,-22],[-1,-5],[-1,-4],[-1,-6],[1,-7],[2,-7],[5,-10],[2,-5],[3,-11],[1,-11],[-1,-35],[3,-31],[0,-6],[-1,-6],[-1,-5],[1,-8],[2,-6],[9,-16],[8,-17],[3,-18],[2,-19],[4,-21],[13,-36],[5,-19],[2,-24],[-4,-19],[-11,-32],[-3,-18],[3,-55],[0,-18],[-4,-7],[-2,-4],[0,-4],[0,-6],[1,-6],[1,-4],[1,2],[-1,-10],[-4,-21],[0,-11],[1,-22],[0,-11],[-2,-11],[-2,-3],[-3,-1],[-2,-2],[-1,-6],[2,-7],[2,-4],[2,-2],[2,-2],[0,-6],[-2,-8],[0,-6],[1,-1],[4,0],[1,-1],[3,-22],[3,-35],[0,-19],[-4,-21],[-12,-49],[-1,-4],[-2,-2],[-5,-1],[-1,-2],[-1,-8],[0,-17],[0,-8],[-2,-4],[-4,-5],[-1,-3],[0,-4],[3,-6],[0,-5],[-3,-10],[-3,-4],[-2,4],[-3,9],[-3,9],[-4,4],[-2,-4],[-2,-19],[-3,-6],[-5,2],[-3,6],[-4,4],[-3,-3],[-1,-8],[1,-8],[0,-6],[-5,-3],[-2,1],[-1,2],[-2,2],[-2,-1],[-1,-3],[-2,-11],[-21,-43],[-10,-2],[-8,5],[0,13],[-2,4],[-4,5],[-3,-11],[-8,-40],[-1,-5],[-2,-3],[-1,-5],[1,-12],[-1,-5],[-2,-2],[-3,-1],[-3,-2],[-1,-6],[-1,-5],[-2,-6],[-2,-4],[-1,-3],[-6,0],[-4,5],[-3,8],[-4,7],[1,-19],[-1,-5],[-2,-6],[-2,-5],[-3,0],[-1,5],[-1,14],[-2,6],[-5,3],[-11,-1],[-4,-2],[-1,-7],[4,-13],[0,-8],[-6,-7],[-18,-10],[-2,0],[-3,3],[-1,3],[-3,11],[-1,2],[-2,1],[-2,1],[-1,0],[-3,-4],[-1,-5],[-2,-7],[-1,-10],[-3,-11],[-4,-7],[-3,0],[-2,11],[-1,3],[-1,-1],[-2,-3],[-1,-6],[0,-9],[0,-4],[-2,-3],[-2,-3],[-3,-1],[-6,2],[-3,-1],[-11,-7],[-2,1],[0,1],[-2,4],[-1,1],[-1,2],[1,3],[1,3],[0,2],[-1,7],[-4,-2],[-4,-6],[-2,-5],[-2,-12],[-1,-15],[-2,-12],[-6,-6],[-7,0],[-2,-1],[1,-23],[-2,-25],[-1,-14],[-2,-6],[-6,-4],[-14,-24],[-7,-2],[-5,3],[-5,5],[-5,2],[-5,-4],[3,-10],[9,-14],[4,-13],[-1,-6],[-5,0],[-6,7],[-3,-3],[-6,0],[-2,-2],[-1,-3],[-2,-17],[-6,3],[-6,11],[-4,2],[-6,-4],[-4,-10],[-3,-9],[-10,-16],[-3,-1],[-3,1],[-6,4],[-3,-1],[-5,-8],[-1,-11],[-1,-10],[-6,-4],[-3,0],[-2,-1],[-1,-3],[0,-6],[0,-13],[-1,-3],[-1,-6],[-13,-27],[-2,-5],[-6,-4],[-3,0],[-2,1],[-1,4],[-2,2],[-4,-3],[-1,-3],[-3,-14],[-1,-2],[-4,-5],[-1,-3],[-1,-5],[-1,-4],[-1,-4],[-3,-1],[-3,2],[-1,5],[0,5],[-1,4],[-6,2],[-3,-7],[-2,-9],[0,-1],[-3,-5],[-2,-3],[-12,-22],[-18,-11],[-7,-10],[2,-15],[3,-5],[11,-9],[4,-2],[4,-3],[3,-7],[4,-15],[-4,-28],[-2,-8],[-3,-7],[-3,-5],[-3,2],[-1,12],[-4,11],[-10,5],[-12,2],[-8,5],[-13,-11],[-5,-8],[2,-12],[1,-5],[0,-28],[-1,-4],[-1,-3],[-2,-3],[-2,-2],[-9,-2],[-8,-7],[-9,-4],[-3,-9],[0,-10],[0,-11],[0,-23],[-5,-14],[-18,-23],[-22,-57],[-10,-12],[-13,-5],[-5,-4],[-3,-10],[-2,-50],[-6,-21],[-19,-21],[-5,-23],[0,-24],[-1,-12],[-4,-11],[-4,-5],[-19,-9],[-10,-10],[-10,-13],[-9,-17],[-8,-21],[-2,-7],[-1,-9],[0,-8],[1,-8],[-2,-12],[-5,-25],[-3,-10],[-5,-8],[-3,-5],[-10,-9],[-3,-3],[-2,-4],[-1,-4],[-2,-6],[0,-6],[0,-6],[-1,-6],[-4,-5],[-2,-6],[-2,-7],[0,-6],[-1,-5],[-22,-36],[-2,-8],[-2,-5],[-11,-17],[-4,-8],[-4,-21],[-8,-16],[-1,-6],[-2,-6],[-21,-41],[-5,-8],[-6,-4],[-12,0],[-12,-3],[-12,-9],[-8,-13],[-4,-20],[-3,-69],[-2,-10],[-24,-34],[-26,-62],[-12,-15],[-6,-4],[-12,-4]],[[33996,32595],[-6,0],[-2,-6],[1,-13],[4,-26],[-2,-23],[-6,-19],[-55,-92],[-7,-18],[-4,-21],[1,-23],[7,-23],[4,-11],[6,-25],[2,-13],[3,-21],[2,-16],[0,-10],[1,-15],[0,-25],[0,-6],[-1,-14],[-2,-9],[-3,-3],[-7,2],[-12,-6],[-5,-6],[-2,-11],[2,-7],[12,-31],[2,-28],[-5,-20],[-7,-20],[-4,-26],[2,-26],[0,-16],[-3,-6],[-6,-23],[-2,-4],[-4,-6],[-2,-4],[-3,-12],[-1,-27],[-3,-11],[-4,-7],[-11,-12],[-5,-8],[-3,-18],[6,-16],[4,-4],[7,-10],[7,-17],[2,-27],[-2,-26],[-17,-91],[-3,-9],[-7,-4],[-13,-5],[-6,-5],[-4,-6],[-8,-16],[-2,-12],[4,-12],[8,-18],[3,-19],[1,-25],[-1,-26],[-3,-23],[-6,-19],[-1,-12],[3,-12],[19,-46],[3,-18],[-2,-18],[-17,-46],[-7,-26],[-3,-7],[0,-1]],[[33833,31254],[0,2],[-6,-27],[0,-27],[3,-72],[5,-41],[4,-61],[2,-12],[8,-21],[1,-9],[-1,-12],[-4,-22],[-1,-13],[3,-27],[1,-15],[-3,-7],[-10,-16],[-3,-2],[-7,-2],[-4,0],[-39,12],[-10,-8],[-1,-3],[-2,-5],[0,-5],[5,-5],[0,-4],[-1,-6],[-1,-6],[-1,-13],[-2,-27],[-1,-11],[5,-26],[1,-13],[-3,-6],[-5,-5],[-5,-11],[-8,-20],[-5,-22],[-4,-25],[-3,-27],[-1,-24],[2,-26],[-1,-6],[-3,-12],[-2,-44],[0,-13],[2,-24],[5,-19],[15,-38],[2,-10],[2,-12],[1,-27],[4,-33],[-1,-6],[-2,-6],[0,-4],[0,-2],[3,-2],[3,-1],[7,-6],[2,-3],[2,-9],[1,-12],[0,-26],[-2,-19],[0,-7],[0,-3],[3,-11],[0,-6],[-9,-18],[-1,-4],[-2,-9],[-1,-4],[-4,-8],[-5,-7],[-6,-3],[-5,4],[-2,1],[-10,1],[-2,-3],[-1,-4],[-2,-4],[-3,-1],[16,-17],[5,-7],[8,-12],[3,-10],[-5,-19],[-3,-6],[-3,-6],[-5,-11],[1,-8],[2,-8],[7,-12],[1,-5],[0,-12],[0,-6],[6,-7],[5,-5],[6,-7],[9,-11],[5,-8],[5,-13],[3,-14],[5,-15],[22,-26],[13,-20],[10,-9],[10,-2],[6,-2],[9,-9],[9,-4],[8,-5],[10,-22],[8,-5],[15,3],[3,-1],[6,-11],[12,-14],[14,-22],[20,-15],[23,-32],[22,-15],[10,-18],[11,-16],[27,-47],[10,-23],[12,-24],[6,-11],[13,-37],[11,-36],[8,-27],[2,-14],[-5,-26],[-10,-22],[-12,-28],[-28,-75],[-8,-19],[-3,-21],[-2,-16],[-3,-24],[-3,-19],[3,-22],[3,-23],[0,-17],[0,-5],[2,-7],[5,-8],[1,-6],[0,-1],[8,-33],[0,-13],[2,-5],[4,-5],[6,-9],[1,-3],[1,-13],[4,-12],[39,-66],[29,-31],[12,-4],[7,-6],[2,-7],[-5,-9],[2,-4],[5,9],[6,6],[12,9],[6,2],[19,-2],[-3,14],[1,8],[3,2],[6,-8],[2,-7],[3,-24],[2,-5],[5,-11],[0,-74],[6,-32],[1,-15],[1,-80],[1,-68],[-1,-26],[-5,-19],[-28,-66],[-28,-73],[-36,-110],[-10,-39],[-31,-72],[-9,-19],[-31,-47],[-11,-31],[-3,-5],[-4,-4],[-23,-48],[-8,-22],[-7,-24],[-5,-24],[-2,-25],[-1,-26],[0,-4],[3,-6],[0,-4],[0,-4],[-1,-6],[0,-2],[0,-17],[0,-7],[-7,-22],[-10,-19],[-25,-31],[-29,-28],[-20,-25],[-44,-43],[-9,-3],[-4,-3],[-14,-21],[-11,-10],[-33,-23],[-10,-11],[-5,-3],[-25,-7],[-21,-12],[-20,-20],[-45,-18],[-59,-34],[-15,-18],[-9,-3],[-10,-7],[-79,-27],[-79,-27],[-46,-32],[-6,-1],[-19,1],[-127,-40],[-44,-13],[-43,-9],[-57,-19],[-32,0],[-7,4],[-3,0],[-4,-1],[-2,-2],[-4,-5],[-26,-11],[-54,11],[-25,0],[-18,-10],[-3,-4],[-4,-4],[-43,11],[-4,5],[-5,3],[-3,6],[-2,1],[-2,0],[-2,-1],[-1,-2],[-2,-1],[-11,-4],[-14,1],[-52,25],[-10,9],[-8,12],[-6,18],[-5,21],[-3,11],[-4,5],[-45,5],[-5,5],[-6,3],[-6,-6],[-3,-10],[3,-6],[-2,-12],[5,-22],[-1,-10],[3,5],[4,1],[3,-5],[1,-7],[0,-23],[0,-4],[3,-3],[4,0],[9,3],[0,-3],[-2,-7],[-1,-10],[1,-8],[-7,-6],[-3,-6],[-4,-21],[-3,-12],[-1,-6],[-2,-4],[-1,-4],[2,-5],[2,-5],[1,-5],[0,-10],[-1,-10],[-1,-9],[2,-11],[5,-9],[13,-16],[5,-11],[-4,0],[-4,2],[-7,6],[-4,-8],[3,-6],[6,-4],[6,-3],[22,-1],[7,-3],[22,-18],[12,-14],[6,-16],[0,-7],[-1,-7],[-2,-6],[-3,-5],[-3,-2],[-3,1],[-1,3],[-2,2],[-6,5],[-16,24],[-5,12],[-1,3],[-2,7],[-1,2],[-2,2],[-1,0],[-1,-2],[-2,0],[-5,2],[-15,-2],[0,-5],[1,-6],[2,-5],[2,-4],[3,-1],[4,1],[3,-1],[1,-5],[3,-12],[5,-13],[12,-18],[5,-5],[13,-6],[7,-1],[2,-2],[1,-6],[0,-8],[-1,-6],[-3,-5],[-2,-6],[0,-41],[-2,-7],[-2,-7],[-7,-81],[0,-52],[-2,-10],[-1,0],[-10,-10],[-1,-2],[-21,6],[-6,6],[-12,16],[-1,-6],[1,-7],[6,-12],[-7,-5],[-2,-5],[1,-7],[0,-15],[-1,-10],[-4,-21],[-2,-21],[-5,-24],[-2,-5],[-1,-6],[7,-35],[0,-12],[-4,-25],[-1,-10],[-3,-11],[-6,-6],[-7,-4],[-5,-5],[-5,-8],[-5,-10],[-4,-12],[-2,-12],[2,-9],[8,-26],[4,-35],[3,-5],[0,-3],[4,-14],[3,-3],[9,-5],[9,-10],[3,-2],[1,-3],[0,-14],[1,-3],[4,-5],[3,-10],[4,-5],[5,7],[4,-26],[0,-15],[-5,-7],[-13,4],[-1,2],[-5,11],[-3,3],[0,-5],[1,-5],[1,-4],[1,-4],[2,-6],[0,-5],[-2,-3],[-1,0],[3,-9],[2,-2],[22,21],[8,5],[9,1],[-3,-7],[-10,-12],[-2,-7],[-1,-9],[-2,-18],[-1,-10],[-1,-8],[-8,-27],[-8,-32],[-7,-16],[-42,-35],[-33,-34],[-19,-13],[-5,-5],[-5,-8],[-5,-4],[-6,-2],[-7,-1],[-7,2],[-3,-1],[-3,-7],[-7,-10],[-5,-8],[-19,-8],[-33,-28],[-13,-5],[-60,4],[-12,-6],[-7,-2],[-27,5],[-39,-4],[-44,1],[-12,5],[-12,10],[-28,43],[-12,9],[-12,0],[-3,2],[0,6],[1,6],[2,9],[-2,4],[-7,-3],[-7,-5],[-6,-2],[-12,5],[-67,58],[-37,16],[-26,22],[-25,9],[-14,2],[-19,-3],[-9,1],[-7,4],[0,9],[5,6],[7,4],[5,-2],[-1,-10],[2,0],[2,2],[1,1],[0,1],[17,0],[5,1],[3,4],[-2,12],[-9,5],[-4,6],[8,13],[-7,8],[-26,10],[-16,-3],[-10,-7],[-2,-4],[5,-1],[9,4],[5,-3],[-4,-9],[1,-5],[3,-4],[3,-6],[-28,2],[-5,-4],[-4,-7],[-22,-29],[-2,-5],[-1,-5],[0,-13],[-1,-6],[-4,-11],[-3,-13],[-3,-13],[-1,-14],[0,-24],[8,-101],[11,-70],[1,-18],[7,-34],[2,-18],[3,-19],[15,-26],[5,-19],[-1,-17],[-2,-19],[-4,-19],[-4,-12],[-2,-16],[3,-21],[8,-34],[-1,-21],[-5,-25],[-11,-43],[-5,-25],[2,-21],[4,-15],[14,-49],[9,-19],[10,-16],[22,-24],[3,-1],[6,0],[4,0],[2,-2],[4,-6],[7,-6],[7,-5],[6,-1],[14,-1],[6,-2],[5,-8],[6,-6],[7,1],[7,5],[6,2],[8,-1],[4,-2],[2,-3],[4,-8],[1,-4],[-8,-6],[-5,-8],[-21,-49],[-2,-6],[-2,-18],[1,-5],[9,-4],[22,3],[11,-9],[10,0],[9,3],[7,3],[6,6],[4,2],[52,-6],[7,3],[3,10],[1,1],[8,13],[2,5],[1,4],[-1,11],[0,3],[-1,3],[-1,4],[1,2],[1,1],[2,2],[0,4],[0,7],[-3,11],[-1,6],[-2,7],[-6,4],[-12,3],[-31,-3],[-14,3],[-12,12],[9,8],[40,9],[34,30],[23,26],[24,18],[17,8],[11,-4],[10,-17],[7,-17],[8,-36],[1,-10],[2,-10],[4,-8],[9,-13],[7,-21],[2,-24],[-2,-60],[5,-89],[-4,-24],[-7,-25],[-4,-24],[3,-21],[-14,-30],[-18,-14],[-57,-20],[-17,0],[-6,-2],[-13,-10],[-10,-3],[-9,10],[-6,12],[-9,23],[-6,10],[-5,4],[-5,6],[0,13],[2,14],[2,7],[5,36],[3,5],[4,2],[-2,5],[-6,9],[-2,1],[-4,3],[-1,3],[-2,3],[-1,2],[-10,9],[-3,6],[-2,12],[-3,7],[-6,7],[-12,8],[-14,6],[-29,1],[-20,-6],[-7,-3],[-6,-6],[-7,-9],[-10,-4],[-3,-3],[-2,-3],[-12,-27],[-5,-7],[-6,-4],[-14,-2],[-13,-6],[-7,-8],[-3,-9],[-3,-10],[-4,-12],[-8,-15],[-2,-9],[2,-14],[4,-8],[11,-5],[9,-11],[18,-9],[34,-26],[9,-10],[11,-16],[6,-6],[8,-4],[7,-5],[3,-2],[4,0],[7,3],[7,1],[3,0],[2,-2],[5,-8],[5,-5],[2,-3],[5,-6],[8,1],[22,14],[3,1],[0,-3],[4,-15],[-1,-8],[-6,-9],[-33,-35],[-33,-21],[-56,-26],[-49,-54],[-9,-18],[-5,-8],[-6,-7],[-5,-3],[-3,-13],[0,-11],[2,-10],[1,-12],[-2,-11],[-4,-6],[-5,-6],[-23,-37],[-10,-30],[-5,-10],[-15,-21],[-3,-3],[-11,-31],[-1,-6],[-4,-8],[-1,-6],[1,-34],[1,-10],[6,-19],[-2,-8],[-1,-12],[0,-11],[2,-5],[4,-5],[2,-10],[2,-11],[2,-9],[1,-8],[-1,-23],[1,-7],[3,-3],[6,3],[3,-7],[-7,-8],[3,-13],[0,-10],[5,-6],[10,1],[-7,-9],[-5,-10],[-2,-10],[1,-8],[0,-9],[4,-3],[1,-11],[-4,-4],[-9,-2],[-5,-4],[-5,-7],[-3,-20],[1,-15],[0,-9],[4,-9],[2,-4],[2,-2],[3,-4],[-1,-6],[0,-5],[1,-6],[4,-4],[-1,-4],[-1,-5],[4,-7],[4,0],[3,-2],[0,-11],[1,-6],[-3,-2],[-2,-5],[0,-5],[-4,0],[-3,-1],[-2,-4],[-1,-6],[-3,-1],[-1,-3],[2,-3],[0,-3],[-3,-1],[0,-1],[2,-2],[-1,-2],[-3,1],[-2,3],[-2,-1],[0,-4],[1,-3],[-1,-3],[-2,-1],[-1,-3],[-2,-2],[-1,-4],[1,-2],[4,-1],[1,-3],[-1,-3],[-1,-3],[-1,-4],[2,-3],[2,1],[2,0],[1,1],[4,-1],[0,-4],[-2,-3],[0,-3],[2,-2],[1,-3],[-3,-1],[-4,2],[-2,-2],[-1,-3],[0,-4],[-2,-1],[-1,3],[1,6],[-1,5],[-4,1],[-3,-1],[-1,-4],[-2,0],[-1,1],[-3,-1],[0,-3],[1,-5],[3,-3],[0,-4],[-3,-2],[-3,2],[-2,-3],[-1,-4],[1,-5],[2,-4],[3,0],[2,-3],[2,-1],[0,-3],[-3,-4],[-2,0],[0,6],[-2,0],[-2,-3],[-1,-3],[-1,-5],[-1,3],[-2,2],[-1,6],[-2,2],[-1,-1],[-1,1],[-1,2],[-3,-2],[-3,-2],[-3,0],[-1,-4],[0,-5],[1,-6],[-4,1],[-1,-3],[-6,0],[-12,-9],[-10,-16],[-5,3],[-13,-15],[-4,-9],[-3,-9],[-3,-4],[-1,-5],[-3,-13],[1,-16],[-1,-10],[-1,-8],[-2,-5],[-3,-2],[-3,-3],[0,-12],[3,-4],[-2,-1],[-1,-6],[3,-13],[5,-2],[4,0],[1,-3],[2,0],[1,-3],[1,-4],[5,1],[0,-1],[4,3],[5,-2],[5,-6],[7,2],[6,-9],[4,-3],[4,-10],[-3,-1],[-4,-7],[-3,-3],[-2,-3],[-2,-3],[-4,2],[-2,-5],[-3,-4],[1,-7],[4,-5],[1,-8],[-5,1],[-3,4],[-3,-5],[2,-4],[4,-8],[-12,-12],[-5,3],[-6,-1],[-2,-11],[-12,16],[-5,7],[-9,-2],[-5,0],[-4,-8],[-4,3],[1,11],[-4,8],[-4,-1],[-4,1],[-5,-3],[0,-11],[1,-7],[-6,0],[-8,-6],[-8,4],[-6,12],[-8,11],[-8,0],[-18,9],[-16,-5],[-9,2],[-6,-13],[-11,-14],[-6,-11],[-5,6],[-4,2],[-6,0],[-4,0],[-5,-2],[-1,-5],[-6,2],[-3,-7],[-18,-8],[-8,-6],[-7,-13],[-1,-13],[14,-6],[6,-4],[-5,-12],[-27,16],[-5,1],[0,-16],[12,-4],[6,-11],[0,-14],[-10,1],[-31,0],[-32,-9],[-23,-4],[-17,-12],[-9,-12],[-13,-16],[-15,-27],[-9,-25],[-11,-20],[-9,-21],[-9,-24],[-6,-16],[-13,-19],[-7,-17],[-4,-7],[-7,-7],[-3,-12],[-3,-15],[0,-19],[0,-9],[5,-8],[-1,-6],[-2,-3],[-5,-1],[0,-8],[-1,-7],[0,-4],[2,-5],[-1,-6],[-3,-4],[-6,2],[-8,-10],[-4,-6],[-4,-5],[-5,-22],[-9,-9],[-3,-11],[-5,-12],[-4,-10],[4,-14],[-6,-6],[-6,-15],[-1,-4],[-9,-43],[-2,-16],[-1,-18],[1,-20],[13,-94],[9,-47],[7,-22],[26,-76],[16,-23],[8,-11],[14,-7],[8,-4],[3,-5],[4,-12],[11,-11],[11,-4],[6,-6],[5,-17],[9,-13],[9,-22],[4,-14],[3,-2],[4,0],[3,-2],[2,-8],[2,-2],[3,-4],[25,-41],[16,-37],[11,-15],[24,-19],[11,1],[9,-9],[11,6],[6,-4],[5,1],[6,3],[6,0],[4,-2],[9,-8],[5,-2],[15,2],[5,-2],[3,-3],[15,-4],[29,-9],[32,4],[15,9],[7,2],[7,-2],[17,-16],[10,-2],[7,-10],[3,-15],[6,-8],[5,-9],[3,-4],[14,-17],[-3,-12],[5,-32],[4,-19],[3,-19],[-4,-40],[-2,-59],[-7,-35],[-9,-38],[-15,-65],[-5,-5],[-8,0],[-8,2],[-14,4],[-17,1],[-8,-11],[-9,-18],[-8,-7],[-7,-4],[-17,-13],[-18,-18],[-6,-3],[-21,2],[-5,-2],[14,-7],[11,2],[21,18],[7,2],[15,6],[27,22],[7,12],[14,4],[12,-2],[8,-1],[4,-9],[5,-30],[4,-26],[7,-12],[11,-3],[8,-4],[-8,-8],[-2,-7],[6,-4],[3,-3],[-6,-3],[-8,-4],[-6,-2],[-3,11],[-15,7],[-7,-5],[-6,-12],[-1,-11],[6,-6],[-2,-15],[-1,-3],[-2,-3],[0,-7],[-6,-6],[1,-5],[8,-9],[9,-4],[2,-10],[-6,-11],[-7,-2],[-3,7],[-5,3],[-5,-4],[-7,0],[-13,-2],[-8,-3],[-5,-5],[-6,-7],[-3,-15],[-3,-8],[-2,-6],[-12,-8],[-10,-6],[-7,-20],[-10,-6],[-5,-7],[-5,-13],[-5,-21],[4,-19],[-4,-2],[-9,3],[-10,1],[-7,0],[-1,-3],[-5,-6],[2,-8],[-2,-13],[-9,-8],[-12,-6],[-9,0],[-20,-4],[-12,-14],[-16,-12],[-6,-11],[-10,-11],[-9,-16],[-5,-5],[-1,-13],[-1,-12],[-7,-4],[-7,-4],[-20,-5],[-16,-19],[-19,-18],[-6,-11],[-3,-29],[-11,-18],[-2,-14],[-2,-13],[-13,-16],[-21,-13],[-23,-22],[-42,-66],[-5,-19],[-4,-22],[-2,-13],[-5,-7],[-5,-7],[-1,-15],[6,-3],[1,-10],[-4,-4],[-2,-4],[-5,-3],[-2,-5],[-1,-6],[-2,-6],[-2,-14],[-8,-11],[-8,-5],[3,-5],[3,-6],[2,-6],[-2,-7],[-4,-1],[-4,-6],[-5,-4],[4,-5],[-1,-7],[-8,-12],[-15,-3],[-1,-3],[5,-4],[6,0],[19,1],[8,11],[4,21],[-1,16],[5,8],[1,17],[5,9],[3,3],[4,-2],[4,-9],[0,-11],[-1,-23],[-12,-32],[-1,-11],[-5,-39],[-7,-43],[-2,-17],[0,-26],[-2,-14],[-1,-24],[2,-9],[-6,-57],[-8,-39],[-3,-14],[-4,-12],[-2,-8],[-1,-3],[-10,-26],[-17,-25],[-24,-28],[-26,-26],[-26,-16],[-25,-6],[-19,3],[-4,1],[-3,4],[-7,17],[-6,4],[-6,15],[-4,11],[-3,16],[-5,15],[-6,12],[-10,11],[-6,15],[-2,13],[-5,21],[-7,14],[-13,35],[-4,10],[-5,7],[-6,7],[-7,3],[-6,1],[18,-16],[3,-7],[2,-9],[8,-21],[9,-24],[5,-27],[0,-14],[-4,-6],[-9,-9],[-7,-3],[-7,-6],[-7,-2],[-12,4],[-16,-2],[-20,3],[-11,-11],[-9,-6],[-8,0],[-11,-10],[0,-4],[2,0],[3,0],[1,0],[6,1],[16,1],[9,11],[7,6],[4,1],[4,0],[7,-2],[9,2],[15,-5],[12,-3],[9,6],[11,7],[5,2],[4,-3],[2,-3],[2,-12],[6,-5],[4,-4],[0,-6],[0,-9],[2,-12],[5,-12],[7,-11],[6,-6],[7,-1],[5,-3],[3,-7],[8,-4],[4,-8],[-4,-12],[-9,-5],[-6,-9],[-6,-5],[-49,-30],[-34,-24],[-8,2],[-7,-9],[-1,-8],[-9,-4],[-4,-1],[-4,2],[-6,-5],[-1,-13],[-5,-5],[-13,-26],[-8,-14],[-4,-13],[-6,-16],[-9,-22],[-5,-16],[-4,-11],[-1,-26],[-12,-45],[-6,-23],[-2,-14],[1,-9],[4,-15],[2,-38],[-1,-18],[-2,-15],[-6,-7],[-13,-12],[-15,-23],[-25,-26],[-11,-18],[-6,-21],[8,11],[16,20],[10,9],[17,14],[8,7],[8,2],[3,-11],[0,-12],[4,-24],[6,-46],[4,-29],[1,-19],[5,-12],[2,-25],[5,-26],[27,-106],[2,-13],[1,-12],[-3,-10],[-5,-7],[-5,2],[-5,3],[-8,0],[-6,-5],[-9,-16],[-5,-3],[-8,0],[-7,3],[-31,23],[-21,3],[-5,-1],[-3,-2],[-8,-6],[-16,-3],[-7,-3],[-13,-15],[-13,-6],[-6,-6],[60,20],[13,2],[13,-3],[29,-16],[12,-8],[-2,-10],[-15,-17],[0,-4],[6,0],[5,3],[23,17],[12,14],[7,9],[8,2],[7,-5],[11,-16],[17,-67],[13,-26],[21,-66],[19,-53],[45,-94],[34,-66],[9,-19],[3,-11],[-2,-8],[-8,-11],[-4,-8],[-3,-9],[-5,-3],[-2,7],[2,8],[-4,11]],[[30932,18017],[3,-4],[7,-16],[2,-5],[6,-8],[2,-5],[1,-9],[-5,-4],[-19,-1]],[[30936,19296],[10,-9],[2,-5],[6,-19],[2,-6],[18,-34],[18,-43],[5,-8],[19,-22],[8,-16],[7,-18],[6,-22],[10,-63],[1,-9],[-1,-10],[-3,6],[-3,13],[-8,42],[-7,5],[-5,0],[-7,-5],[-9,-9],[-8,-10],[-14,-23],[-17,-20],[-9,-28],[-3,-20],[4,-22],[11,-18],[16,-17],[12,-1],[12,-6],[20,-6],[29,4],[22,-18],[5,-19],[5,-12],[-2,-20],[1,-5],[3,-11],[3,-28],[3,-12],[15,-38],[2,-8],[53,-74],[19,-20],[6,-9],[2,-9],[-3,-8],[7,1],[6,1],[9,-7],[20,-14],[2,-7],[-8,-2],[-3,-11],[2,-14],[3,-8],[76,-87],[43,-41],[32,-19],[18,-16],[5,-10],[10,-8],[39,-22],[18,-23],[14,-34],[27,-34],[8,-15],[10,-7],[2,-15],[10,-4],[8,-2],[12,-5],[24,-21],[96,-59],[4,-2],[7,-1],[4,-1],[10,-11],[3,-1],[21,-2],[19,-7],[67,13],[14,-3],[8,0],[19,11],[43,-8],[4,-4],[-3,-8],[-5,-9],[-5,-4],[-2,-5],[-8,-31],[1,-3],[2,-7],[1,-3],[-10,-11],[-2,-4],[1,-6],[1,-6],[1,-6],[-7,-4],[-8,-11],[-3,-4],[-7,-36],[-4,-5],[-4,-3],[-3,-1],[-6,2],[-1,5],[0,6],[-1,8],[-8,6],[-9,-1],[-7,-6],[3,-11],[-7,-11],[-22,2],[-10,-3],[-2,-5],[-1,-6],[-2,-6],[-4,-4],[-6,-1],[-4,1],[-4,5],[-3,7],[0,3],[0,9],[0,5],[-1,3],[-2,4],[-3,1],[-5,0],[-6,1],[-11,-6],[-19,9],[-6,-7],[-18,6],[-6,-5],[4,-9],[6,-9],[-5,-10],[-7,-9],[-19,-7],[-15,-6],[-22,1],[-34,-1],[-15,-6],[1,-10],[-1,-9],[-15,-6],[-7,-3],[-25,1],[-25,11],[-8,7],[-6,8],[-4,9],[-5,6],[-25,23],[-7,4],[-32,4],[-24,14],[-84,8],[-58,10],[-35,-3],[-73,10],[-41,10],[-13,13],[-26,3],[-15,12],[-8,4],[-4,-5],[1,-14],[-1,-5],[-3,-6],[-54,-6],[-7,3],[-5,5],[-8,17],[-12,16],[-1,0]],[[32253,18058],[6,-2],[6,6],[5,5],[4,-9],[-6,-6],[-2,-4],[-2,-4],[-4,-13],[-2,-4],[-4,-1],[-5,-1],[-4,-3],[-14,-15],[-3,0],[-4,3],[2,5],[5,13],[1,4],[-1,8],[-3,2],[-5,-4],[-3,-6],[-4,-5],[-4,-2],[-10,1],[-2,1],[-1,0],[-3,-1],[-2,-3],[0,-3],[-1,-4],[-1,-2],[-6,-5],[-26,-6],[-2,-6],[-4,-3],[-4,1],[-3,7],[0,6],[1,8],[4,14],[-5,0],[-2,-2],[-2,-2],[-4,4],[-4,0],[-6,-8],[-15,-12],[-3,-4],[-5,-9],[-3,-4],[-5,-2],[-5,-2],[-9,0],[0,2],[1,2],[1,2],[1,2],[0,5],[-3,0],[-3,-2],[-3,-3],[-2,-4],[1,0],[3,-4],[-4,-4],[-13,-8],[-3,-5],[-4,-11],[-3,-4],[-5,-2],[-14,0],[-4,2],[-1,5],[1,4],[4,5],[2,6],[-25,20],[2,11],[6,7],[6,6],[3,7],[4,6],[9,-4],[13,-13],[6,2],[17,8],[5,7],[-16,19],[-2,9],[7,4],[2,-2],[7,-14],[4,-4],[9,-4],[3,1],[5,6],[3,1],[2,0],[3,0],[2,-3],[1,-8],[0,-8],[1,-4],[2,-1],[3,1],[1,3],[-1,3],[0,4],[0,10],[-1,8],[1,8],[3,9],[2,-1],[4,-5],[5,-4],[5,4],[1,-3],[2,-1],[1,0],[2,0],[3,-3],[9,4],[5,-1],[3,-4],[4,-6],[3,-4],[3,0],[2,5],[-1,6],[-1,5],[5,2],[2,-1],[4,-6],[3,-1],[2,1],[2,4],[2,3],[3,0],[2,-3],[3,-13],[3,-4],[3,1],[8,9],[31,10],[9,-4],[-2,-4]],[[32803,27292],[1,3],[3,-5],[4,-12],[5,-29],[1,-9],[-3,-8],[-6,-1],[-6,4],[-4,5],[-4,8],[-18,10],[-6,7],[-5,8],[-11,27],[-4,12],[0,9],[6,2],[10,-9],[28,-10],[5,-16],[1,-5],[1,0],[2,3],[0,6]],[[32754,27359],[-4,-6],[-6,1],[-3,7],[3,11],[22,-2],[11,-5],[8,-12],[2,-8],[-3,-6],[-4,-4],[-5,0],[-6,4],[-15,20]],[[32734,26559],[8,-1],[9,0],[8,-13],[5,-17],[6,-16],[-3,-18],[-8,-16],[-5,-19],[-7,-12],[-7,0],[-7,4],[1,18],[-3,10],[-7,-7],[-8,0],[-4,7],[4,11],[6,17],[2,23],[5,29],[5,0]],[[32744,26704],[6,0],[8,-4],[8,-6],[7,-17],[-1,-25],[0,-33],[1,-32],[-1,-9],[-3,12],[-3,15],[-7,14],[-12,32],[-7,23],[4,30]],[[59383,71183],[-6,2],[-12,-1],[-4,-3]],[[59361,71181],[0,9]],[[59361,71190],[3,-1],[1,7],[-5,3],[0,3],[2,4],[-1,4],[-5,5],[-1,2]],[[59355,71217],[-1,2],[-1,6],[2,5],[4,2],[3,5],[3,0],[1,-3],[-2,-13],[-1,-6],[3,1],[6,9],[7,-9],[3,5],[3,-1],[2,1],[1,7],[7,9],[3,-2],[2,-4],[3,1],[4,5],[1,3],[2,3],[-2,5],[0,9],[1,11],[4,0],[1,-5],[2,-1],[1,-6],[1,-2],[0,-3],[2,0],[2,-6],[-2,-5],[-2,-1],[0,-1]],[[59418,71238],[-2,-5]],[[59416,71233],[-5,7],[-2,-3],[-2,-4],[-3,-4],[-4,-2],[-2,4],[-2,2],[-4,-3],[-2,-3],[-2,-7],[7,-5],[2,-4],[-1,-13],[4,-5],[5,-1],[0,-10],[-3,-1],[-3,-5],[2,-3],[5,2],[8,-3]],[[59414,71172],[-2,-5],[-3,-5],[-3,-2],[-5,3],[-7,13],[-5,5],[-6,2]],[[59383,71183],[1,0],[1,1],[1,0],[1,0],[-1,3],[-1,1],[-2,0],[-1,0],[-1,2],[-2,1],[-1,0],[-1,-1],[2,-1],[1,-1],[0,-3],[2,0],[1,0],[0,-2]],[[59372,71198],[1,1],[2,1],[0,6],[-2,0],[-1,-1],[0,-2],[-1,-3],[1,-1],[0,-1]],[[59361,71181],[-6,-4],[-7,-13],[-2,-7],[-2,-10],[-2,-10],[0,-11],[0,-11],[0,-5],[-3,-2],[-2,-2],[-1,-11],[-2,-3],[-4,-3],[-9,0],[-4,-1],[-2,-5],[-3,-7],[-3,-6],[-4,-3],[-9,-3],[-8,-7],[-7,-3],[-4,9],[0,-17],[-8,-8],[-21,-8],[-4,-3],[-2,-3],[-4,-4],[-4,-2],[-20,5],[-20,-5],[-4,-2],[-4,-4],[-13,-21],[-3,-10]],[[59170,70981],[-6,0],[-6,-2],[-2,-4],[-2,2],[-1,9],[4,5],[1,-3],[5,0],[0,16],[-10,2],[-3,-6],[-2,-6],[-1,3],[-4,3],[-1,-4],[-8,4],[-5,7],[-2,5],[0,8],[-2,-1],[-2,0],[-1,0],[-2,0],[-1,1],[-1,-3],[-1,-3],[-1,-2],[-4,-1],[-2,-9],[-5,2],[-4,1],[-2,-4],[1,-9]],[[59100,70992],[-4,-2],[-11,-3],[-12,4],[-11,9],[-14,15],[-5,4],[-6,3],[-12,2],[-5,3],[-4,5],[-11,16],[-2,3],[-2,17],[-1,3],[0,6],[-6,31],[-3,4],[-6,7],[-3,5],[-2,6],[-2,7],[0,8],[2,7],[-5,16],[-1,6],[0,13],[-1,11],[-6,18],[-2,9],[-1,15],[1,11],[3,4],[6,-7],[8,-16],[4,-6],[6,-4],[11,1],[10,9],[9,14],[6,16],[4,18],[3,10],[4,6],[1,3],[1,2],[1,2],[2,-1],[2,-3],[2,-1],[3,1]],[[59051,71299],[2,-6],[4,-5],[4,-1],[3,1],[4,5],[2,7],[2,8]],[[59072,71308],[8,-2]],[[59080,71306],[2,-16],[2,-8],[2,-6],[5,-4],[7,-4],[6,-5],[5,-5],[3,-5],[1,-8],[0,-6],[2,-5],[3,-2],[2,0],[7,4],[4,4],[1,3],[2,6],[2,2],[2,-2],[2,-4],[4,-5],[4,0],[4,4],[5,9],[5,9],[5,4],[6,7],[3,5],[3,1],[7,-2],[7,-2],[7,0],[4,3],[2,2],[2,5],[6,9],[5,0],[3,-3],[4,-3],[4,0],[2,-2],[4,-8],[3,-6],[4,-5],[7,-3],[2,2],[1,3],[1,5],[3,4],[6,11],[2,1],[5,-1],[7,2],[5,1],[1,-2],[0,-7],[1,-9],[2,-4],[3,-6],[4,-7],[1,-4],[0,-10],[0,-10],[0,-11],[-2,-14],[-2,-10],[1,-8],[3,-6],[3,0],[4,2],[2,10],[1,17],[2,2],[2,4],[2,4],[3,-4],[0,-14],[1,-8],[4,-3],[5,4],[2,8],[2,3],[3,-1],[4,-4],[2,1],[2,2],[3,-2],[3,-2],[6,-6],[3,-1],[3,0],[5,-6]],[[59416,71233],[3,-2],[3,-2],[3,-2],[4,0],[4,4],[5,0],[3,-3],[3,-3],[3,1],[2,2],[1,3]],[[59450,71231],[4,-6],[4,-8],[3,-16],[3,-11],[4,-9],[3,-4],[-3,-1],[-8,1],[-7,4],[-3,6],[-3,3],[-15,-4],[-13,-6],[-3,-3],[-2,-5]],[[71610,71491],[5,-14],[5,-12],[6,-9],[7,-4],[9,6],[12,25],[8,7],[16,-2],[3,-23],[-4,-32],[-8,-30],[-3,-47],[10,-44],[26,-82],[3,-22],[2,-44],[4,-21],[11,-25],[3,-11],[17,-112],[6,-20],[11,-18],[12,-9],[64,-19],[16,-12],[23,-33],[15,-33],[10,-11],[13,-7],[10,-8],[8,-13],[2,-6],[5,-18],[3,-13],[1,-14],[-1,-14],[-3,-13],[-20,-35],[-27,-21],[-21,-26],[-3,-50],[14,-73],[5,-37],[2,-39],[-4,-113],[5,-35],[7,-19],[25,-44],[1,-1],[15,-45],[5,-4],[10,-6],[5,-4],[4,-5],[4,-8],[1,-11],[1,-14],[2,-4],[10,8],[8,-1],[22,-20],[9,-6],[23,-2],[9,-9],[1,-22],[-3,-9],[-6,-16],[-2,-11],[-1,-31],[-2,-12],[1,-22],[5,-15],[16,-26],[6,-19],[2,-18],[2,-17],[8,-16],[7,-13],[1,-20],[-3,-21],[-5,-19],[-12,-26],[-27,-39],[-12,-25],[-5,-2],[-5,3],[-6,5],[-5,2],[-7,-2],[-8,-4],[-8,-7],[-6,-8],[-3,-13],[-3,-35],[-4,-12],[-3,0],[-7,3],[-3,1],[-4,-2],[-7,-6],[-4,-1],[-9,-9],[-9,5],[-8,12],[-7,15],[-24,36],[-4,19],[-5,31],[-1,9],[2,10],[2,10],[1,10],[-4,11],[-7,4],[-5,-5],[-8,-18],[-5,-7],[-5,-5],[-11,-5],[-40,-2],[-11,-5],[-6,-6],[-1,-12],[8,-30],[11,-30],[1,-6],[-2,-3],[-1,-4],[-2,-5],[0,-7],[0,-4],[1,-2],[6,-55],[0,-12],[-1,-11],[0,-7],[3,-2],[2,-2],[10,-10],[7,-15],[4,-18],[27,-68],[8,-12],[13,-13],[3,-6],[3,-12],[-1,-11],[-6,-25],[-2,-12],[-2,-25],[-2,-11],[-7,-21],[-1,-9],[7,-14],[0,-6],[-1,-5],[1,-6],[1,-5],[3,-7],[3,-11],[1,-4],[2,-3],[2,-1],[6,0],[10,-19],[6,-16],[-1,-7],[-5,-10],[-27,-41],[-1,-13],[11,-12],[8,-13],[-1,-20],[-4,-22],[-2,-23],[1,-11],[1,-5],[2,-4],[9,-8],[3,0],[7,3],[8,-1],[3,0],[5,4],[0,1],[3,6],[3,8],[5,18],[5,-4],[6,-13],[5,-3],[4,14],[2,25],[5,23],[13,5],[4,-4],[8,-12],[9,-11],[2,-8],[1,-9],[3,-9],[2,-1],[6,-2],[2,-2],[1,-6],[0,-6],[-1,-5],[0,-7],[1,-5],[4,-6],[2,-4],[0,-5],[-1,-5],[0,-5],[1,-6],[4,-6],[5,-3],[4,-4],[1,-13],[0,-11],[1,-10],[2,-10],[4,-8],[7,-7],[7,-4],[7,-7],[3,-9],[2,-6],[1,-19],[2,-8],[4,-2],[4,2],[5,0],[4,-1],[4,-4],[1,-3],[1,-2],[1,-4],[0,-3],[3,-8],[4,-9],[5,-7],[4,-4],[6,-3],[3,-2],[3,1],[12,13],[5,2],[11,1],[14,7],[6,-1],[20,-9],[5,-5],[3,-7],[5,-17],[7,-14],[3,-3],[1,-2],[4,-5],[20,-15],[6,-10],[5,-14],[5,-13],[8,-6],[5,2],[9,9],[4,0],[4,-5],[7,-22],[8,-8],[2,-6],[-7,-23],[-2,-3],[-2,0],[-3,0],[-2,-1],[-2,-2],[0,-8],[3,-7],[3,-7],[3,-7],[1,-12],[-2,-9],[-2,-8],[-3,-11],[11,5],[10,-1],[20,-11],[28,-29],[14,-10],[9,-11],[4,-2],[6,1],[4,3],[4,0],[6,-4],[27,-28],[8,-12],[4,-8],[5,-19],[4,-9],[4,-6],[23,-19],[22,-11],[9,-9],[5,-17],[2,-8],[-2,-9]],[[72498,68353],[-2,0],[-19,-12],[-5,2],[-2,10],[-3,8],[-4,-6],[-5,-11],[-4,-7],[4,-16],[-6,-16],[-17,-23],[-4,-8],[-8,-24],[-3,-6],[-10,-13],[-7,-12],[-3,-5],[-6,-3],[-10,-2],[-4,-4],[-2,-11],[-4,-21],[-6,-18],[-14,-34],[-6,-9],[-17,-8],[-7,-11],[-4,-17],[0,-15],[3,-15],[3,-15],[3,-16],[-1,-13],[-3,-12],[-6,-13],[-2,-2],[-3,-4],[-2,-2],[-1,-4],[1,-4],[1,-3],[-1,-3],[-2,-6],[-2,-4],[-6,-8],[-2,-6],[-3,-4],[-2,-4],[0,-7],[-2,-6],[-8,-5],[-3,-4],[-1,-10],[2,-10],[6,-20],[2,-23],[1,-7],[3,0],[2,0],[2,-3],[1,-12],[-1,-13],[-6,-39],[-2,1],[-4,5],[-5,-1],[-1,-9],[5,-24],[0,-10],[-3,-7],[-6,-3],[-5,0],[-5,1],[-9,-8],[-5,-22],[-2,-27],[0,-19],[-2,-11],[-4,-5],[-4,-5],[-5,-6],[-3,-10],[-2,-10],[-1,-11],[0,-12],[2,-24],[5,-7],[5,-2],[2,-1],[9,-10],[9,-23],[5,-6],[5,-4],[10,-3],[4,-5],[2,-4],[3,-10],[2,-4],[2,-2],[5,-3],[2,-3],[8,-29],[3,-8],[6,-4],[5,1],[5,3],[6,0],[5,-6],[12,-27],[5,-5],[2,8],[-3,37],[1,10],[3,9],[5,5],[5,0],[6,0],[1,-4],[-1,-5],[0,-5],[2,-5],[5,-5],[5,-3],[10,-3],[4,-5],[5,-20],[3,-7],[5,-4],[8,-5],[5,-6],[11,-20],[4,-6],[5,-2],[12,0],[4,-3],[2,-9],[0,-9],[2,-8],[5,-7],[4,-3],[6,-2],[5,0],[5,2],[3,-3],[1,-6],[0,-8],[2,-6],[13,-5],[28,-10],[6,-6],[6,-14],[6,-35],[4,-17],[16,-35],[3,-14],[-4,-3],[-1,-5],[2,-5],[4,-2],[0,-8],[3,-3],[4,1],[4,4],[3,7],[1,8],[2,5],[4,1],[6,-4],[6,-8],[5,-10],[4,-11],[1,-9],[0,-6],[2,-6],[4,-6],[24,-24],[6,-7],[4,-11],[5,-8],[14,-7],[7,-4],[6,-9],[11,-23],[14,-15],[7,-11],[8,-9],[8,-1],[6,9],[11,25],[8,6],[15,-2],[6,-4],[6,-9],[5,-11],[5,-5],[12,-9],[33,-52],[22,-21],[15,-29],[10,-6],[24,5],[35,17],[6,-4],[2,-1],[5,-15],[3,-23],[3,-44],[3,-23],[6,-13],[34,-5],[7,-4],[13,-14],[18,-8],[34,1],[10,-8],[14,-22],[3,-8],[3,-11],[2,-8],[3,-6],[6,-5],[7,1],[5,6],[5,9],[6,17],[1,7],[1,7],[-4,11],[-1,7],[1,7],[1,6],[7,5],[26,0],[31,-8],[20,-15],[39,-39],[12,-9],[2,-3],[2,5],[2,3],[3,2],[0,5],[-1,6],[-1,5],[-8,17],[-2,10],[5,4],[13,1],[6,4],[4,-2],[11,-4],[9,1],[6,7],[14,33],[5,5],[5,-3],[1,-10],[3,-5],[3,-4],[7,-5],[2,-5],[3,-15],[3,-1],[8,2],[4,-5],[3,-11],[5,-14],[6,-8],[80,-28],[8,-11],[7,-19],[5,-22],[2,-22],[1,-23],[-2,-23],[-2,-13],[-4,-14],[-3,-13],[2,-13],[3,-5],[34,-17],[3,0],[4,5],[4,4],[5,-2],[3,-10],[6,-7],[14,-9],[6,-7],[4,-11],[2,-12],[2,-11],[7,-7],[3,-1],[4,-1],[4,-5],[0,-9],[1,-8],[7,-1],[15,12],[6,1],[11,-9],[1,-18],[0,-20],[9,-16],[25,-13],[4,0],[10,6],[4,6],[1,1],[4,9],[5,8],[4,0],[5,-3],[5,3],[11,10],[12,13],[22,16],[3,-2],[21,-23],[4,-9],[2,-20],[-2,-44],[3,-21],[4,-9],[15,-23],[3,-1],[3,2],[2,1],[2,-3],[1,-5],[0,-6],[1,-4],[2,-3],[4,1],[6,7],[19,31],[5,5],[6,2],[10,6],[9,-6],[19,-22],[1,-3],[2,-1],[6,0],[1,0],[2,0],[4,-2],[2,-2],[1,-3],[2,-3],[3,-1],[2,1],[6,8],[10,7],[6,2],[5,-2],[2,-4],[0,-9],[2,-4],[2,0],[6,1],[2,0],[9,-6],[17,-17],[8,-7],[6,-2],[4,-5],[4,-6],[4,-9],[5,-6],[19,-17],[19,-22],[5,-2],[3,4],[2,7],[2,6],[4,1],[10,-7],[2,-1],[7,4],[7,8],[6,12],[2,13],[9,10],[8,5],[10,7],[4,5],[8,17],[4,7],[3,0],[1,-11],[0,-10],[4,-30],[2,-17],[5,-20],[6,-16],[8,-6],[15,3],[9,5],[3,-6],[2,-9],[2,-7],[4,-5],[11,-10],[4,-1],[4,5],[5,22],[3,8],[8,9],[9,5],[9,1],[8,-3],[20,-22],[10,-5],[10,9],[7,10],[3,5],[6,3],[5,-4],[3,-7],[5,-1],[4,4],[2,9],[2,13],[4,3],[4,-4],[5,-5],[5,0],[9,14],[5,2],[0,-2],[6,-10],[1,0],[1,-5],[2,-10],[2,-6],[4,-7],[9,-10],[4,-8],[9,2],[10,21],[8,29],[3,24],[-1,8],[0,6],[2,13],[4,25],[12,47],[5,26],[1,12],[1,11],[-1,11],[-2,24],[-1,25],[-1,10],[-3,9],[-6,18],[-2,10],[-4,20],[-6,20],[-6,15],[-3,7],[-5,3],[-5,6],[-5,22],[-4,8],[-1,4],[-1,5],[1,5],[4,17],[1,42],[4,18],[7,29],[1,14],[0,7],[-4,12],[-1,6],[0,8],[0,7],[3,13],[1,4],[1,3],[2,4],[0,5],[0,2],[-3,5],[0,3],[-2,12],[0,5],[0,7],[7,29],[17,56],[7,50],[4,15],[3,15],[-1,24],[3,11],[-1,7],[-2,4],[-4,2],[-6,3]],[[74477,66969],[-4,11],[-2,15],[0,14],[5,11],[3,2],[7,-2],[3,0],[3,2],[7,5],[50,14],[6,8],[15,21],[6,3],[7,-4],[4,6],[4,12],[6,11],[12,17],[4,-1],[6,-13],[6,-8],[16,-5],[7,-4],[12,-16],[7,-10],[4,-9],[0,-11],[-2,-19],[0,-10],[2,-8],[7,-13],[2,-9],[1,-11],[0,-9],[-14,-112],[-6,-19],[-4,-21],[-5,-16],[-2,-8],[0,-9],[4,-12],[0,-9],[-1,-19],[2,-17],[4,-16],[6,-13],[3,-4],[3,-3],[3,-4],[6,-15],[4,-6],[8,-10]],[[74692,66646],[-3,-17],[-2,-3],[-4,-6],[-17,-9],[-7,-9],[-6,-17],[-4,-19],[-3,-17],[1,-1],[3,-4],[17,-18],[7,-9],[3,-13],[2,-15],[0,-33],[1,-29],[5,11],[5,9],[6,1],[4,-11],[1,-7],[0,-7],[0,-5],[2,-6],[3,-4],[3,0],[3,1],[3,4],[6,1],[6,-6],[7,-9],[4,-10],[4,-15],[2,-12],[4,-8],[9,-5],[16,-2],[8,2],[7,4],[4,4],[3,6],[2,4],[4,1],[4,-1],[11,6],[8,-10],[11,-14],[9,-10],[18,4],[11,-3],[11,-8],[7,-11],[1,-10],[-5,-17],[4,-5],[5,0],[10,8],[6,-1],[15,-12],[4,-2],[2,0],[11,0],[1,0],[2,-2],[1,0],[2,2],[1,4],[0,4],[0,1],[0,1],[0,3],[1,3],[1,2],[2,0],[2,-3],[1,-1],[2,-1],[6,-4],[3,0],[6,1],[17,9],[32,6],[11,5],[7,12],[7,36],[9,12],[5,0],[10,0],[5,3],[5,6],[4,8],[4,6],[5,3],[10,-3],[25,-35],[32,-31],[35,-7],[64,7],[17,1],[2,2],[13,12],[9,0],[9,-2],[20,0],[10,-4],[8,-9],[4,-3],[5,0],[5,2],[5,4],[4,6],[4,7],[3,11],[2,10],[3,10],[5,6],[4,1],[11,-1],[4,-2],[3,-8],[6,-26],[4,-6],[5,0],[10,7],[5,0],[12,-7],[5,0],[13,3],[8,8],[18,22],[8,3],[5,-6],[2,-8],[1,-10],[3,-8],[4,-1],[2,7],[0,9],[-3,8],[6,6],[0,8],[-1,8],[4,2],[5,-3],[9,-15],[5,-4],[17,5],[10,19],[2,20],[1,9],[-5,34],[-4,19],[-14,27],[-4,19],[0,11],[1,11],[2,10],[2,9],[0,2],[1,2],[4,7],[1,5],[1,5],[1,11],[1,6],[4,8],[9,14],[1,11],[-1,7],[-24,85],[-6,14],[-3,-2],[-9,-12],[-3,-2],[-10,1],[-8,-2],[-21,-14],[-9,-2],[-1,4],[0,10],[-5,12],[-6,5],[-7,2],[-6,4],[-5,10],[-2,9],[-8,13],[-3,8],[-6,43],[2,23],[13,35],[2,25]],[[75453,66909],[39,3],[11,-6],[10,-11],[4,-3],[12,1],[13,-4],[6,1],[10,8],[16,32],[10,10],[6,1],[23,-4],[3,1],[2,2],[2,6],[0,5],[-2,6],[1,5],[2,10],[3,-2],[3,-8],[4,-22],[4,-11],[4,-4],[4,10],[3,18],[2,-1],[1,-10],[3,-7],[5,1],[2,10],[2,12],[3,8],[3,-1],[4,-15],[3,-4],[3,1],[10,14],[13,8],[4,5],[8,16],[3,3],[7,2],[7,7],[10,14],[7,17],[1,16],[3,18],[0,7],[-4,6],[-9,3],[-5,3],[0,8],[5,20],[6,16],[8,14],[18,21],[2,3],[1,-3],[1,-5],[1,-2],[4,-1],[5,1],[4,2],[4,5],[4,8],[7,18],[4,9],[5,5],[11,7],[4,7],[7,16],[25,34],[7,14],[5,20],[4,22],[2,20],[9,14],[9,13],[12,13],[15,24],[10,12],[26,29],[29,4],[15,-4],[5,0],[5,5],[5,7],[4,6],[4,-2],[5,-5],[4,3],[19,32],[5,5],[16,10],[2,4],[1,6],[3,2],[4,0],[2,1],[1,5],[-1,3],[-1,4],[1,4],[3,5],[5,2],[6,0],[4,-1],[5,6],[6,5],[4,6],[14,12],[16,8],[11,20],[21,1],[11,26],[16,28],[-11,21],[-10,23],[4,30],[10,-2],[4,2],[3,6],[4,16],[3,6],[6,7],[8,2],[14,0],[7,2],[4,4],[4,6],[15,42],[5,8],[8,2],[11,-8],[10,-13],[14,-32],[4,-9],[-2,-24],[4,-4],[6,-1],[5,2],[11,1],[10,-6],[21,-18],[6,-3],[-2,5],[-5,10],[-2,11],[4,-5],[5,-4],[16,-8],[15,-16],[5,-3],[20,-7],[3,-1],[2,-3],[1,-5],[1,-5],[0,-5],[3,-3],[15,-4],[-2,36],[9,14],[18,1],[11,-5],[4,28],[6,5],[1,-22],[5,-15],[2,8],[10,-3],[3,4],[0,13],[-3,22],[1,7],[10,2],[0,4],[0,6],[1,5],[3,4],[2,1],[3,0],[3,2],[15,-13],[19,-6],[9,33],[-1,40],[9,3],[5,4],[19,-17],[25,21],[17,3],[17,3],[18,-1],[3,-8],[4,-31],[3,-9],[8,-18],[8,-9],[9,0],[10,12],[6,8],[4,3],[3,-4],[5,-10],[0,-7],[-7,-20],[-4,-18],[-3,-5],[-30,-16],[-4,-5],[-3,-8],[-3,-9],[6,-48],[24,30],[20,12],[4,-36],[25,-25],[-2,-8],[0,-7],[3,-4],[4,-1],[5,-8],[2,-11],[3,-26],[3,-12],[15,-34],[5,-29],[1,-29],[-27,-39],[-18,-19],[9,-28],[-12,-27],[10,-18],[9,-40],[5,5],[2,35],[2,27],[9,30],[15,14],[24,-11],[20,-42],[19,-24],[13,-30],[3,-43],[10,-11],[9,-4],[9,4],[10,12],[12,11],[11,-5],[18,-31],[3,-2],[3,0],[2,-2],[3,-14],[2,-6],[16,-23],[11,-11]],[[77034,67180],[1,-16],[-8,-36],[-2,-20],[4,-15],[13,-28],[2,-16],[-1,-9],[-5,-17],[-1,-9],[0,-14],[1,-7],[-2,-4],[-5,-6],[-6,-4],[-1,4],[0,8],[-4,8],[-4,1],[-5,-3],[-5,-5],[-4,-6],[-3,-9],[-5,-10],[-14,-24],[-2,-3],[-3,-1],[-2,-2],[-2,-9],[-2,-3],[-5,-4],[-2,-3],[-1,-6],[-1,-8],[-1,-2],[-1,0],[-4,-3],[-9,-5],[-4,-4],[-9,-23],[-5,-8],[-11,-15],[-5,-8],[-3,-10],[-3,-12],[0,-12],[1,-6],[4,-9],[0,-5],[1,-6],[1,-11],[1,-5],[0,-9],[-3,-17],[1,-12],[6,-21],[46,-113],[7,-15],[2,-5],[0,-11],[1,-5],[2,-4],[2,-3],[3,-4],[1,-6],[0,-5],[-3,-15],[-1,-4],[-4,-3],[-2,2],[-2,4],[-4,3],[-3,-1],[-2,-2],[-3,-3],[-3,0],[-3,3],[-2,4],[-2,5],[-2,4],[-39,34],[-6,10],[0,10],[2,9],[3,12],[-2,5],[-9,14],[-3,8],[-6,19],[-3,7],[-5,7],[-10,8],[-5,3],[-5,1],[-3,-3],[-5,-9],[-3,-3],[-3,-1],[-2,2],[-2,3],[-2,3],[-8,3],[-3,-5],[-2,-10],[-6,-13],[-4,-5],[-6,-3],[-6,-1],[-4,2],[-19,2],[-73,-24],[-19,-16],[-17,-24],[-11,-28],[-10,-37],[-6,-17],[-8,-15],[-8,-7],[-15,-6],[-8,-5],[-12,-29],[-7,-23],[-3,-7],[-3,-3],[-13,-3],[-4,-3],[-4,-8],[-2,-14],[-4,-12],[-4,-4],[-6,0],[-6,2],[-12,-6],[-7,-19],[-7,-25],[-8,-20],[-5,-6],[-21,-14],[-10,-9],[-5,-3],[-4,1],[-2,0],[-5,12],[-5,-1],[-3,-4],[-3,-12],[-3,-4],[-2,-3],[-7,-3],[-2,-2],[-3,-6],[-1,-4],[-1,-17],[0,-4],[0,-4],[-1,-6],[-3,-9],[-8,-18],[-5,-7],[-4,-11],[1,-10],[5,-19],[1,-11],[0,-9],[-4,-20],[-2,-19],[0,-23],[1,-24],[3,-18],[3,-4],[2,-1],[2,-1],[2,-3],[1,-4],[-1,-5],[-2,-4],[-1,-5],[3,-40],[3,-6],[10,-7],[4,-7],[0,-12],[-3,-12],[-9,-21],[-12,-24],[-4,-6],[-11,-7],[-3,-6],[-2,-13],[0,-11],[6,-61],[0,-14],[-1,-10],[-3,-4],[-6,-1],[-2,-2],[-3,-5],[-25,-71],[-1,-2],[-2,-3],[-2,-2],[0,-3],[3,-6],[-1,-2],[-2,-3],[-6,0],[-2,-2],[-4,-10],[-7,-22],[-5,-8],[-5,-3],[-10,-2],[-5,-4],[-9,-12],[-3,-5],[-6,-12],[-6,-19],[-16,-89],[1,-24],[7,-18],[10,-7],[11,-5],[10,-9],[5,-17],[2,-25],[-2,-25],[-5,-18],[-5,-12],[-5,-51],[-4,-15],[-11,-29],[-2,-18],[0,-11],[-1,-11],[-2,-10],[-3,-8],[-4,-4],[-4,-1],[-3,0],[-4,-2],[-3,-9],[-5,-41],[-4,-13],[-12,-16],[-3,-6],[-3,-9],[-3,-30],[-5,-5],[-3,-5],[-2,-7],[0,-24],[-3,-7],[-3,-5],[-3,-7],[0,-3],[0,-10],[0,-5],[-2,-5],[-6,-8],[-2,-5],[-1,-10],[-1,-20],[-1,-9],[-14,-63],[-3,-23],[-1,-21],[-1,-10],[-3,-7],[-1,-6],[-2,-22],[-1,-9],[-12,-33],[-3,-12],[-1,-12],[1,-13],[-1,-12],[-1,-2],[-3,-7],[-5,1],[-4,8],[-4,11],[-4,7],[-16,18],[-7,2],[-9,5],[-8,6],[-8,3],[-22,-5],[-6,6],[-11,29],[-9,6],[-14,3],[-13,-1],[-7,-8],[-1,-5],[-1,-4],[-1,-4],[-2,-3],[-2,-1],[-2,3],[-2,4],[-1,2],[-5,-4],[-9,-9],[-6,-1],[-5,1],[-2,5],[-1,8],[-1,8],[-10,18],[-2,7],[-8,24],[-6,6],[-7,-5],[-3,-9],[-2,-14],[0,-3],[-1,-11],[1,-13],[1,-11],[2,-9],[6,-20],[3,-5],[1,-3],[1,-4],[1,-10],[0,-21],[5,-69],[8,-12],[2,-6],[4,-10],[1,-6],[1,-20],[-9,-115],[0,-16],[1,-35],[1,-6],[0,-6],[-1,-5],[-6,-15],[-1,-10],[-1,-10],[1,-25],[-2,-40],[0,-9],[1,-7],[0,-8],[-12,-45],[-4,-11],[-5,-10],[-8,-7],[-7,-1],[-6,10],[-4,11],[-4,8],[-5,3],[-7,-5],[-4,-11],[0,-15],[1,-17],[3,-12],[5,-22],[2,-11],[-1,-11],[-4,-13],[-10,-23],[-2,-14],[-1,1],[-9,-16],[-3,-47],[1,-13],[2,-11],[7,-22],[1,-11],[0,-13],[-3,-24],[0,-13],[3,-20],[2,-9],[10,-21],[4,-25],[2,-69],[0,-6],[-1,-7],[-3,-3],[-2,-1],[-6,-5],[-2,0],[0,-1],[0,-7],[5,-19],[-6,-3],[-4,3],[-4,6],[-5,3],[-8,3],[-2,0],[-4,-3],[0,-3],[0,-5],[0,-40],[1,-5],[-5,-4],[-4,-1],[-2,-5],[-6,-19],[0,-8],[1,-8],[2,-8],[0,-4],[1,-4],[0,-4],[0,-4],[-1,-2],[0,-1],[-2,-2],[-2,0],[-2,1],[-1,4],[-4,10],[-4,5],[-4,-2],[-3,-13],[-2,-17],[-3,-6],[-3,6],[-2,17],[-2,17],[-5,13],[-18,34],[-18,26],[-6,4],[-3,-5],[-1,-7],[1,-17],[0,-6],[-1,-2],[-2,1],[0,1],[-2,-12],[0,-9],[1,-8],[0,-8],[-2,-8],[-3,-4],[-4,0],[-3,-2],[-3,-8],[-2,-4],[-2,-3],[-2,-2],[-2,-2]],[[75715,63485],[0,5],[-1,6],[-4,39],[-6,40],[3,5],[5,0],[3,3],[0,15],[-16,194],[0,10],[-4,18],[-1,10],[0,35],[-1,45],[-2,9],[-3,9],[-7,13],[-3,9],[-2,18],[-3,46],[-4,10],[-9,8],[-5,15],[-2,20],[0,41],[-7,84],[0,24],[1,9],[5,20],[2,11],[0,6],[-1,6],[-2,9],[0,6],[1,12],[0,5],[-1,3],[-4,6],[-1,4],[-1,4],[1,8],[-1,5],[-1,5],[-4,7],[-1,4],[-2,9],[-1,29],[-11,67],[-1,20],[3,25],[0,11],[0,2],[-6,6],[-5,-5],[-3,-28],[-4,-8],[-4,11],[-3,22],[-5,17],[-12,-8],[-5,-10],[-9,-25],[-4,-8],[-7,-3],[-4,4],[-12,26],[-3,11],[-4,8],[-4,0],[-1,-8],[-1,-13],[0,-22],[8,-69],[-1,-23],[-6,-21],[-4,-8],[-4,-6],[-15,-13],[-5,-8],[-7,-19],[-8,-28],[-5,-29],[1,-24],[4,-19],[4,-40],[4,-18],[1,-7],[-1,-6],[-4,-9],[-1,0],[-3,0],[-1,0],[-1,-2],[0,-3],[0,-3],[0,-2],[-5,-14],[-2,-4],[-5,-9],[-2,-4],[-3,-4],[-8,-4],[-3,-2],[-2,-1],[-2,1],[-2,1],[-2,1],[-3,-2],[-1,-5],[-1,-6],[-2,-4],[-4,-5],[-1,2],[0,6],[-2,6],[-4,4],[-3,1],[-4,3],[-4,8],[-1,6],[0,17],[-1,3],[-2,1],[-1,2],[-2,15],[-6,43],[-1,6],[-2,19],[-1,0],[-4,8],[0,3],[0,3],[0,4],[-2,5],[0,-1],[-1,-4],[-2,9],[-4,11],[-5,8],[-7,0],[-3,-9],[-1,-14],[0,-26],[5,-50],[-1,-19],[-9,5],[-7,17],[-4,25],[-6,95],[-1,6],[-2,5],[0,5],[2,5],[3,5],[1,5],[-1,4],[-4,2],[-3,5],[-3,12],[-4,25],[-1,15],[-1,4],[-2,6],[-4,6],[-3,4],[-2,10],[-3,19],[-2,10],[-8,30],[-1,10],[1,15],[3,1],[4,-1],[3,10],[-2,8],[-5,4],[-4,4],[-1,13],[2,12],[5,3],[5,1],[5,5],[3,10],[6,32],[0,11],[-1,7],[-3,14],[0,8],[1,9],[10,33],[3,7],[3,7],[5,4],[4,-1],[1,-1],[2,-1],[3,-1],[3,4],[3,24],[0,23],[4,15],[11,2],[21,-9],[11,-2],[11,3],[7,4],[4,5],[2,8],[3,13],[2,37],[2,7],[3,-2],[5,-24],[2,-9],[5,-6],[5,-2],[5,4],[4,9],[-1,10],[-1,12],[-1,12],[3,8],[17,-8],[3,0],[1,-4],[0,-13],[1,-6],[9,-16],[5,-3],[4,4],[2,11],[6,50],[0,12],[-3,23],[1,11],[6,4],[3,-5],[6,-8],[5,-4],[0,8],[-6,20],[0,7],[23,-4],[8,2],[7,6],[6,14],[1,17],[-2,36],[2,11],[3,7],[4,5],[3,5],[1,1],[3,9],[2,9],[1,20],[3,23],[14,77],[0,9],[1,10],[-1,9],[-4,19],[-1,11],[2,10],[8,7],[10,-7],[19,-23],[1,-4],[1,-3],[2,-2],[3,-1],[17,11],[9,5],[4,12],[1,7],[-1,10],[-2,10],[-2,5],[-7,5],[2,4],[0,1],[-1,2],[-3,3],[-9,13],[0,2],[-5,3],[-2,1],[0,6],[-1,11],[-7,8],[-8,6],[-5,13],[-2,3],[-14,4],[-5,2],[-4,4],[-3,4],[-4,7],[-4,10],[-2,3],[-2,1],[-4,-2],[-2,1],[-2,3],[-4,0],[-2,2],[-2,3],[-2,8],[-2,4],[-8,5],[-9,5],[-9,0],[-7,-4],[-5,-3],[-16,4],[-30,-7],[-13,2],[-4,-1],[-2,-3],[-2,-7],[-2,-3],[-2,1],[-4,4],[-3,-1],[-1,-9],[-3,-6],[-7,-2],[-7,1],[-4,2],[-5,7],[-2,7],[-2,5],[-5,0],[-2,-2],[-5,-7],[-3,-2],[-3,0],[-5,-4],[-3,-1],[-11,3],[-41,24],[-14,14],[-2,-1],[-7,-6],[-3,-1],[-15,1],[-45,-14],[-9,-6],[-2,0],[-31,-9],[-8,2],[-4,4],[-4,5],[-3,4],[-5,1],[-1,-1],[-3,-6],[-2,-2],[-2,0],[-10,3],[-6,5],[-4,2],[-4,1],[-11,-6],[-22,4],[-29,-12],[-9,1],[-22,18],[-44,18],[-61,51],[-11,-1],[-10,-8],[-4,2],[-3,11],[-3,21],[-1,21],[1,17],[1,6],[2,15],[4,30],[1,44],[2,42],[-3,23],[-6,30],[-5,53],[1,15],[12,41],[1,14],[-2,3],[-4,1],[-6,6],[6,4],[4,6],[1,8],[-4,9],[0,1],[-1,0],[-1,-1],[-2,-3],[-2,-2],[-1,1],[-2,4],[-2,8],[-6,14],[-1,6],[-1,10],[1,8],[0,7],[-4,10],[-2,8],[-1,10],[-2,8],[-3,6],[-3,0],[-5,-1],[-2,1],[-4,3],[0,1],[0,2],[0,13],[0,12],[-1,9],[-5,2],[-6,-4],[-2,-5],[0,-18],[2,-7],[0,-3],[-6,4],[-2,-1],[-1,-1],[-2,-4],[-3,-10],[2,-8],[4,-4],[5,-1],[-3,-4],[-4,-4],[-3,-5],[0,-7],[3,-3],[4,2],[3,-1],[2,-7],[-2,-10],[-12,-20],[-3,-16],[1,-8],[-1,-7],[-2,-6],[-4,-1],[-3,3],[-2,6],[-4,13],[-1,2],[-2,0],[-1,1],[-15,-3],[-2,-1],[-1,0],[-1,0],[-2,1],[-4,12],[-3,0],[-3,-6],[-5,-5],[-4,1],[-6,5],[-5,7],[-7,15],[-10,9],[-2,5],[-2,12],[-2,7],[-5,5],[-18,15],[-3,8],[-2,11],[-3,36],[-2,9],[-5,18],[-2,9],[0,16],[3,1],[4,-3],[2,2],[0,8],[-2,4],[-7,4],[-4,4],[-1,4],[1,5],[-1,7],[-2,4],[-6,3],[-4,2],[-2,4],[-4,10],[-3,3],[-5,6],[-2,5],[-3,1],[-4,-4],[-4,-6],[-3,-10],[-3,-11],[0,-10],[6,-12],[8,-5],[7,-7],[3,-17],[1,-5],[3,-1],[2,1],[3,3],[-1,-12],[2,-4],[3,-1],[3,-1],[2,-11],[-6,-8],[-12,-6],[-8,5],[-13,24],[-7,3],[-6,-8],[-4,-19],[-4,-4],[-5,4],[-3,9],[-1,10],[-3,9],[-10,7],[-23,-16],[-5,7],[2,4],[10,10],[4,6],[3,11],[-1,7],[-4,6],[-6,6],[-2,4],[0,11],[-2,2],[-2,1],[-1,4],[1,5],[1,5],[-6,3],[-3,3],[-3,3],[-3,6],[-1,7],[-2,5],[-3,3],[-6,0],[-3,1],[-6,5],[-6,7],[-2,4],[-3,7],[-3,5],[-4,8],[-4,4],[-10,6],[-4,8],[-1,12],[1,12],[-1,11],[-2,4],[-4,-8],[-3,-11],[-2,-8],[-6,-38],[-4,-12],[-1,-8],[0,-9],[2,-8],[4,-2],[1,3],[1,14],[1,4],[2,0],[6,-5],[16,-6],[8,-7],[4,-13],[5,-32],[1,-15],[-6,2],[-2,-1],[-3,-1],[-3,1],[-2,1],[-2,4],[-2,-3],[-1,-5],[-2,-5],[-13,-16],[-5,-8],[-4,-11],[-1,-8],[1,-22],[-3,-9],[-5,-6],[-16,-10],[-5,-3],[-3,-2],[-2,-4],[-2,-4],[-3,-4],[-9,-12],[-2,-7],[-3,-19],[-1,-3],[0,-3],[0,-6],[1,-3],[2,-2],[1,-3],[1,-7],[-2,-11],[-7,-11],[-6,-20],[-5,-33],[-1,-5],[-2,-1],[-1,-3],[2,-26],[2,-9],[0,-6],[0,-5],[4,-9],[2,-5],[2,-12],[3,-7],[5,0],[6,5],[4,5],[13,7],[9,-9],[17,-37],[20,-27],[7,-16],[1,-36],[4,-8],[11,-10],[3,-12],[7,-11],[2,-8],[3,-6],[6,-2],[12,-1],[5,-5],[9,-11],[6,-3],[3,2],[3,5],[2,5],[3,5],[2,1],[3,-1],[2,0],[3,2],[0,11],[8,-7],[3,-4],[3,-8],[4,-6],[2,-7],[0,-13],[-4,-21],[0,-4],[3,-4],[1,-5],[0,-6],[1,-6],[7,-16],[2,-3],[2,-2],[6,0],[2,-3],[4,-9],[7,-2],[14,1],[2,-5],[0,-5],[0,-6],[-2,-6],[-11,-15],[-2,-6],[-1,-8],[1,-8],[-1,-6],[-5,-2],[4,-13],[-7,1],[-19,13],[-2,2],[-1,2],[-3,-1],[-1,-5],[-3,-12],[-2,-4],[-17,4],[-17,12],[-8,3],[-10,0],[-2,-1],[-4,-8],[-2,-2],[-3,-2],[-1,0],[-2,2],[-7,4],[-9,6],[-4,3],[-10,-4],[-2,-9],[0,-34],[-2,-39],[-3,-17],[-7,-16],[-1,-15],[-3,-14],[-10,-25],[-5,-17],[-2,-4],[-5,1],[-12,6],[-3,0],[0,11],[-3,12],[-4,10],[-4,6],[-5,1],[-6,-4],[-13,-14],[0,-3],[1,-3],[1,-5],[4,-21],[1,-11],[-3,-8],[-4,-7],[-2,-11],[-4,1],[-2,-4],[-1,-7],[0,-8],[-2,-5],[-3,-2],[-4,-2],[-1,-26],[-3,-10],[-3,-11],[-1,-18],[5,-3],[5,-4],[2,-12],[4,-8],[1,-3],[0,-31],[1,-3],[1,-3],[2,-6],[3,-8],[0,-4],[8,-4],[73,-74],[21,-32],[6,-3],[18,-2],[14,-9],[6,1],[4,13],[3,13],[6,-2],[9,-11],[7,-17],[1,-24],[1,-2],[0,-10],[1,-2],[-1,-5],[-3,-10],[-1,-5],[-4,-4],[-7,-4],[-2,-6],[-2,-7],[0,-6],[1,-12],[0,-6],[-2,-13],[0,-5],[1,-7],[6,-9],[0,-7],[7,-3],[0,-6],[-3,-8],[-3,-12],[1,-7],[2,-11],[1,-13],[-1,-11],[-3,-6],[-10,-21],[-4,-5],[-5,-2],[-6,1],[-5,-1],[-5,-7],[-1,-6],[1,-5],[0,-5],[0,-6],[-1,-7],[-4,-12],[-2,-6],[0,-6],[2,-9],[1,-6],[-6,-53],[0,-7],[3,-3],[3,-1],[1,-2],[-1,-7],[0,-5],[0,-4],[2,-6],[3,-2],[6,1],[2,-1],[4,-9],[7,-23],[4,-9],[8,-11],[3,-3],[5,-16],[3,2],[3,10],[4,6],[4,-6],[-1,-13],[-14,-70],[-6,-21],[-3,-12],[0,-13],[3,-11],[4,-7],[18,-11],[3,0],[2,2],[2,3],[3,3],[3,2],[5,-2],[19,-14],[3,-2],[2,-1],[8,0],[1,-2],[0,-5],[-1,-7],[-3,-5],[-7,-12],[-15,-32],[-4,-15],[-1,-30],[-2,-17],[0,-12],[1,-6],[5,-14],[3,-9],[6,-28],[3,-7],[8,-5],[3,-6],[1,-8],[-1,-12],[-1,-11],[-1,-8],[-3,-9],[-3,-8],[-2,-8],[1,-11],[3,-17],[1,-7],[1,-14],[3,-12],[3,-15],[1,-16],[-1,-14],[-7,-8],[9,-7],[3,-5],[3,-22],[5,-23],[1,-14],[0,-5],[-3,-8],[0,-6],[0,-5],[3,-32],[1,-7],[5,-16],[-4,-5],[3,-13],[12,-31],[2,-10],[2,-12],[0,-14],[-5,-12],[0,-1]],[[74738,63575],[0,1],[-4,4],[1,-9],[-1,-6],[-1,-7],[-1,-9],[1,-9],[3,-16],[1,-7],[3,-38],[-2,-17],[-6,-8],[-4,4],[-3,-1],[-1,-6],[0,-9],[-4,5],[-10,12],[-4,3],[-2,6],[-1,12],[-1,10],[-4,0],[-3,-10],[2,-13],[3,-12],[4,-5],[4,-3],[5,-5],[7,-12],[6,-18],[4,-50],[4,-22],[1,-3],[5,-11],[4,-18],[1,-2],[1,-25],[-2,-9],[-5,-5],[-3,0],[-2,3],[-2,3],[0,4],[-1,4],[-2,-5],[-2,-8],[0,-3],[-5,-1],[-7,7],[-12,17],[-10,3],[-2,2],[-1,5],[-1,6],[-3,46],[-2,10],[-2,0],[-1,-10],[-4,-20],[0,-8],[1,-11],[5,-18],[-1,-10],[-4,-8],[-5,-3],[-5,3],[-3,10],[5,8],[1,3],[0,4],[0,6],[-2,10],[-2,-12],[-1,-6],[-2,-2],[-3,-1],[-1,-3],[0,-5],[-1,-6],[2,-11],[2,-9],[2,-9],[-2,-9],[-8,-8],[-9,3],[-6,11],[4,18],[-9,41],[-1,11],[5,67],[-1,9],[-1,9],[5,34],[1,32],[1,8],[3,7],[4,6],[3,7],[2,11],[-3,12],[-10,12],[-2,8],[1,9],[5,10],[9,16],[-6,-1],[-4,-5],[-4,-7],[-3,-8],[-2,-8],[-1,-10],[2,-7],[5,-3],[4,-7],[-2,-14],[-6,-22],[-1,-8],[-3,-10],[-3,-5],[-3,5],[-3,-3],[-4,0],[-3,3],[-1,6],[0,9],[1,5],[4,13],[2,10],[0,8],[-1,9],[-1,17],[-2,13],[0,7],[5,25],[5,6],[2,14],[0,11],[-6,1],[0,-4],[-1,-9],[-2,-8],[-1,-1],[0,-3],[-3,-11],[-1,-11],[-3,-6],[0,-4],[-1,-4],[1,-14],[1,-12],[1,-6],[-2,-11],[-5,-14],[-1,-9],[0,-26],[0,-10],[-9,-47],[0,-11],[0,-36],[0,-3],[4,2],[7,5],[5,0],[2,-17],[0,-10],[-2,-13],[-3,-8],[-4,5],[-2,0],[2,-40],[-1,-15],[-5,6],[0,-30],[-1,-8],[-4,-2],[-4,4],[-2,8],[-2,-7],[0,-6],[1,-6],[3,-6],[-9,-5],[-5,6],[-2,13],[2,15],[2,4],[2,3],[1,4],[1,7],[0,8],[1,8],[1,6],[2,5],[-6,32],[-1,17],[2,13],[6,19],[-1,17],[-4,16],[-6,15],[6,24],[0,12],[-6,9],[2,-11],[-3,-7],[-3,-7],[-2,-12],[1,-11],[4,-20],[1,-11],[0,-8],[-2,-1],[-2,1],[-2,-2],[-1,-15],[-3,-10],[-1,-11],[-1,-11],[1,-10],[4,-17],[1,-8],[-1,-11],[-4,-12],[-4,-5],[-4,-3],[-5,-7],[-4,1],[-3,18],[0,24],[3,16],[-4,-2],[-4,-5],[-2,-1],[-3,2],[-2,5],[-1,7],[-1,6],[-2,-5],[0,-5],[1,-7],[5,-12],[1,-5],[0,-7],[-1,-8],[-3,-12],[-4,-6],[-3,3],[-2,13],[0,66],[-1,12],[-3,9],[-4,11],[-4,0],[1,-14],[9,-58],[0,-14],[-1,-6],[-2,-13],[-1,-7],[2,-5],[3,-7],[1,-4],[1,-6],[-1,-2],[-2,-1],[-3,-5],[-2,-2],[-3,-1],[-4,1],[-1,2],[-1,13],[-2,13],[-4,6],[-4,-6],[-6,23],[-2,14],[0,12],[3,11],[3,12],[2,14],[-2,16],[2,8],[-2,10],[-14,49],[1,6],[1,5],[-4,31],[1,10],[2,9],[2,7],[12,30],[4,15],[-2,13],[-3,30],[-1,10],[-9,10],[-13,9],[-11,10],[-1,14],[-5,-7],[-4,-3],[-5,2],[-5,8],[-6,15],[-4,10],[-1,9],[-1,12],[-4,22],[-1,11],[0,12],[-2,11],[-3,7],[-6,0],[0,-4],[4,-12],[4,-25],[3,-46],[2,-9],[3,-11],[7,-17],[5,-6],[5,-3],[9,-1],[10,-4],[11,-8],[7,-13],[4,-23],[-3,-16],[-6,-18],[-8,-15],[-8,-8],[-10,0],[-1,-2],[0,-7],[1,-6],[1,-6],[-1,-6],[-4,-11],[-14,-61],[-4,-10],[-3,-5],[-3,-2],[-11,-16],[-1,-1],[-1,-1],[-1,-3],[-1,-7],[0,-2],[-7,-14],[-9,-13],[-22,-22],[-15,-22],[-5,-3],[-12,1],[-5,-1],[-40,-21],[-3,-2],[-18,-14],[-17,-15],[-14,-5],[-10,5],[-3,-3],[-3,-1],[-6,0],[-3,-2],[-25,-26],[-13,-20],[-41,-87],[-14,-42],[-8,-48],[2,-55],[30,-138],[3,-26],[-3,-15],[-5,4],[-5,1],[-11,-5],[3,-9],[6,-5],[13,-2],[6,1],[2,-2],[3,-7],[1,-7],[0,-5],[0,-5],[-3,-4],[-4,4],[-4,1],[-3,-2],[-3,-7],[4,0],[2,-1],[2,-3],[2,-4],[2,1],[1,-1],[1,-2],[2,-6],[6,6],[4,6],[3,4],[-4,-11],[-7,-13],[-8,-11],[-14,-10],[-42,-65],[-6,-13],[-5,-16],[-3,-18],[-1,-38],[6,7],[4,8],[4,4],[5,-6],[0,8],[1,7],[1,13],[4,-13],[-4,-22],[-7,-21],[-5,-9],[-3,-2],[-6,-5],[-5,-7],[-2,-6],[2,-5],[5,4],[10,13],[-11,-16],[-24,-31],[-13,-10],[-13,-7],[-7,-5],[-4,-8],[-2,-6],[-3,-26],[-3,-12],[0,-9],[-15,-35],[-6,-9],[1,-6],[2,-4],[3,-3],[4,0],[-9,-9],[-13,15],[-20,35],[-13,-2],[-6,1],[-2,7],[-1,2],[-7,12],[-1,7],[-2,13],[-1,5],[-1,0],[-3,-13],[3,-19],[1,-5],[3,-5],[5,-5],[8,-13],[4,-4],[11,-5],[1,-1],[3,1],[1,0],[2,-3],[0,-4],[0,-3],[0,-2],[2,-5],[2,-4],[2,-3],[3,-1],[4,-3],[4,-6],[5,-3],[-29,-32],[-44,-32],[-6,-7],[-3,-1],[-3,5],[-3,3],[-3,-2],[-2,-5],[-2,-2],[-5,-1],[-35,-22],[-12,-4],[-10,-13],[-6,-5],[-2,0],[-10,0],[-3,-1],[-5,-6],[-8,-3],[-17,-18],[0,3],[3,2],[1,3],[-7,-2],[-18,-22],[-19,-15],[-7,-1],[-2,2],[0,4],[-1,10],[-1,1],[-1,-1],[-2,0],[-1,4],[0,4],[1,0],[2,0],[0,2],[4,5],[7,4],[12,9],[1,-3],[0,-3],[-1,-4],[-2,-6],[13,16],[5,4],[-3,3],[-1,4],[0,4],[2,6],[-1,11],[1,49],[-4,4],[-12,4],[-10,7],[-4,1],[-6,-3],[-7,-10],[-12,-25],[-15,-26],[-4,-1],[-4,-1],[-3,-3],[-3,-3],[-6,-11],[-7,-15],[-5,-17],[1,-14],[-5,-8],[-4,-20],[-3,-7],[-4,-7],[-3,-10],[0,-10],[3,-7],[0,-4],[-3,-2],[-4,-5],[-4,-6],[-2,-6],[0,-8],[2,-5],[1,0],[3,7],[1,-6],[1,-6],[-1,-6],[-1,-6],[3,2],[2,3],[1,4],[1,3],[3,3],[3,0],[2,0],[2,1],[5,7],[-1,6],[-1,7],[1,9],[2,-4],[2,0],[2,1],[3,3],[-8,10],[-3,2],[0,4],[6,0],[2,5],[3,7],[4,4],[0,4],[-1,1],[-2,2],[-1,3],[0,4],[1,2],[3,11],[0,2],[4,-1],[13,-8],[12,21],[3,0],[3,-2],[3,1],[2,9],[2,-7],[1,-5],[1,-5],[0,-10],[-1,-1],[-4,-3],[-1,-2],[0,-3],[-1,-6],[-1,-3],[-2,-4],[-5,-5],[-4,-2],[-2,5],[-1,8],[-2,1],[-2,-6],[-1,-9],[-1,2],[-3,1],[-2,1],[4,-9],[1,-4],[0,-3],[7,1],[69,68],[-11,-13],[-21,-23],[-23,-22],[-12,-11],[-14,-23],[-13,-10],[-17,-26],[-30,-61],[-21,-29],[-34,-61],[-23,-59],[-3,-2],[-1,-1],[-3,5],[-4,9],[-3,5],[-2,-5],[0,-6],[-3,-9],[0,-7],[0,-3],[4,-8],[1,-6],[5,15],[1,2],[2,0],[2,-1],[1,-2],[0,-3],[-8,-22],[-3,-16],[-11,-30],[-6,-18],[-4,-10],[-9,-8],[-23,-71],[-2,-12],[-26,-56],[-3,-11],[-1,-10],[-3,-6],[-14,-20],[-6,-19],[-5,-10],[-6,-4],[-1,-1],[-5,-9],[-2,-2],[-3,-1],[-6,0],[-1,1],[-2,-9],[3,-5],[6,-1],[7,9],[8,13],[7,9],[-5,-8],[-12,-20],[-14,-27],[-2,-8],[-12,-17],[-4,-11],[-6,-9],[-2,-5],[-2,-7],[0,-6],[-2,-6],[-2,-6],[-3,-21],[-10,-16],[-84,-78],[-45,-56],[-8,-15],[-2,-6],[-4,-15],[-1,-4],[-1,-2],[-4,-10],[-2,-2],[-2,-7],[-11,-15],[-4,-8],[-2,0],[-1,3],[-3,9],[0,-10],[0,-12],[1,-10],[-6,-9],[-2,-9],[-2,-19],[-4,-13],[-17,-40],[-7,-8],[-1,-1],[-3,-6],[-1,-1],[-2,1],[-1,1],[0,1],[-1,1],[-1,1],[0,4],[-1,5],[-3,2],[-6,-1],[-1,-5],[2,-7],[6,-4],[6,-6],[2,-3],[0,-5],[-3,-4],[-6,-6],[-3,-6],[-3,-2],[-9,0],[6,-16],[1,-9],[-4,-3],[-4,-2],[-4,-4],[-7,-10],[-23,-17],[-9,-15],[-10,-9],[-6,-10],[-6,-12],[-2,-2],[-4,-3],[-2,-1],[-14,-20],[-2,0],[-2,7],[-4,-5],[-4,-6],[-4,-6],[-12,-6],[-10,-14],[-11,-6],[-68,-85],[-6,-14],[-5,-17],[-3,-8],[-10,-8],[-5,-9],[-8,-22],[-8,-16],[-4,-10],[-2,-19],[-11,-41],[0,-12],[1,-14],[3,-10],[9,-6],[1,-2],[2,-3],[1,-2],[2,1],[2,1],[2,2],[0,1],[5,-5],[3,8],[-1,19],[-1,20],[-2,19],[3,-13],[2,-16],[0,-28],[0,-29],[-4,-30],[-2,-33],[-2,-16],[-7,-30],[0,-5],[0,-4],[0,-3],[-3,-1],[-1,2],[-1,10],[-2,1],[-2,-4],[1,-9],[3,-9],[3,-7],[-13,-8],[-15,-31],[-5,-5],[-4,-2],[-14,-14],[-9,-14],[-6,-6],[-9,2],[-4,-7],[-4,-9],[-4,-7],[-3,0],[-4,0],[-3,-1],[-2,-9],[-2,-2],[-12,-1],[-5,-3],[-5,-4],[-22,-21],[-6,-10],[-12,-6],[-2,0],[-4,2],[-6,7],[-5,6],[-6,-3],[-4,4],[-10,2],[-5,2],[2,7],[-2,6],[-3,3],[-5,0],[3,-12],[-4,-2],[-11,7],[-6,-2],[-16,-10],[1,6],[2,5],[0,4],[-1,4],[-3,6],[-4,0],[-3,-4],[-3,-5],[-5,4],[-4,-1],[-4,-2],[-4,-1],[-16,-21],[-3,-7],[1,-6],[1,-5],[1,-8],[-1,-10],[-7,-17],[-3,-26],[-8,-36],[-3,-31],[-5,-17],[-1,-11],[-1,-31],[-1,-10],[-4,-2],[-13,-27],[-13,-16],[-4,-7],[-8,-21],[0,-7],[1,-5],[2,-5],[1,-3],[2,-12],[0,-5],[-2,-3],[-2,0],[-3,3],[-2,4],[-3,8],[-8,14],[-2,3],[-5,4],[-4,8],[-1,11],[-1,11],[2,45],[0,10],[-1,10],[-2,19],[-2,-6],[2,-7],[-3,-4],[0,3],[-1,2],[-2,3],[4,-23],[1,-25],[-1,-24],[-10,-43],[-7,-44],[-3,-13],[-3,-6],[0,52],[-2,23],[-7,25],[-4,5],[-7,2],[-13,2],[-2,2],[-2,2],[-1,0],[-2,-4],[-1,-4],[1,-2],[-13,-1],[-5,-4],[-4,-5],[-4,-3],[-3,8],[-2,0],[-3,-8],[-4,-7],[-10,-10],[-2,-2],[-2,0],[-2,-1],[-2,-3],[-5,-9],[-2,-3],[-12,-7],[-10,-13],[-22,-44],[-4,-16],[-13,-63],[0,-11],[-5,-18],[-1,-9],[4,-4],[-3,-9],[-4,-17],[-3,-9],[-10,-18],[-3,-11],[-2,-11],[-8,-39],[0,-4],[-3,-55],[-8,-66],[1,-47],[2,-23],[3,-19],[0,-13],[9,-93],[1,-29],[0,-6],[2,-4],[3,-6],[7,-9],[2,-6],[2,-20],[2,-7],[1,-7],[-1,-7],[-1,-4],[-3,-4],[-5,-5],[2,-4],[3,1],[6,3],[2,0],[2,-4],[0,-3],[-1,-4],[-1,-3],[0,-13],[-4,-34],[1,-47],[-1,-26],[-4,-12],[-6,-32],[-3,-8],[-8,-2],[-3,-2],[-5,-11],[0,-2],[-4,-4],[-3,-9],[2,-6],[6,3],[5,9],[4,10],[4,5],[4,-8],[-3,-21],[0,-26],[7,-72],[4,-23],[20,-88],[4,-24],[-1,-26],[-5,-21],[-2,-14],[2,-12],[3,-10],[5,-40],[9,-38],[5,-29],[2,-22],[-2,0],[-8,42],[-9,47],[-14,31],[-3,21],[-9,23],[-3,6],[0,-47],[-2,-18],[-4,5],[-1,7],[1,15],[-1,6],[-2,4],[-2,3],[-2,5],[-1,-14],[0,-7],[-5,-7],[-6,-17],[1,-14],[4,-12],[9,-22],[3,-16],[2,-6],[3,-3],[6,-1],[6,-3],[13,-1],[2,-1],[2,-4],[2,-4],[3,-2],[2,0],[1,0],[-1,-10],[4,-7],[5,-6],[4,-10],[1,6],[1,2],[3,2],[2,-10],[3,-22],[1,-16],[-1,-16],[-2,-30],[-1,-17],[-3,3],[-1,1],[0,-11],[-1,-9],[1,1],[4,2],[0,-13],[-2,-11],[-3,-9],[-2,-11],[0,-6],[2,-18],[-2,-6],[-5,-11],[-1,-6],[-1,-22],[-4,-43],[-1,-72],[-4,-43],[-5,-31],[-1,-21],[-2,-9],[-5,-16],[-2,-11],[-3,-28],[-1,-12],[-1,-8],[-6,-35],[-10,-34],[-1,-9],[-6,-23],[-2,-7],[-7,-8],[-1,-2],[-1,-2],[-8,-32],[-6,-12],[-15,-16],[-2,-7],[2,-2],[6,5],[9,11],[-16,-52],[-4,-9],[-2,-5],[-8,-36],[-8,-19],[-2,-9],[0,-6],[0,-20],[0,-3],[-3,-8],[0,-2],[-2,-13],[-6,-33],[-5,-49],[-3,-4],[-2,-11],[-5,-57],[-1,-23],[-3,-22],[0,-12],[1,-24],[7,-43],[1,-23],[2,0],[1,6],[1,4],[-1,4],[-1,3],[5,-2],[2,-5],[1,-30],[-1,-6],[-2,-2],[-8,0],[-2,1],[-2,1],[-2,-2],[-3,-3],[-3,-4],[-15,-32],[-2,-9],[1,0],[4,4],[13,19],[3,3],[2,10],[4,3],[6,-2],[8,-8],[1,0],[1,-2],[1,-47],[5,-61],[-1,-91],[-1,-16],[-2,-17],[2,-84],[1,-32],[0,-97],[3,-24],[1,-102],[-2,-50],[-2,-7],[-5,-2],[-5,-4],[-5,-2],[-5,4],[0,12],[-6,8],[-34,11],[-4,-2],[-2,-9],[5,1],[4,-1],[5,-1],[4,-3],[2,-2],[3,-4],[2,-2],[8,0],[8,-4],[4,-5],[-1,-7],[-3,-2],[-50,22],[-5,1],[-2,1],[-1,2],[0,6],[1,2],[3,0],[2,1],[9,7],[0,4],[-5,4],[-6,-4],[-10,1],[1,-5],[0,-4],[-6,-4],[-15,-5],[-6,1],[-7,7],[-4,2],[-3,-3],[-6,-10],[-17,-20],[-5,-9],[-4,-11],[0,-7],[0,-8],[0,-7],[-3,-3],[-3,-2],[-3,-6],[-1,-8],[1,-8],[2,-40],[2,-18],[7,-11],[-10,-15],[-12,-24],[-16,-47],[-6,-24],[-5,-12],[0,-2],[-2,-14],[-5,-12],[-10,-21],[-17,-47],[0,-5],[0,-6],[-1,-7],[-1,-4],[-3,-5],[-1,-3],[-3,-8],[-2,-12],[-2,-13],[-2,-28],[-3,-24],[0,-12],[5,-22],[8,-18],[22,-42],[9,-9],[12,-5],[38,-2],[6,5],[6,10],[7,6],[5,-4],[2,-6],[-1,-4],[-2,-5],[-1,-8],[1,-6],[1,-4],[2,-3],[0,-3],[2,-6],[4,-8],[19,-30],[5,-10],[-4,-5],[-4,5],[-18,32],[-19,22],[-17,4],[-4,6],[-4,-1],[-5,4],[-5,1],[-10,-11],[-9,1],[-3,-2],[-7,6],[-10,6],[-10,2],[-9,-2],[-2,-2],[-6,-10],[-3,-1],[-2,0],[-2,1],[-2,0],[-10,-3],[-5,-3],[-8,-9],[-10,-5],[-5,-6],[-2,-6],[-3,-4],[-4,-3],[-14,-2],[-4,-4],[-2,-10],[-2,-6],[-4,-4],[-4,-2],[-37,-9],[-10,-5],[-11,-10],[-9,-14],[-38,-66],[-7,-16],[-9,-36],[-2,-10],[-1,-39],[-1,-13],[-2,-11],[4,6],[3,1],[4,2],[2,11],[2,-13],[-3,-7],[-5,-5],[-5,-7],[-1,-4],[-3,-17],[-4,-11],[-1,-6],[2,-7],[-8,0],[6,-19],[1,-19],[-3,-63],[-2,-6],[-2,-7],[-8,-15],[-2,-5],[-5,-35],[-2,-5],[-4,-2],[-11,-9],[-54,-69],[-3,-8],[-7,-20],[-5,-5],[-30,-10],[-13,-10],[-10,-15],[1,-19],[-15,-4],[-17,7],[-37,24],[-2,2],[-4,9],[-2,4],[-7,9],[-6,4],[-4,6],[-27,51],[-5,8],[-32,49],[-9,22],[-23,69],[-15,29],[-4,18],[-20,50],[-2,14],[-10,19],[-10,35],[-5,11],[-23,43],[-5,13],[2,7],[3,0],[4,-12],[5,2],[5,6],[3,4],[-4,1],[-4,-3],[-3,-1],[-3,7],[1,7],[2,8],[3,7],[3,3],[15,-4],[1,2],[-2,4],[-4,4],[-1,2],[2,2],[4,3],[3,2],[0,5],[-3,2],[-4,-2],[-3,-3],[-2,-3],[-1,-6],[-4,1],[-7,7],[-1,-4],[-3,-18],[-2,-7],[-3,9],[2,4],[1,3],[1,9],[-4,-6],[-3,-7],[-1,-8],[1,-11],[-3,4],[-2,9],[-1,9],[0,8],[-1,7],[-4,12],[-3,20],[-8,35],[1,14],[0,-4],[1,-2],[0,-3],[1,-4],[2,0],[0,8],[1,24],[-2,-4],[-1,-3],[0,-5],[-2,0],[-5,36],[-5,20],[-3,1],[0,-6],[9,-46],[0,-8],[-2,0],[-22,106],[-14,100],[-6,83],[2,15],[-6,89],[-6,44],[-2,6],[-2,27],[-1,8],[4,6],[5,-7],[4,-14],[2,-11],[-1,-3],[-7,4],[-1,-1],[0,-8],[1,-6],[2,-6],[2,-3],[1,4],[1,8],[2,-8],[-1,-9],[-1,-8],[-1,-3],[3,0],[3,3],[1,5],[-2,8],[3,6],[2,-11],[7,-96],[2,0],[0,16],[-3,37],[3,16],[-7,18],[-1,9],[4,5],[1,-8],[4,-16],[2,-8],[1,-7],[-1,-13],[0,-8],[3,-32],[2,-12],[5,-9],[-1,-10],[-1,-8],[-2,-7],[-2,-8],[-5,-52],[1,-9],[5,-4],[14,-5],[2,1],[7,-6],[5,4],[7,18],[-5,6],[-5,7],[-5,4],[-6,-4],[-3,3],[-3,5],[4,14],[0,13],[-1,12],[0,28],[-2,10],[-2,6],[-2,-2],[-1,6],[1,11],[0,7],[-1,6],[-2,10],[-1,7],[1,10],[2,6],[2,6],[-1,12],[-2,11],[-7,22],[-1,10],[-10,22],[-3,8],[-5,-9],[-4,16],[-3,22],[1,12],[-5,7],[-3,32],[-2,1],[-2,4],[-2,4],[-2,13],[-2,-13],[2,-11],[2,-10],[2,-9],[1,-24],[1,-12],[2,-11],[-4,8],[-4,14],[-9,48],[0,10],[1,8],[0,6],[-2,6],[0,9],[13,15],[3,8],[0,4],[2,4],[0,5],[-1,4],[-1,0],[-2,-2],[-2,0],[-2,11],[-2,5],[-3,4],[3,-20],[1,-11],[-3,-10],[-4,-6],[-4,3],[-3,7],[-2,8],[-4,24],[-5,49],[-4,25],[-10,28],[-2,10],[0,12],[-3,26],[-2,9],[-7,15],[-3,8],[-3,22],[-17,72],[-1,11],[0,4],[-2,4],[-1,4],[-1,6],[1,3],[4,6],[1,3],[-8,8],[-5,24],[-4,49],[-13,98],[-25,126],[-1,5],[-2,4],[0,3],[-1,8],[3,4],[1,4],[-2,8],[-4,-2],[-3,8],[-4,23],[-5,18],[-4,7],[-4,3],[-5,1],[-4,3],[-2,6],[-1,12],[-1,11],[-6,16],[1,8],[-15,77],[-7,20],[-35,81],[-2,0],[-5,-4],[0,2],[-1,6],[-7,16],[-5,20],[5,2],[21,-9],[0,4],[-4,5],[-1,6],[1,8],[2,9],[-4,-3],[-5,-11],[-3,-2],[-5,1],[-5,4],[-3,6],[-4,9],[-3,13],[1,5],[9,-2],[4,3],[-1,6],[-5,11],[-1,1],[-11,-18],[-1,-9],[4,-18],[-8,21],[-2,3],[-2,1],[-1,3],[-1,3],[-1,1],[-1,0],[-2,-3],[-1,-3],[1,-2],[-5,8],[-2,12],[-1,21],[-10,50],[-4,27],[2,20],[0,4],[-3,-1],[-2,-4],[-2,-5],[-2,-6],[0,8],[0,7],[-2,14],[-4,21],[-18,65],[-2,12],[-1,5],[-1,3],[-2,4],[-2,4],[0,5],[-1,12],[-3,10],[-6,17],[-21,112],[-2,10],[-4,10],[-1,3],[0,13],[0,6],[-3,7],[-2,4],[-2,6],[-1,8],[7,-8],[2,0],[3,3],[4,10],[2,3],[3,1],[5,2],[4,5],[2,8],[-13,-5],[-12,-8],[-9,3],[-13,113],[3,19],[-2,5],[-1,3],[-2,12],[-1,14],[0,7],[-2,3],[-1,7],[-3,30],[-1,24],[-6,41],[-2,10],[-3,10],[-2,9],[2,7],[-2,10],[-1,20],[-1,15],[3,-17],[1,-15],[4,-1],[-2,4],[0,14],[0,11],[-7,38],[0,14],[-2,32],[1,9],[-1,2],[-1,2],[0,2],[0,2],[2,-2],[1,1],[1,3],[0,7],[2,0],[2,-4],[4,0],[4,3],[3,5],[-4,-1],[-2,2],[-3,10],[-4,8],[0,3],[4,2],[-4,10],[-3,-6],[-5,-25],[-3,19],[-7,49],[-2,36],[-6,22],[-3,19],[-9,24],[-4,15],[-9,24],[-3,12],[0,6],[1,12],[-1,6],[-1,5],[-3,9],[-1,6],[-1,33],[-1,12],[-8,23],[-3,12],[1,14],[4,-6],[7,-3],[6,-1],[4,2],[-2,4],[-18,13],[-2,3],[-4,10],[-1,26],[-2,11],[-2,5],[-1,8],[0,15],[0,5],[-2,3],[-1,4],[-2,21],[-6,23],[0,15],[4,-11],[3,-16],[3,-13],[5,-1],[-3,8],[1,3],[8,-2],[-12,28],[-4,4],[1,2],[1,4],[0,2],[-3,3],[-1,0],[-2,-3],[0,8],[0,3],[0,5],[-4,-5],[0,-7],[0,-8],[-1,-8],[-4,-4],[-4,1],[-3,5],[1,6],[-2,16],[0,13],[3,9],[9,3],[0,4],[-4,3],[-3,-2],[-4,-3],[-3,-2],[-4,2],[-2,6],[0,7],[3,5],[-2,11],[-2,25],[-3,10],[-5,9],[-4,3],[-3,-4],[-4,-9],[-4,15],[-2,5],[-1,0],[-3,-1],[-2,1],[-1,7],[-1,1],[-9,10],[-4,8],[-2,10],[5,-5],[2,3],[0,8],[1,6],[3,4],[3,0],[3,-2],[2,-5],[3,11],[3,7],[3,4],[5,2],[2,-1],[3,-1],[2,1],[0,7],[-1,2],[-3,1],[-2,3],[-1,8],[-3,-6],[-9,-8],[-2,-4],[-1,-5],[-4,-5],[-4,-4],[-4,0],[-3,6],[-3,18],[-3,4],[-1,3],[-11,13],[-2,9],[0,8],[2,18],[-1,9],[-4,4],[-3,2],[-3,3],[-7,28],[-2,4],[-14,9],[2,17],[2,7],[2,6],[6,8],[1,5],[-2,10],[-2,-5],[-15,108],[-3,7],[-3,3],[-6,0],[-6,3],[-5,8],[-7,17],[15,-2],[3,0],[3,2],[3,-3],[4,-2],[4,5],[9,-7],[4,-6],[2,-11],[1,0],[1,1],[1,1],[1,2],[-2,4],[-7,18],[-2,4],[-12,11],[-2,0],[-4,-1],[-1,1],[-2,1],[-2,6],[-1,1],[-10,2],[-3,-2],[0,7],[1,8],[3,8],[2,5],[3,3],[12,5],[-2,4],[-1,3],[0,2],[2,4],[0,3],[-20,-22],[-2,-5],[-6,3],[-4,10],[1,14],[-4,14],[-1,6],[-1,9],[1,7],[1,4],[1,2],[1,5],[3,9],[8,6],[14,7],[0,4],[-10,1],[-5,-2],[-2,-5],[-3,-2],[-9,-13],[-2,-3],[-2,4],[-4,10],[-2,11],[-2,19],[-1,6],[0,5],[4,6],[-3,1],[-5,1],[-5,2],[-2,4],[-1,8],[1,25],[-2,15],[-10,38],[-5,13],[-16,27],[-5,11],[-6,15],[-1,13],[8,1],[0,5],[-4,0],[-5,2],[-3,5],[-1,7],[-1,2],[-2,1],[-2,3],[-1,6],[2,3],[1,3],[1,4],[0,35],[1,9],[2,5],[2,5],[3,7],[-7,-4],[-3,-9],[-1,-14],[-1,-18],[-2,29],[0,24],[-1,9],[-1,1],[-2,-2],[-1,0],[-2,5],[-1,4],[-1,12],[-8,48],[0,3],[0,11],[-1,2],[-4,5],[0,8],[1,5],[3,3],[3,4],[-5,4],[-4,6],[-3,8],[-2,21],[-4,25],[-2,5],[-2,3],[-1,6],[0,13],[1,5],[3,-4],[2,-5],[0,-2],[6,-13],[3,-2],[6,-1],[-2,2],[-2,2],[-2,3],[-1,5],[1,3],[2,6],[2,3],[-5,1],[-4,3],[-4,6],[-2,9],[0,4],[-1,1],[1,0],[2,4],[1,1],[9,8],[0,-10],[1,-4],[1,1],[1,6],[-1,11],[-4,4],[-4,-2],[-4,-6],[-3,14],[-1,4],[1,4],[2,7],[1,5],[-1,8],[-1,5],[-5,7],[-2,16],[1,17],[3,15],[-1,12],[-1,-5],[-3,9],[-4,17],[-1,16],[3,7],[0,2],[-3,22],[0,10],[1,8],[4,15],[-7,8],[-2,5],[2,7],[-3,8],[0,6],[2,1],[3,-7],[2,14],[0,14],[-3,13],[-3,12],[2,8],[-1,9],[-1,9],[-5,20],[0,13],[-5,19],[-1,9],[-1,4],[-5,11],[-2,8],[5,-5],[3,-7],[4,-4],[5,3],[-4,10],[-7,31],[-3,9],[-8,12],[-1,7],[0,7],[3,8],[3,9],[-4,9],[2,12],[-4,15],[-9,22],[-2,10],[1,5],[2,1],[4,0],[3,2],[11,10],[-4,3],[-9,2],[-4,3],[-3,6],[-2,9],[-1,10],[2,7],[-2,5],[-2,7],[-2,8],[1,7],[3,7],[1,7],[0,7],[-2,7],[-1,6],[-1,17],[-2,6],[-4,10],[-2,7],[-1,19],[-3,12],[-13,44],[0,12],[5,12],[-5,0],[-3,5],[0,7],[1,8],[3,6],[3,3],[3,5],[0,10],[-3,-2],[-3,-3],[-2,-5],[-1,-6],[-3,7],[-3,9],[-2,8],[0,1],[1,3],[1,5],[-1,5],[-2,5],[-1,4],[-2,46],[-3,12],[-8,4],[2,12],[1,4],[-1,4],[0,5],[0,6],[1,6],[4,-3],[1,-4],[1,-5],[1,-6],[2,-7],[2,-1],[1,1],[4,1],[5,-1],[5,-4],[5,-6],[4,-10],[-5,-5],[0,-8],[3,-2],[4,11],[1,12],[-3,20],[2,9],[-4,5],[-4,1],[-8,-2],[-5,2],[-5,7],[-3,9],[2,11],[-4,0],[-3,3],[-4,13],[-2,1],[-1,0],[-2,0],[-1,2],[-1,5],[0,2],[1,3],[0,5],[-1,8],[-2,5],[-1,6],[-2,7],[-1,7],[1,23],[1,13],[3,13],[5,7],[6,-2],[4,-9],[8,-28],[6,-12],[1,12],[-3,6],[-4,6],[-2,11],[-1,9],[-2,10],[-3,8],[-3,3],[-8,-3],[-3,3],[-1,10],[-7,35],[-5,8],[-2,19],[-1,23],[0,29],[1,10],[3,8],[4,5],[2,-1],[4,-4],[3,0],[4,16],[3,-6],[10,-22],[-2,-11],[1,-8],[3,-6],[4,-4],[-2,14],[1,15],[3,13],[4,7],[-8,7],[-2,5],[-2,9],[0,4],[1,5],[1,5],[-1,2],[-2,-1],[-1,-1],[-1,-2],[-1,-2],[-4,-4],[-8,7],[-6,14],[5,17],[4,-7],[2,6],[1,16],[3,2],[4,-2],[4,0],[3,10],[-10,0],[0,4],[4,1],[7,5],[14,8],[1,0],[3,12],[-5,1],[-8,-5],[-6,-6],[-1,7],[1,16],[-2,5],[3,13],[-2,4],[-3,2],[-2,8],[2,42],[-2,0],[-5,-21],[-4,-7],[0,-21],[-2,-8],[4,-7],[-2,-12],[-12,-25],[0,6],[-2,14],[-4,-8],[-5,-15],[-4,-16],[-3,-25],[-2,-9],[-2,-3],[-3,7],[0,7],[1,6],[1,7],[-2,9],[-2,0],[-1,-4],[-1,-3],[-3,-6],[-2,7],[2,7],[5,15],[2,9],[1,6],[-1,18],[3,-3],[1,-2],[2,6],[0,6],[-1,6],[-3,2],[4,18],[0,7],[-1,6],[-2,11],[-1,5],[1,5],[3,6],[0,3],[-1,4],[-2,0],[-2,-2],[-2,-9],[-2,-4],[-2,0],[-1,5],[1,6],[5,25],[5,17],[3,7],[-4,1],[-4,-9],[-3,-13],[-4,-7],[-1,36],[1,20],[2,9],[15,3],[8,-2],[5,-12],[4,-3],[9,-3],[4,2],[4,3],[3,0],[5,-9],[6,-32],[4,-12],[7,8],[-6,6],[0,9],[0,9],[-3,4],[-1,4],[-3,8],[-4,9],[-5,4],[-15,-3],[-5,3],[-4,5],[-8,14],[-5,5],[-5,-11],[-5,1],[-4,8],[-7,21],[-1,5],[-3,33],[0,14],[2,8],[4,5],[31,25],[-7,5],[-5,-2],[-6,-5],[-6,-1],[-2,2],[-2,4],[-1,5],[0,7],[-2,5],[-3,4],[-5,5],[-2,0],[1,-7],[1,-5],[0,-5],[-2,-4],[4,-7],[2,-4],[0,-5],[-2,-4],[-2,2],[-5,12],[-3,31],[2,11],[-3,26],[-6,44],[2,-3],[2,-3],[1,-5],[1,-5],[5,5],[0,5],[-2,8],[-1,10],[1,4],[2,0],[1,2],[1,4],[0,6],[0,5],[-1,8],[-11,-27],[-3,-1],[-1,10],[1,22],[-2,7],[-6,17],[0,6],[2,9],[2,9],[0,21],[-1,14],[1,7],[3,3],[2,4],[3,9],[3,11],[1,9],[0,34],[1,7],[5,28],[1,26],[1,6],[4,12],[1,6],[0,2],[-2,0],[-1,1],[-1,3],[0,12],[1,2],[1,19],[2,9],[4,10],[2,10],[1,14],[2,0],[3,4],[3,5],[2,5],[1,6],[1,18],[2,12],[3,13],[11,31],[2,12],[1,12],[0,14],[0,7],[-2,12],[0,7],[1,5],[4,8],[1,7],[1,27],[0,11],[-3,9],[11,16],[2,0],[0,6],[-3,4],[-2,2],[-2,4],[0,5],[1,4],[0,5],[-1,6],[-6,-13],[-4,5],[-1,13],[2,14],[3,9],[-1,1],[-4,-2],[-2,-2],[-10,-16],[2,9],[3,21],[3,6],[-8,20],[5,10],[9,9],[0,12],[-3,-1],[-7,-4],[-5,-1],[-3,6],[-1,5],[-1,5],[-2,3],[-3,1],[-3,0],[-1,2],[-3,8],[-2,9],[5,1],[11,-4],[6,3],[1,6],[-9,43],[-2,5],[-3,-1],[-12,-11],[-1,3],[-1,2],[-2,3],[-1,-3],[0,-4],[-1,-11],[-1,-3],[-8,-8],[1,19],[4,14],[3,11],[-4,9],[-2,-3],[-6,0],[-3,-3],[-1,-5],[0,-6],[0,-13],[0,-8],[-2,-1],[-2,0],[-6,-7],[-2,1],[-4,11],[0,8],[4,10],[18,25],[5,9],[3,3],[3,0],[-3,6],[-10,7],[-2,5],[-2,6],[-4,3],[-3,5],[0,12],[-6,-8],[-2,-4],[-3,8],[-1,7],[-2,17],[-2,15],[-1,5],[1,5],[4,2],[10,3],[2,3],[-2,5],[-5,-1],[-8,-4],[-4,3],[-3,5],[-1,6],[3,2],[17,10],[10,13],[1,2],[15,20],[5,-8],[1,7],[-1,9],[-3,2],[-15,-10],[-5,-5],[-15,-21],[-8,-3],[2,9],[8,33],[5,7],[4,4],[11,20],[4,5],[6,3],[7,7],[6,9],[4,9],[6,23],[4,6],[3,0],[7,-4],[3,-1],[5,3],[13,10],[8,12],[16,12],[18,18],[6,2],[3,3],[2,5],[2,7],[-2,5],[-2,-1],[-10,-11],[-10,-8],[-2,-1],[-5,-9],[-2,-2],[-6,-2],[-12,-12],[-6,-2],[-12,5],[-7,1],[-5,-4],[-6,-8],[-6,-1],[-12,7],[-6,1],[-16,-5],[-6,1],[-5,3],[-6,0],[-12,-9],[-6,-2],[-4,4],[-2,13],[1,11],[5,22],[2,14],[2,38],[1,6],[5,6],[4,13],[5,26],[4,7],[5,2],[11,-1],[3,5],[2,11],[2,10],[5,2],[0,5],[-2,1],[-2,0],[-1,0],[-2,-1],[-2,-3],[-1,-4],[0,-4],[-1,-2],[-20,-3],[-3,-7],[-2,-7],[-6,-9],[-7,-8],[-4,-2],[-3,5],[-7,25],[-1,8],[0,11],[4,22],[1,14],[0,7],[0,6],[0,7],[3,11],[0,7],[1,13],[2,9],[4,12],[5,11],[4,6],[7,4],[6,-1],[5,-5],[4,-8],[4,-4],[2,0],[3,2],[2,0],[3,-2],[3,-3],[5,-7],[12,31],[6,10],[10,4],[5,-4],[4,-8],[5,-4],[5,6],[1,7],[1,11],[-2,10],[-3,6],[-2,-7],[-4,-4],[-4,0],[-4,5],[-5,3],[-5,-2],[-6,-4],[-4,-5],[-8,-8],[-8,3],[-19,15],[-3,0],[-3,-2],[-3,0],[-5,7],[-3,2],[-6,1],[-6,-3],[-9,-18],[-5,-7],[-7,-4],[-3,-1],[-3,3],[0,5],[3,6],[-1,5],[-4,1],[-5,-6],[-5,-6],[-6,5],[-1,7],[-2,14],[0,13],[2,6],[5,7],[1,12],[-3,8],[-8,-7],[-2,-7],[-4,-12],[-2,-12],[-1,-11],[-3,-14],[-5,-2],[-6,2],[-3,0],[-4,9],[1,7],[0,4],[-7,4],[-5,1],[-4,-2],[-2,-5],[2,-10],[-13,4],[-3,-2],[4,-10],[7,-6],[5,5],[9,17],[2,-7],[-1,-6],[-2,-6],[-1,-7],[2,-3],[8,-7],[10,1],[3,-26],[-2,-63],[-3,-10],[-1,-6],[-1,1],[-2,-6],[-2,-7],[0,-2],[-5,-9],[-2,-3],[-4,0],[-4,2],[-2,-2],[0,-8],[-2,0],[-2,8],[-1,-2],[-2,-6],[-1,-5],[-1,-2],[-3,-4],[-2,-1],[-1,5],[-3,7],[-4,6],[-6,4],[-5,-2],[6,-8],[3,-6],[-1,-7],[-3,-2],[-10,6],[1,-3],[6,-9],[0,-4],[0,-4],[-2,-1],[-2,3],[-4,3],[-5,0],[-5,-4],[-3,-5],[17,-11],[4,-1],[11,4],[4,0],[-3,-4],[0,-4],[4,-4],[-2,-4],[4,-4],[0,-7],[-2,-8],[0,-8],[2,-7],[-2,-1],[-8,4],[-2,5],[-4,9],[-3,7],[-6,8],[-6,2],[-2,-10],[1,-3],[2,-2],[3,-1],[3,-1],[1,-2],[5,-18],[-5,-3],[-6,2],[-17,14],[-1,-2],[-1,-9],[0,-16],[0,-7],[2,-7],[1,3],[1,1],[3,4],[0,-4],[0,-8],[0,-4],[10,6],[5,2],[4,-2],[4,-6],[4,1],[13,10],[2,-1],[0,-8],[1,-7],[6,-5],[1,-5],[1,-1],[3,-21],[1,-4],[1,-3],[2,-3],[3,-2],[3,-1],[3,1],[3,-1],[2,-11],[2,-4],[2,-3],[0,-4],[1,-7],[0,-4],[0,-5],[-1,-6],[-1,-3],[-3,-6],[-1,-3],[-9,-68],[-7,-21],[-14,-32],[-2,-11],[-3,-8],[-9,-22],[-4,-4],[2,-6],[0,-5],[-1,-4],[-3,-1],[2,-8],[-1,-6],[-2,-4],[0,-3],[0,-6],[3,-12],[0,-10],[-3,-8],[-2,-2],[-3,-2],[-2,-2],[-1,-4],[-2,-4],[-18,-19],[-5,-2],[-13,-2],[-34,-40],[-4,-9],[-8,-9],[-5,-2],[-4,1],[-3,1],[-10,-12],[-12,-9],[-15,-23],[-10,-4],[2,9],[2,4],[2,4],[-5,-3],[-4,-6],[-12,-21],[-3,-7],[-1,-10],[-5,-9],[-23,-15],[-17,-6],[-49,-50],[-7,1],[-2,-4],[-4,2],[-3,-4],[-3,-6],[-3,-4],[-5,1],[-6,2],[-4,-2],[-1,-3],[-1,-8],[-5,-7],[-3,-1],[-37,-4],[-6,0],[-5,4],[-4,8],[-3,3],[-3,-2],[-3,-3],[-4,-1],[-2,3],[-9,14],[-44,36],[-16,22],[-6,3],[-3,4],[-9,20],[-5,8],[-18,14],[-10,19],[-10,13],[-31,58],[-26,42],[-24,62],[-2,5],[-2,6],[-13,25],[-18,44],[-9,26],[-1,19],[-6,2],[-5,6],[-4,7],[-35,74],[-17,20],[-4,9],[-10,24],[-5,9],[-6,19],[-9,8],[-5,9],[-9,20],[-1,10],[1,17],[-1,9],[-7,-12],[-3,-2],[-6,6],[-25,49],[-9,13],[-4,7],[-13,37],[-9,12],[-4,9],[-3,13],[-13,35],[-10,16],[-5,11],[-3,19],[-8,24],[-2,11],[-1,14],[2,10],[3,8],[1,11],[1,12],[2,10],[2,9],[3,7],[4,7],[11,12],[7,11],[3,-1],[1,-5],[-1,-7],[-2,-6],[-5,-5],[-3,-6],[4,-14],[3,-5],[5,-2],[2,2],[5,5],[2,2],[3,-1],[2,-2],[2,-1],[2,2],[4,7],[3,5],[2,-1],[4,-7],[1,-10],[-6,-19],[0,-10],[-4,-12],[1,-12],[5,-10],[6,-6],[0,-4],[21,6],[13,13],[3,11],[4,2],[21,1],[9,4],[3,3],[2,3],[4,12],[1,3],[1,1],[2,1],[1,1],[2,9],[-1,7],[-1,7],[-1,9],[0,10],[2,0],[2,-1],[3,3],[2,0],[3,-24],[1,-12],[-2,-8],[4,-4],[9,-4],[4,-5],[0,6],[1,3],[3,8],[3,-5],[2,3],[1,5],[2,4],[1,2],[1,3],[1,3],[1,1],[2,-1],[4,-3],[1,0],[3,8],[4,28],[3,9],[2,-5],[13,-29],[2,-3],[3,2],[2,5],[1,7],[1,6],[3,7],[3,2],[2,-1],[4,0],[6,5],[5,7],[16,29],[3,4],[0,-1],[7,1],[1,1],[6,7],[10,2],[24,-6],[9,8],[3,10],[5,22],[8,20],[9,33],[14,43],[2,6],[-1,14],[0,7],[1,2],[5,10],[9,35],[3,5],[5,5],[9,21],[5,7],[2,0],[3,-2],[4,0],[3,4],[2,5],[2,10],[2,5],[2,12],[1,13],[-2,14],[-2,12],[-4,8],[-5,11],[-4,4],[-3,-9],[-2,-5],[-11,-11],[-3,-11],[0,-5],[0,-9],[1,-7],[2,-6],[-3,-14],[0,-5],[1,-5],[0,-8],[-1,-9],[0,-5],[-2,-2],[-2,-2],[-6,0],[-2,-1],[-1,-2],[-2,-1],[-2,2],[-1,3],[-1,2],[-2,1],[-2,0],[-1,-1],[-1,-2],[-2,-1],[-1,4],[-2,4],[0,1],[-6,3],[-3,8],[-3,9],[-5,8],[0,-15],[-3,-10],[-5,-4],[-7,1],[-2,-1],[-1,-2],[-1,0],[-2,5],[-1,3],[-1,1],[0,1],[-2,1],[-3,1],[-2,4],[1,6],[1,5],[-6,-21],[3,-3],[4,-7],[0,-7],[-4,-3],[-16,-4],[-18,-14],[-16,-5],[-15,-11],[-9,-2],[-6,-3],[-7,-8],[-7,-11],[-6,-11],[-9,-32],[-3,-4],[-6,1],[-11,7],[-19,0],[-3,2],[-5,8],[-4,2],[-9,0],[-3,0],[-3,2],[-2,2],[-1,2],[-2,2],[-13,6],[-5,5],[-10,3],[-9,9],[-28,5],[-10,6],[-18,21],[-27,37],[-48,41],[-49,66],[-8,14],[-2,2],[-1,3],[0,5],[0,6],[-8,6],[-4,9],[-2,11],[-1,9],[0,-2],[3,-6],[3,11],[1,6],[0,7],[-5,-5],[-7,-2],[-7,2],[-4,11],[6,23],[2,1],[9,2],[2,2],[-1,5],[-3,4],[-4,2],[-2,2],[-1,4],[-1,4],[-1,2],[-2,0],[-1,-1],[-2,-2],[-1,-1],[-3,4],[-2,3],[-2,5],[0,6],[0,7],[2,5],[2,3],[3,-1],[-1,6],[-2,3],[-2,-1],[-2,-4],[-4,3],[-1,-3],[-2,-5],[-4,-3],[-3,3],[-1,6],[0,8],[2,8],[-4,-5],[-3,-2],[-3,1],[-2,6],[2,12],[4,12],[6,11],[5,5],[-1,7],[-2,-1],[-2,-3],[-2,1],[-2,3],[-2,9],[-2,5],[1,-10],[1,-10],[0,-8],[-4,-5],[-5,1],[-2,8],[1,24],[-1,29],[1,14],[5,6],[12,-8],[6,0],[0,11],[-2,2],[-2,-1],[-3,1],[0,9],[1,2],[5,3],[4,6],[6,1],[2,2],[2,3],[4,13],[8,17],[5,8],[10,8],[5,22],[5,10],[2,1],[10,-1],[3,2],[5,8],[3,2],[4,3],[14,22],[-4,3],[-7,-6],[-4,3],[-7,-15],[-6,-7],[-8,-3],[-10,0],[-6,-2],[-3,-5],[-4,-17],[-2,-8],[-4,-4],[-9,-4],[-4,-5],[-4,-5],[-4,-5],[-10,-4],[-7,-8],[-6,-5],[-5,-9],[-19,-45],[3,-4],[0,-4],[-1,-4],[-2,-4],[-4,-6],[-3,0],[-2,1],[-4,1],[-18,-1],[-13,3],[-7,4],[-4,7],[2,12],[1,0],[6,0],[1,1],[1,8],[0,3],[4,4],[3,2],[3,-2],[4,-8],[3,8],[5,1],[4,3],[1,12],[-6,-7],[-5,0],[-4,4],[-5,9],[-3,11],[0,11],[0,12],[0,12],[-5,-12],[-3,-4],[-1,6],[0,9],[3,15],[1,18],[1,5],[0,3]],[[68939,64589],[0,1],[7,20],[2,3],[5,4],[2,3],[1,0],[2,-1],[2,0],[1,2],[-1,2],[-1,2],[-1,1],[0,4],[0,5],[1,6],[3,4],[2,1],[1,-3],[1,-4],[2,-6],[4,-3],[3,3],[4,7],[2,8],[0,4],[-1,6],[0,5],[3,1],[2,-2],[1,-5],[0,-5],[0,-5],[9,12],[13,4],[32,0],[28,0],[21,-1],[1,82],[0,63],[0,47],[6,25],[14,-1],[4,-13],[2,-34],[5,-8],[3,4],[9,32],[1,5],[0,5],[2,3],[3,1],[3,-2],[2,-4],[2,-5],[6,-19],[4,-8],[5,-1],[7,5],[11,13],[6,2],[6,-4],[16,-15],[5,-2],[11,3],[21,15],[78,-4],[9,-7],[21,-45],[12,-12],[16,-4],[56,2],[12,5],[10,16],[3,11],[7,37],[3,10],[3,3],[10,2],[16,11],[6,0],[5,3],[10,14],[6,5],[15,2],[5,3],[12,18],[29,13],[12,0],[4,-14],[-2,-6],[-5,-7],[-1,-3],[-1,-7],[3,-21],[1,-23],[2,-9],[5,-8],[10,-10],[38,-6],[5,3],[11,11],[5,4],[5,2],[2,4],[-4,10],[-1,10],[5,11],[17,22],[5,3],[5,0],[6,-6],[6,0],[3,4],[2,7],[2,7],[14,9],[3,6],[-3,14],[-9,6],[-11,4],[-7,7],[-1,4],[0,5],[0,4],[1,5],[0,12],[1,4],[0,4],[0,3],[-1,4],[-5,9],[-1,17],[2,18],[4,15],[19,17],[5,8],[-2,6],[-5,17],[-10,51],[-16,51],[-8,31],[-6,33],[-9,82],[-4,14],[-4,12],[-18,29],[-9,20],[-3,12],[-2,14],[-2,15],[-11,23],[-4,13],[-3,20],[2,68],[1,52],[-1,24],[-6,16],[-11,5],[-10,-6],[-11,-9],[-11,-4],[-32,-2],[-16,6],[-11,8],[-4,6],[-4,14],[-6,33],[-5,12],[-11,19],[-11,25],[-9,29],[-5,30],[0,9],[2,30],[0,21],[1,10],[15,48],[5,22],[1,22],[-2,24],[-1,11],[2,12],[2,12],[1,10],[-1,24],[2,48],[-1,22],[-8,19],[-10,11],[-11,5],[-66,-5],[-13,9],[-20,34],[-11,15],[-43,34],[-9,18],[-2,25],[6,70],[6,73],[7,45],[12,37],[25,48],[18,24],[33,59],[16,52],[24,44],[6,17],[21,114],[3,11],[24,48],[3,5],[19,26],[16,33],[5,6],[5,3],[10,3],[11,9],[5,2],[6,-1],[9,-5],[7,-8],[7,-10],[9,-20],[8,-12],[4,-8],[2,-12],[-1,-22],[1,-11],[8,-38],[11,-30],[14,-18],[20,-5],[23,10],[31,29],[34,33],[21,13],[24,10],[24,4],[22,-4],[23,4],[39,22],[45,26],[3,6],[2,9],[3,72],[2,11],[3,12],[22,55],[34,53],[11,21],[8,26],[5,28],[17,119],[6,25],[21,47],[7,10],[40,39],[37,36],[32,31],[36,35],[4,6],[4,9],[9,41],[7,22],[17,44],[22,78],[14,50],[15,55],[14,87],[12,72],[12,72],[4,9],[48,42],[51,21],[10,11],[46,72],[1,9],[1,8],[-4,26],[-7,25],[-5,15],[-14,14],[1,3],[2,9],[4,9],[6,5],[5,-1],[-1,4],[0,8],[-1,4],[5,-3],[3,1],[3,4],[14,37],[2,8],[2,5],[11,5],[4,8],[1,14],[-1,11],[0,10],[3,12],[4,9],[3,6],[5,6],[6,5],[6,3],[2,3],[1,8],[1,5],[4,6],[2,12],[2,4],[5,8],[5,16],[3,4],[4,6],[2,4],[0,4],[-3,12],[1,2],[6,3],[5,8],[3,11],[-2,11],[2,6],[3,5],[2,4],[4,1],[3,0],[7,-4],[6,-1],[2,5],[2,8],[3,10],[5,8],[4,5],[5,1],[7,1],[5,3],[4,8],[4,10],[5,7],[0,12],[4,11],[6,8],[16,16],[-3,5],[-5,9],[-4,5],[-5,0],[-13,-4],[-4,4],[-4,8],[-2,7],[-2,9],[0,11],[0,12],[5,24],[0,26],[2,14],[11,51],[3,10],[5,10],[3,10],[1,11],[0,11],[-9,24],[-8,56],[-15,52],[-3,6],[1,2],[3,10],[0,1],[2,2],[1,1],[1,3],[1,7],[0,3],[2,5],[1,2],[1,3],[0,8],[1,13],[3,9],[4,8],[21,30],[4,3],[4,5],[8,27],[18,-7],[6,3],[5,15],[2,21],[5,13],[12,-9],[5,11],[5,1],[7,-1],[6,2],[4,3],[1,4],[2,5],[2,6],[2,2],[7,0],[3,0],[-2,17],[5,2],[17,-12],[2,0],[3,2],[3,5],[2,2],[6,-3],[4,-1],[0,14],[6,11],[9,8],[6,4],[4,1],[8,-1],[1,6],[3,20],[3,10],[8,19],[3,12],[-1,13],[-8,17],[-7,11],[-19,29],[-10,10],[-19,8],[-10,11],[-10,15],[-9,7],[-9,-2],[-12,-9],[-11,-2],[-19,18],[-11,-2],[-10,-5],[-11,-2],[-10,7],[-7,16],[-8,41],[-1,12],[2,11],[3,10],[2,10],[0,12],[-2,24],[0,13],[2,13],[7,25],[2,13],[-1,13],[-4,5],[-5,-2],[-5,-9],[-2,-11],[-1,-10],[-3,-9],[-5,-8],[-6,-3],[-14,-4],[-6,0],[-5,5],[-8,15],[-4,4],[-6,-1],[-9,-10],[-5,-2],[-6,2],[-5,5],[-3,9],[-3,11],[3,7],[0,1],[2,4],[3,11],[0,13],[-3,30],[-1,30],[-3,13],[-7,9],[-26,8],[-10,11],[-16,38],[-9,16],[-10,13],[-8,14],[-3,18],[1,26],[2,11],[5,5],[10,8],[5,6],[3,7],[4,8],[2,10],[9,43],[6,45],[-5,33],[-15,21],[-17,18],[-14,20],[-2,8],[-1,9],[-1,9],[1,17],[0,8],[2,7],[1,7],[10,31],[6,10],[30,10],[10,8],[10,12],[7,13],[7,17],[2,20],[-3,19],[-9,11],[-10,-1],[-10,-5],[-10,-1],[-15,10],[-6,0],[-19,-8],[-8,3],[-8,11],[-7,15],[-2,18],[2,18],[7,12],[16,16],[6,8],[0,13],[-2,12],[-4,12],[-6,29],[-4,10],[-9,2],[-8,-2],[-7,2],[-7,5],[-7,7],[-6,11],[-2,15],[2,15],[4,13],[3,4],[7,6],[3,5],[1,7],[0,23],[5,13],[13,17],[4,12],[0,16],[-2,16],[0,13],[9,12],[3,4],[44,13],[8,7],[20,27],[18,12],[18,3],[17,-5],[71,-45],[98,-35],[25,2],[19,7],[10,0],[3,-4],[3,-4],[4,-11],[5,-9],[11,-14],[11,-10],[74,-35],[12,-1],[16,7],[6,0],[11,-3],[6,3],[5,8],[16,29],[19,24],[7,5],[2,2],[4,8],[5,17],[5,7],[10,4],[17,-14],[9,1],[30,13],[38,40],[11,7],[11,-3],[12,-16],[4,-3],[5,0],[24,9],[4,3],[25,43],[3,11],[-1,32],[2,14],[7,9],[9,6],[10,2],[8,-4],[7,-8],[4,-2],[4,5],[5,11],[17,23],[4,10],[2,19],[-2,16],[-1,14],[5,13],[2,2]],[[71402,71263],[104,114],[104,114]],[[72490,59824],[5,-9],[1,-6],[-1,-5],[-4,-7],[-8,-5],[-7,8],[-13,34],[3,16],[2,4],[14,-16],[8,-14]],[[70457,56442],[-1,-5],[-1,-4],[-1,-4],[-1,-3],[0,6],[0,6],[1,5],[2,5],[0,-2],[1,-4]],[[70461,56477],[-1,-1],[0,-1],[0,-1],[-1,2],[0,2],[1,0],[0,-1],[1,0]],[[70180,56728],[-3,-5],[-2,-2],[-1,-1],[1,3],[4,9],[1,-1],[0,-1],[0,-1],[0,-1]],[[70152,56853],[-2,-3],[0,2],[1,1],[1,0]],[[70464,56883],[2,-1],[1,0],[-2,-2],[-1,0],[0,2],[0,1]],[[70208,57055],[-1,-3],[0,-2],[-1,-1],[-1,-1],[0,4],[0,1],[1,0],[2,2]],[[70281,57281],[-1,-7],[0,-3],[-1,-3],[-1,6],[0,4],[1,3],[2,0]],[[70198,57395],[-2,-3],[-1,-1],[-1,0],[1,3],[1,1],[2,0]],[[76075,57735],[-5,-4],[-1,6],[3,6],[3,-8]],[[76188,58431],[3,-12],[-4,-2],[-4,6],[5,8]],[[76088,54630],[3,-8],[0,-31],[-3,-15],[-7,-34],[-1,-21],[1,-4],[1,-4],[2,-5],[-1,-6],[-1,-3],[-2,-2],[-3,0],[-2,2],[-4,0],[-3,-11],[-4,-24],[-6,5],[-1,9],[1,12],[1,12],[-3,5],[-3,5],[-3,6],[3,8],[-3,5],[-2,6],[-1,6],[2,7],[-2,2],[-2,5],[0,6],[0,7],[-5,0],[-3,12],[-2,16],[-3,13],[-4,8],[-5,9],[-6,3],[-4,-8],[0,63],[1,7],[6,30],[3,1],[6,0],[3,2],[2,5],[1,4],[2,2],[1,1],[7,7],[2,-4],[7,13],[5,4],[4,-3],[7,-13],[3,-8],[1,-12],[2,-10],[1,-11],[1,-24],[1,-9],[4,-17],[3,-15],[2,-6]],[[76036,54834],[1,-11],[-2,-8],[-4,-7],[-5,-6],[-5,-10],[-9,-24],[-5,-3],[-3,4],[0,4],[0,6],[-1,6],[-1,5],[-4,12],[3,6],[1,13],[2,12],[6,5],[8,4],[3,10],[2,13],[3,14],[0,-16],[1,-12],[3,-6],[3,-4],[3,-7]],[[75952,55181],[1,-1],[7,-25],[0,-7],[0,-12],[-1,-6],[-2,1],[-3,7],[-4,5],[-2,1],[-4,-2],[-3,-2],[-3,-3],[-3,-2],[-4,3],[-3,5],[-1,6],[0,7],[2,7],[-2,4],[-2,-4],[-3,0],[-2,2],[-2,6],[-1,7],[3,23],[2,8],[6,6],[7,3],[6,-1],[1,-6],[1,-5],[0,-13],[1,-5],[6,-4],[2,-3]],[[75990,55207],[1,-6],[1,-12],[0,-26],[-15,24],[-3,9],[1,9],[2,5],[5,-3],[1,10],[2,2],[3,-4],[2,-8]],[[75980,55228],[-1,-1],[-3,-3],[-1,-2],[-1,-4],[-4,-13],[-3,-2],[-1,6],[-1,17],[1,5],[2,3],[2,3],[1,7],[2,0],[3,-3],[0,4],[-1,7],[-4,4],[-2,-11],[-3,0],[-4,6],[-2,10],[-3,38],[0,6],[2,3],[3,8],[2,9],[1,6],[3,7],[5,4],[5,-1],[2,-7],[0,-12],[-3,-9],[-3,-7],[-1,-12],[1,-10],[4,-20],[4,-23],[0,-5],[-2,-8]],[[70299,55394],[1,0],[0,-2],[0,-2],[-5,-22],[-2,-7],[-4,-4],[-3,-2],[-2,4],[-1,11],[2,0],[0,-7],[0,-2],[6,5],[4,7],[2,9],[2,12]],[[75870,55350],[7,-7],[4,-5],[1,-5],[-3,-4],[-4,0],[-8,4],[-6,6],[-6,12],[-4,15],[-2,14],[1,17],[0,9],[2,7],[4,5],[3,0],[2,-6],[0,-27],[0,-14],[3,-12],[6,-9]],[[76001,55532],[4,-17],[2,-8],[0,-11],[-1,-8],[-2,-12],[-2,-9],[-2,0],[-1,7],[2,24],[0,10],[-3,20],[0,10],[3,6],[0,-12]],[[75780,55937],[6,-18],[0,-34],[-9,-20],[-19,12],[-3,10],[-3,16],[0,16],[1,7],[4,3],[5,6],[2,9],[-1,10],[4,2],[2,-3],[7,-11],[4,-5]],[[75717,56849],[1,-21],[3,-16],[-1,-18],[-6,-14],[-3,-8],[-3,-4],[-3,-9],[0,-17],[4,-2],[5,-4],[-7,-20],[-3,-13],[-7,-10],[-9,4],[-4,9],[-6,9],[-6,0],[-4,-10],[-7,0],[-1,7],[7,20],[3,19],[1,13],[-3,11],[-5,10],[-3,5],[0,27],[0,19],[-1,15],[0,5],[3,-1],[6,5],[2,5],[2,14],[2,17],[15,20],[12,6],[6,-12],[5,-15],[1,-20],[3,-15],[1,-11]],[[75743,57228],[2,-7],[3,-5],[1,-4],[-5,-8],[-2,-2],[-8,-5],[-3,-1],[-4,2],[-3,3],[-1,4],[-3,3],[1,14],[1,3],[2,3],[4,0],[2,3],[2,8],[-1,10],[-2,18],[2,18],[6,0],[5,-11],[4,-13],[2,-8],[-2,-7],[-2,-8],[-1,-10]],[[75629,57333],[3,-3],[2,-12],[0,-12],[-3,-7],[-6,-2],[-5,7],[-1,22],[-4,8],[0,4],[3,0],[8,-2],[3,-3]],[[75844,57553],[2,-5],[5,-32],[-5,-1],[-4,9],[-2,12],[-1,5],[-2,3],[-4,2],[-3,3],[-3,6],[-2,5],[-1,4],[-4,1],[-2,5],[3,11],[4,12],[2,5],[10,0],[3,-3],[-2,-9],[6,-28],[0,-5]],[[75861,57689],[0,-1],[0,-2],[0,-3],[-2,-13],[0,-4],[2,-19],[0,-10],[-2,-7],[-3,3],[-3,9],[-3,10],[-1,6],[0,9],[1,11],[1,11],[2,6],[2,3],[3,-1],[2,-3],[1,-5]],[[75758,58152],[2,-6],[-2,-10],[0,-30],[-2,-13],[-2,-6],[-4,-11],[-2,-3],[0,-8],[0,-7],[0,-6],[-4,-4],[-3,42],[1,7],[1,7],[2,32],[-1,10],[4,7],[2,5],[2,4],[2,0],[1,-2],[2,-2],[1,-3],[0,-3]],[[75847,58337],[7,-9],[1,-6],[-7,-20],[-1,-17],[0,-38],[-1,-17],[-3,-25],[-5,-17],[-6,6],[-2,0],[-1,-6],[-2,-2],[-3,1],[-1,3],[-1,7],[1,14],[0,8],[-2,0],[0,-13],[-6,2],[-2,-10],[0,-13],[1,-9],[5,-11],[1,-7],[-1,-7],[-2,-10],[-2,0],[-1,11],[-2,5],[-3,1],[-3,0],[0,-5],[-7,-26],[0,-5],[-1,-3],[0,-3],[3,-5],[3,-2],[2,4],[3,8],[3,-3],[1,-6],[0,-5],[1,-2],[2,-2],[7,-15],[-1,-10],[1,-13],[1,-13],[-3,-12],[4,-11],[3,-11],[2,-13],[0,-14],[-4,-27],[-1,-16],[5,-21],[0,-15],[0,-28],[-3,-8],[-4,-9],[-3,-8],[4,-5],[-2,-9],[-3,-4],[-3,-5],[-1,-11],[-2,0],[-2,6],[-2,6],[-3,5],[-3,3],[1,-2],[1,-10],[-8,-1],[-7,1],[0,-4],[2,-6],[3,-18],[2,-4],[3,-2],[3,-5],[2,-6],[0,-8],[4,-3],[-1,-3],[-2,-3],[-3,-3],[-2,-5],[-1,0],[-1,-1],[0,-6],[2,-5],[2,-3],[2,-4],[0,-8],[-1,-5],[-3,-5],[-2,-5],[2,-7],[1,-5],[1,-6],[0,-5],[-1,-3],[-5,1],[1,-11],[-3,-7],[-6,-9],[-4,-10],[1,-8],[0,-5],[-2,-1],[-5,-7],[1,-5],[-3,-4],[-4,-2],[-5,-1],[-3,-4],[3,-9],[7,-15],[-3,1],[-3,-1],[-2,-3],[-1,-6],[1,0],[-5,-15],[-1,-7],[-1,-14],[0,-49],[2,0],[1,20],[1,12],[2,5],[4,-1],[4,-3],[2,-7],[1,-14],[-1,-20],[-10,-92],[-2,-5],[-5,-1],[-3,-3],[-10,-20],[-1,-6],[-1,-8],[0,-13],[2,-2],[2,0],[3,2],[1,4],[0,23],[2,-2],[3,-1],[1,-1],[0,11],[1,6],[3,1],[4,-6],[0,-6],[1,-20],[0,-7],[-1,-5],[-4,-7],[0,-6],[0,-18],[-3,-20],[-2,-10],[-3,-7],[-1,7],[-2,3],[-2,0],[-3,2],[-8,19],[-1,5],[0,6],[0,5],[-3,2],[-3,3],[-2,8],[-2,8],[0,5],[2,4],[3,1],[2,2],[1,5],[-2,4],[-3,1],[-3,3],[-2,7],[0,6],[-1,12],[-1,6],[0,9],[-3,1],[-2,-3],[-2,-1],[-5,7],[-1,9],[2,27],[0,24],[-1,4],[-2,2],[-3,2],[-3,4],[-1,-1],[-1,0],[0,3],[0,4],[0,3],[1,1],[1,0],[2,18],[6,21],[2,1],[2,-3],[4,-13],[1,-4],[2,-2],[3,2],[-1,-9],[0,-7],[2,-3],[1,5],[1,33],[2,8],[-1,9],[-1,9],[-1,8],[1,9],[4,13],[1,7],[0,59],[1,12],[6,26],[4,11],[2,-7],[2,0],[2,11],[3,4],[2,-4],[1,-13],[-1,-11],[0,-5],[2,-2],[2,0],[0,2],[1,1],[1,1],[5,0],[1,0],[6,5],[1,4],[1,7],[-3,24],[-2,2],[-2,3],[-2,3],[0,3],[0,6],[1,-1],[5,3],[2,0],[1,2],[0,8],[-2,6],[-2,2],[-7,0],[-5,5],[-4,11],[-1,15],[1,140],[2,8],[5,12],[1,7],[1,3],[2,1],[4,0],[1,1],[1,7],[-1,3],[-3,1],[-4,3],[-1,9],[-1,42],[-2,26],[1,8],[2,5],[2,4],[2,6],[6,-3],[4,10],[3,16],[1,13],[0,31],[4,16],[2,10],[-2,4],[-6,6],[1,15],[5,35],[5,19],[2,4],[0,2],[-1,4],[-4,8],[-1,5],[3,7],[0,12],[0,12],[6,5],[0,5],[-4,27],[1,9],[0,3],[-4,9],[2,12],[11,28],[1,5],[1,7],[1,6],[-1,14],[0,5],[2,8],[1,-1],[3,5],[6,15],[2,5],[0,6],[0,10],[2,5],[2,3],[5,2],[2,3],[2,-5],[2,-2],[1,0],[3,3],[-2,3],[0,3],[0,4],[2,6],[1,-7],[2,0],[2,1],[3,2],[2,-3],[5,-17],[-3,-21],[-1,-18],[2,-39],[1,1],[4,2],[1,1],[-1,-9],[-5,-9],[-2,-8],[-1,-7],[-4,-5],[-5,-5],[-3,-5],[0,10],[-3,5],[-3,0],[-2,-7],[1,-9],[3,-7],[4,-4],[6,3],[2,-6],[5,-13]],[[75843,58564],[1,-3],[3,-13],[-9,5],[-5,5],[-3,6],[8,7],[4,0],[1,-7]],[[74686,63259],[5,-4],[3,-5],[3,-8],[1,-11],[-2,-11],[-3,-1],[-5,1],[-5,-4],[-6,5],[-3,27],[3,22],[9,-11]],[[74458,63324],[11,61],[8,30],[7,6],[6,-62],[-1,-35],[-8,-12],[3,-16],[0,-9],[-2,-8],[-2,-2],[-3,1],[-8,5],[-8,0],[-3,3],[-2,10],[-1,6],[1,7],[2,15]],[[74620,63452],[4,3],[4,-3],[2,-8],[-1,-11],[-3,-14],[-2,-14],[-1,-32],[-3,3],[-10,6],[-2,1],[0,5],[-2,8],[0,5],[1,4],[3,16],[5,17],[5,14]],[[74466,63409],[-2,5],[-1,10],[1,11],[1,7],[2,10],[3,10],[3,5],[4,-1],[4,-15],[-3,-19],[-5,-16],[-7,-7]],[[70047,56871],[0,12],[2,11],[2,6],[1,4],[2,5],[1,3],[0,-8],[-3,-17],[-5,-16]],[[70218,57139],[1,0],[1,0],[0,-3],[0,-1],[-1,-2],[-1,-2],[0,-9],[-1,-10],[-2,-17],[-1,8],[-1,2],[1,11],[4,23]],[[71610,71491],[-7,2],[-4,-1],[-3,-2],[-9,-11],[-7,-8],[-8,-3],[-39,12],[-3,1],[-9,-1],[-18,-5],[-8,2],[-9,8],[-13,19],[-7,6],[-8,1],[-21,-4],[-10,1],[-10,8],[-3,6],[-6,13],[-4,6],[-5,3],[-6,-1],[-11,-3],[-12,0],[-5,3],[-6,3],[-4,7],[-7,16],[-3,8],[-6,4],[-11,-1],[-2,0]],[[71326,71580],[-4,0],[-5,5],[-3,7],[-7,16],[-9,12],[-20,13],[-9,9],[-6,19],[4,49],[-2,19],[-5,3],[-11,-19],[-6,-3],[-6,-1],[-4,-1],[-3,-1],[-2,-4],[-4,-10],[-2,-4],[-5,-1],[-5,1],[-5,0],[-10,-12],[-4,0],[-5,2],[-5,3],[-7,-2],[-13,-6],[-6,1],[-8,12],[-3,21],[-1,24],[-3,23],[-7,21],[-8,8],[-21,3],[-9,7],[-8,14],[-6,19],[-2,20],[2,10],[4,6],[13,15],[2,3],[2,5],[0,6],[-2,11],[0,6],[4,8],[5,4],[3,5],[0,10],[-3,8],[-7,15],[-2,9],[0,24],[5,47],[-2,14],[-1,10],[-28,93],[-7,15],[-17,26],[-17,21],[-22,18],[-22,7],[-17,-11],[-2,-6],[-1,-6],[-2,-4],[-16,2],[-6,14],[-2,22],[-1,24],[-2,23],[-4,18],[-8,13],[-10,7],[-33,12],[-10,9],[-7,13],[-4,3],[-6,2],[-23,-6],[-11,0],[-9,-4],[-5,-4],[-4,-5],[-3,-7],[-2,-17],[-2,-6],[-4,-2],[-1,5],[-2,18],[-2,7],[-8,21],[-9,13],[-20,0],[-8,12],[-4,9],[-4,2],[-10,-7],[-18,-8],[-5,-5]],[[70706,72394],[-7,6],[-4,9],[-3,12],[-5,10],[-17,14],[-9,12],[-4,12],[0,12],[4,2],[11,-2],[6,2],[4,4],[3,7],[2,12],[3,9],[4,4],[9,0],[12,6],[4,1],[2,-2],[3,-6],[2,-1],[2,1],[1,2],[1,3],[3,6],[1,4],[2,2],[5,1],[2,2],[6,10],[3,6],[3,4],[5,-1],[2,-5],[10,-40],[3,-4],[6,1],[22,9]],[[70803,72518],[5,5],[3,10],[3,10],[5,5],[7,2],[26,16],[2,8],[1,22],[3,10],[7,5],[13,8],[-9,10],[-7,14],[-15,31],[-4,8],[-26,24],[-8,14],[-6,16],[-3,21],[1,12],[3,8],[4,7],[3,9],[1,5],[1,6],[1,5],[2,5],[4,10],[2,7],[1,5],[-1,11],[-3,6],[-15,13],[-2,3],[-1,4],[-1,8],[1,3],[2,2],[5,13],[1,4],[-3,4],[-3,3],[-1,3],[0,4],[0,16],[1,37],[-4,17],[-19,18],[-6,17],[-5,68],[0,56],[1,11],[3,10],[11,22],[4,10],[1,10],[0,12],[-2,17],[0,5],[-1,5],[-2,4],[-5,5],[-2,3],[-2,6],[-5,10],[-4,6],[-5,2],[-6,-1],[-7,1],[-4,7],[-5,8],[-5,7],[-47,30],[-39,33],[-6,1],[-19,-11],[-7,0],[-5,1],[-17,10],[-5,0],[-4,-4],[-4,-10],[0,-5],[0,-5],[-1,-5],[-2,-4],[-11,-6],[-2,-3],[0,-11],[4,-10],[2,-9],[-4,-10],[-4,-2],[-27,1],[-4,5],[-9,13],[-4,4],[-10,7],[-5,5],[-5,10],[-3,9],[-3,25],[-1,8],[-10,28],[-1,9],[1,26],[-1,12],[-3,8],[-8,15],[-3,9],[-1,11],[2,11],[4,9],[4,7],[7,5],[13,0],[6,3],[4,7],[1,9],[0,10],[-3,10],[-4,5],[-9,17],[-17,21],[-3,7],[-2,10],[-2,20],[-3,9],[-12,19],[-6,19],[-2,17],[3,17],[8,42],[1,9],[0,12],[-3,34],[0,12]],[[70453,73832],[52,11],[5,5],[3,8],[3,21],[3,13],[3,8],[5,7],[6,6],[2,6],[-7,32],[-1,25],[-2,13],[-4,10],[-5,6],[-5,1],[-4,4],[-2,12],[-1,12],[2,11],[2,11],[4,8],[8,11],[2,5],[1,7],[2,25],[4,11],[6,10],[4,10],[2,14],[1,8],[1,8],[3,7],[2,6],[8,10],[18,4],[9,7],[9,10],[9,6],[10,2],[10,-3],[9,-6],[9,-2],[9,2],[10,7],[29,39],[25,44],[9,12],[11,9],[5,6],[14,23],[5,4],[6,0],[24,-10],[8,3],[-2,20],[-3,8],[-13,19],[-2,9],[2,12],[3,13],[2,11],[1,2],[1,6],[3,8],[1,2],[6,1],[6,-5],[24,-27],[10,-7],[10,-4],[8,2],[13,10],[7,2],[5,-3],[5,-6],[5,-4],[6,2],[2,5],[1,5],[1,5],[4,2],[3,1],[3,3],[60,79],[12,11],[10,0],[8,-12],[5,-26],[1,-33],[2,-11],[3,-8],[8,-12],[3,-6],[1,-11],[-3,-8],[-4,-8],[-2,-11],[0,-11],[5,-26],[2,-11],[5,-8],[6,1],[13,9],[6,1],[6,-1],[18,-7],[6,-1],[6,2],[6,6],[4,10],[3,10],[4,9],[25,19],[7,1],[5,-2],[10,-10],[5,-2],[10,10],[8,19],[8,15],[8,-5],[3,-10],[5,-36],[3,-7],[5,2],[9,14],[24,26],[8,13],[6,16],[9,42],[7,18],[15,19],[3,8],[1,10],[2,60],[4,21],[8,18],[9,13],[11,10],[4,8],[3,12],[-1,12],[-2,11],[-1,12],[2,11],[5,7],[10,12],[4,10],[8,11],[10,8],[30,11],[8,-3],[15,-12],[8,-5],[35,-3],[16,8],[9,1],[15,-6],[16,-10],[8,-7],[8,-1],[21,10],[15,-1],[5,1],[4,2],[37,32],[9,5],[10,0],[36,-8],[11,-8],[6,-1],[5,3],[28,39],[4,7],[4,10],[7,23],[5,16],[7,17],[5,7],[11,11],[5,7],[3,10],[-1,10],[-5,23],[1,11],[5,9],[5,5],[11,9],[26,32],[20,6],[10,8],[3,5],[2,15],[2,7],[4,5],[4,3],[37,24],[25,28],[5,4],[17,6],[31,36],[11,6],[13,5],[6,4],[6,7],[13,20],[5,5],[6,3],[18,-9],[6,0],[6,4],[22,24],[18,11],[15,17],[13,5],[13,0],[12,2],[10,15],[3,11],[3,22],[3,10],[3,9],[5,6],[10,6],[14,6],[70,-1],[14,8],[7,18],[0,12],[-3,8],[-3,7],[-3,9],[-1,10],[-1,19],[-2,9]],[[72280,75455],[11,9],[3,7],[2,13],[-5,42],[-4,9],[-3,8],[-2,10],[-6,47],[0,7],[3,12],[1,7],[0,7],[-3,11],[-7,17],[-3,9],[-3,23],[-2,9],[-2,10],[1,13],[3,9],[10,24],[5,18],[6,35],[5,15],[5,4],[5,0],[9,-4],[5,1],[14,8],[5,7],[21,12],[14,3],[6,6],[2,12],[-4,11],[-6,5],[-12,3],[-19,14],[-10,12],[-5,15],[4,17],[11,12],[25,16],[21,26],[12,8],[12,0],[14,-17],[6,-2],[6,2],[5,5],[4,9],[2,12],[-2,12],[-6,18],[-1,11],[-1,12],[-1,11],[-2,11],[-3,8],[-11,8],[-11,5],[-4,9],[14,41],[5,18],[0,20],[-32,133],[-33,134],[-10,23],[-5,14],[-3,12],[0,12],[-1,11],[-1,10],[-4,10],[-9,14],[-4,8],[-1,11],[2,22],[7,43],[0,23],[-11,87],[-1,21],[2,25],[8,44],[4,13],[1,7],[-2,8],[-5,10],[-1,5],[0,7],[6,11],[10,6],[18,7],[4,5],[2,8],[-2,7],[-4,5],[-45,26],[-14,17],[-6,4],[-7,2],[-50,-17],[-13,2],[-34,33],[-7,14],[4,18],[6,7],[13,10],[27,36],[11,16],[11,7],[12,2],[20,-5],[20,12],[21,-2],[7,1],[4,7],[6,21],[5,7],[6,1],[20,-3],[44,25],[14,1],[22,-11],[8,0],[34,21],[12,0],[12,6],[22,20],[111,52],[22,24],[12,8],[11,-4],[10,-1],[7,-18],[4,-25],[2,-20],[0,-14],[2,-8],[4,-4],[18,-4],[5,-5],[5,-9],[11,-8],[14,5],[53,41],[15,6],[14,-3],[13,-13],[24,-40],[13,-13],[18,5],[13,31],[8,43],[5,53],[1,24],[-1,22],[-5,11],[-28,18],[-42,9],[-10,7],[-10,24],[2,13],[2,16],[8,31],[10,59],[21,54],[8,28],[4,17],[7,54],[8,82],[7,39],[11,35],[18,45],[5,18],[3,32],[2,11],[11,35],[25,141],[41,125],[2,9],[0,10],[-1,11],[-1,11],[1,12],[4,22],[1,6],[-2,12],[-1,6],[1,7],[3,12],[1,7],[0,24],[2,7],[7,5],[7,2],[7,1],[8,-1],[7,-4],[14,-18],[5,-5],[26,-9],[11,-7],[48,-47],[105,-55],[26,1],[20,-6],[7,1],[17,16],[1,0],[29,4],[35,-4],[4,0],[5,0],[15,-11],[12,-3],[27,10],[13,-2],[10,-8],[9,-13],[5,-18],[0,-21],[-3,-10],[-4,-9],[-3,-9],[2,-8],[5,-4],[8,2],[20,12],[21,7],[6,6],[6,18],[5,7],[4,3],[12,4],[4,4],[8,13],[19,21],[6,9],[7,18],[3,6],[6,4],[6,2],[16,-3],[35,8],[19,-1],[2,8],[1,11],[2,10],[4,8],[2,9],[2,9],[0,11],[3,10],[6,6],[6,3],[13,2],[4,5],[1,9],[1,12],[3,20],[0,9],[-2,11],[-1,10],[2,11],[1,11],[-2,12],[-20,47],[-4,18],[-2,18],[5,40],[0,19],[-22,176],[0,14],[3,13],[5,16],[4,22],[7,66],[37,128],[8,19],[10,10],[62,13],[51,-6],[16,11],[11,19],[6,8],[7,4],[27,-2],[32,18],[5,6],[3,8],[5,20],[3,9],[5,8],[13,19],[21,41],[2,7],[0,8],[-3,25],[-1,7],[2,5],[6,9],[6,19],[-4,11],[-9,12],[-6,20],[-2,15],[-1,10],[1,9],[4,12],[5,11],[4,7],[11,13],[5,10],[6,21],[6,7],[8,0],[16,-7],[8,-1],[39,22],[13,-4],[11,-8],[34,-14]],[[74256,79539],[11,-6],[10,-3],[11,2],[10,8],[2,2],[1,4],[1,3],[3,10],[1,1],[3,-1],[3,0],[53,23],[28,4]],[[74393,79586],[0,-7],[4,-17],[1,-14],[-2,-9],[-2,-8],[-1,-13],[1,-13],[5,-5],[5,-3],[4,-6],[0,-22],[-10,-13],[-22,-15],[-4,-9],[-2,-11],[1,-10],[5,-7],[6,-4],[3,-3],[2,-4],[1,-5],[1,-13],[1,-5],[4,-7],[6,-5],[18,-13],[12,2],[7,-3],[16,-16],[7,-13],[1,-15],[-2,-5],[-12,-12],[-2,-4],[-2,-7],[-2,-6],[-4,-5],[-9,-10],[2,-14],[9,-14],[9,-7],[4,0],[6,2],[3,-1],[3,-2],[4,-7],[8,-6],[9,-10],[5,-4],[5,0],[9,1],[5,-1],[19,-14],[8,-9],[14,-27],[9,-9],[7,0],[5,3],[6,1],[6,-5],[18,-29],[2,-10],[-4,-22],[1,-12],[2,-11],[1,-12],[2,-10],[4,-9],[11,-13],[6,-3],[7,1],[8,-4],[18,-27],[8,-8],[8,-1],[16,4],[7,-3],[5,-6],[31,-61],[8,-5],[26,-1],[14,-4],[7,2],[7,8],[5,7],[13,16],[6,4],[4,0],[11,-9],[5,-1],[14,1],[7,4],[11,0],[8,-6],[2,-16],[-1,-10],[2,-9],[4,-5],[5,-2],[4,-3],[2,-9],[2,-10],[3,-7],[5,-4],[10,-3],[4,-6],[3,-8],[2,-17],[3,-7],[9,-4],[29,4],[9,5],[4,7],[1,8],[0,7],[2,8],[5,3],[11,-5],[12,0],[4,-7],[1,-10],[-2,-13],[-1,-11],[2,-13],[3,-11],[3,-8],[11,-16],[12,-12],[13,-8],[25,-10],[6,-5],[6,-7],[1,-7],[-3,-6],[-3,-8],[3,-12],[4,-9],[8,-29],[4,-9],[9,-10],[4,-8],[0,-18],[0,-19],[2,-16],[7,-8],[4,-7],[0,-10],[-1,-10],[-3,-9],[-2,-4],[0,-4],[0,-4],[68,-175],[8,-13],[11,-3],[7,0],[6,-3],[6,-5],[6,-8],[4,-9],[2,-10],[2,-10],[3,-11],[2,-4],[2,-3],[2,-3],[1,-7],[0,-4],[-3,-9],[-1,-5],[1,-12],[4,-8],[10,-15],[8,-20],[3,-22],[0,-8],[-1,-16],[-4,-25],[0,-15],[4,-6],[6,-3],[4,-8],[0,-9],[-3,-13],[-6,-21],[-4,-11],[-4,-24],[-3,-11],[-11,-43],[-8,-16],[-3,-9],[1,-12],[14,-67],[7,-16],[6,-16],[3,-27],[-1,-28],[-5,-17],[-3,-3],[-15,-22],[-58,-117],[-4,-13],[-13,-141],[6,-10],[18,-20],[4,-12],[3,-18],[4,-15],[4,-17],[0,-19],[2,-7],[11,-8],[5,-5],[3,-11],[0,-6],[-2,-6],[-1,-10],[5,-17],[9,-1],[19,18],[10,2],[13,-1],[12,-4],[10,-7],[3,-7],[6,-14],[4,-6],[18,-14],[27,-9],[6,0],[5,6],[4,7],[5,6],[6,0],[5,-5],[18,-36],[3,-4],[3,1],[2,2],[4,1],[27,-10],[6,1],[11,5],[7,1],[47,-4],[16,5],[9,1],[10,0],[9,-4],[9,-6],[24,-26],[7,-3],[13,6],[5,0],[13,-7],[4,0],[14,3],[5,-1],[12,-8],[5,0],[27,9],[18,2],[32,13],[13,-3],[4,0],[9,3],[4,0],[15,-14],[8,-5],[9,-1],[5,2],[5,1],[6,-1],[5,-3],[7,1],[17,3],[8,-1],[21,-16],[7,0],[14,3],[6,-1],[6,-3],[11,-11],[5,-3],[29,-3],[46,-35],[7,-10],[44,-95],[15,-24],[13,-8],[24,-5],[12,0],[13,9],[4,-1],[5,-3],[4,-3],[22,-39],[5,-11],[8,-25],[4,-10],[8,-4],[18,0],[8,-7],[36,-34],[19,-28],[4,-9],[3,-10],[4,-7],[7,-5],[51,-25],[24,-20],[12,-3],[96,19],[5,-4],[-3,-11],[-8,-18],[-3,-10],[-2,-16],[-4,-11],[-1,-6],[-1,-6],[2,-30],[-2,-34],[0,-14],[2,-6],[27,-11],[14,-1],[10,-4],[7,-13],[15,-52],[28,-142],[39,-131],[3,-21],[1,-28],[3,-25],[5,-22],[9,-19],[108,-167],[6,-13],[4,-12],[2,-14],[3,-75],[2,-9],[3,-1],[3,-2],[27,7],[99,17],[100,16],[92,-19],[91,-19],[113,-24],[112,-23],[113,-24],[113,-23],[41,19],[97,47],[13,0],[111,-29],[111,-29],[112,-29],[53,9],[32,-4],[31,-13],[27,-32],[42,-109],[24,-41],[17,-14],[96,-36],[97,-35],[96,-36],[8,-6],[82,-70],[81,-69],[9,-2],[108,34],[108,34],[-1,-121],[2,-6],[27,-6],[81,-1],[6,-4],[6,-9],[11,-21],[11,6],[52,87],[5,3],[15,4],[14,12],[6,3],[3,3],[13,15],[19,17],[110,91],[125,87],[125,86],[119,31],[118,30],[119,30],[35,9],[16,-3],[24,-10],[60,1],[73,-21],[8,1],[10,5],[27,23],[9,1],[72,-14],[8,1],[13,8],[44,5],[1,1],[1,2],[2,5],[1,1],[2,0],[2,1],[41,49],[69,47],[20,5],[16,-1],[4,2],[5,3],[2,4],[3,4],[3,5],[10,10],[74,51],[5,10],[7,31],[6,10],[26,33],[12,20],[9,26],[7,29],[4,12],[32,54],[38,82],[11,17],[34,30],[68,42],[17,23],[8,4],[29,5],[9,7],[8,12],[44,83],[5,3],[20,-1],[14,9],[4,2],[7,6],[3,17],[1,19],[-1,18],[-4,20],[-25,70],[-8,15],[-9,13],[-31,33],[-9,14],[-25,54],[-7,19],[-5,22],[-1,23],[-2,10],[-5,10],[-17,16],[-4,12],[0,25],[2,17],[5,18],[7,17],[6,10],[1,1],[3,7],[7,24],[6,14],[2,8],[2,10],[0,10],[-1,20],[0,10],[3,15],[52,161],[6,14],[7,11],[16,19],[5,4],[12,4],[6,4],[3,5],[3,5],[3,4],[4,2],[3,0],[7,0],[27,-12],[76,2],[9,-3],[8,-8],[23,-35],[11,-29],[6,-12],[8,-9],[37,-25],[63,-27],[12,0],[24,-15],[103,-14],[4,-3],[8,-10],[4,-3],[20,-3],[8,4],[11,13],[17,28],[29,31],[14,24],[7,4],[16,3],[13,4],[10,8],[10,13],[8,18],[6,16],[2,6],[4,6],[14,13],[57,83],[15,34],[8,26],[3,13],[2,27],[1,6],[3,3],[38,22],[9,2],[10,-1],[46,-28],[10,-2],[52,12],[58,0],[38,11],[46,18],[8,6],[7,9],[21,36],[60,77],[5,9],[3,2],[14,-3],[4,0],[5,2],[13,11],[8,8],[16,36],[6,20],[-2,14],[-6,14],[-4,18],[2,16],[40,117],[46,72],[4,8],[3,11],[5,19],[4,4],[6,7],[12,5],[17,4],[4,2],[17,22],[6,10],[3,3],[4,-1],[35,-11],[96,-10],[10,4],[4,13],[1,41],[4,16],[10,21],[2,8],[-1,9],[-4,19],[22,8],[5,-4],[3,-1],[2,1],[13,14],[3,1],[4,-7],[7,-24],[5,-9],[13,-12],[7,-2],[28,5],[5,4],[4,9],[8,22],[5,10],[6,6],[7,5],[13,5],[9,2],[22,24],[5,3],[15,1],[4,2],[10,14],[9,8],[9,5],[9,1],[9,-2],[10,-5],[18,-13],[10,-3],[22,0],[5,2],[7,8],[4,2],[11,-5],[10,-9],[10,-4],[9,9],[11,27],[7,13],[8,4],[6,-4],[2,-9],[1,-10],[3,-8],[5,-2],[4,3],[7,13],[6,2],[5,-9],[8,-25],[6,-8],[7,-5],[71,-29],[13,1],[25,8],[13,0],[21,-5],[7,1],[6,-2],[10,-12],[6,-3],[5,2],[6,4],[5,7],[4,6],[5,12],[3,7],[4,2],[6,-5],[5,0],[5,5],[5,8],[5,13],[2,4],[2,4],[1,6],[-1,5],[-5,10],[-1,5],[1,11],[3,19],[0,13],[0,4],[1,3],[1,3],[-2,3],[-2,1],[-1,2],[-1,2],[0,3],[0,7],[1,5],[1,5],[2,6],[-1,4],[-4,1],[-5,1],[-3,1],[-2,4],[-1,5],[-1,4],[-1,5],[-4,8],[-9,14],[-4,9],[-1,3],[-1,3],[-1,7],[0,35],[-2,12],[-7,20],[-8,18],[-19,34],[-12,13],[-17,7],[-4,7],[-2,10],[-4,11],[-4,7],[-43,58],[-11,4],[2,9],[7,14],[1,5],[-2,9],[-5,5],[-12,5],[-26,14],[-6,6],[-3,7],[-2,10],[-3,43],[-2,11],[-4,9],[-7,7],[-24,12],[-57,37],[-15,22],[-30,71],[-17,31],[-20,14],[-53,5],[-7,3],[-14,12],[-6,3],[-17,-1],[-16,-4],[-19,-12],[-7,-1],[-43,4],[-14,-7],[-7,-9],[-59,-113],[-15,-18],[-11,-16],[-10,-26],[-11,-21],[-12,2],[-68,93],[-7,5],[-20,11],[-34,20],[-8,3],[-20,-2],[-70,-22],[-19,-1],[-52,17],[-17,-8],[-27,-25],[-31,-58],[-16,-15],[-18,13],[-70,107],[-6,14],[-4,13],[-5,36],[-8,76],[-1,6],[7,10],[65,45],[8,10],[2,19],[-6,118],[0,12],[1,12],[3,10],[63,140],[6,20],[0,10],[-4,21],[1,10],[58,185],[59,184],[4,14],[58,182]],[[82411,79976],[11,-13],[93,-76],[54,-30],[62,-5],[79,-60],[3,-1],[2,1],[5,4],[2,-1],[4,-4],[2,-1],[2,0],[2,0],[1,0],[9,2],[5,20],[3,4],[8,8],[24,17],[10,11],[5,6],[5,9],[5,7],[17,12],[5,6],[6,8],[4,10],[2,10],[3,0],[18,22],[6,4],[7,2],[6,6],[2,15],[3,5],[18,5],[5,4],[2,4],[1,11],[1,5],[2,4],[7,11],[9,9],[4,6],[9,7],[12,13],[7,5],[12,-8],[8,3],[14,7],[28,8],[3,2],[3,3],[3,2],[3,-1],[3,-2],[4,-2],[8,-2],[28,4],[27,13],[6,4],[4,6],[7,14],[14,19],[5,7],[3,9],[3,10],[1,11],[1,25],[0,6],[-1,4],[-2,5],[-1,4],[0,35],[2,11],[3,4],[3,2],[1,3],[0,6],[-2,12],[-1,3],[-6,3],[-5,1],[-18,-6],[-1,1],[-4,5],[-2,2],[-3,1],[-7,-2],[-4,1],[2,8],[-3,4],[-8,0],[-2,3],[1,7],[2,7],[3,4],[3,2],[9,-1],[2,1],[3,6],[7,12],[5,20],[1,2],[0,4],[0,2],[-1,1],[-2,2],[-1,4],[1,3],[2,3],[1,3],[6,35],[0,6],[2,6],[3,2],[3,1],[3,4],[3,5],[1,5],[3,4],[4,2],[3,3],[2,14],[3,3],[3,1],[4,2],[7,5],[4,7],[11,24],[2,8],[3,24],[0,13],[-5,13],[5,8],[3,11],[1,12],[-3,10],[15,25],[6,14],[3,5],[22,22],[7,13],[0,15],[5,1],[4,4],[2,7],[0,10],[1,8],[2,9],[1,8],[-2,9],[3,1],[1,2],[4,5],[-8,16],[1,10],[3,2],[9,-3],[3,1],[0,5],[-1,5],[-1,7],[2,15],[1,3],[3,3],[6,3],[3,3],[6,17],[2,3],[7,4],[-1,12],[-3,12],[-2,8],[14,4],[2,4],[2,4],[0,5],[2,5],[5,12],[-1,7],[-2,7],[1,13],[4,10],[14,21],[3,8],[0,14],[1,12],[3,11],[5,17],[4,9],[3,4],[3,1],[9,-2],[4,3],[4,8],[38,55],[16,16],[9,14],[5,4],[8,2],[3,2],[1,5],[2,6],[1,5],[3,5],[3,1],[3,0],[4,0],[4,4],[2,4],[2,5],[3,4],[3,1],[13,-1],[6,3],[4,8],[6,21],[7,12],[1,5],[0,8],[-1,6],[-2,6],[-1,7],[0,9],[3,7],[3,3],[4,2],[3,4],[3,6],[3,13],[4,5],[-1,4],[-1,5],[0,5],[1,5],[2,5],[0,3],[-2,2],[-1,3],[-2,5],[-3,9],[-1,5],[0,5],[2,10],[0,5],[-5,12],[-24,25],[-5,16],[-1,5],[-1,4],[-1,3],[1,7],[1,2],[3,3],[3,3],[1,6],[1,10],[6,14],[2,10],[0,18],[1,3],[2,8],[1,6],[0,6],[1,6],[5,14],[-5,5],[-15,10],[-12,4],[-20,17],[-13,8],[-8,11],[-2,2],[-7,-1],[-11,-9],[-6,-3],[-30,-3],[-5,-3],[-12,-10],[-7,-3],[-17,0],[-9,3],[-7,6],[-4,8],[-2,7],[-1,8],[1,12],[1,6],[4,14],[0,7],[-2,11],[0,7],[-3,15],[9,14],[25,15],[6,5],[12,16],[9,5],[4,3],[3,5],[2,5],[1,6],[3,4],[7,4],[3,5],[2,5],[1,5],[2,5],[2,4],[8,10],[17,31],[21,28],[24,25],[11,15],[17,37],[10,13],[20,16],[2,6],[-1,10],[5,7],[8,4],[51,6],[26,-9],[15,1],[14,6],[13,9],[7,11],[4,2],[5,0],[13,-4],[2,0],[13,2],[15,5],[35,33],[69,27],[38,0],[16,-1],[7,5],[11,14],[6,5],[16,3],[19,11],[6,2],[6,-3],[6,-7],[6,-11],[6,-6],[6,1],[13,7],[108,6],[40,19],[41,4],[3,2],[5,8],[6,5],[9,13],[5,4],[7,1],[9,-1],[8,-3],[8,-10],[3,-1],[11,-3],[4,-2],[11,-10],[3,0],[1,5],[0,10],[2,10],[6,1],[6,-5],[3,-8],[-2,-2],[-2,-3],[-4,-7],[6,-4],[6,6],[8,20],[6,4],[7,-7],[11,-19],[7,-6],[8,-4],[33,-5],[7,-4],[26,-19],[6,-9],[5,-15],[2,-5],[4,-4],[7,-3],[4,-3],[8,-16],[6,-6],[6,3],[4,7],[7,5],[8,3],[6,-1],[6,-4],[6,-6],[5,-8],[3,-13],[5,-12],[1,-2],[5,-20],[5,-7],[6,-8],[7,-6],[13,-5],[13,-8],[7,-2],[31,0],[4,-1],[7,-6],[3,-3],[2,-6],[0,-5],[0,-3],[1,-5],[6,-8],[7,0],[15,4],[6,-5],[7,-20],[6,-3],[8,6],[-2,10],[-3,11],[0,11],[5,8],[6,5],[28,10],[15,1],[15,-4],[83,-66],[8,-2],[6,-5],[6,-19],[6,-5],[18,10],[10,2],[5,-10],[3,-13],[8,-11],[15,-14],[-2,-17],[-2,-4],[-2,-3],[-6,-3],[-3,-2],[-5,-8],[-4,-11],[0,-9],[6,-4],[7,2],[12,8],[28,7],[5,-5],[2,-6],[0,-4],[-1,-4],[-1,-6],[2,-5],[1,-4],[31,-50],[2,0],[6,8],[3,2],[14,1],[6,-5],[4,-12],[-11,-6],[-4,-5],[-4,-6],[7,-18],[2,-10],[-4,-4],[-7,-1],[-7,-3],[-6,-7],[-2,-13],[1,-12],[4,-15],[5,-11],[5,-1],[3,2],[3,1],[3,3],[1,7],[1,4],[4,-1],[24,-27],[12,-8],[0,-13],[-3,-15],[0,-12],[4,-1],[9,1],[8,-2],[3,-8],[2,-8],[5,-11],[9,-15],[2,-9],[-2,-11],[-8,-25],[8,-8],[21,-9],[5,-7],[-13,-7],[-22,-21],[-1,-9],[2,-8],[5,-4],[5,-1],[28,-15],[11,-3],[11,-5],[7,-13],[-2,-10],[-8,-31],[-2,-7],[0,-4],[-6,-2],[-7,-4],[-6,-8],[-2,-12],[2,-10],[56,-142],[4,-5],[14,-6],[1,-3],[3,-6],[0,-3],[-1,-3],[-1,-4],[-2,-3],[-1,0],[2,-14],[2,-8],[0,-8],[-5,-13],[-8,-15],[0,-7],[7,-8],[21,-10],[8,-7],[7,-15],[-8,-19],[-3,-11],[-1,-13],[3,-10],[8,-4],[14,-2],[3,-1],[4,-4],[2,-6],[0,-8],[-4,-9],[-4,-3],[-6,-2],[-5,-2],[-4,-7],[-4,-8],[-2,-10],[1,-11],[4,-14],[6,-8],[7,0],[6,11],[0,7],[-1,4],[-1,4],[0,4],[2,5],[2,3],[2,3],[3,2],[5,2],[5,1],[5,-4],[3,-8],[-1,-8],[-3,-9],[-6,-14],[-8,-15],[-2,-6],[-1,-8],[-1,-9],[1,-17],[1,-11],[4,-22],[0,-13],[2,-14],[4,-9],[10,-12],[14,-33],[4,-3],[18,-21],[9,-17],[21,-68],[6,-8],[7,-6],[6,-8],[2,-12],[0,-5],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[1,-4],[1,-4],[0,-4],[2,-5],[9,-17],[4,-6],[5,-13],[2,-16],[-1,-14],[-2,-6],[-6,-12],[-3,-6],[-4,-15],[-2,-7],[-4,-7],[5,-8],[12,-15],[3,-7],[0,-13],[0,-7],[-2,-4],[-2,-6],[-2,-7],[-2,-7],[0,-7],[6,-18],[14,-13],[49,-33],[3,-7],[0,-13],[-1,-12],[-2,-10],[-3,-11],[-17,-40],[-6,-22],[2,-31],[8,-19],[3,-12],[0,-8],[-3,-10],[-3,-13],[-1,-15],[0,-13],[9,-19],[29,-14],[10,-16],[2,-13],[0,-11],[1,-10],[3,-13],[5,-7],[14,-8],[5,-7],[6,-9],[6,-8],[6,-5],[15,-3],[4,0],[2,3],[3,6],[2,3],[2,1],[4,0],[6,-2],[6,-7],[10,-17],[5,-7],[7,-3],[30,-2],[7,2],[6,6],[6,4],[15,-8],[6,2],[3,4],[3,9],[2,3],[3,2],[47,6],[21,-8],[2,2],[9,18],[1,1],[4,-5],[14,-11],[7,-4],[7,-1],[3,-2],[1,-4],[1,-6],[0,-6],[-1,-8],[-3,-3],[-3,-1],[-3,-2],[-4,-11],[-1,-11],[3,-8],[7,-3],[7,2],[12,7],[7,-1],[6,-4],[13,-14],[14,-4],[5,-7],[10,-32],[4,-9],[6,-5],[8,-2],[5,3],[10,15],[6,6],[7,1],[8,-3],[7,-7],[12,-18],[7,-2],[6,5],[3,12],[0,24],[2,9],[7,3],[14,-2],[7,-3],[6,-7],[5,-8],[2,-7],[1,-9],[0,-28],[2,-11],[4,-8],[5,-6],[13,-3],[14,3],[12,-3],[7,-21],[0,-20],[2,-6],[3,-7],[6,-4],[14,-2],[4,-4],[1,-8],[-1,-26],[6,-2],[6,-4],[10,-10],[-2,-14],[0,-11],[4,-9],[13,-6],[6,-7],[12,-18],[45,-53],[14,-11],[12,3],[12,9],[14,7],[14,0],[8,-3],[3,-7],[2,-10],[7,-4],[8,-2],[7,2],[17,11],[7,1],[7,-3],[0,-8],[-3,-10],[-10,-27],[-27,-95],[-1,-11],[3,-11],[6,-6],[7,-3],[6,-3],[4,-10],[0,-7],[-2,-11],[0,-6],[0,-7],[3,-12],[0,-3],[4,-3],[21,13],[8,-2],[4,-6],[0,-11],[-3,-12],[-3,-10],[2,-11],[5,-17],[3,-11],[2,-5],[3,-5],[3,-3],[3,-2],[3,-3],[0,-10],[0,-14],[-1,-7],[-13,-22],[-1,-5],[-2,-7],[-3,-21],[-1,-3],[-5,-4],[-6,-8],[-9,-17],[-3,-11],[0,-9],[2,-9],[1,-13],[2,-8],[48,-73],[14,-26],[10,-37],[0,-19],[-1,-22],[1,-20],[6,-8],[5,-3],[12,-10],[5,-3],[11,-1],[6,0],[7,3],[10,10],[12,7],[58,20],[6,-1],[10,-4],[9,-8],[8,-11],[11,-20],[2,-3],[3,-1],[3,0],[2,0],[3,1],[2,2],[15,16],[5,1],[22,-10],[5,0],[10,3],[5,0],[3,-2],[8,-6],[3,-2],[3,0],[3,1],[2,2],[7,9],[3,1],[16,5],[18,-2],[7,-3],[13,0],[7,4],[4,3],[13,14],[4,2],[19,5],[10,-1],[9,-3],[15,-11],[6,-3],[14,1],[3,2],[3,3],[2,4],[5,10],[2,5],[1,5],[-1,5],[-2,10],[0,4],[1,3],[1,4],[8,16],[14,25],[2,7],[2,7],[-1,5],[-1,4],[-1,4],[-1,4],[0,5],[1,5],[1,3],[2,4],[4,4],[5,2],[4,-1],[5,-3],[7,-9],[3,-3],[4,-1],[5,2],[4,4],[3,5],[6,15],[3,5],[21,22],[0,3],[23,15],[3,3],[2,2],[1,3],[1,3],[1,4],[3,8],[4,6],[4,3],[26,11],[11,1],[11,-4],[2,-3],[5,-6],[3,-2],[6,-1],[16,4],[5,0],[4,-2],[11,-7],[3,-1],[17,3],[6,4],[4,7],[3,12],[2,7],[2,6],[3,5],[3,5],[4,3],[9,4],[5,3],[4,8],[6,17],[4,8],[5,4],[16,-1],[5,3],[10,8],[5,3],[2,1],[17,-1],[8,3],[4,4],[12,18],[5,4],[4,3],[17,4],[25,15],[44,10],[6,3],[5,-7],[13,-15],[5,-3],[5,0],[6,2],[4,4],[5,5],[8,-25],[11,-18],[14,-11],[11,-3],[5,1],[-4,-6],[-5,-20],[-1,-50],[-6,-16],[-4,-4],[-17,-24],[-5,-12],[-2,-18],[2,-15],[9,-24],[-3,-11],[3,-9],[6,-6],[7,-2],[3,-6],[3,-13],[2,-15],[0,-9],[6,-17],[20,-32],[-1,-14],[2,-4],[-13,-28],[-3,-5],[-6,-4],[-2,-10],[0,-14],[-1,-12],[-4,-8],[-12,-15],[-3,-7],[-3,-6],[-12,-27],[-1,-6],[-6,-4],[-10,-15],[-4,-5],[-4,-1],[-9,0],[-6,6],[-4,-1],[-4,-3],[-3,-1],[-6,-1],[-6,-2],[-6,-3],[-5,-7],[-4,-7],[-6,-18],[-4,-7],[-11,-10],[-6,-6],[-2,-10],[-1,-14],[-3,-9],[-2,-9],[2,-11],[2,-5],[5,-10],[2,-2],[1,-3],[0,-7],[-2,-12],[3,-10],[4,-11],[3,-12],[-2,-13],[-6,-6],[-14,-2],[-6,-6],[-3,-9],[-7,-34],[-2,-4],[-2,-2],[-1,-4],[-1,-8],[0,-25],[-1,-11],[-12,-44],[-1,-8],[1,-8],[4,-10],[3,-10],[-1,-12],[-4,-25],[-4,-27],[-2,-11],[-2,-5],[-3,-7],[-6,-9],[-13,-12],[-5,-10],[-1,-6],[0,-15],[-2,-5],[-12,-29],[0,-6],[0,-8],[2,-7],[2,-2],[2,-1],[4,-2],[5,-6],[6,-10],[3,-11],[-2,-12],[-13,-10],[-5,-9],[3,-11],[3,4],[4,0],[3,-2],[2,-6],[-6,-7],[0,-6],[2,-8],[0,-11],[-3,-5],[-6,-4],[-4,-4],[2,-8],[-3,-4],[-4,-10],[-2,-2],[-2,2],[-3,8],[-1,2],[-4,-2],[-2,-4],[-1,-6],[-2,-6],[-3,-5],[-7,-11],[-5,-6],[-6,0],[-3,-4],[2,-16],[6,-21],[1,-10],[-7,-24],[-11,-52],[-2,-4],[-6,6],[-3,-1],[-2,-4],[-1,-6],[0,-9],[-1,-3],[-5,-7],[0,-2],[0,-3],[0,-2],[-1,-1],[-3,1],[-2,3],[-1,3],[-2,1],[-6,0],[-5,-5],[-3,-10],[-1,-15],[-1,-2],[-3,-3],[-2,-5],[0,-8],[2,-6],[5,-5],[3,-6],[-8,-6],[-4,-23],[-7,-11],[2,-7],[7,-3],[3,-4],[1,-8],[-2,-6],[-8,-8],[2,-3],[3,-7],[1,-3],[-5,-3],[-5,-1],[-4,-3],[-3,-9],[3,-12],[-4,-4],[-10,0],[-4,-3],[-9,-11],[-8,-5],[-8,-8],[-9,-3],[-10,-7],[-4,-4],[-2,-6],[-11,-35],[-2,-9],[-2,-10],[0,-11],[-7,-58],[1,-13],[-2,-12],[2,-18],[4,-18],[2,-17],[-1,-8],[-1,-6],[-1,-5],[-5,-9],[-7,-10],[-7,-5],[-7,-14],[-8,-6],[-8,-12],[-3,-2],[-9,2],[-23,18],[-121,52],[-121,52],[-5,3],[-5,6],[-5,6],[-4,8],[-3,11],[-2,11],[-3,10],[-5,6],[-10,-3],[-9,-16],[-17,-53],[-3,-4],[-13,0],[-6,-1],[-5,-5],[-3,-8],[-3,-12],[0,-10],[5,-14],[-1,-12],[-3,-9],[-38,-55],[-2,-2],[-3,-5],[-3,-8],[-2,-6],[-4,-1],[-20,5],[-5,0],[-5,-2],[-4,-4],[-11,-17],[-4,-4],[-19,-11],[-5,-1],[-5,3],[-5,5],[-3,3],[-4,-1],[-13,-6],[-1,-2],[-2,-4],[1,-9],[-1,-5],[-4,-7],[-5,-4],[-5,-1],[-5,0],[-10,-7],[-1,-10],[11,-30],[10,-10],[4,-7],[12,-38],[28,-186],[27,-186],[0,-5],[-3,-2],[-5,-6],[-4,-9],[-2,-6],[0,-8],[-2,-11],[1,-9],[3,-20],[-1,-10],[-6,-29],[-6,-36],[-1,-11],[2,-32],[0,-15],[0,-4],[0,-6],[3,-10],[0,-6],[0,-5],[-2,-11],[0,-4],[1,-5],[2,-11],[0,-5],[-1,-8],[-6,-15],[-1,-10],[1,-7],[24,-30],[3,-3],[3,-8],[1,-7],[1,-27],[0,-8],[-3,-9],[-3,-5],[-3,-7],[-2,-14],[0,-22],[-1,-11],[-3,-8],[-9,-12],[-4,-8],[-3,-10],[-1,-12],[3,-7],[2,-8],[2,-10],[-2,-11],[-4,-7],[-10,-11],[-2,-4],[-1,-4],[0,-5],[-1,-5],[-2,-4],[-5,-3],[-2,-3],[-2,-6],[-1,-7],[0,-16],[2,-17],[5,-17],[1,-15],[-8,-8],[-10,0],[-4,-1],[-5,-5],[-1,-8],[-1,-9],[-2,-6],[-38,1],[-11,8],[-6,3],[-7,-2],[-4,-7],[-2,-9],[-4,-8],[-1,1],[-22,2],[-18,-7],[-26,-22],[-24,-27],[-7,-23],[6,-11],[10,-1],[10,2],[8,-1],[7,-7],[6,-12],[6,-14],[4,-14],[0,-17],[-5,-10],[-10,-13]],[[86258,75657],[-2,11],[-1,23],[-1,7],[-4,6],[-5,0],[-5,-6],[-3,-9],[4,-9],[-1,-9],[-4,-3],[-6,7],[-1,6],[1,12],[-1,5],[-2,3],[-2,0],[-3,-1],[-3,2],[-19,26],[-2,10],[-15,24],[-5,21],[0,23],[3,50],[-4,21],[-13,4],[-15,-1],[-11,8],[3,5],[3,8],[2,10],[1,8],[-3,5],[-8,-3],[-13,-9],[-10,0],[-4,0],[-4,3],[-3,4],[-8,18],[-2,3],[-4,1],[-3,-1],[-5,-5],[-3,-2],[1,-5],[2,-3],[2,-3],[2,-1],[-3,-3],[-9,-1],[-3,-5],[-1,-6],[0,-14],[-2,-6],[-2,-6],[-10,-42],[-1,-18],[-1,-8],[-5,-15],[-3,-12],[-1,-7],[-1,-8],[1,-11],[2,-4],[3,-2],[3,-5],[0,-4],[-2,-4],[-2,-5],[1,-9],[-7,-3],[-3,-8],[2,-8],[4,-2],[0,-3],[-7,-13],[-1,-20],[0,-23],[-1,-22],[-7,-19],[-9,-3],[-11,4],[-11,2],[1,-7],[0,-8],[-2,-7],[-7,-4],[-1,-4],[0,-6],[-2,-6],[-2,-3],[-3,-1],[-2,2],[-1,6],[-2,4],[-8,7],[-2,5],[-13,18],[-4,0],[-4,-3],[-3,-4],[-2,-1],[-4,3],[-3,7],[-3,2],[-3,-2],[0,-4],[1,-5],[2,-5],[-4,-4],[-3,7],[-3,-2],[-2,-9],[-1,-11],[-2,-1],[-15,-5],[-2,-3],[-1,-4],[-1,-5],[0,-5],[2,-2],[1,-2],[1,-3],[-2,-9],[-3,-3],[-9,0],[0,-4],[3,-1],[2,-1],[3,-2],[2,-4],[-3,-4],[-1,-4],[0,-5],[-1,-5],[-2,-3],[-3,-1],[-3,-4],[0,-6],[1,-5],[7,0],[1,-6],[-1,-3],[-2,-3],[-2,-3],[-5,-10],[-8,-11],[-8,-15],[-4,-4],[-5,0],[-7,7],[0,-11],[-3,-8],[-7,-12],[-5,-4],[-7,-1],[-6,-3],[-2,-8],[-4,-23],[-10,-6],[-6,3],[-18,8],[-27,2],[-3,-10],[-8,-3],[-20,3],[-3,-2],[-3,-4],[-4,-10],[-3,-2],[-3,4],[-2,0],[-12,-7],[-4,1],[-9,8],[-13,-1],[-6,7],[-6,3],[-29,4],[-44,-20],[-13,0],[-6,-3],[-3,-8],[-1,-9],[6,-51],[2,-9],[3,-8],[9,-5],[2,-11],[13,-41],[3,-12],[1,-13],[7,-11],[11,-14],[7,-6],[5,-10],[4,-12],[0,-10],[6,-13],[-4,-23],[-29,-83],[-11,-17],[-11,2],[4,8],[-4,4],[-5,-6],[-6,0],[-5,6],[1,13],[-5,-5],[-3,-1],[-2,1],[-1,7],[0,10],[0,11],[-3,6],[-2,-5],[-3,-5],[-2,-2],[-9,12],[-11,-2],[-6,-4],[-3,-4],[-2,-9],[-4,-4],[-6,1],[-5,6],[-7,-4],[-26,1],[-8,5],[-1,0],[-3,-8],[-3,-2],[-2,2],[-9,10],[-11,5],[-4,6],[0,13],[-5,-4],[-5,3],[-5,4],[-4,2],[-5,-3],[-4,-4],[-4,-2],[-7,0],[-1,2],[-1,2],[-2,3],[-3,2],[-2,-1],[-5,-3],[-2,-1],[-11,2],[-6,3],[-4,4],[1,1],[3,3],[1,4],[0,4],[-2,3],[-2,0],[-2,-2],[-2,-1],[-4,1],[-6,8],[-5,3],[-1,-3],[-4,-12],[-2,-2],[-2,1],[-1,3],[-1,2],[-3,2],[-4,-4],[-2,-1],[-1,5],[-3,2],[-2,1],[-2,1],[4,11],[5,8],[6,5],[6,4],[-4,6],[-14,9],[-5,1],[1,6],[1,2],[-9,6],[-4,4],[-2,6],[-1,9],[1,6],[2,2],[5,0],[-2,7],[-6,15],[-1,8],[-3,0],[-9,12],[-5,7],[-7,2],[-3,-1],[-2,4],[0,13],[-3,4],[-5,-3],[-6,-7],[-3,-6],[-4,-16],[-15,-10],[-4,-15],[-2,-5],[-5,5],[-8,14],[-4,5],[-4,2],[-4,0],[-5,-3],[2,-7],[3,-4],[5,-4],[3,-5],[-4,-4],[-9,-14],[-3,-2],[-10,0],[-4,-1],[-5,-14],[-9,-17],[0,-7],[2,-8],[2,-8],[-2,-8],[-5,-16],[-4,-27],[-10,-25],[-2,-7],[2,-15],[4,-19],[0,-15],[-9,-5],[0,5],[1,2],[1,2],[1,2],[0,2],[-8,1],[-8,-11],[-14,-27],[-3,-7],[-7,-25],[-3,-7],[-7,-11],[-3,-6],[-7,-26],[-3,-7],[-3,-6],[-32,-30],[-6,-10],[4,-11],[-4,-8],[-4,-6],[-3,-6],[1,-8],[-3,-2],[-3,-2],[-2,-3],[-2,-5],[1,-5],[-2,-7],[-5,-14],[-5,-6],[-5,-1],[-5,-3],[-3,-9],[4,1],[4,-1],[1,-2],[-2,-6],[-3,-3],[-9,-2],[-4,-5],[-4,-3],[-3,4],[-3,6],[-3,3],[-5,-1],[-3,-3],[-12,-13],[-2,-1],[-12,9],[-3,1],[-2,0],[-2,-3],[-1,-4],[-1,-4],[-3,-1],[-8,-3],[-1,-1],[-6,-7],[-11,-22],[8,-15],[3,-9],[-4,-4],[-16,-1],[-1,2],[-2,5],[-4,5],[-4,2],[-3,-4],[-1,-11],[-1,-13],[-2,-7],[-4,-2],[-11,-1],[-4,-1],[-2,-4],[-3,-6],[-1,-5],[0,-8],[-1,-4],[-2,-3],[-5,2],[-2,-3],[-1,-8],[0,-1],[0,-7],[-1,-5],[-6,1],[-2,1],[-3,6],[-3,1],[-2,0],[-5,-3],[-4,2],[-4,3],[-4,-1],[-5,-3],[-1,-6],[-2,-6],[-2,-5],[-4,-2],[-8,-5],[-9,-5],[-8,-6],[-6,-6],[-5,-6],[-7,-5],[-4,-4],[-7,-4],[-7,-4],[-2,-8],[0,-8],[3,-7],[3,-7],[2,-8],[-1,-6],[-4,-2],[-6,-1],[-5,1],[-8,-2],[-7,1],[-2,1],[-2,2],[-1,3],[-3,6],[-3,5],[-1,-4],[-2,-7],[-9,-20],[-14,-22],[-6,-7],[-6,-2],[-5,-5],[-2,-13],[-3,-13],[-2,-10],[-6,-4],[-14,-5],[-4,-5],[-5,-9],[-11,-11],[-4,-7],[-1,-3],[-1,-7],[0,-2],[-2,-2],[-3,-1],[-1,-1],[-39,-61],[-5,-8]],[[84546,74216],[-3,-5],[0,-8],[1,-17],[1,-15],[-1,-6],[-3,-7],[-12,-23],[-1,-4],[-1,-8],[-2,-4],[-2,-3],[-2,0],[-1,0],[-2,-1],[-18,-29],[-13,-10],[-5,-11],[-6,-6],[-8,12],[-6,-10],[-3,-3],[-4,-4],[-12,-5],[-3,-3],[-3,3],[-2,3],[-4,8],[-3,4],[-4,-2],[-3,-5],[-2,-3],[-7,-1],[-7,1],[-7,3],[-6,5],[-2,0],[-9,-11],[-15,7],[-14,15],[-8,13],[4,25],[-4,-3],[-3,-7],[-1,-8],[-1,-11],[-6,-32],[-1,-15],[-2,-4],[-8,-8],[0,-2],[0,1],[-2,4],[-1,2],[-1,3],[-2,4],[-2,3],[-6,1],[-5,-5],[-3,-6],[-10,-25],[-5,-7],[-5,5],[-1,7],[1,30],[1,3],[1,3],[1,4],[-1,6],[-2,1],[-2,-1],[-2,-3],[2,-5],[-5,-12],[-6,-3],[-7,0],[-7,-5],[-3,5],[-5,11],[-3,4],[-3,-8],[-2,2],[-1,6],[0,4],[-2,-2],[-2,-3],[-1,-4],[2,-5],[3,-6],[3,-9],[1,-8],[-5,-4],[-7,4],[-4,0],[-1,-6],[0,-6],[2,-2],[2,0],[6,-3],[2,0],[2,-1],[2,-4],[2,-6],[-1,-4],[-12,-12],[-14,-9],[-13,0],[-5,15],[-2,-3],[-12,-6],[-5,-1],[-3,1],[-4,2],[-2,1],[-1,-2],[-1,-4],[-2,-3],[-4,1],[0,-5],[5,-5],[-1,-8],[-8,-15],[-5,5],[-21,-8],[-6,7],[-17,-27],[-2,-7],[-3,-1],[-17,-14],[-3,-7],[-3,-3],[-3,-2],[-1,3],[-3,5],[-4,2],[-1,-3],[-2,-11],[-14,-24],[-3,5],[-2,4],[-2,2],[-2,-3],[0,-2],[1,-3],[1,-3],[0,-4],[-2,-3],[-1,0],[-1,0],[-2,-1],[-12,-16],[-7,-6],[-7,-3],[-9,1],[-5,-2],[-3,-9],[-8,-4],[-3,-4],[-3,-6],[-4,-6],[-5,-4],[-3,-2],[-2,-5],[-2,-8],[-3,-7],[-4,4],[0,-3],[-1,-1],[-1,-4],[-1,-15],[-12,-20],[-23,-30],[0,-7],[-1,-8],[-2,-7],[0,-3],[9,0],[4,-2],[3,-5],[-5,0],[-5,-3],[-15,-22],[-2,-2],[-2,0],[-3,-1],[-2,-5],[3,-14],[-2,-5],[-15,2],[-2,-2],[-3,-6],[-3,-5],[-5,-2],[-4,2],[-3,3],[-4,2],[-4,-4],[4,-2],[3,-5],[2,-6],[1,-7],[-12,11],[-7,4],[-8,2],[3,-13],[12,-11],[4,-9],[0,-6],[-2,-5],[-5,-7],[-3,-4],[-3,2],[-10,15],[-7,20],[-4,9],[-8,7],[-5,-2],[-2,-6],[5,-7],[0,-4],[-7,3],[-9,1],[-2,0],[-10,-8],[4,0],[1,-3],[1,-4],[0,-5],[-1,-7],[-2,-2],[-5,-3],[-7,-1],[-3,-2],[-2,-5],[2,-3],[7,-6],[11,0],[5,-2],[5,-7],[3,-11],[0,-11],[-2,-6],[-6,5],[-6,-8],[-20,3],[-8,-3],[-11,-18],[-2,-1],[-2,-7],[-4,-3],[-29,4],[-10,-1],[-16,-15],[-7,4],[-7,2],[-5,-14],[2,1],[5,-1],[-13,-28],[-5,-4],[-7,4],[-3,9],[-3,9],[-5,6],[3,6],[3,2],[1,4],[-1,12],[-2,6],[-3,5],[-2,7],[1,11],[7,10],[4,7],[-1,7],[-17,0],[-1,4],[3,9],[6,14],[3,2],[14,4],[3,-1],[3,-6],[3,-1],[2,0],[4,3],[7,2],[9,11],[8,-1],[4,1],[2,6],[-1,4],[-2,10],[-1,6],[2,9],[5,7],[6,3],[6,-1],[2,-2],[2,-4],[3,-8],[2,-2],[4,-1],[7,1],[5,3],[17,17],[24,12],[12,11],[4,18],[-3,11],[-8,13],[-2,10],[-4,-1],[-6,4],[-4,7],[4,5],[0,3],[-1,6],[-1,3],[7,2],[2,7],[-8,10],[-4,6],[6,7],[7,-1],[2,-1],[1,-4],[3,1],[6,5],[11,13],[5,9],[0,4],[-2,7],[7,14],[3,6],[4,4],[3,0],[13,-4],[8,3],[13,15],[8,3],[-3,10],[-3,-1],[-2,-6],[-4,-3],[-5,-2],[-9,-6],[-5,-1],[-24,8],[-10,-2],[3,-14],[-47,-6],[-7,2],[-9,14],[-9,51],[-7,20],[-4,5],[-6,2],[-12,1],[-4,-1],[-6,-8],[-4,-3],[-1,1],[-5,5],[-3,2],[-10,0],[-2,2],[-2,6],[2,5],[2,3],[3,1],[3,12],[9,13],[4,7],[6,3],[15,-1],[19,8],[6,10],[-2,9],[10,4],[7,-21],[2,3],[1,2],[0,3],[1,4],[0,2],[-3,5],[-1,2],[1,2],[3,4],[0,2],[1,1],[1,3],[1,3],[-1,5],[-2,3],[-2,-1],[-2,-2],[-2,0],[-3,4],[-4,16],[-8,10],[0,2],[-1,2],[-1,2],[5,5],[3,4],[1,9],[-3,5],[-2,11],[0,3],[11,8],[7,22],[9,-1],[13,7],[6,15],[14,15],[6,3],[7,-2],[6,-3],[5,1],[7,12],[2,5],[0,5],[1,5],[8,3],[5,8],[5,4],[2,4],[0,6],[-2,5],[-3,2],[-7,0],[-3,2],[15,11],[13,21],[1,14],[18,14],[3,19],[-4,18],[6,1],[7,5],[5,7],[10,11],[2,13],[2,8],[0,7],[0,5],[0,5],[0,11],[6,9],[14,16],[9,17],[-2,27],[10,0],[3,2],[0,5],[-1,5],[1,4],[4,4],[4,3],[2,4],[0,10],[4,8],[-2,12],[-5,12],[-14,21],[-14,5],[-7,10],[-4,12],[9,17],[0,20],[-3,9],[-6,-10],[-4,-3],[-4,12],[-11,21],[-5,6],[-43,37],[-7,4],[-5,10],[-2,16],[-1,32],[-1,4],[-3,8],[0,9],[3,4],[3,2],[3,5],[4,13],[-2,4],[-11,-13],[-5,-8],[-9,-15],[1,-16],[-3,-11],[-3,-10],[-5,-14],[-13,0],[-27,-2],[-6,-2],[-2,2],[-11,13],[-5,7],[-8,3],[-9,1],[-2,3],[-1,5],[-1,5],[-1,3],[-3,3],[-7,4],[-3,3],[-6,6],[-7,-7],[-6,-11],[-5,-6],[-3,0],[-4,2],[-2,4],[-2,6],[-4,-8],[-5,12],[-7,2],[-7,-5],[-6,-9],[-3,-3],[-3,-5],[-3,-5],[-3,-5],[-1,-2],[-7,-4],[-1,-2],[1,-3],[0,-4],[0,-3],[0,-10],[-4,-6],[0,-9],[-5,-4],[-2,11],[-3,7],[-7,4],[-4,-1],[-3,-3],[-3,-5],[-2,-7],[1,-8],[1,-6],[-3,-5],[-4,-5],[-2,-6],[0,-9],[5,-2],[6,1],[5,-2],[4,-3],[3,-7],[-7,-2],[-9,-4],[-6,-10],[-5,-2],[-8,-2],[-3,-3],[-4,-1],[-6,3],[-6,-6],[-2,-10],[-1,-10],[-2,-13],[-3,-11],[-2,-4],[-6,-4],[-19,-29],[-6,-9],[-2,-11],[-2,-7],[-1,-4],[-8,-5],[-3,-1],[-5,-5],[-2,-9],[1,-11],[-1,-6],[-3,-5],[-6,-1],[-5,-5],[-2,-12],[3,-4],[5,2],[6,3],[1,-10],[-8,-8],[-8,-6],[-9,-10],[0,-11],[0,-10],[1,-11],[0,-14],[-4,-11],[-5,-10],[-6,-8],[-4,-4],[-12,0],[-10,-1],[-7,-3],[-7,-4],[-5,-10],[-8,-10],[-4,-1],[-6,-6],[-9,-5],[-1,0],[-2,-2],[-7,-7],[-11,-7],[-46,-25],[-10,-12],[-1,-15],[0,-8],[-10,-2],[-7,-5],[-11,-8],[-5,-5],[-5,-8],[-7,1],[-12,-10],[-13,-2],[-11,-12],[-5,-3],[-8,-1],[-5,-4],[-6,-4],[-2,-12],[-2,-8],[2,-10],[1,-15],[-10,-1],[-8,1],[-10,-12],[-5,-10],[-7,-11],[-5,-7],[-3,-7],[-2,-3],[-3,-9],[-7,-44],[-3,-14],[-5,-13],[-1,0],[-4,1],[-6,-2],[-6,-6],[-4,-9],[0,-11],[6,9],[3,3],[-1,-5],[-1,-5],[-1,-5],[-1,-6],[4,6],[6,19],[2,2],[3,-3],[-6,-24],[-1,-25],[4,-2],[7,-20],[2,-14],[-2,-12],[-5,-17],[-6,-10],[-9,-5],[-6,3],[-5,-5],[-15,-36],[-10,-20],[-9,-17],[-6,-11],[-7,-14],[-6,-6],[-15,-24],[-4,-5],[-4,-3],[-5,0],[0,4],[11,12],[3,4],[1,6],[1,6],[2,5],[3,4],[-6,-1],[-12,-9],[-6,-3],[1,8],[-4,9],[1,8],[-4,-4],[-6,-19],[-6,-7],[-6,-7],[-6,-2],[-13,-1],[-11,4],[-11,4],[-8,0],[-8,-7],[-8,-1],[-10,1],[-2,-5],[3,-9],[-5,-5],[-7,-9],[-5,-2],[-16,-21],[-8,-7],[-6,-5],[-4,-7],[-5,0],[-8,6],[-9,2],[-9,5],[-8,14],[-5,20],[-5,15],[-8,22],[-12,18],[-14,10],[-5,0],[-15,-2],[-12,-2],[-13,-7],[-20,-29],[-15,-22],[-6,-5],[-6,3],[1,-11],[2,-3],[3,-6],[4,-6],[2,-13],[2,-11],[2,-17],[1,-10],[-9,1],[-4,1],[-8,6],[1,-5],[0,-1],[1,-2],[-35,-101],[-1,-11],[-1,-11],[-1,-35],[-4,-14],[0,-11],[1,-9],[-2,-8],[-3,-13],[6,-5],[4,-17],[25,-82],[13,-40],[24,-50],[10,-14],[17,-14],[12,-8],[6,-13],[4,-10],[3,2],[5,-1],[9,-9],[4,-5],[1,-7],[-1,-4],[3,-6],[5,-2],[1,-1],[3,2],[3,4],[3,2],[8,-6],[19,2],[27,-10],[31,-10],[7,-2],[6,-4],[6,-5],[5,-3],[6,-9],[3,-3],[2,1],[2,3],[1,1],[3,2],[3,6],[4,12],[5,9],[11,12],[29,6],[13,-2],[5,0],[4,0],[16,-17],[15,-16],[-7,-23],[5,-5],[4,-9],[4,-22],[7,-20],[14,-9],[12,-21],[7,-35],[11,-17],[14,-13],[10,-20],[5,-31],[-1,-27],[-11,2],[-8,16],[-19,21],[-14,2],[-9,-11],[-3,-11],[0,-8],[-4,-21],[-5,-12],[-5,-14],[-2,-10],[0,-12],[-3,-25],[-4,-90],[2,-25],[3,-24],[3,-9],[5,-4],[7,-3],[4,-7],[4,-9],[4,-9],[16,-15],[8,-13],[39,-25],[43,-10],[10,8],[13,3],[4,-1],[7,3],[27,-3],[16,2],[15,7],[2,9],[4,8],[23,31],[6,9],[-3,21],[-6,22],[-5,13],[3,10],[7,6],[13,8],[16,17],[3,5],[3,1],[14,10],[36,43],[30,51],[7,20],[-4,20],[-4,3],[-4,1],[-9,0],[-3,1],[-4,3],[-2,3],[2,1],[25,0],[16,5],[5,6],[1,1],[6,3],[9,16],[5,5],[26,9],[2,1],[8,11],[12,4],[11,8],[8,11],[10,7],[13,-2],[10,-7],[4,-1],[3,1],[5,6],[3,1],[6,-2],[8,-4],[4,-8],[-4,-10],[4,-9],[4,-8],[5,-5],[6,-3],[3,-2],[1,-5],[2,-6],[1,-5],[3,-4],[3,0],[3,2],[4,0],[13,-3],[7,-4],[3,-7],[-2,-8],[-3,-7],[-1,-7],[6,-9],[-4,-6],[0,-10],[2,-9],[3,-7],[5,-4],[5,-1],[33,4],[10,5],[8,12],[-4,12],[-1,4],[5,-3],[6,-6],[5,-7],[5,-8],[-9,-1],[-5,-7],[0,-10],[6,-10],[6,-8],[6,-10],[5,-12],[2,-13],[2,-5],[4,-3],[8,-2],[4,-2],[4,-5],[6,-12],[6,-2],[16,7],[7,2],[-6,11],[-6,2],[-13,-5],[2,6],[3,5],[3,3],[2,2],[4,1],[2,-2],[2,-2],[2,-1],[21,-7],[57,2],[5,-3],[0,-4],[-2,-3],[-1,-4],[0,-5],[1,-4],[2,-1],[9,1],[2,5],[-5,22],[1,5],[4,4],[6,18],[2,6],[5,4],[5,2],[3,4],[-1,11],[1,0],[3,-6],[3,-2],[4,2],[4,6],[5,-7],[3,-11],[0,-11],[-4,-8],[-2,-10],[3,-16],[6,-14],[6,-9],[4,9],[3,9],[4,6],[6,1],[5,-5],[4,-16],[5,-4],[45,0],[1,1],[2,2],[1,2],[2,0],[1,-2],[1,-5],[1,-1],[23,-7],[5,2],[3,6],[3,3],[15,-3],[4,0],[2,-3],[0,-12],[-2,-9],[-7,6],[-11,-8],[-8,-11],[-3,-1],[-1,-3],[5,-18],[1,-12],[-10,15],[-2,0],[0,-5],[3,-22],[1,-5],[7,-13],[1,-4],[1,-10],[2,-6],[2,-4],[5,-2],[0,-4],[-12,-3],[-3,-2],[-3,-7],[1,-4],[2,-5],[0,-8],[-9,7],[-9,0],[-8,-10],[-3,-17],[-2,0],[0,21],[0,4],[-3,1],[-2,-4],[-1,-7],[0,-11],[-2,-11],[0,-5],[1,-3],[2,-2],[2,-3],[1,-6],[-2,-6],[-11,-12],[-2,-9],[2,-9],[4,-1],[3,4],[0,10],[7,2],[15,-6],[7,4],[-4,-49],[2,-11],[-2,-7],[-2,-7],[-3,-3],[-2,4],[0,7],[2,6],[1,5],[-3,2],[-2,-3],[-4,-4],[-6,-3],[-5,-2],[-2,1],[-3,2],[-2,1],[-2,-1],[-1,-5],[0,-5],[1,-3],[2,-2],[2,-1],[2,-5],[2,-5],[0,-5],[-1,-4],[-3,-2],[-5,-2],[-2,0],[-1,1],[-1,2],[-1,1],[-1,-1],[-1,-3],[0,-3],[-1,-1],[-1,-3],[-3,-7],[-1,-3],[-10,-3],[-33,11],[-4,5],[-2,9],[1,11],[4,8],[19,0],[-4,5],[-11,7],[-10,14],[-4,3],[5,23],[0,12],[-4,5],[-4,-5],[-1,-12],[0,-14],[-1,-9],[-4,-1],[-5,4],[-5,0],[-2,-13],[-1,-8],[-5,-6],[-5,-3],[-4,-2],[1,11],[0,15],[0,13],[4,6],[1,1],[-1,3],[-3,2],[-3,2],[-7,-1],[-12,4],[-9,1],[-4,-5],[3,-10],[7,-18],[-10,-11],[-35,-17],[-3,-3],[-6,-8],[-1,-3],[0,-6],[-2,-6],[-2,-5],[-2,-2],[-6,-1],[-10,-8],[-6,-2],[0,3],[7,7],[2,1],[0,4],[-7,-1],[-6,-5],[-3,-10],[-1,-15],[3,-17],[0,-8],[-2,-4],[-4,1],[-2,4],[-2,6],[-1,5],[-3,-3],[-3,1],[-3,2],[-3,-2],[-4,-5],[-3,-1],[-6,4],[-2,8],[2,8],[5,4],[4,1],[3,1],[2,3],[3,5],[2,5],[7,4],[2,3],[1,8],[-5,1],[-7,-3],[-5,-4],[-2,-4],[-2,-5],[-3,-5],[-3,-2],[-3,2],[-1,3],[-1,4],[-2,3],[-7,0],[-2,-7],[2,-9],[2,-4],[1,-3],[-1,-7],[-4,-12],[-2,-2],[-4,-1],[-6,1],[-5,-4],[-4,-9],[1,-9],[6,-3],[-5,-3],[-4,0],[-10,3],[-5,0],[-44,-26],[-8,-10],[-11,-21],[-2,-3],[-5,0],[-6,10],[-3,-2],[0,-4],[1,-12],[-1,-4],[-2,-4],[-3,1],[-2,1],[-2,2],[-15,1],[-5,3],[3,9],[-1,5],[-3,2],[-5,0],[-4,3],[-7,10],[-4,3],[-8,-4],[-14,-16],[-6,0],[-1,-5],[0,-3],[1,-2],[2,-2],[-3,-12],[-1,-12],[2,-9],[8,0],[4,6],[5,19],[4,8],[7,4],[4,-4],[8,-21],[3,-3],[2,0],[2,-2],[1,-9],[1,-3],[3,1],[3,3],[2,5],[2,0],[0,-10],[-3,-7],[-3,-6],[-1,-7],[0,-6],[3,-17],[-4,-1],[-4,0],[-4,-3],[-3,-8],[2,-6],[0,-5],[-1,-5],[-2,-8],[-2,-5],[-3,-5],[-2,-2],[-4,5],[-2,22],[-5,6],[2,13],[-7,5],[-10,0],[-6,-3],[-1,-2],[-2,-7],[-1,-3],[-1,-1],[-4,-3],[-1,-2],[-8,-24],[1,-10],[6,-13],[3,-11],[-4,-5],[-4,2],[-7,6],[-2,1],[-4,-4],[-1,-5],[2,-6],[3,-6],[-2,-8],[2,-6],[3,-7],[1,-9],[3,-37],[2,-8],[3,-11],[-2,-7],[-19,-17],[-1,1],[-1,2],[-1,1],[-7,-8],[-8,4],[-3,-1],[-2,-9],[-3,-4],[-6,-2],[-11,0],[-3,-2],[-7,-10],[-4,-4],[-15,-8],[-4,-4],[-4,5],[-4,4],[-5,3],[-4,0],[0,4],[4,6],[1,7],[1,8],[2,9],[4,10],[7,33],[-4,13],[-2,5],[-5,2],[-3,24],[-1,5],[-6,-6],[-4,-18],[1,-18],[7,-7],[-4,-9],[-6,2],[-6,7],[-4,0],[-1,1],[0,2],[-1,1],[-1,0],[0,14],[-9,-2],[-11,-6],[-8,1],[-1,4],[-1,3],[0,2],[-4,0],[-1,-1],[-1,-5],[-1,-4],[2,-2],[4,-3],[1,-7],[-1,-8],[-5,-16],[0,-11],[0,-10],[3,-10],[5,-5],[5,-2],[5,-4],[4,-9],[1,-9],[0,-22],[1,-9],[3,-6],[3,1],[9,8],[0,-16],[4,1],[9,12],[1,2],[1,5],[1,3],[3,-5],[2,-5],[0,-4],[0,-4],[-1,-5],[-4,-6],[-12,-5],[-4,-7],[-12,-23],[-3,-8],[-1,11],[2,7],[3,7],[0,8],[-6,-4],[-1,-3],[-5,-12],[-1,-3],[-2,-2],[-8,0],[-3,-2],[-12,-23],[-4,-12],[-5,-49],[-5,-19],[-9,3],[-5,13],[-4,4],[-3,-3],[-5,-7],[-2,-5],[8,-15],[2,-3],[-2,-4],[-6,-11],[-2,-5],[0,-7],[1,-4],[1,-5],[0,-6],[-1,-6],[-2,-2],[-3,-2],[-3,-3],[-4,-4],[-5,6],[-3,11],[2,14],[-8,-6],[-11,-32],[-8,-11],[2,14],[0,6],[-2,5],[-3,2],[-4,-1],[-3,-3],[-1,-5],[-2,-4],[-3,-3],[-4,-2],[-4,-1],[-2,-3],[-2,-7],[-2,-14],[-8,-36],[-2,-11],[-1,-4],[-7,-16],[-1,-6],[-1,-15],[-1,-6],[-2,-6],[-8,-16],[-3,-8],[-1,-4],[-11,-6],[-9,0],[-2,0],[-2,-5],[0,-8],[0,-14],[-1,-3],[-4,-11],[-5,-28],[-4,-52],[-4,-12],[-6,-5],[-6,-2],[-9,-5],[-9,-5],[-6,-2],[-2,-1],[-2,-3],[-2,-6],[-1,-14],[-1,-5],[-2,-10],[0,-15],[1,-16],[2,-9],[-4,-45],[1,-27],[3,-15],[-4,-11],[2,-4],[-1,-6],[-1,-10],[1,-9],[3,-3],[2,4],[3,18],[2,6],[4,1],[14,-5],[5,1],[4,3],[3,5],[3,7],[3,-3],[5,-9],[3,-4],[4,-1],[8,-1],[4,-2],[5,-8],[3,-10],[0,-11],[-4,-8],[20,-40],[16,-20],[3,-8],[3,-4],[9,-7],[0,-3],[0,-3],[0,-2],[2,-2],[3,-1],[7,1],[6,-1],[6,-5],[6,-6],[13,-19],[8,-6],[10,-3],[12,-1],[10,-4],[12,-10],[11,-13],[15,-24],[11,-11],[34,-21],[5,-7],[2,-13],[1,-14],[2,-13],[7,-24],[2,-18],[3,-13],[2,-9],[0,-15],[6,-21],[2,-9],[1,-4],[2,-5],[2,-6],[3,-39],[7,-31],[1,-12],[0,-6],[-4,-5],[1,-5],[2,-6],[3,-3],[3,-5],[4,-13],[2,-14],[-1,-9],[4,-6],[6,-6],[4,-7],[2,-11],[0,-22],[2,-24],[-3,3],[-2,0],[-2,-2],[-1,-5],[12,-24],[3,-9],[7,-28],[3,-8],[15,-33],[2,-7],[5,-23],[1,-9],[1,-44],[2,-8],[3,-10],[5,-9],[3,-3],[4,-1],[4,-4],[4,-6],[-1,-8],[-1,-2],[-2,-1],[-1,-1],[-1,-4],[1,-3],[3,-5],[0,-3],[0,-9],[-1,-2],[-3,0],[16,-24],[6,-16],[-4,-17],[5,-2],[2,-8],[0,-22],[2,-14],[2,-3],[4,2],[5,2],[7,-4],[1,-7],[-2,-21],[0,-9],[6,-71],[-1,-18],[-7,-24],[-8,-10],[3,-21],[0,-18],[-3,4],[-2,4],[-1,5],[2,4],[-2,4],[-3,-9],[0,-7],[9,-16],[12,-7],[2,-17],[9,-15],[8,-6],[13,-16],[6,-6],[7,-8],[5,-5],[4,-9],[0,-14],[2,0],[4,6],[10,-7],[5,-5],[4,-5],[7,-4],[16,-14],[23,-20],[9,-17],[4,-20],[4,-49],[0,-8],[1,-3],[-1,-1],[-4,-3],[-7,-1],[-3,-2],[-1,-4],[1,-3],[9,-34],[7,-3],[2,-8],[0,-10],[3,-12],[2,-1],[2,2],[2,2],[1,2],[2,-2],[2,-5],[2,-1],[2,1],[10,-1],[6,-4],[11,-9],[17,-14],[8,-12],[10,-10],[2,-6],[11,-12],[9,-15],[7,-11],[0,-14],[7,-14],[7,-24],[0,-23],[8,-23],[5,-19],[3,-16],[-5,-12],[-12,-10],[-15,1],[-19,12],[-12,5],[-8,2],[-6,5],[-13,10],[-9,10],[-7,5],[-6,3],[-3,2],[-3,6],[-2,5],[-1,3],[-4,3],[-18,17],[-28,25],[-8,5],[-16,-15],[-12,-17],[-20,-24],[-8,3],[-6,7],[-7,4],[-9,0],[-8,-3],[-7,6],[-3,12],[0,13],[0,5],[1,5],[-1,5],[-4,2],[-2,2],[-2,11],[-2,5],[-16,38],[-10,19],[-19,8],[-30,24],[-19,0],[-12,3],[-9,0],[-18,-17],[-18,-16],[-17,-32],[-9,-14],[-12,-7],[-14,0],[-12,4],[-11,7],[-11,9],[-9,12],[-8,15],[-19,55],[-3,9],[-1,9],[1,11],[3,23],[0,12],[-6,-11],[-4,9],[-3,31],[-4,9],[-5,11],[-7,8],[-6,4],[-4,1],[-7,3],[-4,0],[-14,-4],[-4,5],[-5,10],[-5,8],[-8,-2],[10,-11],[3,-6],[5,-12],[2,-8],[-2,-4],[0,-5],[-6,-25],[-2,-9],[-4,-6],[-4,-3],[-4,-5],[6,-4],[5,3],[4,8],[3,7],[6,9],[3,-1],[3,-7],[5,-7],[6,-3],[7,0],[3,-4],[-7,-21],[0,-11],[2,-10],[4,-8],[19,-16],[4,-6],[11,-19],[8,-16],[7,-16],[5,-13],[7,-11],[9,-4],[26,-18],[13,-5],[14,3],[31,28],[22,8],[4,3],[6,4],[0,12],[0,11],[4,2],[13,-3],[24,-17],[19,5],[5,-1],[17,-11],[8,-37],[8,-25],[5,-27],[-5,-11],[-16,9],[-3,7],[-3,8],[-3,6],[1,-17],[3,-11],[4,-7],[24,-14],[17,-9],[15,-3],[9,-4],[9,-5],[15,-11],[21,-23],[19,-34],[9,-16],[21,-57],[6,-8],[6,-8],[15,-15],[9,-15],[27,-36],[24,-18],[10,-13],[16,-19],[14,-40],[28,-68],[20,-69],[8,-40],[-5,-24],[-15,-10],[-27,-3],[-21,-4],[-28,-5],[-25,-12],[-14,-11],[-10,-9],[-13,-9],[-16,-32],[-5,-7],[-19,-8],[-12,-8],[-5,-6],[-7,-12],[-6,-5],[-2,-5],[-2,-6],[-2,-6],[-1,-5],[-3,-4],[-5,-2],[-16,-4],[-7,-7],[-6,-7],[-6,-9],[-8,-22],[-5,-20],[-1,-12],[1,-8],[2,-5],[0,-5],[-3,-8],[-1,-2],[-6,-1],[-2,-1],[3,-8],[1,-2],[2,-2],[0,-4],[-4,-1],[-4,-3],[-10,-22],[-5,-15],[-6,-5],[-7,-2],[-5,7],[-4,13],[-3,19],[-5,10],[-8,10],[-8,5],[-14,3],[-38,-2],[-14,-8],[-4,-13],[-2,-8],[-3,-19],[-2,-19],[-3,-10],[-4,-3],[-6,4],[-8,9],[-8,5],[-8,0],[-5,-6],[-12,-33],[-14,-20],[9,1],[6,10],[8,11],[6,20],[7,5],[6,0],[5,-9],[5,-8],[5,-5],[5,0],[4,5],[3,9],[3,9],[4,15],[9,38],[7,3],[13,2],[27,-3],[9,-8],[1,-14],[8,-38],[4,-12],[7,-5],[2,-6],[-11,-21],[-8,-18],[-6,-13],[-3,-6],[0,-7],[6,-12],[8,-11],[5,-2],[6,-1],[9,5],[3,-1],[2,-2],[3,-6],[3,-4],[-3,14],[-5,4],[-14,-2],[-7,3],[-7,7],[-5,10],[5,9],[10,25],[14,25],[17,-8],[5,-16],[7,-7],[11,-2],[8,9],[9,4],[1,2],[10,9],[32,43],[5,11],[6,14],[10,7],[19,6],[16,-6],[18,-7],[15,-19],[21,-44],[13,-35],[9,-29],[10,-30],[6,-14],[4,-11],[6,-11],[8,-9],[7,-4],[-3,-10],[3,1],[5,6],[4,0],[9,-6],[5,-7],[9,-6],[7,-5],[7,-5],[4,-3],[6,-19],[4,0],[4,1],[5,1],[21,-2],[3,2],[5,6],[5,4],[7,-2],[2,-11],[-6,-8],[-13,-12],[-11,-9],[-13,-8],[-4,-7],[-9,-11],[-3,-11],[-6,-12],[-5,5],[-3,-5],[-2,-10],[-1,-17],[-8,-12],[-16,-21],[-16,-37],[-4,-10],[-5,-6],[-5,-3],[-6,0],[-3,-2],[-3,0],[-5,-5],[-4,-1],[-5,5],[-12,-25],[-3,2],[0,9],[-1,10],[-2,2],[-3,0],[-4,-3],[-3,-3],[-2,-5],[-2,-3],[-5,-1],[0,-3],[2,-3],[2,-7],[0,-7],[-4,-5],[-4,-8],[4,-17],[0,-14],[6,3],[3,17],[2,15],[7,5],[-2,-4],[-2,-12],[6,-2],[-1,-9],[-4,-9],[-4,-4],[-1,-2],[0,-3],[0,-3],[2,-7],[3,2],[4,3],[3,5],[3,6],[2,4],[3,9],[1,6],[2,8],[3,7],[3,2],[5,3],[12,7],[9,9],[0,6],[2,2],[5,6],[3,3],[4,0],[0,-2],[0,-4],[0,-4],[1,-2],[2,0],[2,3],[5,4],[1,-6],[-2,-13],[1,-7],[1,-6],[3,-4],[4,4],[6,8],[2,15],[3,8],[5,-3],[-1,7],[-2,4],[-3,2],[-4,4],[-4,-4],[-4,-1],[-5,1],[-2,1],[-4,-2],[1,11],[7,8],[6,15],[7,3],[4,5],[5,1],[4,6],[4,-2],[5,3],[5,7],[3,-3],[4,-14],[3,-3],[4,-2],[1,-6],[0,-14],[-2,-5],[-4,-3],[-2,-3],[2,-7],[-8,-5],[-3,-3],[1,-7],[2,-3],[4,-2],[3,-4],[-2,-7],[1,-4],[8,-18],[0,-6],[-2,-4],[-2,-6],[0,-8],[-3,7],[-3,4],[-1,-1],[-2,-4],[1,-6],[-2,-6],[-1,-5],[1,-5],[-1,-11],[0,-8],[3,-7],[0,1],[1,-5],[0,-4],[-2,-3],[-4,0],[1,-3],[1,-5],[-5,-4],[2,-9],[4,-8],[5,-4],[3,2],[4,9],[3,1],[0,-2],[3,-10],[2,-4],[-7,-1],[-4,-3],[-1,-8],[2,-12],[-4,4],[-1,-8],[0,-3],[1,-5],[-6,0],[-7,-5],[-15,-16],[-8,1],[-8,3],[1,20],[1,9],[1,16],[0,13],[2,16],[-1,8],[3,4],[3,2],[3,2],[3,0],[-3,9],[-4,-1],[-3,-5],[-2,-3],[-3,5],[0,9],[3,18],[-3,1],[-3,-1],[-3,-3],[-2,-5],[3,-13],[2,-25],[-1,-25],[-4,-14],[-4,-17],[-2,-3],[-4,-8],[-5,-5],[-9,1],[-5,4],[-3,12],[-1,9],[0,29],[2,8],[2,12],[-4,3],[-4,-3],[1,-10],[-2,-12],[3,-31],[-1,-14],[-4,11],[-2,13],[-5,38],[-2,4],[-2,4],[-3,-1],[-1,-5],[2,-6],[2,-5],[-3,-3],[-4,0],[-7,3],[0,-4],[3,-7],[-1,-12],[-4,-11],[-3,-6],[0,-4],[1,-8],[-2,-6],[-3,-2],[-2,6],[-1,7],[-3,-4],[-3,-9],[-1,-9],[-7,7],[-3,-1],[-3,-6],[9,-8],[-1,-1],[0,-1],[-1,-2],[6,0],[0,-4],[-4,-1],[-4,-3],[-3,-4],[-4,-8],[26,-1],[9,6],[26,-1],[1,-5],[0,-10],[-1,-10],[-2,-8],[-4,-4],[-4,2],[-4,4],[-4,2],[-6,-2],[-1,-6],[0,-18],[2,-1],[3,2],[1,4],[-4,5],[5,7],[17,-5],[7,6],[11,-14],[2,-6],[-4,-2],[-4,-6],[-2,-9],[1,-9],[2,-2],[1,0],[3,0],[1,-1],[0,-3],[0,-2],[0,-2],[3,-2],[4,-1],[3,-1],[-6,-8],[-2,-5],[-2,-8],[-15,11],[-7,6],[-5,12],[0,-15],[-4,-5],[-5,4],[-2,10],[-3,1],[-5,1],[-5,-4],[-2,-13],[4,5],[0,-7],[1,-4],[2,-3],[2,1],[3,-6],[4,-4],[5,-2],[4,-4],[2,3],[3,1],[3,-2],[2,-6],[2,0],[1,-2],[0,-4],[-2,-5],[0,-3],[0,-9],[2,0],[2,2],[2,1],[4,-5],[1,-3],[2,-5],[-4,-7],[-2,-3],[-3,-2],[0,-4],[7,0],[0,-4],[-3,-2],[-2,-2],[-2,-3],[-2,-5],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[1,-5],[1,-4],[0,-4],[-5,-6],[-28,-15],[-42,7],[-5,3],[-4,5],[-4,6],[-2,5],[-1,3],[-1,2],[-3,3],[-3,1],[-6,1],[-3,2],[-1,4],[-2,12],[0,4],[-3,6],[-2,1],[-2,0],[-3,1],[-5,4],[-2,4],[-2,4],[0,4],[-1,3],[-3,2],[0,-4],[5,-16],[3,-3],[6,-2],[4,-3],[3,-8],[2,-9],[1,-6],[3,-5],[13,-8],[3,-9],[0,-13],[-3,-5],[-5,-3],[-3,-8],[19,11],[11,2],[4,-8],[9,8],[12,-4],[9,-14],[6,-5],[4,-19],[2,-15],[2,-17],[3,-12],[6,-15],[3,-12],[-9,-2],[-4,1],[-4,-2],[-3,-6],[3,0],[7,1],[11,-2],[6,-7],[-2,-7],[-4,-6],[-1,-7],[3,-7],[4,-6],[2,-14],[5,-11],[-1,-9],[1,-5],[0,-5],[2,2],[2,-1],[3,-5],[-4,-11],[-6,-21],[-4,-9],[-6,-8],[-2,2],[1,24],[-4,2],[-7,10],[-6,3],[-6,4],[-7,-2],[-5,-7],[-2,-1],[-2,-3],[-1,-3],[-1,-5],[-1,0],[-3,4],[-3,0],[-3,-4],[-1,-8],[2,-5],[3,-1],[2,-3],[-1,-8],[-2,-5],[-3,-2],[-3,-1],[-4,-3],[-2,-7],[-1,-6],[-1,-8],[-1,-8],[4,2],[1,2],[1,-6],[-1,-7],[-1,-6],[-2,-5],[-3,-5],[-2,0],[-1,0],[-3,1],[-1,3],[-5,13],[-3,1],[-3,3],[-3,16],[-4,10],[-10,8],[6,19],[-3,21],[-9,15],[2,7],[2,5],[3,-2],[4,0],[3,4],[3,6],[-10,-4],[-4,1],[-9,13],[-4,2],[-2,-5],[2,-10],[-7,-10],[-4,-22],[-11,-8],[-5,-1],[-1,12],[-2,0],[-7,-2],[-3,-2],[4,-11],[5,-4],[6,-1],[12,4],[2,-11],[-1,-18],[-2,-10],[-2,-11],[-3,-9],[-4,-11],[-9,-11],[-6,-13],[-6,-13],[-2,-11],[0,-20],[-3,-15],[-3,-12],[-4,-11],[-13,-3],[-6,6],[-5,4],[-7,-1],[-10,-5],[-5,3],[-6,5],[-5,7],[-4,8],[-4,5],[-7,3],[-13,2],[-11,-3],[-4,2],[-5,7],[-1,24],[-2,12],[-5,-2],[4,-7],[2,-6],[0,-26],[0,-7],[2,-5],[4,-1],[16,0],[4,-1],[9,-8],[9,-15],[3,-5],[24,-11],[3,-5],[2,-8],[2,-10],[0,-9],[2,-12],[-5,-14],[-7,-6],[-5,-8],[-3,-18],[-8,-19],[-8,-23],[-5,-11],[-5,-1],[-5,8],[-9,16],[-5,6],[0,-11],[3,-7],[7,-13],[1,-4],[1,-11],[-2,-5],[-1,-6],[1,-5],[1,0],[-2,-20],[-9,-10],[-5,-9],[-3,-7],[-3,-7],[3,-12],[2,-12],[1,-8],[4,-5],[6,-2],[2,-1],[5,-5],[1,-7],[-1,-9],[-4,-9],[-2,-3],[-2,0],[-1,-1],[-2,-12],[-1,-5],[1,-5],[3,-5],[-3,-9],[-1,-3],[-4,1],[-17,13],[-4,0],[0,-10],[-2,-12],[-3,-9],[-6,-3],[0,-4],[3,-1],[5,-2],[4,-4],[0,-3],[-1,-4],[0,-4],[0,-8],[0,-5],[-2,-3],[-1,-1],[-1,-2],[-1,-2],[-2,-3],[-1,-3],[1,-1],[1,-4],[1,-9],[-2,-6],[-2,-3],[-1,-5],[2,-8],[-5,-3],[-5,-6],[-3,-3],[-2,10],[-1,13],[-2,2],[-4,-3],[-4,2],[-1,-7],[0,-2],[0,-5],[3,-15],[-7,7],[-8,30],[-8,8],[-4,-1],[-4,-2],[-4,-1],[-3,4],[-1,9],[2,7],[3,5],[3,3],[-2,3],[-1,-3],[-2,5],[1,1],[1,2],[1,9],[-6,-6],[-1,-2],[-2,4],[-1,3],[-3,5],[0,-5],[0,-3],[1,-2],[1,-2],[-4,-3],[-3,2],[-2,4],[-4,1],[1,-5],[1,-3],[1,-2],[2,-3],[0,-4],[-5,-8],[-2,1],[-1,7],[-5,9],[-1,-6],[0,-6],[1,-5],[0,-4],[-1,-4],[-5,-10],[0,-6],[1,-4],[1,-3],[3,-1],[3,1],[1,4],[0,4],[1,3],[8,9],[5,4],[2,-3],[2,-8],[7,-7],[3,-7],[3,6],[4,6],[0,-4],[2,0],[0,2],[1,2],[1,4],[5,-10],[0,-9],[-5,-18],[6,4],[5,-4],[4,-9],[6,-7],[0,-4],[-5,0],[-6,2],[-3,-2],[10,-4],[0,-4],[-8,-4],[-2,4],[-2,-4],[4,-4],[0,-4],[-2,0],[0,-4],[6,0],[-5,-4],[-5,0],[-21,8],[-2,2],[-4,8],[-2,2],[-3,0],[1,-6],[2,-5],[1,-4],[2,-5],[4,-21],[-2,-3],[-4,8],[-3,-4],[-4,-9],[-4,-4],[0,-4],[7,-1],[4,-10],[-1,-12],[-5,-9],[-2,4],[-3,-3],[-7,-2],[-12,1],[10,-11],[4,-1],[4,1],[3,2],[3,0],[2,-7],[-1,-2],[-1,-4],[-2,-3],[2,-8],[-2,-2],[-1,-3],[-2,-2],[-2,-1],[-3,1],[-9,7],[-6,1],[-6,-1],[-3,-5],[2,-11],[-3,-3],[-2,-3],[-2,-1],[-3,-1],[-2,1],[-1,3],[-2,3],[-3,1],[-7,0],[7,-6],[-3,-8],[-6,-9],[0,-14],[3,-4],[4,-4],[4,-3],[4,-1],[2,-2],[3,-4],[4,-5],[5,-1],[-2,-7],[-4,-8],[-2,-8],[0,-9],[4,-4],[4,0],[4,-2],[2,-7],[-2,-6],[-3,-2],[-4,0],[-3,-3],[-1,-8],[0,-8],[2,-9],[3,-8],[4,4],[0,-4],[-10,-11],[-2,-3],[-3,-3],[-2,2],[1,5],[3,6],[-2,4],[-15,-18],[-3,-3],[-16,0],[-3,-3],[-2,-7],[-1,-10],[0,-10],[-15,-22],[-10,0],[-3,5],[-1,11],[1,7],[2,0],[1,-1],[2,2],[0,5],[-1,11],[1,5],[4,7],[6,4],[11,5],[4,4],[7,9],[4,3],[0,3],[-1,7],[-1,2],[3,4],[4,16],[3,8],[0,-1],[1,-1],[3,-1],[1,1],[0,2],[0,3],[0,2],[13,33],[1,7],[-4,2],[-14,-6],[-19,4],[-6,-3],[-1,-6],[4,-13],[-4,-16],[-6,-13],[-4,-14],[4,-16],[-6,-3],[-6,-1],[-1,21],[-1,1],[-6,15],[-3,-2],[-4,-11],[-3,-3],[0,10],[3,36],[2,6],[8,8],[-3,3],[-4,2],[-3,-2],[-3,-3],[1,16],[5,5],[6,4],[3,12],[-8,-2],[-6,-4],[-4,-8],[-3,-11],[-2,-9],[0,-6],[1,-6],[1,-9],[-1,-9],[-3,-4],[-4,0],[-3,3],[0,4],[0,8],[-2,14],[-3,13],[-6,5],[-2,-3],[-1,-7],[-1,-8],[-1,-6],[1,-8],[2,-5],[7,-15],[3,-3],[2,-4],[1,-7],[-2,-4],[-3,1],[-5,5],[-4,8],[-5,11],[-5,7],[-5,-2],[-2,10],[1,6],[-1,6],[-4,6],[-2,0],[-4,-1],[-2,-4],[1,-7],[-3,-6],[-3,-4],[-2,-6],[0,-7],[0,-7],[1,-6],[1,-4],[3,-3],[4,0],[3,0],[3,-5],[1,-7],[-1,-8],[-2,-14],[-8,11],[-3,1],[-4,-2],[-1,-4],[1,-12],[3,-12],[10,-15],[2,-12],[2,0],[4,10],[5,7],[5,5],[5,7],[4,-5],[3,-1],[9,1],[-3,0],[4,1],[2,-2],[0,-4],[-2,-6],[4,-3],[6,-2],[4,-4],[-1,-7],[0,-3],[1,-6],[-3,6],[-1,2],[-3,-8],[1,-9],[4,-8],[6,-3],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[2,-3],[3,-5],[2,-9],[2,-7],[0,-5],[0,-5],[-2,-7],[-1,0],[-3,0],[-1,0],[-1,-2],[1,-8],[0,-2],[-6,-4],[-3,1],[-2,14],[-4,7],[-6,5],[-5,2],[-3,2],[-7,20],[-3,3],[-2,-2],[-1,-7],[-2,-2],[-3,-5],[-1,-2],[-4,4],[-2,0],[-5,-2],[-3,-3],[-1,-6],[2,-10],[6,-3],[6,2],[3,4],[1,3],[2,-3],[3,-4],[1,-5],[1,-43],[3,-9],[6,-2],[-1,-3],[0,-6],[-1,-3],[4,0],[11,3],[3,3],[1,19],[1,8],[5,-5],[2,6],[2,7],[0,7],[2,5],[1,3],[8,9],[3,-9],[3,-5],[1,-6],[-3,-9],[4,0],[7,-9],[4,-2],[4,1],[7,6],[5,1],[0,-5],[-18,-27],[-3,-3],[-6,8],[-8,1],[-7,-7],[-4,-12],[1,-1],[4,-3],[-3,-4],[-2,2],[-3,4],[-3,2],[-3,-1],[-6,-6],[-3,-1],[-7,0],[-6,-2],[-6,-4],[-5,-11],[5,-3],[4,-4],[-1,-7],[1,-6],[-4,-2],[-4,-3],[-4,-6],[-1,-7],[-2,-5],[-4,-3],[-2,-6],[2,-12],[-10,-13],[-7,-16],[-5,-19],[-7,-19],[-6,-21],[-4,-9],[-6,-1],[-1,3],[-3,10],[-2,4],[-3,2],[-6,3],[-3,2],[-8,12],[-4,4],[-14,3],[-5,4],[-8,16],[-4,8],[-4,2],[-12,4],[-2,3],[-9,12],[-4,4],[-3,2],[0,-4],[6,-10],[6,-12],[5,-7],[7,5],[4,-7],[1,-7],[3,-19],[2,-9],[6,-13],[1,-7],[1,-16],[3,-2],[11,-4],[9,-8],[5,-2],[9,1],[9,5],[8,8],[14,18],[2,4],[1,5],[0,12],[1,4],[4,5],[10,0],[3,3],[15,-16],[8,-5],[7,4],[6,-11],[1,-5],[1,-6],[-1,-7],[-7,-28],[-2,-6],[-4,-5],[-3,-3],[-5,-1],[-2,-4],[-5,-29],[-4,19],[-3,5],[-2,-8],[3,-5],[1,-13],[1,-12],[5,-6],[2,-3],[0,-8],[-1,-14],[1,-1],[2,-1],[1,-3],[-1,-4],[-6,-13],[0,-5],[-1,-17],[0,-4],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-2,1],[-1,4],[-8,10],[-3,0],[-2,-9],[-4,-1],[-4,-1],[-3,-4],[-2,2],[-1,1],[-5,1],[2,-14],[1,-18],[2,-11],[5,7],[-1,-15],[0,-12],[4,-10],[6,-4],[2,3],[1,5],[2,3],[4,-5],[3,-2],[3,3],[2,5],[1,4],[-3,-22],[1,-8],[5,-2],[-1,-5],[-1,-3],[-2,-1],[-3,1],[4,-4],[3,-1],[2,0],[-3,-6],[-2,-1],[-2,-1],[0,-4],[7,3],[1,-1],[-1,-6],[0,-4],[4,0],[3,-3],[1,-5],[-1,-6],[-3,-7],[1,-1],[2,0],[3,-2],[3,-14],[0,-10],[-2,-9],[-5,-8],[5,-1],[2,-1],[3,-2],[-15,-7],[-6,-1],[1,5],[1,5],[2,3],[1,3],[-3,18],[-3,10],[2,4],[2,4],[0,4],[0,3],[-4,11],[0,3],[-2,-1],[-2,-2],[-2,-2],[-1,-3],[-1,2],[-1,1],[-2,1],[0,-7],[-1,-9],[1,-9],[1,-4],[4,-1],[1,-3],[-2,-10],[-2,-7],[-5,-1],[-6,-1],[-6,-1],[2,7],[2,10],[1,10],[1,8],[-1,2],[-1,2],[-2,2],[0,4],[1,4],[2,5],[1,6],[1,1],[-1,0],[-11,0],[-2,-5],[-1,-10],[-2,-6],[-3,5],[-1,7],[3,18],[1,9],[-2,3],[-21,6],[-2,4],[-1,8],[1,6],[7,24],[-4,-4],[-1,-1],[-1,-3],[-2,4],[1,9],[-4,6],[-6,1],[-5,-4],[5,-10],[-3,-6],[-9,-4],[-2,-8],[-1,-18],[-2,-9],[-6,-18],[-3,-4],[-4,-2],[-8,-4],[-4,-4],[-2,-5],[-10,-11],[-3,-2],[-4,-4],[2,-8],[13,-26],[3,-8],[1,-9],[1,-5],[3,2],[2,8],[1,9],[2,0],[6,-24],[-6,-7],[-3,-4],[-3,-6],[3,-8],[1,-7],[2,-2],[4,6],[2,6],[3,9],[2,10],[0,11],[3,-5],[3,-3],[3,1],[1,7],[3,-3],[1,-2],[2,-3],[-2,0],[1,-6],[6,-17],[2,-2],[3,-2],[3,-2],[2,-6],[-3,-9],[-5,-3],[-12,2],[-3,-6],[5,-25],[-2,-6],[-7,-2],[-4,9],[-4,1],[-4,-4],[-6,-2],[-4,-3],[-4,8],[-3,10],[-3,8],[-7,-4],[-4,-11],[1,-8],[2,-5],[2,-8],[1,-3],[2,-4],[1,-6],[3,3],[2,-2],[-1,-5],[-4,-4],[-5,1],[-4,4],[-2,1],[-3,-6],[2,-2],[1,-2],[0,-2],[1,-2],[-2,1],[-7,7],[2,12],[2,4],[-4,6],[-3,-3],[-3,-8],[0,-11],[-4,9],[1,11],[7,16],[3,11],[0,7],[-3,5],[-7,2],[-13,-3],[-5,2],[3,11],[6,5],[7,4],[0,11],[-12,3],[-18,-11],[-3,-4],[-3,0],[-6,-9],[-3,-9],[6,-4],[7,-2],[1,-5],[-1,-8],[1,-10],[2,5],[3,4],[4,2],[4,-2],[4,-7],[-1,-6],[-5,-12],[-1,-9],[0,-11],[-1,-3],[-1,-3],[-2,-2],[-4,-2],[-5,1],[-5,2],[-5,-4],[-3,-1],[-2,-7],[0,-7],[3,-10],[5,-10],[5,-4],[11,-7],[-2,-4],[3,-5],[4,-2],[4,1],[3,4],[3,17],[2,8],[2,-2],[0,-6],[-1,-10],[-2,-9],[-2,-4],[-1,-4],[1,-9],[3,-16],[4,3],[2,2],[-3,-8],[-4,-6],[-5,-2],[-2,6],[-1,6],[-5,1],[-10,-2],[-3,-9],[3,-18],[6,-12],[10,7],[1,-3],[0,-1],[0,-1],[-1,-3],[1,-1],[1,0],[0,-3],[-7,-5],[-7,0],[-8,3],[-5,8],[-3,1],[-8,-6],[-4,-1],[-3,2],[-3,4],[-3,2],[-4,-4],[1,-10],[-5,-6],[-8,-4],[-5,-5],[-3,2],[-2,3],[0,5],[1,7],[2,3],[4,4],[2,1],[0,9],[-3,10],[-4,8],[-3,6],[1,-20],[-1,-5],[-2,-2],[-1,5],[0,7],[1,6],[-1,3],[-2,4],[-3,9],[-1,-7],[-5,-10],[-1,-5],[2,-4],[4,-6],[3,-7],[-1,-7],[-5,-5],[-8,1],[-8,4],[-6,6],[11,-17],[2,-8],[0,-8],[0,-7],[0,-7],[4,-17],[1,-3],[1,4],[1,2],[2,0],[2,0],[2,0],[6,6],[3,6],[1,5],[2,-4],[2,-3],[0,-5],[0,-7],[1,-6],[2,1],[4,3],[5,-4],[1,-4],[0,-6],[-4,-16],[-1,-2],[-4,-3],[-3,-6],[-6,-18],[-4,-5],[-2,2],[-3,7],[-3,6],[-4,-8],[-1,-9],[-1,-10],[0,-11],[2,-7],[4,0],[2,-3],[0,-13],[-4,-13],[-8,-13],[-8,-10],[-7,-4],[-1,-1],[-1,-2],[-1,1],[-1,6],[0,5],[0,5],[1,4],[2,2],[5,3],[-2,5],[-20,23],[-4,2],[-3,2],[-8,8],[-5,2],[1,8],[1,8],[0,18],[-1,6],[-3,-4],[-3,-7],[-3,-5],[6,-28],[-5,-11],[-7,-10],[-7,-4],[-8,4],[-2,-2],[-3,1],[-6,6],[-1,-8],[-2,-6],[-3,-2],[-4,3],[-2,-19],[-6,-2],[-7,9],[-4,12],[0,13],[3,2],[4,-2],[3,4],[0,6],[-3,4],[-5,2],[-4,0],[3,10],[1,9],[-2,9],[-5,12],[-1,-18],[-2,-2],[-2,0],[-1,-1],[-1,-14],[-2,-8],[-2,-7],[-3,-6],[0,-8],[-2,0],[-3,8],[-14,12],[-2,-12],[2,-13],[-2,-9],[-4,-4],[-5,5],[2,11],[-5,-6],[-5,-11],[1,-6],[12,-3],[6,-5],[4,-8],[-4,-10],[-2,-4],[-3,-2],[-3,0],[-1,-2],[-1,-3],[-2,-5],[2,-3],[4,-7],[0,-5],[-7,1],[-24,18],[-12,7],[-11,-6],[5,-3],[6,-1],[5,-3],[4,-9],[-23,11],[-7,-2],[0,-4],[23,-38],[9,-7],[23,6],[8,6],[3,4],[4,-3],[1,-5],[0,-5],[-2,-15],[-1,-2],[-2,-2],[-1,-4],[-3,-15],[3,-2],[3,5],[2,5],[3,4],[5,1],[5,-4],[2,-13],[1,-3],[4,-6],[1,-3],[0,-12],[1,-5],[1,-5],[-5,-1],[-7,-7],[-3,4],[-4,-6],[-5,-15],[-4,-8],[-3,-2],[-5,-3],[-2,-3],[-1,-3],[-1,-11],[-1,-4],[-3,-2],[-1,9],[-2,17],[-4,6],[-3,-3],[-3,-7],[-4,-6],[7,-5],[2,-9],[-2,-13],[-8,-25],[-2,-7],[-1,-8],[1,-7],[1,-6],[0,-6],[-2,-8],[-8,5],[-7,-7],[-11,-26],[-7,-13],[-2,-6],[-1,-11],[-1,-8],[-3,-5],[-3,0],[-2,7],[2,19],[15,30],[2,12],[-3,3],[-7,-7],[-2,6],[4,3],[2,4],[-1,5],[-1,3],[-2,11],[-2,0],[-1,-19],[-8,-2],[-9,7],[-7,10],[2,-9],[2,-5],[3,-2],[5,0],[-6,-23],[0,-11],[2,-15],[-6,-13],[-7,-13],[-4,-21],[-2,-20],[0,-16],[4,-11],[-6,-12],[-2,-7],[-5,-15],[-1,11],[-1,13],[4,13],[0,20],[-1,11],[-1,11],[-3,11],[-3,9],[-4,5],[-6,4],[-17,1],[-5,3],[-7,11],[-4,1],[-3,-8],[1,-11],[5,-2],[6,2],[5,-1],[9,-23],[-3,-24],[-7,-27],[-8,-7],[-15,12],[-3,-2],[-3,-4],[-1,-5],[-3,-5],[-7,-4],[-4,8],[-4,8],[-4,-4],[4,-12],[-1,-9],[-4,-15],[1,-20],[-2,-5],[-2,-14],[5,-12],[-6,-12],[-5,-6],[-1,11],[0,10],[2,10],[-2,8],[-2,13],[-1,-5],[-5,-12],[3,-7],[0,-7],[0,-7],[-9,-5],[-3,-2],[-7,-6],[-6,-20],[-8,-11],[-4,-2],[-2,8],[1,6],[0,8],[-2,10],[1,10],[0,10],[-3,7],[-3,2],[-3,1],[-3,3],[-3,-1],[-2,-7],[-2,-2],[-7,-2],[-6,-15],[-4,-3],[-6,9],[-3,7],[7,13],[-4,3],[-3,-1],[-2,-5],[-1,-8],[-1,-4],[-7,-9],[-1,-7],[0,-5],[2,-3],[1,-4],[1,-8],[-1,-8],[-2,-7],[-6,-14],[-2,-8],[2,-8],[5,-14],[-2,-14],[-26,-59],[-5,0],[-2,-1],[-4,2],[-6,2],[-5,3],[-4,-2],[-6,-1],[-10,8],[-15,13],[-3,7],[-1,7],[-3,4],[-3,1],[-2,-3],[-1,-4],[1,-20],[3,-9],[5,-12],[6,-11],[4,-4],[5,2],[10,-1],[5,11],[8,1],[5,-11],[5,-2],[1,8],[5,-2],[5,-17],[1,-15],[2,-19],[3,-3],[2,3],[3,-3],[-6,-14],[-8,13],[-6,14],[-8,11],[-10,3],[3,-6],[4,-3],[4,-4],[2,-9],[-3,-3],[-4,-5],[-5,-9],[-3,-13],[-4,-18],[-3,1],[-2,6],[-4,2],[0,7],[1,8],[0,11],[-2,10],[-6,4],[-5,1],[-15,-7],[-2,-1],[0,-10],[5,-10],[4,6],[3,4],[3,4],[3,0],[8,-3],[0,-5],[-1,-8],[-8,-11],[-7,-20],[-3,-21],[5,-13],[-1,-12],[2,-18],[2,-10],[-4,-8],[-8,-4],[-1,-19],[-6,-16],[-10,4],[-9,-5],[-13,-5],[-8,5],[-4,8],[-11,7],[-2,9],[-8,-3],[-7,4],[-6,1],[-4,-5],[10,-8],[4,-1],[5,5],[4,-5],[-10,-16],[-7,-7],[-2,-7],[-4,-7],[-8,-19],[-7,-10],[-5,-5],[-4,-3],[-5,-4],[-3,14],[2,11],[9,15],[-10,7],[-13,16],[0,-6],[8,-15],[5,-5],[-3,-13],[-7,-7],[-1,-2],[-3,-1],[-3,-3],[-4,-4],[-5,-1],[-8,-12],[-2,-7],[-5,2],[-2,-1],[-8,-10],[-6,3],[-8,-9],[-3,-6],[-5,-13],[-4,-1],[-4,5],[0,9],[-2,11],[0,6],[1,1],[2,-3],[0,-5],[2,-5],[2,-1],[0,6],[-1,8],[0,5],[-2,4],[-2,3],[-2,1],[-1,2],[-3,4],[-3,6],[-8,6],[-11,-1],[2,11],[-5,5],[-1,6],[3,7],[4,5],[2,-2],[2,0],[2,11],[1,5],[-1,2],[-10,-3],[-3,-3],[-4,-12],[-4,-6],[-4,-3],[-15,-5],[-2,-2],[-1,-3],[-2,-11],[-2,-3],[-5,3],[-2,5],[1,7],[3,8],[0,5],[-4,1],[-8,0],[-3,3],[-7,14],[-5,3],[-2,-1],[-2,-6],[-2,-1],[-2,0],[-5,4],[4,-10],[2,-4],[3,-2],[3,1],[2,6],[3,1],[5,-6],[3,-12],[0,-12],[-7,-2],[0,-5],[3,-1],[7,1],[3,-1],[4,-5],[3,-1],[5,0],[2,1],[3,3],[3,3],[1,5],[2,3],[4,1],[-6,-10],[-10,-23],[-5,-11],[-3,-13],[-1,-15],[9,-17],[3,14],[0,6],[5,-1],[2,-5],[-3,-8],[-5,-11],[0,-12],[3,-10],[-10,0],[-4,5],[-9,7],[-7,8],[-8,-1],[-4,-6],[-8,0],[-6,2],[-3,6],[-4,8],[-2,10],[3,8],[2,1],[9,-1],[2,1],[3,5],[4,3],[0,5],[-3,10],[-7,-3],[-3,-6],[-3,-5],[-10,14],[-11,2],[-11,-2],[-5,0],[0,10],[7,9],[13,11],[5,7],[1,5],[-3,3],[-1,3],[0,8],[2,13],[-4,-1],[-3,-4],[-6,-13],[-4,-16],[-3,-7],[-4,-3],[-4,3],[-6,-2],[-6,-6],[0,-9],[2,-13],[-6,5],[-3,10],[-4,1],[-6,-6],[-3,-1],[-10,-2],[-4,-9],[-2,-3],[-1,-9],[-1,-4],[-4,-6],[-1,-4],[1,-6],[2,-6],[0,-5],[-3,-1],[-3,-2],[-3,-1],[-1,-3],[-2,-4],[-2,-1],[-2,3],[-4,2],[-1,4],[1,7],[-2,8],[-1,8],[-2,7],[-4,4],[-2,-10],[-4,3],[-4,9],[-4,2],[-4,-3],[3,-5],[3,-4],[1,-7],[-2,-4],[0,-4],[3,-5],[4,0],[2,6],[4,-4],[3,-4],[3,-8],[2,-7],[3,-5],[-4,-7],[-3,-4],[-4,-11],[-7,-24],[1,-12],[4,-10],[-6,-8],[-4,2],[-1,5],[3,8],[-1,10],[-6,7],[-9,0],[-7,-6],[-9,3],[-6,-4],[-3,11],[0,11],[0,12],[-1,13],[3,5],[1,9],[-4,10],[1,13],[3,10],[7,8],[5,4],[2,2],[3,1],[1,3],[1,7],[-1,5],[-3,3],[-2,2],[-2,2],[-2,3],[-3,0],[-1,-4],[-2,-11],[-2,-6],[-6,-3],[-5,9],[-6,1],[-3,-7],[-6,-4],[-5,-4],[-2,-7],[-6,-3],[-4,-6],[-6,-4],[-5,-1],[1,-8],[1,-10],[-5,-4],[-3,0],[-2,3],[-3,3],[0,-11],[-2,-6],[-3,-8],[-1,-6],[2,-4],[7,-1],[-3,1],[7,-1],[4,2],[3,4],[3,0],[2,-6],[-4,-5],[-4,-16],[-4,-4],[-5,-2],[-4,-7],[-4,-8],[-2,-7],[2,-6],[2,-1],[3,2],[3,1],[0,1],[1,3],[1,3],[2,2],[1,-2],[2,-6],[1,-1],[4,-2],[6,-6],[5,-7],[1,-9],[-2,-6],[-6,-5],[-5,-7],[-8,-4],[-3,-5],[-4,-10],[-4,0],[-2,7],[-1,1],[-1,2],[-1,3],[0,6],[-2,3],[0,1],[1,6],[-1,5],[2,5],[1,2],[0,8],[-2,3],[0,4],[-2,3],[-3,6],[-2,5],[-2,1],[-2,-2],[-1,5],[0,2],[1,2],[-2,4],[-2,7],[-3,2],[-2,4],[-3,1],[-5,-2],[-5,-3],[-6,-5],[-3,5],[-1,-4],[-2,2],[-3,-5],[0,-5],[-1,-1],[-7,3],[-2,-3],[-6,-8],[-3,-6],[-2,-2]],[[81730,63828],[-3,-1],[-6,1],[-4,0],[-3,4],[-3,-2],[-2,-5],[-2,-8],[-3,1],[-2,-1],[-4,-6],[0,1],[-2,3],[-5,0],[-2,-3]],[[81689,63812],[-1,-1],[0,-2],[-3,-2],[-3,-2],[-1,-6],[-3,0],[-1,2],[-1,0],[0,2],[-5,5],[-5,5],[-4,0],[0,1],[-4,0],[-2,3],[-1,-6],[-3,-2],[0,-8],[0,-6],[-1,-6],[-3,-1],[-3,-1],[-3,1],[0,-1],[-1,-1],[0,-5],[-6,-15],[-2,13],[-2,3],[-2,9],[0,10],[4,2],[3,4],[-4,9],[-10,15],[-2,6],[-3,9],[-3,10],[-4,16],[-1,18],[-6,7],[-3,37],[-1,11],[-4,4],[-9,1],[-4,-1],[-1,-2],[-1,-3],[-2,-3],[-3,0],[-5,7],[0,10],[2,13],[-2,13],[-3,8],[-3,12],[-4,22],[-2,-9],[0,-8],[0,-8],[2,-7],[-4,6],[-1,11],[1,13],[2,10],[-2,-4],[-2,-5],[0,-5],[-1,5],[5,26],[2,14],[0,13],[2,12],[3,21],[-2,0],[-4,-16],[-1,-8],[-1,-18],[-2,-19],[-1,-8],[-1,7],[0,9],[1,9],[2,8],[-1,8],[1,8],[4,20],[-5,-15],[-4,-33],[-3,-9],[2,11],[0,13],[0,25],[-5,-14],[-3,-6],[-3,0],[-3,5],[-1,9],[0,16],[2,15],[6,12],[7,9],[15,6],[15,14],[8,3],[3,-2],[4,-5],[4,-2],[7,6],[5,-2],[8,-7],[-5,7],[-4,3],[-11,2],[-4,3],[-7,8],[-5,1],[-8,-4],[-13,-20],[-9,-4],[-2,-3],[-10,-10],[-2,-1],[-2,-7],[-3,-5],[-5,-3],[-4,1],[-13,16],[-8,4],[-5,-8],[6,-11],[8,-1],[9,-7],[6,-18],[0,-18],[-3,-22],[-3,-10],[1,-4],[0,-3],[-3,-4],[-2,1],[-6,5],[-4,2],[-26,-20],[-8,-2],[-27,10],[0,-4],[6,-3],[7,-1],[1,-2],[6,-8],[2,-2],[6,2],[5,4],[5,1],[5,-5],[16,-38],[4,-7],[15,-18],[-8,-7],[-3,-4],[-4,-10],[-4,6],[-13,11],[5,-12],[16,-13],[4,-5],[2,-10],[11,-17],[11,-19],[3,-15],[10,-23],[-2,-31],[-9,-25],[-4,-25],[1,-25],[2,-9],[7,-6],[8,0],[-3,-12],[-1,-5],[0,-10],[-1,-5],[-3,-4],[-3,-6],[1,-9],[0,-11],[2,-2],[2,-6],[-1,-9],[-7,-2],[-2,-9],[-4,2],[-5,-5],[2,-6],[0,-1]],[[81535,63618],[0,-1],[-2,-5],[-7,-12],[-4,-10],[-6,2],[-10,17],[-2,13],[-2,10],[-13,25],[0,4],[-1,11],[-1,5],[-1,4],[-14,21],[-7,17],[-6,19],[-4,31],[-2,13],[-16,50],[-3,7],[-2,-41],[1,-11],[1,-5],[7,-10],[10,-22],[21,-68],[4,-12],[3,-13],[7,-14],[3,-8],[11,-30],[-11,-5],[-3,0],[-8,7],[-3,1],[-3,-1],[-1,-4],[-1,-5],[-3,-9],[-1,-4],[-1,-3],[-1,-2],[-3,0],[-3,-13],[-1,-7],[2,-13],[0,-6],[-1,-7],[-1,-3],[-5,-7],[-4,1],[-6,1],[-4,-3],[-6,-10],[-5,7],[-6,17],[-2,20],[1,9],[3,10],[-2,8],[2,10],[-2,6],[-1,9],[-1,10],[0,9],[-7,-7],[-2,-35],[-6,-16],[-9,13],[-1,-10],[0,-15],[-1,-11],[0,-14],[0,-14],[0,-8],[1,-11],[0,-11],[-1,-4],[1,-3],[2,-7],[-1,-7],[-2,-4],[-5,-2],[-1,0],[-2,-1],[-1,-5],[0,-5],[-1,-8],[-1,-3],[-2,-6],[-4,-9],[-8,-6],[-4,-6],[-9,11],[-3,11],[-3,23],[-2,10],[-3,7],[-4,3],[-3,-2],[-2,-6],[-2,-3],[-4,3],[-12,-12],[-1,-4],[-1,-17],[-2,-4],[-7,1],[-1,-1],[-1,-2],[-2,-7],[-1,-3],[-12,-12],[1,-16],[-4,-16],[-7,-12],[-8,-5],[-8,4],[-30,33],[-4,10],[-3,13],[-1,20],[3,10],[16,16],[3,12],[-2,0],[-4,-6],[-10,-6],[-8,-1],[-4,7],[-1,5],[-3,8],[0,5],[0,5],[1,7],[3,30],[2,7],[-6,-6],[-3,-14],[-2,-17],[-1,-16],[4,-24],[5,-18],[1,-4],[-1,-15],[0,-8],[2,-4],[1,-3],[1,-8],[1,-15],[-1,-6],[-3,-10],[-1,-17],[-2,-5],[-2,-3],[-3,-6],[-8,-5],[-13,-9],[-12,-1],[-5,13],[-3,4],[-5,4],[-4,6],[2,11],[3,9],[1,12],[-1,12],[-2,10],[-3,-12],[-3,-6],[-24,-10],[-11,-1],[-5,1],[-4,5],[-2,8],[2,9],[7,17],[1,13],[-2,0],[-4,-15],[-8,-15],[-6,-6],[-5,24],[-5,16],[-6,13],[-6,7],[-1,-15],[1,-19],[1,-18],[3,-13],[4,-9],[7,-8],[8,-6],[7,-1],[-2,-6],[-21,-27],[-3,-2],[0,-4],[0,-4],[-1,-2],[-2,-2],[-3,-7],[-2,-3],[-2,-1],[-8,1],[-1,4],[1,8],[4,5],[4,-5],[2,0],[0,6],[-2,5],[-2,2],[-4,3],[-3,-5],[-2,7],[0,12],[1,10],[-3,-8],[-4,-6],[-4,1],[-2,9],[-5,-4],[-3,0],[-9,8],[-1,-2],[-6,3],[-6,8],[5,-12],[18,-21],[3,-12],[2,-18],[-2,-15],[-7,-3],[4,-3],[3,-3],[3,-4],[1,-7],[-11,-1],[-5,1],[-4,4],[-7,-11],[-7,-27],[-4,-10],[-3,-5],[-2,-2],[-3,2],[-4,7],[-2,5],[-1,7],[-1,6],[-3,4],[0,-8],[0,-8],[1,-7],[3,-6],[-5,-2],[-6,-4],[-5,-2],[-3,8],[-2,0],[-1,-5],[-3,-4],[-5,-2],[-3,-1],[-2,3],[-1,7],[2,15],[-5,-2],[-3,7],[-3,23],[-3,-7],[-3,-9],[0,-4],[1,-7],[4,-8],[2,-6],[-14,5],[-7,0],[-3,-9],[3,3],[4,1],[8,-4],[-3,-4],[-9,-8],[-1,-3],[-4,-8],[-14,-22],[-7,-7],[-4,4],[4,4],[3,8],[6,20],[-6,4],[-6,7],[-7,4],[-5,-3],[-2,7],[-4,0],[-10,-7],[0,-4],[4,0],[-1,-3],[-1,-1],[2,-4],[4,4],[4,1],[4,-1],[3,-4],[-11,-8],[-7,-6],[-5,-6],[-2,3],[-4,2],[-9,-1],[0,5],[12,7],[0,4],[-1,2],[-1,2],[-2,-3],[-3,-3],[-2,-2],[-3,0],[-2,3],[-1,3],[1,3],[-2,3],[-11,11],[-2,6],[-1,-8],[-3,-4],[-7,-5],[2,-3],[2,-11],[3,-2],[-3,-14],[-3,-4],[-3,-2],[0,-4],[4,0],[4,3],[2,4],[1,7],[2,6],[4,3],[5,-1],[3,-6],[-7,-2],[-6,-7],[-8,-19],[-8,5],[-7,-7],[-6,-9],[-7,-5],[-1,-2],[-4,-5],[-2,-2],[0,1],[-5,3],[-6,1],[-6,6],[-5,1],[-6,-3],[-7,-9],[-10,-20],[-5,-11],[-3,-12],[-4,-15],[-2,-15],[-1,0],[1,32],[2,14],[4,7],[-4,-1],[-2,-3],[-2,-5],[-2,-7],[0,9],[-2,5],[-1,6],[2,8],[2,3],[7,4],[6,11],[9,2],[9,6],[3,19],[-2,0],[-9,-16],[-26,-22],[-5,-21],[0,-26],[1,-7],[6,-22],[-1,-14],[-6,0],[-11,10],[0,-3],[1,-4],[1,-3],[1,-2],[-30,-5],[-5,-3],[-4,-5],[-4,-7],[-2,0],[0,8],[3,12],[0,8],[-1,7],[-2,6],[0,5],[3,2],[0,4],[-1,2],[-1,1],[-1,2],[1,0],[1,1],[0,2],[1,0],[3,-2],[3,-1],[2,-3],[2,-6],[2,0],[0,5],[1,3],[1,4],[0,5],[-2,0],[-2,-4],[-2,1],[-2,1],[-4,2],[0,3],[12,13],[0,4],[-2,0],[-2,0],[-1,-2],[-1,-2],[0,12],[-4,-10],[-2,-11],[-3,-3],[-2,12],[0,7],[3,34],[-1,0],[-4,-12],[-5,5],[-9,23],[3,7],[1,3],[2,2],[0,4],[-9,-10],[4,-19],[6,-23],[-1,-21],[-1,1],[-3,3],[2,-8],[-4,2],[-6,8],[-5,2],[0,-4],[4,-3],[4,-7],[2,-8],[0,-7],[0,-3],[3,-5],[3,-5],[2,-7],[1,-6],[1,-2],[2,-5],[1,-3],[0,-5],[-1,-4],[-1,-3],[0,-2],[0,-9],[-1,-10],[-2,-9],[-2,-3],[-3,-2],[-8,-12],[-4,-10],[-5,-5],[-9,-7],[-3,-4],[-14,-33],[0,-3],[-3,4],[-1,8],[-1,11],[1,9],[-3,-7],[-1,-7],[-2,-15],[-2,-8],[-6,-20],[-4,4],[0,-4],[4,-5],[0,-9],[-1,-11],[-1,-12],[2,-10],[4,-18],[2,-8],[-3,6],[-1,2],[-2,0],[1,-5],[1,-3],[-1,-4],[-1,-4],[1,-1],[1,0],[0,-1],[0,-2],[2,0],[0,1],[0,1],[0,2],[2,-1],[1,-1],[1,0],[2,2],[0,-8],[6,3],[21,1],[3,6],[6,4],[4,0],[2,-10],[2,4],[1,-6],[2,-2],[1,2],[1,6],[5,-14],[5,-21],[1,-23],[-3,-20],[-4,-3],[-4,4],[-3,8],[-2,8],[-1,9],[0,25],[-1,10],[-3,-9],[-1,-3],[-2,-4],[3,-9],[0,-6],[-3,-5],[-4,-4],[2,-4],[-1,-1],[-1,0],[0,-3],[8,-8],[-2,-11],[-5,-14],[-3,-16],[2,2],[2,3],[1,3],[1,4],[2,0],[0,-8],[0,-7],[-1,-5],[-3,-4],[3,-3],[4,0],[4,3],[3,4],[0,-13],[2,8],[2,-1],[3,-4],[2,-6],[-1,-6],[1,-6],[3,-6],[5,-4],[5,-5],[2,-2],[2,0],[4,1],[2,-1],[4,-8],[5,-15],[6,-30],[-5,-26],[-4,-13],[-5,-5],[-2,-4],[-5,-21],[-14,-33],[-2,-3],[-7,3],[-4,0],[-2,-5],[-3,-11],[-6,-5],[-8,-4],[-3,-6],[-4,6],[-3,3],[-3,3],[-2,1],[-8,-1],[-4,-2],[-1,-4],[0,-4],[-1,-2],[-17,-3],[-5,3],[-4,10],[-2,2],[-3,1],[-2,1],[-2,4],[0,4],[-1,3],[-3,3],[-3,1],[-3,-1],[-1,-2],[-3,-8],[-2,-2],[-1,0],[-2,1],[-1,2],[1,1],[-8,-4],[-4,-5],[-2,-9],[-1,-3],[-2,-4],[-2,-4],[-2,1],[-1,5],[1,7],[1,6],[1,2],[1,12],[1,14],[-1,5],[-3,10],[0,6],[-9,8],[-3,6],[4,4],[-7,14],[0,2],[4,0],[3,2],[1,4],[1,6],[2,0],[3,-7],[9,-14],[3,-7],[5,-17],[2,-2],[1,12],[2,8],[3,10],[3,10],[-2,9],[-7,11],[-3,7],[-2,8],[-1,-4],[0,-3],[-1,-4],[0,-5],[-4,6],[-1,8],[-1,9],[-1,10],[-1,-21],[-1,-10],[-2,-6],[-1,8],[-1,8],[-2,8],[-2,5],[-4,3],[-9,2],[-4,3],[-2,3],[-2,3],[0,4],[0,6],[1,5],[2,1],[2,0],[1,2],[0,6],[1,14],[1,9],[-2,0],[-4,-25],[-2,0],[-1,21],[-4,16],[-8,9],[-8,-1],[2,9],[-1,9],[1,8],[4,6],[2,1],[2,-1],[1,-3],[3,-1],[3,1],[2,3],[4,8],[1,-2],[1,-3],[2,-3],[0,3],[2,4],[1,4],[2,1],[0,2],[0,5],[-2,2],[-7,-7],[-4,1],[-4,-2],[-2,-9],[-1,0],[-8,23],[-1,12],[5,10],[-3,6],[-1,9],[0,9],[4,4],[0,4],[-6,13],[0,4],[2,0],[0,3],[-2,5],[-2,3],[-2,-2],[-2,-6],[2,-28],[-3,5],[-4,11],[-2,5],[0,-6],[3,-15],[-8,17],[-6,27],[-1,27],[8,19],[-3,9],[0,12],[5,27],[1,-1],[2,-2],[1,-1],[-1,14],[-3,15],[-4,14],[-4,10],[2,9],[5,19],[3,5],[4,3],[2,-3],[3,-6],[4,-3],[-2,10],[3,7],[3,7],[2,7],[-1,33],[-1,5],[0,5],[2,7],[0,11],[-2,22],[3,-1],[2,-4],[1,-5],[0,-6],[3,2],[1,5],[0,5],[1,4],[3,1],[7,-1],[23,4],[0,4],[-6,13],[4,13],[6,14],[3,13],[-5,-3],[-2,7],[1,8],[4,4],[0,4],[-7,-2],[-9,-5],[-7,1],[-5,14],[-4,-8],[0,-4],[2,0],[0,-3],[-2,-6],[-1,-3],[-1,-4],[-2,0],[-3,8],[-1,15],[0,34],[-4,-5],[-4,3],[-1,7],[2,7],[0,4],[-7,-4],[0,-1],[0,-17],[3,-20],[4,-11],[0,-4],[-2,0],[0,4],[-2,0],[-5,-11],[-9,5],[-17,22],[3,5],[3,19],[2,9],[-1,4],[0,9],[-1,3],[1,2],[1,2],[0,4],[0,4],[-5,-5],[-6,-8],[-3,-9],[3,-10],[-2,-1],[-2,0],[-2,2],[-2,3],[0,4],[1,4],[0,7],[0,6],[-2,3],[-1,3],[4,17],[-6,-9],[-2,-2],[-2,5],[0,6],[-1,6],[-2,4],[-2,3],[1,12],[1,4],[-2,5],[2,8],[4,7],[3,5],[0,3],[-3,-1],[-2,1],[-2,3],[0,5],[-21,-36],[1,-2],[1,-2],[1,-2],[1,-2],[-1,0],[-2,0],[-1,0],[0,-4],[2,1],[4,1],[1,2],[1,-12],[-4,-4],[-6,0],[-6,4],[0,-4],[18,-13],[3,-6],[1,-4],[8,-22],[0,-4],[-2,-2],[-1,-2],[0,-19],[0,-6],[-1,-3],[-4,-8],[-1,-3],[-3,-7],[-12,-10],[-4,-5],[-1,5],[-1,5],[1,5],[1,5],[-2,-4],[-3,-6],[-2,-7],[-1,-5],[-1,-4],[-4,-2],[-23,1],[-2,3],[-4,13],[-1,-13],[-5,-9],[-6,-4],[-5,5],[-2,-3],[-1,-1],[0,-1],[-1,-3],[-2,0],[0,16],[0,16],[-3,-8],[-2,-14],[-1,-19],[-12,0],[-4,4],[-3,9],[-1,-7],[0,-5],[1,-5],[2,-4],[-5,-1],[-11,14],[-6,4],[-7,3],[-3,8],[1,9],[5,9],[6,3],[7,2],[7,4],[3,8],[-1,26],[-1,29],[-2,0],[-1,-7],[-3,0],[-2,4],[-2,7],[-2,0],[-2,-6],[-2,-1],[-3,3],[0,8],[-2,0],[-1,-3],[-3,-5],[1,7],[1,5],[4,8],[0,5],[-6,-5],[-9,-12],[-6,-4],[-6,-2],[-3,0],[-4,2],[-5,3],[-2,5],[-4,17],[-1,8],[-2,4],[-1,1],[-5,-2],[-1,1],[-4,7],[0,1],[0,5],[1,2],[2,2],[1,3],[-2,16],[-1,0],[2,4],[0,1],[1,1],[1,2],[3,3],[9,2],[1,5],[1,2],[-2,-1],[-4,-1],[-2,-2],[2,9],[-3,-2],[-2,-3],[-1,-3],[-2,-4],[-1,0],[-3,3],[0,4],[2,5],[2,16],[-1,0],[-3,-9],[-1,-3],[-2,6],[0,5],[2,5],[1,4],[-5,-2],[-11,4],[-6,-2],[2,-3],[9,-5],[-1,-3],[0,-2],[0,-3],[-1,-4],[5,1],[3,-9],[1,-14],[-3,-11],[-2,-3],[-1,-3],[-2,0],[-1,8],[0,7],[0,7],[-2,3],[-4,-2],[2,-4],[1,-2],[-1,-7],[-1,3],[-1,0],[-1,2],[1,-5],[0,-2],[-1,-1],[-1,0],[-1,-1],[5,0],[0,-4],[-2,0],[0,-4],[7,-7],[5,-9],[1,-10],[-5,-14],[6,1],[3,0],[2,-1],[-3,-11],[-4,1],[-5,6],[-6,4],[-2,-2],[-2,-3],[-1,-4],[-1,-4],[-3,-1],[-5,0],[-2,-3],[2,-8],[-3,6],[-1,10],[-1,9],[-4,3],[0,5],[6,2],[2,-1],[1,-6],[2,0],[0,25],[-3,-5],[0,-2],[-1,-5],[-2,0],[-5,10],[1,12],[3,12],[0,10],[-2,-2],[-2,2],[-3,-14],[-2,-6],[-3,-4],[-2,6],[-6,5],[-1,5],[2,0],[2,1],[5,4],[0,3],[-5,3],[-4,-1],[-1,1],[1,9],[1,7],[3,5],[2,7],[1,10],[-2,0],[-1,-3],[-1,-5],[-2,-4],[-1,11],[0,5],[-2,0],[0,-7],[0,-8],[-1,-7],[-1,-6],[-2,0],[-2,5],[0,3],[-2,0],[3,-12],[1,-7],[0,-6],[-10,-3],[0,8],[1,7],[3,13],[-8,-4],[-3,8],[1,11],[3,5],[5,5],[6,24],[4,8],[0,3],[-4,4],[-8,13],[0,-4],[0,-3],[-1,-2],[-1,-3],[-1,1],[-1,1],[-3,2],[1,-2],[1,-1],[2,-1],[-3,-3],[-3,1],[-2,5],[0,9],[1,3],[3,3],[2,4],[-1,10],[-1,0],[0,-2],[0,-4],[0,-2],[-2,0],[-1,2],[-1,6],[-1,-10],[-1,-7],[-2,-5],[-4,-6],[-1,1],[-4,3],[0,-4],[1,-2],[1,-2],[0,-2],[1,-3],[-4,-2],[-5,-5],[-2,-7],[4,-6],[-8,4],[-1,15],[5,34],[-2,-3],[-2,-4],[-1,-4],[-1,-5],[0,-18],[-2,-13],[2,-10],[4,-10],[4,-6],[-1,0],[-3,0],[0,-3],[1,-2],[0,-1],[1,-2],[3,4],[2,-4],[2,-6],[1,-6],[-1,-7],[-2,-5],[-1,-6],[0,-10],[-3,2],[-2,0],[-1,-1],[-2,-1],[3,-3],[3,-2],[3,-4],[3,-4],[0,-4],[-4,0],[0,-2],[0,-2],[1,0],[-1,0],[-4,0],[0,-4],[2,-1],[3,-2],[3,-1],[0,-4],[-2,-3],[1,-1],[1,-4],[2,17],[2,7],[3,4],[0,-5],[-2,-3],[-1,-2],[-1,-2],[0,-6],[1,-5],[-1,-5],[2,2],[1,2],[1,1],[0,3],[1,0],[1,-1],[0,-3],[1,3],[3,9],[2,0],[1,-12],[-2,-4],[-3,-3],[-2,-10],[3,4],[1,1],[-2,-9],[-3,-3],[-3,1],[-4,3],[0,-5],[2,-1],[1,-1],[1,-1],[2,-1],[0,-5],[-1,-4],[-2,-2],[-3,-1],[2,-6],[0,-2],[-8,-7],[-2,-1],[0,3],[0,7],[2,5],[5,-3],[0,4],[-4,8],[-4,-10],[-2,-3],[-2,-3],[2,-5],[0,-4],[-1,-2],[-3,-1],[0,-4],[1,-1],[3,1],[0,-4],[-14,-3],[-5,2],[-4,9],[1,12],[4,3],[4,-4],[-1,-7],[4,1],[2,6],[1,17],[-1,0],[-2,-3],[-1,-1],[-1,2],[-2,2],[0,4],[1,3],[2,3],[2,1],[2,2],[0,4],[2,4],[3,2],[3,2],[0,4],[-13,-5],[-4,1],[4,9],[1,4],[-1,7],[-1,-3],[-2,-5],[-1,-4],[0,3],[-1,0],[-1,1],[-1,-7],[-4,0],[-13,14],[0,6],[1,11],[-5,-10],[-3,-16],[0,-18],[4,-13],[-6,0],[2,-6],[0,-2],[-2,-2],[-1,-3],[-1,-5],[-1,-6],[4,0],[1,0],[0,-4],[-1,-2],[-5,-9],[-1,-3],[-1,-8],[-2,-3],[-2,-1],[-3,-3],[-9,-15],[-4,-4],[0,7],[2,10],[7,20],[2,11],[0,4],[0,4],[-1,4],[-2,6],[-4,8],[0,3],[3,8],[-6,-6],[-1,-3],[-1,2],[1,7],[-2,-1],[-1,-3],[-1,-1],[2,-3],[1,-4],[0,-5],[-1,-4],[0,-4],[2,0],[-10,-16],[-5,-2],[-6,6],[-2,-4],[1,-6],[-1,-2],[-2,3],[-2,5],[-2,-10],[-4,0],[-4,3],[-3,-1],[3,-10],[-2,-5],[-4,0],[-7,9],[-4,2],[-4,-1],[-3,-3],[10,-15],[3,-2],[-6,0],[-2,-8],[1,-8],[2,-4],[4,1],[3,3],[4,2],[6,-2],[0,-4],[-11,-3],[-7,-6],[-13,-23],[-2,0],[1,9],[2,8],[5,12],[0,3]],[[79997,63194],[-13,27],[-4,2],[-10,20],[-8,12],[-3,7],[-3,10],[-1,7],[-2,6],[-6,5],[-9,5],[-5,1],[-5,0],[-4,-4],[-11,-16],[-5,-4],[-16,-7],[-6,0],[-12,3],[-5,-1],[-1,-4],[-3,-9],[-2,-3],[-2,0],[-3,1],[-5,4],[-4,3],[-1,21],[-3,9],[-5,3],[-5,-4],[-7,-15],[-10,-12],[-4,8],[-1,2],[-7,43],[-9,18],[-8,-2],[-9,-6],[-11,6],[-21,37],[-8,10],[-12,5],[-6,4],[-4,8],[0,12],[3,10],[4,9],[2,10],[0,12],[-3,8],[-5,5],[-6,0],[-4,-4],[-5,-5],[-5,-2],[-6,7],[-3,9],[-3,8],[-3,6],[-7,4],[-11,-1],[-5,2],[-6,6],[-1,2],[-2,6],[-2,3],[-4,2],[-2,0],[-9,-21],[-4,-6],[-4,0],[-2,4],[-1,5],[0,6],[0,5],[5,28],[2,14],[-1,15],[0,3],[-3,5],[0,4],[0,5],[0,9],[0,4],[-1,7],[-2,6],[-2,7],[-1,8],[4,9],[2,5],[1,6],[-7,43],[-1,8],[-5,8],[-11,1],[-6,4],[-4,8],[-1,9],[-1,22],[0,3],[-2,15],[0,6],[1,6],[3,9],[1,5],[7,61],[2,12],[3,7],[5,2],[4,-8],[3,-10],[4,-7],[6,0],[4,7],[4,30],[3,9],[5,18],[3,11],[1,19],[2,10],[3,6],[10,11],[2,7],[-3,7],[-6,2],[-6,-2],[-4,1],[0,1],[-5,16],[-8,13],[-3,8],[-2,3],[-3,2],[-2,-2],[-3,-8],[-2,-2],[-6,1],[-3,8],[-2,9],[-3,9],[-4,5],[-14,7],[-4,3],[-4,2],[-3,-3],[-1,-13],[-4,-5],[-40,-21],[-5,-2],[-6,0],[-5,3],[-6,5],[-2,7],[-1,22],[-6,20],[-9,11],[-11,6],[-15,3],[-22,-3],[-2,-3],[-5,-18],[-3,-4],[-5,-3],[-8,-2],[-3,0],[-5,3],[-3,-1],[-1,-3],[-1,-5],[-2,-4],[-2,-2],[-5,8],[-16,34],[-3,12],[-3,6],[-4,3],[-3,2],[-3,3],[-5,11],[-3,4],[-7,-1],[-8,5],[-20,2],[-4,3],[-3,9],[-1,11],[0,3],[-1,22],[-1,12],[-2,4],[-1,3],[-13,16],[-2,7],[-6,23],[-3,13],[-2,3],[-3,4],[-2,-1],[-2,-2],[-3,1],[-4,3],[-4,6],[-5,8],[-3,8],[-2,11],[-1,10],[-2,7],[-6,1],[-3,-5],[-10,-17],[-3,-6],[-2,-11],[-1,-12],[-2,-9],[-4,-7],[-3,-1],[-2,1],[-2,2],[-2,1],[-1,1],[-2,3],[-1,1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-22,-13],[-4,-3],[-9,-12],[-9,-10],[-10,-18],[-3,-3],[-4,1],[-7,8],[-4,1],[-3,-5],[-1,-8],[0,-9],[-2,-9],[-7,-11],[-6,-2],[-4,-7],[8,-77],[0,-12],[-1,-6],[-14,-17],[-3,-7],[-10,-27],[-3,-7],[-4,-5],[-5,-4],[-6,0],[-9,5],[-6,2],[-1,-2],[-3,-6],[-1,-2],[-3,1],[-1,2],[-1,3],[-2,2],[-1,3],[0,3],[0,3],[-2,1],[-1,-2],[-5,-11],[-18,-30],[-5,-11],[-24,-31],[-2,-3],[-4,-1],[-5,4],[-5,7],[-16,14],[-3,8],[-2,12],[0,12],[1,13],[2,12],[-8,0],[-23,-17],[-8,-1],[-4,-2],[-4,-5],[-2,-5],[-3,-12],[-2,-5],[-6,-16],[-3,-16],[-2,-36],[-1,-9],[-4,-18],[-1,-9],[0,-9],[1,-9],[-1,-7],[-3,-7],[-4,-5],[-3,5],[-2,5],[-5,2],[-2,3],[-4,15],[-2,6],[-2,2],[-4,1],[-2,1],[-6,14],[-2,2],[-2,4],[-6,18],[-1,5],[-3,7],[-19,34],[-19,45],[-3,4],[-12,-14],[-4,-5],[-2,-7],[-1,-9],[-3,-9],[-6,-15],[0,-5],[1,-25],[0,-5],[-1,-6],[-9,-26],[-3,-3],[-5,1],[-3,5],[-7,16],[-11,33],[-1,8],[-1,11],[1,10],[-1,8],[-4,5],[-2,7],[-3,6],[-3,5],[-4,4],[-6,4],[-4,-1],[-11,-38],[-5,-27],[-2,-6],[-4,-7],[-17,-18],[-7,-11],[-4,-17],[1,-5],[4,-8],[0,-7],[-1,-4],[-14,-19],[-5,-5],[-4,-1],[-4,-6],[0,-8],[1,-9],[-1,-10],[-5,-6],[-5,0],[-6,5],[-9,13],[-10,5],[-5,5],[-2,6],[-10,37],[-1,11],[-3,10],[-3,9],[-6,5],[-11,5],[-6,5],[-16,26],[-6,5],[-11,4],[-5,4],[-2,3],[-4,9],[-1,2],[-3,-1],[-2,-4],[-1,-4],[-2,-3],[-7,0],[-2,8],[0,10],[-3,12],[-6,9],[-8,5],[-6,-2],[-5,-12],[-3,-21],[-2,-10],[-4,-8],[-3,-1],[-3,0],[-3,0],[-2,-5],[1,-7],[1,-4],[3,-3],[2,-4],[1,-5],[0,-1],[-2,-8],[-34,-71],[-3,-11],[-2,-20],[-1,-10],[-4,-9],[-4,1],[-5,5],[-6,2],[-5,-2],[-5,-6],[-2,-8]],[[78366,63734],[-4,0],[-2,5],[0,5],[-1,5],[-3,4],[-2,1],[-17,9],[-6,0],[-6,-1],[-6,-5],[-12,0],[-5,-4],[-2,-11],[-2,-12],[-2,-7],[-7,2],[-7,14],[-9,39],[-8,14],[-2,0],[-2,0],[-8,-3],[-7,-7],[-5,-10],[-4,-9],[-3,-13],[0,-12],[0,-12],[0,-12],[-1,0],[-5,-10],[0,-3],[-1,-9],[-4,-25],[-1,-5],[-4,-3],[-3,1],[-4,2],[-3,0],[-3,-3],[-3,-5],[-4,-10],[1,-10],[8,-21],[4,-10],[1,-16],[-1,-12],[-2,-10],[0,-13],[3,-12],[7,-25],[3,-12],[1,-24],[3,-8],[6,-8],[10,-5],[2,-5],[0,-5],[1,-5],[0,-5],[7,-17],[3,-15],[1,-4],[7,-12],[1,-6],[-6,-33],[-1,-11],[0,-9],[1,-3],[5,-8],[1,-5],[1,-6],[-1,-12],[1,-7],[4,-5],[5,-3],[4,-5],[1,-12],[-4,-10],[-6,-4],[-6,-2],[-4,-5],[0,-10],[4,-23],[-1,-11],[-5,-13],[-1,-59],[-2,-22],[-1,-10],[2,-10],[4,-7],[15,-10],[3,-5],[3,-5],[3,-6],[1,-8],[-1,-6],[0,-2],[-1,-3],[-1,-4],[-3,-3],[-2,-1],[-6,3],[-4,-7],[1,-6],[2,-9],[-1,-6],[0,-6],[-3,-4],[-5,-3],[-6,-2],[-4,0],[-4,7],[-5,18],[-4,7],[-6,0],[-11,-9],[-4,1],[-1,6],[1,5],[2,6],[0,6],[-1,6],[-1,2],[-2,0],[-9,7],[-6,2],[-7,0],[-31,-12],[-6,-4],[-13,-18],[-6,-6],[-5,-1],[-4,3],[-4,8],[-3,8],[-4,17],[-3,7],[3,21],[0,9],[-1,2],[-2,5],[-1,4],[5,12],[3,17],[0,4],[-1,0],[-1,0],[-5,7],[-8,9],[-3,3],[0,13],[5,48],[0,17],[-4,10],[-4,0]],[[78099,63233],[-1,10],[1,10],[2,9],[2,7],[-2,6],[1,9],[-2,12],[-4,11],[-3,5],[-3,6],[-1,29],[-1,9],[-10,4],[-4,-3],[-4,-4],[-3,-5],[-14,-20],[-5,-5],[-27,-16],[-12,-11],[-11,-19],[-11,-33],[-14,-32],[-12,-12],[0,-1],[-5,-9],[-6,-6],[-14,-8],[-7,-2],[-14,6],[-6,-3],[-5,-1],[-4,5],[-2,8],[-2,11],[-8,13],[-4,6],[-6,2],[-6,-1],[-4,-3],[-4,-7],[-3,-10],[0,-1],[-4,-7],[-4,-4],[-8,-7],[-4,-4],[-9,-14],[-3,-3],[-7,5],[-9,27],[-6,8],[-3,7],[-2,12],[-1,13],[0,10],[1,9],[1,10],[3,10],[3,8],[3,3],[3,1],[2,2],[1,6],[-1,3],[-2,4],[-5,7],[-10,7],[-24,1],[-10,11],[-3,9],[-3,33],[-5,21],[-1,10],[1,14],[10,43],[2,22],[-4,20],[-3,6],[-1,8],[0,8],[2,7],[-21,8],[-5,-2],[-2,-5],[0,-12],[-2,-4],[-4,-1],[-2,3],[-1,5],[-3,4],[-16,17],[-5,2],[-5,-5],[-3,-9],[-3,-5],[-5,6],[-2,4],[-2,10],[-2,5],[-3,3],[-26,13],[-9,-2],[-5,0],[-14,12],[-4,-1],[-16,-14],[-10,-2],[-22,4],[-11,6],[-13,12],[-6,12],[9,9],[-5,10],[2,12],[10,24],[1,9],[4,29],[2,7],[5,11],[1,8],[0,7],[-2,4],[-1,5],[2,7],[11,11],[17,36],[2,7],[2,7],[-1,6],[-2,10],[-1,6],[1,12],[2,20],[0,13],[-13,66],[0,15],[2,5],[3,4],[3,2],[4,2],[2,4],[5,23],[7,16],[3,10],[1,10],[-2,27],[1,7],[5,3],[15,-16],[8,0],[7,10],[-1,14],[-10,27],[-3,10],[1,9],[1,9],[-1,9],[-4,5],[-21,1],[-6,8],[-8,22],[-5,6],[-6,-1],[-3,-9],[-2,-9],[-3,-5],[-5,-3],[-2,-2],[-6,-10],[-3,-4],[-3,1],[-2,2],[-2,3],[0,4],[0,11],[-2,2],[-2,0],[-1,0],[-1,1],[-4,0],[-7,5],[-3,1],[-10,-3],[-5,0],[-5,5],[-5,10],[-2,11],[-1,9],[-5,1],[-5,-2],[-6,2],[-10,6],[-21,4],[0,19],[14,51],[-4,15],[-10,0],[-1,1],[-1,6],[3,3],[3,3],[2,3],[3,10],[0,12],[0,12],[-4,23],[-4,12],[-4,8],[-5,0],[-6,-4],[-2,4],[-6,31],[1,9],[4,6],[13,15],[2,4],[2,9],[-1,3],[-2,3],[-11,36],[-2,10],[-1,30],[-1,9],[-4,6],[-11,4],[-9,5],[-6,0],[-3,2],[-3,6],[0,3],[1,4],[1,4],[-2,44],[0,8],[2,14],[1,5],[-3,10],[-2,5],[2,5],[4,4],[6,3],[5,4],[13,23],[25,33],[5,19],[-2,17],[0,1],[-3,-4],[-10,-6],[-29,-4],[-9,-9],[-12,-4],[-7,-7],[-5,-3],[-3,-4],[-4,3],[-8,7],[-11,17],[-8,4],[-11,1],[-11,-1],[-4,-4],[-9,-10],[-5,-3],[-10,0],[-21,10],[-10,1],[-21,-10],[-60,-47],[-4,-5],[-11,-25],[-5,-8],[-4,-2],[-4,-1],[-6,-4],[-6,-7],[-14,-28],[-5,-5],[-6,-4],[-3,-2],[-2,-3],[-4,-10],[-1,11],[-1,6],[-2,5],[-10,14],[-11,10],[-5,11],[53,108],[4,13],[1,14],[-2,6],[-4,11],[0,7],[0,6],[2,4],[2,3],[2,5],[-2,21],[-20,15],[-2,15],[4,6],[6,2],[4,3],[0,13],[-2,6],[-5,7],[-2,7],[0,6],[-1,6],[-2,6],[-2,4],[-4,2],[-6,0],[-23,-7],[-2,5],[0,13],[7,81],[-1,74],[1,13],[18,25],[11,18],[6,7],[6,2],[11,-4],[7,0],[4,5],[2,12],[-3,9],[-10,16],[-5,18],[-1,20],[1,40],[-2,22],[1,5],[5,3],[5,7],[4,13],[7,27],[6,47],[6,14],[11,-10],[3,-10],[2,-8],[3,-5],[5,1],[6,6],[13,32],[4,6],[12,11],[3,7],[5,25],[3,13],[4,6],[6,1],[1,5],[-1,8],[1,23],[-1,5],[-1,6],[-2,15],[0,4],[2,4],[5,9],[3,8],[1,9],[0,29],[0,7],[3,1],[23,-16],[4,-4],[8,-16],[4,-1],[6,4],[6,6],[4,6],[3,9],[3,26],[2,8],[10,25],[1,5],[0,7],[1,7],[1,4],[3,3],[1,4],[4,21],[3,10],[3,6],[7,15],[3,4],[5,1],[3,-3],[7,-11],[8,-5],[2,-3],[3,-1],[4,4],[15,21],[2,6],[1,8],[1,8],[-1,7],[-1,4],[-4,2],[-1,2],[-3,12],[-9,26],[-2,6],[-4,2],[-3,-1],[-3,1],[-2,7],[1,14],[-1,10],[-6,21],[-2,11],[0,10],[1,9],[4,6],[11,5],[4,4],[2,-1],[0,-22],[2,-6],[3,0],[11,16],[1,5],[0,13],[2,3],[2,3],[1,6],[-1,9],[-6,29],[-3,5],[-6,-2],[-1,6],[0,10],[2,11],[2,13],[11,25],[3,10],[2,11],[1,11],[1,77],[2,20],[5,20],[2,11],[-1,13],[-1,6],[0,5],[0,5],[0,5],[-4,19],[0,12],[5,22],[0,12],[-2,11],[-7,19],[-1,12],[1,6],[4,9],[1,6],[0,6],[-7,52],[3,11],[3,10],[1,10],[-1,12],[-5,8],[-3,3],[-4,3],[-2,11],[-3,38],[1,20],[1,17],[7,40],[1,19],[-3,19],[-2,2],[-2,1],[-1,1],[-1,6],[-2,53],[1,24],[3,24],[-1,12],[-1,6],[-3,6],[-2,6],[-3,3],[-3,-1],[-3,-3],[-2,-4],[-4,-4],[-7,0],[-4,7],[-6,23],[-6,8],[-8,-7],[-5,8],[-14,14],[-4,2],[-2,-5],[-1,-12],[0,-21],[-1,-20],[-3,-18],[-5,-14],[-10,-6],[-10,8],[-5,20],[-6,46],[-4,19],[-10,28],[0,6],[2,14],[-1,3],[-1,3],[-2,6],[1,11],[0,8],[-1,6],[-9,12],[-5,10],[-2,11],[5,6],[6,5],[0,9],[-3,10],[-5,9],[-10,10],[-2,7],[3,13],[1,12],[2,53],[0,11],[-3,10],[-1,2],[-18,33],[-5,5],[-11,3],[-2,6],[3,17],[-1,10],[-3,7],[-10,11],[-13,33],[-11,9],[-17,-16],[-9,5],[-7,18],[-11,63],[-8,13],[-8,-7],[-8,-10],[-6,8],[-7,18],[-6,8],[-5,-6],[-4,-20],[-3,-10],[-4,-22],[-3,-9],[-1,-7],[-2,-4],[-4,-9],[-2,-6],[1,-5],[1,-5],[0,-6],[0,-22],[-1,-12],[-3,-7],[-6,0],[-5,2],[-4,-3],[-1,-12],[-3,-6],[-10,-11],[-2,-11]],[[75453,66909],[-2,42],[1,13],[2,15],[3,12],[1,11],[-4,14],[-4,6],[-6,6],[-6,3],[-12,3],[-11,8],[-10,0],[-4,2],[-3,1],[-5,4],[-21,21],[-9,15],[-5,21],[-6,-11],[-7,-1],[-7,2],[-7,-3],[-5,-7],[-12,-26],[-4,-11],[-7,-14],[-12,-5],[-12,2],[-9,9],[-4,8],[-14,22],[-16,7],[-18,2],[-9,4],[-8,4],[-12,15],[-4,2],[-5,-2],[-8,-8],[-7,-2],[-6,-2],[-18,5],[-5,0],[-5,-1],[3,31],[8,17],[10,2],[5,19],[8,6],[-2,20],[-11,8],[-12,2],[-14,19],[-11,0],[-8,10],[-9,0],[-7,-26],[-11,3],[-8,23],[0,21],[-10,14],[-7,-6],[-7,-14],[-6,-2],[-8,8],[-15,6],[-22,-14],[-6,-2],[-5,-6],[-10,5],[-10,-11],[-2,2],[-3,-3],[-2,-5],[-5,-12],[-2,-5],[-9,-11],[-5,-7],[-2,-9],[-5,-17],[-10,-9],[-33,-12],[-6,-3],[-5,-6],[-12,-31],[-6,-8],[-5,-4],[-5,-8],[-4,-10],[-7,-21],[-1,-4],[-13,-47],[-9,-24],[-10,-15],[-12,-9],[-9,-12],[-2,-22],[-5,-24],[-12,-38],[-8,-23],[-1,-7],[-1,2],[-3,2],[-1,0],[-1,1],[-3,1],[-8,-6],[-3,-4],[-4,-9],[-1,-9],[-5,-2],[-4,-9],[1,-6],[-4,-7],[-4,-4],[-1,-8],[1,-6],[1,-6],[1,-3],[-5,-8],[-2,-13],[-2,-14],[3,-24],[5,-23],[5,-14],[-7,-11],[-6,10],[-10,1],[-6,-9]],[[74477,66969],[-7,3],[-12,12],[-6,5],[-3,-1],[-8,-6],[-3,-1],[-4,1],[-6,6],[-2,2],[-22,2],[-6,5],[-3,-1],[-3,-9],[-4,-16],[-5,-14],[-7,-12],[-8,-7],[-8,-1],[-6,4],[-5,4],[-6,2],[-5,-2],[-8,-9],[-5,0],[-2,4],[-2,5],[-1,4],[-1,3],[-5,3],[-5,-1],[-11,-5],[-25,-13],[-5,0],[0,9],[4,9],[1,8],[-6,4],[-8,-5],[-6,-11],[-6,-7],[-16,8],[-15,-3],[-7,1],[-11,11],[-15,37],[-9,18],[-6,8],[-5,1],[-2,-2],[-3,-1],[-9,-3],[-7,1],[-6,6],[-4,9],[-3,15],[-7,11],[-20,-1],[-8,5],[-2,8],[1,18],[-2,7],[-3,7],[-6,6],[-5,4],[-5,1],[-3,-3],[-7,-11],[-4,-2],[-4,4],[-4,7],[-4,5],[-4,-2],[-3,-6],[-1,-9],[0,-10],[0,-8],[-2,-8],[-3,-6],[-1,-7],[0,-10],[0,-14],[-2,-11],[-4,-9],[-6,-6],[-10,-10],[-4,-1],[-5,5],[-10,14],[-2,3],[-3,-1],[-2,-2],[-2,-2],[-3,1],[-2,4],[-7,15],[-5,7],[-5,2],[-6,1],[-5,4],[-4,4],[-2,7],[-2,18],[-2,6],[-2,5],[-1,5],[2,10],[2,12],[0,15],[-3,11],[-6,2],[-24,-47],[1,-6],[3,-9],[1,-4],[-1,-3],[-1,-11],[0,-4],[0,-4],[0,-4],[3,-3],[2,-6],[0,-5],[0,-5],[0,-6],[1,-5],[2,-3],[1,-4],[1,-7],[-2,-2],[-9,-17],[-4,-3],[-2,-1],[-1,0],[-7,1],[-12,-2],[-5,3],[-3,15],[0,12],[1,12],[0,12],[-3,11],[-10,16],[-3,8],[-2,14],[0,7],[0,6],[-1,5],[-4,12],[-2,13],[-1,7],[-4,9],[-6,7],[-12,10],[-7,9],[-7,11],[-5,13],[-4,15],[-1,26],[-1,13],[-4,-1],[-1,-5],[0,-6],[0,-5],[-2,-3],[-6,-4],[-2,-4],[-8,-22],[-3,0],[-4,8],[-6,7],[-6,3],[-6,1],[-6,0],[-6,-2],[-9,8],[-4,3],[-4,-1],[-4,-4],[-7,-14],[-4,-4],[-5,1],[-3,5],[-2,5],[-4,3],[-3,-1],[-8,-7],[-4,-1],[-4,0],[-5,3],[-5,3],[-9,16],[-6,-2],[-5,-5],[-7,0],[-6,7],[-2,8],[0,8],[1,18],[0,11],[-2,33],[2,6],[7,8],[1,8],[1,11],[0,3],[2,5],[4,3],[2,3],[2,6],[1,4],[3,30],[-2,7],[-14,8],[-10,14],[-5,4],[-7,-3],[-2,-3],[-1,-5],[-3,-10],[-2,-5],[-2,-2],[-3,-2],[-8,-8],[-2,-4],[-3,-14],[-2,-3],[-3,-2],[-3,1],[-5,3],[-3,1],[-16,-2],[-3,1],[-3,2],[-5,8],[-8,15],[-5,6],[-13,1],[-3,5],[1,27],[-3,5],[-5,2],[-6,4],[-2,4],[-2,10],[-3,3],[-15,5],[-6,4],[-4,5],[-5,4],[-6,-1],[-7,4],[-4,12],[-4,27],[-2,5],[-6,10],[-5,14],[-3,5],[-3,3],[-19,7],[-14,16],[-3,8],[-5,16],[7,50],[-3,8],[-6,4],[-7,7],[-1,19],[-1,5],[-2,4],[-6,12],[-2,11],[3,10],[4,9],[2,10],[-2,8],[-4,1],[-4,-1],[-4,2],[-2,6],[-2,16],[-2,6],[-5,0],[-6,-4],[-5,-1],[-3,7],[-3,6],[-3,1],[-4,-1],[-3,-4],[-1,8],[-1,4],[-3,3],[-4,2],[-3,0],[-5,-2],[-9,-4],[-1,-3],[-3,-8],[-2,-2],[-6,-4],[-13,-11],[-6,-2],[-7,2],[-7,-1],[-7,-4],[-6,-10],[-2,-10],[-1,-11],[-2,-8],[-5,-3],[-4,0],[-11,4],[-3,4],[-3,4],[-7,2],[-4,3],[-2,4],[0,6],[-1,13],[-2,22],[-3,9],[-5,7],[-8,6],[-3,5],[-2,16],[-3,5],[-4,3],[-3,6],[-1,8],[0,7],[-1,7],[-8,13],[-1,7],[1,9],[-1,11],[-7,14],[-18,-7],[-5,13],[1,7],[1,4],[2,3],[1,5],[-1,9],[-2,8],[-6,12],[-3,2],[-4,3],[-2,3],[-1,2],[-1,8],[-1,3],[-4,6],[-3,2],[-3,0],[-7,-1],[-7,-3],[-2,-2],[-2,-6],[0,-8],[-2,-7],[-4,0],[-3,4],[-4,14],[-2,6],[-16,26],[-3,1],[-6,-2],[-3,1],[-2,3],[-4,9],[-3,3],[-5,-5],[-7,-9],[-6,-3],[-4,10],[-1,8],[-3,3],[-4,2],[-3,3],[-3,6],[-5,15],[-17,24],[-3,10],[1,7],[1,6],[0,5],[-3,4],[-3,0],[-5,-3],[-3,0],[-5,6],[-21,50],[-5,5],[-14,8],[-5,5],[-5,7],[-4,8],[-4,9],[-4,5],[-5,0],[-4,-1],[-4,1],[-3,4],[-3,9],[-2,4],[-7,3],[-5,0],[-6,2],[-12,14],[-6,-1],[-5,-4],[-5,2],[-3,6],[-2,12],[-2,13],[-1,8],[7,22],[1,12],[-4,7],[-7,5],[-5,7],[-3,10],[-1,15],[3,34],[-1,10],[-5,4],[-6,1],[-12,-1],[-2,-2],[-3,-3],[-3,-1],[-3,1],[-1,3],[-4,8],[-2,4],[-6,2],[-9,-2],[-12,10],[-6,-2],[-6,-4],[-6,-2],[-6,3],[-34,28],[-6,4],[-6,-2],[-2,-3],[-1,-5],[-2,-5],[-3,-4],[-6,-1],[-2,-3],[-1,-5],[-3,-22],[-3,-2],[-8,2],[-5,5],[-10,19],[-6,4],[-5,-3],[-1,-8],[1,-10],[-2,-8],[-3,-8],[0,-10],[0,-20],[0,-6],[2,-9],[0,-5],[-1,-6],[-3,-11],[-1,-18],[-2,-10],[-4,-8],[-4,-6],[-4,-1],[-4,1],[-5,-1],[-3,-4],[0,-4],[3,-9],[0,-4],[-1,-10],[-1,-4],[-1,-1],[-2,-4],[-5,-3],[-4,-5],[0,-17],[-2,-8],[-7,-2],[-13,11],[-6,0],[-8,-4],[-3,6],[0,1],[-3,26],[-2,9],[-7,19],[-3,20],[-3,11],[-4,10],[-3,5]],[[80835,62127],[2,-4],[5,-21],[-4,-4],[-3,4],[-4,1],[-5,-2],[-3,-3],[-14,-31],[-8,-19],[-3,-7],[-5,-3],[-4,4],[-4,7],[-2,9],[-1,14],[2,7],[4,3],[6,0],[-4,8],[-6,0],[-5,-5],[-4,-7],[3,-7],[3,-16],[2,-5],[-4,-14],[-1,-8],[-1,-13],[-1,-6],[-3,-8],[-4,-6],[-3,-2],[0,-4],[1,-6],[-2,-6],[-3,-5],[-4,-3],[-2,-1],[-5,1],[-2,0],[-1,-3],[-3,-11],[-1,-3],[-3,-4],[0,-10],[2,-11],[0,-7],[-3,-9],[-7,-4],[-1,-10],[-2,-19],[-3,-20],[-4,-18],[-5,-14],[-2,-12],[-1,1],[-2,3],[-6,-6],[-1,-1],[-10,0],[-2,1],[-1,4],[-2,4],[-3,2],[0,-4],[3,-6],[2,-6],[3,-6],[4,-2],[4,2],[1,4],[1,1],[3,-7],[0,-5],[0,-20],[2,9],[4,29],[1,0],[-3,-30],[-1,-20],[-1,-6],[-4,-9],[-5,-13],[-3,-15],[-3,-17],[0,-21],[0,-4],[1,-5],[0,-5],[-1,-5],[-2,-1],[-3,0],[-1,-2],[-1,-3],[-2,-1],[-2,-1],[-1,-1],[-1,-4],[0,-12],[-1,-4],[-1,-2],[-4,-5],[-2,-4],[0,-5],[1,-4],[2,-4],[0,-3],[2,1],[4,0],[4,-2],[4,-5],[2,6],[0,5],[0,16],[-2,14],[0,8],[3,4],[1,-8],[7,-49],[-4,-2],[-3,1],[-3,-2],[-1,-5],[-2,0],[-5,3],[-5,-12],[-7,-32],[1,-6],[-1,-7],[-3,-6],[-3,-5],[-4,7],[-13,-6],[-2,5],[3,5],[6,3],[12,2],[0,5],[-2,3],[-2,0],[-5,-8],[-14,-6],[-6,-10],[-2,0],[-8,3],[-12,-15],[-20,-37],[-10,-14],[-5,-10],[-4,-21],[-5,-1],[-10,6],[0,-4],[4,-6],[7,-4],[3,-7],[-1,-7],[-3,-23],[0,-10],[-2,0],[0,12],[-2,6],[-3,0],[-1,-8],[1,-9],[2,-7],[0,-5],[-3,-5],[-4,-1],[-9,1],[-7,4],[0,10],[2,0],[3,-1],[4,-1],[4,4],[1,5],[1,7],[0,7],[-1,5],[0,-3],[-3,-6],[-1,-3],[0,2],[-3,6],[0,-2],[0,-4],[0,-2],[-3,3],[-2,-2],[-1,-5],[-2,-4],[-2,-1],[-1,0],[-1,0],[-10,1],[-5,-1],[-4,-4],[-13,-15],[-3,2],[-1,3],[0,4],[-2,3],[-5,1],[-5,0],[-5,-2],[-4,-3],[1,-13],[-6,-42],[1,-18],[-4,0],[-1,4],[0,5],[-2,3],[-2,-2],[-8,-10],[0,-4],[5,1],[2,0],[5,-5],[1,0],[5,1],[1,-1],[1,-5],[-1,-4],[-2,-6],[-1,-5],[-2,-6],[-3,-5],[-2,-2],[-3,3],[-2,7],[-2,15],[-4,-5],[-9,-6],[-2,-4],[-1,-2],[-4,-5],[-1,-3],[1,-3],[2,-9],[1,-4],[-4,3],[-4,0],[-3,-2],[-2,-5],[-2,0],[0,4],[2,10],[-1,5],[-1,2],[-1,2],[-1,3],[0,2],[-2,0],[0,2],[1,3],[1,2],[1,1],[1,0],[0,4],[1,3],[0,4],[-1,6],[-3,-9],[-3,-4],[-3,-6],[1,-10],[-6,2],[-9,-12],[-4,6],[4,6],[2,5],[2,4],[5,1],[0,5],[-1,8],[-2,4],[-2,-8],[-3,11],[-5,9],[-7,6],[-29,9],[-32,1],[-8,-4],[-5,-7],[-3,0],[-3,7],[-2,9],[0,8],[-1,7],[-3,4],[2,8],[-4,-1],[-3,1],[-3,3],[-3,2],[-25,-1],[-3,1],[-3,4],[-3,5],[-2,6],[-2,5],[-4,4],[-15,10],[-2,4],[-3,6],[-10,15],[-10,11],[-5,4],[-6,2],[-12,1],[-5,3],[-3,7],[-2,10],[-1,13],[2,10],[2,10],[1,10],[2,46],[-1,22],[-3,21],[-4,20],[-5,14],[-4,7],[-3,7],[-1,7],[2,12],[5,20],[2,11],[0,14],[0,12],[-1,5],[-1,2],[-1,4],[0,21],[-8,49],[4,5],[4,8],[4,10],[1,9],[5,-2],[1,-1],[0,3],[-2,4],[-1,6],[-1,13],[-1,9],[-4,2],[-5,0],[-3,3],[0,6],[2,6],[2,6],[-3,16],[2,6],[2,5],[3,3],[-1,3],[-1,4],[2,0],[3,-1],[1,3],[-1,4],[1,2],[3,2],[0,4],[-2,5],[1,5],[2,4],[1,4],[1,8],[2,1],[6,-3],[4,2],[6,5],[3,1],[2,3],[6,17],[2,2],[5,8],[3,3],[12,8],[9,21],[6,8],[4,-9],[2,0],[0,4],[-1,9],[4,12],[10,20],[3,12],[1,5],[2,3],[15,4],[3,3],[7,8],[4,3],[3,5],[1,1],[0,1],[6,3],[10,18],[4,11],[0,12],[2,4],[2,-1],[7,4],[4,1],[4,-1],[3,-3],[4,-8],[2,0],[-2,9],[-5,11],[-2,7],[6,2],[0,3],[-2,0],[0,5],[2,1],[1,1],[2,6],[-2,0],[-3,0],[-2,2],[-2,2],[-4,-9],[-7,-10],[-7,-7],[-3,-3],[-5,-5],[-1,-4],[-2,-3],[-2,0],[1,11],[-1,28],[1,9],[3,5],[3,3],[3,5],[1,3],[2,6],[1,3],[2,4],[1,0],[2,0],[1,2],[4,6],[1,4],[0,6],[1,8],[2,1],[2,0],[3,1],[6,12],[2,-2],[1,-11],[2,-5],[5,-1],[8,-1],[8,-11],[5,-5],[4,2],[4,5],[3,-5],[2,-9],[1,-9],[2,0],[2,6],[4,3],[5,3],[4,4],[2,-5],[3,0],[5,3],[6,-1],[0,3],[-15,8],[-3,4],[-1,14],[3,4],[8,-1],[1,4],[-2,6],[-2,3],[-1,-3],[-1,-2],[-2,4],[-1,6],[0,6],[15,20],[4,5],[5,3],[4,0],[3,-4],[1,0],[3,6],[5,3],[5,1],[5,-1],[2,2],[2,0],[2,-2],[0,-5],[-2,-8],[2,-4],[0,-4],[-1,-3],[-2,-5],[3,0],[3,12],[7,-2],[12,-14],[1,9],[0,9],[2,6],[3,-4],[2,-7],[1,-9],[0,-9],[-1,-7],[5,6],[5,7],[3,9],[0,10],[4,0],[5,3],[2,-1],[1,-2],[1,1],[1,2],[1,1],[2,0],[0,-2],[0,-3],[0,-3],[4,-6],[4,-12],[1,-9],[-7,-1],[3,-8],[3,-5],[5,-2],[4,3],[0,4],[-3,5],[2,4],[4,5],[0,10],[10,10],[5,2],[2,1],[4,-1],[3,-2],[2,-6],[4,6],[4,13],[3,6],[-3,-2],[-4,-8],[-2,-3],[-3,-1],[-10,1],[13,10],[4,7],[2,6],[3,19],[2,7],[4,-4],[11,-7],[3,-1],[3,-2],[4,-3],[4,-3],[6,0],[4,3],[6,11],[2,2],[6,-2],[3,-5],[3,-6],[2,-7],[0,-4],[-2,-7],[2,-7],[6,-11],[2,-8],[1,-17],[1,-7],[2,0],[-1,5],[0,1],[-1,2],[0,4],[2,0],[0,4],[-1,4],[-2,13],[0,3],[-3,1],[-2,4],[-1,5],[-1,7],[-1,16],[-1,2],[0,12],[0,5],[2,5],[12,-20],[2,2],[10,-11],[8,-5],[8,-2],[0,-4],[-2,0],[0,-4],[5,-4],[4,-7],[3,-2],[4,8],[1,-11],[5,-21],[1,-10],[1,-3],[2,2],[2,4],[1,5],[-1,5],[0,5],[-1,4],[2,4],[-4,11],[-1,10],[-1,8],[-6,4],[-3,2],[0,6],[1,6],[0,4],[-2,7],[1,6],[7,17],[3,2],[10,-2],[3,5],[5,23],[2,5],[2,-6],[7,-47],[4,-6],[8,-10],[6,-16],[4,-6],[22,-8],[6,1],[1,2],[0,2],[1,0],[2,-4],[4,8],[4,-10],[12,-76],[2,-35],[4,-35],[1,-16],[-2,-16],[1,-5],[3,-1]],[[81100,63296],[7,0],[3,-3],[2,-5],[0,-5],[-2,-9],[-5,-5],[-14,-6],[-3,0],[-3,-1],[-3,-3],[-3,-4],[-5,-9],[-2,-3],[-11,-4],[-4,2],[1,2],[1,2],[2,2],[5,19],[1,10],[-2,12],[3,2],[10,1],[3,2],[6,6],[3,1],[1,-2],[1,-2],[1,-3],[2,-2],[2,1],[1,3],[2,1]],[[81290,63328],[2,-8],[-1,-6],[-2,-6],[-1,-8],[3,-9],[0,-6],[-7,-4],[-2,-8],[-3,-2],[-8,0],[-3,1],[-3,3],[-2,-4],[-3,-10],[-1,-2],[-3,2],[-1,4],[-1,6],[2,6],[10,13],[2,7],[-3,11],[6,3],[12,12],[7,5]],[[81345,63365],[5,-3],[1,-7],[-1,-7],[-9,-6],[-3,-6],[-2,-5],[-4,-7],[1,-9],[2,-11],[0,-8],[-2,-12],[-2,-9],[0,-9],[4,-11],[-3,-6],[-2,-1],[-7,3],[-1,1],[-1,2],[-1,4],[0,8],[-1,1],[-2,0],[-2,2],[-1,10],[10,20],[1,17],[-4,-3],[-6,-3],[-6,-1],[-3,5],[2,8],[4,8],[6,10],[5,0],[3,24],[5,-4],[4,4],[3,1],[8,0],[-1,0]],[[81497,63515],[2,-4],[1,-2],[0,-2],[1,-4],[-23,2],[-4,8],[10,26],[2,3],[3,1],[3,3],[1,5],[1,0],[1,0],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[2,-2],[4,4],[-1,-7],[-5,-21]],[[81489,63592],[-3,-16],[-5,-18],[-6,-14],[-7,-5],[-2,4],[-3,8],[-2,10],[3,8],[2,2],[3,2],[2,2],[1,3],[1,4],[1,4],[2,4],[2,2],[1,-7],[2,2],[4,4],[4,1]],[[81553,63963],[3,-7],[0,-6],[-3,-4],[-4,-1],[-6,2],[-4,7],[-2,9],[-2,10],[-2,-8],[-4,6],[-3,9],[-4,21],[-2,0],[0,-14],[-5,3],[-6,11],[-9,20],[-2,9],[3,6],[7,2],[12,-6],[4,-5],[10,-27],[6,-7],[7,-3],[1,-4],[3,-17],[2,-6]],[[82519,64371],[5,-7],[4,4],[1,8],[5,0],[-1,-10],[3,-3],[3,-6],[-2,-18],[-2,-12],[-6,3],[-7,4],[-9,-4],[-7,6],[-3,1],[-3,2],[-3,0],[-6,0],[-6,1],[-2,5],[3,7],[4,7],[4,4],[2,-3],[1,-4],[2,-4],[3,-1],[2,1],[3,1],[3,2],[1,11],[2,5],[4,3],[2,-2],[0,-1]],[[82629,64537],[10,-2],[6,-6],[-2,-14],[-6,2],[-3,-5],[-2,-13],[0,-16],[-3,-3],[-6,4],[-4,-2],[-3,-9],[-1,-11],[0,-11],[2,-4],[2,-11],[-16,-6],[-15,1],[5,13],[9,15],[7,34],[-2,3],[-4,3],[-3,1],[-2,-1],[-3,-3],[-1,3],[0,6],[10,17],[0,11],[1,0],[-2,12],[3,4],[5,0],[3,-1],[2,-11],[4,-2],[4,-5],[5,7]],[[83140,65889],[17,-13],[9,-11],[1,-11],[-4,-6],[-2,0],[-3,2],[-7,3],[-10,6],[-2,3],[-4,2],[-4,2],[-5,2],[-2,7],[-1,8],[-2,7],[-3,5],[-3,7],[-2,24],[3,-6],[6,-19],[4,-6],[4,-3],[10,-3]],[[83681,67135],[3,-11],[6,-12],[-2,-10],[-3,0],[-3,0],[-3,2],[-3,3],[0,-5],[-1,-2],[0,-1],[1,-5],[-1,-4],[-4,2],[0,-6],[-4,-2],[-5,-6],[-5,-1],[-5,-1],[-1,10],[2,8],[0,4],[-3,3],[-2,6],[-1,6],[0,6],[-1,8],[-2,5],[1,3],[3,1],[8,5],[6,11],[5,12],[1,6],[1,5],[5,7],[7,-3],[4,-12],[0,-7],[-2,-8],[-2,-17]],[[83954,68422],[-9,-13],[0,-4],[5,-4],[2,0],[-3,-5],[-1,-4],[0,-5],[0,-4],[-4,-4],[-4,1],[-4,3],[-10,4],[-6,6],[-12,16],[3,6],[1,2],[3,3],[2,2],[5,3],[7,1],[2,1],[3,6],[8,4],[5,4],[4,-8],[-2,-4],[0,-3],[2,-3],[3,-1]],[[83999,68506],[3,-2],[2,-6],[2,-16],[-6,2],[-11,9],[-4,1],[-12,-7],[-6,-1],[-3,8],[1,1],[3,3],[-3,2],[-1,3],[0,5],[0,6],[1,6],[1,2],[2,0],[1,-7],[2,0],[4,1],[7,-8],[3,1],[6,10],[-1,-9],[2,-3],[3,-1],[4,0]],[[83843,69050],[4,-1],[4,-4],[3,-7],[1,-10],[-1,-10],[-3,-10],[-4,-6],[-5,0],[-3,5],[-3,11],[-5,29],[3,3],[9,0]],[[83299,69495],[6,-26],[0,-5],[-3,1],[-9,16],[-4,4],[-8,4],[-3,3],[-2,0],[-1,1],[-2,4],[1,3],[1,2],[0,3],[-1,14],[3,7],[3,7],[2,8],[-8,5],[-11,10],[-8,12],[-1,14],[9,12],[10,-1],[8,-9],[5,-14],[12,-58],[1,-17]],[[83977,73664],[3,9],[7,9],[7,7],[6,4],[-3,-6],[-1,-6],[0,-4],[2,-13],[2,-4],[-4,-4],[-3,5],[-6,-5],[-6,-3],[-4,11]],[[84065,73705],[7,-1],[16,5],[6,-3],[-1,-8],[-3,-8],[-10,-9],[0,4],[0,4],[1,4],[1,4],[-4,2],[-13,2],[0,4]],[[84078,73721],[-11,-4],[-16,2],[-15,8],[-8,15],[9,1],[3,-1],[10,-8],[17,-3],[5,-4],[6,-6]],[[83728,73847],[5,-7],[2,-7],[-2,-6],[-7,0],[0,-4],[2,-2],[2,-4],[1,-4],[0,-4],[0,-14],[-4,-8],[-5,-1],[-14,1],[-4,3],[0,5],[5,12],[5,6],[2,5],[0,5],[-1,5],[-4,2],[-3,-1],[-3,-2],[-4,-8],[-4,-11],[-4,-10],[-7,-4],[-2,1],[-2,3],[0,5],[0,7],[1,9],[1,4],[8,6],[2,1],[3,1],[2,4],[1,4],[1,4],[1,5],[3,3],[3,1],[10,-5],[7,1],[3,-1]],[[84156,73871],[1,15],[6,5],[8,-3],[6,-8],[-3,-13],[-7,-6],[-7,1],[-4,9]],[[80720,62882],[3,-3],[3,-1],[3,-2],[1,-7],[0,-7],[-2,-6],[-4,-11],[-6,-8],[-3,3],[-4,9],[-4,8],[7,18],[5,7],[3,3],[-2,-3]],[[80707,62928],[-1,-8],[-5,-20],[-2,-10],[1,-6],[1,-7],[0,-5],[-3,-3],[-2,2],[-2,4],[0,6],[0,7],[-2,5],[-5,8],[-5,6],[-5,3],[-21,0],[-9,-6],[-9,-9],[-9,-5],[-6,8],[4,4],[1,7],[-1,7],[-4,7],[5,3],[3,1],[4,-1],[0,4],[-3,1],[-2,2],[0,4],[1,5],[4,-4],[6,0],[5,2],[2,7],[-4,-3],[-4,-2],[-3,2],[-2,6],[15,0],[8,4],[5,9],[3,-19],[2,-9],[3,-5],[1,7],[3,3],[3,2],[4,0],[-2,0],[6,1],[3,3],[3,5],[4,4],[5,0],[3,-6],[2,-9],[1,-12]],[[80726,63020],[-5,-8],[-6,-28],[-3,-11],[-6,-5],[-7,4],[-4,9],[1,10],[-3,2],[-2,2],[-2,3],[-1,5],[-2,0],[2,-8],[-5,1],[-3,3],[-2,5],[2,8],[-2,0],[-5,0],[-2,0],[0,4],[4,1],[3,4],[2,4],[3,3],[7,2],[4,-2],[-1,-6],[-7,-1],[-3,-2],[5,-3],[4,-1],[3,2],[6,8],[2,2],[1,0],[2,0],[1,-1],[5,-5],[1,-1],[-4,-9],[-1,-5],[-1,-7],[2,0],[6,20],[5,7],[6,-2],[0,-4]],[[82803,65012],[5,-6],[7,-5],[7,-3],[5,2],[1,-8],[2,-11],[-1,-6],[-2,-6],[-2,-3],[-3,-4],[0,-9],[-2,-11],[-5,-5],[-6,1],[-6,4],[-4,4],[-2,5],[-1,4],[1,5],[3,3],[3,1],[3,3],[0,8],[-6,-7],[-2,1],[-1,9],[1,8],[4,16],[1,10]],[[83290,65593],[-3,7],[-5,-2],[-4,-8],[-1,-9],[2,-12],[9,-10],[2,-11],[-7,4],[-8,-3],[-6,-7],[-4,-10],[0,-7],[1,-7],[-1,-3],[-5,2],[-5,3],[-5,6],[-3,8],[2,11],[0,2],[3,4],[0,2],[1,2],[0,4],[-1,4],[0,1],[-3,-3],[-3,-1],[-3,1],[-3,3],[3,8],[2,4],[3,1],[15,-4],[5,2],[3,9],[-5,5],[-10,-3],[-2,7],[0,5],[4,21],[-1,6],[-3,0],[-2,-3],[-2,-5],[-3,10],[2,11],[4,10],[5,10],[4,1],[1,3],[4,4],[5,-1],[-1,-4],[-1,-9],[1,-11],[4,-8],[3,4],[3,-1],[2,-5],[3,-6],[-4,-7],[3,-4],[7,-4],[6,-5],[-4,-6],[-4,-6]],[[83876,67715],[1,-7],[-1,-4],[-6,-23],[-3,0],[-3,5],[-7,1],[3,12],[-3,10],[-5,10],[-1,12],[4,8],[6,4],[7,0],[4,-4],[3,-5],[1,-5],[0,-14]],[[83928,68078],[9,-21],[3,-14],[-7,-11],[2,12],[-1,-1],[-4,-3],[0,8],[-3,-6],[-2,-2],[-2,0],[0,3],[-1,7],[0,4],[-2,3],[-2,4],[-1,4],[-1,5],[-2,4],[-5,-1],[-5,-3],[-1,-2],[-2,1],[-2,-1],[-1,1],[-1,3],[0,5],[1,5],[1,5],[1,2],[2,3],[2,7],[3,7],[5,3],[3,1],[3,2],[2,-1],[2,-6],[0,-5],[0,-7],[0,-4],[1,-4],[4,-6],[1,-1]],[[83998,68167],[-1,-4],[-2,-3],[-1,-4],[1,-5],[3,-5],[0,-3],[0,-6],[-3,2],[-2,2],[-3,6],[-3,7],[1,5],[2,4],[1,4],[-1,7],[-1,6],[-3,3],[-5,6],[-3,4],[-1,6],[1,7],[0,3],[2,2],[1,2],[2,1],[1,-8],[4,-2],[8,2],[3,2],[2,0],[1,-4],[0,-5],[-1,-4],[-1,-3],[-2,-2],[4,-6],[-1,-7],[-3,-10]],[[83855,68281],[1,-9],[2,-3],[3,-1],[2,-5],[0,-13],[-2,-13],[-4,-10],[-5,-5],[-3,1],[-3,3],[-3,3],[-2,6],[-1,4],[1,2],[0,3],[1,4],[0,3],[0,8],[0,4],[1,6],[3,16],[1,3],[3,-1],[4,-3],[1,-3]],[[83979,68251],[0,-8],[-2,-3],[-2,-2],[-2,-4],[-1,-6],[0,-6],[-1,-14],[-1,-11],[-5,4],[-9,17],[-4,5],[-13,10],[-11,3],[-12,9],[-6,2],[-4,-1],[-4,-6],[-4,-3],[-1,-1],[-2,-2],[-2,0],[-2,2],[0,3],[0,2],[0,2],[0,2],[1,6],[-1,4],[-1,1],[-3,2],[-1,1],[-4,9],[-1,4],[-1,4],[1,3],[1,3],[1,4],[0,3],[-1,11],[-4,13],[0,7],[3,4],[31,-1],[5,-2],[4,-4],[4,-8],[2,-1],[7,-1],[1,-1],[1,-9],[3,-3],[3,1],[3,0],[7,-5],[2,-3],[2,-3],[1,-4],[2,-4],[4,-1],[5,1],[3,-3],[0,-8],[2,-4],[5,-6],[1,-4]],[[83845,69188],[21,-17],[17,-23],[1,-21],[-2,-16],[-18,-12],[-17,-11],[-10,5],[-9,11],[-15,11],[-5,7],[-8,6],[-19,9],[-12,5],[-8,14],[-7,9],[-9,7],[-22,20],[-8,12],[-9,4],[-8,9],[-4,9],[-4,19],[-17,20],[-6,11],[-5,11],[-3,6],[2,7],[3,5],[7,15],[13,6],[16,-7],[11,-6],[7,-4],[10,-9],[14,-15],[7,-12],[10,-13],[10,-9],[9,-13],[6,-9],[4,-7],[7,-7],[16,-13],[34,-14]],[[80887,59812],[-1,1],[0,1],[1,4],[1,2],[2,0],[0,-1],[0,-3],[-1,-2],[-2,-2]],[[81045,59971],[-3,1],[0,1],[2,1],[1,-2],[0,-1]],[[80305,62919],[-1,0],[-2,12],[3,11],[6,3],[4,-9],[-3,-11],[-4,-3],[-2,-1],[-1,-2]],[[83540,72938],[3,-10],[0,-9],[-1,-6],[-2,0],[-3,4],[-3,3],[-1,6],[1,17],[3,0],[3,-5]],[[83501,72962],[3,1],[2,-5],[0,-9],[0,-6],[-2,-1],[-1,1],[-1,4],[-2,9],[1,6]],[[83533,72963],[2,-7],[-2,-3],[-4,1],[-2,2],[-1,3],[-2,4],[0,2],[0,3],[4,0],[5,-5]],[[83544,73075],[3,-3],[0,-4],[-3,-1],[-2,1],[-2,2],[-2,8],[1,7],[5,-10]],[[83557,73145],[-2,-1],[0,4],[0,3],[2,3],[3,6],[4,-1],[1,-5],[-2,-3],[-2,-1],[-1,0],[-2,-2],[-1,-3]],[[83586,73201],[-1,1],[-1,4],[3,2],[2,-5],[0,-2],[-2,0],[-1,0]],[[84216,73620],[1,-3],[3,-12],[0,-8],[-3,-6],[-3,-5],[-4,-3],[-3,5],[-1,4],[1,7],[1,4],[4,-1],[0,3],[-2,3],[-2,2],[-2,1],[0,3],[7,2],[2,3],[1,1]],[[80999,60257],[0,3],[1,1],[1,0],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,0],[-1,1]],[[81314,60335],[-1,1],[-1,4],[0,1],[1,0],[1,-1],[1,-4],[-1,-1]],[[81203,60434],[-2,2],[0,3],[0,2],[1,0],[1,-3],[1,-2],[-1,-2]],[[81203,60498],[1,-1],[1,-3],[0,-2],[-2,0],[0,2],[0,4]],[[80686,62697],[1,-9],[1,-12],[-1,-9],[-1,-2],[-2,-1],[-2,-2],[-2,1],[-1,4],[-2,20],[-1,5],[-3,3],[-2,7],[1,4],[2,0],[1,1],[0,2],[1,1],[2,-3],[1,-3],[4,-2],[3,-5]],[[81465,63454],[1,-1],[1,-3],[0,-3],[-2,-3],[0,-6],[-3,-7],[-2,-3],[-2,1],[-5,6],[-1,3],[-1,2],[-1,8],[2,12],[5,5],[3,2],[2,-2],[3,-7],[0,-4]],[[81602,63499],[2,-9],[-4,-11],[-4,3],[-3,8],[0,7],[2,0],[3,2],[4,0]],[[81751,63532],[0,-4],[-1,-3],[-22,-14],[-5,3],[3,3],[15,11],[3,2],[3,3],[1,3],[1,2],[1,1],[2,0],[0,-4],[-1,-3]],[[81520,63557],[-2,2],[-1,3],[2,4],[13,8],[2,-1],[2,-3],[0,-5],[-2,-4],[2,-6],[4,-2],[-2,-6],[-15,-6],[-4,3],[1,7],[0,6]],[[81561,63759],[3,-1],[5,0],[2,-4],[0,-5],[-1,-6],[-3,-1],[0,-7],[-4,-2],[-2,-3],[-3,4],[0,9],[0,10],[3,6]],[[81540,63938],[3,-4],[2,-9],[2,-12],[1,-1],[8,-8],[9,-17],[2,-18],[-1,-14],[-3,-4],[-8,10],[-11,26],[-10,16],[-9,13],[-5,8],[0,7],[8,3],[6,6],[6,-2]],[[81535,64067],[0,-7],[5,-6],[2,-16],[0,-15],[-3,-3],[-5,9],[-4,15],[-1,18],[2,10],[4,-5]],[[82498,64424],[3,0],[1,-5],[-2,-5],[-2,-4],[-1,-3],[-1,-6],[-5,-6],[-5,2],[-4,5],[-1,6],[3,2],[3,3],[3,6],[2,3],[1,0],[2,1],[3,1]],[[83208,65399],[3,0],[1,-3],[-1,-3],[-3,-2],[-1,-6],[0,-8],[-2,-4],[-3,0],[-4,4],[-1,6],[0,5],[0,5],[-2,3],[-3,-2],[-1,-3],[-8,4],[-3,7],[-2,9],[1,4],[2,1],[1,2],[3,6],[2,-1],[1,-3],[2,0],[1,-2],[2,-6],[1,-6],[3,-5],[3,-3],[3,0],[3,1],[2,0]],[[83151,65611],[0,-4],[2,-5],[-1,-5],[-2,-17],[-2,-15],[-1,-13],[1,-11],[0,-7],[-3,-2],[-3,-2],[-3,-5],[-2,0],[-2,13],[-1,6],[-1,6],[0,11],[6,32],[0,4],[1,2],[1,1],[2,5],[1,2],[3,6],[3,2],[1,-4]],[[83229,65931],[3,-11],[2,-6],[-2,-5],[-5,-4],[-15,10],[-3,9],[5,14],[7,5],[4,-4],[4,-8]],[[83423,66424],[-2,5],[0,6],[1,2],[1,0],[3,5],[2,1],[2,-1],[1,-1],[1,-2],[1,-1],[2,-5],[1,-7],[1,-2],[2,-1],[1,-2],[-10,-7],[-7,10]],[[83631,66743],[2,-3],[3,-4],[3,-4],[0,-5],[-3,1],[-5,2],[-2,-1],[1,-5],[2,-5],[-3,-1],[-2,4],[-3,8],[-1,5],[2,5],[6,3]],[[83661,66972],[2,-1],[0,-5],[0,-4],[-1,-2],[0,-1],[-2,-1],[-1,1],[-1,-1],[1,-9],[-1,-5],[-3,0],[-4,4],[-2,0],[-3,-3],[-3,-1],[-6,0],[0,6],[5,9],[5,2],[5,-1],[2,2],[-1,2],[0,3],[1,1],[3,1],[4,3]],[[83624,67023],[-1,0],[-2,4],[2,5],[5,9],[2,1],[1,-1],[2,-1],[8,2],[5,-4],[3,-7],[0,-5],[-4,-3],[-6,-3],[-3,1],[-3,4],[-3,1],[-6,-3]],[[83850,67721],[0,-4],[1,-5],[-2,-5],[-2,-5],[-3,-2],[-1,3],[-3,5],[-3,4],[-4,2],[-3,0],[-1,1],[-1,3],[0,5],[1,6],[1,4],[1,-1],[14,-4],[3,-5],[2,-2]],[[83973,68128],[2,-13],[0,-7],[-1,-4],[-4,1],[-6,8],[-2,3],[-4,5],[-4,11],[-1,2],[-1,5],[5,6],[6,0],[4,-2],[8,-8],[-1,-3],[-1,-4]],[[83880,68203],[4,-8],[2,-7],[0,-6],[-5,-5],[-8,2],[-3,11],[2,9],[3,6],[2,3],[2,0],[1,-3],[0,-2]],[[83984,68379],[-5,-1],[-3,0],[-3,0],[-3,-2],[-3,-1],[-2,1],[0,3],[3,4],[4,2],[3,5],[2,5],[1,2],[2,1],[3,0],[11,2],[5,-1],[2,-5],[1,-7],[0,-6],[-4,-3],[-3,6],[0,7],[-1,1],[-2,-1],[-5,-8],[-3,-4]],[[84035,68663],[-1,-4],[2,-6],[-2,-1],[-9,0],[-2,0],[-3,0],[-2,-2],[-1,-2],[-1,-1],[-1,0],[-3,2],[-4,0],[-1,4],[1,6],[1,8],[-2,6],[0,3],[3,-1],[5,-6],[4,-8],[4,-2],[3,2],[1,1],[3,1],[4,2],[1,-2]],[[83822,69050],[3,-9],[3,-10],[-1,-10],[-4,-3],[-4,6],[-9,16],[-33,42],[-4,8],[1,2],[4,-1],[4,0],[20,-14],[10,-10],[5,-9],[5,-8]],[[82953,73610],[4,-11],[0,-7],[-15,-42],[-22,-32],[-3,0],[-7,9],[3,5],[-5,17],[-1,21],[3,21],[3,5],[10,-2],[9,-26],[5,3],[9,15],[6,9],[-4,11],[5,4]],[[81021,60287],[0,2],[1,0],[-1,-2]],[[59513,68954],[4,7],[15,19],[9,20],[1,10],[-2,20],[0,10],[6,21],[31,55],[4,5],[1,0],[9,15],[0,13],[-5,12],[-8,13]],[[59578,69174],[2,10],[7,16],[24,77],[2,5],[16,64],[7,31],[6,15],[8,52],[1,3],[-1,6],[0,3],[4,4],[23,127],[9,88],[9,78],[2,5],[1,27],[2,8],[-1,8],[7,49],[1,53],[2,12],[4,4],[4,-2],[6,-6],[4,-2],[2,1],[10,19],[1,5],[3,15],[1,8],[-1,7],[-3,3],[1,9],[2,36],[4,19],[1,12],[-1,10],[1,2],[2,4],[1,2],[-2,4],[2,0]],[[59751,70065],[22,-3],[1,1],[3,5],[2,1],[2,0],[4,-2],[2,0],[10,6],[3,0],[2,-2],[1,-1],[4,-4],[2,-6],[2,-7],[3,-6],[4,-1],[15,7],[13,10],[9,2],[1,9],[6,16],[2,10],[1,15],[1,29],[2,13],[3,8],[1,9],[2,5],[4,1],[1,-4],[5,-14],[4,-5],[1,-2],[1,2],[-1,11],[2,5],[4,1],[5,2],[5,8],[11,20],[5,2],[3,1],[4,2],[4,3],[3,4],[5,9],[5,20],[5,9]],[[59950,70254],[0,-4],[-1,-3],[-1,-10],[-1,-3],[0,-8],[-5,-6],[-2,-4],[-6,-5],[10,-13],[-9,-24],[2,-4],[8,-10],[1,-28],[6,-7],[1,-17],[-3,-11],[-3,-9],[0,-9],[10,-8],[0,-8],[3,-56],[2,-7],[6,-20],[-4,-13],[-2,-1],[-4,-15],[-4,-18],[1,-7],[-2,-15],[-14,-30],[-7,-20]],[[59932,69861],[-5,-2],[-15,-17],[-9,-15],[-5,-4],[-6,1],[-5,-6],[-5,-10],[-2,-4],[-2,-2],[-1,-2],[0,-5],[1,-4],[3,-3],[0,-3],[-2,0],[0,-5],[1,-5],[1,-15],[2,-8],[-1,-3],[-1,0],[0,1],[0,2],[-1,-2],[-1,-6],[-2,4],[1,-12],[1,-4],[-4,0],[0,-4],[1,0],[2,0],[2,-5],[0,-3],[3,-5],[0,-3],[-3,-2],[-1,-3],[-1,-4],[-1,-4],[1,-1],[1,-1],[0,-1],[2,-1],[0,-4],[-2,-2],[-2,-2],[2,-4],[-4,-4],[1,-1],[1,0],[0,-3],[-2,0],[0,-4],[2,-3],[0,-2],[-1,-2],[-3,-1],[1,-6],[1,-2],[1,-3],[1,-4]],[[59877,69648],[-22,11],[-7,3],[-6,0],[-7,4],[-2,15],[0,18],[-2,14],[-9,10],[-8,1],[-17,-1],[-5,3],[-8,12],[-4,3],[0,1],[-5,-1],[-4,-5],[-7,-15],[-9,-9],[-8,-8],[-8,-9],[-5,-17],[-3,-31],[-1,-10],[-2,-12],[-1,-2],[-4,-2],[-1,-2],[-1,-7],[-1,-19],[-1,-8],[3,-2],[2,-4],[1,-6],[-1,-8],[-2,-7],[-11,-18],[-4,-9],[0,-5],[4,-19],[2,-10],[3,-56],[0,-11],[0,-13],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-18],[5,-23],[4,-20],[-8,-8],[-7,-5],[-2,-8],[-1,-2],[3,-10],[9,-3],[5,0],[2,1],[2,3],[5,9],[2,3],[4,-2],[15,-12],[19,-8],[5,-6],[2,-7],[0,-10],[0,-13],[-1,-3],[-1,-1],[-2,1],[-1,3],[-17,-7],[-6,-4],[-5,-8],[-9,-18],[-23,-30],[-5,-11],[0,-2],[-5,-16],[-1,-16],[0,-17],[-2,-19],[-12,-38],[-4,-20],[3,-20],[6,-8],[7,-2],[8,2],[7,4],[17,4],[34,0],[17,11],[30,46],[16,17],[19,3]],[[59849,69120],[0,-1]],[[59849,69119],[0,-34],[0,-6],[-2,-13],[-5,-24],[-5,-17],[2,-4],[0,-13],[-4,-13],[-3,-14],[1,-16],[3,-16],[3,-11],[4,-15],[2,-16],[-2,-17],[-13,-47],[-1,-18],[0,-18],[-3,-11],[-8,-13],[-3,-6],[-4,-14],[-1,-13],[1,-14],[-1,-13],[-2,-5],[-5,-8],[-2,-5],[-2,-7],[-1,-6],[-1,-15],[-2,-15],[-16,-60],[-12,-73],[-2,-14],[-4,-24],[0,-14],[1,-6],[4,-12],[1,-9],[-1,-8],[-1,-6],[-2,-7],[-2,-7],[-3,-31],[-2,-10],[0,-17],[6,-36],[0,-19],[-5,-20],[-11,-33],[-4,-23],[0,-7],[-1,-5],[-1,-5],[-1,-5],[-2,-20],[-1,-36],[-1,-12],[-13,-65],[-2,-15],[-1,-33],[-3,-15],[-4,-11],[-2,-13],[-1,-16]],[[59709,67975],[-1,-8],[-2,-5],[-4,-11],[-3,-7],[-1,-4],[0,-4],[-1,-2],[-2,0],[-3,0],[-2,0]],[[59690,67934],[-2,9],[-7,24],[-2,14],[1,41],[-7,61],[-11,56],[-12,62],[-2,32],[0,4],[0,3],[0,4],[-1,3],[-11,57],[-16,87],[-10,49],[-3,9],[-15,24],[-2,6],[0,7],[0,10],[3,18],[0,8],[-3,7],[-4,11],[-2,10],[-1,25],[-6,47],[-17,83],[-14,68],[-11,52],[-8,50],[-11,62],[-3,17]],[[59513,68954],[-5,28],[-2,10],[-7,22]],[[59499,69014],[7,8],[4,9],[12,20],[6,19],[13,18],[5,18],[21,39],[10,26],[1,3]],[[59877,69648],[1,-4],[1,-6],[-2,0],[0,5],[-2,0],[0,-5],[1,-5],[0,-18],[3,-9],[-1,-7],[-1,-11],[1,-11],[3,-7],[-2,-2],[-1,-1],[-1,-2],[0,-4],[4,0],[-4,-28],[-1,-9],[1,-7],[0,-5],[-2,-2],[-2,-2],[0,-4],[2,-3],[-5,-15],[0,-7],[3,-7],[-5,-7],[-1,-10],[0,-28],[3,-13],[1,-7],[0,-8],[1,-5],[1,-6],[0,-5],[-1,-3],[-2,-1],[-2,-1],[-1,-5],[7,-48],[-3,-7],[0,-4],[6,-32],[-9,-18],[-7,-30],[-6,-26],[-4,-43],[-2,-44],[0,-1]],[[59751,70065],[0,1],[0,3],[-1,0],[0,2],[-1,2],[2,6],[3,7],[2,5],[7,5],[2,6],[1,7],[2,5],[-1,4],[1,0],[1,-1],[1,-3],[9,32],[1,18],[-6,15],[6,8],[4,11],[5,25],[1,8],[0,16],[1,8],[5,14],[2,7],[-1,8],[14,19],[8,14],[3,18],[0,7],[11,52],[-2,4],[4,6],[4,25],[4,5],[0,7],[11,48],[1,12],[1,24],[0,4],[-1,7],[-2,6],[-1,5],[2,5],[3,1],[3,-1],[4,-2],[1,-3],[2,0],[3,3],[4,-1],[2,0],[5,3],[1,4],[3,11],[1,5],[0,3],[0,1],[-2,0],[3,5],[3,14],[2,6],[2,1],[4,0],[2,3],[0,5],[-2,3],[-1,1],[-1,3],[0,14],[4,26],[2,19],[-1,6],[-4,13],[-1,9],[0,20],[1,4],[4,5],[1,4],[0,18],[1,19],[3,15],[7,10],[5,-7],[4,13],[4,19],[4,12],[16,15],[4,11],[-5,15],[0,3],[6,-2],[22,10],[14,25],[5,6],[3,5],[1,8],[1,28],[-1,13],[-2,10],[-3,7]],[[59991,70990],[4,0],[2,-1],[2,-2],[5,-7],[6,-3],[6,0],[8,2],[7,-1],[12,-2],[1,1],[3,3],[2,1],[1,-1],[4,-4],[1,-1],[17,1],[3,3],[2,4],[1,6],[1,12],[0,4],[6,7],[4,-5],[7,-21],[5,-8],[7,-4],[7,0],[7,4],[-1,-19],[-2,-3],[-3,4],[-4,3],[-5,-5],[0,-7],[0,-9],[-1,-9],[-5,-8],[-8,-7],[-5,-9],[3,-9],[1,-2],[1,-1],[1,0],[1,1],[5,2],[8,1],[8,-1],[4,-2],[2,-10],[2,-8],[4,-5],[5,-4],[4,-9],[2,-2],[2,1],[4,-6],[2,-5],[0,-6],[-1,-10],[-1,-4],[-1,-3],[-1,-3],[0,-5],[0,-5],[2,-4],[6,-15],[3,-6],[2,-1],[2,0],[2,-1],[1,-4],[-1,-8],[-2,-7],[-2,-7],[1,-11],[2,-9],[7,-12],[1,-6],[-8,-15],[-6,-20],[-12,-18],[-6,-13],[-2,-8],[0,-7],[-2,-5],[-4,-4],[-4,-1],[-6,4],[-3,1],[-6,-6],[-9,-20],[-11,-18],[-5,-9],[-3,-11],[-6,-21],[0,-2],[2,-6],[2,-4],[8,-11],[11,-3],[5,-5],[0,-13],[-3,-7],[-6,-2],[-10,5],[-14,12],[-5,2],[-4,-3],[-4,-6],[-5,-5],[-6,0],[-2,3],[-3,8],[-2,2],[-10,-11],[-5,-4],[-5,-2],[-5,-4],[-2,-6],[-4,-13],[-9,-14],[-4,-10],[-2,-7],[-5,-8],[-2,-5],[0,-5],[0,-11],[0,-6],[-2,-2],[-3,-2],[-1,-2],[-1,-13],[3,-4],[6,-2],[7,-7],[4,-2],[5,-4],[5,-6],[2,-7],[-1,-11],[-4,-9],[-6,-7],[-5,-4],[-7,0],[-6,-4],[-3,-8],[3,-12],[-4,-18],[-9,-13],[-5,-6],[-7,-7],[-6,-7]],[[59463,56069],[-1,45],[9,88],[34,205],[17,32],[6,20],[1,7],[-1,14],[0,7],[0,3],[3,6],[1,3],[2,25],[0,27],[-13,130],[-2,25],[2,21],[24,71],[11,44],[5,12],[4,9],[34,49],[5,3],[3,-2],[34,-63],[8,-11],[3,-7],[2,-9],[-1,-17],[0,-9],[3,-2],[3,4],[3,19],[4,6],[4,1],[4,-2],[3,1],[3,9],[2,11],[0,7],[1,7],[5,10],[15,24],[5,15],[2,20],[-1,9],[-9,12],[-2,8],[0,7],[18,113],[1,18],[-3,13],[-5,11],[-3,16],[1,13],[35,162],[1,12],[-1,11],[-6,24],[-2,12],[1,24],[-2,23],[0,12],[2,14],[3,14],[4,14],[4,11],[11,15],[6,5],[19,15],[8,20],[0,5],[1,11],[0,3],[0,5],[3,6],[10,12],[6,13],[2,14],[3,33],[5,26],[2,6],[3,5],[6,7],[3,5],[2,8],[1,7],[1,17],[3,16],[52,183],[2,6],[3,2],[5,1],[3,2],[2,6],[1,6],[1,7],[2,15],[0,3],[1,2],[3,3],[1,1],[7,5],[84,25],[2,0],[3,-1],[2,-2],[2,-3],[2,-2],[8,-5],[4,4],[3,11],[5,66],[0,15],[-1,9],[-7,23],[0,13],[3,10],[5,9],[2,9],[0,5],[-1,5],[-2,9],[-1,12],[27,195],[42,124],[2,16],[1,34],[1,12],[12,59],[5,26],[-1,30],[-5,29],[-1,15],[-1,15],[2,12],[25,162]],[[60146,58917],[5,0],[2,11],[4,6],[4,2],[6,1],[4,2],[9,8],[5,2],[13,0],[2,1],[4,6],[3,1],[19,0],[9,-2],[18,-11],[9,-3],[2,-2],[5,-14],[2,-4],[2,-2],[3,-2],[3,0],[1,1],[4,7],[3,0],[5,-1],[2,1],[3,5],[3,7],[2,10],[1,12],[0,14],[1,12],[3,12],[4,13],[8,12],[9,5],[21,-1],[6,4],[4,2],[7,-12],[5,-7],[10,-31],[5,-9],[1,-5],[0,-9],[0,-13],[1,-7],[4,-4],[11,-20],[1,-4],[2,-11],[2,-14],[1,-7],[4,-3],[3,-1],[2,-3],[3,-4],[0,-6],[1,-15],[1,-10],[3,-7],[5,-7],[3,7],[10,50],[16,79],[18,87],[17,89],[18,90],[12,57],[5,-9],[3,-10],[5,-22],[2,-2],[2,-1],[1,-2],[0,-2],[0,-7],[0,-1],[1,-5],[1,-4],[1,-2],[3,-2],[3,-4],[1,-4],[0,-6],[2,-5],[2,-4],[30,-26],[5,-2],[16,6],[6,-1],[5,-4],[2,-7],[2,-9],[1,-3],[1,-16],[2,-6],[2,-5],[3,-4],[3,-4],[2,-8],[3,-22],[2,-11],[3,-8],[5,-8],[14,-16],[3,-5],[2,-13],[1,-5],[4,-5],[2,-1],[2,2],[14,-1],[21,5],[10,6],[18,19],[5,-1],[5,-3],[5,-1],[5,1],[6,2],[16,15],[13,2],[5,7],[9,18],[11,11],[6,8],[4,10],[1,11],[-1,11],[1,10],[3,7],[1,-2],[10,-2],[8,-4],[2,-2],[7,-8],[5,-11],[5,-12],[4,-13],[8,-49],[6,-22],[6,1],[7,20],[3,7],[7,2],[15,-5],[6,1],[22,13],[12,11],[5,14],[2,12],[5,0],[5,-7],[4,-7],[6,-14],[2,-4],[1,-1],[15,-9],[7,-2],[13,5],[3,1],[9,1],[8,-6],[8,-10],[14,-27],[5,-4],[5,-2],[5,4],[9,15],[5,2],[5,-2],[7,-2],[4,0],[14,9],[5,0],[24,-13],[13,-10],[10,-14],[22,-41],[19,-36],[16,-18],[29,-29],[8,-5],[25,-8],[19,-14],[17,-26],[29,-68],[29,-70],[22,-79],[20,-73],[8,-17],[37,-50],[49,-64],[29,-50],[21,-37],[11,-23],[9,-26],[9,-31],[22,-97],[14,-43],[22,-29],[16,-14],[15,-18],[13,-24],[19,-64],[22,-64],[13,-30]],[[61771,57852],[-16,-47],[-9,-39],[-37,-106],[-4,-21],[-2,-7],[-7,-7],[-3,-7],[-11,-44],[-23,-68],[-11,-32],[-3,-6],[-4,-7],[-3,-4],[-4,-2],[-2,-3],[-1,-8],[-3,-8],[-11,-10],[-4,-6],[-5,-19],[-3,-45],[-9,-53],[1,-33],[7,-68],[3,-64],[-1,-114],[-1,-25],[-5,-17],[1,-4],[2,-6],[7,-5],[33,-14],[1,-3],[1,-4],[1,-3],[3,-1],[1,3],[1,3],[2,1],[16,2],[8,4],[8,18],[8,5],[15,4],[14,-7],[6,0],[3,2],[10,9],[3,1],[5,-1],[2,1],[9,6],[6,-2],[5,-3],[4,0],[6,5],[18,26],[25,16],[11,2],[2,0],[20,-10],[6,0],[6,-4],[7,-33],[4,-8],[7,-3],[11,-2],[7,-5],[4,-1],[4,3],[3,7],[2,6],[5,-4]],[[61923,56983],[-4,-12],[-3,-25],[-2,-10],[-4,-8],[-12,-10],[-4,-9],[-3,-12],[-1,-10],[-1,-9],[-5,-10],[-10,-17],[-3,-9],[-3,-15],[-2,-24],[-2,-11],[-4,-10],[-5,-7],[-6,-3],[-3,-6],[0,-12],[6,-27],[7,-24],[15,-32],[5,-12],[3,-16],[3,-54],[6,-38],[7,-36],[8,-18],[26,-37],[7,-14],[5,-17],[3,-20],[3,-19],[5,-28],[8,-16],[10,-9],[12,-4],[11,-10],[5,-19],[8,-95],[4,-23],[6,-14],[8,-4],[2,-3],[2,-6],[3,-12],[2,-7],[3,-5],[5,-8],[3,-5],[6,-27],[2,-11],[0,-19],[2,-12],[3,-9],[15,-18],[21,-27],[5,-1],[7,5],[5,1],[3,-5],[22,-41],[25,-48],[35,-68],[19,-37],[11,-14],[23,-16],[24,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-18],[25,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-18],[24,-16],[23,-17],[23,-16],[24,-17],[23,-17],[23,-16],[23,-17],[24,-17],[23,-16],[23,-17],[24,-17],[23,-16],[23,-17],[24,-17],[23,-16],[23,-17],[18,-12],[16,-18],[25,0],[39,0],[44,0],[43,0],[37,0],[50,0],[40,0]],[[63327,55205],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-27],[-2,-6],[-11,-22],[-14,-28],[-13,-28],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-28],[-13,-27],[-14,-28],[-13,-28],[-14,-28],[-13,-27],[-14,-28],[-13,-28],[-6,-11],[-12,-26],[-13,-26],[-5,-11],[-6,-12],[-12,-25],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-29,-69],[-30,-70],[-30,-69],[-27,-62],[-3,-8],[-30,-69],[-29,-69],[-30,-70],[-30,-69],[-16,-37],[-22,-51],[-8,-7],[-15,2],[-14,2],[-15,2],[-14,1],[-15,2],[-14,2],[-1,0],[-13,2],[-15,1],[-14,2],[-15,2],[-14,2],[-14,2],[-15,1],[-14,2],[-15,2],[-14,2],[-14,1],[-17,2],[-10,-5],[-24,-18],[-9,-4],[-27,-13],[-21,-11],[-31,-15],[-20,-19],[-31,-32],[-32,-32],[-31,-32],[-23,-41],[-21,-36],[-2,-6],[-2,-6],[-4,-20],[-5,-42],[-4,-19],[-8,-19],[-1,-1],[-10,-14],[-12,-10],[-19,-8],[-42,-15],[-43,-15],[-32,-12],[-21,0],[-24,-1],[-9,-5],[-10,-10],[-16,-27],[-19,-25],[-5,-10],[-2,-11],[0,-18],[-1,-8],[-4,-6],[-4,-12]],[[61634,52825],[-14,-16],[-12,5],[-12,14],[-13,9],[-12,-15],[-4,-2],[-4,2],[-7,6],[-5,1],[-22,-12],[-7,0],[-14,-9],[-32,-4],[-28,-3],[-14,4],[-14,11],[-12,21],[-18,53],[-7,14],[-5,6],[-13,9],[-5,6],[-3,6],[-5,18],[-6,17],[-17,24],[-6,17],[-18,-24],[-23,-19],[-29,-24],[-36,-30],[-2,-3],[-1,-9],[-2,-3],[-22,-17],[-28,-20],[-1,-1],[-1,1],[0,1],[-3,1],[0,-3],[0,-4],[-1,-3],[-13,-13],[-27,-28],[-24,-25],[-24,-24],[-5,-15],[-6,-31],[-7,-43],[-5,-19],[-5,-14],[-22,-43],[-18,-35],[-8,-19],[-6,-39],[-4,-16],[-9,-1],[-5,6],[-2,8],[-1,8],[-3,7],[-8,6],[-35,2],[3,11],[-2,6],[-3,1],[-2,-2],[-11,-14],[-10,0],[-11,5],[-25,24],[-4,4],[-2,1],[-16,-7],[-5,0],[-4,3],[-4,2],[-12,-5],[-7,-1],[-21,12],[-27,16],[-6,6],[-4,10],[-7,21],[0,-4],[-1,-9],[0,-4],[-16,3],[-1,2],[-1,3],[0,2],[-4,-3],[-2,-1],[-3,1],[-4,2],[-1,4],[-1,4],[-2,6],[-5,9],[-2,2],[-2,-3],[-1,-5],[0,-5],[0,-3],[-14,-13],[-16,-3],[-29,7],[-30,7],[-9,-1],[-8,-5],[-4,1],[-6,12],[-8,5],[-4,5],[-4,10],[-7,25],[-6,11],[-8,11],[-28,38],[-26,36],[-29,40],[-25,35],[-23,31],[-32,43],[-27,37],[-27,37],[-15,21],[-1,1],[-2,0],[-1,0],[-1,3],[-2,14],[-1,5],[-2,6],[-2,1],[-5,-1],[-2,3],[-5,16],[-2,4],[-12,6],[-20,21],[-16,10],[-54,-1],[-2,1],[-4,5],[-3,1],[-43,-2],[-52,-2],[-3,1],[-5,5],[-3,2],[-3,0],[-9,-3],[-41,-1],[-1,0],[-6,4],[-6,8],[-11,20],[-5,6],[-2,9],[0,10],[1,12],[0,11],[-4,14],[-1,10]],[[59977,53205],[-37,86],[-7,25],[-3,28],[2,124],[1,8],[11,29],[2,11],[0,13],[-3,14],[-5,22],[-1,12],[2,14],[7,23],[-1,5],[-15,13],[-18,24],[-8,4],[-5,-3],[-5,-5],[-6,-3],[-7,4],[-12,21],[-6,7],[-5,3],[-6,2],[-6,0],[-5,-2],[-6,-9],[-11,-26],[-7,-10],[-6,-2],[-5,5],[-5,10],[-9,31],[-1,5],[1,8],[2,6],[2,6],[2,7],[-2,7],[-2,12],[-10,18],[-23,28],[-12,19],[-3,12],[-2,34],[-4,16],[-23,68],[-2,13],[-1,8],[1,6],[0,7],[1,8],[-1,7],[-4,10],[-2,7],[0,7],[1,6],[3,13],[0,7],[-3,32],[-2,11],[-5,13],[-5,10],[-4,11],[-6,29],[-10,36],[-1,12],[0,35],[-2,15],[-11,41],[-2,12],[-3,34],[-6,33],[-3,24],[-2,25],[-2,2],[-4,8],[-1,11],[-2,7],[-19,26],[-4,4],[-6,2],[-12,0],[-5,2],[-3,6],[-2,24],[-1,3],[-1,6],[0,3],[0,1],[3,4],[1,1],[-1,12],[-1,10],[-2,9],[-2,8],[-18,27],[-39,20],[-1,2],[-2,2],[-2,2],[-2,11],[-1,3],[-11,18],[-3,7],[-2,4],[-2,1],[-2,6],[-1,14],[0,6],[0,19],[-1,12],[-3,10],[-4,5],[-4,-5],[-5,-2],[-6,8],[-7,20],[-13,22],[-2,1],[-1,3],[0,56],[-2,20],[-4,16],[-35,75],[-8,10],[-3,1],[-6,2],[-3,1],[-14,22],[-8,26],[-4,9],[-3,3],[-8,5],[-8,11],[-3,2],[-18,-4],[-6,4],[-3,4],[-4,11],[-2,5],[-3,3],[-5,3],[-3,4],[-5,4],[-7,-1],[-12,-5],[-2,-2],[-7,-10],[-3,0],[-16,8],[-5,10],[-4,11],[-5,8],[-2,1],[-9,3],[-8,7],[-2,1],[-9,-5],[-2,-1],[-1,-5],[-4,1],[-6,6],[-8,2],[-2,2],[-1,3],[-1,6],[-1,5],[-4,6],[-3,9],[-7,39],[1,7],[4,8],[0,1],[1,6],[2,3],[1,4],[1,12],[2,6],[3,10],[16,34],[2,6],[1,6],[1,5],[1,3],[8,3],[5,5],[3,6],[3,8],[0,12],[-1,3],[-3,6],[-1,3],[0,8],[0,6],[1,5],[3,7],[2,4],[3,2],[2,3],[0,8],[-4,3],[-2,3],[-2,7],[-2,4],[-2,6],[-1,7],[0,4],[3,11],[0,8],[0,2],[-3,3],[0,2],[0,3],[1,4],[1,3],[0,10],[0,5],[1,4],[4,4],[4,2],[3,4],[-1,3],[-1,2],[8,15],[5,2],[30,-14],[3,1],[4,7],[2,2],[2,0],[4,-1],[19,4],[2,4],[0,2],[-1,4],[5,1],[5,-6],[4,-7],[4,-4],[6,2],[4,5],[4,3],[5,-2],[9,-15],[6,-21],[6,-16],[13,-3],[3,1],[1,1],[12,21],[3,4],[4,4],[5,2],[9,3],[16,0],[5,3],[6,7],[27,52],[6,14],[4,13],[1,14],[1,14],[-4,172],[-4,171],[-4,148]],[[59977,53205],[-17,0],[-21,1],[-1,34],[-11,2],[-8,-12],[-1,-24],[0,-1],[-2,-18],[-24,18],[-1,1],[-13,51],[-11,44],[13,73],[-21,13],[-27,0],[10,46],[-6,16],[-22,-26],[-19,-23],[-5,20],[-19,-16],[-23,-18],[-26,-20],[-22,-18],[-21,-17],[-23,-18],[-27,-21],[-19,-21],[-19,-20],[-19,-21],[-22,-24],[-28,-59],[-28,-60],[-28,-59],[-29,-59]],[[59437,52969],[-22,-49],[-23,-48],[-31,-67],[-27,-56],[-20,-44],[-1,-2],[-11,-13],[-12,-3],[-44,5],[-26,3],[-8,3],[-6,7],[-35,61],[-6,5],[-5,-4],[-16,-27],[-22,-23],[-24,-15],[-43,-8],[-51,-9],[-12,-6],[-52,-66],[-3,-8],[0,-8],[1,-21],[0,-9],[-1,-8],[0,-4],[-2,-5],[-3,-1],[-18,8],[-5,5],[-4,9],[-2,7],[-3,12],[-3,3],[-3,1],[-21,2],[-4,5],[-2,10],[-1,27],[-1,11],[-4,14],[-20,48],[-6,11],[-2,2],[-6,5],[0,1],[-1,-4],[-22,-53],[-3,-5],[-5,-4],[-29,-9],[-4,-5],[-4,-9],[0,-1],[-3,-5],[-5,2],[-36,41],[-23,27],[-10,7],[-12,4],[-13,0],[-7,-5],[-10,-17],[-8,-12],[-2,-2],[-6,-3],[-2,-2],[-9,-14],[-4,-4],[-2,-1],[-6,0],[-3,-2],[-3,-5],[-1,-7],[-1,-7],[-1,-7],[-19,-57],[-6,-25],[-1,-9]],[[58566,52537],[-3,12],[2,31],[-4,10],[-8,7],[-4,6],[-2,9],[-1,20],[-1,6],[-5,8],[-4,-7],[-5,-11],[-6,-7],[-7,0],[-4,-1],[-4,-4],[-9,-10],[-4,-2],[-5,-2],[-3,0],[-3,2],[-2,5],[0,3],[1,4],[2,7],[2,23],[0,12],[-7,87],[-3,15],[-3,2],[-3,-1],[-3,-1],[-2,-1],[-6,0],[-2,1],[-11,7],[-22,29],[-19,13],[-18,0],[-5,4],[-2,5],[0,6],[0,6],[-1,7],[-2,6],[-6,17],[-3,14],[-1,14],[-3,11],[-7,8],[-11,5],[-4,5],[-4,13],[-7,27],[-4,11],[-7,8],[-3,1],[-3,0],[-3,1],[-2,6],[-1,7],[2,6],[2,6],[1,6],[-3,12],[-6,12],[-7,9],[-6,2],[-13,0],[-7,13],[-3,22],[0,26],[2,17],[1,7],[-1,5],[-2,10],[0,5],[2,6],[1,3],[1,4],[1,6],[-3,4],[-3,3],[-6,8],[-2,1],[-6,-3],[-2,1],[-4,5],[-8,15],[-4,5],[-11,11],[-3,2],[-9,0],[-8,8],[-3,2],[-2,-1],[-4,-4],[-2,2],[-3,6],[-1,1],[-6,3],[-4,-2],[-2,-7],[-1,-21],[-1,-10],[0,-6],[0,-7],[-5,-10],[-2,-7],[-2,-13],[-2,-12],[-4,-11],[-14,-26],[-3,-9],[-2,-14],[-5,-14],[-4,-2],[-6,2],[-7,0],[-3,-7],[-1,-11],[-2,-10],[-7,-2],[-6,7],[-18,38],[-3,5],[-11,10],[0,-1],[-1,8],[-3,3],[-14,19],[-2,5],[-17,-9],[-6,-1],[-13,2],[-8,-2],[-3,0],[-7,6],[-2,11],[0,14],[-4,11],[-4,3],[-2,-3],[-3,-5],[-4,-4],[-5,0],[-3,-1],[-11,-47],[-4,-13],[-5,-5],[-11,-6],[-3,-5],[-1,-6],[-1,-7],[-2,-5],[-3,-2],[-2,1],[-3,1],[-3,0],[-6,-3],[-4,-6],[-10,-30],[-6,-10],[-6,-8],[-6,-1],[-7,4],[-2,6],[-1,8],[-2,12],[-10,15],[-11,-1],[-13,-5],[-10,3],[-6,8],[-5,11],[-8,21],[-1,12],[-2,4],[-4,1],[-3,-3],[-4,-11],[-3,0],[-9,26],[-1,5],[-1,5],[0,5],[0,6],[1,14],[1,10],[-1,6],[-14,5],[-3,-1],[-2,1],[-3,6],[-1,1],[-3,-3],[-1,-2],[0,-2],[0,-3],[-1,-2],[-1,-1],[-5,5],[-2,0],[-8,-2],[-2,0],[-3,4],[-5,12],[-3,5],[-2,1],[-7,3],[-1,0],[-2,10],[-1,14],[-1,25],[2,34],[-1,13],[-1,5],[-2,7],[-2,6],[-2,3],[-3,0],[-5,-3],[-2,0],[-4,6],[-2,10],[-2,24],[-4,14],[-5,7],[-24,6],[-6,4],[-5,9],[-1,6],[-1,12],[-1,6],[-3,6],[-8,14],[-2,2],[-2,2],[-2,2],[-1,4],[1,26],[0,8]],[[57622,53473],[-3,7],[-8,13],[-4,23],[-8,14],[-16,22],[-6,15],[-4,18],[-8,37],[-1,9],[-1,29],[-2,15],[-1,8],[1,9],[11,65],[-1,5],[1,11],[-1,5],[-3,4],[-2,-1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,6],[0,4],[1,9],[1,10],[0,4],[0,3],[-5,7],[-1,2],[-1,4],[0,5],[-1,9],[-2,10],[-3,7],[-4,5],[-6,3],[-1,5],[0,6],[-2,10],[-3,4],[-11,9],[-3,0],[-5,-3],[-3,0],[-1,3],[-2,9],[-6,8],[-3,17],[-3,7],[-12,-7],[-6,1],[-3,10],[-3,14],[-3,1],[-5,-4],[-6,-1],[-7,7],[-2,10],[-2,27],[-3,7],[-5,7],[-20,17],[-19,-2],[-9,2],[-16,12],[-5,8],[-2,10],[-3,13],[-3,10],[-5,3],[-11,-16],[-4,-3],[-1,12],[2,12],[4,10],[6,8],[5,6],[5,8],[2,11],[0,12],[-4,9],[-4,2],[-4,0],[-3,3],[0,15],[-1,15],[-4,7],[-12,5],[-5,7],[-7,19],[-4,10],[-6,6],[-4,4],[-3,5],[-2,12],[1,11],[1,11],[0,9],[-5,4],[2,7],[2,4],[3,3],[2,4],[6,24],[9,25],[4,18],[2,6],[0,7],[0,13],[-14,16],[-16,13],[-10,10],[-4,11],[-12,17],[-8,23],[-5,4],[-5,2],[-6,9],[-3,7],[-1,6],[0,7],[-1,8],[-1,3],[1,4],[0,3],[-1,2],[-2,0],[-2,-1],[-1,0],[-2,2],[-2,13],[-1,31],[-2,13],[-13,2],[-3,2],[-1,4],[0,5],[-1,4],[-3,2],[-6,2],[-3,1],[-8,11],[-2,5],[0,11],[-1,5],[-5,5],[-13,2],[-4,3],[-2,10],[0,8],[-2,5],[-7,0],[-3,2],[-4,9],[-3,3],[-5,0],[-3,1],[-6,11],[-5,5],[-18,9],[-4,5],[-12,25],[-5,5],[-4,2],[-5,-4],[-8,7],[-11,17],[-15,17],[-4,6],[-3,8],[-1,9],[-2,17],[-2,8],[-2,3],[-5,3],[-2,3],[-2,4],[-2,9],[-2,4],[-4,6],[-16,18],[-6,30],[-1,9],[0,8],[6,12],[18,13],[6,11],[1,11],[0,8],[-2,9],[-1,9],[1,25],[0,9],[-2,10],[-4,16],[-3,18],[-2,10],[-4,7],[-7,5],[-2,3],[-1,4],[-2,2],[-7,3],[-4,0],[-8,-4],[-4,-1],[-9,7],[-8,13],[-13,32],[-3,3],[-2,3],[-2,4],[-1,4],[-1,11],[-6,12],[0,21],[-3,10],[-24,47],[-9,8],[-16,4],[-9,10],[-5,2],[-6,0],[-15,6],[-20,-7],[-8,1],[-9,12],[-3,1],[-2,2],[-1,4],[-2,6],[-6,13],[-10,-2],[-18,-13],[-1,2],[-5,7],[-2,3],[-2,0],[-4,0],[-5,1],[-1,1],[-10,5],[-5,3],[-7,9],[-7,12],[-6,15],[-3,17],[1,19],[3,20],[16,56],[3,6],[11,16],[2,6],[-2,7],[-7,12],[-2,9],[1,8],[5,16],[1,8],[-5,6],[-11,-1],[-3,0]],[[56713,55616],[2,3],[0,9],[2,5],[16,25],[8,9],[31,40],[6,3],[25,6],[14,9],[3,4],[1,4],[0,63],[0,4],[2,8],[25,91],[1,5],[1,4],[5,113],[2,10],[2,7],[8,16],[17,40],[2,14],[1,7],[-1,157],[1,13],[1,3],[1,3],[1,0],[3,1],[3,1],[2,2],[3,3],[9,17],[10,12],[4,9],[7,22],[4,8],[2,6],[3,11],[1,11],[8,31],[3,18],[0,3],[0,4],[0,3],[-1,6],[-2,12],[-1,3],[0,6],[0,5],[1,6],[13,64],[3,7],[2,3],[2,2],[4,3],[4,3],[3,1],[7,-1],[4,1],[6,6],[2,0],[3,-1],[2,1],[3,2],[2,1],[1,0],[4,-1],[1,-1],[3,-3],[2,-1],[1,0],[2,-1],[1,1],[3,2],[2,1],[3,-1],[1,0],[2,0],[5,5],[1,1],[4,1],[1,0],[4,1],[3,2],[2,2],[4,3],[4,2],[3,0],[11,-1],[3,1],[4,3],[1,0],[20,15],[12,6],[2,1],[9,0],[6,2],[4,3],[2,0],[11,-1],[2,1],[3,1],[6,6],[12,7],[3,1],[1,-2],[12,-31],[2,-5],[0,-3],[0,-3],[2,-92],[1,-3],[0,-3],[2,-4],[2,-4],[10,-12],[5,-4],[7,-5],[1,-1],[2,-3],[1,-2],[1,-4],[17,-58],[3,-9],[4,-8],[22,-17],[52,-130],[52,-130],[13,-17],[6,-7],[17,-2],[3,0],[107,77],[72,4],[12,-5],[40,0],[23,-6],[1,0],[6,4],[2,0],[35,-11],[28,3],[4,2],[3,2],[28,-124],[14,-32],[110,-2],[111,-2],[1,0],[-4,14],[-1,22],[0,25],[6,23],[18,37],[21,34],[6,10],[34,38],[33,26],[64,30],[24,47],[12,43],[1,85],[8,14],[16,20],[74,76],[12,16],[66,-88],[65,-89],[74,-140],[4,-6],[4,-3],[4,5],[3,6],[6,4],[3,2],[32,2],[59,7],[20,17],[59,125],[60,125],[31,79],[7,17],[18,56],[18,98],[3,11],[66,117],[65,117],[5,19],[1,14],[-20,79],[-4,40],[-1,62],[4,96],[-1,60],[-1,7],[-1,9],[-1,4],[-73,172],[92,1],[93,1],[0,14],[0,8],[-1,7],[-3,20],[-2,28],[0,7],[0,8],[1,14],[0,8],[0,3],[0,4],[0,3],[1,2],[132,-3],[-2,-49],[-16,-114],[1,-69],[-4,-79],[-1,-6],[-4,-17],[-3,-10],[-4,-9],[-1,-3],[-1,-6],[0,-9],[14,-219],[14,-220],[-1,-11],[-1,-7],[-8,-28],[-2,-9],[0,-7],[3,-4],[61,-48],[3,-3],[2,-4],[22,-56],[61,-104],[60,-104],[4,-11],[12,-65],[2,-10],[0,-16],[0,-12],[-3,-39],[1,-18],[2,-12],[1,-13],[0,-4],[0,-4],[-1,-6],[-18,-76],[-5,-53],[-2,-46],[1,-26],[2,-17],[1,-3],[1,-3],[0,-2],[1,-1],[47,0]],[[63327,55205],[17,54],[16,54],[17,54],[17,54],[16,54],[17,53],[17,54],[16,54],[17,54],[17,54],[16,54],[17,54],[17,53],[16,54],[17,54],[17,54],[0,66],[0,67],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,67]],[[63594,57132],[10,1],[37,15],[36,14],[11,10],[4,12],[3,5],[3,-3],[3,-4],[3,0],[18,4],[5,2],[4,4],[15,18],[5,2],[4,5],[7,26],[4,10],[5,3],[6,1],[13,0],[1,1],[4,5],[3,2],[3,0],[8,-4],[25,-5],[13,3],[8,14],[2,0],[5,6],[3,2],[2,1],[3,6],[2,1],[2,0],[2,-1],[1,-2],[1,-1],[25,2],[5,-2],[17,19],[5,10],[3,4],[10,-1],[3,3],[2,3],[3,3],[12,7],[6,8],[23,39],[12,6],[6,7],[9,22],[8,16],[4,10],[1,12],[0,14],[2,13],[1,13],[3,11],[6,18],[4,7],[4,4],[3,1],[8,7],[1,4],[1,3],[1,1],[2,0],[2,-3],[2,-1],[6,4],[12,10],[10,5],[3,4],[7,2],[19,-28],[29,-6],[16,-28],[6,-4],[21,0],[6,-3],[9,-10],[6,-3],[6,0],[7,-2],[5,-5],[7,-4],[-4,-19],[-3,-24],[-5,-18],[2,-28],[-2,-18],[-5,-9],[-5,-17],[-9,-17],[-9,-26],[-6,-14],[-1,-4],[0,-6],[1,-9],[0,-5],[0,-14],[-2,-13],[-9,-40],[-1,-10],[-1,-39],[-2,-25],[4,-27],[12,-16],[12,-1],[5,-12],[-7,-13],[-6,-28],[-3,-10],[-3,-8],[-1,-13],[-1,-14],[3,-82],[3,-105],[7,-47],[-2,-6],[-6,-2],[-7,-5],[-2,-10],[2,-26],[-2,-12],[-2,-8],[-5,-3],[-6,-1],[-5,-4],[-5,-9],[-2,-11],[2,-9],[6,-2],[42,18],[3,-1],[3,-2],[2,1],[1,4],[-1,7],[-3,3],[-2,3],[-1,4],[-1,13],[0,12],[-2,13],[-3,12],[4,-8],[5,-7],[3,-7],[5,-6],[3,-4],[3,-3],[6,-10],[3,-4],[5,-2],[5,-2],[2,1],[3,3],[3,2],[6,-1],[5,-2],[2,-13],[4,-5],[-2,-11],[-4,-20],[-3,-2],[-1,-3],[-2,-3],[0,-8],[-2,0],[-5,4],[-4,0],[-4,2],[-5,-4],[-8,4],[-2,11],[-1,7],[-2,7],[-4,3],[-42,-11],[-20,-15],[-25,-32],[-5,-19],[-2,-36],[3,-34],[-8,-45],[1,-27],[3,-19],[1,-7],[-1,-7],[-2,-8],[-4,-42],[1,-6],[-3,-13],[-2,-11],[-3,-29],[-3,-22],[-2,-6],[1,-17],[0,-6],[-2,-11],[-2,-36],[-5,-16],[0,-18],[2,-31],[7,-38],[1,-12],[-1,-11],[-2,-11],[-17,-59],[-6,-10],[-12,-10],[-4,-7],[-4,-9],[-8,-28],[-2,-9],[3,-38],[-1,-13],[-4,-22],[-8,-21],[-30,-51],[-9,-18],[-7,-20],[-5,-18],[-3,-24],[-5,-49],[-5,-21],[-13,-34],[-2,-12],[1,-36],[-1,-11],[-4,-22],[-4,-10],[-4,-5],[-6,-4],[-2,-9],[-2,-12],[-3,-11],[-18,-50],[-2,-8],[-4,-19],[-8,-52],[-6,-23],[-10,-18],[-35,-47],[-25,-53],[-5,-17],[-3,-21],[-2,-42],[1,-7],[4,-6],[1,-13],[0,-15],[-2,-11],[-8,-24],[-8,-19],[-3,-10],[-1,-26],[-1,-10],[-29,-107],[-15,-55],[-18,-45],[-43,-127],[-20,-85],[-13,-42],[-14,-81],[-34,-153],[-1,-13],[1,-13],[3,-25],[0,-13],[-4,-52],[-9,-45],[-24,-86],[-28,-103],[-43,-140],[-14,-64],[-7,-21],[-20,-41],[-28,-99],[-33,-76],[-35,-101],[-41,-175],[-30,-93],[-30,-68],[-73,-167],[-24,-73],[-43,-93],[-36,-80],[-46,-104],[-7,-16],[-50,-124],[-37,-71],[-21,-53],[-38,-68],[-21,-44],[-17,-27],[-1,-5],[-1,-6],[-2,-5],[-1,-2],[-5,-4],[-2,-9],[-3,-12],[-2,-12],[-4,-6],[-11,-11],[-26,-58],[-3,-9],[-5,-18],[-3,-8],[-11,-15],[-5,-17],[-5,-10],[-56,-77],[-32,-38],[-29,-36],[-95,-116],[-9,-12],[-6,-3],[-3,-2],[-55,-55],[-47,-69],[-3,-6],[-3,-2],[-38,-59],[-35,-46],[-60,-100],[-31,-68],[-6,-6],[-12,-15],[-3,-6],[-1,-5],[-1,-6],[0,-12],[-1,-2],[-5,-3],[-2,-3],[-2,-5],[-19,-42],[-6,-8],[-6,-4],[-3,-5],[-13,-35],[-31,-36],[-11,-17],[-13,-39],[-5,-6],[-4,-3],[-12,-21],[-53,-109],[-51,-122],[-28,-58],[-26,-55],[-55,-131],[-34,-78],[-16,-28],[-18,-31],[-19,-41],[-7,-20],[0,-6],[0,-5],[-1,-4],[-7,-3],[-2,-4],[-11,-31],[-1,-10],[3,-6],[-3,-10],[-1,-3],[0,4],[0,3],[0,3],[-2,3],[-14,-25],[-3,-6],[-1,-10],[-5,-10],[-9,-18],[-27,-71],[-1,-5],[0,-5],[-1,-3],[-2,-2],[-1,-2],[-12,-37],[-7,-16],[-4,-6],[-4,-5],[-6,-3],[-8,1],[-4,-2],[-3,-6],[6,-3],[0,-11],[-3,-13],[-2,-6],[-4,-5],[-4,-10],[-3,-13],[-1,-11],[-1,-5],[-10,-15],[-3,-3],[-1,4],[-1,25],[0,23],[-1,10],[-2,0],[1,-9],[-1,-7],[-2,-6],[0,-7],[0,-7],[2,-8],[0,-7],[1,-7],[2,-4],[2,-2],[1,-5],[-1,-8],[-3,-12],[0,-7],[-2,-7],[-6,-13],[-2,-4],[0,-8],[-2,-6],[-1,-6],[-11,-27],[-1,-6],[1,-5],[2,0],[3,3],[2,4],[-4,-16],[-6,-1],[-6,9],[-2,16],[-1,0],[0,-12],[3,-21],[0,-11],[-1,-11],[-29,-100],[-7,-17],[-5,-17],[-11,-45],[-5,-9],[-6,-8],[-10,-35],[-6,-10],[2,0],[-7,-16]],[[61537,49465],[0,12],[1,37],[-1,11],[-3,13],[-11,30],[-14,38],[-14,39],[-14,39],[-14,38],[-13,35],[-15,42],[-14,39],[-14,38],[-7,19],[-7,20],[-7,19],[-7,20],[-1,45],[0,42],[0,41],[-1,65],[0,64],[0,64],[-1,65],[0,40],[0,40],[0,48],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,64],[0,10],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,63],[0,63],[0,64],[0,63],[0,43],[-1,80],[0,77],[0,31],[4,17],[9,20],[23,48],[23,48],[23,48],[22,48],[15,44],[14,44],[15,44],[14,44],[23,71],[24,71],[23,71],[23,71]],[[61537,49465],[-21,-46],[-10,-33],[-2,-10],[-6,-8],[-16,-31],[-9,-26],[-6,-7],[-4,11],[-6,-4],[-4,1],[-4,6],[0,13],[-5,-12],[-2,-14],[-2,-14],[-8,2],[-11,5],[-2,0],[-4,-4],[-5,-13],[-8,-7],[-3,-8],[-3,-6],[-4,0],[-4,4],[-2,4],[-2,6],[-1,8],[0,9],[3,16],[-1,8],[0,8],[1,7],[4,13],[-10,-16],[-1,-69],[-6,-16],[-5,8],[-5,37],[-5,8],[-3,3],[-3,7],[-2,2],[-4,-9],[2,-8],[1,-8],[-1,-8],[5,4],[3,-2],[3,-6],[1,-10],[-1,-4],[-3,-3],[0,-3],[1,-6],[2,-1],[2,-1],[1,-4],[0,-44],[2,-22],[3,-15],[3,-2],[3,1],[3,0],[4,-6],[3,-8],[0,-7],[-3,-15],[-7,-18],[-6,-3],[-1,7],[9,10],[-5,3],[-4,6],[-6,15],[-1,5],[0,3],[0,2],[-3,3],[0,-2],[-2,-1],[-4,-2],[-7,-8],[-6,-16],[-6,-11],[-6,7],[1,-5],[0,-6],[2,-4],[2,-2],[1,-1],[0,-4],[-2,-7],[2,-8],[8,-11],[2,-9],[-4,-13],[-7,-16],[-9,-14],[-13,-11],[-17,-43],[-9,-8],[-9,4],[-8,8],[-9,4],[-9,-2],[-28,-19],[-12,-17],[-7,-5],[-8,-11],[-14,-24],[-3,-7],[-2,-8],[-6,-25],[-8,-22],[-1,-10],[0,-5],[5,-12],[0,-4],[-1,-9],[0,-5],[-6,-38],[0,-19],[6,-10],[-2,-15],[3,-7],[6,1],[6,9],[0,-6],[-2,-7],[-10,-20],[-6,-17],[-1,-7],[-1,-30],[-2,-10],[-9,-29],[-1,-8],[3,-21],[0,-11],[-1,-9],[-3,-9],[-3,-7],[-4,-6],[-13,-13],[-4,-5],[-7,-17],[-4,-6],[-4,-2],[2,10],[3,23],[0,8],[-5,-2],[-2,-6],[0,-8],[0,-8],[-1,-6],[-1,-14],[0,-4],[1,-3],[1,-3],[-5,-17],[-6,-32],[-7,-25],[-3,-34],[-3,-14],[-4,-7],[-2,-1],[-6,5],[-1,2],[-4,9],[-1,1],[-8,1],[1,5],[1,3],[-3,4],[-3,-10],[1,-9],[4,-6],[5,0],[-3,-8],[1,-7],[4,-3],[10,9],[3,-5],[1,-9],[1,-9],[0,-19],[-23,-131],[-7,-15],[-8,-2],[-6,8],[1,21],[-7,-8],[-1,-4],[1,-6],[2,-6],[0,-6],[2,-5],[3,-5],[6,1],[3,-4],[-1,-10],[-6,-14],[-1,-4],[-1,-5],[-2,-7],[-2,-7],[-2,-3],[-3,3],[-2,14],[-2,3],[-2,7],[1,14],[-1,8],[-5,-9],[-7,9],[-3,1],[-3,-6],[3,-5],[3,-3],[7,-4],[-2,-10],[-2,-5],[-9,-5],[-3,0],[-3,1],[-3,-1],[-1,-4],[1,-12],[0,-6],[1,-6],[4,11],[10,2],[9,-6],[6,-11],[-1,-15],[-14,-50],[-9,-49],[-9,-72],[-3,-17],[-3,8],[-2,-1],[-2,-5],[-3,-7],[0,-3],[0,-7],[-1,-4],[-4,-7],[-1,-3],[-9,-61],[-2,11],[1,17],[-1,9],[-4,-6],[-2,-8],[-1,-10],[-2,-8],[-2,0],[-2,2],[-2,0],[0,-9],[0,-5],[5,-12],[-3,-9],[-10,-3],[-10,6],[-7,17],[0,-3],[-2,-9],[-8,6],[-6,-13],[-5,-17],[-5,-8],[-2,-1],[-1,0],[0,-1],[-1,-2]],[[60886,47700],[-24,36],[-24,36],[-23,37],[-24,36],[-24,36],[-23,37],[-24,36],[-24,37],[-24,36],[-1,3],[-22,33],[-24,37],[-24,36],[-23,36],[-24,37],[-24,36],[-24,37],[-15,23],[-3,11],[-3,12],[-5,36],[-2,9],[-4,8],[-5,5],[-6,4],[-6,1],[-13,-2],[-1,8],[2,12],[1,9],[-1,5],[-5,1],[-2,5],[0,6],[0,7],[2,6],[1,6],[4,9],[6,11],[7,7],[5,1],[0,11],[1,8],[3,5],[5,1],[-6,72],[-1,8],[-4,64],[-5,15],[-23,27],[-38,46],[-21,25],[-60,71],[-60,71],[-59,71],[-60,71],[-59,71],[-60,71],[-60,71],[-59,71],[-60,71],[-47,56],[-13,15],[-59,71],[-60,71],[-14,17],[-45,54],[-60,71],[-60,71],[-21,25],[-10,1],[-4,5],[0,16],[-4,0],[-2,0],[-21,0]],[[59417,49876],[-1,120],[-1,81],[4,85],[7,122],[5,94],[0,23],[-9,61],[-9,61],[1,12],[16,46],[3,6],[22,64],[10,16],[3,8],[0,12],[-3,22],[0,11],[1,5],[5,12],[2,6],[1,5],[6,59],[1,2],[4,18],[9,12],[11,9],[9,10],[7,15],[4,25],[1,14],[1,7],[2,6],[18,19],[5,9],[4,24],[8,22],[7,38],[1,12],[1,26],[1,13],[2,12],[3,11],[6,12],[4,-3],[5,-5],[5,2],[1,0],[1,6],[2,5],[0,13],[2,11],[14,7],[9,19],[6,8],[23,5],[8,8],[4,24],[-3,24],[-5,24],[0,11],[-1,10],[17,29],[6,48],[6,20],[3,3],[6,2],[2,3],[3,6],[2,7],[9,39],[2,13],[0,115],[1,7],[5,15],[1,6],[-1,6],[-7,13],[-2,7],[-2,10],[-1,12],[0,12],[0,12],[3,26],[0,11],[-13,65],[-5,26],[-11,55],[-2,23],[3,15],[5,8],[6,7],[4,10],[0,14],[-2,10],[-8,16],[-1,12],[-2,29],[-3,8],[-2,-1],[-2,-4],[-2,-5],[-4,1],[-3,5],[-11,52],[-5,52],[-5,37],[-1,5],[-2,5],[-2,1],[-8,8],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,-1],[-1,-5],[0,-1],[-2,-1],[-3,-5],[-1,-2],[-4,2],[-3,6],[-4,14],[-9,21],[-3,10],[-8,90],[-3,12],[-6,9],[-13,8],[-6,8],[-3,13],[-2,73],[-4,23],[-2,7],[-3,6],[-2,6],[0,7],[0,7],[3,15],[1,5],[-2,7],[-3,12],[0,7],[1,5],[3,2],[3,2],[2,3],[6,17],[2,24],[1,47],[-2,13],[-4,5],[-5,4],[-6,6],[-9,20],[-5,4],[-7,-4],[-3,-6],[-1,-6],[-1,-2],[-4,4],[-4,24],[-6,16],[0,3],[-3,0],[-6,-3],[-5,-1],[-5,-3],[-2,0],[-4,3],[2,4],[6,8],[-4,9],[-4,3],[-1,4],[13,14],[4,8],[-1,8],[-6,7],[-6,0],[-11,-8],[-4,-2],[-7,5],[1,10],[3,14],[3,15],[0,10],[-4,6],[-4,6],[-3,7],[-2,9],[0,6],[1,6],[1,8],[1,14],[0,7],[-1,7],[-2,6],[-3,6],[-3,7],[0,8],[0,18],[-3,14],[-6,10],[-9,9]],[[61403,49256],[4,8],[7,-1],[8,-6],[6,-7],[5,-19],[-2,-12],[-5,-2],[-3,13],[0,-7],[-1,-6],[-1,-5],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,1],[-2,3],[-1,3],[0,1],[-4,-1],[-5,-3],[-10,-12],[-3,4],[-2,-1],[-2,-5],[-1,-8],[2,-5],[3,-3],[2,-5],[-1,-6],[-3,0],[-3,4],[-1,6],[0,7],[-7,-3],[0,14],[4,18],[4,14],[5,6],[6,4],[6,6],[2,12]],[[68939,64589],[0,1],[-7,37],[0,-19],[0,-6],[1,-3],[2,-8],[1,-3],[-1,-12],[-5,-23],[-2,-12],[0,-10],[3,-17],[1,-11],[-2,-1],[-6,8],[-7,15],[-1,-14],[-5,-1],[-5,9],[-3,12],[1,4],[4,6],[1,3],[0,11],[0,3],[2,10],[2,2],[4,0],[0,4],[-4,6],[-5,9],[-3,12],[-2,14],[2,15],[1,7],[-5,-1],[-6,8],[-3,3],[8,-52],[3,-13],[-5,-22],[-3,-11],[-3,-3],[-2,3],[-1,7],[-1,7],[0,5],[-1,3],[-3,-1],[-3,-3],[-1,-1],[-2,1],[-3,3],[-3,4],[-1,6],[-1,4],[-2,1],[-3,-1],[-2,2],[-1,6],[0,7],[-2,5],[-2,2],[-2,-3],[-4,-9],[-1,9],[-1,22],[-2,6],[-2,-14],[-3,-39],[-2,-8],[-8,2],[-8,5],[-15,13],[3,-5],[3,-7],[1,-8],[-3,-8],[-5,-3],[-6,1],[-10,6],[-3,0],[-2,-1],[-2,1],[-1,6],[1,7],[1,5],[1,4],[1,6],[2,34],[2,7],[0,4],[-1,0],[-1,1],[0,1],[0,2],[-3,-10],[-1,-25],[-2,-10],[-4,-4],[-4,2],[-3,8],[0,11],[-4,-8],[-2,3],[-3,7],[-3,6],[-4,0],[0,-5],[1,-6],[3,-6],[-15,8],[-4,5],[3,0],[2,0],[2,0],[3,4],[2,5],[3,13],[3,6],[-3,-2],[-3,-5],[-3,-3],[-3,2],[-1,6],[1,9],[2,13],[-12,5],[-3,4],[4,20],[3,6],[4,-3],[8,11],[3,5],[0,9],[-6,-10],[-6,1],[-6,6],[-7,3],[-16,-2],[-8,3],[-4,9],[-1,19],[-3,15],[-7,25],[-1,8],[-1,8],[0,29],[-1,5],[-3,6],[1,4],[2,7],[1,2],[-2,16],[5,8],[9,2],[7,-1],[-5,5],[-5,3],[-12,0],[-3,6],[0,16],[4,26],[-2,-4],[-2,-3],[-4,-5],[0,15],[-3,14],[-4,12],[-6,12],[6,10],[-2,4],[-6,2],[-3,7],[-1,8],[-1,9],[-1,8],[5,-3],[5,-1],[5,1],[5,3],[-8,10],[-5,4],[-5,3],[-5,-1],[-3,-3],[-2,2],[-1,12],[2,16],[5,16],[7,13],[7,9],[8,8],[0,5],[-2,8],[-4,5],[-2,0],[-4,-3],[-10,-4],[-2,1],[-2,13],[-1,6],[-2,4],[-3,3],[-5,-2],[-3,-2],[-3,0],[-5,4],[-2,-5],[2,-13],[-5,5],[-11,17],[-5,2],[-5,5],[-4,6],[-2,6],[-2,0],[0,-10],[0,-5],[2,-4],[-7,1],[-5,7],[-5,9],[-6,7],[-8,1],[-8,-5],[-6,-3],[-7,7],[-3,-2],[-14,-4],[-7,-5],[-4,-1],[-7,5],[1,11],[6,13],[7,7],[0,4],[-6,7],[0,23],[4,45],[1,36],[1,11],[3,10],[5,13],[2,9],[-1,13],[-4,19],[-1,11],[-2,5],[-10,17],[-4,4],[-3,5],[-15,28],[-10,11],[-3,10],[1,11],[8,-3],[3,12],[-1,15],[-7,8],[-3,11],[-3,21],[-3,15],[-5,-6],[-1,3],[0,3],[-1,2],[-3,-2],[-2,4],[-1,8],[-2,6],[-9,20],[-2,9],[-7,-4],[-7,1],[-4,7],[1,13],[-5,-7],[-5,-4],[-10,-2],[-3,1],[-6,3],[-4,0],[-1,-1],[-1,-3],[-3,-3],[-10,-4],[-5,-7],[-5,-9],[-3,-10],[-5,-21],[-2,-3],[-3,-2],[-3,-6],[-3,-6],[-1,-6],[7,0],[22,8],[4,2],[3,5],[4,10],[1,1],[1,1],[1,1],[2,0],[1,2],[-1,4],[0,4],[0,3],[6,4],[9,2],[7,0],[3,-4],[2,-7],[3,-3],[3,-2],[4,-3],[2,-5],[4,-13],[3,-6],[4,6],[5,3],[6,-2],[4,-7],[-9,-16],[11,-14],[4,-10],[-4,-9],[-4,1],[-5,7],[-8,13],[-21,19],[-14,5],[-9,-4],[-7,3],[-9,-5],[-9,-7],[-8,-3],[-25,-1],[-18,-10],[-22,-6],[-12,1],[-7,-2],[-9,-9],[-7,-4],[-10,-10],[-11,-4],[-15,-14],[-5,-2],[-6,1],[-40,22],[-5,1],[-6,-2],[-7,-5],[-6,-4],[-5,3],[1,3],[3,9],[-9,-1],[-8,-3],[-6,-5],[-6,-7],[-9,9],[-8,-5],[-5,-14],[-7,-22],[-2,-4],[-3,-3],[-4,-2],[-3,0],[-7,4],[-8,2],[-9,5],[-4,2],[-18,0],[-16,6],[-9,0],[-8,-6],[-6,5],[-9,2],[-17,-3],[-7,-6],[-7,-10],[-4,-12],[-3,-13],[-2,-15],[0,-7],[2,-7],[3,-3],[5,-2],[3,-4],[0,-7],[-2,0],[-13,-8],[-4,1],[-7,4],[-4,0],[7,22],[0,10],[-4,14],[-5,6],[-8,5],[-8,3],[-5,0],[-3,-5],[-4,-12],[-4,-3],[-3,-1],[-5,-2],[-3,-1],[-6,4],[-10,18],[-6,7],[-12,5],[-11,2],[-3,2],[-4,8],[-2,3],[-17,1],[-25,10],[0,8],[3,11],[1,10],[-2,4],[-2,3],[-3,4],[-1,8],[1,6],[3,3],[4,1],[3,0],[6,-3],[3,2],[1,9],[-1,2],[-3,2],[-4,0],[-12,-6],[-7,-1],[-3,5],[-16,-15],[-3,-8],[4,3],[1,2],[2,-11],[2,-3],[3,4],[4,8],[4,0],[3,-11],[5,-20],[-3,-11],[-2,-1],[-5,0],[-11,-3],[-4,-1],[-5,4],[-7,-6],[-11,4],[-28,20],[-19,6],[-19,-1],[-18,-5],[-9,-6],[-5,-5],[-4,-7],[-8,-16],[-4,-15],[-3,-5],[-4,3],[1,-9],[2,-8],[9,-20],[1,-2],[0,-1],[0,-4],[-1,-4],[-1,-4],[-1,-3],[-2,-1],[-8,3],[-16,14],[-10,3],[-19,-4],[-5,1],[-13,11],[-18,10],[-10,2],[-8,-4],[-18,-18],[-6,-2],[-24,4],[-47,20],[-46,3],[-22,-2],[-14,-3],[-3,-12],[0,-9],[7,-5],[-6,-5],[-7,5],[-8,-5],[-8,-8],[-6,-8],[-3,-6],[-3,-8],[-2,-9],[1,-9],[3,-7],[6,-3],[4,-4],[-2,-8],[-11,0],[-14,1],[-9,5],[6,11],[1,2],[1,1],[1,2],[3,2],[2,0],[2,1],[1,7],[-4,15],[-2,11],[-6,8],[-6,8],[-8,1],[-9,3],[-13,-1],[-12,-7],[-6,-5],[-4,-11],[-2,-10],[4,-7],[1,-13],[3,-6],[3,-7],[-6,-3],[-11,1],[-13,3],[-17,1],[-13,-4],[-4,-11],[-1,-5],[-2,-5],[-3,-18],[-3,1],[-6,-7],[-7,-5],[-10,-3],[-7,5],[-2,9],[1,13],[3,6],[-2,8],[1,5],[5,8],[3,6],[1,4],[0,8],[1,6],[3,10],[1,7],[0,8],[-1,2],[-1,-1],[-2,-2],[-1,-1],[-2,-5],[-2,-1],[-1,1],[-4,5],[-2,1],[-3,1],[-2,3],[-1,3],[-2,2],[-4,0],[-9,0],[-4,2],[-3,0],[-3,-2],[-7,1]],[[67107,65395],[9,49],[2,50],[2,59],[1,51],[1,34],[1,9],[2,5],[4,8],[2,5],[1,20],[-3,24],[-2,22],[6,15],[6,3],[5,0],[5,2],[4,10],[2,10],[3,41],[3,50],[3,37],[2,31],[3,36],[2,19],[4,16],[7,10],[33,18],[10,13],[6,5],[5,3],[12,4],[2,6],[1,14],[5,15],[10,-3],[13,-8],[10,-3],[6,6],[0,8],[-3,11],[-1,14],[2,7],[8,17],[3,10],[0,4],[-1,3],[-1,4],[1,5],[1,5],[3,2],[5,5],[3,2],[3,5],[2,2],[3,1],[6,-1],[3,1],[1,3],[3,8],[2,3],[2,2],[47,9],[6,4],[2,3],[2,5],[2,3],[3,-2],[4,-2],[2,-1],[9,4],[2,2],[2,2],[2,3],[3,10],[2,5],[3,2],[19,-1],[22,-1],[25,-1],[10,-4],[11,0],[9,3],[2,0],[3,-2],[2,-3],[2,-2],[3,0],[6,11],[3,24],[2,86],[2,9],[5,5],[11,3],[4,8],[1,10],[-2,10],[-4,10],[-2,11],[-2,66],[1,7],[1,6],[3,8],[1,6],[3,10],[5,4],[6,1],[5,-4],[-9,40],[-4,11],[-3,6],[-3,3],[-7,5],[-3,4],[-7,12],[-3,3],[-3,0],[-15,-10],[-4,0],[-5,1],[-7,-1],[-15,-8],[-7,-2],[-16,-6],[-8,-1],[-8,4],[-7,6],[-2,2],[-2,-1],[-4,-4],[-2,0],[-4,4],[-12,20],[4,1],[3,4],[2,7],[1,8],[0,10],[-1,6],[-5,13],[14,62],[2,25],[-2,30],[-2,55],[-2,30],[-2,48],[-2,35],[-7,57],[-5,41],[4,67],[4,61],[-1,21],[-6,7],[-46,-18],[-5,7],[-18,36],[-4,13],[-2,10],[-1,6],[-3,3],[-5,3],[-5,5],[-2,7],[-3,8],[-3,7],[-8,8],[-36,14],[-23,19],[-9,4],[-19,3],[-8,5],[-13,14],[-17,9],[-5,5],[-9,19],[-18,31],[-11,28],[-29,49],[-8,18],[-8,33],[-8,16],[-1,9],[-1,10],[-2,12],[-11,50],[-3,6],[-3,5],[-3,3],[-3,3],[0,4],[1,3],[2,4],[2,5],[1,6],[-1,5],[-2,4],[-5,3],[-2,9],[-2,10],[-3,9],[-3,3],[-2,0],[-3,2],[-3,6],[-1,7],[-1,15],[-1,6],[-3,10],[-9,19],[-3,12],[0,11],[4,21],[0,12],[-3,15],[-4,6],[-6,4],[-6,9],[-23,50],[-21,49],[-21,46],[-18,41],[-15,32],[-22,49]],[[66901,68152],[8,-7],[20,-12],[23,-14],[23,-14],[24,-14],[23,-14],[23,-13],[23,-14],[23,-14],[23,-14],[23,-14],[23,-14],[24,-14],[23,-13],[23,-14],[23,-14],[23,-14],[23,-14],[27,-15],[28,-11],[35,6],[8,2],[14,2],[13,3],[14,2],[13,2],[14,3],[14,2],[13,3],[14,2],[13,2],[14,3],[14,2],[13,3],[14,2],[14,2],[13,3],[14,2],[42,8],[61,-22],[51,-19],[32,-25],[8,6],[10,36],[6,16],[10,9],[75,42],[6,0],[51,-1],[38,-1],[46,-15],[14,-1],[40,22],[16,8],[17,9],[16,9],[16,9],[16,8],[16,9],[16,9],[16,9],[16,8],[17,9],[16,9],[16,9],[16,8],[16,9],[16,9],[16,9],[24,13],[22,29],[7,18],[6,18],[2,2],[2,2],[1,2],[-2,6],[-9,12],[-11,22],[-10,12],[-1,8],[0,10],[4,22],[18,68],[1,11],[0,36],[5,78],[-1,12],[-1,12],[-2,8],[-7,16],[-5,23],[1,26],[27,191],[3,8],[5,5],[37,14],[6,5],[27,49],[5,14],[9,66],[7,9],[11,3],[7,10],[6,13],[9,13],[18,17],[11,6],[16,0],[4,-4],[2,-8],[1,-13],[-1,-5],[-2,-3],[-1,-4],[1,-5],[2,-3],[3,-2],[7,-2],[5,0],[11,5],[5,0],[6,-3],[10,-10],[6,-4],[4,-1],[15,1],[18,-3],[5,2],[19,15],[16,4],[11,8],[15,5],[5,4],[17,21],[4,6],[4,5],[4,2],[12,0],[4,3],[3,11],[-2,25],[-10,6],[-23,-6],[-5,3],[-6,7],[-4,8],[-1,24],[-4,10],[-4,9],[-2,9],[3,10],[9,0],[18,-7],[9,2],[8,6],[6,8],[9,11],[18,36],[7,6],[4,1],[9,-3],[11,1],[3,3],[3,8],[5,7],[14,15],[2,4],[1,13],[1,5],[9,15],[2,5],[1,6],[6,25],[4,8],[5,0],[8,-4],[6,-6],[7,-11],[3,-8],[3,-6],[6,-1],[11,0],[11,-1],[29,-19],[11,-3],[4,3],[6,6],[4,8],[-3,5],[-5,1],[-17,0],[-6,1],[-5,4],[0,6],[5,8],[12,11],[7,5],[6,0],[9,-7],[16,-17],[16,-5],[3,-4],[2,-7],[1,-24],[2,-8],[7,-16],[13,-33],[7,-10],[12,2],[17,17],[10,6],[10,-2],[7,6],[10,13],[9,15],[4,10],[4,5],[4,8],[30,86],[8,14],[13,19],[1,2],[1,3],[-1,8],[-9,45],[-5,56],[0,13],[2,25],[0,25],[2,25],[0,13],[-1,12],[-7,34],[-3,25],[2,25],[5,22],[8,19],[6,7],[11,7],[5,7],[15,40],[3,11],[1,8],[-3,19],[0,11],[-1,4],[-2,3],[-2,2],[-3,3],[-2,3],[-1,5],[0,12],[3,8],[9,12],[7,17],[7,10],[2,3],[2,17],[-5,64],[3,10],[2,11],[8,16],[9,11],[11,3],[6,0],[9,3],[3,-2],[2,-2],[2,-1],[6,3],[13,16],[10,4],[19,-17],[12,2],[20,22],[3,1],[8,-1],[4,3],[2,5],[9,32],[3,2],[7,-4],[6,-1],[5,6],[48,71],[2,19],[-5,18],[-15,30],[-1,4],[-2,10],[-2,3],[-8,4],[-2,3],[-4,9],[-2,11],[-1,11],[0,11],[6,38],[0,14],[-1,4],[-2,3],[-5,4],[-2,3],[-1,3],[-2,10],[-2,23],[-3,6],[-12,-3],[-15,11],[-4,1],[-7,2],[-4,5],[-3,11],[-2,11],[-2,9],[-7,18],[-2,9],[-4,22],[-3,8],[-8,15],[-1,9],[3,8],[5,9],[1,9],[-1,9],[0,9],[5,8],[7,5],[15,4],[10,-1],[60,-37],[15,-3],[10,-9],[5,-2],[22,-2],[23,-9],[9,0],[37,9],[38,-1],[19,7],[5,18],[1,7],[3,2],[8,-5],[5,0],[4,2],[3,5],[3,8],[6,4],[13,5],[5,7],[1,11],[-1,10],[0,9],[3,12],[8,16],[2,8],[0,14],[-1,12],[-3,21],[0,10],[9,42],[-2,14],[-19,20],[-9,14],[-8,17],[-6,16],[-2,11],[-2,13],[1,13],[3,11],[4,3],[1,0],[5,0],[12,-3],[5,5],[3,12],[1,14],[-1,12],[-2,14],[0,9],[3,6],[19,29],[11,9],[4,7],[15,37],[4,20],[5,18],[10,14],[33,23],[4,3],[3,4],[2,7],[2,13],[3,7],[3,4],[2,4],[0,6],[-2,6],[1,26],[7,16],[19,23],[7,19],[3,12],[-1,7],[-9,12],[-15,31],[-5,15],[0,16],[9,20],[13,20],[3,9],[0,12],[-2,8],[-4,7],[-2,5],[-1,4],[-2,13],[1,11],[2,11],[0,12],[-2,8],[-5,6],[-15,13],[-6,8],[-2,10],[3,12],[5,11],[2,11],[-1,11],[-4,10],[-2,3],[-4,6],[-1,4],[-2,7],[0,5],[1,5],[-1,6],[-1,9],[-10,29],[-4,9],[-12,15],[-3,9],[-1,20],[-5,8],[-8,6],[-8,3],[-7,6],[-7,13],[-4,5],[-10,10],[-3,4],[0,3],[-1,8],[2,10],[9,15],[2,6],[1,12],[1,5],[11,12],[9,7],[2,3],[2,6],[2,12],[1,4],[18,11],[5,7],[22,41],[4,6],[5,3],[7,2],[6,6],[-2,7],[-3,9],[2,9],[6,12],[3,7],[2,9],[3,18],[3,6],[5,1],[6,-4],[16,-19],[8,-15],[4,-3],[5,0],[4,3],[3,7],[-1,8],[-4,16],[-1,19],[6,6],[18,2],[4,3],[4,5],[3,6],[4,6],[13,13],[5,8],[6,5],[11,5],[5,7],[0,6],[-1,5],[-1,5],[3,5],[3,3],[7,4],[16,4],[5,4],[-2,10],[-4,12],[1,7],[4,6],[13,9],[24,9],[12,2],[12,6],[13,-1],[5,2],[18,26],[13,11],[18,8],[19,2],[23,-6],[24,2],[8,4],[7,6],[7,3],[9,-6],[3,0],[4,2],[6,8],[5,3],[41,8],[9,-2],[8,-4],[4,0],[4,0],[14,9],[14,-2],[18,4],[9,-2],[9,-2],[36,10],[19,-1],[1,0],[17,-1],[17,-6],[8,-6],[23,-25],[8,-3],[9,-6],[8,0],[16,10],[3,6],[1,20],[2,8],[4,5],[4,2],[19,-3],[6,4],[14,19],[23,25],[7,10],[12,6],[6,0],[5,-3],[1,-1],[1,-2],[5,-13],[6,-8],[4,2],[2,19],[1,5],[0,4],[0,4],[-1,3]],[[71326,71580],[38,-159],[38,-158]],[[68715,64720],[4,-8],[6,0],[13,8],[5,-7],[2,-1],[-5,-5],[-2,-8],[-1,-8],[-8,-4],[-5,4],[-4,8],[-3,8],[-1,3],[-1,10]],[[59712,43616],[-87,2],[-10,-5],[-3,-8],[1,-11],[1,-25],[0,-24],[-2,-24],[-12,-58],[-21,-67],[-30,-94],[-5,-30],[-2,-27],[1,-3],[7,-51],[16,-121],[15,-114],[4,-66],[4,-83],[4,-71],[3,-59],[-1,-50],[0,-49],[9,-43],[1,-1],[1,-2],[4,-10],[4,-9],[5,-21],[2,-7],[0,-3],[1,-3],[3,-3],[4,-2],[36,2],[9,-4],[10,-7],[8,-11],[29,-54],[24,-46],[24,-60],[30,-74],[25,-63],[24,-59],[19,-75],[24,-63],[29,-77],[10,-26],[10,-26],[14,-29],[3,-9],[2,-10],[2,-124],[2,-5],[4,-1],[6,0],[-11,-51],[-7,-37],[-14,-66],[-2,-14],[1,-14],[1,-10],[6,-55],[8,-67],[-1,-24],[-1,-47],[-3,-74],[-1,-53],[-3,-85],[-3,-22],[-2,-15],[0,-10],[2,-18],[-1,-9],[-2,-13],[-4,-10],[-21,-28],[-3,-3],[-2,-1],[-5,2],[-3,0],[-27,-17],[-6,-1],[-2,-4],[-1,-9],[-1,-5],[-4,0],[-4,4],[-2,4],[-2,10],[-5,7],[-5,3],[-6,0],[-6,-3],[-5,-7],[-20,-36],[-1,-4],[-6,-15],[-5,-23],[-2,-27],[0,-6],[4,-17],[-2,-6],[-6,-16],[0,-3],[-2,-8],[1,-24],[-2,-10],[-4,-9],[-19,-26],[-4,-5],[5,-26],[4,-15],[1,-6],[2,-5],[3,-2],[3,-1],[6,-5],[2,-2],[1,-3],[1,-6],[1,-3],[1,-1],[3,-2],[0,-2],[7,-15],[1,-3],[1,-39],[1,-12],[5,-23],[2,-14],[-7,-13],[-1,-12],[1,-23],[-1,-2],[-2,-3],[-1,-3],[0,-4],[1,-2],[9,-11],[2,-5],[-1,-8],[-3,-11],[-1,-10],[3,-22],[0,-12],[-1,-10],[-1,-8],[-2,-7],[-16,-3],[-28,2],[-15,5],[-4,8],[1,15],[-9,29],[2,18],[6,11],[7,7],[6,9],[3,16],[1,19],[0,21],[-3,19],[-6,9],[-9,1],[-8,-2],[-8,3],[-8,13],[-5,14],[-3,6],[-4,5],[-1,2],[-5,1],[-2,3],[-1,4],[-1,11],[-1,5],[-2,3],[-2,4],[-5,4],[-5,5],[-2,10],[-2,12],[-3,8],[-12,23],[-3,8],[-5,20],[-4,8],[-17,19],[-2,2],[-2,2],[-4,18],[-1,5],[-2,5],[-9,14],[-3,7],[-3,9],[-8,41],[-6,13],[-13,4],[-9,1],[-6,11],[-11,52],[1,20],[5,38],[-1,17],[-4,13],[-24,51],[-4,5],[-9,9],[-3,6],[-3,16],[-1,22],[2,20],[2,15],[8,18],[5,8],[5,4],[6,4],[3,4],[17,49],[3,19],[1,24],[-2,35],[0,20],[3,10],[5,6],[6,18],[5,7],[2,7],[2,15],[1,8],[3,8],[3,5],[4,4],[4,6],[5,15],[1,16],[-3,42],[-3,45],[1,10],[2,7],[0,7],[-2,7],[-1,8],[2,9],[6,16],[2,9],[0,10],[-2,9],[-3,9],[-2,9],[-2,12],[-1,10],[0,43],[-1,19],[-3,18],[-5,19],[-3,20],[4,35],[0,20],[-5,19],[-14,29],[-7,17],[-9,39],[-3,11],[-3,7],[-8,8],[-2,-1],[-2,-2],[-2,-4],[-2,-3],[-2,-1],[-5,1],[-2,0],[-27,-21],[-21,-1],[-9,-8],[-2,-6],[-3,-15],[-2,-3],[-29,9],[-8,0],[-8,-4],[-16,-21],[-8,-6],[-8,2],[-15,24],[-6,-4],[-4,-14],[-2,-17],[0,-20],[-1,-11],[-3,-4],[-5,3],[-3,6],[-2,8],[-2,10],[-4,22],[-2,8],[-4,5],[-7,7],[-3,5],[-3,8],[-1,7],[-2,8],[-4,6],[-11,11],[-4,6],[-5,14],[-14,59],[-5,15],[-4,15],[-1,3],[-1,4],[-3,2],[-4,5],[-2,6],[-7,24],[-1,10],[1,30],[-3,17],[-6,10],[-16,17]],[[59222,42170],[-4,12],[-9,34],[-4,7],[-3,-3],[-2,-15],[-3,-5],[-10,-6],[-3,-5],[-4,-8],[-9,-30],[-5,-2],[-6,17],[-2,9],[1,30],[1,3],[-1,4],[-1,5],[-2,2],[-5,-1],[-3,4],[-1,10],[-1,8],[-1,9],[-14,36],[-4,7],[-8,7],[-11,4],[-8,8],[-1,16],[3,6],[10,10],[2,7],[-1,7],[-11,31],[-7,7],[-10,0],[-9,4],[-3,19],[1,12],[2,5],[4,-1],[6,-4],[3,1],[8,14],[3,5],[11,3],[3,5],[1,13],[0,11],[1,10],[2,6],[5,2],[8,8],[5,23],[4,32],[4,33],[5,23],[7,19],[8,5],[2,8],[-1,7],[-5,13],[-2,10],[-1,10],[0,11],[4,65],[8,36],[1,17],[-3,14],[-6,13],[-8,10],[-2,7],[-1,43],[1,11],[3,16],[10,31],[9,35],[3,8],[4,8],[2,2],[2,-1],[2,-4],[1,-4],[2,-4],[2,2],[3,5],[2,2],[4,3],[2,0],[3,-1],[2,-4],[3,-13],[1,-3],[3,0],[2,3],[0,4],[2,3],[2,2],[1,2],[1,3],[3,2],[4,5],[5,20],[3,8],[2,2],[8,3],[3,-1],[3,-3],[2,-3],[2,-1],[6,3],[7,8],[5,12],[5,14],[3,6],[8,7],[3,7],[0,14],[1,5],[5,1],[2,10],[7,9],[1,2],[2,9],[0,13],[-3,2],[-5,0],[-11,8],[-20,-13],[-10,7],[-5,17],[-5,42],[-4,19],[-3,8],[-8,16],[-2,9],[0,20],[1,20],[11,54],[2,30],[2,10],[1,9],[-1,9],[-3,13],[0,9],[3,22],[1,22],[-3,96],[-1,10],[-4,9],[-5,1],[-5,-1],[-4,0],[-5,4],[-1,4],[4,19],[2,11],[0,7],[-1,51],[3,8],[7,-12],[2,8],[0,7],[0,8],[0,8],[1,4],[5,3],[1,3],[0,4],[0,6],[0,4],[19,63],[4,17],[3,18],[-9,33],[-6,13],[-6,14],[-4,17],[-2,18],[-1,17],[-1,18],[-2,19],[-4,7],[-4,-1],[-3,0],[-3,3],[1,8],[2,11],[3,2],[3,-2],[3,0],[4,5],[5,17],[4,6],[3,3],[7,3],[4,3],[4,1],[9,-4],[5,0],[3,3],[5,11],[5,2],[5,7],[3,10],[5,24],[13,32],[4,5],[4,4],[10,16],[5,8],[4,15],[0,2],[0,2],[0,6],[-2,11],[0,15],[-8,3],[-4,10],[-5,27],[-2,5],[-8,14],[-3,7],[-7,37],[-1,14],[2,33],[-1,19],[-4,9],[-5,8],[-5,15],[-8,5],[-5,9],[-4,10],[-6,11],[-23,21],[-3,11],[0,15],[1,15],[5,28],[9,27],[2,12],[-2,17],[-5,23],[-1,5],[-11,8],[-3,4],[-3,6],[-3,7],[-4,16],[-3,7],[-7,9],[-2,9],[-1,8],[1,6],[1,5],[1,6],[0,9],[-2,8],[-4,15],[-5,8],[-15,2],[-7,6],[-1,-15],[-1,-18],[-3,-10],[-6,4],[-1,6],[-1,7],[-1,6],[-3,3],[-4,-2],[-3,-4],[-3,-3],[-4,3],[-3,16],[5,42],[0,17],[-3,2],[-4,8],[-2,2],[-3,0],[-2,-3],[-1,-1],[-3,5],[-1,8],[-1,34]],[[59144,44898],[4,10],[6,5],[5,1],[5,-6],[14,-29],[17,-28],[2,-2],[8,-4],[8,-7],[1,-1],[3,2],[3,7],[2,1],[4,1],[6,-4],[3,-1],[3,2],[4,6],[3,1],[4,-4],[16,-23],[5,-10],[5,-22],[3,-11],[5,-7],[5,-3],[12,-2],[8,4],[7,8],[6,6],[10,-2],[8,-5],[8,-3],[7,2],[7,9],[9,5],[8,-10],[7,-15],[7,-10],[7,-6],[7,-10],[7,-12],[3,-11],[3,-5],[5,10],[0,4],[4,6],[2,6],[1,8],[1,10],[1,18],[1,11],[-5,26],[4,15],[6,11],[4,8],[4,9],[10,-7],[9,-12],[0,-1],[3,-7],[4,-4],[9,-24],[2,-3],[5,-11],[8,-8],[27,-60],[8,-6],[2,-8],[1,-11],[1,-11],[2,-5],[6,-13],[1,-1],[5,-11],[0,-2],[28,-73],[3,-12],[9,-25],[3,-20],[0,-6],[0,-7],[-3,-12],[0,-6],[2,-20],[9,-44],[3,-31],[2,-13],[1,-7],[-1,-7],[-5,-64],[1,-13],[5,-19],[2,-11],[-1,-5],[-3,-14],[0,-7],[0,-3],[0,-5],[2,-8],[1,-8],[3,-7],[2,-2],[2,0],[1,0],[1,-1],[1,-7],[0,-11],[1,-4],[6,-15],[2,-12],[0,-13],[-3,-12],[1,-5],[1,-3],[1,-3],[2,-3],[2,-4],[0,-8],[-3,-5],[-2,-5],[1,-16],[-3,-37],[0,-26],[-1,-6],[-5,-24],[-3,-7],[-5,-15],[-1,-15],[1,-12],[3,-25],[1,-14],[2,-11],[14,-24],[1,-5],[1,-6],[1,-3],[5,-3],[2,-3],[2,-5],[1,-5],[1,-14],[2,-11],[4,-9],[4,-5],[0,-4],[-1,-2],[-3,-4],[-1,-1],[6,-25],[2,-4],[1,0],[4,7],[2,1],[2,0],[12,-9],[7,-7],[5,-10],[2,-12],[1,-5],[6,-9],[2,-16],[3,-6],[2,-5],[1,-4],[1,-4],[1,-5],[2,-7],[0,-9],[0,-30],[1,-5]],[[59637,43363],[6,-1],[6,-5],[4,-6],[3,-12],[-1,-15],[-3,-14],[-5,-11],[-5,-7],[-7,-3],[-5,4],[-4,13],[0,12],[2,14],[5,26],[4,5]],[[59600,43376],[10,5],[8,-10],[4,-18],[-3,-21],[-5,-12],[-5,1],[-3,7],[-4,11],[-7,17],[-1,10],[6,10]],[[59144,44898],[-4,6],[-21,17],[-13,18],[-2,0],[-5,-1],[-2,2],[-1,4],[-1,9],[-1,5],[-4,8],[-4,4],[-19,4],[-24,11],[-11,2],[-4,5],[-4,13],[-5,27],[-3,8],[-10,15],[-11,5],[-36,-1],[-6,1],[-6,5],[-5,8],[-11,22],[-2,3],[-3,4],[-3,0],[-5,-3],[-3,0],[-3,2],[-8,9],[-7,3],[-4,-4],[-4,-7],[-6,-5],[-12,6],[-6,23],[0,30],[6,24],[-42,24],[-6,-2],[-10,-10],[-5,-5],[-6,0],[-5,4],[-26,44],[-7,18],[-2,25],[0,22],[-2,15],[-5,10],[-11,7],[-4,5],[-6,15],[-5,5],[-4,0],[-4,0],[-3,0],[-4,5],[-1,5],[-1,10],[-1,4],[-2,3],[-1,-1],[-1,-2],[-2,-2],[-3,-1],[-15,-11],[-2,-3],[-2,-2],[-4,2],[-3,4],[-5,15],[-3,5],[-7,0],[-6,-6],[-5,-9],[-6,-6],[-12,0],[-12,9],[-12,15],[-9,15],[-19,42],[-17,54],[-14,59],[-7,56]],[[58542,45617],[-7,53],[-20,105],[-60,196],[-7,56],[-3,39],[-10,74],[-20,96],[-17,54],[-40,99],[-22,39],[-12,13],[-27,29],[-37,60],[-9,20],[-6,22],[-14,80],[-19,51],[-8,28],[-3,24],[-5,70],[-8,67],[-1,23],[6,38],[21,59],[8,34],[3,45],[-5,50],[-27,136],[-11,95],[-22,85],[-9,48],[-1,4],[-5,47],[-1,50],[6,50],[16,97],[3,50],[-1,24],[-1,7]],[[58167,47834],[65,2],[14,-7],[11,-2],[2,-1],[3,6],[1,6],[0,8],[1,8],[2,4],[4,5],[2,5],[0,9],[1,2],[4,6],[3,-1],[3,-3],[5,-1],[2,1],[15,15],[10,20],[10,12],[2,4],[7,8],[3,9],[7,36],[3,9],[19,34],[8,21],[7,24],[1,4],[4,22],[5,43],[3,12],[15,32],[10,39],[7,10],[13,-9],[1,11],[-1,9],[-2,9],[-1,10],[0,11],[2,11],[12,38],[2,11],[0,11],[-1,12],[2,7],[8,12],[0,2],[1,7],[1,2],[5,2],[0,-2],[6,1],[0,2],[0,5],[1,1],[7,4],[2,1],[2,4],[4,10],[13,13],[7,15],[1,15],[-9,10],[-2,2],[5,13],[6,11],[6,8],[7,6],[4,1],[3,3],[1,6],[1,7],[8,-8],[7,2],[7,9],[4,16],[0,4],[-1,10],[0,5],[4,12],[2,14],[0,7],[0,8],[-1,4],[-4,5],[-1,5],[1,3],[1,8],[0,3],[-3,9],[-7,13],[-1,9],[2,9],[8,21],[1,4],[2,7],[-6,0],[-13,-8],[-7,-1],[-4,2],[-6,9],[-3,3],[-4,-1],[-3,-2],[-2,-2],[-4,2],[-1,3],[-1,9],[0,4],[-2,2],[-3,3],[-18,23],[-3,1],[-3,-3],[-4,-6],[-5,-16],[-2,-2],[0,1],[-1,7],[-2,5],[-2,5],[1,6],[-5,3],[-4,9],[-7,19],[0,10],[3,13],[6,18],[0,15],[1,9],[2,8],[16,35],[2,12],[-6,-5],[-10,-10],[-6,-4],[-6,0],[-3,6],[1,15],[3,7],[6,14],[3,7],[1,6],[2,19],[11,55],[4,12],[9,25]],[[58487,49048],[5,7],[6,-2],[6,-4],[6,1],[3,6],[4,16],[3,5],[4,1],[3,-2],[14,-15],[3,-1],[2,1],[2,2],[4,2],[4,6],[5,4],[4,6],[2,11],[2,12],[-2,40],[3,26],[9,66],[-2,18],[-3,8],[-4,9],[-5,6],[-5,-3],[3,35],[-1,15],[-8,3],[2,5],[1,4],[5,7],[-2,11],[1,9],[3,9],[1,10],[-2,24],[-1,6],[3,16],[0,6],[-3,8],[0,3],[0,6],[3,47],[1,15],[-2,13],[-7,-6],[-4,7],[-3,14],[-3,21],[-1,5],[-3,7],[-5,14],[-2,7],[2,4],[1,7],[0,15],[-1,16],[-6,7],[-5,1],[-19,15],[-2,3],[-4,8],[-3,5],[-8,7],[-4,6],[-1,9],[0,5],[0,3],[1,3],[0,2],[0,5],[-3,7],[-1,12],[-5,18],[-2,8],[-1,16],[-1,3],[-4,5],[-1,0],[-2,-2],[-2,-1],[-2,3],[-1,4],[1,4],[1,3],[0,3],[0,9],[-4,5],[-1,7],[0,6],[3,7],[2,5]],[[58464,49838],[0,1],[2,3],[4,0],[2,-3],[1,-3],[2,-2],[3,1],[5,2],[14,3],[6,-2],[7,-4],[4,6],[10,23],[4,4],[10,7],[11,12],[9,-5],[5,-5],[18,0],[51,0],[51,0],[5,0],[45,0],[51,0],[51,0],[49,0],[2,0],[51,0],[51,0],[51,0],[50,0],[35,0],[16,0],[51,0],[51,0],[43,0],[8,0],[49,0],[2,0],[50,0],[23,0]],[[60886,47700],[2,-4],[4,-3],[2,-17],[-1,-19],[-5,-10],[-8,-8],[6,-5],[4,-1],[3,-3],[0,-14],[0,-12],[-1,-10],[-2,-10],[-9,-32],[-3,-7],[-2,9],[1,11],[2,12],[1,11],[-2,10],[-5,-30],[-4,-11],[-6,1],[5,-16],[0,-6],[1,-33],[0,-6],[-2,-3],[-5,3],[-2,-2],[-1,-3],[-3,-12],[0,-8],[4,1],[9,7],[0,-8],[3,-15],[0,-5],[-1,-5],[-10,-19],[-2,-5],[-6,-25],[-8,-27],[-1,-4],[2,-4],[3,4],[4,12],[2,-7],[-12,-75],[-3,-13],[-4,-11],[-3,-4],[-3,-3],[-2,-5],[-1,-8],[1,-5],[2,-2],[2,-4],[0,-9],[-3,-23],[-8,-35],[-10,-31],[-9,-13],[4,-3],[-2,-13],[0,-27],[-3,-11],[-4,-10],[-5,-22],[-6,-19],[-2,-13],[-1,-14],[0,-38],[-1,-6],[-2,-4],[-1,-5],[-2,-6],[0,-2],[-1,-15],[-3,-12],[-2,-13],[0,-14],[1,-4],[4,-8],[1,-4],[3,-23],[1,-6],[1,-3],[7,-9],[4,-8],[0,-3],[2,-23],[-1,-14],[-2,-13],[-3,-8],[2,-15],[1,-33],[3,-15],[3,-5],[4,-3],[2,-4],[2,-6],[0,-6],[1,-7],[2,-6],[2,-5],[2,-3],[1,-1],[4,0],[2,-2],[1,-4],[1,-4],[1,-3],[3,-1],[8,-1],[3,-4],[3,-2],[3,2],[0,5],[-3,2],[-4,4],[-6,8],[8,-6],[6,-5],[15,-31],[10,-23],[7,-12],[2,-5],[4,-15],[3,-5],[4,-6],[3,-5],[2,-6],[1,-8],[0,-8],[2,-14],[4,-17],[5,-7],[5,10],[1,-17],[-2,-23],[1,-21],[5,-12],[0,11],[0,5],[-2,5],[5,-1],[4,-3],[8,-11],[5,-2],[8,-2],[3,-4],[5,-3],[10,0],[2,-3],[1,-8],[5,-14],[2,-18],[14,-37],[1,-4],[-1,-6],[-1,-4],[-2,-3],[0,-3],[2,-38],[0,-16],[-4,1],[-3,-8],[-2,-16],[-2,-7],[-3,-5],[-3,0],[-2,6],[-1,10],[-11,-18],[-1,0],[-2,-7],[-1,-10],[-1,-10],[-1,-8],[-3,-9],[-4,-6],[-2,-1],[-2,-1],[-2,-2],[0,-4],[1,-5],[1,-5],[-2,-7],[-3,-1],[-5,0],[-3,0],[2,-10],[3,-6],[2,-8],[0,-12],[-1,-9],[-3,-12],[-2,-11],[-8,-14],[-3,-23],[-5,-65],[0,-12],[2,-12],[3,-19],[1,-12],[-2,-8],[-1,-9],[5,-21],[-2,-11],[-12,-30],[8,4],[6,14],[4,20],[3,19],[4,-7],[3,-8],[1,-9],[-5,-9],[11,2],[5,-1],[4,-7],[8,-16],[1,-8],[-2,-15],[-4,-19],[0,-7],[3,-21],[0,-23],[1,-10],[4,5],[2,3],[-1,-18],[-4,-17],[-8,-30],[-10,-53],[-4,-17],[-2,2],[-1,0],[0,-1],[-3,-1],[2,-8],[0,-21],[0,-11],[-3,4],[-1,-5],[-1,-11],[-5,10],[-2,4],[-3,2],[3,-9],[0,-7],[-2,-5],[-4,-3],[3,-15],[2,-16],[2,-16],[0,-18],[-2,-35],[1,-16],[9,-21],[4,-13],[2,-15],[1,-14],[0,-49],[-2,-12],[10,-6],[2,-3],[0,-5],[1,-4],[3,-2],[6,-1],[2,-3],[0,-8],[1,-12],[2,-10],[4,-4],[3,-3],[3,-6],[3,-8],[3,-21],[3,-9],[8,-13],[2,-5],[-4,-3],[-4,1],[-2,1],[-4,7],[0,1],[-6,11],[-5,14],[-4,5],[-6,-1],[-3,-3],[-2,-1],[-1,-1],[-5,-17],[4,-4],[17,4],[-4,-10],[-1,-6],[2,-4],[6,-1],[4,-3],[0,-8],[-1,-12],[-1,-13],[1,-2],[3,-4],[0,-2],[0,-12],[0,-1],[-1,-6],[-1,-2],[1,-1],[1,-1],[2,-2],[0,-4],[-1,-5],[-1,-4],[-1,-4],[0,-7],[2,-9],[0,-5],[-1,-6],[4,2],[5,5],[4,6],[3,5],[4,1],[4,-8],[12,-32],[5,-17],[1,-18],[-4,-19],[-1,-4],[2,-5],[2,-5],[1,-5],[0,-6],[-1,-12],[-1,-6],[1,-19],[-1,-8],[-3,-10],[-4,-6],[-3,-2],[-2,1],[-5,-1],[-3,-3],[-2,-6],[0,-8],[1,-11],[3,2],[3,2],[6,0],[0,7],[2,2],[3,-3],[1,-4],[1,-1],[1,-1],[3,-3],[1,-6],[-1,-7],[0,-4],[2,-6],[7,-13],[2,-11],[3,-32],[3,-9],[4,-6],[-1,-4],[-2,-4],[0,-4],[1,-7],[1,-4],[4,-8],[2,-6],[-1,-12],[2,-12],[-2,-4],[-6,-4],[-4,-9],[-2,-5],[3,-3],[11,1],[2,-1],[1,-4],[2,-16],[2,-6],[4,-7],[2,-4],[2,-7],[2,-17],[-2,-12],[-5,-6],[-8,2],[2,-8],[8,-13],[0,-5],[-3,-4],[-9,-9],[-9,-4],[0,-7],[3,-15],[0,-11],[-2,-8],[-3,-7],[-4,-6],[7,3],[13,33],[5,-2],[4,-4],[8,1],[6,-12],[4,-1],[4,0],[4,-1],[7,-12],[17,-58],[0,-35],[2,-17],[3,7],[2,9],[0,11],[-2,9],[-2,12],[0,5],[4,0],[5,-1],[4,-3],[9,-8],[5,-2],[11,-9],[2,1],[0,-1],[1,-6],[0,-8],[-2,-8],[-1,-9],[2,-10],[1,-5],[-2,-3],[-3,-3],[0,-3],[1,-5],[1,0],[2,1],[1,0],[5,-6],[2,-1],[1,5],[0,6],[1,4],[2,0],[3,-2],[3,-5],[7,-12],[3,-5],[0,5],[0,4],[1,3],[1,4],[2,-3],[2,-1],[1,1],[3,3],[-5,3],[-14,13],[9,25],[4,-3],[1,-6],[1,-9],[2,-7],[2,-4],[6,-6],[3,-6],[2,-5],[9,-42],[2,-6],[1,1],[9,-3],[2,-2],[9,6],[1,12],[-3,9],[-5,-2],[-1,7],[1,5],[2,3],[4,1],[2,-2],[1,-5],[1,-6],[2,-5],[2,-11],[-2,-10],[-5,-8],[-3,-10],[1,1],[4,-1],[2,0],[-3,-20],[-1,-6],[1,-5],[2,-4],[1,-6],[0,-8]],[[61232,44266],[-5,-17],[-8,-18],[-10,-16],[-18,-13],[-11,-16],[-16,-35],[-6,-14],[-3,-7],[-8,-6],[-34,-57],[-6,-6],[-28,-25],[-28,-41],[-7,-6],[-47,-21],[-21,-4],[-5,-3],[-4,-5],[-55,-92],[-6,-7],[-7,-5],[-8,0],[-5,5],[-12,13],[-6,3],[-9,-9],[-9,-4],[-37,1],[-9,-5],[-8,-14],[-4,-7],[-6,-3],[-4,-5],[-11,-22],[-5,-6],[-3,1],[-6,3],[-3,0],[-3,-1],[-6,-5],[-8,-5],[-5,-8],[-6,-17],[-27,-39],[-7,-18],[0,1],[-9,10],[-22,11],[-9,11],[-16,34],[-10,14],[-13,4],[-2,-1],[-7,-6],[-3,-1],[-3,2],[-5,9],[-3,1],[-1,2],[-1,5],[-1,2],[-2,-1],[-1,-1],[-1,-2],[0,-1],[-2,1],[-6,0],[-16,-6],[-3,-6],[-2,-1],[-12,-2],[-4,-2],[-18,-21],[-2,-5],[0,-8],[-5,-27],[-2,-7],[0,-11],[-6,-25],[-2,-13],[1,-8],[2,-7],[0,-8],[-2,-8],[-3,-6],[-6,-9],[-20,-18],[-13,-21],[-5,-6],[-6,-3],[-9,0],[-6,-2],[-10,-11],[-6,-3],[-3,-3],[-2,-7],[-2,-9],[-1,-5],[-2,-5],[-2,-2],[-6,-2],[-6,0],[-14,9],[-2,2],[-5,11],[-3,3],[-3,0],[-2,-3],[-2,-2],[-3,-3],[-10,-2],[-12,2],[-23,12],[-10,10],[-10,17],[-7,20],[-4,18],[-4,-6],[-3,-4],[-2,-2],[-26,-5],[-4,2],[-7,9],[-5,1],[-3,3],[-5,-3],[-12,-32],[-8,-23],[-3,-5],[-3,-4],[-10,-8],[-3,-5],[-1,-3],[-2,-3],[-8,-2],[-4,-3],[-17,-6],[-5,1],[-7,8],[-2,1],[-1,3],[-2,14],[-2,3],[-33,0],[-1,-1],[-1,-3],[-2,-3],[-9,-3],[-10,-6],[-4,0],[-3,1],[-4,6],[-4,1],[-11,-4],[-3,5],[-3,10],[-1,12],[2,9],[-2,12],[0,14],[-2,11],[-4,4],[-3,1],[-2,3],[-2,4],[-2,4],[-3,3],[-6,3],[-2,2],[-11,13],[-5,6],[-4,-1],[-6,-3],[-5,6],[-2,11],[2,13],[-5,12],[-3,4],[-11,0],[-2,1],[-7,7],[-12,4],[-4,-5],[-8,-23],[-5,-8],[-14,-5],[-5,-7],[2,-13],[-3,-4],[-3,-8],[-3,-8],[-2,-12],[-2,-4],[-15,-8],[-1,0],[-6,-8],[-5,2],[-4,4],[-3,0],[-1,-11],[-3,3],[-1,3],[-1,4],[-1,4],[-3,4],[-1,1],[-1,-2],[-2,-1],[-4,-3],[-1,-1],[-7,1],[-2,2],[-2,4],[-1,3],[-11,-1],[-116,3]],[[61082,45947],[4,-10],[-1,-20],[-4,-39],[-8,-39],[-4,-11],[0,-4],[0,-4],[-1,-4],[-1,-12],[-1,-3],[-3,-7],[0,-4],[-2,-7],[-3,0],[-8,5],[-8,-6],[-3,-13],[-2,-13],[-3,-8],[-11,-9],[-5,-3],[-5,0],[-5,4],[-8,17],[-4,7],[2,2],[5,0],[2,2],[1,2],[0,4],[1,4],[1,0],[0,4],[2,1],[2,0],[1,1],[12,25],[4,13],[-2,7],[1,10],[3,5],[5,1],[5,0],[4,2],[9,8],[5,2],[-2,5],[-2,1],[-7,-2],[0,4],[3,2],[3,3],[5,7],[6,6],[2,4],[2,15],[3,9],[2,8],[3,3],[1,3],[3,16],[1,6]],[[60984,46726],[1,-5],[7,-28],[-1,-26],[-7,-18],[-10,-7],[-10,7],[-4,7],[-4,11],[-3,12],[-5,50],[0,9],[-6,-4],[0,-7],[3,-7],[2,-8],[-1,-14],[-1,-3],[-8,6],[1,12],[-1,9],[-8,16],[-8,29],[-3,4],[-2,4],[-4,-5],[0,-4],[2,-1],[0,-1],[0,-3],[0,-3],[-3,5],[-2,-9],[1,-13],[3,-7],[0,-1],[-1,-1],[-1,0],[-2,2],[-3,3],[-1,3],[0,2],[-14,34],[-3,10],[-4,26],[-2,11],[10,26],[-2,34],[-6,37],[2,33],[-1,7],[1,7],[0,6],[2,5],[0,-4],[3,-6],[0,-3],[5,16],[10,18],[5,11],[2,19],[2,43],[5,11],[3,-18],[9,-32],[1,-21],[-2,-25],[0,-9],[1,-10],[2,-16],[1,-9],[1,-9],[6,-19],[3,-27],[1,-2],[6,-2],[1,-8],[-1,-7],[-1,-8],[-1,-8],[0,-9],[1,-7],[1,-7],[2,-7],[-3,-9],[-2,-5],[-1,-6],[4,3],[3,-3],[2,-7],[3,-5],[0,9],[2,5],[2,1],[1,-7],[2,0],[0,1],[0,3],[5,-3],[0,13],[-1,17],[0,13],[5,-13],[3,-17],[5,-87]],[[61011,47263],[0,21],[2,10],[2,8],[-2,6],[4,1],[10,-3],[-3,8],[-5,15],[-2,10],[4,-3],[6,-1],[5,2],[2,6],[-3,1],[-2,2],[-3,4],[-1,5],[4,0],[7,3],[4,1],[5,-6],[3,2],[2,12],[-6,-5],[-7,4],[-12,17],[-3,-3],[-4,2],[-3,6],[-2,8],[3,-3],[2,-3],[2,-1],[3,3],[2,-2],[10,-3],[5,0],[-2,5],[2,11],[-1,10],[-3,3],[-4,-8],[2,12],[0,3],[-1,5],[-2,3],[-3,0],[-3,-4],[0,7],[1,2],[1,4],[-1,7],[0,8],[1,7],[2,0],[4,-3],[1,2],[0,5],[-2,6],[-2,3],[-9,7],[1,6],[4,7],[1,6],[-4,-4],[-3,11],[2,8],[4,3],[5,-6],[1,9],[-4,6],[-4,5],[-3,8],[0,7],[1,17],[1,9],[0,-3],[1,-3],[1,-2],[1,0],[2,-3],[1,-5],[1,-6],[1,-3],[3,1],[1,5],[0,4],[2,3],[1,-2],[5,-10],[1,-3],[13,-15],[2,-5],[0,-7],[1,-6],[1,-2],[2,5],[0,5],[-2,5],[1,7],[3,7],[0,-4],[1,-5],[1,-3],[2,10],[1,12],[1,11],[-1,7],[4,-5],[0,-12],[0,-14],[3,-22],[-3,-11],[-5,-8],[-4,-4],[1,-11],[-1,-11],[-1,-12],[-1,-11],[2,-18],[1,-3],[2,3],[0,5],[0,6],[0,3],[4,-3],[0,-11],[-2,-22],[0,-35],[-2,-10],[2,-4],[-3,-9],[-8,-52],[-2,-6],[-1,-3],[-1,-4],[0,-10],[-1,-7],[-3,-2],[-1,5],[1,11],[-1,0],[-2,-10],[-1,-4],[-2,-3],[1,-6],[-1,-6],[-3,-7],[-4,-5],[-3,-1],[-1,2],[1,4],[3,3],[0,4],[-4,-2],[-3,-4],[-2,-1],[-2,7],[-10,0],[-4,2],[-2,8]],[[61039,45735],[9,2],[6,-1],[1,-8],[-3,-8],[-11,-27],[-8,-16],[-5,1],[-2,10],[2,15],[3,12],[8,20]],[[60896,47053],[-1,-8],[2,-11],[2,-7],[-2,-6],[2,-8],[0,-11],[-4,-2],[-3,0],[0,9],[0,10],[1,17],[-1,12],[4,5]],[[60993,47275],[2,-3],[4,-5],[3,-9],[3,-11],[5,-3],[4,-2],[3,-8],[-1,-7],[-7,-1],[-5,8],[-5,11],[-2,7],[-3,7],[-3,9],[2,7]],[[59991,70990],[-1,11],[-5,18],[-2,16],[-3,9],[0,5],[0,24],[-1,4],[-5,15],[-1,6],[-2,12],[-9,42],[2,2],[0,3],[2,3],[0,5],[0,4],[-2,3],[0,5],[2,2],[0,1],[-1,0],[-1,5],[3,8],[1,4],[2,4],[2,9],[-1,9],[-2,8],[-1,7],[0,28],[2,7],[13,35],[6,10],[-3,16],[-10,38],[4,20],[-2,10],[-2,38],[1,9],[-3,4],[-13,32],[-6,5],[-3,3],[-1,6],[-2,4],[-5,-2],[-4,-2],[-1,-2],[-3,3],[0,6],[1,9],[1,7],[-2,3],[-10,9],[1,3],[0,6],[1,3],[-2,0],[-3,-4],[0,4],[5,3],[6,6],[4,9],[1,11],[0,6],[-3,8],[0,8],[1,4],[7,4],[11,36],[0,3],[0,14],[-1,11],[-3,14],[-4,13],[-4,8],[14,-1],[7,3],[2,8],[2,12],[7,19]],[[59975,71741],[2,-2],[6,2],[5,4],[6,1],[3,-7],[0,-7],[0,-8],[0,-7],[3,-5],[5,-2],[8,0],[9,-7],[16,-20],[5,1],[3,18],[2,42],[6,17],[9,5],[7,-3],[4,2],[2,21],[6,4],[11,-8],[6,4],[-1,17],[1,85],[1,9],[1,4],[2,4],[1,6],[-4,8],[3,5],[4,-7],[3,-4],[4,-3],[7,-1],[2,-1],[2,0],[2,2],[1,3],[1,4],[1,4],[3,2],[5,1],[21,-5],[5,0],[20,6],[2,5],[-1,13],[-1,9],[-2,9],[-2,9],[0,1],[-4,6],[-4,3],[-9,2],[-3,5],[1,0],[2,5],[1,9],[1,5],[-1,5],[-1,4],[-1,4],[-1,1],[-5,4],[-2,3],[-1,4],[-5,32],[-1,10],[1,9],[8,23],[2,25],[0,27],[3,25],[4,14],[1,11],[0,12],[1,13],[3,11],[5,11],[3,11],[-1,15],[3,0],[2,-1],[1,0],[51,-30],[17,-2],[6,-2],[5,-4],[5,-5],[5,-7],[8,-13],[2,-8],[1,-12],[-3,-19],[1,-7],[5,-8],[6,-5],[2,1],[3,5],[4,8],[5,4],[5,-1],[4,-2],[6,-1],[17,8],[6,0],[46,-14],[11,0],[41,45],[17,13],[46,17],[44,35],[8,3],[5,6],[27,29],[19,13],[9,1],[18,-4],[53,-27],[14,-13],[29,-53],[8,-14],[17,-16],[20,-4],[45,4],[6,3],[15,2],[42,-25],[15,1],[56,18],[90,30],[60,38],[28,29],[10,5],[10,4],[10,8],[20,23],[37,42],[5,6],[6,4],[6,2],[7,1],[13,6],[37,35],[13,9],[53,13],[66,-22],[12,-9],[6,-3],[78,6],[115,47],[32,13],[12,12],[21,34],[14,31],[4,4],[5,7],[3,-6],[0,-7],[0,-6],[0,-3],[4,-1],[8,-7],[2,1],[2,4],[1,2],[2,-1],[1,-3],[2,-6],[1,-3],[9,-13],[2,-1],[2,-8],[-5,-33],[3,-8],[3,-3],[0,-9],[0,-16]],[[61765,72447],[2,-7],[2,-6],[2,-7],[0,-9],[-9,-11],[-18,-29],[-28,-52],[-56,-102],[-37,-69],[-8,-10],[-7,-7],[-86,-31],[-18,-5],[-9,-7],[-5,-13],[-25,-82],[-2,-16],[-9,-149],[0,-10],[1,-10],[7,-29],[22,-81],[3,-19],[1,-19],[1,-82],[-1,-18],[-5,-18],[-9,-25],[-13,-34],[-3,-18],[-2,-58],[-12,-73],[-3,-36],[1,-14],[1,-97],[3,-104],[-1,-15],[-2,-15],[-48,-162],[-10,-39],[-6,-16],[-8,-9],[-69,-33],[-40,-43],[-31,-33],[-31,-33],[-31,-33],[-10,-11],[-20,-21],[-31,-33],[-31,-33],[-30,-33],[-31,-33],[-31,-32],[-31,-33],[-30,-33],[-31,-33],[-31,-33],[-30,-33],[-31,-32],[-31,-33]],[[60770,70233],[-68,-76],[-59,-67],[-24,-26],[-48,-55],[-36,-40],[-47,-55],[-48,-55],[-25,-30],[-22,-25],[-48,-55],[-31,-36],[-42,-50],[-45,-55],[-4,-2],[-3,0],[-18,9],[-6,0],[-5,-5],[-10,14],[-38,8],[-10,2],[-5,5],[-15,3],[-6,3],[-4,4],[-24,42],[-18,22],[-9,17],[-3,3],[-2,-1],[-3,-5],[-1,-1],[-2,0],[-3,2],[-2,1],[-10,-3],[-4,0],[-3,0],[-1,1],[0,2],[-2,7],[-12,35],[-3,10],[0,11],[1,10],[-2,6],[-6,1],[-4,-1],[-3,2],[-2,4],[-3,6],[1,-1],[1,3],[0,4],[0,4],[-1,1],[-4,0],[-1,0],[-5,9],[-3,3],[-29,12],[-3,6],[-1,2],[-2,1],[-1,-1],[-2,-2]],[[61923,56983],[73,243],[15,47]],[[62011,57273],[3,-9],[4,-6],[6,-1],[-2,23],[4,-10],[7,-22],[5,-12],[4,-3],[6,-17],[5,-4],[6,-2],[8,-13],[5,-5],[1,10],[4,7],[3,1],[1,-10],[-4,-55],[2,-19],[5,-18],[7,-13],[2,-2],[4,-2],[2,-3],[1,-3],[2,-9],[4,-12],[2,-16],[7,-22],[12,-49],[27,-56],[20,-54],[26,-46],[29,-43],[20,-37],[14,-18],[35,-61],[8,-10],[12,-15],[12,-10],[21,3],[21,-6],[12,-5],[12,4],[9,7],[17,10],[8,5],[11,-2],[18,-6],[12,-1],[18,2],[9,16],[-2,10],[4,0],[30,39],[5,4],[8,5],[26,35],[19,37],[5,5],[5,-1],[5,-4],[5,-2],[5,0],[10,5],[12,10],[8,11],[7,11],[9,22],[3,4],[21,15],[3,3],[4,8],[2,8],[4,6],[5,3],[3,3],[5,17],[4,4],[5,0],[4,-2],[4,-3],[4,-7],[3,-8],[2,-7],[2,-5],[5,-1],[-1,11],[4,0],[26,-25],[10,-3],[9,-5],[5,-4],[11,-5],[9,4],[20,11],[8,-2],[7,-9],[12,-27],[8,-13],[10,-8],[11,-3],[11,1],[9,5],[5,4],[8,11],[9,3],[8,7],[11,1],[5,2],[3,4],[10,16],[24,23],[11,19],[13,11],[1,4],[3,9],[1,3],[2,2],[4,1],[2,1],[26,20],[21,33],[14,24],[9,22],[4,5],[13,8],[3,4],[7,12],[29,30],[5,5],[6,2],[8,-2],[15,7],[9,-3],[43,-47],[9,-4],[16,17],[35,2],[15,-5],[51,7],[8,5],[4,7],[6,18],[6,5],[0,5],[1,4],[2,2],[5,0],[3,0],[5,4],[5,1],[3,3],[2,4],[1,4],[0,4],[1,4],[4,8],[3,4],[8,4],[20,4],[10,5],[7,10],[5,3],[17,-1],[15,7],[5,1],[19,-9],[10,-9],[11,-13],[25,-17],[4,-1],[5,0],[5,1]],[[34829,51847],[4,12],[4,1],[10,-6],[5,2],[3,5],[8,40],[2,4],[3,3],[6,0],[5,1],[3,3],[13,29],[5,14],[11,58],[9,43],[21,58],[2,9],[4,28],[2,4],[3,4],[-3,7],[-2,4],[0,4],[0,6],[1,7],[4,12],[0,3],[2,18],[0,8],[-1,1],[-3,8],[-2,8],[3,4],[2,4],[-1,8],[-2,14],[0,2],[-3,4],[0,4],[2,2],[1,1],[0,1],[1,13],[-1,13],[-3,9],[-6,-2],[6,30],[4,13],[10,26],[7,24],[9,14],[0,1],[3,10],[2,12],[1,10],[1,8],[10,22],[5,24],[-1,45],[2,25],[2,13],[1,9],[-2,8],[-4,8],[-2,2],[-3,-1],[-3,-2],[-3,-1],[0,4],[-7,21],[-6,42],[-2,6],[-6,18],[-3,5],[-10,6],[-3,3],[-1,2],[-3,7],[-3,12],[-2,7],[-1,-1],[-1,5],[-5,6],[-7,28],[-2,4],[-4,6],[-2,6],[-3,20],[-2,6],[-9,18],[-3,10],[0,15],[1,9],[4,21],[1,9],[-1,12],[-3,5],[-10,5],[-3,5],[-3,8],[-1,10],[3,11],[1,10],[0,15],[-2,26],[-9,37],[-5,64],[1,15],[6,22],[1,10],[0,24],[0,7],[-4,20],[0,14],[1,12],[0,10],[-4,11],[-2,3],[-3,2],[-2,3],[-1,8],[0,73],[-2,8],[-1,6],[2,6],[7,11],[1,3],[1,9],[-2,24],[0,10],[2,9],[5,17],[15,37],[1,3],[1,7],[1,4],[4,6],[2,4],[3,24],[4,10],[2,7],[12,26],[22,34],[5,13]],[[34952,53637],[9,7],[9,12],[7,16],[6,17],[7,41],[6,21],[2,10],[4,61],[5,19],[5,20],[3,11],[3,0],[12,-4],[9,-3],[6,-6],[6,-4],[2,-1],[-1,3],[-6,7],[2,1],[4,-1],[10,-10],[7,-11],[5,-7],[5,-6],[5,-6],[32,-27],[9,-11],[9,-11],[6,-5],[4,-2],[9,-5],[11,0],[20,-10],[9,-5],[7,1],[4,-4],[5,-12],[5,-9],[6,4],[0,7],[-5,2],[-5,7],[-6,10],[-5,3],[-2,-1],[-1,3],[3,4],[3,0],[6,-7],[8,-8],[12,-7],[6,-6],[7,-5],[14,-20],[10,-7],[11,-5],[1,4],[2,0],[8,-8],[19,-23],[19,-38],[13,-15],[8,-29],[20,-34],[39,-77],[3,-4],[1,-1],[0,-4],[0,-4],[0,-3],[1,0],[4,1],[1,-1],[7,-8],[21,-39],[7,-22],[-3,-24],[5,7],[7,21],[6,4],[7,-3],[6,-8],[4,-11],[1,-12],[-5,-20],[-10,-28],[-8,-30],[1,-21],[1,0],[1,8],[2,6],[2,4],[1,4],[1,15],[3,15],[4,10],[12,16],[3,11],[5,-5],[6,-10],[4,-12],[2,-12],[3,-8],[18,-22],[9,-17],[10,-22],[8,-24],[3,-24],[2,-24],[6,-46],[2,-24],[-3,-27],[-8,-13],[-8,-11],[-8,-20],[17,11],[10,11],[4,13],[0,6],[3,16],[1,10],[-3,85],[2,21],[4,18],[4,5],[4,2],[5,-2],[4,-5],[13,-26],[3,-6],[-2,-7],[7,-23],[2,-13],[1,-14],[1,-17],[3,-12],[5,0],[-1,-5],[-1,-5],[-1,-2],[-1,0],[0,-4],[2,-10],[2,-8],[5,-2],[4,-2],[2,-4],[-1,-9],[-2,-4],[-3,-6],[-1,-12],[0,-10],[2,-10],[11,-34],[4,-15],[1,-16],[1,-22],[-1,-18],[-6,-36],[-3,-13]],[[35643,52862],[-21,-22],[-7,-13],[-4,-18],[-2,-19],[-3,-16],[-5,-14],[-18,-42],[-9,-9],[-2,-5],[0,-5],[0,-13],[0,-5],[-3,-5],[-2,-1],[-2,1],[-2,-2],[-5,-10],[-2,-12],[-2,-25],[-2,-14],[-12,-37],[-3,-16],[-2,-8],[-6,-6],[0,-4],[1,-5],[-1,-6],[-37,-131],[-3,-6],[-4,-4],[-2,0],[-2,1],[-3,-1],[-6,-10],[-6,-28],[-10,-16],[-1,-12],[0,-13],[3,-26],[-1,-4],[-18,-69],[-1,-9],[1,-7],[2,-6],[1,-4],[-4,-5],[-3,-2],[-2,-3],[-2,-4],[-2,-6],[-22,-103],[-2,-18],[-1,-5],[-2,-3],[-6,-5],[-1,-3],[1,-6],[5,-15],[1,-7],[-1,-7],[-1,-5],[-1,-4],[-2,-5],[-6,-27],[-8,-24],[-10,-20],[-6,-24],[-4,-10],[-4,-8],[-31,-40],[-12,-10],[-5,-9],[-4,-14],[-2,-13],[-2,-6],[-3,-5],[-1,-1],[-3,1],[-2,0],[-1,-3],[-3,-7],[-1,-2],[-6,-1],[-11,5],[-12,2],[-8,16],[-6,4],[-5,0],[-34,-14],[-4,0],[-3,5],[2,9],[5,9],[5,4],[0,6],[-17,31],[-7,21],[-2,4],[-4,2],[-1,-1],[-1,-4],[-8,-20],[-3,-5],[-10,-8],[-10,-16],[-3,-2],[-11,-2],[-5,-3],[-5,3],[-8,11],[-5,2],[-9,1],[-5,2],[-19,17],[-8,1],[-2,2],[1,4],[2,12],[1,6],[-3,9],[-5,2],[-5,-2],[-5,-6],[-3,-8],[-3,-10],[-2,-8],[-4,-2],[-6,-1],[-4,-9],[-2,-10],[-4,-5],[-6,1],[-3,2],[-1,-3],[0,-15],[-2,-10],[-5,-8],[-12,-9],[-2,-2],[-2,-6],[-2,-1],[-2,1],[-2,4],[-2,1],[-6,0],[-2,-3],[-2,-9],[-4,-24],[-3,-8],[-7,-2],[-3,2],[-3,4],[-9,24],[-1,1],[-5,-1],[-5,-3],[-5,-3],[-5,-2],[-14,4],[-2,1],[-3,4],[-8,15],[-3,4],[-2,1],[-2,-1],[-4,1],[-3,1],[-4,5],[-2,1],[-12,3],[-4,5],[-5,12],[-10,15],[-1,7],[6,1],[-5,11],[-5,9],[-7,5],[-7,1]],[[50700,80724],[4,-13],[3,-26],[3,-12],[10,-15],[4,-8],[1,-12],[-2,-4],[-6,-8],[-2,-6],[6,-26],[-1,-4],[-2,-6],[0,-3],[1,-2],[3,-2],[2,-2],[2,-8],[1,-3],[2,-1],[5,-1],[2,-1],[5,1],[3,0],[3,-3],[2,-3],[0,-4],[2,-4],[11,-14],[1,-4],[4,-12],[1,-3],[6,-6],[22,-14],[1,-1],[4,-1],[4,4],[8,19],[5,8],[7,5],[14,6],[23,10],[7,-3],[4,-6],[5,-11],[4,-10],[3,-11],[3,-4],[3,0],[4,-2],[2,-5],[4,-15],[-4,-9],[2,-18],[7,-33],[1,-19],[1,-7],[4,-7],[4,-4],[12,-9],[5,-2],[7,2],[12,6],[4,4],[3,3],[2,3],[4,0],[4,-1],[2,-3],[0,-5],[-3,-7],[3,-3],[18,0],[7,-2],[6,-4],[5,-8],[5,-11],[2,-23],[0,-27],[3,-25],[9,-12],[1,4],[1,0],[2,1],[0,2],[2,5],[5,11],[2,4],[4,2],[12,1],[11,-2],[6,-4],[5,-5],[5,-3],[6,0],[18,10],[6,1],[5,-3],[9,-14],[6,-5],[6,-7],[7,-22],[6,-4],[2,3],[-1,4],[0,4],[4,2],[2,-1],[4,-3],[3,-5],[2,-3],[0,-7],[-3,-4],[-7,-7],[-3,-6],[-1,-4],[-1,-11],[-6,-24],[0,-11],[3,-2],[6,3],[3,1],[3,-2],[4,-26],[2,-5],[2,-5],[0,-4],[-7,-5],[-6,-6],[-5,-6],[-2,-4],[-2,-4],[-1,-7],[2,-1],[1,-9],[0,-9],[-2,1],[16,-12],[3,-1],[5,0],[17,4],[41,-16],[2,-1],[9,2],[38,27],[12,2],[3,3],[3,7],[2,9],[2,19],[-1,4],[-1,3],[0,4],[0,5],[2,5],[30,41],[7,5],[1,-9],[4,-2],[8,3],[3,-5],[-1,-10],[-1,-12],[-1,-11],[-3,5],[-1,-1],[-6,-16],[0,-5],[0,-5],[0,-6],[-10,-37],[-2,-9],[4,-9],[13,-7],[5,-11],[0,-8],[-1,-5],[-1,-5],[-2,-7],[-1,-3],[-2,-4],[0,-4],[0,-3],[3,-6],[0,-3],[0,-22],[3,-5],[7,-1],[6,1],[12,6],[6,0],[5,-4],[11,-14],[5,-4],[10,-4],[3,-4],[12,-24],[4,-6],[5,-5],[7,-2],[12,4],[6,1],[6,-8],[6,-9],[1,-9],[-1,-2],[-2,-2],[-1,-9],[1,-5],[1,-3],[5,-1],[2,1],[1,3],[1,3],[1,2],[2,-1],[3,-2],[9,-5],[2,-2],[3,-4],[13,-34],[2,-5],[0,-6],[-1,-6],[-1,-5],[2,-5],[6,-3],[7,6],[7,8],[5,3],[9,-5],[3,-1],[4,0],[1,3],[0,4],[4,6],[6,5],[7,-2],[6,-4],[6,-1],[3,2],[4,6],[3,3],[3,-1],[6,-5],[3,-1]],[[51608,79807],[9,-16],[5,-7],[7,-4],[17,-6],[5,-8],[4,-16],[5,2],[24,2],[4,2],[3,6],[3,1],[1,4],[-1,3],[2,4],[2,1],[8,1],[-2,5],[16,3],[8,-1],[7,-4],[1,-1],[13,-14],[8,-5],[5,-1]],[[51762,79758],[2,-1],[3,1],[6,5],[2,2],[3,-1],[26,-18],[4,-6],[2,-5],[1,-5],[0,-3],[-1,-1],[2,-4],[14,-20],[1,-3],[-2,-5],[-5,0],[-1,-6],[2,-7],[4,-7],[19,-25],[0,-3],[0,-6],[0,-2],[2,-2],[3,-2],[2,-1],[2,-11],[1,-3],[0,-1],[0,-5],[1,-2],[1,0],[4,4],[1,0],[2,-10],[-1,-7],[-1,-7],[3,-9],[4,-2],[12,0],[11,-5],[3,1],[5,9],[-1,9],[-2,10],[2,8],[2,1],[12,-4],[8,2],[3,-1],[18,-14],[6,0],[-1,-21],[4,-16],[6,-7],[8,7],[1,3],[-1,4],[0,3],[2,3],[2,0],[10,-11],[5,-3],[4,-2],[24,0],[7,-5],[2,-1],[2,3],[3,8],[1,3],[3,1],[6,1],[2,2],[1,3],[2,9],[1,2],[5,4],[1,1],[6,2],[5,-1],[1,-6],[12,-2],[5,-2],[2,-9],[-2,-2],[-1,-1],[0,-2],[4,-6],[6,-14],[4,-6],[6,-6],[12,-3],[6,-4],[2,-4],[3,-7],[2,-3],[3,-1],[1,-1],[3,2],[4,1],[3,2],[3,-1],[6,-3],[3,-1],[3,2],[7,5],[3,1],[23,-10],[16,3],[5,-1],[44,-33],[27,-8],[3,-4],[0,-1],[-5,-9],[-9,-23],[-13,-49],[-3,-8],[-2,-2],[-10,-8],[-3,0],[0,-1],[-1,-2],[-2,-3],[0,-6],[-1,-3],[-2,-2],[-2,-1],[-7,0],[-4,-2],[-1,-5],[0,-11],[-2,-5],[-3,-5],[-3,-6],[-4,-3],[-7,-12],[-4,-6],[-5,-2],[-3,-3],[-12,-26],[-2,-19],[0,-21],[3,-12],[0,-4],[-7,-8],[-3,-5],[-2,-5],[0,-12],[-2,-5],[-2,-4],[-2,-6],[-1,-7],[-2,-15],[0,-8],[1,-7],[1,-8],[2,-8],[-1,-8],[-3,-9],[-5,-4],[-5,-5],[-2,-12],[0,-12],[-2,-10],[-3,-9],[-18,-35],[-2,-7],[0,-9],[-1,-4],[-2,-4],[-2,-5],[-2,-9],[-2,-12],[1,-24],[12,-30],[0,-19],[-2,-7],[-8,-11],[-1,-8],[0,-10],[0,-3],[-2,-5],[-1,-3],[-2,-3],[-1,-2],[0,-3],[0,-1],[0,-2],[0,-3],[2,-11],[-1,-6],[-4,-3],[-1,-3],[-4,-19],[-1,-8],[3,-21],[0,-10],[-1,-4],[-5,-7],[-1,-3],[1,-13],[1,-6],[1,-3],[4,-3],[4,-8],[6,-18],[2,-3],[1,-2],[2,-3],[1,-6],[-1,-2],[-1,-6]],[[52107,78650],[-10,-5],[-7,-6],[-1,-2],[-11,-12],[1,-1],[4,-5],[1,0],[0,-6],[-1,-3],[-2,-1],[-3,1],[-2,-1],[0,-2],[1,-3],[2,-4],[0,-1],[0,-2],[0,-1],[-1,-1],[-4,-6],[-4,1],[-2,2],[-1,1],[-5,2],[-3,-1],[0,-4],[1,-3],[1,-2],[2,-2],[0,-4],[-1,-5],[-1,-3],[-4,-8],[-5,-3],[-3,-1],[-11,1],[-8,0],[-8,-2],[-10,-7],[-2,0],[-2,1],[-1,2],[-1,2],[-1,2],[-8,3],[-6,5],[-2,10],[5,17],[-7,-1],[-4,1],[-4,3],[-6,2],[-14,-4],[-7,2],[-3,2],[-2,1],[-3,-1],[-2,-2],[-5,-3],[0,-6],[3,-8],[1,-7],[-2,-5],[-4,-6],[-4,-3],[-8,-3],[0,-11],[-7,-6],[-4,-8],[-4,-9],[-1,-8],[33,5],[5,4],[4,-5],[4,-6],[3,-6],[-2,-6],[-3,-3],[-2,-1],[-3,-2],[-4,-8],[-2,-1],[-2,0],[-6,-8],[-1,-12],[1,-15],[-19,-20],[-8,-12],[-5,-13],[-1,-1],[-18,-23],[-8,-5],[0,-10],[-4,-3],[-1,-1],[-1,-3],[-7,-4],[-2,-4],[-4,-9],[3,-11],[-6,-14],[-19,-20],[-29,-14],[-14,-11],[-4,-21],[1,-5],[4,-11],[1,-6],[-1,-9],[-1,-3],[0,-2],[-2,-5],[-5,-20],[0,-2],[1,-4],[1,-3],[2,-3],[0,-10],[-1,-5],[-3,-6],[-3,-3],[-9,-7],[-7,-12],[-3,-4],[-20,-16],[-37,-50],[-4,-7],[1,-8],[7,-11],[-10,-18],[-10,-24],[-3,-5],[-1,-4],[0,-3],[0,-3],[1,-2],[0,-2],[0,-5],[1,-4],[-1,-4],[-3,-4],[2,-1],[13,-13],[4,-6],[4,-9],[0,-7],[-5,-16],[-4,-13],[-1,-5],[-2,-17],[0,-6],[0,-6],[-1,-4],[-6,-2],[-2,-1],[-1,1],[-3,1],[-1,-1],[-17,-12],[-6,-6],[-1,-7],[2,-8],[5,-9],[0,-5],[-3,-6],[-3,-13],[6,6],[13,4],[13,1],[9,-6],[9,6],[14,25],[18,17],[7,12],[-1,13],[-2,2],[-5,-4],[-3,3],[-1,2],[-3,10],[0,2],[-2,10],[-1,6],[1,8],[6,12],[8,16],[9,11],[8,4],[10,1],[9,3],[23,24],[18,5],[19,0],[41,-16],[4,-3],[3,-6],[0,-6],[0,-5],[-2,-10],[-7,-13],[-1,-7],[5,-13],[10,-16],[6,-16],[-10,-28],[-5,-21],[-2,-21],[2,-10],[22,-7],[5,-6],[-1,-4],[-2,-5],[-2,-4],[-1,-3],[1,0],[0,-5],[0,-7],[0,-5],[-1,-2],[1,-2],[2,-3],[3,0],[2,2],[2,3],[2,1],[6,-4],[19,-31],[1,-2],[2,-6],[3,-12],[2,-11],[1,-6],[2,-5]],[[51950,77667],[-4,-3],[-3,-5],[-2,-7],[-2,-8],[-4,-10],[-5,-7],[-7,-4],[-5,-3],[-7,0],[-2,0],[0,-3],[-1,-4],[0,-3],[-2,-1],[-1,4],[-2,2],[-3,1],[-7,-3],[-4,-4],[-4,-9],[-1,-10],[-1,-10],[1,-11],[3,-24],[6,-13],[7,-8],[8,-3],[3,-2],[7,-9],[3,-4],[9,-4],[4,-3],[1,-9],[0,-3],[-3,-11],[-1,-5],[0,-5],[3,-6],[2,-5],[1,-24],[2,-9],[13,-11],[12,-13],[1,-3],[2,-4],[2,-7],[2,-7],[4,-4],[11,-8],[3,-2],[-1,-8],[-2,-9],[-6,-15],[-9,-16],[-1,-4],[1,-17],[3,-12],[0,-9],[-8,-10],[-5,-14],[-2,-3],[-1,1],[-4,6],[-2,1],[-10,-4],[-10,-6],[-3,-6],[-5,-12],[-4,-6],[-3,-1],[-6,0],[-2,-1],[-2,-5],[2,-4],[1,-2],[0,-4],[-9,-7],[-10,6],[-11,8],[-9,3],[-2,-2],[-5,-6],[-3,-2],[-2,-1],[-5,1],[-2,-1],[-10,-8],[-1,-2],[-4,-5],[-3,-6],[4,-12],[5,-6],[0,-4],[0,-4],[1,-6],[3,-9],[3,-3],[10,-2],[7,-8],[2,-17],[-1,-33],[5,-12],[9,-12],[19,-17],[6,-2],[13,4],[5,-1],[14,-8],[5,-9],[1,-3],[1,-3],[0,-2],[0,-1],[0,-3],[-1,-1],[-1,-9],[-1,-1],[4,-13],[1,-14],[1,-5],[9,-25],[1,-7],[-5,0],[-10,4],[-5,0],[-6,-5],[-5,-10],[-2,-12],[3,-12],[-4,-5],[-10,-25],[-14,-17],[-3,-8],[1,-18],[6,-17],[9,-13],[7,-10],[-9,-7],[-2,-5],[-3,-19],[0,-4],[0,-3],[1,-5],[1,-3],[6,-11],[2,-5],[3,-12],[2,-5],[3,-4],[5,-6],[3,-5],[1,-5],[1,-6],[2,-5],[2,-5],[4,-2],[3,1],[3,1],[4,1],[4,-2],[16,-13],[11,-6],[30,-28],[5,-4],[7,-1],[4,-3],[2,-4],[1,-5],[3,-4],[3,-1],[11,0],[48,21],[8,1],[11,12],[9,-3],[-4,-19],[4,-11],[6,-9],[3,-11],[1,-4],[0,-10],[-4,-6],[-4,-5],[-3,-5],[-1,-8],[-3,-13],[-2,-7],[-6,-10],[-14,-19],[-6,-14],[-12,-20],[-4,-13],[1,-15],[5,-28]],[[52083,76404],[-3,-4],[-1,0],[-2,0],[-1,-1],[0,-2],[1,-7],[-1,-2],[-2,-2],[-2,0],[-2,-3],[-2,-4],[-3,-4]],[[52065,76375],[-3,7],[-5,5],[-5,-3],[-5,-7],[-1,-7],[0,-7]],[[52046,76363],[-4,-4],[-3,-5],[-1,-6],[-2,-7],[-3,0],[-5,1],[-6,3],[-7,-1],[-4,-4],[-4,-6],[1,-6],[-5,-9],[-2,-3],[-2,8],[-6,2],[-3,-3],[-4,0],[-2,-6],[-2,-2],[-1,-5],[-2,-16],[2,-16],[0,-3],[1,-7],[1,-5],[-4,-4],[-4,10],[-2,2],[-5,1],[-4,-5],[-4,-6],[-4,-5],[-2,-4],[-2,7],[-4,0],[-6,1],[-5,-1],[-4,-4],[-4,-8],[-1,-9],[2,-2],[0,-1],[1,-1],[0,-3],[-8,-16],[-1,-14],[-6,-7],[-2,-6],[-6,-1],[0,4],[-1,2],[-1,2],[-2,-2],[0,-4],[1,-8],[-4,-2],[-3,2],[-4,0],[-10,-4],[-3,6],[-5,2],[-2,-3],[-5,-6],[1,-15],[-4,-9],[0,-9],[-7,-2],[-5,-1],[-3,-8],[-1,-6],[-3,-5],[-7,-11],[-8,-7],[-2,-9],[6,-3],[17,7],[6,-1],[1,-5],[-3,-10],[-5,-5],[-1,-11],[2,-5],[2,-7],[-5,-6],[-6,-5],[-3,-2],[-5,-3],[-3,1],[-1,2],[-1,5],[-3,-2],[-5,0],[-7,-1],[-1,-6],[-3,-7],[-5,-6],[-8,3],[-7,-2],[-9,0],[-5,-3],[-7,-7],[-3,-10],[1,-8],[1,-8],[-9,0],[-3,5],[-1,3],[-6,3],[-7,5],[-7,1],[-10,-2],[-7,-5],[-4,-3],[-5,-6],[-2,-12],[0,-15],[5,-3],[4,2],[-2,-6],[-7,-1],[-16,-2],[-2,3],[4,3],[4,3],[4,4],[-1,11],[-5,8],[-5,-1],[-13,-3],[-5,0],[-3,12],[-7,3],[-9,-1],[-7,7],[1,4],[0,5],[1,3],[-5,0],[-4,-1],[-8,-7],[4,-3],[4,-13],[5,-3],[7,-5],[-3,-5],[-7,1],[-8,0],[-3,-2],[-6,-15],[-10,6],[-8,9],[-2,6],[5,6],[5,6],[-2,4],[-3,3],[-5,2],[-1,5],[-1,4],[-4,1],[-6,0],[-12,9],[-3,13],[-3,6],[-6,4],[-5,1],[-4,-6],[-3,-10],[-6,4],[-5,1],[-3,7],[-4,8],[-2,8],[-4,3],[-3,-3],[-3,-1],[-12,1],[-5,0],[-9,2],[-4,1],[-7,-3],[-6,5],[1,10],[1,6],[2,6],[2,10],[-3,6],[-1,7],[-1,3],[-3,22],[-13,12],[-15,-16],[-21,1],[-11,-2],[-17,1],[-8,5],[-6,13],[-2,14],[6,16],[8,8],[25,0],[8,4],[5,6],[6,11],[3,13],[-1,14],[-8,-8],[-8,-4],[-7,2],[-6,10],[-2,9],[0,6],[-1,3],[-6,3],[-2,0],[-7,0],[-1,2],[-4,8],[-2,2],[-1,-4],[-2,-8],[-2,-8],[0,-5],[1,-11],[3,-5],[3,-3],[4,-5],[4,-15],[-3,-13],[-7,-7],[-8,-2],[-4,2],[-15,14],[-8,-5],[-2,-4],[-7,-3],[-3,-3],[-2,-8],[1,-3],[3,-11],[1,-8],[9,1],[-7,-9],[-6,-6],[-1,10],[-5,14],[-11,10],[-10,14],[-4,16],[1,34],[-1,11],[-2,8],[-3,11],[-4,8],[-4,5],[0,-4],[8,-20],[1,-6],[0,-43],[4,-20],[7,-12],[9,-9],[6,-12],[-1,-12],[-8,-1],[-34,2],[-21,7],[-7,7],[0,10],[5,9],[1,8],[-2,8],[-7,7],[-12,8],[-29,-5],[-56,7],[-7,3],[-6,4],[-8,9],[-4,14],[4,13],[0,2],[-7,10],[-16,2],[-16,-3],[-10,-6],[-4,-5],[-56,-71],[-32,-22],[-9,-12],[-22,-44],[-5,-4],[-12,9],[-6,-2],[-12,-1],[-19,-12],[-20,-26],[-5,-9],[-2,-5],[-4,-6],[-3,-5],[-5,-7],[-3,-8],[-3,-10],[-5,-8],[-7,-9],[-2,-11],[-2,-9],[-3,-11],[-5,-16],[-2,-11],[-2,-9],[-2,-17],[-2,-13],[0,-6],[4,-3],[0,-12],[-2,-36],[-2,-33],[0,-24],[1,-15],[-2,-25],[1,-32],[2,-24],[1,-20],[4,-7],[6,-5],[8,-2],[6,-3],[2,-6],[0,-7],[0,-7],[2,-6],[2,-4],[5,-11],[1,-13],[0,-2]],[[50883,75598],[-12,-3],[-7,-1],[-7,2],[-6,3],[-3,3],[-3,4],[-2,6],[-2,6],[-2,1],[-8,1],[-3,1],[-5,-5],[-9,5],[-9,-11],[-4,-1],[-5,0],[-5,-1],[-4,-4],[-8,-13],[-5,-4],[-6,-2],[-11,3],[-5,-1],[-5,-4],[-12,-14],[-2,-6],[2,-11],[4,-6],[0,-3],[-7,0],[-7,2],[-12,7],[-6,-1],[-2,-3],[-2,-9],[-2,-3],[-3,0],[-3,1],[-6,5],[-5,2],[-5,7],[-5,9],[-2,10],[-4,0],[-9,3],[-16,12],[-3,5],[-8,7],[-9,-2],[-17,-8],[-13,2],[-4,-3],[-2,-3],[-2,-9],[-1,-3],[-7,-8],[-4,-8],[-4,-4],[-4,-1],[-7,-2],[-4,1],[-4,4],[-5,7],[-3,9],[-3,22],[-4,10],[-4,3],[-6,1],[-6,2],[-16,17],[-6,4],[-17,4],[-5,3],[0,2],[0,1],[-1,2]],[[50474,75640],[1,15],[3,13],[5,7],[7,1],[-1,3],[-3,5],[-6,3],[-5,5],[3,12],[-32,5],[-3,2],[-15,16],[-4,0],[-8,-5],[-9,1],[-4,-24],[-6,-4]],[[50397,75695],[-4,9],[-5,20],[-6,11],[-4,14],[-3,2],[-2,1],[-2,2],[1,8],[-6,3],[-34,0],[-10,-4],[-3,0],[-4,6],[-3,8],[-2,9],[-3,9],[-5,6],[-6,3],[-23,3],[-3,2],[-4,6],[-3,1],[-2,-1],[-3,-4],[-3,-2],[-3,2],[-4,7],[-2,3],[-9,5],[-12,11],[-4,1],[-6,0],[-5,1],[-9,6],[-5,1],[-8,-1],[-6,-4],[-2,-8],[1,-13],[-4,-17],[3,-6],[-2,-3],[-1,-2],[-2,-6],[4,-2],[4,-7],[2,-9],[-1,-10],[0,-1],[-2,-5],[-4,-2],[-10,2],[-34,-1],[-5,3],[-10,-5],[-6,0],[-5,1],[-2,2],[0,3],[0,2],[0,2],[-8,11],[-5,-3],[-5,-8],[-8,-17],[-4,-1],[-4,8],[-6,16],[-5,4],[-15,6],[-4,-1],[-5,-6],[-17,-4],[-22,-12],[-9,-2],[-11,7],[-2,3],[-1,3],[-2,3],[-4,1],[-3,2],[0,4],[-1,4],[-1,3],[-5,6],[-3,9],[-2,10],[1,11],[-5,-4],[-8,-3],[-8,1],[-3,11],[-16,16],[-1,0],[-4,7],[-2,-6],[-2,-5],[-2,-1],[-2,4],[-14,-17],[-6,-6],[-9,-1],[-15,11],[-7,0],[0,-14],[-3,-1],[-4,-5],[-3,-1],[-2,3],[0,4],[0,3],[-1,4],[-2,1],[-4,0],[-2,1],[0,2],[1,3],[-1,2],[-11,23],[-5,6],[-9,10],[-3,0],[-3,0],[-2,0],[-3,5],[-2,5],[1,3],[1,3],[0,4],[-1,5],[-5,16],[-7,4],[-21,-6],[-23,3],[-10,5],[-10,12],[-3,6],[-5,2],[-9,2],[-2,3],[-5,4],[-2,2],[-11,-2],[-9,12],[-10,8],[-16,5],[-5,5],[-5,8],[-1,8],[2,8],[6,8],[-6,2],[-6,-4],[-5,-8],[-2,-12],[-1,-15],[-2,-8],[-5,-3],[-7,1],[-7,3],[-6,6],[-5,9],[-4,12],[2,5],[12,20],[3,7],[5,19],[3,23],[-1,22],[-8,13],[-4,0],[-3,-2],[-3,-1],[-11,10],[-9,4],[-6,0],[-4,-4],[-2,-10],[-1,-5],[-4,-3],[-3,-1],[-3,1],[-3,3],[-2,2],[-2,10],[0,6],[1,3],[0,3],[-3,3],[-5,4],[-3,0],[-6,-3],[-6,-1],[-3,-3],[-3,-1],[-1,2],[0,3],[-1,12],[-4,7],[-8,6],[0,7],[0,13],[1,6]],[[49501,76163],[1,0],[0,-1],[4,-4],[2,4],[5,3],[25,7],[7,14],[6,5],[5,6],[2,5],[6,18],[2,7],[2,5],[11,22],[2,7],[8,17],[2,19],[7,34],[11,97],[7,34],[10,76],[18,168],[7,83],[2,37],[-1,9],[-2,16],[0,5],[8,17],[1,3],[0,8],[5,27],[6,10],[7,1],[17,-7],[10,2],[5,7],[0,9],[-6,11],[3,0],[-2,8],[-21,30],[-3,2],[-2,1],[-1,2],[-1,1],[-2,0],[-1,-2],[-1,-2],[0,-3],[-1,-1],[-2,-5],[-12,-29],[-3,-26],[-3,-15],[-2,-6],[17,292],[12,94],[5,125],[2,8],[9,29],[4,9],[5,3],[2,-2],[1,-3],[0,-4],[0,-7],[-1,-2],[-1,-3],[0,-3],[1,-4],[3,-7],[3,-4],[18,-22],[12,-10],[4,-2],[34,-56],[8,-18],[3,-17],[1,-12],[3,-22],[5,-55],[2,-7],[9,-34],[9,-19],[11,-16],[9,-8],[2,-4],[3,-7],[0,-6],[-1,-9],[1,-13],[1,-12],[2,-10],[4,-4],[-1,8],[-1,17],[-2,7],[3,16],[-3,13],[-7,10],[-6,6],[8,-1],[8,-2],[6,-5],[6,-8],[-7,19],[-11,8],[-12,6],[-10,12],[-5,15],[-3,19],[-11,113],[-3,23],[-10,37],[-5,17],[-6,15],[-13,22],[-40,43],[-1,2],[-1,12],[-2,2],[-9,5],[-15,22],[-8,5],[-5,2],[-5,4],[-4,6],[-3,7],[-5,6],[-10,-3],[-5,3],[5,41],[0,8],[18,8],[6,0],[17,-31],[4,-4],[3,-4],[19,-14],[-6,11],[-25,30],[-7,13],[-2,5],[0,7],[-1,9],[-2,8],[-2,6],[3,3],[2,3],[1,4],[1,3],[3,4],[5,4],[2,0],[3,0],[1,1],[2,7],[-1,6],[-1,6],[-2,5],[-2,3],[1,2],[3,5],[2,1],[-5,5],[-3,8],[-4,19],[6,-6],[4,0],[4,5],[3,10],[0,4],[-1,2],[-2,3],[-1,2],[-6,3],[-1,5],[0,6],[-2,8],[0,5],[0,3],[-1,1],[-4,1],[-1,1],[-1,3],[-2,2],[0,3],[3,4],[-6,8],[-2,1],[-2,1],[1,2],[0,3],[0,2],[-2,0],[-4,0],[-3,1],[-3,0],[-2,1],[-3,4],[0,5],[2,6],[3,5],[2,2],[-1,12],[3,7],[19,18],[2,8],[0,4],[-1,5],[-1,9],[-6,12],[-13,2],[-10,-9],[1,-19],[-8,3],[-5,9],[-5,12],[-5,2],[-3,0],[-8,8],[-6,8],[-4,2],[-15,-7],[-7,1],[-3,13],[-2,14],[-4,11],[-6,7],[-8,2],[-19,1],[-7,4],[2,7],[-4,7],[-15,3],[-9,13],[-8,3],[-4,3],[-2,5],[-3,13],[-2,6],[0,-7],[1,-10],[1,-5],[-2,-3],[-2,2],[-3,6],[-6,43],[1,11],[-4,2],[-2,7],[-2,8],[-1,7],[-5,7],[-4,5],[-3,6],[-3,15],[-4,5],[-4,2],[-5,1],[-2,3],[-9,25],[-15,24],[-9,9],[-7,3],[-3,4],[-2,9],[-1,12],[-1,10],[1,13],[2,6],[7,7],[-1,9],[4,6],[10,10],[4,9],[4,21],[4,10],[5,6],[-1,10],[-3,10],[-3,7],[-4,6],[-17,14],[-32,8],[-10,8],[4,4],[3,4],[3,3],[9,2],[2,2],[1,5],[1,9],[0,8],[-3,9],[-1,9],[0,7],[2,7],[1,7],[3,5],[6,5],[26,3],[2,3],[2,1],[2,0],[2,-4],[2,-2],[14,-6],[5,0],[-2,4],[3,0],[3,-1],[3,-2],[2,-4],[-6,0],[0,-5],[12,-12],[11,-3],[3,-3],[6,-10],[7,-4],[15,0],[-6,5],[-11,3],[-5,6],[-8,15],[-10,11],[-10,9],[-5,3],[-7,0],[-2,2],[-4,6],[-11,4],[-38,-4],[-9,-8],[-2,-4],[-1,-4],[-1,-3],[-3,-4],[-9,-4],[-6,-9],[-5,-3],[-6,0],[-5,3],[-4,5],[-7,12],[-4,3],[-5,1],[-2,0],[-3,-1],[-2,-2],[-1,-4],[0,-4],[0,-2],[-9,1],[-26,19],[0,5],[7,-2],[12,-8],[6,1],[5,9],[-3,7],[-5,8],[-5,9],[-2,-2],[-1,-1],[0,-1],[1,-4],[0,-3],[-1,-5],[-2,0],[-1,17],[-3,9],[-12,11],[23,19],[2,0],[3,-2],[5,-1],[-1,-4],[-1,-1],[2,-4],[3,5],[9,8],[1,4],[-4,1],[-7,0],[-5,3],[3,8],[-5,5],[-5,0],[-4,4],[2,11],[-3,8],[3,4],[17,1],[10,4],[6,0],[-5,1],[-7,-2],[-5,1],[-21,12],[-5,1],[-3,-1],[-9,-4],[-11,0],[-2,-2],[-2,-2],[-2,0],[-3,4],[5,1],[4,4],[5,7],[2,8],[-5,-6],[-4,-1],[-4,0],[-4,-1],[2,-1],[2,-1],[1,-2],[0,-4],[-7,0],[-3,1],[-3,3],[0,-14],[-4,-4],[-9,5],[-5,0],[-14,-7],[-6,-1],[-4,0],[-4,3],[-3,5],[-1,2],[-4,12],[-1,1],[-1,3],[-3,2],[-3,0],[-1,1],[0,1],[0,3],[-5,2],[5,5],[8,0],[4,-12],[2,0],[1,4],[2,1],[2,-1],[2,-4],[0,4],[2,9],[4,-7],[7,-4],[8,1],[6,6],[-2,4],[11,22],[1,11],[-6,11],[0,-3],[2,-4],[1,-4],[-2,-3],[-3,-1],[4,-4],[-2,-3],[-1,-2],[-3,0],[-2,3],[-13,13],[5,-1],[6,-3],[-3,7],[-4,3],[-8,2],[4,-3],[-6,-4],[-15,-2],[-2,-5],[-3,-7],[-5,-3],[-9,-4],[0,4],[1,0],[0,5],[-3,-1],[-1,-1],[-1,-3],[-2,0],[-1,7],[0,6],[0,5],[3,3],[-4,0],[-3,3],[-2,6],[-1,7],[-2,0],[1,-5],[1,-7],[0,-4],[0,-14],[1,-6],[3,-7],[3,-6],[3,-4],[-1,-4],[0,-2],[-1,-2],[-1,2],[-3,6],[-2,-2],[-3,3],[-3,7],[-3,4],[1,-7],[-1,-4],[-3,1],[-1,8],[-1,9],[-2,-1],[-1,-6],[2,-8],[-4,0],[-2,1],[-2,3],[-8,-7],[-5,0],[-4,3],[2,2],[2,2],[-3,4],[-3,3],[-3,-1],[-2,-6],[1,-1],[1,-2],[1,-1],[-3,-20],[2,-17],[5,-14],[6,-10],[-4,0],[-6,3],[-2,-3],[-1,0],[-4,17],[0,5],[0,7],[3,10],[1,8],[-1,14],[-2,10],[-3,8],[-4,6],[-3,3],[-3,2],[-2,2],[-2,4],[1,7],[3,17],[21,14],[-1,3],[0,3],[-1,4],[0,6],[-1,-1],[-3,-2],[-1,-1],[-1,12],[1,4],[-2,0],[-2,-6],[-3,1],[-4,3],[-4,-1],[3,-2],[3,-5],[2,-6],[1,-8],[-1,-1],[-1,0],[0,-1],[0,-2],[-3,3],[-2,-2],[-2,-4],[-4,-1],[1,-2],[3,-6],[-4,-3],[-2,-6],[-1,-5],[-2,-3],[-2,3],[-9,14],[-7,3],[-12,4],[-7,1],[5,3],[5,-1],[11,-6],[0,4],[-5,4],[-5,2],[-11,2],[0,4],[2,1],[1,1],[1,3],[0,5],[1,3],[4,-1],[2,0],[4,14],[2,7],[4,4],[0,4],[-6,-10],[-8,-11],[-8,-7],[-6,-2],[2,-2],[2,-2],[1,-3],[0,-4],[-23,-8],[-4,2],[-1,3],[-8,15],[-4,12],[-3,6],[-2,2],[-1,5],[-3,-4],[-4,0],[-10,4],[-7,-1],[-2,1],[-3,1],[-3,6],[-1,1],[-11,-1],[-5,3],[-2,8],[-3,1],[-14,-11],[-4,5],[-6,0],[-6,-2],[-5,1],[-1,2],[-5,14],[-2,3],[-2,3],[-1,3],[1,7],[-2,0],[-2,1],[-3,4],[-1,6],[-6,9],[-7,7],[-7,2],[2,-12],[-2,-9],[-6,-10],[-6,2],[3,0],[2,1],[2,2],[1,6],[-4,-2],[-2,0],[-2,-2],[-2,-5],[-8,9],[-3,3],[-5,0],[-3,3],[-4,7],[-2,9],[-1,10],[-3,-7],[1,-9],[4,-8],[4,-5],[0,-3],[-4,-1],[-3,-1],[-2,-3],[-3,-4],[-5,13],[-4,-1],[-1,-8],[4,-4],[-1,-2],[-1,-2],[0,-4],[8,0],[0,-4],[-9,-13],[-4,-3],[-7,-3],[-41,3],[0,4],[0,9],[0,3],[2,1],[2,0],[3,1],[1,4],[-1,11],[-4,15],[-3,16],[-4,11],[-13,25],[-25,27],[-3,3],[-3,-4],[-4,-6],[-3,-3],[-9,12],[-5,1],[-9,0],[-21,8],[2,2],[1,4],[2,3],[1,5],[0,2],[1,2],[1,2],[1,0],[2,-3],[1,-1],[90,28],[16,-6],[4,2],[1,4],[3,17],[-1,7],[-4,7],[-1,4],[-2,13],[-3,6],[-12,3],[-2,2],[-2,3],[-1,4],[-1,4],[-7,-4],[-15,13],[-7,-3],[-4,-11],[-4,-13],[-5,-12],[-7,-3],[2,12],[1,4],[-3,7],[-1,5],[-1,5],[1,7],[2,2],[1,3],[-2,6],[-3,1],[-17,1],[1,6],[-1,6],[3,2],[3,0],[2,-1],[3,-1],[4,2],[0,4],[0,4],[-1,2],[5,19],[4,4],[4,-3],[-3,-22],[7,-5],[25,3],[3,-2],[2,-3],[2,-2],[3,-1],[4,0],[13,6],[18,2],[-1,-3],[-2,-1],[-4,0],[6,-3],[22,7],[0,4],[-8,-1],[-4,2],[-1,7],[-2,-4],[-4,-2],[-4,2],[-1,6],[-2,0],[-12,-2],[3,6],[1,1],[2,2],[0,2],[1,3],[3,2],[6,9],[-5,0],[-6,-7],[-5,-2],[0,4],[2,0],[0,5],[-2,0],[-1,-3],[-1,-3],[-1,-3],[-5,3],[-8,-9],[-7,-1],[1,2],[1,0],[1,1],[-3,4],[-2,-3],[-3,-2],[-4,-2],[-4,0],[0,3],[16,28],[3,3],[27,23],[-5,-3],[-9,-7],[-5,-3],[-19,-4],[-9,-5],[-17,-16],[-14,-5],[-8,-6],[-6,-1],[-4,2],[-10,6],[-5,1],[-1,-2],[0,-4],[-1,-5],[-2,-2],[-14,0],[-4,3],[-2,6],[-2,12],[5,1],[0,7],[-5,16],[-1,11],[2,11],[3,9],[5,2],[0,4],[-7,7],[3,17],[7,18],[5,10],[3,-2],[3,-2],[-2,4],[4,5],[5,2],[9,2],[5,-3],[10,-7],[3,1],[-6,13],[-2,8],[3,4],[13,-5],[5,0],[-7,5],[0,2],[1,2],[-1,2],[-2,2],[0,4],[22,0],[6,1],[9,7],[6,0],[-3,3],[-2,1],[0,4],[8,2],[8,7],[7,4],[7,0],[5,-9],[-2,-13],[7,1],[8,7],[3,1],[4,-1],[6,-3],[4,0],[0,4],[-6,3],[2,6],[4,6],[5,5],[5,3],[7,2],[6,-1],[5,-4],[2,4],[1,0],[2,-3],[1,-4],[2,0],[1,2],[2,4],[0,4],[-1,6],[4,1],[3,2],[6,5],[10,4],[1,-2],[0,-6],[-1,-4],[0,-3],[3,-2],[0,-3],[-2,0],[0,-5],[3,-2],[2,-5],[0,-6],[-1,-7],[8,11],[4,3],[5,-1],[-2,-4],[-2,-1],[0,-4],[4,-6],[8,-7],[4,-7],[2,4],[-2,4],[2,4],[-2,4],[-1,5],[-1,12],[2,0],[0,-4],[1,-2],[3,-3],[-1,10],[1,12],[2,6],[3,-3],[1,2],[1,3],[0,3],[0,4],[4,-7],[5,-2],[13,1],[3,-2],[6,-8],[3,-2],[4,-1],[10,4],[0,-10],[7,-3],[8,0],[4,3],[-3,14],[-1,9],[1,4],[14,4],[-4,4],[-9,16],[-1,10],[2,5],[8,5],[6,16],[2,5],[2,0],[2,-3],[9,-1],[10,-8],[4,-1],[-2,-1],[-1,-2],[0,-2],[-1,-3],[6,0],[4,0],[2,2],[3,5],[2,2],[23,12],[4,4],[1,0],[3,-1],[8,15],[5,-2],[2,-8],[-1,-12],[-2,-11],[-3,-6],[0,-2],[1,-2],[1,-4],[1,8],[2,5],[9,15],[6,8],[3,5],[3,-2],[5,9],[3,1],[4,-3],[2,-5],[0,-7],[-2,-5],[0,-4],[4,-5],[-2,-4],[-4,-16],[-2,-4],[-6,-12],[0,-4],[2,0],[10,27],[5,11],[5,-2],[2,4],[3,1],[3,-1],[3,-4],[-2,-4],[1,0],[1,0],[0,-1],[0,-3],[-3,-1],[-2,-2],[-5,-5],[0,-3],[4,-5],[7,-4],[14,-1],[6,-3],[-1,-4],[0,-4],[1,-4],[-3,-3],[-1,-1],[0,-4],[4,-4],[5,-6],[4,-7],[2,-6],[18,-22],[3,-17],[1,-5],[1,-3],[-1,-3],[-1,-3],[1,-4],[2,-1],[3,-3],[7,-7],[16,-11],[-1,-5],[-1,-4],[-2,-4],[-2,-3],[3,0],[3,-2],[2,-4],[3,-4],[3,-5],[1,6],[0,8],[1,5],[11,-1],[5,3],[5,8],[7,15],[2,4],[3,3],[5,2],[18,17],[4,6],[0,4],[-2,0],[-5,4],[12,5],[6,-1],[2,-8],[8,4],[8,8],[7,10],[4,11],[1,-7],[2,-5],[3,-1],[4,1],[0,-5],[-2,-2],[-2,-3],[-1,-4],[-1,-3],[-8,-12],[5,-6],[5,5],[6,9],[6,4],[2,-3],[1,-14],[1,-3],[3,-2],[2,-6],[1,-6],[1,-6],[3,2],[2,4],[1,7],[-1,7],[2,-9],[1,-7],[3,-4],[4,4],[0,4],[-1,0],[-3,3],[3,7],[3,3],[4,0],[3,-5],[-2,3],[-1,4],[-2,9],[12,6],[13,2],[1,-3],[6,-15],[0,-6],[2,-6],[2,-5],[4,-1],[-1,-6],[-1,-2],[7,-16],[2,-8],[-2,-13],[3,4],[9,8],[-8,8],[2,5],[-5,10],[-1,10],[2,0],[1,-3],[2,-2],[3,-3],[-2,6],[-3,4],[-2,1],[-4,1],[-2,3],[-5,18],[-3,7],[1,5],[2,5],[3,4],[4,2],[1,2],[0,4],[1,4],[2,2],[11,0],[-2,5],[28,8],[0,-3],[-1,-2],[1,-4],[2,-4],[-6,-16],[0,-14],[6,-10],[12,-4],[20,-1],[22,5],[13,11],[2,0],[3,1],[22,-4],[30,9],[10,-5],[-5,10],[-6,5],[-11,1],[0,-1],[-1,-3],[-1,0],[-1,2],[0,4],[-1,3],[-2,3],[-9,4],[-4,3],[-1,3],[-3,14],[-10,13],[-2,14],[-1,17],[-1,14],[-3,9],[-7,3],[0,4],[4,2],[3,6],[2,7],[2,28],[2,6],[2,-5],[2,7],[0,5],[-1,3],[-4,2],[-1,3],[3,34],[2,9],[4,3],[7,-5],[0,4],[-6,4],[-6,0],[-5,-4],[-2,-10],[-1,-2],[-2,3],[-2,6],[-1,5],[0,14],[1,7],[1,6],[-4,1],[-1,4],[0,7],[1,8],[2,7],[2,4],[6,5],[-4,4],[-1,-1],[-1,-3],[-2,10],[-2,11],[-1,11],[-1,11],[2,6],[5,0],[10,-4],[0,4],[-5,2],[-8,5],[-6,0],[-2,-11],[-4,7],[-5,22],[-4,7],[2,3],[1,1],[1,0],[-8,9],[-3,7],[-3,9],[6,0],[0,4],[-3,12],[-3,0],[-2,-10],[-5,4],[-6,10],[-6,4],[1,4],[1,2],[0,2],[-3,-1],[-4,-2],[-3,-1],[-3,4],[-1,8],[1,20],[0,9],[-1,4],[-1,4],[-4,10],[0,3],[-1,3],[-1,4],[-2,7],[-8,12],[-1,4],[2,8],[8,10],[1,6],[2,18],[0,10],[-3,9],[-2,6],[-1,6],[-3,4],[-9,3],[-12,7],[2,14],[0,8],[1,5],[7,1],[3,-1],[6,-5],[3,-2],[8,2],[2,-2],[2,-2],[1,-7],[1,-3],[1,-1],[3,1],[2,0],[6,-3],[18,-4],[21,-10],[4,1],[0,-2],[1,-3],[0,-3],[2,-1],[3,1],[4,6],[3,2],[3,-1],[6,-3],[3,0],[5,3],[4,5],[7,14],[4,4],[13,6],[5,0],[33,-8],[3,-2],[1,-4],[1,-10],[6,-18],[1,-10],[-7,-7],[-1,-6],[0,-5],[-2,-3],[-6,0],[-2,-1],[-2,-3],[-1,-14],[3,-12],[5,-10],[4,-17],[21,-37],[3,-9],[1,-13],[-1,-6],[-1,-5],[-1,-3],[-1,-2],[1,-6],[2,1],[3,2],[4,1],[3,-4],[2,-4],[3,-2],[5,2],[0,4],[-3,6],[2,8],[5,7],[5,3],[36,-3],[33,-17],[48,-4],[12,-5],[6,-1],[11,8],[6,-2],[12,-8],[19,0],[5,-3],[9,-7],[14,-5],[26,-22],[7,9],[44,15],[13,8],[8,10],[6,2],[2,3],[7,14],[19,19],[34,11],[35,11],[13,9],[5,7],[4,8],[-19,-17],[-23,-4],[-23,4],[-20,9],[-6,0],[-5,1],[-6,3],[-5,4],[-3,6],[-1,4],[-4,3],[-1,6],[1,6],[1,4],[14,37],[11,52],[4,7],[14,15],[3,0],[3,4],[36,23],[3,6],[35,28],[9,5],[11,10],[22,11],[24,-1],[114,51],[7,8],[7,3],[11,17],[36,40],[15,25],[3,4],[2,5],[7,31],[9,18],[10,1],[27,-18],[3,0],[2,3],[0,4],[-3,0],[-2,1],[-1,3],[-2,4],[6,0],[0,5],[-5,0],[-6,2],[-4,5],[-2,7],[-3,7],[-12,8],[-2,5],[0,19],[2,23],[6,16],[7,-2],[4,-1],[0,4],[-16,16],[0,4],[6,20],[0,28],[1,24],[9,9],[-8,16],[-1,8],[-1,28],[-3,25],[0,12],[1,11],[6,23],[3,9],[2,11],[-2,14],[-5,22],[0,8],[0,3],[6,7],[3,2],[5,0],[6,3],[4,6],[8,16],[9,10],[53,32],[5,-2],[10,8],[44,7],[48,21],[3,3],[2,0],[17,-3],[23,8],[11,7],[4,4]],[[50550,75604],[1,0],[3,1],[1,1],[-3,8],[-3,10],[-3,6],[-3,-2],[-3,-11],[0,-7],[4,-5],[6,-1]],[[33108,59034],[-4,-3],[-3,-17],[-3,-8],[-3,-3],[-4,-1],[-3,3],[-1,9],[1,6],[3,2],[3,3],[0,9],[-2,9],[-4,-4],[-4,-5],[-5,0],[0,6],[-2,1],[-7,-3],[-16,5],[-5,-2],[-7,-5],[-4,-2],[-2,3],[-6,18],[0,4],[0,3],[-2,2],[-2,3],[7,16],[8,8],[2,4],[3,-9],[4,-2],[4,3],[2,8],[-1,4],[-2,6],[-2,9],[0,10],[-4,-3],[-4,-2],[-3,0],[-3,1],[-6,-1],[-1,1],[-1,2],[-2,7],[-1,3],[-10,14],[-5,10],[-2,10],[0,4],[-1,3],[-1,3],[-1,3],[-1,4],[0,4],[1,4],[1,4],[-1,7],[-2,7],[-2,6],[-8,17],[-2,7],[0,8],[0,8],[2,7],[3,5],[11,13],[9,0],[10,-6],[12,-17],[11,-10],[5,-6],[1,-4],[0,-5],[2,-5],[3,-2],[5,-20],[4,7],[6,5],[6,4],[7,0],[-2,-3],[-2,-3],[-1,-2],[1,-4],[-6,-12],[-3,11],[-2,-3],[-1,-11],[0,-13],[3,2],[2,-1],[1,-2],[2,-3],[-8,-9],[2,-4],[-3,-4],[1,-5],[2,-1],[2,6],[10,-8],[-2,-1],[-2,-1],[0,-1],[-2,-1],[2,-9],[2,-5],[5,-6],[1,-3],[1,-4],[1,-4],[2,-2],[2,-1],[1,-5],[0,-5],[0,-5],[4,4],[-1,-7],[0,-8],[1,-7],[2,-6],[-2,-2],[0,-2],[-1,-2],[-1,-2],[4,-4],[1,-8],[1,-10],[2,-7],[0,-4]],[[33001,59905],[0,-8],[-1,-5],[-2,-4],[-3,-6],[-7,-7],[-9,-5],[-9,3],[-3,16],[0,3],[-1,5],[-1,4],[-1,2],[-1,2],[1,4],[3,8],[1,9],[2,6],[5,12],[6,7],[6,-4],[6,-9],[3,-17],[2,-4],[2,-4],[1,-8]],[[33058,60150],[-14,-19],[-8,-7],[-6,2],[3,4],[11,19],[7,6],[7,-5]],[[32902,60114],[1,-3],[-2,-13],[2,-12],[-2,-1],[-5,-2],[-2,-6],[1,-28],[3,-20],[2,-33],[-2,-31],[-9,-22],[-13,-15],[-14,-13],[0,3],[-2,9],[2,4],[-2,8],[-2,5],[-3,3],[-3,6],[-2,7],[-1,7],[-1,6],[-3,3],[-3,21],[-1,47],[-4,21],[2,9],[-2,7],[-2,6],[-1,7],[0,10],[1,18],[-1,8],[2,5],[5,17],[4,7],[5,2],[3,-3],[2,-5],[2,-3],[7,-3],[11,-7],[9,-10],[5,-12],[-4,-4],[2,-2],[1,0],[1,2],[1,-2],[3,-6],[1,6],[3,5],[3,1],[2,-4]],[[32904,60114],[5,31],[2,7],[5,2],[1,2],[1,5],[0,6],[-1,4],[-1,2],[-2,3],[-2,2],[-2,1],[-2,21],[-1,5],[0,6],[2,8],[5,11],[1,3],[2,4],[9,10],[1,2],[1,-1],[9,-13],[5,-10],[3,-12],[1,-16],[-1,-15],[1,-6],[2,-10],[3,-8],[3,-6],[3,-5],[4,-5],[2,5],[3,-4],[3,0],[2,0],[4,-1],[2,-3],[6,-11],[2,-2],[3,-3],[15,-22],[5,-3],[2,-3],[-3,-5],[-3,0],[-7,4],[-3,2],[-4,2],[-49,-23],[-9,-8],[-5,-2],[-6,2],[-6,4],[-4,6],[-4,6],[-3,8],[-1,7],[0,8],[1,8]],[[65496,37972],[4,-5],[10,-9],[3,-6],[1,-12],[-1,-10],[-2,-10],[-5,-43],[-1,-13],[1,-11],[-1,-12],[-2,-11],[-6,-4],[-10,1],[-5,-2],[-9,-9],[-6,-2],[-7,0],[-4,4],[-5,-4],[-7,0],[-7,1],[-6,3],[-5,5],[-8,13],[-9,4],[-11,9],[-5,5],[-2,5],[-2,6],[-1,4],[-3,1],[-9,1],[-2,1],[-2,9],[-9,22],[-4,12],[-1,14],[0,10],[-1,9],[-11,31],[-4,13],[-2,13],[0,11],[1,11],[3,10],[10,8],[3,9],[1,11],[-1,8],[2,4],[0,2],[0,3],[-2,3],[4,4],[9,0],[8,12],[12,13],[14,1],[4,-1],[8,-6],[4,-1],[4,3],[4,-3],[10,0],[4,-3],[3,-5],[13,-5],[4,-5],[2,-4],[6,-13],[2,-9],[1,-19],[2,-7],[7,-14],[1,-4],[0,-12],[1,-6],[1,-5],[1,-3],[5,-4],[1,-3],[1,-3],[3,-11]],[[62572,42911],[4,9],[2,3],[2,-10],[0,-8],[-1,-9],[-1,-10],[-2,0],[-4,25]],[[62555,42935],[5,-7],[2,-7],[0,-8],[-1,-10],[-7,-21],[-2,-3],[0,-7],[2,-7],[5,-6],[-1,-8],[-2,-8],[-1,-3],[-2,-13],[-5,-11],[-2,-12],[5,-15],[-1,-4],[-1,-3],[-2,-2],[-2,-3],[-1,7],[-2,-1],[-3,-4],[-3,-2],[-3,2],[-2,3],[-2,2],[-3,-3],[1,9],[-1,6],[-3,2],[-4,0],[0,3],[5,5],[0,10],[-2,9],[-5,6],[1,3],[2,3],[3,1],[1,-3],[5,-12],[5,-6],[3,3],[0,8],[-1,10],[-2,7],[-3,7],[-8,14],[4,4],[1,0],[0,4],[-1,5],[-1,9],[-1,17],[-1,8],[-3,4],[-3,2],[-3,4],[-2,5],[-1,6],[-1,6],[0,9],[14,31],[1,-4],[0,-2],[0,-2],[-1,-1],[-1,-1],[-1,-2],[2,0],[0,-1],[1,-2],[0,-1],[4,-7],[5,-13],[3,-4],[4,-2],[8,0],[5,-3]],[[52626,75726],[7,-16],[-1,0],[0,-1],[-6,17]],[[52379,75466],[2,7],[-2,3],[-4,2],[-2,3],[1,5],[3,1],[8,0],[2,2],[2,2],[2,2],[12,4],[3,3],[3,3],[2,1],[1,0],[1,0],[0,5],[-4,5],[-1,1],[-10,8],[-1,2],[0,4],[-2,3],[-4,-6],[-1,1],[-1,2],[-1,4],[2,2],[8,8],[-6,8],[-6,0],[-11,-8],[2,5],[-2,5],[-1,6],[0,7],[1,6],[2,-3],[3,0],[3,2],[2,4],[3,-3],[1,3],[0,5],[1,4],[2,3],[0,2],[2,2],[9,2],[2,4],[0,6],[0,7],[3,8],[2,4],[-2,3],[-3,0],[-1,2],[1,3],[2,15],[4,6],[4,4],[6,2],[-2,6],[2,13],[-2,5],[0,5],[2,-2],[1,0],[0,-1],[1,-5],[4,4],[3,-2],[3,-5],[3,-2],[4,3],[4,5],[2,8],[1,9],[-2,4],[11,1],[18,14],[31,11],[8,7],[1,11],[15,27],[3,3],[7,2],[6,0],[3,-1],[3,0],[14,-6],[6,-6],[2,-3],[2,-3],[1,-5],[3,-12],[2,0],[10,27],[4,17],[-3,13],[2,12],[-1,10],[-4,10],[-5,9],[8,16],[0,5],[-2,6],[0,5],[1,6],[2,4],[7,11],[-1,3],[-1,1],[1,3],[1,5],[-3,5],[-2,9],[-1,10],[2,8],[4,5],[12,0],[5,3],[3,-8],[3,-3],[5,-5],[0,-4],[-2,-5],[0,-7],[1,-6],[3,-6],[-1,-11],[5,-54],[0,-18],[-9,-56],[0,-7],[-1,-8],[1,-17],[-1,-2],[-1,-1],[0,-2],[-1,-3],[1,-2],[1,-1],[2,-1],[1,-5],[1,-3],[0,-3],[-2,-5],[3,-3],[0,-4],[1,-5],[2,-4],[2,-3],[8,-5],[-1,8],[-1,4],[-5,15],[9,-18],[2,-11],[1,-11],[0,-34],[1,-18],[3,-13],[-2,-7],[-1,-9],[-1,-9],[0,-11],[2,-12],[5,-23],[1,-12],[-2,-74],[2,-14],[-1,-4],[0,-11],[-1,-4],[-2,-6],[-7,-11],[-3,-8],[-5,-14],[-19,-44],[-4,-7],[-2,-5],[0,-21],[-2,-41],[2,-41],[0,-43],[-1,-3],[-2,-2],[-3,-3],[-2,-6],[-2,-5],[4,0],[-1,-11],[-1,-6],[-3,-3],[-2,0],[-3,0],[0,-4],[1,-9],[-4,3],[-4,2],[-4,0],[-3,-1],[0,-5],[-3,-6],[-1,-5],[4,-4],[9,6],[5,1],[3,-5],[-1,-8],[-3,-7],[-4,-5],[-5,-2],[-2,-3],[-2,-6],[-3,-6],[-5,-1],[1,-4],[0,-4],[0,-5],[-1,-4],[3,-2],[1,-4],[-1,-6],[-3,-4],[2,-4],[-5,-3],[-7,-8],[-5,-1],[0,-4],[3,-4],[1,-4],[-1,-5],[-3,-4],[0,-3],[3,2],[5,7],[3,3],[-1,-9],[-2,-10],[-3,-9],[-2,-5],[-4,-4],[-4,2],[-7,10],[-4,3],[-9,2],[-7,5],[3,16],[2,2],[2,1],[-4,6],[-7,5],[-4,5],[4,8],[0,4],[-4,-2],[-8,-10],[-2,4],[1,1],[0,1],[1,0],[0,2],[-3,-1],[-1,-1],[-1,-2],[-2,4],[-3,5],[-7,3],[-7,2],[-4,-2],[-3,4],[-3,4],[-2,3],[-7,2],[-1,2],[0,3],[-2,2],[-2,2],[-2,0],[-3,0],[-2,3],[4,4],[0,4],[-4,2],[-2,2],[-2,-1],[-4,2],[-4,2],[-1,3],[1,11],[-1,4],[-4,3],[2,8],[2,12],[2,8],[5,-4],[15,11],[2,4],[2,8],[3,4],[4,3],[3,7],[-7,0],[-17,8],[-7,1],[-6,1],[-4,6],[3,12],[-7,0],[-12,-7],[-6,-1],[1,3],[1,5],[-4,0],[-3,1],[-3,2],[-3,2],[3,3],[8,1],[4,4],[2,5],[1,6],[0,5],[-3,3],[0,5],[6,0],[6,3],[9,9],[-2,5],[-2,4],[-3,2],[-3,1],[9,5],[3,3],[-1,2],[-1,4],[-1,3],[-1,-1],[3,9],[1,0],[0,3],[3,5],[0,4],[-3,4],[-2,5],[-1,4],[-2,2],[-3,1],[-6,-1],[-9,-8],[-6,-3],[-11,-2],[-5,-1],[-5,-5],[-2,8],[4,10],[-2,8],[-7,14],[13,2],[6,4],[3,11],[-3,3],[2,7],[6,7],[6,3],[1,1],[8,7],[1,0],[1,7],[-2,4],[-4,5],[-5,17],[-2,5],[-3,2],[-8,-4],[-1,2],[-2,8],[-5,5],[-7,2],[-5,0],[1,5],[1,2],[-2,3],[-3,2],[-2,0],[-3,0],[3,1],[2,2],[5,5],[0,4],[-8,0],[0,4],[3,2],[1,6],[-1,6],[-3,2]],[[49661,77678],[-2,-5],[3,-4],[8,-7],[2,-6],[1,-4],[-2,-26],[-3,-15],[-4,-10],[-5,4],[-4,20],[-3,8],[-3,9],[-16,27],[-6,6],[-6,11],[-4,11],[1,6],[0,6],[-3,13],[-6,21],[9,-2],[9,-7],[9,-10],[7,-11],[3,-3],[3,2],[4,1],[4,-6],[1,-8],[0,-6],[0,-6],[3,-5],[0,-4]],[[49644,77804],[-2,2],[-1,1],[-13,4],[-27,25],[-15,-4],[-4,3],[-12,19],[-3,3],[0,4],[16,6],[5,-2],[2,-2],[2,-3],[0,-4],[-2,-3],[-7,4],[-2,0],[4,-13],[8,1],[8,5],[7,3],[0,-5],[-4,0],[0,-4],[4,-3],[28,-7],[7,-6],[5,-9],[3,-11],[-2,-1],[-3,-1],[-2,-2]],[[49350,78145],[11,-7],[5,-6],[3,-7],[-6,3],[-22,1],[-3,10],[2,6],[5,1],[5,-1]],[[49388,78295],[3,-5],[10,-7],[3,-4],[1,-9],[1,-12],[-2,-8],[-4,4],[-4,14],[-6,13],[-7,7],[-8,-5],[-4,9],[-4,22],[-5,9],[16,2],[5,-2],[5,-5],[1,-7],[-1,-7],[0,-9]],[[49134,78500],[4,-2],[8,0],[3,-4],[-1,-11],[-8,-4],[-22,3],[-14,7],[-5,5],[1,9],[-2,10],[-3,9],[-2,9],[3,3],[1,4],[2,0],[2,-4],[4,-1],[12,-9],[7,-8],[1,-2],[9,-14]],[[48597,79180],[0,-2],[1,-1],[1,-2],[1,1],[0,-5],[-14,-10],[-5,-2],[0,4],[1,1],[2,-1],[1,0],[-2,6],[-2,1],[-7,-3],[0,4],[11,10],[6,2],[6,-3]],[[32882,59869],[1,-2],[1,-5],[-1,-4],[-2,-4],[-3,4],[1,8],[3,3]],[[32898,59873],[0,-1],[0,-1],[-1,-3],[-3,-5],[-3,-2],[-1,3],[1,3],[2,2],[1,6],[2,1],[1,-1],[1,-2]],[[51731,75948],[2,2],[3,-5],[0,-9],[-6,-4],[-4,-3],[-4,-2],[-3,2],[-7,6],[0,3],[3,2],[8,0],[2,2],[1,2],[1,0],[1,0],[3,0],[0,4]],[[34829,51847],[-5,-3],[-6,-2],[-5,-1],[-6,2],[-3,3],[-1,5],[1,6],[-1,6],[-2,14],[1,11],[1,1],[2,-1],[1,1],[0,4],[0,3],[-1,7],[-1,3],[0,12],[-1,3],[-4,4],[-6,5],[-4,0],[-5,-5],[-4,-5],[-14,-9],[-11,8],[-27,57],[-1,5],[1,8],[5,12],[2,8],[-2,6],[-5,-1],[-11,-10],[-6,-8],[-10,-19],[-10,-10],[-3,-2],[-2,0],[-2,5],[1,12],[-1,5],[-10,-2],[-22,-36],[-7,1],[-3,8],[-4,4],[-5,-1],[-5,-4],[-5,-10],[-1,-11],[-1,-11],[-2,-9],[-8,-7],[-10,0],[-11,3],[-10,1],[-16,-3],[-5,1],[-6,0],[-10,-10],[-22,-12],[-6,3],[-3,5],[-3,13],[-2,5],[-3,3],[-19,10],[-5,5],[-15,26],[-6,8],[-7,1],[-3,-2],[-2,-3],[-2,-11],[-3,-25],[0,-26],[-2,-11],[-8,-26],[-2,-4],[-3,-4],[-3,1],[-3,3],[-2,2],[-4,-1],[-3,-10],[-5,-17],[-3,-17],[-1,-11],[4,-5],[12,-1],[5,-3],[5,-10],[3,-24],[3,-12],[8,-11],[2,-5],[10,-27],[10,-17],[2,-7],[1,-8],[-1,-5],[-1,-5],[-1,-8],[1,-26],[1,-24],[-1,-21],[-9,-20],[-18,-12],[-18,8],[-17,15],[-18,10],[-14,-2],[-4,1],[-5,5],[-10,14],[-6,5],[-5,1],[-8,-4],[-5,-1],[-4,1],[-15,12]],[[34310,51620],[-1,6],[-1,6],[-3,4],[-6,4],[-2,3],[-2,4],[-1,5],[-11,12],[-27,1],[-8,7],[-27,80],[-2,18],[-2,13],[-2,26],[-4,12],[-2,2],[-7,3],[-2,3],[-2,5],[1,21],[-4,14],[-9,18],[-3,11],[2,8],[1,6],[-2,6],[-4,9],[-2,5],[0,9],[0,5],[1,7],[1,6],[-2,6],[-6,-9],[-4,-3],[-2,6],[2,20],[-1,4],[-7,17],[-1,6],[0,10],[1,7],[1,7],[-2,8],[-6,-7],[-2,4],[-2,23],[-3,11],[-7,16],[-1,8],[1,5],[2,8],[0,6],[-2,3],[-10,-3],[-1,-1],[-2,11],[5,21],[-2,4],[-3,-1],[-6,-6],[-2,-1],[-4,3],[-1,5],[-1,6],[-2,2],[-1,6],[-4,31],[3,6],[4,7],[3,9],[-1,8],[-9,2],[-4,5],[2,7],[2,6],[0,5],[-1,5],[-1,7],[1,2],[4,0],[1,2],[0,4],[-2,8],[0,5],[-2,13],[-5,9],[-3,11],[5,17],[-1,1],[-1,1],[0,2],[-2,-4],[-3,-3],[-2,-2],[-3,1],[-3,5],[0,4],[2,4],[1,7],[-3,14],[-1,7],[1,7],[1,12],[0,7],[-1,7],[-1,5],[-1,5],[2,7],[1,4],[0,21],[0,8],[-7,30],[-9,-14],[-8,-3],[-7,5],[-9,8],[1,-11],[-2,-5],[-8,-4],[-1,-2],[-2,-4],[-2,-3],[-1,3],[-1,3],[-1,1],[-2,1],[-3,1],[-1,2],[-4,5],[-3,1],[-3,-12],[-3,0],[-3,1],[-8,11],[-5,5],[-8,4],[-2,2],[-2,2],[-1,3],[-1,7],[0,7],[0,5],[1,10],[0,4],[0,8],[0,3],[4,18],[0,10],[-4,11],[-6,7],[-1,2],[-1,1],[-3,1],[-1,1],[-1,3],[-1,2],[0,3],[-2,8],[-1,11],[-1,4],[-11,14],[-14,12],[-4,7],[-3,11],[-2,12],[-1,27],[-1,11],[-6,27],[-14,44],[-4,12],[-19,30],[-6,18],[-3,21],[-4,51],[-3,25],[0,12],[4,13],[24,53],[3,10],[2,11],[1,15],[-1,10],[-2,9],[0,9],[1,11],[2,9],[4,8],[2,8],[2,19],[5,27],[5,16],[5,30],[4,16],[3,10],[0,11],[-2,11],[-8,20],[-3,24],[-5,7],[-5,5],[-2,8],[2,20],[5,14],[5,11],[3,10],[6,20],[2,4],[4,2],[2,-2],[3,-2],[4,-2],[6,2],[4,6],[4,16],[7,16],[10,9],[10,2],[11,-10],[12,9],[6,2],[8,1],[1,-2],[4,-8],[2,-2],[4,0],[4,3],[22,5],[7,4],[3,3],[2,2],[3,2],[4,1],[2,-1],[2,-2],[3,0],[2,3],[-10,20],[-1,6],[0,8],[1,7],[4,20],[2,17],[2,8],[3,4],[5,-1],[4,-2],[2,-6],[2,-12],[4,4],[4,5],[4,7],[1,8],[-2,12],[-9,24],[-2,10],[0,1],[-2,4],[-2,2],[-4,-1],[-2,-3],[0,-5],[1,-6],[3,-7],[-1,-4],[-2,-3],[-2,0],[-3,1],[-1,3],[0,5],[-1,41],[-1,2],[-2,0],[-2,1],[-4,-3],[-3,0],[-1,5],[1,7],[2,6],[14,29],[3,10],[1,13],[0,13],[1,10],[3,12]],[[34098,53718],[3,8],[3,5],[9,8],[3,6],[3,7],[2,9],[7,64],[1,56],[2,19],[0,15],[4,24],[3,17],[7,26],[1,6],[2,5],[2,4],[7,2],[2,3],[1,3],[1,1],[2,1],[3,9],[2,3],[3,2],[2,1],[3,6],[2,2],[8,-5],[17,-8],[10,-3],[14,0],[22,-2],[12,-1],[5,-4],[8,-11],[5,-5],[6,-3],[13,-3],[30,-15],[17,-9],[15,-2],[13,-7],[9,-6],[9,-4],[19,-9],[11,-8],[7,-4],[6,-2],[10,-8],[18,-4],[5,-12],[4,-4],[2,-8],[0,-52],[2,0],[1,10],[1,9],[-1,20],[-1,11],[-4,22],[-3,14],[4,12],[-3,6],[-3,-1],[-4,0],[-3,7],[-1,12],[1,9],[4,12],[2,6],[4,8],[3,6],[4,7],[5,4],[6,4],[7,0],[25,3],[14,2],[12,1],[67,-8],[17,-6],[7,-12],[5,-4],[6,-3],[2,-3],[3,-5],[2,-5],[3,-3],[1,-1],[2,-1],[3,0],[3,-1],[4,-1],[3,2],[3,4],[5,1],[5,-8],[5,-8],[2,-9],[-3,-17],[-4,-10],[8,6],[2,13],[1,13],[1,5],[6,0],[9,-14],[6,-3],[4,2],[2,3],[2,1],[6,-8],[3,-1],[2,1],[3,2],[2,3],[1,4],[2,4],[4,1],[2,-1],[3,-3],[5,-8],[-1,5],[-2,5],[-2,4],[-3,3],[-3,1],[-3,-1],[-2,-4],[-4,-4],[-6,-1],[-4,5],[-4,2],[-5,-5],[-4,0],[-4,8],[-4,4],[-16,10],[-6,6],[-5,7],[-2,6],[-1,6],[-2,4],[2,6],[3,4],[7,6],[9,3],[11,2],[9,0],[67,-5],[5,-2],[12,-3],[11,-4],[56,-17],[34,-16],[26,-11],[24,-16],[20,-12],[6,-2],[3,-2],[7,1],[2,-5],[3,-3],[2,-6],[-1,-6],[7,-27],[1,-11],[-2,-6],[-7,-27],[-3,-12],[-1,-23],[-4,-46],[-3,-24],[-4,-13],[-5,-13],[-5,-9],[-2,-6],[-1,-6],[-2,-11],[-12,-39]],[[34310,51620],[-13,-11],[-8,-10],[-5,-1],[-4,5],[-4,6],[-4,6],[-6,2],[-4,-4],[-4,-6],[-4,-5],[-5,0],[-6,2],[-4,-1],[-12,-21],[-3,-3],[-4,0],[-20,7],[-3,3],[-5,8],[-2,5],[-2,4],[-6,0],[-9,-2],[-5,0],[-5,2],[-7,8],[-5,9],[-4,13],[-1,16],[-9,15],[-13,-12],[-24,-31],[-6,2],[-10,13],[-6,2],[-7,-5],[-4,-8],[-3,-10],[-4,-8],[-6,-7],[-4,-3],[-3,-5],[-7,-39],[-3,-11],[-18,-50],[-9,-13],[-13,-7],[-8,-1],[-24,9],[-9,1],[-9,-5],[-23,-21],[-9,-12],[-5,-4],[-5,1],[-8,7],[-4,1],[-2,-4],[0,-9],[2,-18],[-1,-11],[-2,-10],[-5,-20],[-4,-11],[-12,-5],[-13,1],[-9,5],[-2,5],[-2,13],[-2,6],[-4,5],[-3,-1],[-3,-4],[-3,-2],[-6,1],[-6,2],[-6,3],[-5,6],[-2,4],[-2,10],[-1,1],[-4,-5],[-2,-8],[-1,-8],[-2,-7],[-3,-4],[-6,-6],[-2,-4],[0,-6],[1,-12],[0,-6],[-7,-11],[-4,-1],[-20,-7],[-1,-2],[-3,-9],[2,-12],[5,-24],[2,-12],[0,-14],[-2,-11],[-9,-29],[-2,0],[-2,3],[-2,1],[0,2],[-1,2],[-2,2],[-1,2],[-1,-1],[-4,-6],[-2,-2],[-28,6],[-4,-1],[-3,-5],[-8,-24],[-5,-10],[-5,-8],[-7,-6],[-5,-2],[-5,-1],[-5,2],[-6,5],[-7,12],[-2,12],[-2,13],[-4,14],[-5,9],[-6,7],[-1,1],[-11,9],[-47,17],[-17,13],[-5,5],[-4,10],[-6,29],[-2,6],[-5,6],[-1,11],[-1,11],[-3,9],[-3,0],[-5,-3],[-4,2],[-1,3],[-2,9],[-1,3],[-1,2],[-4,1],[-1,1],[-3,6],[-5,21],[-3,6],[-8,15],[-5,12],[-8,27],[-5,11],[-6,4],[-5,-2],[-5,-3],[-6,0],[-3,1],[-3,3],[-2,5],[-6,13],[-1,5],[5,13],[5,24],[0,7],[-1,1],[-1,-1],[-4,2],[-10,9],[-3,0],[-6,-4],[-3,0],[-3,6],[-1,13],[-1,13],[0,9],[1,7],[4,11],[1,7],[0,5],[0,15],[0,5],[2,10],[0,5],[-1,7],[-3,12],[0,8],[0,6],[4,10],[1,6],[-1,6],[-2,18],[0,22],[1,23],[0,20],[-6,15],[-3,1],[-5,0],[-3,1],[-3,4],[-9,16],[-11,12],[-5,8],[-3,11],[0,6],[3,10],[0,6],[0,7],[-1,12],[0,7],[-8,38],[-1,12],[0,7],[-1,5],[-2,9],[-1,3],[-4,3],[-1,2],[0,2],[2,7],[0,3],[-9,37],[-1,11],[2,97],[6,48],[0,13],[-1,34],[2,15],[2,14],[8,25],[1,3],[2,1],[2,2],[1,4],[-1,4],[-2,7],[0,3],[1,2],[3,1],[1,2],[-1,4],[-2,6],[-1,4],[0,7],[2,5],[2,4],[1,5],[4,27],[1,6],[8,25],[3,20],[0,1],[2,0],[2,1],[2,2],[0,5],[-2,7],[0,4],[1,29],[-5,-4],[1,11],[5,24],[-3,15],[-5,12],[-4,13],[0,18],[7,16],[23,17],[10,21],[7,6],[2,4],[2,7],[0,5],[0,5],[0,7],[2,15],[4,8],[11,10],[5,10],[1,8],[-1,10],[-1,13],[2,12],[4,14],[5,11],[6,5],[2,0],[2,3],[0,5],[0,6],[-2,4],[-4,3],[-8,3],[-3,0],[-2,2],[0,15],[-1,4],[-1,3],[-4,15],[-10,19],[-2,9],[0,14],[4,9],[0,9],[-6,10],[-12,8],[-4,7],[-3,16],[-1,6],[0,5],[1,11],[0,3],[3,7],[1,4],[-1,4],[-3,7],[0,2],[3,11],[9,21],[2,14],[0,5],[0,5],[-1,2],[-3,1],[-3,2],[-3,5],[-2,6],[-2,5],[-16,19],[-4,10],[-2,-5],[-3,-1],[-6,3],[-1,0],[-3,0],[-1,1],[-1,4],[0,7],[-1,3],[-3,0],[-6,-6],[-2,-1],[-2,3],[-4,12],[-2,3],[-3,1],[-3,0],[-3,-1],[-1,-5],[-2,-4],[-3,1],[-7,5],[-5,-2],[-4,-2],[-3,1],[-2,11],[-1,4],[-3,4],[-3,0],[-2,-5],[0,-6],[-2,-3],[-3,0],[-3,2],[-4,4],[-3,9],[-2,11],[1,11],[8,17],[2,1],[6,0],[2,2],[3,5],[1,6],[0,6],[1,7],[1,7],[8,24],[2,10],[2,10],[1,11],[-2,26],[4,26],[1,36],[2,17],[2,11],[1,11],[0,23],[5,36],[0,17],[-8,8],[-12,15],[-6,9],[-4,9],[0,1],[-9,44],[-3,7],[-12,-10],[-4,8],[-3,14],[-3,2],[-12,-6],[-5,-6],[-11,-24],[-6,-8],[-6,0],[-12,9],[-6,-1],[-2,-3],[-3,-12],[-3,-4],[-2,0],[-2,3],[-2,4],[-2,3],[-5,3],[-16,-5],[-4,1],[-3,3],[-3,4],[-3,3],[-3,1],[-17,3],[-6,-1],[-13,-6]],[[33127,53550],[-21,50],[-21,49],[-21,49],[-21,50],[-21,49],[-21,50],[-21,49],[-21,50],[-9,21],[-5,24],[3,6],[9,11],[4,7],[13,44],[4,19],[2,8],[4,5],[9,3],[5,3],[3,5],[3,7],[3,16],[3,6],[4,2],[4,-1],[3,1],[1,10],[0,8],[2,22],[-1,6],[-1,2],[0,2],[-1,4],[-2,4],[-5,6],[-1,6],[-2,16],[0,7],[1,28],[2,8],[2,8],[1,5],[0,4],[-1,5],[0,5],[-3,9],[-3,18],[-2,9],[-4,8],[-4,4],[-3,6],[-1,12],[2,21],[4,22],[6,21],[9,21],[2,7],[5,2],[6,-1],[6,-3],[2,10],[6,-2],[6,-3],[5,8],[13,-3],[6,1],[1,3],[8,17],[0,2],[0,5],[0,5],[-3,9],[-1,6],[2,3],[4,-1],[6,-3],[2,-3],[2,-4],[2,-4],[3,-2],[3,0],[6,3],[4,1],[5,-3],[10,-14],[5,-3],[5,4],[5,10],[8,24],[4,8],[6,5],[20,10],[35,47],[8,4],[4,-6],[3,29],[2,10],[4,8],[5,6],[4,7],[3,8],[2,10],[1,10],[0,11],[-2,9],[-4,7],[-10,11],[0,1],[-3,7],[-3,4],[-4,1],[-5,-2],[-4,1],[-3,3],[-2,4],[-4,3],[-7,0],[-6,-5],[-4,-9],[-7,-23],[-3,0],[-20,32],[-3,6],[-4,18],[0,18],[4,16],[6,13],[2,4],[0,4],[0,5],[0,5],[-3,8],[-3,16],[-2,8],[-2,3],[-2,2],[-2,3],[-2,6],[1,5],[0,4],[0,3],[-2,4],[-3,6],[-4,2],[-4,3],[-6,25],[-2,8],[0,9],[4,16],[13,8],[4,12],[4,15],[3,8],[1,3],[4,-2],[3,5],[1,7],[-1,9],[5,16],[0,6],[-1,12],[0,5],[1,5],[7,16],[5,22],[4,8],[6,4],[24,-1],[12,3],[7,11],[2,13],[6,12],[13,20],[2,2],[4,8],[2,9],[4,8],[13,11],[5,9],[4,9],[6,9],[6,4],[11,-2],[6,1],[5,6],[3,10],[2,24],[3,9],[1,7],[-1,6],[0,9],[2,9],[7,12],[3,7],[5,5],[14,7],[5,0],[6,4],[5,11],[4,13],[0,12],[-11,38],[-29,69],[-17,53]],[[33327,55538],[6,-6],[9,-12],[10,-21],[16,-52],[10,-21],[8,-9],[14,-7],[6,-8],[16,-23],[8,-10],[8,-3],[2,-9],[1,-1],[0,-5],[1,-1],[2,0],[16,-7],[2,-4],[3,-9],[25,-45],[-6,21],[-10,21],[-11,16],[-21,18],[-26,38],[-17,19],[-2,6],[-3,17],[0,7],[7,3],[4,-5],[10,-16],[12,-7],[5,-8],[9,-16],[18,-24],[26,-24],[29,-45],[51,-64],[17,-27],[4,-8],[4,-11],[15,-29],[38,-91],[14,-24],[8,-25],[7,-20],[7,-29],[5,-14],[1,3],[-3,15],[0,6],[4,0],[7,-5],[6,-10],[5,-11],[5,-12],[4,-15],[6,-20],[7,-18],[5,-13],[22,-46],[5,-18],[2,-20],[-3,-19],[2,4],[-2,-25],[2,-76],[-5,-62],[-4,-10],[-6,-10],[-4,-7],[-4,-11],[-3,-12],[-2,-12],[-2,-23],[-6,-35],[-1,-13],[1,-39],[-1,-6],[-3,-7],[0,-7],[0,-105],[-2,-13],[-1,-7],[-18,-56],[1,-1],[1,-2],[8,16],[3,4],[1,2],[1,4],[1,2],[4,-4],[2,0],[1,0],[4,0],[-2,4],[4,23],[1,78],[3,25],[29,110],[8,21],[10,15],[12,7],[12,-2],[10,-7],[17,-18],[6,-11],[1,-2],[1,-2],[2,-4],[1,-1],[1,-1],[2,2],[0,7],[3,2],[24,-6],[17,-18],[5,-10],[9,-13],[10,-22],[8,-12],[15,-30],[8,-19],[3,-9],[5,-4],[6,-14],[16,-27],[9,-15],[6,-11],[3,-9],[5,-9],[5,-12],[6,-29],[8,-42],[3,-8],[1,-12],[1,-5],[3,8],[0,5],[1,7],[0,10],[3,8],[3,3],[1,3],[1,0],[6,-1],[6,-4],[4,-5],[6,-6],[8,-11],[4,-4],[10,-13],[11,-18],[23,-49],[5,-18],[6,-22],[2,-24],[1,-14],[1,-7],[2,-6],[0,-6],[0,-6],[-4,12],[-2,4],[5,-21],[2,-8],[0,-13],[0,-10],[1,-21],[-4,-21],[-2,-11],[-2,-10],[-1,-7],[0,-12],[-3,-14],[-1,-14],[7,-23],[-1,-32],[-3,-19],[-3,-11],[-3,-14],[-14,-43],[0,-4]],[[33783,54599],[13,-4],[0,-3],[-16,-24],[-14,-9],[-5,-13],[-1,10],[1,14],[3,11],[5,7],[2,8],[1,3],[3,1],[8,-1]],[[85656,73344],[8,-28],[13,-43],[3,-18],[6,-29],[25,-81],[19,-85],[3,-10],[10,-20],[4,-18],[46,-111],[18,-44],[22,-40],[3,-5],[14,-28],[1,-12],[0,-15],[2,-12],[10,-10],[3,-10],[8,-44],[3,-11],[5,-4],[3,-6],[13,-43],[7,-16],[3,-9],[1,-9],[2,-9],[13,-25],[5,-21],[4,-45],[5,-24],[14,-34],[1,-7],[-2,-7],[-2,-7],[-2,-6],[0,-6],[2,-18],[3,-53],[2,-25],[9,-49],[1,-25],[-3,-23],[-6,-20],[-5,-24],[0,-1],[1,-24],[4,-24],[2,-24],[-2,-51],[-2,-11],[-8,-18],[-4,-10],[-1,-11],[-1,-72],[1,-10],[1,-5],[2,-2],[2,-3],[1,-20],[2,-16],[3,-3],[1,-3],[-1,-9],[-2,-5],[-3,-3],[-3,-1],[-4,-7],[-1,-8],[6,-9],[4,-9],[5,-9],[5,-2],[8,10],[17,33],[4,10],[4,-6],[1,-10],[2,-11],[2,-12],[-5,-11],[-10,-35],[-1,-15],[-2,-41],[-8,-35],[1,-22],[-8,-38],[-5,-19],[-2,-9],[2,-11],[2,-5],[2,-6],[-1,-13],[0,-15],[-2,-23],[-3,-10],[-5,-10],[-4,-4],[-2,10],[-1,14],[-4,10],[-4,2],[-2,-12],[4,-1],[2,-5],[1,-8],[0,-8],[-1,-8],[-3,-2],[-3,0],[-2,-4],[0,-4],[1,-12],[1,-11],[-3,-7],[-2,-7],[2,-6],[2,-3],[0,-8],[-6,-4],[-5,-5],[-8,-14],[-7,1],[-1,-9],[-1,-11],[-1,-5],[-2,-5],[1,-8],[1,-4],[-4,-11],[-4,-16],[-5,-10],[-3,-10],[-2,-7],[-4,0],[-3,1],[-4,-1],[-3,0],[-3,-3],[-3,0],[0,-9],[2,-5],[0,-7],[-1,-8],[-6,-5],[-5,7],[-4,5],[-2,5],[-7,-14],[-3,-11],[-1,-11],[-3,-3],[-1,6],[-3,6],[0,-6],[1,-12],[-3,0],[0,4],[-2,1],[-3,-3],[-2,-3],[-2,4],[-2,13],[1,12],[2,16],[0,8],[-1,2],[-3,-6],[-8,-26],[-4,-1],[0,12],[0,12],[-2,0],[-2,-9],[-2,-15],[-7,2],[-18,-1],[-1,11],[-2,6],[-3,-16],[-3,-3],[-6,5],[-3,10],[-3,1],[-5,-6],[0,26],[-1,2],[-2,-2],[-2,-5],[0,-9],[-5,6],[-3,9],[-4,5],[-6,-4],[2,8],[-3,12],[1,5],[-2,15],[-2,2],[-3,-5],[-4,-10],[0,-6],[4,-13],[2,-16],[1,-5],[2,-7],[5,-11],[1,-6],[-2,-7],[2,-1],[4,-3],[2,0],[-3,-3],[-2,-1],[-6,0],[-3,1],[0,3],[-1,4],[-1,4],[-2,5],[-2,2],[-15,9],[-4,1],[-9,-3],[-3,-2],[0,-4],[3,-8],[-5,-2],[-9,-9],[-11,-5],[-2,-7],[0,-8],[-3,-6],[0,-4],[28,26],[4,0],[1,-10],[2,-8],[0,-6],[-2,-8],[-3,-4],[-6,-1],[-5,0],[-4,3],[-2,-6],[2,-3],[2,-2],[2,-5],[0,-4],[0,-4],[0,-12],[-2,-25],[3,-4],[2,2],[2,4],[1,6],[3,-8],[-3,-12],[-7,-16],[-7,-3],[-8,1],[0,9],[6,0],[2,1],[1,4],[-17,3],[-4,3],[-4,9],[0,5],[3,3],[6,5],[-6,22],[-5,-8],[-4,-15],[-7,-1],[-6,14],[-3,3],[-6,1],[-3,-3],[-1,-7],[-1,-9],[0,-9],[-6,2],[-13,-1],[-5,5],[0,3],[0,9],[-1,2],[-1,1],[-3,-1],[-4,2],[-7,0],[-2,3],[-1,4],[0,5],[1,5],[0,4],[0,43],[0,7],[1,4],[1,4],[2,6],[0,7],[-4,-9],[-4,-11],[-4,-8],[-7,-1],[5,-21],[-3,-4],[-8,1],[-7,-8],[-3,14],[-2,6],[-3,4],[-1,-19],[-3,-15],[-6,-9],[-7,-2],[-3,2],[-3,2],[-2,-1],[-1,-3],[-5,6],[-2,2],[-2,1],[-12,-1],[-3,2],[-2,3],[0,4],[-2,6],[-3,4],[-1,-4],[0,-7],[1,-3],[-2,-11],[-1,-4],[-3,-5],[-10,-15],[-6,-5],[-4,7],[-5,18],[-5,3],[-3,-7],[-1,-12],[0,-10],[3,-10],[4,-14],[5,-12],[4,-5],[3,-7],[3,-2],[4,4],[8,14],[6,1],[5,-2],[5,0],[5,5],[0,-12],[-1,-8],[-3,-17],[-3,-29],[-2,-7],[-10,-6],[-8,7],[-6,2],[-5,-20],[-1,2],[-1,0],[0,-1],[-2,-1],[3,-7],[1,-9],[2,-26],[-1,-5],[-3,3],[-5,8],[-6,2],[-5,4],[-3,9],[-2,13],[2,13],[4,12],[2,12],[-1,10],[-2,5],[-5,17],[-1,1],[-1,1],[-2,0],[-1,3],[0,3],[0,3],[1,2],[-4,16],[-1,6],[0,3],[1,6],[1,3],[-1,3],[-1,3],[-2,1],[0,-3],[-1,-1],[-5,-21],[-2,-5],[-1,-1],[-1,0],[-10,-6],[-5,-1],[-12,0],[-5,-2],[4,-5],[7,-6],[6,-3],[0,-4],[-12,-6],[-6,-6],[-1,-8],[3,-4],[5,4],[3,-2],[2,-6],[-1,-2],[-1,0],[-1,-2],[4,-23],[8,-13],[8,-10],[6,-15],[-2,1],[-5,0],[-2,-1],[11,-8],[2,-7],[1,-12],[-3,-4],[-3,-5],[-5,1],[-3,-2],[-13,14],[-4,2],[-4,-1],[-4,-3],[-4,-5],[-2,-5],[1,-2],[3,-12],[4,-1],[3,-3],[10,5],[6,-9],[-13,-21],[-5,-12],[-5,4],[-8,-10],[1,-11],[3,-6],[-7,-1],[-12,27],[-4,14],[-10,20],[-3,-1],[-11,-11],[1,-6],[1,-2],[-5,3],[-4,1],[-4,4],[-2,8],[-1,9],[2,5],[6,6],[2,3],[6,13],[3,13],[2,5],[4,3],[0,-10],[-1,-9],[-4,-18],[8,1],[6,5],[5,10],[-1,17],[-1,7],[-2,4],[-2,4],[0,9],[1,5],[8,16],[3,-3],[2,-4],[1,-4],[-2,-6],[2,-8],[2,-5],[3,-2],[5,3],[1,4],[4,14],[2,6],[-4,11],[-1,10],[-2,5],[-5,-7],[-6,-5],[-5,8],[-7,19],[-4,-11],[-6,-25],[-4,-9],[-4,-2],[-3,0],[-7,2],[-3,-2],[-3,-4],[-5,-12],[-3,-3],[-10,-11],[-5,-7],[-4,-4],[-3,-1],[-2,-2],[-1,-5],[0,-7],[0,-7],[-2,-5],[-2,-5],[-2,-6],[2,-8],[-15,-26],[0,-25],[-2,-4],[-8,7],[-2,-6],[-1,-5],[0,-7],[2,-7],[-4,2],[-8,10],[-10,6],[-3,2],[-2,12],[1,30],[-1,11],[2,8],[-1,9],[-2,8],[-3,4],[-3,-2],[-3,-5],[-2,-6],[-1,-6],[1,-8],[2,-7],[0,-5],[-9,-5],[1,-7],[7,-14],[-11,-11],[-4,-7],[4,-2],[1,-2],[0,-3],[0,-3],[-1,-1],[-2,1],[-2,2],[-1,1],[-4,-1],[-1,-3],[0,-4],[-1,-6],[-3,-2],[-8,-4],[-3,-5],[-1,-4],[-7,-40],[0,-5],[0,-7],[-7,2],[-13,-7],[-3,1],[0,7],[2,14],[0,7],[-3,4],[-3,1],[-8,0],[0,3],[2,4],[0,2],[1,9],[1,1],[1,-1],[1,1],[4,13],[1,6],[-1,6],[-2,2],[-2,1],[-4,1],[-3,2],[0,3],[1,3],[0,1],[0,7],[2,7],[-1,4],[-4,-2],[1,14],[5,7],[8,3],[7,0],[-2,5],[-1,3],[-3,3],[-2,1],[4,6],[3,6],[0,5],[-3,4],[-2,-1],[-2,-6],[-2,-2],[-2,0],[-4,4],[-2,0],[-1,-2],[-1,-4],[-1,-6],[-3,-1],[-2,0],[-3,1],[-6,0],[-3,-1],[-4,-3],[-1,10],[-2,5],[-7,6],[0,2],[-1,4],[-2,3],[-1,-4],[0,-2],[-2,-2],[-3,-1],[-1,2],[-6,9],[-1,1],[-1,6],[1,1],[1,1],[1,4],[1,-3],[3,0],[2,3],[-1,6],[-8,6],[-6,7],[0,18],[2,18],[3,14],[1,4],[-1,6],[1,4],[2,2],[2,0],[2,-1],[2,-2],[2,-7],[8,-23],[-2,-6],[-1,-6],[0,-6],[1,-6],[6,-28],[3,-4],[14,-4],[6,-7],[3,0],[2,10],[-3,0],[-1,1],[-6,2],[-3,8],[-3,6],[1,14],[-4,-2],[-2,-8],[-3,0],[-1,11],[-1,14],[2,9],[-2,10],[8,1],[12,-4],[1,-5],[-1,-7],[0,-3],[0,-2],[1,-4],[3,-3],[2,-4],[3,-4],[5,-4],[3,-5],[4,-5],[3,-3],[1,3],[-6,13],[4,1],[5,-5],[7,-6],[8,-5],[5,3],[-5,2],[-5,5],[-9,13],[2,4],[-6,8],[-9,20],[-5,5],[-7,2],[-8,-1],[-5,7],[-7,-4],[-7,4],[-1,6],[4,8],[4,3],[8,-2],[11,8],[13,-16],[4,1],[1,-1],[1,-1],[0,-1],[2,-1],[-1,11],[0,11],[3,7],[7,3],[13,-7],[6,0],[-2,7],[5,4],[2,1],[3,0],[-4,8],[-6,2],[-15,-2],[1,5],[0,4],[-1,4],[0,6],[1,4],[2,3],[1,4],[0,6],[-2,9],[-4,2],[-4,-4],[-3,-7],[-1,-5],[2,-10],[1,-5],[-1,-1],[-3,-12],[-3,-20],[-3,-7],[-6,-1],[0,2],[-2,2],[2,3],[1,6],[1,4],[-4,3],[-2,-2],[-3,-4],[-3,-2],[-8,3],[-2,-2],[0,-6],[-4,0],[-6,-3],[-3,2],[-1,7],[2,5],[6,10],[2,6],[1,4],[0,4],[0,5],[0,9],[1,4],[3,5],[-3,5],[-3,10],[-2,12],[1,9],[3,7],[6,6],[1,5],[-7,3],[-3,-1],[-2,-3],[-1,-3],[-2,-1],[-3,-2],[1,-6],[1,-7],[0,-6],[-4,-6],[-5,0],[-5,2],[-3,4],[2,4],[2,0],[-3,4],[-2,3],[-2,5],[-1,5],[3,3],[3,0],[7,-3],[-1,13],[8,13],[-2,13],[-8,19],[-5,8],[-5,3],[2,-14],[-2,-7],[-4,0],[-4,9],[3,6],[-7,16],[-1,10],[4,8],[5,2],[5,-5],[3,-9],[3,4],[2,7],[2,13],[2,-7],[1,-5],[-1,-11],[-1,-6],[-1,-3],[1,-4],[1,0],[1,1],[1,-1],[1,-8],[1,-3],[1,-2],[3,-3],[3,-2],[4,0],[2,-2],[-1,-7],[0,-7],[2,-6],[3,-5],[7,28],[1,9],[0,11],[-2,3],[-5,3],[-2,2],[-2,3],[-3,13],[-9,19],[-2,8],[1,3],[1,3],[1,3],[1,6],[-3,3],[-1,5],[0,8],[-3,-2],[-4,-1],[-8,-1],[3,7],[5,2],[6,1],[5,2],[-2,1],[-1,1],[-1,1],[-2,1],[2,6],[1,3],[2,2],[2,3],[1,5],[-1,4],[-1,4],[0,4],[1,9],[2,9],[6,16],[2,-3],[4,-9],[5,-3],[3,1],[-1,4],[-9,18],[-2,7],[2,14],[5,17],[8,30],[6,16],[9,6],[10,4],[9,0],[4,6],[4,10],[6,2],[5,-9],[5,-11],[4,-2],[-4,22],[-3,10],[-4,4],[-39,-11],[-14,15],[1,16],[0,6],[7,6],[5,9],[5,11],[9,8],[10,10],[8,19],[1,17],[4,5],[3,3],[2,3],[10,2],[10,-3],[6,-8],[4,-2],[3,-9],[2,5],[0,7],[1,7],[-4,5],[-2,3],[-6,5],[-6,7],[-5,6],[-2,3],[1,5],[2,5],[2,3],[3,1],[15,-1],[4,0],[2,2],[2,6],[0,4],[2,3],[4,1],[1,2],[-2,5],[-3,4],[-3,2],[-1,-1],[-20,-14],[-7,-1],[-13,2],[-14,1],[0,11],[-1,14],[-2,3],[-9,5],[-12,-3],[-1,18],[25,5],[14,3],[14,1],[4,5],[5,-3],[6,5],[10,14],[13,9],[6,7],[0,8],[-16,-9],[-6,-3],[-6,-6],[-4,-8],[-5,-4],[-7,-2],[-5,-5],[-5,4],[-1,4],[-1,5],[-1,8],[-2,6],[-5,11],[-3,7],[4,6],[-1,3],[-4,3],[-4,2],[-6,19],[-5,4],[-4,-4],[-1,0],[-1,6],[-6,7],[-5,-1],[-2,-11],[-1,-4],[-2,3],[1,17],[10,8],[8,5],[12,-6],[-4,12],[-3,4],[-3,4],[-2,1],[-2,-2],[-1,1],[-3,4],[-1,4],[6,28],[3,12],[4,5],[-3,6],[-12,7],[-4,3],[4,7],[12,5],[3,6],[-2,8],[-4,2],[-9,0],[-2,3],[-4,7],[-2,3],[0,4],[4,0],[-4,13],[5,5],[5,3],[6,13],[11,6],[6,5],[-17,0],[-3,-4],[-6,-15],[-5,-2],[-3,6],[-2,11],[-2,11],[0,7],[6,11],[3,8],[-1,3],[-5,-4],[-3,4],[-2,3],[-1,0],[-1,6],[1,5],[-1,5],[-1,10],[-2,5],[0,2],[4,1],[6,4],[5,0],[1,7],[2,6],[-3,5],[-3,2],[-4,7],[2,7],[4,5],[-2,9],[-7,2],[-1,10],[2,7],[6,2],[-3,7],[-2,4],[-1,5],[-2,-4],[-4,-7],[-4,-3],[-1,-4],[0,-4],[2,-6],[0,-10],[-2,-11],[1,-16],[-2,-13],[-3,-5],[-5,6],[-6,1],[-5,6],[1,32],[2,11],[-3,3],[1,15],[-3,6],[-5,-1],[-2,-8],[-1,-9],[-2,-7],[-6,0],[3,-10],[5,-13],[1,-10],[-3,-5],[1,-4],[4,-11],[-4,-2],[-3,-3],[-3,-5],[-3,-7],[0,5],[0,4],[-1,4],[-1,4],[4,14],[-8,23],[2,12],[-2,16],[-5,-5],[-7,-16],[-6,-4],[-3,-1],[-3,-2],[-2,0],[-4,3],[-1,3],[-1,6],[0,5],[1,3],[12,-1],[2,4],[0,9],[-3,9],[-4,4],[-4,2],[-4,5],[-1,-7],[-1,-15],[-2,-7],[-3,-5],[-1,5],[0,15],[0,14],[1,4],[7,16],[1,5],[1,8],[1,-6],[1,-5],[2,-5],[2,-5],[1,2],[2,0],[2,-1],[2,-1],[-2,7],[-3,9],[7,-4],[4,2],[2,7],[-7,1],[-5,3],[0,7],[4,13],[-6,9],[1,8],[4,7],[7,4],[-2,-15],[1,-4],[4,-1],[7,0],[2,2],[1,6],[1,13],[-1,18],[1,15],[7,3],[-1,-8],[0,-13],[2,-13],[3,-16],[-2,-5],[-2,-5],[-2,-5],[0,-6],[2,-8],[0,-3],[-2,-2],[-5,-6],[-1,-2],[1,-5],[1,-5],[1,-3],[2,1],[5,8],[3,0],[8,-9],[-6,21],[-2,13],[3,6],[5,-10],[3,-3],[1,7],[1,2],[3,2],[6,2],[0,4],[-3,0],[-5,4],[0,4],[7,2],[4,11],[1,14],[-3,9],[-2,2],[-7,0],[-4,3],[-3,5],[0,6],[1,2],[4,-5],[2,9],[-2,5],[-5,2],[-5,0],[2,4],[3,4],[3,0],[3,-2],[3,-4],[2,0],[1,1],[-1,5],[0,4],[10,1],[5,-3],[2,-8],[-1,-5],[-3,-5],[-2,-7],[2,-9],[2,4],[4,3],[2,-1],[1,-4],[1,-5],[1,-3],[0,-4],[0,-2],[-3,-5],[0,-4],[0,-26],[0,-8],[3,-5],[2,-2],[0,3],[2,14],[5,29],[1,13],[1,4],[4,-4],[5,-9],[2,-7],[1,-6],[2,-3],[4,-1],[0,4],[-2,4],[-2,12],[-3,6],[-17,31],[-1,2],[1,6],[3,0],[2,-5],[5,-10],[2,-3],[3,-2],[3,0],[3,2],[0,4],[-2,4],[-4,2],[-5,4],[-6,9],[-2,14],[-1,9],[5,0],[5,-3],[4,-6],[5,-7],[6,-6],[2,-4],[4,-5],[4,-4],[3,-8],[-1,-8],[-3,-5],[0,-4],[3,-9],[0,-6],[-1,-10],[4,4],[1,4],[0,5],[-1,15],[2,5],[1,5],[3,8],[4,3],[5,1],[5,-2],[5,-3],[7,-3],[4,-5],[6,-11],[1,-12],[-5,-26],[4,4],[5,11],[3,1],[2,-5],[1,-8],[1,-17],[-1,-4],[-1,-8],[0,-5],[0,-4],[3,-7],[2,-19],[-1,-5],[-4,-3],[0,-5],[2,-3],[1,-2],[2,-2],[2,13],[3,8],[1,9],[-2,14],[6,-2],[5,-2],[-9,18],[-3,10],[6,5],[5,1],[12,8],[9,12],[4,3],[3,6],[2,15],[-1,2],[-2,5],[-1,1],[2,2],[1,1],[2,0],[4,3],[2,1],[2,2],[1,7],[-17,-8],[-3,-6],[1,-18],[-2,-5],[-6,-3],[-9,2],[-11,11],[-10,16],[-4,16],[17,3],[0,4],[-1,1],[-3,3],[3,1],[3,0],[3,-2],[2,-3],[-1,11],[-4,10],[-3,12],[3,15],[-4,3],[-2,-6],[-2,-9],[0,-10],[-1,-10],[-3,-2],[-3,4],[-5,-2],[-5,-2],[-13,7],[0,6],[-1,6],[1,8],[-1,10],[3,10],[4,9],[5,4],[4,3],[8,0],[7,4],[2,4],[0,11],[-2,2],[-4,-4],[-5,-8],[-4,1],[-3,2],[-1,5],[0,7],[-7,-5],[-5,-7],[-10,-18],[-2,-4],[-4,-2],[-3,1],[-1,3],[0,5],[1,5],[5,10],[-9,-3],[-2,1],[-1,9],[1,6],[4,3],[4,2],[3,3],[3,8],[-1,2],[-7,-2],[-3,3],[-2,6],[-2,8],[-2,7],[1,1],[1,1],[2,3],[2,-3],[3,0],[5,3],[5,-2],[3,-4],[4,-2],[4,3],[0,-6],[0,-7],[2,-5],[2,-2],[3,2],[2,6],[1,12],[5,12],[4,-1],[4,-4],[6,1],[-1,5],[-2,4],[-2,2],[-3,1],[-4,0],[-1,5],[-5,1],[-3,-2],[-3,0],[-5,2],[-9,5],[-12,16],[-1,6],[5,14],[4,6],[-1,4],[-14,3],[-7,-15],[-7,9],[3,11],[4,10],[-3,6],[-5,5],[-4,4],[0,11],[-1,8],[3,8],[8,4],[2,2],[1,5],[-4,2],[-1,-5],[-5,-1],[-2,6],[0,11],[1,14],[-1,5],[-3,9],[-2,7],[-3,8],[-3,5],[0,8],[-1,12],[-3,19],[-4,49],[1,8],[3,1],[16,-10],[5,2],[4,3],[3,2],[4,-5],[1,-7],[1,-10],[0,-12],[-2,-7],[0,-14],[8,-12],[11,-8],[7,-1],[-5,10],[-16,19],[4,21],[2,13],[-1,8],[-3,10],[0,5],[-1,7],[2,11],[3,10],[-2,4],[-3,0],[-4,-5]],[[85185,72872],[-2,51],[1,14],[3,4],[6,1],[7,5],[11,14],[24,61],[4,9],[11,14],[5,9],[5,23],[4,16],[3,7],[2,3],[15,22],[18,18],[19,13],[18,3],[8,-2],[35,5],[26,-13],[8,1],[17,9],[53,8],[3,-3],[3,-9],[4,-5],[3,-2],[19,6],[29,-2],[19,2],[19,11],[18,20],[14,26],[7,15],[5,16],[4,19],[1,21],[-2,20],[-1,10],[2,8],[7,10],[16,14]],[[85112,72061],[2,-11],[4,-10],[1,-9],[-2,2],[-13,-1],[-4,1],[-1,9],[2,3],[2,3],[1,6],[-7,-8],[-3,3],[1,9],[5,12],[-2,3],[-3,-7],[-2,5],[-3,-3],[2,15],[-1,21],[-2,13],[-2,17],[2,5],[5,8],[5,3],[4,-10],[0,-4],[-1,-4],[-2,-3],[0,-4],[5,-18],[1,-6],[-1,-5],[1,-4],[3,-3],[3,-7],[-6,0],[0,-4],[2,-1],[4,-4],[-1,-3],[0,-3],[1,-6]],[[85081,72857],[6,0],[5,-1],[2,-5],[-2,-11],[-4,-7],[-7,-1],[-11,5],[-3,-2],[-3,-3],[-3,0],[-1,6],[1,2],[3,17],[4,5],[4,2],[4,-2],[5,-5]],[[85262,70296],[2,-8],[-1,-2],[-3,-2],[-2,-4],[0,-3],[2,-6],[0,-3],[-1,-3],[-2,-6],[-1,-2],[-5,-10],[-9,-13],[-3,-12],[-4,-13],[-1,-5],[-1,-8],[-7,-1],[-3,-2],[-7,1],[-11,-15],[-28,-10],[-9,-14],[-12,-4],[-12,2],[-14,-5],[-12,6],[-26,0],[-8,-7],[-5,-16],[-5,-1],[-4,4],[-7,18],[-8,5],[-8,15],[-3,19],[5,24],[5,15],[2,5],[10,10],[8,26],[8,3],[3,14],[13,8],[29,14],[7,11],[27,5],[18,14],[5,-2],[22,7],[13,2],[9,-3],[3,-9],[4,-5],[14,-10],[4,-7],[2,-18],[3,-7],[1,3],[2,2],[1,3]],[[85325,70891],[9,2],[4,0],[4,-4],[3,-9],[-1,-11],[-4,-9],[-5,-4],[-11,-4],[-5,1],[-3,3],[-6,8],[0,5],[1,3],[0,3],[-1,2],[-2,3],[3,5],[5,3],[9,3]],[[85105,70900],[0,-8],[-1,-9],[-1,-9],[-6,-21],[-2,-6],[-3,-3],[0,2],[-5,8],[-2,2],[0,-4],[-1,-9],[-27,-26],[-3,-1],[-11,-2],[-4,1],[0,5],[1,5],[2,3],[1,3],[-1,4],[-8,9],[0,-13],[-6,12],[3,20],[8,16],[8,1],[2,13],[2,5],[3,5],[3,3],[2,0],[2,3],[1,8],[3,-7],[5,0],[4,4],[1,9],[-2,8],[-7,9],[2,5],[4,1],[5,-4],[4,-6],[3,-3],[1,-1],[0,-4],[2,-4],[2,-3],[1,1],[6,7],[0,-5],[9,-24]],[[85494,71010],[3,-1],[3,-7],[2,-9],[2,-14],[0,-9],[-1,-9],[-2,-8],[-2,-5],[-4,0],[-3,3],[-10,17],[-1,7],[2,11],[1,3],[5,7],[1,3],[2,15],[-4,8],[1,5],[3,3],[3,0],[3,-2],[1,-6],[-1,-6],[-4,-6]],[[84996,71027],[3,-5],[1,-2],[1,-5],[-1,-5],[-1,-4],[-4,-10],[-2,-2],[-2,-1],[-3,1],[0,2],[-4,4],[-4,3],[-2,-1],[-2,10],[2,5],[8,6],[5,12],[2,1],[1,-1],[2,-8]],[[85001,71067],[0,-12],[-1,1],[-3,1],[-2,2],[-2,-6],[-4,0],[-3,2],[-2,-2],[0,-8],[-2,-7],[-2,-5],[-4,-3],[-3,1],[-2,4],[-2,6],[0,8],[1,7],[2,6],[3,3],[3,2],[4,-2],[5,2],[9,6],[2,0],[1,0],[1,-2],[1,-4]],[[85015,71146],[1,8],[3,1],[3,-4],[2,-6],[1,-9],[-1,-8],[-2,-7],[-4,-5],[-4,-2],[-2,1],[-2,3],[-2,2],[-9,-4],[-4,0],[0,4],[3,4],[5,14],[4,6],[2,0],[2,-2],[3,0],[1,4]],[[85574,71088],[1,-7],[0,-6],[-2,-6],[-1,-8],[1,-12],[0,-7],[-2,-3],[-2,-2],[2,-13],[-1,-6],[-4,-1],[-4,4],[-4,4],[-6,-4],[-4,-2],[-3,12],[-3,24],[-5,4],[-3,-4],[-3,-10],[-1,-13],[-1,-5],[-4,0],[-4,3],[-3,2],[-2,6],[0,4],[0,5],[-1,8],[-7,44],[-1,10],[0,11],[3,10],[3,3],[2,1],[1,2],[2,13],[1,3],[5,7],[4,3],[4,-3],[3,-5],[3,-8],[-1,-8],[-2,-7],[-7,-11],[2,-5],[1,-10],[1,-5],[3,-3],[6,-4],[3,-10],[6,2],[6,4],[7,3],[9,-3],[2,-1]],[[85763,71120],[-1,-7],[-1,-8],[-2,-4],[-4,3],[1,-8],[4,-14],[1,-9],[-2,-1],[-5,3],[-5,5],[-4,4],[-1,-9],[0,-4],[-5,-10],[-2,-8],[4,-4],[4,-4],[2,-4],[-4,-7],[-20,-11],[-6,0],[9,12],[-4,3],[-1,5],[0,7],[2,9],[-9,-8],[-3,3],[-1,7],[0,7],[2,3],[7,3],[2,6],[0,9],[2,11],[-4,4],[-3,-6],[-10,-8],[-4,-6],[-4,8],[-4,8],[-3,8],[-1,12],[2,6],[4,7],[4,4],[4,3],[10,4],[3,0],[4,-4],[4,-4],[4,-3],[5,-1],[0,4],[-5,6],[-3,9],[-1,10],[-1,9],[4,0],[19,19],[-3,11],[2,11],[4,6],[5,-4],[1,-5],[0,-5],[-2,-22],[0,-4],[2,-7],[1,-5],[2,-6],[0,-8],[-1,-7],[-5,-20],[6,3],[2,4],[1,-1],[1,-10]],[[85030,71227],[-2,0],[-7,3],[-3,0],[-1,1],[0,1],[-1,1],[-1,1],[2,18],[1,6],[2,2],[4,2],[3,2],[1,4],[2,8],[5,6],[6,2],[4,-2],[-8,-8],[-2,-5],[-1,-6],[2,-6],[3,-11],[-3,-2],[-3,-5],[-2,-7],[-1,-5]],[[85156,72686],[1,-2],[1,-3],[1,-2],[1,-4],[1,-3],[-1,-1],[-3,-3],[-1,-2],[-5,-2],[-2,0],[-3,-2],[-6,-5],[-4,-5],[-2,-6],[-12,-15],[-2,1],[-3,-1],[-1,1],[-1,7],[-2,2],[-1,-2],[-1,0],[-1,1],[1,2],[-1,3],[-2,0],[-1,-2],[-1,-2],[-2,1],[-3,2],[1,3],[0,3],[-3,5],[-1,3],[1,4],[2,1],[2,-2],[13,15],[9,2],[6,-1],[5,5],[2,14],[4,2],[3,-5],[2,-1],[2,-2],[1,-1],[2,0],[1,-1],[3,-2]],[[86361,72705],[5,-6],[0,-15],[-3,-17],[-4,-11],[-5,-5],[-7,3],[-7,7],[-4,9],[-2,12],[2,9],[5,6],[10,3],[7,4],[3,1]],[[85098,72793],[4,-4],[2,-5],[1,-6],[-3,-7],[-6,0],[-19,25],[3,3],[1,5],[2,11],[1,3],[1,3],[1,2],[2,1],[1,-1],[1,-2],[0,-2],[1,-11],[0,-2],[2,-4],[1,-3],[4,-6]],[[85140,72735],[-2,0],[-2,1],[-3,5],[-2,2],[-1,0],[-1,-2],[-1,-2],[-15,-1],[-5,4],[-6,13],[9,4],[2,2],[2,7],[0,3],[-2,1],[-1,4],[-10,31],[-1,5],[1,7],[0,28],[1,6],[3,2],[6,13],[5,2],[5,-6],[4,-8],[4,-6],[9,-8],[4,-6],[1,-10],[0,-4],[-2,-8],[0,-4],[1,-4],[2,-8],[1,-4],[1,-22],[-1,-5],[1,-3],[2,-6],[1,-3],[-4,-3],[-3,-13],[-3,-4]],[[84647,72962],[3,-6],[0,-9],[-4,-5],[-6,6],[-7,-1],[-1,-1],[0,-7],[3,-2],[3,-1],[2,-2],[-6,-8],[-11,3],[-9,12],[3,21],[7,-4],[15,9],[8,-5]],[[85363,70617],[1,-3],[2,-1],[1,-2],[0,-3],[-4,4],[-4,1],[-1,2],[-1,4],[0,5],[-1,1],[-1,2],[-1,4],[1,3],[0,3],[0,2],[1,0],[1,0],[1,1],[1,1],[1,-2],[-1,-6],[0,-6],[4,-10]],[[85425,70872],[1,-6],[0,-4],[-2,-4],[-5,-5],[-5,-3],[-1,2],[0,5],[-2,3],[-3,2],[-1,3],[0,2],[-3,4],[-1,2],[1,5],[-1,3],[0,3],[1,1],[2,-1],[2,-3],[4,-1],[0,-2],[2,1],[2,4],[3,0],[6,-11]],[[85494,70905],[2,-2],[1,-3],[0,-4],[-4,-2],[-2,0],[0,1],[-1,2],[-3,3],[-4,2],[-3,4],[-1,5],[-1,4],[-3,2],[-2,4],[2,5],[5,4],[5,1],[3,-4],[5,-15],[-1,-4],[0,-2],[2,-1]],[[85027,70958],[1,-1],[0,-3],[0,-6],[-1,-6],[0,-6],[-2,-3],[-2,-3],[-2,-4],[-6,-6],[-3,0],[-3,1],[-1,3],[2,1],[1,0],[2,3],[1,2],[0,2],[-6,2],[1,4],[4,1],[4,0],[3,4],[2,6],[-2,6],[-2,8],[-2,10],[2,2],[3,-4],[2,-4],[4,-3],[0,-6]],[[85010,70942],[-3,-2],[-2,3],[-1,21],[1,11],[2,6],[4,-14],[3,-8],[2,-8],[-1,-7],[-2,-1],[-3,-1]],[[84845,71013],[3,1],[1,-2],[-3,-5],[-1,-2],[-1,-4],[-4,-9],[-1,-4],[-2,-5],[-1,-4],[-1,-2],[-3,2],[-2,9],[1,8],[1,7],[2,6],[2,6],[2,3],[3,1],[1,-2],[1,-4],[2,0]],[[85048,71039],[0,-5],[1,-7],[-2,-5],[-4,-1],[-3,6],[-2,6],[-3,0],[-2,-2],[-1,-1],[-2,0],[-2,3],[0,5],[-3,8],[-5,10],[-2,5],[3,-1],[2,0],[2,1],[3,1],[4,-1],[2,-2],[2,-3],[3,-2],[3,-1],[3,-1],[1,-3],[1,-3],[0,-3],[1,-4]],[[85046,71074],[-1,-1],[-1,-4],[1,-8],[-2,-3],[-3,-2],[-3,3],[-4,6],[-5,3],[-3,3],[3,4],[7,2],[4,3],[2,4],[2,-3],[2,-4],[1,-3]],[[85021,71092],[-2,6],[-2,6],[1,5],[4,3],[3,1],[3,-3],[2,0],[1,4],[0,7],[2,4],[4,0],[2,1],[1,-2],[1,-3],[1,-4],[-4,-4],[1,-9],[0,-6],[-2,-2],[-3,0],[-2,-3],[0,-7],[-1,-5],[-3,-3],[-2,0],[-1,4],[0,2],[-4,8]],[[85575,71105],[1,-1],[2,-4],[-3,-1],[-13,5],[-7,-4],[-4,1],[-4,5],[-2,8],[1,9],[4,9],[3,8],[2,6],[5,2],[1,-7],[-2,-9],[-1,-7],[0,-5],[2,-2],[2,6],[3,9],[2,1],[1,-4],[2,-2],[1,-2],[1,-7],[1,-10],[2,-4]],[[85068,71148],[-3,-2],[-3,0],[-2,5],[1,6],[2,2],[5,0],[1,-1],[1,-3],[-1,-6],[-1,-1]],[[85049,71226],[0,-3],[1,-3],[0,-6],[-2,-1],[-1,-2],[-1,1],[-3,5],[-1,1],[-2,-1],[-1,0],[0,3],[-1,1],[-2,0],[0,1],[2,3],[-1,0],[-1,0],[-1,1],[0,2],[2,3],[2,0],[3,-2],[3,1],[3,-1],[1,-3]],[[85789,71210],[-1,-12],[-2,-4],[-2,-1],[0,2],[-2,11],[-2,3],[-1,3],[1,5],[-1,5],[-2,4],[1,5],[3,2],[3,1],[3,-1],[2,-8],[0,-15]],[[85071,71535],[-1,2],[-1,4],[0,4],[3,3],[0,1],[-2,1],[1,2],[2,1],[1,3],[1,0],[1,1],[0,3],[1,0],[3,-1],[2,3],[1,2],[2,-2],[0,-3],[-1,-5],[-5,-7],[-3,-7],[-3,-3],[-1,-1],[-1,-1]],[[85027,72517],[-2,-2],[-1,0],[0,3],[1,9],[1,8],[2,5],[2,-3],[2,-5],[2,-3],[7,-6],[2,-4],[-1,-4],[-3,-6],[-3,-2],[-3,0],[-3,2],[-2,5],[0,3],[-1,0]],[[85134,72547],[2,-3],[2,-8],[-2,-2],[-3,-2],[-1,-4],[0,-3],[-2,-5],[-4,-1],[-2,2],[-2,0],[-2,2],[0,7],[0,8],[2,5],[5,5],[7,-1]],[[85170,72533],[0,-3],[1,-5],[-1,-6],[-15,-19],[-6,-1],[0,3],[3,7],[0,4],[-1,3],[4,7],[0,7],[-2,9],[-2,6],[-2,4],[1,1],[5,-3],[3,5],[1,0],[0,-5],[1,-5],[3,-3],[5,-4],[2,-2]],[[84913,72784],[3,-1],[2,-3],[-1,-7],[-3,-4],[-2,-1],[0,3],[-2,7],[0,5],[3,1]],[[84643,72883],[2,-2],[0,-3],[-1,-6],[-1,-6],[-1,-5],[-2,-2],[-2,0],[-2,-1],[-1,-2],[-1,-1],[0,2],[0,1],[-1,3],[-2,4],[1,5],[4,6],[3,6],[2,2],[2,-1]],[[84757,70634],[-2,1],[-5,9],[-3,3],[-1,5],[2,6],[2,4],[3,-2],[2,-5],[4,-15],[1,-5],[-1,-2],[-2,0],[0,1]],[[85166,70705],[2,-2],[2,-5],[0,-3],[-2,2],[-1,0],[0,-2],[-1,1],[-3,2],[-2,0],[-2,-2],[-1,-4],[-3,-3],[-3,-5],[-4,-4],[-5,0],[-3,7],[0,9],[2,9],[5,6],[4,0],[6,-6],[2,-1],[2,2],[3,0],[2,-1]],[[85186,70696],[1,-1],[1,-3],[-1,-2],[-1,0],[-1,-4],[0,-6],[-1,-5],[-3,-1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,8],[2,13],[0,8],[-2,3],[0,3],[2,4],[0,2],[3,0],[4,-5],[1,-5],[-3,-4],[0,-5],[3,-7]],[[85252,70722],[2,-4],[2,-4],[-1,-7],[0,-3],[-2,-6],[-3,-3],[-4,0],[-4,2],[-2,4],[-2,0],[-1,-3],[-1,1],[-1,9],[2,6],[0,6],[1,5],[2,3],[4,3],[5,-2],[3,-7]],[[85169,70734],[1,-3],[1,-5],[-2,-3],[-1,-7],[-4,0],[-3,-1],[2,-4],[-2,-2],[-4,2],[-2,4],[-1,2],[-1,1],[-1,0],[0,2],[1,7],[1,3],[0,2],[-1,1],[1,1],[1,1],[0,2],[0,1],[-1,4],[1,2],[2,-1],[2,-2],[6,-2],[3,-3],[1,-2]],[[85024,70787],[0,-6],[0,-5],[-1,-3],[-3,-1],[-2,-2],[-1,1],[-1,3],[-1,0],[0,-3],[-2,0],[-6,4],[-2,5],[0,3],[1,3],[0,3],[2,2],[10,-3],[4,1],[2,-2]],[[85236,70788],[-1,-2],[-2,-1],[-2,3],[0,5],[-2,3],[-2,2],[-3,-1],[-3,-2],[-3,0],[-1,1],[-1,1],[-6,5],[0,2],[2,1],[3,1],[1,1],[1,1],[3,0],[2,-2],[3,2],[4,5],[3,1],[1,-2],[2,-1],[2,0],[1,1],[3,-1],[4,-1],[2,-3],[0,-4],[-2,-4],[0,-2],[-1,-4],[-1,-3],[-3,1],[-2,-1],[-2,-2]],[[85302,70809],[1,-1],[1,-3],[-2,-1],[-2,2],[-3,2],[-2,-2],[1,-1],[1,-2],[-2,-4],[-4,-6],[-3,-3],[-1,5],[2,4],[2,2],[-1,3],[-6,2],[0,2],[0,3],[-2,2],[-5,1],[-2,1],[0,1],[0,1],[2,1],[2,2],[2,5],[3,4],[0,2],[1,-1],[2,-3],[2,-5],[1,-5],[2,-2],[4,2],[2,1],[2,-2],[1,-3],[1,-4]],[[85211,70788],[1,-4],[1,-6],[0,-2],[-2,1],[-1,0],[-3,2],[-2,3],[-1,-1],[0,-3],[-2,-2],[-2,2],[-4,2],[-5,3],[-1,4],[3,4],[-1,4],[-2,1],[-3,-1],[-4,2],[-3,3],[-2,5],[-1,6],[0,7],[0,8],[2,7],[2,6],[3,3],[1,0],[5,1],[3,-2],[3,-3],[4,-7],[2,-12],[1,-9],[1,-4],[1,-4],[1,-5],[5,-9]],[[85211,70832],[-1,0],[-2,2],[1,4],[2,3],[2,8],[4,9],[5,5],[6,2],[3,-1],[2,-3],[0,-4],[-2,-3],[1,-1],[2,-3],[2,-4],[2,-5],[0,-3],[-2,-1],[-5,3],[-3,-1],[-1,-4],[-7,-6],[-3,-6],[-1,-6],[-1,-2],[-2,4],[0,6],[-1,5],[-1,2]],[[85637,70984],[0,-2],[0,-3],[-3,-6],[-1,-1],[-2,0],[-2,1],[-3,-1],[-3,-3],[-1,-2],[-2,-1],[0,3],[1,3],[0,4],[-1,2],[-2,0],[-1,2],[0,3],[1,2],[0,4],[1,2],[2,0],[9,-8],[0,-4],[1,0],[6,5]],[[85662,71091],[3,2],[4,1],[5,1],[2,-5],[1,-7],[-1,-5],[1,-3],[-2,-3],[-2,2],[-1,-2],[0,-1],[2,-1],[2,-3],[-1,-4],[-3,-6],[-4,0],[-2,4],[-1,5],[-3,0],[1,4],[-1,4],[-4,1],[-1,2],[3,3],[0,5],[-2,4],[-5,3],[-4,-2],[-1,0],[-1,4],[2,4],[3,2],[5,-3],[3,-5],[2,-1]],[[85621,71100],[5,-8],[1,-5],[-1,-3],[-3,0],[-1,-1],[0,-4],[-1,-2],[-3,1],[-1,2],[-3,3],[-2,5],[0,3],[2,6],[4,5],[3,-2]],[[85094,71117],[5,-4],[1,-12],[-6,-9],[-3,2],[2,4],[1,3],[-1,2],[-8,8],[-1,1],[-8,-2],[-4,-4],[-4,-1],[-3,2],[-2,4],[2,3],[4,1],[6,3],[1,2],[1,2],[0,3],[3,2],[2,3],[0,5],[-2,5],[-1,6],[3,2],[5,-2],[5,-4],[3,-6],[0,-4],[-3,0],[-4,-5],[0,-3],[0,-3],[0,-3],[2,-1],[4,0]],[[85064,71225],[1,3],[-2,1],[-7,2],[-2,2],[-2,1],[-2,0],[-1,2],[-1,2],[-2,3],[-3,12],[2,5],[3,2],[4,-2],[2,-3],[3,1],[2,3],[2,-2],[1,-3],[1,1],[2,0],[0,-3],[-2,-4],[-2,0],[-1,-2],[0,-3],[3,-6],[2,-2],[3,0],[2,-4],[1,-6],[1,-3],[1,-5],[-1,-5],[-1,-2],[-1,2],[-3,1],[-2,3],[-1,4],[0,5]],[[86627,72526],[1,0],[-1,-1],[0,1]],[[85185,72872],[-1,0],[-3,-8],[-1,-9],[-2,-1],[-6,-6],[-8,-8],[-5,2],[-39,42],[-2,3],[-7,20],[-1,3],[-6,-2],[-5,-3],[-22,-19],[-6,-4],[-6,-1],[-10,1],[-6,-3],[-6,-6],[-2,-4],[-1,-2],[1,-3],[1,-9],[2,-12],[1,-6],[0,-8],[-1,-9],[-1,-4],[-13,4],[-4,24],[-3,12],[-4,-1],[-2,2],[-2,13],[0,27],[-9,-10],[-3,1],[-2,11],[-2,7],[-4,8],[-4,6],[-3,2],[-4,-6],[1,-8],[4,-6],[3,-3],[0,-6],[3,-16],[0,-8],[-2,4],[-3,3],[-3,3],[-3,2],[-3,1],[-2,-1],[-2,1],[-2,3],[-5,9],[-14,36],[-1,6],[-2,4],[-6,3],[-2,2],[-1,4],[0,7],[1,11],[-2,3],[-4,0],[-3,2],[-5,5],[-2,1],[-12,1],[-5,2],[-11,9],[-7,3],[-7,0],[-5,-4],[0,-10],[5,-10],[7,-8],[5,-3],[10,3],[3,-4],[-2,-11],[3,2],[3,1],[2,0],[3,-3],[-3,-8],[-3,-8],[6,0],[2,1],[2,3],[2,-4],[-3,-6],[-4,-5],[-4,-3],[-4,-2],[-5,0],[-3,4],[-3,6],[-4,6],[-1,-14],[2,-14],[1,-13],[-5,-12],[5,-7],[1,-1],[-1,-6],[-2,-2],[-5,0],[-1,-2],[0,-4],[2,-6],[1,-9],[0,-5],[-2,-2],[-3,0],[-3,1],[-2,2],[-3,4],[1,2],[1,0],[0,1],[0,2],[-3,3],[-3,0],[-2,-3],[-1,-7],[-2,0],[-4,1],[-2,5],[2,9],[-7,-10],[-3,-15],[-5,-13],[-10,-7],[-9,-1],[-6,-1],[-2,-4],[-1,-10],[-3,-8],[-4,-2],[-4,6],[4,31],[4,13],[8,-4],[15,12],[-4,4],[-10,-3],[-5,4],[4,8],[6,8],[6,6],[6,2],[14,-6],[5,3],[1,15],[-5,-3],[-3,1],[-3,4],[-3,6],[9,16],[0,6],[-7,3],[-6,3],[-2,6],[-3,4],[-6,-5],[1,-2],[1,-4],[0,-2],[-7,0],[-3,-1],[-3,-3],[5,-4],[7,-7],[5,-8],[0,-10],[-5,8],[-8,5],[-7,2],[-7,-2],[2,-5],[1,-3],[3,-3],[2,-2],[-9,-12],[-5,-6],[-5,-2],[0,1],[0,3],[-1,2],[-1,2],[-17,0],[3,9],[12,13],[4,11],[-2,10],[-12,11],[1,11],[-6,-2],[-3,-8],[-3,-11],[-3,-10],[-4,-5],[-5,-3],[-5,0],[-16,5],[-3,2],[-7,10],[-3,2],[-6,1],[-5,3],[-2,8],[2,12],[-7,-7],[-2,-1],[1,10],[2,6],[4,3],[5,1],[4,2],[7,9],[3,1],[4,-2],[8,-8],[5,-2],[4,1],[4,1],[3,4],[3,6],[-2,5],[-3,-4],[-3,-1],[-4,2],[-5,9],[-2,1],[-1,1],[-1,8],[-1,11],[3,5],[11,0],[12,4],[4,-2],[1,-5],[0,-6],[2,-3],[6,-1],[2,20],[5,5],[-2,9],[-5,3],[-11,0],[-5,2],[-9,5],[-5,2],[-4,-2],[-14,-11],[-13,-4],[-4,-4],[-21,21],[-9,16],[-5,4],[-3,-11],[-3,-4],[-7,-3],[-13,-2],[-32,10],[-3,6],[2,7],[6,5],[14,1],[5,5],[2,12],[2,2],[12,4],[2,5],[4,14],[3,5],[7,2],[4,-5],[7,-19],[3,2],[17,20],[-7,5],[-14,-4],[-8,10],[-4,7],[-1,5],[0,10],[3,37],[1,6],[12,32],[2,7],[4,18],[3,6],[2,1],[2,0],[0,-5],[0,-8],[3,6],[5,13],[4,15],[1,10],[-2,6],[-5,6],[-1,6],[1,7],[1,5],[-1,5],[-4,6],[1,4],[4,1],[5,-6],[3,4],[3,1],[1,-6],[5,-8],[6,10],[6,5],[7,-8],[2,7],[0,11],[0,9],[-3,5],[-2,7],[0,7],[2,5],[4,-2],[3,-10],[2,-8],[6,2],[1,4],[-1,9],[0,8],[3,-2],[1,-6],[3,-3],[5,2],[4,1],[6,7],[3,1],[3,-4],[6,-4],[3,5],[2,2],[3,6],[4,5],[7,4],[8,0],[2,-1],[7,-3],[3,-1],[1,2],[0,4],[2,5],[3,2],[12,-13],[2,-5],[0,-12],[2,-3],[3,1],[2,6],[1,6],[1,3],[3,-1],[2,-4],[2,-5],[1,-4],[3,-8],[7,-6],[8,-3],[5,3],[-2,4],[-4,9],[-1,3],[-3,2],[-6,0],[-3,2],[-13,27],[-4,6],[-4,1],[-6,0],[-4,3],[-1,4],[-7,22],[0,2],[0,1],[-3,-1],[-1,-2],[-1,-5],[-2,-5],[-3,0],[2,-3],[2,-3],[2,-5],[-4,-4],[-9,-7],[-4,2],[-3,8],[-2,0],[-1,-8],[-3,-2],[-7,2],[-1,2],[0,3],[-2,3],[-1,0],[-1,-4],[0,-4],[2,-3],[1,-2],[0,-3],[-4,-3],[-4,0],[-5,3],[-3,6],[-2,6],[1,5],[6,11],[-2,2],[-2,2],[1,6],[-1,7],[-4,6],[-4,1],[1,-14],[-3,-19],[-8,-1],[-4,8],[-1,7],[-4,3],[-3,5],[-3,16],[2,10],[1,10],[1,22],[1,10],[3,14],[2,14],[5,11],[3,10],[0,7],[3,9],[6,17],[5,11],[3,10],[3,9],[5,0],[7,-1],[5,2],[-14,4],[1,5],[1,4],[0,4],[-1,3],[0,4],[0,5],[1,4],[1,3],[0,2],[-2,3],[3,6],[3,2],[7,0],[3,2],[-1,4],[-2,6],[-1,5],[4,11],[6,5],[6,-1],[7,-3],[-2,9],[-3,4],[0,6],[10,32],[4,6],[-4,1],[-4,5],[-1,8],[2,10],[-2,2],[-2,6],[3,-2],[1,0],[1,-2],[6,5],[3,5],[1,6],[-6,0],[-17,4],[-5,4],[0,9],[7,16],[-3,0],[-3,0],[-3,-2],[-2,-2],[0,15],[4,9],[6,7],[5,9],[1,7],[1,8],[2,7],[8,5],[2,6],[1,8],[-2,8],[-4,-5],[-29,-25],[-6,-4],[-3,-2],[-2,-1],[-3,3],[-7,14],[-1,2],[-3,5],[-5,3],[-2,3],[4,11],[-19,0],[1,-3],[2,-10],[1,-3],[-12,0],[-3,1],[-1,3],[0,4],[-1,4],[-2,5],[0,4],[-2,2],[-3,1],[-4,-2],[-3,0],[-3,2],[-3,2],[-6,10],[-1,2],[-1,4],[-2,1],[-2,0],[-2,1],[-8,14],[-3,1],[-3,-10],[-3,4],[-4,2],[-3,3],[-2,18],[-4,7],[-4,6],[-5,4],[-4,3],[-6,1],[-2,2],[-1,5],[-8,1],[-3,4],[-1,13],[-3,8],[-2,-7],[0,-6],[1,-5],[2,-5],[1,-6],[-1,-7],[0,-8],[-2,-5],[0,-6],[4,-2],[-1,-9],[-4,0],[-3,-4],[2,-6],[2,-6],[-2,-2],[-5,3],[-6,-5],[-6,-10],[-7,-5],[-2,-11],[-1,-2],[-4,4],[0,3],[0,1],[1,4],[-2,1],[-1,1],[0,2],[-2,6],[5,10],[1,11],[4,4],[1,8],[-1,8],[-2,0],[-2,-2],[-2,0],[-1,2],[-2,7],[-1,3],[-3,3],[-2,1],[-2,2],[-1,4],[1,6],[1,9],[0,6],[-1,3],[-5,4],[-1,5],[1,12],[-1,4],[-2,2],[-10,1],[-24,7],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,2],[-2,5],[0,1],[-1,2],[-2,11],[0,4],[-2,1],[-8,2],[-3,13],[-2,4],[-2,3],[-2,3],[-2,2],[3,7],[4,3],[3,2],[3,4],[2,8],[2,29],[6,15],[8,-2],[9,-6],[9,5],[-5,4],[-13,2],[-6,2],[-6,7],[-2,10],[-1,10],[-3,9]],[[86258,75657],[3,-12],[1,-2],[0,-7],[1,-3],[1,-2],[1,-2],[5,-22],[3,-8],[6,-7],[6,-4],[5,-8],[3,-10],[1,-15],[0,-15],[0,-7],[3,-6],[8,-10]],[[86305,75517],[-2,-3],[-7,-4],[-10,-5],[-4,-1],[-4,-5],[-2,-1],[0,11],[0,7],[0,3],[-4,6],[-4,4],[-8,2],[-6,6],[-2,5],[-8,2],[-4,-3],[1,-8],[-4,-6],[-5,-1],[-2,5],[-3,4],[-4,0],[0,-5],[0,-5],[-3,-5],[-3,-5],[1,-8],[0,-4],[1,-4],[2,0],[2,-2],[0,-7],[-1,-4],[-2,1],[-5,8],[-3,-1],[-2,-7],[3,-7],[-3,-2],[-2,-7],[-5,-2],[-1,-13],[-3,-4],[-3,-1],[0,9],[2,12],[-2,11],[-4,0],[-12,-19],[-6,-13],[-4,-5],[-4,-1],[1,-8],[-1,-34],[-2,-1],[-2,2],[-3,-3],[-4,-8],[1,-1],[1,-4],[-2,-2],[-3,1],[-5,6],[-3,3],[-8,0],[-5,-7],[-2,-11],[0,-5],[-4,0],[-1,-5],[-1,-4],[-3,-14],[0,-10],[-2,-2],[-4,13],[-3,-2],[0,-12],[-6,-5],[2,-2],[2,-3],[2,-7],[-3,-1],[-2,-3],[-3,-8],[1,1],[-1,-5],[-1,-7],[0,-3],[-2,-11],[-2,-4],[-3,1],[-2,6],[-7,4],[-4,-4],[-2,-13],[-2,-15],[0,-19],[-4,-20],[-4,-6],[-1,-10],[-2,-3],[-5,11],[-4,0],[-10,-11],[-4,-17],[-3,-20],[-3,-7],[-7,-6],[-7,-15],[-2,-19],[-4,-24],[-5,-16],[3,-14],[-1,-10],[-1,-9],[2,-17],[6,-13],[5,-9],[4,-5],[6,1],[2,-9],[4,-8],[3,-4],[2,0],[4,1],[2,-1],[2,-6],[0,-2],[-1,-2],[-1,-8],[-1,-2],[-2,-13],[0,-3],[-5,-6],[-3,-13],[-11,-75],[-2,-26],[5,-22],[-2,-8],[-1,-9],[1,-20],[2,-26],[1,-6],[5,-10],[4,-4],[-3,-4],[-1,-13],[1,-4],[-6,-11],[1,-12],[-3,-14],[-2,-7],[-3,0],[-3,6],[-3,-2],[-6,-2],[-6,2],[-5,-2],[-4,1],[-3,-1],[-8,1],[-5,-7],[0,-11],[-6,-2],[-4,-7],[-3,-2],[-8,1],[-14,-7],[-10,-12],[-11,-9],[-3,-7],[-3,-9],[-5,-19],[-2,-8],[-2,2],[-3,4],[-2,9],[-2,6],[-5,0],[-6,-2],[-4,-5],[-2,-7],[-1,-6],[0,-3],[0,-4],[-1,-4],[-1,-3],[-1,-8],[-1,-3],[-1,-6],[-1,-4],[-2,-4],[-1,-3],[0,-6],[-1,-15],[-3,-2],[-1,-5],[-2,-6],[-10,-21],[-10,-23],[-13,1],[-15,-8],[-21,-37],[-11,-16],[-9,-2],[-4,-8],[-9,-4],[-5,-1],[-3,-6],[-9,2],[-9,-5],[-5,-12],[-4,0],[0,6],[-5,-4],[-5,-10],[-1,-15],[3,-3],[8,-5],[1,-6],[2,-4],[-1,-9],[0,-15],[-3,-2],[-3,-4],[-2,-4],[-2,-2],[-2,0],[-3,3],[-6,1],[-3,-4],[-9,-8],[-2,-9],[-3,-5],[-5,-5],[-8,0],[-4,-6],[-5,-9],[-3,-3],[-7,-5],[-5,2],[-8,-1],[-7,-18],[-3,-23],[-7,3],[-6,19],[-5,7],[-8,-6],[-2,-6],[2,-16],[-3,-1],[-6,1],[-3,0],[-3,-2],[-5,-5],[-2,-1],[-3,1],[0,3],[-2,2],[-36,11],[-2,-3],[0,-8],[-1,-4],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-5,-14],[-2,-4],[-3,-1],[-6,7],[-5,-14],[0,-10],[-2,-25],[-2,-5],[-26,-5],[4,-5],[-1,-6],[-8,-7],[-10,2],[-9,-6],[-4,-18],[-5,-6],[-4,8],[-7,6],[-4,-12],[-4,-3],[-5,-5],[-4,-8],[-3,-13],[-8,-9],[-2,-5],[-1,-4],[-2,-9],[-1,-5],[0,-5],[2,-9],[0,-14],[1,-6],[2,-3],[3,1],[6,-6],[5,-11],[2,-14],[-11,-25],[-5,-25],[5,-39],[7,-59],[0,-17],[-2,-6],[-3,-2],[-3,2],[-3,6],[0,8],[1,9],[5,16],[-10,22],[-1,8],[-3,7],[-3,2],[-4,-4],[-8,-13],[0,-2],[-2,-5],[-2,-3],[-13,-8],[0,-4],[3,-3],[7,-3],[3,-2],[4,4],[4,2],[4,-2],[1,-10],[-1,-5],[-9,-3],[-3,-2],[-1,3],[-2,3],[-2,1],[-2,1],[-2,-2],[0,-3],[1,-4],[1,-3],[-4,-16],[-2,-17],[-2,-17],[3,-10],[3,-12],[4,-5],[4,-3],[5,-11],[4,-3],[5,2],[1,5],[-1,6],[0,4],[5,0],[6,-22],[6,-6],[21,3],[6,-3],[4,-5],[2,-5],[3,-5],[4,-2],[19,0],[4,-1],[3,-4],[6,-19],[9,-20],[2,-7],[1,-8],[4,-10],[10,-16],[1,-8],[1,-2],[3,4],[1,2],[2,-2],[1,-4],[1,-9],[1,-5],[2,-3],[3,-2],[5,-5],[9,-25],[6,-10],[21,-9],[33,-68],[4,3],[13,11],[3,2],[9,-22],[2,-4],[5,-5],[2,-4],[4,-10],[0,-2],[0,-9],[0,-11],[1,-10]],[[84701,73924],[-1,-4],[-4,-2],[3,-13],[4,-13],[-6,-6],[-8,-8],[-6,-11],[-5,-2],[-7,-6],[5,16],[4,-3],[2,7],[-4,6],[0,3],[4,0],[0,3],[0,3],[-1,2],[0,10],[4,4],[0,9],[4,5],[-1,5],[5,1],[8,-6]],[[84689,73287],[5,-14],[1,-6],[-12,5],[-6,4],[-5,7],[-6,-8],[-3,5],[1,10],[11,11],[3,2],[2,-6],[4,-2],[3,-4],[2,-4]],[[84813,72836],[2,1],[-7,-16],[-4,-8],[-8,-8],[-2,-4],[-4,-5],[-6,-2],[-1,4],[8,17],[4,3],[3,-2],[0,4],[1,5],[1,0],[1,1],[1,2],[1,1],[2,0],[8,7]],[[84762,72847],[-1,5],[0,3],[1,2],[6,6],[4,4],[2,0],[1,-2],[0,-3],[-1,-1],[-1,-1],[-4,-6],[-4,-7],[-3,0]],[[84730,72877],[3,-1],[1,-6],[-1,-4],[-1,0],[-1,0],[-3,-6],[-2,-1],[-3,0],[-2,1],[0,3],[1,2],[1,2],[2,1],[2,-1],[1,-1],[1,1],[1,2],[0,1],[-1,3],[1,4]],[[84635,73878],[1,5],[3,1],[1,-4],[0,-6],[-1,-7],[-2,-3],[-3,0],[-1,3],[1,5],[-1,3],[2,3]],[[84634,73889],[-3,-4],[-4,0],[-4,5],[-12,-5],[-1,-1],[-1,1],[1,4],[2,2],[2,3],[5,7],[1,-1],[4,1],[7,3],[5,-1],[2,-4],[-1,-5],[-3,-5]],[[84609,73821],[-1,5],[0,5],[3,1],[3,5],[0,-5],[0,-1],[1,-2],[1,-7],[-4,-2],[-1,-1],[-2,2]],[[84503,74044],[2,2],[-1,3],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-2],[-1,1],[-1,1],[-2,0],[0,3],[1,2],[0,2]],[[45274,63155],[0,15],[11,87],[2,26],[-1,23],[0,13],[5,16],[1,7],[0,7],[0,7],[-1,3],[-3,7],[-1,3],[1,8],[1,18],[6,24],[2,25],[2,14],[29,118],[10,21],[2,5],[0,4],[3,14],[2,3],[5,6],[1,4],[5,20],[3,9],[6,5],[2,3],[2,3],[3,0],[2,-2],[3,-3],[3,-7],[30,24],[6,9],[5,13],[4,15],[10,68],[1,11],[3,6],[13,28],[4,9],[3,38],[1,50],[2,13],[3,21],[2,10],[6,15],[0,6],[-1,5],[-1,4],[0,7],[1,4],[2,11],[1,3],[1,2],[6,2],[7,3],[9,16],[9,21],[3,12],[2,12],[1,12],[0,15],[-2,13],[-6,3],[-11,-6],[2,11],[5,18],[2,7],[13,24],[2,4],[20,95],[3,8],[3,3],[4,7],[12,42],[4,39],[3,11],[4,12],[10,35],[14,31],[1,3],[4,7],[2,4],[2,6],[1,12],[1,7],[4,13],[5,11],[3,11],[2,15],[0,26],[-1,11],[-3,14],[1,3],[1,5],[-4,-5],[0,-7],[1,-8],[-1,-9],[-2,-4],[-7,-10],[-3,-2],[-3,0],[-3,1],[-2,-1],[-5,-8],[-3,-7],[-2,-7],[-4,-20],[-4,-13],[0,-4],[-1,-7],[-3,-12],[0,-5],[-3,-7],[-12,-23],[-5,6],[2,10],[6,14],[2,9],[10,37],[17,47],[2,9],[4,11],[4,9],[21,34],[9,7],[11,14],[4,7],[9,2],[8,9],[5,13],[5,13],[11,26],[8,23],[11,15],[4,8],[2,11],[2,7],[26,41],[15,32],[19,57],[7,16],[9,15],[5,7],[6,6],[6,3],[12,4],[5,7],[10,14],[0,14],[0,3],[4,14],[6,16],[7,10],[7,8],[5,8],[4,12],[3,38],[6,35],[3,28],[3,17],[1,8],[0,10],[-1,9],[-1,8],[2,10],[-2,4],[2,8],[1,9],[1,10],[0,10],[0,9],[-3,13],[-1,8],[1,52],[-2,15],[8,69],[2,9],[8,60],[13,34],[4,7],[2,5],[8,39],[2,26],[1,4],[2,11],[2,18],[11,55],[21,57],[7,26],[2,8],[1,12],[4,26],[2,8],[-1,10],[3,33],[-1,9],[-2,18],[1,6],[2,6],[3,18],[1,6],[16,39],[2,4],[14,6],[15,15],[23,44],[4,10],[2,10],[4,9],[6,5],[31,6],[5,5],[29,29],[50,69],[34,42],[17,36],[16,65],[6,31],[5,48],[8,35],[9,74],[5,23],[23,65],[0,3],[-2,5],[0,4],[4,4],[15,67],[9,61],[0,12],[2,11],[5,22],[1,11],[0,3],[2,10],[3,6],[8,8],[9,14],[10,6],[5,10],[12,37],[6,43],[3,12],[5,8],[5,6],[26,19],[50,17],[41,-2],[49,31],[76,24],[3,5],[6,12],[2,1],[5,3],[62,51],[82,69],[9,13],[7,16],[11,35],[4,9],[5,8],[4,10],[2,12],[2,9],[17,21],[13,30],[2,9],[12,14],[2,4],[2,8],[2,4],[9,14],[1,3],[6,18],[7,15],[5,6],[79,76],[19,24],[23,22],[10,13],[34,60],[29,82],[8,17],[5,8],[10,7],[5,9],[6,20],[7,17],[4,10],[1,11],[1,5],[10,14],[2,3],[2,13],[12,32],[1,7],[1,12],[2,13],[2,12],[3,9],[13,23],[2,7],[2,10],[12,29],[36,73],[28,93],[18,77],[2,22],[5,76],[5,39],[1,12],[-1,16],[-3,7],[-5,6],[-4,9],[-4,10],[-7,30],[-2,20],[-2,2],[-3,1],[-3,2],[-3,5],[-5,16],[-20,24],[-6,1],[-6,3],[-4,8],[0,23],[6,22],[7,21],[6,19],[1,14],[1,7],[-1,6],[-2,5],[0,4],[0,4],[1,7],[-2,116],[-1,11],[-5,21],[4,14],[7,84],[0,34],[-1,14],[-3,7],[-3,6],[-4,8],[9,20],[6,20],[7,36],[3,9],[5,8],[2,4],[1,11],[4,7],[2,7],[4,10],[1,5],[4,48],[2,9],[26,51],[11,28],[2,4],[4,6],[2,4],[2,6],[3,10],[1,5],[33,61],[3,12],[2,9],[4,24],[0,9],[1,8],[10,23],[4,16],[3,18],[1,61],[-1,3],[-5,5],[-2,4],[1,13],[2,9],[7,27],[2,12],[1,11],[-2,10],[-3,6],[-2,8],[-2,10],[0,10],[5,18],[41,63],[32,68],[27,34],[9,16],[32,76],[35,69],[2,7],[0,8],[0,13],[2,7],[23,49],[3,2],[2,-1],[3,-5],[2,-2],[7,1],[5,2],[10,10],[10,14],[16,36],[10,15],[12,8],[38,16],[26,21],[14,11],[13,6],[6,5],[6,14],[7,5],[19,10],[11,11],[5,2],[5,5],[5,10],[5,8],[5,-3],[3,4],[3,-1],[3,-2],[3,-1],[2,2],[5,5],[8,3],[6,4],[5,6],[4,5],[9,21],[8,7],[8,17],[6,4],[-2,-5],[5,-3],[6,3],[3,4],[21,24],[10,17],[10,10],[12,7],[10,3],[4,3],[9,14],[10,6],[29,42],[29,56],[25,73],[18,70],[31,81],[3,10],[4,24],[7,18],[60,223],[24,144],[50,223],[2,11],[0,15],[1,8],[6,24],[6,32],[1,5],[1,5],[3,9],[1,6],[2,28],[2,14],[2,9],[5,9],[10,3],[26,-6],[3,1],[7,13],[4,4],[5,5],[5,2],[3,-3],[5,4],[7,0],[7,-2],[4,-6],[17,17],[4,7],[10,20],[5,8],[6,5],[2,0],[2,-2],[3,-4],[3,1],[1,4],[0,5],[1,1],[2,-1]],[[48500,71745],[2,-14],[4,-12],[4,-10],[6,-10]],[[48516,71699],[-1,-9],[1,-14],[4,-31],[1,-25],[1,-7],[2,-6],[2,-4],[2,-1],[4,2],[2,-1],[0,-3],[0,-9],[0,-4],[4,-32],[3,-12],[6,-9],[12,-15],[10,-16],[23,-59],[4,-5],[7,-3],[5,-2],[6,-7],[9,-15],[8,-19],[5,-10],[12,-7],[15,-25],[11,-11],[40,-21],[37,-15],[33,-17],[8,-1],[6,3],[16,18],[38,11],[23,19],[24,8],[12,10],[3,-7],[-1,-2],[-4,-2],[-1,-2],[1,-4],[2,-4],[4,-10]],[[48915,71324],[4,-3],[6,-1],[8,-1],[5,1],[9,1],[7,6],[2,10],[3,16],[5,11],[8,5],[7,-1],[5,-7],[12,-19],[6,-7],[21,-5],[7,-8],[4,0],[3,1],[3,0],[3,-2],[6,-5],[2,-2],[15,-2],[11,5],[35,21],[6,7],[12,23],[3,3],[3,0],[2,-2],[3,-2],[4,1],[9,15],[10,47],[8,19],[-1,6],[1,5],[3,2],[3,-4],[1,-4],[-1,-11],[1,-7],[-3,-18],[4,-22],[1,-3],[0,-1]],[[49181,71392],[-6,-9],[1,-16],[6,-11],[8,5]],[[49190,71361],[4,-10],[-2,-5],[-1,-9],[-1,-10],[1,-19],[2,-8],[2,-7],[4,-9],[7,-9],[10,-6],[20,-3],[-12,17],[-21,43],[-4,12],[1,5],[4,-5],[13,-26],[2,-6],[14,-24],[11,-12],[15,-9],[29,-7],[12,2],[7,3],[4,5],[6,12],[6,7],[5,3],[27,-18],[6,-2],[6,-4],[8,-7],[7,-5]],[[49382,71250],[1,-23],[2,-16],[5,-12],[9,-5],[10,-13],[9,-15],[9,-10],[12,-3],[4,-4],[1,-7],[0,-8],[2,-9],[4,-8],[14,-16],[10,-15],[29,-33],[5,-9],[-1,-4],[-4,-5],[-6,-27],[-15,-40],[-2,-10],[33,-60],[10,-6],[3,-3],[-29,-63],[10,-23],[7,-26],[20,-109],[1,-9],[1,-7],[-1,-12],[-13,-95],[-1,-28],[3,-29],[3,-18],[-1,-6],[-2,-9],[-3,-6],[-3,-5],[-2,-6],[-2,-9],[2,-10],[4,-5],[10,-6],[5,-6],[3,-7],[12,-54],[2,-19],[-4,-17],[-4,-11],[-5,-33],[-4,-15],[-3,-15],[0,-58],[2,-19],[15,-25],[5,-17],[3,-18],[6,-15],[7,-12],[8,-10],[5,-9],[2,-12],[0,-14],[-1,-13],[-1,-6],[-1,-5],[-2,-5],[-2,-4],[-11,-16],[37,-113],[9,-14],[18,-12],[78,-107],[4,-14],[-16,-32],[-9,-13],[-11,-8],[-11,-3],[-5,-4],[-4,-11],[-3,-10],[-4,-21],[-4,-55],[-1,-7],[0,-5],[0,-5],[-2,-6],[-2,-3],[-4,-7],[-1,-3],[1,-10],[4,0],[11,7],[5,0],[6,-3],[4,-7],[2,-12],[-6,-21],[-11,-5],[-21,2],[-2,0],[-7,0],[-10,1],[-14,2],[-17,1],[-19,2],[-21,1],[-23,2],[-24,2],[-24,2],[-25,3],[-24,2],[-23,2],[-22,1],[-20,2],[-17,2],[-38,3],[-50,-25],[-52,-8],[-16,-17],[19,-92],[12,-58],[-49,-13],[-60,-33],[-81,-26],[-10,-2],[-12,5],[-19,-18],[-4,-153],[-20,-3],[-16,-20],[-3,-8],[-1,-11],[1,-45],[0,-13],[-6,-18],[-2,-12],[1,-10],[3,-5],[5,-1],[5,4],[8,14],[4,4],[5,-2],[4,-8],[8,-22],[5,-9],[10,-9],[3,-5],[2,-11],[2,-11],[0,-11],[15,-45],[-15,-45],[-14,-25],[2,-37],[2,-38],[-53,-49],[-46,-21],[-43,-4],[-33,-17],[-27,-29],[-31,-74],[-39,-58],[-41,-33],[-29,-29],[-23,-33],[-31,-50],[-29,-37],[-27,-54],[-20,-70],[-25,-75],[-29,-70],[-27,-17],[-24,17],[-9,54],[-35,-9],[-33,-12],[-35,0],[-41,0],[-39,-8],[-41,-21],[-38,-8],[-24,-42],[-48,37],[-31,5],[-22,-5],[-31,-24],[-25,-50],[-32,3],[-5,-4],[-7,-1],[-6,0],[-12,4],[-13,2],[-9,-8],[-17,-33],[-5,-6],[-13,-13],[-17,-30],[-29,-37],[-26,-45],[-9,-12],[-31,-26],[-19,-24],[-19,-33],[-4,-5],[-10,-9],[-4,-6],[-10,-32],[-3,-6],[-13,-13],[-12,-19],[-36,-36],[-5,-9],[-3,-11],[-1,-16],[0,-27],[0,-36],[0,-35],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36]],[[47588,66851],[-20,0],[-18,0],[0,-1],[1,-27],[9,-49],[2,-42],[-4,-26],[-3,-33],[1,-31],[6,-34],[6,-36],[0,-23],[-11,-18],[-26,-10],[-32,-8],[-23,0],[-34,6],[-22,-2],[-18,0],[-17,-5],[-21,-23],[-22,-35],[-29,-48],[-17,-29],[-23,-7],[-23,0],[-23,24],[-14,12],[-10,-1],[-15,-17],[-19,-11],[-17,0],[-29,24],[-34,35],[-20,18],[-29,5],[-28,12],[-21,-6],[-25,0],[-35,-23],[-29,-18],[-31,-18],[-36,-16],[9,-53],[12,-29],[0,-36],[-6,-30],[-17,-29],[-19,-38],[-12,-30],[-11,-41],[-9,-23],[-15,-39],[-13,-49],[-4,-30],[-5,-34],[-10,-11],[-35,-9],[-23,-12],[-19,-12],[-7,-20],[-1,-3],[-6,-42],[0,-30],[-6,-23],[-8,-59],[-11,-54],[-8,-71],[-9,-59],[-11,-95],[-11,-89],[-14,-83],[-11,-53],[-8,-30],[-20,-35],[-16,-24],[-20,-30],[-22,-29],[-31,-35],[-25,-30],[-10,-14],[-12,-16],[-19,-41],[-17,-60],[-11,-47],[-19,-77],[-14,-42],[-9,-23],[-22,-23],[-25,-18],[-28,-24],[-22,-24],[-30,-23],[-20,-24],[-14,-35],[-11,-42],[-14,-60],[-11,-64],[-5,-42],[-17,-142],[-6,-83],[-5,-53],[-9,-66],[-5,-100],[0,-83],[-6,-47],[-3,-36],[-13,-41],[-11,-30],[-20,-41],[-17,-24],[-5,-24],[-17,-29],[-16,-48],[-14,-29],[2,-24],[3,-42],[-8,-41],[-8,-48],[-23,-59],[-25,-29],[-36,-6],[-50,0],[-39,6],[-47,0],[-42,11],[-38,13],[-48,5],[-33,0],[-42,-11],[-108,0],[-42,-7],[-61,-23],[-17,-6]],[[47588,66851],[0,-56],[0,-55],[0,-56],[0,-56]],[[47588,66628],[0,-8],[0,-23],[0,-36],[0,-46],[0,-55],[0,-61],[0,-66],[0,-68],[0,-68],[0,-65],[0,-62],[0,-55],[0,-46],[0,-36],[0,-23],[0,-8],[0,-27],[-2,-8],[-5,-3],[-24,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-27,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-45],[0,-44],[0,-48],[-1,-20],[-4,-10],[-28,-15],[-61,-57],[-10,-6],[-47,-13],[-17,-12],[-17,-24],[-30,-41],[-35,-47],[-28,-38],[-5,-13],[-24,-66],[-9,-38],[-4,-40],[3,-38],[14,-76],[4,-38],[4,-148],[5,-148],[8,-245],[1,-51],[3,-96],[-40,0],[-12,0],[-32,0],[-51,0],[-65,0],[-78,0],[-77,0],[-9,0],[-92,-1],[-96,0],[-95,0],[-92,0],[-87,0],[-77,0],[-66,0],[-50,0],[-33,0],[-11,0],[-32,0],[-3,-5],[-5,-51],[-5,-57],[-12,-68],[-2,-19],[-6,-53],[-1,-18],[7,-64]],[[45262,62768],[-4,15],[-9,27],[-1,15],[1,8],[3,14],[0,8],[0,29],[1,10],[5,30],[12,177],[2,21],[1,9],[1,24]],[[26765,56940],[6,-13],[7,-28],[5,-29],[-1,-19],[-4,11],[-7,38],[5,-48],[-1,-19],[-8,-14],[4,1],[3,5],[3,5],[4,5],[-2,-3],[0,-4],[0,-4],[2,-5],[1,7],[1,13],[1,8],[14,-79],[17,-83],[20,-70],[53,-147],[4,-6],[18,-46],[10,-23],[7,8],[3,-4],[7,-2],[1,-5],[1,-11],[1,-9],[2,-8],[3,-8],[13,-41],[4,-6],[16,-45],[12,-24],[7,4],[2,-9],[2,-24],[2,-11],[4,-7],[19,-14],[7,-1],[6,0],[6,-1],[6,-6],[7,-22],[4,-6],[1,0]],[[27063,56141],[3,-22],[-3,-1],[-4,5],[-4,2],[-2,-7],[-1,-23],[-2,-7],[-4,-1],[-5,2],[-5,3],[-2,2],[-3,7],[-4,15],[-3,6],[-2,-2],[-3,2],[-11,21],[-16,14],[-5,-2],[-6,-9],[-3,-9],[0,-6],[3,-12],[2,-17],[1,-3],[2,-1],[1,-2],[0,-5],[-4,-5],[-15,-4],[-5,-4],[-3,-8],[0,-12],[0,-49],[0,-71],[1,-97],[0,-6],[8,7],[3,0],[2,-3],[1,-4],[1,-5],[1,-4],[1,-2],[7,-5],[12,-20],[13,-9],[4,-6],[7,-25],[1,-6],[0,-1],[-4,-13],[-8,-10],[-29,-25],[-3,-5],[-3,-8],[2,-3],[2,-2],[0,-8],[-3,-7],[-8,-11],[-2,-5],[-1,-9],[2,-8],[2,-8],[9,-20],[4,-14],[4,-16],[2,-18],[2,-41],[-1,-21],[-3,-17],[-6,-16],[-7,-8],[-8,-5],[-8,-8],[-12,-25],[-13,-15],[-2,-5],[-1,-7],[3,-6],[8,-9],[1,-4],[3,-8],[1,-3],[2,0],[4,3],[2,-1],[5,-5],[2,-6],[1,-19],[15,-68],[-2,-27],[-1,-13]],[[26973,55228],[-4,6],[0,9],[2,10],[2,9],[-1,8],[-19,68],[-7,15],[-34,53],[-10,20],[8,21],[2,2],[1,6],[4,8],[1,9],[-1,9],[-9,24],[-2,7],[0,9],[2,3],[3,2],[5,6],[-4,2],[-8,-1],[-4,3],[-2,5],[-5,23],[1,3],[0,2],[1,4],[2,0],[2,-10],[1,-5],[0,-7],[2,-2],[8,7],[0,5],[-4,3],[-4,6],[-3,8],[-2,7],[-2,0],[-2,-7],[-5,-1],[-6,2],[-5,-2],[-2,8],[-3,8],[-4,4],[-4,-4],[-8,11],[-3,9],[2,12],[-2,1],[-2,-1],[1,10],[-4,5],[-6,2],[-4,4],[-2,-7],[-1,0],[-2,3],[-3,0],[-1,-3],[-1,-4],[-1,-4],[-4,-2],[-9,3],[-4,-3],[-1,-11],[2,3],[2,0],[10,-31],[1,-9],[6,-19],[2,-6],[3,-4],[11,-6],[4,-2],[4,-4],[3,-10],[4,-6],[3,4],[0,-14],[0,-6],[-2,-4],[0,-4],[4,-13],[2,-20],[-1,-22],[-3,-15],[-6,0],[-10,7],[-10,10],[-4,8],[2,0],[1,-2],[1,-1],[4,-1],[-6,5],[-2,3],[-2,4],[0,-8],[-16,15],[-6,1],[-17,-4],[-5,0],[-4,4],[-3,8],[-7,19],[-24,47],[-2,6],[-1,0],[-6,5],[-1,2],[-1,19],[8,27],[2,5],[4,6],[3,2],[2,-2],[1,-3],[2,4],[6,22],[2,4],[-3,9],[4,11],[8,9],[6,3],[0,4],[-6,1],[-3,0],[-2,-4],[-3,-7],[-3,-3],[-1,5],[1,10],[4,10],[7,7],[3,5],[1,7],[-1,6],[-4,4],[-3,6],[-1,10],[5,-6],[3,-2],[3,0],[-1,4],[-2,4],[-4,4],[-2,3],[-1,3],[-2,2],[-3,0],[4,5],[-1,3],[-2,2],[-1,2],[1,7],[2,4],[2,5],[3,5],[-8,41],[-1,5],[-5,10],[-2,-4],[-6,17],[-6,20],[-7,16],[-11,4],[1,16],[-6,13],[-9,9],[-6,3],[-22,44],[-21,21],[-4,6],[-26,22],[-2,0],[-2,-3],[-1,0],[-2,3],[-1,4],[-4,-3],[-2,4],[-2,5],[-5,2],[3,11],[-4,15],[-7,14],[-7,5],[0,-4],[2,-1],[2,-1],[3,-6],[-7,3],[-11,14],[-8,3],[-7,1],[-37,22],[-7,1],[-3,-1],[-4,-2],[-3,-2],[-4,1],[-3,6],[-2,7],[-1,6],[-4,2],[1,-3],[0,-2],[1,-4],[-5,8],[-10,14],[-2,9],[-1,8],[-2,4],[-3,2],[-3,4],[-1,6],[0,7],[-1,4],[-4,-1],[1,7],[0,6],[-1,6],[0,6],[2,6],[4,10],[2,10],[2,5],[2,7],[1,8],[-1,8],[-2,6],[-4,9],[-12,35],[-3,5],[-4,4],[0,9],[4,14],[-7,12],[-1,6],[2,8],[-8,5],[-25,-5],[0,5],[3,2],[5,1],[9,0],[0,4],[-8,1],[-8,3],[-7,5],[-7,8],[-8,15],[-2,3],[-2,1],[-3,5],[-3,5],[2,3],[-5,5],[-11,23],[-6,6],[-3,5],[-2,2],[-1,-2],[-2,-2],[-1,0],[-3,4],[2,6],[1,4],[-2,2],[-1,1],[-3,7],[-5,-4],[-19,0],[-5,3],[-5,6],[-7,15],[0,4],[2,11],[-5,12],[-12,18],[2,-12],[8,-12],[2,-15],[1,-27],[1,-16],[4,-11],[-4,-5],[0,-9],[4,-7],[8,-7],[3,-6],[4,-15],[2,0],[2,2],[1,-2],[0,-4],[-2,0],[-3,0],[-2,2],[-2,2],[0,-4],[5,-10],[6,-12],[17,-14],[2,-3],[2,2],[5,-4],[11,-13],[5,-3],[5,0],[5,4],[3,-5],[7,-10],[3,-5],[0,-4],[-5,-3],[0,-9],[3,-9],[4,-8],[-2,-1],[-2,-4],[-4,-7],[4,-4],[5,-1],[10,1],[0,-4],[-4,-6],[-5,-4],[-4,-6],[-2,-10],[-1,-3],[-6,-8],[-2,-4],[-1,-11],[-1,-5],[-9,9],[-4,1],[-2,-8],[1,-4],[4,-12],[-1,-2],[-9,-9],[-1,-1],[-1,-3],[-7,-7],[-1,-5],[-6,-41],[-3,-10],[-3,-9],[-2,0],[-8,33],[-23,67],[-2,7],[-1,3],[-2,3],[-7,7],[-1,4],[0,6],[0,4],[-7,15],[-9,11],[-30,23],[-2,-2],[-4,-5],[-2,-2],[-3,1],[-3,6],[-4,2],[-1,0],[-1,1],[0,2],[-1,2],[-2,2],[-2,-1],[-1,-2],[0,-1],[-16,11],[-7,2],[-2,3],[-2,3],[-2,2],[-3,0],[-2,-3],[-2,0],[-2,7],[2,11],[-3,14],[-29,74],[-1,7],[-3,16],[-3,11],[-11,56],[-1,16],[-1,11],[-2,7],[4,8],[2,6],[-1,4],[-6,16],[-3,5],[2,6],[4,8],[4,10],[2,10],[5,-4],[2,6],[2,9],[6,10],[-2,10],[-4,11],[-3,7],[2,2],[0,1],[2,1],[0,4],[-4,0],[0,4],[3,1],[2,4],[2,11],[2,0],[4,-6],[6,5],[5,6],[4,-1],[2,0],[0,8],[1,4],[1,2],[2,2],[2,9],[1,0],[4,-1],[8,19],[0,5],[-2,3],[-4,6],[-11,-25],[0,2],[0,2],[0,1],[-2,0],[0,3],[3,8],[2,3],[3,2],[-2,4],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,4],[1,2],[3,2],[0,4],[-2,0],[0,4],[4,8],[1,20],[-1,39],[-4,10],[-10,9],[-9,3],[-4,-6],[-2,0],[-7,14],[-2,5],[1,-1],[2,1],[0,4],[-1,4],[-2,1],[-6,-1],[-2,0],[-8,6],[-7,8],[-7,7],[-10,3],[0,4],[6,3],[12,12],[6,1],[-1,4],[-1,2],[-1,1],[-2,1],[0,4],[13,2],[4,-2],[1,-4],[0,-6],[-1,-4],[1,-2],[1,-1],[4,-7],[1,0],[2,4],[0,4],[-3,7],[3,4],[6,2],[6,-1],[2,-2],[2,-5],[2,-1],[2,2],[1,3],[0,4],[-2,3],[0,5],[4,3],[2,6],[-1,8],[-3,7],[-2,3],[-4,4],[-2,3],[-3,5],[0,2],[2,0],[2,3],[4,8],[2,-2],[3,-6],[6,0],[3,7],[-1,8],[-3,9],[-3,5],[-2,2]],[[26194,57032],[6,23],[5,23],[8,22],[10,8],[8,-8],[7,-15],[9,-11],[28,-22],[38,-29],[10,-8],[40,-31],[45,-34],[6,-2],[7,5],[28,40],[21,28],[8,5],[5,-5],[11,-16],[5,-1],[6,0],[6,-4],[14,-13],[2,-1],[1,-1],[1,-1],[2,-2],[6,-17],[2,-4],[3,-3],[3,-2],[3,-1],[2,2],[15,21],[3,3],[2,-3],[1,-4],[0,-6],[0,-8],[2,-4],[3,-10],[1,-4],[3,-6],[13,-10],[3,-4],[2,-6],[6,-6],[5,-8],[1,-15],[-4,-4],[-1,-1],[-2,-5],[1,-3],[1,-3],[1,-2],[6,-10],[1,-4],[3,5],[5,-1],[2,0],[2,-1],[3,1],[6,-10],[3,-3],[3,5],[2,0],[3,-7],[7,9],[5,-2],[3,7],[4,1],[3,-4],[1,-10],[17,-28],[2,-2],[2,-1],[3,1],[4,6],[2,1],[7,-3],[1,2],[6,14],[19,14],[1,1],[18,9],[10,11],[1,16],[-3,21],[0,25],[0,3],[0,3],[2,3],[1,-1],[2,1],[2,-1]],[[26352,56450],[3,-1],[1,-3],[3,-1],[3,0],[0,-4],[-4,-2],[-4,-2],[-5,-1],[-4,1],[-5,4],[-3,6],[-4,15],[6,3],[2,1],[9,-4],[8,-5],[0,-4],[-10,0],[3,-3],[1,0]],[[25806,53736],[-6,0],[4,13],[3,6],[4,4],[4,2],[0,-6],[0,-8],[-4,-8],[-5,-3]],[[26695,55626],[4,4],[4,0],[-1,-7],[-2,-2],[-3,2],[-2,3]],[[26194,57032],[-14,12],[-6,2],[-4,5],[-2,10],[-2,21],[-6,16],[-29,70],[-3,4],[-1,1],[-4,6],[-1,3],[-10,6],[-4,8],[-9,24],[-8,8],[-9,21],[-12,14],[-4,8],[-1,5],[-3,17],[-9,8],[-10,22],[-26,23],[-4,7],[-4,9],[-3,18],[-33,54],[-5,14],[-8,35],[-3,5],[-3,3],[-7,16],[-4,13],[-5,18],[-1,9],[-1,8],[-3,7],[-7,11],[-7,18],[-10,38],[-10,55],[-3,9],[-7,13],[-57,72],[-3,10],[-16,18],[-8,20],[-19,18],[-1,13],[3,-9],[5,-7],[7,-6],[6,-2],[-7,16],[-4,6],[-3,2],[-3,4],[-6,25],[-2,0],[3,-22],[-4,8],[-8,19],[-5,11],[-4,3],[-17,28],[-2,5],[-1,6],[-2,11],[-1,-4],[-2,-5],[-1,-3],[-30,74],[-4,15],[1,-3],[1,-1],[4,-4],[0,4],[-1,1],[-3,3],[0,4],[-1,6],[-4,8],[-7,7],[-5,3],[0,-4],[7,-10],[4,-7],[0,-7],[-3,1],[-4,7],[-6,12],[-33,41],[-6,12],[-4,15],[0,17],[5,21],[8,14],[8,11],[6,13],[1,23],[2,0],[-1,-13],[-1,-4],[3,0],[4,-1],[3,-2],[1,-2],[2,-2],[7,-13],[1,-2],[5,-14],[2,-2],[3,-4],[1,-2],[0,-4],[0,-9],[0,-4],[9,-19],[12,-5],[29,4],[0,4],[-15,-1],[-7,2],[-3,5],[3,10],[13,14],[2,3]],[[25746,58158],[64,8],[4,-1],[6,-8],[3,-1],[2,10],[6,6],[7,9],[3,8],[6,21],[2,2],[4,5],[1,3],[1,5],[-1,3],[-1,1],[-1,4],[2,31],[0,1],[-2,10],[-1,3],[1,2],[2,17],[2,8],[2,5],[13,24],[4,6],[4,2],[5,-1],[16,-16],[3,-2],[2,2],[2,2],[2,3],[4,8],[2,7],[1,10],[-2,16],[0,4],[-2,8],[-2,3],[-2,1],[-2,2],[-1,6],[1,8],[3,16],[1,10],[-9,71],[0,10],[1,19],[0,9],[-1,4],[-2,4],[-2,2],[-1,3],[0,5],[1,32],[0,10],[1,8],[0,4],[1,2],[4,5],[6,6],[6,1],[12,-3],[22,9],[11,2],[10,-11],[5,-3],[4,3],[3,4],[4,1],[5,-9],[1,-3],[3,-1],[2,-1],[14,2],[5,3],[5,4],[3,7],[1,9],[3,18],[4,14],[18,41],[10,31],[3,4],[3,3],[3,3],[4,7],[2,8],[1,6],[1,5],[3,6],[4,4],[21,6],[0,-6],[-3,-13],[1,-16],[20,-29],[6,-17],[1,-3],[4,-3],[3,1],[2,2],[4,1],[6,-6],[4,-10],[2,-12],[5,-12],[6,-4],[6,0],[6,-1],[4,-8],[0,-1],[1,1],[2,4],[2,10],[1,9],[-2,7],[-4,2],[-1,6],[1,11],[3,18],[0,13],[2,3],[2,-1],[5,-1],[4,3],[6,10],[2,-1],[2,0],[0,3],[1,0],[1,1],[-1,6],[9,6],[3,6],[3,8],[6,5],[2,1],[5,1],[5,4],[3,8],[0,9],[2,8],[10,6],[5,6],[7,11],[3,9],[3,11],[2,11],[2,15],[3,10],[3,8],[3,6],[1,0],[3,-1],[1,1],[1,2],[1,4],[2,5],[1,4],[1,3],[3,2],[7,6],[2,2],[11,0],[7,2],[7,5],[6,7],[3,10],[-1,14],[-3,11],[-5,10],[-5,6],[8,12],[0,4],[0,9],[0,3],[6,15],[1,3],[1,30],[1,17],[2,8],[5,-2],[5,-11],[5,-7],[6,6],[9,20],[2,9],[0,1],[-7,0],[2,5],[6,12],[-8,12],[-1,5],[4,3],[1,1],[1,4],[2,22],[2,9],[4,7],[1,1],[4,6],[5,7],[13,26],[4,5],[17,7],[7,0],[7,-4],[6,-10],[5,-14],[-1,-1],[-2,-6],[-1,-1],[6,-2],[1,-7],[-1,-8],[6,-8],[3,-9],[4,-21],[5,7],[6,-2],[10,-9],[7,-3],[20,-1],[-1,-4],[-1,-12],[4,3],[3,-4],[3,-5],[4,-2],[3,1],[8,9],[10,7],[5,13],[4,15],[4,11],[2,-5],[2,-16],[2,-3],[5,-1],[6,-3],[3,0],[6,6],[2,13],[-2,28],[2,7],[3,0],[4,-2],[3,-3],[2,-4],[6,-15],[4,-3],[4,1],[6,4],[2,2],[1,3],[2,2],[2,2],[3,-1],[1,-2],[1,0],[2,3],[0,4],[-3,5],[-1,5],[-4,14],[3,6],[2,0],[7,-9],[0,-2],[2,-2],[2,-1],[5,0],[2,-1],[0,-5],[5,-1],[27,3],[-1,5],[0,5],[1,14],[4,-4],[4,-10],[4,-2],[-1,2],[-1,6],[2,-2],[1,0],[1,-2],[2,-4],[3,6],[5,6],[5,4],[6,0],[-3,3],[-1,3],[-2,7],[16,1],[5,5],[0,9],[3,1],[3,-1],[2,-3],[1,-5],[2,0],[-2,17],[1,7],[5,5],[5,2],[7,-1],[5,-3],[2,-7],[2,0],[1,8],[1,8],[1,6],[7,5],[7,12],[4,2],[-1,2],[0,5],[-1,1],[4,-2],[2,-2],[-1,8],[0,7],[2,3],[3,-6],[0,9],[0,4],[2,4],[-2,6],[1,3],[3,0],[3,-1],[2,-3],[3,-11],[3,-2],[6,1],[6,7],[4,10],[3,10],[3,-6],[4,-2],[3,-4],[1,-8],[4,6],[5,0],[12,-2],[-3,-4],[0,-3],[2,-3],[3,-2],[1,0],[13,0],[7,6],[4,2],[9,-1],[4,1]],[[26908,59351],[-2,-6],[-5,-5],[-3,-5],[-4,10],[-3,-7],[-3,-13],[-2,-7],[-3,-3],[-4,-9],[-2,-10],[-1,-8],[-1,-3],[-4,-7],[-1,-4],[-1,-6],[0,-13],[-1,-5],[-2,-8],[-3,-5],[-10,-8],[1,4],[0,2],[3,6],[0,-4],[1,3],[0,3],[0,3],[0,4],[-2,-3],[-1,-1],[-2,4],[0,3],[3,4],[3,0],[3,-2],[2,-5],[0,11],[-3,15],[-1,12],[-1,12],[-4,2],[-5,-4],[-3,-4],[-6,-10],[-12,-33],[-3,-14],[3,6],[1,2],[4,-6],[3,-24],[2,-6],[3,-4],[4,-8],[4,-3],[5,11],[-2,3],[-5,7],[-3,2],[3,4],[4,-2],[2,-6],[3,-8],[0,13],[2,5],[2,-6],[11,-103],[1,-4],[2,-11],[2,-28],[14,-81],[1,-23],[-1,-21],[-8,-37],[-23,-77],[-10,-25],[-1,-10],[-2,-7],[-13,-20],[-6,-16],[-4,-19],[-6,-55],[-11,-75],[-7,-67],[1,-29],[-1,-14],[0,-12],[-6,-29],[-5,-39],[-3,-77],[0,-14],[2,-8],[-2,-4],[2,-7],[9,-117],[6,-77],[-9,-156],[0,-35],[1,-6],[4,-17],[2,-18],[8,-23],[2,-15],[-1,-18],[-3,-10],[-5,-4],[-9,0],[-7,-3],[-7,-5],[-6,-3],[-6,7],[2,4],[6,8],[2,4],[0,7],[-1,9],[-2,9],[-6,11],[0,39],[-1,15],[1,1],[1,0],[0,2],[2,0],[10,-6],[7,18],[2,27],[-4,18],[0,4],[3,6],[1,8],[0,33],[1,1],[1,2],[1,3],[1,4],[-1,16],[-5,10],[-8,3],[-7,-1],[-6,-7],[-2,-11],[0,-12],[2,-10],[6,-7],[1,-1],[0,-2],[0,-10],[1,-5],[1,-4],[1,-1],[1,-3],[1,-6],[0,-10],[-1,-4],[-1,-4],[1,-3],[3,-9],[-9,-11],[-15,-26],[-9,-8],[-12,-3],[-5,-3],[-2,-8],[0,-31],[1,1],[3,0],[3,-2],[2,0],[2,-1],[2,-5],[2,-27],[-1,-13],[-2,-11],[-1,-12],[2,-11],[6,-5],[8,4],[2,-9],[-1,-6],[-1,-12],[0,-6],[0,-4],[2,5],[4,31],[2,7],[2,4],[6,-2],[1,-5],[-13,-54],[-6,-70],[2,-76],[2,-13],[-2,-2],[-2,-2],[1,12],[-2,10],[-7,18],[-3,15],[2,7],[5,6],[2,13],[-2,10],[-3,12],[-5,10],[-5,5],[-9,-2],[1,-9],[4,-5],[4,8],[2,0],[4,-10],[2,-6],[1,-8],[-1,-10],[-4,-13],[-1,-10],[-1,-11],[-5,0],[-12,7],[-1,-2],[3,-4],[7,-6],[2,-5],[1,-6],[0,-7],[1,-8],[-1,-6],[-2,-11],[-1,-4],[1,-3],[0,-4],[1,-3],[0,-4],[-2,-4],[-1,-2],[-2,-1],[-1,-1],[-5,-14],[-1,-3],[-3,-1],[-3,-5],[-2,-5],[-1,-5],[4,-5],[4,-9],[4,-9],[2,-11],[2,-3],[3,-2],[3,-1],[4,1],[0,3],[-1,3],[0,5],[1,12],[2,6],[2,2],[5,0],[3,-5],[13,-108],[0,-21],[0,-7],[0,-5],[-1,-3],[-2,-5],[-1,2],[-4,-2],[-4,-2],[0,-2],[-2,-2],[-3,-8],[-3,-2],[-3,0],[-3,-1],[-2,-3],[-2,-4],[-3,-18],[-3,-28],[-3,-21],[-6,2],[-2,0],[-9,-24],[-2,-9],[-2,-10],[0,-60],[9,-78],[6,-30],[8,-27],[3,-15],[6,-22],[3,-5],[5,-7],[2,-11],[2,-13],[5,2],[-1,6],[4,2],[6,-3],[4,-5]],[[26742,57504],[-2,16],[0,22],[2,18],[5,9],[1,0],[0,-1],[0,-1],[0,-2],[-2,-6],[-2,-10],[-1,-10],[-1,-10],[2,-22],[0,-8],[-2,5]],[[26929,57661],[0,14],[2,10],[4,4],[3,-5],[-1,-4],[-8,-19]],[[27009,59006],[4,5],[4,0],[2,-5],[1,-10],[-2,-16],[-5,-5],[-14,2],[-2,1],[2,0],[1,1],[-1,3],[5,5],[2,7],[1,6],[2,6]],[[55173,52529],[3,-17],[2,-74],[-3,-86],[-3,-13],[0,-7],[-2,-10],[-5,-8],[-9,-10],[-6,-9],[-4,-10],[-9,-59],[-4,-14],[-1,-6],[-2,-13],[-1,-7],[-5,-15],[-6,-30],[-1,-8],[-1,-16],[-7,-40],[-22,-77],[0,-5],[-3,-2],[-16,-32],[-4,-9],[-2,-10],[-3,-35],[-2,-11],[-2,-11],[-3,-11],[-4,-21],[-3,-9],[-5,-3],[-1,-6],[-7,-17],[-2,-7],[-10,-62],[0,-9],[1,-18],[1,-18],[-1,-57],[1,-27],[0,-9],[-1,-11],[-3,-19],[0,-10],[2,-170],[-1,-13],[-16,-76],[-2,-12],[-1,-21],[-10,-67],[-1,-37],[-2,-11],[-11,-42],[-6,-14],[-6,-23],[-2,-13],[4,-41],[0,-47],[8,-76],[0,-16],[-4,-46],[0,-16],[1,-15],[6,-28],[4,-5],[3,-10],[2,-11],[0,-10],[-2,-58],[-1,-9],[-24,-72],[-22,-127],[-5,-21],[-11,-110],[-1,-15],[1,-15],[6,-59],[3,-105],[-2,-6],[-4,-12],[-18,-35],[-1,-4],[-2,-5],[0,-9],[-1,-2],[0,-2],[-4,-5],[-3,-9],[-6,-9],[-16,-40],[-37,-96],[-7,-14],[-6,-15],[-2,-4],[-8,-8],[0,-3],[-6,-13],[-3,-4],[-14,-9],[-14,-4],[-6,-3],[-18,-16],[-14,-8],[-8,-3],[-2,-2],[-3,-4],[-2,-2],[0,-3],[-7,-17],[-11,-20],[-9,-22],[-13,-22],[-6,-8],[-2,-4],[-1,-4],[-3,-17],[-6,-24],[-5,-22],[-4,-14],[-11,-44],[-9,-25],[-6,-28],[-4,-12],[-5,-18],[-2,-10],[-2,-10],[0,-6],[0,-21],[-2,-17],[-3,-15],[-22,-62],[-1,-2],[-1,-7],[-1,-8],[-2,-2],[-5,-8],[-4,-4],[-2,-1],[-2,-5],[-4,-12],[-18,-36],[-12,-19],[-15,-32],[-8,-11],[-7,-13],[-7,-19],[-3,-13],[-2,-13],[0,-14],[1,-4],[0,-4],[-4,-27],[-1,-9],[1,-9],[3,-9],[1,-3],[0,-5],[0,-29],[10,-142],[-6,-87],[-7,-43],[-1,-8],[0,-8],[2,-35],[1,-21],[-1,-29],[2,-34],[-2,-32],[2,-10],[2,-11],[0,-13],[-1,-26],[1,-13],[3,-7],[4,-4],[1,-7],[0,-13],[-2,-11],[-3,-18],[-14,-51],[-6,-32],[-6,-25],[-17,-45],[-12,-49],[-2,-13],[-4,-9],[-4,-28],[-9,-32],[-2,-4],[-1,-6],[-6,-35],[-6,-14],[-2,-3],[-10,-12],[-13,-8],[-12,-4],[-12,-4],[-40,-27],[-5,-5],[-5,-7],[-3,-11],[-9,-58],[-1,-5],[-6,-14],[-1,-4],[-3,-2],[-7,-8],[-10,-8],[-31,-33],[-6,-8],[-7,-7],[-7,-8],[-3,-12],[-2,-8],[-10,-31],[-15,-44],[-6,-12],[-15,-16],[-2,-7],[-2,-7],[-21,-45],[-23,-81],[-2,-10],[-3,-9],[-4,-8],[-13,-12],[-19,-24],[-8,-6],[-10,-2],[-4,2],[-8,11],[-4,3],[-1,1],[-2,8],[-2,3],[-2,0],[-6,0],[-1,2],[-2,7],[-5,0],[-6,-3],[-3,-4],[-6,-13],[-3,-3],[-5,-2],[-5,-2],[-2,18],[5,46],[-1,6],[-2,5],[-1,6],[0,7],[1,6],[2,10],[0,6],[-1,14],[-3,10],[-4,8],[-4,11],[-2,23],[-2,13],[0,5],[2,8],[4,9],[11,9],[3,7],[3,10],[5,11],[4,11],[1,12],[-2,4],[-10,13],[-5,13],[-5,15],[-1,8],[-1,4],[1,3],[2,8],[0,8],[0,6],[-1,5],[-1,3],[-5,-1],[-12,-14],[-13,-6],[-6,-9],[-10,-19],[-10,-11],[-11,-7],[-24,-6],[-11,-9],[-8,-24],[0,-1],[-1,-2],[-4,-6],[-5,-12],[-3,-4],[-3,0],[-8,5],[-8,-1],[-3,1],[-3,6],[-4,15],[-2,8],[-6,8],[-6,1],[-18,-13],[-3,-3],[-1,-7],[3,-57],[-1,-12],[-4,-24],[-1,-13],[3,-25],[-1,-5],[-2,0],[-3,2],[-2,-3],[-1,-6],[1,-11],[-2,-5],[-2,0],[-7,4],[-2,0],[-6,-8],[-6,-24],[-3,-2],[-3,-2],[-3,4],[-6,12],[-3,3],[-3,-1],[-9,-11],[2,-5],[1,-5],[0,-5],[-3,-3],[-15,-23],[-7,-19],[-3,-5],[-6,25],[-2,21],[-2,7],[-2,6],[-4,4],[-17,13],[-5,7],[-13,24],[-8,11],[-3,5],[-3,20],[-5,15],[-2,9],[-6,15],[-7,-1],[-5,-13],[1,-20]],[[53631,47725],[-13,13],[-18,47],[-11,18],[-6,13],[-5,29],[-4,12],[-4,5],[-3,-1],[-4,-3],[-4,-2],[-4,2],[-5,6],[-2,2],[-4,3],[-6,-8],[-3,-14],[-3,-14],[-3,-9],[-5,-6],[-5,-8],[-4,-10],[-6,-24],[-3,-6],[-4,-4],[-31,-12],[-19,-13],[-4,-1],[-8,2],[-2,-8],[0,-25],[-1,-13],[-12,-49],[-3,-7],[-4,-3],[-9,-2],[-4,-2],[-4,-4],[-3,-4],[-3,14],[-3,6],[-3,4],[-3,0],[-1,-3],[-9,-61],[-7,-25],[-31,-56],[-3,-7]],[[53335,47497],[-4,8],[-4,10],[-6,22],[-10,27],[-7,14],[-3,16],[-15,35],[-3,7],[0,3],[1,4],[2,0],[3,-9],[2,1],[1,7],[-1,13],[-7,20],[-12,23],[-1,7],[0,6],[7,0],[5,12],[1,14],[-5,22],[-31,67],[-29,53],[-26,48],[-13,17],[-13,26],[-6,18],[-1,3],[-4,13],[0,6],[0,13],[0,7],[-1,5],[-25,41],[-27,38],[-9,15],[-7,9]],[[53087,48138],[4,17],[18,106],[5,19],[7,13],[10,13],[8,15],[9,12],[11,4],[11,8],[6,17],[5,18],[8,11],[14,-4],[10,-17],[22,-76],[5,-10],[6,-5],[15,4],[6,-1],[16,-10],[5,0],[1,1],[4,4],[6,9],[5,13],[3,13],[-2,12],[-6,7],[-6,4],[-6,7],[-3,13],[1,13],[16,80],[4,15],[12,19],[3,12],[-3,19],[-10,11],[-14,8],[-10,10],[-11,20],[-6,7],[-15,14],[-3,4],[-2,5],[-1,2],[1,3],[0,41],[2,11],[3,14],[3,4],[4,0],[6,1],[7,9],[0,13],[-4,13],[-21,48],[-10,30],[-4,11],[-6,4],[-8,-6],[-11,-16],[-5,-2],[-1,14],[3,23],[0,4],[21,70],[2,15],[1,13],[0,12],[-1,15],[-3,13],[-7,24],[-2,13],[0,10],[2,33],[-1,13],[-6,34],[2,12],[1,0],[10,0],[14,-9],[4,-5],[2,-4],[1,-5],[2,-5],[9,-16],[5,-6],[5,-1],[5,6],[9,19],[6,5],[10,4],[12,8],[9,9],[3,-3],[5,-8],[9,-25],[8,-13],[9,-2],[110,51],[-3,13],[2,19],[4,20],[2,17],[-2,25],[0,9],[2,9],[5,16],[2,11],[-11,10],[-6,19],[-2,24],[-3,64],[1,8],[3,-2],[4,-7],[5,-12],[5,-3],[4,4],[1,6],[0,6],[0,5],[2,8],[2,4],[1,3],[14,20],[3,2],[13,1],[12,-11],[19,-28],[1,-2],[12,-8],[4,-7],[4,-14],[6,-43],[2,-13],[2,-4],[4,-9],[1,-4],[1,-13],[0,-1],[0,-2],[0,-4],[0,-3],[5,-3],[0,-3],[-1,-4],[0,-3],[-2,-4],[0,-4],[1,-4],[3,-8],[1,-4],[1,-6],[1,-10],[4,0],[6,7],[3,-5],[5,-18],[3,-7],[1,-16],[1,-4],[2,-5],[2,0],[1,-1],[1,-6],[-3,-5],[-1,-5],[-1,-6],[0,-5],[-1,-6],[-1,-5],[-1,-4],[-3,-5],[-2,-6],[1,-3],[4,0],[3,7],[5,11],[4,2],[6,-3],[18,-17],[6,-3],[3,1],[5,7],[4,1],[2,-1],[49,-39],[5,-1],[5,3],[6,-2],[2,0],[4,2],[1,-1],[3,-7],[1,-1],[3,4],[1,4],[1,6],[2,6],[2,5],[9,14],[3,5],[4,10],[2,6],[4,3],[6,5],[3,4],[1,5],[1,13],[2,6],[21,43],[2,7],[1,6],[1,12],[1,6],[3,12],[5,19],[1,3],[1,-1],[3,-4],[4,-8],[3,-11],[2,-13],[3,-24],[6,-28],[4,-11],[5,-11],[2,-6],[1,-16],[2,-4],[3,-3],[2,-5],[4,-11],[-1,-4],[-3,-4],[-4,-18],[-6,-6],[-2,-5],[0,-23],[0,-3],[4,-9],[6,-4],[7,-1],[6,3],[5,6],[2,3],[3,0],[3,-4],[1,-11],[1,-4],[2,0],[13,9],[2,0],[3,0],[4,-5],[3,-3],[2,1],[2,4],[1,8],[2,11],[2,5],[3,4],[2,6],[0,15],[1,6],[2,5],[6,10],[2,3],[3,3],[13,7],[1,-2],[-2,19],[-21,38],[-1,20],[4,6],[10,8],[3,8],[1,5],[-2,10],[0,6],[2,3],[4,4],[2,4],[2,8],[1,31],[2,12],[0,6],[-1,5],[-2,3],[-2,3],[0,4],[1,6],[0,6],[1,6],[1,4],[2,4],[33,27],[0,1],[8,8],[2,9],[-2,25],[0,5],[1,16],[1,47],[2,13],[3,8],[7,8],[-2,4],[-6,2],[-5,3],[-3,24],[-5,7],[-2,4],[2,5],[6,4],[2,3],[3,4],[2,6],[1,7],[2,5],[9,4],[0,8],[-3,11],[-4,8],[4,17],[0,14],[1,6],[3,6],[4,5],[2,7],[-2,12],[-9,14],[-5,9],[-1,11],[1,7],[1,4],[3,4],[2,5],[1,6],[1,6],[1,13],[1,19],[-1,5],[-2,8],[-5,9],[-1,3],[-2,7],[0,5],[2,10],[0,5],[-1,7],[-3,13],[-8,47],[0,8],[3,13],[2,25],[1,14],[4,14],[5,12],[3,13],[-1,18],[-2,15],[0,14],[2,15],[11,52],[2,19],[-3,18],[-6,28],[-3,8],[-12,16],[-6,18],[-9,12],[-11,10],[-7,5],[-5,-1],[-4,-5],[-5,-3],[-4,2],[-5,5],[-5,0],[-5,-4],[-4,-5],[-1,22],[-2,25],[-3,23],[-5,21],[-7,15],[-10,10],[-11,4],[-11,-6],[-2,6],[-2,4],[-3,2],[-9,3],[-3,-2],[-1,-4],[0,-4],[-2,-3],[-3,-2],[-2,-1],[-2,2],[-13,33],[1,17],[3,14],[12,36],[4,10],[3,6],[2,7],[0,7],[-1,6],[-1,9],[1,6],[4,11],[1,6],[-2,7],[-4,1],[-3,0],[-2,5],[-1,42],[-1,15],[-3,18],[-1,15],[1,14],[9,30],[10,47],[6,14],[21,24],[5,12],[1,13],[-2,12],[-3,12],[8,25],[14,4],[16,-4],[14,2],[3,3],[2,2],[1,4],[21,38],[2,12],[0,31],[8,24],[13,24],[10,24],[-2,28],[-1,7],[2,5],[3,4],[3,5],[0,8],[-2,5],[-6,7],[-6,11],[-4,11],[-4,13],[-3,14],[-5,30],[-3,12],[-14,14],[-4,12],[-2,15],[0,45],[-1,15],[-4,37],[-2,7],[-3,5],[-3,3],[-2,3],[-1,3],[0,3],[-3,2],[-2,3],[-2,4],[-3,3],[-11,7],[-5,1],[-5,-3],[-10,-8],[-6,1],[-4,6],[-4,9],[-5,6],[-5,3],[-53,10],[-4,-2],[0,-3],[-2,-15],[-4,-14],[-1,-1],[-3,-3],[-1,1],[-3,3],[-1,1],[-2,-2],[-3,-5],[-2,-2],[-5,-2],[-3,-1],[-3,1],[-5,-1],[-4,-6],[-4,-6],[-10,-9],[-6,-18],[-3,-5],[-10,-4],[-8,0],[-9,4],[-9,7],[-5,1],[-6,-2],[-5,-3],[-2,-4],[-2,-11],[-5,-3],[-5,-1],[-5,-14],[-5,-4],[-6,-3],[-9,2],[-6,-2],[-3,1],[-1,8],[-3,4],[-3,3],[-3,5],[6,1],[2,7],[1,9],[2,3],[4,2],[4,3],[4,6],[3,12],[2,2],[0,3],[-2,7],[-1,4],[0,5],[0,4],[0,28],[0,5],[-4,6],[-5,29],[-6,6],[2,9],[-1,8],[-2,7],[-3,5],[-2,-5],[-5,16],[-4,17],[4,11],[1,15],[-1,27],[1,12],[2,11],[0,11],[-2,10],[4,4],[3,8],[2,9],[3,22],[0,9],[-1,7],[-2,5],[-2,10],[-3,11],[1,2],[3,2],[2,10],[2,7],[2,4],[2,4],[1,4],[1,6],[-2,11],[0,5],[3,2],[1,3],[5,11],[2,3],[10,12],[3,14],[0,19],[0,35]],[[53692,51749],[48,0],[43,-1],[12,0],[44,-1],[50,-1],[44,-1],[30,-1],[2,1],[12,10],[18,-5],[4,-5],[6,-11],[4,-2],[1,1],[6,8],[22,10],[2,2],[1,5],[0,5],[0,6],[2,5],[1,4],[8,-4],[9,-22],[6,-7],[-2,-9],[3,-3],[7,1],[4,-5],[5,-12],[4,-4],[-1,15],[2,2],[7,-9],[-4,-6],[-2,-2],[3,-2],[3,1],[2,1],[2,0],[0,-4],[0,-13],[1,-3],[17,4],[4,2],[2,6],[1,7],[0,7],[1,4],[4,-9],[4,-11],[1,-6],[5,-8],[-3,-17],[-1,-14],[11,-2],[6,2],[3,2],[2,15],[3,-1],[13,-23],[4,-2],[6,3],[3,-10],[5,3],[4,10],[3,9],[2,0],[4,-3],[3,17],[9,-7],[4,4],[4,3],[6,-5],[1,-4],[2,-9],[1,-4],[2,-2],[9,-7],[2,-4],[2,-4],[0,-5],[0,-8],[0,-3],[0,-2],[2,-5],[1,-1],[7,-6],[0,-1],[3,1],[5,5],[6,4],[14,18],[12,4],[12,-5],[24,-15],[26,-6],[2,-3],[3,-3],[3,-3],[7,-2],[2,-3],[10,-29],[4,-4],[7,-5],[7,-9],[2,-3],[2,-4],[1,-9],[1,-5],[4,0],[3,3],[3,3],[1,-9],[4,-4],[6,-3],[4,-4],[3,4],[4,-1],[3,-2],[2,-5],[1,-7],[0,-5],[-1,-6],[0,-6],[2,-10],[11,-30],[13,38],[2,1],[6,-4],[3,3],[1,9],[-7,65],[-9,52],[-5,18],[-2,5],[-2,1],[-1,4],[0,21],[0,6],[5,13],[0,5],[-1,5],[-1,5],[0,2],[0,2],[0,4],[1,3],[1,0],[1,0],[1,1],[1,8],[-1,6],[-1,5],[-1,8],[1,6],[3,14],[2,13],[4,6],[6,-3],[5,-10],[11,18],[3,6],[-2,5],[-1,3]],[[54499,51794],[14,65],[12,57],[9,40],[13,58],[12,53],[4,17],[6,29],[8,36],[1,15],[-2,10],[-4,10],[-4,11],[0,26],[10,44],[2,21],[-2,14],[-3,12],[-2,12],[0,15],[3,14],[10,28],[2,13],[0,14],[7,37],[2,50],[5,26],[8,22],[12,16],[13,8],[6,1],[6,-1],[22,-12],[6,1],[6,6],[0,5],[0,6],[0,5],[4,1],[3,-2],[5,-4],[2,-1],[8,2],[3,0],[3,-4],[2,-5],[2,-3],[4,3],[2,1],[4,-1],[1,0],[3,2],[3,6],[2,3],[4,4],[3,2],[7,-1],[4,1],[8,6],[3,2],[11,0],[4,1],[5,4],[3,6],[2,6],[4,7],[4,3],[3,-1],[7,-5],[11,2],[5,11],[6,15],[11,12],[3,4],[5,7],[4,4],[7,-2],[1,-3],[1,-8],[1,-2],[4,-1],[1,-1],[11,-19],[10,-9],[11,-4],[23,0],[1,1],[3,3],[2,0],[2,-2],[3,-7],[2,-2],[2,0],[6,2],[2,0],[4,-5],[4,-9],[2,-11],[2,-12],[2,-9],[4,-1],[5,3],[10,11],[2,2],[1,-1],[10,-13],[3,-2],[3,0],[9,9],[10,6],[9,0],[10,-7],[5,-10],[3,-24],[4,-8],[6,-2],[6,6],[5,10],[3,10],[1,6],[2,18],[1,8],[3,1],[2,-1],[3,-1],[22,5],[2,-1],[3,-3],[2,-1],[1,3],[1,8],[1,2],[4,1],[4,-1],[3,3],[5,10],[3,8],[4,1],[7,-13],[4,-11],[11,-39],[5,-22],[3,-7],[12,0]],[[55173,52529],[-9,138],[6,73],[-1,20],[0,7],[1,13],[6,20],[2,14],[1,14],[0,38],[-4,50],[-3,23],[-10,39],[-2,11],[-2,7],[-7,14],[-2,10],[1,13],[4,15],[6,11],[5,-1],[5,-6],[6,-3],[5,1],[6,3],[13,9],[9,14],[6,19],[15,75],[6,20],[10,17],[3,17],[0,1],[2,2],[5,4],[1,2],[10,35],[5,8],[5,7],[3,9],[3,22],[2,5],[2,4],[2,5],[2,6],[2,18],[3,14],[4,11],[7,13],[2,5],[5,4],[13,0],[5,2],[5,16],[4,15],[2,5],[13,13],[25,33],[6,17],[4,8],[6,3],[18,-1],[6,1],[9,9],[5,3],[10,-10],[32,-2],[3,-1],[5,-6],[9,-3],[12,-13],[4,-5],[3,-9],[3,-8],[4,-17],[2,-9],[3,-8],[7,-5],[24,-11],[8,-10],[6,-12],[9,-13],[18,-15],[6,-7],[12,-33],[6,-10],[5,-5],[13,-10],[6,-1],[4,-4],[4,-10],[6,-18],[6,-28],[2,-5],[5,-4],[5,-11],[5,-13],[2,-13],[-2,-8],[-3,-10],[-1,-11],[3,-13],[1,-3],[29,-57],[5,-8],[7,-3],[23,8],[22,0],[7,2],[4,5],[3,5],[4,4],[11,2],[26,-12],[26,-20],[5,-2],[2,-5],[6,-20],[2,-8],[7,-4],[3,-4],[3,-10],[2,-2],[5,0],[3,-2],[2,-4],[2,-3],[4,1],[2,3],[2,5],[2,4],[1,4],[3,4],[2,2],[2,1],[4,1],[3,-2],[2,-4],[1,-4],[13,-18],[5,-5],[6,-4],[6,-1],[12,2],[3,-2],[3,-4],[2,-4],[2,-3],[3,-1],[5,0],[3,-3],[27,30],[5,1],[10,-2],[10,1],[4,-1],[5,-4],[2,-3],[1,-2],[1,-3],[3,0],[8,0],[3,0],[5,-6],[3,-6],[5,-6],[6,-3],[17,-2],[5,2],[3,2],[1,1],[2,1],[3,0],[2,-1],[8,-8],[6,-5],[14,-6],[5,-4],[2,-3],[5,-11],[3,-4],[6,-5],[6,-8],[27,-13],[33,3],[3,3],[5,4],[2,2],[9,15],[5,10],[3,9],[1,3],[5,9],[1,6],[0,5],[-2,13],[0,6],[8,32],[3,5],[3,2],[3,5],[3,7],[1,6],[-1,5],[-4,12],[-2,11],[0,17],[1,14],[5,6],[12,-1],[6,2],[4,4],[2,6],[0,6],[0,14],[1,3],[4,6],[1,3],[0,4],[3,10],[1,4],[-1,6],[-1,12],[0,7],[4,5],[3,6],[2,8],[2,9],[3,20],[3,9],[5,3],[4,-3],[5,-6],[5,-2],[3,16],[6,10],[2,6],[-2,6],[-1,7],[0,8],[1,7],[3,6],[2,1],[3,-2],[4,0],[3,2],[3,4],[4,2],[3,0],[2,-5],[3,-16],[3,-12],[1,-9],[2,-8],[3,-3],[4,-1],[4,-4],[3,-4],[3,-5],[6,-6],[7,2],[12,14],[4,-8],[7,-21],[4,-4],[1,-2],[7,-10],[4,-16],[2,-2],[6,-3],[2,-1],[0,-2],[3,-7],[1,-2],[6,0],[5,-2],[4,-4],[5,-6],[2,3],[5,-1],[3,2],[1,5],[0,4],[0,5],[1,7],[2,10],[3,8],[5,5],[6,1],[5,4],[17,29],[6,5],[12,7],[11,13],[6,4],[12,3],[6,5],[11,16],[5,4],[3,-1],[6,-3],[2,-1],[2,2],[3,5],[2,1],[12,-5],[7,0],[-1,7],[-1,6],[0,7],[1,6],[1,3],[2,2],[2,-1],[4,-9],[5,7],[14,14],[7,13],[5,5],[5,2],[3,-2],[6,-8],[4,-2],[2,3],[8,22],[5,7],[6,3],[4,-4],[2,-15],[2,0],[2,4],[1,4],[0,6],[1,6],[3,17],[1,2],[2,5],[20,5],[5,6],[4,8],[-1,7],[-7,3],[-3,6],[2,13],[4,14],[4,8],[2,-6],[2,-18],[2,-5],[4,-3],[1,4],[-1,9],[1,6],[7,4],[6,-3],[1,-1],[8,-8],[5,-8],[2,-4],[2,-12],[2,-4],[3,-3],[7,-2],[3,-3],[3,-5],[0,-12],[1,-7],[3,-5],[9,-6],[3,-6],[-3,-10],[-1,-6],[3,-3],[18,-4],[5,1],[5,6],[3,-7],[3,1],[3,6],[3,6],[3,3],[2,-2],[3,-2],[3,-1],[5,5],[10,13],[7,3],[1,2],[5,7],[2,3],[3,0],[11,-7],[9,-11],[10,-6],[2,2],[2,12],[3,12],[1,2],[3,2],[2,4],[2,6],[3,-1],[2,-2],[2,-3],[2,-2],[18,2],[3,4],[3,5],[12,2],[4,3],[3,6],[1,6],[0,14],[1,7],[4,10],[1,4],[0,6],[2,12],[0,4],[-2,4],[-6,2],[-2,2],[-2,13],[3,11],[3,8],[2,7],[1,14],[1,12],[4,8],[5,4],[-3,11],[2,3],[4,3],[3,8],[5,-7],[6,3],[12,15],[1,2],[1,-1],[3,-6],[2,-2],[7,6],[3,2],[-2,10],[3,2],[5,-1],[4,1],[1,0],[2,-8],[1,-7],[3,-6],[6,1],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[0,-4],[4,-6],[2,1],[2,4],[3,1],[2,-1],[2,-5],[1,-1],[1,-1],[6,-4],[4,-6],[7,-18],[3,-5],[4,-3],[4,0],[3,8],[-3,4],[2,2],[4,-4],[1,-14],[1,1],[3,1],[1,2],[-1,-9],[1,-5],[1,-4],[2,-12],[3,3],[3,7],[1,4],[6,-1],[3,-8],[3,-11],[5,-9],[0,12],[4,7],[5,2],[4,-4],[0,10],[1,6],[3,2],[4,-2],[3,-3],[5,-12],[3,-6],[3,5],[4,1],[3,0],[1,1],[1,6],[2,3],[3,-1],[2,-2],[-1,4],[-1,16],[2,-2],[1,-1],[2,-1],[2,0],[2,2],[1,4],[2,6],[4,-4],[2,-7],[1,-5],[4,4],[1,-3],[2,-2],[1,-3],[3,6],[1,2],[2,-18],[2,-5],[3,3],[0,-3],[0,-10],[2,1],[3,2],[1,1],[2,-10],[5,-8],[6,-5],[7,-3],[5,2],[5,-1],[2,-7],[2,3],[6,5],[3,-9],[4,-7],[4,-5],[3,-5],[6,-23],[0,-4],[4,-1],[7,-6],[5,-1],[2,1],[4,3],[4,4],[2,4],[1,-4],[4,9],[5,3],[5,-1],[2,-7],[2,0],[1,7],[3,0],[3,-3],[3,3],[4,7],[3,3],[13,0],[4,-2],[2,-2],[11,-26],[2,-3],[2,1],[3,6],[2,1],[2,-1],[1,-3],[1,-3],[1,-1],[5,-1],[1,2],[3,7],[2,6],[2,14],[2,5],[8,19],[8,14],[8,12],[10,11],[13,8],[12,-2],[11,-8],[23,-24],[6,-4],[6,-2],[5,-2],[4,-6],[4,-7],[4,-6],[2,-2],[3,-1],[5,0],[3,-2],[4,-5],[3,-1],[7,-6]],[[58566,52537],[6,4],[5,10],[5,3],[3,-14],[0,-5],[-1,-17],[0,-7],[3,-12],[0,-7],[-1,-13],[-2,-4],[-2,-7],[-8,-18],[-6,-21],[0,-2],[0,-7],[-1,-3],[-2,-1],[-3,-2],[-1,-1],[-5,-21],[-11,-73],[-5,-27],[-1,-13],[1,-11],[3,-9],[13,-19],[5,-10],[6,-23],[3,-24],[0,-24],[-7,-39],[-2,-6],[-1,-1],[-3,-2],[-2,-1],[0,-4],[0,-6],[-1,-3],[-9,-53],[-1,-7],[0,-3],[0,-5],[-6,-18],[-1,-6],[0,-11],[1,-22],[-1,-10],[-2,-10],[-3,-12],[-3,-12],[1,-10],[4,-3],[20,0],[2,-4],[1,-7],[0,-9],[1,-9],[2,-9],[5,-12],[5,-10],[5,-4],[8,8],[4,19],[4,16],[11,0],[4,-6],[16,-38],[1,-2],[0,-5],[0,-3],[-2,-2],[-1,-2],[2,-5],[4,-5],[12,-4],[4,-1],[4,2],[14,10],[0,-25],[1,-13],[2,-10],[6,-9],[16,-19],[3,-11],[0,-1],[0,-1],[-2,-29],[-8,-31],[-17,-44],[-17,-48],[-7,-17],[-19,-52],[-20,-34],[-38,-66],[-38,-65],[-23,-64],[-12,-33],[-21,-58],[-6,-10],[-3,-5],[-4,-4],[-6,-2],[-3,-1],[-7,1],[-3,0],[-5,-8],[-3,-12],[-3,-8],[-5,5],[-3,5],[-3,1],[-2,-1],[-2,-3],[-9,-19],[-1,-3],[0,-13],[-1,-6],[-1,-5],[-3,-7],[0,-12],[1,-24],[-2,-11],[-6,-14],[-1,-10],[-1,-2],[-5,-20],[-3,-7],[-3,-3],[-30,-15],[-11,-11],[-4,-7],[-6,-10],[-4,-4],[-5,-23],[-1,-6],[2,-31],[-3,-50],[-1,-12],[6,-48],[0,-23],[-4,-19],[-1,-4],[-5,-13],[-15,-36],[-3,-11],[-2,-13],[-9,-97],[-1,-5],[-2,-3],[-2,1],[-2,4],[-4,3],[-1,-7],[-12,-36],[-3,-16],[0,-11],[3,-25],[0,-12],[-1,-11],[-4,-22],[-5,-60],[-2,-21],[-4,-58],[-1,-11],[-6,-74],[0,-11],[1,-4],[3,-13],[1,-9],[1,-36],[0,-9],[-2,-3],[-3,0],[-3,-2],[-1,-6],[0,-4],[2,-6],[1,-4],[0,-4],[-2,-3],[-1,-3],[-1,-3],[-4,-46],[0,-13],[3,-23],[0,-12],[0,-36],[-1,-9],[-3,-8],[-8,-5],[-4,-11],[0,-5],[0,-6],[1,-11],[1,-9],[-1,-6],[-2,-5],[-1,-7],[1,-10],[4,-23],[1,-12],[0,-10],[-3,-37],[0,-14],[2,-10],[3,-9],[1,-13],[0,-5],[-2,-15],[0,-6],[3,-12],[1,-6],[0,-12],[-2,-35]],[[58216,49647],[-11,-8],[-11,-17],[-10,-21],[-5,-18],[-1,-3],[-1,-1],[-1,-1],[0,-1],[-21,-2],[-5,-3],[-3,-9],[-8,-34],[-2,-7],[-14,-24],[-3,-11],[-6,-23],[-7,-25],[-11,-35],[-5,-26],[-1,-21],[0,-22],[8,-93],[0,-21],[-1,-25],[-5,-28],[-7,-23],[-9,-16],[-12,-7],[-8,1],[-3,-2],[-3,-6],[0,-5],[-1,-6],[-2,-9],[-3,-11],[-4,-9],[-5,-6],[-6,-3],[-7,-6],[-4,-7],[-2,-15],[0,-13],[1,-12],[3,-11],[1,-7],[-5,-9],[-1,-8],[1,-7],[3,-4],[3,-3],[3,-6],[2,-14],[-2,-45],[2,-5],[10,-14],[4,-4],[8,-1],[6,-6],[4,-11]],[[58059,48858],[4,-14],[-6,-1],[-3,-7],[-2,-10],[-1,-13],[3,-10],[5,-3],[5,-1],[5,-4],[1,-5],[2,-15],[5,-13],[1,-6],[0,-10],[2,-9],[4,-5],[5,-4],[4,-6],[2,-9],[1,-12],[3,-11],[5,-4],[5,-2],[5,-4],[4,-6],[2,-9],[2,-34],[0,-4],[-1,-6],[-4,-5],[-2,-10],[-1,-12],[1,-39],[2,-12],[5,-8],[-1,-2],[-7,-13],[-1,-8],[-1,-17],[6,-151],[-1,-46],[-2,-25],[-3,-43],[3,-70],[2,-16],[5,-12],[10,-25],[17,-61],[8,-57],[2,-11],[8,-144]],[[58542,45617],[-48,-15],[-71,-23],[-56,-19],[-74,-23],[-74,-24],[-4,-2],[-58,-19],[-44,-14],[-48,-15],[-34,-11],[-7,-6],[1,-11],[12,-53],[-1,-53],[-11,-51],[-35,-99],[-46,-96],[-26,-41],[-25,-25],[-12,-16],[-6,-22],[5,-22],[11,-10],[14,-6],[10,-10],[6,-15],[0,-12],[0,-10],[-1,-9],[2,-9],[3,-7],[7,-10],[2,-6],[1,-7],[0,-8],[0,-10],[2,-8],[3,-2],[9,0],[-2,-5],[-6,-4],[-2,-3],[1,-6],[6,-12],[1,-8],[0,-6],[3,-12],[0,-7],[1,-27],[2,-12],[3,-12],[3,-4],[3,-1],[1,-4],[1,-9],[7,-15],[0,-3],[-5,-4],[-3,-11],[-3,-25],[-8,-39],[-2,-12],[3,-43],[-1,-47],[-3,-24],[-4,-18],[-7,-17],[-2,-11],[9,-17],[1,-2],[0,-7],[1,-3],[1,-1],[2,-3],[2,-12],[-1,-9],[-1,-9],[-1,-13],[1,-15],[2,-10],[2,-10],[2,-11],[1,-7],[-1,-8],[-1,-6],[-1,-6],[-2,-5],[3,-9],[-1,-6],[0,-8],[3,-11],[7,-16],[0,-7],[-1,-12],[-1,-7],[2,-6],[6,-11],[2,-3],[-2,-12],[-3,-11],[-5,-10],[-4,-6],[-1,-1],[-4,1],[-1,-2],[-2,-3],[-4,-15],[-2,-12],[-2,-6],[-5,-11],[-3,-12],[-3,-14],[-1,-14],[0,-26],[-1,-7],[-3,-12],[0,-6],[-1,-6],[-5,-11],[-2,-5],[0,-6],[0,-13],[0,-6],[-1,-6],[-3,-14],[-4,-12],[-1,-6],[3,-31],[1,-8],[-1,-5],[-3,-8],[0,-3],[-1,-6],[1,-20],[-5,-23],[-3,-6],[-3,-9],[-1,-13],[2,-22],[-1,-2],[-6,-10],[-1,-2],[-15,-44],[0,-11],[0,-32],[1,-9],[2,-4],[3,-18],[2,-6],[4,-9],[2,-5],[5,-35],[-1,-6],[-1,-3],[2,-5],[4,-8],[1,-6],[3,-41],[2,-8],[5,-2],[3,-7],[2,-28],[3,-10],[4,5],[3,-1],[2,-3],[3,-5],[1,-3],[3,-11],[1,-6],[7,8],[4,-6],[4,-22],[4,-6],[14,-15],[6,-4],[9,3],[3,-4],[1,-17],[1,-9],[4,-6],[10,-11],[3,-7],[4,-9],[3,-12],[1,-11],[3,-7],[16,-19],[8,-19],[22,-87],[1,-6],[0,-8],[2,-1],[2,0],[3,-3],[4,-1],[4,5],[5,2],[3,-12],[5,6],[5,6],[7,3],[23,1],[3,-3],[5,-11],[3,-6],[3,-3],[3,-1],[11,0],[2,-1],[12,-14],[7,-5],[2,-1],[4,1],[2,0],[1,-2],[1,-2],[1,-3],[2,-1],[6,1],[4,5],[3,9],[1,11],[-2,11],[-3,3],[-4,0],[-5,4],[-8,22],[-1,5],[0,5],[1,5],[2,14],[3,23],[2,7],[4,7],[12,9],[6,7],[4,8],[2,2],[4,0],[4,-3],[5,-10],[2,-4],[5,2],[15,14],[9,14],[6,5],[12,2],[0,-1],[0,-2],[0,-63],[0,-69],[0,-99],[0,-88],[0,-104],[0,-89],[0,-83],[0,-89],[0,-65],[-5,-19],[-4,-2],[-18,1],[-11,6],[-6,5],[-4,5],[-3,5],[-1,6],[-2,7],[-1,7],[0,8],[2,3],[3,1],[2,2],[0,6],[0,12],[0,5],[2,4],[5,3],[2,3],[1,4],[1,6],[1,6],[-1,6],[-2,7],[-3,0],[-2,-2],[-3,1],[-6,7],[-4,8],[-5,6],[-7,1],[-6,-6],[-16,-32],[-6,-7],[-39,-32],[-17,-22],[-6,-5],[-4,-5],[-5,-13],[-3,-4],[-4,2],[-3,7],[-1,9],[-3,7],[-6,6],[-7,0],[-7,-2],[-2,0],[-5,0],[-5,-4],[-5,-3],[-5,2],[-3,10],[-9,17],[-4,25],[-9,87],[-3,9],[-3,2],[-5,0],[-3,4],[-2,20],[-1,2],[-2,0],[-1,1],[-1,3],[-1,3],[1,6],[-1,3],[1,3],[1,6],[0,3],[-1,3],[-4,3],[-1,2],[-2,21],[-2,7],[-5,9],[-19,51],[-11,24],[-13,6],[-4,-5],[-4,-17],[-3,-7],[-4,-4],[-4,0],[-3,6],[-1,30],[-4,14],[-6,13],[-6,16],[-2,15],[3,8],[4,7],[3,10],[1,15],[-3,11],[-10,21],[-3,13],[-6,30],[-3,12],[-23,42],[-5,6],[-5,3],[-6,1],[-5,-2],[-8,0],[-5,7],[-4,9],[-5,5],[-7,-4],[-4,-8],[-4,-4],[-7,11],[-1,5],[-1,6],[-1,5],[-2,4],[-21,4],[-4,-1],[-5,-2],[-6,4],[-2,13],[-1,15],[-4,10],[-16,20],[-6,5],[-7,1],[-3,-4],[-3,-9],[-6,-9],[-8,-4],[-13,-1],[-13,2],[-7,5],[-12,28],[-2,2],[-15,26],[-4,12],[-14,81],[-1,24],[-13,47],[-52,67],[-6,52],[0,20],[-1,29],[-3,27],[-5,14],[-1,-1],[-8,-6],[-12,-2],[-11,-7],[-2,-1],[-7,2],[-2,0],[-4,-9],[0,-11],[4,-25],[-1,-16],[-2,-9],[-5,-8],[-4,-13],[-3,-24],[-1,-48],[-5,-23],[-10,-20],[-11,-13],[-11,-5],[-13,3],[-7,0],[-5,-8],[-3,-10],[-4,-9],[-6,-2],[-5,4],[-4,8],[-6,7],[-10,4],[-23,4],[-9,6],[-6,9],[-4,8],[-5,8],[-6,4],[-11,0],[-10,-4],[-3,-2],[-5,-8],[-4,-3],[-3,0],[-6,6],[-10,-1],[-5,5],[-6,8],[-6,5],[-48,-2],[-4,2],[-4,4],[-4,19],[-4,6],[-6,5],[-15,25],[-1,3],[-2,2],[-3,1],[-2,-1],[-5,-5],[-3,-1],[-16,0],[-6,2],[-10,13],[-9,17],[-9,13],[-13,1],[-2,-4],[-1,-6],[-1,-6],[-3,-2],[-4,-1],[-2,-3],[-1,-4],[-3,-3],[-5,-1],[-5,4],[-1,8],[2,15],[0,3],[0,4],[0,3],[-5,9],[-16,16],[-3,5],[-1,5],[-2,3],[-3,2],[-4,0],[-2,1],[-2,2],[-3,5],[-2,10],[-8,48],[0,11],[0,6],[1,5],[3,10],[1,5],[-2,11],[-7,23],[-2,12],[0,14],[2,7],[4,5],[2,11],[-1,5],[-4,5],[-1,5],[3,6],[6,4],[2,4],[0,6],[0,12],[0,15],[-1,14],[-3,6],[-9,-3],[-26,-28],[-17,-7],[-39,-8],[-11,2],[-12,-7],[-20,-22],[-11,-5],[-21,0],[-11,-9],[-3,-6],[-5,-14],[-2,-6],[-3,-3],[-7,-3],[-2,-2],[-3,-5],[-1,-5],[-1,-5],[-1,-7],[-2,-5],[-3,-1],[-3,1],[-3,-1],[-12,-9],[-5,-2],[-7,1],[-5,5],[-10,19],[-6,7],[-5,2],[-12,0],[-4,5],[-3,11],[4,6],[12,7],[3,8],[9,29],[2,10],[1,12],[1,12],[-1,13],[-1,10],[-2,5],[-5,9],[-1,7],[0,8],[2,6],[2,5],[1,7],[-3,12],[-7,13],[-8,11],[-6,6],[-5,1],[-11,0],[-5,2],[-11,6],[-4,0],[-6,-4],[-5,-1],[-2,7],[0,20],[0,7],[-2,11],[-1,7],[0,5],[2,11],[0,5],[-6,13],[-12,9],[-13,5],[-10,1]],[[56657,44031],[-5,-6],[-2,-11],[-2,-14],[-2,-12],[-3,-5],[-5,-8],[-3,-5],[-2,-6],[-2,-13],[-2,-5],[-9,-8],[-11,5],[-12,7],[-10,3],[-11,-2],[-9,2],[-24,13],[-17,10],[-11,2],[-11,-1],[-12,-7],[-19,-22],[-30,-35],[-23,-8],[-28,-10],[-12,0],[-11,3],[-5,5],[-11,15],[-5,6],[-7,0],[-6,-6],[-6,-9],[-6,-7],[-10,-4],[-11,2],[-11,7],[-10,8],[-21,18],[-10,-3],[-9,-47],[-8,-15],[-28,-19],[-4,-6],[-12,-28],[-5,-7],[-7,0],[4,24],[1,25],[-4,52],[-2,11],[-4,18],[-1,10],[-1,3],[-4,6],[-1,3],[0,22],[-6,42],[-2,9],[0,10],[4,13],[7,12],[5,7],[11,11],[7,4],[6,2],[2,5],[1,11],[-1,23],[1,2],[1,3],[-4,15],[-1,21],[0,13],[1,11],[-1,25],[-3,13],[-4,8],[-2,8],[-1,12],[2,13],[6,21],[2,9],[0,6],[1,12],[1,6],[-1,7],[-4,11],[-3,17],[-6,25],[-5,28],[-7,26],[-5,27],[2,19],[-2,8],[-2,25],[-6,32],[-2,21],[-2,13],[-4,9],[-11,15],[-4,8],[-3,4],[-2,-5],[-2,-1],[-3,3],[-16,40],[-3,16],[-1,19],[-1,-2],[-5,-3],[-2,-2],[-3,23],[-18,39],[-7,23],[-3,25],[-3,51],[-3,25],[-2,6],[-5,12],[-1,6],[0,8],[3,12],[2,20],[8,37],[3,25],[0,24],[-3,60],[4,68],[-1,31],[3,47],[2,14],[3,20],[2,4],[2,37],[4,44],[3,18],[5,19],[-2,0],[-1,1],[-1,1],[-2,1],[7,46],[1,26],[-2,25],[-7,23],[-3,15],[1,7],[2,3],[2,2],[-2,11],[-8,17],[-3,11],[-3,28],[0,25],[-1,10],[-2,8],[-7,17],[-3,11],[-2,12],[0,14],[-2,7],[-9,10],[-3,5],[-1,11],[-1,40],[1,6],[4,11],[1,7],[0,7],[-2,15],[2,26],[1,10],[3,19],[3,13],[3,22],[3,20],[2,12],[2,7],[0,11],[1,4],[4,9],[1,4],[0,22],[-1,6],[-1,4],[0,3],[0,8],[1,6],[2,12],[1,8],[-1,3],[-2,6],[-1,3],[0,3],[2,6],[0,3],[-1,8],[-1,4],[-2,4],[-2,7],[1,3],[1,4],[1,5],[-2,6],[-1,3],[-7,29],[-1,4],[-2,3],[-2,1],[-1,3],[0,2],[-6,1],[-9,0],[-20,-1],[-21,0],[-20,0],[-20,0],[-20,0],[-20,0],[-21,0],[-20,0],[-20,0],[-20,-1],[-20,0],[-21,0],[-20,0],[-20,0],[-20,0],[-20,0],[-13,0],[-1,29],[0,28],[2,27],[6,33],[4,24],[7,42],[7,36],[-16,0],[-24,0],[-23,0],[-15,-1],[-3,-1],[-3,-3],[-2,-9],[-1,-9],[-1,-19],[0,-9],[-14,0],[-11,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-8,0],[-3,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-11,0],[-15,0],[5,-23],[1,-7],[-2,-9],[-7,-21],[-4,-11],[-2,-19],[-3,-96],[0,-19],[3,-20],[7,-39],[0,-19],[-8,-13],[-1,-1],[-4,-10],[-2,-24],[-4,-9],[-6,-2],[-19,3],[-1,-15],[3,-16],[3,-16],[2,-15],[0,-15],[-1,-15],[-5,-37],[-3,-17],[-4,-27],[-1,-19],[1,-15],[6,-46],[-8,0],[-35,0],[-35,0],[-36,0],[-35,0],[-13,0],[-4,14],[-2,7],[-1,17],[-2,3],[-20,0],[-22,0],[-20,0],[-3,-5],[-1,-11],[1,-23],[-5,0],[-2,1],[-17,-1],[-4,-1],[-6,-7],[-5,-3],[-3,1],[-11,8],[-13,1],[-21,2],[-4,-2],[-12,-11],[-4,-2],[-5,-7],[-3,-13],[0,-17],[2,-15],[-25,-1],[-8,4],[-14,25],[-8,8],[-9,3],[-5,-2],[-17,-20],[-3,-1],[-10,7],[-8,1],[-24,-17],[-8,0],[-15,8],[-2,5],[-3,9],[4,17],[-1,10],[-3,4],[-6,7],[-2,6],[-2,5],[-2,19],[-2,-3],[-1,-3],[-1,-2],[-1,4],[-1,2],[0,1],[2,5],[-6,6],[-3,4],[-1,4],[2,8],[2,5],[1,6],[-3,7],[-4,-2],[-1,4],[0,8],[-1,6],[-2,2],[-4,0],[-2,1],[3,6],[0,4],[-5,0],[-2,5],[0,7],[0,6],[-3,3],[-6,2],[-1,3],[-2,5],[-5,10],[-1,7],[1,6],[2,5],[0,6],[-5,4],[1,2],[0,1],[0,1],[-1,4],[-4,-4],[-1,9],[1,14],[-2,10],[1,11],[-5,9],[-14,14],[-4,13],[-5,28],[-3,14],[-3,5],[-2,3],[-2,4],[-1,6],[2,7],[3,3],[3,3],[2,3],[-1,5],[-3,2],[-6,4],[-2,2],[-2,3],[-1,-1],[-3,-9],[-3,6],[-2,8],[0,14],[0,7],[-1,9],[-3,5],[-8,8],[-9,14],[-7,5],[-2,7],[0,9],[0,9],[-5,14],[-3,7],[-3,4],[-1,5],[0,32],[-6,38],[1,15],[9,-5],[0,13],[2,10],[1,9],[-2,11],[-2,4],[-1,5],[-1,4],[-4,1],[-2,3],[0,5],[1,6],[0,2],[-2,34],[-3,15],[-7,10],[-3,1],[-7,2],[-3,2],[-3,6],[-1,8],[0,9],[-1,8],[-16,46],[-2,10],[-1,10],[-1,22],[-1,10],[-4,20],[-1,10],[1,10],[3,13],[0,5],[-2,7],[-3,6],[-2,5],[0,7],[2,8],[-6,1],[0,6],[3,8],[1,8],[0,7],[-2,1],[-2,-1],[-2,3],[-1,5],[-1,2],[1,23],[1,6],[2,2],[3,0],[1,3],[1,6],[-1,5],[-1,6],[0,5],[-1,43],[1,10],[2,8],[1,7],[-3,9],[-5,12],[-1,8],[-3,4],[-3,2],[-4,4],[-4,14],[-4,5],[-5,1],[6,15],[-2,6],[-2,-1],[-3,-3],[-1,0],[-1,6],[-1,38],[-1,5],[-1,6],[-3,8],[0,4],[4,9],[1,5],[-10,11],[-3,2],[-10,9],[-5,3],[-5,0],[-5,-2],[-9,-5],[-5,-1],[-4,1],[-6,7],[-5,7],[-4,6],[-7,3],[-17,0],[-25,-1],[-18,-1],[-7,0],[-26,-1],[-25,-1],[-25,-1],[-26,-1],[-25,0],[-25,-1],[-26,-1],[-25,-1],[-25,-1],[-26,-1],[-25,-1],[-26,-1],[-25,-1],[-25,0],[-11,-1],[-15,0],[-35,-14],[-9,2],[-18,9],[-12,-4],[-26,1],[-28,1],[-6,1],[-16,13],[-7,1],[-33,-5],[-4,3],[-7,8],[-10,7],[-38,-6],[-46,-8],[-22,5],[-3,-1],[-5,-5],[-3,0],[-8,5],[-23,1],[-9,0],[-2,-2],[-5,-13],[-3,-5],[-9,10],[-12,6],[-23,4]],[[53662,47001],[0,1],[-4,3],[-4,-1],[-9,-6],[-4,0],[-5,1],[-7,-1],[-8,3],[-13,13],[-4,1],[-10,9],[-4,2],[-8,0],[-11,-3],[-10,-6],[-7,-9],[-2,-2],[-6,-10],[-4,-10],[-3,-11],[-7,-18],[2,-28],[-15,-13],[-18,2],[-14,-17],[-22,-11],[-7,-4],[-4,0],[-1,10],[1,5],[6,7],[0,14],[0,5],[-3,3],[-5,1],[-4,-2],[-1,-4],[-2,-3],[-2,-9],[-3,13],[-2,10],[-1,5],[-1,3],[-4,3],[-1,2],[-5,16],[-19,40],[-5,13],[-11,38]],[[53391,47056],[14,16],[23,7],[26,0],[20,-1],[1,55],[1,39],[1,74],[1,70],[1,51],[1,45],[-2,20],[-3,5],[-17,13],[-2,3],[-1,6],[0,6],[0,5],[1,6],[2,1],[2,0],[2,0],[24,17],[10,14],[5,23],[0,12],[3,4],[11,2],[6,4],[2,7],[1,10],[2,12],[5,8],[12,15],[3,7],[0,14],[2,13],[3,13],[5,11],[8,10],[55,27],[10,8],[2,17]],[[53584,46994],[8,-3],[6,1],[5,2],[6,0],[-7,-11],[-8,-6],[-16,-6],[-4,-6],[-8,-6],[-9,-15],[-7,-4],[-6,1],[-4,11],[5,12],[9,13],[9,15],[7,2],[14,0]],[[58823,81324],[17,2],[9,-2],[7,-8],[1,-10],[0,-11],[1,-9],[5,-4],[5,1],[15,10],[10,1],[17,-6],[5,1],[38,24],[12,13],[9,22],[3,36],[2,11],[3,3],[4,3],[3,4],[1,6],[-1,5],[-5,13],[-1,6],[4,20],[11,3],[24,-11],[13,5],[55,-38],[8,0],[17,6],[8,0],[4,-3],[9,-9],[5,0],[5,3],[28,34],[5,3],[3,0],[4,-3],[2,1],[2,3],[4,8],[2,2],[6,3],[3,4],[7,12],[5,4],[4,1],[27,-7],[18,1],[5,-2],[6,-6],[1,-1],[5,-3],[5,1],[4,3],[3,5],[5,3],[5,-10],[-2,-23],[5,-9],[6,1],[19,25],[24,15],[13,3],[12,-1],[7,-3],[4,-6],[2,-8],[4,-10],[6,-7],[11,-10],[5,-9],[7,-21],[4,-6],[18,-16],[5,-7],[4,-9],[3,-7],[2,-6],[0,-6],[0,-6],[-4,-14],[0,-3],[1,-10],[0,-19],[2,-12],[3,-10],[6,-13],[1,-10],[-2,-9],[0,-5],[13,0],[6,-5],[10,-18],[2,-2],[4,-4],[1,-2],[1,-3],[1,-8],[0,-1],[3,-2],[5,3],[4,0],[5,-4],[9,-14],[5,-5],[7,-9],[4,-5],[7,-24],[1,-24],[-11,-17],[-5,-2],[-16,1],[-48,-15],[-10,-9],[-3,-14],[3,-5],[10,-4],[4,-4],[1,-4],[1,-12],[1,-6],[2,-4],[12,-18],[4,-8],[2,-11],[1,-12],[-1,-7],[-2,-10],[-1,-6],[0,-6],[1,-5],[1,-5],[-1,-6],[-2,-4],[-6,-2],[-2,-3],[1,-5],[3,-5],[6,-7],[4,-4],[5,-2],[4,-1],[5,0],[5,4],[3,-20],[-7,-20],[-11,-16],[-16,-15],[19,-11],[7,-2],[5,3],[10,11],[10,4],[10,-2],[20,-10],[9,-4],[18,4],[9,-2],[4,-5],[1,-8],[2,-10],[2,-8],[4,-6],[5,-2],[21,-2],[19,6],[23,13],[13,11],[4,0],[5,-3],[5,-5],[6,2],[5,3],[6,1],[5,-2],[4,-6],[2,-9],[7,-54],[6,-20],[8,-10],[9,-1],[19,6],[9,-1],[6,-3],[5,-4],[2,-6],[-2,-10],[-4,-5],[-15,-5],[1,-6],[0,-12],[0,-4],[1,-6],[2,-4],[7,-2],[3,-3],[4,-8],[0,-7],[-1,-7],[0,-10],[2,-7],[6,-11],[3,-7],[0,-8],[-1,-7],[1,-6],[4,-6],[7,-5],[3,-4],[2,-6],[3,-17],[-1,-14],[0,-13],[7,-12],[-22,-13],[-4,-7],[1,-7],[13,-72],[6,-15],[9,-5],[6,-2],[6,-2],[5,-6],[4,-10],[2,-14],[0,-11],[2,-9],[6,-9],[5,-5],[6,-4],[6,-3],[6,0],[5,2],[1,1],[4,6],[3,8],[5,7],[2,2],[5,0],[3,2],[3,4],[5,10],[4,5],[5,2],[26,4],[49,-5],[7,-6],[3,-11],[7,-5],[28,-61],[7,-4],[6,0],[7,4],[6,6],[5,7],[2,2],[4,0],[2,-1],[6,-5],[6,-2],[8,-7],[9,-3],[2,-1],[4,-4],[1,-2],[-1,-2],[0,-13],[-1,-6],[1,-5],[4,-5],[6,-3],[7,-2],[6,2],[5,4],[2,5],[5,13],[2,5],[4,5],[46,37],[18,9],[19,2],[20,-4],[40,16],[8,9],[16,22],[9,5],[28,5],[5,-4],[4,-15],[4,-20],[5,-15],[24,-17],[9,-12],[0,-25],[-3,-14],[0,-7],[0,-6],[2,-4],[10,-14],[26,-56],[10,-10],[22,-13],[11,-10],[10,-12],[8,-15],[9,-21],[0,-1],[5,-11],[0,-9],[1,-4],[6,6],[12,10],[4,2],[3,-1],[5,-5],[3,0],[13,12],[2,26],[-2,27],[2,18],[5,2],[17,-3],[8,2],[5,-1],[4,-6],[9,-34],[3,-7],[5,-3],[13,-2],[5,-3],[6,-6],[10,-5],[20,5],[14,-4],[3,2],[2,2],[7,3]],[[60739,80058],[1,2],[-1,-2]],[[60739,80058],[3,-11],[1,-10],[1,-5],[2,-3],[17,-16],[29,-12],[9,-12],[7,-15],[7,-10],[27,2],[4,2],[6,6],[8,19],[5,7],[11,6],[7,-9],[16,-56],[6,-12],[8,-7],[11,-4],[11,4],[11,7],[10,3],[10,-9],[5,-4],[17,-2],[3,-6],[3,-14],[5,-25],[7,-21],[8,-8],[10,-3],[11,-8],[15,-19],[5,-4],[8,0],[8,2],[9,5],[7,6],[16,23],[7,3],[5,0],[28,-10],[0,-1],[4,-5],[-1,-13],[-5,-8],[-10,-9],[-5,-6],[-6,-19],[2,-19],[6,-18],[11,-24],[13,-21],[3,-9],[-1,-11],[-4,-20],[0,-21],[-2,-6],[-7,-5],[-5,-6],[-9,-21],[-6,-8],[-16,-16],[-8,-10],[-6,-14],[-1,-9],[-1,-16],[-1,-7],[-3,-3],[-5,0],[-8,2],[-8,0],[-23,-11],[-14,1],[-5,-5],[-2,-30],[4,-7],[5,-5],[5,-7],[4,-11],[2,-8],[3,-6],[7,-4],[22,-7],[10,2],[3,-1],[3,-3],[5,-10],[4,-2],[6,4],[5,10],[5,7],[7,-2],[5,-9],[0,-12],[-4,-11],[-5,-10],[-12,-14],[-12,-2],[-30,17],[-7,0],[-6,-5],[-5,-9],[-3,-6],[-1,-7],[-3,-5],[-7,-4],[-2,-5],[-17,-80],[-3,-14],[11,0],[5,4],[33,-6],[8,-6],[5,-11],[2,-15],[1,-4],[0,-4],[1,-2],[0,-2],[-1,-5],[-3,-1],[-2,0],[-1,0],[0,-10],[3,-4],[3,-4],[9,-27],[3,-15],[2,-8],[2,-5],[-6,-9],[-5,-9],[-19,-23],[20,-17],[5,1],[15,8],[6,-2],[4,-10],[-1,-12],[-4,-11],[-4,-8],[-14,-14],[-5,-9],[-14,-37],[-3,-12],[-1,-14],[4,-18],[0,-5],[-1,-1],[-2,0],[-15,-4],[-3,-3],[-2,-5],[0,-3],[3,-4],[2,-6],[4,-13],[1,-6],[-1,-9],[-1,-5],[-3,-9],[0,-5],[0,-4],[1,-8],[0,-4],[-2,-17],[-4,-15],[-7,-10],[-10,-3],[-27,11],[-9,1],[-17,-5],[-8,2],[-6,3],[-12,-5],[-6,0],[-6,3],[-9,9],[-5,2],[-41,-6],[-11,-4],[-6,-1],[-5,3],[-15,14],[-1,0],[-44,3],[-13,-8],[-10,-17],[-7,-23],[-5,-27],[-2,-25],[-3,-9],[-6,-1],[-10,6],[-4,-2],[-5,-5],[-11,-17],[-5,-7],[-7,-4],[-58,-12],[-9,-9],[-8,-17],[-5,-21],[-4,-20],[1,-43],[-1,-16],[-7,-19],[-9,-16],[-3,-11],[-1,-9],[4,-6],[5,-1],[11,2],[5,0],[4,-3],[3,-7],[-1,-12],[-4,-8],[-6,-6],[-6,-5],[-5,-5],[-6,-13],[-1,-18],[1,-19],[4,-16]],[[60615,78365],[-6,-8],[-15,-31],[-9,-7],[6,19],[0,10],[-7,4],[-9,11],[-2,-1],[-1,-2],[-7,-6],[-3,-2],[-10,6],[-8,3],[-3,-3],[-25,6],[-30,-16],[-12,0],[-36,9],[-9,-5],[-18,-27],[-29,-60],[-7,-21],[-5,-10],[-6,-4],[1,15],[-6,12],[-9,7],[-10,2],[-5,-2],[-13,-14],[-32,-19],[-5,-1],[-3,-2],[-9,-12],[-3,-2],[-10,-5],[-14,-21],[-9,-2],[2,-14],[-4,-14],[-5,-13],[-3,-14],[-2,-16],[-5,-16],[-7,-10],[-7,3],[0,4],[2,0],[6,-3],[5,16],[3,21],[0,11],[-2,2],[-10,18],[-4,3],[-9,5],[-4,4],[-5,-4],[-5,1],[-8,3],[-4,-2],[-3,-4],[-3,-4],[-2,-2],[-18,0],[-12,-10],[-13,-4],[-9,-7],[-9,-9],[-18,-29],[-6,-14],[-1,-17],[-2,0],[0,9],[-1,2],[-3,-2],[-3,-2],[0,-4],[0,-1],[-2,6],[1,2],[0,4],[0,3],[-3,3],[-1,1],[-2,7],[-1,3],[-2,2],[-6,4],[-5,-1],[-10,-3],[-20,4],[-38,-10],[-7,0],[-21,-17],[-15,-13],[-8,-10],[-23,-39],[-9,-12],[-33,-25],[-5,-5],[-4,-7],[-9,-18],[-4,-6],[-10,-10],[-4,-6],[-26,-65],[-2,-2],[-4,-8],[-15,-43],[-7,-14],[-6,-11],[-12,-5],[-7,-9],[-9,-3],[-7,-7],[-10,-8],[-5,3],[1,5],[8,15],[10,9],[-1,3],[-1,6],[29,13],[14,11],[8,23],[7,11],[2,10],[9,21],[10,16],[4,9],[1,15],[-5,-7],[-5,-7],[-5,0],[-7,8],[-3,14],[2,15],[6,23],[-2,2],[-5,0],[-3,1],[-2,2],[-3,5],[-5,5],[-3,8],[-3,10],[-1,11],[-6,-11],[2,-12],[5,-11],[3,-9],[1,-7],[1,-5],[1,-5],[-1,-9],[-2,-6],[-10,-15],[-16,-37],[-1,-2],[-9,-14],[-12,-11],[-26,-10],[-3,0],[-3,2],[-2,3],[0,5],[-1,2],[-3,-2],[-2,-6],[0,-6],[-1,-6],[-12,-8],[-1,-3],[-5,-10],[-2,-6],[0,-6],[1,-5],[1,-9],[2,-38],[1,-9],[3,-9],[10,-72],[2,-8],[4,-7],[2,-7],[15,-59],[12,-36]],[[59722,77551],[-7,-7],[-7,3],[-9,15],[-13,15],[-17,7],[-6,11],[-1,15],[0,24],[0,18],[-6,19],[-8,13],[-13,12],[-13,4],[-11,-1],[-9,-1],[-11,2],[-3,-7],[-4,-11],[-11,3],[-9,10],[-6,9],[-5,13],[-4,12],[-5,16],[-7,8],[-9,0],[-8,8],[-11,8],[-9,2],[-11,-6],[-16,3],[-10,6],[-12,6],[-10,9],[-13,14],[-14,13],[-13,11],[-12,5],[-13,-6],[-11,1],[-13,14],[-2,-5],[3,-22],[-3,-15],[-9,-13]],[[59341,77786],[-5,12],[-4,6],[-7,-4],[-6,-8],[-5,-8],[0,-9],[7,-7],[0,-5],[-7,-1],[-7,-3],[-3,-7],[5,-13],[-2,0],[-6,4],[-17,0],[-3,3],[-8,17],[-8,10],[-7,2],[-6,-12],[-1,3],[-1,1],[-2,0],[-1,1],[4,6],[3,8],[0,7],[-6,3],[-22,-5],[2,8],[1,8],[2,41],[-6,-10],[-5,-17],[-5,-15],[-9,-6],[-2,-1],[-4,-3],[-3,0],[-2,1],[-6,7],[-16,12],[2,-17],[-4,-8],[-29,-7],[-4,0],[-2,1],[-3,2],[-1,0],[-7,0],[-2,0],[-15,8],[-7,1],[-4,-2],[-10,-7],[-35,-10],[-3,-1],[-3,-3],[-5,-8],[-2,-2],[-11,-2],[-56,24],[-6,6],[-3,0],[-2,0],[0,3],[-1,7],[-1,3],[-1,4],[-1,9],[-1,3],[5,7],[1,4],[1,6],[-8,-6],[-7,-1],[-8,2],[-12,7],[-4,1],[-4,3],[-10,20],[-8,10],[-9,-5],[-13,11],[-23,26],[-1,-7],[1,-8],[1,-6],[-2,-3],[-18,1],[-5,2],[-4,5],[-4,6],[-1,9],[3,8],[6,6],[4,4],[6,1],[15,-5],[21,5],[3,3],[15,20],[3,1],[4,0],[1,2],[-2,7],[-13,25],[-4,3],[-10,-1],[-13,3],[-38,23],[-7,3],[-6,0],[-4,-3],[-4,-7],[-2,-3],[-1,-5],[0,-5],[0,-19],[-6,25],[-2,4],[-4,2],[-33,49],[-4,14],[9,-11],[7,-12],[4,-3],[49,6],[9,-4],[16,-15],[1,0],[3,-2],[24,0],[24,-8],[16,4],[5,0],[31,-10],[15,-15],[12,-3],[12,1],[10,7],[8,12],[-5,11],[7,15],[20,24],[5,6],[13,2],[5,4],[4,7],[4,5],[4,5],[4,10],[-7,-4],[-8,-8],[-7,-6],[-7,2],[-37,-32],[-20,-4],[-19,16],[-4,10],[-2,1],[-3,-2],[-5,-8],[-2,-1],[-3,-1],[-6,-3],[-2,-1],[-7,-12],[-4,6],[-4,22],[-5,5],[-17,5],[-4,3],[-4,6],[-5,11],[-3,12],[-2,10],[-1,11],[-2,8],[-4,9],[-2,10],[-1,25],[5,18],[7,17],[6,21],[1,12],[0,9],[-3,5],[-14,4],[-3,5],[1,8],[9,18],[2,6],[-2,4],[-7,2],[-12,-3],[-6,1],[-4,6],[8,25],[1,15],[-4,15],[-4,5],[-4,2],[-3,2],[-2,9],[-1,11],[0,7],[-1,4],[-4,6],[-16,12],[-3,7],[2,12],[-1,4],[-2,2],[-2,-2],[-3,-11],[-1,-3],[1,-7],[5,-6],[5,-6],[12,-4],[3,-7],[0,-35],[1,-3],[7,-2],[2,-3],[1,-3],[2,-1],[3,-5],[-2,-10],[-4,-9],[-2,-4],[-2,-27],[9,-6],[12,3],[10,-3],[-9,-13],[-3,-10],[-2,-10],[3,-10],[5,-2],[6,3],[5,5],[2,-12],[-3,-18],[-5,-15],[-6,-7],[-7,-3],[-6,-9],[-3,-13],[0,-16],[10,-20],[1,-4],[-2,-26],[1,-11],[2,-4],[0,-4],[-3,-8],[-2,-3],[-6,-7],[-3,-2],[-12,-3],[-12,2],[-27,15],[-17,-2],[-5,-4],[-2,-8],[-3,-7],[-6,-1],[-2,2],[-4,5],[-3,1],[-5,-1],[-4,1],[-2,2],[-1,8],[3,10],[15,38],[4,13],[0,6],[3,4],[13,28],[-3,8],[-2,-4],[-2,-8],[-2,-7],[-2,-3],[-6,-3],[-2,-3],[-2,-3],[-5,-12],[0,-2],[-1,-2],[-3,-1],[-4,3],[-4,5],[-4,15],[-3,7],[-4,3],[3,-15],[1,-4],[0,-9],[2,-3],[2,-2],[9,-10],[1,-5],[-2,-7],[-5,-12],[-1,-3],[-4,-5],[-9,-22],[-4,-5],[-5,-2],[-13,-10],[-4,-4],[-4,3],[-7,1],[-4,4],[-2,-5],[-5,6],[-20,7],[-7,0],[-14,-7],[-15,-3],[-12,-5],[-6,-1],[-2,-3],[-7,-8],[-2,0],[-3,3],[-4,-2],[-16,-17],[-4,-2],[-12,4],[-2,0],[-4,-4],[-8,-17],[-2,-5],[1,-8],[5,-15],[2,-12],[1,0],[2,-3],[1,-3],[-1,-2],[-1,-1],[-1,-3],[-1,-3],[-2,-18],[-1,-3],[-11,-22],[-5,-6],[-15,1],[-2,-3],[1,-4],[6,-6],[2,-5],[1,-6],[-2,-6],[-8,-24],[-19,-41],[-6,-17],[-4,-8],[-4,-3],[-3,-5],[-5,-24],[-3,-8],[-34,-49],[-31,-60],[-15,-24],[-19,-21],[1,8],[-2,33],[-2,1],[-2,-4],[-3,-5],[-1,-7],[-1,-16],[0,-4],[-1,-4],[0,-3],[-1,-2],[-2,-1],[-1,1],[-1,3],[-2,1],[-1,-3],[-2,-2],[-13,16],[-7,4],[-6,-5],[-2,-12],[-1,-14],[-1,-14],[-3,7],[-3,6],[0,4],[2,6],[-1,4],[-3,-2],[-2,-8],[0,-10],[1,-8],[2,-6],[3,-5],[-2,-16],[-1,6],[-3,4],[-6,6],[0,3],[0,2],[0,3],[-2,0],[-2,-1],[-1,-3],[0,-2],[-1,-2],[-7,0],[-7,-2],[-6,-6],[-2,-12],[2,-8],[4,-3],[7,-5],[4,-6],[2,-5],[-1,-2],[-5,-3],[-4,-5],[-5,-4],[-6,4],[-1,-3],[0,-2],[0,-2],[1,-4],[-4,-4],[-8,-4],[-3,-5],[0,16],[-3,16],[-5,12],[-6,5],[0,4],[-1,28],[1,10],[2,4],[1,4],[-3,7],[-1,3],[-1,1],[-1,1],[-6,7],[-1,3],[-1,5],[-2,0],[-1,-3],[-1,-5],[1,-4],[4,-8],[1,-2],[-1,-5],[-5,-11],[-2,-7],[0,-9],[1,-4],[1,-4],[2,-7],[-9,-11],[-2,-23],[0,-29],[-2,-27],[7,-5],[4,-2],[5,-1],[5,2],[4,4],[7,11],[-3,-7],[-9,-21],[-4,-5],[-3,-2],[-2,-6],[-1,-5],[-2,-3],[-4,-2],[0,-5],[5,-15],[2,-4],[3,-3],[3,1],[1,5],[0,7],[0,6],[5,2],[0,-14],[1,-2],[1,0],[2,2],[-1,2],[3,-1],[2,1],[2,-3],[1,-9],[2,9],[1,10],[2,4],[5,-7],[2,-10],[0,-11],[-2,-8],[-6,0],[4,-6],[2,-11],[1,-13],[1,-25],[0,-5],[-1,-6],[-3,-8],[0,-5],[-3,-14],[-1,-6],[0,-5],[1,-1],[-1,0],[-5,-8],[-5,-4],[-5,-2],[-4,1]],[[58238,77247],[1,4],[1,5],[0,4],[-2,4],[4,17],[-2,23],[-4,20],[-7,9],[-3,3],[-13,17],[-38,21],[-22,3],[-2,2],[-4,2],[-3,1],[-2,-2],[-2,-4],[-2,-3],[-2,-2],[-3,-2],[-6,0],[-4,2],[-5,-1],[-6,-5],[-4,-5],[-2,-4],[-1,-5],[-2,-1],[-6,-1],[-3,-2],[-4,-6],[-4,-3],[-12,-5],[-14,-18],[-4,-3],[-6,0],[-2,-1],[-2,-2],[-2,-5],[-1,-12],[-1,-4],[-6,-3],[-6,5],[-5,7],[-3,4],[-6,1],[-8,8],[-4,2],[-7,-2],[-1,-9],[1,-9],[-8,-6],[-1,-4],[1,-6],[1,-4],[2,-3],[8,-5],[-3,-6],[-4,-2],[-8,0],[-11,-2],[-37,12],[-23,18],[-24,10],[-10,8],[-5,2],[-6,7],[-5,14],[-9,32],[2,12],[-6,11],[-8,7],[-6,-1],[-1,0],[-3,7]],[[57833,77393],[0,4],[2,7],[3,7],[14,17],[20,-2],[21,-8],[18,-1],[6,4],[1,7],[-2,20],[0,1],[0,1],[1,5],[2,2],[7,6],[-3,8],[-2,8],[0,8],[-2,8],[-3,6],[-5,4],[-2,4],[2,7],[6,14],[3,5],[5,5],[8,4],[2,4],[-1,7],[-1,4],[4,12],[19,2],[7,7],[1,5],[0,6],[-1,6],[0,3],[2,3],[8,3],[6,4],[3,5],[2,8],[1,12],[-2,10],[-3,20],[0,10],[3,9],[5,5],[48,18],[7,5],[1,12],[-5,26],[-1,14],[2,10],[10,16],[6,16],[3,14],[-1,13],[-7,10],[-10,12],[0,1],[-4,9],[-1,8],[2,9],[2,10],[0,9],[-5,28],[-2,22],[1,17],[6,13],[21,20],[10,6],[5,3],[24,20],[6,0],[5,-8],[1,-13],[1,-50],[-1,-7],[-2,-6],[-2,-5],[-2,-6],[0,-6],[5,-6],[6,6],[10,16],[3,2],[2,-1],[2,1],[2,7],[0,6],[-2,12],[1,7],[5,12],[4,-2],[7,-20],[5,-11],[3,0],[12,27],[5,9],[6,4],[0,1],[7,-2],[1,-4],[1,-3],[-1,-5],[-1,-4],[-2,-4],[-1,-5],[1,-4],[2,-5],[4,-2],[8,-3],[4,-2],[4,-5],[4,-13],[4,-8],[4,-3],[5,-1],[5,2],[3,6],[2,10],[-1,14],[2,4],[8,0],[5,3],[3,9],[0,17],[4,-10],[15,-20],[5,-14],[2,-5],[0,-5],[0,-11],[0,-4],[6,-9],[5,1],[11,13],[5,4],[4,2],[33,-3],[12,3],[8,11],[6,18],[-3,3],[-5,2],[-4,-1],[-3,-4],[-5,8],[-12,15],[2,5],[-4,11],[-1,3],[-3,3],[-1,0],[-4,-3],[-1,-1],[-1,1],[-2,6],[0,1],[-13,8],[-3,7],[-1,13],[4,1],[7,2],[3,12],[-1,6],[-3,12],[-1,6],[0,8],[1,6],[1,5],[1,7],[3,37],[-1,11],[-1,4],[-3,9],[-1,4],[-1,5],[0,13],[0,4],[-3,3],[-3,-2],[-2,-3],[-3,1],[-1,3],[-2,11],[-2,4],[-8,9],[-8,2],[-8,-1],[-9,2],[-5,5],[-6,16],[-5,6],[-4,3],[-9,1],[-5,2],[-2,3],[-4,7],[-3,2],[-7,0],[-1,0],[-3,7],[0,7],[1,2],[1,8],[2,22],[3,6],[3,6],[2,8],[0,9],[-2,8],[-3,6],[-4,4],[-5,-1],[-3,-7],[-3,-7],[-3,-4],[-2,4],[-8,23],[-1,2],[0,2],[0,2],[1,1],[7,1],[6,3],[4,7],[2,15],[-3,31],[1,12],[7,6],[3,10],[0,14],[-3,13],[-3,11],[-5,6],[-5,2],[-6,1],[-5,-1],[-3,-9],[-2,-9],[-1,-8],[-5,-7],[-5,-2],[-4,0],[-4,3],[-4,5],[-3,7],[-1,2],[-1,9],[0,8],[-1,10],[-4,7],[-4,3],[-5,1],[-3,4],[-3,6],[-1,7],[-2,6],[-8,9],[-5,12],[-4,3],[-5,-3],[-3,-6],[-2,-4],[-6,6],[-2,6],[-4,18],[-1,2],[-2,6],[-3,24],[3,15],[7,14],[8,18],[2,22],[0,21],[2,19],[8,15],[3,7],[-1,7],[-3,5],[-10,5],[-3,3],[0,7],[3,10],[3,7],[5,8],[5,8],[1,8],[-3,3],[-11,5],[-4,4],[-2,9],[-3,20],[-2,10],[-3,7],[-4,5],[-3,2],[-5,0],[-9,-6],[-12,-23],[-10,-3],[-9,5],[-4,5],[-6,6],[-9,14],[-5,14],[-2,5],[-5,6],[-2,4],[0,3],[-1,16],[-4,15],[-1,4],[0,4],[-1,4],[-2,5],[-8,8],[-10,2],[-19,1],[-25,15],[-9,0],[-7,-4],[-5,-21],[0,-3],[-2,-10],[0,-10],[-1,-5],[-3,-1],[-5,6],[-4,5],[-7,23],[4,8],[1,9],[-3,8],[-4,4],[-7,-1],[-3,-7],[-3,-9],[-5,-7],[-6,-2],[-3,5],[0,8],[2,9],[4,7],[4,4],[3,5],[2,12],[-1,12],[-2,4],[-5,1],[-13,-2],[-5,-4],[-4,-6],[-6,-5],[-7,-2],[-4,2],[-3,7],[-1,12],[-2,9],[-5,-1],[-8,-10],[-5,-2],[-6,1],[-4,4],[6,23],[-2,11],[-5,7],[-5,4],[-15,3],[-10,2],[-11,6],[-6,14],[-3,2],[-3,7],[-5,12],[-5,7],[-17,18],[-10,7],[-34,-1],[-6,4],[-1,16],[-6,1],[-7,-7],[-3,-1],[-12,0],[-6,-13],[-17,-20],[-4,-3],[-4,2],[-8,10],[-6,2],[-10,-7],[-15,-27],[-1,-3],[-11,-7],[-9,0],[-29,16],[-6,5],[-3,2],[-3,-2],[-1,-4],[1,-5],[0,-4],[0,-2],[1,-4],[1,-3],[-2,-1],[-3,1],[-3,-1],[-2,2],[-2,1],[-3,-4],[-10,-3],[-10,8],[-9,11],[-9,6],[-3,-1],[-1,-4],[-1,-4],[-2,-4],[-2,0],[-5,3],[-1,0],[-3,-6],[0,-5],[1,-8],[2,-11],[0,-11],[-1,-8],[-3,-4],[-6,-1],[-5,4],[-3,6],[-3,7],[-4,7],[-6,3],[-1,-6],[-1,-7],[-10,-8],[-3,-7],[-2,-10],[0,-5]],[[57393,79049],[-8,-5],[-35,-12],[-5,-1],[-13,-1],[-5,-2],[-9,-6],[-5,-3],[-5,1],[-2,2],[-2,-20],[0,-13],[-3,-19],[-4,-19],[-4,-12],[-4,-6],[-7,-9],[-3,-6],[-7,-20],[-2,-6],[-13,-9],[-7,0],[-20,0],[-18,-8],[-13,2],[-5,-1],[-8,-5],[-15,-3],[-18,-11],[-136,-21],[-12,-12],[-27,-64],[-12,-16],[-17,-11],[-21,-5],[-4,-1],[-9,-3],[-5,5],[-7,15],[-9,24],[-3,7],[-4,5],[-23,13],[-9,8],[-5,8],[-1,8],[-1,7],[-2,10],[-4,8],[-7,8],[-11,9],[-2,2],[-5,2],[-16,-1],[-16,6],[-5,0],[-7,-5],[-10,-14],[-14,-1],[-19,-13],[-6,0],[-16,9],[-1,0],[-4,1],[-11,14],[-5,4],[-14,5],[-4,5],[-9,1],[-28,-17],[-6,0],[-2,9],[-14,19],[-5,4],[-19,-2],[-7,1],[-11,6],[-18,3],[-5,2],[-11,-2],[-3,-2],[-3,-3],[-1,-4],[-1,-4],[-2,-2],[-1,-1],[-1,-2],[-6,0],[-18,13],[-1,0],[-3,-1],[-2,-1],[-2,1],[-2,1],[-6,10],[-13,17],[-12,19],[-4,5],[-20,10],[-6,1],[-6,-4],[-5,-12],[-6,-28],[-4,-10],[-12,-13],[-4,-1],[-5,2],[-4,4],[-5,4],[-5,3],[-4,0],[-2,-7],[2,-12],[-2,-8],[-5,-5],[-6,-3]],[[56354,78864],[-10,12],[-2,7],[5,9],[0,9],[2,6],[1,6],[-2,11],[-3,8],[-4,7],[-8,11],[-10,8],[-1,3],[-4,4],[-5,-2],[-5,-4],[-5,-3],[-20,0],[-4,-3],[-2,3],[-4,14],[-4,19],[-4,12],[-21,39],[-1,0],[-1,1],[-1,0],[-6,-4],[-4,-1],[-4,1],[-6,4],[-1,0],[-1,0],[-1,-1],[-2,-3],[-2,0],[-2,0],[-2,3],[-14,30],[-3,12],[0,8],[1,7],[0,6],[-3,5],[-1,0],[-8,0],[0,9],[4,18],[-10,7],[-9,2],[-9,-6],[-3,-4],[-1,0],[-7,2]],[[56147,79136],[1,42],[3,10],[1,9],[-3,24],[0,12],[4,10],[18,21],[2,4],[3,9],[2,5],[4,3],[7,3],[3,3],[5,9],[3,11],[2,12],[0,13],[0,8],[3,4],[2,3],[3,5],[1,6],[1,4],[0,20],[-1,5],[0,5],[2,7],[1,1],[2,4],[6,8],[3,6],[0,3],[0,8],[1,3],[3,10],[6,25],[5,6],[11,2],[4,5],[0,10],[1,14],[2,13],[2,10]],[[56260,79531],[6,8],[6,-3],[10,-16],[7,-6],[6,-1],[6,1],[10,-2],[6,3],[3,0],[3,-4],[5,-10],[3,-2],[5,-3],[6,-8],[6,-3],[3,9],[0,2],[-1,1],[-4,11],[-1,6],[0,8],[3,11],[0,5],[-4,6],[-12,10],[-5,5],[-8,15],[-9,9],[1,1],[-4,4],[-4,-6],[-1,-1],[-2,3],[1,7],[5,13],[4,21],[4,18],[1,8],[-3,55],[-2,9],[-1,5],[-6,8],[-4,8],[0,4],[-1,6],[-2,25],[-2,9],[-5,21],[7,23],[21,39],[4,19],[2,5],[3,4],[6,2],[3,2],[5,6],[17,43],[3,5],[2,2],[5,2],[3,4],[1,4],[2,12],[2,5],[11,16],[31,61],[11,17],[10,11],[8,18],[64,94],[12,13],[15,16],[8,9],[22,33],[4,7],[0,1],[4,16],[3,8],[4,6],[4,3],[10,4],[50,1],[15,8],[6,20],[1,6],[1,8],[-1,11],[1,7],[18,13],[5,8],[4,6],[0,2],[-1,1],[-2,8],[-3,28],[6,15],[0,1],[-7,23],[-2,12],[2,14],[-8,2],[-7,7],[-4,9],[3,10],[0,4],[-7,1],[-7,4],[-4,8],[-1,11],[4,10],[6,7],[8,1],[7,-6],[6,4],[9,0],[8,2],[4,11],[-4,7],[-23,17],[-19,24],[-4,9],[-1,8],[-1,5],[0,5],[-3,6],[-4,3],[-3,2],[-2,3],[1,4],[0,4],[-4,25],[-2,8],[-7,15],[-4,12],[1,5],[4,3],[-3,7],[-13,18],[-14,12],[-6,11],[-16,45],[-5,4],[-5,0],[-4,3],[-2,13],[1,8],[4,8],[5,7],[5,3],[-1,8],[0,6],[2,4],[3,2],[-2,7],[-11,22],[-1,4],[4,12],[-4,4],[-5,2],[-4,4],[-2,8],[0,4]],[[56557,80979],[2,-3],[3,2],[1,9],[-1,6],[-7,28],[-2,5],[0,5],[4,8],[3,4],[3,2],[27,10],[7,-1],[19,-8],[7,0],[11,-6],[8,-13],[8,-10],[11,3],[41,49],[32,29],[8,15],[6,38],[5,12],[10,20],[6,8],[6,3],[69,7],[17,-6],[6,0],[78,17],[25,17],[12,6],[13,0],[47,-17],[54,-1],[38,-1],[23,6],[59,-14],[20,0],[8,-2],[18,-21],[8,-5],[65,-4],[3,-2],[0,-4],[-1,-5],[1,-6],[4,-7],[3,-2],[62,-3],[52,-31],[18,-4],[28,13],[25,-1],[11,-3],[8,-6],[2,-9],[-1,-13],[0,-16],[2,-11],[4,-5],[6,-1],[6,1],[9,-3],[-1,-10],[-4,-13],[-2,-10],[4,-4],[6,0],[11,5],[16,-4],[6,1],[6,4],[8,11],[5,4],[10,0],[30,-16],[15,-1],[5,-3],[3,-13],[-2,-15],[-9,-30],[0,-1],[2,-3],[3,-6],[5,-5],[4,-2],[4,1],[3,4],[13,23],[2,4],[1,8],[0,6],[-1,7],[0,7],[2,12],[3,10],[5,7],[7,1],[6,-4],[16,-25],[6,-3],[5,-2],[27,0],[5,2],[7,8],[9,23],[5,12],[6,7],[7,4],[5,-1],[4,-6],[1,-6],[0,-5],[0,-5],[3,-7],[3,-4],[8,-7],[4,-5],[1,-6],[3,-17],[2,-4],[4,-2],[3,2],[7,9],[14,13],[7,3],[8,0],[25,-7],[7,-4],[2,-8],[1,-12],[4,-33],[2,-8],[3,-6],[5,-3],[4,2],[3,3],[4,0],[2,-8],[2,-11],[3,-6],[5,8],[1,9],[-1,22],[1,10],[6,16],[7,13],[9,9],[9,7],[8,2],[17,0],[8,4],[5,8],[7,18],[5,7],[6,3],[5,0],[11,-3],[7,-6],[4,-7],[5,-22],[10,-18],[3,-10],[1,-15],[-3,-16],[2,-7],[5,-4],[6,-9],[3,-11],[2,-13],[3,-11],[7,-5],[6,3],[3,4],[7,8],[7,3],[12,-6],[5,0],[5,9],[4,15],[2,7],[4,2],[7,1],[7,4],[4,7],[4,7],[6,7],[5,3],[7,2],[6,-1],[4,-5],[5,-11],[2,-9],[4,-6],[25,-6],[5,2],[3,4],[5,12],[3,3],[3,0],[4,-4],[4,0],[17,12],[6,2],[39,1],[8,-2],[8,-8],[10,-19],[4,-6],[14,-9],[4,-4],[1,-4],[1,-4],[0,-5],[0,-6],[0,-5],[-2,-12],[-1,-1],[2,-6],[8,-15],[4,-4],[4,-2],[9,0],[4,-2],[4,-5],[6,-12],[4,-2],[4,1],[4,-2],[3,-3],[4,-5],[2,-5],[3,1],[1,3],[0,1],[0,14],[1,1],[5,12],[1,8],[8,9],[8,11],[-2,16],[4,2],[0,3],[-2,4],[-2,3],[-2,17],[-2,4],[-3,3],[-3,0],[-2,2],[-1,7],[1,7],[2,4],[3,2],[3,-1],[0,4],[-2,2],[-3,2],[-3,5],[-1,7],[2,5],[-2,4],[-3,4],[-3,4],[2,2],[2,3],[2,7],[-5,3],[-9,3],[-3,6],[0,4],[1,1],[1,1],[1,1],[3,1],[0,4],[-3,2],[-5,6],[0,4],[8,10],[3,2],[-1,6],[0,2],[1,1],[2,5],[2,2],[-1,9],[3,12],[-2,8],[4,2],[8,0],[3,2],[2,5],[0,8],[1,7],[3,4],[0,4],[-2,1],[-6,3],[4,6],[6,5],[5,7],[0,9],[-2,6],[0,2],[1,2],[2,4],[6,10],[0,2],[2,2],[1,4],[2,4],[6,4],[1,5],[0,6],[1,3],[2,1],[8,-1],[3,2],[2,4],[4,6],[0,5],[-2,2],[0,4],[0,2],[8,4],[4,3],[3,4],[3,4],[3,5],[0,2],[0,3],[0,4],[3,3],[2,3],[2,1],[1,-1],[2,-4],[7,1],[3,8],[-3,8],[-8,1],[1,3],[0,3],[1,3],[2,3],[-2,10],[4,6],[7,3],[38,3],[11,-2],[7,-5],[12,-14],[7,-4],[7,4],[4,10],[4,12],[6,10],[22,11],[25,1],[49,-13],[32,2]],[[58310,77528],[44,61],[14,11],[-61,-86],[-28,-31],[-21,-13],[14,11],[6,7],[2,5],[1,6],[4,2],[4,1],[4,2],[4,5],[8,13],[5,6]],[[59163,77737],[3,-5],[13,2],[3,-8],[-5,-7],[-117,28],[2,4],[2,0],[2,-4],[40,-8],[19,6],[8,-1],[9,-9],[12,7],[6,1],[3,-6]],[[58872,77833],[36,-13],[23,-16],[3,-4],[-6,2],[-11,8],[-102,32],[-43,25],[-9,12],[-7,18],[-3,10],[-2,15],[0,11],[5,-3],[4,-25],[5,-18],[6,-12],[11,-10],[90,-32]],[[56557,80979],[-1,8],[-4,3],[-5,2],[-3,9],[2,0],[2,0],[-6,14],[-3,9],[-1,8],[2,16],[-1,6],[-3,4],[0,5],[3,0],[1,2],[4,6],[-1,2],[-2,4],[-1,4],[1,2],[3,1],[-1,4],[-2,4],[-1,3],[2,14],[1,6],[1,4],[5,8],[6,4],[5,7],[3,14],[-5,9],[-5,11],[4,5],[1,13],[3,2],[0,3],[0,1],[-1,0],[-1,0],[2,7],[0,19],[2,11],[5,16],[4,8],[4,4],[-3,10],[-4,23],[-2,7],[0,7],[-2,7],[-3,3],[-3,1],[-1,4],[-2,5],[-2,5],[-5,4],[-13,-1],[-5,3],[-8,20],[1,2],[1,7],[-1,4],[-5,-6],[-2,3],[-2,3],[-2,3],[-3,-6],[-3,1],[-2,3],[-4,2],[-4,-2],[-1,1],[2,5],[0,4],[-6,1],[-17,8],[-3,5],[-5,-2],[-20,7],[-6,5],[2,11],[-1,8],[-3,5],[-2,3],[-2,2],[-1,0],[13,35],[5,10],[11,18],[34,68],[25,26],[24,19],[47,17],[37,33],[11,17],[4,26],[-1,17],[-2,72],[-1,5],[-1,3],[-1,3],[0,7],[0,4],[3,8],[1,4],[0,5],[-2,16],[0,4],[0,7],[0,5],[-3,8],[-9,14],[-2,10],[0,12],[3,8],[3,7],[3,9],[1,14],[-3,7],[-5,5],[-5,7],[-3,9],[-3,9],[-2,8],[-5,9],[-5,16],[-11,56],[-6,19],[-13,35],[-24,92],[-6,41],[-1,37],[-7,12],[-2,12],[-3,32],[-3,15],[-4,13],[-2,15],[-1,17]],[[56523,82413],[10,-3],[25,-19],[5,-2],[4,0],[14,8],[17,3],[5,4],[4,3],[2,-1],[5,-4],[2,-1],[2,1],[22,15],[4,1],[4,-2],[8,-7],[5,-1],[18,0],[8,3],[17,12],[9,2],[9,-4],[8,-12],[5,-17],[3,-6],[5,-1],[9,1],[9,-4],[10,0],[10,7],[32,36],[14,10],[18,4],[6,7],[1,0],[1,0],[1,-1],[4,-12],[4,-5],[5,0],[18,3],[5,4],[4,10],[0,16],[-2,11],[-4,10],[-3,13],[-2,9],[1,2],[2,0],[2,4],[5,4],[1,3],[-1,4],[0,4],[1,4],[8,6],[2,1],[13,2],[13,-2],[21,-11],[13,3],[12,9],[11,16],[5,13],[6,28],[3,7],[5,1],[18,-8],[23,2],[6,6],[11,20],[7,4],[4,-1],[2,-2],[1,-3],[20,-34],[-3,-2],[-6,1],[-6,-4],[0,-6],[6,-5],[2,-5],[-2,-4],[-8,-4],[-2,-4],[2,-10],[6,-8],[8,-5],[24,-5],[6,0],[3,3],[5,7],[3,2],[10,-2],[3,1],[7,6],[2,9],[0,27],[1,3],[3,6],[1,2],[-1,4],[-1,1],[-1,1],[-2,2],[-1,6],[-3,6],[-2,4],[-3,4],[-1,0],[-3,-1],[-1,0],[-1,2],[-3,11],[-1,5],[-2,5],[-4,3],[-4,-1],[-16,-11],[-12,-1],[-6,3],[-4,7],[0,15],[5,13],[13,19],[5,13],[1,11],[0,13],[1,15],[3,12],[4,7],[17,13],[6,7],[4,9],[1,12],[-2,11],[-6,21],[-2,12],[0,7],[1,6],[2,6],[1,6],[0,6],[-1,30],[1,8],[3,6],[6,6],[3,2],[2,0],[1,1],[1,5],[0,5],[-2,12],[-1,5],[3,11],[6,7],[6,7],[6,8],[2,6],[0,5],[1,5],[4,3],[10,6],[5,0],[10,-3],[5,0],[34,8],[10,7],[4,6],[5,8],[5,10],[10,27],[1,5],[1,7],[0,15],[0,7],[9,16],[13,3],[30,-10],[3,0],[2,1],[2,3],[2,3],[2,3],[4,1],[29,-16],[7,1],[4,9],[3,17],[2,16],[2,7],[4,7],[8,10],[4,3],[11,3],[7,3],[7,6],[3,9],[-2,10],[-7,6],[-46,10],[-17,-5],[-4,0],[-17,7],[-4,4],[-2,6],[3,11],[7,15],[2,6],[3,22],[3,7],[10,12],[0,7],[-5,12],[1,14],[6,11],[7,10],[5,10],[3,13],[0,16],[-1,15],[-2,14]],[[57387,83436],[6,13],[6,4],[8,-1],[15,-7],[6,1],[22,14],[6,7],[16,36],[16,23],[6,5],[36,6],[11,-3],[7,-4],[17,-17],[7,-5],[6,2],[13,16],[6,8],[6,-10],[9,-6],[9,-4],[35,-3],[8,1],[3,9],[2,13],[2,28],[8,26],[27,22],[9,19],[1,14],[9,11],[19,18],[3,7],[3,8],[3,6],[4,5],[3,3],[12,3],[12,6],[7,7],[5,4],[12,6],[11,-9]],[[57819,83718],[5,-10],[19,-25],[9,-15],[6,-7],[6,-2],[6,4],[9,18],[6,5],[42,6],[15,-4],[5,-2],[3,-3],[4,-10],[10,-17],[2,-6],[3,-14],[1,-14],[3,-12],[8,-8],[21,-7],[6,2],[1,14],[7,9],[17,9],[17,13],[14,6],[16,-1],[15,-6],[14,-12],[8,-8],[43,-15],[5,-3],[5,-6],[5,-8],[2,-6],[1,-4],[-1,-4],[-2,-1],[-2,0],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-2,-5],[-1,-6],[-2,-14],[-1,-6],[-6,-20],[-2,-9],[2,-13],[4,-8],[14,-15],[13,-24],[6,-3],[7,2],[22,32],[27,19],[7,2],[20,-6],[7,4],[11,25],[6,10],[11,8],[11,3],[11,-1],[33,-15],[8,3],[12,15],[6,4],[5,-2],[10,-10],[5,-5],[55,-22],[2,-3],[0,-5],[-1,-5],[-1,-5],[3,-5],[25,-14],[3,-3],[2,-4],[1,-8],[-1,-5],[-1,-5],[0,-5],[3,-9],[6,-4],[6,-2],[12,1],[3,-2],[3,-6],[3,-9],[8,-20],[8,-1],[9,6],[12,5],[11,-6],[6,-13],[1,-4],[2,-22],[-5,-21],[4,-3],[1,-1],[-2,-7],[-7,-7],[-1,-10],[2,-11],[4,-7],[4,-8],[0,-12],[-4,-7],[-16,-15],[-10,-16],[-4,-11],[-1,-11],[3,-8],[5,-5],[10,-6],[3,-7],[5,-22],[4,-8],[13,-12],[3,-5],[1,-3],[-1,-5],[0,-3],[1,-1],[3,-1],[1,-1],[1,-3],[1,-2],[0,-3],[-1,-6],[-2,-4],[-1,-4],[1,-5],[2,-4],[4,-12],[3,-14],[0,-12],[-7,-2],[-13,4],[-6,-1],[-1,-7],[2,-10],[4,-6],[2,-7],[-5,-12],[-5,-4],[-17,-5],[-7,-6],[1,-6],[3,-9],[-1,-15],[-4,-10],[-6,-8],[-6,-10],[-1,-17],[2,-9],[4,-4],[12,-5],[42,-39],[4,-9],[1,-11],[6,1],[24,-3],[6,-16],[11,-12],[-8,-23],[-14,-27],[-7,-26],[9,-8],[20,-7],[3,-8],[9,-3],[4,-12],[7,-31],[3,-7],[4,-5],[3,-5],[2,-10],[2,-34],[3,-17],[4,-9],[43,-43],[7,-8],[7,-3],[14,-5],[24,-16],[8,-3],[8,0],[3,-2],[3,-5],[2,-6],[2,-9],[3,-7],[3,-2],[7,6],[2,1],[2,-2],[0,-2],[0,-3],[7,-31],[-2,-5],[0,-4],[0,-5],[-1,-4],[-3,-13],[-4,-34],[-5,-15],[-11,-23],[-3,-14],[12,-1],[24,-10],[59,20],[6,-2],[16,-15],[35,-12],[10,-9],[9,-16],[4,-3],[13,1],[6,-1],[6,-4],[5,-9],[2,-4],[0,-5],[0,-4],[-2,-5],[-21,-13],[-2,-3],[0,-4],[1,-11],[3,-16],[5,-12],[6,-9],[8,-7],[14,-8],[6,-6],[5,-11],[2,-4],[2,-1],[2,1],[2,4],[5,1],[5,-1],[4,-3],[-1,-5],[-1,-6],[1,-7],[3,-1],[9,4],[3,0],[5,-14],[0,-5],[-4,-38],[4,-19],[-6,-5],[-4,1],[-5,2],[-4,2],[-20,-6],[1,-2],[3,-5],[1,-2],[-8,-6],[-8,-2],[-9,1],[-7,5],[-7,-3],[-2,-7],[2,-6],[6,-2],[-2,-12],[-4,-11],[-9,-19],[-5,-7],[-5,-3],[-10,-4],[-9,-11],[-7,-13],[-7,-9],[-15,0],[-1,-2],[-1,-3],[0,-2],[0,-2],[0,-3],[-1,-3],[-1,-1],[-1,0],[-2,1],[-10,-2],[-8,-7],[-2,-2],[-10,1],[-20,10],[-8,-1],[-7,-5],[-7,-1],[-6,2],[-15,11],[-3,1],[-10,-1],[-3,2],[-5,9],[-3,24],[-3,11],[-5,3],[-13,0],[-5,2],[-17,8],[-6,1],[-5,-2],[-11,-8],[-6,0],[-14,3],[-13,0],[-10,-10],[-5,-29],[0,-7],[0,-1],[1,-6],[0,-6],[0,-6],[-3,-4],[-7,-2],[-3,-2],[-14,-28],[-6,-8],[21,-23],[5,-11],[7,-29],[6,-12],[9,-11],[9,-8],[8,-3],[7,-1],[2,-5],[1,-8],[2,-9],[4,-7],[3,-4],[3,-4],[3,-12],[0,-25],[-6,-11],[-19,-14],[3,-9],[12,-22],[9,-24],[3,-7],[10,-11],[4,-7],[-1,-6],[-4,-1],[-10,3],[-4,0],[1,-2],[4,-7],[-5,-3],[-3,-5],[1,-6],[4,-5],[6,-6],[0,-15],[-1,-18],[-1,-15],[3,-6],[2,-5],[2,-7],[1,-10],[-2,-8],[-3,-8],[-3,-6],[-4,-4],[8,-16],[5,-6],[5,-5],[5,-3],[9,-2],[5,-3],[-3,-5],[-2,-8],[-1,-8],[1,-9],[2,-6],[3,-3],[14,-13],[3,-8],[1,-12],[0,-18]],[[54579,33548],[-5,-7],[-3,-9],[-3,-6],[-8,2],[-3,4],[-17,26],[-8,19],[-4,12],[-30,57],[-5,4],[-2,3],[-17,43],[-18,39],[-37,51],[-7,14],[-14,35],[-20,30],[-4,8],[-9,26],[-9,18],[-1,5],[-1,6],[2,12],[1,6],[-4,19],[-7,19],[-28,53],[-4,10],[-1,15],[0,30],[-1,5],[-1,8],[-27,81],[-4,19],[-4,9],[-4,4],[-3,5],[-8,32],[-11,28],[-2,6],[-4,47],[-1,6],[-2,4],[-2,5],[0,7],[2,24],[-4,39],[2,8],[-6,22],[-1,11],[-1,14],[0,24],[-1,12],[-5,11],[-2,1],[-5,1],[-2,2],[-1,2],[-2,6],[-2,6],[-1,0],[-1,13],[-2,11],[-8,36],[-2,10],[1,16],[-3,11],[-3,12],[-3,10],[0,14],[0,12],[3,8],[4,3],[3,2],[2,2],[3,0],[0,-6],[0,-23],[2,0],[1,12],[6,31],[0,6],[-2,8],[-5,36],[-4,36],[-7,22],[-9,18],[-10,14],[-17,13],[-2,6],[-2,46],[1,45],[-6,16],[-1,4],[1,7],[2,0],[2,-1],[3,2],[4,19],[-1,25],[-3,26],[-4,19],[-13,40],[-1,20],[5,22],[-3,0],[-14,32],[-5,16],[0,7],[0,5],[0,8],[0,47],[2,12],[8,31],[1,10],[0,13],[-2,12],[-6,12],[-1,15],[-2,27],[-6,36],[-2,28],[-3,22],[0,12],[9,44],[-1,7],[5,42],[1,24],[-2,23],[-4,15],[-6,23],[-3,24],[-1,47],[-4,23],[-16,59],[-6,18],[-14,26],[-4,18],[-9,21],[-2,15],[1,7],[4,9],[1,3],[0,24],[-2,12],[-6,22],[-6,30],[-15,57],[-6,41],[-5,19],[-2,27],[-2,9],[1,12],[0,20],[-1,20],[-2,13],[2,9],[2,16],[2,8],[1,1],[3,1],[2,2],[1,6],[4,14],[-2,8],[0,33],[-5,28],[0,11],[3,85],[-1,21],[-3,16],[-10,54],[-4,27],[0,6],[2,5],[7,24],[4,7],[0,-13],[1,-5],[2,3],[0,13],[0,23],[-5,69],[-3,21],[-5,15],[-4,17],[-3,19],[-2,20],[-1,39],[1,6],[1,5],[4,12],[0,5],[0,25],[1,1],[2,0],[1,-2],[-2,-5],[1,-4],[2,-6],[1,-2],[-2,-12],[0,-12],[2,-7],[6,6],[-1,-7],[-3,-17],[4,7],[6,24],[4,5],[3,6],[2,14],[2,27],[-2,104],[-5,77],[-7,22],[-3,26],[-10,41],[-5,35],[-9,37],[-2,5],[-18,40],[-6,20],[0,14],[-1,5],[-43,112],[-20,38],[-3,10],[-23,43],[-5,5],[0,6],[1,6],[1,3],[2,15],[0,4],[-1,7],[-1,6],[-23,66],[-4,38],[-8,43],[-29,75],[-17,58],[-11,26],[-7,18],[-25,88],[-11,32],[-4,22],[-4,8],[-7,12],[-6,20],[-3,20],[-3,49],[-7,53],[-24,94],[-7,52],[-2,25],[-5,48],[-10,50],[-6,21],[-12,7],[-12,17],[-9,32],[-9,74],[-21,83],[-3,17],[-12,32],[-20,75],[-3,14],[-3,9],[-7,29],[-2,7],[-12,44],[-4,19],[-2,12],[-1,27],[-4,12],[-8,24],[-6,21],[-14,68],[-5,18],[-9,20],[-10,16],[-3,8],[-3,43],[-2,12],[-46,123],[-31,41],[-13,31],[-2,4],[-5,13],[-3,4],[-2,3],[-14,18],[-5,31],[-1,10],[-3,19],[-1,7],[0,6],[0,6],[1,5],[-7,20],[-11,57],[-1,4],[-23,49],[-4,27],[-2,35],[-5,28],[-4,21],[-3,57],[-7,43],[-4,61],[-3,30],[-2,20],[-3,31],[1,47],[10,119],[3,8]],[[53268,40252],[4,-1],[4,-5],[3,-1],[4,0],[2,3],[0,4],[2,5],[5,7],[12,11],[13,20],[11,11],[13,8],[13,3],[2,1],[1,2],[2,-1],[3,-3],[10,-6],[3,1],[1,3],[2,1],[2,-1],[2,-4],[1,-4],[0,-4],[1,-5],[2,-3],[2,-4],[4,-4],[3,-1],[2,-3],[2,-5],[0,-6],[1,-2],[20,4],[18,-1],[4,3],[4,6],[3,1],[6,-8],[6,-4],[16,-3],[10,-4],[3,0],[7,7],[13,22],[6,5],[7,2],[6,6],[9,17],[13,12],[9,6],[2,5],[2,9],[3,4],[2,2],[5,3],[2,4],[1,5],[1,7],[1,5],[7,4],[5,6],[9,4],[15,17],[29,11],[7,4],[6,1],[5,-8],[4,4],[2,-3],[1,-6],[3,-3],[7,-2],[3,0],[3,2],[0,-4],[7,7],[4,2],[2,-3],[2,0],[7,4],[5,2],[5,-3],[9,-14],[5,-3],[7,-2],[6,-5],[4,-8],[4,-24],[4,-8],[2,-9],[-3,-17],[24,-27],[24,-41],[27,-31],[26,-29],[4,-7],[12,-35],[4,-6],[7,-3],[3,2],[5,5],[2,2],[3,-1],[6,-3],[6,-2],[4,-3],[3,0],[3,2],[5,5],[2,2],[12,-4],[6,1],[3,12],[0,3],[3,0],[19,0],[71,0],[72,0],[71,0],[71,0],[68,0],[4,0],[71,0],[71,0],[71,0],[72,0],[71,0],[71,0],[47,0],[24,0],[72,0],[71,0],[34,0],[37,0],[71,-1],[15,0],[2,0],[1,-3],[1,-6],[2,-2],[1,-3],[5,-23],[1,-6],[0,-1],[7,-4],[9,-38],[1,-7],[4,-4],[15,-24],[0,-5],[2,-10],[1,-5],[3,-6],[5,-5],[3,-4],[16,-34],[5,-15],[4,-7],[11,-5],[25,-25],[36,-14],[23,2],[10,8],[6,3],[3,0],[8,-4],[13,2],[4,-6],[44,-27],[48,1],[16,8],[6,1],[6,-3],[2,-11],[3,-4],[6,-5],[6,-5],[4,0],[2,3],[3,11],[2,2],[44,0],[10,-12],[10,-7],[3,-1],[16,4],[7,0],[4,1],[4,3],[2,-4],[4,7],[7,4],[7,-1],[7,-6],[9,17],[3,-4],[4,0],[9,4],[4,-3],[10,-18],[8,3],[7,-6],[6,-11],[5,-12],[3,-5],[10,-10],[8,-12],[3,-3],[7,3],[11,1],[10,-1],[4,-5],[3,-5],[4,-4],[5,-2],[2,2],[2,6],[5,-3],[8,-9],[6,-11],[7,1],[8,7],[9,3],[4,16],[22,12],[4,2],[26,14],[4,-4],[5,3],[5,4],[5,2],[4,-2],[11,2],[4,-2],[13,-15],[16,-11],[8,-8],[5,-13],[1,-1],[5,3],[20,8],[70,28],[70,27],[70,27],[69,28],[57,22],[57,23],[56,23],[57,23],[23,9]],[[56494,40022],[12,5],[9,4],[6,0],[8,4],[12,5],[12,5],[12,5],[11,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[11,5],[12,5],[12,5],[12,5],[8,3],[5,1],[6,-2],[14,-1],[3,-3],[3,2],[11,6],[5,2],[5,-2],[12,-9],[8,-3],[5,-5],[8,-3],[2,-3],[2,-4],[2,-4],[4,-3],[3,-1],[2,0],[3,3],[5,8],[3,3],[1,5],[2,4],[3,1],[12,0],[24,-7],[1,-2],[2,-2],[2,-3],[3,-1],[9,0],[19,-7],[7,-8],[4,-10],[5,5],[4,-5],[3,-9],[4,-7],[3,-1],[5,4],[3,1],[1,-2],[-2,-10],[0,-4],[2,-5],[1,-2],[2,-1],[4,0],[0,-2],[6,-10],[0,-1],[3,-17],[0,-3],[3,-1],[2,-3],[1,-4],[1,-4],[2,6],[2,1],[4,-9],[1,-3],[0,-8],[0,-3],[2,-3],[3,-3],[1,-3],[4,-9],[2,-2],[5,-1],[3,-2],[4,-4],[3,-7],[2,-7]],[[57016,39932],[-18,7],[-11,0],[-10,-19],[-9,-8],[-8,0],[-3,12],[-8,-10],[-3,-1],[-3,7],[-4,-4],[-2,3],[-2,5],[-3,4],[2,8],[-3,-1],[-1,-3],[-1,-4],[-2,-4],[-2,-2],[-21,-14],[-5,0],[-5,-3],[-6,-11],[-6,-3],[-2,-2],[-2,-8],[-2,-2],[-2,-1],[-3,-2],[-2,-2],[-1,-3],[-8,-19],[-9,-12],[-5,-8],[-14,-34],[-1,-2],[-1,-3],[-3,-10],[-1,-3],[-3,-1],[-13,-3],[-3,-2],[-10,18],[0,9],[-2,4],[-2,1],[-2,4],[-4,19],[-4,7],[-6,2],[-9,1],[-5,-3],[-4,-9],[-8,-29],[-3,-4],[-2,1],[-5,5],[-3,2],[-6,2],[-5,-2],[-10,-10],[-13,-33],[-10,-14],[-10,-3],[-2,-3],[-8,-16],[-2,-3],[-8,-7],[-4,-5],[-1,-3],[-1,-4],[-1,2],[-1,1],[-2,1],[-2,0],[-9,-14],[-1,-21],[-5,-8],[-8,-12],[-3,-6],[-5,-15],[-3,-7],[-5,-3],[-26,-57],[-4,-6],[-6,-2],[-6,-16],[-2,-3],[-1,-1],[-10,-7],[-5,0],[-4,6],[-2,25],[-4,25],[-3,8],[4,12],[-2,13],[-10,20],[3,9],[-2,6],[-3,5],[-1,6],[-1,7],[-3,3],[-4,1],[-4,3],[-1,5],[-4,10],[-4,7],[-3,-6],[-3,1],[-2,2],[-2,1],[0,4],[0,9],[0,4],[-1,6],[-9,20],[-3,15],[-3,9],[-1,3],[0,4],[0,14],[-1,2],[-2,1],[-2,1],[-1,4],[0,8],[0,4],[-2,3],[-3,3],[-11,1],[-19,-3],[-24,-4],[-33,-6],[-24,-10],[-24,-9],[-23,-9],[-23,-9],[-24,-10],[-23,-9],[-24,-9],[-23,-10],[-24,-9],[-23,-9],[-23,-9],[-24,-10],[-23,-9],[-24,-9],[-23,-10],[-24,-9],[-23,-9],[-5,-2],[-5,-2],[-4,-2],[-5,-2],[-5,0],[-6,0],[-13,-2],[-13,-1],[-13,-1],[-13,-1],[-15,-1],[-16,-2],[-16,-1],[-16,-1],[-8,-1],[-5,0],[0,-17],[0,-24],[0,-24],[0,-25],[0,-24],[0,-24],[0,-24],[0,-24],[0,-25],[0,-24],[0,-24],[0,-24],[0,-24],[0,-24],[0,-25],[0,-24],[0,-24],[0,-74],[0,-27],[0,-47],[0,-74],[0,-74],[0,-74],[1,-74],[0,-74],[0,-74],[0,-74],[0,-74],[0,-60],[0,-14],[0,-74],[0,-74],[0,-74],[1,-74],[0,-74],[0,-34],[0,-35],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[0,-35],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[1,-34],[0,-25],[-4,-21],[-16,0],[-65,0],[-65,0],[-65,0],[-65,0],[0,-51],[0,-90],[0,-89],[0,-89],[0,-89],[0,-102],[0,-102],[0,-101],[0,-62],[0,-40],[0,-102],[1,-102],[0,-85],[0,-17],[0,-102],[0,-102],[0,-101],[0,-102],[0,-102]],[[55550,35811],[0,-8],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-7],[0,-26],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-23],[0,-17],[-9,-5],[-3,0],[-9,2],[-3,-1],[-7,-7],[-12,-22],[-9,-4],[-13,-2],[-6,-4],[-6,-8],[-5,-5],[-27,-4],[-3,-1],[-3,-4],[-2,-4],[-1,-5],[-3,-6],[-1,-4],[-3,-11],[-1,-2],[-3,-2],[-2,-6],[-8,-47],[-3,-9],[-4,-7],[-6,-5],[-23,-11],[-4,-3],[-3,1],[-6,10],[-4,-1],[-4,-5],[-3,-8],[-5,-17],[-1,-13],[2,-13],[10,-33],[0,-7],[-3,-4],[-9,-2],[-2,-2],[-3,-9],[-2,-4],[-16,-16],[-11,-7],[-11,-1],[-5,11],[-1,3],[-3,1],[-10,3],[-2,1],[-3,6],[-7,21],[-4,8],[-58,16],[-54,-14],[-10,-11],[-6,-3],[-1,1],[-3,6],[-2,1],[-1,0],[-3,-3],[-1,-1],[-6,-2],[-3,-2],[-2,-2],[-5,-5],[-7,3],[-12,8],[-6,1],[-24,-7],[-10,-7],[-5,1],[-24,15],[-10,10],[-17,27],[-10,11],[-10,8],[-46,19],[-9,-1],[-3,-3],[-5,-7],[-3,-2],[-4,-1],[-9,5],[-6,5],[-1,12],[0,15],[-1,12],[-4,6],[-5,-2],[-5,-5],[-6,-2],[-12,-3],[-12,-6],[-10,4],[-1,17],[4,25],[1,23],[-3,13],[-10,7],[-2,10],[-1,14],[-8,18],[-2,11],[1,9],[3,7],[5,6],[5,3],[4,6],[3,14],[0,16],[0,13],[-2,6],[-4,11],[-2,6],[-1,8],[0,6],[-1,6],[-3,7],[-1,6],[0,7],[-1,7],[-3,3],[-8,-1],[-17,-8],[-9,3],[-6,14],[-1,28],[0,13],[0,13],[-2,11],[-7,4],[-5,5],[-4,10],[-3,12],[-4,9],[-3,3],[-3,0],[-6,-3],[-3,-3],[-9,-13],[-7,4],[-4,-2],[-4,-8],[-3,-2],[-3,1],[-2,6],[-3,1],[-1,-2],[-5,-11],[-1,-1],[-2,-47],[-2,-6],[-1,0],[-2,2],[-4,0],[-2,2],[-1,1],[-1,-3],[-1,-3],[1,-4],[5,-11],[0,-5],[-4,-2],[-6,0],[-2,-2],[-1,-5],[1,-4],[2,-6],[2,-8],[-1,-7],[-3,-4],[-2,2],[-3,4],[-3,2],[-5,-4],[-1,-11],[1,-12],[2,-9],[6,-17],[2,-11],[-3,-5],[-4,-5],[-1,-12],[-1,-13],[0,-10],[-3,-11],[-5,-12],[-6,-9],[-5,1],[-1,5],[-1,8],[-1,7],[-2,2],[-3,-2],[-21,-39],[-11,-6],[-7,-8],[-8,-9],[-5,-5]],[[55550,35811],[1,-10],[2,-4],[5,-7],[5,-16],[15,-22],[7,-17],[3,-4],[3,-1],[5,-1],[3,-2],[21,-25],[36,-57],[3,-8],[9,-37],[8,-23],[3,-12],[-1,-9],[-2,-10],[2,-8],[5,-6],[6,-4],[0,-16],[1,-4],[2,-3],[5,-5],[1,-4],[1,-5],[-1,-4],[-1,-3],[0,-5],[1,-4],[3,-7],[1,-5],[2,-19],[2,-6],[4,-6],[8,-7],[2,-5],[1,-12],[4,1],[0,-5],[-2,-7],[1,-6],[2,-3],[3,2],[2,3],[3,0],[3,-6],[-8,-10],[-2,-9],[0,-17],[12,-21],[3,-16],[-2,-6],[-6,-7],[-2,-4],[1,-6],[3,-3],[3,0],[2,-4],[1,-7],[-3,-12],[0,-7],[2,-6],[7,-6],[3,-5],[3,-11],[6,-39],[-3,-11],[0,-6],[4,3],[2,3],[2,-1],[3,-7],[0,-2],[8,-35],[2,-51],[-1,-43],[1,-11],[11,-36],[-1,-9],[-12,-32],[-5,-23],[-7,-21],[-16,-39],[-8,-30],[-4,-9],[-8,-12],[-1,-7],[-4,-32],[-1,-17],[1,-15],[2,-8],[4,-12],[2,-8],[-1,-14],[-6,-40],[0,-18],[2,-22],[3,-21],[3,-17],[2,-4],[2,-3],[4,-6],[3,-6],[2,-19],[2,-6],[1,2],[6,8],[18,16],[12,17],[8,7],[15,4],[12,-9],[11,-14],[37,-15],[8,0],[25,13],[4,1],[7,-2],[4,0],[24,12],[12,1],[7,-2],[13,-12],[24,-1],[16,-9],[6,0],[7,5],[15,20],[6,10],[3,10],[1,11],[-1,11],[-2,27],[0,9],[4,6],[7,6],[9,3],[27,0],[17,8],[17,19],[14,27],[10,32],[9,47],[5,21],[12,22],[3,12],[2,3],[13,5],[4,2],[7,7],[14,27],[10,27],[6,10],[9,3],[12,-5],[5,3],[5,16],[5,20],[3,8],[5,8],[3,5],[1,1],[11,35],[1,6],[-2,6],[0,6],[3,4],[8,6],[3,4],[2,7],[2,10],[1,14],[-1,14],[-1,7],[-4,11],[3,10],[6,9],[4,9],[3,10],[0,3],[-2,9],[-2,6],[-2,1],[-1,2],[0,8],[2,13],[4,12],[12,28],[2,6],[0,6],[1,9],[-1,6],[-1,5],[1,5],[4,6],[2,5],[-1,7],[-3,6],[-2,6],[1,5],[0,5],[3,9],[5,36],[2,6],[7,6],[3,7],[5,23],[2,7],[2,5],[3,4],[4,3],[3,4],[1,5],[1,5],[1,5],[11,21],[7,7],[6,-2],[2,-5],[2,-6],[1,-3],[4,4],[2,4],[21,19],[13,8],[14,2],[15,-6],[13,-9],[4,-2],[5,1],[9,6],[4,2],[4,-3],[2,-5],[5,-12],[3,-8],[3,-4],[8,-7],[7,-8],[30,-45],[2,-6],[3,-7],[16,-9],[2,-5],[3,-12],[2,-5],[3,-3],[5,-4],[3,-3],[10,-27],[13,-17],[4,-12],[5,-6],[15,7],[3,-2],[3,-3],[3,-5],[0,-4],[-2,-6],[1,-2],[6,1],[28,15],[15,1],[12,-14],[20,-44],[11,-17],[14,-4],[8,3],[5,5],[6,1],[12,-9],[21,-15],[15,-19],[10,-4],[20,4],[9,-4],[8,-4],[8,2],[17,9],[5,4],[17,25],[13,11],[10,3],[11,-3],[13,-8],[11,-4],[58,12],[20,19],[36,54],[6,36],[12,57],[3,14],[9,77],[24,105],[6,40],[9,29],[0,22],[8,36],[3,19],[1,24],[-3,43],[0,14],[2,3],[2,1],[9,6],[14,-1],[4,4],[9,13],[43,26],[31,19],[13,4],[5,-1],[6,-2],[5,-1],[6,-2],[18,36],[2,7],[8,42],[7,18],[8,12],[18,23],[17,34],[2,9],[6,6],[25,16],[5,6],[5,8],[3,11],[5,52],[1,26],[19,157],[1,16],[-2,12],[8,29],[0,4],[-1,6],[1,11],[6,19],[5,24],[2,5],[3,-3],[2,-7],[2,-6],[5,-1],[4,6],[0,9],[-2,10],[0,12],[1,-2],[2,-2],[1,5],[2,4],[5,7],[-2,0],[2,7],[3,5],[3,0],[3,-4],[2,7],[-2,4],[-2,4],[-1,7],[1,5],[3,1],[3,-3],[2,-5],[1,4],[2,5],[1,3],[2,-4],[2,-3],[3,1],[3,2],[-4,11],[3,7],[10,7],[11,10],[5,7],[4,9],[7,20],[4,7],[3,-18],[3,3],[2,7],[1,3],[3,3],[4,3],[3,-1],[-2,-9],[4,-4],[2,4],[3,7],[2,6],[4,2],[11,1],[6,4],[6,7],[4,11],[2,13],[-1,4],[-1,5],[0,4],[1,1],[1,1],[1,3],[0,3],[0,3],[2,9],[5,12],[2,16],[3,0],[4,-4],[4,-2],[3,2],[11,18],[8,-17],[4,-3],[4,4],[1,6],[4,22],[1,1],[2,3],[0,1],[2,1],[-1,2],[-1,3],[-1,1],[0,3],[-1,4],[-1,5],[0,5],[3,-1],[6,-1],[5,3],[-2,11],[11,5],[11,10],[10,13],[4,17],[-2,25],[0,13],[3,6],[5,2],[6,4],[6,5],[3,5],[5,9],[3,12],[1,13],[-2,13],[0,6],[5,5],[7,4],[4,3],[1,4],[2,9],[1,3],[2,3],[3,1],[3,2],[2,5],[2,7],[0,5],[0,5],[-1,7],[1,8],[1,5],[9,22],[2,4],[3,1],[7,2],[3,3],[10,23],[4,7],[10,12],[11,5],[23,4],[17,-9],[5,2],[6,11],[5,1],[5,-1],[7,0],[10,6],[20,23],[12,7],[7,2],[5,3],[4,6],[2,12],[2,7],[7,1],[12,-3],[5,8],[6,24],[3,5],[1,7],[-2,41],[6,17],[6,11],[4,5],[0,3],[6,15],[2,2],[34,4],[5,4],[4,8],[6,7],[7,2],[15,-7],[8,-1],[5,3]],[[58152,37330],[2,-2],[2,-1],[4,0],[6,6],[10,11],[6,3],[14,-7],[7,-1],[3,6],[2,9],[5,3],[10,-2],[10,9],[6,2],[5,-7],[3,3],[19,1],[5,-3],[17,-21],[9,-4],[7,-7],[10,-2],[4,-2],[8,-10],[2,-2],[6,-3],[3,-2],[5,-12],[1,-2],[0,-2],[9,-2],[4,-4],[8,-11],[6,-7],[5,-1],[12,4],[7,-1],[6,-3],[4,-6],[4,-6],[8,-13],[10,-4],[10,1],[11,3],[6,4],[10,9],[5,3],[6,1],[18,-5],[8,1],[2,-2],[5,-6],[1,-1],[5,3],[7,10],[6,4],[30,5],[9,7],[9,-5],[16,-3],[31,-14],[9,-9],[5,-2],[2,2],[3,1],[9,8],[4,2],[3,-4],[6,-14],[1,-3],[2,-1],[5,-5],[2,-2],[2,0],[5,4],[3,0],[2,-5],[7,-18]],[[58691,37206],[-3,-11],[12,-76],[15,-88],[14,-88],[11,-70],[20,-117],[1,-18],[-6,-135],[2,-25],[5,-21],[27,-56],[5,-22],[11,-74],[11,-52],[4,-12],[6,-10],[17,-26],[4,-7],[1,-10],[0,-10],[2,-93],[2,-25],[16,-67],[10,-42],[7,-45],[1,-46],[-2,-41],[0,-82],[0,-100],[0,-71],[1,-94],[0,-128],[-5,-29],[-1,-15],[0,-20],[1,-18],[3,-12],[2,-13],[2,-37],[0,-13],[-1,-8],[-2,-3],[-3,-4],[-3,-6],[-2,-7],[-12,-60],[-2,-16],[1,-18],[11,-68]],[[58874,35097],[-16,-15],[-8,-4],[-8,5],[-24,30],[-5,6],[-25,32],[-29,36],[-30,37],[-7,4],[-8,0],[-10,-5],[-8,-7],[-28,-48],[-24,-43],[-4,-12],[-4,-31],[-15,-69],[-19,-65],[-20,-49],[-26,-62],[-6,-45],[1,-63],[0,-81],[3,-41],[2,-14],[4,1],[5,1],[5,5],[4,7],[3,8],[2,-8],[4,-27],[4,-11],[8,-16],[3,-9],[2,-12],[-1,-14],[-3,-24],[2,-14],[6,-21],[28,-49],[14,-38],[4,-8],[4,-6],[24,-16],[10,-6],[22,-14],[28,-19],[19,-7],[30,-1],[41,-1],[27,-1],[24,0],[0,7],[0,7],[-2,6],[-2,7],[-1,9],[-1,43],[0,12],[-1,36],[5,55],[4,48],[5,53],[0,17],[18,0],[5,-1],[6,-14],[5,-3]],[[58920,34575],[8,-4],[14,3],[8,0],[20,-6],[16,-5],[33,1],[35,2],[39,3],[43,2]],[[59136,34571],[-3,-24],[-4,-77],[-5,-38],[-1,-13],[-2,-12],[-9,-27],[-1,-5],[-1,-17],[-1,-5],[-3,-9],[-1,-16],[-29,-156],[-19,-174],[0,-13],[-1,-6],[-3,-14],[0,-7],[0,-7],[1,-11],[0,-6],[-13,-148],[-2,-11],[-23,-69],[-2,-9],[-1,-14],[-3,-12],[-4,-10],[-7,-3],[1,-6],[1,-1],[2,1],[2,2],[2,-21],[-3,-22],[-4,-21],[-3,-19],[-3,-11],[-24,-46],[-4,-5],[-9,-9],[-3,-4],[-3,-7],[-5,-17],[-4,-9],[-30,-49],[-8,12],[-11,-3],[-6,-13],[6,-16],[2,5],[4,6],[4,5],[5,1],[-6,-20],[-10,-16],[-35,-35],[-10,-4],[-10,1],[-13,4],[1,-5],[0,-3],[1,-2],[2,-2],[0,-4],[-9,-10],[-54,-115],[-13,-22],[-4,-4],[-2,-3],[0,-3],[-2,-11],[-1,-2],[-3,-5],[-11,-28],[-4,-6],[-9,-11],[-4,-7],[-1,-5],[-2,-13],[-3,-4],[-3,-3],[-2,-5],[-2,-11],[-37,-93],[-36,-136],[-3,-24],[3,-23],[-11,0],[-3,-4],[-1,-16],[4,4],[10,6],[3,7],[0,-5],[0,-4],[-1,-4],[-3,-8],[-7,-16],[-29,-49],[-8,-18],[-13,-44],[-16,-67],[-40,-132],[-6,-24],[-1,-9],[-2,-8],[-13,-27],[-47,-161],[-8,-21],[-5,-9],[-4,-3],[-3,-6],[-9,-35],[-26,-63],[-20,-50],[-8,-10],[-9,-35],[-14,-32],[-41,-71],[-5,-4],[-17,-9],[-6,-6],[-6,-8],[-2,-10],[-17,-39],[-6,-4],[-3,-4],[-2,-11],[-2,-5],[-2,-3],[-1,-1],[-7,-3],[-5,-8],[-8,-18],[-5,-4],[-11,-8],[-7,-9],[-2,-1],[-3,-1],[-3,-1],[-1,0],[-3,0],[-2,0],[-1,-4],[0,-3],[1,-3],[0,-2],[-5,-23],[-8,-8],[-2,-4],[-1,-14],[-3,-8],[-9,-12],[-9,-18],[-4,-11],[-2,-10],[-1,-6],[-5,-16],[-3,-3],[-1,-1],[0,-3],[-1,-7],[-1,-2],[-18,-15],[-3,-8],[-1,-9],[-3,-11],[-7,-22],[-34,-67],[-29,-71],[-15,-17],[-2,-6],[-38,-62],[-6,-17],[-2,-4],[-5,-4],[-2,-3],[-11,-20],[-5,-12],[-2,-11],[-1,-7],[-31,-44],[-7,-7],[-9,-14],[-5,-4],[-1,-9],[-6,-9],[-14,-14],[-13,-17],[-8,-8],[-16,-8],[-7,-12],[-5,-17],[-2,-17],[-3,-13],[-6,-12],[-28,-43],[-9,-5],[-2,-5],[-4,-10],[-3,-4],[-1,-2],[0,-3],[0,-3],[-1,-3],[-14,-11],[-5,-11],[-3,-3],[-6,-1],[-13,-10],[-5,-5],[-25,-47],[-9,-14],[-20,-13],[-3,-5],[-1,-1],[-7,-17],[-2,-2],[-2,-2],[-2,1],[-3,3],[-2,-15],[-7,-13],[-15,-22],[-7,-7],[-1,0],[-1,1],[-1,2],[-1,-1],[-2,-7],[-29,-36],[-3,-6],[-21,-18],[-4,-7],[-2,-4],[-1,-4],[-1,-4],[-1,-5],[-3,-4],[-2,-1],[-6,-2],[-24,-23],[-5,-3],[-7,0],[-6,-4],[-16,-24],[-5,-3],[-14,-3],[-9,-10],[-27,-20],[-3,-1],[-2,-3],[-2,-11],[-2,-2],[-6,-2],[-26,-24],[-11,-5],[-12,-1],[-23,6],[-8,0],[-5,-5],[-5,-1],[-6,5],[-11,11],[-37,13],[-38,4],[-24,-7],[-23,-13],[-21,-18],[-9,-12],[-7,-17],[-5,-19],[-5,-33],[0,-14],[1,-7],[5,-4],[2,-5],[1,-4],[8,-11],[5,-15],[3,-5],[-1,-5],[0,-1],[-1,-2],[-9,5],[-6,-4],[-6,-6],[-7,-3],[-9,1],[-14,9],[-8,2],[-14,-3],[-7,0],[-8,8],[-9,3],[-10,12],[-10,8],[-24,11],[-25,1],[-25,-6],[-16,-9],[-7,-6],[-4,-9],[4,-25],[-3,-11],[-5,-11],[-3,-4],[-13,-21],[-2,-9],[1,-7],[3,-4],[2,-3],[1,-4],[-1,-5],[-4,-7],[-2,-4],[-2,0],[-4,8],[-5,4],[-19,1],[-16,7],[-6,2],[-18,-6],[-5,1],[-24,11],[-12,11],[-10,16],[-5,3],[-34,8],[-5,4],[-4,5],[-18,14],[-49,8],[-6,3],[-12,7],[-30,6],[-49,20],[-13,0],[-45,-19],[-6,-5],[-5,-6],[-5,-8],[-2,-13],[2,-12],[4,-8],[7,-2],[0,-4],[-96,16],[-2,4],[-1,17],[-1,4],[-8,1],[-4,3],[-2,4],[1,-9],[2,-3],[3,-2],[2,-4],[3,-9],[0,-4],[-2,-4],[-1,3],[-4,3],[-8,1],[-4,-2],[-2,-2],[-3,-1],[-4,0],[-23,13],[-8,10],[-4,2],[-3,3],[-2,9],[-1,6],[0,4],[2,2],[4,0],[-4,7],[-6,3],[-13,2],[3,-8],[4,-9],[4,-7],[5,-4],[-5,-3],[-7,2],[-31,20],[-6,1],[-7,0],[-6,-2],[-4,-4],[-15,-21],[-11,-10],[-12,-5],[-26,5],[-12,-1],[-24,-10],[-5,-5],[-5,-6],[-8,-16],[-4,-12],[2,-10],[4,-7],[5,-5],[-4,-6],[-6,-3],[-36,-10],[-10,-8],[-7,-14],[-1,-9],[1,-20],[-2,-6],[-6,-18],[-1,-2],[-17,-17],[-11,-7],[-12,-5],[-12,-1],[-29,11],[-11,11],[-6,3],[-6,-2],[-12,-9],[-9,-3],[-2,-3],[-1,-4],[-2,-4],[-2,-3],[-18,-14],[-12,-3],[-12,2],[-46,30],[-11,4],[-27,5],[-13,-3],[-11,-10],[2,0],[-16,-8],[-5,-4],[7,-3],[7,-9],[3,-12],[-2,-12],[-5,-4],[-49,16],[-39,-10],[-12,-9],[-10,-14],[-15,-36],[-5,-9],[-5,-4],[-4,-1],[-2,-4],[-2,-5],[-2,-6],[-3,-2],[-9,-6],[-4,-6],[-5,-8],[-5,-10],[-1,-10],[-3,1],[-7,-3],[-11,-9],[-21,-26],[-8,-19],[4,-16],[0,-3],[-4,-2],[-8,-9],[-4,-1],[-5,1],[-4,3],[-4,3],[-17,24],[-4,7],[-5,4],[-45,-2],[-4,-2],[-4,-8],[-4,-2],[-3,1],[-2,4],[-1,4],[-2,3],[-14,15],[-21,38],[-14,14],[-5,6],[-4,10],[-5,7],[-7,1],[-6,-3],[-6,-7],[-2,3],[-2,1],[-3,-1],[-2,-3],[1,6],[16,40],[2,7],[-2,16],[-4,19],[-6,18],[-5,12],[-4,5],[-4,2],[-19,-7],[-17,2],[-4,2],[-4,6],[-5,17],[-4,5],[0,4],[7,3],[3,8],[2,13],[3,13],[-5,-5],[-6,-19],[-3,-5],[-21,3],[-4,-1],[-8,-5],[-27,-8],[-6,-7],[-1,-5],[-3,-1],[-3,1],[-2,3],[-3,7],[0,6],[3,7],[-2,20],[0,5],[0,6],[2,3],[1,2],[2,5],[3,12],[-1,8],[-4,21],[0,12],[2,5],[4,5],[4,10],[-12,32],[-4,4],[-17,8],[-26,4],[-25,-2],[-4,-3],[-3,-3],[-10,-8],[-5,-6],[-2,-4],[-3,-6],[-4,-8],[-1,-4],[0,-8],[0,-6],[2,-3],[2,-3],[1,-4],[4,-25],[1,-5],[0,-6],[-3,-39],[1,-12],[5,-7],[-5,-2],[-7,6],[-6,11],[-5,10],[-6,23],[-1,7],[0,4],[1,8],[1,5],[-1,2],[-1,1],[-1,1],[-1,2],[-3,15],[-2,7],[-8,4],[-3,6],[0,8],[0,8],[3,5],[2,1],[2,3],[1,9],[0,8],[1,7],[1,6],[2,6],[-4,-1],[-2,-1],[-2,-2],[-4,11],[0,8],[2,8],[4,9],[4,11],[3,21],[3,13],[9,13],[11,-1],[8,3],[4,22],[-1,11],[-5,15],[-2,8],[0,12],[-8,52],[-7,26],[-1,11],[-3,3],[-13,28],[-4,5],[-3,4],[-1,5],[0,24],[0,13],[-2,10],[-7,20],[-8,15],[-30,38],[3,10],[-2,12],[-7,23],[-3,15],[-7,17],[-1,6],[-3,8],[-12,22],[-5,4],[-6,5],[-4,9],[-3,11],[-3,8],[7,7],[4,1],[3,-2],[2,-7],[2,-6],[2,-6],[3,-3],[-1,-7],[2,-5],[7,-11],[5,-13],[4,-6],[4,-3],[4,5],[-1,6],[-6,11],[-2,5],[0,10],[-1,4],[-1,2],[-3,0],[-2,2],[-6,11],[-2,5],[-1,6],[1,26],[-1,9],[-4,11],[-7,6],[-8,1],[-8,-2],[2,-10],[2,-3],[-3,-1],[-3,-3],[-6,-8],[-3,7],[-1,6],[-1,5],[0,5],[-1,5],[-2,5],[-1,7],[2,9],[-2,4],[-3,17],[-2,14],[0,4],[1,5],[3,7],[1,7],[-1,7],[-7,15],[-1,2],[-1,2],[0,5],[1,1],[2,-1],[2,0],[1,2],[1,2],[4,7],[2,2],[2,0],[0,2],[1,4],[0,4],[1,4],[-1,19],[1,7],[4,5],[7,5],[6,3],[5,-1],[-3,-4],[4,-9],[14,-23],[12,-9],[10,5],[10,13],[33,61],[7,23],[4,22],[6,48],[1,23],[-1,42],[-2,9],[-3,13],[2,10],[6,16],[1,24],[-10,77],[-3,63],[-5,26],[-2,13],[1,26],[-1,12],[-3,12],[-3,9],[-3,10],[-2,8],[0,5],[0,5],[0,6],[-6,41],[-5,20],[-7,20],[-12,30],[-3,9],[0,4],[-13,34],[-13,26],[-2,9],[-2,11],[-4,9],[-9,15],[-11,30],[-8,12],[-3,14],[-3,28],[-4,8],[-11,17],[-2,6],[-2,7],[-15,46],[-1,2],[-3,14],[-1,4],[-4,10],[-6,27],[-3,10],[-19,50],[-15,57],[-2,8],[-2,22],[-3,21],[-17,41],[-7,26],[1,22],[-7,15],[-16,53],[-2,13],[-5,12],[-18,57],[-1,6],[-1,16],[-2,18],[-2,5],[0,16],[-15,47],[-4,20],[-1,23],[-6,48],[-18,75],[-1,21],[-1,3],[-1,3],[-2,4],[0,6],[0,6],[-8,49],[2,0],[-1,8],[0,15],[-1,9],[-7,34],[1,6],[-4,6],[-2,13],[-1,22],[-8,42],[-2,7],[-11,59],[-1,3],[-5,11],[-1,6],[-1,3],[-5,11],[-6,36],[-2,5],[-3,6],[-1,5],[0,14],[-1,6],[-2,8],[-3,14],[-1,14],[2,10],[-4,13],[-18,29],[-3,8],[-4,23],[-2,8],[-13,33],[-18,30],[-3,13],[-3,21],[-2,21],[1,12],[-1,4],[-2,10],[-1,5],[-1,3],[-2,1],[-3,0],[-2,1],[-5,25],[-5,7],[-7,14],[-1,3],[3,4],[2,9],[1,9],[-1,6]],[[58050,33349],[-16,30],[-11,37],[-3,8],[-4,6],[-4,5],[-5,3],[-9,3],[-2,3],[-8,29],[-4,6],[-12,1],[-3,8],[-2,25],[-2,11],[-3,10],[-3,8],[-6,8],[-4,-1],[-16,-21],[-5,-2],[-39,-5],[-5,-4],[-6,-11],[-7,-24],[-6,-9],[-5,-4],[-7,-2],[-6,2],[-6,4],[-3,0],[-15,-3],[-3,2],[-3,-8],[-3,-8],[-8,-21],[-1,-4],[-12,-25],[-11,-26],[-1,-4],[0,-5],[0,-4],[-3,-1],[-7,0],[-3,3],[-3,6],[-3,6],[-5,1],[-4,-4],[-3,-8],[-1,-9],[-3,-9],[-7,-6],[-32,4],[2,-10],[-3,-5],[-4,-3],[-3,-5],[0,-8],[0,-5],[0,-3],[-1,-2],[0,-1],[0,-5],[-1,-2],[-1,0],[-1,1],[-1,-1],[-6,-14],[-3,-7],[-4,-3],[-4,-2],[1,-6],[4,-7],[2,-5],[-2,-1],[-2,-3],[-2,-1],[-1,5],[-2,-5],[1,-10],[0,-4],[-6,-22],[-16,-36],[-2,-2],[-3,-2],[-3,-4],[-2,-5],[0,-5],[2,-14],[0,-7],[-2,-4],[-3,-2],[-11,-7],[-5,-5],[0,-5],[-1,-14],[-1,-5],[-2,-7],[-3,-3],[-3,-1],[-2,-4],[-1,-4],[1,-4],[2,-3],[1,-5],[-1,-7],[-1,-4],[-1,-3],[-12,-23],[-3,-9],[-1,-11],[-2,-2],[-6,0],[-2,-2],[0,-7],[-2,-6],[-2,-5],[0,-2],[-1,-2],[-9,-10],[-6,-5],[-8,-3],[-5,-5],[-3,-2],[-8,-1],[-8,-6],[-1,-2],[-9,-18],[-2,-1],[-2,1],[-1,4],[-1,3],[-2,0],[-2,-2],[-2,-10],[-2,-4],[-2,7],[-3,0],[-2,-6],[-1,-10],[-3,-14],[2,-2],[4,-6],[4,-4],[4,-6],[8,-23],[2,-9],[23,-101],[8,-34],[5,-12],[13,-20],[4,-12],[4,-29],[2,-8],[3,-10],[3,-2],[3,2],[6,0],[5,-2],[2,-4],[0,-6],[-4,-8],[-6,-28],[0,-17],[7,-32],[-1,-9],[3,-1],[6,-3],[3,0],[2,0],[6,5],[4,0],[2,-4],[2,-15],[3,-9],[4,-6],[11,-9],[1,-7],[0,-6],[8,-13],[6,-17],[1,-5],[0,-6],[1,-5],[2,-5],[17,-24],[15,-31],[8,-10],[10,-6],[11,-3],[3,1],[5,5],[3,1],[3,-2],[2,-4],[3,-4],[2,-4],[6,-5],[6,-3],[32,-6],[7,-5],[0,12],[-1,9],[0,10],[2,12],[2,5],[2,3],[2,3],[3,3],[2,6],[1,3],[4,28],[1,5],[-1,5],[-3,11],[-1,4],[2,7],[24,35],[3,8],[2,13],[0,13],[-4,5],[-4,4],[-3,8],[1,11],[4,9],[6,6],[5,4],[8,2],[3,3],[2,3],[3,9],[3,4],[4,8],[5,17],[2,8],[6,9],[7,2],[13,-4],[7,5],[12,13],[4,2],[5,-1],[13,-10],[10,0],[25,18],[18,7],[18,14],[32,39],[11,13],[22,25],[4,3],[7,4],[3,3],[2,5],[-1,6],[-3,11],[0,8],[0,6],[-1,4],[-4,5],[-4,11],[1,14],[1,15],[1,14],[0,1],[5,18],[3,17],[5,14],[8,12],[21,13],[3,7],[0,10],[1,9],[4,6],[-4,9],[-2,14],[0,3],[1,12],[2,13],[5,11],[8,6],[8,5],[8,6],[3,5],[2,5],[2,6],[-1,9],[1,9],[5,14],[1,9],[-1,3],[-4,7],[-1,4],[0,4],[0,9],[0,4],[-3,12],[-8,20],[-3,21],[-2,10],[-4,8],[-4,6],[-3,7],[-1,34],[-9,7],[-11,0],[-9,6],[-23,45],[-10,8],[-6,3],[-4,5],[-1,7],[0,12],[-3,6],[-6,5],[-6,4],[-4,-1]],[[60461,22737],[9,4],[10,-2],[25,-11],[13,-23],[8,-4],[-3,-16],[-6,-14],[-7,-11],[-9,-4],[-2,1],[-5,3],[-31,2],[-4,-2],[-10,3],[-5,3],[-4,6],[-1,5],[-2,8],[0,8],[5,7],[6,13],[3,3],[1,3],[6,14],[3,4]],[[60516,22851],[1,13],[10,9],[13,0],[9,-10],[-1,-17],[-10,-6],[-13,3],[-9,8]],[[32495,61149],[-19,15],[-6,2]],[[32470,61166],[0,3],[-2,-1],[-5,-3],[-1,0],[-2,3],[-1,3],[1,2],[8,1],[5,2],[3,6],[2,9],[2,4],[5,4],[6,3],[4,0],[0,-13],[2,-18],[0,-17],[-2,-5]],[[32495,61149],[-4,-8],[-18,10],[-4,4],[-2,5],[3,5],[0,1]],[[65627,65471],[9,-2],[5,-16],[11,-4],[-1,-16],[-8,-8],[-7,-4],[-3,-6],[-8,-11],[-5,-4],[-4,3],[-3,3],[-1,6],[1,14],[7,7],[3,7],[-2,5],[-1,5],[0,10],[7,11]],[[65628,65423],[6,3],[1,10],[-4,6],[-2,0],[-2,-4],[1,-15]],[[65576,65903],[0,1],[2,5],[2,21],[19,56],[6,27],[3,5],[5,5],[0,-3],[0,-8],[3,-10],[-1,-3],[-1,-9],[2,0],[3,6],[7,0],[1,4],[2,2],[4,-3],[3,-6],[1,-11],[2,7],[2,-1],[2,-2],[3,0],[8,11],[3,1],[8,-4],[2,0],[1,5],[-1,6],[-3,4],[-1,2],[-6,1],[-3,-1],[-3,-2],[-1,-4],[-3,-5],[-3,-4],[-3,2],[0,7],[2,25],[0,9],[8,-12],[3,-3],[2,9],[-1,4],[-3,6],[-4,6],[-4,2],[2,5],[1,1],[2,0],[1,2],[4,8],[1,7],[0,13],[1,9],[2,0],[3,-16],[5,5],[1,3],[2,-5],[-1,-4],[0,-2],[0,-1],[1,-4],[3,4],[1,-2],[2,-4],[2,-3],[6,-3],[4,-1],[3,0],[0,3],[-1,7],[-1,3],[6,4],[3,-15],[-1,-6],[-4,-1],[-7,1],[-4,-3],[-9,-14],[-4,-6],[0,-3],[-2,-7],[6,-12],[3,-5],[4,-2],[2,2],[3,5],[3,1],[3,-8],[-5,-18],[-2,-2],[-2,11],[-3,0],[-3,0],[1,-5],[0,-4],[0,-3],[-1,-4],[3,-7],[5,-5],[3,-6],[2,-10],[-3,0],[-3,1],[-3,3],[-2,4],[-4,-4],[-4,3],[-2,7],[0,10],[-1,-2],[-5,-4],[-1,-2],[0,6],[0,5],[1,4],[3,1],[-7,2],[-7,-7],[-4,-11],[2,-8],[-1,-6],[-1,-8],[1,-7],[1,-8],[3,12],[2,7],[3,2],[2,-4],[0,-7],[-1,-8],[-1,-6],[5,-4],[25,1],[-2,-8],[-4,-7],[-9,-10],[-8,-6],[-3,-5],[1,-10],[7,8],[4,-7],[0,-11],[-6,-8],[1,-6],[4,-10],[1,-4],[3,-3],[6,-3],[-2,-3],[-1,-2],[-1,-8],[-4,5],[-5,2],[-4,-1],[-3,-6],[5,-14],[-2,-13],[-5,-12],[-3,-13],[0,-4],[0,-14],[-6,-10],[-4,-16],[-3,-8],[-4,-5],[0,13],[-4,-13],[-4,-19],[-2,-22],[2,-19],[1,-7]],[[65632,65647],[-11,-7],[-5,-1],[-4,2],[-2,4],[-3,12],[-2,4],[-7,2],[-1,2],[-2,7],[-1,27],[0,10],[3,6],[4,5],[2,8],[-2,8],[-6,16],[-1,10],[1,9],[5,15],[2,8],[1,53],[2,18],[1,11],[-2,12],[-4,23],[-3,1],[-14,-8],[-7,-1]],[[65661,65262],[7,-48],[17,-72],[3,-6],[2,-14],[2,-25],[33,-120],[6,-15],[16,-27],[31,-73],[6,-19],[2,-11],[3,-17],[27,-64],[33,-55],[26,-41],[9,-11],[39,-30],[51,-26],[22,-19],[16,-10],[11,-4],[7,-1],[19,2],[5,-2],[8,-21],[3,-4],[6,-4],[8,-7],[7,-2],[36,4],[13,-2],[12,-5],[17,-14],[5,-2],[5,-4],[10,-21],[5,-7],[10,-7],[12,-3],[14,1],[11,4],[6,5],[3,4],[2,10],[2,1],[5,-3],[12,-1],[7,-2],[5,-6],[3,-7],[5,-24],[3,-5],[1,-1],[1,-3],[2,-2],[1,-2],[2,1],[2,0],[1,-1],[4,-7],[3,-5],[1,-4],[2,0],[2,8],[0,-4],[1,-2],[0,-2],[1,-4],[2,0],[0,2],[1,6],[2,-3],[1,-1],[3,4],[7,-18],[2,-10],[-1,-9],[2,-8],[3,-27],[3,-11],[17,-30],[10,-9],[4,-11],[4,-25],[3,-10],[8,-16],[5,-12],[2,-35],[18,-35],[1,-5],[1,-18],[2,-4],[1,-3],[8,-12],[14,-17],[10,-14],[7,-16],[5,-19],[10,-50],[1,-9],[2,-11],[5,-8],[10,-11],[11,-35],[2,-9],[3,-9],[12,-22],[9,-9],[6,-11],[6,-7],[2,-3],[0,-7],[-1,-1],[-3,1],[-2,2],[1,-8],[2,-4],[3,-1],[4,1],[21,15],[8,-6],[11,-17],[2,0],[4,1],[2,-1],[0,-3],[1,-6],[1,-3],[0,-2],[-1,-2],[0,-4],[2,-4],[2,-2],[1,-1],[2,-1],[2,0],[1,3],[-2,6],[-4,9],[1,8],[3,0],[6,2],[7,-4],[6,-15],[4,-20],[2,-18],[-6,-97],[-3,-26],[-6,-23],[-16,-45],[-8,-14],[-5,-10],[-2,-10],[0,-14],[-6,-28],[-1,-29],[-3,-12],[-11,-9],[-3,-10],[-4,-22],[-22,-59],[-9,-53],[-5,-25],[-26,-82],[-2,-19],[-1,-5],[-2,-5],[-40,-34],[-8,-10],[-31,-51],[-37,-79],[-12,-35],[-2,-6],[-4,-5],[-5,-12],[-8,-32],[-1,-6],[-1,-21],[-1,-6],[-1,-5],[-16,-26],[1,-12],[-5,-9],[-12,-11],[1,-2],[-2,-10],[-1,-1],[-2,-3],[-1,-3],[0,-4],[0,-5],[2,-6],[2,-4],[3,-3],[4,4],[5,8],[3,4],[0,-12],[-3,-8],[-5,-7],[-5,-3],[-3,6],[-1,0],[-2,-8],[-2,-16],[-2,-9],[-2,-4],[-7,-7],[-3,-5],[-3,-12],[-3,-15],[-2,-16],[-1,-16],[-7,-28],[-4,-21],[0,-9],[-1,-5],[-2,-20],[-1,-4],[-2,-1],[-3,-3],[-4,-4],[-3,-4],[-2,-16],[-6,-7],[-8,1],[-7,5],[-5,5],[-4,3],[-9,1],[-3,-2],[-7,-5],[-4,-2],[1,5],[1,3],[-1,2],[-10,5],[-5,2],[-6,5],[-1,11],[4,25],[0,-8],[1,-7],[2,-5],[3,-5],[1,12],[-3,26],[3,13],[3,11],[3,17],[1,18],[-3,13],[-5,4],[-8,-2],[-9,-5],[-8,-11],[-12,-6],[-3,-5],[-2,-6],[-5,-27],[0,-7],[2,-6],[1,-6],[-3,-4],[-3,-3],[-7,-3],[-5,-6],[-5,-6],[-7,-13],[-2,-6],[-2,-6],[0,-8],[0,-6],[4,-9],[1,-5],[-2,-13],[-5,-8],[-12,-10],[-5,-6],[-5,-8],[-4,-10],[-1,-10],[-2,-7],[-3,-8],[-3,-10],[0,-14],[6,-24],[1,-15],[-4,-21],[-5,-33],[0,-8],[0,-18],[-7,-31],[-4,-33],[-4,-15],[-17,-52],[-3,-16],[1,-18],[2,-7],[3,-5],[2,-6],[1,-9],[0,-18],[-1,-8],[-1,-8],[-2,-15],[-1,-12],[2,-12],[14,-44],[2,-10],[2,-17],[0,-16],[-2,-14],[-4,-28],[-1,-12],[0,-14],[6,-30],[2,-9],[7,-17],[2,-9],[-2,-25],[-1,-12],[11,-39],[0,-8],[-7,-14],[-4,-7],[-1,-1],[-12,-3],[-2,-3],[-1,-4],[-3,-5],[-3,-4],[-3,-1],[-58,5],[-16,-5],[-66,-21],[-34,-19],[-47,-40],[-18,-26],[-12,-12],[-6,-10],[-3,-13],[-2,-6],[-30,-60],[-5,-21],[-1,-28],[2,-20],[0,-7],[-1,-7],[-4,-11],[-2,-10],[-2,-12],[-1,-6],[0,-25],[-2,-25],[-15,-68],[4,-12],[0,-12],[-4,-12],[-6,-9],[-12,-10],[-6,-7],[-8,-31],[-2,-3],[-4,-3],[-2,-2],[-13,-29],[0,-5],[0,-13],[-3,-1],[-44,11],[-5,-2],[-9,-8],[-6,-2],[-23,4],[-6,-2],[-18,-15],[-10,-5],[-71,-6],[-28,-15],[-7,-1],[-2,-2],[-1,-2],[-1,-3],[-2,-2],[-5,0],[-1,0],[-9,-5],[-2,-3],[-4,-9],[-4,-24],[-3,-9],[-4,-10],[-1,-5],[-4,-24],[-1,-4],[-4,-9],[-26,-44],[-8,-29],[-1,-12],[-1,-13],[1,-16],[3,-8],[9,-11],[6,-11],[2,-13],[0,-27],[-2,-11],[-11,-32],[-1,-5],[-1,-8],[1,-8],[1,-3],[3,-2],[0,-4],[-2,-8],[-1,-3],[-7,-8],[-3,-3],[-2,-5],[-1,-5],[-1,-10],[-3,-9],[1,-3],[-2,-7],[-9,-5],[-4,-5],[-1,-5],[-2,-8],[-2,-8],[-4,-3],[-11,-27],[-12,-18],[-2,0],[-3,9],[-3,-4],[-3,-9],[-4,-4],[-4,-2],[-4,-3],[-4,-1],[-4,2],[-4,-10],[-5,-3],[-12,-3],[-9,-7],[-5,0],[-3,7],[-3,-4],[-5,2],[-3,-2],[-10,12],[-2,-4],[-2,11],[-1,10],[-3,8],[-12,4],[-8,6],[-3,1],[-3,-1],[-6,-2],[-4,-1],[-9,4],[-4,0],[-3,-2],[-6,-5],[-1,-1],[-13,8],[-7,1],[-6,-9],[-3,3],[-2,1],[-52,-12],[-22,0],[-5,-3],[-12,-12],[-3,-5],[-1,-5],[0,-5],[1,-4],[0,-5],[-1,-5],[-4,-7],[-1,-4],[-3,-6],[-7,-3],[-13,-1],[-16,-7],[-6,-1],[-5,-4],[-5,-6],[-6,-5],[-5,3],[-5,-7],[-7,-12],[-7,-13],[-2,-11],[-3,-7],[-5,-6],[-9,-9],[-10,-5],[-44,-2],[-23,-7],[-46,-30],[-23,-24]],[[64747,60326],[-18,80],[-17,80],[-17,80],[-18,80],[-11,50],[-2,8],[-5,3],[-11,2],[-4,5],[1,0],[1,1],[1,0],[-9,42],[-12,57],[-12,58],[-12,57],[-12,57],[-12,57],[-11,57],[-12,58],[-12,57],[-12,57],[-12,57],[-12,57],[-12,57],[-12,58],[-12,57],[-11,57],[-12,57],[-8,38],[-2,9]],[[64438,61719],[31,22],[47,34],[48,34],[47,33],[48,34],[47,34],[48,34],[48,34],[47,33],[48,34],[47,34],[48,34],[47,33],[48,34],[47,34],[48,34],[47,34],[42,29],[9,57],[2,12],[5,33],[8,52],[10,66],[13,79],[13,88],[15,94],[15,97],[12,75],[3,22],[15,95],[14,88],[12,78],[10,67],[8,51],[6,33],[1,12],[2,9],[10,67],[0,14],[-3,12],[-15,49],[-22,74],[-22,74],[-23,74],[-22,74],[-18,58]],[[65329,63915],[3,86],[-2,87],[1,17],[9,57],[26,92],[6,36],[6,59],[3,20],[6,15],[10,22],[4,12],[9,73],[3,10],[12,38],[2,8],[-1,45],[-1,17],[-5,13],[-10,11],[-5,9],[-2,10],[1,9],[12,4],[12,9],[5,6],[8,9],[8,6],[8,3],[9,-1],[9,-3],[4,0],[5,4],[5,1],[7,-11],[5,-1],[33,26],[17,9],[3,9],[-10,36],[-3,25],[-5,22],[-8,6],[-16,-12],[-4,1],[-18,7],[-3,3],[0,9],[2,11],[11,37],[1,9],[1,28],[0,5],[-2,6],[-6,7],[-2,4],[-1,9],[1,32],[-3,25],[-1,13],[3,8],[4,8],[2,20],[7,14],[-1,11],[-4,18],[-1,7],[-1,11],[2,22],[0,11],[-3,45],[3,19],[9,20],[7,14],[2,3],[9,11],[11,6],[11,-3],[1,-1],[7,-9],[4,-17],[2,-27],[1,-12],[-7,9],[-3,4],[-4,2],[-5,-3],[-1,-8],[2,-9],[10,-18],[9,-41],[8,-13],[4,-1],[1,0],[5,0],[6,3],[2,6],[2,11],[6,14],[4,22],[1,0],[4,4],[10,2],[5,5],[9,17],[2,3],[8,11],[1,6],[0,4],[1,11],[1,19],[1,3],[1,3],[15,3]],[[65509,60828],[-1,6],[0,1],[2,4],[3,3],[4,3],[5,-7],[3,-2],[-5,-5],[-8,0],[-3,-3]],[[65570,60869],[1,-8],[0,-1],[3,-7],[3,-6],[4,-2],[-8,-12],[-5,-4],[-4,-1],[-13,1],[-4,3],[-2,13],[7,9],[11,8],[7,7]],[[66362,62685],[1,-13],[1,-10],[9,-31],[2,-9],[-1,-7],[-2,-4],[-11,-16],[-11,-13],[-5,-9],[-7,-20],[-3,-14],[-3,-29],[-3,-10],[0,-6],[0,-1],[1,-5],[0,-4],[-1,-4],[-10,-19],[-5,-14],[-2,-6],[-3,-1],[-3,-1],[-4,-2],[-1,-4],[-1,-6],[-2,-7],[-3,-5],[-3,0],[-2,5],[-1,5],[-1,18],[-1,19],[1,10],[0,1],[-1,5],[2,47],[2,7],[3,9],[1,3],[5,7],[2,2],[1,1],[0,1],[1,11],[1,3],[5,4],[4,0],[5,2],[5,6],[2,7],[1,3],[1,7],[1,1],[1,23],[1,11],[3,9],[13,35],[5,22],[4,19],[2,7],[4,2],[4,-9],[0,-1],[-1,-10],[-2,-11],[-1,-11]],[[69940,74152],[1,-6],[-6,-38],[-3,-7],[-4,-2],[-8,4],[-5,4],[-6,7],[-3,9],[5,9],[7,0],[5,4],[10,13],[7,3]],[[69710,74299],[-6,1],[-24,-3],[-40,-20],[-12,-2],[-11,1],[-12,14],[-5,25],[-3,27],[-8,20],[-6,4],[-5,-1],[-5,-3],[-6,0],[-6,2],[-14,10],[4,21],[-1,2],[-2,5],[-1,1],[-4,9],[0,1],[-1,3],[0,12],[4,12],[9,9],[19,7],[2,2],[3,6],[7,18],[4,6],[4,3],[4,2],[4,3],[3,5],[10,20],[17,22],[4,6],[4,5],[3,2],[4,2],[1,2],[1,3],[0,3],[5,4],[0,5],[3,20],[-11,10],[-25,10],[-5,9],[0,10],[2,7],[6,1],[10,-13],[5,-4],[1,11],[-3,6],[-50,92],[-9,13],[-1,1],[-1,2],[-5,10],[-3,6],[-13,8],[-10,-4],[-8,-63],[-15,-29],[-20,-20],[-29,-18],[-27,-33],[-51,-26],[-6,-5],[-5,-7],[-12,-24],[-7,-10],[-7,-4],[-9,6],[-3,5],[-3,6],[-5,14],[-3,6],[-7,7],[-3,5],[-11,28],[-7,9],[-8,1],[-5,5],[-3,6],[-4,5],[-5,1],[-9,-5],[-4,-4],[-4,-6],[-7,-14],[-5,-16],[-2,-18],[0,-21],[2,-32],[-1,-8],[-4,-4],[-17,-2],[-10,-11],[0,-12],[11,-31],[6,-34],[3,-10],[7,-21],[3,-12],[2,-13],[-2,-29],[-9,-2],[-11,6],[-7,-1],[1,-18],[20,-29],[0,-14],[-10,-8],[-14,1],[-25,12],[-10,8],[-8,7],[-7,2],[-45,-12],[-5,-3],[-10,-10],[-7,-1],[-16,5],[-6,-1],[-15,-7],[-12,-5],[-5,-6],[7,-13],[12,-13],[10,-6],[3,0],[65,21],[13,-15],[1,-8],[1,-9],[0,-9],[-2,-7],[-7,-2],[-20,5],[-5,-3],[-10,-14],[-4,-2],[-6,19],[-5,6],[-3,-11],[0,-6],[5,-6],[1,-5],[0,-12],[0,-5],[1,-6],[25,-56],[1,-13],[-12,-8],[-6,16],[-5,26],[-5,20],[-6,7],[-2,-5],[1,-11],[3,-13],[6,-21],[0,-9],[-3,-11],[-2,-1],[-2,-1],[-1,-1],[-2,-9],[0,-1],[0,-3],[-1,-6],[-2,-4],[-4,4],[-7,19],[-4,6],[-10,-14],[-4,3],[-3,0],[-3,-13],[-3,-95],[-1,-14],[-4,-12],[-6,-12],[-12,-12],[-4,-9],[1,-3],[2,-8],[-6,-4],[-17,-8],[-13,-2],[-14,2],[-23,13],[-41,2],[-95,41],[-13,0],[-11,-5],[-25,-31],[-23,-6],[-5,-8],[2,-27],[-1,-2],[-1,-1],[-2,-2],[-1,0],[-7,2],[-4,-1],[-3,-6],[-3,-23],[-2,-23],[0,-22],[-4,-20],[-2,-20],[-2,-1],[-2,1],[-3,-1],[-3,-4],[-1,-3],[-1,-4],[0,-8],[2,-24],[7,-12],[34,-20],[23,-1],[11,-7],[1,-3],[2,-6],[2,-3],[1,-1],[5,2],[2,-1],[2,-7],[1,-8],[-3,-46],[1,-15],[5,-8],[36,-10],[7,1],[21,11],[4,3],[4,2],[4,0],[5,-3],[2,-2],[4,-7],[5,-1],[4,3],[5,5],[2,1],[2,1],[3,-1],[2,-1],[4,-8],[10,-35],[5,-13],[3,-7],[2,-12],[0,-13],[-2,-9],[-4,-8],[-4,-7],[-5,-4],[-6,-3],[-5,1],[-3,-4],[-1,-12],[1,-6],[1,-6],[1,-5],[0,-7],[-1,-3],[-7,-9],[-2,-9],[0,-10],[4,-23],[1,-12],[-1,-34],[1,-13],[2,-7],[6,-18],[2,-9],[0,-18],[1,-9],[3,-8],[11,-18],[10,-31],[5,-9],[14,-13],[22,-33],[7,-18],[1,-23],[-4,-35],[-7,-33],[-11,-27],[-3,-12],[-2,-10],[-2,-9],[-2,-7],[-3,-4],[-1,-2],[-4,-2],[-13,-3],[-9,-5],[-5,-8],[-12,-61],[-8,-27],[-20,-48],[-15,-24],[-14,-31],[-12,-35],[-8,-36],[-1,-25],[5,-47],[1,-25],[-1,-21],[-3,-20],[-5,-18],[-2,-9]],[[68827,72493],[-1,12],[-3,7],[-5,5],[-6,3],[-10,-1],[-3,1],[-3,3],[-7,7],[-3,2],[-3,-1],[-5,-2],[-3,-1],[-2,-3],[-1,-6],[-3,-5],[-3,-2],[-4,7],[-5,24],[-7,6],[-6,-3],[-5,-7],[-9,-15],[-5,-7],[-6,-5],[-6,-3],[-7,-1],[-7,-3],[-10,-12],[-7,-2],[-6,5],[-3,9],[-2,11],[-3,10],[-5,9],[-13,8],[-5,6],[-3,9],[-5,25],[-3,6],[-6,3],[-11,13],[-5,4],[-13,1],[-26,-11],[-36,-2],[-3,-2],[-6,-8],[-3,-2],[-7,1],[-3,1],[-19,13],[-7,1],[-7,-1],[-5,-3]],[[68477,72597],[-7,9],[1,11],[4,10],[5,9],[4,13],[-1,9],[-4,8],[-5,8],[-4,17],[1,21],[6,40],[1,23],[-2,47],[1,23],[9,29],[16,34],[10,34],[-3,12],[-3,16],[-9,12],[-10,8],[-11,5],[-21,0],[-9,4],[-28,22],[-13,28],[-8,13],[-9,7],[-18,9],[-17,23],[-8,7],[-19,5],[-28,22],[-9,2],[-8,-6],[-13,-18],[-8,-6],[-19,-3],[-18,10],[-46,52],[-28,32],[-37,42],[-26,40],[-37,56],[-19,20],[-41,24],[-36,35],[-58,82],[-16,34],[-8,18],[-7,7],[-8,-2],[-22,-18],[-7,-2],[-8,2],[-8,7],[-45,53],[-39,47],[-31,36],[-17,29],[-29,69],[-18,28],[-39,45],[-91,108],[-45,53],[-38,44],[-33,38],[-16,27],[-3,3],[-20,41],[-3,16],[-5,33],[0,13],[1,13],[2,11],[2,11],[-1,12],[-9,30],[-1,13],[0,15],[-1,12],[-3,11],[-7,23],[-1,11],[-1,25],[-3,5],[-23,22],[-13,6],[-6,8],[-1,4],[-1,1],[-2,14],[-2,5],[-10,22],[-4,13],[-6,36],[-3,9],[-9,16],[-3,8],[-2,12],[-3,27],[-9,50],[-3,12],[2,4],[-2,9],[0,42],[-1,12],[-3,10],[-20,55],[-5,9],[-62,74],[-25,17],[-27,11],[-10,2],[-6,-5],[-4,-12],[-3,-21],[-6,-6],[-6,-19],[-7,-14],[-10,-7],[-11,-1],[-11,7],[-29,33],[-4,0],[-17,-4],[-1,5],[-1,6],[-1,1],[-2,-5],[-4,-10],[-1,-3],[-2,-2],[-14,22],[-19,7],[-56,-5],[-34,-18],[-16,-1],[-10,5],[-8,9],[-15,24],[-17,20],[-26,22],[-31,25],[-8,13],[-2,14],[4,47],[2,10],[4,9],[4,6],[12,9],[4,8],[-3,11],[-18,42],[-9,26],[-2,21],[7,16],[7,8],[9,2],[11,-6],[9,-9],[6,-4],[4,1],[3,7],[0,9],[-3,8],[-3,7],[-4,5],[-13,13],[-5,6],[-3,8],[-6,16],[-8,11],[-30,18],[-14,-1],[-4,3],[-3,8],[0,8],[4,6],[4,2],[1,0],[16,10],[-1,23],[-5,29],[2,28],[5,5],[6,4],[4,5],[1,10],[-3,8],[-7,6],[-12,8],[-10,14],[-7,19],[-9,15],[-13,2],[-12,-2],[-24,3],[-59,-14],[-14,1],[-7,4],[-11,19],[-7,3],[-14,3],[-8,7],[-4,10],[-3,45],[-3,12],[-4,10],[-17,29],[-7,6],[-7,-1],[-8,-6],[-8,-4],[-8,0],[-13,3],[-19,14],[-19,27],[-59,111],[-7,6],[-5,-13],[-4,-50],[-6,-18],[-12,-5],[-14,1],[-14,6],[-30,19],[-7,0],[-5,-3],[-15,-14],[-10,-7],[-5,-6],[-3,-9],[2,-11],[5,-7],[35,-26],[10,-12],[8,-21],[7,-28],[21,-52],[11,-21],[3,-5],[2,-5],[-1,-5],[-4,-3],[-18,-5],[-4,2],[-3,8],[0,9],[1,10],[1,11],[-3,21],[-7,16],[-9,10],[-28,21],[-6,2],[-5,-2],[-10,-6],[-5,-1],[-4,4],[-6,15],[-4,6],[-6,3],[-6,0],[-6,-1],[-5,-4],[-3,-6],[-3,-7],[-7,-13],[-7,-5],[-5,-6],[2,-16],[6,-20],[0,-10],[-2,-13],[-12,-41],[-4,-7],[-10,-6],[-3,-8],[2,-9],[4,-6],[1,-6],[-6,-7],[-6,-2],[-19,2],[-5,-2],[-15,-12],[-13,-5],[-39,11],[-27,-1],[-26,-21],[-23,-35],[-15,-45],[-10,-25],[-12,-13],[-26,-20],[-8,-18],[0,-22],[6,-47],[-1,-23],[-2,-19],[0,-18],[5,-21],[6,-17],[3,-15],[1,-17],[0,-21],[1,-17],[4,-16],[5,-15],[6,-11],[4,-4],[4,-4],[14,-5],[3,-3],[-1,-4],[-3,-6],[-6,-6],[-13,-11],[-6,-10],[-8,-25],[-5,-5],[-34,11],[-27,9],[-62,6],[-10,1],[-57,5],[-52,4],[-45,4]],[[65549,74941],[0,136],[0,136],[0,136],[0,136],[0,135],[0,136],[0,136],[0,136],[0,136],[-1,136],[0,136],[0,136],[0,136],[0,136],[0,135],[0,136],[0,1],[0,1],[1,0],[26,13],[26,12],[26,13],[26,13],[26,12],[26,13],[26,12],[20,10],[6,3],[26,13],[26,12],[26,13],[26,12],[26,13],[26,13],[26,12],[27,13],[34,16],[35,16],[35,16],[34,16],[16,7],[17,7],[16,7],[16,7],[16,8],[17,7],[17,7],[17,8],[22,9],[7,-1],[7,-5],[21,-21],[7,-6],[17,-18],[27,-27],[35,-36],[25,-25],[18,-18],[47,-49],[52,-52],[55,-55],[56,-57],[55,-56],[54,-55],[51,-51],[47,-47],[40,-41],[33,-34],[25,-25],[17,-17],[7,-13],[5,-15],[2,-15],[2,-30],[2,-14],[17,-40],[32,-53],[15,-25],[15,-26],[19,-34],[16,-29],[16,-28],[16,-28],[16,-29],[16,-28],[16,-27],[15,-28],[16,-28],[21,-37],[5,-4],[6,-3],[23,6],[10,3],[10,3],[10,3],[10,2],[15,5],[16,4],[16,5],[15,4],[26,7],[25,6],[25,7],[26,6],[25,6],[25,7],[26,6],[25,6],[42,-5],[43,-6],[42,-6],[42,-6],[39,-6],[38,-5],[39,-6],[38,-5],[16,-2],[4,2],[5,2],[28,24],[27,23],[28,24],[27,23],[5,3],[5,3],[4,-1],[4,-1],[5,-7],[5,-6],[30,-60],[30,-61],[13,-22],[14,-23],[29,-28],[28,-28],[6,-8],[5,-7],[24,-76],[15,-48],[21,-67],[18,-58],[2,0],[3,-1],[40,34],[40,34],[-6,-147],[-6,-147],[-1,-16],[-1,-15],[-1,-5],[-1,-5],[-4,-2],[-3,-2],[-1,-5],[-1,-4],[0,-18],[-1,-97],[-1,-115],[1,-4],[0,-3],[1,-1],[1,-2],[34,0],[30,0],[31,0],[33,-1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[4,-75],[5,-75],[9,-73],[9,-73],[12,-87],[12,-88],[6,-12],[6,-12],[7,-3],[5,-2],[11,-5],[32,4],[27,2],[41,4],[30,3],[35,3],[23,3],[36,3],[35,3],[3,-1],[4,-1],[5,-5],[6,-5],[3,-2],[3,-2],[3,1],[3,1],[8,8],[8,9],[3,3],[4,4],[2,-8],[1,-9],[1,0],[0,-1],[1,-3],[1,-3],[6,-13],[6,-13],[1,-5],[2,-6],[1,-11],[1,-12],[2,-4],[2,-5],[1,2],[2,2],[2,2],[2,1],[1,-1],[2,0],[2,-3],[1,-3],[2,6],[2,7],[3,1],[3,0],[0,-6],[1,-7],[0,-1],[0,-3],[-1,-2],[2,-1],[1,-1],[1,-1],[-4,-4],[-3,-4],[-1,-1],[-1,0],[1,-1],[1,-1],[1,-2],[0,-1],[2,-4],[1,-3],[0,-9],[0,-8],[-2,-10],[-1,-10],[-2,-10],[-2,-9],[-2,-8],[-2,-8],[-2,-4],[-1,-4],[-3,-3],[-2,-4],[-2,-3],[-2,-3],[-5,-4],[-5,-3],[-1,-2],[-1,-2],[-1,-2],[0,-2],[1,-1],[1,-2],[5,-1],[5,-2],[5,-4],[4,-4],[13,-20],[12,-21],[10,-12],[9,-12],[11,-9],[22,-19],[32,-28],[1,2],[0,1],[2,3],[2,3],[2,0],[2,0],[1,2],[1,2],[1,2],[1,3],[1,1],[1,2],[2,-1],[1,0],[6,-4],[5,-5],[4,-1],[4,-1],[3,3],[3,3],[1,4],[1,4],[-3,2],[-3,2],[4,9],[3,9],[0,2],[0,2],[-1,4],[-1,3],[-1,4],[-1,3],[0,4],[-1,4],[0,3],[0,4],[-3,2],[-4,1],[-1,1],[-1,1],[-1,3],[-1,2],[-1,6],[-1,5],[-2,25],[-1,25],[0,4],[1,5],[1,1],[0,2],[1,1],[1,1],[1,3],[1,4],[0,3],[0,2],[0,7],[0,7],[0,3],[0,3],[1,-1],[1,-1],[2,-1],[1,-1],[1,7],[2,7],[4,4],[4,5],[6,4],[2,2],[9,6],[3,5],[2,6],[5,24],[5,23],[4,7],[4,7],[10,7],[9,7],[4,9],[3,10],[2,4],[2,4],[3,1],[2,2],[6,1],[6,1],[5,4],[5,4],[5,5],[5,6],[2,3],[3,4],[1,3],[1,4],[2,28],[2,28],[0,5],[0,5],[0,4],[-1,3],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-2,3],[0,2],[0,3],[0,2],[1,2],[1,2],[1,1],[7,5],[6,5],[3,1],[2,2],[3,-2],[3,-2],[1,7],[1,6],[4,5],[3,6],[8,7],[7,8],[3,1],[2,0],[4,-2],[4,-2],[2,0],[2,1],[5,5],[6,6],[2,1],[2,1],[8,-3],[8,-2],[2,1],[2,2],[0,3],[-1,3],[-2,7],[-2,6],[-1,4],[0,3],[2,7],[1,8],[4,5],[4,4],[8,4],[8,4],[14,18],[14,18],[4,7],[4,7],[2,3],[2,3],[19,9],[19,8],[15,1],[16,1],[6,4],[5,4],[5,8],[4,8],[2,4],[2,5],[2,2],[2,3],[8,5],[8,4],[11,14],[12,14],[3,6],[4,7],[9,26],[9,26],[2,3],[2,3],[3,2],[2,3],[3,1],[2,1],[3,2],[2,2],[2,3],[1,4],[1,5],[1,5],[4,12],[3,12],[6,8],[6,9],[14,9],[13,9],[2,0],[2,-1],[3,-3],[2,-3],[3,-4],[2,-4],[1,-4],[1,-3],[1,-6],[1,-6],[2,-3],[2,-4],[3,-1],[3,-2],[3,-1],[4,-1],[4,4],[4,3],[3,9],[3,8],[3,11],[2,11],[3,10],[4,9],[4,8],[4,7],[1,4],[1,4],[2,6],[1,5],[2,4],[2,5],[3,0],[3,0],[7,-3],[6,-3],[5,1],[6,2],[5,4],[5,4],[10,12],[9,13]],[[69707,75490],[6,9],[12,14],[9,2],[9,-6],[39,-44],[9,-5],[1,0],[-4,-22],[-11,-12],[-23,-11],[-39,-46],[-11,-4],[-14,0],[-11,-4],[-5,-22],[-1,-34],[-3,-10],[-10,-6],[-27,-5],[-9,-8],[-27,-38],[-13,-22],[-8,-28],[-6,-16],[-9,-9],[-9,-7],[-16,-21],[-45,-42],[-6,-15],[5,-19],[10,-9],[39,-7],[1,0],[10,-10],[5,-7],[4,-9],[6,-20],[5,-6],[5,-1],[1,0],[10,6],[34,31],[9,3],[6,-6],[4,-10],[16,-43],[2,-12],[1,-13],[-4,-36],[0,-10],[4,-8],[4,1],[6,4],[6,1],[5,-4],[5,-5],[5,-8],[4,-8],[5,-8],[5,-1],[12,3],[13,-4],[7,-5],[5,-7],[5,-5],[11,-2],[4,-6],[7,-19],[5,-4],[2,11],[0,12],[-2,11],[1,8],[6,5],[6,-1],[4,-7],[3,-22],[3,-8],[3,-7],[4,1],[3,11],[7,15],[19,-27],[6,9],[2,20],[-3,103],[2,7],[4,-1],[13,-20],[12,-9],[10,3],[7,13],[9,32],[4,20],[2,12],[-1,11],[-8,16],[-3,10],[5,23],[4,6],[6,4],[6,-1],[4,-8],[1,-12],[0,-12],[-5,-33],[0,-8],[3,-1],[1,5],[2,6],[1,3],[3,-2],[1,-9],[3,-2],[2,3],[0,13],[2,2],[3,-1],[2,-4],[26,-62],[4,-18],[2,-19],[-1,-25],[2,-25],[7,-6],[22,6],[7,-9],[4,-10],[5,-4],[8,8],[6,9],[6,7],[7,1],[7,-6],[3,-12],[2,-16],[0,-17],[3,-31],[0,-11],[-2,-11],[-4,-14],[9,4],[16,8],[10,2],[2,3],[3,16],[2,4],[5,7],[3,-4],[8,-21],[6,-5],[8,-4],[15,-3],[1,-1],[1,-3],[0,-3],[0,-3],[0,-14],[5,-4],[6,-1],[6,-3],[12,-30],[8,-16],[11,-7],[12,-3],[36,6],[11,-5],[1,-17],[-1,-10],[4,1],[12,14],[21,16],[4,-5],[4,-9],[6,-6],[16,1],[7,-2],[2,-1],[1,-12],[-8,-18],[-13,-12],[-26,-16],[-24,-24],[-20,-8],[-10,-7],[-7,-17],[-3,-39],[-8,-6],[-10,7],[-5,0],[-2,-9],[-1,-9],[-1,-9],[-3,-7],[-4,-5],[-11,-1],[-20,21],[-10,3],[-8,6],[-9,18],[-10,13],[-8,-6],[-1,-10],[6,-16],[0,-11],[-2,-10],[0,-6],[3,-6],[12,-14],[1,-5],[2,-7],[-1,-14],[-3,-15],[-5,-12],[-7,-2],[-7,4],[-17,16],[-4,2],[-12,-1],[-4,2],[1,6],[4,1],[4,1],[4,2],[2,6],[-1,0],[-2,4],[-5,1],[-2,-1],[-13,-1],[-5,-2],[-18,-16],[-3,-6],[-1,-11],[-4,-17],[-8,-12],[-24,-20],[-1,-8],[2,-9],[5,-6],[8,-6],[2,-3],[2,-2],[1,-4],[-1,-7],[-4,-1],[-5,1],[-3,2],[-2,1],[-2,0],[-3,-2],[-11,1],[-11,5],[-10,-1],[-9,-14],[-5,-19],[-3,-8],[-4,-7],[-15,-14],[-4,-2],[-6,4],[-1,9],[0,24],[-2,12],[-4,14],[-5,7],[-5,-8],[-2,-11],[0,-10],[-3,-7],[-7,-1],[-13,4],[-6,4],[-6,6],[-5,8],[-2,9],[-3,7],[-12,6],[-9,13],[-6,1],[-8,-1],[-5,0],[-4,3],[-3,5],[-2,7],[-3,3],[-4,-2],[-4,-10],[-3,-13],[-4,-10],[-8,-2],[-33,8],[-16,-5],[-10,-17]],[[69601,74761],[-5,-2],[4,-12],[5,-8],[8,-18],[4,-7],[6,-2],[-1,10],[-3,14],[-4,11],[-6,9],[-8,5]],[[69771,74183],[1,1],[3,4],[2,1],[7,4],[3,-2],[2,-5],[-2,-9],[-12,-15],[-5,-7],[1,-16],[12,-21],[-1,-18],[-3,-8],[-3,-2],[-10,0],[-13,-6],[-4,1],[-3,4],[-1,7],[-1,5],[-6,0],[-3,-3],[-3,-6],[-4,-4],[-4,3],[0,15],[12,30],[-2,18],[-3,4],[-7,2],[-4,4],[-3,7],[-7,25],[-2,9],[1,10],[1,10],[5,19],[9,8],[6,-7],[5,-14],[4,-16],[4,-10],[8,-8],[16,-11],[0,-1],[2,-1],[2,-1]],[[72280,75455],[-12,11],[-9,18],[-7,21],[-9,19],[-18,26],[-11,25],[-4,7],[-11,12],[-62,21],[-12,1],[-22,-7],[-27,3],[-14,9],[-8,16],[-12,48],[-9,14],[-22,17],[-10,15],[-4,11],[-3,11],[-1,12],[-1,14],[2,23],[-2,6],[-7,3],[-11,-3],[-22,-18],[-10,1],[-11,7],[-18,1],[-23,15],[-33,5],[-5,4],[-10,13],[-11,10],[-27,15],[-19,3],[-12,-1],[-6,-4],[-10,-10],[-5,-3],[-5,1],[-12,6],[-5,2],[-13,-3],[-13,1],[-30,-4],[-12,3],[-16,15],[-6,4],[-6,1],[-7,-2],[-2,-1],[-5,-5],[-7,-5],[-3,3],[-2,4],[-1,4],[-2,3],[-19,7],[-18,1],[-6,-1],[-14,-12],[-5,1],[-5,4],[-5,7],[-6,4],[-11,0],[-7,4],[-5,1],[-4,-2],[-12,-9],[-9,-4],[-27,7],[-5,1],[-5,0],[-4,1],[-4,6],[-8,17],[-3,5],[-10,5],[-31,8],[-6,4],[-5,-1],[-11,-7],[-13,0],[-5,-2],[-5,-6],[-6,-11],[-2,-2],[-2,0],[-5,2],[-2,-1],[-1,-2],[0,-3],[-1,-2],[-11,-9],[-5,-2],[-13,0],[-10,-7],[-6,-2],[-7,2],[-15,9],[-7,2],[-5,-4],[-9,-12],[-5,-3],[-2,2],[-3,10],[-3,3],[-4,-1],[-5,-4],[-3,0],[-24,11],[-25,0],[-20,8],[-8,0],[-18,-10],[-6,1],[-22,10],[-11,2],[-14,-2],[-3,0],[-4,-2],[-3,-4],[-9,-38],[-3,-8],[-7,-10],[-8,-9],[-8,-6],[-7,0],[-18,11],[-5,1],[-11,-1],[-63,13],[-19,-1],[-7,3],[-17,16],[-6,8],[-8,7],[-17,8],[-8,6],[-8,11],[-23,19],[-32,8],[-10,6],[-28,34],[-4,8],[-7,18],[-4,8],[-5,5],[-12,5],[-10,10],[-11,2],[-6,4],[-14,19],[-8,6],[-9,4],[-8,5],[-14,20],[-8,7],[7,-16],[3,-11],[-1,-8],[-4,-4],[-44,-8],[-5,2],[-10,15],[-6,3],[-8,-10],[-9,-41],[-11,-8],[-11,0],[-5,-1],[-48,-31],[-13,-12],[-4,-6],[-3,-9],[-11,-48],[-6,-16],[-2,-8],[-1,-10],[1,-10],[3,-20],[1,-11],[-1,-9],[-7,-26],[-15,-52],[-3,-21],[-1,-22],[2,-20],[4,-18],[20,-62],[0,-11],[-7,-2],[-17,11],[-25,7],[-4,7],[0,13],[1,18],[-4,8],[-7,4],[-19,2],[-5,2],[-5,4],[-6,7],[-10,7],[-12,1],[-36,-10],[-9,1],[-10,4],[-9,7],[-7,10],[-10,28],[-6,12],[-9,7],[-40,15],[-20,0],[-9,3],[-33,35],[-18,11],[-36,3],[-4,-2],[-8,-6],[-5,-1],[-8,4],[-33,28],[-17,7],[-4,3],[-5,5],[-4,3],[-5,-2],[-9,-5],[-20,-2],[-9,-5],[-30,-30],[-5,-2],[-4,2],[-11,15],[-2,2],[-3,0],[-5,-3],[-13,7],[-7,-1],[-5,-7],[-3,-8],[-4,-9],[-4,-6],[-5,-4],[-6,2],[-6,5],[-7,3],[-4,-4],[-6,-17],[-4,-8],[-4,-4],[-11,-6],[-2,-6],[-1,-12],[1,-24],[-2,-8],[-4,-8],[-24,-6],[-11,-10],[3,-22],[3,-5],[10,-14],[2,-7],[-1,-7],[-2,-6],[-4,-3],[-5,1],[-13,13],[-4,-6],[-4,-10],[-3,-12],[-2,-11],[1,-7],[1,-4],[1,-4],[-2,-7],[-9,-17],[-3,-5],[-7,-10],[-3,-9],[1,-9],[11,-17],[6,-5],[8,-3]],[[65549,74941],[-19,3],[-9,-1],[-25,-20],[-26,-6],[-16,-10],[-35,-3],[-9,4],[-8,8],[-6,7],[-4,10],[-8,30],[-3,10],[-5,8],[-17,19],[-10,14],[-8,16],[-18,51],[-18,51],[-13,27],[-29,63],[-2,10],[-2,12],[0,13],[2,10],[0,10],[-3,12],[-7,13],[-47,69],[-33,35],[-27,30],[-47,49],[-43,46],[-21,12],[-21,4],[-66,-19],[-43,-12],[-49,-14],[-18,-6],[-61,-39],[-16,-15],[-43,-24],[-60,-79],[-37,-59],[-42,-67],[-12,-19]],[[64565,75194],[0,12],[2,13],[11,43],[2,23],[-2,23],[-2,13],[-4,9],[-3,5],[-3,3],[-2,5],[-1,8],[2,20],[0,6],[-2,5],[-8,15],[4,9],[2,11],[2,12],[0,11],[2,9],[4,5],[5,3],[4,5],[14,42],[15,32],[2,5],[1,6],[1,7],[-1,12],[1,7],[1,5],[8,13],[2,5],[1,5],[1,10],[0,5],[5,24],[3,22],[0,21],[-4,23],[-7,25],[-5,13],[-12,12],[-3,14],[-1,12],[3,5],[2,-7],[2,-12],[4,-12],[5,-6],[2,-1],[10,-11],[1,-4],[1,-5],[0,-3],[2,0],[4,-21],[3,-11],[2,-5],[3,5],[3,12],[3,14],[1,12],[-3,26],[-6,17],[-10,10],[-13,2],[-2,14],[-14,15],[-28,16],[-28,4],[-4,-1],[-3,-1],[-4,-3],[-3,-3],[-2,-4],[-3,-10],[-1,-3],[-7,5],[-19,40],[-10,12],[-7,1],[-24,-6],[-19,-11],[-10,-11],[-6,-4],[-6,5],[-16,30],[-4,9],[-6,19],[-4,10],[-3,10],[-3,22],[-3,11],[-13,24],[-3,12],[-4,2],[-4,1],[-2,2],[-2,8],[1,5],[2,4],[1,7],[-1,11],[-3,12],[-5,7],[-11,-8],[-14,1],[-6,-2],[-2,-4],[-2,-4],[-2,-3],[-3,-2],[-3,2],[-7,6],[-3,1],[-26,-9],[-25,0],[-4,6],[1,14],[10,48],[3,25],[2,78],[-2,12],[-8,27],[-2,5],[0,6],[0,13],[-1,6],[-4,8],[-11,12],[-3,10],[-1,9],[-2,1],[-3,-2],[-3,-2],[-4,2],[-2,1],[-4,5],[-7,16],[-26,83],[-2,11],[-1,10],[-1,6],[-1,5],[-2,4],[-1,3],[-1,6],[1,13],[0,6],[-3,6],[-8,12],[-2,5],[-2,11],[-4,10],[-4,12],[-2,5],[-3,2],[-6,3],[-3,3],[-2,8],[0,5],[2,5],[0,8],[-1,50],[-1,12],[-1,9],[-8,15],[-11,13],[-23,17],[-98,27],[-13,9],[-6,6],[-6,9],[-5,11],[-2,13],[2,26],[0,13],[-2,11],[2,5],[-3,11],[-1,19],[1,19],[3,11],[5,-17],[4,8],[3,16],[1,10],[3,3],[0,7],[0,8],[1,6],[4,4],[2,-1],[3,-4],[3,-3],[44,-13],[13,1],[13,7],[7,0],[3,-9],[4,-2],[24,0],[4,-7],[3,-3],[4,4],[2,6],[1,4],[1,3],[3,1],[15,-1],[7,-2],[6,-5],[10,-14],[8,-16],[3,-3],[6,2],[3,-2],[2,-4],[-1,-4],[-2,-3],[-2,-1],[4,-10],[7,-7],[23,-17],[8,-2],[8,1],[8,3],[7,5],[14,23],[1,2],[1,2],[0,2],[2,2],[2,1],[7,-1],[4,1],[8,4],[4,0],[-2,-19],[8,-4],[19,6],[18,-13],[7,1],[3,7],[-1,9],[-4,7],[-4,6],[-17,13],[-11,16],[-7,2],[-13,-7],[-13,-3],[-8,11],[-9,44],[-7,18],[-9,13],[-22,22],[-3,4],[-2,4],[-2,3],[-10,2],[-3,2],[-1,4],[-3,4],[-18,18],[-2,10],[-1,13],[1,12],[5,5],[2,2],[1,5],[0,6],[0,4],[-4,3],[-3,0],[-4,2],[-1,7],[3,9],[6,6],[7,4],[6,1],[7,-1],[3,1],[4,4],[2,4],[3,8],[3,4],[12,13],[7,5],[6,2],[4,-5],[5,-10],[6,-8],[6,-1],[2,8],[-2,11],[-4,12],[-3,8],[-1,6],[1,7],[2,7],[1,6],[-1,4],[-2,9],[-1,3],[2,8],[3,10],[9,20],[1,9],[3,10],[24,44],[3,10],[1,13],[1,11],[4,-5],[8,-20],[10,-7],[14,0],[14,5],[9,10],[9,15],[3,2],[6,-1],[2,3],[5,10],[3,12],[3,10],[6,6],[3,-6],[3,-8],[2,-8],[1,-9],[24,-6],[4,-2],[8,-12],[5,-2],[5,2],[9,12],[5,2],[7,-1],[11,-5],[6,-2],[86,17],[12,-5],[20,4],[13,-4],[47,-32],[28,-6],[14,-11],[6,-3],[26,4],[7,-2],[16,-9],[7,-1],[5,3],[12,10],[7,3],[1,1],[4,6],[1,1],[7,-3],[1,-1],[2,2],[2,3],[2,5],[-1,6],[-5,5],[-29,9],[-2,3],[-2,4],[-2,3],[-2,3],[-9,1],[-13,6],[-35,27],[-6,2],[-3,2],[-5,11],[-2,3],[-3,2],[-10,2],[-13,9],[-5,6],[1,7],[-1,5],[-2,4],[1,6],[2,6],[0,4],[-1,4],[0,6],[0,14],[2,11],[3,7],[5,2],[5,5],[3,10],[5,22],[10,28],[5,9],[3,2],[7,4],[2,4],[10,20],[4,10],[5,23],[4,12],[8,13],[3,5],[1,5],[3,13],[1,7],[6,16],[2,9],[-2,11],[0,-4],[-1,9],[1,8],[7,13],[2,8],[1,10],[3,41],[8,53],[0,41],[-8,31],[-12,24],[-14,21],[5,-1],[9,-11],[5,-4],[0,5],[-5,5],[-2,9],[-1,11],[2,11],[-5,-4],[-6,-9],[-6,-7],[-6,4],[0,11],[3,16],[9,25],[0,-11],[4,-5],[5,-1],[4,5],[2,9],[1,22],[3,10],[2,-12],[3,3],[2,9],[2,8],[3,1],[6,-1],[3,0],[3,2],[1,3],[1,7],[1,23],[-5,14],[-9,6],[-8,2],[-6,3],[-2,8],[1,19],[-5,42],[-5,15],[-2,8],[-2,4],[-12,-3],[-5,1],[-5,8],[-10,24],[-5,5],[-12,-1],[-26,-8],[-15,4],[-31,0],[-7,3],[-5,4],[-10,16],[-5,3],[-18,4],[-5,-1],[-3,-5],[-1,-7],[0,-15],[-1,-5],[-12,-24],[-5,-6],[-26,-14],[-8,-1],[-9,10],[-4,-1],[-2,-5],[1,-8],[1,-2],[8,-4],[2,-2],[2,-4],[2,-6],[1,-6],[1,-7],[-2,-2],[-35,4],[-7,5],[-2,3],[-2,2],[-1,4],[0,9],[-2,-1],[-3,4],[-9,14],[-3,3],[-2,3],[-1,7],[2,4],[3,5],[2,5],[-1,6],[-5,3],[-5,-11],[-6,-22],[-5,-3],[-9,0],[-9,4],[-7,5],[9,17],[3,4],[-6,3],[-7,-5],[-12,-11],[-6,0],[-6,4],[-5,6],[-5,8],[-11,13],[-3,10],[5,25],[0,12],[-4,10],[-7,1],[-5,-6],[-3,-12],[-1,-13],[-3,-11],[-5,-1],[-6,11],[-7,20],[-6,8],[-6,5],[-18,5],[-16,8],[-36,12],[-11,10],[-7,-2],[-13,-13],[-10,-9],[-37,-12],[-5,-4],[-8,-16],[-5,-4],[-4,2],[-7,9],[-3,1],[-3,-1],[-1,-5],[-1,-4],[2,-2],[-2,-5],[-22,-56],[-5,-6],[-3,10],[1,7],[5,12],[2,8],[-2,4],[-3,-3],[-10,-16],[-7,-6],[-8,-3],[-5,4],[-5,1],[-1,-12],[-1,-28],[-2,-10],[-4,-9],[-5,-4],[-5,3],[6,10],[3,9],[-1,7],[-6,2],[-10,-4],[-2,-2],[-3,-5],[-3,1],[-2,4],[-9,12],[-3,2],[-2,1],[-1,0],[-2,-3],[-2,-6],[-9,-38],[-5,-7],[2,8],[0,21],[-4,-5],[-2,-7],[-1,-7],[-2,-6],[-2,-1],[-5,-1],[-3,-2],[-2,-3],[-1,-2],[-12,-33],[-6,-10],[-5,2],[0,5],[2,8],[1,6],[-3,3],[-3,-2],[-9,-8],[-25,-39],[-8,-20],[-4,-8],[-6,-4],[-10,2],[-4,-2],[-3,-3],[-4,-9],[-3,-4],[-9,-7],[-3,-8],[-4,-1],[-8,3],[-4,-5],[-1,-11],[-1,-7],[-8,4],[-3,8],[-2,3],[-3,-2],[0,-13],[-1,-6],[-3,3],[-6,11],[-3,4],[-3,-1],[-1,-4],[1,-15],[0,-5],[-18,34],[-5,4],[0,-12],[2,-26],[-6,5],[-3,-4],[-2,-7],[-3,-6],[-2,14],[-4,7],[-16,11],[-5,5],[-3,7],[0,13],[0,-19],[1,-10],[4,-7],[2,-15],[2,-6],[-3,0],[-4,4],[-3,0],[-3,2],[1,5],[1,5],[0,4],[-1,2],[-6,8],[-2,3],[-2,-2],[0,-5],[0,-2],[-9,3],[-10,5],[-9,9],[-5,12],[2,-16],[19,-30],[4,-19],[-5,3],[-11,1],[-1,0],[-4,7],[-3,9],[-3,7],[-5,1],[0,-4],[4,-7],[1,-12],[2,-12],[7,-6],[10,-16],[1,-5],[1,-6],[0,-7],[-2,-6],[-11,13],[-5,8],[-4,8],[-4,9],[-4,6],[-4,4],[-7,0],[3,-3],[2,-4],[2,-5],[0,-10],[1,-5],[11,-17],[-2,-1],[-2,-3],[-4,4],[-22,11],[-3,-1],[-2,-2],[1,-6],[2,-4],[3,-2],[3,0],[4,-5],[2,-12],[1,-11],[0,-5],[1,-3]],[[63674,77906],[-54,45],[-21,24],[-11,17],[-6,5],[-8,0],[-7,-2],[-7,0],[-17,20],[-7,13],[-7,10],[-12,4],[-25,0],[-9,6],[6,14],[-4,4],[-2,9],[-1,8],[-2,6],[-10,10],[-6,3],[-5,1],[7,13],[7,29],[14,18],[17,5],[17,-8],[5,-7],[5,-10],[7,-23],[7,-4],[42,12],[9,10],[16,29],[-86,197],[-42,159],[-2,14],[-3,10],[-5,4],[-10,2],[-10,5],[-7,10],[-14,28],[-52,130],[-17,21],[-19,13],[-110,-3],[-59,41],[-7,1],[-5,-6],[-1,-8],[0,-36],[-2,-28],[-2,-11],[-4,-2],[-52,52],[-9,13],[-5,9],[-1,7],[2,8],[3,10],[2,4],[2,2],[1,2],[1,5],[-1,3],[-9,23],[-20,35],[-2,7],[4,5],[22,19],[11,15],[4,11],[-5,8],[-15,2],[-4,8],[0,11],[2,10],[1,10],[-2,12],[-2,4],[-6,9],[-1,5],[2,4],[2,4],[2,3],[4,11],[0,6],[-4,8],[-5,6],[-28,11],[-69,34],[-70,35],[0,1],[39,153],[38,144],[6,13],[10,11],[21,16],[6,7],[5,7],[14,25],[12,30],[5,31],[-3,31],[-14,25],[-41,44],[-16,8],[18,145],[17,144],[6,24],[10,14],[61,37],[19,27],[18,31],[5,17],[0,21],[-15,29],[-2,17],[3,8],[10,13],[2,9],[-1,9],[-4,6],[-2,8],[3,11],[5,6],[19,11],[4,6],[8,25],[1,4],[8,17],[12,15],[13,9],[11,0],[7,-7],[19,-32],[12,-9],[4,-6],[3,-8],[2,-6],[3,-4],[5,-3],[3,-3],[13,-21],[6,-11],[11,-13],[11,-23],[11,-14],[2,-7],[1,-8],[2,-8],[4,-7],[13,-15],[6,-16],[3,-17],[2,-17],[4,-17],[1,-5],[3,-12],[2,-5],[3,-5],[11,-13],[6,-14],[2,-13],[3,-9],[10,-1],[8,2],[2,-1],[14,-18],[16,-13],[3,-1],[4,3],[6,12],[4,5],[57,30],[28,23],[21,35],[5,10],[2,6],[0,6],[-3,24],[-3,9],[-4,7],[-19,8],[0,16],[2,21],[-5,22],[-12,33],[-7,41],[-8,85],[1,41],[-1,19],[-7,13],[-14,3],[-7,6],[-1,11],[4,8],[7,-1],[36,-30],[13,-4],[12,3],[51,52],[25,44],[11,14],[39,13],[24,14],[11,13],[4,20],[-5,18],[-9,16],[-7,14],[3,17],[7,16],[3,9],[2,19],[3,11],[3,10],[4,6],[6,2],[22,-9],[67,1],[5,4],[13,25],[40,47],[11,8],[50,13],[33,22],[4,6],[2,6],[0,7],[-2,11],[-1,11],[3,5],[4,4],[4,6],[-1,2],[-3,4],[-1,3],[2,4],[4,1],[16,1],[5,2],[4,6],[2,10],[7,2],[4,2],[3,6],[1,13],[-3,35],[1,9],[5,7],[5,1],[4,5],[1,15],[1,13],[5,0],[11,-11],[13,-1],[2,-2],[-5,-10],[-5,-11],[4,-5],[7,-1],[6,1],[13,6],[7,11],[1,17],[-13,50],[-1,19],[6,10],[15,-4],[5,-4],[6,-6],[4,-8],[3,-10],[4,-10],[7,-5],[68,-6],[6,3],[6,4],[6,3],[5,-5],[7,-15],[3,-6],[6,-3],[12,-1],[5,-4],[3,-11],[0,-14],[-2,-9],[-4,-6],[-6,-4],[-27,-6],[-1,-5],[3,-9],[4,-9],[3,-7],[0,-1],[9,-12],[20,-3],[23,5],[15,10],[5,10],[3,9],[5,6],[6,0],[7,-4],[3,-5],[1,-9],[0,-14],[7,-17],[13,2],[14,11],[10,11],[1,22],[-5,20],[-1,18],[16,23],[8,17],[5,7],[8,4],[8,-1],[8,-4],[7,-6],[7,-4],[9,-1],[8,1],[7,3],[6,7],[6,18],[4,9],[7,5],[16,-2],[8,1],[5,7],[4,18],[4,5],[8,-6],[5,-20],[3,-24],[4,-17],[18,-48],[8,-38],[2,-6],[3,-8],[4,-8],[6,-7],[5,-4],[3,-1],[6,5],[24,-2],[2,-5],[3,2],[3,6],[2,5],[3,3],[3,2],[7,1],[2,2],[1,5],[2,4],[4,2],[3,-2],[6,-9],[3,-2],[15,2],[6,-3],[-4,-11],[6,-1],[7,-6],[4,-1],[4,2],[4,4],[4,6],[3,4],[11,6],[33,-2],[-2,11],[1,4],[4,1],[4,0],[2,-1],[2,-3],[1,-3],[2,-3],[2,-1],[2,1],[1,1],[2,1],[21,-4],[4,1],[7,5],[5,-6],[1,0],[11,-6],[3,-5],[6,-14],[4,-6],[28,-15],[12,-11],[3,-5],[2,-10],[-2,-5],[-10,-6],[5,-9],[0,-9],[-1,-11],[2,-9],[9,-13],[4,-7],[2,-11],[7,-10],[51,-21],[14,3],[8,-2],[10,-12],[6,-8],[6,-20],[6,-5],[15,-3],[5,-6],[3,-8],[2,-23],[3,-8],[2,-6],[1,-6],[-1,-10],[8,-14],[5,-6],[11,-9],[4,-7],[4,-8],[4,-8],[7,-6],[22,-5],[3,-3],[5,-7],[3,-3],[12,-3],[4,-3],[2,-5],[1,-6],[-1,-6],[-2,-6],[-15,-27],[-3,-12],[0,-27],[-2,-11],[-6,-27],[-1,-12],[1,-11],[4,-13],[10,-18],[6,-7],[6,-6],[6,-2],[13,5],[1,0],[12,7],[15,18],[8,17],[-1,19],[-9,43],[0,13],[3,22],[0,12],[-1,4],[-5,6],[-1,5],[1,5],[5,11],[1,5],[-3,23],[-16,12],[-16,6],[-6,7],[4,5],[5,4],[3,6],[-6,22],[3,8],[5,4],[24,10],[6,0],[7,-2],[6,-5],[11,-14],[18,-12],[5,-7],[9,-16],[9,-12],[42,-17],[5,-13],[-1,-23],[6,-16],[62,-78],[7,-6],[5,-2],[5,1],[14,5],[7,0],[7,-3],[7,-6],[4,-9],[2,-10],[3,-8],[13,-7],[4,-6],[8,-17],[12,-12],[10,5],[20,29],[46,35],[41,47],[6,13],[10,72],[3,14],[3,8],[4,2],[24,-15],[8,-2],[8,2],[5,7],[2,9],[2,22],[4,6],[14,3],[5,8],[0,8],[-3,17],[0,8],[3,8],[4,6],[9,10],[8,-4],[25,-49],[5,-3],[20,-6],[5,1],[1,7],[-2,10],[-6,19],[0,11],[4,8],[6,6],[5,3],[7,1],[5,-2],[10,-12],[7,-3],[7,0],[7,3],[7,5],[7,2],[24,-3],[13,4],[18,15],[5,3],[3,-4],[4,-12],[2,-23],[3,-10],[4,-4],[7,-1],[5,-2],[4,-5],[5,-10],[2,-9],[4,-21],[2,-10],[5,-9],[5,-7],[18,-14],[7,-3],[7,1],[6,5],[5,8],[3,9],[4,8],[6,5],[11,-1],[26,-12],[9,8],[4,17],[1,19],[-3,40],[2,21],[5,14],[4,13],[8,3],[12,-11],[5,-1],[15,0],[4,-2],[2,-4],[5,-8],[2,-2],[8,6],[4,2],[21,5],[2,-1],[1,-3],[0,-4],[0,-3],[1,-2],[6,-7],[7,-5],[8,-1],[6,6],[4,11],[2,13],[4,11],[6,4],[6,2],[11,9],[4,-4],[9,-12],[3,-8],[1,-8],[0,-8],[2,-7],[6,-4],[34,-1],[12,-7],[9,-16],[2,-25],[-2,-11],[-3,-8],[-4,-7],[-5,-7],[-2,-8],[1,-11],[3,-10],[3,-7],[5,-2],[15,2],[2,-6],[-2,-23],[1,-8],[5,-7],[7,-1],[8,3],[8,1],[6,-7],[5,-20],[2,-7],[5,-7],[21,-22],[11,-6],[75,-9],[6,-3],[5,-8],[3,-9],[3,-5],[4,-3],[5,0],[27,9],[14,0],[11,-10],[6,-8],[14,-9],[4,-3],[-1,-16],[-7,-4],[-16,4],[-7,-9],[-1,-9],[5,-9],[15,-20],[9,6],[9,13],[10,11],[14,3],[15,-1],[13,3],[12,18],[12,35],[3,8],[9,14],[3,8],[2,11],[-2,20],[0,12],[2,10],[11,40],[2,4],[3,4],[12,6],[17,2],[15,-7],[4,-22],[1,-22],[6,-17],[9,-13],[10,-11],[15,-10],[117,-19],[27,6],[77,35],[77,36],[9,12],[6,18],[4,25],[5,53],[2,16],[13,99],[6,28],[9,16],[13,9],[14,6],[-5,2],[-14,9],[-9,11],[-7,16],[-11,46],[-5,12],[-2,3],[-10,4],[-12,10],[-10,6],[-4,-1],[-7,-3],[-4,0],[-3,1],[-10,7],[-7,2],[-19,-2],[-6,1],[-11,6],[-6,1],[-9,-1],[-3,1],[-2,1],[-2,2],[-1,2],[-1,2],[-1,2],[-2,3],[-9,9],[-4,5],[-4,12],[-2,7],[0,6],[-1,19],[1,8],[-4,0],[-113,4],[-3,1],[-1,4],[-1,6],[0,5],[-3,3],[-31,7],[-5,5],[0,13],[4,7],[13,9],[5,5],[2,5],[-1,10],[2,4],[5,5],[3,4],[1,5],[-7,13],[-50,16],[-28,28],[-10,5],[-3,-6],[-2,-9],[-7,-5],[-9,2],[-6,8],[-12,38],[-3,10],[0,9],[5,14],[7,0],[48,1],[41,57],[21,24],[23,13],[15,-1],[16,-5],[15,1],[14,15],[11,24],[5,6],[27,15],[5,6],[14,20],[5,6],[12,9],[9,12],[-17,31],[-5,9],[-1,10],[-2,25],[-2,11],[-2,5],[-3,3],[-26,12],[-5,5],[-1,10],[1,28],[0,11],[-1,10],[-2,4],[-3,0],[-14,-2],[-5,1],[-3,3],[-2,5],[0,4],[-2,3],[-3,4],[-3,3],[-1,5],[0,6],[0,7],[6,24],[12,10],[14,4],[11,8],[4,7],[7,17],[5,8],[48,57],[-23,29],[21,0],[10,4],[10,9],[9,10],[10,2],[9,-4],[10,-8],[8,-5],[8,-1],[9,1],[7,5],[14,14],[6,3],[9,-6],[10,-11],[16,-22],[9,-5],[9,7],[5,7],[5,1],[12,-2],[29,5],[10,-5],[18,-19],[10,-1],[21,10],[11,10],[6,14],[5,29],[1,13],[-2,14],[-7,15],[-9,7],[-60,16],[-20,10],[-16,21],[-12,21],[-6,2],[-26,-19],[-9,-1],[-10,3],[-28,28],[-9,5],[-27,0],[-13,4],[-11,13],[-6,14],[-2,15],[1,15],[5,14],[13,23],[2,8],[1,8],[1,18],[5,6],[7,2],[8,-2],[5,-6],[6,-13],[7,-13],[8,-8],[8,0],[7,6],[14,20],[8,8],[11,8],[-7,39],[-4,8],[-3,2],[-32,0],[-8,-4],[-12,-22],[-10,-2],[-39,12],[-5,4],[-2,4],[-4,10],[-1,4],[-14,5],[-39,3],[-7,12],[6,14],[29,-12],[10,10],[0,8],[0,7],[0,7],[2,8],[5,3],[10,2],[3,7],[3,14],[7,10],[7,9],[6,10],[1,13],[-7,8],[-10,6],[-7,6],[-6,10],[-3,3],[-5,2],[-18,1],[-6,2],[-2,6],[-1,7],[1,6],[2,7],[5,9],[6,4],[12,4],[10,0],[13,-3],[2,-3],[1,-4],[2,-6],[4,-7],[4,-6],[5,1],[5,10],[1,11],[-2,10],[-5,19],[-1,3],[-2,12],[15,2],[7,4],[5,11],[5,8],[8,2],[22,-5],[4,-5],[8,-21],[5,-5],[20,-6],[1,-19],[2,-5],[5,-3],[6,2],[3,5],[1,9],[1,11],[26,0],[4,-4],[4,-3],[4,1],[6,10],[4,1],[4,-2],[4,-3],[2,-12],[0,-7],[2,-6],[6,-5],[9,-4],[32,-2],[-1,36],[0,3],[0,12],[114,5],[6,-1],[3,-6],[0,-13],[-12,-11],[-4,-8],[1,-11],[5,-10],[13,-10],[6,-8],[3,-5],[3,-5],[4,-3],[3,-1],[5,3],[1,4],[-2,19],[-2,4],[0,5],[4,8],[11,15],[-4,11],[-2,3],[-4,20],[9,16],[13,10],[12,4],[24,2],[15,9],[5,-2],[13,-8],[7,0],[23,8],[28,-4],[7,5],[5,10],[-1,8],[-2,9],[-2,11],[4,9],[9,4],[16,-1],[32,-9],[11,0],[8,4],[14,15],[8,5],[19,2],[45,26],[10,-1],[8,-6],[23,-22],[8,-3],[4,-2],[3,8],[9,5],[10,2],[8,6],[5,15],[-9,15],[-4,10],[1,4],[2,3],[2,4],[2,3],[6,-8],[3,-2],[3,0],[4,0],[2,2],[5,8],[2,2],[4,1],[12,-5],[7,2],[14,8],[8,3],[6,3],[2,2],[3,4],[4,-1],[7,-5],[27,4],[4,2],[2,4],[2,5],[2,2],[3,-1],[6,-3],[3,-1],[7,3],[12,10],[3,-5],[17,-18],[9,-7],[10,-1],[18,11],[17,19],[18,11],[19,-10],[22,-37],[4,-5],[4,-4],[4,-2],[5,1],[1,1],[4,5],[2,0],[8,-4],[3,0],[8,19],[-9,63],[6,14],[-1,9],[0,3],[0,14],[4,7],[36,20],[8,0],[16,-5],[6,2],[2,12],[-4,22],[2,8],[7,3],[27,-4],[39,-17],[9,2],[7,10],[8,18],[8,15],[9,7],[20,10],[5,-5],[3,-39],[4,-9],[34,15],[97,43],[17,4],[36,-2],[17,3],[6,5],[11,14],[6,4],[54,4],[9,2],[16,12],[9,2],[21,0],[11,3],[7,10],[6,14],[6,10],[8,4],[18,-7],[18,5],[50,-2],[21,8],[17,18],[11,23],[5,9],[9,7],[9,4],[9,-1],[27,-15],[43,7],[5,7],[2,15],[6,4],[3,5],[1,8],[2,10],[6,5],[7,0],[7,4],[1,12],[-22,17],[-11,14],[5,17],[-6,8],[-3,1],[18,13],[6,1],[4,-2],[4,-3],[4,-2],[6,0],[14,8],[7,0],[21,-7],[18,8],[7,0],[7,-2],[3,1],[3,6],[1,6],[-2,11],[1,5],[4,7],[13,11],[2,9],[-1,13],[1,10],[2,10],[3,10],[6,-5],[3,0],[25,-5],[6,-4],[6,-7],[10,-20],[6,-9],[6,-3],[7,4],[3,8],[0,10],[-1,23],[-7,5],[-6,3],[-4,6],[-3,20],[-1,5],[0,4],[2,5],[5,3],[4,1],[50,-22],[7,-12],[5,-18],[6,-13],[11,5],[23,28],[7,3],[40,-22],[54,-9],[36,-25],[8,-9],[22,-38],[8,-7],[22,-3],[11,-5],[38,-31],[5,-1],[5,5],[9,19],[6,6],[24,10],[3,4],[1,4],[0,5],[1,5],[3,9],[11,22],[6,3],[2,-1],[19,-10],[7,0],[6,2],[6,5],[5,7],[12,10],[15,2],[16,-4],[12,-7],[-5,-8],[-4,-9],[-2,-10],[3,-9],[19,-32],[27,-44],[5,-16],[0,-8],[0,-7],[0,-1],[0,-2],[0,-1],[-1,-17],[-1,-8],[-2,-7],[-1,-11],[4,-16],[-2,-7],[-3,-7],[-2,-10],[0,-11],[2,-8],[10,-15],[2,-8],[-1,-17],[3,-19],[12,-15],[14,-10],[11,-3],[12,0],[5,-2],[5,-6],[10,-19],[3,-12],[0,-13],[-3,-8],[-7,-5],[-14,-5],[-8,-10],[-2,-17],[2,-42],[-1,-4],[0,-3],[0,-3],[6,-8],[1,-7],[-1,-20],[0,-3],[2,-2],[5,-2],[2,-3],[0,-5],[-1,-10],[0,-8],[-2,-25],[-15,-4],[-5,0],[-6,2],[-10,7],[-6,3],[-10,1],[-6,-5],[-3,-12],[2,-21],[17,-1],[4,-3],[1,-9],[0,-14],[-1,-14],[-2,-9],[10,-7],[5,-5],[4,-9],[8,-21],[5,-7],[6,-1],[10,9],[8,12],[14,31],[7,7],[8,-2],[9,-5],[8,-3],[9,1],[2,-2],[3,-6],[2,-8],[2,-29],[6,1],[14,9],[7,2],[3,-2],[5,-7],[3,-3],[5,-1],[4,1],[10,6],[7,8],[3,8],[-2,26],[1,12],[3,11],[4,8],[6,3],[55,-7],[7,-3],[5,-3],[4,-6],[17,-40],[6,-10],[8,-3],[7,1],[7,5],[3,9],[-1,17],[-4,10],[-8,4],[-9,1],[-7,4],[-5,6],[-1,3],[1,8],[0,6],[1,7],[2,6],[6,16],[1,7],[-2,5],[-7,8],[-9,7],[-3,6],[-1,9],[5,4],[30,-6],[10,-6],[10,-14],[9,-18],[4,-18],[3,-6],[12,-6],[4,-10],[-1,-7],[-10,-27],[25,-12],[26,-13],[1,-2],[-1,-3],[-1,-3],[-3,-8],[-4,-1],[-4,1],[-4,0],[-1,-2],[-2,-8],[-1,-2],[-3,0],[-8,4],[-3,-2],[-1,-6],[1,-8],[1,-5],[5,-10],[7,-8],[4,-8],[-3,-14],[-7,-22],[-3,-12],[0,-9],[5,-7],[9,-3],[9,1],[6,5],[11,18],[7,16],[4,4],[4,-1],[28,-15],[8,4],[-2,21],[-5,17],[-5,12],[-7,7],[-10,1],[-24,-7],[-2,4],[2,11],[3,12],[2,7],[12,16],[15,4],[37,-5],[35,-5],[16,2],[4,-2],[3,-8],[2,-11],[1,-22],[13,-9],[3,-8],[2,-16],[6,-8],[35,-10],[47,-14],[4,1],[1,5],[1,7],[1,6],[2,2],[9,-1],[2,-1],[4,-4],[6,-10],[4,-1],[7,2],[3,4],[1,8],[-1,14],[3,11],[16,5],[5,9],[-1,7],[-3,6],[0,5],[3,3],[15,5],[4,-2],[1,-2],[1,-12],[2,-2],[16,6],[-12,-93],[-4,-16],[-6,-8],[-8,-2],[-41,10],[-8,-1],[-7,-4],[-6,-9],[-5,-13],[13,-12],[-25,-13],[-5,-7],[-7,-53],[-12,-3],[-5,-3],[-4,-8],[-3,-11],[2,-8],[9,-14],[-8,-20],[45,-31],[-12,-36],[17,-17],[4,1],[7,10],[21,26],[6,8],[2,5],[3,6],[2,11],[1,6],[2,3],[5,2],[2,1],[7,-2],[2,2],[1,4],[0,5],[2,9],[0,5],[0,4],[2,1],[22,-1],[4,-1],[10,-8],[4,2],[19,20],[9,5],[9,0],[11,-3],[19,-3],[4,-3],[1,-9],[0,-12],[0,-9],[4,-5],[9,0],[3,2],[5,15],[3,2],[18,0],[3,-2],[3,-7],[2,-9],[2,-6],[6,-2],[-2,-14],[2,-9],[10,-13],[15,-16],[8,-2],[5,9],[14,54],[-1,5],[-3,5],[-5,6],[-1,4],[2,30],[3,12],[4,7],[45,-3],[3,4],[5,28],[3,8],[2,4],[3,1],[14,2],[3,3],[2,9],[3,17],[3,8],[2,5],[10,4],[23,-1],[9,-3],[22,-14],[7,1],[36,33],[34,32],[43,40],[-20,44],[19,18],[10,6],[9,1],[29,-5],[11,3],[14,8],[17,10],[31,19],[49,30],[39,23],[-3,14],[0,10],[2,9],[4,11],[6,10],[5,3],[56,-18],[12,4],[17,16],[6,3],[5,1],[8,-2],[4,1],[5,6],[2,11],[0,11],[1,11],[6,9],[8,2],[16,-2],[7,2],[19,12],[6,2],[6,0],[4,-6],[-2,-13],[-5,-5],[-22,-8],[-5,-4],[-6,-7],[-3,-9],[3,-7],[14,-5],[5,-6],[3,-14],[-2,-15],[-5,-11],[-5,-10],[-5,-11],[-4,-18],[-2,-6],[-3,-5],[-7,-8],[-3,-6],[-14,-21],[-17,0],[-35,17],[-18,1],[-5,-2],[-5,-4],[-1,-4],[29,-63],[1,-7],[4,-22],[8,-19],[24,-24],[34,-34],[52,-53],[51,-52],[52,-53],[51,-52],[38,-39],[34,-48],[14,-20],[23,-33],[30,-61],[19,-43],[30,-68],[30,-67],[30,-68],[30,-68],[40,-96],[39,-95],[39,-96],[40,-96],[29,-74],[30,-74],[13,-33],[17,-41],[29,-74],[25,-71],[25,-71],[25,-71],[25,-71],[12,-37],[15,-42],[8,-31],[3,-10],[7,-13],[8,-12],[10,-9],[8,0],[-15,33],[-4,19],[9,7],[5,-3],[10,-15],[5,-4],[6,1],[3,6],[4,20],[4,9],[4,4],[11,6],[2,4],[4,7],[3,3],[3,1],[11,-2],[12,3],[11,8],[10,15],[6,20],[1,9],[1,11],[0,10],[-1,10],[-3,8],[-8,11],[-3,8],[-1,7],[0,11],[1,19],[3,12],[3,7],[5,5],[7,1],[23,-5],[11,4],[4,15],[0,9],[2,9],[3,8],[4,7],[5,6],[5,1],[37,-24],[8,-2],[3,4],[3,7],[5,5],[6,0],[2,-8],[1,-21],[2,-11],[4,-7],[11,-8],[12,-8],[7,-3],[7,-1],[8,12],[4,3],[5,-1],[6,-5],[1,-7],[0,-10],[-3,-13],[-18,-62],[-8,-36],[0,-9],[1,-5],[6,-4],[7,-2],[15,1],[33,15],[35,-3],[0,-21],[4,-20],[6,-17],[8,-16],[-6,-12],[-5,-15],[-2,-15],[3,-13],[8,-6],[60,3],[6,6],[8,17],[5,6],[5,0],[11,-10],[6,-1],[20,5],[14,-3],[12,-6],[7,-5],[16,-21],[7,-4],[14,-4],[7,1],[7,3],[5,6],[6,9],[5,7],[5,-2],[4,-3],[4,2],[3,4],[4,3],[4,-1],[3,-3],[3,-2],[12,4],[7,-5],[12,-16],[36,33],[19,12],[7,13],[0,41],[8,12],[10,3],[23,-9],[36,-5],[13,6],[10,15],[8,21],[6,23],[2,1],[3,1],[3,-1],[7,-3],[5,-1],[4,1],[5,2],[31,6],[30,-6],[8,-17],[4,-6],[6,-5],[31,-8],[7,-4],[16,-19],[6,-6],[5,-2],[13,0],[6,-2],[6,-5],[5,-7],[8,-20],[4,-6],[11,-6],[8,-12],[0,-37],[7,-19],[31,-31],[4,-3],[9,-17],[2,-11],[1,-9],[2,-8],[9,-15],[3,-10],[1,-11],[-6,-32],[4,-18],[7,-18],[6,-20],[1,-13],[-1,-13],[0,-13],[3,-11],[3,-3],[9,-4],[3,-3],[2,-4],[4,-10],[2,-3],[10,-1],[10,11],[10,8],[10,-10],[8,-13],[8,-9],[10,-3],[10,1],[10,-1],[7,-9],[6,-11],[9,-9],[5,0],[9,1],[5,-3],[3,-5],[7,-22],[4,-4],[4,3],[5,4],[4,3],[6,-1],[19,-12],[3,-5],[9,-20],[2,-7],[-1,-10],[-4,-4],[-12,-3],[-1,0],[-2,-1],[-1,-34],[1,-16],[6,-7],[15,-6],[7,-7],[4,-13],[1,-22],[2,-8],[5,-11],[18,-28],[6,-17],[3,-47],[7,-18],[11,-8],[11,5],[5,5],[6,5],[7,4],[5,1],[7,-4],[12,-12],[7,-4],[10,2],[5,2],[5,4],[9,10],[4,4],[5,-1],[4,-7],[4,-17],[4,-7],[4,-3],[5,2],[10,6],[6,0],[5,-4],[4,-7],[4,-8],[4,-3],[5,3],[9,9],[6,4],[5,0],[12,-2],[0,-5],[-3,-25],[0,-10],[4,-7],[5,-1],[5,2],[4,6],[9,14],[12,6],[11,-4],[7,-16],[11,-17],[11,19],[9,32],[7,20],[16,16],[17,8],[18,24],[5,3],[2,4],[0,6],[-1,6],[-2,7],[14,11],[1,1],[3,6],[3,2],[2,0],[1,-1],[2,1],[6,10],[3,13],[4,8],[9,-1],[11,-9],[5,0],[8,3],[5,0],[3,-3],[0,-6],[-2,-7],[-2,-7],[-2,-6],[1,-7],[3,-6],[7,-10],[-6,-8],[-5,-6],[-6,-3],[-13,-1],[-6,-7],[-10,-20],[-4,-10],[-1,-9],[2,-8],[5,-9],[7,-7],[6,0],[12,5],[7,-3],[19,-17],[6,-7],[0,-10],[-3,-12],[0,-13],[4,-10],[7,-7],[15,-10],[7,-9],[0,-5],[-5,-7],[-2,-10],[2,-8],[5,-9],[19,-21],[3,-5],[2,-4],[0,-9],[2,-5],[3,-4],[4,-2],[7,-2],[23,4],[9,-3],[7,-5],[15,-14],[5,-13],[6,-41],[4,-17]],[[67606,77454],[17,2],[16,3],[15,6],[15,9],[14,10],[14,12],[12,14],[12,16],[10,17],[9,19],[8,20],[7,22],[6,22],[4,23],[2,25],[1,25],[-1,25],[-2,24],[-4,23],[-6,23],[-7,21],[-8,20],[-9,19],[-10,17],[-12,16],[-12,14],[-14,13],[-14,10],[-15,8],[-15,6],[-16,4],[-17,1],[-17,-1],[-16,-4],[-15,-6],[-15,-8],[-14,-10],[-14,-13],[-12,-14],[-12,-16],[-10,-17],[-9,-19],[-9,-20],[-6,-21],[-6,-23],[-4,-23],[-2,-24],[-1,-25],[1,-25],[2,-25],[4,-23],[6,-22],[6,-22],[9,-20],[9,-19],[10,-17],[12,-16],[12,-14],[14,-12],[14,-10],[15,-9],[15,-6],[16,-3],[17,-2]],[[63961,77125],[2,14],[1,14],[1,9],[4,4],[3,1],[1,0],[2,0],[5,0],[2,1],[2,2],[1,0],[1,-7],[-2,-13],[-2,-5],[-2,-3],[-1,-3],[2,-23],[-3,-13],[-5,-8],[-7,-2],[-4,5],[-2,13],[1,14]],[[63936,77019],[-8,-8],[-9,2],[-9,8],[-4,6],[-1,5],[-1,7],[-1,10],[-3,8],[-11,16],[-5,15],[0,12],[16,53],[3,5],[4,4],[13,5],[-1,-11],[-16,-14],[-4,-14],[-1,-8],[-4,-15],[-1,-9],[1,-10],[3,-8],[3,-3],[4,2],[0,-15],[1,-14],[4,-11],[6,-4],[3,-1],[3,-4],[2,-3],[5,0],[9,10],[4,2],[-5,-18]],[[64095,77052],[4,-9],[1,-4],[-6,2],[-4,-1],[-4,-4],[-4,-1],[-1,4],[2,6],[0,4],[-3,1],[0,4],[1,6],[-2,7],[-13,13],[-4,10],[1,10],[2,0],[2,-9],[4,-8],[6,-2],[4,3],[2,5],[2,3],[2,0],[0,-4],[1,-3],[2,-1],[2,-6],[1,-13],[0,-7],[2,-6]],[[64636,77392],[2,-11],[1,-10],[0,-12],[-7,-5],[-14,8],[-11,14],[-7,14],[-3,13],[4,9],[5,5],[3,4],[1,4],[-1,4],[1,3],[10,-1],[6,-3],[5,-10],[4,-17],[1,-9]],[[63839,77897],[4,-16],[1,-14],[-5,-27],[-5,-4],[-6,8],[-4,14],[-13,54],[-1,11],[9,0],[12,-11],[5,-7],[3,-8]],[[69710,74299],[6,-14],[-5,-14],[-9,-12],[-9,-4],[-14,5],[-4,-2],[-2,-3],[-5,-4],[0,1],[-1,1],[-2,1],[-1,0],[-1,-2],[-2,-3],[-11,-15],[-4,-4],[-17,-10],[-8,-11],[-1,-16],[0,-18],[-2,-20],[-4,-11],[-5,-8],[-5,-6],[-6,-4],[-12,0],[-3,-3],[-2,-5],[-2,-13],[-3,-5],[-6,3],[-2,8],[1,10],[3,11],[3,9],[4,5],[5,3],[4,6],[5,13],[-3,10],[-7,7],[-7,4],[-22,6],[-10,7],[-10,2],[-5,4],[-5,8],[-3,9],[-4,7],[-6,5],[-7,1],[-13,-2],[-6,3],[-40,43],[-10,2],[-109,-64],[-5,-1],[-4,0],[-2,3],[-3,9],[-2,1],[-1,-2],[-2,-10],[0,-4],[-6,-14],[-5,-14],[-1,-15],[2,-18],[1,-4],[1,-4],[0,-4],[0,-4],[6,-19],[0,-8],[-26,-15],[-14,37],[-8,15],[-4,2],[-1,-2],[0,-3],[-1,-6],[-5,-20],[-13,-63],[-3,-23],[-1,-23],[2,-11],[4,-8],[5,-7],[4,-8],[2,-10],[1,-11],[-2,-70],[4,-15],[11,8],[2,4],[1,5],[1,4],[2,1],[2,-1],[7,-12],[5,-3],[12,3],[7,0],[5,1],[5,3],[5,5],[9,13],[5,4],[24,2],[11,-2],[11,-6],[12,-11],[11,-5],[21,7],[11,-2],[9,-6],[2,3],[5,10],[4,7],[6,3],[6,0],[6,-3],[9,-8],[5,-3],[4,2],[2,6],[8,27],[4,6],[3,-6],[1,-11],[0,-10],[-2,-21],[0,-9],[5,-3],[5,2],[24,30],[4,3],[3,-1],[6,-3],[3,0],[1,2],[2,3],[1,3],[3,2],[5,1],[9,6],[4,1],[4,-2],[6,-10],[4,-3],[5,-1],[10,3],[5,-1],[7,-8],[3,-13],[6,-28],[0,-1],[3,-4],[6,-4],[3,-4],[2,-8],[-1,-9],[-1,-7],[0,-8],[4,-12],[7,-7],[9,-3],[7,2],[9,8],[3,2],[4,0],[3,-1],[2,2],[3,6],[6,4],[6,-4],[7,-8],[7,-3],[9,7],[5,17],[4,19],[6,17],[9,9],[12,6],[12,1],[15,-5],[4,0],[3,3],[9,17],[3,5],[10,9],[2,2],[4,7],[2,2],[3,2],[8,2],[9,8],[5,1],[9,-10],[5,-7],[4,-9],[2,-9],[-1,-9],[-7,-17],[-3,-10],[6,-20],[12,-9],[13,-1],[28,10],[6,0],[4,-6],[3,-14],[0,-15],[-1,-12],[-3,-9],[-4,-6],[-2,-8],[-1,-12],[2,-12],[4,-9],[5,-7],[6,-2],[10,2],[10,7],[27,32],[5,4],[10,3],[10,9],[5,1],[5,-6],[3,-13],[2,-15],[0,-12],[3,-9],[5,-4],[12,-3],[3,-3],[4,-5],[6,-5],[1,-4],[0,-5],[0,-5],[3,-10],[3,-7],[3,1],[11,41],[7,32],[3,9],[5,3],[6,1],[11,9],[4,0],[10,-4],[4,0],[5,1],[8,15],[3,3],[5,-2],[7,-8],[4,0],[3,3],[6,11],[3,4],[4,3],[5,-1],[51,-22],[5,0],[12,5],[5,-1],[18,-6],[5,-3],[4,0],[13,12],[4,2],[3,-2],[5,-4],[10,-5],[9,1],[28,17],[16,5],[2,6],[0,8],[2,9],[7,8],[31,12],[9,2],[26,-5],[8,-6]],[[70803,72518],[-9,8],[-12,37],[-8,15],[-36,37],[-8,-8],[-28,-3],[-2,0],[-3,1],[-10,5],[-6,5],[-5,-1],[-5,-2],[-8,3],[-3,0],[-3,1],[-4,12],[-3,3],[-3,0],[-3,-4],[-1,7],[-4,-15],[-7,-2],[-8,4],[-7,-1],[-4,-7],[-1,-21],[-5,-10],[-7,-5],[-31,-10],[-21,-13],[-5,-3],[-16,-12],[-12,-2],[-6,-3],[-10,-17],[-4,-2],[-4,2],[-7,1],[-2,-2],[-5,-6],[-3,0],[-2,3],[-4,9],[-2,3],[-6,1],[-11,-6],[-5,4],[-1,13],[3,11],[6,9],[6,3],[11,2],[4,4],[5,7],[4,9],[2,9],[0,24],[1,5],[1,15],[-10,2],[-12,0],[-19,9],[-33,20],[-13,0],[-17,-16],[-4,2],[-5,5],[-7,1],[-7,-1],[-5,-3],[-5,-6],[-13,-25],[-3,-2],[-6,4],[-3,-2],[-10,-14],[-5,-9],[-4,-17],[-4,-8],[-5,-7],[-20,-3],[-20,-21],[-6,-12],[-7,-4],[-13,-4],[-11,-12],[-8,-19],[-13,-46],[-12,-31],[-2,-12],[-2,-5],[-41,-11],[-10,-8],[-19,6],[-12,-4],[-29,-20],[-10,-13],[-3,-5],[-4,-10],[-3,-5],[-9,-9],[-8,-14],[-80,-103],[-11,-7],[-14,-5],[-13,0],[-13,5],[-12,11],[-9,17],[-4,10],[-3,11],[-2,12],[-2,28],[-3,11],[-15,44],[-3,11],[-1,13],[0,24],[-1,7],[-4,13],[-2,6],[-1,7],[1,36],[2,24],[2,9],[2,6],[-1,14],[10,30],[0,16],[2,8],[0,12],[0,25],[-2,23],[1,8],[3,14],[3,23],[-4,48],[1,26],[1,3],[3,8],[2,5],[0,6],[2,18],[3,19],[0,6],[0,6],[-3,13],[0,5],[2,11],[10,11],[4,11],[2,10],[0,14],[-1,13],[-1,8],[3,4],[-9,17],[-8,10],[-10,1],[-34,-20],[-5,-6],[-6,-5],[-6,4],[-10,14],[-3,1],[-2,-1],[-2,1],[-1,8],[1,6],[2,14],[2,15],[9,26],[3,24],[5,17],[2,17],[5,26],[2,13],[-2,27],[-7,17],[-9,11],[-23,16],[-17,30],[-11,13],[-8,7],[-3,1],[-3,0],[-3,-2],[-2,0],[-3,4],[-1,5],[-3,11],[-1,4],[-3,5],[-3,5],[-3,3],[-4,1],[-6,0],[-2,-4],[1,-14],[-3,-6],[-7,3],[-11,9],[-4,-1],[-1,-2],[-1,-3],[-2,-2],[-3,1],[-4,2],[-3,1],[-8,0],[-5,-2],[-2,-4],[-3,-10],[-16,-3],[-6,-5],[0,-4],[6,-7],[-2,-7],[-10,-12],[-3,-3],[-6,1],[-3,-3],[-1,-5],[0,-6],[0,-6],[0,-5],[-3,-20],[-3,-3],[-4,-1],[-3,-4],[-3,-14],[-8,-27],[-7,-33],[-4,-10],[-2,-5],[-10,-7],[-3,-3],[-12,-22],[-13,-28],[-2,-2],[-5,-5],[-2,-1],[-1,-4],[-1,-5],[-4,-2],[-3,-1],[-2,-2],[-1,-5],[0,-5],[1,-5],[2,-5],[-6,-4],[-7,-2],[-6,2],[-5,8],[-4,-15],[2,-18],[4,-18],[4,-12],[3,-3],[10,-4],[1,-5],[1,-9],[2,-7],[3,-7],[2,-4],[-1,-7],[0,-8],[3,-17],[0,-9],[0,-5],[-1,-5],[-1,-7],[-3,-9],[-2,-2],[-1,-2],[0,-4],[1,-6],[-1,-4],[-1,-4],[-1,-1],[-1,-3],[-1,1],[-6,-1],[-4,-17],[-1,-5],[-2,-2],[-9,-21],[-8,-5],[-9,2],[-8,5],[-8,3],[2,-5],[-9,3],[-2,2],[-1,1],[-2,3],[-1,4],[-1,3],[-4,1],[-6,3],[-3,9],[-2,9],[-5,7],[-6,1],[-12,-10],[-6,-3],[-2,-2],[-3,-4],[-3,-3],[-3,3],[-2,2],[-6,3],[-3,1],[-6,-2],[-12,-8],[-6,-2],[-38,6],[-6,-5],[-5,-24],[-6,-10],[-12,-16],[-1,-3],[-2,-7],[-1,-3],[-2,-3],[-4,-5],[-1,-3],[-2,-9],[0,-11],[0,-23],[0,-2],[3,-1],[1,-3],[0,-3],[-1,-1],[-1,0],[0,-2],[0,-6],[0,-5],[1,-5],[2,-4],[2,-9],[2,-21],[2,-5],[-2,-13],[5,-4],[5,-1],[-1,-8],[-10,-27],[-4,-8],[-12,-12],[-4,-9],[-3,-5],[-3,-2],[-1,0],[-7,-3],[-5,-4],[-6,-1],[-26,30],[-2,2],[-6,7],[-2,5],[-5,21],[-5,7],[-7,7],[-5,9],[-4,21],[-5,11],[-5,8],[-6,6],[-19,4],[-1,0],[-1,1],[-1,-2],[2,-7],[1,-4],[5,-6],[1,-2],[1,-9],[-1,-5],[-3,-2],[-4,4],[-4,8],[-3,9],[-3,8],[-6,3],[-6,-4],[-1,-7],[4,-17],[0,-13],[-1,-6],[-3,1],[-11,11],[-3,3],[-3,0],[-6,-1],[-11,3],[-5,-1],[-3,-6],[1,-2],[1,-3],[2,-7],[-7,-2],[-3,-8],[-2,-10],[-1,-4],[-5,-2],[-10,-5],[-6,-1],[-1,-3],[-4,-11],[-2,-3],[-3,0],[-13,-5],[-18,-3],[4,-13],[-2,-9],[-5,-5],[-7,-1],[-6,2],[-5,4],[-5,0],[-6,-6],[-2,-10],[0,-12],[2,-25],[-3,-8],[-6,0],[-12,6],[-7,-2],[-5,-7],[-5,-8],[-5,-3],[-3,-4],[-19,-27],[-2,-3],[-4,-3],[-2,0],[-1,1],[-3,3],[-1,4],[-1,6],[-2,4],[-9,21],[-3,3],[-6,6],[-3,5],[-5,12],[-3,10],[-4,8],[-12,5],[-7,6],[-6,8],[-4,8],[0,9],[2,37]],[[69582,74088],[34,-18],[10,-1],[8,7],[4,-2],[2,-11],[0,-10],[-3,-4],[-9,-3],[-8,-7],[-15,-19],[-1,2],[-8,22],[-3,6],[-9,11],[-4,9],[-2,9],[0,9],[4,0]],[[56523,82413],[1,4],[1,3],[-1,3],[-2,3],[-3,3],[-2,4],[-1,5],[0,7],[1,2],[2,3],[3,3],[4,9],[0,14],[-4,27],[-2,13],[-3,13],[-4,12],[-5,9],[-2,1],[-6,2],[-3,3],[-2,5],[-6,12],[-2,5],[-5,5],[-6,6],[-22,11],[-11,8],[-17,18],[-5,3],[-6,-2],[-6,-3],[-7,0],[-5,9],[0,6],[2,7],[1,5],[-2,3],[-9,2],[-4,3],[-1,3],[-2,5],[-1,5],[-3,3],[-3,1],[-6,-2],[-3,1],[-17,11],[-6,1],[-7,-4],[0,-1],[-7,-16],[-5,-6]],[[56324,82660],[-17,37],[-7,21],[-2,23],[2,46],[6,28],[1,11],[0,6],[-2,14],[0,6],[1,4],[6,11],[1,2],[-1,3],[-1,3],[1,3],[1,1],[2,0],[3,4],[5,3],[2,3],[4,8],[9,8],[4,5],[3,11],[1,10],[-1,11],[-4,24],[-2,8],[-4,5],[-16,9],[-3,5],[3,8],[-3,1],[-3,4],[-2,4],[-2,3],[-2,1],[-16,0],[-4,3],[-4,7],[-3,13],[-5,27],[-3,12],[-3,3],[-1,3],[-7,4],[-29,-10],[-46,7],[-6,0],[-30,-9],[-3,-5],[-4,-5],[-5,-5],[-6,-1],[-8,3],[-6,7],[-2,10],[0,9],[-1,7],[-3,3],[-8,-1],[-7,-7],[-2,-1],[-3,1],[-7,6],[-10,3],[-5,4],[-9,10],[-20,5],[-5,5],[-4,8],[-20,19],[-11,6],[-28,2],[-10,10],[-18,36],[-8,10],[-7,-1],[-23,-23]],[[55907,83189],[1,3],[-2,13],[0,5],[2,2],[2,-1],[2,0],[2,6],[-1,5],[-2,7],[-2,6],[-2,3],[-2,3],[-1,6],[0,13],[-3,1],[-16,-19],[-1,4],[0,2],[11,30],[2,4],[5,7],[0,14],[-4,24],[-3,18],[0,5],[-2,2],[-2,3],[-3,5],[-1,6],[0,7],[1,4],[0,5],[-1,6],[-10,34],[-3,10],[0,11],[-2,6],[-12,24],[-2,4],[-3,2],[-2,4],[-1,14],[-2,12],[-5,50],[0,26],[1,6],[2,9],[1,5],[0,51],[-1,21]],[[55848,83677],[10,3],[16,0],[12,4],[4,11],[2,16],[5,19],[7,13],[9,13],[11,11],[8,5],[13,1],[4,1],[39,36],[10,6],[25,1],[78,44],[5,3],[31,17],[12,-1],[5,-3],[11,-9],[5,-3],[83,3],[17,-5],[1,0],[8,-5],[12,-15],[5,-3],[4,1],[39,19],[10,9],[8,7],[10,2],[9,-6],[7,-17],[10,-30],[13,-11],[14,4],[14,18],[-3,6],[5,4],[32,9],[7,-2],[18,-9],[29,-15],[10,-1],[17,12],[9,3],[19,-1],[8,2],[2,-1],[2,-5],[1,-4],[-1,-4],[1,-2],[8,-1],[19,5],[10,0],[3,-2],[31,-11],[26,-25],[9,-6],[9,-2],[7,2],[34,21],[9,2],[9,-5],[17,-15],[9,-3],[10,5],[16,11],[5,7],[23,36],[11,10],[10,5],[25,14],[3,0],[6,-3],[2,0],[2,6],[0,6],[1,7],[4,4],[6,-2],[5,-10],[7,-25],[7,-36],[3,-11],[3,-6],[9,-12],[3,-6],[5,-19],[8,-18],[10,-9],[67,-14],[29,-6],[19,4],[14,-8],[5,-1],[16,2],[4,-2],[2,-5],[5,-20],[2,-6],[4,-4],[16,-14],[8,-11],[21,-28],[25,-20],[16,-12],[17,-24],[27,-28],[7,-14],[7,-18],[14,-31],[18,-16],[38,-23],[16,-5],[16,-2]],[[55830,83203],[-18,6]],[[55812,83209],[21,44],[11,35],[12,48],[3,50],[1,10],[-1,3],[1,5],[-2,12],[1,37],[-3,17],[9,-14],[4,-26],[1,-52],[-1,-7],[-2,-10],[-1,-7],[0,-23],[-3,-9],[-4,-10],[-2,-9],[5,-8],[0,-4],[-4,-6],[-5,-12],[-4,-13],[-2,-12],[-4,-12],[-13,-22],[0,-11]],[[34833,35324],[0,1],[2,14],[0,15],[-2,11],[-2,11],[-1,13],[0,12],[0,7],[4,21],[6,22],[8,14],[5,13],[7,21],[6,39],[3,11],[10,16],[2,11],[-1,11],[-7,23],[-2,11],[0,10],[0,11],[3,21],[13,107],[2,10],[8,22],[3,21],[10,61],[1,20],[-4,40],[0,18],[3,20],[11,31],[3,13],[3,18],[0,17],[-4,19],[-2,13],[-6,17],[-3,8],[-1,22],[-4,19],[0,9],[2,19],[7,16],[10,14],[6,10],[-1,0],[-7,8],[-26,31],[-16,42],[-5,8],[-48,52],[-7,4],[-4,-4],[-7,-15],[-5,-5],[-36,-25],[-18,-19],[-4,-8],[-6,-16],[-4,-5],[-5,-2],[-10,-1],[-4,-4],[-9,-5],[-17,0],[-8,-7],[-9,-9],[-10,-2],[-10,4],[-10,7],[-9,4],[-17,3],[-9,7],[-6,13],[-3,16],[-4,114],[-6,37],[-12,26],[-5,15],[-1,20],[0,21],[0,3],[-2,17],[-1,21],[8,33],[0,18],[-3,11],[-8,18],[-2,13],[1,10],[6,27],[0,10],[-6,44],[-1,5],[-8,10],[-3,7],[0,10],[2,22],[-2,11],[-3,9],[-7,17],[-1,10],[2,20],[0,11],[-7,45],[0,22],[3,18],[5,17],[3,20],[0,5],[-2,10],[-1,5],[1,5],[1,10],[1,4],[-1,13],[-2,7],[-4,4],[-6,4],[-9,10],[-7,16],[-5,19],[-2,21],[-1,50],[-2,15],[-3,6],[-11,17],[-14,37],[-3,-12],[-1,-4],[-5,6],[-17,4],[-5,4],[-4,6],[-4,4],[-3,-4],[-4,-2],[-48,5],[-4,2],[-5,6],[-8,16],[-16,18],[-8,16],[-7,20],[-7,36],[-3,6],[-4,1],[-20,-7],[-5,-3],[-3,-5],[-2,-6],[-5,-12],[0,-4],[-2,-9],[-1,-3],[-2,-2],[-1,-1],[-4,-17],[-3,-6],[-10,-14],[-2,-2],[-3,-2],[-2,-4],[3,-10],[-1,-5],[-5,2],[-9,22],[-5,4],[-1,-2],[-2,-11],[-2,-4],[-2,-3],[-1,1],[0,2],[-2,1],[-10,-5],[-2,-1],[-3,3],[-1,-1],[-1,-4],[-2,-5],[-6,-14],[-4,-3],[-6,2],[-1,8],[-3,15],[-3,9],[-3,-16],[-3,1],[-5,5],[-2,0],[-3,-1],[-1,2],[0,10],[-3,-4],[-3,0],[-7,4],[-4,0],[-9,1],[-4,-2],[-2,-1],[-1,0],[-2,1],[-5,2],[-1,2],[-1,3],[0,1],[-2,3],[-8,6],[-5,1],[-2,-1],[-2,-2],[-1,-2],[-3,1],[-2,3],[-1,9],[-1,3],[-4,-2],[-7,-12],[-5,-2],[-13,6],[-4,1],[0,-2],[-1,-3],[-1,-4],[-3,0],[-5,5],[-2,1],[-1,-3],[-2,0],[-9,11],[-4,3],[-3,1],[-6,4],[-2,0],[-11,-5],[-6,9],[-2,1],[-4,1],[-1,-1],[-1,-1],[-3,-2],[-6,-2],[-5,2],[-4,7],[-3,12],[-4,24],[-3,2],[-2,-1],[-2,-2],[-3,-2],[-6,1],[-4,2],[-3,1],[-6,-5],[-1,0],[-3,2],[-1,0],[0,-2],[-1,-3],[0,-3],[1,-1],[-3,-4],[-3,-1],[-2,2],[-3,0],[-5,-8],[-3,-1],[-1,2],[-4,8],[-3,3],[-2,0],[-4,-4],[-3,0],[-10,6],[-3,7],[-3,10],[-3,5],[-4,4],[0,6],[0,9],[0,8],[6,35],[1,6],[3,5],[6,24],[1,7],[-2,14],[-4,10],[-2,8],[2,10],[3,13],[1,12],[-1,10],[-1,12],[13,39],[-2,6],[-3,4],[-3,8],[-3,11],[-2,10],[2,10],[4,13],[2,12],[-3,5],[-5,5],[-2,10],[0,13],[1,13],[4,20],[19,57],[2,15],[-3,6],[-5,3],[-2,6],[-1,3],[-2,3],[-1,5],[0,7],[2,5],[7,12],[7,18],[4,25],[1,28],[-2,26],[-4,18],[0,9],[7,23],[3,14],[-1,13],[-5,9],[-1,-11],[-2,0],[-6,14],[-7,11],[-1,0],[-1,1],[-2,1],[-2,3],[-1,7],[3,7],[11,13],[3,6],[0,11],[-4,9],[-4,6],[-6,2],[-7,2],[-2,3],[2,6],[4,6],[3,7],[3,3],[6,3],[3,3],[2,4],[-1,6],[-2,5],[-4,6],[-2,3],[-1,4],[-2,9],[-1,3],[-4,6],[-4,1],[-4,-4],[-2,-21],[-3,-1],[-2,4],[-2,7],[0,7],[2,11],[0,7],[-1,6],[-4,12],[-1,8],[1,13],[-1,7],[-3,14],[-1,14],[0,15],[0,12],[5,17],[0,11],[-4,5],[-5,2],[-6,7],[-6,9],[-5,11],[-2,10],[-2,14],[0,15],[2,17],[-1,5],[-2,5],[-2,2],[-3,0],[-2,-4],[-1,-3],[-2,-1],[-5,7],[-2,11],[2,10],[11,7],[-1,7],[-3,6],[-2,4],[-1,2],[-3,-1],[-1,2],[-1,10]],[[30565,47961],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[8,95],[8,96],[8,95],[9,95],[8,96],[8,95],[8,96],[8,95],[8,96],[8,95],[9,96],[8,95],[8,95],[8,96],[8,95],[8,96],[3,36],[4,30],[0,12],[5,40],[0,28],[5,54],[-1,27],[6,33],[-3,18],[-10,36],[0,7],[1,12],[1,7],[-2,22],[1,2],[-1,4],[-1,2],[-1,2],[-3,1],[-2,3],[-6,18],[-3,4],[-6,5],[-2,5],[-2,7],[0,6],[1,6],[0,7],[-2,6],[-2,4],[-2,2],[-2,3],[-2,9],[-1,6],[1,15],[-2,8],[-11,25],[-3,14],[2,11],[9,28],[2,14],[-1,7],[-2,5],[-1,5],[-2,6],[0,5],[-1,18],[-1,13],[-2,12],[-4,10],[-4,9],[-5,6],[-22,17],[-5,8],[-8,19],[-3,4],[-6,7],[-3,4],[-2,6],[-3,13],[-1,5],[-5,7],[-11,5],[-5,5],[-3,5],[-6,19],[-15,28],[-10,26],[-4,13],[-1,21],[0,29],[0,16],[1,39],[1,57],[0,64],[1,65],[1,56],[0,40],[1,15],[0,41],[4,-8],[6,3],[5,6],[7,0],[6,-2],[6,1],[5,4],[19,2],[11,5],[11,8],[9,11],[11,18],[4,0],[8,-7],[9,-4],[4,10],[3,13],[6,5],[5,1],[9,13],[5,5],[7,2],[6,-3],[5,-7],[20,-43],[1,-2],[6,6],[6,3],[5,0],[3,-6],[-1,-16],[5,0],[10,-3],[4,1],[2,3],[3,9],[2,2],[3,1],[5,-5],[3,0],[5,3],[2,8],[-1,10],[-3,14],[-2,4],[-6,6],[-3,4],[0,8],[2,6],[3,4],[1,6],[0,14],[-2,26],[0,13],[2,2],[3,1],[2,3],[0,8],[-2,5],[-3,4],[-7,5],[-4,9],[1,22],[-6,8],[-1,6],[0,7],[-1,5],[-2,4],[-4,7],[-5,13],[-4,6],[-14,15],[-5,2],[-4,-3],[-13,-20],[-3,1],[-5,7],[-2,2],[0,3],[-2,3],[-2,2],[-3,1],[-9,-3],[-9,0],[-3,1],[-12,8],[-6,1],[-27,-8],[-3,1],[0,13],[-3,3],[-3,1],[-4,1],[-7,-4],[-11,-16],[-7,1],[0,36],[0,40],[1,41],[0,41],[0,40],[0,41],[0,41],[0,40],[0,41],[-2,23],[4,0],[10,0],[5,3],[12,13],[4,3],[5,-1],[6,-2],[12,2],[19,19],[10,1],[21,-9],[21,-19],[11,-3],[13,0],[35,0],[50,1],[57,0],[57,0],[49,0],[35,0],[14,0],[20,0],[-4,5],[-3,4],[0,4],[0,7],[-1,5],[-2,3],[-11,1],[0,11],[0,13],[-2,7],[-7,2],[-2,2],[5,17],[17,89],[2,4],[2,-4],[0,-12],[0,-4],[3,-5],[2,-2],[5,-2],[7,-6],[4,-8],[3,-11],[6,-38],[6,-26],[7,-23],[9,-16],[10,-6],[10,1],[9,5],[10,7],[11,13],[8,17],[34,95],[21,49],[11,10],[7,14],[5,7],[10,2],[2,3],[5,11],[2,3],[5,-1],[12,-9],[4,-5],[7,-15],[6,-21],[8,-47],[7,-25],[30,-85],[11,-47],[10,-62],[2,-38],[-7,-170],[1,-31],[3,-15],[5,-2],[25,14],[18,11],[10,5]],[[31423,51194],[5,-10],[14,-26],[19,-36],[21,-42],[22,-41],[19,-36],[13,-26],[6,-10],[11,-22],[17,-26],[17,-8],[16,10],[5,1],[6,-5],[4,-7],[5,-6],[6,-1],[6,6],[9,21],[6,6],[13,1],[5,3],[6,8],[5,12],[11,28],[6,12],[6,8],[24,24],[11,15],[7,4],[5,2],[20,-2],[6,2],[4,-1],[3,-3],[4,-6],[3,-6],[6,-17],[3,-12],[2,-13],[1,-14],[-5,-28],[-8,-23],[-7,-23],[1,-28],[3,-12],[3,-9],[5,-4],[7,1],[6,5],[7,8],[6,10],[5,19],[5,12],[1,8],[0,17],[0,5],[3,14],[3,12],[17,44],[5,5],[7,0],[12,-4],[5,1],[6,6],[6,18],[3,25],[3,49],[6,28],[10,5],[12,-2],[10,5],[0,2],[1,8],[0,3],[1,2],[3,2],[1,2],[9,17],[3,3],[7,4],[5,1],[5,3],[5,9],[6,14],[5,7],[5,0],[14,-14],[5,-2],[6,3],[35,49],[4,11],[5,27],[6,14],[6,10],[15,16],[12,18],[6,8],[7,2],[6,-8],[0,-11],[-6,-25],[-2,-11],[-1,-15],[2,-13],[5,-7],[5,5],[3,10],[5,24],[6,13],[19,30],[16,32],[13,16],[5,12],[5,15],[3,14],[2,11],[1,11],[-1,36],[4,37],[2,51],[5,20],[11,18],[10,8],[11,2],[33,-1],[5,1],[6,7],[40,68],[16,15],[3,1],[8,-2],[3,0],[18,7],[9,8],[3,12],[-1,11],[1,9],[4,19],[4,18],[1,9],[-1,40],[1,9],[2,21],[-1,8],[-5,4],[-35,3],[-18,5],[-36,2],[-17,-5],[-18,0],[-34,19],[-16,4],[-6,-3],[-4,5],[-3,10],[0,13],[2,15],[11,41],[1,11],[1,34],[1,15],[1,5],[-1,7],[-3,11],[-5,32],[-22,88],[-8,24],[-10,38],[-9,22],[-5,21],[-1,24],[3,51],[-1,25],[-7,74],[1,15],[2,10],[8,22],[2,10],[1,11],[0,22],[-2,15],[-6,12],[-12,22],[-16,42],[-7,9],[-13,10],[-11,13],[-27,45],[-12,36],[-6,13],[-13,22],[-5,14],[-13,51],[-3,24],[-2,10],[-4,10],[-6,7],[-6,4],[-5,7],[-3,13],[-1,12],[1,13],[2,12],[4,7],[13,2],[12,-14],[11,-22],[4,-11],[3,-10],[4,-26],[4,-13],[5,-4],[63,19],[34,-5],[19,-11],[7,-8],[6,-13],[5,-18],[3,-20],[5,-42],[4,-25],[7,-17],[12,-1],[11,12],[11,17],[12,12],[12,0],[11,-10],[6,-3],[6,1],[16,8],[5,2],[14,-7],[19,-35],[12,-13],[11,8],[4,20],[2,23],[7,17],[9,2],[11,-8],[18,-22],[10,-21],[16,-47],[17,-26],[30,-74],[4,-13],[3,-10],[7,-9],[6,-8],[6,-4],[6,-1],[5,-1],[5,3],[6,7],[5,11],[3,2],[4,-1],[3,0],[3,4],[4,11],[6,22],[3,24],[0,25],[-3,24],[-5,23],[0,15],[-2,5],[-1,3],[-2,7],[-1,16],[2,12],[3,12],[2,15],[-1,13],[-1,11],[2,9],[6,8],[4,2],[16,3],[23,-7],[8,4],[3,23],[0,13],[1,9],[2,7],[6,4],[9,4],[2,3],[2,4],[1,10],[1,4],[10,5],[12,-6],[53,-46],[11,-3],[12,9],[21,32],[12,4],[6,-4],[5,-4],[5,-4],[7,0],[6,2],[5,5],[6,5],[4,6],[15,33],[6,8],[5,4],[6,1],[10,-1],[9,-5],[2,-1],[4,1],[5,5],[3,1],[4,0],[2,-3],[3,0],[4,4],[3,4],[2,7],[2,7],[1,7],[2,45],[4,17],[12,10],[5,1],[16,-2],[6,1],[8,3],[7,5],[4,9],[-1,12],[-7,24],[2,7],[5,2],[16,-5],[5,-3],[10,-10],[4,-2],[5,1],[16,9],[23,6],[10,10],[8,23],[2,12],[2,26],[8,37],[2,5],[2,2],[6,0],[2,0],[27,26],[13,17],[10,20],[19,49],[6,29],[-2,28],[-19,103],[-5,10],[-8,6],[-8,2]],[[35643,52862],[9,5],[5,12],[10,53],[0,34],[3,11],[4,1],[4,-7],[2,-10],[3,-34],[8,-41],[17,-65],[4,-24],[2,17],[-2,16],[-8,27],[-9,44],[-14,89],[-4,60],[0,7],[4,31],[3,6],[6,6],[7,-8],[10,-15],[18,-26],[25,-59],[21,-56],[10,-51],[2,-32],[0,-59],[0,-71],[-5,-62],[6,-31],[1,14],[5,39],[2,53],[3,24],[6,23],[6,1],[4,-15],[-3,-93],[2,-79],[1,-59],[-5,-26],[1,-43],[16,-87],[2,-28],[-3,-18],[2,-14],[4,-21],[1,-12],[-1,-9],[0,-13],[4,-7],[2,-10],[2,-15],[1,-13],[2,-12],[4,-13],[3,-16],[2,-9],[0,-7],[-1,-9],[0,-6],[1,-9],[3,-5],[3,-3],[2,-5],[4,-4],[1,-8],[2,-10],[3,-9],[2,-11],[0,-15],[2,-12],[4,-10],[2,-12],[0,-12],[3,-20],[4,-24],[-1,-14],[-2,-6],[-2,-2],[-1,-5],[1,-5],[1,-4],[3,-1],[2,3],[1,4],[2,2],[4,-6],[5,-17],[3,-13],[0,-15],[3,-13],[3,-11],[-1,-6],[1,-10],[2,-22],[4,-13],[0,-20],[2,-13],[4,-12],[3,-10],[2,-16],[-4,-15],[-3,-3],[-2,-2],[-5,1],[-2,-3],[-8,5],[-3,4],[-3,7],[-1,0],[0,-4],[0,-3],[1,-5],[2,-3],[2,-2],[2,-2],[0,-3],[0,-4],[-1,-6],[-2,-15],[-1,-7],[2,-6],[1,-5],[2,-5],[3,1],[2,5],[0,6],[0,7],[0,6],[3,11],[4,9],[5,6],[6,3],[5,-3],[12,-15],[5,-17],[2,-28],[1,-7],[8,-32],[8,-19],[3,-11],[2,-23],[1,-9],[3,-8],[2,-7],[7,-10],[10,-8],[10,-3],[12,5],[6,7],[7,-2],[4,-1],[6,0],[3,-3],[10,4],[4,0],[7,3],[5,-2],[7,-10],[13,-10],[25,-18],[14,-18],[8,-18],[4,-16],[2,-31],[1,-20],[0,-12],[1,-16],[2,-36],[3,-21],[1,-25],[0,-19],[-3,-31],[-3,-11],[-5,-10],[-8,-8],[-9,-8],[-14,-9],[-12,-3],[-10,-6],[-4,1],[-4,2],[-2,3],[-3,-2],[1,-9],[2,-7],[5,-5],[7,5],[8,-4],[11,6],[8,1],[7,-1],[8,12],[7,0],[4,-7],[4,-12],[1,-7],[-1,-5],[-5,-19],[-8,-22],[-11,-14],[-10,-1],[-5,21],[-3,-11],[-1,-21],[-4,-20],[-10,-9],[-3,-5],[-10,-32],[-4,-8],[-4,-7],[-21,-21],[-4,-6],[-11,-27],[-3,-4],[-9,-48],[-2,-6],[-4,-7],[-19,-21],[-5,-9],[-4,-11],[-9,-53],[-17,-64],[-13,-44],[-24,-52],[-27,-69],[-3,0],[-5,3],[-9,0],[-21,-11],[-14,-21],[-11,-29],[-14,-54],[-4,-8],[-4,-3],[-18,-1],[-11,-5],[-2,-3],[0,-5],[-2,-4],[-7,-2],[-7,-7],[-12,4],[-5,-1],[0,-4],[3,-3],[6,-3],[4,-4],[1,-6],[1,-5],[2,-4],[4,0],[-20,-52],[-4,-27],[-5,-17],[-2,-21],[-2,-10],[-5,-19],[-3,-9],[-9,-15],[-3,-8],[-1,-7],[1,-9],[-1,-10],[-2,-9],[-9,-18],[-6,-8],[-4,-4],[-4,1],[-7,6],[-5,1],[0,-4],[2,0],[2,-1],[3,-3],[0,-4],[-4,-3],[-5,-1],[0,-4],[4,-1],[3,1],[3,2],[1,6],[4,-4],[-13,-31],[-14,-43],[-2,-3],[-4,-5],[-1,-3],[-12,-31],[-1,-7],[-3,-20],[-3,-50],[4,-60],[-1,-19],[0,-6],[-1,-4],[-1,-3],[-1,-4],[-3,-4],[-5,-5],[-9,-17],[-4,-5],[-6,-19],[-4,-6],[-20,-14],[-6,-12],[0,-27],[4,-51],[-2,-9],[-4,-9],[-8,-12],[-9,-21],[-3,-3],[-16,-2],[-6,2],[-18,12],[-4,6],[-4,8],[-4,7],[-5,3],[-7,-4],[-3,-4],[-7,-18],[-3,-4],[-6,-2],[-7,-8],[-19,-8],[-6,-5],[-6,-8],[-4,-9],[-2,-9],[-3,-6],[-23,-21],[-5,-2],[-12,-2],[-17,-11],[-5,-5],[-2,-5],[-1,-4],[0,-5],[0,-8],[1,-6],[2,0],[2,2],[3,2],[6,1],[18,11],[48,4],[22,8],[4,3],[10,14],[4,4],[4,-5],[4,-10],[2,-11],[1,-14],[1,-5],[1,-5],[0,-7],[-2,-7],[-4,-11],[-2,-7],[-1,-12],[1,-11],[3,-5],[7,7],[4,0],[2,1],[1,3],[0,6],[0,3],[10,20],[6,8],[5,2],[13,-1],[1,1],[4,5],[3,2],[3,0],[6,-1],[3,1],[13,8],[12,13],[68,101],[21,8],[5,6],[5,7],[21,15],[6,6],[6,10],[6,13],[2,14],[3,10],[6,6],[14,6],[0,-4],[-2,-2],[-1,-3],[-1,-3],[-2,-4],[6,2],[6,6],[6,7],[4,7],[5,11],[7,23],[4,11],[7,13],[7,11],[36,39],[8,14],[3,16],[-1,10],[-3,10],[-1,10],[4,8],[5,2],[6,-18],[6,-4],[0,5],[-3,4],[-2,6],[0,7],[3,6],[4,2],[13,-5],[7,2],[5,-1],[3,-6],[2,-7],[-1,-9],[-1,-20],[1,-28],[-1,-8],[-2,-8],[-3,-5],[-3,-3],[-3,-5],[-7,-19],[-3,-5],[-3,-3],[-3,-1],[-9,-1],[30,-41],[5,-9],[3,-11],[0,-12],[-3,-35],[1,-35],[1,-3],[2,-4],[2,-5],[1,-6],[-2,-8],[-1,-6],[-1,-7],[3,-13],[8,-24],[4,-25],[3,-9],[18,-33],[3,-10],[3,-40],[1,-14],[3,-11],[-5,-15],[-5,-1],[-13,16],[3,-13],[2,-5],[3,-13],[-2,-19],[-7,-6],[-5,-7],[-2,-11],[0,-11],[-6,-9],[-8,1],[-6,8],[-6,10],[-6,8],[-2,-10],[-1,-6],[3,-2],[3,-11],[5,-4],[-1,-15],[3,-13],[4,-5],[3,-3],[-1,13],[-1,9],[2,4],[8,-2],[15,4],[7,4],[3,3],[1,12],[-1,10],[1,11],[2,6],[4,8],[2,13],[2,3],[8,-5],[6,-2],[5,-17],[8,-28],[5,-10],[6,-8],[6,-5],[4,1],[3,1],[3,-1],[1,-7],[-1,-4],[-4,-12],[-1,-7],[4,5],[4,15],[4,5],[0,-6],[0,-6],[-1,-5],[-2,-5],[-1,-6],[1,-6],[3,-11],[2,-19],[2,-11],[3,-6],[2,15],[2,7],[2,6],[4,5],[1,7],[0,4],[1,7],[0,8],[3,7],[6,15],[8,16],[9,9],[8,-5],[5,4],[7,-1],[7,-4],[6,-7],[2,20],[5,12],[7,8],[24,13],[7,2],[6,-2],[7,-4],[6,-6],[15,-21],[2,-6],[1,-10],[-1,-8],[-7,-26],[6,12],[4,12],[1,-12],[1,-12],[0,-12],[-1,-13],[-2,-12],[-5,-24],[-2,-13],[2,0],[6,25],[1,0],[2,-10],[3,-11],[3,-10],[4,-6],[-5,30],[-3,31],[1,47],[-3,10],[0,4],[4,-2],[1,-7],[-1,-19],[3,13],[1,9],[2,7],[8,3],[6,-1],[4,-4],[3,-7],[3,-8],[-1,11],[2,4],[3,-2],[2,-9],[3,9],[5,-1],[6,-6],[9,-18],[5,-11],[2,-12],[1,-14],[4,11],[-4,18],[-12,32],[-3,-4],[-1,5],[-1,7],[6,17],[9,14],[10,5],[7,-15],[4,38],[4,10],[7,9],[5,0],[2,-9],[-1,-16],[3,4],[4,9],[4,3],[-1,-12],[-7,-15],[-1,-7],[0,-12],[2,-8],[4,-6],[5,-5],[10,-4],[3,-6],[0,-12],[0,-8],[-2,-10],[-2,-10],[-3,-6],[0,-5],[4,0],[-3,-8],[-6,-13],[-3,-7],[-1,-7],[0,-48],[-1,-5],[-3,-12],[-1,-14],[-2,-4],[-3,-3],[-2,-4],[-7,-26],[-1,-3],[-1,-4],[0,-30],[-1,-6],[-2,-4],[-2,-4],[-1,-5],[-1,-6],[0,-11],[-1,-6],[-5,-13],[-1,-6],[1,-7],[1,-11],[1,-32],[-1,-12],[-17,-52],[-3,-6],[-6,-3],[-6,-7],[-5,-10],[-3,-12],[7,-5],[12,4],[21,17],[5,8],[1,8],[0,8],[2,13],[1,4],[6,6],[1,1],[1,2],[1,11],[1,4],[7,15],[3,9],[1,13],[1,11],[-1,22],[0,11],[3,17],[26,96],[5,26],[3,22],[0,11],[1,8],[19,85],[8,24],[8,15],[2,2],[2,2],[4,11],[1,10],[4,23],[1,20],[10,11],[11,16],[11,24],[5,27],[7,21],[11,4],[6,5],[7,8],[4,7],[2,0],[0,-4],[-5,-12],[-5,-7],[0,-14],[-3,-10],[-2,-20],[-5,-8],[-2,-4],[-2,-4],[-1,-3],[2,-9],[-1,-14],[-3,-13],[-4,-12],[-7,-4],[-5,-9],[-2,-12],[-3,-6],[-1,-5],[5,0],[4,2],[3,6],[2,11],[8,7],[7,9],[3,15],[2,12],[3,4],[2,7],[3,4],[0,2],[-2,12],[0,4],[2,4],[5,5],[2,3],[1,2],[2,8],[0,2],[1,3],[1,-1],[1,0],[2,1],[3,0],[1,1],[1,3],[-1,5],[1,3],[21,65],[0,2],[0,3],[0,2],[1,3],[1,1],[3,0],[0,1],[4,7],[1,3],[1,6],[5,27],[6,20],[4,-1],[3,-12],[4,-13],[3,-17],[8,-33],[4,-10],[3,-9],[2,-13],[3,-9],[3,1],[6,-19],[3,-4],[7,-1],[4,-3],[3,-6],[2,-8],[1,-8],[2,10],[-1,12],[-1,11],[-1,10],[-3,12],[-10,21],[-1,14],[5,-7],[5,-2],[5,1],[15,8],[5,6],[5,8],[4,10],[-3,1],[-8,-1],[-4,1],[-3,1],[-2,3],[-3,3],[-3,-5],[-5,-3],[-5,-2],[-6,2],[-6,5],[-2,8],[1,10],[1,14],[2,48],[2,27],[8,22],[5,15],[4,-8],[-2,-20],[1,-19],[4,-3],[20,-8],[1,2],[1,11],[2,9],[1,29],[5,25],[6,13],[9,-14],[-2,10],[-4,7],[-2,7],[2,9],[-2,3],[2,5],[3,-3],[3,2],[4,3],[3,2],[-3,3],[-3,0],[-8,-3],[-1,3],[-4,17],[-1,15],[1,7],[4,2],[13,1],[5,1],[4,3],[3,7],[1,6],[0,7],[0,5],[2,3],[0,2],[4,10],[1,2],[0,14],[2,13],[1,2],[2,3],[0,3],[-1,9],[0,3],[1,15],[0,7],[-1,6],[-2,4],[-1,3],[-1,3],[0,12],[2,9],[11,34],[21,37],[3,-8],[1,-5],[1,-7],[0,-4],[-1,-8],[0,-5],[0,-1],[3,-3],[1,-2],[2,-7],[9,-20],[2,-1],[4,24],[19,26],[3,14],[5,1],[8,-5],[5,-6],[-1,8],[-4,7],[-1,15],[0,19],[2,11],[1,9],[1,5],[6,-10],[4,-10],[1,-12],[0,-11],[7,2],[6,-6],[2,-14],[0,-27],[-2,-6],[-3,-7],[-2,-6],[2,-7],[2,1],[21,19],[7,10],[4,8],[4,10],[3,21],[2,3],[-2,13],[1,21],[3,-2],[4,-5],[6,-12],[-2,-10],[3,-6],[1,-5],[1,-7],[1,-7],[1,-4],[3,-6],[4,-15],[2,-10],[0,-10],[-3,-11],[20,0],[5,-4],[0,-18],[4,-7],[0,7],[1,7],[1,6],[2,5],[-2,2],[-1,3],[-1,4],[0,5],[-6,6],[-7,20],[-2,5],[-1,-7],[-1,-6],[-2,-4],[-2,-4],[0,64],[1,8],[5,1],[-4,9],[4,4],[5,3],[4,-1],[4,-6],[-1,-5],[-2,-5],[-1,-3],[1,-8],[-1,-20],[2,-12],[0,7],[0,6],[1,4],[3,3],[1,-8],[1,-7],[2,-4],[3,-1],[0,3],[-2,4],[-2,6],[0,8],[2,7],[4,2],[4,-4],[6,-10],[-1,9],[-1,6],[-2,5],[-2,8],[5,-4],[3,4],[3,6],[3,3],[5,-4],[0,-9],[0,-11],[0,-9],[2,0],[3,4],[2,-4],[1,-8],[-2,-9],[5,7],[1,8],[-1,9],[-1,9],[12,-18],[1,-7],[-1,-8],[-3,-3],[-2,7],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-1],[0,-4],[4,-9],[1,0],[2,9],[4,2],[5,-3],[5,-4],[0,7],[0,4],[2,3],[1,3],[2,-9],[0,-10],[-1,-9],[-2,-9],[-2,-3],[-5,-4],[-1,-3],[1,-5],[2,0],[3,3],[2,4],[3,-4],[2,-6],[1,-7],[1,-7],[2,10],[-1,13],[-1,11],[4,6],[0,-4],[2,-5],[0,-3],[1,5],[0,4],[-1,3],[0,6],[0,4],[3,6],[1,5],[0,12],[2,5],[3,3],[3,-3],[1,-5],[0,-7],[-2,-5],[1,-2],[1,1],[0,-1],[0,-2],[-2,-5],[0,-15],[-1,-9],[1,-4],[2,8],[2,-9],[0,-10],[1,-8],[5,-1],[-3,-7],[-5,-7],[-2,-7],[1,-6],[4,-11],[1,-7],[1,6],[1,22],[1,6],[1,5],[2,6],[2,4],[1,-2],[3,-2],[-1,13],[1,6],[2,1],[4,0],[2,5],[2,11],[3,21],[3,-9],[0,-15],[-3,-29],[2,0],[2,8],[2,-3],[1,-4],[0,-4],[-1,-5],[5,0],[-1,-4],[-2,-9],[-1,-4],[3,2],[0,1],[1,1],[2,-9],[-3,-4],[-3,-3],[-3,-4],[-3,-7],[-1,-8],[1,-8],[5,-5],[-1,10],[0,7],[0,6],[4,5],[7,-4],[3,2],[0,11],[2,-5],[0,8],[0,29],[2,-3],[2,-4],[1,-4],[0,-6],[2,0],[1,4],[1,2],[1,2],[3,1],[-1,4],[-2,3],[-2,3],[-3,2],[4,7],[7,21],[5,4],[0,4],[-4,4],[3,-1],[3,-3],[2,-5],[2,-7],[-4,-2],[0,-4],[1,-5],[3,-5],[-5,-4],[-1,0],[0,-4],[1,-4],[0,-4],[-2,-3],[-3,-1],[0,-4],[3,-2],[1,-3],[-1,-6],[-1,-6],[3,2],[2,3],[2,5],[1,7],[1,0],[-2,-33],[0,-1],[0,-2],[1,-5],[3,-12],[0,-4],[2,9],[-2,7],[-1,7],[3,9],[2,0],[0,-12],[3,3],[1,7],[0,18],[3,-5],[7,-22],[1,-7],[-1,-10],[-8,-29],[4,7],[7,25],[3,5],[0,7],[0,15],[3,11],[5,-5],[2,-7],[1,-6],[0,-5],[4,-2],[3,2],[-1,6],[-6,24],[1,7],[5,0],[6,-7],[5,-32],[-7,-18],[-1,-7],[2,0],[2,3],[1,-4],[-1,-8],[-2,-6],[-4,-5],[-4,-1],[-3,3],[0,10],[-3,0],[-1,-8],[-3,-6],[-11,-15],[-4,-7],[-3,-9],[0,-12],[3,11],[5,10],[5,8],[6,4],[1,-1],[6,-1],[8,3],[6,3],[6,-8],[5,12],[1,13],[4,9],[8,7],[4,10],[4,3],[4,-3],[2,5],[6,2],[5,2],[3,-7],[-1,-8],[-5,-5],[-6,-2],[-6,-8],[2,-10],[-1,-10],[-3,-7],[0,-6],[5,-6],[-1,-13],[-2,-9],[4,0],[1,-5],[-3,-8],[3,-1],[3,2],[2,3],[2,6],[1,2],[3,-3],[3,-4],[2,-2],[4,7],[2,11],[5,0],[0,-10],[0,-11],[2,-13],[1,-5],[1,4],[0,11],[2,9],[3,7],[3,1],[2,-8],[0,-23],[-1,-5],[-1,-9],[0,-6],[4,7],[2,10],[1,12],[0,16],[2,0],[3,-11],[7,-16],[2,-10],[-2,10],[-4,14],[-2,8],[-1,2],[-1,4],[0,4],[5,4],[-2,6],[-2,5],[0,7],[3,8],[2,13],[3,11],[5,9],[9,5],[8,-8],[0,-21],[-2,0],[-3,-1],[-4,-11],[-3,-12],[-2,-8],[5,3],[2,-3],[-1,-4],[-4,-4],[1,-2],[0,-2],[0,-2],[1,-3],[-1,-3],[-1,-5],[-2,-3],[3,-10],[-14,-64],[9,21],[2,4],[4,-1],[3,-4],[4,-2],[5,3],[3,13],[2,7],[2,0],[1,-7],[-2,-21],[-1,-9],[4,7],[2,11],[0,25],[1,5],[2,6],[2,5],[2,2],[2,-1],[1,-4],[0,-6],[1,-5],[5,-18],[1,-10],[-3,-4],[-3,-5],[-2,-9],[-1,-11],[3,-8],[4,5],[2,7],[4,16],[3,-7],[0,-7],[-1,-7],[-2,-7],[5,6],[0,9],[-1,11],[0,11],[1,5],[2,7],[2,8],[0,12],[2,0],[0,-3],[1,-1],[0,-2],[1,-2],[3,2],[0,15],[0,6],[4,8],[4,-5],[0,-6],[1,-8],[-3,0],[-1,-3],[4,-9],[-3,-2],[-2,-5],[-1,-13],[3,2],[2,1],[2,-1],[2,-2],[-3,-3],[-11,-3],[-1,-25],[1,-5],[4,-1],[3,-1],[4,-3],[1,-6],[0,-12],[2,-6],[3,3],[1,3],[0,5],[-2,5],[2,1],[0,1],[1,1],[1,1],[-1,9],[2,17],[4,19],[5,30],[7,16],[3,-3],[0,-19],[-8,-24],[-2,-8],[-2,-8],[-2,-3],[0,-15],[0,-7],[2,16],[2,7],[3,5],[-1,-9],[0,-3],[3,-11],[-2,-10],[-4,-11],[-1,-12],[7,13],[2,3],[0,-4],[-1,-4],[1,-4],[0,-4],[-1,-4],[-3,-8],[-1,-4],[6,7],[4,9],[3,14],[0,18],[3,-9],[2,-14],[0,-12],[-2,-6],[-4,-4],[2,-11],[4,-10],[2,-7],[-2,18],[3,13],[4,4],[3,-6],[3,8],[1,21],[2,11],[4,4],[7,41],[6,0],[1,-16],[-8,-38],[-2,-15],[1,0],[1,2],[1,6],[5,9],[4,12],[3,-5],[1,-11],[1,-9],[-1,-9],[3,-6],[3,-3],[-2,-11],[3,-4],[0,-11],[-2,-9],[-2,-8],[-2,-4],[-1,-7],[10,-3],[2,2],[3,6],[1,5],[2,8],[0,9],[-1,6],[-2,8],[0,7],[3,5],[4,2],[4,-1],[1,-4],[-2,-5],[-3,-2],[1,-1],[0,-1],[1,-1],[1,0],[-1,-5],[0,-5],[0,-3],[1,-4],[7,26],[5,7],[3,-8],[-3,0],[-2,-3],[-1,-6],[1,-7],[1,1],[3,1],[1,1],[-1,-7],[-3,-5],[-1,-6],[0,-10],[1,1],[3,3],[0,6],[3,7],[0,8],[2,0],[1,-25],[0,-4],[-3,-15],[-1,-11],[-1,-7],[5,7],[12,32],[0,4],[0,6],[1,6],[2,7],[2,3],[9,8],[-8,0],[6,4],[3,-1],[2,-5],[1,-12],[0,-5],[-2,-10],[0,-5],[-1,-2],[-5,0],[-2,-2],[-6,-5],[-1,-1],[-2,-5],[0,-5],[0,-5],[0,-5],[-3,-17],[-1,-10],[2,-10],[-6,3],[-4,-4],[-7,-15],[3,0],[3,4],[1,5],[0,7],[4,-4],[2,-6],[-1,-8],[-3,-6],[3,-1],[2,1],[2,3],[1,5],[5,-6],[0,-9],[0,-10],[1,-8],[3,11],[0,13],[-2,27],[1,4],[3,6],[3,6],[2,2],[1,-2],[0,-7],[-2,-7],[-2,-4],[3,3],[4,8],[2,1],[0,3],[4,15],[2,11],[7,26],[0,8],[-1,10],[3,5],[6,-1],[5,-8],[0,-6],[3,-47],[-2,3],[-1,2],[-4,-17],[-5,-10],[-7,-7],[-7,-11],[1,-4],[3,7],[2,3],[3,1],[2,-3],[-2,-7],[-2,-9],[-1,-9],[-1,-10],[-2,-3],[-3,-4],[-3,-7],[3,-12],[1,9],[1,5],[-1,6],[10,-8],[3,-14],[-1,-17],[-3,-25],[-2,-8],[-1,-10],[0,-11],[2,-10],[2,-6],[4,-5],[4,-4],[11,8],[3,6],[-1,11],[4,4],[9,8],[2,6],[-1,10],[-7,19],[-1,10],[2,16],[5,19],[7,13],[7,0],[1,15],[3,11],[4,0],[3,-13],[2,0],[1,10],[3,5],[4,4],[1,3],[2,2],[3,-5],[0,-5],[-6,-2],[7,0],[2,8],[0,12],[2,12],[1,-22],[1,-6],[2,-3],[3,-3],[3,-2],[2,2],[4,-2],[3,-11],[-1,-9],[-6,4],[3,-9],[4,-2],[4,0],[4,-6],[0,-4],[-5,-5],[-6,-4],[-4,-6],[0,-13],[1,0],[2,10],[4,1],[8,-7],[-2,8],[2,9],[2,9],[1,10],[0,18],[2,6],[6,1],[0,4],[-2,0],[0,4],[5,5],[6,7],[4,9],[2,9],[1,3],[2,-3],[2,-6],[1,-6],[0,-18],[0,-4],[-2,-3],[-5,-6],[-3,-3],[-1,-5],[-2,-9],[-4,-12],[-2,-9],[0,-10],[2,-12],[-4,-1],[-5,3],[-3,-2],[4,-6],[5,-11],[2,-11],[-5,-5],[4,-1],[2,2],[3,18],[-1,4],[1,4],[4,6],[4,-8],[3,-10],[4,-6],[5,3],[-5,4],[-1,8],[2,9],[2,8],[-2,0],[0,3],[1,3],[1,2],[0,4],[4,-6],[2,-9],[1,-10],[0,-12],[2,12],[0,5],[3,-11],[-1,-7],[-2,-5],[-2,-8],[1,-4],[6,-8],[1,-6],[-1,-1],[-5,-11],[2,-4],[5,-6],[2,-2],[-4,-8],[-2,-3],[-3,-6],[-1,2],[-1,1],[-3,-3],[0,-2],[0,-2],[2,-4],[11,15],[2,8],[-2,14],[9,-10],[5,-2],[5,4],[-4,-19],[-8,-14],[-17,-20],[0,-4],[5,3],[10,4],[4,3],[3,6],[3,-3],[1,-7],[3,-6],[8,1],[4,15],[3,21],[0,20],[15,-17],[-4,-5],[-3,-6],[-2,-7],[-2,-10],[-1,-9],[0,-8],[-1,-6],[-4,-1],[0,-4],[3,2],[5,5],[3,1],[2,-2],[2,-5],[1,-4],[1,-1],[2,4],[1,7],[1,6],[3,3],[2,-3],[1,-8],[-2,-8],[-2,-5],[2,-4],[2,6],[3,3],[2,4],[1,7],[2,-2],[1,-2],[1,-4],[1,-4],[-4,-11],[-11,-13],[-4,-9],[6,1],[9,5],[4,-2],[3,-5],[2,-9],[1,-11],[0,-9],[1,-5],[2,-10],[1,-5],[-1,-5],[-1,-3],[-1,-2],[-1,-3],[-2,-4],[-5,-1],[-6,1],[-4,2],[-3,-7],[-4,-4],[-8,-5],[2,0],[1,0],[1,-1],[1,-3],[5,7],[5,3],[6,0],[5,-2],[5,0],[3,-2],[0,-6],[-2,-5],[-9,-15],[-6,-4],[-6,-21],[-8,-19],[-9,3],[-2,-4],[4,-2],[4,0],[4,1],[1,1],[3,-6],[-2,-5],[-6,-9],[-11,-25],[-5,-5],[-9,2],[2,-4],[1,-4],[1,-9],[-11,7],[-5,1],[-5,-5],[-5,-9],[-4,-6],[-6,4],[5,-7],[12,9],[12,6],[3,-20],[2,0],[2,8],[4,7],[4,2],[1,-7],[0,-8],[-2,-6],[-2,-4],[-1,-5],[-3,-13],[-1,-3],[-3,-6],[-2,-6],[-1,-14],[-2,-6],[2,-4],[1,7],[1,5],[2,4],[7,13],[3,2],[1,-5],[-1,-23],[0,-10],[3,-5],[-1,5],[0,8],[1,8],[3,11],[-1,5],[-1,5],[-1,4],[0,14],[1,11],[2,11],[3,11],[13,25],[3,4],[3,1],[3,3],[3,8],[-1,-1],[1,9],[0,2],[2,3],[1,3],[9,17],[10,2],[10,-11],[8,-21],[2,-12],[1,-12],[1,-22],[0,-1],[4,-9],[1,-4],[1,-7],[-1,-14],[-2,-25],[-3,-11],[-3,-4],[-10,-3],[-7,0],[-5,3],[-2,3],[-3,8],[-2,2],[-1,1],[-1,1],[0,2],[-1,1],[0,3],[-2,-1],[-1,-2],[-5,-5],[-4,-6],[-3,-8],[-2,-7],[13,17],[4,-2],[2,-17],[-3,-30],[-2,-18],[-4,-11],[-4,-2],[-2,1],[-3,0],[-3,-7],[-3,-18],[-2,-2],[-5,-2],[-7,-6],[-5,-8],[-1,-9],[4,9],[13,11],[5,6],[3,7],[1,6],[1,4],[5,2],[1,-4],[-1,-7],[-2,-7],[-1,-2],[-14,-61],[-7,-17],[2,-5],[-1,-7],[-3,-16],[-2,-14],[-1,-11],[1,-26],[-1,-14],[-10,-37],[-1,-4],[1,-18],[-1,-6],[-1,-12],[0,-6],[2,-10],[6,-3],[7,-1],[4,-4],[1,-15],[-5,-11],[-6,-8],[-3,-9],[-2,-8],[-2,-6],[-4,-4],[-2,-4],[-1,-6],[-2,-14],[-1,-5],[-5,-6],[-7,-2],[-5,-4],[-2,-10],[1,-11],[1,-11],[3,-11],[3,-9],[-10,-9],[10,-3],[2,9],[-2,31],[2,11],[3,7],[5,5],[13,3],[5,6],[4,9],[4,11],[5,23],[4,4],[7,2],[12,41],[14,15],[2,3],[1,9],[10,21],[3,10],[2,12],[2,13],[1,12],[-1,27],[1,13],[4,7],[-1,2],[-1,2],[-1,2],[-1,2],[9,66],[2,23],[1,-5],[1,-5],[0,-4],[0,-6],[2,0],[-5,67],[3,7],[1,5],[3,2],[5,0],[4,-4],[3,-9],[3,-19],[0,17],[-1,7],[-3,4],[1,7],[0,7],[0,8],[2,8],[4,4],[16,3],[30,32],[8,0],[3,10],[6,-1],[5,-9],[1,-16],[-4,2],[-7,1],[-6,-3],[-2,-8],[8,-3],[2,-1],[1,-5],[0,-14],[1,-6],[0,6],[0,5],[2,10],[2,0],[2,-14],[0,-12],[-1,-11],[-3,-12],[-5,1],[-5,-6],[-4,-11],[-1,-2],[-2,-1],[-2,-2],[-2,-4],[5,-4],[-1,-12],[-8,-29],[-4,-6],[-4,-4],[-4,-1],[-3,0],[-2,2],[-4,10],[1,-10],[1,-4],[2,-3],[-4,-6],[-7,-4],[-4,-4],[-7,-16],[-2,-2],[-8,-6],[-7,-14],[-2,-15],[5,-10],[0,14],[2,11],[3,4],[4,-8],[-2,-11],[-2,-2],[0,-4],[4,-8],[2,16],[1,1],[2,-1],[2,0],[1,2],[0,8],[1,6],[1,5],[1,4],[3,-5],[7,-11],[-1,9],[2,6],[9,5],[-1,-12],[4,-17],[-2,-10],[-3,-3],[-4,-4],[-2,-3],[-1,-4],[0,-2],[1,0],[2,2],[0,-3],[1,-3],[1,-2],[0,-4],[9,18],[2,6],[1,-1],[1,-1],[0,-2],[3,8],[3,10],[1,11],[1,10],[2,6],[3,5],[2,1],[-2,-6],[0,-4],[4,2],[1,2],[1,4],[2,-4],[-1,-5],[0,-1],[1,-2],[0,-4],[1,4],[0,2],[1,2],[0,-8],[-1,-6],[-3,-11],[4,7],[2,11],[0,25],[1,10],[2,10],[4,15],[4,16],[2,8],[9,12],[1,2],[1,1],[8,-11],[0,4],[-3,6],[0,7],[3,15],[4,11],[3,5],[1,-1],[7,-30],[4,-21],[1,7],[-1,7],[-1,8],[-1,9],[2,7],[7,7],[2,2],[2,0],[1,1],[2,2],[2,0],[2,0],[3,1],[6,10],[4,4],[4,1],[2,-3],[2,7],[0,18],[4,6],[3,-7],[2,-15],[-1,-15],[-3,-8],[0,-5],[2,0],[0,5],[2,0],[0,-5],[2,0],[0,4],[0,3],[2,6],[2,-3],[2,-1],[5,0],[-6,10],[0,14],[3,13],[7,4],[-2,-5],[-1,-5],[-3,-11],[4,6],[5,2],[3,-4],[2,-12],[5,6],[11,-9],[5,3],[-2,4],[-4,0],[0,5],[1,9],[3,6],[0,-12],[2,8],[1,8],[-1,7],[-4,6],[5,12],[4,-4],[1,-13],[-1,-16],[4,0],[2,-20],[4,-4],[-2,-8],[3,1],[2,4],[1,5],[2,6],[2,-10],[1,-10],[2,5],[1,8],[-1,9],[-5,17],[3,2],[10,-5],[0,4],[-5,1],[-3,7],[-2,9],[-2,8],[2,0],[2,-5],[2,-3],[4,-1],[4,1],[-5,9],[-12,14],[-4,13],[1,10],[2,8],[2,7],[0,4],[4,3],[4,1],[4,1],[5,1],[6,-2],[6,-2],[7,-1],[8,-1],[16,-12],[15,-8],[22,-22],[29,-24],[20,-14],[7,-6],[10,-11],[7,-7],[9,-12],[1,-2],[3,-1],[10,-8],[2,0],[16,0],[3,-2],[1,-4],[2,-4],[1,-1],[3,-6],[12,-31],[14,-18],[4,-2],[3,-1],[4,-3],[3,0],[4,1],[8,7],[0,-10],[-1,-8],[-2,-3],[-5,4],[2,-14],[4,-6],[5,-3],[6,-9],[2,3],[5,5],[3,4],[2,-4],[1,-7],[8,-4],[32,-1],[2,-5],[0,-10],[-1,-11],[-2,-7],[8,6],[1,-4],[-2,-14],[2,0],[1,7],[2,6],[3,5],[2,2],[3,-5],[5,-2],[5,2],[3,3],[18,2],[-1,-2],[-1,-2],[2,-8],[0,-4],[4,5],[6,-1],[5,-2],[2,0],[2,8],[3,-1],[10,-12],[3,-4],[4,1],[1,8],[1,22],[-1,8],[-4,-3],[-2,0],[-3,6],[-8,11],[-4,5],[1,9],[4,3],[27,-2],[17,-3],[5,-2],[-6,-19],[3,2],[2,3],[4,7],[8,-22],[24,-30],[8,-14],[2,-7],[-2,2],[-4,4],[-2,2],[1,-2],[1,-6],[-2,2],[-3,2],[0,-4],[3,-4],[3,-3],[3,1],[4,6],[3,-10],[5,-6],[6,-4],[23,-3],[8,2],[6,9],[3,-5],[2,-5],[0,-6],[-3,-8],[1,-1],[3,1],[-1,-3],[0,-1],[-1,-2],[0,-2],[2,0],[1,1],[3,3],[-3,13],[5,3],[22,-7],[2,-1],[2,-6],[1,-5],[-2,-4],[-2,-2],[1,-2],[3,-4],[1,-2],[2,2],[1,-1],[2,-4],[1,-5],[2,0],[0,8],[6,-9],[4,-15],[3,-4],[1,-2],[1,16],[-1,9],[-4,14],[-2,12],[-5,8],[-1,7],[-3,-2],[-1,0],[-2,0],[-2,2],[4,4],[8,11],[4,2],[17,0],[8,-2],[8,-4],[8,-7],[6,-12],[2,0],[-1,7],[-1,7],[-4,11],[4,-4],[2,0],[40,8],[3,-1],[5,-2],[2,-1],[3,1],[1,6],[2,1],[9,1],[2,-3],[1,-10],[2,0],[3,6],[14,15],[4,3],[48,8],[15,14],[5,2],[1,2],[2,7],[2,-1],[1,-1],[1,-2],[1,0],[22,-8],[35,-1],[24,-8],[4,-2],[6,-11],[3,-3],[3,2],[1,6],[2,4],[3,-4],[4,2],[4,-3],[4,-5],[4,-2],[14,1],[4,-1],[23,-32],[9,-5],[3,-3],[15,-31],[3,-4],[4,-2],[4,-4],[7,-11],[5,-11],[-2,-6],[2,-2],[2,-1],[1,-1],[3,0],[-3,8],[4,5],[5,-2],[11,-11],[1,-1],[5,1],[1,-2],[2,-8],[0,-3],[11,-18],[20,-24],[3,-8],[25,-23],[4,-1],[2,0],[2,1],[3,0],[1,-2],[2,-4],[2,-4],[5,-4],[10,-14],[2,1],[2,-1],[1,-3],[1,-3],[1,-4],[0,-2],[18,-27],[8,-15],[3,-3],[3,-1],[5,-1],[3,-2],[4,-8],[3,-10],[3,-7],[6,-3],[12,-1],[4,-3],[4,-4],[7,-14],[5,-15],[8,-36],[5,3],[4,-5],[3,-7],[4,-8],[14,-8],[5,-16],[7,-14],[9,-13],[7,-6],[3,-4],[7,-19],[3,-5],[18,-8],[19,-16],[9,-2],[4,14],[3,-5],[3,-7],[6,-24],[7,-21],[2,-9],[2,-19],[2,-8],[3,-9],[16,-31],[3,-5],[13,-13],[3,-6],[18,-53],[22,-63],[22,-47],[26,-41],[4,-4],[19,-37],[5,-5],[6,-4],[6,-2],[6,-1],[16,-70],[8,-20],[9,-18],[12,-17],[12,-13],[8,-5],[3,3],[3,5],[7,-3],[17,-19],[29,-21],[9,-12],[5,-15],[12,-59],[13,-41],[13,-12],[6,6],[5,1],[4,-3],[9,-8],[3,0],[8,4],[8,1],[23,-5],[5,-6],[9,-22],[1,-4],[3,-3],[4,-6],[3,-7],[1,-6],[4,-13],[9,-9],[11,-5],[6,0],[0,-8],[4,-2],[11,2],[10,-4],[5,-4],[8,-12],[4,-3],[4,3],[2,10],[-3,3],[-10,5],[-3,7],[10,-5],[34,5],[23,-5],[11,-7],[5,-2],[7,1],[0,4],[-10,0],[0,4],[45,-4],[5,2],[10,12],[10,4],[7,8],[5,2],[22,-6],[42,-17],[30,-14],[22,-5],[9,-5],[11,-10],[4,-8],[11,-23],[5,-5],[5,-4],[4,-9],[4,-10],[5,-21],[3,-13],[1,-13],[1,-13],[2,-6],[8,-16],[16,-60],[2,-24],[2,-13],[3,-12],[3,-9],[-2,-4],[2,-6],[5,-41],[0,-6],[3,-7],[0,-41],[2,-8],[3,-6],[2,-8],[1,-13],[-1,-9],[0,-6],[1,-7],[5,-11],[0,-2],[1,-6],[-1,-20],[1,-6],[3,-8],[0,-6],[1,-3],[5,-10],[2,-5],[0,-6],[0,-19],[-2,-12],[0,-6],[3,-2],[1,-3],[2,-71],[-8,13],[-1,-11],[-7,-14],[-1,-6],[5,-4],[4,5],[3,9],[4,5],[2,-4],[3,-13],[2,-4],[6,0],[2,-2],[1,-4],[0,-13],[3,-24],[1,-11],[-1,-9],[1,-6],[2,-7],[1,-5],[4,-4],[2,-4],[2,-8],[3,-25],[4,-62],[0,-27],[-3,-20],[2,-13],[1,-7],[1,-14],[2,-6],[2,-6],[1,-7],[0,-11],[-1,-12],[-1,-12],[2,-13],[0,3],[6,-48],[3,-14],[3,-4],[8,-8],[1,-4],[0,-29],[-1,-8],[-1,-4],[-2,-2],[-1,-4],[-1,-7],[1,-13],[0,-8],[-5,-24],[1,-1],[-2,-4],[-2,-2],[-2,2],[-2,4],[3,-6],[1,-7],[0,-7],[-2,-8],[5,8],[6,13],[4,14],[2,12],[1,12],[4,23],[-1,11],[4,-7],[0,-11],[-2,-22],[0,-35],[1,-18],[1,-4],[2,-4],[4,-6],[2,-3],[1,-10],[-1,-10],[-2,-9],[0,-9],[0,-87],[-3,-44],[0,-23],[3,-18],[-3,-17],[-1,-4],[-2,0],[-3,4],[-2,0],[-10,0],[-4,0],[-1,-1],[-4,-2],[-5,-5],[18,1],[8,-5],[1,-12],[3,-10],[3,-8],[1,-6],[-2,-9],[-2,-9],[-2,-16],[-2,1],[0,7],[-1,7],[0,7],[-1,-4],[-1,-4],[0,-9],[-6,24],[-2,8],[0,-11],[4,-29],[-1,-11],[-3,1],[-3,-3],[-4,-6],[-2,-9],[6,6],[2,5],[3,0],[1,-2],[-1,-6],[-2,-5],[-3,-5],[-2,-10],[0,-26],[2,-6],[11,-4],[0,-7],[1,-8],[-1,-22],[4,16],[2,-7],[2,-14],[2,-7],[-2,-5],[0,-3],[0,-3],[2,-5],[-3,-12],[-7,-53],[0,-10],[-1,-6],[-4,-1],[-4,5],[-6,12],[-3,4],[-5,0],[4,-6],[2,-4],[2,-6],[1,-7],[0,-6],[0,-6],[3,-6],[1,5],[1,4],[-1,-9],[-3,-22],[-2,-22],[-1,-6],[-5,-15],[-3,-16],[-2,-18],[-1,-23],[0,-16],[1,-6],[0,-2],[-2,-3],[-1,-5],[-1,-6],[-1,-5],[-19,-114],[-12,-51],[0,-6],[-3,-5],[-1,-12],[-1,-24],[-2,-12],[-9,-27],[-2,-12],[-1,-26],[-3,-24],[-11,-47],[-12,-34],[-8,-39],[-8,-23],[-4,-24],[-25,-66],[-6,-11],[0,4],[-6,-7],[-7,-11],[-6,-12],[-2,-13],[-1,-9],[-22,-70],[-2,-6],[-14,-18],[-7,-8],[-5,-19],[-6,-38],[-4,-1],[-2,-2],[-7,-1],[-3,-2],[-2,-2],[-5,-8],[4,15],[4,9],[1,11],[-5,18],[-2,6],[-4,7],[-4,2],[-3,-7],[0,-4],[4,-15],[1,-8],[0,-16],[0,-5],[-2,-3],[-2,-2],[-13,-26],[-1,-2],[-3,10],[-2,12],[0,6],[-9,28],[1,9],[-4,10],[-6,5],[-6,-7],[3,-10],[8,-11],[4,-8],[2,-7],[6,-46],[2,-4],[3,-2],[1,2],[0,5],[1,4],[10,3],[4,3],[2,6],[-4,-14],[-14,-30],[-6,-36],[-6,-13],[-12,-21],[-7,-31],[-2,-5],[-3,-4],[-3,-9],[-9,-40],[-4,-9],[-11,-9],[-15,-39],[-30,-52],[-8,-19],[-3,-10],[-1,-14],[1,-7],[0,-4],[0,-3],[-1,-5],[-32,-89],[-3,-4],[-11,-7],[-7,-1],[-6,-3],[-4,-4],[-5,-5],[-11,-4],[-1,-2],[-3,-9],[-1,-2],[-4,-2],[-44,-58],[-37,-59],[-14,-38],[-3,-17],[-4,-12],[-14,-30],[-3,-8],[-2,-9],[0,-12],[-1,-8],[-21,-69],[-4,-6],[-2,2],[0,6],[1,7],[0,5],[-1,4],[-1,1],[-2,1],[-1,6],[-2,0],[-2,-8],[-3,6],[-4,19],[-2,2],[-11,10],[-3,2],[-1,2],[-2,0],[-2,-4],[0,-6],[0,-5],[2,-7],[1,-7],[2,-4],[2,-1],[2,1],[2,1],[3,-3],[2,-4],[2,-3],[4,-3],[0,-4],[-5,4],[-1,-3],[1,-6],[3,-3],[3,1],[1,3],[1,3],[1,1],[3,-3],[2,-3],[0,-5],[-1,-5],[1,-6],[0,-21],[3,-10],[0,4],[1,-4],[-6,-9],[-8,-7],[-6,-9],[-2,-13],[-2,-5],[-2,-4],[-3,-3],[-3,-3],[-1,-4],[-5,-19],[-8,-53],[-4,-9],[-12,-5],[-4,1],[0,5],[1,6],[0,4],[-5,2],[8,22],[2,6],[1,16],[1,5],[3,8],[12,19],[3,7],[1,3],[5,3],[-4,7],[0,17],[-3,8],[-1,-15],[0,-7],[1,-6],[-2,0],[-5,20],[-4,10],[-2,4],[-1,-12],[8,-27],[0,-12],[-2,4],[-6,9],[1,-7],[1,-4],[1,-3],[1,-5],[-1,-6],[-1,-1],[-3,0],[-2,-2],[-3,-6],[-3,-7],[-4,-16],[-4,-30],[-2,-6],[-3,0],[-2,10],[-2,22],[-1,-8],[-2,-3],[-2,1],[-3,6],[3,-20],[2,-7],[3,-5],[11,-10],[2,-5],[-3,-19],[-7,-14],[-9,-8],[-8,-5],[5,-3],[6,2],[6,4],[4,4],[4,8],[4,9],[3,9],[5,3],[-2,-11],[-19,-57],[-21,-91],[-1,-22],[-2,-9],[-7,-17],[-16,-86],[-8,-27],[-6,-32],[-18,-52],[-19,-76],[-23,-69],[-17,-55],[-19,-52],[-14,-47],[-4,-3],[-2,-4],[-20,-48],[-19,-51],[-22,-44],[-8,-24],[-5,-9],[-6,-7],[-3,-2],[-6,-1],[-4,-1],[-3,-2],[-5,-12],[-8,-6],[-6,-6],[-7,-5],[-6,3],[-1,8],[5,21],[3,21],[3,8],[3,2],[2,-12],[0,12],[-2,10],[-1,10],[4,18],[-1,5],[-2,5],[-2,3],[0,4],[0,3],[-2,5],[-1,3],[1,2],[0,2],[0,4],[-2,40],[-5,0],[-5,1],[-4,3],[-4,8],[-9,-7],[-6,7],[-3,13],[-3,25],[-2,3],[-3,0],[-5,4],[-3,7],[0,7],[1,8],[0,11],[-2,0],[-5,-20],[-2,-11],[0,-12],[0,-16],[-1,-5],[-1,-2],[-1,-1],[-1,-2],[-4,-15],[1,-7],[3,-7],[-11,-42],[-3,-7],[-2,-1],[-3,-8],[-2,-3],[-3,1],[-3,6],[-3,1],[-3,5],[-2,13],[-5,43],[0,10],[3,8],[6,11],[-3,12],[-2,0],[1,-10],[-2,-4],[-3,-4],[-4,-6],[-2,-9],[-1,-7],[-1,-6],[-4,-3],[3,-7],[3,-14],[2,-7],[2,-4],[2,-1],[2,-1],[2,-7],[0,-2],[0,-7],[0,-8],[2,-7],[2,-3],[5,-6],[2,-3],[4,8],[3,2],[2,0],[1,-4],[1,-6],[1,-4],[2,2],[3,3],[4,0],[4,-2],[4,-3],[-3,-4],[0,-2],[-2,-8],[-1,-5],[-2,-4],[0,-8],[0,-12],[0,-7],[-1,-5],[-3,-8],[-6,-17],[-3,-9],[-4,-8],[-6,-8],[-6,-6],[-6,-3],[-3,-2],[-2,-7],[0,-8],[0,-7],[1,-4],[1,-3],[1,-3],[3,-2],[19,-10],[-1,-6],[-3,-2],[-3,-1],[-3,-2],[-3,-4],[-6,-16],[-16,-22],[-4,-8],[-3,-11],[-2,-24],[-2,-12],[4,-18],[1,-10],[-3,-4],[-7,9],[-2,2],[-3,1],[-9,-4],[1,5],[0,4],[0,5],[-1,6],[-6,-40],[-2,-24],[3,-18],[-3,-5],[-3,-9],[-2,-12],[0,-12],[1,-26],[-2,-9],[-7,-3],[0,-4],[8,1],[3,8],[-1,29],[1,15],[5,13],[6,6],[7,-7],[1,-5],[1,-11],[3,-7],[0,-4],[-1,-3],[-1,-4],[-1,-5],[1,-15],[2,-12],[3,-11],[3,-13],[1,-15],[-2,-11],[-3,-11],[-2,-13],[0,-37],[0,-10],[3,-9],[1,-5],[-3,-2],[-3,1],[-3,3],[-5,10],[-2,6],[-1,7],[-1,7],[-1,6],[-2,6],[-1,4],[-2,2],[-2,5],[-2,1],[-1,-1],[-1,1],[-1,17],[-2,2],[-4,0],[-6,0],[-2,-6],[-2,-11],[1,-4],[8,12],[2,-4],[0,-6],[0,-5],[-2,-5],[12,-13],[4,-7],[4,-20],[3,-9],[10,-7],[1,-6],[-2,-7],[-2,-4],[-7,1],[-4,2],[-5,5],[-2,-16],[1,-5],[2,-19],[1,-2],[5,-5],[5,-5],[4,-8],[3,-10],[1,-7],[0,-7],[-1,-6],[0,-6],[4,-12],[1,-7],[0,-4],[-3,-3],[-10,-3],[-4,2],[-4,10],[-4,-11],[-1,-5],[4,-8],[-2,-4],[-2,-6],[-1,-7],[1,-8],[2,-5],[3,-3],[3,-4],[1,-8],[2,0],[-7,25],[-1,14],[5,6],[6,1],[5,5],[13,14],[0,5],[0,6],[-1,6],[-2,3],[-1,3],[0,7],[2,10],[0,3],[-1,2],[-1,2],[1,3],[2,2],[2,0],[1,2],[-1,7],[-1,4],[-2,2],[-4,2],[1,2],[1,6],[-4,-3],[-1,6],[2,8],[2,7],[3,5],[4,4],[4,0],[2,-5],[0,-50],[1,-13],[-6,-58],[-3,-12],[-2,-7],[-1,-7],[0,-14],[-1,-7],[-5,-18],[-1,-9],[0,-24],[3,-19],[-1,-7],[-2,-8],[-2,-6],[-1,-7],[2,-8],[-3,-6],[0,-7],[1,-9],[0,-10],[-6,-29],[-2,-45],[-5,-31],[-1,-18],[-3,-19],[0,-12],[3,-47],[1,-7],[4,-8],[1,-8],[-3,-2],[-2,-3],[-1,-6],[2,-4],[2,0],[3,2],[2,0],[-1,-25],[1,-26],[4,-41],[2,-155],[6,-54],[2,-51],[8,-92],[5,-89],[6,-25],[3,-11],[1,-4],[2,-18],[1,-6],[4,-12],[1,-6],[-2,-10],[-6,-20],[-2,-9],[-1,-12],[-7,-39],[0,-11],[-1,-8],[-4,-17],[-1,-9],[-2,-51],[-1,-9],[-11,-42],[-2,-13],[-1,-14],[1,-16],[-1,-20],[-3,-14],[-10,-31],[1,-7],[0,-5],[-2,-13],[-9,-106],[-12,-85],[0,-26],[0,-7],[3,-13],[1,-8],[-1,-4],[-7,-31],[-6,-74],[-4,-23],[-5,-17],[-2,-11],[-2,-79],[2,-51],[5,-29],[2,-13],[-1,-75],[1,-13],[5,-19],[5,-14],[3,-13],[-3,-19],[-31,-65],[-2,-9],[-1,-6],[0,-7],[-1,-5],[-2,-3],[-2,-2],[-7,-9],[-19,-8],[-10,-10],[-9,-16],[-13,-35],[-35,-110],[-10,-48],[-4,-30],[-14,-115],[-6,-97],[1,-130],[6,-112],[6,-88],[-1,-81],[-2,-24],[-21,-110],[-6,-20],[-8,-13],[-32,-28],[-16,-25],[-5,-10],[-16,-78],[-1,-11],[-3,-10],[-12,-8],[-4,-8],[6,0],[1,-8],[-4,-30],[-2,-3],[-3,-1],[-2,-3],[-2,-5],[0,-9],[1,-5],[2,-12],[1,-6],[-1,-5],[-2,-12],[-5,-38],[-1,-5],[-2,-6],[-5,-26],[-3,-9],[-3,-5],[0,-1],[-1,2],[-3,6],[-2,2],[-2,-4],[-2,-6],[-2,-2],[-3,4],[1,17],[-2,8],[-4,2],[-6,1],[-9,-3],[4,-7],[1,-8],[-2,-5],[-5,-1],[0,-4],[1,-1],[1,-1],[2,-2],[-2,-12],[1,-13],[5,-2],[7,1],[-1,-8],[3,2],[4,9],[5,3],[6,-4],[-4,-7],[-4,-10],[-4,-12],[-2,-28],[-7,-22],[-3,-27],[-14,-41],[-6,-27],[-4,-8],[-5,7],[-7,-12],[-2,-6],[-11,-40],[-3,-7],[-6,-10],[-2,-6],[-6,-29],[-7,-3],[-3,-15],[-2,-4],[-2,6],[0,6],[-2,7],[-3,0],[-3,-3],[-1,-2],[-9,-12],[-9,-4],[-4,-6],[-3,-6],[-1,-11],[-3,-4],[-2,-8],[-3,-8],[-3,-9],[-2,-19],[0,-21],[-1,-12],[-1,-11],[-4,-7],[-3,-11],[0,-7],[-2,-9],[-21,-57],[-8,-28],[-4,-21],[0,-1],[2,-7],[0,-10],[-1,-9],[-1,-10],[1,-17],[-6,-16],[-9,-29],[-9,-17],[-2,-8],[-4,-24],[3,-22],[12,-28],[1,-26],[-3,-40],[5,-61],[11,-74],[-2,-23],[-6,-16],[-41,-49],[-28,-29],[-28,-16],[-34,-18],[-24,-18],[-31,-29],[-21,-28],[-8,-15],[-2,-5],[-1,-10],[-1,-5],[-5,-8],[-9,-11],[-4,-8],[-6,-21],[-1,-3],[-2,-1],[-3,-2],[-3,-4],[0,-3],[-3,-10],[-5,-7],[-10,-9],[-5,-18],[-3,-26],[-1,-29],[2,-25],[3,-9],[10,-22],[2,-7],[1,-2],[3,4],[4,8],[2,3],[6,2],[3,3],[0,-10],[-2,-7],[-2,-4],[-2,-7],[-5,3],[-3,-4],[-7,-16],[-8,-7],[-2,-1],[-2,-1],[-1,-5],[0,-5],[-1,-10],[0,-5],[0,-4],[-2,-2],[-3,-1],[-2,-1],[-1,-3],[-1,-3],[-1,-12],[1,-13],[2,-6],[2,6],[2,0],[1,-8],[0,-7],[-3,-13],[-4,3],[-5,11],[-3,2],[-32,2],[-57,8],[-43,2],[-25,-3],[-9,-4],[-4,-1],[-1,-2],[-4,-8],[-2,-2],[-21,-1],[-26,-5],[-19,3],[-28,-1],[-7,12],[-4,5],[-5,-5],[-3,7],[-6,7],[-2,6],[4,-1],[1,-1],[2,-2],[4,6],[0,5],[-2,4],[-4,1],[-5,3],[1,7],[5,13],[2,15],[6,13],[13,23],[-6,-2],[-2,3],[0,4],[2,7],[5,5],[2,3],[1,3],[1,13],[0,6],[-1,15],[-1,4],[-3,2],[-7,-2],[-3,4],[-2,-4],[-3,-9],[-3,-4],[-3,-2],[-2,0],[-2,1],[-3,1],[-3,-1],[-7,-7],[-11,-16],[-5,0],[-6,-2],[-4,-5],[-1,-13],[1,-12],[8,-33],[2,0],[1,3],[1,2],[1,2],[1,2],[0,-6],[1,-5],[2,-3],[3,-3],[-2,0],[0,-1],[-1,-1],[-1,-2],[11,-13],[3,-5],[1,-8],[-1,-11],[0,-8],[3,4],[0,-10],[-5,-11],[-7,-10],[-7,-5],[-63,-14],[-14,-8],[-12,-11],[-2,-3],[-2,-4],[-1,-3],[-2,0],[-3,9],[-1,1],[-11,5],[-70,-17],[-12,0],[-5,-1],[-5,-5],[-5,-7],[-5,-3],[-5,4],[-1,12],[2,13],[4,4],[10,0],[3,-2],[7,-7],[3,1],[1,3],[2,17],[7,-11],[10,-4],[23,-2],[22,8],[12,8],[6,9],[-5,1],[-6,5],[-5,6],[-2,6],[-2,-1],[-3,0],[-3,2],[-2,1],[-3,5],[-3,12],[-2,4],[-4,3],[-12,3],[-3,-1],[-2,12],[-4,1],[-5,-1],[-6,2],[4,4],[0,5],[-4,-3],[-8,-8],[-2,-1],[-15,-5],[-3,-2],[-8,-8],[-3,-1],[-2,-4],[-2,-8],[-3,-7],[-5,-2],[1,9],[2,9],[-1,5],[-4,-2],[-2,-6],[-5,-23],[-2,-4],[-8,-17],[-3,-3],[-7,0],[-1,-2],[-5,-6],[-2,-2],[-1,-2],[-2,0],[0,6],[-1,3],[-3,-3],[-4,-7],[-5,2],[-1,3],[1,19],[-1,6],[-2,2],[-6,1],[-5,-10],[-3,-1],[-1,11],[-4,-5],[-2,-3],[-1,-4],[-7,9],[0,8],[4,5],[6,2],[2,2],[0,6],[-2,8],[-1,2],[-2,2],[0,3],[3,5],[-2,3],[-3,1],[-3,1],[-3,-1],[2,-9],[-1,-5],[-3,-5],[-2,-5],[-1,3],[-2,6],[0,4],[-2,-2],[-1,-1],[-1,-2],[-4,6],[-3,-6],[-5,-20],[1,-9],[-6,-8],[-8,-5],[-13,-4],[-19,-18],[0,3],[1,5],[0,4],[-9,0],[-7,-5],[-5,-9],[-7,-29],[0,-4],[1,-4],[1,-4],[-3,-10],[-2,-18],[-1,-7],[2,-16],[5,2],[6,9],[6,5],[5,-5],[-13,-20],[-1,-12],[2,6],[4,5],[5,2],[4,-4],[-4,-10],[-3,-7],[-1,-5],[0,-8],[2,1],[5,15],[4,8],[4,6],[4,3],[8,1],[-2,-7],[-2,-3],[-2,-3],[5,-8],[7,-2],[7,-4],[2,-14],[-6,4],[-5,-8],[-6,-20],[-6,-9],[-5,1],[-4,5],[-4,-1],[-4,3],[-8,1],[-8,-3],[-7,-5],[0,-1],[-1,-8],[-4,-3],[-5,-1],[-5,-4],[-5,5],[-4,-4],[-3,-5],[-5,1],[-2,3],[-1,6],[-1,5],[-3,2],[-2,0],[-2,-1],[-4,-3],[2,14],[-8,-5],[-9,-11],[-3,-7],[-2,-1],[-2,-8],[-1,-3],[-2,-1],[-4,-1],[-2,-1],[-5,-7],[-2,1],[-2,6],[-2,-14],[3,-6],[5,-5],[3,-8],[-7,-1],[-4,-7],[-6,-24],[-3,10],[-3,3],[-1,-3],[2,-10],[-4,1],[-3,3],[-3,4],[-3,5],[-3,3],[-2,-7],[1,-10],[1,-8],[-5,-2],[-5,4],[-5,2],[-4,-12],[3,-11],[1,-6],[-3,-3],[-3,-1],[-8,-7],[-4,2],[-4,8],[-3,2],[-3,-2],[-3,-6],[-3,-6],[-1,-2],[-6,-4],[-6,-7],[-5,-5],[-7,4],[-1,-7],[-3,-7],[-2,-7],[0,-7],[2,-13],[0,-6],[1,-8],[2,-3],[3,0],[2,-3],[0,-8],[-2,-13],[1,-5],[2,-11],[0,-12],[-3,-10],[-6,-6],[-3,-1],[-3,2],[-2,2],[-2,1],[-4,-2],[-6,-6],[-3,0],[-5,4],[-7,17],[-6,3],[-9,-4],[-3,0],[-1,2],[-2,4],[-1,2],[-5,0],[-1,0],[-18,11],[-18,1],[-3,2],[-6,5],[-2,2],[-11,-1],[-26,-12],[-9,-8],[-5,-7],[-3,-5],[-3,-11],[-3,0],[-6,3],[-5,-3],[-6,-5],[-10,-9],[0,2],[-1,3],[-2,0],[-3,-16],[-6,-12],[-7,-8],[-9,-5],[0,-4],[7,0],[4,2],[4,6],[10,21],[4,4],[6,0],[-11,-25],[-3,-8],[-1,-9],[-1,-12],[0,-10],[1,-6],[-3,-5],[-3,-3],[-3,1],[-1,5],[-2,3],[-4,-1],[-3,-2],[-5,-6],[-5,-9],[-5,-6],[-8,3],[2,9],[7,5],[2,6],[0,9],[-2,7],[-3,5],[-1,6],[0,7],[-2,6],[-4,3],[-7,3],[-4,2],[-1,4],[1,5],[0,4],[-7,3],[-1,-7],[0,-11],[-2,-5],[-4,-2],[0,-4],[1,-4],[-1,-2],[-6,1],[-6,3],[1,-7],[3,-4],[2,-2],[1,-1],[1,-4],[2,-11],[1,-4],[3,-1],[4,0],[3,-1],[2,-4],[0,-14],[-2,-5],[-2,-3],[-1,5],[-1,3],[-2,2],[-2,2],[-17,-18],[-35,-30],[-42,-51],[-31,-31],[-22,-26],[-9,-16],[-6,-19],[-3,-21],[-2,-3],[-1,-3],[3,-14],[0,-5],[-4,-8],[-6,-5],[-4,2],[0,13],[-6,-25],[-3,-3],[-4,-4],[-7,-14],[-4,-3],[-12,-26],[-73,-87],[-3,2],[-4,-3],[-8,-7],[-6,3],[-4,0],[-2,-9],[-5,-6],[-7,-11],[-14,-14],[-53,-82],[-5,-9],[-7,-19],[-2,-2],[-1,-2],[-2,-3],[-2,-5],[-11,-43],[-8,-9],[-13,3],[2,10],[4,1],[4,-1],[3,3],[0,6],[-3,2],[-12,-1],[-2,-3],[0,-4],[0,-7],[-1,-6],[-2,-3],[-3,2],[-2,6],[0,-10],[5,-6],[8,-4],[5,-1],[7,-4],[3,-1],[3,3],[3,5],[4,4],[4,2],[4,-1],[-10,-60],[-8,-25],[-15,-8],[-4,-7],[-14,-32],[-2,-7],[-2,-9],[0,-1],[-2,-9],[-21,-26],[-2,-7],[-6,-22],[-4,-24],[-4,-1],[-5,7],[-2,12],[1,10],[6,35],[1,5],[0,2],[0,3],[3,6],[2,4],[6,7],[12,10],[3,6],[-4,6],[-3,-8],[-6,-5],[-7,-3],[-6,0],[-2,-3],[-4,-8],[-2,-2],[-3,3],[-4,10],[-3,4],[1,-10],[0,-6],[-1,-4],[-3,-11],[-3,-6],[-3,-4],[-4,0],[4,20],[-2,0],[-2,-3],[-1,7],[1,28],[2,16],[0,9],[-4,-5],[-3,-8],[-3,-8],[-1,-3],[-2,-2],[0,-2],[2,-5],[1,-1],[2,-2],[0,-2],[0,-3],[-1,1],[-1,-2],[-2,-3],[-4,4],[-7,8],[-2,6],[-2,13],[-3,6],[0,-12],[-2,0],[-1,3],[-1,2],[-1,1],[-1,2],[1,-9],[6,-36],[-5,0],[-9,-4],[-5,0],[0,-4],[10,-3],[5,-2],[3,-7],[-5,-6],[-2,-7],[2,-3],[5,4],[1,-6],[4,-9],[0,-4],[-1,-10],[-2,-3],[-3,1],[-3,-2],[-2,-7],[0,-8],[-2,-7],[-3,-2],[-4,1],[-3,3],[-5,13],[-3,-4],[-3,-1],[-3,1],[-3,4],[-1,-8],[-3,-1],[-14,7],[-3,3],[-14,19],[-2,4],[-11,27],[-3,5],[1,-9],[4,-24],[2,-9],[0,-3],[2,-3],[3,-3],[1,-2],[3,-13],[-1,-6],[-5,-1],[-6,4],[5,-17],[7,-1],[9,3],[9,-2],[-1,-4],[0,-1],[-1,-3],[-2,4],[-2,1],[-2,-3],[-1,-6],[3,-3],[4,-1],[3,-4],[3,-8],[3,10],[5,1],[5,-1],[10,7],[5,-5],[5,-7],[5,-5],[-3,-6],[-1,-2],[2,4],[-4,-8],[-2,-2],[-2,-2],[6,-5],[3,4],[2,8],[3,5],[4,1],[5,-3],[4,0],[6,6],[7,-16],[-8,-14],[-12,-16],[-23,-88],[0,-16],[-5,-25],[-2,-3],[-5,2],[-4,12],[-3,2],[1,9],[1,3],[-4,-1],[-3,-2],[-3,-3],[-2,-6],[3,0],[3,-3],[2,-4],[2,-5],[1,-8],[-1,-2],[-19,6],[-25,-4],[-3,-2],[-3,-3],[-1,-4],[-1,-8],[2,-4],[2,2],[2,4],[2,2],[46,0],[2,3],[1,2],[1,0],[1,-9],[1,-6],[-1,-7],[-5,-35],[-2,-20],[-6,-17],[-2,-10],[1,-8],[3,-10],[4,-51],[0,-9],[-2,-7],[-7,-2],[-5,-4],[-3,-9],[-3,-9],[-3,-7],[-6,-1],[-7,3],[-6,5],[-2,7],[-1,14],[-1,9],[-4,16],[-1,10],[-1,12],[0,5],[-3,6],[-2,17],[-2,-3],[0,-12],[4,-15],[-2,-7],[0,-6],[0,-6],[2,-5],[1,-2],[1,-2],[2,-2],[1,-4],[0,-7],[0,-3],[1,-2],[1,-7],[-2,-15],[1,-7],[1,-6],[-1,-4],[-2,-3],[-3,-1],[6,-16],[-4,1],[-3,-1],[-3,-3],[-1,-5],[11,-4],[5,-5],[3,-9],[2,-6],[17,-15],[3,-4],[2,-5],[0,-7],[1,-7],[1,-6],[2,-4],[3,-1],[2,-6],[-1,-11],[-14,-59],[-3,-23],[-3,-40],[1,-34],[1,-7],[2,-5],[12,-18],[3,0],[7,4],[3,-2],[1,-6],[-1,-6],[-1,-5],[-4,-5],[-3,-9],[-3,-11],[-2,-9],[0,-7],[0,-19],[1,-4],[2,-5],[1,-3],[0,-4],[-2,-5],[0,-3],[0,-22],[0,-5],[3,-7],[2,-2],[2,0],[1,1],[5,-12],[-1,-10],[-3,-9],[-2,-22],[-2,-5],[-1,-6],[5,-27],[2,-5],[4,-2],[4,2],[2,5],[1,6],[2,6],[5,5],[2,-7],[3,-9],[6,-3],[-2,-7],[-1,-3],[-3,-3],[3,-14],[0,-7],[-2,-3],[-3,-2],[-3,-2],[-2,1],[-2,7],[4,2],[1,5],[-2,5],[-3,4],[-3,0],[-5,-6],[-3,-2],[-1,-2],[-9,-14],[-2,-6],[-1,-3],[-1,-5],[0,-8],[2,-23],[1,-4],[1,-1],[9,-3],[3,-8],[2,-10],[1,-26],[-3,8],[-1,3],[-1,-5],[-2,-5],[0,-5],[0,-7],[-1,-7],[-3,-3],[-3,-1],[-3,-3],[-4,-5],[-3,-6],[-2,-8],[-1,-11],[11,-47],[5,-3],[3,-7],[1,-11],[-2,-11],[-3,7],[-5,-7],[-6,-12],[-4,-9],[3,-8],[2,-11],[1,-12],[0,-11],[1,-4],[4,-9],[1,-6],[-2,-1],[-3,-4],[-1,-5],[1,-2],[2,-4],[10,-20],[2,-8],[0,-5],[-2,-2],[-2,-1],[-1,-2],[1,-7],[2,-1],[3,-1],[1,-2],[-1,-10],[-8,-23],[-2,-9],[-3,-35],[1,-12],[1,-3],[1,-3],[1,-4],[1,-8],[-1,-6],[-2,-4],[-2,-3],[-1,-3],[0,-5],[-4,-18],[-2,-24],[-3,-25],[-1,-13],[6,-11],[-5,-10],[-10,-18],[-1,-6],[-1,-14],[0,-14],[0,-4],[-8,-17],[-2,-8],[-3,-22],[-4,-14],[-2,-7],[1,-6],[1,-6],[-1,-6],[-3,-3],[-3,3],[-3,10],[-3,11],[-1,12],[1,14],[3,9],[1,7],[-1,6],[-8,15],[-4,5],[-4,8],[-4,2],[-2,-15],[0,-8],[3,-13],[0,-6],[0,-6],[-3,-5],[0,-5],[1,-5],[3,0],[3,0],[2,-1],[0,-5],[-1,-5],[-2,-6],[-1,-5],[0,-4],[0,-3],[1,-2],[2,-5],[10,-10],[2,-6],[3,-4],[3,-2],[3,4],[2,3],[3,1],[-2,-10],[-2,-9],[-9,-22],[-3,-12],[-2,-6],[-3,-3],[-13,-3],[-3,-1],[-8,-9],[-8,-5],[-4,-6],[-6,-11],[-22,-26],[-80,-121],[-58,-121],[-45,-117],[-27,-70],[-13,-51],[-21,-62],[-18,-77],[-13,-30],[-45,-229],[-12,-72],[-18,-82],[-75,-231],[-2,-12],[-2,-6],[-34,-96],[-29,-58],[-16,-46],[-42,-94],[-32,-61],[-48,-73],[-67,-102],[-83,-92],[-7,-13],[-40,-92],[-10,-31],[-2,-3],[-2,12],[2,13],[6,22],[2,8],[2,13],[1,14],[-2,11],[-4,13],[4,7],[5,5],[4,10],[-4,18],[-17,37],[0,18],[11,11],[13,-8],[22,-27],[12,-2],[12,10],[6,15],[-6,17],[14,5],[11,-2],[11,2],[11,13],[29,61],[4,16],[10,14],[2,11],[1,14],[4,-5],[8,-19],[3,1],[-1,10],[-4,23],[1,11],[3,13],[4,12],[4,7],[2,-20],[10,-5],[12,5],[9,10],[4,7],[9,10],[3,5],[10,29],[8,33],[6,43],[1,44],[-6,38],[2,8],[2,25],[0,9],[2,6],[6,-1],[10,-7],[5,2],[9,8],[4,2],[5,-1],[2,-5],[0,-32],[1,-5],[3,-2],[3,1],[2,2],[1,5],[0,7],[2,6],[3,3],[3,3],[2,2],[-1,7],[-3,1],[-3,-1],[-3,1],[-5,17],[3,22],[5,25],[1,26],[-4,11],[-2,6],[1,3],[3,-1],[4,-3],[3,0],[7,1],[5,5],[21,32],[11,4],[6,6],[4,6],[4,7],[10,39],[4,50],[-3,105],[-1,11],[-5,22],[-3,18],[-1,5],[0,4],[5,5],[3,3],[2,-2],[4,-9],[9,-14],[0,-4],[-1,-3],[-1,-4],[-1,-5],[1,-11],[4,-12],[4,-9],[4,-7],[10,14],[2,7],[-1,9],[-1,15],[1,7],[4,11],[5,34],[0,16],[-1,16],[-2,9],[-10,12],[-2,3],[-2,14],[-2,5],[-3,5],[-3,2],[-3,-1],[-3,-4],[-7,-15],[-1,-1],[-1,-6],[1,-2],[2,-1],[3,-5],[1,-6],[0,-6],[-2,-8],[-3,-8],[-6,-3],[-19,2],[-5,-1],[-4,-6],[-1,-12],[-16,3],[-5,-1],[-7,5],[-4,-3],[-3,-10],[-1,-13],[-1,-15],[0,-11],[4,-22],[-5,3],[-14,21],[-5,4],[-5,3],[-3,5],[-2,10],[0,9],[0,2],[2,8],[2,5],[2,4],[1,4],[1,5],[-1,10],[-2,9],[-4,4],[-3,-5],[-2,0],[-1,14],[-6,2],[-7,-3],[-3,-3],[-2,-4],[-5,5],[-10,13],[1,9],[-2,6],[-8,5],[-3,1],[-2,0],[-2,0],[-1,4],[1,3],[4,8],[1,5],[-1,11],[-3,7],[-4,5],[-2,5],[0,10],[4,20],[0,11],[-6,-4],[-1,8],[0,11],[-3,5],[-3,-1],[0,-3],[0,-5],[0,-7],[-5,-18],[-1,-4],[0,-4],[2,-1],[1,-2],[1,-1],[-1,-4],[-1,-6],[0,-3],[0,-13],[-1,-6],[-2,-5],[-1,-5],[0,-7],[1,-6],[1,-6],[-1,-7],[-5,-16],[3,1],[5,3],[3,0],[2,-2],[4,-14],[-7,-16],[3,-9],[9,-6],[3,-9],[3,3],[5,11],[1,2],[2,-5],[1,-9],[-1,-16],[3,-14],[6,-2],[14,10],[6,1],[1,-4],[-2,-9],[-1,-11],[-1,-5],[-3,-4],[-3,-4],[-3,-1],[-1,1],[-4,5],[-2,2],[-11,-3],[-8,-15],[-6,-22],[-7,-46],[-3,-24],[-1,-26],[2,-26],[5,-39],[0,-12],[-1,-16],[-3,-9],[-5,1],[-4,13],[7,4],[-1,16],[-6,33],[-3,25],[-2,3],[-7,1],[-6,-4],[-1,-10],[0,-70],[1,-10],[3,-23],[2,-13],[-1,-14],[-2,-5],[-12,3],[-6,-1],[-6,-3],[-3,-8],[-3,-12],[-2,-26],[0,-28],[4,-24],[8,-16],[-35,-23],[-6,-1],[-9,-8],[-6,-19],[-2,-23],[1,-19],[3,-7],[0,-4],[-4,-1],[-3,1],[-3,2],[-3,1],[-3,-2],[-5,-6],[-6,-2],[-13,1],[-4,0],[-7,-3],[-5,-6],[-5,-17],[-6,0],[-7,2],[-5,0],[-2,-2],[-1,-5],[-2,-4],[-4,-1],[-3,-3],[0,-5],[2,-6],[3,-2],[1,-3],[-2,-5],[-10,-14],[-2,-4],[-1,-6],[-1,-12],[1,-39],[-1,-7],[-1,-13],[0,-7],[1,-6],[3,-9],[1,-5],[-4,-30],[-1,-9],[-1,-4],[-2,6],[-3,13],[-1,15],[-1,5],[-2,6],[-2,3],[-1,1],[-3,4],[-3,2],[-3,-3],[-2,-5],[-1,-6],[1,-17],[3,-2],[4,3],[5,-2],[2,-9],[-2,-12],[-4,-13],[-4,-9],[-5,-6],[-30,-22],[-5,-8],[-1,-13],[0,-7],[3,-11],[1,-4],[-1,-5],[-2,-5],[-1,-6],[0,-8],[-6,0],[-1,-12],[4,-11],[7,7],[6,-16],[1,-3],[2,-2],[6,-2],[2,-2],[2,-3],[1,-4],[1,-5],[-1,-6],[-3,-1],[-6,3],[-3,-2],[-5,-6],[-6,-4],[-5,-5],[-2,-10],[-1,-22],[-1,-11],[-2,-9],[9,2],[5,-4],[-1,-6],[-7,-8],[7,-3],[9,4],[7,8],[4,9],[1,7],[4,5],[4,3],[4,-1],[4,-3],[0,-4],[-5,-7],[-14,-16],[-6,-14],[4,-13],[4,2],[11,24],[4,7],[-4,-23],[0,-10],[3,-18],[0,-8],[-10,-6],[-28,-44],[-7,-18],[-34,-129],[-19,-110],[-8,-69],[-41,-178],[-7,-21],[-27,-66],[-21,-43],[-29,-48],[-47,-74],[-29,-54],[-20,-34],[-31,-38]],[[35172,30488],[-9,-1],[-3,7],[-2,10],[-3,10],[-4,5],[-5,1],[-5,-2],[-6,0],[-7,24],[0,53],[7,98],[-6,89],[-1,43],[5,28],[2,15],[8,19],[10,15],[34,40],[3,7],[1,11],[1,22],[2,10],[8,15],[19,25],[6,13],[5,13],[10,14],[4,8],[1,11],[-3,9],[-18,36],[-5,5],[-8,8],[-10,10],[-9,0],[-4,3],[-12,13],[-16,10],[-16,33],[-18,22],[-6,13],[-6,14],[-5,15],[-3,7],[-7,11],[-2,8],[-2,10],[-1,30],[-2,20],[-3,17],[-14,38],[-8,34],[0,21],[-2,8],[-4,5],[-16,6],[-8,9],[-4,6],[-2,6],[-2,6],[-1,6],[-1,6],[-3,7],[-8,10],[-4,3],[-5,3],[-9,1],[-3,2],[-2,4],[-3,9],[-1,4],[-5,7],[-5,4],[-6,1],[-5,-3],[-5,-9],[-3,-6],[-3,-1],[-6,8],[-14,24],[-16,19],[-19,32],[-8,18],[-8,15],[-10,12],[-7,13],[-1,5],[-3,13],[0,24],[-2,10],[-3,11],[-4,8],[-15,21],[-3,8],[-5,19],[-3,7],[-4,2],[-10,0],[-46,12],[-8,6],[-4,5],[-4,6],[-3,8],[-3,7],[-12,9],[-8,15],[-7,17],[-4,15],[-5,11],[-4,-2],[-5,-20],[-4,-9],[-3,-3],[-5,1],[-5,6],[-13,22],[-5,6],[-11,8],[-5,5],[-4,10],[-3,10],[-4,25],[-3,9],[-9,11],[-3,6],[-2,10],[-1,21],[-1,10],[-5,11],[-20,42],[-13,22],[-6,14],[-5,6],[-10,11],[-8,17],[-5,3],[-6,-3],[-5,-8],[-1,-10],[1,-25],[0,-11],[-4,-6],[-6,1],[-7,3],[-5,-2],[-4,-7],[-3,-21],[-2,-9],[-4,-7],[-15,-19],[-2,-3],[-1,-4],[-1,-3],[-3,-3],[-2,-1],[-7,-1],[-8,-3],[-19,2],[-7,-2],[-2,5],[-1,4],[0,13],[2,27],[0,39],[1,13],[5,16],[1,17],[-2,18],[-4,17],[-18,27],[-4,9],[-10,33],[-1,5],[-3,5],[-5,6],[-3,5],[-2,6],[0,6],[-2,6],[-9,20],[-5,9],[-9,9],[-17,25],[-12,13],[-4,6],[-4,10],[-7,21],[-4,9],[-15,18],[-5,7],[-3,6],[-11,21],[-2,8],[-2,3],[-3,4],[-2,0],[-3,0],[-3,2],[-4,5],[-1,4],[1,6],[-1,12],[-2,8],[-4,7],[-5,6],[-9,8],[-17,22],[-3,6],[-5,16],[-10,13],[-10,-1],[-11,-3],[-13,7],[-6,-1],[-10,-3],[-2,-1],[-5,-6],[-3,0],[-5,5],[-3,0],[-7,-9],[-8,-17],[-6,-19],[-2,-15],[-1,-18],[-6,-17],[-8,-12],[-9,-3],[-1,1],[-4,7],[-2,2],[-1,-1],[-4,-8],[-2,-1],[-4,3],[-3,5],[-4,4],[-5,0],[-4,-3],[-6,-10],[-3,-3],[-4,2],[-4,12],[-4,4],[-6,-1],[-13,-4],[-7,2],[-8,10],[-6,31],[-7,13]],[[39182,42537],[8,7],[2,-3],[3,-39],[-1,-10],[-4,-8],[1,-6],[-1,-8],[-3,-9],[-1,-9],[-2,-11],[1,-7],[4,-7],[1,-7],[3,-4],[-1,-4],[0,-9],[3,-5],[1,-6],[-3,-19],[-3,0],[-1,3],[-1,7],[-4,-1],[-4,-1],[-2,15],[-6,20],[-2,15],[1,9],[1,7],[0,18],[2,5],[1,3],[0,3],[-3,5],[-13,10],[-5,9],[3,9],[-3,11],[1,10],[2,8],[5,4],[4,-2],[5,-3],[5,-2],[6,2]],[[39273,42815],[6,-23],[2,-13],[-5,-6],[-6,-3],[-4,-7],[-10,-18],[-12,-17],[-5,-10],[-4,-14],[-3,-2],[-2,-3],[-1,-3],[-1,-4],[-2,0],[0,9],[-2,25],[0,10],[2,5],[7,8],[8,11],[17,33],[0,5],[-2,1],[-2,2],[0,3],[2,5],[1,-1],[0,-1],[0,-1],[1,-1],[0,10],[-3,9],[-2,9],[-3,9],[4,4],[12,-12],[5,-7],[2,-12]],[[37639,48807],[-3,-1],[-1,-3],[-1,-5],[0,-7],[3,7],[7,18],[-2,-47],[-1,-11],[-3,-8],[-1,-7],[2,-20],[-5,-6],[-6,-6],[-5,-20],[-8,-19],[0,-7],[-1,-3],[0,-2],[-1,-3],[-2,0],[0,5],[0,4],[-1,3],[0,3],[0,6],[0,2],[3,13],[2,6],[2,5],[1,15],[2,14],[1,7],[-1,11],[-5,24],[0,9],[0,10],[2,17],[8,34],[6,9],[13,14],[-1,-34],[-4,-27]],[[38321,48868],[2,0],[0,-6],[0,-7],[1,-6],[1,-5],[-2,-3],[-2,-2],[-3,-2],[-6,-2],[-3,1],[-2,3],[-3,5],[4,4],[2,0],[0,4],[-4,1],[-2,3],[-1,5],[1,7],[-5,-2],[-6,4],[-12,15],[4,2],[23,-4],[5,-3],[3,-6],[4,-10],[1,2],[0,1],[0,1]],[[37881,49136],[6,-3],[0,-5],[2,-11],[-3,-10],[-5,-9],[-1,-10],[0,-16],[-1,-10],[-2,-4],[2,-5],[0,-5],[-1,-2],[-5,2],[-5,0],[-4,0],[-1,-5],[-3,-1],[0,-3],[-1,-5],[-2,-1],[-3,2],[-2,2],[-3,4],[0,6],[2,4],[1,12],[-1,12],[0,12],[2,10],[3,17],[4,9],[5,6],[4,3],[4,1],[5,2],[3,1]],[[36309,49428],[3,-5],[-2,-11],[-3,-11],[-2,-5],[-3,-3],[-6,-21],[-7,-18],[-3,-7],[-5,5],[-11,6],[-4,6],[-3,10],[1,8],[7,14],[1,5],[1,12],[1,5],[3,5],[8,9],[6,18],[4,5],[5,-2],[1,-9],[1,-7],[3,-6],[4,-3]],[[37530,49716],[3,-7],[1,-7],[-3,-18],[-1,0],[-2,4],[-1,3],[-3,3],[-2,2],[0,-5],[1,-4],[2,-4],[3,-3],[-3,-3],[-2,-4],[-2,-5],[-1,-4],[-2,-4],[-3,-2],[-2,-1],[-3,3],[0,-14],[-5,-3],[-6,4],[-5,7],[-2,10],[0,12],[2,10],[1,7],[4,-4],[2,-5],[0,-7],[0,-9],[4,20],[1,11],[-4,5],[0,5],[2,9],[3,5],[7,-7],[3,2],[2,5],[2,2],[2,-1],[2,-2],[5,-6]],[[36572,49838],[4,-5],[4,-22],[4,-10],[-5,-15],[-1,-3],[0,-13],[0,-5],[-5,-9],[-4,-2],[-4,-1],[-4,-4],[-3,3],[-1,4],[0,5],[0,4],[-2,-8],[-4,3],[-5,13],[-5,5],[-3,2],[-1,4],[3,10],[6,10],[1,4],[2,22],[5,7],[6,2],[12,-1]],[[36612,49984],[9,-18],[2,-9],[-7,-1],[0,-4],[7,-8],[-2,-20],[-9,-37],[-2,-16],[-1,-4],[-5,-4],[-4,-2],[-14,2],[-5,2],[-3,7],[0,9],[0,12],[1,12],[8,19],[3,15],[6,20],[1,7],[2,5],[13,13]],[[36681,50090],[3,3],[6,-3],[5,-7],[3,-10],[-3,-13],[-5,-10],[-13,-13],[-1,9],[-4,14],[-1,9],[1,2],[2,4],[2,5],[-4,4],[1,4],[1,4],[1,2],[2,1],[2,0],[1,-2],[1,-3]],[[35883,50102],[2,-20],[0,-9],[-3,-18],[-5,-9],[-8,-4],[-10,-1],[-8,-5],[-11,-22],[-7,-5],[-7,-3],[-8,-8],[-7,-9],[-4,-9],[-2,0],[-3,12],[0,14],[1,16],[2,15],[5,17],[2,4],[1,1],[1,8],[1,2],[2,1],[3,-4],[2,0],[6,8],[10,25],[7,11],[13,14],[14,11],[-5,-21],[-1,-8],[2,0],[9,33],[1,-2],[1,-2],[0,-5],[2,-6],[2,-22]],[[36761,50127],[3,-8],[2,-10],[1,-11],[-3,-12],[2,-6],[0,-10],[-1,-11],[-1,-5],[-3,-3],[-7,0],[-5,-2],[1,10],[-2,11],[-3,23],[-10,8],[0,9],[-2,19],[1,5],[3,2],[1,10],[2,3],[5,-3],[3,-8],[1,-10],[4,-5],[8,4]],[[35781,50106],[7,-4],[3,-10],[0,-13],[-1,-13],[-17,-71],[-4,-22],[-6,-73],[-5,-33],[-2,-4],[-2,-4],[-7,17],[-6,-4],[-22,-85],[-7,-20],[-34,-60],[-11,-14],[-4,-2],[-2,-5],[-2,-6],[-2,-4],[-8,-6],[-2,-2],[0,-2],[-1,-8],[-1,-2],[-1,-2],[-4,-2],[-2,-2],[-11,-21],[-12,-18],[-6,-4],[-13,-4],[-11,-12],[-6,1],[-4,7],[-4,8],[-3,20],[3,19],[11,30],[2,9],[1,11],[1,23],[1,7],[4,7],[18,30],[3,2],[0,3],[2,13],[1,2],[1,3],[3,2],[5,2],[10,11],[9,19],[4,23],[-6,23],[1,80],[3,22],[15,34],[11,54],[6,20],[8,18],[8,16],[14,19],[4,8],[4,5],[15,11],[4,2],[2,0],[-2,-8],[-2,-10],[-1,-12],[0,-8],[0,-4],[0,-2],[1,-3],[-1,-6],[-2,-5],[-3,-9],[-1,-6],[2,0],[2,6],[6,11],[1,7],[0,8],[-1,7],[0,5],[3,4],[0,-11],[2,0],[0,11],[2,-4],[3,-4],[2,-2],[3,-1],[-6,17],[-2,7],[0,8],[0,3],[1,3],[1,4],[3,1],[15,-7],[5,-4],[4,-12],[6,-27],[4,-6]],[[35787,50387],[12,0],[1,-3],[-1,-1],[-1,0],[-1,-1],[-1,-8],[-1,-11],[1,-9],[0,-5],[-3,-4],[-1,-12],[0,-20],[-5,-24],[-10,-23],[-21,-34],[-18,-19],[-9,-16],[-5,-4],[-4,4],[1,15],[3,6],[5,5],[4,5],[1,10],[1,3],[4,6],[2,6],[19,87],[5,12],[3,11],[2,3],[8,3],[2,1],[2,3],[5,11],[0,3]],[[36538,50128],[-1,-8],[-5,-22],[0,-15],[-1,-7],[-3,-7],[3,-5],[0,-10],[-2,-12],[-1,-13],[-6,6],[-5,9],[-10,22],[4,-19],[6,-18],[4,-17],[-4,-15],[3,-13],[1,-16],[-1,-15],[-3,-13],[-6,-12],[-15,-11],[-6,-9],[2,-6],[-1,-6],[-5,-13],[-2,-5],[-2,-1],[0,-1],[3,-5],[2,-1],[3,2],[2,0],[0,-9],[-1,-3],[-6,-9],[0,-5],[7,3],[0,-9],[-4,-12],[-4,-6],[-4,-4],[-13,-20],[-6,-4],[-5,-6],[-11,-24],[-6,-7],[-9,3],[-7,10],[-6,14],[-5,14],[-2,-4],[3,-12],[5,-12],[5,-9],[5,-4],[4,-6],[2,-12],[-2,-9],[-7,3],[0,-4],[4,-2],[8,0],[4,-2],[4,-7],[1,-6],[-3,-36],[-8,-45],[-2,0],[-5,10],[-23,61],[-6,8],[-8,-6],[9,-2],[4,-8],[-3,-9],[-8,-5],[0,-4],[2,-4],[0,-5],[-1,-6],[-3,-5],[4,3],[7,11],[2,2],[3,-3],[1,-7],[1,-8],[1,-6],[7,-4],[1,-2],[2,-9],[1,-2],[3,-2],[9,-14],[0,-4],[-4,-2],[-5,-3],[-4,-5],[-4,-6],[-1,-4],[-1,-5],[-1,-5],[-2,-2],[-5,6],[-2,2],[-1,-6],[-2,-5],[-5,-3],[-14,-4],[-4,-4],[-3,-3],[-5,0],[-2,3],[0,4],[0,4],[-2,2],[-3,0],[-1,0],[-2,2],[-1,2],[-2,5],[-3,19],[-1,6],[-6,26],[-1,5],[-8,0],[-1,2],[-2,4],[-1,1],[-4,-3],[5,-9],[2,-12],[0,-14],[-5,-45],[1,-14],[5,-8],[-3,-3],[-1,-1],[0,3],[0,1],[-2,4],[-1,-3],[-2,-3],[-2,-1],[-2,-1],[2,-6],[3,-1],[3,-1],[1,-8],[2,4],[2,2],[4,2],[-6,-12],[-9,-8],[-10,0],[-5,-1],[-5,3],[-6,8],[-5,9],[-6,9],[-10,20],[-1,6],[1,9],[1,6],[1,6],[-1,6],[-2,-7],[-3,-13],[-3,-14],[2,-13],[9,-14],[6,-16],[-1,-14],[-4,-5],[-9,5],[-5,3],[-6,-2],[-7,7],[-4,13],[0,20],[-2,7],[-1,35],[-3,-2],[-2,-1],[-2,1],[-3,2],[2,-5],[2,-5],[3,-5],[1,-8],[0,-30],[-2,3],[-1,0],[-2,0],[-1,1],[3,-7],[0,-10],[-2,-8],[-4,-4],[-5,-2],[-1,-8],[1,-9],[2,-9],[-4,0],[0,-4],[4,-2],[0,-7],[-2,-13],[-2,-2],[-12,4],[-6,-5],[-8,-21],[-4,-7],[-6,2],[-5,11],[-3,16],[-3,27],[-5,15],[-1,6],[0,10],[3,18],[-1,9],[-1,-11],[-4,-19],[-1,-9],[1,-14],[9,-36],[0,-7],[0,-6],[-1,-6],[-1,-6],[-2,-4],[-9,-17],[-7,-6],[-2,-1],[-4,2],[-3,4],[-2,5],[-4,5],[-2,2],[-6,1],[-3,1],[-3,5],[-3,5],[-3,4],[-6,4],[-5,5],[-4,1],[-6,0],[-1,2],[-6,13],[-1,3],[0,3],[2,29],[-1,3],[-6,-1],[-1,-4],[0,-9],[0,-14],[-2,-9],[-7,-12],[-2,-6],[-17,-18],[-4,5],[-3,7],[-2,6],[-11,6],[-2,8],[-1,12],[1,42],[-1,8],[-3,3],[-4,1],[-3,2],[-2,8],[1,5],[2,1],[2,1],[1,3],[2,10],[0,2],[-1,10],[-2,9],[-1,6],[0,4],[2,10],[0,6],[-5,-8],[0,-10],[4,-22],[1,-1],[0,-1],[0,-3],[-1,-3],[-1,0],[-1,0],[-1,-1],[-2,-5],[-1,-3],[-2,-4],[0,-6],[3,-10],[6,-8],[4,-8],[-1,-11],[-2,-9],[-2,-30],[-1,-12],[-2,0],[-1,12],[-6,41],[-2,0],[5,-44],[1,-15],[-3,-10],[-6,-4],[-8,1],[-6,3],[7,-7],[8,-6],[4,-5],[-6,-10],[-8,-5],[-8,-2],[-8,0],[-43,19],[-4,3],[-6,11],[-2,2],[-1,5],[2,9],[4,8],[5,3],[-6,27],[-42,91],[-5,13],[-2,13],[-1,5],[-7,19],[-2,7],[-1,6],[2,14],[3,4],[0,3],[-1,2],[-2,2],[0,1],[-4,18],[0,8],[1,13],[8,72],[1,12],[-2,12],[-4,16],[-2,14],[4,9],[3,-1],[12,-15],[17,-16],[13,-5],[4,-3],[15,-17],[-3,15],[-13,22],[8,5],[4,6],[2,1],[7,-3],[1,-1],[5,6],[0,6],[-4,5],[-5,3],[3,13],[-1,-1],[5,9],[4,1],[4,-2],[6,0],[-5,6],[-5,3],[-4,-1],[-4,-5],[-4,-10],[-5,-7],[-6,-4],[-6,-2],[-2,-2],[-6,-8],[-2,-2],[-3,-1],[-19,3],[-6,5],[-3,7],[-1,5],[-5,17],[-1,8],[-2,21],[0,43],[2,22],[1,10],[2,9],[2,7],[-1,6],[2,8],[3,0],[4,-5],[2,-7],[-1,15],[-4,5],[-4,4],[-5,9],[0,5],[0,17],[1,3],[3,5],[0,2],[0,4],[-3,2],[-1,3],[2,24],[12,65],[3,-7],[4,-14],[3,-15],[1,-11],[4,-5],[21,-22],[5,-3],[3,0],[7,1],[1,1],[0,3],[-1,5],[-2,3],[-15,11],[-16,6],[-3,4],[-1,10],[-1,12],[-7,39],[-2,11],[0,13],[0,9],[5,34],[1,22],[1,6],[2,4],[3,8],[1,3],[1,10],[1,12],[4,20],[2,5],[9,16],[3,3],[1,3],[5,16],[2,2],[3,0],[4,0],[3,0],[5,5],[4,7],[4,6],[7,2],[6,-2],[5,-3],[4,-1],[5,6],[3,9],[2,11],[2,9],[6,4],[6,-1],[15,-8],[49,-11],[16,-13],[8,1],[60,-27],[39,-25],[37,3],[11,6],[6,1],[3,0],[6,-4],[2,-2],[6,-11],[3,-3],[0,4],[-3,9],[-3,11],[1,11],[5,8],[17,18],[2,-3],[2,0],[1,2],[3,1],[4,0],[2,0],[4,3],[7,1],[6,4],[2,1],[3,-1],[4,-5],[4,-3],[3,0],[3,2],[4,0],[3,-6],[8,5],[18,-4],[5,0],[5,-7],[3,-9],[5,3],[4,5],[6,9],[9,3],[4,-6],[-1,-17],[-3,-8],[1,-6],[8,4],[12,1],[32,-18],[5,1],[11,6],[6,1],[6,-1],[16,-11],[33,-9],[7,-7],[2,0],[3,-6],[2,-4],[2,-6],[1,-10],[-1,-27],[-1,-8],[-2,-6],[-3,-7],[-3,-5],[-3,-2],[-3,-4],[-3,-19],[-6,-23],[-2,-18],[0,-36]],[[35840,50297],[-11,11],[-7,22],[0,21],[10,7],[0,4],[-3,1],[-5,7],[14,49],[3,25],[7,19],[6,3],[10,4],[20,20],[14,7],[7,-7],[4,-16],[7,-6],[7,-5],[3,-2],[3,-5],[2,-6],[1,-7],[1,-3],[-1,-6],[0,-3],[4,-10],[0,-2],[0,-11],[-3,-10],[-10,-20],[-5,-7],[-18,-17],[-6,-9],[-16,-34],[-5,-9],[-11,-14],[-8,-14],[-2,1],[-3,4],[-6,5],[-1,5],[-1,6],[-1,2]],[[36157,50409],[3,19],[6,14],[17,27],[18,17],[13,18],[29,9],[8,7],[0,-3],[3,-6],[0,-4],[4,4],[4,3],[4,0],[4,-2],[10,-12],[3,-4],[3,-10],[0,-7],[-1,-5],[1,-5],[3,-4],[2,0],[1,-1],[0,-7],[0,-6],[-2,-3],[-1,-5],[0,-8],[-2,1],[-3,2],[-1,1],[-2,-11],[-9,-15],[-2,-9],[-3,-6],[-7,-4],[-8,-3],[-54,-2],[-8,-7],[-33,27]],[[35935,50512],[-1,5],[0,5],[1,5],[0,6],[-1,6],[-3,13],[0,7],[3,9],[7,10],[8,1],[6,-5],[5,-3],[8,-3],[7,-4],[5,-8],[7,-12],[0,-10],[0,-16],[1,-12],[3,-15],[0,-11],[-2,-10],[-3,-9],[-11,-2],[-2,1],[-3,1],[-2,2],[-1,2],[-2,2],[-10,0],[-3,4],[-5,6],[-3,7],[-2,6],[-1,11],[-1,4],[-3,1],[-2,6]],[[36086,50651],[-5,-8],[-16,-18],[-15,-10],[0,10],[5,16],[17,22],[7,7],[6,0],[2,-10],[-1,-9]],[[36101,50647],[9,6],[12,-1],[11,-9],[17,5],[9,12],[22,19],[27,19],[25,0],[8,-19],[1,-31],[-21,-21],[-11,-20],[-14,-16],[-20,-42],[-6,-25],[-5,-26],[-7,-22],[-10,-13],[-19,-10],[-8,-3],[-3,-2],[-3,-4],[-3,-3],[-3,-3],[-2,5],[-3,12],[-6,13],[-7,11],[-7,9],[-9,4],[-13,-5],[-2,3],[-2,4],[-5,-1],[-4,-3],[-1,-2],[-6,-4],[-7,-6],[-7,-1],[-7,9],[-6,12],[-2,7],[0,11],[3,22],[0,11],[-3,-4],[-2,-6],[-2,-15],[-4,11],[-1,12],[1,38],[1,8],[3,4],[17,1],[7,7],[7,1],[6,-3],[9,-1],[20,-1],[6,0],[12,24],[8,22]],[[36006,50615],[-5,-3],[-5,-8],[-2,-14],[0,-8],[1,-8],[-1,-5],[-2,0],[-6,6],[-3,2],[-6,1],[-3,2],[-3,3],[-4,10],[0,4],[0,17],[1,8],[2,5],[3,3],[3,-1],[1,-2],[1,0],[2,3],[0,2],[9,73],[2,10],[0,1],[2,2],[3,1],[1,0],[1,6],[-1,3],[-2,3],[-1,4],[-2,10],[-1,8],[0,17],[0,16],[0,8],[3,10],[11,28],[4,5],[0,-3],[0,-2],[1,-1],[1,-2],[3,-21],[1,-26],[-3,-68],[1,-7],[1,-6],[3,-13],[4,-17],[2,-18],[-2,-13],[-4,-10],[-3,-11],[-4,-2],[-4,-2]],[[36024,50715],[-1,26],[0,23],[4,20],[6,16],[7,7],[1,4],[-2,5],[5,5],[15,-1],[3,2],[2,6],[5,-5],[8,-15],[2,9],[-6,7],[1,8],[3,9],[5,8],[6,4],[5,0],[7,-24],[2,-8],[0,-5],[0,-14],[0,-3],[2,-5],[0,-4],[-1,-3],[-2,-6],[-2,-9],[-34,-57],[-10,-13],[-8,-9],[-6,-10],[-8,-2],[-6,11],[-3,23]],[[36055,50914],[-11,-3],[-10,0],[-2,14],[2,24],[14,30],[19,16],[7,16],[6,2],[7,-1],[7,-8],[9,1],[3,-7],[-2,-11],[-3,-12],[-4,-19],[-5,-8],[-2,-5],[-2,-12],[-6,-14],[-2,-2],[-3,0],[-8,-1],[-14,0]],[[36093,51016],[-2,5],[-8,5],[0,12],[7,10],[7,5],[3,13],[2,5],[4,6],[5,5],[9,5],[6,12],[5,4],[3,-8],[-6,-19],[-2,-9],[-2,-7],[-1,-6],[-2,-8],[-10,-12],[-2,-5],[-1,-2],[-4,-2],[-2,-2],[-9,-7]],[[35985,51720],[3,-2],[4,2],[5,1],[3,1],[3,-10],[6,-17],[3,-6],[1,-15],[4,-14],[3,-11],[4,-14],[0,-12],[-2,-7],[-5,-14],[-11,-20],[-5,-5],[-7,-4],[-6,4],[-5,7],[-5,36],[-5,15],[0,10],[-3,6],[-5,4],[1,18],[3,14],[0,14],[2,10],[4,2],[5,-1],[5,8]],[[35960,51741],[-3,3],[0,3],[3,7],[8,11],[6,0],[8,0],[4,-7],[5,-6],[4,-12],[0,-11],[-2,-4],[-5,-1],[-4,1],[-3,-2],[-2,-5],[-3,1],[-4,-1],[-3,1],[-3,3],[-1,14],[-3,4],[-2,1]],[[41850,38279],[-3,14],[1,6],[4,-1],[4,-9],[-2,-2],[-1,-2],[-1,-3],[-2,-3]],[[41976,38318],[1,2],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1]],[[36546,34240],[2,10],[5,-7],[5,-12],[3,-9],[0,-13],[-2,-12],[-3,-9],[-2,-12],[-1,-2],[-1,-4],[-1,-6],[1,-8],[1,-13],[0,-6],[-2,-10],[-3,-10],[-4,-9],[-3,-3],[-13,-41],[0,-13],[4,-21],[-1,-9],[-2,-2],[-5,-3],[-2,-3],[-4,-12],[-2,-5],[-3,-1],[-2,0],[-1,1],[-1,2],[1,44],[2,19],[3,15],[-4,4],[2,10],[8,15],[-1,13],[-4,12],[-2,8],[6,3],[3,1],[2,3],[1,5],[0,7],[0,3],[-2,3],[-3,3],[0,4],[0,3],[1,3],[1,4],[-1,6],[-4,7],[-1,5],[2,8],[3,5],[2,5],[-1,10],[5,1],[14,9],[4,4]],[[36515,34870],[-1,-6],[-8,-15],[-1,-5],[0,-7],[1,-14],[-2,0],[-1,1],[-1,3],[-6,1],[-4,14],[-4,17],[-4,9],[-12,17],[-1,2],[1,3],[4,15],[3,5],[3,2],[5,1],[2,4],[0,6],[2,7],[7,7],[8,6],[5,7],[-2,15],[5,8],[5,-2],[4,-8],[6,-21],[1,-5],[0,-5],[-1,-4],[-4,-8],[-2,-15],[-6,-22],[-2,-13]],[[36800,35841],[3,1],[7,-1],[3,2],[4,5],[3,2],[0,-4],[-13,-18],[-10,-5],[-6,-6],[-65,-108],[-10,-10],[-5,-10],[-6,-18],[-5,-23],[-3,-8],[-3,3],[0,12],[5,20],[1,10],[2,4],[11,27],[32,49],[12,11],[17,34],[14,11],[7,15],[5,5]],[[37131,36300],[2,-1],[0,-2],[0,-2],[1,-3],[4,-11],[3,-12],[0,-7],[-14,12],[-4,0],[-3,-7],[-2,3],[-5,0],[-2,1],[-2,3],[-4,14],[4,3],[1,-1],[2,-2],[2,4],[0,3],[0,3],[-2,6],[4,0],[9,-4],[6,0]],[[37440,36312],[-3,-2],[0,-4],[1,-7],[0,-7],[1,-3],[0,-3],[-2,-4],[-1,-2],[-4,-4],[-1,2],[-1,1],[-1,0],[-2,1],[-3,8],[-2,13],[-3,8],[-4,-5],[-1,4],[-11,-9],[-11,-6],[-10,2],[-7,13],[-1,13],[1,8],[4,6],[4,6],[18,34],[3,10],[2,18],[1,4],[1,5],[1,4],[0,3],[3,3],[2,0],[3,-2],[3,-3],[14,-19],[2,-7],[-2,-42],[-8,3],[-2,-18],[5,-17],[9,3],[2,-4],[0,-1],[0,-3]],[[37749,36760],[5,-7],[1,-5],[-5,-2],[-1,-3],[-2,-1],[-1,2],[-1,3],[0,2],[0,2],[-3,0],[-2,0],[-2,-2],[-1,-3],[-4,5],[-2,-4],[-3,-6],[-3,-3],[-12,-4],[-3,0],[-4,4],[-2,4],[-3,3],[-5,1],[-2,-3],[-3,-8],[-2,-9],[-1,-8],[-2,0],[0,1],[0,1],[0,2],[-2,4],[-2,5],[1,5],[1,6],[-5,0],[-2,1],[-1,3],[-1,5],[1,1],[1,0],[11,11],[7,16],[3,-3],[4,5],[7,14],[0,3],[1,9],[2,1],[1,-2],[1,-2],[0,-1],[3,0],[3,-2],[3,-3],[3,-3],[0,-4],[-2,0],[-2,-2],[-1,-1],[-1,-1],[6,-8],[4,5],[2,-4],[2,-6],[4,-3],[2,2],[1,4],[1,4],[1,2],[3,-2],[0,-4],[-1,-3],[0,-3],[2,-5],[2,-6]],[[40999,48197],[3,2],[1,-4],[0,-7],[-3,-5],[-4,-3],[-8,-9],[-3,-1],[-3,3],[2,4],[3,5],[1,3],[1,5],[3,2],[4,2],[3,3]],[[41831,50994],[7,4],[7,-6],[3,-9],[-1,-8],[-2,-7],[-4,-5],[-5,-1],[-6,2],[-3,6],[-1,8],[0,8],[5,8]],[[36577,35437],[6,10],[9,11],[3,0],[2,-10],[-2,-14],[-3,-22],[0,-12],[3,-12],[-4,-6],[-6,-7],[-5,2],[-4,10],[2,8],[-1,8],[-5,9],[0,11],[5,14]],[[40318,45911],[2,1],[3,-1],[2,-4],[-1,-4],[1,-8],[2,-8],[0,-7],[-2,-9],[-1,-8],[-1,-10],[-1,-9],[-2,-2],[-3,1],[-5,2],[-2,3],[0,9],[0,14],[1,7],[2,6],[3,9],[1,8],[0,6],[1,4]],[[38269,48875],[4,-5],[5,-11],[9,-4],[5,-5],[6,-12],[4,-5],[2,-5],[-8,-1],[-10,3],[-6,8],[-7,7],[-9,4],[-3,10],[0,14],[2,8],[3,1],[3,-7]],[[37824,49016],[0,7],[-2,6],[-3,5],[2,5],[1,0],[4,5],[3,-1],[2,-7],[-1,-9],[-1,-11],[3,-1],[1,1],[2,8],[1,1],[4,6],[3,0],[2,-11],[-1,-8],[-2,-9],[-1,-11],[-3,-6],[-8,-4],[-4,-1],[-4,4],[-1,8],[0,1],[0,7],[1,10],[2,5]],[[37898,49071],[6,1],[1,-7],[-1,-11],[-3,-8],[-2,-8],[-3,-4],[-3,5],[-5,2],[-2,9],[-1,7],[1,7],[5,3],[3,2],[4,2]],[[36255,49489],[4,1],[8,-6],[4,-6],[0,-6],[0,-7],[-2,-7],[-4,-3],[-7,-4],[-3,-6],[-4,-7],[-4,-2],[-4,6],[-2,11],[1,8],[0,11],[1,7],[3,6],[3,3],[3,-3],[3,4]],[[35172,30488],[-5,-6],[-5,-8],[-10,-22],[-6,-20],[-3,-20],[-6,-49],[-5,-30],[-2,-27],[-2,-9],[-10,-12],[-5,-7],[-13,-31],[-15,-20],[-5,-10],[-10,-35],[-3,-6],[0,-7],[-6,-34],[4,-21],[0,-11],[-11,-6],[-26,-26],[-21,-25],[-42,-73],[-3,-8],[-1,-10],[0,-9],[-2,-7],[-25,-10],[-6,-1],[1,5],[1,4],[5,8],[-2,3],[-2,3],[-1,5],[-1,5],[1,7],[3,15],[0,2],[-4,7],[-7,6],[-8,3],[-6,1],[3,-4],[11,-8],[-2,-8],[-5,-8],[-5,-6],[-4,-3],[-2,-4],[0,-8],[2,-6],[4,1],[0,5],[4,-2],[5,-8],[3,-13],[-2,-7],[-5,-8],[-63,-58],[-3,-3],[-17,-9],[-9,-13],[-6,-5],[-12,-6],[-48,-41],[-6,-2],[-5,-3],[-7,-15],[-6,-2],[2,6],[0,4],[0,2],[-3,8],[-3,7],[-5,4],[-11,2],[-1,3],[0,4],[-2,5],[-2,3],[-3,3],[-6,2],[-13,-1],[-26,-11],[-10,4],[-8,12],[-14,34],[-11,11],[-7,1],[-18,2],[-12,-2],[-14,7],[-11,9],[-13,-5],[-13,9],[-17,-10],[-10,5],[-19,-11],[-8,-6],[-18,-22],[-14,-17],[-18,-19],[-10,1],[-9,-8],[-4,-5],[-1,-12],[-6,15],[-5,1],[-5,4],[2,5],[1,7],[-4,4],[-4,2],[-2,-9],[-5,-8],[-3,0],[-6,1],[-6,-1],[-9,13],[-17,17],[-4,7],[-1,9],[5,7],[5,8],[7,4],[-4,8],[-6,4],[-14,10],[-11,3],[-9,-1],[-6,-7],[-5,1],[-4,4],[-11,11],[-4,5],[-5,5],[-19,10],[-23,5],[-22,16],[-4,6],[-4,15],[-4,7],[-10,12],[-6,13],[-6,10],[-5,7],[-8,9],[-4,6],[1,8],[-2,4],[-4,5],[-2,3],[-5,11],[-5,7],[-9,7],[-14,6],[-25,1],[-15,-2],[-5,7],[-13,0],[-7,-8],[-3,8],[-8,1],[-7,-7],[-10,-7],[-9,16],[-7,0],[-8,-3],[-11,-8],[-16,-11],[-5,1],[-7,-8],[-8,2],[-8,-2],[-9,2],[2,5],[-2,9],[-8,4],[-5,15],[1,24],[-7,13],[-6,16],[-20,43],[-9,8],[-4,9],[-4,20],[-5,8],[-7,5],[-7,3],[-6,0],[-8,3],[-3,7],[-4,22],[-3,13],[-23,60],[-5,8],[-11,11],[-4,8],[-4,11],[-2,12],[-7,70],[-1,51],[3,51],[-1,12],[-1,12],[-1,12],[1,14],[4,12],[10,22],[1,13],[-1,11],[-8,12],[-2,12],[2,10],[4,10],[10,18],[3,12],[1,13],[-5,51],[0,26],[4,19],[11,7],[26,-3],[12,2],[10,9],[11,18],[4,10],[2,10],[1,14],[1,11],[4,22],[2,24],[-2,18],[-6,14],[-12,23],[-3,9],[-1,11],[-1,13],[1,26],[-1,14],[-2,10],[2,5],[-2,15],[-3,41],[-3,9],[-3,9],[-5,45],[-1,13]],[[74393,79586],[5,-3],[5,-1],[29,6],[5,4],[5,10],[10,14],[22,19],[10,14],[1,15],[-5,17],[-4,18],[5,18],[3,6],[5,20],[3,8],[7,6],[50,13],[6,0],[14,-6],[7,-1],[17,1],[6,3],[11,11],[4,2],[1,0],[5,-1],[4,-4],[7,-15],[6,-7],[7,-3],[42,-4],[1,4],[-6,19],[1,22],[0,9],[3,7],[6,2],[5,-3],[3,-8],[2,-9],[3,-9],[3,-6],[2,-6],[2,-6],[4,-4],[10,3],[41,25],[10,11],[5,14],[-4,15],[-6,17],[3,14],[8,7],[10,-3],[16,-22],[8,-7],[9,1],[7,10],[6,15],[6,11],[10,0],[12,12],[27,13],[18,14],[6,7],[2,9],[-3,10],[-5,5],[-12,8],[-4,8],[1,5],[4,7],[0,6],[-1,4],[-5,6],[-2,4],[0,7],[2,23],[1,6],[2,3],[10,11],[15,8],[40,1],[15,5],[14,10],[7,15],[0,7],[1,12],[2,15],[4,12],[8,8],[37,11],[11,7],[34,36],[5,3],[12,2],[5,2],[14,16],[12,3],[24,-8],[12,1],[5,2],[5,3],[5,6],[3,7],[2,9],[0,17],[2,6],[10,8],[22,9],[10,11],[20,35],[7,10],[10,6],[33,1],[9,4],[27,20],[11,0],[23,-7],[10,4],[4,10],[2,12],[3,12],[7,10],[28,15],[7,11],[14,35],[8,10],[19,17],[21,10],[21,3],[45,-12],[27,1],[23,19],[15,42],[0,11],[0,11],[2,9],[3,7],[6,5],[7,3],[7,-2],[4,-9],[5,-23],[7,-15],[9,-9],[11,-6],[11,-11],[16,-32],[10,-8],[6,1],[7,3],[6,6],[5,8],[3,10],[2,19],[2,10],[10,10],[17,5],[18,-2],[11,-9],[3,-21],[0,-28],[5,-24],[3,-12],[3,-6],[3,-5],[5,-3],[18,-7],[9,0],[14,1],[65,5],[32,-14],[97,-6],[97,-6],[6,-4],[4,-8],[2,-9],[0,-22],[11,-38],[2,-14],[2,-61],[3,-31],[3,-15],[4,-13],[6,-10],[23,-14],[5,-5],[2,-8],[1,-9],[2,-9],[3,-7],[12,-16],[3,-7],[5,-17],[3,-6],[6,-3],[7,2],[27,13],[48,4],[9,-4],[8,-9],[6,-19],[5,-13],[2,-4],[13,-11],[78,1],[12,-5],[13,-14],[4,-7],[5,-5],[1,-1],[5,-4],[6,2],[4,7],[8,16],[5,5],[27,5],[12,8],[10,20],[8,11],[11,5],[11,-3],[7,-13],[3,-16],[5,-12],[7,-4],[8,8],[3,8],[3,6],[4,6],[4,4],[4,3],[4,1],[5,-2],[4,-2],[41,-26],[13,-13],[12,-17],[6,-6],[7,-1],[8,3],[14,13],[7,5],[8,0],[5,-3],[5,-9],[4,-13],[4,-10],[4,-3],[6,3],[6,6],[15,22],[6,2],[74,-16],[10,-12],[10,-25],[5,-7],[7,-4],[4,-2],[6,-5],[3,-10],[6,-16],[15,-9],[16,-5],[10,0],[12,5],[13,9],[24,23],[18,20],[9,15],[2,18],[-3,11],[-2,7],[1,5],[21,8],[25,17],[7,2],[6,-4],[9,-14],[5,-5],[5,4],[8,14],[8,11],[40,30],[16,24],[43,130],[2,10],[1,11],[-1,10],[-2,19],[1,20],[9,35],[1,19],[-2,16],[-5,11],[-7,7],[-7,5],[-17,4],[-8,4],[-21,22],[-6,8],[-4,12],[-14,48],[-8,30],[1,13],[12,23],[-2,7],[-9,9],[-4,7],[-2,7],[-3,7],[-13,12],[-10,14],[-8,17],[0,18],[17,51],[5,20],[2,20],[2,8],[8,28],[0,9],[-1,13],[-3,20],[0,9],[2,10],[3,8],[8,14],[3,8],[13,39],[5,13],[4,6],[4,2],[12,9],[8,0],[23,-6],[2,11],[1,14],[-2,25],[1,14],[3,11],[7,20],[2,11],[17,38],[26,17],[53,20],[9,10],[9,13],[8,15],[18,50],[4,29],[3,9],[10,19],[3,8],[0,10],[0,20],[2,10],[9,13],[11,1],[3,-3],[7,-8],[3,-19],[6,-13],[8,-7],[48,-23],[10,-8],[6,-9],[6,-11],[5,-10],[8,-5],[65,-25],[34,-2],[8,-5],[21,-25],[18,-29],[19,-24],[25,-10],[25,4],[31,-7],[84,0],[17,-13],[18,-8],[120,-82],[13,-15],[12,-4],[12,0],[11,-3],[10,-14],[10,-17],[10,-8],[10,0],[27,14],[12,1],[12,-3],[21,-12],[14,2],[8,-2],[5,-3],[15,-15],[7,-3],[22,2],[6,-3],[9,-11],[5,-4],[22,-2],[6,-5],[5,-6],[26,-25],[2,-9],[-4,-13],[-12,-27],[0,-6],[1,-6],[3,-10],[0,-11],[0,-9],[-2,-21],[1,-22],[5,-23],[8,-22],[7,-17],[3,-8],[1,-8],[-2,-9],[-3,-7],[7,-15],[-2,-17],[-5,-16],[-3,-16],[4,-19],[8,-11],[17,-18],[6,-18],[-2,-13],[-7,-13],[-6,-15],[-1,-17],[3,-18],[6,-16],[7,-11],[12,-7],[28,-5],[11,-12],[20,-53],[9,-9],[1,0],[39,-15],[35,-35],[11,-7],[13,-5],[43,8],[20,-7],[11,-31],[4,-17],[6,-11],[8,-4],[28,4],[9,-3],[10,-6],[17,-17],[18,-12],[19,-1],[32,33],[17,-1],[36,-22],[18,-4],[23,4],[21,13],[14,22],[6,13],[14,15],[8,10],[8,11],[8,6],[19,8],[28,-2],[10,2],[6,6],[11,15],[7,3],[25,-1],[8,4],[17,15],[7,3],[9,2],[32,-5],[8,0],[7,3],[7,5],[31,36],[10,8],[14,3],[86,-33],[39,4],[8,-2],[13,-8],[14,-4],[15,-1],[7,-2],[15,-17],[2,-4],[0,-5],[0,-6],[1,-4],[2,-3],[22,-4],[7,-4],[12,-12],[5,-4],[7,-2],[54,23],[30,4],[30,-5],[25,-12],[12,-9],[41,-49],[10,-7],[3,-6],[4,-22],[2,-6],[6,-8],[2,-4],[1,-6],[3,-14],[2,-7],[4,-4],[8,-6],[4,-4],[14,-18],[8,-8],[9,-5],[8,1],[7,5],[7,1],[17,-20],[101,-2],[4,-3],[2,-1],[10,-10],[6,-3],[9,2],[3,-1],[13,-6],[13,-1],[3,-6],[-1,-15],[-2,-10],[-3,-9],[-1,-9],[0,-12],[5,-28],[2,-22],[0,-8],[-2,-7],[-6,-22],[0,-8],[3,-4],[7,-1],[11,1],[4,-4],[-3,-14],[0,-9],[3,-9],[4,-8],[21,-21],[5,-4],[24,-4],[7,-4],[4,-6],[2,-8],[2,-8],[3,-8],[16,-27],[39,-48],[18,-17],[9,-1],[10,-1],[40,10],[30,0],[20,5],[28,-13],[7,1],[29,10],[35,-4],[7,-4],[6,-5],[16,-9],[5,-3],[11,1],[3,-3],[1,-3],[1,-11],[2,-4],[5,-4],[6,-4],[59,6],[16,-9],[9,-14],[4,0],[23,-8],[74,-31],[12,2],[12,7],[12,11],[10,15],[4,8],[3,4],[3,-1],[14,-22],[5,-5],[16,-6],[26,-23],[12,-5],[12,-1],[12,2],[30,14],[35,27],[48,50],[38,18],[5,5],[8,15],[5,5],[6,2],[6,-3],[13,-10],[7,-2],[7,1],[6,2],[32,23],[12,6],[103,9],[26,17],[85,53],[12,3],[31,-5],[24,-18],[8,-3],[9,1],[12,5],[25,18],[17,21],[5,5],[7,4],[6,3],[14,1],[5,4],[3,13],[1,21],[1,9],[2,11],[20,54],[7,14],[8,12],[57,59],[7,14],[4,7],[15,14],[5,7],[14,16],[48,35],[6,2],[12,-3],[6,0],[3,2],[34,47],[6,5],[12,5],[5,4],[18,24],[22,19],[24,12],[13,-2],[26,-18],[13,-5],[52,10],[26,-9],[68,-54],[5,-7],[3,-8],[6,-17],[4,-8],[41,-62],[44,-46],[5,-2],[18,0],[6,-2],[10,-1],[19,4],[29,-9],[10,0],[9,4],[84,67],[23,10],[23,0],[23,-13],[76,-42],[12,-14],[10,-20],[8,-24]],[[0,89003],[99970,-7],[-19,-14],[-6,-2],[-7,-6],[-19,-38],[-65,-77],[-6,-3],[-18,3],[-27,-8],[-12,1],[-14,-9],[-8,-2],[-37,-26],[-35,-20],[-43,-44],[-55,-29],[-13,-1],[-8,12],[15,8],[45,12],[5,2],[4,6],[6,14],[-1,6],[-8,3],[-15,2],[-7,-2],[-21,-11],[-97,-12],[6,3],[6,1],[3,3],[-3,9],[-6,2],[-43,0],[-30,-10],[-2,2],[-2,5],[-1,5],[-2,5],[-4,3],[-3,1],[-51,0],[-6,1],[-13,8],[-14,-1],[-6,3],[2,5],[9,8],[-5,3],[-19,17],[-6,3],[-12,1],[4,9],[-1,6],[-4,4],[-5,2],[-12,-1],[-4,2],[-6,6],[6,6],[7,2],[15,1],[-2,7],[-6,10],[-3,7],[0,3],[1,5],[-1,5],[-2,4],[-1,3],[-2,3],[-3,2],[-6,2],[-22,-2],[-7,1],[-11,5],[-5,1],[-5,7],[-9,31],[-5,11],[-5,4],[-44,15],[-10,11],[-6,3],[-23,0],[-11,-4],[-23,-17],[-34,-10],[-11,1],[-13,16],[-7,3],[-11,3],[-2,1],[-2,3],[-2,3],[-2,3],[-3,2],[-3,1],[-7,-1],[4,-15],[-7,-6],[-18,0],[8,-10],[10,-2],[20,4],[3,-1],[8,-15],[4,-4],[5,-2],[9,-2],[102,29],[12,-2],[6,-9],[3,-12],[9,-5],[8,-3],[4,-4],[4,-10],[25,-17],[2,-4],[2,-6],[3,-4],[4,-2],[3,-2],[3,-5],[4,-13],[-2,-3],[-1,-2],[-3,-7],[14,-8],[6,-7],[1,-9],[-4,-5],[-23,-12],[-34,-8],[-7,-4],[-4,-1],[-4,1],[-3,3],[-4,8],[-14,6],[-18,23],[-11,5],[-61,10],[-4,-1],[-4,-7],[-8,-10],[-9,-8],[-6,-2],[-11,-5],[-5,-1],[-6,1],[-1,3],[0,6],[-2,8],[-8,12],[-43,24],[-5,5],[-5,7],[-5,4],[-21,-2],[-6,4],[-7,16],[-5,3],[-5,-3],[-13,-14],[-8,-6],[-2,-4],[-1,-3],[0,-6],[-1,-3],[-11,-20],[-9,-11],[-22,-11],[-9,-11],[-11,-9],[-43,11],[-14,-3],[-27,-14],[-35,-4],[-13,6],[-5,-2],[-4,-5],[-6,-2],[-41,4],[-14,-4],[-35,-33],[-19,-7],[-12,-9],[-7,-2],[-79,4],[10,-9],[12,-4],[70,6],[69,44],[24,6],[47,-8],[87,23],[10,-9],[9,-4],[15,4],[36,21],[4,5],[4,7],[5,5],[10,6],[4,5],[12,26],[6,8],[10,4],[12,-1],[12,-7],[23,-20],[18,-29],[2,-5],[3,-13],[3,-8],[4,-8],[4,-6],[9,-4],[3,-6],[3,-6],[3,-5],[5,-4],[3,-3],[-1,-4],[-5,-7],[-5,-5],[-16,-10],[-40,-11],[-11,-12],[-7,-18],[-1,-4],[-3,-20],[-1,-5],[4,-4],[1,4],[0,7],[1,6],[3,5],[21,25],[10,2],[11,-2],[12,2],[11,6],[6,5],[5,7],[6,14],[4,6],[4,2],[23,-4],[12,-7],[30,-27],[3,-6],[7,-23],[4,-4],[5,1],[9,10],[7,4],[3,4],[1,3],[-1,3],[0,3],[0,3],[7,11],[18,16],[19,25],[13,4],[26,1],[12,4],[12,7],[22,19],[13,6],[42,-8],[-3,-18],[-8,-31],[0,-7],[1,-7],[0,-5],[-3,-6],[-7,-9],[-2,-6],[-4,-14],[-2,-7],[-5,-6],[-2,-5],[-1,-9],[2,-16],[5,-17],[11,-30],[8,-12],[28,-26],[11,-21],[8,-5],[13,-17],[5,-5],[12,-5],[23,-20],[51,-26],[52,-3],[0,5],[-24,14],[-7,10],[8,10],[26,14],[6,5],[5,6],[4,8],[4,10],[5,6],[-1,7],[-4,5],[-6,15],[-4,11],[-3,5],[-4,-2],[-5,-7],[2,6],[2,6],[0,5],[6,-6],[50,-110],[2,-8],[6,-31],[3,-8],[34,-62],[7,-15],[-9,6],[-10,10],[-10,5],[-8,-7],[-3,-4],[-4,-5],[-5,-3],[-3,-2],[-5,-20],[24,-5],[6,-3],[-7,-4],[-23,-1],[0,-4],[7,-3],[22,3],[13,-1],[23,-13],[6,-1],[5,1],[1,9],[-2,7],[-2,6],[-3,5],[2,4],[14,-54],[1,-7],[0,-7],[-1,-11],[-1,-7],[1,-6],[4,-13],[3,-22],[6,-29],[6,-56],[-1,-12],[-4,10],[-6,7],[-6,3],[-6,1],[-7,2],[-6,6],[-7,3],[-5,-3],[4,-8],[6,-10],[7,-8],[5,-3],[8,-1],[8,-3],[2,-5],[-8,-7],[-11,-4],[-6,-1],[-5,3],[-1,4],[-1,9],[-2,3],[-6,8],[-8,5],[-8,1],[-7,-4],[7,-3],[-1,-10],[-7,-10],[-8,-1],[-2,2],[0,4],[0,5],[-1,3],[-1,2],[-8,0],[-16,5],[-5,0],[-4,-3],[-2,-5],[-3,-5],[-2,-4],[-13,-8],[-2,-4],[2,-10],[7,-10],[13,-12],[9,-3],[8,2],[7,7],[15,20],[8,4],[46,-9],[2,1],[2,4],[1,2],[1,0],[4,-3],[1,-3],[-1,-3],[0,-7],[2,-5],[2,-2],[1,-3],[-3,-6],[5,-5],[0,-5],[-2,-4],[-1,-5],[-1,-8],[-4,-3],[-8,-3],[-4,-4],[-2,-3],[-2,-5],[-2,-4],[-11,-12],[-2,-4],[19,-13],[10,-2],[32,20],[6,9],[-4,12],[-10,22],[-9,27],[1,26],[4,7],[1,1],[1,-5],[0,-9],[1,-6],[2,-11],[3,-18],[4,-13],[53,-101],[-13,10],[-16,23],[-15,17],[-11,-9],[0,-23],[31,-15],[3,-19],[27,-4],[7,-3],[22,-26],[8,-3],[5,1],[4,3],[5,2],[6,-2],[18,-15],[10,-10],[2,-5],[2,-8],[4,-3],[4,-2],[3,-3],[5,-12],[2,-5],[1,-10],[1,-23],[-1,-6],[-4,-7],[-4,1],[-5,4],[-5,2],[-6,-1],[-5,-3],[-11,-10],[-7,-11],[-2,-11],[3,-13],[11,-34],[7,-12],[8,-8],[35,-5],[11,-7],[8,-14],[2,-8],[0,-16],[1,-7],[4,-7],[2,-2],[2,-1],[2,-2],[0,-4],[1,-5],[2,-8],[3,-19],[0,-6],[-2,-7],[-3,-5],[-3,-4],[-3,-5],[-3,-7],[1,-3],[1,-6],[1,-4],[0,-4],[-1,-3],[-3,-1],[-25,0],[-8,-4],[-3,-11],[-1,-14],[-3,-16],[-7,-16],[-10,-8],[-10,-4],[-34,2],[-11,-4],[-10,-14],[0,-15],[10,-18],[-4,-22],[1,-8],[2,-8],[1,-7],[-1,-5],[-3,-5],[-9,-16],[-4,-4],[-4,-2],[-6,4],[-2,13],[-1,3],[-2,3],[-16,16],[-11,8],[-34,9],[-22,13],[-69,20],[-31,21],[-21,1],[-10,8],[-21,9],[-17,14],[-19,8],[-46,12],[-59,9],[-104,4],[3,2],[2,0],[4,1],[-9,11],[-11,6],[11,23],[3,12],[2,3],[2,2],[0,3],[0,5],[-2,18],[-1,2],[-1,3],[1,6],[1,3],[4,8],[1,1],[21,4],[3,-2],[0,5],[-1,4],[0,4],[1,3],[5,4],[2,3],[1,4],[-4,4],[-22,-4],[-9,-5],[-9,-12],[-8,-16],[-5,-16],[1,-3],[3,-9],[-22,-2],[-9,6],[-8,16],[7,18],[1,6],[-2,5],[-13,16],[-15,7],[-4,4],[-1,3],[-1,3],[0,4],[-2,3],[-3,3],[-3,1],[-1,0],[-5,-5],[1,-12],[4,-14],[3,-10],[-2,-4],[4,-5],[5,-4],[3,-6],[-1,-7],[-4,-5],[-19,-22],[-6,-10],[-1,-13],[8,-17],[15,-12],[2,-4],[1,-10],[3,-6],[5,-3],[4,-1],[8,0],[23,8],[25,-5],[-8,-11],[-62,-11],[-43,-18],[-42,-12],[-6,0],[-1,8],[2,4],[3,2],[4,3],[2,7],[-8,0],[-9,-3],[-7,-8],[-1,-13],[-6,-2],[-4,-2],[-1,-4],[1,-7],[3,-1],[9,3],[0,-3],[-13,-11],[-10,-3],[-35,-25],[-4,-2],[-7,-5],[-20,-36],[-12,-10],[-89,-37],[-90,-38],[-22,-19],[-22,-10],[-38,-35],[-9,-5],[6,6],[8,6],[7,7],[4,10],[-14,-7],[-7,-1],[-6,4],[-7,21],[-4,10],[-2,-5],[1,-39],[-1,-17],[-6,-13],[-15,-13],[-100,-44],[-14,-18],[2,6],[2,3],[7,7],[-5,8],[-9,2],[-15,-2],[-7,3],[-14,12],[-7,1],[5,-15],[7,-8],[8,-6],[9,-14],[4,-5],[3,-5],[-1,-5],[-6,-11],[-4,-4],[-56,-28],[-10,0],[-7,0],[-4,2],[-5,4],[-3,1],[-7,-3],[5,5],[1,6],[-2,5],[-6,0],[-3,-2],[-10,-14],[-5,-4],[-6,-2],[-17,2],[-4,-1],[-10,-7],[4,4],[7,5],[-6,10],[-9,7],[-10,2],[-8,-4],[3,-8],[-15,-1],[-5,-5],[2,-12],[5,-8],[6,-5],[6,2],[7,1],[-13,-6],[-6,-5],[-5,-8],[-3,-8],[-2,-7],[-3,-5],[-14,-3],[-5,-3],[-10,-13],[-17,-13],[-6,-6],[2,15],[-3,9],[-6,5],[-30,13],[-20,19],[-7,2],[-8,-5],[-3,-6],[-3,-10],[-3,-11],[-1,-9],[-2,-10],[-8,-17],[0,-6],[3,-8],[2,-8],[1,-9],[1,-11],[-5,-9],[-10,-2],[-18,5],[-7,-2],[-6,-6],[-7,-8],[-5,-9],[5,-16],[-6,-16],[-44,-40],[-12,-3],[-23,14],[-2,3],[-5,11],[-2,3],[-4,2],[-7,0],[-4,2],[-2,2],[-1,3],[-1,4],[0,2],[0,1],[-1,0],[-20,-2],[-30,-22],[9,-9],[21,-17],[15,-4],[6,-5],[5,-6],[3,-6],[2,-8],[0,-7],[1,-5],[4,-2],[-17,-22],[-21,9],[-22,18],[-20,7],[20,-17],[8,-12],[0,-14],[-4,-4],[-4,-1],[-4,0],[-4,-1],[-3,-2],[-4,-8],[-3,-2],[-1,-3],[-4,-15],[-3,-6],[-20,-2],[-52,23],[-13,-9],[7,-11],[5,-11],[6,-9],[8,-6],[0,-4],[-27,-12],[-14,1],[-12,11],[6,-16],[10,-7],[29,-3],[3,-2],[1,-3],[0,-4],[0,-4],[1,-2],[4,-1],[15,6],[-4,-15],[-8,-7],[-9,-4],[-12,-15],[-5,0],[-10,5],[-15,-3],[-6,3],[-30,28],[-35,20],[6,-9],[36,-35],[6,-9],[4,-10],[2,-12],[-1,-10],[-5,-8],[-4,-1],[-11,2],[-3,-3],[-3,-8],[-1,-4],[-3,-3],[-2,-17],[-10,-16],[-11,-3],[-5,20],[2,9],[2,10],[0,9],[-6,9],[-7,1],[0,-9],[0,-11],[-5,-6],[1,-4],[0,-2],[1,-2],[-2,-8],[2,-6],[3,-4],[1,-6],[-3,-4],[-14,-7],[-21,-3],[-6,2],[-16,11],[-6,-4],[-17,-18],[-9,0],[-9,-8],[-4,-2],[-3,2],[-3,2],[-4,2],[-3,-2],[8,-8],[8,-4],[7,-7],[4,-17],[-9,-5],[-27,-3],[-7,-5],[-12,-14],[-6,-6],[7,9],[5,8],[3,8],[-2,9],[-4,6],[-5,5],[-2,6],[-2,5],[-2,1],[-3,-2],[0,-4],[1,-4],[1,-5],[1,-6],[0,-21],[-1,-6],[-2,-2],[-3,-1],[-2,-1],[-1,-9],[0,-17],[-1,-7],[-4,-9],[-12,-7],[-12,-13],[-14,-6],[-11,-14],[-5,-2],[-12,2],[-11,0],[-7,-2],[-20,-17],[-6,-4],[-42,-5],[-5,3],[-6,5],[-5,2],[-5,-6],[5,-11],[4,-4],[6,1],[6,2],[-6,-13],[-1,-8],[2,-8],[-10,-8],[-11,-5],[-21,-3],[-5,3],[-4,11],[-6,2],[-19,0],[2,-9],[5,0],[6,2],[5,-2],[8,-20],[2,-7],[-2,-1],[-2,-1],[-1,-5],[4,-4],[11,-6],[2,-6],[1,-5],[-1,-6],[-2,-6],[-10,-11],[-23,-7],[-9,-11],[-8,-24],[-5,-29],[-4,-61],[-7,-39],[-1,-12],[-3,-17],[-9,-10],[-29,-17],[-9,1],[-7,7],[-9,12],[-4,4],[-12,5],[-4,5],[-1,7],[1,6],[2,5],[2,7],[-4,3],[-13,13],[-5,2],[-14,2],[-9,4],[-6,9],[-8,28],[-12,24],[-4,11],[-1,17],[5,5],[31,8],[-8,7],[-7,4],[-7,0],[-8,-3],[-8,-1],[-7,4],[-16,15],[-2,4],[-1,6],[0,6],[0,6],[-3,5],[-5,10],[-2,5],[0,11],[0,10],[0,10],[-4,10],[-8,8],[-16,8],[-11,15],[-4,2],[-9,0],[-47,36],[-16,6],[-8,5],[-5,10],[26,-4],[9,4],[-18,26],[-6,5],[-14,0],[-6,5],[-2,-5],[0,-3],[0,-4],[2,-4],[-4,-8],[-3,-3],[-2,-2],[-3,1],[-5,6],[-2,1],[-4,-4],[2,-5],[4,-4],[4,-2],[-53,4],[-63,-3],[-5,-1],[-8,-8],[-2,-1],[-13,0],[-7,2],[-13,15],[-13,7],[-13,3],[-56,-1],[-12,-7],[-40,-8],[-71,-36],[-6,1],[-5,6],[-5,15],[-4,3],[-5,-3],[0,-8],[3,-8],[3,-7],[0,-7],[-5,-4],[-11,-1],[-22,-20],[-12,-6],[-12,-1],[-4,3],[-12,10],[-3,2],[-2,-5],[-1,-7],[0,-7],[-1,-6],[-9,-3],[-18,26],[-9,4],[8,-19],[3,-11],[0,-9],[-5,-4],[-7,3],[-8,5],[-6,2],[7,-14],[-8,-11],[-13,-8],[-11,-3],[-8,4],[-13,9],[-10,13],[-1,14],[-9,3],[-5,0],[0,-5],[2,-6],[2,-6],[0,-5],[-2,-5],[6,-25],[-2,-7],[-7,-4],[-10,-3],[-17,-11],[-3,-1],[-4,2],[2,-4],[7,-8],[2,-6],[-2,-6],[-5,-5],[-16,-12],[-5,-6],[-31,-52],[-54,-77],[-48,-70],[-20,-24],[-12,-8],[-13,-2],[-24,0],[-2,7],[-1,15],[1,27],[3,13],[8,21],[2,12],[0,8],[-2,12],[0,7],[1,5],[8,47],[4,10],[6,9],[15,15],[5,11],[1,17],[-7,23],[-1,13],[3,14],[2,13],[-3,16],[-4,15],[-5,7],[11,-7],[11,5],[9,14],[5,20],[-1,1],[-3,3],[9,8],[3,6],[0,7],[-5,4],[-5,-5],[-5,-7],[-4,-4],[-5,1],[-9,6],[-5,1],[-56,-19],[-11,-8],[-19,-30],[-6,-4],[5,-10],[11,6],[16,28],[12,9],[24,8],[12,3],[-15,-8],[-14,-3],[-15,-8],[-24,-35],[-31,-14],[-13,-12],[-11,-16],[-13,-15],[-14,-10],[-43,-20],[-15,1],[-5,23],[-3,-9],[-1,-10],[1,-9],[3,-9],[-12,-16],[-29,-17],[-14,-22],[-5,-4],[-5,-2],[-4,0],[-3,3],[-1,3],[-1,4],[-1,5],[-4,6],[0,2],[1,6],[2,4],[4,6],[2,6],[-9,-1],[-5,-7],[-4,-10],[-5,-10],[-8,-5],[-8,1],[-15,12],[1,-7],[0,-6],[3,-12],[-1,-6],[4,-7],[6,-2],[2,5],[3,8],[7,2],[7,-2],[4,-4],[2,-5],[2,-18],[2,-7],[4,-6],[10,-10],[3,-9],[-8,-2],[-6,-8],[-9,-22],[-32,-52],[-6,-5],[-17,-4],[-8,-8],[-9,-11],[-8,-8],[-9,1],[-3,5],[-3,9],[-2,9],[-2,7],[1,2],[1,3],[2,3],[0,4],[-1,4],[-3,5],[-1,4],[-4,16],[-8,28],[-6,14],[-5,8],[-17,20],[-20,33],[-9,10],[-9,6],[-10,3],[-11,-3],[-6,-4],[-2,-8],[-2,-9],[-3,1],[-7,8],[-5,-1],[-1,-15],[5,-16],[9,-6],[-8,-20],[-17,-8],[-20,-3],[-12,-6],[-6,-7],[-7,-6],[-3,-10],[1,-13],[5,-11],[12,-10],[5,-8],[-7,1],[-21,11],[-7,1],[-3,2],[-3,17],[0,3],[4,2],[7,-1],[2,1],[3,4],[2,7],[2,5],[7,7],[5,9],[14,16],[-7,0],[-14,-5],[-6,1],[-5,6],[-9,14],[-5,5],[-7,2],[-27,2],[-18,-8],[2,1],[2,3],[1,3],[1,5],[-12,8],[-2,-2],[-3,-5],[-5,-2],[-5,0],[-4,3],[-7,2],[-24,-1],[-7,-3],[-1,-12],[4,-13],[7,-11],[6,-7],[5,-3],[5,2],[11,7],[0,2],[0,3],[0,2],[1,1],[2,0],[6,-4],[-6,-7],[-5,-10],[-11,-21],[-4,-13],[-3,-4],[-5,-1],[-28,6],[-10,0],[-8,-5],[-15,-21],[-7,-8],[-18,-13],[5,-7],[-1,-14],[-2,-15],[-2,-15],[1,-6],[3,-20],[0,-12],[2,-7],[3,-7],[-1,-13],[-8,-15],[-11,-11],[-8,-2],[-6,3],[-6,-1],[-13,-7],[-5,-6],[-1,-4],[3,-2],[5,3],[-2,-7],[-5,-9],[-2,-4],[-2,-9],[0,-3],[3,-2],[10,-15],[17,-16],[7,-10],[5,-13],[2,-11],[0,-12],[-3,-25],[-1,-25],[-2,-10],[-3,-7],[-5,-7],[-5,-5],[-4,-1],[-5,3],[1,4],[7,11],[6,6],[3,5],[-1,8],[-4,2],[-15,-11],[-2,2],[-5,5],[-2,2],[-3,-1],[-4,-3],[-7,-1],[-11,-7],[-4,-5],[-2,-5],[-1,-6],[-1,-6],[0,-5],[2,-7],[1,-6],[0,-4],[0,-7],[14,-6],[4,-4],[9,-11],[13,-4],[4,-11],[5,-15],[3,-16],[-5,-10],[-5,-5],[-14,-9],[-4,-4],[-4,3],[-1,5],[3,5],[4,4],[2,7],[-3,14],[-9,7],[-19,7],[1,2],[1,8],[1,3],[-18,11],[-2,0],[-7,-4],[-2,1],[-4,3],[-2,0],[-1,-2],[0,-2],[-1,-5],[0,-5],[0,-2],[-2,0],[-4,1],[-5,-1],[-3,0],[-3,-1],[0,-7],[1,-4],[23,-37],[5,-6],[11,-10],[3,1],[2,2],[1,0],[8,-13],[1,-14],[-3,-10],[-10,-11],[-12,-9],[-19,-6],[-12,-10],[10,24],[1,15],[-4,7],[-4,-3],[-5,-8],[-8,-35],[-7,-11],[-23,2],[-9,-9],[-7,-1],[2,-11],[3,-5],[5,0],[5,4],[-2,4],[5,2],[4,-3],[4,-1],[4,10],[2,-6],[-1,-5],[-2,-5],[2,-9],[-14,-7],[-62,-59],[-30,-39],[-19,-46],[-28,-58],[-19,-43],[-34,-119],[-6,-30],[-9,-40],[1,-15],[5,-33],[3,-46],[16,-27],[18,-21],[19,-15],[19,-10],[24,-12],[24,-1],[3,-11],[-8,-14],[-12,-8],[-14,-22],[3,-1],[3,0],[4,2],[4,4],[35,33],[-2,27],[-6,28],[-1,23],[6,12],[5,18],[8,7],[7,3],[20,1],[3,2],[3,5],[4,1],[3,0],[3,-2],[2,-2],[3,-4],[7,-12],[3,-4],[2,-1],[6,1],[5,-5],[7,1],[3,-2],[2,-3],[41,-45],[25,-10],[35,-4],[0,-10],[13,-12],[3,-11],[14,-29],[-21,-18],[-3,-5],[-1,-18],[2,-13],[-1,-14],[-7,-8],[-7,-7],[-8,-4],[-7,-16],[-3,-14],[-5,-10],[-9,-20],[-32,-15],[-15,-11],[-21,-20],[-9,-22],[-3,-12],[-3,-42],[5,-42],[-3,-23],[9,-31],[12,-25],[-5,-20],[-6,-28],[-6,-16],[-3,-12],[-1,-37],[2,-23],[-2,-34],[14,-25],[16,-3],[6,-4],[6,-1],[9,-3],[13,14],[12,3],[3,6],[16,-9],[17,4],[11,5],[3,-5],[-3,-7],[4,-5],[3,-8],[8,-7],[-5,-11],[-5,-13],[-2,-14],[1,-18],[10,-18],[-5,-8],[-4,-11],[2,-9],[3,-16],[3,-5],[2,-5],[-1,-6],[-5,-2],[-3,-4],[2,-7],[3,-6],[4,-3],[5,-15],[11,-26],[0,-6],[2,-7],[2,-7],[-1,-14],[-4,-12],[2,-26],[2,-7],[1,-13],[4,-11],[-17,-8],[-4,-11],[-17,-4],[-15,-5],[-13,-14],[-3,-2],[-2,-3],[-2,-7],[-2,-8],[-1,-5],[-1,-3],[-6,-11],[-4,-10],[-1,-13],[-16,3],[-17,4],[-13,14],[-8,5],[-10,4],[-13,22],[-5,9],[-5,24],[-13,13],[-15,29],[-15,3],[-7,2],[7,3],[7,3],[10,3],[10,8],[7,8],[5,12],[5,13],[1,12],[2,8],[12,5],[21,2],[19,14],[1,14],[16,19],[16,5],[7,9],[9,23],[-4,10],[-16,2],[-7,10],[-8,-2],[-9,-21],[-4,-29],[-9,-14],[-20,14],[-27,18],[-16,2],[-9,-8],[-6,-18],[-16,-8],[-4,2],[-5,5],[-4,3],[-4,-1],[-3,-3],[-6,-9],[-2,-4],[-2,-5],[-3,-4],[-3,-3],[-4,0],[-4,-6],[-4,-8],[23,-21],[12,-5],[3,-12],[6,-10],[10,-12],[-5,-6],[-4,-4],[-9,-3],[-3,-2],[-6,-1],[-2,-5],[0,-10],[-13,-3],[-6,-4],[-15,-11],[-26,-13],[-27,-16],[-3,-2],[-6,-3],[-6,-12],[-7,-12],[-11,-11],[-3,-7],[-2,-7],[3,-5],[7,-9],[-6,-11],[-10,-16],[0,-27],[-14,-21],[-5,-25],[-8,-17],[1,-18],[-9,-26],[-14,-28],[-9,-29],[-4,-16],[-5,-11],[-3,-32],[-1,-25],[-3,-28],[-1,-53],[2,-14],[5,-16],[1,-21],[4,-32],[6,-33],[8,-29],[9,-31],[8,-10],[16,-16],[7,-13],[17,-33],[1,-19],[7,-12],[14,-14],[7,-11],[1,-7],[-5,-6],[-5,-5],[-3,-4],[0,-7],[3,-13],[3,-11],[-1,-7],[-5,-11],[-7,-5],[-5,-3],[-5,-2],[-3,-4],[-7,-10],[-2,-4],[-1,-5],[-3,-8],[-3,-6],[-5,-4],[-3,-5],[-8,-7],[-12,-10],[-4,-6],[-3,-5],[-10,-6],[-4,-5],[-9,-27],[-5,-10],[-8,-6],[-5,-1],[-5,1],[-6,2],[-4,4],[-4,4],[-16,-6],[-30,0],[-31,-14],[-13,-1],[-8,5],[-4,5],[-9,6],[-4,7],[-1,6],[-1,13],[-1,5],[-17,16],[-23,0],[-49,-16],[-42,-21],[-2,-2],[-3,-5],[-54,-51],[-11,-18],[-19,-17],[-23,-36],[-18,-23],[-6,-12],[-4,-5],[-5,-4],[-16,-5],[-12,-11],[-18,-24],[-14,-26],[-3,-20],[-9,-29],[-11,-26],[-5,-13],[-16,-110],[0,-34],[6,-27],[-3,-4],[-4,-5],[-6,-11],[7,-5],[8,-10],[7,-13],[5,-13],[1,12],[-4,11],[-5,11],[-4,11],[9,4],[7,-17],[11,-44],[-3,-10],[1,-34],[-4,-13],[-8,1],[-11,10],[-10,15],[-5,11],[-3,-2],[-2,-3],[-2,-3],[-3,-4],[5,-4],[2,-5],[-1,-6],[-4,-6],[5,1],[5,1],[4,0],[3,-6],[1,-4],[-1,-14],[0,-6],[1,-7],[2,-7],[2,-6],[3,-4],[4,-2],[5,4],[5,-2],[-4,-17],[0,-8],[2,-8],[4,-2],[5,1],[4,-3],[-2,-13],[-3,-5],[-5,-4],[-5,-6],[-2,-9],[2,-9],[13,-23],[-2,18],[5,12],[7,5],[3,-5],[1,-14],[1,-12],[2,-7],[2,-5],[0,-5],[-2,-7],[5,-13],[1,-11],[0,-12],[2,-13],[-12,10],[-3,0],[-3,-2],[-2,0],[-5,0],[-2,1],[0,3],[0,4],[-2,4],[-7,8],[-36,27],[-8,8],[-4,10],[2,13],[6,9],[7,7],[4,8],[-12,-6],[-5,-5],[-9,-15],[-5,-2],[-5,3],[-6,4],[-12,5],[-11,-1],[-32,-15],[-4,-4],[-5,-7],[-9,-20],[-8,-9],[-8,2],[-8,4],[-10,1],[-4,-4],[-9,-10],[-5,-3],[-5,-1],[-12,-5],[-44,-34],[-37,-48],[-37,-55],[-8,-7],[-4,10],[-3,15],[-4,12],[-3,11],[4,13],[-4,4],[-11,24],[-8,12],[-4,3],[-5,2],[-5,-1],[-3,-2],[-2,-4],[-3,-5],[-5,-4],[-11,-5],[-4,-6],[-3,-5],[-3,-7],[-1,-7],[5,-3],[6,-3],[-1,-6],[-4,-8],[-2,-8],[2,-15],[8,-8],[10,-2],[8,1],[-2,7],[-3,5],[-8,9],[7,4],[7,-2],[7,-4],[7,-2],[7,-1],[4,-3],[3,-6],[4,-11],[-3,-4],[-3,-4],[-3,-2],[-3,-2],[5,-8],[2,-5],[-2,-4],[-3,-7],[-6,-9],[-4,1],[-3,5],[-6,3],[6,-20],[0,-5],[-3,-5],[-11,-2],[-4,-3],[-2,-12],[6,-7],[9,-3],[7,0],[0,-5],[5,-6],[2,-5],[1,-8],[-1,-5],[-3,-3],[-4,0],[1,-12],[-3,-12],[-6,-9],[-6,-4],[-6,-2],[-10,8],[-10,10],[-2,4],[1,-7],[2,-6],[2,-6],[3,-5],[-6,-10],[0,-5],[9,-11],[9,-1],[8,-1],[1,-5],[-1,-6],[-2,-10],[1,-6],[0,-5],[-1,-4],[-3,-5],[5,-7],[2,-1],[-3,-7],[-11,-5],[-5,-4],[0,-4],[1,-10],[-1,-3],[-2,-4],[-6,-4],[-3,-4],[5,-3],[6,4],[6,7],[6,4],[6,-1],[5,-6],[8,-17],[-6,-4],[-8,-14],[-5,-2],[2,-7],[3,-5],[4,-3],[4,-2],[2,-3],[0,-7],[-1,-7],[-2,-3],[-3,-2],[-9,-11],[-4,-3],[-17,0],[3,-15],[-6,-6],[-8,-4],[-1,-12],[4,-5],[5,-3],[3,-5],[-3,-9],[-6,-8],[-3,-6],[-2,-6],[-2,-3],[-10,4],[-3,1],[-1,-5],[-1,-6],[0,-13],[1,-5],[2,-6],[1,-4],[-1,-3],[-7,-9],[-3,-6],[-1,-5],[-1,-6],[0,-7],[1,-26],[-6,-11],[-5,-4],[-9,-11],[-3,-13],[-4,-2],[-17,-28],[-2,-12],[-1,-9],[-3,-4],[-23,-20],[-3,-6],[-2,-15],[-2,-7],[-3,-6],[-6,-5],[-3,-7],[-4,-15],[-7,-7],[-1,-5],[2,-9],[-2,-4],[-8,3],[-9,-8],[-8,-15],[-6,-5],[-12,-26],[-13,3],[-9,-7],[-20,-7],[-20,-24],[-12,-27],[-5,-17],[4,-12],[-4,-17],[-8,-8],[-16,2],[-10,-13],[-13,-21],[-5,-13],[-3,-13],[-4,-8],[-17,-18],[-16,-23],[-13,-9],[-14,-17],[-22,-32],[-13,-22],[-12,-8],[-7,-13],[-4,-12],[-5,-4],[-4,-10],[-7,-10],[-9,-15],[-8,-15],[-13,-13],[-4,11],[10,16],[19,44],[2,20],[-3,11],[1,16],[0,9],[-5,7],[-10,-1],[-1,9],[-1,9],[5,23],[1,22],[-8,9],[-10,24],[-4,5],[-14,1],[-4,3],[-5,3],[-4,5],[-3,6],[-3,13],[-1,14],[0,45],[0,7],[-1,6],[-2,3],[-3,6],[-1,3],[-1,2],[-1,0],[-1,1],[-1,3],[0,2],[2,4],[-2,14],[0,12],[0,25],[1,8],[2,12],[1,6],[0,7],[-2,12],[0,6],[4,77],[-5,108],[-13,153],[-18,111],[-6,14],[-5,13],[-8,19],[-2,6],[-4,22],[3,0],[2,-2],[2,-3],[3,-3],[5,-8],[2,0],[1,1],[1,0],[2,-1],[3,-7],[2,-7],[0,-8],[-1,-11],[6,6],[7,9],[5,12],[2,12],[-4,8],[-20,3],[-8,3],[-7,12],[-3,10],[-8,15],[-3,18],[-6,21],[-19,80],[-15,81],[-3,63],[-12,102],[-1,42],[-4,51],[-14,122],[-4,39],[-1,10],[-1,42],[-1,12],[-2,21],[-5,34],[0,12],[-7,25],[-8,44],[1,11],[-1,15],[-3,27],[-18,79],[-22,132],[-25,203],[1,13],[1,12],[0,12],[-8,25],[-2,12],[-16,231],[0,47],[4,41],[5,52],[6,36],[5,34],[8,167],[4,24],[5,19],[0,8],[0,12],[0,7],[1,5],[6,20],[3,6],[3,4],[4,2],[3,3],[1,7],[-5,5],[0,11],[3,12],[3,5],[4,43],[9,26],[31,174],[4,10],[3,12],[9,29],[8,22],[11,34],[21,39],[10,8],[4,1],[-1,-6],[-25,-41],[-4,-12],[-1,-18],[5,13],[11,22],[7,9],[14,14],[3,7],[1,7],[-1,5],[0,5],[8,7],[12,5],[10,6],[20,16],[11,11],[10,10],[2,9],[11,19],[6,15],[0,20],[1,20],[5,12],[6,3],[5,-12],[3,-4],[10,-2],[5,-4],[3,-13],[2,-5],[2,2],[10,20],[0,5],[2,9],[1,5],[5,9],[6,11],[17,38],[14,34],[13,36],[14,35],[7,21],[-3,18],[-4,53],[-9,37],[-2,23],[-2,7],[-21,37],[-10,9],[-10,2],[-10,-6],[15,26],[50,49],[4,0],[5,-8],[6,-18],[4,-4],[53,-21],[19,1],[23,6],[22,13],[15,23],[9,20],[2,7],[1,6],[0,12],[1,6],[4,13],[13,20],[6,11],[-1,4],[-2,6],[-1,3],[15,1],[8,-1],[12,-13],[6,-4],[44,-8],[31,4],[31,18],[15,3],[15,-13],[7,-20],[5,-9],[5,-1],[2,9],[-4,9],[-11,12],[1,13],[-5,6],[-7,2],[-7,0],[5,8],[20,16],[5,6],[23,35],[35,30],[31,42],[36,25],[19,22],[11,5],[15,18],[21,16],[24,35],[8,6],[2,2],[1,6],[1,6],[4,2],[5,-3],[2,-5],[2,-7],[3,-5],[4,-4],[4,-2],[1,3],[-3,9],[-3,4],[-5,3],[-4,5],[-2,8],[4,12],[46,61],[6,12],[5,8],[6,3],[20,5],[3,3],[0,3],[-1,4],[-1,3],[0,1],[3,8],[9,9],[4,6],[8,16],[7,10],[1,4],[0,4],[2,8],[4,7],[5,4],[5,2],[5,4],[5,7],[6,10],[4,12],[2,13],[1,20],[-1,7],[-1,6],[-4,12],[-1,6],[4,12],[14,21],[0,10],[3,7],[17,27],[83,90],[7,11],[3,7],[4,5],[6,3],[12,2],[9,3],[7,9],[31,56],[2,11],[1,15],[2,13],[4,11],[5,8],[6,4],[7,3],[13,1],[6,2],[15,15],[38,6],[12,7],[7,9],[15,20],[11,24],[2,5],[5,5],[7,4],[2,3],[2,7],[2,3],[5,3],[6,1],[6,2],[26,40],[25,24],[15,44],[22,22],[14,30],[18,21],[8,2],[5,1],[4,5],[17,5],[16,20],[9,4],[10,8],[32,35],[11,20],[4,19],[-1,15],[-2,5],[-5,6],[-7,-9],[-1,3],[4,14],[1,13],[5,14],[-1,15],[4,11],[15,9],[37,32],[11,10],[5,12],[6,9],[39,7],[6,3],[10,4],[8,11],[8,9],[4,6],[7,9],[10,4],[11,-2],[9,-7],[5,-1],[7,3],[7,5],[10,11],[11,2],[5,4],[12,20],[15,14],[7,13],[-3,5],[2,7],[8,5],[14,4],[15,7],[8,-11],[13,-4],[7,7],[-6,7],[6,0],[13,3],[4,6],[3,7],[5,1],[9,-6],[7,4],[15,1],[6,-3],[-4,-12],[-5,-17],[-5,-13],[5,-4],[6,2],[2,15],[4,12],[8,14],[2,12],[6,4],[6,6],[7,2],[8,5],[14,9],[13,4],[8,2],[12,-1],[11,-7],[8,8],[6,9],[3,11],[4,10],[-6,7],[-5,4],[-14,10],[-21,6],[-20,15],[-6,3],[-8,4],[12,18],[8,9],[17,7],[3,13],[-4,14],[2,9],[7,6],[5,9],[27,24],[38,24],[5,1],[4,4],[3,10],[1,8],[0,14],[1,7],[15,15],[7,12],[-2,15],[-13,28],[-7,9],[-22,10],[-7,1],[-5,-3],[-5,-5],[-4,-10],[-6,-6],[-4,10],[-2,8],[2,21],[11,25],[8,21],[5,14],[-1,11],[3,16],[3,13],[11,8],[7,4],[16,-5],[8,5],[8,9],[3,24],[2,13],[1,24],[0,13],[-2,7],[-3,7],[-2,7],[3,4],[3,4],[5,9],[3,14],[1,17],[-3,11],[1,14],[-4,9],[0,8],[3,2],[5,6],[1,9],[-1,9],[-1,7],[-1,7],[-1,8],[-3,9],[1,7],[4,3],[8,12],[-3,9],[-3,7],[0,7],[6,16],[-3,7],[1,13],[0,7],[1,6],[1,7],[6,3],[3,9],[9,8],[5,10],[9,9],[12,3],[14,6],[23,6],[7,18],[3,13],[13,4],[3,12],[7,11],[15,-1],[13,8],[28,-1],[34,-16],[11,-10],[13,-5],[11,-3],[19,-1],[13,1],[21,-15],[13,3],[3,-4],[8,-25],[5,-5],[4,-2],[5,1],[-2,7],[-2,10],[-4,8],[-16,17],[-13,6],[-20,14],[4,13],[13,5],[26,2],[34,2],[17,-8],[41,-5],[9,0],[6,9],[-2,0],[-48,7],[-32,9],[-68,-1],[-36,20],[-15,11],[-27,8],[-18,5],[-16,18],[-11,25],[-4,5],[-5,4],[-5,6],[-5,10],[-20,1],[-22,8],[-20,1],[-19,-18],[-22,0],[-34,-5],[-14,3],[-14,-14],[-12,-8],[-4,-14],[-11,-7],[-13,12],[-27,-1],[-12,-6],[-14,-3],[-12,1],[-12,-9],[-17,-10],[-13,-7],[-13,13],[-8,5],[-4,-16],[-12,-5],[-21,-11],[-5,-8],[4,-14],[1,-11],[-6,-11],[-9,-4],[-8,1],[-5,-6],[3,-8],[10,1],[6,-2],[-1,-8],[-1,-11],[14,-7],[7,1],[5,-7],[9,-8],[5,-6],[-1,-7],[-8,-2],[-15,1],[-7,-4],[-8,-5],[-2,-4],[0,-6],[5,-5],[-6,-7],[-5,2],[-6,-2],[-13,-13],[-12,-15],[-1,-7],[1,-7],[4,-20],[1,-9],[1,-5],[7,-8],[1,-5],[3,-6],[-1,-5],[-8,-4],[-5,-3],[1,-8],[5,-7],[15,0],[4,-1],[-1,-8],[-6,-4],[-5,-5],[-2,-10],[-1,-7],[-3,-6],[-2,-6],[-7,-9],[-7,-4],[3,-7],[-4,-11],[-6,-3],[-5,-6],[5,1],[6,-3],[-2,-11],[-8,-15],[-1,-10],[-3,-8],[-4,-8],[-6,-12],[-1,-6],[4,-7],[10,-7],[22,-11],[7,0],[4,-7],[26,-6],[17,-8],[7,-7],[5,-2],[-6,-8],[0,-10],[2,-11],[-10,-5],[-14,-3],[-6,-1],[-3,-3],[0,-5],[4,-3],[2,-7],[-7,2],[-3,6],[-8,3],[-8,-3],[-7,-5],[-7,-11],[-3,-8],[2,-3],[7,-5],[-2,-9],[3,-5],[-19,-18],[-7,0],[-10,12],[-4,20],[-3,4],[-8,0],[-6,1],[-1,6],[3,4],[-2,7],[-3,2],[-6,-1],[-4,-4],[0,8],[4,5],[6,5],[12,3],[1,7],[-3,11],[0,4],[-15,11],[-11,8],[-10,2],[-10,-4],[-19,-11],[-21,-16],[2,-13],[14,-9],[18,1],[5,-6],[3,-12],[-28,7],[-20,11],[-17,17],[-10,5],[-15,5],[-9,4],[-3,-2],[-6,-8],[-3,-18],[-7,-8],[-10,2],[-6,0],[4,-10],[6,-7],[-9,-7],[-6,-9],[-6,-6],[-7,4],[-3,-1],[-1,-7],[4,-13],[-3,-6],[-10,-5],[-3,-7],[-5,1],[-3,1],[-1,-8],[-6,-7],[-4,-9],[1,-5],[-2,-7],[-10,2],[-6,-2],[6,-11],[-9,-10],[-12,-17],[-13,3],[-4,8],[-7,22],[-3,2],[-2,-8],[1,-9],[1,-10],[7,-17],[-6,-13],[-8,2],[-4,13],[-6,8],[-5,-1],[-2,-6],[2,-10],[-4,-6],[2,-10],[-8,-12],[-22,-7],[-10,-10],[-3,-3],[-3,-1],[-6,-3],[-5,-1],[0,-11],[2,-6],[-3,-11],[-3,-4],[-1,-6],[-3,-4],[-6,5],[-6,2],[-5,1],[-5,3],[-5,-4],[-1,-7],[-2,-8],[-5,-5],[-7,-4],[-1,-2],[6,-6],[5,-3],[-2,-10],[-8,-1],[-6,-6],[-27,-31],[-10,-3],[-8,1],[-6,1],[-1,-4],[2,-7],[-3,-8],[-6,-5],[0,-13],[-13,-12],[-26,-18],[-8,-7],[-10,-12],[-7,-5],[-10,-1],[-1,-11],[-3,-12],[-8,-7],[-7,-21],[-4,-20],[-1,-15],[-9,-4],[-2,-8],[0,-9],[-7,6],[-8,2],[-4,12],[-10,5],[-7,-5],[-5,-11],[-2,-11],[-6,0],[-4,3],[-5,2],[0,8],[-6,2],[-5,-1],[-4,-9],[-7,-2],[-2,-8],[-7,-4],[-9,2],[-8,2],[5,14],[5,7],[-4,4],[-4,-3],[-5,-6],[-7,-6],[3,-13],[-7,-25],[-11,-6],[-8,-6],[-1,-7],[-1,-11],[-9,-4],[-3,-7],[-15,-7],[-9,-1],[-5,15],[7,23],[-3,6],[-1,7],[5,1],[9,-2],[7,2],[-2,7],[-2,5],[-1,7],[5,8],[7,2],[-4,7],[5,6],[0,7],[-2,6],[2,9],[-5,12],[-17,19],[7,2],[3,6],[3,4],[4,-7],[6,-5],[-2,17],[-1,12],[7,11],[1,5],[3,3],[6,-1],[6,2],[5,0],[4,2],[-2,7],[1,13],[5,13],[15,10],[-5,13],[4,8],[6,10],[-9,0],[-7,1],[-4,3],[-7,-6],[-8,2],[-11,-10],[-21,11],[-9,-4],[-11,-6],[-17,-9],[-2,-6],[-4,-6],[-6,-1],[-5,-8],[-3,-4],[-5,1],[-4,1],[-4,-4],[2,-5],[-2,-6],[-10,2],[-8,-2],[0,-6],[5,-4],[-2,-5],[-4,-1],[-5,5],[-6,4],[-4,2],[-9,-1],[3,3],[6,3],[2,8],[1,9],[-3,5],[7,3],[7,10],[10,13],[8,14],[7,8],[-5,7],[5,5],[2,10],[7,6],[-3,10],[-4,9],[2,8],[-3,9],[-3,8],[-3,7],[-7,6],[-2,6],[5,5],[5,3],[-3,10],[-10,9],[-7,-1],[-8,0],[-9,-15],[-5,5],[-8,1],[4,7],[0,7],[11,8],[-3,6],[7,2],[8,0],[10,1],[1,-5],[3,-3],[11,-5],[9,7],[3,5],[-17,3],[-9,10],[6,8],[11,6],[0,11],[-2,13],[9,2],[10,-1],[5,-1],[-1,5],[1,5],[5,5],[4,3],[6,12],[0,9],[-5,5],[-5,-2],[-5,0],[-5,1],[0,5],[6,2],[3,4],[5,3],[5,5],[3,4],[0,6],[4,1],[12,2],[13,4],[3,9],[5,6],[11,10],[-5,7],[-5,5],[0,7],[4,4],[6,8],[-5,8],[-2,3],[8,3],[6,9],[2,13],[-3,9],[-10,2],[-4,3],[19,14],[15,19],[9,11],[-4,7],[0,10],[-3,4],[-5,0],[-2,8],[8,5],[3,5],[-2,6],[0,7],[-5,2],[-1,5],[0,4],[3,2],[2,4],[-2,3],[-3,7],[-2,5],[-1,3],[-2,1],[-2,2],[-2,12],[2,4],[-5,-2],[-10,-1],[-7,-9],[-8,-3],[-4,-5],[0,-5],[-2,-3],[-10,-10],[-14,-2],[-6,-6],[-10,-6],[-10,-6],[-8,-20],[-7,-15],[-1,-7],[-4,-10],[-4,-1],[-1,-6],[-6,-9],[-6,-2],[-2,-6],[-5,-8],[-10,3],[-9,3],[-2,4],[-3,-6],[-1,-7],[-14,3],[-4,-2],[0,6],[-5,6],[-1,-11],[1,-10],[-6,1],[-9,-3],[-8,-5],[-8,-6],[-5,-7],[-10,7],[-6,6],[0,6],[-2,10],[0,7],[5,4],[3,9],[-2,12],[-1,8],[2,10],[3,12],[5,6],[-5,2],[-5,0],[-2,-5],[1,-9],[-11,-2],[0,-6],[-3,-11],[-7,8],[-7,4],[-7,7],[-6,11],[-6,1],[-2,6],[4,1],[8,4],[3,11],[-3,13],[-9,11],[-20,4],[-21,7],[-27,3],[-14,-1],[-13,0],[-5,-5],[-4,-3],[-18,1],[-7,-6],[-9,-9],[-5,-12],[2,-19],[-5,-3],[-10,0],[-13,0],[-5,7],[-17,1],[-19,-2],[-16,0],[-1,-5],[-6,-14],[-10,-6],[-6,9],[-8,6],[-9,5],[-22,3],[-18,-1],[-8,-8],[0,-8],[-17,-19],[-8,2],[-6,-9],[-11,-13],[-4,5],[-5,2],[-2,-5],[-6,-1],[-8,3],[-11,3],[-2,9],[-17,3],[-24,9],[-30,0],[-42,7],[-20,-6],[-20,-22],[-10,-18],[3,-10],[-1,-7],[-5,-3],[-11,9],[-14,-2],[-20,-11],[-23,-6],[-10,-4],[-10,-4],[-5,-8],[-3,-14],[-10,-17],[-11,-19],[-21,-15],[-14,-7],[-14,7],[-7,0],[-12,-2],[-2,-5],[6,-2],[-6,-8],[-3,-9],[0,-11],[-3,-13],[-2,-6],[-3,-5],[-2,-32],[6,-13],[1,-12],[-4,-11],[-1,-9],[-3,-11],[2,-4],[1,-7],[5,-4],[0,-16],[4,-7],[-3,-9],[-5,-3],[-3,3],[0,6],[-7,3],[-6,1],[-9,-2],[-7,-7],[-18,-12],[-23,-17],[-30,-40],[-48,-47],[-13,-17],[-4,-17],[-6,3],[-8,-15],[-5,5],[-5,-6],[8,-11],[-9,-14],[-3,-3],[-4,-10],[1,-7],[1,-8],[-2,-10],[-3,-6],[0,-6],[2,-6],[-1,-8],[3,-10],[-1,-9],[-1,-22],[-10,8],[-2,6],[-11,1],[-3,-3],[-6,-12],[-5,-5],[-15,-23],[-12,1],[-5,-5],[-9,-4],[-6,-7],[-11,-3],[-4,-7],[-4,-13],[-4,1],[-5,-2],[-5,-5],[-1,-3],[-2,-8],[-2,-5],[2,-3],[0,-5],[0,-4],[-2,0],[-5,-1],[-2,-6],[-2,-2],[-3,-2],[-5,7],[-4,1],[-6,0],[-10,-3],[-11,-8],[-7,-12],[-10,-4],[-15,-27],[-13,-16],[-30,-17],[-22,-9],[-19,-28],[-6,-8],[-8,-10],[-5,-11],[1,8],[2,5],[2,6],[-3,-2],[-5,-6],[-1,-9],[-2,-11],[-3,-4],[-2,-6],[-4,-6],[-19,-16],[-20,-39],[-23,-49],[-8,-17],[-5,-31],[0,-7],[-1,-8],[-2,5],[0,11],[5,33],[8,18],[10,20],[-4,2],[-10,-2],[-11,-5],[-11,-5],[-7,-8],[0,-16],[8,-17],[6,-14],[2,-10],[-1,-13],[5,-13],[0,-10],[2,-6],[-4,-10],[-6,-1],[-15,-17],[2,8],[2,7],[6,13],[-10,4],[-32,-7],[-9,-3],[-8,-10],[2,-11],[-1,-12],[-1,-11],[-1,-16],[2,-16],[1,-16],[7,-19],[10,-21],[20,-46],[2,-6],[-6,5],[-6,10],[-11,14],[-2,15],[-10,10],[-6,-1],[-6,-17],[-1,-5],[0,-14],[-1,-5],[1,-7],[-5,-8],[-5,-5],[1,-5],[-4,-10],[-11,2],[-5,-5],[-4,-13],[7,-13],[6,-8],[4,-10],[35,-12],[10,3],[6,9],[6,10],[3,9],[-2,6],[0,5],[1,5],[2,6],[5,4],[8,1],[2,-8],[0,-9],[-4,-10],[-3,-6],[-2,-5],[3,-6],[4,-6],[4,-6],[0,-4],[2,-7],[11,-4],[14,-3],[6,8],[-1,8],[-11,7],[-11,11],[-5,10],[0,14],[-3,16],[-2,7],[3,0],[8,-4],[11,-9],[16,-7],[10,6],[11,9],[4,3],[26,-31],[12,-12],[8,0],[9,3],[5,-4],[5,-5],[7,4],[4,4],[1,8],[4,4],[5,1],[2,0],[5,-3],[6,-6],[4,-3],[-1,-14],[3,-9],[7,-7],[7,-10],[7,-7],[19,-10],[6,-9],[6,-12],[-4,-5],[-1,-3],[7,-10],[0,-5],[-5,3],[-6,-1],[-6,-7],[1,-10],[3,-10],[7,-15],[-5,-7],[-8,-2],[2,-5],[3,-7],[8,-16],[-10,2],[-19,7],[-10,1],[-6,-6],[-1,-5],[-13,8],[-13,3],[-9,-2],[-13,0],[-12,3],[-4,-5],[-2,-6],[-2,-11],[5,-14],[-4,-1],[-11,5],[-20,4],[-4,6],[-6,3],[-6,6],[-5,6],[-5,3],[-3,8],[-20,10],[-17,-1],[-12,-12],[-9,0],[-9,-2],[3,-7],[1,-14],[1,-8],[2,-19],[-4,4],[-4,-3],[-6,-11],[-8,-5],[-8,3],[-16,6],[-8,-6],[-21,-17],[-11,-5],[-6,1],[-5,2],[-10,9],[-4,2],[-10,3],[-5,3],[-7,10],[-13,29],[-8,11],[-10,5],[-21,3],[1,7],[3,4],[5,8],[8,1],[4,7],[1,9],[-14,-11],[-6,-1],[-8,-18],[-6,-3],[-12,6],[-6,9],[-10,4],[-14,7],[-15,-2],[-10,3],[-10,3],[-2,-7],[2,-12],[-4,-21],[-2,-12],[-9,0],[-5,0],[-4,-2],[0,-11],[4,-1],[8,7],[6,-4],[2,-11],[-2,-7],[-3,-8],[-19,-3],[-14,3],[-15,-4],[-21,0],[-15,-9],[-8,-5],[-3,-8],[-2,-10],[-5,-6],[-8,-8],[-1,-14],[-1,-10],[-5,-7],[-3,-5],[1,-6],[0,-7],[2,-4],[-5,-8],[-4,7],[-9,5],[-10,2],[-10,-3],[-11,-2],[-3,-5],[-5,4],[-3,3],[-10,11],[-13,2],[-17,4],[-10,19],[-14,12],[-11,4],[-7,8],[0,14],[-4,0],[-7,6],[-1,2],[-6,-3],[0,-4],[3,-4],[1,-5],[-4,-8],[-7,-2],[-18,-11],[-24,-8],[-3,-15],[1,-19],[-13,-19],[-25,-12],[-29,0],[-29,-2],[-14,-8],[-12,-5],[-23,0],[-24,9],[-13,-2],[-14,2],[-14,-14],[-13,-5],[-5,4],[4,4],[2,6],[-3,8],[-10,17],[-4,6],[-4,8],[-7,11],[-5,13],[-3,11],[2,10],[-14,11],[-4,5],[-5,10],[-2,8],[-4,10],[-8,11],[-4,7],[4,7],[5,-2],[9,-9],[8,-1],[10,-1],[9,7],[14,7],[12,2],[5,8],[11,12],[10,10],[15,-4],[22,-4],[13,3],[11,0],[14,-11],[16,-6],[12,10],[8,2],[11,-3],[13,-6],[8,5],[11,5],[16,-4],[17,5],[19,19],[13,8],[16,2],[11,1],[-3,12],[-8,4],[-9,7],[-12,15],[-17,13],[-3,2],[-4,-3],[-4,-5],[-10,-3],[-12,-5],[-14,-3],[-4,1],[-6,11],[-6,7],[-5,4],[-21,-3],[-13,2],[-5,-1],[-8,4],[-1,9],[1,4],[2,4],[8,8],[-7,11],[-5,9],[-6,4],[0,6],[0,8],[-2,11],[-9,16],[-7,14],[-16,12],[-13,2],[-5,2],[-2,2],[-3,5],[-2,6],[0,6],[-5,6],[-9,5],[-3,3],[0,3],[8,0],[-2,4],[-8,12],[-7,4],[-7,-2],[-5,-8],[-2,-11],[-7,-7],[-13,2],[-14,8],[-10,2],[-16,1],[-19,0],[-16,-6],[-19,-7],[-8,2],[-4,-8],[3,-9],[9,-7],[-6,-15],[-1,-2],[2,0],[3,-1],[2,-3],[2,-4],[-1,-10],[-4,-8],[-14,1],[-9,0],[-18,-10],[-11,5],[4,6],[6,9],[-3,11],[-7,-1],[-9,5],[-9,2],[-15,-3],[-23,-6],[-9,6],[21,11],[19,6],[17,2],[17,9],[1,15],[-16,-3],[-16,-5],[-16,-4],[-9,3],[-15,6],[1,9],[-8,0],[-6,5],[-1,6],[-2,13],[-13,6],[-20,6],[-9,8],[-9,2],[-30,2],[-20,11],[-25,17],[-68,24],[-45,10],[-44,-13],[-13,12],[-3,-1],[-3,2],[1,9],[-7,-3],[-6,-5],[14,-21],[-9,-5],[-43,-30],[-16,-14],[-14,7],[-7,-1],[-5,-5],[-2,-11],[3,-6],[13,-3],[4,-10],[-3,-14],[-2,-2],[-2,-3],[11,-10],[12,-3],[11,-8],[4,-22],[-1,-11],[-4,-1],[-10,10],[-7,5],[-6,0],[-10,-5],[-7,-4],[-10,-10],[-11,-4],[-3,-1],[-1,4],[-1,5],[-2,2],[-10,-4],[-2,0],[-5,2],[-6,5],[-6,7],[-2,8],[1,11],[3,7],[9,9],[-12,4],[-8,-11],[-9,-15],[-3,-9],[-8,-13],[-5,-13],[-1,-10],[-1,-7],[1,-20],[4,-12],[14,-5],[7,3],[7,12],[8,12],[2,-3],[0,-7],[-4,-20],[6,1],[4,8],[2,9],[4,7],[4,0],[6,-3],[10,-9],[1,-12],[-16,-23],[-1,-12],[9,-14],[-3,-14],[-5,-10],[-14,12],[-12,14],[-12,-3],[-3,-21],[-14,1],[-3,13],[-11,4],[-27,-15],[-33,9],[-9,4],[1,12],[-8,13],[-1,8],[3,9],[-5,12],[-2,15],[-7,2],[-9,8],[-33,7],[-58,-13],[-27,3],[-19,-9],[-15,-19],[12,-16],[4,-12],[-6,-16],[-14,-3],[-10,-1],[-10,4],[-8,9],[2,5],[-7,5],[-9,3],[-9,-2],[-8,-6],[-3,-11],[0,-10],[-2,-12],[-8,4],[-7,1],[-15,9],[-6,6],[-8,14],[-4,5],[-3,2],[-8,2],[-4,2],[-9,8],[-4,3],[-6,1],[-6,-1],[-8,-11],[-9,4],[-10,4],[-21,21],[-7,0],[-14,5],[-26,-4],[-7,-2],[-39,12],[-5,4],[-2,4],[0,7],[-2,3],[1,7],[-15,10],[-5,3],[-16,4],[-10,6],[-6,1],[-18,-2],[-23,-18],[-11,-17],[0,-22],[2,-27],[0,-12],[-4,-12],[4,-4],[2,-7],[0,-7],[-4,-6],[7,-4],[6,-11],[-7,-4],[-5,-15],[-11,8],[-11,2],[-11,5],[-13,-8],[-6,-13],[-10,3],[-13,-21],[-21,2],[0,12],[4,5],[-8,10],[-8,15],[-5,4],[-16,4],[-4,3],[-5,5],[0,11],[3,9],[2,11],[6,9],[6,10],[7,10],[10,8],[2,14],[6,11],[-5,11],[-19,-9],[-12,4],[-8,5],[-1,-11],[-1,-18],[-11,4],[-10,13],[-12,9],[-5,7],[0,8],[-6,-9],[-8,0],[-9,1],[-14,-6],[-25,-3],[-27,-9],[-8,2],[-3,3],[-3,4],[-21,0],[-26,-11],[-37,-12],[-66,7],[4,2],[3,0],[3,1],[2,6],[-54,0],[5,-7],[6,-3],[12,-3],[-67,0],[-24,4],[10,1],[6,0],[7,-1],[-2,6],[-6,4],[-11,3],[-7,-1],[-16,-8],[-5,0],[-42,7],[-53,3],[-10,11],[-17,-12],[-72,-38],[-25,-12],[-23,3],[-14,10],[-13,12],[-23,1],[-7,13],[-11,-2],[-7,-12],[2,0],[4,-4],[-75,-31],[-86,-45],[-89,-60],[-32,-40],[-17,-14],[-8,-7],[-11,-14],[-19,-32],[-46,-106],[-30,-48],[-25,-39],[-53,-44],[-40,-39],[-18,-13],[-13,5],[-9,-3],[-33,-24],[-9,-12],[-5,-4],[-5,-2],[-4,-3],[-45,-66],[-12,-22],[-9,-26],[-12,-47],[-29,-106],[-2,-14],[-3,-24],[-1,-14],[-11,-8],[-8,-6],[-8,-12],[-15,-8],[-9,-21],[-3,-2],[-6,9],[-6,1],[-10,-3],[-4,-7],[-12,0],[-14,-5],[-12,-8],[-5,-3],[-5,-5],[-9,-10],[-6,-5],[-13,-20],[-16,-35],[-18,-52],[-6,-14],[-22,5],[-11,-6],[-14,-8],[-16,-22],[-6,-29],[-6,-13],[-6,-12],[-7,-3],[-8,-8],[-8,-14],[-3,5],[-7,1],[-11,-10],[-7,-8],[-4,1],[-9,-1],[-20,-3],[-10,-9],[-13,-13],[-13,-17],[-8,-23],[-3,-13],[-1,-3],[-5,5],[-5,3],[-8,-5],[-7,-6],[-1,-10],[-3,-6],[3,-7],[-2,-23],[-6,-16],[-5,-7],[-7,-3],[-10,5],[-5,6],[-4,-5],[2,-6],[-3,-4],[-7,-1],[-12,-15],[-6,2],[-10,-3],[-10,-11],[-5,-9],[-6,-13],[-2,-24],[-5,-33],[3,-9],[3,-16],[-5,-4],[-6,10],[1,15],[1,24],[-9,-6],[-9,0],[-8,-6],[3,-14],[-6,-14],[-2,-6],[-1,-5],[-4,-4],[-2,-4],[-2,-6],[0,-6],[-3,-5],[-5,-7],[-7,-2],[-6,-3],[-11,-11],[-1,-11],[-2,-5],[-5,-7],[-1,-7],[3,-9],[-2,-7],[-2,5],[-6,1],[-4,-9],[-9,-1],[-10,-3],[-6,-10],[-2,-10],[-1,-8],[1,-9],[-2,-8],[3,-12],[6,-8],[4,-9],[4,-4],[9,-2],[7,1],[4,0],[3,-2],[-2,-7],[-6,-7],[-1,-11],[-9,3],[-8,13],[-4,-6],[-12,0],[-10,-2],[-3,-7],[0,-7],[-1,-6],[-1,-10],[-8,-3],[-13,-6],[-11,-3],[-6,-4],[-4,-10],[-3,-11],[-5,-19],[-5,-14],[-6,-26],[-11,-2],[-5,-6],[-4,-10],[-2,-11],[-5,-5],[-3,-5],[-1,-7],[1,-7],[-7,-6],[-23,-4],[-12,-1],[-20,-32],[-4,-3],[-4,-2],[-4,-3],[-4,-1],[-5,-10],[-3,-16],[0,-10],[0,-8],[-2,-3],[-2,-2],[-1,-6],[-2,-6],[-6,4],[-4,5],[-6,5],[-10,-4],[-12,-17],[-4,-10],[-10,-10],[-6,-3],[-7,-4],[-11,-14],[-19,-26],[2,-12],[-1,-4],[-6,-3],[-7,4],[-7,-1],[-6,-3],[-13,-10],[-6,-15],[-11,-9],[-4,-4],[-3,-6],[-7,-19],[-7,-12],[-7,-2],[-10,1],[-12,-8],[-13,-18],[-6,1],[-6,4],[-4,0],[-3,-5],[-1,-7],[-1,-6],[-5,-8],[-12,2],[-7,-2],[-9,-9],[-3,-5],[-11,-14],[-8,-14],[-8,-13],[-2,-16],[-2,-21],[-10,-6],[-9,-24],[-5,-12],[-8,-6],[-4,0],[0,-8],[-4,-7],[-5,-2],[-5,-4],[-2,-5],[-9,-8],[-9,-10],[-10,-8],[-10,-7],[-8,-8],[-6,-10],[-4,-5],[-1,-5],[-13,-14],[-7,0],[-9,-1],[-15,-19],[-14,-14],[-10,3],[-21,-11],[-16,-9],[-19,-18],[-3,-16],[-18,-15],[-15,-14],[-20,-31],[-13,-20],[-4,-15],[-6,-6],[-3,-22],[26,-59],[-3,-1],[-1,-2],[-4,-5],[2,-4],[7,5],[6,3],[14,0],[87,-29],[4,-3],[3,-7],[2,-21],[3,-9],[4,-8],[4,-5],[7,-4],[36,9],[27,-3],[42,19],[21,5],[12,0],[4,-3],[4,-5],[4,0],[8,3],[59,-10],[9,4],[9,12],[11,27],[7,10],[4,-7],[-1,-9],[-2,-6],[-2,-6],[2,-9],[4,-5],[6,-1],[5,1],[4,5],[4,8],[3,5],[4,4],[5,1],[5,-1],[4,-2],[1,-5],[-4,-8],[4,-7],[4,-6],[5,-5],[6,-3],[-3,-7],[-9,-16],[0,-11],[-7,-5],[-2,-5],[1,-5],[9,-12],[-6,-1],[-1,-7],[2,-9],[4,-9],[0,-7],[-3,-4],[-6,-1],[-9,8],[-4,0],[-4,-5],[-2,-9],[1,-7],[3,-6],[2,-6],[-2,-9],[5,-10],[9,-10],[5,-10],[-6,-11],[-3,0],[-5,2],[-4,-2],[-1,-8],[3,-6],[10,-10],[4,-4],[-4,-6],[-6,-7],[-4,-7],[0,-7],[4,-7],[4,-5],[4,-6],[2,-8],[-2,-15],[-6,-17],[-5,-15],[4,-10],[-17,-18],[-9,-12],[0,-12],[1,-7],[-2,-8],[-6,-12],[-1,-7],[0,-5],[5,-49],[0,-14],[2,-7],[5,-5],[10,-6],[7,-9],[3,-1],[5,2],[4,3],[4,4],[3,6],[1,9],[2,9],[4,3],[5,1],[7,7],[16,6],[2,-1],[7,-3],[6,1],[2,-1],[8,-7],[8,-11],[9,-7],[9,3],[7,10],[5,12],[14,54],[3,12],[5,9],[4,27],[1,4],[2,2],[0,1],[-1,5],[-1,3],[-3,1],[-5,0],[-18,-7],[-9,3],[-3,18],[-2,6],[-21,37],[8,5],[24,31],[8,6],[8,2],[7,4],[7,13],[-2,4],[6,9],[7,5],[7,2],[7,4],[3,4],[1,4],[1,3],[7,2],[6,3],[3,0],[7,-1],[20,-11],[26,0],[6,5],[6,9],[7,6],[7,-6],[1,-8],[-4,-7],[-11,-11],[-27,-42],[-2,-11],[-8,-8],[-7,-10],[-6,-12],[-6,-14],[0,-6],[1,-6],[-1,-5],[-5,1],[-4,2],[-1,4],[1,5],[0,8],[1,2],[1,0],[1,2],[-1,5],[-1,3],[-2,2],[-3,3],[-4,1],[-5,-1],[-19,-8],[-4,-4],[-4,-5],[-1,-5],[0,-6],[0,-7],[-3,-6],[3,-6],[2,-6],[3,-4],[6,-4],[16,1],[5,-1],[5,-4],[30,-38],[7,-4],[6,-6],[3,-1],[2,1],[5,6],[2,1],[6,-1],[11,-6],[11,-3],[5,-3],[5,-1],[11,8],[14,6],[-6,-10],[-11,-22],[-7,-8],[-27,-13],[-8,-8],[-1,-3],[-1,-4],[0,-3],[-1,-4],[-1,-2],[-5,-1],[-2,-1],[-4,-6],[0,-6],[0,-7],[-1,-5],[-6,-10],[-1,-3],[-1,-10],[0,-6],[0,-5],[0,-5],[-2,-8],[-4,-3],[-6,-2],[-5,-4],[-3,-9],[-1,-8],[-3,-3],[-27,2],[-9,-2],[-9,-7],[-3,-7],[-4,-8],[-3,-7],[-4,-3],[-4,0],[-5,-2],[-4,-4],[-2,-8],[5,-12],[11,-11],[19,-11],[10,-2],[18,8],[67,6],[67,21],[36,38],[28,13],[5,5],[14,18],[15,12],[3,4],[4,11],[12,67],[2,12],[5,12],[8,11],[20,13],[26,23],[3,6],[2,0],[2,-5],[0,-8],[-6,-21],[1,-12],[6,-25],[-2,-30],[-12,-25],[-44,-61],[-7,-14],[-3,-15],[1,-10],[1,-4],[-2,-2],[-19,-14],[-4,-4],[-4,-7],[-1,-4],[1,-15],[-2,-6],[-6,-14],[-1,-5],[3,1],[12,17],[4,2],[34,-9],[9,2],[10,8],[8,10],[7,12],[6,14],[30,85],[11,52],[0,11],[-2,10],[-2,12],[4,14],[10,21],[8,25],[3,23],[0,25],[-1,28],[-26,-19],[-3,3],[3,12],[11,24],[3,13],[1,4],[1,5],[0,3],[0,4],[-2,5],[0,3],[1,5],[4,13],[1,7],[-4,14],[-8,9],[-17,9],[16,11],[5,1],[6,-1],[54,-37],[43,-17],[20,-11],[39,-9],[20,3],[75,42],[17,18],[7,4],[10,0],[9,-4],[1,-6],[-1,-11],[-1,-17],[2,-8],[4,-6],[16,-16],[3,-1],[2,1],[5,6],[2,1],[-2,-7],[3,-8],[22,-31],[5,-3],[10,-2],[52,-34],[1,-7],[-2,-6],[-2,-6],[-1,-7],[2,-7],[6,-7],[7,-6],[5,-3],[6,0],[3,-2],[0,-5],[-2,-9],[-6,-10],[-8,-11],[-6,-13],[1,-13],[28,-46],[5,-4],[12,-7],[26,-22],[3,-4],[2,-4],[1,-5],[1,-2],[-1,-2],[1,-9],[0,-5],[1,-6],[3,-7],[8,-12],[20,-12],[17,-23],[87,-53],[16,-5],[4,-5],[-14,2],[-15,10],[-5,0],[-7,-3],[-5,-8],[2,-13],[-3,-6],[1,-5],[3,-2],[4,3],[4,7],[3,2],[3,-2],[4,-5],[3,-7],[2,-6],[3,-5],[15,-4],[9,-6],[-2,-11],[6,-8],[9,-6],[6,-6],[5,-9],[5,-6],[7,-3],[35,-1],[8,-3],[1,-6],[-2,-9],[-2,-14],[-6,-9],[-4,-6],[-1,-5],[3,-5],[5,2],[4,4],[3,3],[4,-6],[-2,-7],[-2,-6],[1,-7],[3,-5],[1,-5],[1,-5],[0,-6],[-2,-2],[-11,-8],[-3,-5],[-7,-19],[4,-3],[1,-4],[-1,-3],[-4,-2],[-5,1],[-9,9],[-5,2],[-8,-2],[-6,-7],[-6,-8],[-6,-7],[0,-5],[4,-3],[6,-1],[10,0],[-2,-7],[-9,-13],[-9,-8],[-5,-3],[-5,0],[-6,3],[-37,33],[-4,6],[-5,5],[-7,4],[-12,5],[-3,3],[-4,17],[-3,4],[-23,6],[-13,-1],[-7,-9],[19,-13],[15,-15],[9,-11],[4,-4],[16,-4],[4,-5],[0,-13],[-2,-4],[2,-6],[2,-13],[3,-11],[1,-2],[2,-2],[2,-4],[3,-3],[4,0],[7,1],[3,-2],[2,-3],[2,-4],[3,-9],[2,-4],[2,-4],[4,-3],[14,-4],[3,-1],[5,-8],[3,-3],[3,-1],[17,2],[0,-4],[-13,-29],[-3,-12],[2,-5],[5,-3],[6,-8],[6,-9],[3,-8],[2,-12],[1,-10],[2,-8],[5,-7],[-3,-6],[-2,-4],[-3,-14],[-1,-9],[0,-7],[-1,-7],[-3,-8],[-10,-23],[-6,-11],[-22,-23],[-5,-12],[3,-16],[11,-34],[6,-9],[13,-8],[7,-7],[2,-11],[3,-7],[20,-15],[3,-10],[2,-3],[6,-9],[3,-4],[4,-2],[14,-5],[4,0],[11,4],[3,0],[1,1],[2,0],[1,-2],[-2,-8],[0,-3],[1,-3],[1,-1],[0,-3],[1,-6],[1,-7],[1,-2],[-1,-7],[-4,2],[-6,11],[-4,1],[-2,-1],[-6,-8],[-19,-11],[-4,-7],[-3,-6],[-7,-7],[-3,-8],[6,-6],[-11,-17],[-4,-10],[-2,-9],[3,-11],[6,-6],[7,-4],[6,-6],[10,-13],[3,-8],[-1,-9],[-5,-5],[-15,-5],[-3,-4],[-3,-7],[-14,-6],[-6,-14],[-17,-20],[-2,-10],[-4,-22],[-2,-11],[-10,-17],[-3,-10],[2,-7],[-6,-8],[-34,-12],[-15,-18],[-5,-3],[-2,-5],[0,-11],[1,-20],[-3,-41],[-1,-1],[-1,-3],[0,-3],[-1,-1],[-10,0],[-2,2],[-3,0],[-3,-2],[-6,-8],[-1,-7],[2,-9],[1,-10],[2,-4],[7,1],[10,9],[5,-2],[-1,-8],[-2,-9],[-2,-8],[-1,-9],[-3,-8],[-5,-5],[-5,-4],[-22,-1],[-12,-4],[-5,-13],[2,-18],[2,-9],[2,-5],[1,1],[-2,-9],[-11,-6],[-2,-7],[1,-3],[3,-6],[2,-5],[0,-6],[-4,-29],[0,-6],[8,-12],[3,-11],[1,-11],[-1,-25],[-1,-5],[-8,-5],[-2,-4],[0,-6],[3,-12],[1,-6],[-2,-11],[-5,-6],[-6,-3],[-7,-1],[-2,-2],[-16,-30],[-4,-9],[0,-4],[5,-12],[0,-5],[-1,-6],[0,-7],[-3,-9],[-10,-17],[-4,-8],[-2,-6],[0,-3],[1,-3],[-2,-6],[-2,-4],[0,-7],[0,-5],[4,-3],[2,-5],[8,-35],[-5,0],[-4,-6],[-4,-19],[-7,-18],[0,-9],[4,-11],[14,-30],[2,-9],[0,-6],[-1,-5],[0,-4],[3,-12],[1,-14],[6,-19],[-2,-8],[-4,-8],[-3,-13],[1,-9],[3,-13],[2,-13],[-1,-12],[-3,-12],[-1,-13],[1,-13],[4,-12],[4,-10],[10,-19],[4,-4],[3,2],[5,8],[2,2],[10,2],[4,2],[1,-13],[-8,-13],[-20,-18],[-12,-16],[-5,-5],[-10,-5],[-3,-5],[-3,-10],[3,-4],[-8,-16],[-3,-10],[1,-10],[-6,-5],[-3,-5],[0,-7],[12,-34],[4,-6],[6,-4],[7,-2],[5,-4],[2,-13],[-2,-7],[-8,-31],[1,-3],[2,-6],[1,-3],[3,-22],[2,-10],[3,-11],[3,-14],[-3,-12],[-8,-17],[-1,-6],[0,-8],[0,-7],[-2,-3],[-3,-2],[-2,-6],[-9,-20],[-2,-11],[-3,-33],[-3,-35],[1,-6],[-23,0],[-5,-5],[1,-5],[3,-3],[4,0],[6,5],[1,-4],[0,-6],[-2,-3],[-1,-2],[-8,-10],[-1,-6],[-1,-6],[1,-7],[1,-5],[2,2],[2,3],[2,3],[0,-2],[1,-1],[1,-1],[-4,-9],[-1,-10],[1,-9],[4,-9],[-4,-6],[-1,-10],[-1,-12],[-3,-3],[-4,-2],[-10,0],[0,-3],[11,-9],[2,-3],[0,-9],[-1,-4],[-13,-7],[-14,-4],[-6,-5],[4,-3],[5,2],[3,0],[3,-7],[-2,-3],[-3,-5],[-2,-6],[2,-2],[4,1],[2,2],[2,-1],[-1,-6],[3,-1],[3,1],[-2,9],[3,9],[4,7],[7,5],[2,2],[2,1],[2,-3],[0,-2],[1,-6],[0,-2],[3,-4],[2,-1],[3,1],[-6,-20],[-6,-17],[-1,-12],[-8,-11],[-16,-17],[-3,-9],[-2,-6],[0,-6],[-1,-8],[-1,-7],[-5,-13],[-3,-8],[-3,-16],[-2,-18],[-2,-35],[2,-27],[0,-14],[-6,-8],[1,-6],[4,-11],[1,-5],[-1,-14],[-1,-12],[-3,-15],[-3,-7],[-12,-10],[-9,-15],[-3,-2],[-2,-3],[-3,-14],[-1,-5],[-1,-6],[-3,-12],[-2,-5],[-3,-1],[-9,-3],[-12,-9],[-48,-68],[-3,-2],[-9,-14],[-2,-5],[-4,-15],[-8,-20],[-9,-16],[-25,-36],[-12,-22],[-3,-6],[-3,-4],[-20,-18],[-9,-12],[-36,-69],[-4,-12],[-3,-17],[-5,-14],[-2,-6],[0,-7],[-1,-11],[-1,-6],[-4,-9],[-6,-8],[-5,-8],[-2,-14],[-1,-3],[-6,-15],[-6,-20],[-4,-13],[-5,-9],[-3,-11],[-1,-14],[0,-12],[-1,-10],[-2,-10],[-3,-7],[-2,-3],[-6,-7],[-2,-5],[-2,-7],[0,-6],[-1,-5],[-2,-6],[-1,-3],[-3,-3],[-12,1],[-3,-1],[-2,-2],[-2,-3],[-64,-118],[-12,-13],[-6,-9],[-9,-23],[-8,-25],[-6,-27],[-4,-27],[1,-12],[0,-6],[-3,-2],[-2,-2],[-21,-46],[-3,-13],[-9,-42],[-2,-7],[-3,-7],[0,-16],[2,-25],[-3,-27],[-9,-16],[-22,-22],[-8,-18],[-25,-98],[-2,-26],[-2,-10],[-18,-43],[-7,-12],[-6,-5],[-2,-1],[-4,-3],[-4,-4],[-2,-4],[-1,-4],[0,-11],[-1,-5],[-4,-7],[-11,-16],[-4,-15],[-24,-37],[-4,-10],[-4,-20],[-14,-25],[-5,-23],[-4,-12],[-9,-9],[-32,-53],[-8,-7],[-27,-32],[-17,-32],[-19,-50],[-3,-5],[-6,-3],[-4,-7],[-21,-51],[-5,-4],[-7,-2],[-5,-5],[-44,-60],[-28,-30],[-4,-6],[-3,-11],[-3,-28],[-2,-12],[-6,-12],[-12,-12],[-4,-6],[-1,-3],[-2,-6],[0,-2],[-2,0],[-4,1],[-2,-1],[-2,-3],[-22,-48],[-1,-1],[-2,0],[-2,-1],[-1,-3],[0,-3],[0,-4],[1,-2],[1,0],[-1,-6],[0,-10],[-1,-4],[-11,-12],[-1,-3],[-4,-14],[-2,-3],[-3,-1],[-3,-1],[-3,-3],[-2,-3],[-1,-5],[-1,-20],[-5,-7],[-5,2],[-5,6],[-7,3],[-3,-2],[-1,-5],[-1,-7],[-1,-6],[-2,-3],[-2,-2],[-3,-2],[-3,-1],[2,-7],[2,-5],[3,-3],[1,-3],[-2,-4],[-3,-3],[-3,-3],[-9,-3],[-4,-5],[-7,-19],[-2,-12],[2,-27],[-2,-9],[-2,-3],[-3,-1],[-2,-2],[-2,-13],[-2,-10],[-1,-4],[-5,-11],[-12,-12],[-21,-15],[-4,0],[-7,4],[-3,-1],[-1,-2],[-1,-7],[-1,-3],[-10,-9],[-12,-6],[-5,-5],[-2,-5],[-3,-7],[-2,-6],[-7,-5],[-1,-7],[2,-13],[-2,-11],[-4,-12],[-9,-19],[-6,-5],[-7,-3],[-6,-5],[-2,-9],[-2,-13],[-5,-7],[-5,-5],[-4,-6],[-1,-7],[0,-7],[0,-6],[2,-6],[0,-5],[-1,-6],[-5,-10],[-2,-12],[0,-10],[-2,-8],[-6,-8],[-11,-6],[-6,-7],[-2,-9],[1,-12],[-1,-3],[-1,-2],[-1,-1],[-2,-1],[-2,-20],[-1,6],[-4,7],[-4,5],[-4,-2],[-1,-7],[2,-7],[1,-9],[-2,-9],[4,-1],[2,1],[0,-5],[-1,-5],[2,0],[8,5],[0,-4],[-8,-28],[-4,-4],[-1,-5],[-12,-23],[0,-4],[-1,-5],[-2,-3],[-8,-2],[-2,-4],[-2,-6],[-2,-5],[-2,-4],[-1,-2],[-5,-2],[-2,0],[-2,0],[-2,-2],[-2,-4],[-7,-8],[-2,-2],[-5,3],[-1,6],[1,7],[0,4],[-3,4],[-3,3],[-4,-1],[-1,-8],[-2,-3],[-8,-2],[0,-5],[4,-4],[3,0],[4,-2],[2,-6],[-1,0],[0,-8],[-1,-14],[-1,-6],[-2,-3],[-3,-1],[-1,-3],[-6,-18],[-1,-6],[-1,-10],[-2,-4],[-2,-5],[-3,-3],[-2,-4],[0,-6],[0,-2],[1,-1],[0,-2],[1,-4],[-1,-3],[-1,-2],[-2,-1],[0,-2],[-4,0],[-16,-7],[-23,-17],[-3,-4],[-2,-10],[-5,-5],[-12,-7],[-6,-6],[-11,-15],[-18,-38],[-5,-6],[-6,4],[-7,-5],[-7,-9],[-4,-9],[-2,-4],[-7,-3],[-3,-3],[-2,-3],[-5,-9],[-3,-4],[-7,3],[-8,-9],[-15,-22],[-13,-15],[-6,-3],[-9,-8],[-5,-8],[-3,-2],[-3,-1],[-4,4],[-2,-2],[-3,-6],[-14,-11],[-4,-1],[-4,-1],[-5,-3],[-4,-4],[-3,-4],[-1,-4],[-1,-7],[-1,-4],[-2,-2],[-5,-2],[-2,-2],[-3,-8],[-2,-9],[-4,-8],[-10,-6],[-6,-7],[-34,-54],[-4,-1],[-4,3],[-7,8],[-2,1],[-4,0],[-3,-2],[-6,-8],[-7,-4],[-18,-19],[-1,-12],[-2,-5],[-3,4],[-8,15],[-2,3],[-8,0],[-2,0],[-6,-4],[-2,0],[-4,4],[-1,-6],[-1,-4],[-2,-3],[-1,-3],[-6,-4],[-2,0],[-6,4],[-3,-3],[-1,-3],[-1,-3],[-2,-4],[-3,-3],[-5,-4],[-7,-8],[-7,-4],[-12,-5],[-16,1],[-5,-1],[-17,-12],[-5,-4],[-8,-18],[-4,-7],[-6,-4],[-26,0],[-7,2],[-4,5],[-3,6],[-4,8],[3,3],[5,7],[3,2],[4,-1],[4,-3],[3,1],[0,7],[-3,7],[-6,10],[-13,15],[2,7],[1,2],[-5,4],[-8,0],[-14,-4],[-3,-2],[-3,-5],[-1,-4],[3,-2],[1,-2],[-4,-18],[-3,-5],[-3,-4],[-3,-1],[-6,2],[-5,4],[-3,5],[-3,15],[2,10],[-2,8],[-5,4],[-5,3],[3,11],[2,14],[0,12],[-3,7],[-7,0],[-10,-17],[-6,-3],[1,-3],[2,-3],[1,-2],[-3,-3],[-13,3],[-5,0],[-3,-2],[-3,-3],[-3,-5],[-3,-2],[-3,4],[-6,8],[-7,4],[-2,3],[-2,9],[0,8],[0,8],[-1,6],[-4,3],[-16,4],[-4,3],[-3,1],[-2,-2],[0,-4],[0,-4],[-1,-2],[-7,-4],[-4,-3],[-2,-6],[1,-2],[1,-6],[2,-4],[-2,-3],[0,-3],[0,-3],[2,-3],[-3,-3],[-7,-2],[-2,-4],[-2,0],[-6,22],[0,5],[2,7],[0,9],[-1,19],[2,28],[0,16],[-2,12],[3,5],[1,7],[-2,7],[-2,6],[4,0],[4,5],[1,7],[-2,8],[2,2],[3,4],[1,2],[-2,3],[-2,1],[1,5],[0,13],[0,3],[3,-1],[3,-2],[2,0],[3,3],[4,9],[-2,8],[-4,7],[-12,9],[-3,4],[0,5],[3,3],[6,6],[2,3],[1,7],[1,2],[1,2],[-3,7],[-9,11],[-2,2],[-5,-4],[-2,-20],[-6,-5],[-2,-2],[-3,-13],[-2,-5],[-2,-4],[-25,-23],[-6,-1],[-6,-5],[-5,-11],[-9,-21],[-4,-6],[-11,-12],[-5,-8],[-5,-6],[-7,-2],[-6,3],[-6,7],[3,5],[3,4],[3,4],[1,7],[-14,-18],[-3,-2],[-4,2],[1,6],[8,22],[6,27],[3,9],[4,6],[9,13],[6,3],[5,2],[1,4],[0,4],[2,5],[10,16],[2,6],[0,10],[-2,6],[-4,0],[-4,-5],[-3,-10],[-1,-9],[-2,-6],[-7,-2],[3,13],[-6,8],[-17,8],[-3,-1],[-8,-6],[-3,-1],[-4,2],[-2,5],[1,5],[3,4],[-3,3],[-3,-1],[-3,-3],[0,-5],[-2,-4],[-7,-8],[-3,-6],[-2,-17],[0,-12],[-2,-11],[-7,-9],[0,-4],[5,-1],[5,-3],[1,-6],[-4,-6],[-5,-1],[-4,6],[-3,7],[-3,4],[-3,-2],[-1,-3],[-1,-4],[-1,-3],[-6,-8],[-1,0],[1,-8],[4,1],[5,5],[3,6],[-3,-16],[-5,-14],[-22,-45],[-7,-6],[1,-9],[1,-10],[-1,-6],[-5,-2],[-4,5],[-4,4],[-5,-5],[-2,-9],[0,-9],[2,-8],[-1,-8],[-1,1],[-4,-1],[-7,-5],[-4,0],[-3,0],[-6,10],[-4,-4],[-1,-8],[-1,-10],[6,-2],[1,-6],[-3,-16],[17,6],[3,0],[0,-6],[-4,-6],[-6,-5],[-7,-9],[-9,-5],[-3,-7],[-2,-8],[0,-7],[1,-7],[-3,-5],[-15,11],[-7,-9],[-5,-15],[-2,-12],[-3,-15],[3,-7],[1,-2],[3,-2],[0,-2],[0,-2],[-1,-3],[-1,-3],[0,-2],[-2,0],[-4,0],[-3,-4],[-2,-10],[-2,-4],[0,-9],[-1,-2],[-1,-3],[2,-3],[4,-2],[2,-5],[-1,-3],[2,-2],[0,-1],[-4,0],[-2,-2],[3,-7],[0,-3],[-1,-7],[-2,-2],[-2,4],[-3,1],[-2,0],[-2,3],[-2,5],[-2,2],[0,5],[2,0],[2,6],[0,6],[-6,-2],[-4,7],[-5,2],[0,18],[-2,12],[-4,0],[-3,-7],[-2,-9],[-4,-1],[-10,4],[-11,-3],[-12,-8],[-6,-12],[-5,-3],[-7,-1],[-4,2],[-12,13],[-4,5],[6,5],[7,-1],[7,-1],[6,-13],[6,1],[4,7],[1,13],[-5,3],[-9,-2],[-5,3],[-9,1],[-13,-6],[-4,2],[2,5],[10,7],[2,10],[-3,5],[-7,-2],[-6,-4],[-3,-5],[-7,0],[-3,6],[-4,5],[-7,-8],[-10,-13],[1,-12],[6,0],[14,-17],[1,-5],[-2,-16],[7,10],[2,2],[3,-2],[1,-3],[1,-4],[1,-3],[16,-13],[3,-6],[1,-5],[4,-2],[1,-5],[-1,-6],[-2,0],[-1,2],[0,2],[-2,-2],[-2,0],[-1,-1],[-1,-5],[0,-2],[2,-8],[0,-4],[-2,-9],[-4,-4],[-5,-2],[-5,0],[-2,-5],[-5,-31],[-3,-12],[-2,-16],[-3,-9],[-8,-25],[-1,-1]],[[63674,77906],[10,-21],[9,-11],[2,-7],[-2,-6],[-4,-1],[-5,4],[-4,6],[-5,3],[-10,3],[-10,8],[-5,11],[7,11],[-5,4],[-3,-3],[-5,-14],[-9,-7],[-3,-5],[1,-8],[-3,-3],[-1,-2],[-2,-7],[8,-1],[5,-6],[2,-12],[2,-36],[-2,-5],[-6,7],[-2,5],[-4,12],[-3,3],[-5,0],[-2,-5],[-2,-5],[-2,-2],[-7,-3],[-11,-13],[-6,-4],[0,-4],[5,-14],[1,-3],[-1,-5],[-3,-6],[-2,-2],[-2,3],[-1,13],[-2,12],[-5,9],[-5,5],[1,-8],[1,-12],[0,-9],[-4,6],[-5,14],[-4,5],[-2,-4],[5,-10],[5,-15],[2,-13],[-5,-3],[-4,8],[-3,12],[-4,10],[-7,2],[7,-14],[3,-10],[-1,-12],[-2,-6],[-3,0],[-2,5],[-1,7],[-4,12],[-10,13],[-9,6],[-3,-8],[-2,0],[-3,4],[-2,-1],[-3,-8],[0,-3],[0,-4],[-1,-3],[-2,-2],[-8,0],[4,-4],[9,-4],[4,-4],[9,-21],[1,-4],[1,-3],[-2,-6],[-3,-7],[-3,-3],[-4,-2],[-4,-3],[-6,-8],[0,-4],[1,-2],[1,-2],[6,7],[6,2],[11,-1],[4,-3],[0,-7],[0,-7],[-3,-11],[0,-5],[2,-5],[2,-2],[0,-9],[7,-17],[3,-11],[-5,6],[-3,1],[-6,-7],[-6,-1],[-2,-4],[1,-11],[-6,9],[-3,12],[2,12],[5,8],[-5,-1],[-4,3],[-6,10],[-2,1],[-2,2],[-1,1],[-2,0],[-1,2],[-1,7],[-1,3],[-7,17],[-6,7],[-5,-2],[-9,-8],[-2,-4],[-2,-4],[-4,0],[-5,1],[-3,-1],[-2,-5],[-7,-9],[-9,-22],[-2,-7],[-4,5],[-4,0],[-2,-4],[1,-7],[4,-2],[9,-1],[2,-5],[-4,-5],[-27,3],[-4,-2],[-1,-5],[0,-8],[0,-9],[-2,-8],[-2,-4],[-6,-5],[-4,-2],[-3,0],[-1,-2],[1,-8],[1,-5],[2,-5],[2,-5],[0,-9],[-7,9],[-10,8],[-9,3],[-4,-12],[-12,15],[-3,1],[-5,-3],[-5,-11],[-5,-3],[-2,-2],[-2,-4],[-1,-7],[-2,3],[-3,7],[-1,2],[-1,2],[-2,3],[-2,2],[-2,0],[-2,-2],[-1,-2],[-6,-2],[-3,-4],[-6,-13],[-1,2],[-2,8],[-3,7],[-4,1],[-3,-4],[-1,-6],[0,-16],[-3,-12],[0,-6],[5,-4],[-2,-7],[-2,-5],[-3,-5],[-3,-4],[-11,27],[-2,8],[-2,9],[-3,5],[-9,4],[-1,2],[-2,5],[-1,1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-3,1],[-2,0],[-1,1],[-2,4],[-2,4],[-1,8],[-1,4],[-3,6],[-4,5],[-4,3],[-7,4],[-6,0],[-2,-5],[1,-11],[3,-2],[4,2],[3,0],[0,-2],[4,-13],[0,-1],[2,-2],[2,0],[2,-3],[-1,-7],[0,-5],[1,-6],[0,-4],[-3,-2],[-2,0],[-1,-2],[1,-3],[1,-3],[-1,-9],[4,-5],[11,-5],[-5,-18],[0,-8],[2,-12],[-7,0],[-3,7],[-5,22],[-3,11],[-13,24],[-3,2],[-13,-1],[-3,3],[-4,9],[-7,4],[1,5],[3,5],[2,3],[3,1],[11,-1],[-7,8],[-15,2],[-3,8],[-2,2],[-3,1],[-3,-1],[-2,-6],[1,-4],[8,-12],[1,-3],[-1,-8],[1,-3],[2,-4],[2,-4],[1,-1],[3,1],[1,0],[2,-3],[3,-7],[1,-3],[13,-3],[5,-3],[5,-10],[-1,-4],[1,-6],[2,-7],[3,-15],[1,-4],[0,-5],[-1,-3],[-4,-5],[-1,-2],[-2,-3],[-6,8],[-4,13],[0,13],[-4,-5],[0,-8],[1,-4],[1,-4],[7,-20],[3,-10],[0,-1],[-1,0],[-9,-15],[-1,-6],[0,-5],[0,-14],[0,-5],[-5,-5],[-17,3],[-7,-2],[-3,-7],[4,-4],[13,-2],[4,-2],[1,-4],[-2,-6],[-2,-4],[-4,-3],[-1,-1],[-1,-2],[-1,-4],[-7,-22],[-3,-12],[-2,-11],[0,-47],[-2,-10],[-4,0],[-5,4],[-7,3],[-5,-6],[-3,-12],[-3,-27],[-4,-21],[-2,-12],[-7,-19],[-4,-25],[-3,-12],[-6,4],[-4,-6],[-3,-11],[-3,-12],[-1,6],[-4,7],[-4,5],[-4,-2],[0,-5],[4,-46],[-8,-31],[-1,-10],[0,-9],[-2,0],[-4,11],[-10,23],[-2,9],[-1,26],[-2,12],[-4,-4],[-2,-13],[3,-14],[3,-13],[2,-10],[-2,-8],[-9,-20],[-3,-11],[-5,6],[-5,-2],[-10,-12],[-6,-6],[-3,-9],[-4,-10],[-3,-7],[-11,5],[-7,-14],[-6,-17],[-6,1],[-2,-10],[-2,-40],[1,-2],[2,-5],[1,-5],[-1,-3],[-3,0],[-4,-1],[-3,-3],[-1,-6],[1,-13],[4,-24],[1,-12],[3,-8],[6,-10],[7,-9],[4,-3],[12,0],[7,2],[3,0],[42,-18],[6,-5],[5,-8],[3,-11],[4,-26],[3,-11],[3,-8],[4,-9],[5,-8],[4,-3],[3,-2],[5,-6],[4,-1],[3,4],[5,10],[4,3],[6,-11],[6,-26],[6,-45],[8,-21],[5,-10],[4,-5],[2,-7],[8,-38],[7,-18],[4,-10],[1,-14],[1,-5],[6,-3],[2,-7],[0,-5],[-4,-13],[-1,-6],[3,2],[4,2],[4,-1],[2,-5],[4,-21],[0,-6],[-2,-3],[-8,-3],[-3,-3],[-2,-5],[-2,-5],[-3,-13],[6,-16],[-1,-4],[-2,-3],[-2,-2],[-2,-3],[-6,-19],[-4,-18],[-4,6],[-1,2],[-2,0],[0,-10],[1,-14],[2,-12],[3,-5],[4,-4],[0,-10],[0,-9],[6,-5],[7,9],[4,20],[3,24],[0,22],[1,8],[1,6],[2,5],[3,6],[2,8],[-1,17],[1,7],[4,13],[3,16],[2,17],[1,17],[-1,13],[1,6],[3,8],[9,12],[2,2],[9,-1],[7,-2],[7,-5],[7,-8],[-16,-27],[-12,-38],[-16,-81],[-7,-64],[-8,-34],[-2,-24],[0,-25],[4,-20],[-2,-10],[-1,-11],[2,-9],[4,-2],[7,17],[6,3],[4,5],[2,-3],[2,-5],[1,-5],[0,-8],[-2,-4],[-1,-3],[-3,-11],[-5,-7],[-8,-8],[-4,-5],[-5,-13],[-1,-6],[2,-13],[-1,-5],[-2,-7],[0,-7],[1,-6],[0,-7],[-2,-5],[-4,-8],[-2,-3],[0,-11],[2,-36],[19,-35],[17,-11],[2,-7],[2,-8],[5,-7],[21,-23],[1,-3],[2,-14],[1,-3],[-1,-6],[2,-29],[0,-10],[1,0],[-1,-6],[0,-6],[0,-24],[3,-20],[7,-15],[24,-19],[8,-12],[20,-61],[15,-37],[8,-16],[16,-18],[4,-7],[35,-104],[8,-17],[10,-15],[5,-10],[2,-13],[1,-13],[3,-12],[17,-61],[8,-13],[13,-8],[13,-4],[12,-11],[7,-18],[1,0]],[[63494,75251],[-14,-34],[-19,-40],[-2,-3],[-12,-52],[-5,-17],[-6,-11],[-24,-24],[-15,-20],[-8,-7],[-32,-10],[-9,-9],[-6,-17],[-9,-42],[-6,-6],[-7,2],[-3,-5],[-2,-9],[-2,-11],[-4,-8],[-4,-4],[-2,-6],[-1,-12],[1,-12],[2,-8],[-2,-6],[-6,-6],[-12,-6],[-4,-1],[-19,-2],[-6,1],[-8,7],[-15,12],[-5,1],[-6,-3],[-9,-11],[-6,0],[-5,7],[-8,17],[-6,4],[-29,4],[-2,2],[-6,3],[-22,21],[-4,8],[-3,13],[0,31],[-1,15],[-2,7],[-8,17],[-2,6],[-1,6],[-1,5],[-2,4],[-1,1],[-5,6],[-2,8],[-1,10],[-2,11],[-4,8],[-5,2],[-6,-2],[-5,-3],[-11,-3],[-1,0],[-4,11],[-2,18],[-7,18],[-14,19],[-3,8],[-1,4],[-2,11],[-1,4],[-3,2],[-8,2],[-3,1],[-5,5],[-18,27],[-3,7],[-1,8],[-3,23],[-1,7],[-2,0],[-5,-8],[-2,-2],[-3,-4],[-11,-4],[-6,-3],[-9,-13],[-5,-5],[-5,0],[-5,7],[-2,10],[2,24],[-2,11],[-5,5],[-13,3],[-7,-1],[-6,3]],[[62897,75278],[-7,14],[-7,6],[-16,3],[-8,5],[-12,23],[-8,10],[-2,1],[-3,0],[-2,0],[-2,-1],[-17,-6],[-8,1],[-7,5],[-2,13],[-3,3],[-3,-2],[-5,0],[-3,2],[-4,6],[-2,1],[-3,0],[-3,-5],[-2,-1],[-5,0],[-4,4],[-3,6],[-8,31],[-4,6],[-19,8],[-31,34],[-11,8],[-8,9],[-3,14],[32,132],[1,13],[0,1],[-12,21],[-21,14],[-24,6],[-15,1],[-23,-11],[-12,-2],[-9,6],[-3,6],[-3,11],[-2,8],[-3,8],[-27,52],[-8,11],[-9,6],[-6,-1],[-8,-6],[-2,-2],[-5,-1],[-5,2],[-5,3],[-31,35],[-12,3],[-7,-15],[-2,-9],[-8,-28],[-4,-32],[-3,-4],[-3,5],[-7,35],[-3,8],[-8,14],[-5,5],[-10,9],[-1,1],[-10,5],[-12,3],[-14,-2],[-8,-4],[-22,-18],[-11,-6],[-25,0],[-6,-12],[-5,-17],[-6,-9],[-4,-6],[-3,-1],[-10,-5],[-26,-2],[-12,-9],[-4,-6],[-7,-15],[-4,-6],[-5,-1],[-5,4],[-4,4],[-6,8],[-11,4],[-14,2],[-13,5],[-7,16],[0,17],[8,12],[10,11],[6,14],[-3,18],[-5,4],[-7,6],[-26,10],[-5,5],[-12,21],[-4,7],[-19,14],[-11,4],[-26,12],[-53,24],[-6,4],[-5,5],[-30,44],[-13,15],[-3,6],[1,10],[2,9],[0,8],[-24,14],[-8,8],[-8,12],[-7,8],[-11,4],[-11,1],[-13,-7],[-9,0],[-5,-3],[-7,-11],[-4,-3],[-5,2],[-17,15],[-8,9],[-8,12],[-15,17],[-17,3],[-2,1],[-47,-7],[-8,-3],[-1,-1],[-22,-19],[-9,-3],[-9,1],[-9,4],[-8,6],[-8,4],[-9,0],[-19,-3],[-9,1],[-18,9],[-10,1],[-20,-4],[-10,1],[-8,7],[-12,20],[-7,7],[-15,7],[-4,4],[-3,6],[-3,14],[-3,6],[-8,5],[-20,-6],[-10,7],[-9,11],[-9,7],[-9,3],[-29,-6],[-8,3],[-38,48],[-9,8],[-29,15],[-14,17],[-2,3],[-8,6],[-11,-2],[-17,-14],[-9,-4],[-11,2],[-69,40],[-19,0],[-19,-8],[-6,-7],[-4,-9],[-19,-76],[-1,-11]],[[61107,76165],[-1,0],[-6,2],[-8,9],[-6,11],[-4,14],[-4,16],[-4,11],[-6,9],[-25,21],[-6,9],[-5,4],[-1,3],[-2,6],[-2,13],[-2,5],[-5,6],[-11,7],[-4,6],[-13,26],[-32,48],[-19,45],[-17,30],[-59,75],[-8,13],[-7,18],[-5,7],[-6,3],[-3,5],[-6,20],[-3,8],[-5,5],[-7,4],[-12,3],[-5,3],[-5,6],[-23,46],[-4,7],[-6,5],[-11,6],[-29,24],[-79,20],[-3,7],[-3,4],[-20,1],[-11,12],[-7,18],[-5,19],[-7,16],[-10,12],[-3,5],[-1,20],[-4,1],[-9,-5],[-3,2],[-4,5],[-11,20],[-5,5],[-2,5],[1,2],[2,2],[1,4],[0,4],[-1,2],[-16,30],[-3,5],[-5,2],[-13,13],[-6,4],[4,-14],[5,-11],[4,-11],[-1,-12],[-6,-8],[-8,-1],[-9,2],[-8,3],[-14,12],[-7,4],[-9,0],[-5,-7],[-2,-1],[-2,1],[-9,5],[-4,4],[-3,2],[-3,-4],[-6,5],[-4,8],[-3,8],[-5,8],[-14,11],[-4,7],[-5,18],[-10,40],[-7,13],[0,4],[6,10],[-2,11],[-5,11],[-27,37],[-7,4],[-4,1],[-4,3],[-4,3],[-4,6],[-11,6],[-9,11],[-24,10],[-30,26],[-12,3],[-5,-1],[-11,-6],[-6,-1],[-5,2],[-16,14],[-14,22],[-2,4],[-1,5],[-1,4],[0,4],[2,5],[3,2],[31,-2],[6,2],[10,11],[6,4],[3,1],[9,-1],[3,1],[4,6],[6,2],[16,13],[5,5],[3,4],[1,5],[1,7],[-1,5],[-3,4],[-2,1],[-2,-2],[-42,-15],[-3,5],[-4,12],[-2,12],[0,8],[5,6],[3,-9],[2,-14],[2,-7],[3,2],[0,5],[-1,7],[1,6],[2,3],[3,3],[5,2],[0,4],[-9,0],[-3,2],[-6,10],[-4,0],[-3,-2],[-3,-2],[-5,-6],[-11,-23],[-6,-3],[0,8],[4,15],[6,15],[36,31],[4,-6],[4,-1],[4,0],[5,-1],[48,-45],[11,-7],[7,-1],[2,-3],[-2,-6],[-4,-6],[-1,-1],[-1,-6],[-1,-16],[0,-3],[-3,-2],[-7,-1],[-2,-3],[1,-6],[1,-5],[2,-2],[3,-1],[6,1],[16,7],[13,0],[6,3],[2,7],[3,5],[18,-3],[-5,9],[-8,5],[-16,3],[-8,-1],[-4,1],[-3,4],[-2,8],[1,3],[53,1],[6,-3],[3,-9],[4,6],[10,3],[4,5],[4,6],[12,12],[4,5],[0,-5],[-4,-16],[3,2],[6,5],[2,1],[3,-1],[6,-2],[2,-1],[3,-1],[2,-4],[2,-6],[0,-5],[-2,-4],[-3,-2],[-6,-2],[6,-6],[5,4],[4,10],[4,12],[0,-3],[2,-4],[1,-4],[1,-1],[3,-1],[1,0],[2,-2],[10,-5],[3,0],[3,1],[2,3],[0,2],[-2,3],[-4,8],[-2,3],[-1,2],[-1,0],[0,1],[0,5],[1,2],[3,2],[0,2],[1,0],[5,10],[1,5],[1,4],[1,3],[3,0],[0,4],[-3,-1],[-5,-5],[-4,-1],[2,15],[-2,7],[-2,6],[-2,12],[4,-2],[5,-4],[3,-2],[0,4],[-5,4],[-7,13],[-4,3],[0,6],[4,29],[0,12],[-2,3],[-4,3],[-3,3],[-3,1],[-2,3],[-2,11],[-2,2],[-4,-4],[0,-9],[4,-9],[7,-2],[0,-5],[-5,-3],[-2,0],[0,-5],[1,-2],[1,-4],[1,-5],[0,-5],[1,0],[0,-1],[1,-2],[0,-3],[0,-2],[-2,0],[-1,0],[-1,0],[0,-29],[-3,-16],[-3,-6],[-3,-1],[-4,4],[-2,5],[0,7],[2,20],[0,19],[-2,35],[0,19],[2,21],[2,10],[2,6],[5,3],[2,-4],[-1,-7],[-4,-4],[7,-4],[3,-7],[6,-9],[2,1],[1,10],[4,-2],[1,-1],[0,7],[-2,3],[-3,1],[-2,5],[-3,8],[0,4],[2,1],[25,32],[11,9],[4,2],[4,5],[3,12],[5,20],[4,20],[8,65],[4,24],[6,18],[9,11],[18,10],[15,2],[2,-1],[-3,-3],[-11,-9],[-2,-2],[-2,-6],[6,5],[3,0],[3,-5],[-1,-6],[-6,-13],[-1,-6],[-1,-13],[1,-4],[5,-2],[4,1],[0,-3],[0,-10],[-2,-12],[-5,-12],[-11,-19],[-4,-15],[4,-8],[7,-1],[6,6],[-4,8],[1,9],[7,16],[6,34],[0,6],[3,4],[4,9],[2,11],[3,23],[2,7],[2,4],[2,7],[0,25],[1,11],[6,4],[6,3],[5,3],[6,2],[7,-3],[13,-25],[9,-7],[16,-21],[5,-5],[5,-2],[10,-1],[3,0],[6,3],[3,1],[4,-4],[3,-1],[2,1],[2,6],[2,13],[1,13],[-1,11],[-4,6],[-72,61],[-4,8],[-1,14],[-3,11],[-5,8],[-10,11],[-26,42],[-10,11],[-5,3],[-22,1],[-2,-1],[-2,-4],[1,-7],[9,-6],[2,-2],[-6,-9],[-7,5],[-18,29],[-12,26],[-4,5],[-6,8],[-4,17],[-3,20],[-7,28],[-3,18],[-3,17],[-7,10],[0,4],[1,0],[1,1],[0,2],[0,1],[9,-8],[11,-14],[12,-10],[8,4],[12,-8],[16,1],[15,7],[9,10],[10,18],[5,6],[6,3],[14,0],[5,3],[5,5],[9,14],[2,2],[3,-4],[2,-8],[1,-3],[4,-14],[2,-4],[41,-17],[32,4],[4,3],[2,11],[-3,11],[-6,8],[-3,4],[-11,9],[-12,7],[-12,1],[-11,-8],[0,-4],[-2,-7],[-1,-3],[-1,12],[-1,9],[-1,7],[2,4],[6,7],[2,3],[0,6],[-1,13],[1,6],[3,7],[6,8],[6,6],[5,3],[22,-8],[5,1],[10,6],[23,2],[6,3],[15,11],[10,4],[5,6],[7,16],[5,7],[5,2],[10,-2],[5,3],[6,5],[9,13],[13,21],[6,5],[2,3],[3,3],[3,0],[3,-2],[2,-7],[3,-3],[3,1],[3,3],[2,3],[2,1],[30,-10],[6,2],[2,9],[2,25],[2,9],[6,8],[12,5],[6,5],[-10,9],[-7,-1],[-6,-10],[-7,-14],[-5,5],[-1,6],[4,17],[-6,3],[-1,4],[1,20],[1,5],[2,1],[3,0],[2,3],[0,5],[0,18],[-5,15],[-10,4],[-12,1],[-8,6],[-5,-3],[-5,2],[-5,4],[-4,1],[-4,-2],[-7,-9],[-2,-1],[-8,-7],[-10,2],[-9,-3],[-4,-18],[1,-12],[1,-7],[-1,-3],[-13,-2],[-3,-3],[-4,-4],[-4,-3],[-5,-1],[-16,1],[-14,-8],[-10,-2],[-11,-6],[-5,-1],[-20,0],[1,-3],[0,-1],[1,-2],[2,-2],[0,-4],[-7,0],[-7,2],[-7,6],[-4,8],[4,4],[5,13],[3,3],[2,4],[6,16],[2,5],[10,7],[50,9],[4,3],[5,7],[4,8],[0,6],[-3,1],[-2,-4],[-4,-11],[-2,-2],[-2,0],[-5,0],[-45,-10],[-11,-7],[-10,-11],[-5,-18],[-2,-3],[-2,-1],[-4,-3],[-3,-4],[-1,-6],[-2,-7],[-6,-4],[-45,-9],[-12,-6],[-2,-3]],[[57819,83718],[5,11],[3,14],[1,14],[3,14],[2,6],[2,4],[2,4],[1,9],[-1,6],[-11,41],[-2,12],[-1,13],[1,21],[-1,6],[-2,5],[-15,22],[-2,5],[-1,6],[2,7],[7,8],[2,5],[-2,7],[-5,4],[-22,13],[-5,7],[-4,9],[-1,13],[0,26],[-3,11],[-27,22],[-5,11],[3,9],[6,14],[6,14],[-2,8],[-6,6],[-11,15],[-6,6],[-12,4],[-12,-4],[-23,-15],[-5,1],[-4,2],[6,20],[18,47],[1,6],[1,12],[0,6],[2,7],[5,13],[1,6],[-2,15],[-6,6],[-7,5],[-4,10],[5,9],[26,15],[8,9],[3,13],[2,18],[1,33],[-1,14],[-4,8],[-5,6],[-28,20],[-4,5],[-15,19],[-29,16],[-7,9],[1,10],[3,12],[0,14],[1,22],[-49,-1]],[[57597,84538],[-2,7],[-2,9],[-2,10],[0,7],[2,5],[3,2],[4,0],[4,2],[2,3],[0,2],[1,13],[-1,2],[0,2],[-1,7],[-1,3],[0,3],[1,6],[1,4],[2,4],[5,5],[23,9],[4,6],[1,8],[-3,16],[1,10],[3,6],[4,3],[7,5],[-6,6],[-2,1],[4,3],[5,0],[40,7],[17,9],[7,5],[3,8],[-2,12],[-4,5],[-29,13],[-2,4],[-1,8],[1,7],[2,6],[1,8],[-2,14],[-5,5],[-5,3],[-1,17],[2,15],[-1,17],[-15,23],[-11,27],[-5,13],[-7,16],[-3,28],[3,30],[17,45],[-16,83],[-14,73],[-5,30],[-6,27],[10,38],[9,34],[36,35],[24,24],[1,1],[5,9],[3,13],[12,24],[4,13],[16,50],[9,44],[5,13],[-2,11],[6,8],[15,10],[32,-1],[6,8],[-6,0],[-21,9],[9,5],[23,2],[12,11],[7,-5],[1,11],[-3,4],[-7,7],[-4,4],[-2,6],[-7,17],[-6,7],[-12,8],[-6,11]],[[57782,85696],[11,27],[4,30],[-5,27],[-10,21],[-5,13],[-2,13],[1,7],[3,16],[0,9],[14,19],[8,6],[11,-4],[10,-10],[7,-10],[4,-14],[2,-15],[4,-11],[31,-14],[11,-1],[9,10],[3,15],[1,16],[-1,32],[3,14],[6,13],[7,10],[7,5],[5,1],[5,-2],[5,-3],[8,-12],[10,-3],[8,-5],[6,-2],[3,-2],[1,-3],[3,-7],[1,-2],[6,-4],[4,2],[9,6],[5,0],[8,-6],[5,-2],[4,2],[11,16],[3,1],[7,-3],[3,2],[8,6],[2,0],[2,3],[10,15],[7,17],[-1,9],[-15,17],[8,-1],[2,1],[7,8],[14,22],[8,8],[12,5],[29,-3],[65,-17],[84,-17],[17,-13],[70,-28],[13,-1],[8,7],[7,16],[2,15],[-5,6],[3,9],[5,5],[3,5],[-3,9],[-7,6],[-58,7],[-15,10],[-4,22],[-2,0],[-4,5],[-4,7],[-2,8],[1,8],[2,5],[0,7],[-4,9],[-10,10],[-41,20],[-49,1],[-19,-14],[-11,-5],[-45,4],[-45,1],[-12,4],[-10,7],[-8,12],[-11,28],[-7,9],[-9,4],[-8,5],[-5,13],[-3,15],[-4,11],[-5,5],[-1,-5],[0,-7],[-2,-4],[-11,0],[-7,2],[-4,4],[-4,6],[-18,8],[-3,4],[-3,4],[-25,59],[-18,30],[-4,12],[4,3],[6,1],[5,-1],[4,-3],[2,-5],[1,-11],[2,-6],[5,-7],[21,-13],[11,-15],[7,-4],[5,3],[2,10],[-3,13],[-3,10],[-7,10],[0,12],[0,14],[-1,9],[2,12],[6,1],[-3,8],[-7,16],[-2,8],[3,7],[6,-1],[6,-4],[4,-2],[6,14],[-3,17],[-9,10],[-10,-6],[-5,-7],[-9,-10],[-5,-8],[-3,-2],[-15,1],[-4,-2],[-5,-5],[-4,-2],[-14,1],[-7,-3],[-2,-12],[-2,-13],[-6,0],[-6,2],[-5,-4],[2,-3],[2,-3],[1,-5],[1,-5],[-3,3],[-4,2],[-4,0],[-3,0],[-2,-2],[-1,-2],[-1,-2],[-6,-7],[-6,-12],[-6,-7],[-1,-1],[-6,1],[-6,2],[-3,1],[-2,-2],[0,-4],[-1,-4],[-3,-2],[-3,1],[-5,2],[-3,1],[-5,-1],[-8,-6],[-4,-1],[-37,2],[-9,7],[-2,16],[-5,-6],[-4,-10],[-4,-8],[-6,3],[1,3],[3,9]],[[57724,86330],[23,30],[25,27],[6,9],[40,55],[27,20],[26,40],[40,44],[12,10],[25,7],[11,18],[4,12],[6,9],[17,20],[8,15],[5,6],[16,9],[20,21],[15,12],[41,27],[20,19],[17,27],[4,8],[3,7],[8,13],[41,45],[5,12],[5,15],[5,9],[6,6],[18,8],[8,7],[40,49],[6,10],[6,20],[6,10],[38,40],[46,72],[54,84],[39,45],[35,50],[8,19],[4,5],[5,4],[10,7],[25,25],[32,23],[5,6],[4,7],[7,20],[4,6],[40,45],[5,13],[3,7],[4,5],[15,9],[6,7],[5,13],[6,28],[6,14],[12,20],[4,13],[14,56],[8,25],[11,22],[25,47],[-10,9],[-4,14],[-4,14],[-7,11],[-3,3],[-7,6],[-18,28],[-8,8],[-17,13],[-7,10],[-4,9],[-3,12],[-1,12],[-1,11],[-2,12],[-6,10],[-7,8],[-56,37],[-43,52],[-93,51],[-7,6],[-6,11],[-17,25],[-38,29],[-67,79],[-6,15],[5,4],[15,9],[42,18],[18,22],[17,39],[50,56],[12,18],[8,18],[2,20],[-7,25],[-5,11],[-3,10],[0,10],[5,11],[2,13],[-6,8],[-9,6],[-16,4],[-7,8],[-6,11],[-8,11],[-14,10],[-44,14],[-19,11],[-12,10],[-5,11],[2,16],[6,15],[2,14],[-9,11],[-13,8],[1,4],[-1,1],[-3,2],[0,1],[0,2],[0,2],[0,1],[-2,6],[-1,5],[0,11],[-1,1],[-2,1],[-1,1],[1,4],[2,2],[48,22],[6,6],[6,10],[2,12],[-5,11],[-11,12],[-3,4],[-3,7],[-1,3],[1,4],[1,7],[1,6],[1,4],[0,4],[-5,5],[-11,5],[-51,0],[-27,7],[-23,25],[-18,41],[-13,50],[3,25],[8,16],[11,10],[43,9],[7,9],[1,8],[-3,2],[-5,1],[-4,5],[1,6],[2,4],[3,4],[3,4],[-2,23],[-18,7],[-39,-1],[-13,12],[10,20],[29,36],[3,21],[-4,53],[3,22],[1,3],[4,8],[22,24],[4,8],[-9,12],[-21,14],[-8,12],[17,11],[67,18],[17,-10],[9,-3],[4,6],[1,13],[-1,14],[-8,55],[-2,11],[-10,25],[-9,30],[-3,9],[-11,25],[-2,11],[-8,45],[-6,24],[-7,15],[-23,28],[-39,63],[-16,35],[-7,19],[-5,20],[-1,12],[-4,25],[-2,10],[-32,45],[-3,5],[-1,6],[0,6],[-1,5],[-8,12],[0,1],[-12,32],[-64,93],[-11,41],[14,50],[91,143],[15,14],[2,4],[2,4],[3,11],[3,6],[110,124],[5,11],[8,27],[1,7],[2,39],[2,7],[2,6],[6,8],[-82,63],[-17,19],[-47,81],[-11,18],[-23,39],[-8,9],[-9,6],[-79,27],[-80,27],[-10,6],[-7,12],[-51,153],[-6,17],[-4,14],[1,9],[3,7],[71,110],[9,19],[15,45],[-21,18],[-22,3],[-56,-3],[-5,3],[-4,5],[-1,11],[13,1],[71,41],[34,9],[33,26]],[[58042,91349],[6,4],[9,1],[16,-1],[15,7],[15,14],[13,17],[6,10],[3,9],[5,21],[2,6],[5,9],[2,5],[1,6],[0,5],[0,5],[3,5],[3,16],[2,9],[12,14],[16,6],[47,2],[16,6],[18,16],[7,3],[41,1],[13,4],[6,5],[9,12],[34,28],[4,7],[1,6],[0,8],[1,8],[3,9],[2,4],[8,4],[5,5],[4,8],[2,10],[-1,14],[-2,11],[-3,5],[-17,6],[-6,4],[-2,5],[6,3],[12,1],[13,-2],[18,-10],[51,-45],[9,-5],[68,-9],[27,4],[12,10],[8,20],[1,10],[-1,46],[-7,9],[-5,8],[0,5],[0,6],[-2,10],[-2,7],[-7,10],[-1,24]],[[58566,91810],[53,-17],[29,-1],[9,-3],[9,-8],[4,-1],[3,1],[7,3],[3,1],[6,-2],[7,-5],[12,-12],[6,-3],[6,-2],[4,-5],[-1,-12],[-1,-4],[-2,-4],[-3,-3],[-2,-1],[-2,-2],[-1,-4],[0,-4],[-1,-4],[-4,-7],[-14,-16],[8,2],[8,7],[27,36],[7,6],[12,-6],[3,3],[3,3],[4,2],[71,-8],[-4,10],[-7,5],[-14,7],[-6,7],[0,4],[8,16],[-3,11],[-3,11],[1,11],[5,11],[7,5],[26,0],[6,-3],[10,-11],[16,-8],[18,-20],[8,-3],[1,1],[2,3],[3,3],[6,1],[0,2],[0,4],[0,4],[-2,4],[-12,16],[-15,13],[-4,6],[0,3],[0,10],[0,3],[-2,2],[-15,13],[-2,6],[3,9],[5,8],[6,3],[6,0],[19,-4],[52,-47],[8,-5],[25,2],[11,-3],[25,-14],[10,-11],[-6,-6],[1,-6],[5,-5],[28,-12],[28,5],[54,-7],[24,-12],[12,-11],[4,-1],[5,4],[5,2],[5,-3],[4,-9],[-1,-2],[-3,-20],[-1,-4],[-1,-4],[1,-4],[1,-4],[0,-2],[-1,-4],[-2,-3],[-9,-10],[-11,-9],[-46,-21],[-102,30],[-18,10],[-5,0],[-14,-5],[-41,8],[-9,-1],[-6,1],[-2,4],[0,4],[1,3],[2,2],[1,3],[0,8],[1,6],[0,6],[-1,8],[-4,8],[-4,5],[-5,3],[-5,-2],[-1,-4],[1,-6],[2,-8],[0,-8],[-4,-20],[-12,-9],[-26,-3],[8,-5],[9,-2],[8,-4],[2,-10],[-3,-9],[-6,-7],[-4,-7],[0,-9],[16,15],[16,5],[17,-4],[17,-8],[9,-2],[28,6],[3,-1],[5,-2],[3,-3],[2,-6],[-2,-3],[-7,-9],[-3,-5],[8,0],[23,-11],[-5,-8],[-6,-1],[-6,1],[-6,-1],[-4,-5],[-7,-12],[-4,-3],[-12,-4],[-23,-15],[-13,-1],[12,-7],[15,5],[27,18],[3,1],[3,-1],[3,2],[3,4],[5,10],[2,2],[4,2],[7,-3],[7,-1],[2,0],[1,2],[0,2],[1,7],[0,1],[6,-2],[9,-12],[4,-1],[11,8],[6,3],[6,0],[29,-8],[16,2],[8,-1],[6,-5],[-20,-14],[-10,-9],[-6,-17],[34,28],[27,8],[27,0],[-62,-65],[-7,-20],[-5,-8],[-4,-8],[2,-2],[3,0],[3,1],[6,5],[2,0],[3,0],[3,0],[1,0],[2,2],[3,6],[5,14],[8,17],[5,6],[5,4],[85,29],[6,5],[3,0],[6,-8],[4,-2],[4,1],[12,7],[7,-1],[14,-9],[8,-2],[-6,-15],[-8,-5],[-10,-4],[-7,-9],[6,0],[17,4],[-8,-13],[-18,-18],[-7,-11],[-9,-7],[-23,-3],[-8,-13],[6,0],[6,2],[6,3],[2,3],[26,5],[13,-2],[8,-11],[-25,-12],[-13,-1],[-6,-3],[-6,-8],[21,4],[10,-4],[0,-12],[9,2],[10,6],[10,2],[9,-10],[-9,-14],[-33,-20],[-21,-19],[-7,-4],[-16,-2],[-21,-8],[-14,-2],[-13,-5],[-10,-15],[-2,-12],[-2,-18],[1,-19],[3,-12],[4,13],[2,34],[5,14],[13,10],[32,1],[26,12],[16,0],[14,4],[6,15],[2,7],[4,6],[25,18],[1,4],[3,6],[0,9],[-3,17],[1,2],[2,4],[1,2],[-1,3],[-1,4],[-1,3],[-1,-2],[-1,10],[1,4],[2,7],[6,9],[7,5],[29,5],[3,-3],[2,-5],[-1,-5],[-1,-3],[-3,-3],[5,1],[10,6],[5,0],[5,-3],[6,-2],[6,-1],[5,3],[-2,3],[-2,5],[-2,8],[79,-8],[79,-8],[-2,-11],[9,-6],[26,-8],[12,2],[6,-2],[12,-10],[4,-2],[89,-12],[-2,-4],[-4,-11],[-2,-5],[5,-1],[5,5],[6,7],[5,5],[16,2],[8,-1],[7,-5],[1,-4],[0,-4],[-1,-3],[1,-3],[3,-5],[4,-1],[3,1],[4,3],[5,4],[4,6],[4,4],[6,2],[-5,12],[-19,13],[-8,7],[9,6],[25,-5],[16,3],[133,-47],[18,-1],[14,-8],[12,-3],[8,-6],[7,-8],[6,-10],[4,-5],[3,0],[8,3],[43,-13],[6,-7],[-2,-12],[13,-12],[57,-17],[48,-28],[4,-1],[3,0],[4,-1],[3,-4],[3,-6],[1,-2],[3,-2],[7,-3],[14,-3],[48,-30],[4,-7],[4,-5],[15,-8],[26,-6],[5,-3],[4,-7],[3,-8],[3,-7],[5,-3],[13,-2],[13,-6],[5,-4],[10,-13],[7,-4],[5,-6],[3,-1],[10,-1],[7,-3],[13,0],[2,-1],[2,-6],[26,-6],[6,-6],[8,-11],[23,-14],[37,-36],[12,-18],[10,-10],[4,-6],[2,-5],[4,-11],[1,-4],[7,-5],[16,-1],[8,-2],[7,-7],[1,-1],[1,-2],[0,-4],[0,-5],[2,-2],[28,-8],[4,-3],[5,-14],[12,-11],[-1,-34],[10,-3],[1,3],[1,4],[1,4],[2,2],[2,-2],[4,-5],[2,-2],[6,-1],[62,-30],[14,-1],[-17,13],[-28,12],[-20,14],[-6,6],[0,6],[7,1],[14,-11],[8,3],[-5,10],[4,4],[7,-2],[7,-3],[27,-25],[9,-5],[31,-7],[6,-4],[6,-6],[1,-8],[-6,-6],[7,-6],[22,-9],[61,-48],[29,-12],[45,-44],[25,-7],[22,-1],[14,-8],[17,2],[8,-3],[3,-2],[3,-1],[2,3],[1,6],[-1,0],[-4,8],[-14,28],[-3,6],[-17,18],[-3,6],[3,3],[14,-2],[6,-3],[21,-21],[12,-4],[3,-5],[0,-8],[2,-9],[4,-11],[13,-23],[4,-5],[4,-2],[5,-1],[6,-3],[5,-4],[12,-19],[8,-8],[40,-26],[1,-2],[1,-3],[1,-2],[6,3],[4,1],[3,-1],[3,-2],[14,-17],[2,-5],[-4,-8],[-9,-2],[-14,1],[0,-4],[17,-27],[23,-22],[10,-7],[10,3],[8,17],[0,3],[-1,4],[-1,3],[1,4],[3,2],[4,1],[7,-1],[11,2],[5,-2],[2,-10],[2,-7],[4,-5],[9,-6],[19,-21],[11,-2],[23,6],[12,-6],[14,-16],[6,-12],[4,-14],[0,-20],[-6,-12],[-7,-10],[-5,-11],[0,-5],[5,-7],[2,-5],[0,-4],[-1,-2],[-1,-3],[0,-2],[0,-15],[-1,-7],[-1,-7],[17,-1],[8,-4],[7,-7],[9,-14],[1,0],[-1,-7],[-2,-10],[-1,-6],[0,-29],[-1,-16],[-3,-13],[-3,-20],[8,-11],[29,-13],[6,5],[6,5],[6,3],[3,-2],[6,-4],[4,-6],[2,-6],[-1,-8],[-6,-12],[0,-6],[2,-7],[10,-7],[3,-7],[-2,-9],[-5,-5],[-4,-3],[-3,-5],[0,-24],[2,-10],[2,-5],[1,-5],[-3,-7],[-5,-2],[-7,2],[-7,0],[-3,-8],[2,-4],[4,-5],[4,-6],[0,-8],[-10,-28],[-25,-55],[-9,-12],[-29,-26],[-35,-43],[-15,-12],[-8,-12],[-5,-6],[-6,-4],[-9,-5],[-5,-5],[-4,-8],[-3,-9],[-1,-8],[1,-4],[0,-4],[-4,-8],[-9,-10],[-10,-3],[-9,-6],[-7,-17],[-3,-7],[-17,-9],[-17,-21],[-12,-7],[-26,-7],[-42,-31],[-20,-24],[-65,-26],[-11,-9],[-11,-3],[-19,-11],[-66,-16],[-22,-20],[-12,-6],[-78,-19],[-25,5],[-6,-2],[-4,-4],[-106,-28],[-87,10],[-87,10],[-30,14],[-46,7],[-30,13],[-30,28],[-22,7],[-24,15],[-107,33],[-16,-1],[-22,7],[-33,-5],[-30,8],[-33,-4],[-36,16],[-70,12],[-70,12],[-28,15],[-31,0],[-50,18],[-18,23],[-25,8],[-12,7],[-82,70],[-23,8],[-22,-11],[-22,-18],[-22,-13],[-10,-3],[-14,0],[-13,6],[-10,27],[-8,11],[-3,11],[10,9],[8,1],[15,-6],[8,1],[6,6],[-1,5],[-5,3],[-4,-2],[2,-4],[-8,-4],[-51,16],[-20,0],[-3,1],[-5,6],[-3,2],[-1,-2],[-8,-8],[-3,-1],[-4,0],[-7,2],[12,15],[5,10],[3,12],[0,5],[-1,6],[-1,6],[0,3],[-4,3],[-1,-2],[-1,-6],[-2,-7],[-5,-12],[-5,-9],[-6,-7],[-7,-4],[-1,0],[-3,3],[-2,1],[-1,-2],[-1,-5],[-1,-1],[-18,-2],[-5,3],[-3,3],[-6,9],[-3,3],[-4,0],[-1,-3],[0,-5],[-2,-4],[-8,1],[-5,9],[-7,24],[-7,9],[-15,11],[-7,8],[-4,4],[-8,-3],[-3,3],[-3,5],[-7,10],[-2,-7],[1,-6],[4,-11],[-12,8],[-6,7],[-4,9],[-2,-17],[9,-13],[21,-19],[-7,4],[-14,12],[-7,4],[2,-6],[4,-6],[3,-5],[4,-3],[0,-4],[-6,1],[-11,12],[-6,3],[4,-8],[10,-9],[5,-7],[-11,-2],[-10,3],[-106,76],[-71,70],[-7,9],[-4,11],[-2,12],[1,11],[4,9],[10,6],[22,3],[10,7],[-10,5],[-34,-5],[-10,1],[-10,4],[-28,20],[-50,1],[-6,2],[-11,11],[-3,2],[-16,-1],[-8,-2],[-8,-5],[-5,-1],[-17,5],[-32,-7],[-9,1],[-27,13],[-10,2],[-9,-2],[-7,-7],[21,0],[-1,-4],[-3,-13],[50,-3],[31,9],[8,-1],[8,-5],[12,-16],[11,-8],[4,-8],[-5,3],[-5,1],[-9,0],[7,-10],[9,-2],[10,0],[10,-2],[23,-14],[8,-9],[5,-9],[2,-6],[-2,-8],[-5,-11],[-7,-5],[-23,4],[-9,-1],[7,-5],[16,0],[6,-8],[-4,-3],[-2,0],[1,-10],[-4,-6],[-12,-5],[0,-4],[30,0],[5,-1],[13,-15],[17,-10],[6,-8],[-3,-11],[11,-8],[52,-8],[4,-4],[3,-4],[3,-10],[2,-6],[-4,-3],[-30,0],[-12,3],[57,-30],[58,1],[35,-22],[4,-6],[-1,-9],[-9,1],[-17,8],[-20,5],[-9,-2],[-5,-11],[-3,-12],[-8,-8],[-8,-4],[-7,1],[-10,5],[-10,1],[-20,-3],[10,-14],[56,1],[-3,5],[3,6],[5,2],[20,-1],[3,1],[5,4],[-1,1],[0,3],[0,3],[2,1],[9,0],[46,-15],[7,-12],[4,-8],[1,-2],[4,-3],[12,-6],[3,-3],[-10,-8],[-85,34],[-11,-6],[2,1],[3,-2],[2,-3],[2,-4],[-5,0],[-1,0],[-13,-3],[-13,4],[-12,-7],[-17,-3],[-7,-7],[13,-10],[16,-3],[16,2],[21,12],[7,2],[7,-1],[16,-6],[3,-2],[1,-3],[0,-3],[0,-3],[1,-3],[6,-7],[8,-4],[42,-9],[8,4],[12,14],[6,4],[6,-6],[3,-10],[-2,-3],[-5,-1],[-6,-5],[10,-5],[23,-4],[8,-11],[-14,-7],[-33,3],[-14,-8],[11,-7],[25,-9],[8,-13],[-12,-7],[-43,3],[-24,-3],[-13,-6],[-9,-11],[48,-1],[32,9],[6,-1],[4,-4],[2,-4],[-6,-3],[70,-25],[5,-5],[0,-4],[-2,-4],[0,-4],[5,-6],[4,3],[5,5],[4,4],[7,2],[32,-2],[4,-1],[5,-3],[9,-11],[4,-1],[-1,-5],[-2,-5],[-2,-4],[1,-5],[3,-2],[19,-5],[9,-6],[4,-1],[14,-1],[47,-28],[11,-16],[-2,8],[6,-6],[5,-15],[11,-6],[7,-14],[6,-3],[3,-3],[13,-16],[3,-5],[-2,-8],[-5,-5],[-11,-8],[4,-5],[4,-3],[8,-4],[-4,-3],[-2,-5],[0,-6],[3,-2],[5,1],[9,6],[6,1],[2,-1],[5,-6],[2,-1],[8,1],[2,-1],[2,-3],[1,-5],[2,-8],[-3,-4],[-8,-17],[4,-9],[4,-2],[11,3],[2,-4],[-1,-8],[-1,-8],[-2,-4],[-5,-3],[1,-6],[3,-7],[3,-4],[10,-9],[11,-7],[-5,-6],[-3,-6],[-4,-4],[-7,3],[-36,41],[-18,13],[-5,7],[-2,-18],[0,-6],[1,-1],[2,-21],[-1,-2],[5,-4],[11,-1],[3,-4],[-2,-7],[-5,-5],[-10,-4],[2,-5],[7,-5],[3,-4],[1,-4],[3,-10],[5,-17],[2,-8],[-3,-5],[-9,-3],[1,-23],[-9,-14],[-12,-9],[-8,-11],[4,-1],[6,-3],[3,-7],[0,-9],[-5,-5],[-8,0],[-24,8],[-10,-2],[-5,-8],[5,-18],[-6,-2],[-6,1],[-6,3],[-5,5],[-3,0],[-5,-3],[-4,-2],[-5,3],[1,-4],[2,-3],[4,-6],[-7,-3],[-14,3],[-6,-7],[41,-9],[5,-4],[5,-9],[0,-10],[-5,-9],[3,-16],[2,-5],[5,-3],[8,2],[3,-2],[-4,-9],[8,-4],[18,0],[7,-8],[-10,-8],[8,0],[4,-2],[9,-14],[0,-10],[-4,-3],[-5,0],[-6,-3],[3,-5],[10,-8],[-3,-14],[5,-8],[24,-4],[2,-4],[-2,-8],[-6,-12],[2,-7],[10,-2],[8,-5],[-5,-13],[-7,-5],[-8,-4],[-7,-5],[-5,-10],[12,-2],[9,-6],[8,-11],[8,-16],[2,-2],[1,0],[4,0],[3,0],[0,-2],[-1,-2],[2,-6],[0,-7],[1,-3],[4,-5],[4,-6],[5,-4],[5,-1],[-3,-9],[-6,-9],[-11,-14],[-8,-6],[-16,-5],[-8,-6],[12,-11],[3,-1],[1,3],[19,-2],[13,6],[5,3],[8,0],[9,-16],[-11,-10],[-11,-3],[-13,-2],[-8,-3],[-5,-5],[-1,-4],[22,-21],[7,-16],[10,-6],[1,-8],[-13,-12],[-12,-6],[-11,-13],[-10,-1],[-1,-1],[-14,2],[-4,-2],[9,0],[3,-5],[4,-1],[9,-9],[5,-2],[17,0],[5,-2],[12,-12],[10,-6],[-3,-13],[-12,-12],[17,-17],[11,-4],[18,-9],[4,-6],[7,-6],[33,-3],[8,-2],[4,-6],[-4,-11],[6,-9],[0,-9],[5,-10],[18,-6],[15,12],[20,9],[14,0],[8,11],[-5,18],[-3,6],[-4,8],[-2,7],[4,3],[16,-16],[24,-15],[24,-10],[14,-12],[9,-15],[-2,-17],[4,-7],[9,-5],[4,-5],[3,-6],[2,-12],[3,-6],[8,-3],[6,7],[9,8],[8,-7],[9,-7],[11,-13],[7,-11],[12,-11],[2,-7],[-3,-6],[-4,-6],[3,-17],[10,-6],[7,-11],[-3,-6],[-2,-7],[8,-9],[20,-5],[15,-3],[11,-8],[6,-6],[7,-1],[14,1],[6,-2],[11,-8],[6,-2],[3,-2],[9,-12],[6,-2],[18,9],[6,-1],[5,-4],[8,-10],[6,-2],[5,2],[11,8],[5,2],[6,-3],[10,-13],[5,-4],[44,-2],[7,-2],[5,-7],[10,-19],[2,-3],[2,-1],[3,-8],[2,-3],[3,-2],[41,-16],[27,5],[20,9],[3,15],[-2,10],[1,14],[12,10],[17,4],[30,-2],[11,9],[21,14],[12,3],[4,6],[20,37],[4,10],[0,14],[-11,53],[-5,10],[-7,8],[-16,14],[-9,11],[-3,11],[6,11],[22,10],[6,12],[-1,8],[-5,5],[-15,5],[-7,8],[-4,3],[2,5],[3,3],[4,1],[4,3],[-35,-3],[-9,11],[0,24],[2,4],[-8,5],[-8,5],[-17,-6],[-9,-12],[-1,-14],[-6,-6],[-8,0],[-12,4],[-12,1],[-11,-2],[-25,-13],[-13,-12],[-14,7],[-46,25],[-18,29],[-62,89],[-14,27],[-11,25],[-13,16],[-15,6],[-23,-1],[-6,21],[-6,10],[3,13],[-2,7],[-2,13],[-3,6],[15,-7],[4,4],[-21,12],[-6,9],[-4,13],[-5,17],[7,11],[20,-4],[8,-15],[18,1],[6,14],[12,7],[18,6],[13,5],[2,10],[-4,11],[6,16],[2,6],[9,20],[1,7],[-1,22],[-12,10],[0,10],[22,2],[14,5],[8,4],[8,4],[15,-3],[19,-6],[25,-10],[29,-16],[21,-7],[28,-19],[18,-13],[16,-3],[14,-4],[9,-11],[3,-12],[-3,-12],[4,-11],[21,-22],[70,-40],[27,-6],[31,2],[28,3],[8,-4],[-3,-13],[-2,-8],[2,-7],[6,-7],[2,-7],[-11,4],[-10,9],[-9,5],[-9,-12],[-5,-2],[-23,4],[-21,-1],[-6,-3],[-8,-11],[3,-11],[19,-24],[3,-4],[-1,-5],[-4,-6],[-4,-3],[-15,-9],[2,-7],[4,-1],[5,2],[4,4],[5,3],[11,4],[3,3],[2,8],[-1,11],[2,8],[4,4],[5,1],[10,0],[9,4],[18,16],[10,1],[18,-11],[9,1],[6,14],[-3,1],[-16,14],[-2,6],[0,9],[8,0],[5,-5],[13,-13],[31,-11],[32,-13],[22,-3],[15,-1],[14,-5],[33,-21],[28,-20],[30,-10],[15,0],[8,-4],[3,-10],[11,-9],[17,-15],[34,-22],[47,6],[7,4],[-4,9],[6,3],[15,3],[6,4],[16,6],[6,0],[-5,12],[-11,-3],[-13,-9],[-9,-4],[2,11],[5,26],[3,7],[8,3],[11,-4],[48,-28],[13,-13],[12,-16],[8,-9],[9,-2],[40,4],[4,-1],[8,-6],[22,-6],[10,1],[5,10],[-2,12],[-3,9],[-4,9],[-3,5],[-5,11],[-9,38],[-4,8],[-2,1],[-1,4],[-1,4],[0,5],[0,8],[1,3],[10,7],[7,1],[7,-3],[5,-6],[-1,12],[-7,8],[-9,6],[-6,7],[-4,10],[-12,57],[-4,9],[-5,9],[-10,13],[-4,5],[-2,5],[-2,12],[-3,5],[-8,9],[-30,16],[-6,7],[-67,120],[-25,27],[-11,20],[-6,14],[-2,13],[-1,27],[0,13],[2,15],[4,17],[2,9],[3,8],[21,32],[43,29],[24,7],[59,37],[54,49],[45,71],[21,23],[24,12],[61,9],[25,14],[65,19],[17,14],[4,2],[5,3],[8,14],[4,3],[5,3],[16,14],[19,8],[6,4],[-1,6],[1,4],[3,2],[56,61],[46,69],[27,55],[10,13],[13,3],[46,-12],[77,-35],[5,-6],[-1,-10],[-23,-14],[-8,-10],[56,6],[54,14],[51,3],[35,7],[14,-6],[6,-9],[7,-26],[5,-12],[11,-8],[29,-2],[12,-4],[28,-22],[8,-12],[2,-17],[-7,-11],[-44,-20],[-11,-8],[-9,-13],[-4,-8],[-4,-6],[-5,-5],[-5,-3],[-13,-3],[-6,-3],[-4,-7],[13,-13],[2,-5],[3,-11],[6,-2],[12,3],[9,-3],[7,-9],[6,-13],[5,-15],[3,26],[-1,10],[-6,10],[-25,5],[-8,6],[8,16],[15,17],[4,3],[11,3],[12,6],[6,2],[14,1],[6,6],[4,7],[6,5],[6,2],[13,-5],[21,5],[5,-3],[11,-13],[15,-11],[11,-19],[16,-16],[2,-5],[-1,-10],[-2,-8],[-2,-4],[-2,-4],[0,-8],[4,-13],[13,-20],[22,-44],[4,-13],[3,25],[-5,17],[-8,15],[-6,17],[0,15],[8,26],[2,17],[-3,11],[-14,22],[-4,10],[-1,28],[4,33],[8,31],[8,25],[4,10],[12,17],[2,7],[5,20],[3,4],[28,27],[4,5],[3,8],[2,14],[2,33],[2,12],[10,13],[13,7],[24,6],[-3,7],[-6,0],[-6,-3],[-6,2],[-6,9],[-4,6],[-5,19],[-15,18],[-4,11],[3,14],[25,8],[6,15],[-2,29],[3,6],[9,9],[-7,2],[-2,5],[-1,7],[-2,7],[-13,17],[-2,7],[-5,10],[-10,11],[-19,15],[3,11],[6,6],[6,4],[6,8],[-26,-10],[-6,4],[-5,7],[-11,11],[-9,5],[-6,6],[-16,9],[-15,5],[-15,-2],[-10,0],[-9,-2],[-14,7],[-15,3],[-11,16],[-4,10],[1,10],[1,23],[7,39],[19,49],[39,89],[6,24],[0,5],[1,11],[-1,8],[3,8],[2,6],[2,2],[7,2],[3,0],[1,-3],[2,-4],[1,-4],[0,-1],[3,0],[5,2],[5,5],[2,9],[-3,8],[-5,2],[-13,-2],[-2,4],[3,9],[8,15],[2,6],[2,8],[2,8],[0,7],[-2,8],[-3,5],[-4,4],[-3,5],[-1,6],[0,10],[1,10],[3,5],[22,-2],[6,2],[5,4],[9,11],[5,5],[-9,7],[-24,-8],[-7,5],[4,25],[5,3],[11,1],[5,4],[-5,3],[-11,-3],[-5,3],[7,10],[48,27],[21,4],[-2,1],[-12,3],[-15,-3],[-14,-6],[-12,-9],[-9,-2],[-3,11],[1,18],[3,15],[5,15],[1,6],[0,10],[0,6],[8,35],[2,14],[0,13],[-4,11],[-19,23],[-116,83],[-116,82],[-9,13],[-5,13],[12,5],[16,1],[28,0],[39,-16],[6,-1],[15,-9],[15,-5],[11,-6],[5,-5],[5,-3],[12,-3],[33,-21],[71,-9],[75,10],[126,-1],[95,-4],[77,-18],[85,-35],[16,-5],[1,-14],[2,-4],[3,-12],[1,-4],[3,-4],[7,-6],[3,-5],[1,-6],[1,-13],[1,-5],[5,-3],[9,-5],[24,-24],[16,-18],[15,-15],[5,-2],[16,2],[4,-2],[8,-8],[7,-3],[11,-13],[21,-22],[-4,-7],[-9,-4],[-8,-2],[18,2],[4,-4],[2,-5],[0,-4],[-1,-3],[0,-6],[1,-20],[1,-8],[2,-8],[5,-11],[6,-6],[6,-4],[6,-7],[1,-5],[1,-5],[1,-5],[2,-4],[6,-13],[6,-14],[1,-5],[2,-5],[3,-18],[-7,-16],[-10,-6],[-25,1],[-18,4],[-5,2],[-13,-1],[-19,1],[-45,-10],[-58,-20],[-107,-13],[-47,-10],[-27,1],[-12,-11],[-1,-11],[4,-5],[5,1],[3,-1],[1,-13],[-1,-8],[-2,-14],[-1,-7],[-6,-13],[-15,-5],[-27,0],[-19,-12],[-19,-19],[-17,-24],[-13,-30],[2,-11],[-1,-10],[-2,-10],[-1,-10],[3,-12],[8,-18],[29,-22],[28,-17],[18,-13],[24,-13],[28,-7],[28,-8],[23,-16],[13,-30],[2,-14],[5,-13],[33,-56],[4,-11],[2,-18],[5,-12],[8,-7],[31,-12],[7,-5],[7,-11],[3,-4],[5,-1],[72,5],[52,23],[16,0],[9,-3],[5,-9],[1,-12],[-6,-3],[-7,0],[-6,-3],[-9,-19],[-5,-7],[-23,-19],[-5,-2],[7,-1],[12,5],[11,8],[17,20],[9,8],[68,17],[28,0],[15,11],[12,-2],[107,41],[13,-1],[28,-13],[5,-8],[-1,-16],[2,3],[3,4],[4,9],[-3,9],[-1,7],[1,8],[3,8],[5,8],[14,14],[6,3],[8,8],[5,17],[2,21],[0,33],[-1,6],[-3,8],[-9,16],[-2,5],[-2,9],[2,5],[22,22],[4,6],[1,6],[-1,7],[-3,13],[0,3],[0,10],[-2,11],[0,1],[6,14],[32,24],[8,13],[3,12],[-1,13],[-6,13],[-27,43],[-3,12],[9,12],[45,29],[12,1],[13,-7],[-3,-6],[-2,-7],[-2,-8],[0,-8],[6,1],[5,6],[10,15],[15,14],[5,7],[10,11],[14,5],[15,-1],[23,-12],[12,-3],[12,3],[35,26],[12,2],[12,-9],[-3,0],[-3,0],[-3,-1],[-2,-3],[62,-4],[20,-12],[-10,-8],[9,-6],[11,-5],[12,-2],[8,5],[-8,6],[-5,2],[-4,0],[1,2],[2,8],[1,2],[-25,14],[-8,2],[-5,3],[-11,14],[-7,3],[-15,-4],[-7,0],[-2,8],[3,8],[4,5],[2,6],[-2,10],[-1,24],[-58,61],[11,6],[13,-5],[35,-34],[13,-8],[35,-8],[46,7],[12,8],[39,14],[53,33],[40,15],[39,33],[50,30],[12,2],[-10,-17],[-28,-13],[-9,-14],[43,25],[13,17],[5,9],[9,13],[28,26],[18,7],[24,16],[23,8],[58,47],[14,19],[9,7],[9,16],[6,5],[4,-2],[15,-15],[13,-5],[16,-1],[29,6],[6,4],[13,11],[6,2],[14,1],[38,12],[25,17],[6,2],[12,-7],[6,0],[16,8],[5,7],[-4,0],[-11,4],[8,17],[13,6],[26,-2],[99,32],[33,23],[11,2],[-3,-15],[-7,-11],[-15,-11],[-19,-4],[-3,-4],[0,-5],[1,-5],[2,-4],[2,-2],[11,3],[20,10],[33,-3],[11,-4],[7,-10],[-5,-2],[-6,2],[-6,-1],[-4,-8],[1,-4],[2,-4],[2,-6],[-2,-8],[-10,-9],[-28,-6],[-7,-11],[7,-5],[25,-32],[6,-1],[6,3],[8,7],[5,2],[17,1],[5,3],[9,8],[8,4],[26,28],[9,5],[20,3],[9,10],[4,11],[2,9],[-2,9],[-6,8],[-9,6],[-20,6],[-9,8],[-2,3],[-2,5],[-2,5],[-1,5],[-2,5],[-12,10],[3,7],[0,3],[-1,6],[30,4],[5,2],[5,5],[2,6],[-4,6],[-6,1],[-14,-6],[-13,-3],[-6,-3],[-4,-5],[-9,-17],[-5,-6],[-5,-3],[-31,2],[-6,4],[3,11],[11,10],[13,9],[22,6],[98,65],[38,13],[38,25],[23,8],[24,19],[25,8],[27,16],[123,33],[62,16],[54,0],[14,7],[50,-2],[8,-3],[1,-3],[-1,-4],[-2,-4],[-3,-2],[-3,-2],[-2,0],[-3,1],[-3,1],[-20,-3],[-20,-11],[-103,-13],[-103,-14],[-5,-4],[6,-6],[2,-2],[1,-8],[10,-8],[12,-3],[7,3],[-3,4],[-2,4],[-3,2],[-3,2],[10,7],[64,-13],[12,-5],[7,-13],[-21,-18],[-8,-2],[-7,-1],[-5,-2],[-4,-5],[-9,-18],[-1,-3],[1,-3],[2,-9],[-1,-17],[-5,-15],[-9,-9],[-9,-4],[-9,-6],[2,-13],[7,-14],[11,-14],[8,-12],[15,-20],[4,-6],[4,-9],[3,-11],[1,-12],[1,-15],[1,-7],[4,-11],[1,-4],[-4,-9],[-6,-3],[-13,0],[-4,-6],[-7,-16],[-5,-3],[-5,2],[-13,17],[-23,19],[-13,3],[-10,-8],[16,-8],[4,-6],[3,-6],[3,-5],[7,-8],[-9,-7],[-10,3],[-20,13],[-31,8],[-6,-2],[-4,-5],[-8,-12],[-3,0],[-7,5],[-3,1],[-3,-2],[-5,-9],[-19,-21],[-6,-16],[8,-10],[25,-6],[13,0],[27,10],[93,-5],[8,-4],[11,-12],[5,-1],[27,-1],[14,4],[13,11],[17,31],[10,13],[9,-2],[-10,-21],[-3,-12],[2,-15],[7,-16],[10,1],[63,55],[10,5],[9,-4],[8,-10],[24,-56],[11,-11],[13,-3],[26,2],[5,2],[4,5],[4,7],[2,8],[2,7],[7,11],[2,7],[-2,18],[-5,7],[-6,6],[-6,11],[11,0],[4,3],[-2,9],[4,18],[2,7],[4,7],[16,24],[5,2],[11,-1],[4,4],[7,15],[5,6],[22,5],[5,5],[1,3],[1,6],[1,3],[3,3],[45,23],[28,6],[30,-2],[27,4],[25,10],[46,36],[12,3],[15,-3],[27,-17],[15,-4],[84,5],[5,-5],[-8,-20],[5,6],[16,24],[8,3],[9,0],[9,-2],[8,-4],[44,-35],[67,-14],[66,10],[15,8],[9,11],[9,28],[7,11],[18,15],[5,8],[9,19],[4,5],[91,5],[14,25],[-2,5],[-3,4],[-3,5],[-2,9],[3,8],[6,4],[54,22],[14,2],[7,-3],[-1,-6],[-8,-15],[-3,-8],[0,-4],[3,-3],[4,-6],[6,-15],[4,-6],[4,-3],[14,-3],[13,-9],[-11,-12],[16,0],[8,4],[4,12],[-5,3],[-10,7],[-5,3],[-12,0],[-5,2],[-5,7],[-1,4],[0,3],[1,2],[1,4],[-1,2],[-2,1],[-1,3],[-2,2],[-2,2],[-2,2],[2,4],[2,2],[1,2],[0,3],[1,3],[0,7],[-1,5],[0,5],[3,5],[5,4],[80,28],[81,27],[90,1],[5,-3],[5,-6],[-6,-4],[-14,4],[-6,-2],[-6,-4],[-43,-8],[-13,-7],[-9,-11],[21,-3],[39,-16],[86,-81],[2,-5],[-1,-23],[-6,-11],[-13,1],[-23,8],[-10,-2],[-9,-4],[-8,-7],[-7,-12],[-5,-14],[-3,-4],[-4,-4],[-9,-5],[-4,-5],[1,-5],[1,-5],[0,-12],[2,-8],[3,-4],[5,-5],[3,-6],[2,-7],[-1,-4],[-3,-4],[-4,-9],[-3,-12],[-2,-14],[1,-13],[3,-12],[7,-7],[78,-20],[79,-21],[50,27],[12,15],[18,35],[0,3],[-2,4],[-3,24],[-5,12],[-16,27],[-13,15],[-9,6],[-5,4],[-3,8],[3,17],[11,12],[27,19],[7,0],[27,-16],[14,-4],[107,21],[25,13],[40,42],[5,8],[10,22],[4,6],[13,11],[14,5],[28,2],[-4,3],[-5,1],[-4,3],[-4,5],[5,10],[4,12],[2,12],[0,11],[0,6],[-3,11],[-1,6],[1,17],[-1,5],[-8,26],[-17,21],[-18,11],[-16,-1],[2,-6],[0,-7],[0,-6],[-2,-6],[2,-2],[3,-4],[1,-2],[-9,-8],[-12,1],[-12,5],[-9,10],[-2,10],[0,10],[1,11],[2,33],[-1,9],[-4,12],[-4,11],[-5,12],[-7,10],[-10,6],[-10,10],[-3,4],[-1,4],[0,12],[-1,5],[-4,4],[-25,23],[-4,5],[-13,26],[-12,15],[-1,4],[0,3],[1,4],[1,3],[-2,4],[-6,4],[-10,5],[-5,5],[4,14],[1,7],[-2,7],[10,15],[13,8],[117,5],[3,3],[0,10],[-3,7],[-4,6],[-2,5],[4,5],[6,1],[6,-3],[5,-1],[3,8],[-5,4],[-3,9],[-2,12],[1,12],[5,11],[8,9],[10,6],[43,11],[13,-3],[15,-9],[5,-1],[4,2],[9,9],[4,1],[3,-2],[4,-10],[3,-4],[5,-3],[40,-5],[9,-5],[10,-9],[10,-6],[101,-17],[108,-10],[131,-2],[81,-18],[81,-17],[54,-7],[47,-19],[68,-28],[85,-25],[69,-39],[47,-19],[49,-41],[53,-27],[25,-19],[-4,-9],[-8,-4],[-8,-1],[-6,1],[-15,7],[-7,0],[1,-11],[-6,-6],[-6,-8],[-2,-9],[6,-9],[-6,-11],[-5,-12],[-1,-12],[6,-9],[7,-1],[6,6],[12,14],[10,6],[6,4],[3,7],[0,7],[-3,6],[-3,4],[-1,3],[2,11],[5,4],[24,2],[11,-2],[97,-54],[111,-20],[13,-6],[11,-12],[-6,-4],[-36,1],[-5,3],[3,8],[-5,0],[-9,-3],[-5,-1],[-3,2],[-3,3],[-3,2],[-3,-3],[11,-20],[4,-4],[8,-3],[16,-1],[21,-8],[29,-4],[21,-9],[16,-1],[7,-2],[17,-14],[17,-8],[26,-22],[13,-5],[84,-35],[87,-12],[27,-12],[11,-10],[-16,-6],[-7,-6],[-2,-13],[5,-9],[24,-15],[6,-10],[4,-10],[5,-9],[7,-3],[20,0],[10,-3],[8,-8],[6,-8],[57,-39],[62,-60],[-29,8],[25,-22],[7,-4],[16,1],[8,-2],[43,-23],[14,-2],[7,-3],[4,-6],[3,-8],[4,-6],[20,-20],[3,-13],[-15,-23],[0,-15],[-2,-4],[-1,-4],[-3,-8],[15,4],[7,0],[5,-8],[1,-7],[-2,-6],[-2,-5],[-3,-3],[8,-7],[9,5],[18,19],[18,5],[9,7],[1,12],[17,20],[3,1],[11,7],[3,1],[12,-1],[-8,4],[-9,5],[-7,10],[-1,14],[3,6],[12,14],[7,11],[6,11],[8,14],[19,22],[46,79],[4,11],[2,13],[2,9],[9,20],[2,11],[5,12],[0,4],[0,2],[-1,2],[0,3],[2,13],[1,5],[14,5],[5,8],[2,12],[4,13],[-30,0],[-11,4],[-4,4],[1,6],[12,7],[26,1],[12,6],[-19,0],[10,9],[23,6],[11,6],[-57,-8],[4,8],[-8,2],[-24,-7],[-35,-22],[-28,1],[-55,31],[-9,8],[-5,11],[-11,26],[-6,13],[-70,91],[-18,33],[-10,25],[-1,9],[5,14],[11,11],[7,12],[-4,14],[2,4],[-2,8],[0,8],[2,8],[2,8],[0,8],[-2,12],[0,7],[1,4],[1,5],[1,3],[-3,2],[-10,1],[-4,-1],[-4,-6],[-5,-12],[0,-4],[3,-4],[4,-11],[-19,1],[-41,12],[-39,29],[-15,18],[-19,5],[-28,17],[-40,2],[-59,37],[-24,6],[-13,-9],[3,-1],[3,-3],[3,-5],[1,-5],[-2,-7],[-3,-3],[-15,-4],[-18,-1],[-4,-1],[4,-15],[25,-45],[-8,-5],[-12,6],[-20,20],[-5,9],[-3,9],[0,12],[0,14],[2,25],[1,14],[-3,8],[-4,9],[-1,13],[2,12],[7,20],[20,106],[3,10],[6,11],[4,7],[5,5],[5,3],[6,1],[3,-2],[3,-10],[2,-4],[-7,-9],[-3,-5],[-1,-7],[5,-15],[6,-4],[4,1],[9,6],[25,5],[15,7],[15,15],[13,22],[8,28],[-4,0],[-4,-4],[-3,-1],[-2,5],[0,5],[0,5],[2,4],[0,5],[0,10],[-1,11],[-3,10],[-6,3],[-1,-6],[3,-13],[2,-10],[-6,0],[-22,16],[-11,16],[-5,6],[-3,7],[2,13],[4,10],[9,16],[4,10],[8,46],[7,16],[13,3],[-3,12],[0,13],[4,10],[7,2],[-5,3],[-14,15],[-3,10],[2,14],[15,66],[4,11],[10,23],[3,11],[-1,13],[-4,16],[-8,14],[-9,11],[-33,9],[-8,-1],[-19,-14],[-68,-15],[-21,-13],[-9,1],[-6,34],[-5,10],[-6,9],[-5,12],[4,11],[7,7],[28,22],[6,7],[14,24],[3,8],[2,11],[0,4],[-2,1],[-1,3],[3,8],[3,4],[7,4],[4,3],[-6,8],[-7,5],[-7,1],[-5,-5],[1,-11],[-5,-4],[-8,-4],[-5,-5],[7,-14],[2,-3],[-9,-10],[-14,-3],[-13,4],[-7,14],[1,15],[7,13],[46,48],[4,15],[2,12],[3,12],[16,35],[3,5],[4,3],[30,0],[38,20],[38,11],[52,31],[26,7],[-1,10],[5,6],[21,5],[17,10],[30,25],[8,4],[14,3],[6,3],[17,26],[68,70],[14,4],[12,-12],[-4,6],[-4,6],[-3,5],[0,7],[2,6],[36,54],[6,5],[3,6],[7,29],[3,10],[4,5],[4,3],[4,5],[1,9],[0,22],[6,13],[17,21],[4,13],[-1,17],[1,5],[1,6],[2,4],[2,5],[0,8],[2,12],[14,34],[3,24],[3,10],[5,7],[-1,9],[4,8],[10,11],[-1,7],[0,8],[2,7],[2,7],[-2,8],[2,10],[5,18],[1,5],[-1,9],[1,5],[4,5],[9,2],[5,3],[-9,13],[-3,7],[-1,8],[3,7],[5,6],[5,7],[4,19],[8,15],[1,9],[4,10],[7,3],[8,-1],[6,2],[-6,5],[-11,3],[-5,7],[0,5],[4,6],[54,43],[13,16],[13,21],[8,25],[-1,28],[14,13],[15,9],[16,5],[86,-1],[6,-6],[1,-12],[-7,-5],[-56,-9],[-4,-4],[-2,-6],[3,-9],[7,-6],[84,2],[79,11],[134,-6],[105,10],[65,-7],[23,9],[27,-1],[23,5],[7,-5],[2,5],[31,-19],[86,-22],[7,-8],[-7,-1],[-13,-6],[-7,-1],[-14,1],[-7,-1],[-6,-5],[10,0],[5,-1],[2,-5],[3,-3],[68,21],[46,-23],[55,-3],[46,-29],[49,-17],[-32,-5],[4,-13],[1,-3],[5,-2],[6,-1],[6,-3],[2,-6],[-5,-7],[-9,-7],[-8,-8],[0,-12],[9,-23],[5,-9],[18,-14],[0,-4],[-5,-7],[-8,-12],[-1,-9],[1,-31],[1,-11],[8,-27],[6,-15],[5,-7],[4,-3],[0,-7],[-3,-8],[-2,-6],[-5,-6],[-11,-9],[-12,-14],[-6,-10],[-5,-12],[-1,-16],[0,-15],[-1,-4],[-3,-7],[-5,-7],[-26,-23],[-5,-12],[-3,-12],[-2,-26],[-3,-13],[-4,-12],[-4,-9],[-10,-14],[-25,-12],[-12,-8],[-9,-25],[6,-27],[6,-24],[-5,-17],[-23,-8],[-8,-5],[-1,-4],[-1,-7],[0,-13],[-5,-18],[-11,-9],[-39,-16],[-4,0],[-8,4],[-3,0],[-4,-3],[-10,-9],[-24,-16],[-7,-12],[-2,-19],[3,-15],[7,-14],[8,-10],[12,-10],[54,-63],[129,-77],[18,-17],[10,-14],[1,-11],[-12,-22],[-3,-12],[3,-13],[4,-6],[11,-9],[5,-7],[1,-4],[0,-3],[0,-3],[1,-2],[2,-3],[4,-3],[10,-14],[9,-8],[7,-11],[3,-16],[-2,-13],[-2,-14],[-4,-13],[-5,-11],[-3,-10],[0,-11],[0,-13],[-1,-13],[-6,-10],[-19,-26],[-1,-10],[1,-3],[0,-3],[0,-4],[2,-4],[2,-4],[2,-1],[2,-1],[2,-2],[8,-10],[4,-7],[3,-8],[0,-14],[-5,-25],[4,-27],[-9,-8],[-24,-8],[-12,-9],[-42,-47],[-7,-11],[0,-12],[9,-15],[37,-28],[6,-19],[-3,-10],[-9,-18],[-1,-3],[0,-5],[0,-3],[-2,-2],[-7,-6],[-8,-9],[-3,-5],[-3,-6],[0,-4],[2,-4],[5,-8],[1,-5],[0,-11],[1,-4],[6,-11],[20,-24],[9,-14],[8,-19],[3,-21],[-4,-21],[-3,-10],[-2,-11],[-2,-10],[-5,-10],[-14,-15],[-6,-11],[1,-8],[-3,-6],[-10,-6],[-4,-5],[9,-10],[7,-15],[19,-55],[1,-9],[0,-24],[2,-8],[-5,-6],[-4,-3],[-5,-2],[-23,-1],[-5,-4],[9,-10],[14,-10],[12,-13],[5,-18],[1,-11],[3,-6],[0,-4],[-4,-10],[-7,-7],[-15,-10],[-7,-7],[-6,-10],[-5,-12],[-3,-13],[-1,-15],[2,-13],[13,-34],[2,-12],[2,-29],[3,-10],[2,-7],[3,-13],[2,-7],[2,-5],[30,-40],[44,-39],[62,-30],[129,-99],[20,-26],[6,-12],[3,-9],[1,-10],[0,-16],[-2,-8],[-5,-6],[-5,-1],[-4,5],[0,7],[1,7],[2,6],[1,5],[-7,6],[-13,-7],[-22,-22],[-5,-11],[-5,-29],[-5,-9],[-23,-19],[-42,-49],[-16,-12],[-5,-7],[10,-18],[3,-10],[-1,-12],[-4,-6],[-10,-10],[-3,-9],[0,-8],[3,-5],[6,-7],[24,-46],[3,-10],[1,-11],[-1,-26],[1,-28],[-3,-10],[-8,-7],[-20,-4],[-6,-9],[3,-19],[8,-12],[7,-8],[4,-11],[-4,-16],[-6,-8],[-4,3],[-2,9],[-3,7],[-6,4],[-6,0],[-6,-4],[-11,-9],[-19,-10],[-5,-4],[-2,-5],[4,-9],[-13,-15],[-17,-5],[-50,0],[-8,-4],[-7,-9],[-3,-8],[-1,-7],[0,-6],[0,-7],[3,-12],[-6,-10],[-8,-8],[-27,-16],[-4,-7],[1,-6],[3,-6],[6,-8],[6,-12],[1,-8],[-1,-7],[-1,-4],[-5,-15],[0,-5],[-7,-12],[-15,-7],[-16,-4],[-10,1],[-12,10],[-6,3],[-7,-3],[-5,-5],[-6,-3],[-18,-3],[-3,-4],[-1,-6],[2,-15],[1,0],[7,-4],[5,-3],[3,-2],[9,-5],[11,-3],[9,-8],[3,-20],[2,-13],[-2,-6],[-5,-3],[-5,0],[-4,5],[-3,6],[-3,14],[-3,5],[-4,1],[-3,-3],[0,-6],[2,-7],[4,-11],[-63,-17],[7,-4],[15,0],[6,-8],[-5,-3],[3,-17],[-3,-13],[-4,-3],[-10,-4],[-4,-6],[-3,-5],[-4,-7],[-3,-5],[-6,-8],[-15,-5],[-7,-5],[-3,-9],[-5,-18],[-5,-8],[-7,0],[-19,14],[-8,4],[-8,-3],[-13,-11],[-8,-2],[-7,5],[-19,24],[-9,4],[-9,0],[-9,-5],[-8,-7],[36,-16],[6,-13],[-17,0],[8,-6],[27,-10],[-5,-6],[-3,-6],[-1,-8],[-1,-10],[3,-10],[5,-6],[7,-5],[4,-6],[-8,-11],[7,-9],[11,-10],[1,-14],[2,-6],[-2,-5],[-9,-6],[4,-9],[2,-3],[-13,-8],[-20,-4],[-19,2],[-11,10],[4,9],[3,4],[2,4],[-7,-5],[-11,-20],[-6,-4],[-9,0],[-19,6],[-9,6],[5,-7],[10,-7],[4,-6],[-41,4],[-4,-1],[-4,-3],[-3,-5],[-1,-7],[4,-4],[19,-8],[-12,-9],[-13,1],[-26,8],[15,-17],[-4,-5],[0,-2],[0,-5],[-81,-12],[-76,28],[-27,18],[-6,27],[5,7],[7,2],[15,-1],[5,3],[10,11],[5,2],[30,5],[7,3],[3,3],[2,2],[0,7],[2,3],[3,2],[4,-1],[3,-2],[3,-1],[3,1],[15,19],[2,6],[-5,2],[-28,2],[-13,-3],[-12,-11],[23,0],[-42,-12],[5,-4],[16,-4],[0,-4],[-63,-13],[-8,2],[-31,15],[-5,5],[-1,7],[7,8],[-23,6],[-8,5],[-20,23],[-7,12],[-4,14],[-5,12],[-11,5],[-4,-6],[0,-7],[1,-7],[-6,-9],[-8,-4],[-27,-4],[-9,3],[-19,13],[-10,1],[-7,-5],[3,-5],[8,-7],[6,-7],[-11,-5],[-56,25],[-5,0],[-16,-8],[-5,0],[-48,8],[-46,-13],[5,-8],[4,-5],[5,-2],[19,-3],[6,-4],[3,-10],[1,-13],[-3,-26],[-1,-12],[0,-19],[2,-11],[6,-8],[20,-21],[50,-33],[29,-9],[38,0],[13,-8],[16,0],[25,-18],[10,-12],[13,-11],[102,-32],[25,-16],[69,3],[68,11],[81,4],[50,-4],[29,-1],[26,-12],[43,-8],[10,-7],[8,-9],[13,-26],[12,-10],[24,10],[11,-4],[5,-6],[4,-2],[3,0],[5,2],[1,1],[3,5],[2,1],[1,-1],[1,-2],[4,-1],[2,-1],[1,-2],[3,2],[3,6],[46,28],[12,-4],[12,10],[8,21],[4,26],[2,17],[0,3],[-2,5],[-5,8],[-1,5],[0,6],[-1,3],[0,4],[1,6],[3,5],[6,6],[3,5],[-8,5],[-9,-2],[-17,-7],[8,15],[25,13],[11,11],[3,6],[2,14],[2,6],[5,4],[87,12],[13,5],[5,5],[13,-1],[7,2],[3,7],[2,8],[3,5],[4,5],[3,5],[-1,1],[-1,3],[0,4],[0,4],[2,5],[2,2],[32,7],[17,15],[87,27],[10,9],[3,6],[5,14],[12,17],[6,14],[10,11],[27,6],[11,7],[16,19],[5,3],[0,3],[-1,20],[2,7],[10,8],[3,7],[-1,6],[-7,18],[12,42],[4,13],[1,12],[-5,15],[-10,23],[55,81],[88,75],[88,75],[5,12],[8,29],[4,25],[4,53],[5,24],[-2,4],[2,4],[-8,37],[-11,32],[-3,19],[-2,19],[-4,19],[-6,16],[-34,48],[-58,53],[-11,21],[3,10],[16,26],[16,35],[3,17],[-4,18],[-7,17],[-4,15],[5,9],[2,10],[1,12],[3,13],[7,16],[10,9],[31,23],[83,26],[74,33],[84,16],[35,-1],[55,26],[56,9],[26,11],[13,3],[60,7],[57,-11],[8,-6],[5,-12],[4,-15],[5,-12],[8,-16],[2,-9],[-5,-7],[-11,-10],[-6,-14],[4,-14],[8,-11],[57,-36],[15,-18],[24,-11],[10,-14],[5,-16],[7,-14],[8,-7],[9,7],[-6,6],[-4,1],[-3,1],[8,8],[13,-6],[39,-39],[3,-4],[-2,-8],[-5,-6],[-6,-5],[-5,-5],[-4,-15],[4,-9],[6,-8],[4,-15],[0,-8],[-1,-5],[-10,-19],[-4,-6],[-4,-3],[-10,-3],[-4,-5],[-4,-7],[-1,-9],[2,-7],[3,-5],[4,-4],[11,-5],[27,-7],[5,-3],[2,-5],[-2,-9],[-6,-11],[-4,-7],[1,-4],[0,-3],[-3,-7],[-3,-8],[-3,-4],[-16,-16],[-3,-7],[0,-7],[3,-5],[3,-3],[2,-5],[-1,-16],[-5,-15],[-6,-13],[-2,-7],[7,-14],[9,-12],[9,-5],[4,-4],[2,-9],[-3,-12],[-7,-15],[-8,-12],[-7,-8],[-7,-1],[-5,4],[-4,6],[-5,3],[-4,-2],[-6,-3],[-6,-6],[-3,-5],[2,-20],[12,-13],[86,-53],[24,-8],[44,-28],[7,-12],[-1,-5],[-2,-8],[-2,-7],[0,-6],[3,-5],[6,3],[13,8],[27,8],[3,-1],[2,-3],[5,-6],[2,-1],[15,6],[2,-1],[5,-8],[2,-2],[10,-2],[3,-1],[3,-1],[3,2],[4,2],[7,3],[10,2],[20,13],[8,2],[6,-2],[7,-4],[10,-3],[10,-7],[4,-1],[36,1],[6,1],[17,14],[7,2],[20,-1],[18,5],[19,-5],[27,-13],[15,-3],[6,1],[13,6],[6,1],[-9,16],[-4,4],[-7,4],[-36,1],[-8,2],[-4,5],[2,5],[11,7],[4,5],[-32,0],[-8,-3],[-5,-4],[-10,-14],[-13,-8],[-16,0],[-16,6],[-12,11],[7,4],[23,-4],[8,4],[4,6],[-2,7],[-8,7],[-7,0],[-13,-6],[-7,2],[-4,6],[-4,9],[-4,6],[-5,-1],[1,-7],[-1,-6],[-3,-8],[-1,-9],[-2,-7],[-5,4],[-9,15],[-6,6],[-7,-3],[-14,-9],[-7,1],[-6,3],[-6,1],[-6,-3],[-14,-4],[-28,22],[-14,1],[-6,-2],[-18,-4],[-4,3],[3,8],[8,7],[14,7],[-8,-1],[-19,3],[-7,4],[-5,8],[-5,9],[-4,7],[-5,-1],[-6,-22],[-33,-3],[-35,10],[-9,21],[3,14],[1,14],[-1,14],[0,13],[1,9],[1,7],[3,6],[4,6],[6,2],[7,1],[6,2],[4,7],[-6,0],[-6,-1],[-5,0],[-6,5],[-3,6],[-2,6],[-4,12],[3,5],[1,2],[5,13],[1,10],[-1,10],[0,14],[3,12],[6,13],[14,21],[22,25],[12,10],[12,4],[42,0],[27,10],[29,1],[14,6],[5,10],[-7,10],[-10,12],[-5,13],[0,11],[-1,4],[-15,10],[-12,3],[-6,5],[-4,5],[-1,6],[-3,12],[-8,17],[-1,7],[4,1],[3,3],[3,5],[3,7],[-8,14],[-9,5],[-10,0],[-10,-6],[-10,-2],[-4,12],[0,14],[-1,7],[-6,5],[-6,11],[-3,14],[1,13],[5,11],[2,9],[1,10],[-1,13],[-2,13],[-3,14],[-3,13],[-5,10],[-2,10],[0,29],[-2,12],[-10,15],[-13,6],[-53,3],[-14,6],[-20,25],[-15,7],[-85,11],[-4,3],[-5,6],[-9,13],[-9,23],[-5,3],[-16,20],[-6,4],[-20,5],[-4,3],[-3,3],[-4,3],[-4,0],[-2,-2],[-5,-8],[-3,-3],[-6,-1],[-34,8],[-53,27],[-21,5],[-19,18],[-14,6],[-67,-3],[-81,16],[-15,-6],[-40,-31],[-38,-15],[-12,-9],[-11,-15],[13,-5],[4,-3],[-13,-9],[-46,1],[-46,-14],[-17,2],[-57,28],[-54,8],[-18,-2],[-61,-30],[-19,-5],[-18,6],[-17,14],[-16,22],[-5,9],[-2,8],[1,9],[6,17],[3,11],[1,4],[9,18],[7,19],[14,59],[0,4],[-11,36],[-29,49],[-34,40],[-19,30],[-10,20],[-4,18],[6,17],[25,32],[9,18],[-2,9],[1,10],[3,11],[11,26],[1,8],[0,23],[1,7],[11,25],[4,11],[0,9],[-3,9],[-15,10],[-3,6],[5,14],[7,12],[76,73],[6,9],[6,11],[2,8],[0,7],[2,6],[3,6],[33,30],[20,27],[14,24],[3,10],[2,12],[1,14],[0,8],[-4,19],[-1,19],[-1,5],[-6,17],[-10,12],[-85,71],[-7,11],[-4,19],[-1,13],[1,13],[-1,12],[-4,13],[-9,12],[-22,16],[-10,10],[-12,20],[-6,13],[-3,10],[-1,13],[-4,13],[-20,47],[-7,13],[-7,5],[-6,4],[-12,13],[-11,6],[-18,17],[-7,5],[-28,10],[-18,14],[-26,7],[-13,8],[-3,14],[4,7],[91,84],[5,6],[8,14],[5,6],[15,15],[5,8],[5,13],[2,11],[-2,11],[-4,11],[-8,12],[-1,6],[2,9],[3,7],[5,7],[5,6],[67,30],[48,24],[86,27],[23,-2],[21,11],[72,36],[73,37],[9,10],[9,14],[23,43],[4,18],[5,62],[-1,13],[1,21],[-8,41],[-4,31],[-2,12],[-1,12],[2,10],[-1,8],[-3,12],[-6,21],[-8,13],[-69,80],[-2,3],[3,4],[6,5],[58,28],[15,3],[15,-4],[6,-4],[15,-16],[7,-4],[35,-9],[39,-27],[12,-3],[6,-5],[2,-11],[-3,-2],[-18,-16],[-5,2],[-4,4],[-4,2],[-9,-12],[-8,-7],[-2,-5],[5,1],[12,6],[6,1],[3,-3],[3,-5],[4,-11],[8,-12],[9,-8],[37,-19],[10,-8],[5,-12],[-1,-11],[-10,-1],[-11,2],[-9,-1],[-9,-13],[-2,-16],[5,-18],[14,-33],[0,-4],[0,-10],[1,-4],[11,-16],[4,-9],[-4,-4],[6,-8],[18,-7],[0,-11],[-1,-4],[-2,-10],[-2,-4],[-4,-5],[-27,-14],[-8,-7],[-2,-2],[-20,-34],[-2,-9],[1,-6],[3,-8],[0,-4],[0,-6],[-1,-9],[-1,-4],[-4,-8],[-19,-10],[-5,-8],[1,-3],[5,-15],[2,-6],[-1,-4],[-14,-12],[-10,-4],[-19,1],[0,1],[-5,-5],[-4,-6],[0,-6],[5,-11],[2,-5],[1,-7],[-6,-6],[-6,-12],[-4,-12],[3,-10],[-4,-9],[-1,-11],[3,-9],[6,-3],[2,-2],[1,-5],[0,-6],[1,-4],[3,-5],[3,-3],[4,-3],[13,-4],[40,-31],[4,-8],[-4,-7],[-19,-7],[-8,-6],[2,-9],[25,-17],[7,-9],[3,-6],[2,-4],[-1,-3],[-5,-5],[-12,-5],[-4,-4],[-6,-7],[-2,-7],[1,-7],[3,-9],[-10,-6],[-38,6],[-4,-2],[-3,-3],[-2,-6],[2,-12],[-1,-5],[-2,-4],[-1,-3],[10,-23],[22,-18],[108,-41],[79,-17],[26,-19],[5,-1],[-4,5],[2,5],[3,4],[5,2],[89,-10],[69,-5],[47,-8],[7,-5],[-6,-6],[-3,-7],[1,-9],[3,-11],[2,-3],[2,-2],[2,-3],[1,-6],[0,-5],[-2,-3],[0,-4],[0,-6],[4,3],[5,5],[3,8],[2,8],[-1,7],[-9,21],[22,14],[104,-15],[49,9],[63,-19],[15,-10],[8,-9],[5,-12],[3,-18],[0,-16],[1,-13],[4,-11],[10,-9],[14,-8],[77,-12],[23,-21],[14,-7],[12,0],[12,5],[14,9],[14,5],[48,-8],[31,5],[5,3],[4,7],[4,5],[6,-3],[-1,-7],[5,-1],[21,5],[4,3],[1,6],[-1,5],[-3,4],[-4,1],[-3,-1],[15,7],[8,7],[4,7],[-4,10],[-8,2],[-8,-3],[-21,-19],[-34,16],[-17,-14],[8,1],[9,-2],[15,-7],[-40,-25],[-13,4],[-13,8],[-14,5],[-13,0],[-13,-8],[-10,-15],[-6,-6],[-5,0],[-3,5],[0,6],[0,6],[1,4],[12,25],[3,12],[-7,7],[6,4],[15,3],[5,6],[-3,7],[-4,6],[-10,6],[4,7],[1,1],[3,1],[-8,13],[-15,0],[-27,-9],[8,-14],[27,-9],[7,-9],[-18,-1],[-19,8],[-18,13],[-17,18],[-1,8],[5,9],[10,15],[3,9],[2,8],[1,9],[1,11],[-10,19],[-21,7],[-50,5],[-18,-15],[-8,2],[-2,15],[-1,4],[-1,4],[-2,7],[-2,3],[8,10],[17,10],[6,12],[-6,5],[-6,-1],[-11,-8],[-13,-3],[-4,-3],[2,-6],[-27,-9],[-12,-8],[5,-11],[-11,-6],[-11,2],[-22,16],[-22,10],[-22,2],[5,-7],[20,-9],[-9,-3],[-72,36],[-15,14],[-12,16],[-9,7],[-8,3],[-35,1],[-66,19],[-6,4],[-5,5],[-13,19],[-12,11],[-15,8],[-56,10],[-15,8],[-6,14],[1,7],[4,13],[1,7],[-2,7],[-23,36],[-6,12],[-4,24],[-18,52],[-7,12],[-7,9],[-9,6],[8,9],[19,4],[72,41],[73,15],[72,15],[19,-4],[5,-11],[18,-2],[99,-68],[18,-21],[38,-24],[39,-2],[106,31],[13,9],[12,16],[5,11],[3,13],[0,12],[-6,11],[-48,55],[-13,9],[-13,5],[-63,-2],[-41,-26],[-15,-5],[-13,3],[-21,15],[-3,10],[10,17],[21,22],[0,8],[-4,5],[-9,7],[9,8],[9,0],[29,-17],[11,-3],[5,2],[8,8],[12,6],[38,50],[18,15],[40,20],[3,2],[3,4],[5,9],[3,0],[15,-9],[11,-3],[32,14],[22,3],[11,-2],[11,-5],[0,4],[-1,8],[-1,4],[72,-9],[73,-10],[53,8],[50,-3],[34,-13],[76,-58],[62,-34],[129,-33],[100,-41],[5,-8],[-1,-6],[-1,-7],[-2,-8],[-4,-5],[-6,0],[-19,12],[5,7],[12,6],[6,7],[-24,2],[-12,-2],[-10,-8],[-5,-12],[4,-7],[84,-51],[84,-52],[2,-3],[2,-4],[1,-5],[-1,-3],[-1,-2],[-1,-3],[6,-18],[8,-11],[9,-8],[57,-13],[53,-25],[127,5],[31,13],[31,4],[23,11],[102,19],[16,-9],[2,-3],[2,-4],[4,-8],[3,-3],[2,-2],[2,0],[11,-5],[37,6],[14,-2],[14,-6],[12,-14],[4,-6],[3,-5],[-1,-6],[-3,-9],[-5,-6],[-13,-13],[-20,-24],[-10,-8],[-23,-7],[-7,-6],[-4,-13],[-3,-19],[-3,-13],[-1,-7],[1,-6],[4,-6],[5,-3],[4,-5],[3,-8],[-18,-3],[-12,-7],[-33,-4],[-73,-31],[-73,-31],[-6,-5],[-4,-9],[0,-6],[2,-6],[2,-6],[2,-6],[0,-7],[0,-14],[1,-5],[3,-6],[7,-9],[3,-6],[5,-15],[1,-13],[-3,-12],[-8,-10],[-22,-14],[-9,-11],[2,-18],[27,-47],[-1,-7],[3,-6],[5,-7],[0,-6],[-2,-10],[3,-5],[4,-4],[0,-8],[16,-16],[3,-8],[-2,-7],[-11,-14],[-38,-27],[-9,-15],[-3,-8],[1,-4],[2,-3],[-1,-7],[-3,-7],[-5,-5],[-19,-14],[-4,-6],[-1,-8],[3,-7],[14,-14],[3,-7],[0,-6],[-1,-5],[0,-8],[1,-6],[4,-12],[2,-19],[5,-24],[2,-21],[3,-6],[3,-5],[3,-7],[0,-6],[0,-12],[2,-6],[3,-6],[12,-14],[11,-20],[4,-5],[-1,14],[-5,15],[-11,24],[2,4],[-12,46],[-3,30],[-3,17],[-1,15],[4,10],[-5,12],[-13,20],[-5,12],[6,9],[8,3],[9,1],[16,6],[41,2],[5,4],[2,10],[-2,9],[-5,6],[-3,6],[1,9],[-1,2],[-1,2],[0,2],[0,2],[5,0],[5,3],[4,5],[4,7],[1,6],[0,8],[1,6],[3,2],[7,1],[4,2],[0,3],[-6,6],[-9,4],[-3,4],[-3,8],[7,10],[18,19],[4,10],[-1,6],[-1,6],[-1,7],[2,5],[4,5],[11,6],[15,19],[13,2],[30,-7],[3,-6],[1,-7],[3,-8],[3,0],[3,5],[2,8],[-1,8],[-4,20],[-1,6],[4,6],[3,-3],[4,-9],[1,-8],[4,-11],[10,-12],[18,-17],[20,-6],[8,-8],[3,-21],[-1,-11],[-2,-12],[-1,-12],[2,-14],[-7,-8],[-7,-16],[-6,-18],[-3,-15],[0,-7],[3,-18],[1,-7],[-3,-10],[-6,-7],[-12,-8],[3,-2],[3,-4],[1,-5],[1,-13],[2,-3],[2,-3],[2,-4],[2,-8],[-2,-5],[-3,-6],[-6,-33],[-12,-12],[-26,-19],[-58,-67],[-4,-7],[0,-11],[3,-10],[3,-8],[0,-7],[-8,-4],[8,-9],[29,-14],[29,-32],[10,-5],[23,2],[20,-8],[11,0],[10,4],[8,4],[2,5],[-7,4],[6,7],[2,7],[-1,10],[-15,41],[-5,5],[-8,2],[-5,8],[-9,22],[-5,10],[-12,14],[-6,8],[17,6],[54,-13],[37,0],[40,13],[10,-3],[4,1],[0,2],[0,9],[0,2],[1,0],[3,0],[1,2],[4,6],[13,13],[9,6],[36,46],[-8,16],[1,13],[4,13],[-2,12],[-17,25],[-3,7],[-3,15],[-3,8],[-3,6],[-10,11],[-4,8],[-1,8],[1,7],[1,7],[1,8],[-2,10],[-5,6],[-7,5],[-5,1],[-1,4],[-7,25],[2,4],[-3,10],[-6,22],[-3,10],[-6,10],[-14,15],[-6,10],[5,16],[-5,17],[-10,14],[-8,6],[-41,9],[-5,4],[-5,6],[-5,9],[35,-1],[4,3],[-5,14],[-8,29],[-15,25],[-2,8],[3,3],[4,3],[10,11],[16,7],[8,12],[15,28],[7,10],[3,7],[-3,15],[0,8],[0,15],[2,11],[4,6],[6,1],[7,0],[14,4],[13,8],[6,8],[16,28],[3,11],[-1,21],[-2,12],[-6,8],[-8,10],[-6,4],[-1,3],[-1,7],[0,4],[-2,3],[-2,3],[-19,22],[-11,5],[-2,2],[-1,4],[1,5],[1,4],[1,3],[0,7],[0,5],[-1,5],[-3,7],[-12,13],[-28,10],[-27,16],[-31,0],[-23,8],[-50,4],[-8,-2],[-6,-5],[-4,-6],[-5,-4],[-8,2],[-3,2],[-4,5],[-3,6],[-1,8],[-4,16],[-8,12],[-34,34],[-11,4],[-14,8],[-17,15],[-12,8],[-26,8],[11,13],[12,3],[9,9],[2,28],[-1,13],[-1,10],[-3,7],[-6,7],[-10,5],[-3,3],[-2,3],[-2,7],[-2,4],[-4,3],[-5,-1],[-8,-4],[-2,-1],[-51,10],[-23,14],[-77,20],[-105,2],[-15,7],[-69,53],[-13,6],[-7,5],[-12,17],[-24,25],[4,8],[17,12],[0,2],[0,5],[1,4],[3,2],[3,1],[3,3],[5,8],[-10,9],[-31,6],[-6,13],[-2,9],[-6,12],[-2,8],[1,10],[3,5],[14,11],[19,21],[3,5],[0,2],[0,9],[1,2],[1,0],[1,-1],[1,1],[5,13],[4,14],[6,29],[-3,10],[-4,21],[-4,10],[-3,3],[-4,3],[-3,4],[-2,4],[0,9],[-2,5],[-17,12],[-10,4],[-41,8],[-10,4],[-9,9],[9,5],[12,3],[23,0],[-8,16],[-13,9],[-33,5],[-21,11],[-7,0],[-13,-4],[-6,0],[12,11],[13,4],[40,1],[7,2],[12,7],[5,-1],[3,3],[1,9],[-11,26],[-24,8],[-28,2],[-19,7],[-5,12],[8,7],[11,7],[5,10],[3,7],[5,2],[6,-1],[4,-4],[4,-4],[3,1],[15,28],[3,2],[20,3],[6,5],[4,3],[2,4],[1,6],[0,9],[3,7],[5,4],[6,3],[4,4],[-12,6],[-26,-16],[-10,6],[2,11],[-1,22],[1,8],[6,8],[11,2],[72,-7],[23,9],[94,11],[18,11],[58,14],[119,9],[96,-1],[75,0],[136,-4],[117,1],[68,23],[89,5],[88,4],[57,25],[62,7],[37,-19],[23,-13],[6,-1],[18,5],[92,-3],[13,5],[6,10],[-2,4],[-3,5],[-1,4],[2,6],[11,10],[14,16],[4,3],[5,2],[74,1],[41,25],[106,11],[107,11],[82,-19],[5,-6],[2,-9],[-3,-6],[-8,-9],[-4,-7],[-3,-8],[-4,-7],[-4,-3],[-41,-8],[-11,-8],[-21,-22],[-7,-5],[-15,-5],[-14,-8],[-27,-7],[-35,-28],[-33,-14],[-45,-8],[-39,-32],[-23,-9],[-16,-14],[-5,-2],[-8,-6],[-1,-15],[5,-31],[0,-8],[-1,-7],[0,-8],[2,-8],[4,-6],[4,-5],[4,-4],[18,-11],[89,-31],[4,-10],[2,-4],[-2,-4],[22,-26],[54,-10],[25,-15],[5,-4],[9,-5],[5,-5],[3,-5],[6,-13],[2,-6],[1,-6],[2,-12],[1,-6],[3,-7],[4,-6],[4,-4],[3,-2],[-1,27],[-1,11],[-3,11],[-7,12],[-23,28],[-10,9],[-11,6],[-20,2],[-6,3],[-8,7],[-14,20],[-9,8],[-35,20],[-88,27],[-11,9],[-9,15],[-3,7],[-1,3],[1,13],[0,2],[1,6],[1,4],[-1,2],[-3,5],[0,3],[10,33],[25,14],[29,5],[36,18],[79,7],[79,8],[20,13],[74,0],[15,3],[11,12],[9,13],[21,18],[9,12],[-6,3],[-14,-11],[-7,0],[9,24],[13,13],[64,29],[16,13],[10,22],[-2,4],[5,14],[-5,9],[-9,4],[-9,2],[-10,-1],[-4,-4],[0,-9],[0,-17],[-3,-8],[-9,-9],[-9,-6],[-7,-3],[-18,4],[-19,9],[-15,11],[-15,17],[-6,4],[-3,4],[-1,6],[0,7],[-2,3],[-7,10],[-8,5],[-3,3],[-10,19],[-22,15],[-7,9],[16,10],[72,-6],[31,-17],[15,1],[-16,21],[-20,9],[-110,4],[-13,11],[2,2],[1,3],[1,7],[-5,4],[-31,8],[-3,2],[2,7],[20,24],[-12,14],[-13,9],[-14,7],[-43,12],[-135,4],[-13,8],[-7,10],[0,4],[3,4],[0,8],[-3,5],[-5,3],[-5,4],[-2,9],[9,8],[61,-7],[23,-14],[13,-12],[3,0],[2,3],[1,6],[0,6],[-2,2],[-3,0],[-3,4],[-5,19],[-2,5],[-6,5],[-9,2],[-29,2],[-7,2],[-6,5],[5,4],[7,1],[13,-1],[17,5],[15,-7],[8,4],[9,7],[44,12],[27,-9],[5,-4],[3,-4],[3,-6],[3,-4],[5,-2],[-9,-5],[-3,-3],[7,-5],[8,0],[15,5],[6,-1],[16,-7],[5,0],[13,8],[8,0],[14,-4],[7,0],[-7,-14],[-12,-9],[-29,-12],[-18,-3],[-4,-3],[-1,-8],[5,-3],[6,0],[12,3],[15,-3],[7,3],[13,17],[6,3],[6,1],[3,-2],[7,-19],[1,-6],[-1,-5],[-5,-5],[7,-5],[8,1],[6,8],[2,12],[-3,9],[-8,14],[-2,6],[3,7],[10,-1],[19,-6],[40,0],[-8,5],[-30,7],[-5,3],[-8,5],[-5,8],[1,6],[6,8],[2,6],[-4,3],[-8,2],[-71,-13],[-2,2],[-3,7],[-2,4],[-4,1],[-10,0],[-4,3],[-1,3],[-2,9],[-2,4],[-4,2],[-9,0],[-4,1],[-7,10],[-3,3],[-11,1],[-4,3],[8,7],[54,14],[7,8],[-81,3],[-3,1],[-7,6],[-5,2],[-14,0],[-5,2],[-13,11],[-4,2],[-9,0],[-23,9],[-126,8],[7,10],[9,6],[19,5],[-9,9],[2,9],[16,13],[11,3],[22,-8],[11,2],[5,3],[7,7],[6,10],[1,12],[-4,9],[-23,16],[4,3],[4,1],[9,0],[4,-2],[1,-2],[2,-3],[2,-1],[21,2],[7,-2],[16,-15],[6,-2],[13,1],[5,-3],[3,-10],[-46,4],[5,-6],[15,-12],[10,-16],[5,-2],[5,1],[2,3],[3,4],[5,4],[5,1],[18,-1],[46,-16],[-2,-6],[-7,-8],[-1,-7],[4,-4],[7,-1],[12,1],[-2,-1],[-4,-7],[7,-12],[7,-3],[16,7],[10,2],[9,-1],[10,-3],[17,-10],[5,0],[3,4],[-1,6],[-3,3],[-7,3],[-7,11],[2,5],[6,5],[6,7],[-13,5],[-31,-4],[-9,12],[4,2],[7,3],[4,3],[-2,4],[14,12],[15,7],[15,-1],[12,-12],[3,-4],[4,-3],[4,-1],[4,2],[0,3],[0,11],[1,4],[4,10],[-3,5],[-5,4],[-5,7],[7,24],[10,13],[47,31],[12,3],[16,9],[5,6],[-6,8],[-8,2],[-17,-2],[-7,2],[-21,14],[11,10],[16,6],[16,0],[16,-4],[7,1],[4,-1],[3,-2],[5,-5],[7,-4],[-2,-5],[-6,-6],[-5,-2],[4,-7],[6,-3],[11,-2],[12,-8],[6,-1],[7,4],[-11,15],[2,2],[20,4],[8,4],[8,8],[3,8],[-7,4],[15,1],[8,2],[7,5],[-16,8],[-77,0],[-8,3],[-4,1],[-8,-4],[-5,0],[-3,3],[-8,10],[-16,7],[-64,12],[-8,-2],[-19,-9],[-5,1],[-6,7],[5,14],[5,9],[15,16],[10,6],[49,3],[94,-17],[13,1],[90,-25],[12,0],[11,4],[25,22],[9,1],[6,-10],[9,13],[11,5],[12,2],[10,5],[5,3],[2,3],[1,5],[0,17],[1,5],[1,5],[4,4],[9,8],[31,14],[10,2],[30,-9],[-4,9],[-6,8],[-11,11],[17,18],[39,3],[18,7],[-13,8],[20,14],[23,8],[23,1],[21,-7],[-8,14],[-14,5],[-75,-15],[6,5],[54,14],[18,6],[32,1],[6,2],[5,4],[5,5],[11,18],[5,3],[4,-2],[14,-15],[17,-5],[6,-3],[0,-9],[41,-1],[5,-4],[14,5],[6,0],[6,-3],[7,-2],[7,1],[5,5],[-7,6],[-20,10],[-3,8],[6,8],[61,6],[56,3],[-6,13],[-11,4],[-13,1],[-9,6],[11,10],[101,14],[78,6],[43,24],[17,4],[13,6],[7,1],[5,-2],[2,-4],[0,-6],[0,-4],[8,-11],[10,-3],[10,3],[10,6],[16,16],[6,2],[18,-1],[-2,-13],[8,-6],[21,-2],[44,13],[36,-8],[11,4],[6,6],[2,9],[-2,9],[-6,8],[11,15],[12,8],[11,0],[12,-8],[8,-4],[24,10],[30,-4],[21,5],[39,11],[41,-8],[40,20],[96,12],[90,19],[101,16],[70,18],[70,19],[25,15],[6,2],[-6,6],[-8,-3],[-9,-7],[-8,-4],[-87,-18],[-21,1],[-19,9],[2,13],[-6,7],[-10,1],[-7,-3],[-16,-16],[-4,-7],[7,-3],[6,-5],[-9,-9],[-12,-4],[-6,7],[-3,7],[-20,20],[2,4],[-5,3],[-9,2],[-4,3],[5,5],[13,8],[-12,5],[-13,-2],[-25,-12],[-38,-8],[-11,-8],[10,-1],[20,-10],[10,-1],[-11,-13],[-17,-1],[-33,6],[0,4],[3,5],[-5,13],[-8,12],[-8,6],[7,7],[22,10],[-3,7],[-2,8],[1,6],[4,3],[-2,12],[8,8],[12,4],[8,1],[5,-3],[3,-3],[12,-23],[2,-2],[7,0],[23,12],[6,6],[-3,10],[-21,9],[-7,6],[39,0],[15,6],[32,0],[0,-4],[-21,-11],[-6,-8],[5,-6],[7,-4],[13,-2],[-2,-5],[-8,-11],[11,-5],[10,5],[19,16],[7,2],[20,-2],[16,7],[5,1],[5,-1],[7,-8],[5,-3],[6,1],[11,6],[6,1],[31,-3],[11,3],[-12,12],[-6,4],[-15,-4],[-7,2],[-13,13],[-7,2],[-26,-4],[-4,2],[-6,10],[-5,4],[14,5],[116,-5],[27,-11],[14,3],[7,4],[15,4],[12,-1],[5,-3],[1,-5],[-3,-7],[6,0],[6,-3],[7,-4],[5,-5],[-9,-9],[6,-5],[6,0],[13,5],[13,0],[6,2],[5,7],[-8,5],[0,5],[5,4],[15,8],[22,1],[-7,15],[-17,5],[-31,1],[9,6],[73,-6],[6,-5],[10,-11],[5,-5],[6,-2],[35,0],[27,12],[28,-5],[24,19],[13,5],[135,-15],[28,-14],[14,-4],[24,2],[7,-3],[11,-6],[5,-5],[-1,-5],[-13,-2],[-30,3],[-12,-12],[13,2],[6,-3],[4,-7],[-7,0],[-20,-8],[8,-14],[1,-4],[-2,-6],[-5,-1],[-10,1],[-9,-2],[-18,-9],[-39,-40],[-9,-5],[-21,0],[-8,-6],[29,-16],[17,-3],[7,10],[2,6],[5,8],[8,12],[6,4],[13,6],[13,9],[16,1],[23,6],[8,0],[7,-4],[12,-3],[38,6],[9,8],[-5,0],[-6,3],[-6,4],[-4,5],[10,4],[20,-3],[10,3],[8,6],[11,3],[11,0],[8,-5],[-4,-3],[-3,-3],[-4,-5],[-2,-6],[25,5],[13,-1],[7,-12],[-8,-2],[-17,-14],[-30,-34],[-7,-2],[6,-3],[29,8],[20,11],[14,2],[27,-10],[14,-1],[-1,16],[9,7],[20,5],[4,3],[8,11],[3,6],[3,3],[17,7],[40,28],[12,6],[41,2],[-55,-32],[-2,-7],[2,-3],[13,-11],[-9,-5],[-4,-4],[-4,-7],[10,-1],[25,3],[9,6],[-8,6],[1,6],[13,11],[8,3],[17,-3],[18,5],[33,-1],[13,-6],[6,-1],[33,6],[5,2],[-2,10],[-4,6],[-34,19],[-8,2],[-25,-4],[-9,4],[22,16],[23,9],[25,-1],[21,-11],[-2,-5],[12,-5],[13,2],[38,15],[13,0],[5,2],[11,6],[6,1],[-56,1],[-28,11],[15,12],[15,8],[7,0],[12,-6],[6,1],[3,3],[4,9],[2,3],[4,3],[50,-1],[17,4],[47,28],[67,21],[-4,-5],[-2,-5],[-1,-6],[-2,-5],[-5,-5],[-10,-6],[-5,-5],[9,-4],[26,0],[7,3],[14,11],[6,2],[66,-7],[-2,3],[8,4],[12,-1],[10,-4],[6,-7],[-14,-3],[-7,-5],[-5,-8],[9,-8],[-40,0],[23,-16],[12,-4],[13,-1],[39,11],[33,0],[11,6],[4,-1],[6,-9],[1,-6],[-5,-4],[-32,-9],[6,-8],[8,-5],[9,-3],[7,0],[-5,-8],[4,-2],[5,1],[6,2],[5,5],[4,4],[5,-1],[6,-3],[20,-17],[2,-8],[-5,-15],[-4,-6],[-8,-9],[-3,-6],[-2,-5],[0,-4],[0,-5],[1,-11],[1,-6],[0,-5],[0,-4],[-4,-9],[0,-4],[1,-5],[-18,-23],[-19,-12],[-34,-14],[41,-8],[11,5],[9,14],[9,16],[10,13],[41,22],[12,17],[3,15],[-4,14],[-7,10],[-7,7],[-7,11],[5,13],[8,14],[2,16],[-3,7],[-12,7],[-4,5],[-2,9],[0,4],[-1,3],[-6,5],[-25,10],[-12,9],[-5,15],[-3,20],[-7,10],[-9,4],[-45,1],[-3,2],[-3,7],[-5,14],[-11,13],[-14,7],[-55,0],[-13,6],[2,16],[-2,6],[-3,3],[-6,5],[-13,17],[-5,4],[-22,11],[-5,3],[-2,3],[-1,3],[1,7],[1,2],[1,1],[2,4],[4,6],[7,2],[92,-15],[84,-15],[76,3],[31,9],[94,1],[9,-11],[12,-7],[108,27],[28,15],[15,5],[11,-6],[11,-12],[25,-4],[11,-10],[-3,-5],[-6,-6],[-3,-5],[69,7],[10,6],[5,2],[28,-12],[89,-8],[11,-7],[5,-11],[5,-8],[13,-4],[108,-10],[-15,15],[-6,4],[-6,2],[-13,0],[-40,10],[-12,7],[-46,13],[-53,2],[-11,8],[6,3],[2,1],[-49,12],[-94,4],[-33,19],[-11,2],[9,5],[27,6],[8,4],[19,21],[-1,2],[-2,4],[-1,2],[5,6],[2,7],[0,8],[3,7],[-4,4],[4,6],[3,6],[0,8],[-3,9],[7,0],[10,3],[8,6],[5,11],[-17,6],[-36,0],[-17,6],[-19,15],[-5,8],[-7,4],[-2,3],[2,5],[2,3],[2,3],[1,3],[1,5],[-10,2],[4,16],[17,31],[-4,14],[11,7],[26,3],[28,-5],[15,1],[8,12],[0,6],[2,2],[-3,6],[1,5],[1,4],[0,3],[-4,3],[-13,2],[-3,2],[2,12],[9,10],[63,35],[42,38],[57,27],[69,56],[2,11],[9,6],[22,6],[10,-1],[4,-2],[2,-2],[2,-4],[2,-4],[4,-2],[8,3],[6,5],[5,7],[6,6],[21,11],[17,20],[28,22],[88,27],[9,5],[-2,4],[-4,12],[14,4],[69,41],[17,3],[11,-8],[-1,-6],[7,-6],[10,-6],[66,7],[38,22],[17,5],[17,14],[48,19],[10,2],[31,-5],[33,6],[10,-5],[-1,-4],[-14,-13],[-4,-9],[8,-7],[10,-3],[98,24],[21,-2],[11,-20],[0,-8],[4,-14],[17,-13],[32,-14],[70,-11],[28,-17],[75,8],[75,8],[-2,-5],[-3,-4],[-7,-8],[5,-3],[8,-2],[4,-2],[2,-3],[4,-10],[2,-4],[-3,-14],[4,-10],[16,-12],[-1,-2],[-1,-6],[6,-2],[23,-4],[10,-5],[15,-3],[25,-11],[9,-8],[-20,-8],[-118,10],[-11,-2],[-4,-8],[-5,-9],[-30,-23],[-13,-5],[-25,-3],[-12,-8],[23,-1],[5,-4],[-10,-9],[-13,-6],[-37,-6],[-6,-3],[-17,-12],[-12,-4],[-51,-4],[-37,-15],[-26,4],[-49,-8],[-23,-14],[-12,-4],[-38,3],[-50,-16],[-13,-7],[7,-4],[6,0],[14,4],[23,-4],[132,19],[1,-7],[13,-7],[13,-4],[54,-1],[6,2],[17,10],[13,1],[41,-13],[75,15],[51,-1],[12,2],[12,8],[1,3],[0,2],[1,3],[2,1],[9,0],[2,-1],[1,-1],[1,-3],[0,-4],[-2,-2],[-13,-18],[-11,-6],[-23,-5],[-8,-9],[7,-5],[3,-3],[3,-5],[-21,-4],[-62,1],[-14,-21],[4,-10],[11,1],[13,4],[9,0],[13,-6],[13,0],[38,9],[27,-1],[13,3],[61,33],[12,4],[24,0],[27,-12],[21,-1],[7,-4],[3,-7],[10,-4],[21,-1],[5,-1],[9,-6],[25,0],[7,3],[-8,6],[-9,4],[-19,2],[0,4],[23,-2],[7,2],[14,11],[6,2],[45,-13],[6,-4],[-12,-8],[9,-6],[22,8],[10,0],[12,-2],[35,4],[-3,-3],[-4,-3],[-3,-2],[-3,0],[5,-8],[7,-6],[16,-6],[-4,-4],[6,-6],[7,-6],[28,-8],[7,-5],[0,-5],[-8,-5],[-57,-9],[6,-5],[13,-5],[6,-3],[-11,-4],[-25,-3],[-10,-9],[21,0],[6,-4],[-20,-17],[-7,-3],[-7,0],[-16,6],[-7,-2],[-5,-6],[-1,-6],[0,-15],[-4,-5],[-8,-4],[-11,-5],[-6,-11],[-8,-5],[-24,1],[-10,5],[-5,1],[-17,-3],[18,-20],[3,-7],[-3,-8],[-14,-18],[-3,-6],[-4,-4],[-9,-6],[0,-2],[0,-3],[0,-2],[-2,-1],[-5,-1],[-3,-2],[-6,-10],[-3,-5],[-4,-2],[-5,0],[-5,1],[-5,3],[-1,6],[3,10],[-11,6],[-17,6],[-15,-3],[-8,-18],[3,0],[-1,-12],[7,-11],[-3,-9],[7,-6],[9,-4],[72,-3],[8,-3],[16,-13],[7,-1],[8,2],[8,8],[0,10],[10,3],[35,-1],[64,17],[90,-18],[70,18],[10,7],[4,5],[22,34],[3,6],[2,15],[-7,7],[-18,6],[10,17],[1,8],[-7,4],[8,11],[16,1],[30,-4],[32,4],[26,-9],[-5,-5],[-4,-6],[59,12],[51,-6],[102,14],[41,-5],[37,16],[18,1],[2,-2],[1,-4],[2,-3],[3,-2],[2,-1],[48,0],[3,-1],[2,-3],[2,-3],[2,-3],[32,-6],[23,4],[6,-2],[7,-6],[21,0],[21,-8],[8,0],[82,38],[58,5],[15,-4],[3,-11],[9,-6],[12,-2],[32,5],[23,-3],[11,6],[-3,0],[-4,2],[-3,3],[-3,3],[13,7],[21,2],[20,-4],[13,-9],[-6,-1],[-5,-3],[-5,-5],[-3,-7],[6,-6],[4,-10],[4,-6],[6,3],[10,9],[9,4],[96,-15],[-5,-2],[-10,-2],[-4,-4],[4,-3],[8,-3],[3,-6],[-6,0],[-8,-2],[-7,-4],[-6,-6],[12,-12],[49,7],[45,-15],[92,-63],[12,-11],[-91,-65],[-12,-12],[9,6],[28,16],[10,0],[5,2],[13,12],[32,17],[15,12],[7,2],[8,-2],[107,-52],[13,-15],[8,-1],[0,-5],[-25,-3],[15,-12],[6,-8],[2,-13],[-14,-8],[-5,-4],[2,-2],[2,-5],[2,-2],[-7,-3],[-15,-2],[-7,1],[-12,11],[-5,2],[-8,-4],[13,-8],[12,-12],[12,-8],[28,5],[13,-5],[11,-13],[11,-16],[-20,-34],[-7,-6],[-27,-13],[-20,0],[-6,-4],[8,-4],[101,15],[15,9],[3,3],[2,6],[2,11],[-4,5],[-8,6],[-3,6],[20,12],[24,-1],[24,-10],[19,-18],[-4,9],[-7,9],[-2,8],[9,7],[-15,3],[-28,14],[-30,6],[-15,8],[-3,4],[-4,12],[-4,6],[55,-4],[24,8],[12,0],[10,-12],[-4,-5],[-15,-8],[4,-6],[2,-1],[-2,-5],[22,6],[11,-2],[28,-37],[1,-9],[-4,-10],[-2,-8],[-1,-9],[0,-14],[4,-14],[8,-4],[10,-2],[9,-6],[-11,-15],[-3,-5],[4,0],[4,-2],[4,-3],[3,-3],[-6,-11],[-8,-2],[-9,0],[-9,-4],[6,-3],[11,-2],[6,-3],[3,-5],[2,-6],[2,-6],[4,-3],[-2,-4],[-1,-2],[0,-2],[1,-4],[-10,-7],[-5,-2],[-5,0],[0,-4],[11,0],[26,5],[10,8],[-4,4],[-3,6],[-2,18],[5,0],[18,4],[10,-6],[6,-1],[6,12],[8,-2],[8,-6],[5,-9],[-8,-9],[17,-24],[-5,-18],[-9,-16],[0,-11],[0,-3],[-5,-9],[-15,-21],[-2,-6],[0,-4],[0,-4],[0,-3],[-3,-3],[-6,-7],[-2,-4],[0,-6],[0,-24],[-8,-16],[-33,-16],[-5,-15],[-36,0],[6,10],[25,22],[13,16],[5,9],[5,11],[-99,22],[-54,-5],[9,3],[8,3],[2,10],[-4,6],[-78,38],[-78,39],[-54,3],[-8,-5],[5,-1],[10,-6],[10,-2],[5,-2],[4,-4],[4,-5],[2,-5],[3,-11],[2,-4],[5,-4],[23,-4],[12,4],[6,-1],[26,-15],[12,-2],[6,-3],[3,-4],[3,-5],[3,-5],[4,-2],[-3,-4],[1,0],[0,-1],[0,-3],[-3,-1],[-7,-6],[-5,1],[-4,5],[-7,4],[-6,-3],[3,-1],[4,0],[4,-3],[6,-4],[4,-8],[11,-8],[4,-6],[0,-11],[-5,-8],[-16,-6],[-4,-10],[7,-18],[19,-7],[34,1],[9,3],[-2,8],[-10,13],[0,13],[7,5],[53,19],[16,0],[8,-3],[0,-10],[2,-3],[2,-4],[-5,-4],[-3,-6],[-3,-8],[-4,-7],[10,-14],[13,-9],[55,-17],[15,0],[13,8],[0,2],[9,-10],[3,-5],[1,-3],[1,-6],[2,-5],[2,-2],[2,-5],[3,-23],[0,-9],[-10,6],[-14,1],[-13,-2],[-10,-7],[-4,-9],[10,-3],[23,-1],[4,-9],[-2,-11],[-11,-19],[-2,-5],[0,-5],[0,-5],[-3,-4],[-15,-10],[-52,-49],[-60,-40],[-9,-12],[-8,-7],[-21,-11],[1,-8],[-6,-9],[-31,-27],[-102,-43],[-21,0],[-81,-25],[-15,-13],[1,-17],[-11,-23],[-5,-5],[-16,-2],[-8,-3],[-2,-8],[-6,-5],[-2,-3],[-1,-4],[5,-1],[6,-3],[-6,-7],[-17,-12],[-15,-5],[-12,-14],[-8,-3],[-77,21],[-18,-4],[-79,-49],[-9,-3],[-19,0],[-8,-6],[13,-5],[5,-3],[-3,-7],[-23,-12],[-40,-5],[-19,-14],[-52,-21],[-16,-1],[-31,10],[-16,0],[-14,-10],[20,-4],[1,-2],[6,-8],[3,-2],[-8,-20],[-13,-11],[-28,-16],[-59,1],[-10,-13],[-4,-9],[-9,-4],[-23,-3],[-4,-1],[-4,-4],[-2,-1],[-2,2],[-1,3],[-2,3],[-23,-6],[-15,5],[-15,-7],[-8,-1],[22,-14],[24,-2],[60,13],[7,-2],[3,-5],[-1,-5],[-13,-36],[-4,-9],[-7,-9],[-26,-21],[-55,-25],[-32,-25],[-84,-11],[-51,-25],[-12,-11],[-9,-14],[-6,-5],[-21,-6],[-16,-12],[-23,-25],[-16,-12],[-5,-5],[-5,-8],[-7,-18],[-4,-5],[-7,-3],[-6,0],[-18,8],[5,-6],[6,-15],[4,-7],[-9,-2],[-17,-9],[-92,-70],[1,4],[2,5],[2,3],[2,4],[-16,8],[-20,-4],[-52,-31],[-8,-3],[-24,8],[-80,6],[-4,-2],[-7,-5],[-4,-2],[-41,0],[-7,-2],[-4,-6],[-8,-20],[5,0],[5,-3],[4,-4],[5,-5],[-10,-14],[-55,-35],[-7,-9],[-6,-4],[-2,-3],[-2,-3],[-1,-6],[-11,-32],[-6,-12],[-7,-8],[-38,-20],[-14,0],[-21,10],[-7,2],[-29,-8],[-45,6],[-47,-30],[-5,-11],[1,-6],[1,-12],[0,-6],[-1,-7],[-6,-12],[-5,-16],[-37,-24],[-6,-12],[-1,-11],[0,-13],[-3,-12],[2,-11],[-4,-7],[-22,-16],[-21,-24],[-7,-14],[-7,-6],[-22,-12],[-6,-6],[-48,-23],[-18,-19],[-62,-9],[2,-12],[13,6],[101,-4],[10,5],[18,14],[11,5],[11,2],[4,2],[21,25],[10,7],[10,5],[29,6],[6,4],[2,4],[4,14],[8,13],[10,3],[22,-7],[6,-17],[26,-10],[16,-2],[33,-12],[42,-2],[16,-7],[11,-14],[46,-4],[51,11],[27,7],[-14,12],[-23,4],[-30,-3],[-29,6],[-38,5],[-34,19],[-48,16],[-20,7],[-8,6],[-2,5],[-1,9],[-5,12],[-2,10],[-1,11],[1,10],[-3,5],[-1,7],[2,9],[2,7],[4,9],[4,5],[5,2],[7,0],[6,3],[5,7],[4,8],[5,7],[8,2],[115,-31],[16,4],[19,-2],[37,22],[81,-14],[46,9],[64,-3],[31,9],[37,28],[35,9],[8,-1],[36,-14],[18,1],[16,6],[6,15],[-8,11],[-35,-1],[-12,3],[12,12],[42,10],[41,-4],[40,18],[67,6],[40,14],[42,8],[9,9],[1,10],[-4,5],[-6,4],[-4,5],[-2,10],[3,5],[5,1],[34,-20],[8,-10],[5,-4],[6,1],[5,7],[1,8],[-2,7],[-6,3],[-6,2],[-15,14],[-13,9],[-14,3],[-12,0],[-4,3],[1,10],[-1,1],[-3,7],[7,7],[7,-4],[8,-7],[8,-4],[8,-2],[16,-10],[24,-21],[17,-8],[18,-3],[38,0],[40,12],[43,22],[26,4],[7,6],[7,12],[-4,6],[-4,2],[-10,0],[9,12],[12,4],[24,0],[48,12],[-8,4],[7,15],[13,6],[26,0],[93,22],[8,10],[-2,7],[-10,6],[-2,5],[2,7],[3,5],[4,5],[3,2],[-11,1],[-44,5],[-8,5],[-8,2],[-105,-49],[-135,0],[-13,-13],[3,0],[2,-2],[3,-2],[2,-5],[-14,-4],[-18,10],[-17,18],[-16,28],[-4,5],[-2,6],[-2,13],[3,15],[6,7],[45,12],[28,14],[6,9],[4,13],[4,14],[4,13],[10,14],[14,11],[14,7],[77,3],[78,-17],[37,-20],[21,-1],[7,-3],[25,-20],[15,-5],[14,3],[13,8],[13,14],[-5,8],[-3,5],[-2,5],[3,11],[5,11],[9,8],[9,4],[105,8],[9,-5],[3,-10],[-6,-10],[-11,-3],[-21,1],[-17,-10],[-9,-1],[-18,9],[-9,-1],[-8,-5],[-7,-9],[27,-64],[39,-33],[102,-41],[95,-21],[63,-2],[31,11],[34,-2],[31,11],[28,5],[28,19],[7,6],[4,10],[-1,4],[-3,20],[-1,3],[-2,3],[-1,3],[1,6],[1,3],[-1,3],[-1,2],[-5,4],[-8,12],[-2,4],[-2,8],[-5,6],[-5,4],[-3,4],[-1,5],[0,8],[0,7],[1,5],[7,-3],[27,-32],[46,-28],[6,-6],[2,-4],[2,-6],[2,-7],[1,-6],[2,1],[31,-54],[10,-8],[23,-33],[3,-5],[3,-11],[3,-14],[1,-14],[-3,-12],[-5,-6],[-9,-3],[-16,-1],[-6,-2],[-5,-6],[-13,-21],[-9,-24],[-4,-5],[-10,-9],[-3,-6],[5,-5],[10,-5],[5,-4],[4,-5],[2,-4],[4,-10],[9,-11],[10,-6],[29,-4],[12,-4],[10,-7],[1,-3],[0,-4],[-1,-23],[0,-6],[1,-5],[3,-11],[0,-5],[-1,-12],[-3,-9],[-2,-10],[0,-13],[2,-9],[7,-19],[1,-11],[-5,-21],[-9,-23],[-4,-22],[8,-17],[-48,-42],[-14,-5],[-27,-5],[-13,-9],[-6,-12],[2,-11],[7,-10],[8,-10],[3,-5],[1,-5],[0,-14],[1,-9],[4,-6],[20,-20],[29,-14],[21,-4],[15,-8],[83,-13],[82,-13],[-13,12],[-91,17],[-90,18],[-43,33],[-3,5],[-3,18],[-3,5],[-3,3],[-3,4],[-7,16],[0,9],[6,7],[22,18],[26,7],[46,36],[7,15],[-7,23],[4,19],[19,33],[-1,14],[-19,33],[1,18],[1,4],[2,9],[2,5],[3,5],[31,24],[6,10],[4,4],[4,2],[36,-4],[21,10],[20,2],[10,8],[-13,8],[-41,-8],[-12,2],[-7,3],[-22,18],[-15,5],[-10,8],[-19,19],[-6,10],[-8,22],[-5,6],[7,4],[53,6],[64,9],[54,37],[79,-2],[78,-2],[16,7],[34,3],[72,39],[83,21],[129,-12],[82,-8],[120,-1],[127,-35],[106,-16],[81,-4],[50,8],[74,-2],[75,-2],[95,-19],[29,-16],[28,-23],[-14,-15],[-18,-8],[-19,-1],[-15,5],[-6,1],[-9,-10],[-6,1],[-13,5],[-3,2],[-2,3],[-4,8],[-2,3],[-6,3],[-24,-1],[-6,-4],[-10,-16],[-6,-4],[-5,-2],[-6,-5],[-5,-8],[-2,-9],[4,-9],[6,-5],[8,-2],[5,-1],[-3,-8],[-12,-12],[-1,-6],[2,-10],[-2,-5],[-3,-6],[-2,-7],[2,-3],[9,-24],[4,-2],[7,-3],[4,-5],[2,-4],[2,-3],[127,-53],[47,-8],[46,-19],[32,3],[25,-9],[11,-1],[10,-4],[9,-13],[5,-14],[2,-4],[6,-3],[13,1],[7,-3],[3,-8],[7,-13],[113,-25],[113,-25],[11,8],[-9,8],[-97,16],[-98,17],[-9,6],[-8,10],[-4,14],[5,6],[125,-19],[53,1],[65,-6],[47,-18],[63,-9],[23,9],[32,2],[38,15],[78,-3],[18,-7],[4,1],[12,10],[48,-8],[-3,-7],[-7,-8],[-1,-8],[3,-1],[30,-19],[106,-10],[30,-21],[25,-7],[30,0],[-116,63],[-1,5],[3,5],[11,0],[134,-46],[8,0],[23,11],[-72,26],[-72,25],[0,2],[0,2],[0,1],[-1,-1],[5,3],[5,1],[10,0],[-9,11],[-2,6],[42,7],[40,-16],[28,-4],[2,-3],[1,-7],[1,-8],[4,-5],[69,-24],[15,2],[6,3],[6,5],[5,6],[5,9],[5,5],[14,7],[3,4],[-2,7],[-7,8],[-1,8],[2,5],[14,18],[3,8],[5,9],[6,3],[5,-5],[1,-4],[1,-3],[1,-2],[2,-1],[2,1],[1,2],[1,4],[-2,7],[1,3],[0,2],[-3,4],[-4,1],[-8,-1],[-3,1],[-2,4],[-6,20],[7,12],[14,7],[27,6],[-10,-12],[9,-9],[11,-1],[22,6],[-15,8],[3,6],[5,2],[5,1],[4,3],[-5,7],[-7,2],[-20,-1],[-5,2],[-4,4],[-5,6],[2,0],[-3,2],[-2,2],[-2,3],[-2,5],[6,0],[2,5],[-2,5],[-24,7],[-5,4],[-5,7],[-11,21],[-2,6],[18,17],[5,7],[-11,2],[-23,-3],[-12,2],[-9,9],[6,5],[16,3],[3,3],[-1,6],[-4,6],[-4,3],[-4,3],[6,4],[7,1],[7,-1],[7,-4],[4,-6],[3,-7],[4,-2],[6,7],[-6,13],[-10,11],[-21,12],[1,2],[0,2],[1,2],[0,2],[-6,10],[-7,7],[6,10],[9,2],[20,-4],[-4,7],[-9,6],[-3,7],[23,-7],[8,-1],[-3,10],[-3,4],[-4,3],[-4,7],[3,7],[1,6],[-2,6],[-3,6],[39,14],[10,14],[6,3],[6,1],[6,-3],[5,-9],[-12,-8],[-4,-4],[2,-1],[2,-3],[2,-1],[-2,-7],[-3,-5],[-4,-3],[19,-1],[7,-3],[-3,-4],[-8,-5],[-4,-4],[12,-7],[13,1],[25,10],[29,2],[1,7],[16,-6],[7,1],[7,8],[-6,8],[-8,3],[-7,5],[-3,11],[-1,4],[-1,4],[0,5],[0,5],[1,5],[7,12],[-5,2],[-4,4],[-3,4],[-4,6],[8,1],[8,0],[7,-3],[8,-6],[8,-14],[5,-5],[6,-2],[-3,-9],[-11,-4],[-3,-7],[18,-3],[10,2],[4,11],[6,7],[24,3],[6,6],[-1,9],[0,4],[1,2],[19,9],[3,5],[3,10],[2,3],[5,1],[8,0],[4,-2],[2,-6],[-5,-1],[-5,-3],[17,0],[16,-5],[2,-2],[5,-7],[2,-2],[3,-2],[11,-3],[11,-8],[6,-1],[8,4],[5,2],[5,-2],[2,-6],[-3,-9],[9,-5],[36,9],[-2,-7],[-1,-2],[-2,-3],[4,-3],[5,-3],[11,-2],[1,-2],[3,-9],[2,-3],[6,-1],[5,3],[3,4],[-1,-6],[4,-13],[-1,-10],[7,1],[8,7],[5,11],[-3,14],[7,3],[8,-1],[7,1],[3,9],[0,-7],[2,-5],[2,-5],[3,-4],[-1,-1],[-3,-6],[4,-3],[5,-1],[8,0],[-4,-9],[-5,-8],[3,-3],[3,-1],[4,1],[-1,0],[-5,-8],[-4,-8],[-2,-7],[2,-11],[5,-4],[6,1],[4,8],[4,-13],[11,-3],[13,7],[9,18],[-1,-4],[1,-4],[2,-2],[3,-3],[4,-3],[3,1],[3,2],[3,4],[1,2],[1,2],[7,-1],[4,-7],[-1,-7],[-6,-1],[6,-3],[23,3],[20,-7],[6,-5],[-2,-3],[-5,-10],[5,0],[0,-4],[-29,-14],[-5,-10],[3,-10],[12,-10],[-3,-9],[9,1],[7,6],[2,8],[-7,10],[10,5],[34,7],[7,-6],[4,-5],[9,1],[12,4],[-2,8],[-5,3],[-5,2],[-5,5],[19,12],[6,4],[0,3],[0,5],[1,3],[3,2],[8,1],[4,-1],[3,-4],[0,-5],[-2,-24],[-3,-9],[-4,-7],[-8,-12],[8,-5],[9,5],[8,10],[5,14],[-1,3],[-2,5],[-1,5],[2,6],[5,3],[20,2],[34,22],[12,3],[5,-2],[5,-3],[13,-14],[15,-9],[-4,-6],[-3,-7],[0,-8],[3,-8],[-4,-7],[-4,-5],[-9,-8],[-4,8],[-6,5],[-6,2],[-5,-3],[-4,-5],[-10,8],[-9,2],[-6,-13],[8,-1],[8,-3],[7,-7],[6,-9],[-6,-8],[-14,0],[-7,-5],[34,3],[30,15],[9,-1],[9,-9],[-2,-2],[-2,-3],[-2,-7],[17,-2],[8,-4],[8,-10],[11,-30],[-1,-8],[-7,-8],[-1,-9],[0,-7],[2,-5],[13,24],[11,10],[2,7],[-4,8],[-22,38],[13,-1],[8,1],[5,5],[1,5],[-1,6],[0,6],[2,5],[8,6],[10,4],[9,-3],[6,-28],[6,-5],[6,3],[4,12],[-1,7],[-2,7],[1,5],[5,2],[22,-8],[-6,13],[-1,3],[0,5],[3,8],[0,3],[1,6],[0,3],[-1,3],[-4,4],[-4,2],[-6,2],[-10,0],[8,9],[10,4],[43,5],[36,-5],[75,-29],[17,3],[132,-15],[-4,-9],[-7,-5],[-7,-2],[-6,-4],[42,-12],[7,-6],[-5,-9],[-21,-16],[-6,-10],[62,8],[6,-2],[11,-6],[6,1],[13,7],[7,0],[7,-4],[-13,-14],[-4,-9],[2,-10],[-21,-20],[25,2],[13,-4],[10,-12],[9,-3],[36,17],[12,1],[13,-3],[32,-20],[10,-4],[23,-2],[-3,-6],[-3,-4],[-8,-6],[7,-2],[19,5],[7,-3],[2,-8],[-1,-7],[-3,-7],[-7,4],[-22,-3],[3,-11],[1,-1],[0,-4],[0,-4],[0,-3],[-2,-3],[-3,-2],[-8,-4],[-5,-5],[-5,-6],[-1,-7],[5,-3],[13,6],[25,22],[13,5],[24,4],[13,-4],[31,-14],[35,-21],[26,-20],[9,-19],[1,-10],[-11,-18],[-23,-5],[-33,12],[-35,7],[-52,5],[-43,-5],[-27,-16],[-107,-22],[-14,-11],[-7,-17],[8,-14],[-4,-11],[-27,-19],[62,4],[133,-22],[132,-23],[14,-9],[-24,-3],[-12,-6],[-10,-11],[2,0],[6,-4],[-6,-4],[-92,14],[-19,8],[-20,3],[-14,7],[-4,1],[-40,-4],[-4,3],[1,5],[-8,4],[-5,-5],[-5,-10],[-5,-9],[-8,-6],[-121,-7],[-16,3],[25,-25],[31,-14],[23,-20],[7,-3],[15,-4],[96,-43],[63,-10],[77,9],[39,-10],[5,-10],[-9,-19],[17,-3],[18,-8],[33,-25],[-2,-1],[-4,-4],[4,-1],[3,-3],[3,-4],[-1,-6],[-4,-3],[-33,-1],[-7,-6],[-2,-12],[2,-1],[5,-3],[0,-9],[8,-4],[22,-4],[10,1],[5,-1],[12,-11],[-5,-8],[-7,-1],[-8,1],[-7,0],[-30,-25],[-8,-10],[-7,-3],[-6,-1],[-6,-3],[-5,-7],[4,-1],[10,-3],[4,1],[13,6],[29,1],[8,-4],[0,-4],[-8,-1],[-35,-21],[-32,-3],[-5,1],[-15,8],[-5,0],[-4,-2],[-8,-7],[-10,-5],[-32,-3],[-11,7],[-22,31],[-11,7],[-10,2],[-68,30],[0,10],[6,7],[15,7],[-11,10],[-106,34],[-80,66],[-19,6],[-35,-5],[14,-12],[5,-8],[10,-6],[19,-26],[7,-6],[-5,-6],[-10,-1],[-18,3],[10,-11],[36,-9],[33,-16],[9,-7],[11,-11],[9,-4],[16,0],[16,-14],[10,-17],[7,-14],[2,-2],[5,-2],[13,-14],[16,-12],[4,-5],[0,-10],[-2,-10],[-1,-10],[3,-11],[2,-1],[4,1],[3,-1],[2,-4],[2,-10],[2,-5],[3,-3],[2,-3],[4,-2],[18,-4],[5,-4],[2,-4],[3,-8],[3,-4],[0,-9],[3,-8],[2,-8],[-3,-9],[1,-9],[8,-7],[15,-7],[10,-7],[21,-31],[19,-22],[4,0],[4,1],[9,11],[42,15],[13,15],[1,14],[-6,14],[-14,19],[-6,12],[-2,11],[-2,11],[-4,12],[-10,17],[-2,6],[1,8],[4,0],[5,-4],[5,-4],[29,-43],[29,-29],[5,-11],[-1,-7],[-1,-6],[-1,-6],[1,-8],[4,-9],[5,-4],[11,-4],[49,-40],[-8,-3],[-8,1],[-51,25],[-4,-2],[-12,-9],[-20,-6],[-22,-12],[-36,2],[-16,-5],[-12,-8],[-10,-9],[-2,-12],[6,-22],[9,-15],[14,-3],[53,14],[8,-1],[5,-4],[6,-12],[4,-6],[9,-9],[5,-6],[1,-7],[0,-8],[-5,-10],[0,-7],[3,-6],[14,-7],[5,-5],[2,-6],[3,-13],[6,-17],[7,-24],[3,-11],[9,-13],[11,-10],[12,-8],[34,-14],[7,-6],[3,-4],[7,-11],[3,-5],[3,-5],[1,-7],[0,-6],[1,-6],[0,-3],[0,-3],[0,-3],[2,-3],[5,-5],[5,-6],[-7,-12],[-8,-10],[-6,-4],[-11,-4],[-6,-6],[67,14],[21,-10],[-3,-1],[-1,-4],[-1,-5],[-1,-6],[10,2],[17,8],[9,2],[5,0],[4,-2],[7,-6],[7,-9],[3,-3],[5,0],[-2,-12],[2,-6],[11,-7],[6,-10],[-2,-8],[-6,-6],[-7,-1],[37,-17],[46,-8],[3,-2],[3,-5],[1,-4],[1,-9],[0,-3],[6,-5],[28,-7],[8,1],[8,4],[7,8],[4,11],[0,7],[0,9],[0,10],[2,7],[6,7],[7,2],[5,-4],[3,-11],[1,-6],[3,-5],[4,-7],[1,-11],[3,-14],[14,-21],[2,-16],[-1,-7],[-4,-12],[0,-7],[2,-7],[6,-4],[37,-10],[25,0],[26,7],[47,34],[42,47],[17,31],[32,75],[13,20],[-4,13],[2,8],[5,5],[9,2],[10,-1],[5,2],[2,7],[-2,7],[-3,4],[-5,2],[-3,0],[6,15],[14,9],[25,4],[55,-8],[-4,5],[-5,4],[-53,14],[-6,7],[2,15],[5,13],[17,37],[3,7],[0,5],[0,5],[1,7],[1,8],[6,16],[6,24],[4,11],[26,51],[13,35],[5,12],[77,119],[25,25],[24,12],[26,4],[29,-3],[22,11],[20,3],[31,-8],[22,-22],[23,-20],[4,-31],[-14,27],[-21,17],[-20,19],[-15,9],[-20,0],[-25,-13],[-2,-13],[-18,4],[-20,-5],[-6,-12],[0,-6],[2,-9],[7,-11],[2,-9],[-19,-3],[-5,-4],[-4,-5],[-1,-9],[1,-11],[4,-5],[49,-21],[22,-8],[9,-20],[15,-22],[3,-4],[2,-7],[2,-8],[1,-6],[4,-5],[11,-11],[76,-53],[62,-32],[43,-7],[29,-15],[72,-17],[89,4],[20,15],[7,2],[7,-1],[36,-21],[1,-4],[-2,-9],[-8,-11],[-10,-8],[-6,-10],[5,-20],[2,13],[6,14],[7,12],[6,8],[7,14],[-5,9],[-9,9],[-6,14],[17,2],[6,3],[0,19],[8,12],[12,7],[11,2],[12,6],[27,19],[12,-2],[8,-11],[4,-1],[7,6],[8,11],[4,3],[6,2],[8,-1],[23,-12],[29,0],[-4,10],[-6,5],[-13,6],[10,10],[12,6],[35,7],[21,11],[101,7],[88,-31],[39,-4],[20,-10],[1,-25],[-2,0],[8,-1],[4,-4],[1,-6],[-3,-13],[7,1],[4,6],[4,8],[4,7],[6,6],[7,3],[7,2],[8,-1],[16,-4],[7,-5],[8,-7],[17,-24],[8,-5],[18,-4],[8,-5],[8,-7],[7,-4],[40,-8],[16,-9],[2,-4],[-3,-5],[-7,-6],[13,-4],[19,8],[10,-9],[4,-3],[12,-3],[12,-1],[-2,-5],[-2,-4],[-7,-5],[-2,-6],[3,-5],[5,-3],[3,0],[-5,-7],[-11,3],[-6,-4],[8,-6],[26,-11],[2,-7],[7,-2],[9,0],[7,3],[24,23],[-1,-7],[-2,-5],[-3,-5],[-3,-4],[4,-3],[5,0],[5,3],[5,0],[-5,-11],[-8,-6],[-9,-3],[-8,0],[-5,1],[-10,6],[-4,1],[-8,-3],[-2,-3],[2,-4],[8,-5],[17,-3],[33,-17],[7,-2],[-1,-15],[5,-9],[9,-4],[8,0],[4,2],[3,3],[2,4],[4,5],[5,3],[6,0],[12,-5],[-2,-1],[-6,-7],[9,-5],[8,3],[9,5],[10,1],[-3,10],[-5,7],[-5,5],[-6,2],[4,5],[-7,5],[-8,2],[-15,1],[2,4],[-5,-1],[-16,-11],[3,8],[-2,5],[-5,2],[-10,2],[-5,2],[-5,4],[-5,5],[9,4],[8,6],[9,4],[38,-17],[27,0],[6,3],[1,3],[1,5],[2,3],[13,-4],[10,2],[8,7],[7,12],[-8,6],[-61,3],[1,6],[43,18],[6,-1],[11,-6],[16,-5],[15,-1],[11,5],[0,4],[-4,0],[-8,6],[-4,2],[-82,0],[-6,2],[-10,10],[-6,0],[2,4],[2,3],[6,5],[-6,3],[-5,-3],[-5,-5],[-6,-3],[-4,2],[-8,9],[-4,1],[0,4],[11,2],[10,9],[17,22],[14,14],[3,7],[1,5],[0,13],[1,6],[1,20],[17,13],[33,11],[78,8],[-14,-6],[-7,-5],[-5,-9],[-1,-7],[3,-5],[7,-12],[39,8],[3,8],[2,10],[-2,7],[-4,4],[-5,3],[34,22],[10,3],[11,-3],[34,-26],[11,-4],[26,-4],[10,-10],[3,-10],[6,-24],[5,-9],[-2,-4],[4,-7],[10,-11],[5,-6],[-11,-12],[5,-1],[16,-7],[30,0],[12,4],[5,4],[2,4],[1,9],[2,5],[11,17],[6,4],[40,0],[10,-4],[17,-14],[10,-4],[12,10],[21,10],[5,1],[9,-5],[18,0],[10,-4],[3,-2],[5,-2],[4,0],[1,8],[-3,4],[-13,7],[2,3],[3,7],[1,3],[-46,38],[-5,8],[-15,29],[-6,8],[-2,4],[0,11],[-4,17],[-2,22],[-4,5],[3,3],[0,4],[-2,5],[-3,4],[4,6],[7,9],[1,7],[3,9],[6,6],[7,3],[5,1],[-8,5],[-19,1],[-8,8],[-5,9],[-5,6],[-11,9],[-9,4],[-66,6],[0,4],[25,8],[43,-8],[14,3],[14,9],[8,17],[0,11],[-2,12],[-1,13],[4,14],[32,33],[5,12],[7,12],[16,-3],[27,-15],[11,0],[18,3],[17,8],[7,11],[-6,17],[-15,6],[-81,2],[-81,3],[-12,-8],[-24,-22],[8,-6],[27,2],[-7,-7],[-40,-1],[-16,4],[-15,7],[-5,-1],[1,-10],[5,-6],[15,-2],[4,-8],[-15,1],[-14,5],[-15,10],[-16,22],[-10,16],[-2,6],[1,7],[7,10],[1,6],[4,17],[9,14],[18,20],[15,21],[5,3],[2,2],[3,8],[2,2],[3,2],[8,0],[4,2],[32,35],[12,6],[84,3],[63,-14],[76,6],[64,4],[61,21],[23,4],[7,10],[8,7],[38,6],[12,6],[-32,0],[-12,4],[-6,4],[5,4],[4,5],[6,11],[-2,4],[9,16],[0,13],[-6,11],[-10,9],[-13,3],[-6,3],[-10,15],[-51,29],[-2,2],[0,3],[0,7],[0,3],[-5,5],[-12,10],[-4,5],[-1,10],[4,5],[37,3],[15,-5],[15,1],[15,-6],[33,-1],[16,-6],[58,-2],[32,-13],[6,-6],[14,-17],[25,-18],[29,-5],[21,-11],[69,-14],[70,-13],[86,9],[46,-3],[91,-7],[16,-7],[110,7],[32,-7],[29,-13],[101,-11],[65,-4],[73,-19],[75,-8],[80,-12],[79,-12],[84,-35],[68,-14],[46,-2],[41,-17],[39,-8],[20,-15],[88,-28],[15,0],[-3,-5],[-3,-3],[2,3],[-13,-9],[-95,6],[-95,7],[-14,-5],[-103,12],[-61,-3],[-27,-8],[-5,0],[-6,5],[-4,5],[-7,14],[-4,5],[-7,4],[-13,0],[-7,4],[2,4],[-5,3],[-6,0],[-6,-3],[-5,-6],[-4,-3],[-6,4],[-10,12],[-13,5],[-13,2],[-13,-3],[-13,-6],[-39,-29],[-8,-10],[-4,-7],[-1,-5],[-10,-12],[-22,-35],[-3,-10],[-4,-10],[-11,7],[-17,21],[-10,8],[-12,5],[-12,2],[-10,-3],[-5,-5],[-5,-6],[-5,-3],[-6,1],[-5,2],[-18,3],[19,-18],[6,-2],[0,-10],[5,-4],[6,-1],[6,-4],[7,-5],[38,-17],[17,-3],[34,3],[6,3],[14,19],[7,6],[15,6],[55,6],[33,13],[91,5],[85,5],[86,6],[70,2],[92,5],[93,5],[-10,-24],[-33,-26],[-13,-17],[-14,-22],[-51,-57],[-70,-47],[-75,-77],[-9,1],[0,18],[3,7],[8,10],[4,5],[1,8],[-1,7],[-2,5],[0,4],[3,6],[1,4],[0,5],[1,8],[-1,8],[-2,4],[0,3],[4,5],[7,3],[13,-3],[7,0],[7,4],[18,16],[12,5],[6,4],[3,10],[3,5],[18,9],[-6,8],[-24,8],[-1,10],[-8,2],[-16,-4],[-19,1],[-6,-3],[-3,-5],[0,-4],[2,-4],[1,-8],[1,-2],[1,-2],[-2,-3],[-14,-12],[-4,-4],[-1,-5],[-2,-8],[-4,1],[-5,7],[-4,11],[5,7],[2,8],[-1,9],[-5,8],[-8,3],[-10,-1],[-7,2],[-3,12],[4,5],[10,3],[5,5],[-8,9],[-10,6],[-42,16],[-11,-1],[-11,-6],[25,-16],[4,0],[4,3],[3,-1],[2,-7],[0,-2],[-3,-9],[-4,-17],[-25,-41],[-1,-1],[-1,1],[-1,0],[-1,-4],[0,-3],[1,-2],[2,0],[1,-3],[2,-7],[3,-7],[6,-9],[6,-1],[15,4],[12,-6],[2,-13],[1,-14],[4,-12],[-1,-6],[-1,-10],[-1,-4],[-5,-5],[-5,-4],[-6,-2],[-51,-3],[-66,-20],[-6,4],[-14,17],[-26,16],[-23,4],[-16,8],[-9,12],[-5,3],[-3,-8],[0,-7],[-1,-6],[0,-6],[1,-7],[4,-5],[10,-8],[4,-5],[10,-7],[35,-14],[8,-8],[-6,-18],[-12,-5],[-14,-2],[-20,-18],[-28,7],[-12,-6],[10,-17],[-6,-6],[2,-20],[-4,-14],[8,10],[9,5],[9,0],[7,-11],[-2,-4],[5,0],[10,10],[6,2],[7,-2],[14,-9],[7,-1],[7,2],[6,3],[7,2],[7,-3],[1,-2],[3,-7],[2,-2],[3,-2],[3,0],[3,0],[3,2],[63,46],[45,-7],[27,11],[26,17],[8,3],[16,0],[8,3],[17,13],[16,7],[28,35],[21,11],[6,2],[3,2],[2,6],[1,8],[2,6],[5,6],[19,12],[33,43],[9,19],[3,3],[11,5],[120,129],[13,9],[13,5],[13,2],[24,-5],[29,9],[64,-8],[23,8],[105,-9],[77,-8],[78,-17],[78,-18],[112,-39],[68,-22],[17,-13],[10,-1],[4,-2],[2,-3],[2,-7],[2,-2],[57,-60],[26,-35],[6,-11],[2,-17],[-5,-16],[-10,-11],[-86,-44],[-11,-1],[-11,6],[-21,24],[-21,17],[-20,27],[-11,4],[-11,-4],[-11,-9],[2,-2],[3,-2],[3,0],[3,0],[-7,-12],[-18,-10],[-7,-7],[-5,-8],[-8,-18],[-5,-6],[-12,-3],[-35,15],[-17,2],[-14,9],[-5,1],[-4,0],[0,-4],[16,-18],[6,-2],[35,-4],[0,-4],[-4,-5],[-4,-9],[-2,-10],[0,-9],[-26,-1],[-12,-3],[-11,-12],[49,-5],[6,2],[6,4],[10,12],[5,3],[5,0],[18,-8],[36,-1],[13,-6],[115,-17],[19,10],[7,2],[5,-2],[6,-4],[5,-1],[8,8],[3,-5],[6,-12],[5,-6],[18,-10],[9,-12],[-4,-8],[-12,-4],[-11,-1],[1,4],[1,8],[0,4],[-9,1],[-8,-6],[-3,-10],[4,-15],[4,-8],[-1,-4],[-9,-3],[-18,-16],[1,-5],[1,-5],[-1,-5],[-1,-5],[7,5],[62,26],[45,4],[7,-2],[7,-5],[-2,0],[-4,-4],[6,-3],[6,1],[19,10],[5,0],[12,-4],[28,5],[15,-2],[10,-15],[0,-14],[-5,-12],[-7,-10],[-7,-6],[-9,-5],[-4,-5],[-2,-7],[-2,-7],[-4,-8],[2,-3],[-5,-8],[-6,-2],[-5,-1],[-7,-2],[-17,-10],[-10,-3],[-4,-3],[-9,-9],[-7,-4],[-13,-3],[-7,-2],[-32,-27],[-16,-4],[-3,-3],[1,-4],[5,-4],[6,-1],[7,2],[14,6],[27,28],[11,5],[35,5],[42,32],[16,24],[11,6],[23,2],[-16,-13],[-6,-9],[-5,-14],[-4,-20],[-4,-9],[-5,-4],[10,5],[17,19],[19,9],[18,20],[9,4],[49,12],[10,-3],[21,-14],[96,-19],[17,-10],[11,-3],[5,-3],[3,-5],[5,-10],[3,-4],[5,-4],[9,-5],[5,-5],[10,-13],[4,-3],[-4,-8],[13,-17],[29,-23],[12,-19],[11,-13],[32,-22],[9,-20],[0,-11],[-6,-5],[-15,-4],[-112,4],[7,-8],[80,-19],[67,-38],[82,-19],[12,-12],[-2,-22],[10,17],[10,9],[51,0],[53,0],[89,14],[5,2],[-3,7],[9,5],[31,-1],[-2,-4],[46,6],[12,-13],[75,19],[68,29],[17,13],[70,12],[69,11],[81,18],[125,16],[8,-2],[4,-7],[-1,-7],[-6,-12],[-1,-6],[2,-6],[4,-8],[4,-2],[2,6],[0,5],[1,8],[1,6],[2,3],[4,3],[7,16],[4,6],[7,4],[85,16],[97,-8],[111,4],[83,-6],[84,-5],[83,0],[15,-6],[15,2],[22,-8],[60,-4],[53,-22],[28,-3],[25,-15],[42,-7],[100,-41],[99,-41],[125,-94],[43,-53],[50,-96],[8,-28],[8,-23],[4,-14],[2,-15],[1,-12],[-5,-15],[-19,-17],[-7,-11],[-10,-30],[-6,-7],[-10,-1],[-45,11],[-14,-7],[8,-1],[7,-4],[15,-12],[8,-1],[18,2],[7,-5],[-13,-16],[-5,-10],[-1,-14],[1,-5],[3,-5],[2,-5],[-2,-8],[-4,-4],[-17,-8],[-7,-6],[-7,-9],[-12,-21],[-1,-12],[6,-11],[15,-20],[-10,0],[5,-4],[8,-6],[4,-4],[3,-5],[1,-3],[-1,-3],[-1,-5],[-2,-8],[-6,-7],[18,13],[8,3],[7,-1],[70,-41],[9,-9],[5,-1],[-10,11],[-3,5],[32,-6],[10,-6],[5,-5],[3,-6],[0,-8],[-1,-13],[18,12],[18,6],[19,1],[56,-13],[36,-17],[5,-1],[9,7],[5,0],[3,-2],[2,-5],[2,-4],[2,-5],[13,-15],[3,-10],[-4,-9],[-9,-13],[-4,-13],[-2,-16],[-5,-17],[5,-13],[1,-5],[0,-8],[1,-9],[3,-5],[4,-4],[4,-9],[1,-6],[1,-14],[2,-6],[3,-6],[2,-6],[2,-7],[0,-8],[-1,-7],[-2,-7],[-2,-4],[-1,-4],[2,-7],[6,-15],[2,-8],[-1,-19],[-6,-10],[-8,-8],[-6,-16],[27,-21],[63,-16],[15,-9],[14,-13],[7,-14],[-2,-11],[-4,-12],[-14,-26],[-9,-10],[-4,-6],[-2,-6],[-2,-13],[-1,-5],[-3,-6],[-8,-10],[-4,-7],[-1,0],[-1,-1],[-1,-4],[0,-3],[1,-7],[-1,-30],[-1,-15],[-3,-6],[-8,-5],[-7,-12],[-11,-28],[-21,-27],[-25,-4],[-51,6],[6,-14],[12,-7],[24,-3],[38,7],[14,11],[7,2],[4,3],[4,5],[30,57],[4,4],[16,11],[5,6],[-12,19],[-4,12],[4,7],[3,10],[1,4],[2,4],[29,29],[13,20],[15,9],[7,7],[5,9],[0,7],[-1,8],[-1,13],[0,19],[-1,8],[-2,9],[-5,11],[-11,14],[-4,12],[-1,5],[1,9],[-1,4],[-9,19],[5,8],[0,8],[-4,7],[-5,7],[-10,10],[18,38],[-2,9],[-8,11],[-3,7],[11,-1],[5,3],[3,6],[-2,6],[-8,9],[-4,5],[11,11],[35,18],[8,9],[13,23],[7,8],[7,3],[6,0],[6,3],[10,14],[5,3],[6,1],[17,-6],[11,1],[22,14],[-3,13],[4,6],[16,5],[11,11],[3,1],[5,1],[4,2],[8,5],[-5,1],[-2,4],[1,4],[4,6],[5,3],[6,-1],[6,-3],[6,-2],[7,3],[5,7],[3,10],[0,13],[4,0],[13,-12],[5,-3],[60,3],[10,-2],[20,-12],[11,-2],[70,18],[19,14],[21,7],[38,0],[14,-8],[12,2],[5,-1],[13,-10],[5,-2],[29,-2],[53,6],[33,26],[25,15],[12,6],[13,-3],[10,-6],[3,-4],[1,-4],[2,-9],[1,-3],[28,-25],[22,-9],[35,-28],[27,-10],[82,-22],[121,19],[113,-2],[16,-7],[16,1],[43,-16],[24,-17],[12,-4],[77,3],[77,4],[18,-12],[1,-4],[-5,-7],[59,0],[13,4],[79,57],[79,57],[8,11],[14,16],[24,19],[12,3],[24,-1],[7,-3],[6,-4],[12,-15],[13,-10],[6,-3],[7,-1],[14,3],[6,0],[7,-7],[-19,-11],[-7,-1],[-3,-3],[-15,-17],[11,-12],[38,-17],[33,-22],[6,-6],[3,-8],[1,-8],[-1,-5],[-2,-4],[-2,-8],[0,-6],[1,-12],[-1,-6],[-2,-12],[-11,-37],[8,-16],[3,-9],[2,-11],[-2,-12],[3,-13],[7,-12],[6,-8],[11,-8],[12,-5],[79,-4],[54,-15],[32,-22],[20,-6],[21,-16],[11,-5],[42,-5],[19,-12],[13,-32],[4,-29],[0,-52],[6,-24],[8,-14],[11,-10],[28,-16],[101,15],[101,15],[7,-4],[6,-6],[7,-3],[19,-4],[16,-17],[10,-5],[7,-6],[4,-2],[-21,26],[-4,11],[3,0],[2,2],[3,6],[-29,4],[-5,8],[2,11],[7,6],[15,7],[18,14],[11,5],[8,-3],[0,-4],[-2,-8],[0,-4],[2,-5],[9,-11],[0,-7],[1,-6],[3,-5],[4,-2],[1,-2],[0,11],[-3,11],[-2,10],[0,6],[1,9],[1,5],[-2,5],[-6,8],[-2,5],[22,8],[38,23],[7,8],[5,10],[5,13],[1,3],[5,4],[4,-2],[6,-9],[10,-6],[30,6],[0,4],[-24,0],[-12,6],[-5,16],[-1,14],[-3,12],[-4,11],[-6,7],[-11,5],[-6,4],[-2,8],[1,5],[6,12],[3,5],[1,7],[-1,5],[0,4],[0,6],[-4,27],[-7,13],[-8,12],[-17,17],[-10,5],[-4,4],[-2,8],[1,17],[-1,5],[-2,9],[-4,3],[-5,3],[-4,5],[-2,8],[-1,5],[1,6],[0,8],[-3,12],[-8,15],[-9,14],[-6,6],[-21,1],[-12,-4],[-50,-10],[-30,4],[-5,17],[8,16],[12,28],[19,14],[15,7],[22,8],[18,2],[17,8],[9,6],[-6,12],[-1,4],[-1,2],[-3,2],[-1,4],[-1,10],[0,2],[1,3],[2,9],[0,21],[1,6],[-1,4],[-8,16],[-2,8],[2,15],[2,13],[1,13],[-3,14],[4,6],[3,10],[2,11],[-1,9],[-8,8],[-34,5],[7,12],[14,5],[15,-2],[21,-13],[119,-21],[77,-5],[64,-20],[111,-20],[13,-7],[91,-7],[91,-6],[15,7],[6,-2],[12,-8],[6,-2],[3,-21],[17,-14],[88,-35],[16,-16],[-4,-1],[-6,-4],[-5,-5],[-1,-4],[6,-7],[6,0],[13,5],[28,-1],[14,5],[12,12],[4,7],[1,3],[-2,4],[-9,11],[-11,10],[-16,7],[-12,10],[-13,8],[-13,-5],[-3,-6],[-3,-7],[-3,-5],[-3,4],[-1,7],[2,5],[2,4],[4,4],[12,8],[13,4],[51,4],[67,-36],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[15,-11],[3,-5],[11,1],[-5,6],[-5,6],[12,6],[14,-8],[13,-11],[12,-4],[6,4],[10,12],[5,4],[7,3],[12,2],[51,-5],[21,5],[12,-7],[115,-12],[84,-6],[26,2],[65,11],[23,4],[60,4],[2,-6],[-28,-4],[-26,-4],[20,-8],[26,-5],[21,-9],[16,-16],[10,-2],[17,-8],[20,-4],[21,0],[20,8],[4,12],[0,11],[-4,11],[-12,11],[-26,0],[-24,-2],[-21,4],[-15,7],[-3,7],[24,0],[21,-3],[26,3],[13,5],[12,0],[4,-4],[6,-10],[4,-5],[21,-19],[5,-7],[3,-10],[-4,-1],[-7,0],[-3,-7],[3,-8],[7,-1],[13,3],[53,-14],[12,-10],[21,-9],[4,-4],[15,-16],[12,-8],[26,-4],[41,-20],[52,-11],[54,1],[79,-28],[11,-11],[-11,4],[-6,-1],[-3,-7],[19,-8],[20,1],[6,-1],[35,-19],[72,-22],[15,-11],[6,-1],[4,1],[15,11],[-3,7],[-4,4],[7,4],[18,0],[113,-43],[11,-12],[17,-4],[6,-3],[7,-5],[20,-9],[16,-13],[5,-3],[0,-4],[-40,-4],[-7,2],[-3,5],[-2,7],[-5,8],[-7,6],[-7,3],[-16,1],[-15,-4],[-4,2],[-2,5],[-2,3],[-1,0],[-3,-2],[2,-3],[1,-5],[1,-5],[-5,-24],[6,-11],[10,-6],[10,-3],[32,9],[27,-9],[7,0],[23,9],[54,-15],[12,-9],[15,-20],[83,-68],[83,-67],[-16,2],[-14,6],[-48,43],[-13,5],[-15,12],[-8,1],[7,-12],[15,-9],[7,-7],[3,-9],[4,-11],[4,-9],[11,-6],[8,-8],[4,-2],[-99936,-5],[0,-2318]],[[56324,82660],[-19,-8],[-53,4],[-64,4],[-78,5],[-77,5],[-120,8],[-100,7],[-80,5],[-80,5],[-108,8],[-57,3],[-22,2],[-14,6],[-5,6]],[[55447,82720],[4,2],[0,5],[30,34],[27,42],[15,35],[1,2],[1,1],[1,0],[1,3],[1,3],[-1,7],[0,2],[2,5],[2,4],[5,10],[7,23],[1,9],[0,14],[-2,12],[-8,30],[-1,5],[0,8],[4,16],[2,11],[4,10],[6,7],[5,3],[7,-10],[3,-2],[12,3],[19,-1],[17,4],[45,-7],[11,3],[21,14],[42,43],[49,76],[3,3],[29,60]],[[55830,83203],[0,-1],[-11,-10],[-3,-3],[1,-2],[0,-1],[-2,-4],[-6,-2],[-3,-5],[1,-4],[-3,-1],[-2,-3],[0,-4],[-1,-4],[-2,-4],[-5,-6],[-2,-4],[-5,-13],[-3,-6],[-14,-17],[-24,-38],[-36,-40],[-3,-3],[-2,0],[-2,-2],[-1,-5],[1,-3],[2,-5],[3,-4],[2,-3],[5,-1],[52,5],[12,-4],[15,-17],[30,-7],[20,3],[3,3],[1,3],[3,-3],[3,-4],[1,-2],[3,1],[2,2],[1,3],[1,2],[24,8],[11,7],[3,14],[-2,11],[-4,19],[-7,73],[-1,4],[0,3],[-2,12],[-1,2],[0,13],[1,5],[1,4],[4,3],[2,-1],[2,-4],[2,-2],[4,-1],[3,1],[3,2],[2,4],[1,5],[1,7],[-1,7],[-1,3]],[[59722,77551],[12,-35],[80,-177],[41,-43],[10,-2],[50,21],[6,6],[7,12],[1,6],[1,5],[1,4],[4,2],[1,2],[5,9],[1,2],[0,11],[3,11],[4,9],[4,4],[7,-1],[1,-6],[-3,-9],[-1,-10],[2,-7],[5,-6],[21,-19],[11,-6],[10,3],[8,16],[4,18],[1,3],[7,7],[6,9],[6,3],[32,0],[4,3],[4,6],[5,-2],[2,-8],[-3,-10],[4,0],[3,3],[2,3],[3,2],[5,-2],[9,-8],[6,-2],[16,5],[6,-1],[7,-14],[4,-7],[5,2],[5,8],[4,1],[5,-3],[4,-8],[5,-20],[2,-14],[-2,-6],[-9,-4],[-4,0],[-3,1],[-8,7],[-7,2],[-5,-2],[-4,-6],[-1,-12],[1,-4],[2,-3],[1,-3],[-2,-5],[-3,-2],[-6,0],[-2,-2],[-4,-8],[-3,-12],[-2,-13],[-3,-34],[0,-13],[2,-13],[7,-13],[4,-8],[-1,-9],[-3,-6],[-20,-11],[-25,-2],[-3,-1],[-3,-3],[-1,-3],[-2,-10],[-1,-3],[-5,-2],[-25,8],[-16,15],[0,-5],[-8,6],[-7,-9],[-4,-14],[-4,-7],[-22,2],[-19,-5],[-5,4],[-3,13],[-2,6],[-8,15],[-3,5],[-18,17],[-20,12],[-12,3],[-12,0],[-12,-3],[-10,-8],[-15,-18],[-2,-5],[-1,-6],[-1,-5],[-1,-5],[1,-6],[2,-3],[8,-5],[0,-4],[-4,-2],[-9,0],[-4,-2],[-4,-7],[0,-7],[2,-18],[-14,16],[-1,-3],[-3,-3],[-2,-3],[-6,7],[-5,-5],[-7,-20],[-5,-6],[-12,-5],[-5,-3],[-6,-19],[-6,-26],[-8,-19],[-12,3],[-3,6],[-2,9],[-4,7],[-5,3],[-10,0],[-2,0],[-4,-3],[-2,-3],[-2,-3],[-2,-3],[-5,-1],[-9,3],[-4,-4],[-5,-3],[-19,5],[-10,-6],[-19,-20],[-11,-7],[-22,-7],[-9,-6],[-7,-11],[0,1],[0,2],[-1,1],[-1,-1],[-11,-23],[-1,-5],[-3,-5],[-10,-25],[-10,-43],[-3,-8],[-2,-1],[-7,1],[-4,0],[-3,1],[-1,-1],[-1,-2],[0,-2],[0,-2],[-1,-2],[-6,-14],[-3,-5],[-13,-4],[-4,-7],[-2,-9],[-4,-9],[-3,-5],[-10,-10],[-4,-2],[-6,-1],[-30,-22],[-5,-1],[-7,1],[-17,11],[-4,0],[-6,-3],[-3,-1],[-18,1],[-6,2],[-21,15],[-3,5],[-2,11],[-2,6],[-8,16],[-3,4],[-5,0],[-6,-3],[-6,0],[-5,6],[-4,5],[-29,32],[-3,8],[0,6],[0,1],[1,-2],[9,3],[2,1],[6,8],[3,1],[6,-1],[3,0],[2,3],[4,2],[14,0],[6,4],[-4,2],[-9,3],[-3,3],[0,9],[3,7],[3,6],[2,6],[1,10],[0,6],[-3,12],[-2,17],[-1,9],[-3,7],[3,3],[1,2],[0,3],[2,12],[3,11],[4,7],[10,6],[3,7],[2,11],[1,11],[0,14],[-3,23],[-1,10],[0,3],[-5,15],[-1,6],[-1,15],[-5,24],[-7,14],[-19,18],[-15,22],[-5,3],[-11,-3],[-11,-6],[-9,-9],[-7,-2],[-3,5],[-2,9],[-6,4],[-13,6],[-4,6],[-10,18],[-7,6],[-2,5],[-3,9],[-3,3],[-5,3],[-2,2],[-18,24],[-10,10],[-12,7],[-41,6],[-6,-2],[-5,-5],[-10,-16],[-4,-3],[-19,0],[-6,3],[-10,8],[-6,1],[-8,32],[-1,8],[4,16],[8,14],[33,37],[5,3],[7,0],[5,3],[4,4],[4,4],[3,5],[2,4],[2,3],[4,1],[3,-1],[5,-3],[3,-1],[4,2],[1,5],[-1,5],[-1,5],[1,5],[1,3],[2,4],[8,13],[20,20],[62,43],[4,4],[1,8],[-1,2],[-3,2],[-2,3],[1,7],[2,3],[3,-3],[4,-9],[10,-8],[10,2],[20,19],[10,6],[2,4],[8,14],[4,2],[12,12],[4,2],[2,-1],[5,-5],[3,-2],[3,1],[7,3],[7,12],[5,6],[4,2],[2,1],[3,-2],[3,-2],[3,-3],[1,-4],[1,-3],[3,0],[6,1],[1,7],[-1,14],[1,11],[4,-3],[5,4],[9,4],[5,4],[-5,7],[-5,4],[-16,6],[-7,-1],[-4,-2],[-1,-4],[-2,-1],[-4,3],[5,11],[3,7],[-1,3],[-3,2],[-1,4],[2,6],[2,5],[-1,5],[-3,20],[0,7],[3,6],[2,7],[-1,9],[-4,12]],[[0,89003],[0,2319],[80,-38],[37,-6],[10,1],[8,7],[-6,6],[-2,5],[-1,5],[2,9],[5,0],[5,-3],[5,-4],[4,-7],[6,-16],[3,-6],[6,-4],[9,-10],[8,-5],[6,-7],[-4,-1],[-4,-1],[2,-7],[0,-4],[0,-5],[8,-2],[2,-8],[16,-5],[16,4],[9,-1],[1,-5],[11,-7],[15,1],[39,-11],[25,-11],[46,-43],[22,-22],[23,-24],[9,-6],[-8,-3],[-9,3],[-25,27],[-5,4],[-9,10],[-11,8],[-3,-3],[3,-6],[2,-8],[-1,-8],[3,-6],[-2,-9],[1,-7],[-1,-7],[2,-9],[3,-10],[0,-5],[8,-4],[15,-7],[44,-9],[9,-5],[16,-13],[9,-2],[17,2],[8,-2],[16,-13],[41,-15],[6,-7],[4,-27],[4,-11],[6,-7],[5,-2],[-4,-4],[-9,-16],[-17,-16],[-4,-6],[0,-4],[4,-2],[17,0],[5,2],[4,6],[-1,4],[0,5],[1,3],[3,3],[13,5],[5,0],[4,1],[5,5],[10,8],[25,-1],[8,11],[-70,46],[-70,46],[-11,3],[-14,8],[-6,8],[-7,2],[-3,1],[-2,6],[-2,4],[-2,2],[93,-57],[92,-58],[12,-16],[47,-25],[2,-1],[-31,10],[-9,-3],[0,-3],[1,-6],[1,-3],[-38,-12],[4,-6],[11,-3],[9,-11],[11,-2],[4,-7],[-3,-5],[-1,-4],[1,-2],[3,-1],[4,2],[41,29],[19,2],[15,-3],[38,-23],[8,-4],[-5,-1],[-13,6],[-6,2],[-1,-5],[3,-7],[8,-10],[-4,-3],[-2,-1],[8,-16],[14,-1],[28,9],[-9,5],[-3,3],[9,-1],[39,-26],[32,-20],[56,-36],[15,-10],[-8,-2],[-36,19],[2,-7],[-10,-7],[-7,-8],[1,-5],[-4,-8],[2,-7],[22,-11],[11,-9],[25,-7],[5,-3],[4,-13],[11,-4],[26,4],[7,-1],[40,3],[8,2],[-22,12],[-19,12],[-19,14],[-18,8],[-11,7],[-1,7],[37,-21],[35,-23],[52,-26],[29,-14],[17,-6],[-2,-3],[-21,5],[-12,-1],[-10,-12],[-9,-15],[-6,-18],[10,-10],[10,-7],[5,-7],[-6,-5],[-7,1],[-23,0],[-16,-2],[-18,-1],[-8,-9],[-4,-8],[16,-2],[5,-14],[17,-14],[23,-11],[28,3],[13,4],[14,0],[12,-5],[-1,-10],[-7,-6],[-1,-9],[13,-2],[27,-3],[9,2],[3,-8],[4,6],[8,6],[4,9],[-1,8],[-10,4],[-5,9],[-11,7],[-18,0],[-12,-4],[-6,3],[2,9],[4,10],[7,13],[-11,9],[-17,4],[-16,-2],[-1,3],[25,12],[19,12],[5,6],[4,11],[-1,9],[86,-53],[37,-21],[26,-12],[6,-5],[1,-7],[-9,-1],[-5,-6],[4,-8],[2,-9],[10,-12],[4,-7],[-2,-9],[6,-8],[28,-27],[-5,1],[-21,19],[-2,-1],[3,-7],[3,-9],[4,-6],[-2,-8],[3,-5],[-1,-10],[0,-7],[5,-5],[-3,-3],[-8,-1],[-6,-1],[-2,-6],[0,-7],[-2,-6],[-28,-7],[-5,-15],[15,-8],[6,0],[9,-1],[9,-1],[11,-1],[8,-1],[7,3],[8,4],[8,4],[7,5],[7,6],[3,7],[1,4],[5,7],[0,6],[7,6],[-5,8],[-10,8],[-10,5],[-6,12],[32,-21],[10,-11],[4,-8],[-2,-9],[2,-10],[9,3],[9,-1],[12,-12],[8,-21],[6,-15],[-12,-3],[-5,-2],[-7,-3],[1,-5],[-6,-4],[0,-7],[1,-3],[0,-3],[-6,-5],[4,-6],[-5,-3],[0,-5],[-3,-6],[4,-9],[-2,-9],[0,-15],[-1,-11],[-1,-9],[-4,-10],[-2,-10],[3,-12],[1,-8],[-2,-10],[5,-7],[8,-8],[-3,-7],[5,-13],[12,-7],[5,-16],[25,-13],[-7,-2],[-9,-3],[-1,-6],[2,-6],[6,-7],[1,-8],[2,-12],[4,-12],[0,-14],[3,-12],[3,-10],[0,-17],[-6,-9],[-1,17],[-14,4],[-3,-4],[-7,-4],[-4,-5],[-3,-5],[-3,-9],[-6,-5],[-10,-2],[-4,-6],[-10,1],[-9,-3],[1,-10],[12,-8],[7,-5],[8,-9],[4,-4],[0,-7],[15,-10],[29,4],[26,-15],[22,-17],[17,-3],[9,-5],[1,-18],[10,-16],[-6,0],[-12,-9],[-1,-8],[1,-16],[-2,-10],[3,-18],[6,-9],[12,-1],[0,-10],[-7,6],[-6,-3],[-5,-11],[5,-8],[-7,-18],[14,-6],[16,4],[14,15],[2,14],[0,10],[-20,-3],[20,10],[7,10],[10,10],[20,6],[0,10],[3,9],[-3,10],[-16,-2],[-1,5],[6,12],[11,-8],[9,-1],[14,6],[18,2],[13,-5],[5,-10],[-6,-12],[-1,-12],[4,-7],[3,-6],[5,-10],[0,-8],[1,-7],[-6,-2],[-7,-5],[-7,-6],[-5,-8],[-3,-12],[3,-10],[-3,-10],[0,-9],[4,-10],[5,0],[8,5],[4,11],[7,10],[13,11],[19,7],[5,8],[-14,6],[-11,0],[-2,11],[10,5],[10,-1],[14,1],[9,5],[10,10],[-4,17],[1,7],[6,8],[0,9],[-6,3],[-4,7],[-23,9],[1,10],[-7,11],[-12,5],[-11,2],[-9,0],[-8,6],[-14,0],[-9,0],[-11,5],[-7,5],[-9,-8],[-16,17],[-14,3],[19,14],[32,15],[15,7],[16,13],[11,11],[2,12],[-3,11],[-1,11],[1,9],[1,7],[-1,8],[0,9],[-4,7],[1,11],[-3,10],[-3,11],[-4,11],[-7,12],[-5,9],[2,8],[0,9],[0,11],[-3,8],[-9,9],[-14,0],[-14,3],[-8,-1],[-14,-5],[-3,3],[13,9],[5,10],[-1,11],[-12,5],[-14,7],[-35,-12],[-18,-5],[-6,2],[39,23],[-12,1],[-44,-16],[-17,3],[2,12],[10,10],[105,2],[81,0],[43,-4],[27,8],[2,17],[11,-6],[16,-9],[19,-7],[9,-3],[-2,-3],[-7,0],[-4,-4],[0,-11],[9,-8],[9,2],[1,8],[-1,9],[5,8],[6,2],[29,-7],[40,-9],[20,-5],[-3,-3],[-5,-2],[-14,-1],[-16,3],[-8,7],[-3,1],[-7,0],[-1,-4],[3,-4],[1,-5],[1,-5],[8,-3],[9,-1],[14,-6],[1,-3],[-1,-8],[-7,-2],[-8,3],[-11,0],[-8,0],[-8,-4],[-2,-9],[-2,-9],[3,-9],[3,-3],[-2,-6],[-3,-4],[0,-6],[5,-6],[6,-9],[-8,-4],[-7,-6],[1,-10],[0,-8],[4,-5],[17,3],[17,-1],[11,-1],[11,8],[4,5],[-3,4],[-7,3],[-10,4],[-5,4],[1,7],[0,6],[0,5],[-11,1],[-3,4],[5,5],[13,-2],[2,11],[-2,10],[-1,6],[3,5],[9,2],[10,6],[3,6],[3,-2],[-2,-8],[-2,-5],[3,-9],[4,-11],[16,-10],[30,-8],[29,-6],[32,-5],[14,4],[3,9],[-3,9],[13,-1],[5,-7],[13,-3],[26,8],[14,9],[-38,27],[-44,8],[-53,11],[-23,7],[-8,-2],[-10,-5],[-8,2],[-3,6],[2,7],[11,2],[55,-4],[15,-5],[26,-6],[65,-16],[59,-15],[39,-6],[20,5],[15,4],[-4,4],[3,4],[10,-5],[2,-6],[19,-6],[10,1],[18,-1],[22,-13],[3,-12],[-11,-7],[-7,-10],[7,-18],[11,-12],[19,-12],[38,-20],[9,2],[11,-4],[6,-16],[-12,-6],[-4,-12],[7,-24],[25,-20],[54,-43],[26,-15],[21,-16],[9,0],[5,-3],[9,-11],[9,-5],[10,-11],[5,-3],[3,-3],[7,-14],[11,-8],[9,-11],[14,-22],[5,-5],[19,-5],[31,-17],[-5,-5],[-8,-3],[-15,-5],[-8,-6],[-2,-8],[0,-9],[-5,-12],[-14,1],[-18,7],[8,-8],[8,-6],[24,0],[6,11],[8,9],[8,8],[11,8],[11,4],[10,0],[12,-1],[16,-9],[9,-6],[8,-10],[3,-15],[10,-18],[-6,-7],[-9,-2],[-12,-2],[-8,7],[-8,-4],[-7,0],[-14,4],[32,-22],[24,-6],[6,6],[8,12],[11,0],[20,-14],[7,0],[7,3],[2,8],[-5,4],[-10,6],[-12,5],[-8,2],[14,-2],[11,-3],[13,-9],[26,-7],[26,-15],[3,0],[2,-2],[0,-4],[0,-4],[6,-8],[7,-10],[3,-10],[-4,-7],[-6,-11],[-5,-9],[-6,-10],[-16,1],[-14,-2],[-11,11],[-7,12],[-25,-2],[-20,-11],[-25,-10],[-26,-29],[-29,-11],[-9,-6],[-15,-11],[-23,-22],[-27,-5],[-5,-7],[7,-2],[10,4],[9,0],[4,-14],[-1,-8],[-14,-33],[10,-17],[1,-7],[-2,-9],[-1,-3],[0,-3],[2,-2],[1,-3],[0,-4],[12,-5],[-9,-17],[-4,-14],[-15,-8],[-22,-3],[-57,14],[-5,3],[-2,12],[-42,22],[-27,5],[-6,11],[-11,22],[-16,13],[-33,27],[-22,9],[1,-8],[7,-14],[5,-12],[5,-11],[3,-7],[20,-7],[-4,-3],[-3,-1],[-8,1],[3,-11],[5,-6],[11,-8],[11,-18],[5,-3],[22,-2],[5,-3],[18,-5],[10,-7],[4,-14],[2,-9],[12,5],[3,-24],[-1,-24],[-10,-13],[-8,-13],[-33,8],[-9,10],[-17,15],[-42,-1],[-42,-6],[-97,-30],[-36,9],[62,8],[18,7],[-9,7],[-23,4],[-27,-1],[-9,12],[-10,6],[-11,6],[-2,3],[-6,3],[-5,-13],[-9,-5],[-7,-6],[-8,6],[-17,5],[-1,6],[8,7],[8,8],[-6,9],[-11,8],[-15,7],[7,8],[7,7],[-5,11],[-14,-7],[-4,11],[-3,2],[-10,3],[-8,-1],[-10,4],[-61,11],[-20,-9],[-9,-1],[-10,2],[-10,5],[10,-17],[16,-4],[30,5],[-3,-6],[-4,-6],[3,-17],[9,-3],[17,-4],[27,-3],[26,-15],[3,-11],[-3,-11],[-2,-10],[14,-15],[6,-9],[1,-13],[-18,8],[-8,-1],[-4,-4],[1,-4],[8,-4],[2,-7],[0,-7],[9,-6],[26,-3],[26,16],[13,23],[8,0],[-19,-37],[-8,-41],[-3,-16],[5,-16],[1,-20],[-2,-13],[-8,-2],[-9,-3],[-8,12],[-8,8],[-10,4],[-9,1],[-7,-2],[-13,-5],[-18,-2],[-5,-2],[-6,-4],[-7,-2],[-17,13],[-8,4],[-4,-1],[-3,-3],[-2,-6],[-1,-7],[2,-7],[3,-3],[5,-1],[32,-13],[26,8],[26,-7],[15,7],[8,-6],[22,4],[10,-23],[-1,-15],[-9,-12],[-7,0],[-8,3],[1,-1],[3,-7],[4,-14],[3,-6],[6,-4],[4,4],[3,5],[4,3],[19,-6],[2,-10],[-4,-16],[-22,-19],[-13,-20],[-29,-21],[-41,-16],[-7,-2],[-11,5],[-6,-1],[-13,-13],[-6,-2],[-9,-5],[-11,-8],[-6,-9],[-12,-14],[-12,5],[-26,7],[-28,-2],[-15,-10],[-2,-17],[-5,-17],[-23,-10],[1,-3],[28,6],[15,16],[8,10],[15,5],[16,-3],[16,-8],[8,-6],[8,-18],[-2,-17],[-15,-5],[-6,-9],[-7,-7],[-10,-3],[-15,-3],[-17,-8],[-9,-9],[0,-8],[18,5],[23,6],[9,-1],[5,-8],[-8,-13],[-11,-19],[-15,-14],[0,-6],[18,1],[10,9],[5,9],[9,11],[9,-4],[10,-2],[7,-3],[14,-2],[5,-2],[8,-8],[44,-11],[3,-6],[1,-9],[3,-11],[8,-15],[53,-48],[-29,1],[-17,-1],[-15,-5],[-13,-7],[-16,-7],[-13,-3],[-14,12],[-3,1],[-8,6],[-8,-2],[-1,11],[0,15],[-6,4],[-9,5],[1,6],[-2,7],[-4,5],[-5,4],[-3,5],[-8,-4],[-11,-2],[-14,-6],[-22,-13],[9,-14],[18,7],[22,2],[13,-9],[0,-13],[-7,-11],[-1,-21],[0,-13],[-1,-12],[-8,-9],[-7,-2],[-3,1],[-9,21],[-9,0],[0,-16],[6,-13],[2,-15],[-24,-3],[-27,-11],[-32,17],[-14,11],[-27,-2],[-3,18],[4,16],[0,14],[16,14],[9,25],[3,9],[-3,3],[-7,-1],[-3,1],[2,10],[0,10],[1,10],[4,11],[-4,10],[-2,4],[-3,2],[-5,2],[-1,4],[0,5],[-3,11],[-1,4],[-2,2],[-8,2],[-2,3],[-5,8],[0,-12],[5,-19],[8,-19],[4,-15],[-1,-16],[-5,-12],[3,-22],[-6,-17],[-19,-18],[-14,-12],[-26,-8],[-10,1],[-14,10],[-41,19],[-10,8],[-33,11],[-10,18],[-1,16],[-3,15],[-1,19],[-8,13],[-21,12],[-9,9],[-17,6],[-12,7],[-12,11],[-6,11],[13,4],[5,0],[-6,9],[-12,2],[-22,-2],[-11,2],[-52,33],[-1,9],[2,8],[3,18],[13,19],[-4,24],[-13,24],[-8,2],[-6,-18],[4,-21],[-9,-17],[-20,-2],[-15,-1],[-14,-2],[-4,19],[-2,15],[-9,4],[-5,-9],[1,-13],[0,-13],[-3,-12],[-3,-10],[-19,-4],[-29,4],[-39,5],[-17,8],[-13,-10],[-13,16],[12,5],[17,12],[-4,12],[-10,-3],[-10,-5],[-12,6],[0,11],[-4,8],[-12,0],[-2,5],[-4,5],[-6,7],[-11,6],[-2,4],[-20,6],[-20,5],[0,11],[-4,8],[-17,11],[-4,5],[5,9],[22,14],[-2,15],[-11,8],[1,6],[8,10],[11,12],[2,14],[-4,14],[-13,7],[-24,45],[3,15],[2,9],[-7,22],[-1,23],[-5,16],[-13,12],[-6,7],[-18,10],[-12,3],[-27,4],[-46,22],[-77,25],[-97,39],[-26,-11],[-26,-13],[-23,-17],[-17,-30],[-30,-28],[-93,0],[-75,0],[-73,2],[-50,17],[-12,13],[-6,9],[-1,7],[3,8],[2,5],[5,10],[-2,10],[2,15],[10,10],[-1,13],[5,12],[9,11],[-3,19],[-14,21],[-11,8],[-21,-19],[-11,0],[-6,23],[4,4],[-3,3],[-3,1],[-7,0],[-3,1],[-2,3],[-1,4],[-13,24],[-4,6],[-30,28],[-8,15],[9,11],[-7,23],[-23,43],[6,-1],[6,-4],[11,-11],[17,-10],[5,-5],[5,-2],[20,-1],[11,12],[5,21],[-9,17],[5,15],[18,3],[16,-2],[9,9],[9,13],[-5,9],[-4,9],[6,12],[4,12],[-3,5],[-7,3],[2,13],[-5,13],[2,3],[3,5],[5,10],[1,6],[-1,4],[-2,5],[-1,6],[14,20],[-4,9],[-7,-2],[-5,-4],[-6,-7],[1,-6],[-7,2],[-11,3],[0,-8],[-1,-7],[-1,-6],[0,-8],[-3,-9],[-12,-22],[-16,-29],[-8,-11],[-10,-14],[-30,-11],[-24,6],[-18,24],[-5,8],[-15,18],[-3,5],[2,11],[9,13],[2,8],[-4,24],[-8,25],[-11,15],[-9,-9],[5,-15],[1,-17],[-1,-17],[2,-16],[-21,2],[-12,4],[-9,15],[-28,12],[9,-29],[5,-4],[10,-4],[3,-4],[5,-14],[5,-13],[20,-28],[-9,-22],[-16,-12],[-31,-4],[-43,-4],[-24,9],[-5,5],[-3,4],[3,2],[25,-1],[3,3],[-1,6],[-13,6],[-15,11],[-3,-2],[-4,-13],[-17,-35],[-3,-16],[-2,-26],[-1,-7],[-3,-5],[-3,-5],[-1,-4],[0,-8],[-3,-22],[0,-7],[17,-68],[4,-12],[8,-11],[74,-63],[18,-9],[32,-17],[-9,-14],[2,-14],[-5,-5],[16,-25],[-10,-19],[-18,-19],[-11,-10],[-3,-8],[-14,-12],[-10,-13],[3,-18],[1,-9],[-10,-12],[2,-13],[-2,-18],[-1,-25],[-18,-20],[-10,-20],[-10,-16],[-8,1],[-14,0],[-10,-9],[-8,-11],[-7,-10],[-13,-7],[-6,-4],[-10,-4],[-18,0]],[[0,92512],[99964,-19],[-2,-10],[-17,-18],[-39,-22],[-59,-1],[-41,3],[-24,1],[-24,-1],[-83,-41],[-11,-3],[-1,5],[-1,13],[-1,5],[-10,23],[-2,7],[-7,21],[-4,8],[-2,8],[-3,7],[-4,6],[-3,5],[-10,30],[0,8],[1,6],[3,5],[9,18],[8,9],[35,32],[7,9],[6,15],[-2,3],[-1,0],[-1,-1],[-2,-2],[2,2],[14,14],[77,40],[58,47],[14,5],[16,24],[18,11],[38,4],[18,7],[-2,6],[-2,3],[6,3],[5,1],[12,-1],[5,2],[4,3],[0,5],[-5,6],[42,12],[-99999,-323]],[[0,92512],[0,323],[38,1],[-14,10],[4,2],[28,6],[11,8],[6,2],[6,-2],[5,-3],[5,-2],[19,6],[66,-9],[13,-8],[6,1],[5,3],[12,4],[11,8],[36,10],[94,-17],[95,-18],[20,-13],[17,-5],[-12,2],[-5,1],[-5,1],[5,-7],[30,-16],[6,-1],[13,5],[6,-2],[33,-19],[-3,-5],[-11,-7],[2,-2],[4,-5],[2,-1],[-1,-1],[-3,-4],[20,-6],[53,-38],[17,-16],[3,-1],[7,0],[3,-1],[4,-5],[19,-5],[11,6],[5,0],[5,-1],[4,-5],[-2,-10],[5,-6],[8,-5],[4,-8],[-1,-8],[-3,-8],[-14,-21],[-20,-16],[-16,-18],[-13,-3],[-19,-11],[-18,-5],[-16,-19],[-15,-7],[-77,-1],[-29,-15],[-78,-10],[-79,-9],[-29,-18],[-100,-26],[1,2],[4,7],[-11,5],[-26,-9],[-12,2],[-46,27],[-52,9],[-10,8],[-5,2],[-26,-3]],[[86644,75946],[0,-6],[1,-2],[-1,-5],[-2,-7],[-9,-14],[-12,0],[-13,8],[-10,9],[10,4],[-5,5],[-1,6],[1,3],[3,-2],[2,0],[-1,10],[-1,4],[-2,2],[6,5],[6,-2],[5,-4],[6,-3],[0,4],[-9,12],[8,-2],[5,-6],[5,-9],[8,-7],[0,-3]],[[89591,82625],[2,0],[-2,-2],[-3,-5],[0,-5],[2,-6],[1,-8],[3,-9],[8,-2],[5,8],[-5,17],[5,2],[6,-3],[5,-4],[2,-1],[4,10],[-1,4],[-3,4],[-3,8],[0,10],[3,4],[5,3],[5,6],[2,6],[2,6],[0,6],[-3,7],[0,8],[2,7],[2,4],[4,2],[5,-1],[3,-2],[5,-11],[2,-5],[2,-14],[2,-5],[6,-9],[3,-5],[4,-22],[7,-13],[14,-20],[18,-45],[12,-21],[3,-9],[-1,-17],[-3,-14],[-3,-12],[-4,-11],[-10,-22],[-3,-9],[-6,-38],[-1,-6],[-3,-5],[-1,0],[-2,1],[-2,0],[-2,-1],[-1,-3],[-1,-3],[-2,-7],[13,3],[5,-1],[5,-10],[0,-5],[2,-15],[2,-8],[7,-33],[6,-22],[2,-10],[-13,48],[-8,28],[-8,-3],[-2,-6],[3,-14],[1,-14],[2,-3],[8,-7],[6,-30],[7,-3],[-6,-16],[10,0],[4,-4],[3,-8],[-2,-2],[-2,-3],[-3,-4],[-2,-3],[5,-5],[11,-6],[5,-6],[-3,-5],[-4,-2],[-4,0],[-4,3],[-1,-5],[-2,-4],[-2,-2],[-3,-1],[0,-5],[4,-3],[8,-10],[3,-2],[4,1],[10,13],[2,-4],[3,-10],[3,-11],[1,-8],[1,-5],[1,-6],[0,-5],[-2,-6],[-3,-1],[-4,4],[-5,1],[-3,-8],[0,-7],[2,-4],[3,-2],[2,-3],[2,-4],[1,-1],[1,-3],[0,-8],[-1,-4],[-2,-4],[-2,-3],[0,-4],[2,-2],[3,0],[2,1],[11,9],[3,2],[4,0],[4,-6],[4,-15],[10,-63],[2,-24],[7,-26],[3,-12],[1,-40],[2,-10],[3,-11],[1,-12],[1,-28],[2,-27],[3,-13],[3,-11],[3,-14],[-2,-13],[-7,-24],[2,-14],[1,-15],[0,-33],[-3,-49],[1,-11],[-1,-9],[-6,-69],[-2,-10],[-6,-20],[-7,-18],[-7,-17],[-9,-15],[3,27],[1,8],[-1,6],[-1,6],[-1,6],[3,8],[5,5],[4,0],[4,0],[3,1],[2,8],[-3,5],[-7,6],[2,4],[12,46],[1,7],[0,5],[1,3],[-1,2],[-4,2],[-2,0],[-2,0],[-2,-2],[-1,-2],[0,-2],[0,-15],[-1,-2],[-1,-1],[-2,0],[0,-3],[0,-3],[1,-2],[0,-1],[-3,-14],[-10,-27],[-4,-16],[-4,-25],[-1,-7],[-9,-20],[-3,-12],[3,-7],[5,1],[4,10],[2,0],[0,-7],[3,-11],[-1,-5],[-2,-7],[0,-6],[1,-5],[0,-4],[-4,-39],[-2,-49],[-1,0],[-6,15],[-3,4],[-1,-2],[0,-8],[-1,-6],[-1,-7],[-2,-5],[12,-9],[-2,-6],[0,-7],[2,-11],[0,-7],[-1,-4],[1,-4],[3,-7],[3,-10],[0,-10],[-3,-6],[-7,-1],[2,-6],[3,-19],[2,-3],[4,-3],[0,-7],[-1,-9],[1,-8],[3,-4],[5,-5],[6,-2],[2,3],[1,8],[2,8],[2,3],[4,-33],[16,-49],[2,-28],[-6,4],[-6,-8],[-4,-13],[-3,-21],[-3,-12],[-1,-5],[0,-7],[1,-12],[0,-7],[-1,-7],[-3,-12],[-1,-4],[1,-5],[2,-6],[2,-3],[9,8],[7,-2],[6,-5],[5,0],[3,9],[-1,15],[-3,14],[-2,6],[0,6],[2,13],[4,12],[5,6],[2,-5],[2,-12],[1,-22],[3,-9],[15,-33],[4,-23],[3,-75],[-9,14],[-4,2],[-3,-1],[-10,-11],[2,-4],[4,-4],[3,-4],[6,-5],[0,-3],[0,-2],[0,-2],[3,-3],[3,-2],[3,-3],[2,-4],[1,-5],[0,-10],[2,-6],[-2,-2],[0,-2],[-1,-4],[2,-1],[2,-2],[2,-1],[-1,-3],[-2,-9],[9,4],[1,16],[-3,20],[-4,17],[7,-15],[5,-26],[13,-136],[26,-162],[6,-78],[25,-175],[5,-22],[28,-72],[26,-82],[11,-68],[10,-36],[3,-19],[8,-22],[2,-12],[2,-51],[1,-13],[4,-10],[4,-10],[16,-43],[2,-10],[-3,-32],[1,-14],[17,-112],[28,-105],[7,-20],[9,-15],[62,-73],[5,-10],[2,-5],[1,-5],[0,-12],[1,-6],[2,-13],[1,-6],[-1,-7],[-4,-8],[-1,-7],[2,-24],[2,-16],[6,-10],[5,-8],[4,-9],[-7,-3],[-9,3],[-6,8],[1,13],[-5,13],[-1,14],[-1,15],[-2,18],[-4,17],[-36,83],[-7,6],[-2,3],[-7,16],[-3,5],[-5,4],[-10,4],[-4,4],[-11,21],[-3,1],[-4,3],[-3,4],[-3,6],[-2,6],[-3,14],[-2,6],[-3,5],[-40,59],[-12,13],[-14,10],[-85,21],[-3,4],[-1,6],[12,8],[-64,8],[-5,2],[-5,6],[-5,10],[-5,8],[-7,4],[-28,3],[-7,-2],[-5,-5],[-2,-12],[4,-8],[13,-10],[2,-1],[2,1],[1,-1],[0,-5],[0,-2],[-2,-1],[-1,-2],[1,-3],[2,-3],[4,1],[3,3],[3,1],[70,1],[14,-5],[-8,-6],[-75,-4],[-54,-31],[-8,-8],[-21,-28],[-9,-17],[-8,-20],[-7,-24],[-3,-22],[1,-23],[3,-28],[0,-25],[-5,-23],[-14,-42],[-9,-42],[-26,-103],[-20,-91],[-18,-82],[-12,-47],[-18,-101],[-1,-4],[-1,-1],[-1,-1],[-1,-5],[1,-1],[1,-2],[2,-1],[0,-4],[0,-24],[-3,-16],[-1,-6],[0,-12],[3,-73],[13,-74],[11,-36],[32,-81],[-2,1],[-7,-1],[0,-4],[2,-4],[4,-4],[7,4],[7,-2],[8,-5],[18,-18],[9,-14],[29,-66],[2,-11],[0,-14],[5,-37],[0,-12],[-3,-27],[0,-7],[11,-31],[9,-42],[1,-12],[1,-13],[3,-11],[0,-7],[-7,0],[3,-6],[4,-5],[5,-1],[3,11],[4,-1],[3,-6],[-1,-8],[-6,-5],[-9,1],[-8,-2],[-1,-15],[2,-6],[4,-6],[4,-5],[4,-3],[1,-3],[6,-21],[2,-13],[1,-5],[4,-2],[5,1],[6,5],[4,1],[4,-1],[8,-5],[4,-1],[3,-2],[6,-9],[3,-2],[7,2],[4,5],[3,8],[-2,10],[-4,8],[-6,6],[-7,4],[-10,4],[-9,8],[-4,2],[-3,1],[-7,-2],[-3,1],[-4,8],[-2,12],[2,12],[5,4],[6,-3],[22,-20],[6,-3],[21,-1],[7,3],[2,9],[3,10],[5,10],[6,-12],[6,-16],[3,-18],[2,-17],[0,-37],[1,-18],[4,-19],[0,-6],[-1,-5],[-1,-4],[-1,-4],[1,-4],[2,-7],[4,-36],[7,-34],[1,-18],[-6,-13],[5,-4],[10,-3],[4,-6],[-9,-12],[-3,-5],[-1,-6],[-1,-15],[-1,-6],[-2,-3],[-3,-3],[-3,-3],[-2,-5],[0,-6],[-3,-16],[-4,-10],[-9,-19],[-2,-10],[2,-39],[-1,-12],[-2,-4],[-2,-2],[-2,-4],[-2,-14],[-1,-6],[-1,-5],[-2,-2],[-3,7],[-1,14],[-1,15],[0,10],[3,8],[1,7],[-2,12],[0,7],[1,6],[1,6],[0,14],[-2,12],[-10,55],[-1,12],[-12,43],[4,14],[-1,12],[-3,10],[-2,11],[2,5],[3,-1],[4,-2],[3,0],[2,4],[4,20],[-7,14],[-7,4],[-19,-2],[10,-20],[-2,-7],[-4,2],[-9,15],[-6,14],[-4,4],[-7,6],[-4,5],[-6,4],[-26,-6],[-19,3],[-10,5],[-8,8],[-8,-6],[-22,-7],[-8,1],[-7,9],[-5,17],[-5,35],[-2,18],[-1,7],[-4,3],[-3,-2],[-3,-8],[-2,-2],[-8,0],[-10,-4],[-24,-21],[-20,-31],[-15,-46],[-22,-97],[-12,-37],[-2,-10],[0,-6],[-4,-20],[-3,-44],[0,-7],[-1,-7],[-3,-11],[0,-6],[-2,-13],[-4,-11],[-3,-11],[1,-12],[-1,-5],[0,-12],[-2,-6],[-2,-1],[-15,-8],[-4,-8],[-3,-25],[-4,-28],[-3,-1],[-3,5],[-6,4],[-3,5],[-11,32],[-17,27],[-2,7],[1,37],[-10,107],[-4,23],[-14,58],[-2,20],[-4,52],[1,25],[1,13],[1,5],[4,9],[3,11],[4,16],[6,36],[47,191],[1,16],[1,16],[0,18],[-2,18],[-3,21],[-5,16],[-12,30],[-2,9],[0,8],[3,18],[1,9],[0,8],[-1,6],[-3,7],[-4,14],[-2,18],[-1,21],[3,65],[1,12],[10,31],[1,7],[0,6],[0,7],[2,6],[4,9],[2,6],[1,6],[1,4],[6,18],[8,44],[4,12],[9,9],[11,24],[3,8],[1,13],[-6,78],[-1,10],[2,22],[-10,98],[-1,10],[-11,37],[-49,126],[-13,47],[-4,27],[0,23],[18,37],[2,2],[8,10],[2,4],[1,6],[-1,7],[-1,7],[0,4],[1,7],[2,4],[5,7],[2,5],[1,14],[2,11],[2,21],[2,13],[4,12],[-4,22],[4,21],[6,19],[5,19],[1,10],[-1,10],[-4,49],[7,36],[2,20],[7,22],[1,9],[1,23],[4,40],[2,32],[2,22],[1,11],[-2,33],[0,33],[0,21],[-3,21],[-5,22],[2,0],[1,4],[2,6],[1,4],[0,3],[-2,6],[0,3],[1,7],[4,9],[1,4],[-1,23],[1,8],[2,12],[2,23],[-5,90],[-6,31],[3,10],[1,11],[0,11],[-1,11],[-2,9],[-6,23],[-5,9],[-15,56],[-1,14],[3,12],[1,6],[1,8],[-1,13],[2,24],[8,33],[4,40],[-1,5],[-1,6],[-1,6],[0,7],[2,5],[6,13],[1,3],[0,2],[-1,14],[1,6],[20,39],[7,18],[7,24],[5,26],[0,22],[0,14],[-4,14],[-22,59],[-2,11],[0,5],[3,7],[1,5],[-1,5],[-1,2],[-1,1],[-1,2],[-2,5],[-13,24],[-10,28],[6,14],[-6,17],[-37,52],[-3,6],[0,3],[1,3],[1,11],[0,4],[0,4],[-4,3],[-11,-4],[-5,1],[-5,15],[-9,21],[-32,30],[-4,14],[18,-11],[9,-2],[3,-2],[3,0],[3,3],[1,6],[0,4],[-1,4],[-2,3],[0,30],[-14,18],[-18,12],[-16,16],[10,17],[1,24],[-7,47],[-1,12],[-1,9],[0,10],[2,12],[2,4],[5,9],[2,2],[1,3],[3,18],[-11,30],[3,26],[1,9],[-3,10],[-3,8],[-3,7],[3,13],[0,6],[0,11],[1,4],[1,4],[27,37],[7,14],[3,9],[3,21],[3,8],[1,5],[0,6],[0,5],[2,2],[1,2],[4,15],[-2,0],[-7,4],[0,3],[7,18],[2,21],[0,43],[2,12],[5,19],[1,14],[0,3],[-2,10],[0,7],[0,5],[2,11],[0,6],[1,4],[4,10],[1,6],[-1,13],[1,7],[1,5],[6,20],[3,13],[-2,11],[-1,4],[-1,7],[-1,10],[-1,3],[-5,11],[-3,13],[-9,16],[-3,7],[-1,6],[1,5],[0,5],[0,7],[0,7],[-1,5],[-8,32],[0,8],[4,10],[-3,6],[0,6],[1,5],[0,4],[-3,6],[-9,14],[8,9],[25,15],[16,23],[4,3],[14,3],[24,20],[41,21],[-4,-6],[2,-5],[3,-7],[2,-7],[0,-8],[-3,-6],[0,-6],[3,-8],[-3,-5],[-2,-7],[1,-8],[3,-8],[4,-8],[6,-5],[6,-3],[5,-1],[6,1],[13,7],[11,0],[6,1],[18,24],[4,15],[8,25],[4,7],[13,16],[5,0],[5,-3],[4,-2],[3,7],[-5,13],[-11,10],[-12,4],[-10,-3],[-6,-12],[-4,-3],[-1,9],[0,2],[0,16],[1,2],[-4,13],[-2,13],[2,12],[5,8],[5,3],[4,-2],[5,-3],[6,-1],[4,2],[6,4],[5,3],[4,-3],[6,-15],[5,-8],[6,1],[23,34],[1,6],[0,6],[-2,7],[0,5],[-2,27],[-1,13],[-3,11],[-10,13],[-7,-22],[-6,-33],[-5,-23],[-4,-3],[-13,-8],[-3,1],[1,7],[4,11],[3,17],[13,36],[8,28],[3,25],[-3,25],[-11,24],[-22,33],[-12,26],[-22,34],[-4,12],[-7,26],[-5,12],[-7,13],[-10,11],[-18,15],[0,4],[6,-1],[11,-12],[6,-3],[22,-4],[6,2],[18,14]],[[57953,86359],[-9,-15],[-7,2],[-4,9],[-1,10],[1,10],[4,8],[4,2],[4,0],[4,-4],[1,-6],[2,-7],[1,-9]],[[2155,88855],[36,-15],[19,-24],[-38,-7],[-27,-15],[-30,-9],[-32,3],[-13,-11],[-24,0],[7,27],[9,17],[15,17],[11,16],[6,8],[17,5],[20,-3],[24,-9]],[[69480,89885],[-7,1],[-6,3],[-6,0],[-6,-7],[7,1],[6,-2],[3,-6],[-2,-10],[-2,-1],[-8,-9],[-3,-2],[-26,-1],[-15,-3],[-2,-3],[-1,-5],[-2,-3],[-2,1],[-3,2],[-7,4],[-3,3],[-22,21],[-56,37],[-2,6],[2,2],[3,-1],[3,1],[3,4],[-1,12],[1,4],[-8,12],[-12,29],[-22,36],[-6,4],[-8,2],[-26,-10],[3,-6],[1,-2],[-11,-1],[-15,6],[-14,11],[-6,13],[5,7],[8,1],[29,-10],[6,0],[34,8],[13,-6],[8,-27],[5,-8],[16,-17],[8,-6],[9,-3],[8,0],[-6,7],[-19,15],[-4,5],[-5,7],[-1,7],[6,3],[30,-4],[16,2],[8,-2],[7,-8],[-5,-4],[-3,0],[6,-4],[22,-4],[7,1],[4,-1],[2,-3],[4,-7],[3,-2],[11,-1],[12,3],[12,-1],[10,-11],[0,-5],[-3,-18],[0,-2],[1,-2],[0,-4],[-1,-4],[-3,-1],[-4,1],[-4,0],[-3,-4],[4,-10],[20,-23],[5,-8]],[[64249,91034],[55,-4],[-10,-9],[-80,-10],[-21,-19],[-27,0],[-17,-17],[-13,-1],[-6,-2],[-6,-4],[-5,-2],[-11,-1],[3,6],[3,5],[3,4],[13,14],[84,43],[35,-3]],[[65380,91302],[20,-5],[11,-6],[7,-10],[-39,8],[-30,-8],[-9,0],[4,8],[2,0],[25,12],[9,1]],[[65178,91338],[5,0],[5,-2],[4,-5],[1,-9],[-3,-8],[-6,-5],[-7,-2],[-10,-1],[-6,1],[-3,4],[5,7],[2,0],[6,13],[3,5],[4,2]],[[94857,91348],[8,-27],[-1,-27],[-9,-19],[-16,-6],[-4,0],[4,13],[11,23],[4,13],[-6,15],[-10,12],[-10,10],[-22,13],[-45,16],[-2,3],[0,3],[0,4],[1,3],[1,3],[-1,11],[0,3],[-3,10],[-2,8],[0,4],[3,25],[0,5],[-1,6],[0,2],[1,1],[1,1],[1,16],[7,21],[1,12],[-5,17],[-19,23],[-4,15],[2,16],[5,12],[7,8],[38,27],[2,2],[2,4],[3,2],[7,0],[4,1],[5,4],[6,2],[4,-2],[4,-23],[1,-7],[-3,-10],[1,-3],[1,-4],[0,-3],[-2,-3],[-18,-12],[-5,-5],[-1,-8],[3,-8],[13,-12],[2,-11],[0,-7],[-2,-6],[0,-5],[6,-21],[-2,-10],[-13,-22],[4,-11],[11,-12],[4,-9],[-2,-5],[2,-10],[-1,-26],[2,-10],[6,-12],[21,-33]],[[94897,91665],[-2,-5],[-3,-8],[-1,-3],[-1,-10],[3,-11],[2,-10],[-5,-8],[2,-11],[-7,-8],[-11,-6],[-39,-6],[-10,-5],[0,4],[-4,0],[4,7],[10,9],[4,8],[1,6],[0,28],[0,5],[-3,14],[-4,21],[-2,7],[16,6],[3,4],[0,7],[1,6],[2,4],[4,2],[10,-1],[10,-4],[8,-8],[8,-14],[4,-9],[1,-6],[-1,-5]],[[69820,93929],[-6,-7],[-1,-3],[1,-4],[4,-5],[1,-3],[-2,-9],[-3,-3],[-5,0],[-5,-1],[-9,-6],[-4,-4],[-4,-7],[-6,-7],[-7,1],[-7,3],[-7,1],[3,5],[0,6],[-1,17],[-1,4],[6,10],[15,13],[3,8],[6,11],[13,-1],[13,-8],[3,-11]],[[64280,92994],[-2,38],[10,43],[17,37],[17,24],[-2,4],[15,23],[39,19],[26,21],[7,0],[25,-26],[4,-3],[5,-1],[18,0],[-2,-14],[5,-6],[7,1],[7,19],[10,8],[10,5],[6,-1],[-3,-10],[-2,-6],[-1,-5],[3,-6],[5,2],[6,3],[6,-1],[10,-9],[10,-2],[10,3],[12,6],[-6,4],[-2,7],[2,8],[6,6],[-4,4],[-3,5],[-4,5],[-1,6],[4,6],[9,-2],[14,-8],[5,1],[2,4],[-2,6],[-23,29],[7,5],[5,-2],[11,-11],[-1,3],[-4,10],[2,1],[3,5],[2,2],[-3,6],[-4,4],[-5,1],[-5,1],[-4,3],[-1,6],[1,5],[4,0],[10,-8],[23,-6],[11,0],[-1,1],[-3,5],[-2,2],[8,7],[21,10],[4,9],[-4,14],[-20,6],[-5,11],[19,-12],[21,-5],[40,0],[-6,5],[-19,0],[-18,7],[-7,1],[4,11],[-3,8],[-5,8],[-3,9],[6,11],[28,-1],[10,3],[-17,14],[-9,3],[-13,-5],[0,5],[2,6],[3,5],[4,5],[5,3],[4,0],[3,-4],[21,4],[10,4],[0,12],[4,6],[13,6],[-1,2],[-5,7],[13,2],[12,6],[22,4],[7,4],[-52,-2],[-42,-22],[-11,-1],[3,11],[5,9],[5,6],[10,4],[1,3],[0,3],[-3,4],[-4,0],[-13,-3],[4,10],[7,6],[56,16],[9,-1],[27,-14],[30,-1],[-6,5],[-30,5],[-23,11],[-59,-1],[-13,-6],[-47,-1],[-8,3],[-5,6],[-8,11],[-6,4],[-15,1],[-8,3],[-6,8],[5,12],[7,2],[8,-1],[6,5],[1,5],[2,12],[1,5],[5,6],[15,9],[11,17],[6,6],[114,37],[78,-28],[11,0],[10,6],[-13,4],[-12,8],[7,4],[20,-4],[-2,5],[0,2],[3,6],[-9,6],[-36,-2],[-17,7],[-8,8],[-1,11],[1,5],[-1,4],[0,4],[1,5],[3,2],[11,2],[53,-4],[-6,4],[-12,5],[-5,4],[-3,5],[-3,7],[-3,5],[-3,2],[-20,3],[-9,6],[-9,12],[9,3],[2,4],[1,7],[-1,10],[-1,3],[0,3],[4,6],[5,7],[37,28],[13,4],[12,8],[6,2],[28,-9],[7,3],[27,24],[27,14],[30,2],[60,-17],[31,0],[38,21],[20,4],[4,4],[9,11],[24,21],[15,6],[30,3],[21,12],[13,1],[15,7],[18,0],[53,-18],[50,-33],[51,-11],[75,5],[14,-9],[0,-2],[-1,-8],[1,-2],[2,-2],[86,-18],[86,-17],[5,-4],[3,-4],[4,-8],[2,-4],[20,-18],[6,-9],[1,-13],[-10,-5],[-103,-16],[-102,-17],[10,-5],[75,3],[75,4],[22,-10],[-10,-15],[-14,-12],[-16,-6],[-26,8],[-84,-12],[-13,-6],[-65,-4],[-8,-5],[6,-1],[13,-6],[6,-1],[31,4],[43,-10],[40,17],[27,5],[11,-3],[1,-8],[-10,-30],[5,-6],[0,-9],[-5,-18],[0,-3],[0,-11],[0,-1],[-3,-3],[-9,-3],[-1,-5],[-10,-16],[-21,-2],[-54,14],[-36,-10],[-18,0],[-47,14],[-6,-2],[-14,-12],[48,0],[31,-19],[26,3],[14,-13],[24,-40],[-51,4],[-32,17],[-9,-4],[29,-27],[1,-8],[-9,-6],[-19,-4],[3,-8],[4,-8],[10,-12],[-4,-7],[-14,-12],[-6,-2],[-13,2],[-6,5],[-11,15],[-9,4],[-53,3],[51,-14],[4,-15],[11,-2],[11,-5],[3,-4],[0,-4],[-4,-9],[0,-6],[0,-6],[-1,-3],[-4,-1],[-24,0],[-16,-7],[-5,1],[-6,2],[-52,-1],[-10,-7],[57,-4],[9,-4],[7,-1],[18,5],[6,-5],[1,-5],[0,-8],[1,-7],[4,-4],[-1,-6],[-2,-8],[-2,-8],[-2,-4],[-20,-22],[-3,-7],[7,-10],[30,-15],[3,-14],[13,-16],[2,-6],[-3,-10],[-6,-6],[-14,-8],[-18,-23],[-7,-3],[-4,-4],[-7,-18],[-6,-7],[24,-1],[7,-3],[-5,-7],[-10,-10],[-4,-7],[-2,-6],[-2,-7],[-2,-6],[-4,-6],[4,-2],[3,-5],[3,-6],[2,-7],[-10,0],[-30,8],[3,-8],[-5,-3],[-3,-2],[-1,-3],[48,-4],[4,-1],[8,-6],[15,-5],[3,-2],[1,-3],[0,-3],[1,-3],[4,-12],[0,-5],[-2,-5],[0,-8],[2,-28],[6,-22],[20,-39],[14,-42],[22,-32],[16,-16],[6,-9],[16,-37],[8,-12],[19,-16],[8,-11],[3,-10],[7,-29],[1,-11],[5,-13],[9,-13],[66,-60],[66,-60],[19,-25],[39,-27],[14,-5],[7,-4],[4,-5],[11,-18],[5,-4],[11,-6],[17,-16],[7,-5],[19,-3],[27,-11],[11,-10],[12,-7],[43,5],[4,-17],[44,-35],[-23,-2],[-8,2],[-13,9],[-6,2],[-7,-3],[7,-11],[13,-5],[9,-7],[-3,-14],[-11,-8],[0,-1],[-4,-11],[-4,-6],[-5,-4],[-6,-2],[-6,0],[0,-4],[4,0],[4,-1],[4,-3],[3,-4],[-53,13],[-53,26],[-7,2],[-6,-1],[-3,-1],[-7,-7],[-5,-1],[-18,5],[-23,19],[-12,7],[-10,-5],[3,-6],[4,-4],[8,-7],[12,-14],[4,-2],[51,-12],[6,1],[15,7],[8,0],[3,-1],[3,-3],[1,-2],[0,-3],[0,-4],[1,-3],[12,-8],[25,-8],[11,-9],[-6,-4],[-7,0],[-80,23],[-80,22],[-22,17],[-12,3],[4,-9],[8,-7],[16,-8],[-13,-2],[-19,7],[-16,14],[-9,17],[3,6],[3,12],[2,3],[11,2],[5,3],[-1,5],[-7,4],[-21,-2],[-5,-3],[-2,-6],[-2,-7],[-3,-5],[-6,-1],[-27,8],[-12,8],[-6,2],[-7,-1],[-2,-3],[1,-4],[5,-5],[6,-2],[7,-1],[6,-2],[4,-6],[-34,4],[4,-8],[8,-5],[17,-4],[-5,-6],[-6,-2],[-12,0],[5,-9],[9,-3],[25,0],[5,2],[1,6],[-2,3],[-9,5],[-4,4],[29,-3],[14,-7],[12,-14],[-11,1],[-6,-2],[-3,-7],[36,-8],[16,-9],[4,-5],[0,-5],[-3,-4],[-12,-4],[-16,-11],[-8,-3],[-11,2],[-21,10],[28,-4],[-10,8],[0,5],[7,-4],[7,-2],[7,1],[6,5],[-8,10],[-9,2],[-20,-4],[-21,3],[-20,9],[-34,26],[-19,7],[-14,-13],[33,-11],[5,-11],[-3,-9],[-10,1],[-25,16],[-21,22],[-10,6],[-23,8],[-10,6],[12,-26],[39,-19],[15,-20],[-7,-7],[-7,4],[-7,7],[-7,5],[-4,-2],[-8,-7],[-5,0],[-4,3],[-2,3],[-1,4],[-3,3],[-9,4],[-18,-3],[-9,2],[-26,13],[-6,8],[7,-5],[10,-6],[9,-5],[8,4],[-8,12],[13,-6],[13,-2],[2,6],[-4,15],[-7,15],[-6,8],[-19,5],[-11,12],[-6,-3],[-2,-6],[4,-4],[11,-2],[11,-8],[9,-12],[6,-18],[-10,16],[-14,9],[-46,14],[-7,6],[-7,12],[-5,4],[-6,0],[0,-8],[-12,-11],[-4,-9],[10,0],[10,-4],[9,-9],[5,-16],[-5,3],[-9,13],[-4,5],[-3,-1],[-13,-4],[-16,5],[-5,-2],[-6,-4],[-5,-8],[1,-9],[14,-18],[2,-8],[-5,3],[-1,-3],[0,-7],[-2,-6],[-11,0],[-5,-2],[1,-9],[-14,-8],[-14,11],[-15,16],[-17,11],[-2,3],[0,5],[-1,2],[-5,2],[-10,0],[-5,2],[-3,3],[-6,6],[-3,3],[-19,4],[-6,3],[-5,5],[-5,6],[-5,7],[-5,11],[0,7],[2,6],[-1,8],[-6,6],[-28,7],[-11,14],[-5,6],[-5,8],[5,-10],[8,-10],[2,-9],[-17,6],[-4,-2],[0,-11],[-1,-10],[-3,-7],[48,-25],[-4,0],[-2,-1],[-2,-2],[11,-6],[10,-2],[10,-4],[10,-13],[-37,8],[-18,8],[-7,7],[0,10],[-6,4],[-13,2],[-7,3],[-40,33],[-6,2],[-5,-3],[0,-5],[3,-6],[4,-6],[-9,-8],[-10,0],[-10,5],[-9,9],[-4,2],[-16,-8],[-11,3],[-11,5],[-42,39],[-4,0],[-2,-5],[2,-4],[14,-14],[-5,1],[-5,2],[-9,8],[-7,2],[-15,-4],[-7,0],[-4,2],[-11,11],[-7,5],[-15,1],[-7,5],[1,2],[1,6],[-6,1],[-2,-6],[0,-10],[3,-9],[-3,-5],[-5,9],[-17,2],[-14,16],[-11,6],[-19,4],[53,4],[5,-2],[3,0],[3,3],[3,4],[3,3],[7,1],[5,-4],[14,-20],[7,-6],[5,-2],[4,7],[-5,6],[-3,10],[0,10],[3,10],[6,11],[6,6],[3,7],[-4,12],[-15,22],[-34,24],[-16,16],[1,3],[2,10],[10,-5],[13,-4],[26,-1],[-4,9],[4,4],[5,-1],[8,-6],[5,-2],[11,1],[5,0],[29,-19],[9,3],[-29,30],[-7,14],[37,6],[19,-2],[16,-12],[-24,7],[-12,-1],[-6,-14],[6,-3],[17,3],[22,-4],[43,12],[3,2],[-1,4],[-4,4],[-4,2],[-5,-1],[-10,-5],[-5,-2],[-21,6],[-12,6],[-8,8],[4,1],[3,4],[2,5],[3,5],[4,2],[13,0],[-11,12],[7,1],[13,-2],[10,1],[-7,2],[-13,11],[-8,3],[-6,-2],[-5,-5],[-9,-15],[-6,-8],[-7,-6],[-8,-1],[-6,7],[-6,8],[-6,4],[-14,2],[4,-6],[4,-8],[1,-9],[-3,-8],[-7,-1],[-18,10],[-8,1],[4,7],[2,2],[-5,4],[-11,3],[-5,3],[-6,1],[-14,-5],[-6,4],[-4,6],[-9,5],[-13,18],[-3,5],[34,18],[6,5],[3,12],[13,15],[3,13],[5,17],[12,7],[45,7],[11,8],[7,16],[-9,4],[-5,1],[-6,-4],[-14,-17],[-70,-27],[-7,-7],[-4,-11],[2,-25],[-16,-8],[-21,5],[-14,12],[-1,4],[-2,12],[-1,4],[-9,16],[-18,37],[5,1],[11,6],[4,3],[2,4],[0,3],[0,3],[1,4],[7,11],[24,18],[-22,14],[-5,-1],[-39,-34],[-9,-13],[-9,-15],[2,-13],[-4,-9],[-6,-2],[-3,6],[-1,12],[-4,7],[-10,12],[2,8],[-2,2],[-5,-1],[-5,-4],[-1,-6],[3,-6],[5,-6],[3,-4],[-3,-8],[-6,0],[-7,2],[-5,-2],[-1,-8],[1,-9],[-1,-5],[-7,2],[-4,1],[-7,-11],[-6,1],[-4,5],[-2,7],[-1,8],[2,7],[-3,11],[-9,7],[-7,-3],[7,-21],[-16,2],[-7,6],[-2,14],[-4,14],[-8,-2],[-15,-14],[-7,3],[2,11],[6,13],[3,10],[-1,12],[-6,8],[-14,10],[-3,10],[0,21],[-4,4],[-8,-4],[-2,-10],[0,-13],[-4,-14],[-8,-6],[-23,-4],[-5,-8],[2,-13],[4,-8],[4,-6],[3,-8],[-10,3],[-14,7],[-13,12],[-6,15],[3,20],[-1,9],[-6,-3],[-14,-15],[-6,-5],[-9,-2],[6,-16],[11,-10],[12,-6],[9,-9],[-38,5],[-24,-5],[-26,2],[-13,-8],[-15,-6],[-6,0],[-5,3],[-3,5],[-3,5],[-4,5],[-21,18],[-7,5],[-23,7],[-14,14],[-5,3],[1,6],[4,11],[1,5],[-1,6],[-4,6],[-1,5],[-2,9],[-16,27],[-1,6],[1,2],[1,3],[-4,7],[-4,4],[-3,2],[-2,2],[-2,9],[-2,8],[-1,10],[1,14]],[[85389,94008],[-3,5],[10,7],[25,4],[48,-1],[81,-29],[22,-2],[-8,-4],[-72,5],[-21,8],[-22,-3],[-22,9],[-38,1]],[[74136,94114],[-3,-4],[-20,-19],[-5,-8],[-1,-4],[3,-7],[-1,-7],[-3,-3],[-6,-3],[-101,-6],[18,15],[7,1],[6,12],[18,8],[33,5],[44,21],[15,3],[-4,-4]],[[76988,95530],[37,5],[12,7],[0,-3],[-9,-12],[-35,-17],[-36,-28],[-83,-15],[-14,8],[4,16],[10,5],[114,34]],[[76437,95579],[4,-3],[2,-1],[-12,-6],[-15,1],[-15,5],[-11,8],[12,8],[5,6],[4,10],[5,4],[16,-14],[7,-9],[-2,-9]],[[76388,95640],[-10,-6],[-21,-7],[-9,-7],[3,-6],[7,-6],[3,-4],[-15,-16],[-19,-3],[-46,8],[-8,5],[-8,1],[-9,-6],[-7,-3],[-9,3],[-9,5],[-7,6],[17,13],[6,3],[80,-17],[6,4],[-4,8],[-5,7],[-4,5],[-5,1],[4,4],[-2,0],[22,3],[20,9],[2,2],[2,3],[1,2],[2,0],[7,-7],[7,-3],[8,-1]],[[76826,95680],[41,3],[12,-6],[-3,-5],[-7,-1],[-3,-2],[-3,-5],[-1,-5],[-2,-5],[-4,-2],[-6,3],[-9,10],[-5,4],[-50,-1],[-14,9],[13,6],[41,-3]],[[76915,95630],[9,3],[31,-13],[-8,-6],[-20,-2],[-9,-3],[-41,-27],[-5,0],[-4,3],[-1,4],[-1,8],[-1,5],[0,8],[4,9],[3,8],[-4,5],[4,6],[11,6],[9,14],[17,11],[-3,4],[-10,7],[7,9],[9,-1],[16,-9],[17,2],[7,-1],[1,-8],[3,-4],[2,-4],[7,-4],[-13,-10],[-12,-5],[-27,-1],[-8,-5],[-7,-11],[-6,-13],[-7,-11],[8,1],[8,7],[14,18]],[[76156,95831],[42,-4],[13,-9],[-137,9],[5,6],[16,10],[61,-12]],[[76462,95875],[13,-1],[4,-3],[-12,-13],[-16,-1],[-30,6],[-75,-7],[-7,3],[-2,6],[6,9],[8,3],[42,6],[8,-3],[5,1],[6,7],[10,16],[2,-4],[0,-3],[2,-1],[4,0],[3,0],[10,-11],[19,-10]],[[65829,94702],[-4,0],[-8,10],[-14,4],[-15,-2],[-17,-10],[-7,0],[-13,3],[-22,-3],[-7,3],[-4,4],[-6,13],[-5,7],[-5,5],[-5,3],[-7,1],[-10,-3],[-6,0],[-3,3],[2,5],[21,18],[-10,4],[-73,-6],[-73,-5],[-15,4],[-15,7],[-4,5],[0,6],[5,8],[14,9],[91,23],[92,23],[14,11],[6,1],[13,0],[4,2],[-1,6],[-5,6],[-5,2],[-14,-3],[-13,-8],[-7,-3],[-23,6],[-6,-2],[-12,-9],[-3,1],[7,14],[-24,0],[6,2],[20,15],[15,6],[6,5],[0,6],[-6,6],[-6,3],[-7,-1],[-16,-6],[-44,-3],[-32,-14],[-45,-3],[-9,3],[-2,4],[8,11],[0,6],[15,25],[-3,1],[-6,6],[-3,1],[-19,0],[-24,-8],[-6,4],[3,3],[1,5],[1,4],[1,4],[3,3],[7,5],[3,4],[1,4],[1,9],[2,4],[4,3],[9,0],[4,1],[3,3],[7,13],[3,4],[33,12],[10,0],[9,-4],[-2,-2],[-3,-4],[-1,-2],[9,-6],[12,-1],[12,2],[9,5],[-5,-10],[-16,-8],[-6,-6],[10,-4],[11,1],[21,11],[14,11],[5,1],[4,-2],[2,-2],[1,-4],[20,-35],[5,-18],[-7,-12],[23,6],[23,17],[50,54],[25,15],[4,4],[3,6],[1,9],[-5,15],[-13,5],[-24,-1],[-7,5],[6,13],[22,22],[59,26],[7,-2],[21,-10],[77,-2],[-1,-8],[3,-3],[11,-2],[23,-11],[52,-4],[-2,2],[-4,6],[1,2],[1,4],[1,2],[-3,2],[-11,8],[-3,4],[-1,19],[0,4],[-7,13],[-9,3],[-10,-1],[-9,5],[1,9],[-3,7],[-9,12],[17,13],[136,34],[25,-2],[6,2],[6,6],[3,9],[-5,10],[-9,5],[-53,-3],[-8,3],[5,16],[10,10],[11,5],[66,7],[14,6],[26,4],[16,11],[40,3],[-3,5],[-16,11],[11,8],[10,5],[31,6],[1,7],[0,9],[7,8],[50,21],[57,-2],[26,13],[5,1],[16,0],[8,2],[7,7],[-1,0],[0,4],[0,4],[1,4],[2,2],[7,5],[2,1],[97,-4],[8,2],[14,8],[21,6],[27,17],[13,4],[77,3],[7,4],[-1,7],[-5,4],[-8,3],[-60,5],[-6,3],[-5,7],[11,9],[51,24],[80,4],[79,4],[-6,-7],[-7,-3],[-7,-1],[-79,-46],[-4,-8],[19,4],[6,0],[-2,-4],[15,-9],[18,-1],[18,5],[14,13],[1,3],[2,9],[2,4],[4,4],[22,5],[19,-2],[34,11],[7,7],[9,12],[3,7],[-2,9],[-8,5],[-48,-7],[-7,2],[-6,8],[8,11],[18,14],[8,11],[-8,8],[1,9],[5,9],[8,7],[9,4],[29,0],[84,8],[21,-6],[7,2],[6,5],[4,6],[5,4],[10,2],[8,-1],[4,-2],[8,-9],[3,-1],[41,0],[6,2],[15,-20],[32,-6],[80,11],[6,-5],[0,-7],[-3,-6],[-4,-6],[-2,-6],[5,-14],[10,-6],[12,-2],[9,-4],[1,7],[2,5],[7,7],[5,6],[1,0],[3,-1],[15,-6],[7,1],[-1,13],[8,6],[29,17],[9,0],[9,-5],[6,-9],[-4,-7],[-1,-2],[20,0],[-5,-8],[15,-6],[60,21],[14,12],[67,14],[6,3],[12,15],[8,3],[18,1],[7,5],[7,5],[6,4],[7,1],[39,-5],[21,13],[6,0],[4,-3],[5,-6],[7,-13],[6,-6],[7,-2],[8,0],[21,7],[27,18],[14,5],[26,-2],[8,2],[4,5],[5,12],[2,4],[14,2],[28,-16],[14,5],[-6,6],[0,7],[4,8],[6,7],[8,9],[7,2],[17,1],[-4,10],[-2,2],[12,8],[44,10],[13,0],[10,-4],[1,-10],[8,-5],[9,0],[10,3],[16,11],[31,12],[4,5],[8,15],[6,7],[23,9],[35,4],[105,-28],[2,0],[10,8],[-5,6],[-5,5],[-6,4],[-5,1],[-5,3],[-2,6],[-2,8],[-2,6],[-8,14],[-10,9],[-23,12],[-5,6],[2,7],[6,5],[12,4],[18,18],[15,6],[46,2],[12,6],[23,19],[12,4],[14,-1],[6,3],[6,8],[4,10],[2,4],[4,4],[15,7],[30,2],[15,7],[2,3],[2,7],[1,2],[3,2],[63,14],[11,12],[7,3],[74,2],[37,20],[15,0],[22,11],[31,5],[124,-9],[34,-18],[38,-5],[47,4],[14,-8],[-8,-7],[-2,-5],[3,-4],[22,0],[7,-3],[9,-12],[13,-12],[5,-2],[17,2],[9,-1],[7,-5],[-7,-8],[-6,-8],[-1,-9],[8,-9],[31,-8],[9,-7],[-9,-15],[-2,-8],[3,-9],[8,-8],[20,-2],[8,-2],[-38,-20],[-11,-13],[-2,-4],[-1,-10],[-2,-4],[-14,-22],[32,-6],[10,-7],[-10,-9],[-43,-25],[-35,-34],[-20,-14],[-10,-3],[-21,0],[-6,-4],[-3,-6],[1,-4],[3,-2],[5,0],[-13,-18],[-13,-10],[-38,-11],[-7,-5],[-1,-5],[9,-4],[25,-2],[7,-6],[-11,-7],[-104,-14],[-86,-36],[-17,1],[-49,-19],[-61,-37],[-46,-6],[-48,-19],[-34,-1],[-22,-15],[-23,-7],[-26,-15],[-38,-1],[-18,-14],[-14,-7],[-133,-31],[-134,-32],[-26,-21],[-12,-7],[-14,-3],[-39,4],[-80,-26],[-81,-25],[-57,-2],[-7,-3],[-13,-11],[-49,-16],[-26,-16],[-15,-4],[3,8],[2,6],[0,5],[-3,6],[-4,2],[-7,1],[-4,3],[4,10],[-8,9],[-8,0],[-18,-5],[11,-2],[6,-3],[2,-7],[-3,-6],[-25,-29],[-11,-4],[-11,-2],[-38,-20],[-23,0],[-14,-5],[-33,6],[-6,-1],[-82,-41],[-32,-2],[-97,-45],[-13,-2],[-20,11],[-16,-6],[-7,1],[-6,2],[-5,0],[-5,-5],[-5,-8],[-39,-28],[-2,-11],[-10,-3],[-22,14],[-10,-3],[5,-9],[-3,-7],[-12,-12],[2,-2],[6,-6],[-4,-3],[-8,-3],[-3,-3],[2,-2],[1,-3],[2,-7],[-13,0],[-7,-2],[-6,-5],[-3,-6],[-2,-6],[-2,-5],[-4,-5],[-10,-4],[-12,1],[-10,7],[-7,14],[2,6],[0,6],[1,6],[-1,5],[-2,6],[-3,3],[0,5],[3,7],[-28,-4],[5,-16],[-1,-13],[-6,-9],[-45,-39],[-20,-6],[-19,-10],[-38,-11],[-5,-4],[-4,-15],[-4,-3],[-10,-4],[7,-9],[6,-1],[2,-3],[-4,-13],[-6,-12],[-5,-7],[-7,-3],[-26,0],[-11,4],[-6,7],[0,9],[3,10],[4,8],[5,6],[-5,7],[-6,3],[-18,-3],[-4,-2],[-1,-4],[4,-5],[-17,-16],[1,-2],[1,-4],[1,-2],[-4,-4],[-1,-1],[9,-8],[-6,-8],[-8,-5],[-42,-11],[-9,0],[6,6],[2,2],[-8,8],[-34,-16],[-51,8],[8,-9],[15,-6],[85,-4],[85,-3],[18,-26],[-7,-7],[-20,-22],[-8,-5],[-66,-7],[-28,5],[-8,-5],[4,-7],[6,-6],[7,-5],[5,-2],[7,-1],[7,-3],[8,-6],[5,-7],[-11,-15],[-15,-10],[-95,-15],[-9,2],[-16,8],[-8,2],[-26,-2],[-8,3],[-18,17],[-19,6],[-14,8],[8,-7],[17,-20],[6,-11],[6,-5],[35,-1],[3,-2],[1,-3],[1,-3],[1,-2],[2,-2],[11,-5],[6,-3],[4,-9],[0,-5],[0,-12],[1,-5],[-1,-6],[-6,-4],[-12,-3],[-4,-4],[-7,-9],[-4,-5],[-13,-3],[-30,9],[-23,15],[-24,20],[-16,6],[-16,14],[-25,13],[-19,16],[-10,5],[-9,-5],[7,-10],[31,-24],[12,-14],[6,-9],[-16,-1],[-8,3],[-6,8],[-6,5],[-8,-1],[-8,-5],[-6,-5],[31,-11],[8,-9],[-4,-6],[-7,-16],[-5,-7],[-9,-9],[-1,-6],[5,-9],[-11,-10],[-4,-8],[0,-8],[5,-4],[5,-2],[4,-5],[-1,-7],[2,-4],[-78,7],[-34,13],[-1,1],[0,8],[-1,2],[-5,4],[-74,23],[-74,23],[-1,-3],[-1,-6],[-1,-3],[26,-17],[42,-11],[2,-1],[0,-2],[0,-5],[0,-2],[13,-14],[46,-30],[-4,-6],[-15,-14],[17,-17],[7,-12],[-1,-16],[5,-2],[11,-2],[5,-4],[-6,-8],[9,-8],[-4,-3],[-9,-4],[-4,-5],[4,0],[3,-1],[4,-3],[3,-4],[-54,0],[27,-7],[8,-6],[-42,0],[5,-9],[6,-4],[6,-2],[6,-4],[-9,-6],[-8,-2],[-9,1],[-9,2],[-7,5],[-12,11],[-6,0],[-10,-8],[-2,2],[-1,12],[-3,8],[-7,-3],[-8,-9],[-5,-10],[15,-17],[21,-7],[40,0],[-10,-10],[-28,5],[-11,-7],[-1,-4],[0,-13],[-1,-4],[-4,-3],[-4,-1],[-2,4],[1,9],[-10,10],[-15,10],[-15,5],[-6,-7],[2,-6],[3,-3],[4,-5],[1,-8],[-4,-7],[-17,-18],[18,-2],[10,-6],[4,-10],[0,-8],[0,-4],[-3,-2],[-6,0],[-4,-2],[-12,-9],[-4,-1],[-22,11],[-28,2],[-32,20],[-17,3],[-4,3],[-4,3],[-28,38],[-18,35],[-8,7],[-12,1],[-21,-5],[20,-23],[8,-13],[6,-18],[-16,-12],[-41,11],[-19,-7],[74,-9],[6,-2],[6,-5],[11,-14],[75,-56],[9,-11],[-15,-3],[-7,-3],[-6,-6],[6,-5],[14,-2],[6,-5],[0,-6],[0,-7],[1,-6],[7,-1],[-2,-6],[1,-6],[2,-5],[2,-4],[-54,-48],[-10,-1],[-9,3],[-15,10],[-2,3],[-4,11],[-4,6],[-16,10],[-13,14],[-26,15],[-116,13],[-117,13],[22,-15],[83,-6],[45,-14],[24,0],[11,-3],[36,1],[6,-10],[3,-9],[30,-24],[2,-4],[1,-8],[2,-4],[20,-11],[3,-3],[-1,-6],[0,-5],[2,-5],[4,-3],[2,-2],[-4,-9],[-2,-5],[-1,-5],[4,-3],[-1,-5],[-5,-5],[-4,-4],[-67,-20],[2,-3],[4,-9],[-92,18],[-64,55],[-10,4],[-5,-2],[-4,-7],[7,-12],[20,-11],[9,-9],[-6,-4],[-8,-1],[-15,1],[12,-7],[25,3],[12,-3],[44,-35],[36,-11],[8,-5],[2,-4],[2,-7],[0,-4],[-2,-4],[-1,-5],[3,-7],[-6,0],[-9,-2],[-6,-7],[0,-11],[-61,-49],[-14,-15],[-5,-1],[-2,2],[-5,10],[-2,4],[-12,10],[-7,4],[-6,1],[-5,-3],[-2,-8],[1,-8],[4,-4],[10,-4],[-16,-16],[-4,-6],[-1,-6],[3,-4],[5,-4],[3,-5],[-8,-4],[-12,-1],[-12,3],[-18,8],[-128,17],[-11,8],[-9,16],[-4,24],[-5,25],[-12,15],[-15,6],[-13,-7],[18,-11],[10,-9],[4,-11],[0,-5],[-4,-17],[1,-9],[2,-1],[-1,0],[-5,-6],[-10,-5],[-9,3],[-20,14],[-13,4],[-94,-9],[-115,66],[-34,3],[-33,-7],[-33,-18],[-26,1],[-26,-10],[-50,-34],[-12,-3],[-60,27],[9,14],[18,7],[40,3],[5,2],[2,5],[0,4],[1,4],[1,3],[2,3],[6,6],[22,10],[-28,-5],[-10,1],[-26,12],[5,8],[94,63],[19,3],[19,8],[9,7],[20,11],[44,3],[29,20],[12,4],[72,7],[-9,5],[-9,0],[-9,-3],[-80,-2],[-9,-4],[-14,-13],[-7,-3],[-8,4],[10,17],[2,8],[-6,-1],[-10,-6],[-6,-2],[-18,0],[-17,-7],[-37,-1],[-11,-4],[-8,-10],[-8,-12],[-9,-11],[-9,-5],[-21,-5],[-9,-6],[4,-6],[1,-2],[-44,10],[-13,-5],[-6,1],[-13,6],[-11,3],[-5,3],[-5,6],[2,1],[6,4],[-5,3],[-10,2],[-4,3],[-3,3],[-7,9],[-26,22],[-8,4],[-18,5],[-7,6],[-3,8],[0,6],[2,7],[1,9],[3,9],[7,-2],[13,-13],[9,-4],[11,-2],[20,1],[59,33],[-5,9],[4,8],[8,6],[15,5],[26,21],[17,9],[38,10],[49,2],[27,15],[17,-6],[4,2],[0,9],[-9,6],[-18,6],[-18,-2],[-9,2],[-5,8],[4,0],[2,2],[19,27],[4,3],[6,2],[84,57],[38,9],[8,-1],[5,-3],[14,-12],[8,-4],[31,-8],[26,5],[91,-29],[8,0],[6,3],[2,9],[-4,5],[-21,11],[-27,3],[-14,6],[-3,16],[-107,33],[-25,-2],[-5,2],[-4,2],[-7,7],[-4,3],[5,3],[9,0],[5,1],[0,1],[0,3],[1,3],[1,1],[10,4],[6,5],[6,4],[5,-2],[5,-7],[-1,-2],[-1,-4],[-1,-2],[9,-3],[32,7],[35,-2],[11,3],[16,10],[9,0],[7,-19],[7,-1],[7,5],[4,10],[-5,5],[-19,15],[-7,2],[-5,-1],[-3,-3],[-4,-1],[-5,2],[-13,11],[-22,4],[-42,1],[-10,3],[-8,9],[32,34],[11,7],[33,0],[31,12],[12,-3],[67,0],[13,5],[6,2],[19,-4],[18,7],[44,2],[5,3],[2,4],[-3,5],[-6,3],[-6,0],[-12,-5],[-49,-3],[4,6],[5,5],[5,4],[5,1],[-30,16],[-30,4],[-15,-3],[-29,-15],[-14,-2],[11,14],[2,4],[-2,3],[-8,10],[-3,2],[-44,-5],[17,28],[-2,5],[-3,1],[-3,4],[-3,5],[0,6],[2,3],[23,13],[20,2],[20,7],[32,-5],[-1,-5],[-1,-2],[9,-6],[136,36],[9,-1],[0,-9],[10,-1],[28,-12],[120,4]],[[76074,96750],[-17,-3],[-12,2],[-19,4],[-19,2],[-10,10],[2,9],[13,5],[14,4],[15,0],[12,0],[7,-6],[12,-4],[6,-5],[9,-6],[1,-7],[-14,-5]],[[75682,97320],[56,-11],[18,-9],[-58,2],[-76,21],[-18,9],[1,0],[9,5],[68,-17]],[[75830,97503],[-12,-9],[-12,-4],[-25,1],[2,-4],[-8,-5],[-34,2],[-13,8],[-6,3],[-2,0],[-2,3],[0,2],[0,3],[14,0],[43,12],[28,-2],[27,-10]],[[75640,97523],[46,-12],[-7,-4],[-22,0],[-21,-8],[-8,0],[2,-5],[3,-3],[7,-4],[-17,-6],[-128,22],[46,2],[22,-6],[11,1],[12,4],[19,16],[12,3],[23,0]],[[75380,97542],[45,-21],[-19,6],[-22,1],[-7,3],[1,3],[0,4],[-8,4],[-39,18],[-104,24],[-7,4],[97,-15],[63,-31]],[[77833,97657],[15,1],[9,-2],[6,-7],[-34,-4],[-33,-12],[-23,-22],[-12,-7],[-10,8],[3,6],[3,5],[2,6],[1,8],[0,6],[-1,5],[0,6],[3,7],[10,7],[11,2],[21,0],[-4,-9],[33,-4]],[[76201,97864],[-9,-7],[-12,-4],[-23,-1],[1,-2],[1,-2],[1,-2],[1,-2],[-8,-7],[-44,-11],[-10,0],[-8,6],[7,14],[3,6],[5,4],[39,2],[35,13],[11,-1],[10,-6]],[[90603,76254],[8,0],[5,-1],[2,-3],[0,-7],[-4,-5],[-2,-6],[1,-11],[-16,-12],[-5,0],[-1,3],[-1,11],[-1,2],[-3,2],[-3,4],[-6,10],[14,14],[7,3],[5,-4]],[[90800,76444],[3,-5],[4,-4],[5,-1],[4,2],[-2,-10],[-2,-9],[-3,-7],[-5,-2],[-5,-1],[-4,-3],[-7,-8],[-2,0],[-2,2],[-2,0],[-3,-4],[-1,-5],[-3,-4],[-3,-4],[-2,-1],[-5,-2],[-4,-3],[-4,-2],[-5,2],[2,-8],[-7,-8],[-3,-3],[-4,-1],[-5,2],[-7,8],[-4,2],[-2,4],[0,8],[3,17],[-1,6],[-2,7],[1,5],[12,3],[7,5],[26,23],[8,3],[6,-4],[4,7],[4,4],[4,-1],[4,-6],[2,-4]],[[90685,76781],[23,13],[6,0],[-5,-25],[-2,-6],[-1,-3],[-2,-6],[-1,-3],[-1,-3],[-3,-3],[-2,-2],[-3,-1],[-8,8],[-4,3],[-3,-2],[-9,-6],[-2,-2],[-2,-1],[-8,-22],[-2,-5],[-11,-15],[-6,-6],[-8,-5],[-9,-2],[-5,5],[-6,-5],[-18,-3],[-6,-6],[-1,-4],[-2,-3],[-3,-2],[-2,-2],[-1,-1],[-1,-9],[-1,-3],[-3,-8],[-3,-4],[-2,-3],[-5,-4],[-27,-36],[-3,-5],[-8,-20],[-2,-6],[0,-18],[-1,-7],[-3,-5],[-5,4],[-6,-3],[-5,-8],[-2,-11],[-1,-12],[-3,-11],[-4,-10],[-4,-6],[-5,-5],[-5,-4],[-18,-5],[-4,-5],[-8,-14],[-9,-11],[-2,-8],[-2,-62],[-4,-42],[-1,-4],[-1,3],[-1,6],[-1,4],[0,8],[1,9],[-1,4],[2,4],[-10,12],[-11,-6],[-9,-1],[-4,27],[0,16],[0,5],[-2,4],[-2,5],[-1,5],[0,4],[3,4],[6,4],[2,4],[6,17],[3,6],[16,14],[3,4],[3,7],[28,32],[5,17],[1,3],[6,3],[6,8],[5,10],[3,11],[2,23],[1,4],[6,9],[1,7],[2,5],[13,12],[4,5],[0,5],[1,13],[1,5],[8,16],[5,7],[11,6],[4,5],[2,4],[1,5],[1,5],[0,4],[1,5],[5,7],[1,4],[1,14],[2,10],[3,8],[4,7],[13,41],[8,17],[11,3],[7,0],[3,-3],[14,-23],[2,-2],[7,-4],[15,-17],[9,-4],[29,4]],[[91332,77365],[2,-6],[11,-20],[-1,-11],[-7,-11],[-10,-9],[-6,-3],[-8,-1],[-24,5],[-16,-3],[-8,-5],[-25,-28],[-8,-6],[-26,-6],[-19,-10],[-17,-16],[-24,-38],[-17,-31],[-12,-24],[-9,-19],[-8,-4],[-14,-22],[-13,1],[-9,1],[-7,-1],[-3,-2],[-5,-8],[-3,-2],[-8,14],[-4,15],[-7,9],[-13,-8],[-8,-15],[-1,-11],[2,-11],[6,-6],[-1,-8],[-5,-4],[-3,-6],[-9,-14],[-2,-6],[-4,-14],[-2,-6],[-20,-27],[-27,-25],[-16,-28],[-11,-17],[-5,-11],[-13,-36],[-20,-13],[-11,7],[-16,-20],[-10,-20],[-7,-13],[-5,-14],[-2,-12],[-3,-10],[-6,1],[-7,6],[-10,1],[-4,7],[-1,10],[2,8],[2,8],[6,9],[4,10],[8,9],[3,7],[-3,12],[-2,10],[0,13],[2,10],[4,-1],[2,-12],[1,-11],[6,-7],[5,-4],[5,10],[5,10],[-3,13],[-5,8],[-3,17],[9,3],[10,-13],[7,-5],[10,5],[7,16],[12,24],[1,10],[1,14],[-12,9],[-11,4],[-7,11],[4,19],[12,4],[10,-15],[8,-6],[9,13],[-3,18],[7,10],[27,20],[13,21],[12,13],[4,5],[5,11],[3,11],[2,13],[0,16],[0,8],[0,4],[0,3],[2,5],[5,4],[4,-1],[4,-4],[3,-5],[7,-8],[8,1],[7,6],[6,11],[18,42],[7,12],[6,7],[30,13],[2,3],[0,8],[-3,6],[-3,6],[-2,6],[2,25],[0,6],[-3,13],[0,7],[3,16],[5,9],[7,8],[7,10],[3,3],[2,-5],[1,-8],[1,-15],[1,-6],[8,-24],[1,-5],[1,-7],[0,-9],[-1,-5],[0,-5],[3,-8],[7,-8],[9,-2],[67,14],[13,15],[11,23],[7,12],[6,5],[1,3],[5,15],[3,4],[8,9],[7,10],[5,12],[3,4],[2,1],[6,1],[3,2],[2,4],[3,10],[1,2],[2,2],[5,1],[22,13],[10,2],[10,-6],[15,-22],[1,-10],[-8,-12],[-7,-5],[-1,-3],[0,-9]],[[91759,77836],[17,12],[23,-12],[25,13],[-15,-25],[-12,-17],[-8,-11],[-14,-25],[-8,-11],[-12,-7],[-10,-14],[-11,-6],[-5,-16],[-10,-15],[-3,-21],[5,-11],[-2,-2],[-10,-3],[-3,-6],[-1,-8],[-8,-11],[-7,-5],[-14,-16],[-4,-12],[-7,-3],[-7,1],[-7,1],[-7,-7],[0,-10],[-14,-9],[-8,-10],[-24,-46],[-15,-21],[-18,-22],[-9,-3],[-6,16],[-2,3],[0,-8],[-1,-9],[-1,-3],[-2,-2],[-3,-6],[-6,-4],[-26,2],[2,4],[3,4],[3,14],[5,27],[8,2],[5,12],[2,3],[3,4],[2,3],[3,13],[8,19],[1,4],[-1,7],[1,4],[2,2],[4,0],[2,2],[7,16],[4,18],[8,4],[16,0],[16,11],[11,22],[10,26],[10,22],[27,45],[21,13],[4,0],[7,-1],[4,1],[9,6],[4,5],[3,6],[1,6],[-8,15],[8,12],[10,7],[12,3],[13,8]],[[92278,78380],[7,6],[7,9],[6,5],[5,-12],[-30,-42],[-4,-9],[-4,-22],[-5,-9],[-15,-16],[-3,-5],[-1,-7],[-2,-5],[-2,-3],[-3,-4],[-7,-20],[-6,-7],[-4,-7],[-9,-11],[-9,-3],[-3,-12],[-6,-11],[-10,-15],[-14,-15],[-10,8],[-4,2],[-4,4],[-4,5],[-3,5],[0,5],[1,6],[0,7],[-3,7],[12,8],[25,-3],[10,9],[14,33],[7,14],[28,38],[30,70],[19,25],[0,-4],[-3,-4],[-3,-5],[-1,-7],[0,-8],[1,0]],[[92361,78531],[5,-7],[4,-14],[1,-14],[-4,-15],[-12,1],[-14,11],[-5,13],[0,15],[4,10],[6,2],[15,-2]],[[92505,78777],[8,5],[3,-8],[1,-8],[1,-11],[0,-11],[-2,-13],[-4,-9],[-5,-5],[-5,0],[-5,0],[-4,-8],[-3,7],[0,12],[1,11],[0,10],[3,11],[6,9],[5,8]],[[92579,78942],[1,-8],[2,-6],[-1,-7],[-5,-6],[-7,5],[-5,0],[-9,7],[-5,10],[-7,14],[2,17],[14,2],[7,-7],[5,-5],[8,-16]],[[92836,79439],[5,-12],[-3,-14],[-6,-13],[-6,-9],[-25,-25],[-7,-12],[-1,-7],[1,-8],[-1,-6],[-5,-3],[-9,0],[-3,1],[-5,3],[-2,0],[1,13],[5,11],[20,16],[4,6],[6,13],[1,7],[-1,7],[0,6],[4,2],[1,14],[8,9],[10,4],[8,-3]],[[92773,79468],[4,-4],[3,-4],[1,-5],[-4,-6],[-5,-3],[-6,-1],[-6,0],[-4,2],[-2,0],[-3,8],[-1,7],[0,8],[3,8],[4,-1],[16,-9]],[[92933,79581],[6,-5],[4,-11],[1,-11],[-6,-5],[-8,-3],[-6,-7],[-5,-3],[-7,4],[-4,10],[-5,22],[-4,9],[1,5],[2,3],[2,1],[10,-1],[12,-6],[7,-2]],[[92901,79972],[9,-4],[3,-16],[-5,-12],[-3,-11],[-4,-9],[-10,2],[-5,10],[-4,9],[-1,8],[2,7],[4,8],[7,7],[7,1]],[[93367,80458],[3,-8],[6,-9],[1,-7],[-1,-5],[-3,-15],[0,-7],[2,-13],[0,-6],[-5,-5],[-4,-8],[-3,-2],[-2,-1],[-3,1],[-2,0],[-5,-2],[-3,-3],[-2,-4],[-2,-7],[-1,-8],[0,-6],[1,-5],[0,-8],[-1,-7],[-3,-5],[-5,-3],[-3,-5],[-3,-6],[-13,-35],[-12,-26],[-2,-6],[-2,-6],[-4,-3],[-9,-3],[-4,-5],[-3,-5],[-8,-22],[-3,-2],[-41,-4],[-17,-8],[-17,-17],[-6,-11],[-16,-50],[-3,-14],[-4,-9],[-9,2],[4,14],[1,9],[-2,5],[-7,5],[-16,6],[-8,-1],[-6,-5],[-4,0],[-3,7],[-1,8],[0,9],[2,8],[2,7],[3,6],[3,6],[1,8],[0,7],[-3,16],[1,5],[1,8],[-3,7],[-13,16],[-1,4],[0,8],[4,11],[8,7],[10,1],[15,-11],[7,8],[11,24],[7,11],[8,6],[10,3],[18,0],[2,1],[2,2],[2,8],[2,2],[5,0],[8,-6],[4,-2],[8,3],[8,8],[8,12],[14,27],[2,6],[1,6],[2,13],[1,5],[8,26],[10,22],[2,8],[3,27],[2,11],[3,8],[24,33],[9,5],[9,10],[9,5],[8,-8],[4,-11],[2,-12],[0,-28],[0,-6],[-1,-6],[0,-6],[1,-8]],[[93460,80598],[7,-10],[2,-11],[2,-15],[0,-10],[1,-9],[2,-9],[-3,-10],[-5,-10],[-3,-8],[-4,-10],[-7,-18],[-7,-10],[0,-14],[-6,0],[-8,3],[-9,1],[-5,-1],[-9,-1],[-4,10],[-6,6],[-8,6],[-8,10],[-3,15],[0,14],[4,14],[5,12],[6,4],[9,3],[7,8],[14,22],[8,7],[10,8],[11,4],[7,-1]],[[93211,80559],[-11,3],[-9,9],[-6,14],[-6,19],[7,22],[20,5],[24,-10],[12,-25],[-1,-35],[-7,-3],[-13,2],[-10,-1]],[[89596,82628],[5,5],[6,2],[4,-2],[-4,-4],[-13,-3],[2,2]],[[88283,82720],[3,20],[7,6],[9,2],[8,3],[2,-12],[0,-9],[-1,-6],[-5,-5],[-11,-5],[-5,-6],[-3,-22],[-5,-9],[-5,-5],[-19,-7],[-5,2],[1,11],[0,3],[1,1],[5,-1],[3,2],[15,22],[3,7],[2,8]],[[88228,82787],[1,-9],[1,-11],[1,-9],[4,-7],[-1,-5],[-1,-3],[1,-4],[1,-4],[-3,-4],[-4,-5],[-3,-7],[-1,-9],[1,-7],[6,-10],[2,-7],[-8,5],[-7,-5],[-6,-2],[-5,10],[6,8],[1,13],[-3,28],[-1,3],[-2,2],[-1,3],[0,4],[1,3],[6,9],[6,13],[4,4],[4,3]],[[96682,82773],[3,-4],[9,-9],[2,-5],[0,-8],[-3,-1],[-4,2],[-11,10],[-16,20],[-14,23],[-32,32],[-4,2],[-10,2],[-5,2],[-5,3],[-3,4],[-7,12],[-55,56],[-14,21],[-3,27],[9,1],[13,-7],[11,-10],[2,-10],[-1,-9],[4,-5],[6,-4],[12,-2],[5,-2],[9,-9],[12,-4],[2,-4],[3,-16],[4,-10],[5,-6],[5,-4],[6,-1],[6,-4],[8,-16],[5,-4],[5,-1],[4,-4],[3,-6],[4,-9],[8,-12],[16,-19],[6,-12]],[[88102,83112],[4,-8],[-1,-7],[-19,-41],[-5,-6],[-7,-3],[-1,-5],[2,-12],[3,-12],[1,-4],[-4,-12],[-7,-6],[-8,-2],[-21,2],[-4,3],[0,3],[0,5],[0,5],[-2,4],[-7,2],[-15,-13],[-5,0],[-3,3],[-3,-3],[-3,-4],[-2,-2],[-7,3],[-3,-1],[-3,-7],[2,-4],[4,-12],[-6,-5],[-6,4],[-7,7],[-6,3],[0,3],[4,5],[1,6],[0,6],[1,7],[3,7],[2,2],[8,4],[5,4],[10,16],[5,5],[4,3],[9,4],[34,34],[18,11],[12,-12],[4,13],[6,8],[6,3],[7,-4]],[[88345,83076],[26,3],[12,-3],[8,-13],[-6,-9],[-16,-3],[-5,-6],[-18,-39],[-4,-2],[-4,0],[-3,-2],[-2,-17],[-2,-5],[-1,-5],[-1,-3],[1,-14],[3,-12],[1,-11],[-5,-13],[-30,-23],[-5,-12],[-1,-8],[-4,-6],[-15,-18],[-6,-11],[-2,-1],[-5,-3],[-1,-2],[0,-6],[0,-3],[-1,-3],[-5,-7],[-3,0],[-8,11],[-7,7],[-2,4],[-17,53],[-3,5],[-3,4],[-3,5],[-2,6],[-3,17],[-4,15],[-5,14],[-5,10],[-15,-8],[-10,-9],[-28,-32],[-9,-8],[-10,-3],[5,12],[2,6],[1,10],[1,21],[1,7],[4,15],[6,15],[7,12],[10,15],[5,16],[4,6],[5,3],[10,3],[5,6],[4,11],[4,15],[2,16],[-2,13],[7,10],[8,25],[6,10],[11,3],[9,-5],[18,-14],[0,-10],[5,-3],[7,0],[6,-2],[5,-3],[19,-3],[7,3],[7,6],[7,3],[6,-4],[3,-7],[1,-9],[2,-8],[4,-4],[-6,-16],[-19,-27],[-4,-14],[39,31],[6,2]],[[96295,82897],[0,-13],[-2,-10],[-1,-9],[3,-13],[-4,4],[-7,14],[-4,3],[-5,1],[-4,5],[-7,14],[-14,18],[-5,13],[4,14],[-7,4],[-8,1],[-13,-1],[-7,1],[-5,3],[-16,27],[-2,5],[-1,6],[-2,3],[-7,6],[-6,8],[-8,3],[-3,5],[-1,5],[-2,11],[-1,6],[-5,10],[-22,36],[-1,6],[2,6],[1,13],[-2,11],[-16,34],[-12,9],[-3,7],[6,10],[-8,5],[-18,16],[-27,9],[-10,6],[-5,8],[20,3],[11,4],[9,8],[3,5],[4,12],[2,5],[5,4],[4,-1],[62,-26],[17,7],[4,0],[1,-6],[2,-5],[3,-3],[3,-3],[-13,-20],[-4,-11],[4,-21],[0,-24],[1,-7],[2,-6],[4,-12],[4,-6],[7,-10],[4,-6],[9,-24],[3,-5],[4,-4],[3,-5],[2,-15],[3,-4],[3,-4],[9,-19],[8,-10],[17,-14],[9,-4],[4,-5],[1,-9],[17,-27],[-1,-6],[-2,-6],[-1,-7],[1,-9],[5,-15],[2,-9]],[[91867,85486],[15,-11],[1,-11],[-9,-6],[-8,-4],[-3,-11],[-16,-16],[-12,-13],[-15,-4],[-21,0],[-2,3],[4,13],[6,7],[11,14],[14,11],[8,4],[10,5],[6,7],[1,10],[3,10],[3,-1],[4,-7]],[[95751,85397],[-4,-13],[-1,-9],[-2,-9],[1,-6],[-1,-6],[-14,-23],[-18,-2],[-29,3],[-15,-2],[-16,-11],[-13,-11],[-4,-11],[-9,-6],[-7,8],[-3,1],[-3,1],[-5,5],[-3,1],[-3,-1],[-3,-1],[-7,-12],[-4,-13],[-9,-9],[-13,-10],[-15,-11],[-9,-13],[-11,-4],[-9,1],[-10,-7],[-16,-28],[-33,-28],[-24,-22],[-9,-22],[-10,-14],[-7,-32],[-5,10],[-7,9],[-1,17],[-8,18],[0,9],[8,7],[31,6],[15,21],[8,26],[5,23],[5,15],[14,20],[6,16],[9,20],[-2,15],[-1,22],[4,12],[11,19],[11,22],[14,19],[-5,9],[-4,0],[-9,-3],[-3,1],[-9,6],[-4,1],[-9,-6],[-7,-7],[-10,-2],[6,8],[9,8],[15,7],[45,-2],[88,51],[10,10],[6,12],[15,19],[17,15],[29,18],[6,-3],[-1,-25],[1,-5],[2,-1],[6,2],[2,-1],[0,-3],[0,-7],[0,-3],[3,-30],[3,-7],[10,-9],[4,-4],[5,-17],[8,-15],[-7,-10],[-1,-17]],[[93196,85605],[7,5],[9,2],[9,-3],[0,-10],[-8,1],[-10,-1],[-7,1],[0,5]],[[58275,85999],[2,-2],[0,-3],[-1,-1],[-1,-3],[-1,-2],[-15,12],[-2,3],[-3,3],[-5,3],[-11,9],[3,1],[12,-4],[21,-14],[1,-2]],[[57745,86009],[2,-4],[0,-5],[-5,-1],[-15,-7],[-4,4],[-1,6],[2,6],[0,7],[3,6],[6,-3],[8,-7],[4,-2]],[[57506,86028],[0,-3],[1,-7],[-2,-5],[-3,-2],[-4,0],[-3,2],[-2,5],[-3,10],[0,2],[-1,8],[-5,19],[2,4],[3,0],[4,-6],[3,-7],[3,-6],[3,-5],[2,-6],[2,-3]],[[57975,86177],[1,-1],[2,-3],[-2,-2],[-3,-3],[-2,-4],[0,-5],[-1,-2],[-6,2],[-4,0],[-3,1],[-6,3],[-16,13],[-5,6],[-2,8],[0,6],[1,4],[0,5],[-1,3],[1,1],[3,-2],[3,-1],[2,3],[1,0],[2,-5],[2,-1],[3,1],[2,-2],[3,-4],[17,-18],[8,-3]],[[57921,86203],[1,-3],[1,-1],[0,-4],[-2,-7],[-4,-1],[-6,6],[-3,5],[-1,3],[-2,2],[-2,1],[-3,2],[-5,10],[1,3],[7,1],[3,-1],[6,-2],[5,-5],[3,-4],[0,-3],[1,-2]],[[59984,88611],[6,-6],[18,-13],[4,-7],[-3,-11],[-8,-5],[-9,-1],[-6,5],[-15,20],[-8,4],[-3,4],[-1,9],[8,6],[10,0],[7,-5]],[[59962,88982],[0,-11],[-2,-5],[-3,-3],[-3,-5],[-4,-4],[-6,-3],[-10,-9],[-6,-1],[-4,7],[0,7],[-1,9],[-1,8],[1,7],[-4,1],[-6,4],[-10,0],[-14,2],[-11,8],[-10,13],[-6,13],[0,15],[5,14],[10,3],[12,3],[13,0],[4,8],[6,2],[13,1],[15,-5],[8,-6],[4,-18],[9,-26],[1,-2],[-3,-7],[-3,2],[-7,13],[0,3],[-3,8],[-3,3],[-1,-8],[-2,-12],[-1,-4],[0,-3],[6,-5],[10,-5],[5,-4],[2,-8]],[[3032,89447],[6,7],[6,0],[13,-7],[-4,-12],[-5,-13],[-7,-10],[-7,-1],[-5,4],[-1,10],[2,12],[2,10]],[[61845,89995],[6,-11],[1,-13],[3,-11],[-3,-9],[-7,-1],[-17,8],[-28,17],[-11,13],[-4,13],[7,13],[14,3],[9,-2],[13,-3],[13,-9],[4,-8]],[[58996,90226],[6,-7],[-1,-8],[-3,-4],[-8,7],[-3,1],[-3,2],[-2,5],[1,7],[4,1],[5,-1],[4,-3]],[[66455,91438],[0,-11],[0,-4],[1,-4],[-4,5],[-4,4],[-5,2],[-7,3],[-3,3],[-6,9],[-4,4],[-12,19],[-6,8],[-77,50],[-6,7],[7,3],[8,-2],[93,-51],[14,-15],[-2,-2],[-2,-4],[-2,-2],[4,-6],[11,-9],[2,-7]],[[59452,91566],[26,7],[26,1],[53,-33],[-7,-6],[-99,7],[-11,5],[-3,4],[2,7],[4,4],[9,4]],[[63978,91422],[-3,-24],[-18,-32],[-22,-27],[-15,-9],[2,7],[1,3],[2,2],[-3,14],[5,14],[14,25],[8,23],[1,6],[-4,2],[-8,-3],[-13,-7],[-30,-29],[-11,-4],[-8,-6],[-23,-29],[-5,-10],[11,2],[5,-2],[-1,-8],[-5,-7],[-18,-11],[-30,-45],[-9,-6],[-12,-3],[-12,-5],[-17,-18],[-32,-14],[-25,2],[-8,-2],[2,-5],[-17,-14],[-126,-30],[-5,2],[-3,3],[-2,3],[-3,4],[-4,3],[-4,2],[-4,-2],[-2,-7],[-4,-5],[-26,-2],[-8,8],[-15,19],[-26,22],[-8,2],[-3,3],[-7,11],[-3,3],[-3,1],[-11,11],[9,8],[3,4],[-4,0],[-7,6],[-2,2],[-4,-2],[-7,-8],[-3,0],[-4,8],[-1,8],[2,9],[1,11],[3,12],[5,6],[3,5],[-5,8],[-2,0],[-2,-2],[-3,-1],[-2,3],[-2,3],[1,2],[0,2],[1,3],[1,4],[10,15],[-10,3],[-1,2],[0,7],[0,2],[1,3],[5,14],[7,13],[2,8],[-1,4],[0,19],[0,4],[-1,11],[2,18],[5,17],[4,12],[9,14],[18,23],[8,14],[5,6],[17,10],[16,18],[67,44],[27,8],[50,6],[52,-6],[117,-65],[92,-58],[39,-23],[16,-19],[15,-22],[13,-24]],[[97067,91835],[1,-9],[1,-4],[0,-5],[-3,-8],[-4,-4],[-3,-3],[-2,-5],[1,-8],[0,-4],[-30,4],[-5,-2],[-2,-5],[1,-5],[6,-5],[-7,-13],[1,-10],[5,-9],[3,-14],[-3,-11],[-6,-13],[-12,-19],[-13,-10],[-14,-2],[-28,4],[-45,-6],[-98,37],[-97,38],[-11,11],[-10,15],[-11,15],[-25,7],[-24,13],[-25,6],[-11,14],[9,16],[10,13],[47,45],[57,31],[8,1],[3,1],[5,6],[3,1],[104,-23],[13,-9],[23,-4],[17,-14],[111,-19],[13,-7],[27,-7],[14,-7],[6,-14]],[[66816,91817],[2,-2],[0,-4],[-2,-4],[-3,-2],[-4,-1],[-5,-2],[-8,-7],[-5,-9],[-2,-9],[3,-9],[6,-8],[-28,5],[-6,-5],[2,-4],[-29,-15],[-15,-3],[-30,18],[-17,4],[-8,-1],[-8,-5],[-15,-14],[1,-3],[3,-9],[-6,1],[-4,5],[-2,5],[-3,5],[-8,2],[-23,-2],[-57,12],[4,9],[-3,7],[-6,5],[-3,5],[3,12],[7,2],[9,0],[5,3],[0,10],[-5,8],[-35,27],[-13,15],[-9,4],[-9,-1],[-17,-6],[-10,3],[-9,6],[-8,7],[-8,5],[-27,1],[-40,12],[4,-6],[7,-7],[8,-5],[13,-5],[22,-17],[-6,-8],[-9,-2],[-17,2],[1,8],[-5,0],[-7,3],[-6,5],[-1,4],[-3,7],[-12,13],[-56,44],[-35,45],[9,21],[-4,3],[-8,3],[-3,6],[4,0],[13,4],[-2,3],[-2,3],[-3,1],[-2,1],[1,3],[2,10],[1,3],[-5,2],[-5,-1],[-4,-3],[-6,-2],[-1,1],[-1,6],[-1,2],[-4,2],[-12,1],[3,7],[8,7],[3,7],[-6,2],[-9,0],[-7,4],[-3,12],[5,6],[10,0],[99,-32],[-2,6],[-6,10],[-1,6],[-4,3],[-22,12],[-7,9],[-3,3],[-38,19],[-8,0],[7,10],[11,-1],[22,-9],[-2,8],[5,5],[7,4],[13,4],[2,1],[3,3],[4,8],[2,6],[-2,1],[-2,1],[-2,4],[-1,5],[-1,0],[-1,1],[3,6],[2,2],[8,2],[27,0],[8,3],[22,18],[12,6],[5,-8],[1,-7],[4,-6],[5,-4],[12,-4],[54,-35],[10,-11],[24,-39],[8,-6],[12,-3],[6,-4],[3,-7],[-2,-22],[0,-5],[5,-5],[24,1],[18,-14],[7,-2],[6,0],[4,-2],[2,-5],[1,-11],[2,-7],[4,-3],[11,0],[25,-17],[8,0],[15,3],[7,-3],[6,-12],[3,-3],[8,-5],[63,-56],[1,-8],[24,4],[4,-5],[13,-20],[-4,-6],[-2,-8],[0,-10],[2,-9],[3,-4],[9,-4],[3,-4],[1,-3],[2,-6],[1,-5],[3,-2]],[[65865,92255],[21,-10],[8,-9],[-4,-9],[-5,0],[-24,14],[-13,3],[-5,3],[6,-9],[17,-8],[5,-11],[-21,3],[-37,18],[-9,15],[5,4],[2,1],[3,0],[-5,7],[-15,4],[-5,13],[30,-14],[17,-4],[4,-3],[8,-8],[5,-2],[12,2]],[[95105,92328],[7,0],[8,-5],[14,-11],[-10,0],[-28,-8],[-31,8],[0,4],[7,1],[3,-1],[2,0],[3,3],[2,0],[2,-3],[11,1],[5,2],[2,2],[2,6],[1,1]],[[94905,92393],[2,-6],[6,-12],[1,-6],[-8,1],[-7,3],[-19,18],[-5,2],[-9,0],[-4,2],[-8,5],[-4,1],[4,3],[3,5],[0,6],[-1,7],[13,1],[4,-1],[3,-3],[5,-7],[3,-3],[7,-1],[6,0],[7,-2],[5,-8],[-4,-5]],[[94644,92421],[6,-7],[6,-13],[-23,-1],[-24,-6],[-25,7],[1,17],[10,11],[2,20],[-14,3],[-6,-8],[-8,-3],[-12,25],[5,8],[8,4],[17,1],[7,-3],[37,-10],[5,-11],[1,-5],[3,-6],[4,-23]],[[64786,92645],[-7,-11],[-1,-3],[1,-4],[3,-11],[-4,-9],[-11,-8],[-4,-7],[0,-4],[3,-7],[0,-3],[-2,-5],[-3,-2],[-2,-2],[-4,-1],[-6,0],[-5,3],[-5,-2],[-4,-9],[-2,-23],[8,-10],[11,-6],[8,-8],[-5,-10],[-16,-6],[-15,1],[1,13],[1,8],[-12,15],[0,10],[-5,7],[-6,4],[-37,17],[1,8],[-2,5],[-6,9],[0,3],[0,13],[-1,6],[-4,6],[-20,7],[-4,4],[-3,10],[-5,6],[-10,9],[-13,6],[-13,1],[-17,-8],[-27,5],[-27,17],[-8,8],[-4,12],[1,15],[4,6],[7,4],[32,8],[5,4],[6,4],[14,-2],[6,2],[7,5],[6,2],[32,-5],[7,-4],[9,-11],[5,-3],[5,2],[-10,11],[-4,7],[0,8],[6,6],[9,-1],[39,-16],[7,-7],[4,-6],[6,-14],[4,-8],[5,-4],[5,-4],[5,-5],[2,-9],[-4,-2],[-25,18],[-3,6],[-7,14],[-5,6],[-16,11],[-9,4],[-7,-3],[8,-2],[20,-14],[8,-8],[-6,-5],[-7,-1],[-14,2],[0,-4],[79,-48],[14,-3],[12,6],[-5,4],[-5,1],[-11,-1],[0,4],[5,2],[8,5],[4,1],[5,-1],[9,-5],[5,-2],[-3,-9],[-1,-9],[3,-6],[7,0]],[[88309,92848],[2,-4],[12,-25],[-7,-9],[-48,-38],[-14,-6],[-7,-1],[-29,11],[-18,22],[-11,6],[-25,-2],[-13,8],[-8,3],[-8,-1],[-6,-5],[9,-6],[21,-7],[10,-7],[-5,-4],[-2,0],[-3,0],[4,-8],[-13,-5],[-83,50],[-15,3],[9,10],[29,8],[25,17],[71,6],[30,-5],[8,1],[17,8],[10,2],[41,-7],[4,-3],[10,-11],[3,-1]],[[71743,93436],[25,-24],[8,-12],[-11,-11],[-25,-11],[-24,-19],[-29,-14],[-26,-5],[-12,-9],[-35,-35],[-12,-6],[-51,-12],[-107,3],[-21,-7],[-58,9],[-13,8],[-5,15],[1,2],[8,14],[8,8],[88,52],[5,5],[3,7],[5,22],[10,16],[12,9],[25,10],[34,30],[12,4],[51,-4],[64,-23],[29,-2],[28,-10],[13,-10]],[[85786,93497],[10,-2],[12,-7],[9,-11],[8,-16],[-28,-1],[-8,-6],[-7,-14],[-4,-1],[-6,0],[-4,-3],[1,-1],[3,-3],[-36,-10],[-12,2],[-12,7],[-25,6],[-26,0],[-12,4],[-63,44],[-2,0],[8,5],[72,10],[72,9],[50,-12]],[[85643,93590],[1,10],[27,24],[28,5],[60,4],[30,15],[42,13],[62,-3],[50,-36],[5,-32],[-23,-23],[-35,-7],[-61,6],[-93,12],[-93,12]],[[72100,93564],[3,-16],[-10,-9],[-39,-13],[-110,24],[-25,-2],[-8,3],[-25,19],[-23,7],[-11,8],[-4,16],[-1,9],[-4,2],[-3,-2],[-3,-3],[-1,-6],[0,-9],[-1,-5],[-3,5],[-4,16],[2,12],[6,9],[8,8],[6,2],[66,60],[67,59],[9,3],[9,-2],[8,-6],[24,-24],[13,-7],[4,-5],[2,-5],[1,-4],[0,-4],[1,-6],[1,-4],[12,-14],[27,-23],[5,-10],[-5,1],[-5,2],[-4,1],[-5,-4],[5,-6],[3,-9],[2,-10],[-2,-11],[3,-4],[2,-4],[1,-6],[1,-7],[0,-2],[-2,-3],[-1,-3],[0,-4],[1,-4],[2,-4],[3,-2],[2,-4]],[[70756,93765],[34,-8],[32,-17],[0,-3],[-25,12],[-22,4],[-7,3],[-9,0],[-9,-8],[-5,-14],[3,-17],[-14,-31],[-2,-8],[2,-14],[5,-9],[13,-12],[-3,-5],[-3,-13],[-2,-4],[-7,-3],[-20,9],[2,3],[2,9],[-37,3],[-34,17],[-2,3],[-1,5],[-2,3],[-25,6],[-9,5],[-23,20],[-6,7],[-1,10],[18,36],[7,11],[8,4],[73,12],[69,-16]],[[83410,93761],[-5,-8],[-10,-12],[-4,-9],[4,-6],[1,-1],[-118,0],[-16,-4],[-7,0],[-5,8],[17,16],[-7,12],[-22,9],[-7,11],[10,2],[34,18],[64,4],[62,-29],[9,-11]],[[71303,93812],[8,-7],[3,-5],[1,-7],[-2,-6],[-5,-2],[-5,0],[-17,-6],[-87,10],[-41,20],[-8,9],[-3,7],[4,4],[11,1],[95,-16],[36,4],[10,-6]],[[69907,93836],[2,-7],[1,-7],[0,-6],[8,-35],[12,-55],[-6,-4],[-31,33],[-34,35],[-33,17],[-10,-1],[-6,-6],[-5,-9],[-6,-5],[-86,-12],[-85,-12],[-56,-30],[-57,-8],[-15,5],[-11,14],[-6,12],[-4,4],[-5,2],[-7,-2],[-19,-15],[-4,-7],[4,-4],[13,-4],[6,-5],[5,-7],[0,-5],[-25,9],[-8,0],[-14,-5],[-6,0],[-6,3],[-4,5],[1,12],[4,17],[2,8],[3,8],[6,10],[25,31],[4,8],[4,11],[4,13],[1,12],[-3,13],[-10,18],[-3,12],[-2,8],[-10,19],[-3,14],[7,5],[135,54],[11,-5],[4,-6],[11,0],[24,12],[83,10],[78,-31],[11,-13],[-8,-4],[-25,8],[-11,-2],[0,-4],[4,-8],[4,-11],[-1,-9],[-3,-7],[-5,-6],[-5,-8],[-2,-7],[1,-8],[1,-7],[2,-4],[-8,-9],[-19,-6],[-5,-14],[6,1],[17,8],[6,0],[17,-4],[18,1],[6,-1],[4,-3],[8,-8],[4,-2],[-4,16],[6,10],[9,7],[20,7],[5,5],[2,10],[3,5],[6,-2],[41,-44],[5,-8],[2,-6],[10,-14]],[[71321,93968],[-1,-12],[-9,3],[-19,17],[-25,13],[-80,19],[-44,-3],[-13,8],[25,21],[25,-4],[48,-22],[26,-3],[60,-25],[7,-12]],[[71089,94011],[-9,-4],[-5,-4],[-2,-5],[1,-5],[7,-7],[2,-6],[-27,-10],[-85,-2],[3,2],[5,4],[2,5],[-1,5],[1,3],[3,9],[-5,-2],[-15,-12],[-20,-9],[-6,-5],[-5,-9],[1,-6],[2,-4],[0,-6],[-3,-7],[-6,-2],[-5,3],[-5,6],[1,6],[0,2],[1,1],[1,3],[6,13],[7,11],[17,17],[55,33],[115,15],[12,-11],[-10,-9],[-33,-13]],[[89853,93891],[12,-25],[6,-16],[7,-12],[-10,-14],[-34,-11],[-64,-7],[-116,26],[-61,-4],[-54,13],[-35,3],[-105,17],[-91,18],[-56,18],[-73,24],[-72,23],[-79,-3],[-60,-13],[-36,-21],[-54,-12],[-41,7],[-8,18],[-6,29],[39,31],[48,-7],[43,-4],[72,20],[37,45],[9,11],[9,14],[6,17],[5,12],[17,28],[5,10],[8,22],[8,15],[9,13],[10,11],[53,36],[11,1],[-1,-2],[2,-1],[3,-1],[7,-4],[45,-3],[63,25],[125,6],[64,-30],[57,-11],[28,-13],[84,-68],[12,-4],[5,-2],[18,-20],[6,-4],[34,-10],[70,-59],[9,-13],[13,-24],[14,-22],[-19,-18],[-7,-3],[2,-7],[1,-7],[0,-7],[1,-7],[1,-2],[2,0],[1,-2],[1,-6],[0,-4],[0,-3],[0,-3],[0,-4]],[[84606,94244],[14,-4],[6,-4],[1,-6],[-9,-12],[-32,-18],[-2,0],[-5,6],[-7,3],[-7,-1],[-6,-4],[-7,-1],[-6,4],[-5,6],[-6,2],[-5,1],[-4,2],[-2,5],[1,9],[5,5],[13,0],[5,7],[-4,-1],[-4,1],[-3,2],[-4,2],[16,10],[55,6],[-25,-9],[-8,-7],[35,-4]],[[73431,94305],[-7,-4],[6,-9],[19,-16],[-11,-8],[-13,-1],[-29,7],[-14,11],[-74,5],[-4,3],[-3,4],[0,8],[3,2],[19,2],[4,4],[10,1],[39,-9],[25,3],[37,14],[8,0],[3,-5],[-2,-7],[-5,-4],[-11,-1]],[[73197,94365],[8,-1],[8,-3],[8,-5],[6,-9],[-2,-6],[-8,-4],[-16,-4],[2,9],[-8,2],[-30,-6],[2,-8],[8,-7],[9,-2],[-9,-6],[-11,0],[-87,30],[-70,-4],[0,5],[-4,3],[13,15],[16,7],[39,4],[34,10],[92,-20]],[[72935,94390],[48,-36],[-8,-10],[-13,-10],[-13,-8],[-7,1],[-12,10],[-55,4],[-5,3],[-4,10],[-1,9],[2,6],[3,4],[4,4],[14,7],[15,5],[32,1]],[[87849,94268],[3,-15],[-6,-12],[-10,-7],[-11,-4],[-2,-2],[-1,-3],[-2,-3],[-2,-1],[-4,1],[-15,11],[-4,6],[-1,7],[-6,11],[-85,61],[-8,9],[-5,11],[-3,13],[-4,8],[-30,24],[-11,2],[-11,0],[-10,4],[-8,14],[-5,29],[-3,6],[-8,9],[9,0],[4,-1],[15,-9],[38,-4],[43,-39],[34,-18],[13,-4],[12,-10],[15,-7],[4,-4],[25,-30],[28,-19],[13,-15],[-1,-19]],[[89193,94382],[-3,-6],[-3,-4],[-1,-4],[2,-8],[1,-4],[-2,-2],[-1,-2],[-1,-3],[1,-2],[2,-5],[1,-3],[-1,-7],[-1,-3],[-3,-2],[-2,-6],[-1,-5],[-1,-10],[-1,-5],[-3,-5],[-14,-11],[-13,-5],[-27,0],[-13,-4],[-14,-11],[-6,-1],[-14,0],[-13,-4],[-18,-14],[-5,-2],[-29,-5],[-31,18],[-36,52],[-9,26],[2,20],[1,30],[5,21],[8,18],[35,20],[75,7],[76,6],[24,-8],[22,-17],[13,-29],[1,-9],[1,-2],[-4,-10]],[[82249,94504],[5,-9],[2,-10],[-2,-9],[-7,-9],[-11,-5],[-13,0],[-13,3],[-11,6],[-6,1],[-2,1],[0,2],[-1,10],[3,11],[6,10],[6,6],[11,5],[12,1],[11,-5],[10,-9]],[[73575,94593],[10,-2],[7,-6],[0,-6],[-10,-6],[-13,-2],[-49,5],[-27,-5],[-10,-7],[63,-28],[-10,-8],[-81,18],[-12,8],[-3,11],[9,6],[48,18],[78,4]],[[81501,94557],[2,-6],[2,-11],[2,-6],[0,-7],[-5,-3],[-13,-4],[1,-18],[-11,-15],[-24,-16],[9,-7],[2,-5],[-16,-9],[-4,-7],[3,-4],[-17,-12],[-36,-8],[-17,-11],[-5,-6],[-9,-17],[-20,-27],[-19,-12],[-30,11],[-25,-3],[-28,12],[-87,10],[-12,7],[-22,21],[-29,18],[-99,26],[-27,19],[-7,12],[3,19],[11,9],[38,12],[16,-2],[29,-13],[12,-3],[14,3],[14,9],[10,15],[-4,8],[0,7],[3,6],[4,5],[1,5],[-6,10],[-2,8],[9,35],[29,8],[84,-11],[94,-22],[82,0],[74,-9],[15,-8],[11,-13]],[[73760,94634],[7,-3],[14,-12],[8,-2],[-3,-21],[-38,-7],[2,-20],[-53,0],[-18,7],[-11,8],[-11,13],[-5,15],[8,14],[16,8],[84,0]],[[73910,94622],[23,-6],[11,-6],[2,-13],[-17,-11],[-9,-4],[-5,5],[-5,8],[-11,4],[-12,0],[-8,-2],[2,-6],[3,-4],[3,-2],[4,0],[-5,-9],[-4,-4],[-17,-5],[-16,-10],[-15,-2],[-27,14],[-14,4],[5,7],[14,11],[2,3],[5,12],[11,24],[3,4],[7,2],[13,-1],[18,3],[14,-3],[25,-13]],[[72114,94650],[-7,-9],[-11,-10],[-7,-12],[3,-14],[-12,-5],[-17,3],[-66,39],[-12,12],[4,0],[11,-4],[11,-8],[11,-5],[10,6],[-2,11],[-12,7],[-24,5],[6,13],[12,5],[21,-2],[-1,-4],[-2,-3],[-2,-3],[-3,-2],[11,-6],[64,-8],[10,-5],[4,-1]],[[73673,94735],[-31,0],[-5,6],[5,6],[65,7],[17,7],[16,15],[8,0],[12,-7],[6,-2],[14,3],[7,-1],[6,-6],[-2,-13],[3,-10],[6,-8],[7,-5],[-8,-5],[-7,1],[-14,8],[-27,-13],[-6,3],[-6,8],[-10,6],[-17,4],[-39,-4]],[[74174,94881],[26,-24],[4,-9],[-4,-2],[-13,-20],[-6,-5],[-17,-4],[-13,0],[-6,3],[-19,14],[-36,2],[-7,-3],[-4,-9],[2,-5],[13,-9],[11,-4],[13,-8],[33,-7],[-7,-12],[-14,0],[-38,18],[-45,-6],[-8,1],[-14,6],[-7,2],[-29,-4],[-12,1],[-6,4],[-3,9],[-2,6],[-14,8],[-5,5],[6,6],[5,3],[5,-2],[7,-6],[7,-3],[53,-6],[15,4],[9,12],[-7,0],[-20,8],[8,11],[-4,9],[-5,8],[8,5],[32,-9],[-4,-10],[-2,-3],[28,3],[55,20],[31,2]],[[72815,94970],[3,-5],[1,-7],[0,-8],[0,-8],[-26,14],[-9,6],[7,10],[9,7],[9,1],[6,-10]],[[72844,95108],[3,-6],[8,-12],[4,-6],[-14,-1],[-47,8],[-10,-5],[1,-5],[0,-5],[2,-8],[1,-6],[-4,-5],[-2,-5],[3,-10],[1,-5],[-4,-2],[-3,-1],[-3,-2],[-3,-3],[-2,-6],[3,-6],[2,-7],[1,-8],[-2,-8],[2,-3],[-8,0],[-8,3],[-7,5],[-7,10],[-3,9],[0,8],[1,7],[-1,11],[-7,29],[-7,3],[-8,1],[-4,-4],[3,-14],[-15,0],[-8,4],[-5,9],[1,-10],[1,-3],[2,-3],[-10,-6],[-14,6],[-24,20],[6,12],[2,4],[-13,-1],[-7,2],[-5,7],[9,12],[52,42],[11,6],[12,1],[-6,-12],[-9,-12],[-2,-10],[11,-6],[-10,-9],[9,-1],[47,8],[7,5],[-5,10],[-7,8],[-7,5],[-7,2],[5,6],[12,3],[5,3],[0,8],[-4,3],[-7,1],[-4,4],[18,11],[58,6],[0,-5],[-1,-1],[-4,-2],[0,-5],[-6,-24],[1,-10],[9,-2],[-9,-8],[-33,12],[11,-15],[14,-2],[15,2],[13,-3],[4,-4],[2,-5],[1,-7],[3,-7]],[[91896,94983],[9,-1],[18,-6],[9,-6],[-13,-2],[-15,-8],[-13,-13],[-9,-17],[2,-4],[-4,-9],[-18,-12],[0,-6],[-1,-3],[-2,0],[-2,1],[-1,0],[-9,-7],[-2,-3],[2,-7],[6,-8],[5,-10],[-3,-15],[-10,-17],[-10,-7],[-113,-26],[-113,-27],[-6,-5],[-13,-16],[-3,-2],[-117,4],[-24,-9],[-96,9],[-96,9],[-96,9],[-89,50],[-14,13],[-15,4],[-7,5],[2,4],[-18,13],[-41,11],[-56,1],[-63,19],[-37,29],[-85,44],[-120,28],[-27,17],[-5,5],[-6,8],[-2,8],[10,7],[9,13],[5,3],[4,7],[2,15],[1,16],[-1,11],[-4,14],[0,6],[6,0],[7,-3],[7,-2],[7,3],[6,6],[-8,7],[-2,7],[4,6],[8,9],[7,5],[17,2],[8,5],[-9,8],[-7,9],[-2,13],[3,19],[10,18],[13,7],[14,-1],[49,-23],[2,-4],[4,-10],[2,-4],[22,-11],[-5,-7],[-7,-4],[-7,-2],[-6,0],[1,-6],[1,-2],[-13,-14],[-2,-6],[2,-9],[6,-4],[13,-4],[5,-4],[12,-16],[7,-5],[99,-18],[18,6],[30,2],[6,3],[-10,12],[-14,0],[-26,-8],[7,11],[10,9],[12,6],[22,2],[3,0],[0,-3],[-1,-2],[1,-2],[4,-3],[17,-2],[-4,10],[-9,7],[-16,8],[11,6],[87,1],[42,-14],[79,1],[79,0],[39,-21],[9,-2],[-7,-21],[-3,-3],[-5,-2],[-19,-16],[-3,-14],[9,-13],[23,-16],[-2,-7],[1,-3],[15,-4],[17,6],[9,0],[22,-4],[32,3],[13,9],[50,18],[93,-9],[93,-8],[93,-9],[12,-7],[6,-6],[5,-9],[0,-6],[-4,-5],[-6,-4],[-4,-3],[14,6],[15,-1],[42,-19],[40,-3],[-7,-6],[-13,-5],[-5,-5],[8,-4],[9,0],[28,13],[4,4],[3,5],[2,6],[-1,4],[1,4],[2,3],[10,4],[33,-2]],[[88048,95236],[-2,3],[0,3],[0,3],[0,1],[0,-1],[0,-2],[1,-1],[5,-8],[18,-6],[7,-6],[-7,0],[-8,2],[-8,5],[-6,7]],[[88094,95272],[-8,-6],[-37,-15],[-3,-4],[4,7],[8,5],[13,6],[3,2],[4,0],[13,5],[3,0]],[[87775,95198],[-9,-15],[2,-13],[8,-12],[10,-9],[-5,-9],[-9,-7],[-38,-21],[-110,-4],[0,11],[2,8],[1,8],[-2,8],[-1,8],[3,8],[5,7],[10,6],[4,8],[5,18],[13,24],[-1,18],[-10,30],[-4,17],[4,2],[3,4],[6,10],[-1,3],[-1,6],[-2,4],[4,2],[2,4],[4,9],[-1,4],[0,3],[0,4],[2,3],[1,1],[2,0],[10,9],[4,6],[1,5],[0,5],[0,4],[1,2],[1,3],[-1,15],[4,6],[4,-3],[-1,-10],[9,-13],[12,-12],[10,-15],[1,-21],[5,-3],[2,-8],[2,-9],[3,-4],[6,-3],[13,-14],[7,-3],[8,-1],[19,-8],[14,-10],[15,-5],[7,-8],[-4,-9],[-49,-44]],[[72807,95412],[33,-1],[9,-6],[-10,-10],[-128,20],[-23,12],[-24,2],[-11,8],[7,3],[7,1],[7,0],[2,-2],[0,-2],[14,0],[117,-25]],[[73132,95452],[5,-8],[-5,-7],[-18,-8],[-11,0],[-31,8],[-10,0],[-30,-8],[-15,0],[-6,4],[4,12],[-9,6],[-32,-6],[-49,8],[-40,-8],[-20,2],[-11,5],[-5,10],[43,-5],[14,5],[20,13],[7,2],[27,0],[10,-5],[76,-8],[77,-8],[9,-4]],[[88094,95272],[3,5],[2,5],[1,6],[-2,7],[-5,5],[-16,9],[-4,7],[23,22],[3,3],[4,8],[3,3],[4,1],[37,1],[23,-10],[48,0],[29,-17],[7,-1],[4,1],[3,2],[0,3],[-1,3],[-1,3],[-1,4],[-6,11],[-30,12],[-11,9],[-8,13],[-20,13],[-8,11],[-3,14],[-2,17],[0,1],[5,7],[77,36],[59,2],[29,9],[25,26],[-2,3],[-2,2],[-3,1],[-3,0],[-1,-1],[-18,-9],[-11,-9],[2,5],[4,3],[14,10],[6,2],[6,2],[14,16],[66,23],[-7,-4],[-4,-3],[-2,-5],[4,-8],[5,-5],[5,-5],[3,-19],[5,-6],[6,0],[6,2],[-2,6],[2,7],[4,6],[4,5],[-2,2],[-3,5],[-1,2],[9,22],[5,9],[6,6],[72,16],[72,16],[-12,-7],[-22,-4],[-8,-1],[6,-2],[11,-5],[2,-4],[-1,-4],[-1,-5],[0,-5],[4,-12],[6,-7],[32,-29],[123,-50],[20,-15],[47,-5],[9,-5],[15,-14],[8,-5],[-4,-7],[-5,0],[-6,3],[-6,0],[-2,-4],[1,-6],[-1,-4],[-2,-2],[-6,-2],[-2,-4],[2,-4],[5,-5],[21,-8],[3,-3],[10,-11],[5,-3],[54,-21],[30,18],[11,-3],[12,-6],[39,-9],[8,-6],[7,-10],[3,-11],[-22,-27],[-3,-3],[-1,-2],[-2,-12],[-1,-4],[-2,-6],[-1,-4],[2,-4],[4,-3],[6,-3],[56,-10],[25,5],[38,-9],[23,2],[12,6],[9,12],[-6,5],[-12,6],[-6,5],[4,5],[2,2],[3,1],[-9,9],[-31,19],[8,18],[3,24],[0,23],[-7,29],[2,9],[3,10],[2,11],[1,12],[0,10],[3,8],[4,9],[9,13],[10,7],[10,3],[54,3],[98,-30],[11,4],[-5,10],[-25,14],[-8,11],[-8,16],[-3,3],[-14,12],[-2,2],[0,3],[0,3],[0,2],[0,1],[-5,6],[-13,11],[-4,7],[16,-2],[63,-30],[30,-5],[58,-36],[65,-29],[78,-58],[12,-18],[5,-4],[16,-8],[107,-18],[36,-15],[60,5],[30,-5],[-7,16],[7,7],[56,14],[28,-4],[27,-13],[1,-2],[2,-3],[2,-2],[4,0],[9,7],[3,0],[24,-4],[68,-40],[65,-18],[51,-23],[27,0],[5,-2],[4,-5],[7,-13],[13,-12],[101,-21],[29,-15],[25,-25],[5,-9],[1,-5],[-2,-3],[-32,5],[-54,-12],[-29,-16],[-52,-16],[-14,-9],[-5,-6],[-4,-10],[-1,-3],[1,-3],[1,-9],[-1,-6],[-7,-11],[-2,-5],[3,-8],[6,-4],[54,-17],[14,-11],[-15,-9],[-33,1],[-14,-9],[2,-11],[-2,-15],[-4,-15],[-5,-9],[-7,-6],[-24,-8],[-22,-15],[-22,-25],[-11,-10],[-13,-4],[-49,0],[-43,-12],[-8,1],[-7,4],[-28,9],[-19,16],[-7,3],[-65,3],[-28,-12],[-16,3],[-29,14],[-48,9],[-9,11],[-4,-2],[-13,6],[-12,-1],[-13,5],[-4,3],[-3,6],[0,3],[0,4],[0,3],[-4,6],[-4,19],[-2,5],[-8,5],[-19,-2],[-9,5],[1,10],[-10,7],[-2,10],[-2,15],[-5,6],[-14,5],[-16,10],[-8,9],[-3,9],[2,6],[8,15],[1,10],[-1,7],[-3,4],[-3,3],[2,8],[5,7],[24,8],[1,3],[1,7],[1,3],[2,2],[24,21],[34,6],[46,25],[6,9],[2,17],[-11,36],[-27,10],[-53,-8],[-3,2],[-5,7],[-3,3],[-4,1],[-12,0],[-28,-8],[-50,4],[-13,-9],[10,0],[11,-3],[12,-6],[7,-11],[-6,-7],[-9,-2],[-89,3],[-14,-2],[6,-5],[28,-5],[14,-6],[7,-1],[-7,-4],[-48,-3],[7,-6],[10,-4],[17,-3],[2,-4],[-3,-8],[-11,-22],[-2,-6],[1,-5],[4,-5],[25,-27],[-7,-29],[-2,-14],[2,-12],[10,-18],[58,-48],[5,-9],[1,-8],[-1,-8],[0,-7],[4,-6],[27,-14],[12,-12],[8,-22],[-2,-4],[7,-11],[11,-5],[46,-10],[50,-4],[64,-22],[57,-13],[31,6],[15,-3],[15,-15],[11,-22],[-3,-6],[-8,-5],[-57,-17],[-128,-11],[-22,7],[-7,-2],[-15,-8],[-6,0],[-12,9],[-6,2],[-12,0],[-10,-3],[-8,-9],[-7,-16],[19,3],[6,-3],[-10,-9],[-46,-9],[-44,4],[-106,65],[0,6],[10,6],[20,6],[10,-1],[21,-6],[29,-18],[10,-1],[9,6],[-5,7],[-6,5],[-23,14],[-2,9],[-10,8],[-99,-3],[-47,-20],[-84,-27],[-72,-2],[-132,-24],[-24,1],[-55,-22],[-79,-7],[-17,20],[-3,7],[-3,12],[-3,6],[-7,4],[-16,1],[-6,7],[-2,6],[-2,13],[-2,5],[-7,4],[-29,-4],[-6,2],[-13,7],[-7,-1],[-36,-19],[-10,-9],[6,-5],[0,-10],[-2,-11],[2,-11],[10,-8],[13,2],[13,7],[9,11],[-3,-7],[-4,-4],[-8,-5],[-8,-10],[-5,-12],[-4,-14],[-7,-15],[-1,-2],[-1,-3],[-42,-47],[-30,-15],[-30,-6],[-31,3],[-56,33],[-90,19],[-91,18],[-14,9],[-14,3],[-47,30],[-7,8],[-6,13],[-5,15],[-4,14],[-1,8],[0,7],[-1,6],[-4,5],[-39,28],[-61,17],[-79,49],[-4,5],[-9,17],[-5,6],[-14,14],[-26,35],[-8,6],[3,14],[1,7],[0,7],[-4,5],[-10,12],[-4,7],[34,16],[16,0],[21,-27],[10,-4],[28,0],[34,8],[7,4],[6,8],[2,11],[-3,11],[-6,6],[-13,4],[-21,1],[-19,-5],[-13,-7],[-5,3],[-3,12],[4,3],[0,9],[1,8],[6,4],[36,0],[-4,8],[-7,12],[-4,4],[-11,9],[-6,7],[-1,7],[1,4],[1,2],[0,2],[1,2],[0,4],[-1,1],[1,2],[4,5],[6,3],[14,-1],[4,6],[-8,4],[-11,17],[-6,4],[-5,1],[-8,4],[-4,0]],[[76845,95636],[0,-11],[-4,-8],[-7,-7],[-4,-6],[-3,-11],[0,-6],[3,-6],[1,-10],[-8,1],[-4,3],[-4,6],[-5,10],[2,7],[3,7],[7,10],[-26,21],[-6,3],[-6,1],[-6,0],[-11,-5],[-5,-6],[3,-7],[14,-13],[5,-5],[-12,-4],[-29,10],[-9,-11],[9,0],[26,-9],[7,-7],[1,-13],[-6,-6],[-9,-2],[-7,-3],[7,-8],[3,-3],[4,-2],[-7,-6],[-12,4],[-34,26],[-80,-1],[-52,13],[-12,9],[2,4],[-100,2],[-12,10],[12,8],[3,5],[-3,5],[0,5],[1,5],[0,7],[3,5],[7,2],[34,-2],[6,-3],[13,-16],[-2,-4],[11,-5],[12,4],[31,27],[12,6],[12,1],[10,-5],[6,-8],[42,4],[13,-4],[1,-11],[-1,-9],[1,-6],[9,-3],[6,2],[5,6],[8,19],[13,14],[18,5],[92,-25],[8,0]],[[81469,95693],[-43,4],[-5,4],[10,17],[15,16],[16,7],[12,-12],[-10,-11],[-3,-5],[12,-6],[29,0],[10,-10],[-9,-6],[-34,2]],[[81099,95835],[4,3],[4,1],[9,0],[-2,4],[-5,0],[-3,1],[-3,3],[-2,4],[50,4],[35,-12],[10,4],[2,4],[2,12],[2,4],[4,2],[6,-1],[6,-3],[8,-10],[23,-4],[8,-4],[-3,-4],[-2,-4],[-7,-4],[5,-4],[13,-9],[-2,-1],[-4,-5],[-2,-2],[3,-2],[7,-3],[4,-2],[-5,-4],[-8,-2],[-5,-3],[11,-8],[30,3],[13,-2],[4,-5],[-3,-4],[-5,-3],[-4,-1],[-20,0],[-7,-4],[3,-4],[4,-6],[4,-7],[1,-7],[-5,-9],[-9,0],[-29,6],[-11,7],[-10,10],[-9,14],[-13,16],[-14,7],[-39,2],[-5,3],[-5,6],[-4,8],[-6,6],[-24,9]],[[76797,95888],[-22,-7],[-9,-9],[3,-13],[-7,-7],[-9,-5],[-17,-4],[-27,4],[-18,-5],[-26,5],[-4,-1],[-7,-6],[-4,-1],[-15,4],[2,6],[0,5],[0,5],[-2,4],[10,9],[11,7],[11,1],[21,-6],[32,15],[6,9],[4,2],[18,-4],[11,2],[13,-2],[23,4],[1,-3],[1,-9]],[[76569,95879],[5,2],[12,8],[6,3],[28,-4],[-4,-8],[-8,-6],[-30,-10],[-43,-2],[-14,3],[-11,10],[1,6],[-1,5],[-6,10],[19,6],[10,0],[9,-6],[12,-17],[6,-4],[9,4]],[[77076,95863],[2,-12],[11,-7],[20,-9],[-8,-10],[-11,-2],[-12,2],[-18,8],[-21,0],[-8,6],[16,9],[5,6],[-1,11],[-2,6],[-1,3],[-1,2],[-4,3],[-15,4],[-4,5],[10,2],[16,11],[10,3],[8,-3],[6,-10],[3,-15],[-1,-13]],[[91492,95915],[-16,-8],[-15,-8],[-4,-11],[-3,-14],[7,-14],[-2,-7],[-15,-4],[-43,1],[-73,1],[-53,-4],[-39,0],[-6,4],[2,7],[8,9],[26,9],[16,5],[29,10],[18,12],[22,10],[32,3],[116,18],[15,-1],[-3,-11],[-19,-7]],[[76812,96192],[5,-7],[6,-22],[7,-7],[-32,-37],[-10,-8],[-22,-5],[-11,-9],[-15,-7],[2,-5],[2,-3],[4,-2],[3,-2],[-8,-8],[-12,-5],[-12,-2],[-20,11],[-10,-2],[-21,-10],[-90,-20],[4,2],[8,8],[9,4],[8,8],[3,2],[33,6],[9,6],[-9,10],[-13,0],[-25,-10],[-73,-6],[-72,-7],[-7,9],[5,2],[9,9],[22,7],[16,11],[44,14],[35,-2],[83,25],[83,25],[39,28],[5,2],[18,-3]],[[79384,96236],[33,14],[18,1],[12,-11],[-9,-4],[-19,-2],[-14,-13],[-8,1],[-8,6],[-5,8]],[[74913,96236],[11,-21],[24,-20],[-19,-27],[-71,-14],[-53,3],[-32,29],[-14,13],[8,19],[14,17],[14,12],[11,6],[83,2],[14,-6],[10,-13]],[[79544,96261],[6,4],[7,1],[7,-2],[6,-3],[-7,-7],[-11,-3],[-10,1],[-6,9],[8,0]],[[79928,96265],[0,-9],[-4,-5],[-4,-2],[-3,-5],[1,-5],[3,-5],[1,-4],[-7,-2],[-20,1],[-78,-21],[-20,5],[-7,-1],[-6,-4],[-6,1],[1,4],[4,4],[5,3],[51,10],[9,6],[-12,6],[-26,-2],[-11,9],[21,26],[11,9],[13,-4],[8,-4],[16,-2],[14,-7],[8,-2],[8,0],[4,0],[5,3],[9,2],[8,0],[4,-5]],[[79683,96334],[6,-7],[-1,-5],[-4,-4],[-7,0],[-14,4],[-7,1],[-6,-5],[3,-4],[-15,-17],[-16,-2],[-33,6],[1,9],[10,10],[-1,10],[7,4],[15,-1],[7,3],[5,5],[14,8],[27,1],[13,-4],[14,1],[5,-5],[-5,-4],[-13,-4],[-5,0]],[[79917,96744],[0,-8],[-23,-25],[-13,-9],[-34,-8],[-6,5],[-2,7],[0,7],[3,3],[-12,7],[-52,-12],[-112,15],[-113,14],[15,14],[8,5],[118,9],[8,3],[2,-1],[0,-6],[77,0],[3,-1],[6,-3],[3,0],[4,2],[2,2],[1,3],[3,3],[5,4],[7,1],[63,-2],[12,-5],[10,-8],[-4,-4],[6,-3],[10,-3],[5,-6]],[[79591,96813],[-8,-8],[-86,-28],[-9,0],[-19,9],[-19,2],[-9,4],[6,8],[4,15],[4,5],[8,3],[58,-6],[17,3],[14,13],[-3,4],[11,20],[14,8],[38,0],[13,-5],[13,-8],[13,-2],[5,-5],[-4,-6],[-1,-13],[-4,-6],[-5,-2],[-8,-2],[-7,3],[-3,8],[-8,5],[-47,-15],[5,-4],[6,-1],[11,1]],[[79281,97008],[-2,-10],[-11,-14],[3,-5],[-6,-17],[-14,-10],[-27,-9],[-52,-39],[-65,-42],[-9,-2],[-8,2],[-21,11],[-6,1],[-14,-6],[-63,-3],[-15,-6],[-31,-3],[-14,-8],[-15,-3],[-28,-15],[-75,-16],[-110,-2],[-54,-5],[-29,7],[-15,-4],[-27,-18],[2,-1],[4,-5],[2,-1],[-7,-7],[-9,-6],[-49,-12],[2,7],[3,7],[2,7],[-1,7],[-4,4],[-17,4],[-102,-3],[-19,-10],[-22,-3],[-12,-7],[-6,-1],[-7,4],[0,10],[-7,2],[-101,-13],[-112,2],[-15,-6],[-40,-31],[-119,-41],[-28,-19],[-32,-4],[-92,-36],[-46,-6],[-59,8],[-26,-11],[-14,-2],[-11,10],[-29,0],[3,6],[9,4],[4,6],[-5,6],[-6,3],[-12,3],[2,8],[-18,8],[-5,4],[10,8],[23,6],[11,6],[15,18],[15,23],[-4,12],[6,9],[17,7],[-2,4],[44,39],[13,4],[46,37],[19,3],[4,3],[-2,9],[-7,7],[-6,8],[5,12],[-4,8],[9,6],[12,6],[6,6],[4,9],[7,7],[4,7],[-6,8],[4,6],[3,1],[3,1],[4,4],[2,3],[2,7],[2,3],[21,22],[3,7],[-2,7],[-4,5],[-3,7],[0,6],[1,6],[1,5],[-2,7],[21,17],[6,10],[1,2],[2,14],[2,4],[4,5],[5,3],[45,22],[10,2],[10,-1],[27,-12],[72,-7],[4,-2],[3,-4],[2,-4],[1,-2],[13,4],[18,1],[7,5],[-10,10],[-13,5],[-50,1],[-13,4],[-9,8],[2,14],[-2,6],[-6,4],[-6,9],[2,4],[-1,14],[8,11],[10,9],[8,11],[2,7],[0,6],[2,5],[4,5],[18,11],[4,6],[11,10],[12,2],[73,-17],[72,-17],[10,6],[-12,0],[-57,12],[-42,21],[-67,12],[6,11],[3,6],[3,19],[4,5],[5,3],[37,6],[-10,3],[-9,7],[2,4],[3,2],[3,1],[3,2],[2,3],[3,8],[3,3],[32,21],[17,4],[35,-3],[17,8],[-5,6],[0,6],[6,13],[-4,3],[-3,1],[-2,0],[1,5],[1,4],[1,4],[3,3],[-2,6],[9,7],[19,7],[48,4],[7,-4],[13,-22],[6,-7],[8,-4],[3,-3],[4,-6],[0,-5],[-2,-10],[1,-4],[4,-2],[21,2],[54,-11],[5,7],[-3,3],[-22,16],[-2,4],[-2,6],[-2,8],[-2,17],[-2,7],[2,6],[3,2],[2,0],[3,4],[0,3],[0,3],[1,4],[1,3],[4,5],[12,8],[18,7],[27,-1],[27,-8],[30,0],[40,-17],[40,-5],[5,-4],[4,-15],[5,-4],[54,-10],[4,-9],[-4,-6],[-8,-5],[-13,-6],[-26,0],[-11,-3],[-29,-29],[7,-4],[2,0],[-7,-10],[-18,-15],[-7,-11],[4,-2],[4,-3],[7,-7],[-7,-13],[-19,-14],[-8,-10],[2,-6],[3,-4],[2,-5],[0,-6],[-2,-5],[-15,-11],[0,-2],[0,-6],[-1,-2],[-1,-2],[-5,-3],[-5,-9],[-13,-10],[-30,-42],[-10,-19],[-2,-5],[0,-5],[-2,-5],[-3,-4],[10,6],[32,7],[37,29],[2,3],[2,8],[3,4],[14,9],[14,14],[12,18],[12,28],[3,6],[9,8],[11,3],[51,-3],[37,15],[8,8],[-2,4],[14,8],[32,-2],[15,8],[2,3],[0,3],[-2,3],[0,3],[1,4],[3,3],[12,6],[7,2],[7,-1],[6,-4],[-3,-5],[-6,-5],[-2,-5],[15,-1],[41,10],[-1,-5],[51,-9],[3,-2],[4,-5],[2,-6],[1,-7],[-2,-7],[-4,-6],[-7,-7],[19,-10],[8,-8],[-2,-13],[2,-4],[86,-9],[20,-13],[13,-25],[-6,-20],[6,-3],[6,0],[-7,-13],[-13,-2],[-13,1],[-11,-3],[74,-8],[3,-3],[3,-5],[1,-6],[-1,-2],[-1,-2],[-1,-5],[-3,-8],[-5,-5],[-11,-5],[8,-2],[33,12],[4,4],[3,6],[1,7],[-1,2],[-6,8],[-2,4],[10,6],[36,2],[47,-8],[33,-20],[3,-4],[15,-32],[4,-5],[-5,-9],[3,-7],[7,-7],[6,-7],[9,-18],[4,-10],[0,-9],[-2,-13],[6,-3],[10,-1],[6,-9]],[[71559,97564],[0,-8],[-4,-5],[-5,-3],[-123,-5],[-123,-6],[-16,6],[4,5],[11,9],[1,5],[-4,5],[-17,12],[-4,0],[-4,-1],[-8,-5],[-3,-1],[-105,20],[-23,20],[-11,15],[0,12],[14,8],[17,1],[17,-4],[14,-7],[-28,-5],[-10,1],[17,-18],[19,-2],[38,7],[5,12],[16,4],[103,-22],[103,-22],[103,-22],[6,-6]],[[76007,97807],[27,-3],[13,-6],[12,-11],[-9,-15],[-10,-10],[-21,-15],[-58,-18],[-28,-15],[-23,-5],[-63,-31],[-119,-25],[-97,2],[-98,2],[4,0],[3,2],[3,3],[4,3],[-12,8],[-4,0],[8,6],[57,10],[16,-2],[21,-11],[7,2],[7,4],[6,7],[-9,14],[-11,8],[-51,23],[-95,8],[-95,8],[-95,9],[-4,5],[2,10],[5,4],[23,8],[27,3],[10,10],[-18,13],[-41,7],[-19,8],[9,0],[29,8],[8,9],[-1,9],[-5,10],[-7,8],[-6,5],[-8,-1],[-27,5],[-26,-1],[-8,5],[10,6],[96,-10],[97,-11],[51,16],[72,-16],[107,-4],[62,-28],[136,-15],[136,-15]],[[64262,97819],[10,1],[25,-6],[9,-7],[-11,-7],[-12,-3],[-128,12],[-127,11],[-127,12],[1,1],[2,1],[48,10],[90,-4],[8,4],[12,20],[8,9],[11,6],[45,8],[30,20],[10,1],[8,-8],[7,-9],[9,-7],[50,-4],[-5,-4],[-10,-4],[-3,-6],[-1,-6],[1,-7],[2,-6],[2,-3],[11,-7],[25,-4],[12,-6],[-6,-3],[-6,-5]],[[60164,97941],[17,9],[56,-13],[-8,-6],[-11,-1],[-22,3],[-17,0],[-8,3],[-7,5]],[[77745,97279],[-6,-10],[7,-14],[16,-18],[-6,-14],[-13,-9],[-53,-20],[-16,-18],[-20,-6],[-27,-17],[-15,-4],[-76,3],[-57,-11],[-90,5],[-13,-8],[9,-3],[4,-3],[-1,-4],[-6,-2],[-70,1],[-24,14],[-42,0],[8,5],[-10,5],[-38,-10],[-51,0],[-1,5],[-5,3],[-18,4],[-64,-7],[-11,8],[13,5],[30,-5],[12,8],[-12,7],[-82,-1],[-12,6],[2,4],[-7,5],[-22,4],[-57,33],[-14,-1],[-7,4],[2,2],[5,10],[-19,13],[-72,2],[-72,1],[6,3],[8,1],[6,4],[5,8],[-122,-17],[-21,5],[-44,-1],[-7,1],[-5,6],[-1,5],[0,6],[0,5],[-2,7],[5,9],[2,3],[-6,4],[-14,1],[-6,3],[-4,8],[-2,3],[-8,4],[-16,2],[-13,-3],[-37,-20],[-19,-4],[-11,-8],[-31,-9],[-14,0],[-11,10],[4,5],[-10,4],[-29,-4],[-7,2],[-54,36],[-3,6],[2,8],[4,9],[2,8],[-9,13],[-70,21],[-9,7],[-4,9],[1,11],[2,7],[7,13],[-2,6],[-3,5],[-7,9],[3,7],[0,7],[-1,5],[0,6],[3,7],[6,13],[3,8],[-14,23],[-25,5],[-47,-8],[3,-8],[5,-8],[-11,-10],[-15,-1],[-69,12],[-12,7],[20,7],[43,-1],[19,14],[-9,7],[-37,5],[-9,4],[-5,4],[-4,7],[-3,3],[-17,-1],[23,8],[8,4],[17,20],[6,4],[-33,0],[-5,-1],[-7,-4],[-5,-5],[0,-6],[-5,-8],[-7,-3],[-21,-2],[-7,-3],[-7,-5],[-6,-5],[-12,-6],[-6,-5],[-1,-7],[4,-4],[22,-5],[-7,0],[-21,-8],[-14,0],[-6,-2],[-1,-6],[-16,-9],[-19,-3],[-18,3],[-16,13],[14,10],[30,2],[14,9],[-12,10],[-28,6],[-23,-6],[-11,0],[-10,6],[6,3],[-52,13],[14,11],[18,-1],[52,-18],[34,6],[76,33],[16,3],[7,3],[14,11],[21,8],[7,5],[2,17],[15,13],[89,39],[73,12],[72,12],[-6,7],[-8,3],[-21,4],[-13,8],[-31,4],[-13,5],[-3,10],[-7,5],[-10,3],[-17,0],[8,10],[12,6],[24,4],[-4,8],[-4,5],[-10,7],[9,6],[9,0],[19,-6],[83,24],[14,13],[-1,2],[-1,6],[12,1],[17,6],[10,10],[-7,15],[12,5],[11,-2],[32,-17],[0,-8],[0,-2],[5,-3],[22,-7],[6,-8],[4,-2],[26,4],[4,2],[2,6],[0,16],[2,6],[5,4],[6,4],[28,11],[84,0],[84,0],[0,-3],[-1,-7],[-1,-3],[20,1],[7,2],[15,12],[5,2],[5,-1],[15,-9],[5,-2],[39,5],[7,5],[11,10],[6,3],[6,1],[8,-2],[14,-9],[8,-1],[51,9],[71,12],[121,12],[41,-15],[6,-7],[4,-3],[3,-1],[8,1],[4,0],[5,-3],[11,-10],[4,-6],[12,-13],[27,-4],[13,-9],[-8,-14],[-15,-11],[-15,-6],[-25,-2],[-4,-2],[-1,-3],[1,-3],[1,-3],[2,-3],[-4,-4],[-21,-14],[4,-3],[13,-5],[-4,-10],[-8,-10],[-9,-8],[-38,-17],[-10,0],[17,-10],[5,-6],[-10,-4],[-20,0],[-9,-8],[7,-5],[16,-2],[8,-5],[-6,-7],[-9,-6],[-23,-6],[-14,-7],[-64,-15],[-6,-8],[7,-3],[8,-1],[9,2],[14,9],[105,27],[4,5],[0,14],[1,6],[2,2],[7,1],[26,15],[7,2],[6,3],[6,7],[-10,12],[3,9],[9,6],[45,2],[46,-19],[24,-1],[10,4],[10,6],[11,10],[-2,4],[-2,2],[-3,2],[-2,0],[4,5],[10,4],[5,3],[-4,4],[4,6],[22,8],[4,4],[-1,4],[-31,10],[-8,9],[11,13],[11,9],[11,4],[56,-13],[122,7],[14,-8],[-6,-5],[-13,-3],[-6,-4],[10,-3],[10,0],[20,6],[8,0],[9,-5],[4,-7],[-7,-7],[7,-5],[52,-8],[-4,-4],[-5,-2],[-4,-2],[-4,0],[9,-10],[36,-2],[19,-6],[19,-10],[1,-2],[2,-3],[1,-3],[0,-2],[1,-2],[1,-1],[2,0],[2,-1],[8,-10],[4,-4],[13,-3],[10,-4],[16,-14],[-6,-10],[5,-7],[16,-7],[-6,-9],[-11,-6],[-21,-6],[-27,1],[-7,-4],[12,-10],[6,-8],[1,-11],[-5,-9],[-20,-12],[-7,-7],[3,-7],[-1,-5],[-4,-8],[-6,-16],[-4,-6],[-5,-3],[5,-10],[12,-10],[5,-8],[-6,-7],[-18,-12],[-4,-10],[1,-10],[3,-9],[9,-13],[-7,-8],[-3,-6],[0,-5],[3,-4],[11,-10],[-5,-5],[-12,-19],[-6,-6],[-17,-10],[-2,-3],[-2,-7],[-2,-3],[-3,-1],[-23,-2],[-5,-2],[-3,-7],[0,-4],[-13,10],[-74,28],[-16,-1],[-15,-8],[8,-10],[72,-31],[72,-32],[8,-8],[-8,-6],[-9,-3],[-17,1],[11,-13],[81,-13],[6,-6],[4,-1],[0,-4],[5,-18],[3,-7]],[[63911,97887],[-11,-5],[-12,-2],[-32,8],[-26,16],[-16,4],[-29,17],[-15,3],[-7,4],[-5,9],[8,8],[78,25],[11,9],[5,2],[92,-4],[25,-18],[4,-9],[-5,-8],[-53,-15],[-15,-18],[4,-5],[-2,-2],[-3,-3],[-2,-3],[-2,-4],[3,0],[4,-2],[2,-3],[-1,-4]],[[65498,98227],[-13,5],[-29,-1],[-11,10],[21,13],[7,7],[-58,1],[-18,8],[3,3],[16,5],[13,5],[17,3],[32,-5],[10,5],[1,8],[5,4],[104,7],[104,8],[13,-7],[-5,-7],[3,-4],[31,-1],[46,-16],[28,-20],[-3,-3],[-1,-3],[1,-4],[1,-5],[-3,-4],[-84,-11],[-83,-11],[4,6],[2,2],[-10,10],[-132,-14],[-12,6]],[[62968,98160],[-5,-7],[-7,-1],[-13,4],[-14,1],[-8,-3],[-6,-6],[7,-15],[2,-5],[-13,-9],[-111,-12],[-8,5],[-6,10],[-3,14],[2,16],[4,6],[10,12],[1,6],[-3,7],[-8,3],[-13,3],[-44,-16],[-15,-1],[-2,2],[-2,3],[-3,3],[-2,-1],[-11,-6],[-11,-2],[-14,-8],[-29,-8],[-8,2],[-4,5],[-8,11],[-5,4],[-14,9],[-29,10],[-105,9],[-10,7],[6,5],[8,3],[27,2],[25,9],[131,14],[132,15],[132,14],[0,4],[-8,-1],[-25,5],[5,4],[7,2],[133,2],[28,7],[25,17],[19,6],[6,6],[-23,7],[-8,6],[13,7],[111,8],[91,-26],[48,-3],[66,14],[62,-20],[44,-25],[-14,-6],[-29,3],[-13,-13],[45,-18],[5,-10],[9,-2],[27,-11],[-2,-6],[-1,-7],[0,-7],[-1,-5],[-6,-3],[-9,1],[-15,7],[-37,6],[-14,8],[-7,2],[-103,6],[-20,11],[5,12],[-2,5],[-14,-1],[-8,2],[-39,32],[-9,3],[-9,-1],[-22,-9],[-22,-3],[4,-3],[7,-8],[4,-1],[-23,0],[-10,4],[-5,0],[4,-10],[16,-14],[7,-8],[-18,-5],[-21,8],[-20,1],[-16,-21],[36,-25],[3,-5],[-3,-4],[-10,-2],[-55,20],[-16,-6],[-8,-5],[-14,-6],[-7,-7],[-1,-4],[-4,-9],[-2,-4],[-5,-2],[-91,8],[-9,-6],[15,-16]],[[67283,98328],[3,-8],[7,-4],[5,-5],[1,-13],[-5,-12],[-8,-8],[-16,-8],[-38,-29],[15,-10],[15,-6],[-8,-10],[-12,-4],[-102,-10],[-2,-2],[-1,-2],[-2,-7],[0,-1],[-22,-6],[-6,-7],[5,-16],[-82,-11],[-9,-5],[27,-5],[2,-2],[-1,-3],[-4,-6],[-10,-10],[-13,-6],[-35,-8],[-20,-14],[-11,-3],[-134,24],[-71,29],[-35,-4],[2,-4],[-8,-7],[-9,-4],[-27,-3],[-18,-9],[-77,-9],[-14,2],[-39,31],[-71,27],[4,6],[5,2],[11,0],[14,10],[3,7],[-11,1],[-13,5],[-7,10],[8,11],[-17,16],[-2,5],[3,5],[16,10],[5,6],[-2,1],[-5,6],[5,5],[12,4],[6,4],[-2,4],[13,13],[36,8],[10,16],[-17,8],[13,2],[38,18],[7,0],[19,-4],[7,1],[11,6],[88,7],[15,-4],[9,-10],[-60,-4],[-20,-9],[96,1],[11,-4],[0,-2],[-1,-3],[0,-2],[4,-1],[3,0],[53,19],[136,13],[136,12],[-2,6],[-2,2],[9,8],[11,2],[129,-9],[39,-34],[4,-6]],[[66147,98309],[-12,4],[-57,0],[-11,5],[-8,8],[8,9],[20,3],[8,5],[20,2],[39,18],[82,9],[82,9],[50,-12],[9,-6],[5,-8],[8,-13],[6,-7],[-4,-1],[-2,-3],[-5,-8],[-15,-14],[-11,-4],[-33,5],[-22,-2],[-43,-14],[-34,-4],[-80,19]],[[65490,98311],[-124,-19],[-123,-18],[-59,12],[1,8],[4,4],[2,4],[-3,8],[-6,4],[-19,0],[-13,-5],[-74,5],[-73,4],[-6,4],[-3,8],[1,7],[32,14],[62,8],[23,-8],[88,12],[6,-1],[6,-3],[2,-5],[-5,-7],[19,-5],[10,2],[9,7],[17,18],[8,6],[11,4],[21,2],[45,-7],[31,-17],[85,-17],[86,-17],[-15,-8],[-46,-4]],[[64357,98278],[9,-1],[4,-2],[3,-5],[-1,-3],[-3,-2],[-1,-3],[1,-4],[-8,-10],[-73,-18],[-73,-17],[-15,-9],[-35,-33],[-13,-6],[-115,-3],[-115,-3],[-10,-7],[-11,-10],[-88,-2],[-15,-8],[9,-7],[14,-4],[11,-6],[0,-15],[3,-1],[4,-2],[2,-4],[0,-4],[-4,-5],[-90,-22],[-91,7],[-90,8],[-13,-14],[1,-2],[6,-7],[-46,-19],[-7,-13],[15,-5],[60,-3],[13,-5],[26,-19],[-4,-7],[-9,-5],[-4,-5],[26,-8],[10,-6],[-6,-10],[-6,-2],[-15,0],[-5,-2],[-1,-2],[0,-3],[-1,-2],[-4,-1],[-65,4],[-42,26],[-16,4],[-8,-10],[12,-14],[3,-6],[-11,-21],[-19,-13],[-20,-6],[-15,5],[-8,8],[-18,13],[-9,2],[-21,-1],[-11,-4],[-9,-7],[0,-4],[1,-3],[0,-4],[-3,-5],[-5,-1],[-99,-12],[-10,2],[-6,3],[0,6],[9,9],[-1,9],[29,26],[14,8],[72,8],[10,11],[-51,-4],[-15,7],[7,7],[19,0],[8,6],[-11,7],[-70,1],[-21,-6],[-42,1],[-31,-16],[10,-11],[3,-5],[-48,2],[-31,-11],[-57,12],[-1,8],[3,8],[1,6],[-5,5],[-64,22],[-11,13],[9,11],[122,34],[8,-2],[12,-6],[8,-9],[-5,-12],[14,-8],[57,8],[35,-11],[23,7],[105,-4],[-12,7],[45,3],[15,7],[-11,3],[-23,2],[-43,13],[-62,3],[-7,3],[-7,6],[-5,10],[81,3],[81,3],[9,7],[-9,4],[-20,1],[-9,6],[3,4],[9,9],[-11,5],[-37,-5],[-41,5],[-110,-20],[-13,6],[10,8],[83,24],[83,24],[42,-8],[9,1],[29,15],[21,6],[11,0],[31,-16],[11,-1],[-2,-3],[-5,-8],[-3,-5],[11,-6],[37,6],[23,-10],[12,0],[12,6],[12,10],[5,2],[8,1],[48,-8],[15,3],[11,9],[-11,6],[-4,5],[5,3],[10,2],[5,3],[2,2],[2,3],[3,3],[23,3],[10,5],[5,12],[-9,0],[-10,2],[-9,5],[-6,10],[40,6],[56,-9],[10,7],[-2,2],[-7,6],[1,2],[4,7],[-2,2],[-3,2],[-3,0],[-3,0],[19,20],[-15,6],[-118,-22],[6,12],[11,8],[11,4],[10,0],[-11,7],[-16,-1],[-55,-18],[-13,3],[-12,9],[10,8],[23,6],[11,7],[-7,3],[-24,0],[94,23],[94,23],[22,19],[12,5],[121,24],[18,-7],[27,-1],[12,-5],[0,-4],[-86,-9],[-15,-8],[-15,-2],[-7,-5],[7,-4],[97,11],[97,11],[29,14],[8,0],[6,-4],[12,-14],[35,-22],[-8,-8],[-10,-4],[-52,0],[-29,-10],[-61,-3],[0,-3],[16,-5],[5,-3],[-10,-8],[-55,-7],[-10,-5],[-7,-9],[8,0],[5,-5],[6,-5],[6,-5],[9,-2],[78,31],[7,-1],[15,-10],[9,-3],[8,1],[14,15],[11,3],[34,2],[9,-1],[4,-6],[4,-8],[9,-2],[17,4],[-5,7],[3,5],[44,9],[-1,-6],[-1,-3],[8,-4],[17,-5],[15,-11],[9,-3],[57,-5]],[[72168,98424],[87,-10],[88,-10],[-7,-24],[-3,-9],[-8,-7],[-13,-8],[-111,-10],[-111,-11],[-111,-10],[-32,10],[-10,11],[3,11],[25,23],[12,18],[6,5],[13,8],[6,5],[2,0],[6,-5],[136,16],[22,-3]],[[66292,98465],[12,-11],[-25,-18],[-1,-12],[-12,-10],[-54,-7],[-31,5],[-103,45],[-12,10],[1,7],[6,4],[38,11],[-3,8],[6,5],[16,3],[81,-20],[81,-20]],[[65926,98375],[-29,9],[-9,-1],[5,8],[5,9],[-9,12],[-16,4],[-36,0],[-16,4],[-7,4],[-5,4],[-5,7],[-1,6],[7,3],[-6,5],[-14,-2],[-7,3],[-6,5],[-91,20],[-91,19],[-14,-1],[2,6],[1,2],[5,8],[7,3],[6,-1],[15,-8],[133,3],[21,-9],[15,-3],[31,-12],[64,-9],[23,4],[108,-24],[3,-2],[3,-9],[3,-4],[20,-16],[74,-13],[74,-13],[-10,-6],[-78,-17],[-26,-17],[-10,-4],[-84,6],[-26,12],[-29,5]],[[65156,98436],[-32,2],[-9,6],[3,9],[1,3],[7,12],[9,3],[9,1],[9,5],[-5,6],[3,6],[28,22],[7,2],[13,-3],[40,-21],[127,-20],[56,-25],[15,-1],[123,22],[84,-18],[84,-19],[8,-22],[95,-25],[96,-25],[95,-25],[5,-5],[5,-9],[-3,-7],[-6,-3],[-14,-3],[-20,-14],[-70,-17],[-70,-16],[-14,4],[-46,37],[-35,10],[-3,2],[-3,3],[0,1],[0,2],[-2,5],[-5,5],[-121,13],[-121,14],[-7,4],[-3,6],[0,6],[-2,4],[-5,2],[-53,3],[-47,22],[7,11],[1,3],[-2,4],[-5,2],[-18,4],[-30,-12],[-58,-2],[-19,7],[-13,9],[-1,5],[-2,4],[-2,4],[-2,1],[-82,-4]],[[64021,98480],[-36,13],[11,8],[-1,3],[-3,7],[-2,2],[36,0],[6,2],[6,6],[-3,5],[-10,7],[10,5],[69,2],[12,-3],[26,-13],[10,-11],[8,-11],[-3,-6],[-8,-3],[-48,-2],[-6,-6],[2,-6],[8,-3],[1,-5],[-3,-6],[-6,-2],[-49,4],[-34,-18],[-12,-2],[-10,6],[1,2],[1,2],[3,4],[6,2],[8,5],[6,6],[4,6]],[[75429,98530],[7,-6],[0,-5],[-4,-3],[-52,-15],[-7,-5],[-4,-9],[-40,-14],[-110,9],[-111,10],[-110,9],[-6,3],[-11,12],[-5,2],[2,9],[0,6],[-3,4],[-5,5],[12,4],[24,15],[11,1],[2,4],[128,-4],[128,-5],[128,-4],[26,-23]],[[77151,98286],[15,-5],[35,5],[13,-12],[-8,-13],[-13,-4],[-26,1],[-7,-2],[-3,-3],[-8,-10],[-6,-3],[-6,1],[-13,4],[-26,1],[-51,-13],[-12,1],[-11,7],[1,3],[-45,-3],[4,-5],[8,-4],[5,-3],[-9,-13],[-22,-12],[-9,-11],[3,-7],[-1,-3],[-4,-2],[-3,-3],[-3,-7],[0,-3],[0,-3],[0,-7],[33,-18],[3,-5],[-1,-10],[1,-9],[7,-5],[4,-1],[3,-3],[3,-5],[1,-7],[-1,-5],[-4,-7],[-1,-4],[0,-13],[4,-9],[5,-5],[7,-2],[24,0],[24,-10],[0,-4],[-2,-5],[-3,-5],[-4,-4],[-13,-4],[-26,-14],[-8,-2],[2,-6],[1,-2],[-12,-9],[-120,-11],[-119,-11],[-120,-12],[-120,-11],[-119,-11],[-48,8],[-15,-5],[-18,-13],[-7,-2],[-52,7],[-7,-3],[-5,-6],[-4,-7],[-4,-5],[-80,-32],[-89,-12],[-28,-14],[-16,1],[-98,29],[-99,29],[2,4],[-7,5],[-128,27],[-27,-3],[-95,12],[7,6],[14,1],[7,2],[2,3],[2,4],[0,3],[0,2],[4,0],[3,-1],[3,-2],[86,-13],[86,-12],[15,7],[-9,9],[-23,1],[-21,8],[-72,4],[-22,10],[-22,2],[-10,7],[2,4],[-10,10],[-24,6],[-6,8],[81,3],[81,3],[11,-1],[18,-1],[11,-2],[126,-15],[9,5],[-5,7],[-6,6],[-11,7],[-14,4],[-110,-4],[-17,1],[-111,-4],[-112,-4],[-111,-5],[7,4],[17,5],[6,8],[-38,-7],[-23,2],[14,24],[21,6],[22,0],[17,7],[-2,2],[-5,6],[91,10],[14,-7],[8,-1],[9,1],[5,5],[-2,2],[-3,1],[128,-14],[18,7],[-74,8],[-73,8],[-24,13],[-23,4],[-11,7],[8,5],[100,25],[128,2],[8,2],[7,7],[1,4],[-1,3],[0,4],[3,6],[3,11],[2,5],[-3,4],[-2,3],[-4,1],[-3,-1],[2,5],[2,3],[6,4],[3,20],[18,18],[97,53],[9,7],[0,9],[-104,-21],[-39,8],[-6,-2],[-9,-8],[-6,-2],[-41,-1],[-9,3],[-1,10],[6,10],[11,6],[19,4],[1,3],[12,12],[3,5],[4,3],[5,2],[4,0],[-2,8],[-4,5],[-5,2],[-4,1],[11,6],[24,2],[24,11],[60,6],[12,6],[4,10],[-6,6],[-18,9],[-1,9],[-4,4],[-2,0],[117,29],[51,-7],[3,1],[2,2],[1,3],[1,3],[0,2],[5,2],[100,9],[28,14],[63,13],[47,-6],[92,24],[41,25],[20,5],[22,13],[100,2],[-8,5],[-127,7],[-7,4],[19,14],[93,5],[94,5],[16,-8],[18,-14],[27,-5],[7,-5],[-16,-7],[-2,-5],[3,-6],[5,-2],[41,1],[10,-5],[-3,-8],[7,-5],[17,-3],[8,-4],[2,-2],[2,-8],[2,-3],[72,-36],[-6,-8],[-1,-11],[4,-9],[7,-4],[45,-9],[-6,-4],[-12,-3],[-6,-5],[5,-4],[6,-3],[6,-1],[6,0],[-2,-4],[13,-11],[27,-4],[13,-5],[12,-14],[5,-3],[126,-32],[-2,-2],[-2,-6],[41,2],[26,-7],[28,0],[10,-8],[-9,-8],[-3,-4],[10,0],[9,-4],[19,-11],[-9,-9],[-19,-3],[-10,-5]],[[65907,98692],[-71,7],[-71,6],[-4,3],[5,7],[9,4],[40,6],[13,6],[7,9],[-5,1],[-4,2],[-8,5],[18,9],[131,-2],[9,6],[-3,2],[-3,2],[-3,1],[8,5],[75,3],[11,-9],[-5,-7],[-2,-1],[5,-5],[9,-4],[5,-3],[-2,-3],[-3,-7],[-1,-3],[13,-5],[71,-4],[71,-3],[40,-26],[7,-10],[-15,-6],[-29,-4],[-30,-12],[-70,1],[-71,0],[-38,13],[-16,-3],[-7,2],[-3,10],[-1,3],[-5,2],[-29,8],[-48,-6]],[[67361,98826],[4,4],[-114,8],[0,4],[18,8],[6,0],[9,5],[66,8],[21,-6],[30,9],[44,0],[-5,-5],[-6,-3],[127,-4],[127,-3],[35,-21],[-7,-13],[-9,-9],[-10,-5],[-68,-15],[-47,6],[-24,-4],[-72,6],[-73,7],[-22,9],[-21,5],[-9,9]],[[66193,98862],[-85,-14],[-28,10],[1,5],[1,4],[2,4],[2,3],[4,-1],[2,4],[1,5],[2,4],[5,3],[51,10],[-14,5],[-30,1],[-13,10],[10,8],[26,0],[24,8],[98,5],[98,6],[98,6],[25,-10],[27,-4],[10,-11],[-7,0],[-8,-4],[-15,-12],[9,-6],[3,-4],[0,-6],[-5,-6],[-98,-8],[-98,-7],[-98,-8]],[[91900,77977],[1,-4],[-4,0],[-7,3],[-8,6],[2,4],[1,2],[3,8],[2,4],[3,-5],[2,-8],[4,-6],[1,-4]],[[93009,79873],[5,-3],[4,-7],[4,-5],[6,4],[-1,-11],[-3,-21],[-1,-11],[-3,-9],[-12,-16],[-5,-10],[2,-4],[-5,-8],[-2,-13],[1,-14],[3,-13],[1,-4],[4,-7],[0,-4],[0,-3],[-1,-3],[-1,-2],[4,-12],[-1,-5],[-5,-9],[0,-4],[0,-4],[0,-3],[-1,-3],[-7,-6],[-2,-3],[-2,-2],[-6,1],[-2,-1],[-2,-2],[-4,-8],[0,-2],[-6,-1],[-5,2],[-19,13],[-2,2],[-1,3],[0,3],[1,7],[1,6],[-1,20],[1,9],[5,11],[3,18],[4,8],[10,13],[2,7],[2,7],[3,14],[3,8],[8,17],[2,6],[0,5],[-3,7],[-1,4],[1,6],[3,3],[3,1],[2,2],[12,23],[4,3]],[[66398,95454],[9,5],[20,5],[17,8],[9,0],[7,-3],[1,-12],[-7,-10],[-11,-2],[-11,0],[-18,-6],[-20,-1],[-19,-8],[-20,-3],[-19,-7],[-24,-3],[-9,4],[11,8],[72,18],[12,7]],[[66389,97835],[-58,18],[-7,6],[3,10],[5,4],[101,23],[102,22],[17,-7],[55,-8],[6,-3],[6,-6],[3,-5],[0,-6],[-1,-5],[1,-4],[1,-5],[-2,-3],[-1,-3],[5,-7],[5,-4],[11,-2],[5,-6],[-18,-4],[-35,-17],[-54,-12],[-18,5],[-10,0],[-2,-9],[-9,-6],[-8,-2],[-46,6],[-10,6],[3,2],[5,6],[-14,1],[-41,15]],[[65475,97908],[85,47],[8,10],[-11,8],[-4,0],[3,10],[1,3],[-4,5],[-8,5],[-3,6],[7,10],[3,7],[1,7],[-1,3],[-4,7],[-1,2],[2,6],[3,2],[39,9],[71,-8],[71,-8],[14,11],[0,10],[6,5],[86,-3],[21,-11],[9,-23],[-1,-6],[-11,-14],[-1,-8],[1,-12],[3,-10],[3,-5],[6,-1],[5,-2],[1,-5],[-4,-8],[-5,-4],[-18,-7],[-2,-8],[7,-10],[10,-8],[8,-3],[-6,-13],[-11,-8],[-33,-10],[-94,2],[-93,3],[-93,2],[-53,16],[-13,-1]],[[64617,97955],[-6,10],[-68,5],[-15,9],[-33,31],[6,4],[14,1],[14,5],[73,-2],[7,4],[-2,8],[4,3],[29,2],[7,3],[0,4],[-4,1],[-5,3],[-4,5],[0,8],[4,6],[20,7],[25,15],[12,4],[13,0],[20,-7],[7,-1],[28,8],[40,-2],[13,-6],[-5,-12],[7,-11],[51,-30],[92,-20],[2,-3],[-4,-6],[-9,-11],[-16,-11],[-9,-3],[-8,2],[-4,4],[-3,5],[-4,5],[-6,2],[-7,-1],[-8,-3],[-7,-5],[-7,-7],[-2,-6],[-3,-13],[-2,-6],[-6,-4],[-118,0],[-117,0],[-6,6]],[[65980,97925],[-29,-3],[-8,5],[-5,5],[-25,15],[-3,5],[1,8],[6,10],[-5,7],[-13,7],[-5,6],[7,6],[5,10],[1,10],[-8,6],[4,12],[2,6],[-2,4],[-13,12],[-4,7],[23,16],[-9,12],[-10,7],[-72,34],[104,-2],[105,-2],[105,-2],[104,-2],[31,-10],[32,-3],[26,-11],[35,0],[82,-29],[5,-3],[8,-8],[7,-10],[3,-8],[-95,3],[-95,2],[-1,-10],[-9,-3],[-36,4],[-10,-2],[-19,-9],[-35,-8],[-11,-4],[-5,-1],[-5,-2],[-8,-9],[-4,-1],[4,-8],[9,-4],[85,0],[8,-4],[4,-7],[-2,-8],[-11,-14],[2,0],[4,-4],[-12,-8],[-43,12],[-30,-3],[-16,1],[-3,2],[-1,1],[-1,1],[-4,8],[-2,1],[-1,1],[-24,-5],[-6,-3],[-6,-5],[-2,-7],[3,-5],[11,-6],[4,-3],[2,-8],[2,-6],[2,-5],[7,-3],[-13,-8],[-71,0],[-41,18],[-10,2]],[[64943,98127],[16,5],[-5,14],[3,3],[3,1],[7,-1],[25,11],[-8,6],[-24,9],[-5,12],[4,15],[8,7],[107,-14],[13,-6],[-26,0],[-14,-3],[-10,-10],[8,-5],[68,-3],[-6,-10],[4,-6],[16,-8],[-1,-7],[1,-2],[2,-3],[-5,-6],[-5,-4],[-6,-2],[-5,-1],[-6,-2],[-3,-5],[-3,-7],[-4,-4],[-13,-5],[-13,0],[-123,31]],[[66737,98461],[14,8],[56,11],[29,14],[99,4],[99,4],[99,4],[6,-5],[-7,-1],[-7,-3],[-7,-5],[-6,-7],[4,-2],[2,-5],[0,-6],[-2,-8],[-6,-6],[-85,-33],[-85,-32],[-89,8],[-90,8],[-24,14],[-52,4],[-13,9],[11,8],[41,9],[13,8]],[[67436,98371],[31,8],[15,7],[27,23],[30,13],[124,5],[124,4],[37,14],[5,5],[2,8],[1,7],[1,6],[4,2],[-5,8],[-6,3],[-12,4],[-3,6],[3,7],[6,6],[10,4],[4,5],[9,13],[5,6],[5,4],[42,15],[78,7],[22,-9],[23,2],[101,-34],[8,-8],[32,-37],[12,-9],[5,-5],[4,-8],[-40,-17],[12,-1],[11,-4],[9,-8],[9,-13],[3,-10],[-1,-5],[-4,-4],[-81,-41],[-21,-5],[-5,-5],[-4,-5],[-6,-6],[-7,-3],[-92,-19],[-23,-13],[-23,0],[-22,-8],[-90,-8],[-90,-9],[-25,9],[-77,-14],[-77,-13],[-72,34],[-71,34],[-24,4],[-6,4],[-2,8],[2,6],[3,3],[3,3],[67,24]],[[65926,98561],[17,6],[60,4],[16,5],[35,2],[25,6],[20,0],[19,-6],[16,-12],[-65,-14],[-22,-25],[-20,-7],[-86,-8],[-110,25],[9,8],[12,3],[48,3],[26,10]],[[65457,98558],[-10,1],[-10,6],[-4,6],[2,6],[3,4],[3,1],[-2,7],[1,6],[3,5],[3,2],[-49,0],[0,5],[8,3],[15,0],[7,5],[-5,6],[-10,5],[-6,5],[34,-4],[35,8],[-2,-4],[8,-4],[8,-1],[20,5],[10,0],[4,-1],[2,-3],[2,-3],[-1,-1],[16,-6],[34,1],[39,-15],[91,-13],[16,4],[0,4],[-8,1],[-28,12],[-16,17],[-6,3],[7,8],[-3,4],[-7,3],[-2,3],[-4,12],[-3,3],[-4,0],[0,3],[109,7],[15,-7],[-6,-3],[8,-7],[11,1],[19,6],[71,-12],[71,-11],[4,-3],[7,-8],[3,-3],[11,-3],[33,11],[20,0],[60,-20],[-26,-13],[-106,-7],[-106,-6],[-94,-29],[-26,-15],[-51,-3],[-14,4],[2,14],[-13,8],[-28,6],[-116,-25],[-23,9],[-26,0]],[[66267,98631],[-15,-2],[-8,2],[-5,6],[2,8],[6,2],[12,0],[37,18],[97,13],[26,-4],[8,-3],[5,-3],[25,-6],[15,-7],[15,-12],[8,-8],[-12,-16],[-16,-2],[-16,2],[-48,-10],[-111,12],[-17,8],[-8,2]],[[67195,98797],[30,-1],[17,-8],[19,-2],[9,-5],[6,-7],[-3,-4],[-33,-7],[-66,10],[-32,20],[-17,4],[9,4],[61,-4]],[[61237,88716],[1,-2],[1,-3],[-1,-3],[-7,-2],[-27,5],[-39,0],[-14,11],[-4,13],[-6,10],[-11,10],[-4,3],[-9,3],[-24,3],[-5,3],[-13,9],[-5,0],[-4,-1],[-4,-1],[2,6],[6,5],[14,7],[22,5],[5,0],[4,-5],[8,-6],[10,0],[19,6],[11,-1],[11,-5],[7,-7],[3,-6],[1,-13],[9,-12],[14,-9],[13,-1],[9,-4],[5,-7],[1,-6],[1,-5]],[[61111,88808],[-6,-5],[-10,0],[2,8],[10,1],[4,-4]],[[61151,88806],[-20,14],[-11,2],[4,5],[17,7],[31,2],[31,-7],[8,-9],[7,-13],[4,-14],[0,-29],[1,-7],[0,-5],[-2,-8],[-8,-1],[-12,6],[-6,8],[-5,13],[-9,15],[-14,13],[-8,5],[-8,3]],[[60003,88994],[3,-3],[1,-6],[-3,-4],[-3,-2],[-14,0],[-10,-3],[-4,1],[-1,2],[-1,4],[-2,5],[3,4],[7,4],[8,0],[2,0],[3,1],[6,-1],[3,-1],[2,-1]],[[60058,89057],[11,1],[3,-3],[-7,-5],[-10,-4],[-18,-1],[-10,-4],[-7,0],[0,-2],[-2,-1],[-6,1],[-4,2],[-2,1],[-20,8],[-3,5],[1,8],[1,8],[5,4],[7,2],[0,-1],[0,-4],[2,1],[3,-1],[4,-3],[4,-5],[3,-2],[2,-2],[1,-2],[3,-1],[34,-1],[5,1]],[[65091,90925],[3,-3],[1,-8],[-2,-10],[-3,-8],[-3,-2],[-26,-9],[-5,3],[-1,4],[-1,4],[1,1],[0,3],[0,5],[3,8],[8,7],[17,14],[8,2],[2,-2],[-3,-3],[-7,-3],[-1,-2],[3,0],[3,-1],[3,0]],[[64975,90955],[15,-3],[7,-7],[-2,-13],[-7,-18],[-11,-3],[-9,5],[-6,6],[-2,7],[-1,6],[0,5],[1,5],[4,4],[3,1],[8,5]],[[63624,91142],[7,-1],[14,-5],[-1,-3],[-99,16],[0,4],[13,0],[66,-11]],[[63771,91225],[5,1],[1,-3],[-2,-4],[-12,-8],[-14,-6],[-2,5],[17,11],[5,3],[2,1]],[[65073,91224],[30,-15],[6,-5],[-2,-3],[-44,11],[-5,3],[-4,4],[-1,3],[3,3],[3,1],[2,0],[12,-2]],[[63837,91273],[2,2],[5,2],[0,-3],[-16,-12],[-5,-2],[-4,0],[1,2],[9,5],[8,6]],[[65270,91297],[11,-3],[2,-4],[0,-8],[-9,-2],[-11,4],[-7,4],[-3,4],[0,3],[4,2],[13,0]],[[63911,91309],[3,2],[4,0],[-3,-6],[-7,-6],[-19,-8],[-1,1],[14,8],[6,6],[3,3]],[[68671,91582],[19,10],[6,0],[0,-6],[-17,-14],[-17,-9],[-7,-8],[-3,-5],[-5,-2],[-10,1],[-5,4],[-23,10],[-11,13],[-5,17],[4,10],[5,2],[1,-4],[1,-2],[2,-2],[3,-3],[5,-3],[42,-9],[-2,0],[2,-1],[15,1]],[[68702,91672],[2,-8],[2,-7],[0,-15],[-7,-21],[-8,-13],[-3,-9],[-6,-7],[-8,-3],[-4,0],[-43,10],[-5,4],[-6,12],[5,12],[32,37],[10,7],[31,8],[5,-1],[3,-6]],[[68565,92157],[8,-5],[1,-2],[-5,2],[-24,11],[-44,35],[-4,7],[1,10],[12,21],[8,7],[2,-1],[-2,-9],[1,-8],[2,-4],[3,-4],[3,-2],[1,-3],[-1,-5],[2,-3],[4,-2],[3,-3],[1,-4],[1,-4],[2,-2],[1,-2],[0,-2],[1,-2],[2,-2],[13,-19],[3,-3],[5,-2]],[[68488,92247],[4,-17],[2,-8],[-4,-2],[-11,5],[-14,17],[-10,19],[-7,17],[-5,20],[-2,22],[-1,16],[1,10],[2,14],[1,9],[1,11],[3,11],[4,7],[3,-1],[6,-12],[2,-3],[3,-5],[1,-6],[-2,-6],[-3,-6],[-1,-8],[-2,-9],[0,-12],[5,-11],[5,-6],[2,-5],[1,-5],[0,-4],[2,-4],[5,-6],[4,-4],[1,-3],[2,-10],[2,-25]],[[68499,92466],[-1,-4],[-3,-4],[-3,-4],[-4,-5],[-2,-4],[-3,-13],[-3,-9],[-6,-8],[-10,-5],[-7,0],[-4,5],[3,11],[12,30],[9,17],[0,3],[-1,2],[1,4],[1,1],[21,36],[2,0],[2,-5],[0,-7],[-3,-7],[-3,-5],[-2,-5],[0,-5],[1,-2],[1,-3],[0,-5],[1,-4],[1,-5]],[[64824,92690],[3,-5],[4,-2],[-1,-1],[-5,0],[-5,1],[-31,17],[-3,4],[-6,11],[-3,4],[-8,5],[-3,3],[3,2],[4,-1],[4,-1],[4,2],[7,-2],[36,-37]],[[92464,95568],[3,-4],[2,-6],[-2,-11],[-8,-9],[-9,-7],[-14,-4],[-19,7],[-33,19],[-9,7],[5,8],[14,10],[24,11],[34,5],[5,0],[8,-3],[-1,-6],[-3,-9],[3,-8]],[[93516,96134],[1,-2],[2,-5],[0,-5],[-3,-2],[-2,0],[-38,2],[-7,6],[4,8],[6,6],[6,3],[11,0],[14,-6],[6,-5]],[[75572,96443],[5,-1],[8,-4],[0,-6],[-4,-3],[-17,-11],[-13,0],[-21,8],[-8,7],[-4,9],[7,8],[14,2],[33,-9]],[[66337,97797],[13,-3],[2,-6],[-14,-8],[-2,-1],[-14,-1],[-30,5],[-5,4],[-4,8],[-10,8],[-15,4],[-79,0],[1,4],[101,24],[4,-1],[5,-2],[0,-2],[-3,-4],[0,-3],[22,-18],[14,-6],[7,-2],[7,0]],[[66712,97947],[9,-7],[3,-5],[-2,-4],[-8,-2],[-50,5],[-25,12],[-3,5],[2,4],[43,3],[13,-2],[18,-9]],[[65113,98016],[3,-4],[2,-4],[-1,-4],[-4,-3],[-3,-1],[0,-4],[2,-9],[0,-9],[-7,-7],[-18,-5],[-30,0],[-3,-2],[-2,-3],[-3,-2],[-6,0],[-4,2],[-1,2],[0,3],[2,3],[1,3],[0,3],[2,3],[3,4],[0,5],[-4,4],[-9,3],[-3,2],[-2,5],[-1,7],[3,9],[6,4],[17,8],[14,1],[16,-3],[26,-9],[4,-2]],[[65416,98034],[4,-2],[3,-4],[-3,-4],[-3,-3],[1,-5],[-2,-5],[-12,-6],[-9,-4],[-35,-8],[-11,-8],[-7,-3],[-44,-5],[-8,2],[-14,9],[-4,0],[-2,0],[-6,0],[-3,1],[-3,2],[0,2],[3,1],[0,3],[-2,2],[-1,2],[2,2],[7,0],[4,-1],[9,-1],[5,1],[5,2],[30,6],[1,2],[-5,3],[-4,1],[-10,0],[-6,4],[1,5],[62,19],[16,0],[6,-2],[3,-1],[32,-7]],[[65274,98092],[21,4],[7,0],[6,0],[24,10],[13,0],[5,-4],[1,-4],[1,-3],[0,-6],[-2,-3],[-1,-4],[1,-4],[-11,-6],[-26,-3],[-12,1],[0,3],[0,2],[-2,2],[-2,1],[-23,6],[-4,2],[-1,2],[3,3],[2,1]],[[65233,98102],[1,-1],[2,-2],[0,-3],[-2,-2],[-2,-2],[-9,-5],[-3,-3],[-3,-3],[-3,-1],[-69,-11],[-35,5],[-2,2],[1,1],[4,1],[7,3],[7,4],[4,6],[5,13],[6,7],[17,10],[7,5],[7,3],[23,0],[5,-3],[4,-3],[17,-10],[4,-5],[7,-6]],[[65228,98122],[-53,22],[-3,6],[6,3],[18,5],[50,5],[47,-18],[3,-3],[1,-4],[0,-3],[0,-1],[-2,-4],[-5,-6],[-7,-6],[-11,-5],[-44,9]],[[66593,98551],[5,-2],[1,-4],[-1,-5],[-3,-2],[-4,-1],[-99,8],[-100,8],[-5,3],[2,4],[26,5],[89,-7],[89,-7]],[[66822,98601],[1,-1],[2,-2],[-6,-5],[-21,-8],[-12,-1],[-82,12],[-82,13],[0,3],[2,3],[51,8],[134,-12],[6,-4],[7,-6]],[[66213,98782],[-20,3],[-6,5],[1,4],[3,3],[21,4],[8,6],[5,2],[47,3],[8,2],[10,0],[8,-4],[3,-2],[3,-2],[2,-4],[-4,-6],[-7,-4],[-48,-10],[-34,0]],[[86791,75833],[5,-10],[2,-4],[0,-2],[-2,-2],[-3,0],[-1,2],[-2,4],[-2,6],[-3,5],[-3,2],[-3,-1],[-2,2],[0,6],[0,6],[1,4],[3,4],[1,9],[3,9],[3,-2],[2,-9],[2,-9],[-1,-10],[0,-10]],[[63291,76527],[3,-3],[2,-2],[0,-4],[-29,-33],[-5,-1],[-10,5],[-4,1],[-3,1],[-1,7],[-2,0],[-5,-5],[-4,1],[-2,5],[-2,6],[3,11],[8,9],[32,-1],[9,3],[7,0],[3,0]],[[63332,77396],[0,-8],[0,-1],[0,-2],[-2,0],[-2,3],[-1,1],[-5,12],[-5,14],[-4,21],[-3,21],[0,5],[-1,10],[1,8],[-1,8],[1,6],[3,2],[2,0],[3,5],[3,4],[1,-7],[0,-9],[1,-11],[4,-13],[1,-12],[0,-8],[2,-8],[2,-9],[0,-32]],[[88673,82798],[4,0],[6,6],[2,7],[2,1],[0,-3],[-4,-9],[-5,-7],[-7,0],[-1,3],[3,2]],[[88385,82873],[10,0],[4,-1],[-2,-4],[-6,-4],[-4,0],[-4,4],[0,5],[2,0]],[[91397,85524],[2,7],[3,0],[6,-4],[5,4],[8,3],[6,-1],[-1,-6],[-5,-4],[-6,-9],[2,-8],[-7,0],[-12,5],[-1,8],[0,5]],[[2090,88752],[3,-3],[3,-8],[-1,-8],[-17,-10],[-7,-1],[-6,2],[-29,3],[-2,2],[-1,3],[-1,4],[-3,2],[-3,1],[-5,3],[1,11],[7,5],[5,-4],[6,-3],[50,1]],[[68716,91209],[8,-9],[-1,-5],[-1,-4],[-2,-2],[-12,5],[-4,-1],[-1,-2],[2,-1],[-2,-1],[-35,26],[-4,0],[-10,-8],[-5,0],[-5,3],[-1,3],[1,4],[32,9],[28,-7],[12,-10]],[[1226,92742],[2,-1],[1,-3],[0,-5],[-4,-4],[-5,-2],[-6,-2],[-6,3],[-4,6],[-4,5],[-4,3],[-12,2],[-6,4],[-14,13],[3,0],[50,-18],[6,0],[3,-1]],[[94970,91720],[3,-4],[-1,-9],[-5,-8],[2,-14],[2,-13],[-9,-11],[-11,-3],[-13,-1],[-8,3],[-5,7],[-6,13],[-10,9],[-3,11],[1,10],[10,1],[14,1],[17,10],[22,-2]],[[97256,91790],[42,0],[-1,-5],[-7,0],[-7,-15],[-17,-18],[-17,-13],[-9,4],[1,9],[-11,4],[-15,3],[-6,4],[5,9],[22,13],[20,5]],[[73140,92402],[18,-10],[27,-30],[-7,-28],[-19,-16],[-20,-12],[0,-23],[-12,-33],[1,-23],[13,-18],[0,-22],[-14,-14],[-18,-24],[-29,-10],[-7,2],[9,16],[10,25],[-4,27],[2,26],[3,25],[-2,25],[5,25],[16,21],[5,24],[2,25],[7,19],[14,3]],[[77123,95926],[0,-2],[1,-3],[-3,-4],[-4,-2],[-12,8],[-4,1],[-13,-5],[-17,-16],[-1,2],[-1,4],[-1,3],[1,2],[0,2],[-1,2],[-78,2],[-2,4],[97,8],[2,3],[34,1],[1,-3],[0,-3],[1,-3],[0,-1]],[[74735,96154],[24,-9],[-10,-16],[-15,-13],[-21,-22],[14,-16],[-9,-14],[-19,-7],[-29,5],[-32,32],[-10,24],[34,25],[73,11]],[[54113,80589],[6,0],[10,3],[32,-3],[1,5],[-1,21],[0,2],[0,2],[0,3],[1,2],[3,4],[1,3],[-1,17],[-4,9],[-5,5],[-1,6],[2,2],[1,2],[2,1],[1,0],[4,4],[1,3],[1,5],[6,-7],[14,-4],[2,-6],[3,-4],[4,-3],[3,1],[1,6],[3,8],[3,3],[3,-2],[2,-9],[2,-8],[16,-1],[8,-5],[4,-9],[0,-6],[-3,-6],[-2,-11],[1,-9],[3,-10],[3,-10],[3,-6],[6,-6],[5,-3],[4,-5],[3,-11],[0,-6],[-1,-6],[0,-5],[2,-5],[4,-2],[3,4],[3,7],[2,4],[12,1],[55,-26],[4,-3],[3,-7],[2,-3],[3,-1],[23,7],[7,-1],[1,-4],[1,-3],[14,-33],[2,-1],[7,1],[17,8],[4,-1],[4,-5],[4,-9],[2,-8],[2,-8],[-1,-7],[-4,-5],[-1,-2],[0,-1],[0,-2],[1,-2],[12,3],[17,22],[12,-1],[8,-9],[5,-3],[4,1],[4,6],[2,8],[2,6],[3,1],[10,0],[9,-4],[9,-6],[24,-34],[2,-11],[-9,-5],[2,-5],[0,-2],[-1,-1],[-1,-4],[-1,-3],[0,-4],[0,-4],[1,0],[-3,-4],[-6,-8],[-2,-5],[-5,-1],[-9,3],[-4,-2],[-2,-7],[-4,-5],[-5,-4],[-5,-5],[-1,-1],[-3,-2],[-1,0],[1,-7],[0,-2],[-5,2],[-2,-9],[2,-11],[9,-2],[4,-15],[1,-4],[4,-4],[2,1],[2,2],[3,2],[13,0],[2,-2],[2,-5],[1,-6],[-1,-5],[1,-5],[5,-9],[12,-6],[7,-6],[3,-8],[8,-17],[4,-8],[3,-9],[9,-12],[3,-11],[3,-20],[2,-7],[5,-9],[10,-12],[11,-9],[12,2],[8,16],[6,6],[4,6],[3,8],[5,11],[6,7],[6,1],[5,0],[3,1],[4,1],[2,3],[5,9],[3,3],[3,0],[5,-2],[2,0],[1,2],[0,7],[1,2],[4,0],[1,-2],[2,-3],[3,-7],[3,-1],[2,5],[-1,8],[-3,6],[-1,15],[-3,10],[-5,8],[-7,5],[-5,7],[-2,12],[-3,13],[-3,10],[-9,18],[0,9],[8,6],[6,-1],[8,-7],[4,-3],[7,1],[28,-11],[3,-2],[7,-8],[3,-2],[4,-1],[9,3],[3,-1],[-1,-2],[1,-7],[2,-7],[2,-5],[2,-4],[10,-9],[7,-2],[13,0],[5,-3],[-5,-3],[1,-2],[1,-2],[1,-2],[1,-1],[0,-8],[1,-8],[2,-6],[3,-4],[3,11],[6,1],[7,-7],[2,-11],[2,-1],[1,-1],[1,1],[2,1],[8,14],[13,1],[25,-6],[7,3],[4,5],[9,16],[1,4],[1,4],[2,2],[4,-2],[2,-2],[5,-10],[1,-1],[0,-2],[0,-2],[-1,-1],[-3,-11],[-1,-6],[1,-6],[3,-4],[4,-11],[-2,-9],[-6,-6],[-12,-10],[-7,-4],[-14,-1],[-3,-2],[-2,-6],[1,-4],[13,-24],[5,-2],[3,0],[2,2],[3,1],[4,-1],[7,-5],[4,-1],[0,-1],[0,-1],[-3,-3],[0,-4],[0,-3],[3,-4],[3,-5],[2,-6],[2,-8],[2,-7],[3,-6],[18,-24],[10,-3],[10,4],[8,10],[5,2],[11,0],[9,4],[2,3],[-1,6],[-2,4],[-2,0],[-2,-1],[-2,1],[-1,13],[5,-1],[4,-2],[16,-14],[-2,-11],[4,-6],[17,-5],[5,-3],[8,-10],[4,-2],[6,-2],[4,-4],[1,-3],[2,-9],[1,-4],[6,-6],[4,1],[7,9],[0,1],[0,1],[-1,0],[11,2],[11,-5],[20,-16],[7,0],[11,10],[4,-4],[2,-10],[-1,-9],[1,-8],[7,-5],[-7,-12],[0,-16],[5,-18],[6,-19],[3,-17],[2,-4],[3,-4],[9,-1],[4,-2],[4,-4],[5,-9],[4,-3],[4,1],[4,2],[4,1],[4,-4],[2,-4],[1,-21],[2,-6],[3,-10],[1,-5],[4,-26],[1,-12],[-1,-10]],[[55231,79790],[-11,0],[-6,-3],[-11,-14],[-8,-1],[-8,3],[-9,7],[-2,0],[-2,0],[-8,-6],[-12,2],[-6,-5],[-1,-4],[-1,-11],[-1,-6],[-3,-3],[-9,-7],[-12,-20],[-6,-6],[-8,3],[-1,-28],[-6,-7],[-10,-11],[-38,-21],[-8,-11],[-7,-15],[-5,-18],[-3,-19],[-1,-16],[0,-4],[0,-26],[-2,-13],[-6,-14],[-8,-11],[-9,-5],[-15,1],[-7,-1],[-5,-6],[-4,-10],[-2,-9],[-2,-18],[-2,-8],[-5,-7],[-6,-1],[-6,2],[-6,-2],[-5,-5],[-9,-23],[-5,-6],[-54,-30],[-10,3],[-8,12],[-4,3],[-7,-3],[-5,-4],[-6,-5],[-4,-2],[-32,23],[-13,5],[-13,-4],[-15,-15],[-2,-6],[-2,-11],[-4,-7],[-9,-12],[-7,-16],[-14,-57],[-4,-8],[-4,-8],[-1,-11]],[[54706,79254],[-9,16],[-4,39],[-7,13],[-4,0],[-11,-5],[-5,-1],[-5,3],[-10,9],[-5,2],[-10,0],[-5,1],[-3,3],[-2,7],[-1,9],[-2,7],[-6,3],[-5,1],[-16,7],[-5,4],[-3,1],[-2,0],[-5,-3],[-3,-1],[-8,2],[-5,-4],[-14,-35],[-3,-4],[-5,-1],[-1,0],[-4,5],[-6,-2],[-39,8],[-25,-2],[-15,9],[-28,29],[0,2],[0,5],[-2,2],[-5,-2],[0,7],[-2,2],[-3,1],[-4,-2],[3,6],[-2,-1],[-2,2],[-3,3],[-6,0],[-1,2],[-2,3],[-1,7],[-2,2],[-8,0],[-2,-1],[-10,-8],[-5,-2],[-6,0],[-7,2],[-21,17],[-17,10],[-6,3],[-14,17],[-6,5],[-12,5],[-13,10],[-7,2],[-13,1],[-1,1],[-1,3],[-2,2],[-2,0],[-1,-2],[-1,-8],[0,-3],[-4,-7],[-2,-1],[-21,-8],[-5,0],[1,9],[1,8],[-2,8],[-2,8],[-21,3],[-16,7],[-6,-1],[-1,-1],[0,-2],[0,-3],[0,-3],[-4,-13],[0,-16],[1,-19],[0,-16],[-6,-37],[-2,-7],[0,-5],[0,-3],[2,-5],[1,-4],[1,-1],[-4,-10],[-5,-1],[-15,8],[-14,3],[-4,-2],[-2,-6],[-1,-7],[-3,-7],[-1,-11],[-15,-18],[-5,-12],[-1,-16],[0,-19],[-1,-15],[-2,-2],[-4,-6],[-5,1],[-2,4],[-1,5],[-3,6],[-2,0],[-4,-2],[-3,0],[0,3],[0,4],[-1,4],[-2,2],[-4,-1],[-8,-5],[-4,-2],[-4,2],[-11,8],[-6,11],[-4,-4],[-7,-23],[-4,-7],[-14,-9],[-6,-6],[-2,-1],[-3,-1],[-28,14],[-39,6],[-9,6],[-3,3],[-4,8],[-2,4],[-1,8],[1,1],[1,1],[2,6],[1,1],[1,-1],[1,1],[1,4],[-1,3],[-1,2],[-2,1],[-2,2],[-1,5],[-5,10],[-3,3],[-18,15],[-6,7],[-5,6],[-6,4],[-11,4]],[[53837,79350],[-5,8],[-14,37],[-6,15],[-4,3],[-10,2],[-6,3],[-4,7],[-5,9],[-3,11],[0,11],[-5,0],[-5,3],[-5,5],[-5,5],[-4,1],[-2,1],[-4,-3],[-3,-6],[-2,-11],[-7,5],[-9,8],[-8,11],[-4,9],[0,17],[-3,10],[-12,17],[-8,16],[-4,4],[-5,3],[-17,1],[-8,6],[-4,10],[-4,12],[-26,49],[-3,3],[-9,15],[-2,5],[0,6],[-1,5],[-5,3],[-8,11],[-4,5],[-5,3],[-10,4],[-4,-1],[1,-8],[-5,-1],[-17,3],[-5,3],[-5,6],[-9,29],[-5,8],[-13,8],[-5,7],[-4,8],[-1,10],[-1,19],[0,10],[-2,2],[-3,0],[-3,1],[-3,5],[-2,4],[-2,5],[-2,7],[-1,7],[-1,13],[-2,7],[-3,4],[-7,5],[-3,5],[0,2],[2,4],[-2,2],[-1,1],[2,7],[0,8],[-2,6],[-4,3],[-9,6],[-5,4],[-4,5],[-5,11],[-3,8],[-2,6],[4,9],[11,7],[5,6],[0,10],[1,12],[1,8],[6,-2],[2,9],[6,17],[3,9],[0,11],[-1,4],[-4,3],[-12,9],[1,6],[2,8],[-1,9],[-5,6],[-10,1],[-4,6],[-1,0],[-42,31],[-1,4],[0,5],[0,6],[-3,6],[-4,5],[-4,3],[-4,5],[-2,9],[-1,9],[2,14],[0,9],[-3,7],[-3,6],[-7,10],[-13,12],[-3,7],[3,7],[3,3],[2,3],[1,7],[-1,9],[-3,5],[-6,9],[7,-1],[13,-1],[6,-5],[1,-6],[0,-10],[1,-4],[3,-4],[4,-2],[8,0],[2,-2],[1,-2],[0,-3],[-1,-3],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[5,-7],[1,-2],[2,-4],[0,-3],[0,-3],[4,-17],[3,-6],[4,0],[4,3],[0,6],[-1,6],[-1,7],[1,11],[1,6],[6,9],[0,10],[3,4],[3,3],[3,5],[8,21],[3,4],[9,6],[3,4],[1,1],[2,0],[1,1],[1,2],[0,2],[0,2],[-1,2],[1,2],[1,3],[1,3],[2,3],[8,9],[11,4],[21,2],[14,-3],[4,0],[3,4],[6,13],[4,5],[4,2],[5,1],[5,-1],[1,1],[4,3],[3,1],[2,-1],[26,-22],[9,0],[3,3],[6,8],[4,6],[1,11],[2,24],[3,2],[2,1],[2,-1],[2,-2],[3,-1],[2,0],[3,0],[2,1],[1,0],[7,4],[15,-1],[7,7],[4,10],[9,33],[6,-1],[4,-4],[5,-3],[5,4],[3,12],[2,4],[10,10],[2,3],[0,2],[1,1],[3,-2],[2,-2],[4,-9],[2,-4],[6,-4],[5,2],[5,6],[5,8],[2,2],[2,3],[0,4],[-1,4],[4,5],[4,7],[1,8],[-3,9],[11,9],[13,3],[25,0],[5,1],[11,6],[6,1],[12,-2],[5,1],[8,7],[2,0],[2,1],[2,3],[0,3],[-1,5],[0,5],[1,5],[2,5],[3,0],[3,-1],[3,0],[3,3],[4,8],[3,2],[6,2],[10,-2],[5,1],[43,27],[4,4],[5,10],[3,4],[10,3],[22,-2],[8,9],[1,15],[-7,6],[-10,4],[-7,9],[0,6],[2,2],[1,2],[-6,3],[-9,1],[-3,3],[3,6],[4,17],[6,9],[9,2],[10,-4],[2,-3],[2,-3],[2,-3],[3,-3],[3,0],[8,5],[10,-1],[3,2],[2,9],[2,-5],[0,-4],[1,-3],[3,-5],[3,-4],[8,-2],[3,-4],[4,-5],[2,-5],[1,-6],[-1,-9],[-2,-7],[-3,-8],[-2,-7],[3,-4],[16,9],[3,0],[2,-7],[-2,-8],[-5,-15],[-1,-10],[2,-5],[9,-4],[4,-2],[11,-11],[10,-3],[6,-1],[5,2],[2,4],[3,7],[4,16]],[[53837,79350],[-8,-25],[-1,-5],[2,0],[3,-8],[1,-2],[3,-2],[-3,-5],[-1,-7],[2,-19],[-1,-10],[-1,-9],[-1,-8],[-5,-14],[-1,-3],[-3,-3],[-2,-2],[-6,-1],[-1,0],[-2,-6],[-2,-16],[-1,1],[-11,7],[-5,9],[-4,5],[-5,4],[-29,11],[-9,-2],[-9,-4],[-3,-4],[-1,-4],[0,-2],[1,-3],[1,-10],[3,-6],[0,-5],[-1,-6],[-3,-11],[-2,-6],[0,-5],[0,-17],[0,-6],[-2,-4],[-1,-3],[0,-3],[-2,-13],[-4,-9],[-27,-34],[-9,-7],[-39,-10],[-28,-16],[-5,-4],[-10,-15],[-9,-7],[-4,-5],[0,-1],[-15,-4],[-5,-4],[-2,-4],[-5,-11],[-4,-6],[-11,-11],[-1,-2],[-4,-9],[-2,-1],[-1,0],[-2,-1],[-2,-4],[0,-8],[1,-8],[2,-7],[3,-6],[20,-29],[4,-13],[0,-6],[1,-1],[1,-7],[2,-4],[7,-6],[6,-8],[2,-2],[4,-7],[10,-31],[6,-13],[1,-2],[-18,-41],[-1,-5],[-1,-3],[0,-4],[0,-4],[-2,-4],[-5,-12],[4,-6],[16,-5],[4,2],[7,4],[4,-1],[4,-4],[3,-6],[5,-13],[3,-9],[0,-7],[0,-7],[0,-8],[-1,-1],[-3,-12],[-1,-1],[-4,-9],[-1,1],[0,-14],[1,1],[0,-1],[-3,-10],[-1,-1],[0,-11],[1,-3],[0,-4],[1,-3],[1,-3],[0,-5],[-8,-14],[-2,-2],[-3,0],[-2,1],[-1,2],[-3,2],[-3,0],[-2,-1],[-2,-2],[-3,2],[-14,15],[-13,20],[-2,3],[-3,1],[-4,1],[-7,8],[-1,15],[3,14],[8,5],[-6,8],[-7,7],[-4,7],[2,11],[-4,-1],[-16,6],[-10,0],[-10,-4],[-5,-4],[-10,-12],[-2,-4],[-5,-2],[-6,-2],[-5,0],[-4,3],[-8,10],[-3,3],[-1,5],[-3,13],[-1,3],[-5,2],[-11,-6],[-5,-2],[-16,5],[-6,-1],[-6,-5],[-3,0],[-3,3],[-1,7],[1,4],[2,4],[1,4],[0,7],[1,2],[-1,0],[-4,-2],[-2,-3],[-7,-8],[-4,-2],[0,-5],[1,-3],[2,-4],[3,-3],[1,-2],[1,-3],[0,-16],[0,-5],[-1,-4],[-8,-15],[-2,-1],[-64,4],[-23,-6],[-3,-3],[-3,-10],[-3,-2],[-16,5],[-22,0],[-12,4],[-6,0],[-1,-2],[-7,-9],[-2,-7],[-2,-13],[-2,-6],[-5,-8],[-6,-3],[-13,-4],[-6,3],[-7,2],[-6,-3],[-13,-21],[3,-2],[3,-3],[1,-4],[-2,-6],[-5,-3],[-12,0],[-5,-2],[-5,-8],[-4,-7],[-4,-6],[-6,-4],[-7,1],[1,16],[-6,4],[-7,-3],[-18,-18],[-6,-3],[-29,1],[-4,3],[-2,8],[1,3],[1,4],[0,4],[-1,3],[-14,21],[-14,10],[-2,5],[9,9],[2,4],[-6,7],[-3,2],[-4,0],[-4,-1],[-11,-8],[-8,-1],[-3,1],[-1,3],[-1,3],[-1,2],[-37,20],[-7,0],[-3,-4],[-6,-11],[-4,-4],[-3,-1],[-12,2],[-4,3],[-2,3],[-2,2],[0,5],[1,4],[1,3],[0,2],[-1,6],[-1,1],[-2,-1],[-5,-2],[-4,-2],[1,-5],[2,-7],[2,-6],[0,-6],[-3,-23],[4,-3],[2,-4],[2,-5],[1,-8],[0,-12],[-3,-14],[-4,-12],[-4,-9],[-3,-2],[-6,-3],[-3,-3],[-1,-3],[-6,-18],[-5,-10],[-6,-7],[-12,-11],[-6,-4],[-18,-3],[-4,-1],[-2,1],[2,4],[2,7],[1,1],[4,1],[1,2],[1,4],[0,4],[-1,4],[5,22],[0,10],[-5,4],[-12,-3],[-3,-5],[-1,-1],[-2,0],[-3,2],[-1,0],[-4,-2],[-2,-2],[-2,-1],[-2,4],[-2,6],[0,6],[-1,6],[-3,6],[6,7],[2,6],[-3,7],[-13,29],[-4,-2],[-2,-3],[-3,-2],[-3,3],[0,3],[0,2],[0,2],[-3,8],[-3,5],[-3,5],[-1,10],[-3,-4],[-4,-1],[-9,1],[-8,4],[-1,0],[-4,-3],[-2,-1],[-6,5],[-1,6],[1,7],[-1,7],[-3,5],[-4,2],[-4,0],[-4,-4],[-7,-10],[-3,-10],[-4,-10],[-8,-5],[-17,0],[-17,6],[-1,1]],[[52652,78620],[-77,69],[-10,3],[-11,0],[-4,9],[-15,0],[-31,5],[-5,-3],[-5,-7],[-10,-5],[-11,-1],[-6,2],[-8,9],[-1,0],[-4,6],[0,4],[5,2],[-7,10],[-9,7],[-7,1],[-3,-12],[3,-4],[-15,0],[-1,4],[0,4],[-3,4],[-1,5],[1,4],[4,8],[1,2],[-2,6],[-3,1],[-3,-1],[-3,1],[-2,5],[-2,7],[-3,5],[-3,2],[-3,-4],[-1,-13],[-4,-3],[-3,3],[0,7],[-1,8],[0,4],[-5,4],[-7,0],[-5,-3],[3,-10],[-4,-3],[-15,-4],[-3,0],[-3,-2],[-3,-8],[-2,-4],[-2,-12],[-3,-4],[-7,-5],[-2,-5],[-1,-4],[1,-5],[1,-5],[-2,-6],[5,-2],[1,-1],[7,-8],[6,-4],[5,0],[4,3],[4,4],[4,3],[14,3],[3,-1],[4,-1],[1,-1],[2,-1],[-1,-14],[-2,2],[0,3],[0,1],[-2,0],[-1,-1],[-1,-1],[-1,-3],[1,-3],[0,-2],[1,-2],[-1,-4],[0,-4],[0,-5],[-1,-3],[-1,-1],[-4,-2],[-2,4],[-1,1],[-3,8],[-4,6],[-9,-1],[-8,-8],[-3,-10],[-1,-3],[-7,-2],[-1,0],[-18,0],[-10,4],[-3,2],[-2,6],[-2,6],[-1,2],[-3,1],[-8,3],[-5,0],[-15,-4],[-1,-1],[-1,-3],[-2,-3],[-5,-2],[-6,-5],[-3,-2],[-2,-4],[-1,-3],[-1,-3],[-3,-2],[-13,-4],[-36,0],[0,2],[-1,6],[-1,5],[-2,3],[-17,1],[-4,3],[-5,-11],[-5,-8],[-5,-4],[-11,-3],[-12,-4],[-6,1],[-4,3],[-11,8],[1,0],[7,0],[3,4],[3,15],[-6,-1],[-14,-6]],[[51762,79758],[0,4],[-1,18],[2,19],[1,6],[0,19],[1,6],[4,9],[8,13],[2,8],[2,4],[1,3],[0,4],[-2,2],[-1,2],[-1,2],[4,8],[21,18],[-1,1],[-2,4],[1,2],[2,1],[2,-1],[-2,4],[-1,4],[-1,5],[0,5],[3,3],[0,3],[-1,2],[0,4],[2,13],[0,1],[0,5],[1,1],[0,-1],[-2,3],[-1,0],[-8,3],[-14,0],[-5,2],[-4,4],[-8,11],[-5,4],[-2,0],[-5,-4],[-2,1],[0,2],[-2,6],[-1,4],[-1,3],[-4,4],[-10,5],[-4,7],[-9,30],[-5,10],[-3,-8],[-2,6],[-4,16],[-5,10],[-1,5],[0,7],[-1,12],[-2,5],[-3,2],[3,7],[1,2],[-1,0],[-2,0],[2,17],[1,8],[2,9]],[[51699,80152],[2,4],[1,4],[-1,3],[-3,4],[1,2],[1,7],[0,2],[3,2],[5,1],[2,2],[2,5],[0,7],[-1,7],[-4,5],[3,5],[6,6],[3,6],[6,4],[12,4],[5,7],[-2,5],[1,6],[2,6],[3,4],[3,3],[3,0],[4,-2],[3,-1],[8,2],[3,5],[0,5],[0,3],[-10,23],[0,7],[2,8],[1,14],[1,10],[-1,2],[-2,1],[-3,5],[-1,6],[-1,5],[1,5],[3,4],[-5,1],[-12,3],[-5,3],[0,1],[-1,0],[-1,0],[0,-1],[-10,-4],[-2,0],[-3,3],[-2,7],[-2,2],[2,6],[-3,0],[-2,1],[-1,3],[2,4],[-4,8],[5,11],[9,10],[6,5],[0,2],[3,5],[2,6],[-1,3],[-19,1],[-6,4],[-3,8],[4,4],[-17,35],[-5,7],[-5,1],[-11,-5],[-4,1],[-1,5],[1,6],[0,6],[-4,3],[-1,1],[0,1],[0,1],[1,2]],[[51665,80525],[0,7],[-1,4],[-3,2],[-2,5],[-2,8],[5,-1],[4,5],[1,7],[0,5],[-1,5],[3,6],[4,3],[6,-1],[3,5],[2,6],[0,5],[-3,12],[1,4],[1,3],[1,3],[-9,4],[-7,6],[-2,3],[-1,5],[0,8],[1,5],[2,5],[-1,3],[-10,-2],[-7,4],[-4,0],[-4,-1],[-7,-5],[-4,-1],[0,15],[-4,17],[-2,14],[8,5],[4,-2],[3,-6],[4,-5],[5,1],[3,5],[6,15],[3,6],[26,27],[16,11],[4,8],[-6,7],[7,7],[2,2],[-7,3],[-13,-13],[-7,5],[-2,11],[1,13],[2,12],[3,6],[6,10],[14,35],[3,4],[7,6],[3,6],[1,7],[1,13],[2,5],[-4,7],[0,11],[2,12],[1,12],[-1,11],[-2,19],[-11,17],[-19,34],[-1,8],[1,8],[4,13],[-19,11],[-6,11],[3,17],[-2,4],[-7,6],[-3,2],[-8,0],[-3,1],[1,6],[1,3],[5,6],[0,11],[-4,12],[-6,6],[1,6],[5,4],[11,3],[5,3],[6,5],[4,3],[11,4],[9,-3],[7,-2],[5,-2],[-4,8],[-11,14],[-3,4],[9,7],[9,-6],[9,-9],[10,-6],[8,3],[3,0],[2,-3],[3,-7],[1,-2],[11,-2],[4,-4],[1,-9],[10,4],[2,6],[-3,13],[18,-7],[6,0],[4,3],[14,14],[28,12],[24,1],[8,6],[6,10],[7,15],[2,3],[2,1],[1,1],[1,8],[-1,4],[-2,3],[-7,10],[-18,13],[-6,2],[-4,4],[-1,9],[2,7],[3,1],[2,0],[4,3],[2,3],[2,8],[2,3],[4,7],[5,3],[1,0],[17,3],[3,4],[7,16],[5,8],[12,7],[5,6],[7,14],[3,5],[12,9],[1,3],[-1,2],[-1,4],[-3,13],[0,11],[2,9],[6,16],[2,22],[-4,15],[-16,36],[-2,-1],[-2,-4],[-3,-3],[-6,-3],[-8,0],[-8,1],[-14,7],[-22,4],[-7,5],[-6,8],[-1,9],[-1,11],[-1,10],[-3,10],[4,0],[16,10],[-9,10],[-2,4],[0,5],[1,5],[0,5],[-2,6],[5,5],[5,5],[9,3],[27,1],[14,-6],[14,3],[4,-2],[10,-4],[5,12],[2,21],[3,64],[2,20],[3,10],[2,8],[23,46],[6,20],[2,19],[1,21],[-3,42],[-1,6],[-1,3],[-1,4],[0,7],[0,4],[4,13],[2,11],[1,9],[0,9],[-1,17]],[[51998,82002],[3,2],[3,4],[2,5],[3,6],[1,7],[-2,7],[7,13],[3,3],[7,0],[6,-2],[9,-8],[6,-3],[-7,13],[-11,5],[-63,3],[-10,6],[-5,17],[0,44],[2,10],[5,18],[1,9],[3,5],[5,0],[11,-3],[2,5],[2,1],[2,6],[0,8],[-3,4],[-8,5],[-3,5],[-1,8],[4,6],[9,8],[10,14],[5,5],[11,14],[22,11],[42,6],[3,-3],[3,-5],[7,-2],[41,11],[83,15],[22,-9],[0,-4],[-1,-17],[7,-21],[12,-19],[9,-8],[0,-4],[-2,-7],[4,-3],[6,-2],[3,-6],[0,-11],[-3,-5],[-6,-6],[-5,-3],[-11,-2],[-5,-4],[5,-19],[3,-8],[3,-5],[4,2],[3,2],[5,0],[3,-3],[5,-7],[2,-2],[3,-3],[2,-5],[3,-6],[4,-2],[4,0],[4,1],[3,2],[3,4],[6,13],[6,20],[2,21],[-8,12],[-11,-4],[-6,1],[0,9],[3,9],[2,21],[2,8],[4,5],[5,2],[11,1],[5,-3],[5,-7],[3,-8],[3,-6],[12,-7],[23,-6],[11,-7],[0,-4],[-7,-8],[-6,-9],[-4,-13],[-2,-17],[0,-33],[2,-15],[4,-11],[1,15],[-3,37],[0,17],[4,13],[7,6],[5,7],[3,17],[-2,3],[-7,23],[-2,3],[-3,8],[-2,9],[-2,12],[-4,13],[-1,10],[1,10],[1,9],[11,32],[7,36],[5,16],[4,8],[5,6],[6,5],[7,2],[6,-1],[3,-2],[7,-10],[10,-10],[10,-7],[22,-7],[12,1],[20,6],[11,-1],[5,8],[22,6],[22,0],[5,4],[4,-3],[4,-1],[10,0],[2,-2],[6,-10],[27,-60],[11,-17],[8,-8],[4,-6],[4,-18],[19,-36],[4,-5],[5,-3],[7,-1],[3,-2],[17,-14],[19,-6],[15,-4],[4,2],[-4,8],[-10,7],[-25,4],[-10,5],[-20,17],[-10,13],[-3,19],[-1,16],[-1,10],[-2,3],[-14,10],[-4,2],[-6,7],[-7,18],[-4,19],[-1,12],[-10,5],[-17,19],[-11,8],[-10,4],[-36,1],[-10,6],[-7,2],[-3,-2],[-3,-6],[-7,2],[-10,10],[-9,14],[-23,59],[11,6],[5,1],[7,-3],[11,-9],[6,-2],[6,3],[2,7],[2,11],[2,13],[0,9],[-4,6],[-5,6],[-4,6],[1,7],[0,4],[-7,2],[-9,-2],[-9,-6],[-5,-7],[-2,0],[-8,17],[-5,13],[-1,3],[3,12],[4,10],[3,10],[-2,9],[0,4],[3,3],[12,4],[5,1],[3,3],[4,7],[4,9],[3,9],[-6,-1],[-11,-12],[-6,-3],[1,2],[1,4],[0,2],[-8,-1],[-15,-6],[-8,-1],[-10,2],[-4,-2],[-10,-11],[-3,-1],[-7,3],[-8,9],[-6,13],[-1,15],[4,7],[8,4],[8,2],[7,0],[0,4],[-5,1],[-4,5],[-4,1],[-4,-7],[-2,6],[0,7],[3,6],[3,5],[6,-3],[22,7],[31,0],[7,3],[6,4],[11,13],[11,7],[5,4],[2,10],[0,14],[-7,14],[-23,30],[-3,6],[-2,7],[-2,2],[-6,0],[-6,-2],[-3,-3],[-2,5],[10,8],[-10,32],[-4,8],[-8,7],[-15,16],[-9,6],[0,4],[2,10],[-4,13],[-5,11],[-4,11],[-2,15],[1,14],[4,17]],[[52405,82980],[10,-4],[10,0],[19,9],[7,1],[22,-5],[22,-11],[59,-17],[4,-5],[1,-6],[1,-8],[2,-7],[5,-3],[21,0],[4,1],[2,3],[4,2],[3,3],[5,2],[6,-7],[5,-1],[4,2]],[[52621,82929],[4,0],[16,11],[6,8],[6,3],[4,8],[4,3],[0,-21],[14,-6],[17,-1],[12,-7],[4,-4],[8,-4],[6,-6],[3,-10],[3,-6],[8,2],[12,6],[-1,12],[7,1],[9,-7],[6,-10],[4,-20],[2,-5],[2,-5],[5,-6],[-3,-4],[-4,1],[-3,2],[-3,1],[0,-2],[-7,-7],[-1,0],[-1,-1],[-2,0],[0,-1],[0,-6],[4,0],[7,3],[7,0],[4,-7],[3,3],[4,1],[1,-4],[-2,-8],[2,-8],[0,-12],[-2,-25],[-1,-10],[-2,-8],[-3,-7],[-3,-7],[-9,-10],[-11,-8],[-13,-5],[-11,-1],[0,-4],[12,-8],[67,20],[5,-2],[17,-19],[-6,-7],[0,-6],[3,-7],[1,-10],[-2,-8],[-4,-7],[-5,-5],[-4,-2],[0,-2],[1,-1],[0,-1],[-1,-4],[3,-4],[0,-5],[-1,-6],[-2,-6],[6,3],[4,7],[7,19],[4,19],[2,5],[2,3],[11,1],[4,3],[1,3],[2,3],[2,3],[4,2],[11,-2],[7,-3],[16,-17],[44,-24],[25,-29],[11,-4],[13,3],[9,7],[16,19],[9,7],[10,5],[23,4],[0,-4],[-5,-1],[-7,0],[5,-2],[5,2],[6,-6],[20,15],[9,-4],[-11,-15],[-3,-5],[-1,1],[-4,3],[3,-10],[2,-24],[2,-11],[-2,-7],[0,-10],[2,-17],[-1,-11],[-3,-5],[-2,-4],[-1,-5],[-33,-26],[-11,-18],[-5,-4],[-11,-5],[-2,0],[-2,-2],[-2,1],[-2,3],[-3,0],[-2,-2],[-1,-1],[-11,-21],[-3,-4],[0,-4],[4,-11],[4,-9],[5,-5],[8,-3],[11,1],[2,-1],[2,-7],[1,-7],[1,-5],[4,-2],[1,0],[3,0],[2,0],[3,4],[8,11],[5,2],[5,1],[15,10],[34,6],[2,-1],[2,-4],[2,-8],[2,-4],[10,-4],[1,-3],[-1,-13],[1,-6],[3,-3],[8,0],[3,0],[11,12],[2,-1],[3,-9],[2,-2],[11,0],[0,-2],[11,-17],[2,-1],[3,0],[1,6],[2,9],[2,12],[-1,10],[2,4],[3,3],[2,0],[0,3],[-1,7],[0,3],[9,12],[0,4],[-2,0],[0,4],[7,-4],[3,0],[5,5],[5,16],[4,3],[2,1],[2,3],[2,4],[1,4],[0,3],[-2,2],[0,3],[1,3],[1,2],[1,2],[7,15],[9,8],[10,2],[24,-5],[66,18],[10,8],[2,-17],[-1,-16],[0,-14],[7,-10],[-3,7],[-1,16],[-2,6],[3,6],[8,6],[2,8],[-3,1],[-3,-1],[-2,-2],[-3,-2],[2,6],[9,15],[6,6],[7,14],[4,4],[3,1],[21,14],[11,11],[4,6],[10,25],[17,30],[1,5],[12,25],[4,16],[3,5],[6,3],[0,-3],[-2,0],[6,-12],[12,-6],[63,0],[11,-7],[6,5],[8,-2],[4,-7],[-7,-8],[-7,-2],[-30,3],[-12,6],[-7,1],[-2,-1],[-3,-6],[-2,-1],[-6,0],[-7,2],[-3,-2],[-1,-8],[-2,4],[-1,-1],[-3,-2],[-2,-1],[1,-5],[1,-2],[2,-1],[2,-1],[-1,0],[-1,0],[0,-1],[0,-2],[-5,3],[-6,0],[-5,-4],[-3,-7],[-4,7],[-6,3],[-10,1],[-4,-2],[-4,-7],[-2,-9],[2,-9],[-4,1],[-2,0],[-2,3],[-2,-4],[2,-8],[-1,-7],[-4,-5],[-4,-1],[1,-8],[3,-6],[0,-6],[-3,-4],[12,-11],[7,-2],[6,5],[-4,-1],[-4,2],[-5,7],[2,7],[2,5],[7,8],[2,2],[3,1],[1,1],[1,3],[0,7],[1,3],[4,5],[19,11],[-4,3],[-2,1],[0,4],[5,2],[2,0],[2,-2],[0,4],[6,-6],[8,3],[15,10],[-1,2],[0,5],[-1,2],[3,3],[3,1],[4,1],[3,-1],[0,-4],[-4,-1],[-3,-5],[-1,-7],[-1,-7],[3,7],[2,4],[1,5],[2,-6],[3,-5],[3,-2],[3,5],[3,-4],[3,0],[3,3],[2,4],[1,-4],[2,-4],[1,-4],[5,-8],[1,-1],[1,1],[3,1],[5,-1],[3,1],[3,4],[3,4],[2,10],[3,6],[7,9],[11,9],[11,5],[7,-3],[-3,-4],[-1,-7],[3,-8],[3,-6],[12,-7],[3,-4],[-5,-12],[1,-9],[8,-16],[1,-6],[0,-7],[0,-5],[4,-2],[12,0],[0,-4],[-3,0],[-1,-1],[-4,-3],[9,1],[15,-10],[10,-3],[7,-5],[9,-24],[7,-8],[-4,-4],[-3,-4],[7,0],[10,7],[6,-3],[-3,-7],[-1,-3],[-2,-2],[3,-3],[2,2],[2,2],[3,-1],[1,-3],[4,-14],[4,-8],[4,-7],[5,-5],[6,0],[0,4],[-2,3],[-3,7],[-2,2],[0,4],[34,9],[8,5],[14,12],[8,3],[2,-3],[-1,-3],[-2,-1],[-2,-1],[0,-4],[8,-6],[22,-23],[0,-4],[-4,-8],[-2,-12],[-4,-10],[-7,-6],[3,-3],[8,-13],[3,-6],[2,-2],[8,-4],[2,-2],[1,-4],[1,-4],[0,-3],[1,-2],[-1,-3],[0,-2],[1,-1],[4,0],[1,0],[2,-2],[1,-1],[2,-1],[2,0],[3,-2],[1,-6],[-2,-7],[-3,-5],[-20,-21],[-3,-8],[3,-7],[5,-3],[5,-2],[2,-2],[2,-6],[4,-8],[5,-5],[3,1],[20,-22],[9,-2],[5,-7],[1,-2],[6,1],[2,-1],[7,-5],[4,-2],[22,-2],[8,3],[3,8],[2,2],[5,-1],[4,-5],[1,-9],[-3,-5],[-13,-12],[4,-2],[4,-2],[5,-1],[2,1]],[[53962,82272],[0,-17],[-1,-9],[4,-12],[6,-23],[0,-6],[0,-21],[0,-14],[2,-12],[7,-13],[2,-12],[6,-13],[3,-31],[6,-34],[2,-11],[0,-5],[1,-11],[0,-6],[2,-4],[4,-4],[1,-4],[4,-4],[-7,-18],[-2,-4],[-3,-2],[-3,-5],[-2,-8],[-1,-7],[1,-10],[2,-8],[1,-9],[-9,-34],[-1,-4],[-3,-11],[-9,-12],[-16,-16],[-17,-12],[-14,-13],[0,-3],[2,-6],[4,-21],[0,-8],[-1,-11],[-3,-7],[-7,-8],[3,-9],[5,-5],[6,-2],[6,-1],[5,-3],[9,-14],[8,-5],[30,-28],[4,-7],[9,-24],[3,-3],[6,-4],[7,-14],[17,-8],[16,-24],[2,-2],[8,-10],[-7,-21],[-2,-14],[5,-6],[1,-6],[-5,-14],[-6,-14],[-15,-16],[2,-24],[6,-26],[6,-17],[-1,-11],[6,-9],[9,-6],[8,-3],[8,-4],[4,-10],[0,-13],[-5,-9],[0,-4],[4,-8],[-1,-8],[-3,-11],[-2,-15],[3,-9],[18,-18],[-5,-8],[-2,-5],[-1,-5],[-1,-6],[-1,-6],[-6,-14],[-1,-6],[-1,-36],[-3,-11],[-4,-11],[-5,-9],[-16,-21],[-4,-11],[1,-12],[5,-10],[5,-4],[4,-7],[1,-16],[2,-15],[7,-9],[13,-15],[4,-11],[3,-15],[0,-15],[-3,-12],[-6,-11],[-2,-12],[1,-4],[1,-6],[6,-9],[18,-8],[6,-6],[6,-5],[13,-5],[6,-4],[5,-4],[5,-7],[3,-9],[-3,-7],[1,-16],[2,-25],[1,-11],[1,-4],[5,-12],[6,-10],[5,-11],[-2,-18],[1,-2],[1,-1],[-5,-13],[-3,-15],[-3,-17],[0,-15],[0,-8],[-2,-4],[-2,-2],[-2,-4],[0,-6],[0,-12],[-1,-6],[-13,-43],[-14,-45],[-10,-14],[-4,-9],[0,-11]],[[53947,82413],[-5,-16],[-2,-2],[-3,-1],[5,-8],[2,-9]],[[53944,82377],[-31,-4],[-7,1],[-4,4],[-7,-9],[-8,-6],[-16,-6],[-17,0],[-10,4],[-5,8],[3,2],[6,6],[9,2],[10,7],[2,4],[2,17],[-10,24],[1,16],[14,-2],[5,-2],[-2,-5],[1,-3],[-3,-11],[0,-10],[4,10],[4,2],[11,0],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[10,-4],[-2,8],[3,14],[0,16],[-4,10],[-7,-3],[-2,9],[-3,8],[-4,7],[-4,4],[-6,2],[-5,-2],[-3,-4],[2,-8],[0,-4],[-2,-2],[-2,-3],[-2,-5],[-1,-4],[-2,-2],[-10,-4],[1,8],[2,5],[2,3],[1,4],[-1,7],[-3,1],[-2,-2],[-9,-5],[-4,-7],[-4,-5],[-5,3],[2,11],[7,20],[2,15],[-2,9],[-12,15],[-3,7],[2,7],[5,5],[5,3],[5,-3],[2,-6],[6,-19],[3,-8],[8,-9],[18,-13],[11,-6],[8,-6],[49,-68],[5,-4]],[[51888,82215],[-6,-1],[-10,-6],[-5,-1],[0,-4],[3,-1],[2,-2],[2,-4],[2,-6],[-2,2],[-4,6],[-2,1],[-3,-1],[-4,-3],[-2,0],[-5,3],[-4,7],[-1,7],[4,3],[21,8],[10,1],[4,-9]],[[51909,82255],[10,7],[38,6],[11,-4],[-59,-9]],[[51981,82276],[13,10],[15,3],[31,-1],[0,-3],[-1,0],[-13,-7],[-34,-6],[-11,4]],[[52046,82288],[4,4],[6,1],[5,-1],[4,-4],[-1,-2],[-1,-1],[-2,-1],[-11,4],[-4,0]],[[52255,82284],[4,8],[5,3],[6,-1],[6,-6],[-4,0],[-3,-1],[-4,-6],[-1,-1],[-3,1],[-1,1],[-2,1],[-3,-3],[0,4]],[[52088,82308],[24,1],[6,-5],[0,-2],[0,-1],[-1,0],[-1,0],[-20,0],[-9,-2],[-1,-11],[-8,0],[-3,2],[-1,8],[2,7],[3,3],[9,0]],[[52128,82308],[7,12],[11,3],[24,-2],[0,-4],[-4,0],[-6,-5],[-8,-4],[-8,-1],[-7,6],[-3,-5],[-2,-2],[-2,0],[-2,2]],[[52187,82317],[-6,5],[2,3],[4,3],[6,1],[5,-1],[4,-2],[7,-5],[-2,0],[-3,0],[-12,3],[-5,0],[0,-7]],[[53159,82438],[4,14],[11,11],[11,5],[8,-5],[-8,-31],[-3,-6],[-3,0],[-1,4],[2,11],[-1,7],[-2,0],[-2,-5],[2,-9],[-4,-4],[-5,0],[-4,4],[-5,4]],[[53202,82494],[0,1],[1,5],[19,11],[4,5],[-5,-9],[-12,-14],[-4,-10],[-2,0],[-1,11]],[[52489,82759],[-1,0],[-1,-2],[0,-3],[0,-3],[-5,-6],[-3,-7],[-4,-7],[-7,-4],[-12,-1],[-5,2],[-4,7],[4,2],[0,3],[-1,4],[-3,3],[9,10],[10,6],[11,0],[12,-4]],[[53126,82733],[16,-39],[-35,8],[-5,-4],[2,-2],[1,-1],[-11,-1],[-8,1],[-3,5],[1,12],[-2,5],[-4,2],[-7,0],[-3,-1],[-2,-4],[-2,0],[-1,5],[-1,2],[-1,0],[-4,-2],[0,8],[7,24],[11,13],[14,3],[23,-13],[7,-8],[3,-3],[4,-10]],[[53650,82803],[-6,-6],[-2,-10],[0,-12],[-3,-12],[-2,-3],[-4,-4],[-2,-5],[-1,-6],[0,-6],[0,-12],[-2,0],[0,8],[0,13],[9,39],[2,15],[2,4],[5,2],[3,0],[4,0],[1,-4],[0,-7],[0,1],[-1,1],[-1,0],[0,-8],[-2,0],[0,12]],[[53805,82681],[7,-16],[5,-8],[6,-3],[-3,-4],[-4,-5],[-3,-8],[-1,-10],[0,-9],[-1,-4],[-2,0],[-7,3],[4,0],[2,2],[1,4],[-1,6],[-2,0],[-2,-4],[-5,-2],[-4,0],[-4,2],[0,4],[11,6],[4,4],[2,7],[-14,-1],[-7,-3],[-5,-5],[15,14],[5,3],[0,4],[-7,0],[-4,0],[-3,-2],[-3,-6],[-3,1],[-2,4],[-3,3],[-28,-4],[-5,-4],[-14,-17],[-3,-6],[-4,-9],[-6,-2],[-7,-4],[-1,-15],[4,4],[0,3],[-1,0],[-1,1],[14,3],[2,-1],[2,-14],[-1,-6],[-4,-3],[-8,2],[-9,4],[-10,8],[2,3],[2,7],[3,9],[-4,-3],[-2,-2],[-2,-3],[1,-2],[1,-2],[-6,1],[-2,-1],[-3,-2],[-2,-2],[-3,2],[-2,4],[-2,2],[-4,1],[-5,3],[-3,5],[1,7],[-4,2],[-8,-5],[-3,-1],[-2,5],[2,4],[4,1],[4,-2],[0,4],[-17,16],[3,13],[6,11],[7,4],[8,-7],[2,4],[4,-4],[3,1],[9,7],[-5,0],[-3,4],[-1,6],[1,6],[0,4],[-4,0],[-2,3],[-2,4],[-2,1],[-13,-4],[5,12],[2,4],[8,2],[8,5],[6,2],[0,4],[2,1],[1,3],[-7,3],[-4,3],[-2,6],[1,1],[1,1],[0,2],[0,4],[-8,-4],[-5,-1],[-2,3],[-1,2],[-1,0],[-1,2],[-1,4],[0,5],[-1,3],[-2,2],[-3,0],[7,4],[21,4],[5,-2],[1,-3],[3,-2],[4,-3],[1,-8],[1,-4],[2,2],[1,7],[-2,9],[4,7],[5,7],[6,5],[4,2],[-3,-12],[-2,-5],[-2,-4],[1,0],[2,0],[1,-1],[1,-3],[-1,-3],[-3,-9],[4,0],[4,2],[2,3],[2,7],[-2,1],[-3,2],[-3,1],[0,4],[4,5],[3,-8],[5,-8],[3,-8],[-1,-9],[5,-10],[7,-3],[14,0],[-2,5],[3,8],[1,2],[2,2],[0,4],[-2,9],[-1,4],[-3,3],[0,4],[2,2],[1,1],[1,1],[2,1],[0,3],[-3,0],[-2,-3],[-2,-3],[-2,-2],[-3,0],[-10,0],[-1,2],[-2,4],[-2,5],[-2,1],[-5,1],[-1,3],[-1,4],[-2,4],[-3,6],[-1,3],[-4,-4],[-2,-3],[-4,-8],[-7,-5],[-4,-6],[-6,-5],[-5,3],[-1,7],[2,11],[4,10],[3,4],[1,3],[1,5],[1,6],[-1,2],[-12,-4],[-4,-3],[-2,0],[0,7],[2,4],[3,4],[3,3],[38,14],[8,0],[7,-5],[0,-4],[-4,-4],[-6,-4],[-5,-5],[-2,-9],[1,-10],[2,-9],[4,-6],[5,-5],[11,-5],[36,8],[12,-3],[9,-11],[2,-16],[-8,-14],[-12,-10],[-6,-8],[-3,-8],[1,-10],[3,-11],[3,-8],[3,-6],[6,-3],[13,-4],[6,-6]],[[52314,82860],[14,-32],[5,-4],[-4,-4],[-9,-4],[-7,7],[-5,12],[-5,9],[8,19],[5,7],[6,3],[0,-3],[-1,-1],[-1,0],[-3,-4],[-3,-5]],[[52360,82897],[15,-1],[7,-5],[5,-10],[0,-4],[-3,-5],[-3,-12],[-2,-4],[-4,-1],[-5,1],[-4,2],[-2,2],[-8,-3],[-9,3],[-16,13],[6,12],[6,8],[8,3],[9,1]],[[52322,83011],[-2,-21],[10,-11],[13,-4],[60,3],[-6,-6],[-35,2],[-5,-3],[-7,-7],[-4,-2],[-20,0],[-1,1],[-3,6],[-2,1],[-3,0],[-2,-1],[-8,-7],[-1,-2],[-1,-4],[-1,-12],[0,-2],[1,-33],[-1,-10],[-2,-8],[-1,-2],[-2,8],[0,16],[3,64],[2,13],[22,72],[11,18],[13,-9],[-17,-1],[-2,-3],[8,-1],[2,-7],[-2,-8],[-12,-8],[-5,-9],[-3,-12],[3,-11]],[[52398,82771],[18,9],[0,-6],[-2,-15],[-6,-13],[-8,-5],[-6,0],[-4,4],[-3,8],[2,10],[5,5],[2,1],[2,2]],[[52195,82556],[-1,-1],[-1,2],[-1,1],[-1,2],[-1,2],[-2,2],[4,1],[2,-3],[1,-6]],[[52197,82563],[5,2],[1,-3],[-4,-2],[-2,3]],[[56751,84740],[3,5],[2,6],[1,7],[1,7],[1,7],[13,37],[5,23],[13,18],[5,11],[0,29],[2,12],[0,8],[-1,6],[-2,5],[-1,7],[-1,6],[4,13],[0,7],[0,6],[1,7],[6,8],[8,7],[7,7],[4,14],[-3,13],[-6,10],[-24,21],[-11,5],[-11,1],[-10,-5],[-3,-5],[-3,-7],[-3,-8],[-1,-7],[0,-9],[-1,-5],[-9,-17],[-3,-6],[-4,-4],[-5,-1],[-11,3],[-5,0],[-4,-5],[-5,-14],[-3,-2],[-5,2],[-3,4],[-8,16],[-13,13],[-7,11],[-19,9],[-11,1],[-5,2],[-2,2],[-3,5],[-1,2],[-3,0],[-1,-2],[-2,-2],[-2,-1],[-2,2],[-3,2],[-3,1],[-2,-2],[-2,-4],[-2,-3],[-2,0],[-2,2],[-2,5],[-1,7],[-1,7],[-1,6],[-1,9],[-3,4],[-4,4],[-3,5],[-2,8],[1,6],[1,14],[0,18],[-1,15],[-4,7],[-8,-5],[-4,0],[-5,5],[-5,5],[-3,4],[-2,8],[-1,7],[-1,3],[-4,-1],[-4,-6],[-2,-7],[-2,-2],[-4,4],[-1,6],[1,6],[3,7],[1,6],[-1,11],[-4,14],[-2,16],[2,14],[2,5],[2,1],[6,-3],[2,2],[1,2],[0,3],[-4,5],[-1,8],[1,7],[4,0],[11,-6],[10,2],[10,5],[11,1],[5,-2],[11,-8],[5,-2],[8,0],[1,2],[0,4],[0,4],[-2,2],[-4,3],[-1,6],[2,7],[3,4],[5,0],[11,-7],[5,-1],[-7,10],[-9,7],[-9,0],[-7,-9],[-5,8],[-6,0],[-12,-4],[-20,2],[-6,-2],[-6,-4],[-3,-2],[-2,-4],[-2,0],[-8,3],[-6,-2],[-15,-7],[10,21],[5,6],[9,1],[2,5],[-17,26],[-2,11],[-9,15],[0,12],[6,9],[18,-1],[6,9],[5,-4],[5,0],[5,2],[9,8],[2,3],[1,4],[0,7],[-2,14],[-4,11],[-7,7],[-6,5],[3,-8],[9,-9],[3,-8],[-2,-2],[-5,0],[-2,-2],[-6,-8],[-1,-2],[0,-3],[-1,-7],[-3,-1],[-1,3],[-2,4],[-2,2],[-18,5],[-7,7],[-7,12],[2,0],[4,1],[2,-1],[-2,11],[1,8],[13,16],[3,3],[3,-2],[4,-7],[1,30],[-10,29],[-4,23],[15,11],[3,-1],[6,-2],[4,-1],[2,1],[4,6],[6,4],[4,4],[4,5],[5,0],[15,-15],[1,-1],[3,0],[3,5],[1,6],[-2,6],[-4,3],[3,8],[7,3],[24,1],[12,-4],[13,1],[15,7],[14,1],[11,-13],[6,14],[-2,10],[-18,27],[-3,6],[1,6],[4,6],[3,4],[5,2],[4,-1],[8,-7],[16,-18],[8,-4],[8,5],[-3,10],[-7,11],[-7,7],[6,3],[24,2],[10,5],[3,7],[4,19],[1,4],[18,5],[6,-1],[6,-4],[10,-13],[6,-3],[5,3],[4,5],[4,3],[6,-1],[16,-13],[5,-1],[5,2],[-2,6],[-4,5],[-5,3],[0,4],[7,-1],[3,2],[1,5],[1,7],[3,2],[3,0],[3,-3],[5,-9],[3,-10],[5,-7],[8,2],[3,3],[2,2],[6,15],[1,3],[-3,9],[-2,4],[-2,2],[-2,3],[-1,6],[0,5],[-1,4],[0,4],[-1,5],[8,6],[11,-9],[19,-26],[7,-2],[21,6],[7,-2],[11,-8],[6,-2],[5,3],[-2,16],[4,6],[6,0],[14,-10],[59,-19],[1,0],[-2,14],[3,7],[7,3],[26,0],[3,2],[0,4],[-2,5],[-3,2],[-8,10],[-4,24],[-1,24],[2,11],[4,-4],[10,-20],[5,-5],[6,-2],[4,-7],[9,-15],[6,-5],[9,-3],[8,1],[3,11],[-2,10],[-4,7],[-3,8],[2,12],[-2,0],[-3,3],[-1,1],[7,9],[8,-3],[16,-18],[-2,-5],[3,-7],[2,-15],[4,-6],[5,-3],[3,1],[2,0],[5,5],[4,9],[-2,4],[4,14],[6,-4],[6,-11],[5,-6],[6,1],[0,4],[-1,5],[1,5],[3,6],[3,2],[4,-1],[10,-6],[10,-11],[1,-2],[1,-3],[0,-5],[3,-1],[52,1],[6,-2],[11,-8],[17,-4],[16,-10],[11,-4],[6,0],[5,2],[9,8],[4,2],[12,-1],[10,-4],[11,-6],[10,-9],[12,-14],[12,-15],[14,-6],[12,-8],[5,-2],[50,-5],[44,3],[37,3],[43,-12],[43,-3],[43,-11],[12,4],[10,8],[9,11],[9,21]],[[57597,84538],[-9,-6],[-43,18],[-22,1],[-6,4],[-6,8],[-10,18],[-7,6],[-9,3],[-5,0],[-5,-1],[-4,1],[-4,4],[-3,3],[-5,-2],[-4,-8],[-3,-9],[-4,-8],[-5,-6],[-5,-1],[-22,1],[-9,-4],[-9,-6],[-8,-8],[-2,-4],[-1,-4],[-1,-4],[-3,-1],[-3,1],[-5,4],[-3,1],[-3,-3],[-4,-4],[-5,-1],[-5,7],[-9,15],[-5,6],[-22,11],[-3,1],[-12,10],[-9,13],[-27,49],[-9,12],[-30,29],[-3,8],[-1,12],[1,5],[2,4],[1,3],[-1,6],[-2,3],[-4,2],[-58,6],[-7,7],[-3,12],[-3,12],[-4,9],[-5,0],[-3,-1],[-15,-6],[-6,-1],[-7,1],[-6,4],[-6,9],[-2,5],[0,4],[0,4],[-3,4],[-2,2],[-10,3],[-11,8],[-17,23],[-11,7],[-3,0],[-2,-2],[-1,0],[-3,2],[-2,3],[-3,11],[-2,4],[-5,5],[-5,1],[-3,-4],[-1,-11],[8,-16],[2,-9],[-6,-8],[-9,-6],[-4,0],[-4,4],[-3,13],[-3,15],[-4,12],[-7,5],[-13,0],[-7,-2],[-6,-5],[-3,-4],[-17,-20],[-7,-5],[-22,-4],[-6,-5],[-6,-6],[-3,-3],[-7,2],[-7,5],[-9,2],[-4,-6],[-5,-16],[-5,-4],[-17,-2],[-19,2],[-6,-1],[-14,-16],[-11,-6],[-4,-5],[-4,-14],[-3,-6],[-7,-4],[-8,-1],[-12,6]],[[56650,84885],[-1,14],[5,9],[8,3],[8,-2],[2,-14],[-5,-13],[-9,-5],[-8,8]],[[56452,85117],[7,-3],[9,-7],[9,-9],[4,-10],[-2,-8],[-18,14],[-7,-6],[4,-1],[3,-1],[3,-4],[2,-5],[-12,2],[-6,3],[-5,6],[-1,3],[-1,4],[-2,4],[-3,2],[-4,0],[-1,-1],[-1,-4],[-1,-2],[-1,-8],[-1,-4],[-2,-4],[-2,-2],[-4,-4],[-2,1],[-3,1],[-2,-1],[-1,-7],[0,-4],[0,-3],[1,-4],[0,-3],[-6,-6],[-6,-8],[-6,-5],[-12,11],[-6,0],[-2,-5],[6,-8],[-19,-28],[-4,-3],[-5,-1],[-4,-4],[-8,-12],[-4,-3],[-6,-1],[-13,1],[-6,-2],[-3,-7],[13,-9],[-10,-10],[-15,-3],[-4,14],[-4,3],[-5,2],[-5,-1],[-5,-2],[-4,-5],[-2,-3],[-1,2],[-3,6],[-4,4],[-2,-4],[-3,-10],[-2,-2],[-1,-2],[0,-1],[-2,0],[0,2],[-2,9],[0,2],[-4,0],[-5,-2],[-4,-4],[-3,-5],[-3,-3],[-4,2],[-3,2],[-3,-1],[-2,-2],[-5,-3],[-2,-1],[-9,-6],[-7,-8],[-4,-6],[-2,-2],[-1,-3],[0,-22],[-2,-13],[-2,-13],[-8,-24],[-2,-5],[-3,-5],[-3,-5],[0,-6],[1,-13],[-4,-6],[-39,-41],[-9,-1],[-7,13],[1,7],[-1,6],[-3,5],[-4,2],[0,1],[-1,2],[0,3],[0,3],[8,-1],[2,1],[2,4],[3,12],[1,6],[11,18],[5,13],[2,5],[3,2],[4,-1],[4,-3],[3,-1],[4,1],[1,4],[2,13],[1,5],[11,19],[-6,7],[-11,5],[-19,4],[-6,7],[-10,28],[-6,6],[-18,0],[-9,4],[-8,8],[-5,10],[-2,7],[0,5],[3,3],[15,-5],[-3,9],[-5,9],[-2,7],[6,3],[5,-4],[5,-7],[4,-5],[5,5],[-2,10],[4,6],[6,2],[6,-2],[-3,7],[-3,12],[-12,27],[-6,9],[-7,13],[-4,5],[-8,8],[-7,12],[15,-8],[4,0],[4,2],[1,2],[0,3],[3,5],[10,0],[8,-3],[7,-8],[12,-25],[2,-6],[1,-9],[0,-3],[1,-2],[2,-1],[1,0],[3,2],[0,6],[-2,8],[2,16],[1,7],[3,6],[4,4],[9,5],[3,5],[3,8],[2,5],[2,1],[5,1],[0,-2],[1,-3],[1,-3],[1,-3],[0,-7],[1,-4],[4,-3],[8,-2],[3,12],[0,17],[2,11],[9,9],[39,5],[24,22],[10,3],[3,-3],[5,-14],[3,-3],[2,-2],[3,-5],[2,-1],[2,1],[5,5],[2,2],[6,-2],[4,-4],[5,-2],[6,3],[9,13],[6,5],[10,-6],[14,4],[7,-1],[6,-5],[12,-5],[13,-10],[16,-8],[5,-9],[4,-12],[2,-4],[5,-4],[11,-7],[11,-3]],[[56494,85162],[5,-10],[1,-5],[-6,-5],[-2,-5],[-3,-4],[-4,2],[-5,4],[-5,2],[-9,1],[-4,-2],[-8,-5],[-4,0],[-24,27],[-15,6],[-6,7],[1,13],[3,3],[9,-3],[4,2],[1,3],[2,13],[1,4],[5,8],[6,3],[6,0],[25,-8],[12,-8],[4,-5],[1,-6],[0,-6],[-1,-5],[1,-5],[2,-6],[5,-7],[2,-3]],[[56489,85427],[8,-12],[1,-7],[-3,-9],[-3,-3],[-3,1],[-3,3],[-3,1],[-3,-1],[-9,-7],[-5,0],[-10,6],[-6,2],[-1,-1],[-1,-3],[-1,-3],[-10,-2],[-3,0],[-4,3],[-9,25],[-1,3],[1,7],[4,4],[4,3],[7,1],[10,-2],[20,-6],[12,3],[6,1],[5,-7]],[[56192,85348],[-18,-5],[-9,1],[-37,22],[-5,7],[3,9],[11,2],[20,-3],[82,12],[-5,4],[-1,4],[4,2],[6,-4],[3,0],[0,21],[5,5],[6,1],[5,2],[4,5],[4,9],[1,5],[0,5],[0,5],[3,5],[3,1],[11,-1],[1,0],[7,-1],[8,-4],[5,-5],[-6,-17],[2,-10],[6,-8],[4,-4],[28,2],[27,-14],[4,-8],[1,-6],[-1,-9],[0,-5],[3,-6],[6,-5],[2,-4],[2,-3],[4,-5],[2,-4],[0,-2],[1,-4],[-1,-6],[1,-4],[2,-1],[2,0],[1,-1],[1,-12],[-2,-6],[-4,-1],[-12,9],[-3,1],[-3,1],[-2,-2],[0,-4],[-2,-2],[-3,4],[-5,-3],[-5,0],[-4,-2],[-4,-7],[3,0],[2,-2],[1,-3],[0,-5],[0,-8],[-1,-1],[-3,0],[-3,-4],[-5,-3],[-8,0],[-7,3],[-3,6],[3,6],[6,5],[4,5],[-2,6],[-5,1],[-6,-4],[-7,-5],[-5,-5],[-6,-15],[-9,-34],[-8,-13],[-12,-7],[-15,-2],[-15,5],[-11,12],[3,2],[2,3],[5,8],[-4,6],[-5,11],[-5,12],[-1,10],[0,14],[-1,8],[-3,7],[-13,18],[-8,5],[-8,3],[-9,-1]],[[56809,85765],[5,-9],[5,-15],[-2,-6],[-7,-2],[-8,9],[-1,11],[4,10],[4,2]],[[56461,84708],[3,-4],[1,-5],[-2,-8],[-5,-1],[-6,5],[-3,5],[0,5],[1,5],[1,4],[4,-1],[6,-5]],[[55848,83677],[-1,3],[-2,22],[-4,19],[-13,37],[-3,13],[-1,13],[1,3],[2,12],[1,7],[0,6],[0,6],[-3,23],[-1,12],[1,11],[2,9],[4,8],[1,5],[2,5],[0,7],[0,11],[2,6],[-2,10],[-1,11],[2,6],[5,-6],[1,-6],[2,-16],[2,-7],[-4,-8],[2,-2],[2,-1],[0,-9],[0,-4],[-4,-8],[7,-10],[2,-2],[2,1],[2,4],[1,4],[-3,13],[-1,10],[1,10],[1,7],[-1,4],[-2,10],[-1,6],[-2,4],[-1,3],[-5,5],[-3,2],[-2,0],[-2,2],[-2,4],[-1,7],[0,2],[2,3],[3,24],[10,34],[3,20],[2,50],[-1,12],[-2,11],[-1,10],[4,10],[23,18],[2,5],[19,13],[5,7],[10,18],[3,4],[3,2],[8,8],[9,10],[6,11],[5,17],[4,21],[0,24],[-1,7],[-3,16],[1,6],[2,8],[1,5],[-1,39],[1,12],[2,11],[3,10],[5,8],[4,4],[4,4],[11,32],[19,31],[31,69],[8,11],[12,7],[51,4],[12,4],[55,34],[80,51],[12,4],[6,0],[3,2],[4,2],[3,2],[4,-1],[3,-2],[0,-1],[-1,-1],[-2,-5],[-2,-22],[-1,-24],[1,-12],[2,-9],[16,-26],[62,-62],[20,-29],[22,-22],[14,-10],[10,-3],[3,-2],[1,-4],[0,-6],[2,-6],[6,-14],[1,-3],[3,-10],[2,-12],[2,-20],[3,-11],[4,-5],[2,-6],[8,-54],[3,-10],[4,-3],[5,-2],[13,-18],[23,-11],[24,-6],[3,-3],[14,-23],[2,-3],[2,-1],[13,-5],[17,-2],[48,13],[17,10],[7,4],[11,10],[5,9],[3,8],[4,6],[11,3],[11,8],[27,21],[2,9],[5,6],[7,5],[4,2],[1,7],[2,4],[7,5],[18,25],[6,17],[3,23],[-1,28],[-7,74],[0,22],[-2,13],[-3,6],[-1,7],[1,15],[3,22],[-3,35],[-2,8],[-12,23],[-4,11],[0,11],[-3,28],[0,14],[0,7],[2,8],[3,6]],[[55728,91354],[-72,-4],[-73,-4],[67,-67],[2,-10],[2,-52],[-1,-11],[-4,-12],[-28,-63],[-24,-31],[-52,-39],[78,-38],[-65,-67],[-11,-8],[-11,0],[-125,43],[-123,49],[-94,-6],[-16,3],[-45,36],[-12,7],[-69,-21],[-5,-1],[-3,-4],[-1,-7],[-6,-54],[0,-18],[15,-117],[-6,-24],[-52,-84],[-8,-15],[-8,-11],[-8,-2],[-79,40],[-80,41],[-6,-5],[-22,-34],[-115,-77],[-7,-8],[-5,-11],[-43,-137],[-6,-12],[-29,-41],[-15,-14],[-17,-7],[-47,-8],[-5,-7],[-15,-44],[87,-131],[1,-11],[-8,-77],[-4,-10],[-8,-7],[-17,-8],[-51,-45],[-24,-28],[-103,-170],[-67,-64],[1,-17],[12,-64],[2,-8],[2,-19],[1,-13],[-3,-7],[-119,-72],[-71,-9],[-72,-8],[29,-167],[2,-24],[-4,-13],[-18,-38],[-3,-9],[-14,-140],[0,-28],[2,-32],[-1,-27],[-9,-17],[-22,-20],[-6,-9],[-4,-15],[-8,-55],[-1,-4],[0,-1],[-6,-18],[-39,-54],[-73,-121],[-74,-121],[83,-55],[11,-4],[22,-4],[10,-7],[5,-14],[13,-140],[0,-11],[-4,-11],[-46,-88],[-5,-6],[-6,0],[-98,24],[-98,24],[-70,-19],[-63,-40],[-21,-20],[-55,-87],[-53,-91],[-34,-35],[14,-60],[0,-13],[-4,-12],[-59,-98],[18,-50],[46,-120],[-33,-46],[-3,-10],[1,-12],[16,-91],[0,-13],[-5,-17],[-10,-29],[-3,-16],[0,-12],[52,-143],[2,-5],[8,-30],[0,-8],[1,-22],[-22,-151],[-21,-151],[4,-8],[32,-36],[13,-10],[21,-30],[8,-6],[11,-2],[19,-2],[9,-3],[8,-8],[73,-105],[3,-5],[1,-7],[-10,-56],[-4,-17],[-6,-13],[-20,-32],[-2,-5],[-2,-8],[-5,-40],[-1,-2],[-2,-7],[-6,-3],[-31,6],[-16,-1],[-64,-20],[-8,-8],[1,-12],[11,-28],[5,-19],[6,-44],[4,-21],[8,-23],[29,-57],[31,-85],[4,-16],[1,-19],[-2,-21],[-3,-15],[-5,-11],[-5,-9],[-15,-21],[-4,-8],[-1,-9],[2,-20],[8,-38],[1,-22],[-4,-26],[-8,-21],[-10,-18],[-43,-55],[-41,-36],[-12,-2],[-44,5],[-15,-6],[-4,-5],[-7,-7],[-2,-20],[3,-9],[9,-11],[1,-2],[4,-10],[0,-9],[-2,-22],[0,-11],[-1,-5],[-11,-19],[-7,-8],[-37,-22],[-5,-9],[-2,-16],[2,-13],[30,-117],[6,-40],[1,-13],[0,-13],[-2,-9],[-5,-9],[-3,-10],[-7,-37],[-1,-28],[-3,-16],[-7,-26],[-2,-13],[-2,-15],[-8,-32],[-15,-16],[-18,-5],[-18,1],[-8,6],[0,38],[-4,18]],[[53177,85405],[0,4],[-10,24],[-1,6],[-2,13],[-1,6],[-5,12],[-7,6],[-9,3],[-27,-3],[-9,3],[-4,11],[2,4],[2,1],[5,0],[1,2],[-1,4],[-2,3],[-1,-2],[-2,3],[-1,3],[-1,4],[0,5],[1,2],[0,3],[-1,5],[-3,-3],[-8,-5],[4,-5],[1,-7],[-2,-8],[-3,-4],[-5,0],[-3,5],[-6,14],[3,-16],[1,-8],[-3,-4],[-16,0],[2,9],[-4,5],[-5,5],[-2,7],[-3,2],[-11,5],[-4,0],[3,-11],[-1,-9],[-2,-6],[-5,2],[-3,4],[-2,8],[0,10],[1,10],[-6,-6],[-2,-1],[-3,-1],[-4,-2],[0,-4],[0,-4],[-2,-3],[-5,1],[-6,15],[-6,0],[1,10],[-5,16],[2,12],[-3,-5],[-4,-12],[-3,-4],[-1,14],[3,16],[5,15],[5,12],[-5,1],[-3,4],[-2,5],[-3,2],[-3,-2],[-4,-12],[-2,-2],[-8,5],[-2,13],[-1,13],[-5,9],[3,9],[1,6],[-1,5],[-5,5],[-11,4],[-1,4],[2,12],[8,17],[4,8],[4,3],[1,-5],[0,-9],[-3,-18],[3,-3],[4,1],[3,6],[1,8],[0,10],[-2,5],[-3,4],[-3,5],[-3,13],[-1,14],[0,13],[3,14],[-5,12],[-4,13],[-2,15],[-1,20],[-5,-7],[-6,9],[-4,15],[1,14],[4,10],[6,28],[4,12],[11,14],[7,-18],[5,-29],[6,-24],[3,23],[5,23],[3,21],[-4,19],[2,4],[-3,3],[-8,4],[-6,6],[-3,-4],[-1,-6],[-3,-3],[-12,4],[-2,-1],[-3,-5],[-3,-2],[-11,1],[-7,-1],[-6,-7],[-9,-12],[0,-5],[7,-5],[-3,-10],[-1,-8],[0,-9],[0,-18],[2,-16],[3,-13],[4,-12],[6,-8],[7,-3],[5,-5],[5,-10],[3,-13],[1,-9],[-6,-22],[-14,-21],[-16,-12],[-13,2],[-4,9],[0,12],[1,26],[0,6],[-3,20],[-1,13],[-1,5],[-2,7],[-1,3],[-7,9],[-1,2],[-3,2],[-1,0],[-1,0],[-1,0],[-4,1],[-10,12],[-9,4],[-7,0],[-4,-9],[3,-3],[6,-10],[3,-3],[4,-1],[4,-2],[17,-11],[6,-9],[3,-12],[1,-16],[0,-14],[-1,-17],[-3,-14],[-5,-5],[-8,4],[-18,15],[-9,1],[3,-10],[6,-11],[6,-8],[5,-4],[6,-5],[11,-24],[25,-9],[5,-6],[1,-11],[-3,-10],[-7,-18],[0,-9],[4,-8],[11,-9],[4,-10],[-3,-6],[-4,-5],[-3,-10],[-2,-12],[-5,1],[-10,9],[-13,5],[-3,-1],[0,-4],[1,-11],[-1,-5],[2,-7],[-1,-4],[-8,-2],[-1,-4],[-1,-4],[-3,-13],[-1,-12],[0,-12],[0,-7],[-6,4],[-1,-12],[2,-18],[3,-14],[-3,6],[-2,8],[-1,9],[-3,9],[-1,-12],[0,-27],[-2,-6],[-1,7],[-8,38],[-1,0],[-1,-8],[-3,-13],[0,-7],[1,-5],[3,-5],[2,-6],[-1,-7],[-6,-7],[-9,-7],[-10,-3],[-7,3],[3,6],[10,8],[2,4],[-1,10],[-4,0],[-9,-8],[-4,-2],[-7,-8],[-5,-2],[-2,3],[-5,5],[-5,1],[5,-24],[-6,-12],[-8,-7],[-8,-2],[-30,-1],[-10,5],[7,5],[2,10],[-2,12],[-5,9],[-10,16],[-5,0],[-2,-11],[-3,3],[-6,13],[-2,1],[-2,0],[-1,1],[-1,4],[0,8],[0,2],[-4,2],[-1,-6],[0,-11],[-1,-9],[-4,3],[-2,3],[-3,10],[-1,6],[0,6],[-1,5],[-4,3],[3,6],[0,6],[-2,2],[-9,-9],[-17,3],[6,-11],[17,-16],[4,-15],[5,-8],[11,-4],[9,-9],[0,-18],[-2,0],[-1,3],[-2,2],[-1,3],[-2,-6],[-3,-2],[-8,0],[0,-4],[3,-1],[3,-2],[2,-4],[1,-5],[-7,1],[-19,-9],[0,-4],[1,-1],[2,-4],[-9,-4],[-29,4],[11,-10],[4,-7],[-3,-3],[-12,4],[-4,-2],[-1,-10],[-7,7],[-8,3],[-7,-2],[-3,-8],[5,4],[4,1],[2,-1],[1,-4],[-2,-4],[-2,-3],[-2,-1],[-12,-3],[-6,2],[-6,9],[-1,-8],[-6,-20],[3,-1],[6,-3],[2,-1],[3,2],[9,7],[7,2],[6,0],[7,-2],[7,-4],[-4,-8],[-14,-10],[-6,-7],[6,2],[6,3],[0,-5],[-5,-3],[-5,-5],[-6,-8],[-3,-8],[-9,-7],[-16,-3],[-47,6],[-3,-2],[-2,-4],[-1,-4],[1,-2],[22,-9],[7,4],[-15,9],[-4,4],[32,-10],[1,-11],[-9,-6],[-25,-1],[-10,-4],[8,0],[19,3],[7,-1],[5,-9],[-3,-4],[-10,-13],[-18,-17],[-15,-12],[-12,4],[-2,-2],[-1,-3],[-1,-2],[-2,-1],[-2,1],[-2,5],[-2,2],[-6,4],[-4,0],[2,-7],[6,-5],[2,-5],[0,-6],[1,-13],[-2,-12],[-5,-8],[-5,-7],[-17,-20],[-7,-9],[-8,-7],[-4,-4],[-7,-4],[-4,-7],[-2,-7],[-5,-7],[-2,-7],[-7,-5],[-4,-2],[-4,-1],[-3,-1],[-2,-5],[-2,-5],[-2,-5],[-4,-4],[-3,-1],[-2,2],[0,4],[-2,4],[-10,-21],[-9,-11],[-2,-6],[4,-7],[-5,-9],[-6,2],[-7,2],[-5,-3],[-4,7],[-4,1],[-2,-3],[1,-7],[1,-6],[-5,-2],[-10,2],[-2,-2],[-8,-9],[-3,-4],[-3,-4],[-10,-3],[-5,-3],[3,0],[3,-2],[2,-2],[-4,-10],[-2,-4],[-6,-5],[-1,-4],[0,-3],[-1,-7],[1,-3],[-6,-7],[-5,6],[-3,8],[-4,-1],[-6,-18],[-4,-7],[-4,0],[-3,3],[-9,1],[-4,2],[-1,2],[-3,8],[-3,7],[8,4],[3,3],[4,5],[-6,9],[-4,16],[-4,12],[-7,-1],[5,-12],[1,-11],[-1,-12],[-4,-11],[-15,-12],[-6,-9],[7,-10],[-12,-6],[-44,-7],[-11,-6],[-6,-1],[-9,5],[-3,-2],[3,-11],[-6,0],[-2,1],[-2,3],[1,-12],[-4,-6],[-6,3],[-4,11],[-1,-8],[0,-3],[1,-6],[-53,0],[-34,11],[-4,5],[-1,9],[-16,-10],[-4,-6],[-3,8],[-3,3],[-20,-8],[-1,-3],[0,-2],[0,-2],[-1,-3],[0,-4],[0,-4],[-2,-2],[-2,0],[-11,-5],[-4,-1],[-3,2],[2,9],[-1,11],[6,8],[9,5],[6,6],[3,5],[3,-1],[2,-4],[3,-2],[3,3],[4,13],[2,4],[0,4],[-6,-1],[-17,-12],[-4,-5],[-4,-4],[-22,-10],[-6,0],[5,8],[7,18],[5,6],[-5,4],[-15,-24],[-7,-8],[2,7],[2,7],[0,6],[-2,8],[-3,-2],[-5,-7],[-3,-3],[-4,1],[-6,2],[-5,4],[-2,5],[12,9],[6,3],[22,1],[7,3],[4,9],[-8,-1],[-16,-5],[-8,2],[-7,7],[-13,19],[-7,2],[10,-32],[-1,-4],[-14,-3],[-8,2],[-4,9],[3,6],[0,7],[-1,9],[0,10],[-7,-31],[-3,-9],[5,-1],[2,-3],[1,-4],[2,-5],[3,-3],[5,-5],[6,-7],[3,-3],[0,-2],[-6,-4],[-2,0],[-6,3],[-3,1],[-29,2],[-6,4],[-15,19],[-3,8],[5,1],[5,5],[4,9],[1,11],[3,7],[16,0],[6,3],[-4,4],[-2,0],[6,11],[14,8],[11,15],[22,15],[-5,2],[-7,-3],[-13,-9],[-16,-18],[-5,-1],[-3,5],[-8,20],[-2,6],[2,11],[4,5],[6,0],[5,-6],[4,12],[-6,9],[-6,-2],[-7,-5],[-6,2],[0,-32],[2,-12],[-18,-1],[-17,12],[-28,5],[-14,8],[-16,14],[-3,2],[-4,1],[-5,2],[-5,3],[-3,4],[-4,4],[-18,2],[-15,12],[-7,9],[-3,3],[-8,1],[-3,2],[-2,3],[-5,10],[-2,5],[-1,5],[-1,8],[-1,7],[0,6],[-1,5],[-2,6],[-8,4],[-25,-2],[-11,5],[-5,19],[-11,3],[-10,-3],[-16,16],[2,8],[-11,18],[-12,21],[-6,23],[-6,16],[-3,12],[-3,9],[-8,15],[5,7],[9,10],[2,9],[1,10],[0,11],[0,12],[-2,9],[2,3],[4,2],[3,2],[2,8],[0,3],[-2,3],[-4,6],[0,3],[-2,9],[-2,6],[1,6],[2,0],[3,-5],[3,-2],[8,-17],[6,-5],[2,11],[-2,6],[-7,9],[-12,12],[3,4],[3,3],[3,0],[3,-3],[-4,7],[-10,-3],[-5,4],[3,5],[2,6],[2,17],[46,-36],[-2,-15],[-2,-20],[1,-18],[3,-12],[6,36],[5,3],[13,-1],[5,3],[0,3],[-1,11],[2,2],[8,1],[4,-1],[5,-3],[10,-8],[4,-5],[6,-14],[4,-6],[34,-33],[12,-5],[26,1],[-7,5],[-24,3],[-4,3],[-6,7],[-5,8],[-2,10],[2,7],[4,9],[7,13],[6,7],[19,13],[120,41],[0,4],[-76,-16],[-15,-11],[-38,-10],[-10,-8],[-25,-47],[-15,28],[-2,7],[3,12],[6,4],[7,1],[5,3],[-3,3],[-5,10],[-3,3],[-5,0],[-11,-5],[-5,1],[-6,6],[-6,10],[-4,13],[-1,12],[5,10],[9,6],[27,7],[8,5],[16,5],[5,3],[-10,3],[-14,-3],[-8,1],[6,15],[9,19],[4,6],[13,10],[13,16],[22,10],[20,22],[13,4],[25,-1],[0,4],[-34,0],[-7,-2],[-31,-28],[-13,-5],[-12,4],[-7,19],[42,4],[0,4],[-3,6],[-4,6],[-4,7],[1,-5],[-1,-5],[-2,-5],[-5,-3],[-2,3],[-2,6],[-3,2],[-1,-2],[-4,-8],[-2,-2],[-3,-1],[-3,0],[-2,1],[-4,3],[-3,4],[-1,6],[-2,7],[-1,-12],[-4,-4],[-7,1],[-5,3],[0,4],[3,3],[2,6],[2,6],[3,5],[3,6],[3,4],[7,7],[14,8],[7,6],[6,10],[0,-2],[3,-4],[1,-2],[1,5],[1,4],[4,9],[1,5],[1,12],[1,5],[6,8],[51,24],[32,5],[-11,7],[-46,-11],[-18,-15],[-10,-1],[3,9],[5,8],[4,10],[1,11],[0,12],[1,11],[3,9],[4,7],[-7,-4],[-6,-14],[-3,-18],[-2,-15],[-1,-5],[-2,-7],[-5,-12],[-6,-11],[-10,-25],[-2,-6],[-4,-5],[-11,-10],[-6,-8],[-10,-9],[-4,-1],[-5,3],[-3,12],[-5,1],[2,-8],[-2,-1],[-2,-3],[-1,-1],[0,-3],[2,-2],[2,-2],[2,-4],[1,-5],[-13,-12],[-7,-3],[-3,9],[-1,7],[-2,4],[-3,3],[-1,5],[-1,7],[0,6],[0,6],[1,7],[10,0],[64,18],[-6,8],[-8,1],[-8,-2],[-14,-9],[-34,3],[-4,2],[-4,3],[-3,4],[-4,9],[-2,1],[-2,3],[-3,11],[-1,3],[-3,0],[-5,-7],[-4,-1],[8,-19],[1,-8],[-3,-10],[-6,-8],[-8,-3],[-7,4],[-4,11],[2,-14],[-5,-10],[-14,-13],[5,-1],[20,14],[7,1],[6,-1],[5,-6],[14,-21],[2,-6],[0,-14],[-4,-2],[-17,-2],[-6,2],[-3,-7],[-4,0],[-9,3],[-2,-1],[0,-4],[0,-4],[-1,-3],[-3,-4],[-1,-2],[-3,-3],[-12,-8],[-4,1],[0,7],[2,7],[4,5],[4,1],[0,4],[-6,12],[-5,21],[-6,16],[-7,-4],[3,-1],[2,-3],[2,-4],[-2,-12],[-1,-25],[-2,-10],[-5,-10],[-6,-8],[-6,-5],[-9,0],[-5,6],[-6,12],[-3,13],[2,12],[3,11],[0,14],[-2,7],[-6,-5],[-2,-10],[-1,-12],[1,-25],[0,-7],[-2,-5],[-2,-1],[-3,3],[-2,4],[-1,7],[-1,13],[-3,9],[-1,6],[2,13],[0,7],[-1,7],[-2,3],[-3,-1],[-1,-2],[-1,-32],[0,-2],[-9,-6],[-18,48],[-9,3],[-1,8],[-1,12],[-1,20],[-1,3],[-1,2],[0,3],[2,4],[3,4],[4,1],[8,0],[0,3],[-12,5],[0,4],[6,3],[4,5],[15,24],[4,16],[5,6],[6,6],[6,3],[6,-2],[2,-7],[2,-19],[3,-6],[1,9],[3,8],[0,7],[-3,8],[-4,7],[-1,5],[4,11],[7,12],[14,17],[-1,-6],[-1,-2],[3,-3],[2,-3],[1,-2],[1,-10],[0,-13],[-2,-12],[-4,-11],[-1,-7],[0,-6],[2,-7],[0,-7],[0,-7],[-1,-3],[-6,-6],[-1,-2],[-2,-5],[0,-1],[-5,0],[-3,0],[-2,-2],[-1,-5],[-1,-8],[0,-3],[0,-4],[2,-3],[2,1],[3,5],[2,2],[18,9],[3,4],[3,8],[0,3],[3,11],[0,13],[-3,5],[-1,6],[3,14],[4,14],[4,7],[5,1],[7,-4],[5,-1],[19,0],[8,-4],[2,-9],[-1,-12],[-3,-12],[8,0],[3,1],[2,3],[1,4],[0,10],[0,5],[7,6],[8,2],[17,-2],[0,12],[-26,-10],[-7,2],[-4,7],[2,8],[12,13],[2,4],[1,4],[2,3],[16,4],[4,1],[1,5],[0,5],[1,4],[2,2],[3,-1],[2,-4],[2,-4],[2,-3],[14,-5],[15,6],[34,30],[3,4],[1,1],[4,1],[2,2],[4,9],[1,1],[21,8],[6,8],[-19,-6],[-34,-23],[-24,-24],[-4,-2],[-5,-1],[-11,0],[-5,4],[-3,8],[0,9],[3,4],[3,3],[1,6],[-1,15],[1,5],[3,6],[-7,-3],[-3,-8],[-2,-12],[0,-11],[-4,-7],[-8,-6],[-9,-4],[-6,-1],[-6,3],[-5,7],[-9,16],[-6,7],[-6,2],[-2,4],[4,13],[-5,-6],[-6,-5],[-6,-1],[-4,8],[7,1],[7,4],[13,12],[-1,16],[9,13],[13,8],[11,4],[29,3],[2,2],[2,4],[1,5],[0,3],[-1,3],[-8,7],[17,36],[24,20],[54,18],[0,4],[-7,-1],[-1,6],[0,9],[-2,6],[-2,-1],[-4,-4],[-4,-5],[-1,-4],[-4,-8],[-10,-6],[-10,-4],[-7,-1],[1,16],[-6,20],[-3,18],[19,10],[3,7],[3,9],[4,10],[8,10],[1,6],[-3,8],[16,5],[5,3],[3,4],[6,11],[3,2],[4,0],[0,2],[0,3],[1,3],[1,2],[1,3],[2,3],[9,5],[9,3],[7,4],[10,18],[7,7],[10,2],[10,-2],[18,-9],[-13,-31],[-6,-20],[2,-14],[-3,-7],[-9,-13],[-1,-6],[-3,-45],[-2,-20],[-1,-10],[0,-15],[2,-18],[2,0],[0,33],[1,17],[5,11],[9,25],[1,8],[0,6],[-3,14],[7,13],[9,37],[7,15],[5,5],[8,5],[4,6],[9,22],[4,6],[6,6],[5,4],[39,11],[25,-8],[13,0],[7,16],[-57,0],[0,4],[2,0],[3,1],[2,2],[1,3],[1,6],[3,2],[3,1],[3,1],[15,29],[-8,1],[-11,-9],[-10,-13],[-7,-12],[-9,-17],[-5,-5],[-18,-6],[-10,-8],[-17,-21],[-6,-2],[-7,-1],[-7,1],[-3,6],[2,13],[20,21],[6,11],[-13,-4],[-24,-29],[-13,-8],[-9,-1],[-15,-8],[-9,-2],[-7,-4],[-14,-17],[-6,-4],[-8,0],[-6,5],[-6,9],[-5,11],[-4,20],[-1,4],[-4,-1],[0,-5],[1,-7],[1,-6],[3,-4],[5,-16],[6,-6],[2,-5],[0,-5],[-4,-3],[-9,6],[-8,-6],[-9,0],[-4,-3],[4,-4],[16,-4],[-3,-9],[-8,-11],[-3,-9],[2,-6],[2,-3],[2,-3],[-3,-11],[-3,-8],[-4,-4],[-6,-1],[-6,3],[-13,11],[-5,2],[-6,-5],[-3,-8],[-2,-10],[-2,-10],[-10,-16],[-6,-12],[-2,-4],[-4,-2],[-5,2],[-4,0],[-2,-8],[0,-7],[6,-30],[0,-21],[-5,-16],[-9,-10],[-11,-2],[1,5],[1,4],[-5,2],[-5,-19],[-4,2],[-9,9],[-2,4],[0,5],[-2,4],[-1,3],[-2,2],[2,13],[3,3],[10,-4],[6,0],[5,3],[4,7],[2,10],[-11,0],[-2,-1],[-1,-3],[-1,-2],[-3,-2],[-3,2],[-2,4],[-1,5],[-3,3],[2,4],[5,5],[1,8],[-7,16],[1,10],[5,6],[18,11],[0,4],[-9,-1],[-11,-5],[-10,-7],[-8,-8],[-1,-3],[0,-9],[-1,-4],[-3,-1],[-5,1],[-7,-6],[-6,1],[-5,6],[-3,7],[5,2],[4,6],[1,7],[-4,5],[0,5],[10,1],[20,12],[10,3],[0,4],[-23,-1],[-7,-3],[8,12],[3,7],[-2,5],[-5,0],[-4,-7],[-3,-8],[-5,-5],[1,10],[3,5],[4,3],[2,4],[1,5],[7,17],[3,5],[0,3],[2,6],[2,7],[2,4],[4,4],[10,5],[4,5],[1,8],[-5,-2],[-6,-5],[-2,-3],[-5,-2],[-3,-3],[-3,-6],[-3,-6],[0,4],[-1,5],[-1,4],[-4,-9],[-5,-12],[-4,-14],[-2,-12],[-3,-5],[-10,-30],[-1,-8],[-3,-2],[-12,-16],[-10,-9],[-3,-5],[-1,-6],[-2,-8],[-2,-5],[-6,8],[-10,7],[4,3],[2,1],[0,4],[-15,7],[-4,5],[2,6],[4,3],[7,4],[0,3],[-9,3],[-19,-9],[-8,3],[21,22],[4,10],[-10,-1],[-29,9],[-3,3],[0,6],[1,8],[2,5],[3,3],[4,1],[9,-1],[-5,7],[-3,3],[-12,2],[-3,1],[-1,5],[1,10],[9,12],[24,-1],[9,5],[-4,3],[-9,18],[2,9],[1,2],[-7,14],[1,9],[11,20],[7,3],[9,-8],[8,-11],[6,-6],[3,-2],[14,-21],[8,-7],[14,-8],[13,-4],[12,2],[10,8],[-1,10],[5,5],[6,3],[5,6],[2,7],[0,9],[-2,20],[0,18],[1,24],[3,21],[6,10],[-6,7],[1,11],[4,11],[3,8],[-6,-7],[-6,-2],[-12,0],[-1,5],[3,9],[4,10],[2,5],[-5,3],[-4,-7],[-4,-11],[-5,-5],[-2,-2],[-6,-8],[-2,-2],[-4,-1],[-12,1],[-3,-7],[3,-28],[-2,-6],[-6,-1],[-18,-7],[-19,-21],[-20,-11],[-7,-1],[-7,2],[-8,7],[-9,11],[-8,13],[-17,20],[-4,8],[11,-1],[9,-7],[18,-20],[2,3],[-19,29],[-21,25],[5,0],[12,-5],[-6,13],[-8,2],[-10,1],[-7,7],[-14,22],[-7,9],[-9,3],[7,5],[8,1],[8,-5],[13,-13],[15,-3],[11,-14],[7,-5],[29,-12],[7,-6],[0,-8],[2,-13],[4,-12],[6,-9],[7,-3],[-3,2],[-1,4],[-2,4],[0,6],[6,-5],[11,-13],[6,-2],[-4,8],[-8,10],[-6,9],[3,6],[4,-2],[9,-11],[2,0],[-1,7],[-3,4],[-3,4],[1,9],[-9,6],[-2,3],[-1,4],[-1,5],[-1,5],[-2,2],[-13,0],[-7,1],[-7,8],[-3,0],[-2,2],[-1,7],[1,2],[6,8],[6,4],[13,4],[6,4],[-4,16],[5,8],[21,9],[5,-1],[4,-2],[5,-1],[4,1],[4,2],[8,5],[-9,1],[-7,4],[-3,7],[7,8],[-7,-1],[-20,-15],[-14,-3],[-6,-5],[-2,-14],[-7,-13],[-15,-4],[-14,7],[-6,16],[-1,-14],[-4,-10],[-5,-2],[-4,10],[4,4],[-5,2],[-13,-2],[-6,6],[-2,7],[-3,17],[-2,8],[-2,4],[-1,2],[0,4],[0,6],[-1,3],[-5,7],[-2,5],[3,7],[6,1],[7,-2],[5,-2],[6,-5],[1,-5],[-1,-21],[1,-10],[3,-7],[2,0],[1,9],[-2,28],[1,7],[4,6],[5,2],[3,4],[-1,12],[-1,-2],[-1,-1],[0,-1],[-3,-1],[-8,-6],[-4,-1],[-15,4],[-3,2],[-2,9],[-1,11],[2,11],[2,7],[14,16],[19,2],[19,-7],[22,-15],[8,-4],[18,-3],[12,1],[4,-1],[1,-6],[1,-8],[2,-5],[4,2],[1,5],[-1,5],[-2,6],[0,6],[1,8],[4,4],[4,2],[11,9],[11,-2],[11,-5],[9,-2],[0,5],[-8,6],[-4,4],[2,2],[10,3],[5,1],[5,-4],[6,6],[11,7],[10,3],[5,-6],[-3,-17],[0,-7],[4,4],[3,5],[3,4],[4,3],[4,2],[-3,6],[-1,2],[9,6],[8,2],[24,-1],[9,-3],[6,0],[19,4],[9,-2],[17,-8],[10,-2],[8,-5],[3,-10],[-1,-10],[-6,-8],[8,1],[4,3],[4,7],[3,2],[5,1],[5,0],[3,-1],[3,-7],[-2,-7],[-4,-8],[-3,-11],[5,-1],[5,1],[-1,9],[1,6],[3,5],[8,13],[7,8],[7,5],[16,4],[7,4],[5,9],[6,14],[2,14],[2,6],[3,-1],[7,-7],[3,-3],[39,-4],[14,-7],[3,-2],[2,-4],[1,-6],[0,-7],[1,-6],[1,-4],[4,-1],[16,2],[5,-2],[2,-5],[5,-20],[5,-10],[2,-6],[1,-6],[-2,-5],[-4,-6],[-5,-5],[-9,-5],[-18,-21],[25,16],[13,4],[11,-4],[18,-15],[4,-8],[0,-8],[-7,-30],[7,8],[8,13],[4,16],[-3,16],[-3,1],[-14,4],[-2,2],[-3,7],[-11,31],[-3,5],[-3,4],[-2,5],[-2,17],[-2,4],[0,4],[5,5],[12,3],[29,2],[8,11],[4,6],[4,1],[22,-6],[4,-3],[6,-8],[8,-4],[19,-2],[0,4],[-5,1],[-4,1],[-3,3],[-10,12],[-3,3],[4,6],[13,9],[2,4],[4,7],[7,4],[42,3],[14,5],[11,15],[-10,-1],[-7,-3],[-9,-7],[-42,-9],[-17,0],[-8,5],[-4,9],[0,7],[-1,11],[-1,6],[-1,7],[-2,3],[-3,2],[-1,3],[0,12],[12,11],[3,11],[1,13],[3,7],[11,10],[4,8],[4,9],[5,8],[5,4],[7,2],[7,5],[6,8],[4,9],[-23,-15],[-40,-42],[-6,-2],[-11,5],[-6,1],[5,-7],[5,-6],[3,-6],[-1,-9],[-17,-24],[-1,-6],[5,-8],[6,-6],[5,-8],[3,-25],[4,-8],[4,-4],[6,-4],[-11,-14],[-4,-3],[-4,0],[-3,1],[-7,3],[-2,2],[-4,5],[-1,2],[-5,0],[-10,-5],[-4,-4],[-1,-2],[-1,-3],[0,-4],[-2,-3],[-3,-2],[-35,-10],[-10,-8],[-6,-2],[-5,2],[-5,12],[7,10],[10,9],[7,10],[-15,-10],[-8,-3],[-7,0],[-24,11],[-40,8],[-30,18],[3,9],[11,10],[4,7],[11,31],[2,3],[6,8],[1,3],[1,4],[1,12],[1,2],[1,3],[2,6],[0,6],[-4,1],[-1,-2],[-17,-53],[-9,-18],[-11,-8],[-3,2],[-5,9],[-2,2],[-3,-2],[-2,-5],[-3,-4],[0,-4],[4,-9],[3,-9],[0,-3],[0,-4],[0,-4],[3,-5],[-18,4],[-2,-2],[3,-4],[4,-2],[3,-3],[1,-7],[0,-8],[1,-7],[0,-5],[-3,-6],[-3,-4],[-14,-9],[-17,-1],[-25,7],[-22,14],[-8,21],[-13,-15],[-15,-7],[-17,1],[-15,8],[13,9],[6,6],[2,10],[-26,-21],[-19,-6],[-19,-2],[-6,5],[0,11],[0,8],[-4,-3],[-2,-6],[-1,-10],[-2,-5],[-4,-1],[-5,1],[-5,0],[-2,-6],[-5,-2],[-33,-3],[-5,-3],[-18,-22],[-14,-9],[-13,0],[-12,10],[-10,19],[-5,-7],[-5,-4],[-16,-2],[-1,-1],[-2,0],[-2,4],[-3,6],[-2,2],[-2,2],[3,7],[5,0],[6,-1],[5,2],[-7,3],[-6,4],[-6,1],[-5,-6],[-5,0],[-18,7],[-4,3],[4,15],[16,-1],[29,-14],[0,3],[-1,7],[-1,3],[10,0],[-15,16],[-8,6],[-8,2],[-33,-5],[-9,5],[6,3],[6,0],[6,2],[3,7],[-9,-4],[-5,-1],[-4,3],[-3,6],[-1,3],[-3,0],[-5,-3],[2,8],[5,6],[10,7],[6,3],[7,1],[3,1],[4,5],[2,2],[12,-1],[6,3],[5,17],[6,2],[8,-2],[6,-3],[4,-4],[4,-4],[3,-5],[2,-7],[4,-20],[2,-9],[4,2],[1,8],[-1,11],[-2,11],[-2,7],[-4,6],[-9,6],[-4,6],[51,11],[53,-3],[-9,8],[-13,2],[-108,-13],[-4,-3],[-6,-7],[-10,-7],[-9,-3],[-6,3],[-3,7],[-6,5],[-3,8],[1,9],[4,9],[4,6],[5,0],[3,-6],[0,-7],[2,-3],[4,5],[0,3],[0,9],[0,4],[2,2],[9,1],[0,3],[0,2],[-1,2],[-1,2],[-5,-6],[-6,-2],[-12,-1],[-11,-3],[-11,0],[0,3],[30,17],[30,4],[7,8],[-2,4],[10,-2],[13,-8],[13,-3],[7,9],[41,-20],[10,-1],[6,5],[-1,4],[5,3],[12,2],[5,3],[3,4],[3,5],[3,5],[5,2],[12,1],[7,-1],[4,-6],[5,-12],[4,-2],[6,0],[0,4],[-6,5],[-10,16],[-7,3],[-16,0],[-7,-2],[-8,-6],[-8,-10],[-2,-2],[-14,0],[-9,-6],[-9,-1],[-6,4],[1,12],[-12,4],[-30,-4],[-10,9],[-21,9],[-11,8],[2,10],[-2,4],[0,4],[5,0],[12,-4],[4,0],[9,4],[31,0],[0,4],[-8,0],[-44,15],[-7,5],[53,0],[-5,-3],[-2,0],[0,-4],[25,-2],[7,6],[-21,10],[-23,5],[14,8],[6,9],[-16,-1],[-11,-7],[-4,-1],[-66,1],[-6,3],[-2,4],[-5,15],[-1,6],[1,6],[4,4],[3,2],[-3,5],[1,6],[3,5],[4,0],[-1,3],[0,2],[-1,1],[-2,2],[4,5],[4,3],[10,0],[4,-1],[5,-2],[1,-2],[1,-3],[0,-2],[0,-2],[2,0],[4,1],[1,-1],[5,-7],[1,-1],[4,-1],[2,1],[6,4],[-9,11],[-3,5],[7,4],[11,6],[-35,-5],[4,8],[7,7],[8,5],[31,14],[7,6],[-1,1],[-1,1],[-1,2],[11,4],[11,0],[-5,4],[-4,0],[-4,2],[0,6],[2,4],[18,22],[9,3],[26,-2],[9,-5],[5,-1],[12,2],[5,-1],[10,-6],[11,-1],[4,-4],[7,-11],[8,-8],[-9,-4],[-10,-1],[-10,-3],[-6,-12],[8,1],[25,11],[52,9],[5,-3],[1,-4],[-1,-7],[-1,-6],[-3,-20],[-8,-19],[0,-7],[5,8],[4,4],[3,6],[4,11],[2,19],[3,7],[5,2],[5,-2],[14,-14],[11,-17],[6,-5],[16,-2],[-2,8],[-5,3],[-5,2],[-4,5],[-3,6],[-5,6],[-5,4],[-5,2],[0,4],[65,0],[6,-2],[13,-11],[7,-3],[25,-2],[8,2],[5,4],[3,6],[5,14],[5,8],[6,5],[7,3],[7,1],[8,-2],[14,-8],[7,-2],[3,-2],[3,-4],[3,-3],[3,2],[4,9],[2,3],[3,3],[0,4],[-5,0],[-9,-4],[-4,2],[-4,2],[-13,4],[-1,2],[-2,5],[-2,1],[-1,-1],[-3,-3],[-1,-1],[-29,-6],[-4,-7],[-4,-9],[-4,-10],[-10,-5],[-60,18],[-45,-5],[-4,2],[-13,11],[-5,1],[-16,-1],[-15,7],[-5,1],[-4,-1],[-8,-6],[-4,-1],[-2,-2],[-4,-5],[-1,-1],[-2,1],[-19,18],[0,5],[57,4],[7,4],[0,4],[-87,4],[-36,8],[-19,-7],[-1,2],[-2,3],[-3,2],[-22,-6],[-13,-8],[-7,-2],[-15,2],[-8,-1],[-6,-7],[-4,-3],[-6,4],[-10,9],[4,8],[3,8],[4,14],[0,2],[5,3],[1,-3],[1,-5],[3,-3],[2,1],[2,3],[2,3],[1,1],[3,-2],[3,-5],[2,-1],[3,2],[0,2],[0,4],[3,4],[11,9],[3,6],[3,14],[8,-5],[10,-2],[7,3],[-4,8],[-4,2],[-9,0],[-4,4],[-4,8],[-4,6],[-25,21],[-27,4],[-5,8],[3,0],[2,1],[4,3],[-4,6],[-8,7],[-3,7],[2,1],[2,2],[2,1],[-1,2],[-2,4],[-1,2],[1,0],[1,0],[0,4],[3,2],[8,-2],[2,0],[3,0],[1,0],[0,1],[0,6],[0,1],[7,6],[3,-1],[8,-11],[8,-7],[4,-5],[2,-2],[2,0],[2,-1],[0,-5],[0,-4],[-2,-8],[0,-3],[14,-17],[20,-11],[17,-15],[3,-33],[1,1],[4,3],[4,8],[9,25],[1,3],[1,3],[4,1],[3,-1],[6,-5],[3,-2],[-8,13],[-40,12],[-5,4],[-3,4],[0,6],[6,17],[2,8],[3,6],[7,3],[6,-1],[13,-9],[27,-5],[5,-5],[2,-6],[2,-8],[2,-7],[9,-5],[16,-15],[-6,10],[-9,10],[-8,13],[0,16],[5,5],[8,1],[15,-2],[5,2],[14,12],[6,2],[6,-2],[7,-6],[4,-8],[1,-8],[0,-8],[-1,-18],[-4,-16],[-15,-25],[-2,-18],[18,24],[8,16],[5,31],[4,-1],[20,-23],[3,-8],[-1,-11],[11,6],[10,3],[23,-1],[44,-12],[0,4],[-77,25],[-4,3],[-7,14],[-3,3],[-3,3],[-13,21],[-15,9],[-2,5],[2,11],[3,2],[5,-3],[11,-8],[6,-2],[13,-2],[-4,4],[-6,2],[-10,2],[-3,3],[-2,7],[-3,6],[-4,0],[8,21],[14,15],[15,10],[14,3],[32,20],[17,6],[8,-11],[1,-4],[9,-19],[5,-20],[6,-8],[13,-11],[6,-10],[19,-36],[3,-11],[-1,-8],[-7,-17],[17,15],[-3,15],[-24,55],[-22,34],[-5,15],[-3,17],[3,13],[10,6],[12,2],[6,-1],[7,-5],[2,-4],[9,-16],[-1,9],[0,9],[-1,7],[-4,3],[0,4],[6,4],[23,11],[12,8],[5,1],[4,-2],[7,-8],[36,-10],[1,-9],[-2,-13],[0,-14],[3,-9],[26,-34],[3,-6],[2,-7],[1,-5],[2,-26],[-1,-9],[-2,-7],[-15,-27],[-1,-9],[5,-11],[9,-8],[9,1],[22,8],[7,6],[4,1],[3,-1],[10,-7],[-11,16],[-33,-18],[-14,8],[-1,10],[3,7],[11,15],[3,10],[0,11],[-3,34],[1,4],[2,4],[4,1],[17,3],[27,-17],[7,3],[5,8],[8,6],[8,1],[7,-7],[5,-8],[6,-7],[6,-6],[5,-2],[0,5],[-11,20],[-12,7],[-3,3],[-8,4],[-36,-6],[-39,10],[-18,13],[-12,26],[9,0],[4,1],[4,3],[-34,46],[-4,3],[-5,1],[-12,-1],[-6,3],[5,4],[5,4],[-28,0],[-58,-28],[-23,-3],[-11,3],[-5,5],[-6,9],[-4,3],[-6,-1],[-6,-3],[-5,-1],[-6,5],[8,5],[24,3],[21,10],[5,4],[6,3],[22,0],[11,-5],[29,0],[0,4],[-7,2],[-10,10],[-13,-6],[-26,2],[0,4],[19,5],[6,-1],[-9,6],[-75,-6],[1,5],[1,1],[-1,0],[-1,2],[2,9],[-1,4],[-3,3],[-2,4],[2,6],[3,5],[7,6],[8,3],[60,5],[7,-3],[6,-7],[5,-10],[1,-13],[2,0],[3,17],[0,7],[-3,5],[3,6],[3,2],[2,-2],[2,-6],[11,14],[12,10],[7,3],[6,-3],[29,-29],[5,-8],[1,-3],[-1,-3],[0,-1],[5,-1],[2,3],[-1,5],[-2,6],[-2,3],[2,2],[4,10],[-3,1],[-3,2],[-3,4],[-2,5],[12,7],[45,-3],[-3,-7],[-4,-5],[-4,-3],[-5,-1],[4,-8],[13,2],[2,-8],[1,-10],[5,-17],[0,-12],[2,0],[1,6],[4,14],[1,4],[-1,5],[-4,7],[-1,3],[7,18],[4,-1],[10,-7],[30,-7],[13,-7],[18,-26],[17,0],[8,-5],[2,-8],[2,-9],[3,-5],[5,8],[1,6],[1,8],[1,6],[4,2],[53,12],[-9,7],[-67,-12],[-12,5],[-5,6],[-6,8],[-2,10],[1,11],[7,7],[10,-3],[6,-12],[-1,-19],[6,-2],[4,6],[0,11],[-6,22],[0,8],[3,6],[14,5],[12,11],[61,19],[31,-1],[13,3],[7,-2],[6,-3],[24,-20],[6,-1],[-5,15],[-18,13],[-6,12],[3,1],[2,3],[2,3],[1,5],[-7,-1],[-13,-5],[-26,-4],[-12,-8],[-61,-13],[-33,-21],[-10,-3],[-29,0],[-7,6],[9,4],[3,5],[-3,5],[-7,7],[10,3],[19,17],[58,16],[-7,0],[-13,1],[-44,-14],[-10,-7],[-5,-2],[-12,-1],[-11,-6],[-95,-11],[-6,4],[3,0],[3,2],[2,4],[1,6],[-1,4],[-5,3],[-1,3],[1,8],[4,8],[10,11],[13,6],[44,-6],[-7,4],[-10,12],[-6,4],[-32,-5],[-4,4],[-13,23],[-3,11],[-5,4],[-13,0],[3,6],[5,4],[25,13],[21,19],[9,5],[18,4],[18,10],[9,0],[8,-6],[12,-16],[8,-3],[14,-13],[1,-3],[5,-16],[16,-5],[16,13],[16,17],[15,11],[6,1],[23,-2],[2,-3],[-1,-5],[-3,-5],[-5,-8],[-22,-14],[7,-4],[38,22],[4,1],[10,1],[5,2],[11,13],[9,0],[29,-16],[3,-3],[2,-5],[0,-5],[2,-4],[3,-2],[0,-12],[3,-18],[4,-19],[5,-12],[9,-10],[25,-7],[11,-6],[27,-30],[9,-4],[9,-2],[9,-5],[7,-11],[2,-19],[6,15],[0,13],[-6,10],[-25,21],[-22,12],[-12,14],[-24,9],[-17,19],[-4,6],[-1,11],[1,9],[2,6],[4,4],[5,2],[-3,2],[-4,1],[-3,2],[-2,5],[-2,4],[-2,6],[-1,3],[-5,5],[-12,5],[-24,23],[-1,2],[-3,8],[-1,2],[-3,1],[-3,0],[-3,-2],[-2,-3],[3,0],[2,-1],[1,-2],[1,-5],[-6,-2],[-9,-1],[-8,2],[-2,3],[4,8],[11,9],[5,5],[9,20],[4,7],[5,5],[7,4],[7,2],[6,-1],[4,-3],[5,-6],[4,-8],[-2,-18],[4,-8],[5,-6],[4,-4],[20,-7],[6,-7],[5,-8],[3,-2],[5,0],[2,-1],[2,-3],[2,-3],[1,-5],[-8,-9],[2,-8],[5,-11],[-2,-15],[0,-3],[4,1],[9,4],[4,0],[4,-2],[23,-20],[10,-5],[4,5],[-4,11],[-19,7],[-7,8],[6,-1],[34,-12],[6,-3],[3,-4],[5,-9],[3,-4],[5,-3],[9,-4],[5,-4],[-23,33],[-7,4],[-21,4],[-6,4],[-5,5],[-16,24],[-2,7],[64,5],[6,7],[-8,6],[-17,-6],[-9,0],[-6,6],[3,6],[15,12],[-9,2],[-19,-17],[-26,-13],[-5,0],[-2,2],[-3,6],[-1,2],[-2,2],[-8,4],[10,5],[23,1],[9,6],[-9,7],[-37,-7],[-11,1],[-7,2],[-4,5],[-1,3],[0,5],[1,4],[1,6],[-1,1],[-1,2],[-1,2],[-4,12],[-7,7],[-3,6],[6,9],[9,3],[6,-7],[6,-9],[8,-7],[-1,-3],[-1,-6],[0,-3],[6,2],[3,2],[2,4],[0,3],[-2,2],[-1,3],[1,4],[-4,9],[-6,5],[-13,6],[0,4],[86,-10],[27,-14],[-5,11],[-13,10],[-3,10],[3,8],[9,3],[67,14],[26,5],[-21,-1],[-61,-3],[-7,-2],[-3,1],[-3,12],[-3,7],[-5,10],[-13,15],[-7,6],[-7,3],[11,7],[52,11],[10,6],[7,9],[-10,0],[-5,1],[-4,3],[-2,4],[-2,5],[-2,5],[-10,7],[2,10],[7,8],[13,-8],[7,3],[6,7],[6,3],[2,1],[8,-2],[6,-5],[4,-7],[6,-6],[3,14],[10,1],[11,-3],[9,0],[0,4],[-7,0],[-2,5],[2,8],[8,11],[1,1],[4,-1],[9,-8],[17,-20],[3,-7],[1,-7],[2,-6],[4,-5],[-6,-8],[-7,-12],[-4,-13],[1,-16],[9,16],[5,6],[14,5],[20,14],[47,10],[12,14],[-8,-1],[-15,-9],[-37,-3],[-9,-5],[-3,-1],[-4,3],[-3,4],[-7,11],[0,12],[4,8],[83,22],[1,2],[0,4],[-1,3],[-2,-1],[-5,-4],[-25,-8],[-9,0],[-9,7],[-4,1],[-2,2],[-3,8],[-3,2],[1,-8],[2,-7],[3,-6],[4,-3],[-23,0],[-12,5],[-5,11],[3,13],[9,3],[14,0],[-2,13],[6,0],[7,-3],[5,1],[5,7],[7,7],[7,5],[5,-1],[-3,-5],[0,-7],[1,-7],[2,-5],[5,-2],[3,4],[12,22],[5,6],[5,3],[7,-1],[4,-5],[7,-13],[4,-2],[-4,14],[-4,9],[-6,4],[-9,1],[7,9],[8,4],[17,3],[17,13],[9,4],[7,-5],[-1,-9],[5,-11],[13,-16],[4,-7],[3,-9],[1,-10],[-3,-11],[26,-21],[14,-17],[3,-13],[-5,-19],[-4,-10],[-26,-29],[6,-2],[11,3],[10,7],[13,12],[10,-1],[9,-5],[15,-16],[11,-2],[20,4],[9,-2],[3,-7],[1,-28],[3,4],[1,5],[0,14],[0,1],[1,1],[1,2],[0,4],[-1,3],[-1,2],[-1,1],[-1,2],[-6,7],[-44,10],[-5,3],[-3,4],[-2,5],[-2,8],[0,7],[2,3],[3,2],[6,10],[3,4],[18,8],[40,8],[4,-1],[11,-11],[5,-2],[4,1],[8,5],[8,3],[10,-2],[10,-4],[8,-7],[9,-3],[31,13],[2,-3],[17,-5],[7,-9],[4,-4],[3,3],[6,11],[3,2],[10,1],[4,2],[4,4],[3,6],[-26,6],[-13,7],[-5,18],[6,12],[14,7],[26,3],[0,4],[-13,1],[-6,3],[2,6],[4,3],[5,0],[5,3],[3,8],[-20,-3],[-10,-4],[-8,-7],[-5,-3],[-11,-1],[-4,-4],[-4,-5],[-4,-3],[-4,-2],[-4,0],[0,4],[4,2],[2,5],[2,6],[3,3],[2,1],[1,2],[1,4],[1,3],[1,3],[3,3],[1,2],[6,7],[9,6],[16,6],[5,4],[12,20],[35,20],[7,-2],[7,-7],[10,0],[11,4],[7,5],[6,9],[10,18],[7,6],[20,6],[29,1],[4,2],[2,7],[-1,6],[-3,4],[-4,2],[-3,0],[1,2],[2,4],[1,2],[-7,9],[-16,-2],[-8,3],[-7,6],[-7,3],[-7,0],[-39,-11],[-3,2],[-1,3],[-1,6],[0,5],[1,8],[1,2],[3,1],[18,9],[7,6],[3,9],[3,6],[21,12],[38,10],[8,6],[6,8],[3,9],[-12,-2],[-3,5],[-5,1],[-16,0],[-29,5],[-2,1],[-4,8],[0,6],[3,4],[8,4],[18,18],[5,7],[-10,-2],[-8,-4],[-20,-21],[-6,-26],[-2,-4],[-6,-8],[-59,-35],[-8,-7],[-7,-9],[-5,-8],[-6,-6],[-9,-6],[-33,-11],[-8,-5],[-12,-16],[-14,-8],[-6,-7],[5,0],[6,2],[5,3],[16,14],[3,1],[19,5],[36,26],[10,2],[18,-12],[8,-3],[8,-7],[5,-15],[-6,-2],[-7,-5],[-6,-6],[-4,-7],[-2,-4],[-1,-11],[-1,-5],[-2,-3],[-5,-4],[-2,-4],[-10,-11],[-27,-6],[-20,-18],[-19,-2],[-8,-6],[-3,-4],[-6,-18],[-2,-2],[-10,-7],[-11,-3],[-31,-24],[-4,-1],[-10,-2],[-9,-6],[-4,-1],[-22,0],[-3,-2],[-7,-8],[-3,-2],[-8,-3],[-23,-17],[-11,-4],[-12,-1],[-2,-1],[-2,-2],[-1,-1],[-2,2],[-1,2],[-2,3],[-2,1],[-10,5],[-3,10],[-1,14],[-5,12],[3,6],[1,2],[-5,4],[-9,1],[-5,3],[-4,7],[-2,8],[1,6],[5,4],[-2,5],[-3,3],[-6,4],[0,2],[1,2],[1,2],[1,1],[0,3],[-2,6],[13,3],[22,11],[21,5],[10,6],[10,9],[8,11],[-7,-1],[-12,-11],[-7,-1],[1,7],[2,5],[3,3],[3,2],[-3,5],[-4,-2],[-6,-5],[-5,-2],[-5,-1],[-14,-5],[-13,-16],[-22,-5],[-14,-12],[-22,-2],[-1,-1],[-1,-3],[0,-3],[0,-1],[-2,-1],[-3,1],[-1,0],[-10,-8],[-11,-4],[2,11],[4,14],[-4,7],[0,4],[46,22],[17,3],[0,4],[-55,-9],[-10,9],[33,26],[46,25],[12,1],[0,4],[-12,1],[-5,2],[-5,6],[27,11],[6,-1],[1,-6],[-2,-3],[-1,-1],[6,0],[3,1],[9,11],[27,8],[13,14],[16,-5],[7,3],[-7,11],[-4,4],[-4,1],[-5,-2],[-8,-8],[-9,-3],[-9,-6],[-10,-2],[-9,-7],[-6,0],[9,14],[31,15],[12,12],[-4,0],[-3,-3],[-3,-4],[-3,-2],[-3,2],[-2,4],[-1,3],[-19,-14],[-8,-2],[-7,-1],[2,8],[8,7],[3,6],[1,9],[1,10],[2,6],[5,-1],[-1,6],[0,3],[3,7],[-3,5],[-3,7],[-2,8],[1,8],[4,6],[6,-2],[14,-9],[4,-5],[2,-1],[24,6],[4,5],[3,9],[-8,-4],[-23,0],[3,8],[4,4],[6,2],[4,-3],[-2,7],[-1,2],[0,4],[11,0],[-3,2],[-2,3],[-1,5],[2,6],[-1,2],[-1,2],[-1,2],[-1,2],[5,0],[5,-3],[5,-1],[4,4],[-1,1],[0,1],[-1,2],[7,0],[12,3],[6,-3],[13,-12],[2,0],[-2,13],[-12,9],[-22,7],[4,7],[7,4],[14,5],[-1,2],[-1,6],[7,0],[13,-6],[-2,8],[0,6],[4,1],[8,-3],[4,3],[4,3],[4,1],[4,-1],[0,4],[-10,0],[-2,7],[1,10],[-1,12],[6,0],[2,0],[-2,4],[6,-1],[7,-3],[12,-13],[-2,9],[-4,6],[-10,6],[0,4],[12,-1],[6,-3],[8,-11],[5,1],[10,6],[0,4],[-8,-1],[-4,2],[-2,5],[-1,5],[-1,3],[-3,2],[-3,0],[-1,1],[-1,3],[-1,3],[-2,1],[-25,0],[2,7],[3,4],[4,4],[4,1],[9,-3],[16,-14],[8,-3],[-2,7],[-2,7],[-3,3],[-3,-1],[0,3],[-2,2],[0,1],[2,4],[2,4],[1,2],[3,-1],[5,-6],[2,-1],[2,-2],[3,-8],[2,-2],[16,0],[3,-1],[1,-4],[1,-4],[1,-3],[3,-3],[17,-13],[5,-1],[6,5],[-16,14],[-3,6],[5,6],[-2,6],[-7,6],[-6,3],[-20,-5],[-6,5],[0,3],[3,1],[7,9],[3,2],[3,0],[7,-3],[3,-1],[0,2],[1,3],[1,2],[1,2],[8,0],[4,-2],[6,-6],[4,-1],[-1,10],[-3,6],[-3,3],[-4,6],[6,2],[7,-4],[6,-7],[4,-9],[2,-1],[2,3],[3,5],[2,2],[3,0],[2,-3],[3,-2],[3,2],[-8,9],[-1,3],[1,3],[3,0],[7,-3],[0,4],[-4,4],[0,5],[1,6],[1,7],[-1,4],[-4,5],[-3,3],[-3,2],[0,4],[3,0],[2,1],[4,4],[1,1],[1,3],[0,3],[0,1],[4,-1],[7,-6],[15,-7],[3,-3],[1,-5],[-1,-11],[1,-6],[3,-9],[2,-1],[5,0],[18,-19],[3,-6],[0,-8],[-4,-11],[6,-3],[17,6],[7,0],[7,-2],[6,-4],[7,-6],[-3,-12],[-3,-8],[-14,-18],[-13,-27],[7,2],[5,8],[9,19],[22,16],[3,4],[-5,4],[-2,0],[2,5],[7,15],[4,4],[2,-1],[5,-5],[2,-2],[3,1],[7,7],[12,6],[25,4],[12,7],[-60,-9],[2,7],[1,11],[3,9],[4,4],[13,0],[5,2],[0,4],[-3,1],[-3,2],[-2,4],[-1,5],[18,5],[-5,-7],[-2,-2],[6,-2],[24,19],[26,9],[9,7],[-34,-2],[-6,-7],[-3,6],[0,6],[2,6],[-1,7],[-5,3],[-6,-4],[-6,-6],[-4,-5],[2,-3],[3,-1],[3,-1],[3,1],[-5,-13],[-8,-4],[-8,3],[-7,8],[-2,5],[-6,9],[-3,6],[-3,4],[-4,2],[-2,3],[1,5],[0,4],[-3,3],[-3,4],[-2,6],[0,7],[2,2],[2,-1],[3,0],[1,6],[-1,2],[-2,2],[-3,1],[-2,1],[7,4],[16,4],[15,14],[8,-1],[8,-3],[7,2],[-2,1],[-4,3],[0,7],[-3,2],[-4,0],[-4,3],[66,9],[9,6],[5,1],[0,5],[-29,0],[2,4],[-8,1],[-13,5],[-7,2],[9,5],[31,2],[0,3],[-1,2],[-1,4],[2,4],[-19,-9],[-10,-3],[-10,4],[17,9],[5,11],[5,4],[6,3],[13,3],[29,18],[21,3],[4,4],[3,4],[9,8],[4,2],[44,-12],[-10,12],[-12,6],[-25,2],[-6,-2],[-10,-8],[-4,-2],[-20,-2],[-48,-35],[-34,-13],[-2,-4],[4,-7],[0,-4],[-21,-14],[-7,-2],[-7,-1],[-5,-3],[-4,-5],[-5,-10],[-5,-8],[-7,-7],[-7,-4],[-32,-11],[-7,4],[4,3],[16,6],[8,6],[4,1],[2,2],[17,22],[2,5],[-23,-7],[-12,10],[-13,-3],[-7,4],[6,9],[8,4],[68,10],[39,18],[9,12],[-7,0],[-20,-13],[-99,-20],[6,8],[38,31],[6,1],[7,-1],[17,-14],[6,-2],[6,2],[6,4],[5,7],[0,4],[-4,-1],[-8,-9],[-5,-2],[-3,2],[-12,15],[5,5],[18,7],[5,0],[12,-5],[4,0],[-2,2],[-2,5],[-2,2],[4,3],[3,-1],[3,-4],[3,-2],[13,2],[16,8],[3,4],[12,2],[4,4],[-5,3],[-3,4],[-1,5],[3,6],[16,14],[10,5],[10,8],[10,3],[9,-8],[-1,-5],[1,-6],[1,-4],[3,1],[2,3],[2,9],[1,5],[3,3],[2,-3],[0,-5],[1,-3],[3,-4],[4,1],[4,3],[3,2],[6,-2],[4,-4],[4,-7],[3,-8],[0,-2],[0,-1],[-1,-3],[0,-4],[3,-2],[3,1],[2,2],[1,4],[1,5],[-2,3],[-3,4],[-1,5],[-1,7],[2,3],[25,5],[16,13],[8,5],[19,-3],[10,3],[4,14],[6,4],[27,3],[9,3],[-5,4],[-2,0],[-3,0],[4,7],[6,3],[6,0],[5,3],[11,15],[16,16],[4,1],[2,3],[1,7],[2,7],[3,3],[6,4],[25,35],[3,9],[-2,3],[-10,-13],[-11,-9],[-3,-4],[-6,-9],[-44,-46],[-27,-18],[-4,0],[-4,-2],[-7,-9],[-4,-2],[-20,-3],[-11,2],[-6,5],[4,16],[25,3],[7,10],[-3,0],[-7,2],[-3,2],[-3,4],[-1,2],[1,5],[0,1],[-6,2],[-11,-5],[-7,-1],[0,4],[10,9],[5,3],[6,0],[14,-4],[8,0],[3,6],[44,-1],[10,3],[-9,5],[-26,-1],[-20,4],[-4,-1],[-7,-6],[-5,-1],[1,6],[1,2],[-8,3],[-25,-3],[-7,-4],[-6,-9],[-6,-8],[-9,1],[3,7],[12,13],[3,5],[6,11],[3,5],[10,4],[10,-1],[10,3],[8,14],[-5,0],[-14,-8],[2,7],[4,6],[16,14],[2,1],[2,-1],[2,-3],[0,-3],[1,-1],[24,-1],[7,-5],[3,-7],[5,-5],[5,-2],[5,4],[-8,15],[-11,1],[-11,1],[-10,3],[-3,5],[-1,12],[-2,8],[-3,7],[-7,9],[-3,8],[13,1],[6,-1],[5,-4],[1,-3],[0,-3],[0,-4],[1,-2],[3,-1],[2,7],[3,2],[8,-7],[14,-24],[9,-6],[-20,27],[-3,10],[5,10],[37,6],[-11,5],[-37,-5],[0,4],[3,2],[7,5],[3,1],[-6,5],[-10,0],[-6,6],[-3,9],[2,3],[6,2],[6,4],[-6,3],[-4,9],[-2,12],[0,12],[-6,-13],[-4,-20],[-7,-13],[-13,6],[6,9],[6,7],[5,7],[2,13],[-7,-6],[-12,-21],[-7,-5],[-10,3],[-2,10],[2,14],[4,13],[-6,0],[-4,-3],[-4,1],[-4,6],[1,3],[1,5],[-1,7],[-2,6],[4,8],[9,11],[5,7],[4,10],[3,4],[2,2],[5,4],[3,4],[5,6],[9,1],[8,-3],[5,-6],[2,-4],[1,-4],[1,-4],[0,-6],[2,-2],[12,0],[-3,-3],[-3,-5],[-2,-6],[0,-7],[2,1],[11,-8],[10,3],[6,0],[8,-8],[4,0],[5,2],[3,3],[-2,6],[-6,4],[-5,1],[-12,1],[-3,1],[-3,4],[-3,7],[-1,6],[-1,7],[-2,5],[-7,3],[-10,8],[-4,3],[-4,12],[2,8],[14,13],[5,8],[3,3],[4,1],[4,-2],[3,-5],[4,-4],[5,-1],[-3,8],[1,14],[-5,5],[-7,0],[-11,-4],[-3,0],[-1,4],[1,9],[1,3],[3,3],[2,2],[0,5],[1,8],[0,4],[5,12],[6,8],[30,23],[8,2],[8,-1],[20,-8],[3,-4],[6,-9],[4,-3],[6,0],[10,2],[5,-2],[2,-4],[3,-8],[3,-4],[2,-2],[5,-1],[2,-1],[2,-1],[1,1],[2,0],[1,-2],[0,-6],[9,-17],[5,3],[-2,10],[-4,12],[-1,12],[-4,7],[-2,5],[-1,6],[-3,2],[-18,0],[-19,8],[-10,8],[-5,12],[5,4],[5,6],[2,7],[-5,8],[5,10],[15,9],[5,9],[-11,0],[-21,-13],[-59,-11],[1,3],[0,2],[1,1],[1,2],[-3,3],[-4,1],[-8,0],[5,7],[18,18],[6,4],[9,2],[17,11],[50,11],[8,-4],[3,0],[2,6],[2,4],[15,4],[5,4],[14,6],[23,19],[61,13],[10,-3],[4,-10],[-6,-8],[-9,-5],[-9,-2],[0,-4],[25,0],[-3,-8],[-7,-12],[-3,-8],[-1,-11],[1,-6],[4,-1],[4,2],[3,4],[7,15],[5,5],[6,3],[20,1],[10,4],[4,0],[3,-2],[5,-4],[9,-5],[2,1],[1,6],[0,6],[-3,2],[-13,2],[-20,-2],[-26,8],[9,20],[15,11],[17,2],[14,-4],[-2,-7],[-8,-8],[-3,-6],[8,1],[13,12],[38,10],[4,2],[2,5],[2,6],[2,6],[7,4],[5,6],[9,3],[8,6],[6,8],[2,11],[-3,5],[-9,-4],[-14,-12],[-24,-7],[-7,-5],[-6,-14],[-2,-2],[-29,5],[-7,3],[-4,7],[-3,1],[-4,-4],[0,-7],[-4,-8],[-7,-6],[-22,-7],[-8,1],[-5,11],[14,8],[-3,3],[-4,3],[-3,2],[-4,0],[-3,-2],[-17,-16],[-10,-2],[-14,-7],[-25,1],[-11,-2],[-23,-22],[-37,-18],[-8,3],[-3,11],[7,8],[9,6],[7,6],[6,9],[8,7],[44,25],[48,-1],[11,6],[-8,6],[-28,-2],[2,7],[3,3],[8,3],[-5,3],[-5,0],[-10,-3],[-4,0],[-2,2],[-2,4],[-2,5],[-6,8],[-3,3],[-1,-4],[2,-11],[4,-8],[2,-5],[-1,-3],[-4,-1],[-25,-14],[-5,-1],[-15,5],[-5,-1],[2,4],[3,5],[1,5],[-3,2],[-4,0],[-11,-8],[-9,-1],[-7,3],[-6,9],[-4,13],[39,18],[8,15],[-1,2],[-2,4],[0,4],[-1,4],[-2,5],[-13,6],[4,3],[4,1],[9,-1],[0,4],[-4,2],[-9,1],[-4,2],[-3,4],[-1,5],[-2,5],[-3,2],[-8,0],[-7,2],[-6,4],[-6,6],[36,12],[3,-1],[6,-6],[14,-5],[7,-5],[2,-5],[1,-9],[2,-7],[1,-6],[-2,-5],[0,-3],[38,1],[10,6],[-30,-4],[-6,4],[1,10],[4,9],[1,7],[-8,3],[0,4],[7,1],[12,9],[7,2],[24,-1],[7,3],[7,3],[7,-4],[15,-9],[14,-6],[14,-2],[-6,9],[-7,5],[-40,10],[-6,5],[13,12],[27,13],[34,-1],[-10,7],[-52,-6],[-8,-5],[-14,-21],[-7,-3],[-17,-1],[-18,-5],[-9,1],[-10,4],[2,11],[2,5],[8,9],[-2,2],[-2,2],[5,5],[11,2],[12,6],[14,-5],[6,4],[-9,5],[-34,0],[-22,11],[6,9],[6,-3],[6,-5],[7,1],[6,3],[7,-2],[6,-4],[5,-3],[8,2],[14,6],[7,0],[19,-11],[8,-1],[-7,13],[-12,9],[-59,15],[-12,8],[9,6],[66,-6],[2,-2],[4,-9],[3,-1],[46,-2],[7,6],[-5,4],[0,4],[28,-2],[14,4],[11,10],[-50,0],[-9,-2],[-19,-10],[-10,0],[-7,6],[-2,9],[5,8],[8,5],[36,-7],[10,7],[-9,5],[-44,4],[-3,-3],[-3,0],[-10,6],[10,13],[20,3],[20,-1],[23,-9],[62,-1],[-12,6],[-41,5],[-4,3],[-8,11],[-5,3],[-10,-3],[-4,1],[-3,10],[2,0],[2,3],[2,1],[-4,2],[-8,1],[-4,3],[-1,4],[-1,10],[-1,5],[-7,4],[-16,-4],[-8,3],[7,10],[6,6],[6,3],[43,0],[10,5],[-2,3],[-1,3],[-2,7],[22,-2],[6,2],[2,2],[4,7],[2,3],[3,2],[3,1],[7,1],[10,0],[-4,-12],[-6,-5],[-7,-2],[-6,-5],[7,-15],[5,-4],[7,3],[-2,0],[-6,3],[14,13],[0,1],[1,3],[0,3],[2,1],[8,-1],[2,1],[5,8],[-1,8],[-3,9],[-5,7],[3,5],[2,11],[3,4],[5,3],[3,-4],[2,-7],[2,-3],[0,-4],[4,-16],[3,-7],[11,-12],[4,5],[4,0],[3,-2],[3,1],[3,1],[3,1],[1,1],[0,6],[1,1],[6,5],[5,12],[1,12],[-7,4],[7,6],[41,2],[5,-2],[10,-9],[5,-2],[10,4],[5,-2],[3,-10],[-1,-6],[4,0],[6,5],[2,9],[-4,10],[-8,3],[-16,0],[-33,8],[-24,-1],[-6,5],[5,3],[5,7],[4,7],[5,7],[-4,7],[1,6],[5,5],[5,3],[25,3],[-3,-4],[-4,-8],[-3,-9],[-1,-7],[3,-5],[5,3],[5,8],[4,6],[-2,2],[-1,2],[0,2],[-1,3],[60,4],[9,-6],[7,-15],[3,-4],[2,3],[0,7],[-1,6],[-3,6],[-4,4],[-20,9],[-38,2],[6,6],[10,5],[9,3],[7,-4],[6,-7],[8,1],[7,5],[11,4],[6,6],[4,1],[29,-5],[26,5],[0,-4],[-11,-2],[-4,-2],[2,-12],[-3,-5],[-5,-4],[-3,-7],[2,-7],[12,-11],[9,-11],[5,-3],[4,2],[-1,7],[-5,8],[-10,8],[-5,7],[4,2],[17,24],[4,4],[15,5],[5,0],[10,-10],[6,-2],[19,0],[6,-3],[11,-8],[6,-3],[15,-2],[8,-5],[3,-9],[-1,-12],[-4,-14],[7,-8],[9,-5],[9,-3],[9,0],[-2,6],[-11,5],[-4,5],[1,6],[-1,6],[9,15],[3,6],[-3,0],[-4,11],[-16,9],[-6,8],[9,7],[13,1],[72,-24],[7,0],[-2,8],[-4,4],[-4,2],[-3,6],[3,4],[-27,-7],[-16,10],[-40,10],[-6,-1],[-8,-4],[-12,-11],[-7,-2],[-7,5],[6,4],[7,0],[6,3],[3,9],[-16,3],[-4,-1],[-4,-3],[-4,-2],[-8,-1],[-42,8],[5,7],[5,2],[6,1],[5,3],[3,5],[5,19],[-8,0],[-23,-9],[-7,-1],[-4,-1],[-2,-3],[-1,-5],[-1,-3],[-3,-2],[-2,0],[-20,3],[-37,-3],[4,-4],[8,-1],[4,-4],[-6,-6],[-38,-17],[-16,-1],[15,11],[6,9],[0,13],[2,3],[-5,2],[-6,-2],[-10,-8],[-14,-6],[-46,-2],[-5,-2],[-6,-4],[-6,-2],[-5,4],[17,11],[6,6],[-2,5],[3,4],[10,6],[11,16],[30,33],[3,6],[-2,3],[-8,-1],[0,4],[3,0],[3,1],[6,4],[1,8],[9,4],[25,-4],[8,2],[8,-1],[6,-9],[-2,-2],[-2,-3],[-4,-8],[8,-4],[9,6],[8,10],[8,5],[9,1],[10,5],[19,14],[-31,-4],[-32,4],[1,2],[4,6],[-5,3],[-11,-2],[-4,3],[3,4],[-3,4],[-4,2],[-4,2],[-4,0],[4,8],[7,8],[8,6],[54,27],[19,4],[7,-2],[9,-6],[8,-8],[4,-9],[-3,-2],[-4,-1],[-7,0],[-3,1],[-5,6],[-8,4],[-6,7],[-6,2],[-6,-9],[6,-5],[8,-13],[5,-1],[-12,-18],[-35,0],[-15,-7],[7,-3],[37,-2],[8,2],[6,5],[5,6],[6,5],[7,3],[6,0],[5,3],[4,5],[5,4],[5,-3],[-2,-5],[1,-4],[3,-3],[3,-1],[0,-4],[-4,-2],[-4,-2],[-9,0],[0,-4],[2,0],[4,-4],[-2,-7],[-3,-6],[-3,-5],[-2,-10],[5,2],[10,11],[5,3],[2,1],[2,4],[1,5],[0,4],[1,3],[3,2],[36,5],[16,-3],[12,-13],[2,-5],[4,-12],[14,-31],[0,-4],[1,-9],[1,-4],[0,-1],[7,-11],[9,-9],[10,-7],[0,-5],[-11,-3],[0,-6],[6,-5],[9,2],[12,17],[-3,5],[-15,7],[-4,6],[-1,3],[0,4],[0,7],[-5,11],[-1,4],[-3,7],[-7,9],[-13,10],[4,7],[10,7],[5,6],[-8,0],[-4,1],[-3,3],[8,15],[11,10],[53,24],[31,4],[-9,10],[-55,-13],[-31,-21],[-16,-4],[-65,9],[-7,2],[-4,7],[1,11],[1,5],[8,6],[-2,1],[-4,3],[10,6],[9,0],[19,-6],[9,0],[4,-3],[3,-11],[3,1],[3,4],[3,5],[-14,16],[2,1],[4,4],[-4,6],[-5,5],[-5,1],[-5,-5],[3,-6],[1,-1],[-7,-5],[-8,4],[-8,6],[-8,2],[-14,-8],[-8,-1],[-4,5],[5,16],[39,25],[-9,0],[-4,1],[-5,3],[5,12],[3,4],[4,1],[4,-1],[11,-6],[12,-13],[36,-9],[-6,9],[-2,3],[40,-8],[-20,14],[-11,4],[-17,-7],[-8,5],[-15,16],[0,4],[54,5],[17,-9],[39,-33],[6,-1],[5,10],[-5,0],[-4,1],[-3,3],[-4,4],[1,4],[0,5],[1,3],[-33,20],[-11,1],[3,7],[5,4],[5,4],[5,5],[-5,0],[-5,-2],[-13,-10],[-5,-2],[-51,14],[3,10],[7,11],[0,7],[-4,10],[-3,-3],[-3,-8],[-2,-11],[-5,19],[-4,5],[-4,-8],[1,-4],[5,-17],[2,-7],[-21,-16],[-13,-14],[-11,-6],[-8,-14],[-3,-3],[-6,-1],[-34,-21],[-24,-8],[-5,-4],[-5,-3],[-22,-5],[-8,3],[-16,0],[-7,7],[42,24],[0,4],[-27,4],[4,9],[5,0],[7,-3],[5,0],[6,4],[67,6],[-9,4],[-10,-2],[-10,1],[-6,14],[6,3],[6,5],[-44,-6],[-13,-6],[3,2],[1,2],[-1,2],[-3,2],[0,9],[-3,3],[-5,-2],[-4,-6],[-2,1],[-3,3],[-2,4],[-2,4],[5,7],[5,4],[5,2],[18,-2],[24,9],[29,1],[11,7],[-8,6],[-63,-10],[0,4],[3,0],[2,1],[5,3],[4,9],[13,8],[15,5],[10,0],[14,-4],[29,-1],[12,-8],[-5,-3],[-4,-5],[-2,-7],[1,-10],[29,35],[10,6],[0,-5],[6,0],[34,16],[15,1],[2,-2],[-7,-16],[-2,-4],[-2,-2],[0,-3],[1,-5],[2,-6],[3,-3],[2,1],[3,3],[-5,5],[0,7],[3,7],[4,6],[4,4],[5,2],[4,4],[2,8],[41,13],[10,-1],[9,-8],[3,-6],[2,-10],[1,-5],[2,-2],[3,1],[1,2],[2,14],[4,7],[13,11],[4,5],[2,5],[4,12],[-4,0],[4,8],[9,3],[17,-2],[0,4],[-45,4],[-14,8],[0,4],[11,9],[3,5],[-6,2],[-4,-2],[-11,-9],[-2,-3],[-8,-7],[-52,2],[-2,3],[-2,5],[-3,7],[-5,6],[-3,0],[-4,-2],[-3,-4],[-38,-24],[2,-7],[4,-1],[5,1],[4,-1],[-11,-9],[-12,1],[-11,8],[-10,16],[4,6],[4,3],[5,1],[4,2],[4,14],[13,14],[17,12],[12,5],[-1,-9],[0,-7],[3,-6],[4,-3],[1,2],[1,9],[1,1],[12,0],[3,3],[10,11],[2,5],[0,13],[2,2],[6,-1],[-1,-2],[0,-2],[0,-2],[-1,-2],[5,-3],[11,-2],[5,-3],[-4,-5],[-5,-3],[3,-3],[4,-5],[3,-6],[-1,-7],[-7,-4],[-18,7],[-7,-3],[2,-4],[1,-4],[-1,-6],[-2,-6],[3,-2],[3,-2],[3,0],[4,0],[-2,10],[3,3],[18,0],[8,3],[0,2],[0,3],[1,2],[3,1],[13,1],[6,2],[5,5],[8,13],[4,4],[5,0],[-10,13],[-5,9],[0,10],[5,3],[8,-3],[7,-1],[3,11],[-1,6],[-1,5],[0,5],[1,5],[4,5],[4,1],[10,0],[6,-4],[3,-9],[1,-9],[3,-7],[-1,-5],[-3,-4],[-2,-2],[-3,-1],[4,-11],[5,1],[6,5],[4,1],[2,-8],[-1,-11],[-3,-9],[-6,-8],[2,-8],[4,-15],[-2,-10],[-4,-5],[-4,-4],[-3,-7],[32,-18],[9,-11],[5,-13],[1,-14],[0,-14],[2,-11],[5,-6],[12,-3],[5,-5],[3,-5],[35,-32],[14,-5],[8,3],[-7,3],[-8,5],[-5,8],[3,12],[-40,14],[-11,9],[-4,6],[0,5],[3,5],[2,6],[0,8],[-1,14],[1,7],[-4,6],[-5,5],[-10,5],[11,4],[8,-2],[8,-8],[29,-43],[2,-8],[11,-5],[3,1],[-1,5],[-1,4],[-3,7],[1,2],[3,4],[1,2],[-4,4],[-12,4],[-3,3],[-7,10],[-10,11],[0,5],[6,4],[7,0],[4,-5],[8,-15],[7,-8],[9,-3],[8,0],[9,2],[-6,4],[-11,1],[-5,5],[0,6],[3,6],[7,11],[-38,8],[3,10],[4,7],[5,5],[5,2],[5,3],[2,7],[4,4],[6,-2],[18,-15],[31,-9],[7,4],[-2,1],[-4,3],[3,3],[3,1],[-31,9],[-6,4],[-9,12],[-6,3],[-15,-1],[-28,-20],[-16,5],[2,3],[2,9],[-9,3],[-5,3],[-3,7],[14,-4],[8,0],[11,11],[12,-5],[3,6],[-2,1],[-2,3],[5,3],[5,-1],[5,-2],[5,0],[-2,7],[-5,5],[-9,4],[0,4],[36,-13],[13,1],[-5,4],[-11,3],[-16,12],[-2,1],[-2,3],[0,11],[-2,3],[-4,-2],[-6,-9],[-3,-2],[-65,-2],[-3,4],[6,6],[8,3],[37,2],[3,2],[0,4],[-2,4],[-3,2],[-41,5],[-20,9],[-4,6],[5,4],[7,14],[7,2],[5,-1],[10,-5],[6,-2],[3,1],[3,1],[3,0],[4,-2],[2,-2],[2,-8],[2,-2],[6,-2],[14,3],[3,-5],[30,-12],[14,-14],[1,-23],[49,-32],[9,-4],[9,0],[-15,15],[-2,7],[-3,4],[-24,15],[-9,10],[-5,12],[3,10],[-10,12],[-13,7],[-31,6],[-15,8],[-5,5],[-6,5],[-15,-3],[-6,5],[11,7],[-4,2],[-9,-1],[-4,3],[12,7],[26,5],[18,11],[76,9],[7,-2],[23,-13],[13,-1],[6,-3],[2,-10],[-2,-3],[-10,-11],[-3,-5],[6,0],[41,12],[10,8],[5,3],[22,6],[5,-2],[8,-16],[3,-3],[2,-17],[1,-5],[8,-9],[30,-17],[-6,-12],[0,-2],[1,-6],[2,-3],[1,-2],[2,-4],[-1,-9],[-2,-8],[-1,-5],[4,-2],[6,3],[3,7],[0,9],[-3,7],[-1,9],[7,4],[12,2],[-8,18],[-10,11],[-24,15],[-4,5],[-5,6],[-3,6],[-3,7],[-2,13],[3,3],[5,1],[6,8],[-1,2],[-1,6],[22,1],[46,-26],[23,-3],[-9,10],[-50,22],[8,6],[41,3],[47,-10],[30,-16],[15,5],[-16,3],[-56,31],[-40,-2],[21,42],[0,7],[-6,0],[-12,-6],[-12,-8],[-20,-2],[-10,-7],[-19,-21],[-59,-13],[-13,8],[6,3],[16,4],[5,6],[-2,7],[-5,5],[-7,3],[-5,1],[-3,1],[-6,6],[-3,1],[-3,-1],[-21,-20],[-3,-5],[-11,-10],[-31,2],[-19,-8],[-38,0],[-6,2],[-3,5],[0,9],[-1,5],[-3,9],[-3,5],[-2,3],[-1,4],[2,8],[4,4],[15,8],[11,-5],[7,-4],[4,3],[3,8],[-1,2],[-3,2],[-5,2],[-4,4],[-3,3],[-2,5],[-1,9],[3,12],[7,10],[9,7],[18,6],[32,18],[32,7],[10,6],[9,3],[7,-9],[7,-11],[10,-7],[1,-3],[-1,-4],[1,-3],[2,-2],[11,-5],[5,-1],[5,1],[5,3],[-1,5],[-3,2],[-7,1],[-3,1],[-4,6],[-3,1],[-2,2],[-1,4],[0,4],[1,4],[2,4],[2,1],[25,8],[12,7],[6,-2],[11,-8],[6,1],[5,2],[6,-1],[9,-15],[5,-6],[5,-3],[6,-2],[8,0],[24,4],[22,-9],[6,1],[-16,13],[-35,5],[-13,15],[-5,9],[-7,8],[-8,4],[-8,-7],[-6,-4],[-10,2],[-15,12],[8,7],[19,11],[18,6],[8,7],[10,4],[29,-16],[43,-6],[17,-17],[0,17],[-12,8],[-26,3],[-49,21],[21,9],[18,14],[6,4],[9,2],[9,6],[3,1],[3,-1],[7,-7],[7,-4],[8,-3],[7,0],[8,3],[-7,13],[-33,11],[1,3],[3,10],[-55,-11],[-18,-10],[-9,0],[3,8],[12,21],[4,4],[8,0],[3,3],[1,9],[-2,7],[-3,2],[-9,-1],[0,4],[20,21],[12,17],[15,11],[6,8],[-3,2],[-6,3],[-4,3],[8,7],[58,2],[25,16],[18,5],[36,-1],[-20,9],[-3,5],[1,11],[2,6],[3,5],[4,8],[-8,5],[-17,-5],[-8,4],[5,9],[-1,21],[4,11],[8,7],[19,10],[7,11],[-2,10],[3,8],[6,7],[5,8],[-2,3],[-1,3],[-1,2],[1,7],[-2,3],[-2,2],[-1,4],[1,5],[0,2],[2,0],[8,5],[14,4],[2,3],[1,2],[3,3],[3,0],[7,-1],[6,-5],[5,-7],[12,-21],[1,-6],[-1,-4],[-2,-4],[-2,-9],[-1,-1],[1,1],[22,1],[5,-2],[6,-5],[4,-7],[2,-9],[-1,-10],[-2,-19],[-1,-10],[4,-4],[2,-4],[-1,-6],[-2,-4],[-2,-4],[0,-5],[1,-5],[6,16],[3,9],[1,10],[-1,20],[1,12],[2,6],[5,3],[4,-7],[3,-11],[1,-11],[3,-9],[6,-4],[7,-3],[6,-5],[2,-4],[4,-5],[3,-1],[1,8],[-1,7],[-3,3],[-3,2],[-2,5],[4,8],[13,3],[24,1],[11,-3],[19,-14],[21,-6],[2,0],[1,5],[-1,3],[-2,2],[-2,1],[-3,1],[-9,13],[-6,3],[-75,21],[-9,8],[-5,2],[-2,3],[-2,6],[-1,7],[-1,5],[-4,6],[-4,3],[-9,3],[-11,0],[-7,2],[-3,6],[0,6],[3,5],[3,3],[3,2],[-5,13],[1,7],[7,4],[18,2],[19,9],[61,7],[3,-4],[1,-9],[0,-5],[-2,-5],[-2,-4],[-2,-3],[4,1],[5,-1],[5,-3],[3,-5],[2,-4],[0,-10],[1,-4],[5,-7],[21,-11],[-2,-12],[3,-6],[12,-7],[18,-16],[7,-4],[56,-5],[9,-13],[-3,-13],[-5,-6],[-19,-8],[-15,4],[-4,-1],[-7,-5],[-6,-3],[0,-4],[3,-4],[2,-3],[3,1],[8,7],[2,2],[5,5],[5,-5],[1,-8],[-7,-6],[4,-4],[11,-7],[4,-1],[6,2],[8,7],[4,3],[9,-1],[18,-12],[9,5],[-6,7],[-6,5],[-5,7],[-2,13],[0,6],[2,3],[2,5],[0,7],[-2,4],[-5,10],[-23,22],[-7,3],[-7,1],[-39,-5],[-11,5],[-2,4],[-7,13],[-1,2],[0,3],[0,4],[-1,3],[-2,2],[-8,2],[-6,5],[-5,8],[-3,12],[4,13],[7,9],[10,7],[30,11],[5,-1],[8,-9],[4,-4],[4,-2],[3,-1],[-2,7],[-3,6],[-3,5],[-1,9],[-23,-2],[-12,-5],[-14,-3],[-5,-6],[-5,-4],[-6,3],[-6,6],[-4,7],[-4,32],[39,46],[4,25],[5,5],[6,2],[12,2],[5,2],[9,10],[4,4],[13,3],[42,-3],[10,2],[21,11],[50,8],[13,-5],[-2,-8],[-2,-4],[-11,-16],[1,-2],[1,-9],[-2,-9],[-5,-11],[-6,-9],[-4,-5],[5,-10],[6,-6],[3,-7],[-3,-18],[-4,-11],[-16,-31],[-2,-6],[-2,-6],[-1,-8],[0,-7],[2,-6],[3,-8],[2,-7],[-2,-3],[-8,-3],[-9,-7],[-8,-11],[-6,-11],[43,26],[3,12],[5,16],[3,14],[-5,9],[13,41],[-1,1],[-1,2],[0,2],[-1,2],[5,0],[11,1],[35,-5],[18,-10],[19,-6],[14,4],[-10,0],[-12,2],[-12,5],[-10,7],[-8,4],[-10,2],[-9,5],[-3,14],[-1,5],[-3,8],[-2,5],[0,4],[0,14],[4,7],[6,6],[5,6],[-1,12],[4,6],[11,6],[5,6],[9,21],[3,5],[5,3],[1,-5],[-2,-8],[-6,-15],[-4,-19],[11,3],[7,13],[13,32],[10,20],[8,26],[3,7],[4,4],[0,-6],[0,-3],[0,-3],[0,-15],[0,-9],[2,-4],[5,-4],[2,-5],[2,0],[0,12],[-2,27],[2,4],[8,9],[9,13],[6,2],[6,-5],[29,-43],[2,-8],[-1,-6],[-3,-6],[-3,-7],[-1,-7],[0,-12],[-1,-5],[-2,-4],[-3,-5],[-3,-6],[-1,-7],[-1,-6],[-2,-7],[-2,-7],[-2,-5],[-4,-23],[0,-3],[1,-7],[2,-4],[12,-12],[2,-5],[1,-7],[0,-7],[-1,-7],[-1,-6],[-3,-2],[-10,-2],[-11,-5],[-5,-8],[9,-9],[-5,-4],[-3,-5],[-2,-7],[-2,-9],[4,-10],[-3,-10],[-7,-5],[-7,5],[-3,-17],[-4,-16],[-6,-11],[-15,-7],[-16,-14],[-16,-6],[-5,-6],[1,-2],[3,-4],[2,-2],[-18,-22],[-6,-11],[9,-4],[6,4],[8,10],[8,11],[5,10],[7,8],[43,29],[11,2],[3,3],[21,45],[6,8],[13,15],[6,9],[2,15],[1,5],[2,5],[3,5],[3,3],[4,0],[4,-4],[4,-4],[13,-12],[21,-14],[40,-7],[5,-4],[4,-5],[4,-2],[4,3],[-11,9],[-26,10],[-10,12],[-7,17],[-3,5],[-6,6],[-24,9],[-13,10],[-3,6],[2,6],[10,18],[4,16],[-1,15],[-6,11],[-9,4],[0,5],[8,3],[37,2],[39,17],[5,6],[5,10],[1,8],[-3,7],[-4,8],[-2,7],[10,2],[62,37],[11,2],[0,-4],[-30,-22],[-18,-22],[-7,-4],[0,-4],[6,-3],[6,0],[5,-1],[4,-9],[-3,0],[-2,-1],[-1,-3],[-2,-4],[15,-15],[7,-3],[9,6],[-4,4],[-9,6],[-2,6],[6,1],[8,3],[6,7],[-3,10],[7,3],[24,6],[5,-4],[-2,-8],[-11,-18],[-4,-8],[6,1],[9,4],[7,6],[5,9],[0,7],[-4,30],[32,0],[-6,8],[-9,5],[-9,3],[-8,0],[4,24],[8,16],[10,11],[12,6],[17,-1],[46,-24],[-1,-8],[4,-6],[10,-6],[-7,-16],[8,-9],[10,-8],[11,-5],[20,-5],[41,-34],[7,-10],[4,-12],[4,-6],[26,-16],[-5,-4],[-5,0],[-11,4],[7,-6],[8,-4],[9,0],[7,3],[3,7],[-2,4],[-9,8],[-1,13],[-13,12],[-26,15],[6,2],[18,-4],[5,6],[-2,8],[-6,6],[-13,3],[-4,3],[0,9],[0,10],[-1,8],[-3,8],[0,4],[4,11],[0,2],[-2,3],[0,3],[2,4],[3,1],[12,-1],[7,1],[4,0],[3,-3],[0,-4],[-3,-11],[8,-10],[3,11],[-1,20],[-2,16],[4,0],[9,4],[4,0],[0,4],[-45,-11],[-24,0],[-18,15],[11,10],[40,2],[6,2],[4,4],[9,10],[9,7],[3,5],[1,9],[-22,-10],[-3,-1],[-6,-8],[-8,-2],[-33,4],[-3,-2],[-3,-8],[-4,-2],[-23,-6],[-9,2],[-16,18],[-5,2],[-28,-4],[-8,4],[-4,5],[-8,18],[-1,7],[5,6],[7,4],[5,5],[-39,-6],[-12,2],[-5,2],[-4,3],[-3,4],[-3,5],[-4,5],[-9,4],[-1,1],[7,10],[10,8],[10,5],[9,2],[19,10],[9,1],[-1,-11],[2,-7],[13,-18],[1,5],[0,3],[-1,2],[0,5],[1,4],[3,6],[2,4],[0,8],[0,7],[0,6],[2,7],[4,7],[5,3],[6,-1],[4,-4],[0,-3],[0,-9],[0,-3],[7,-10],[6,-5],[14,-4],[7,-3],[24,-26],[2,-5],[1,-6],[3,-8],[3,-4],[13,-12],[1,8],[-1,5],[-1,5],[-1,6],[-1,2],[-1,0],[-1,2],[1,4],[1,4],[3,1],[3,0],[2,-1],[-6,5],[-12,6],[-6,8],[0,10],[4,7],[46,32],[6,1],[6,-4],[-3,-5],[-8,-8],[-2,-7],[7,1],[18,11],[6,2],[3,-2],[0,-6],[0,-29],[3,-7],[7,2],[3,6],[0,7],[-3,15],[35,6],[11,-4],[2,-9],[-4,-10],[-7,-10],[-5,-5],[4,-7],[2,-9],[1,-11],[3,-10],[-4,-6],[-8,-4],[-4,-6],[11,-3],[36,7],[33,-14],[10,2],[-6,7],[-9,5],[-50,12],[2,7],[8,22],[4,18],[-1,2],[8,5],[9,1],[10,0],[12,-4],[11,-9],[4,-1],[3,2],[3,1],[3,-3],[-1,-9],[2,-2],[20,3],[81,-9],[3,-6],[-2,-5],[-31,-38],[-6,-3],[-9,-2],[-19,-9],[-51,-10],[-21,4],[-12,-2],[-11,-12],[-30,-14],[5,-3],[8,1],[7,3],[10,9],[70,9],[19,11],[42,6],[31,24],[11,1],[-4,-20],[-1,-8],[0,-11],[1,-9],[2,-9],[3,-8],[3,-4],[6,1],[9,4],[8,2],[4,-5],[-1,-13],[-1,-8],[1,-6],[7,-8],[-4,-5],[-3,-3],[-4,-3],[-4,-1],[8,-6],[10,4],[34,25],[4,1],[5,1],[0,-2],[2,-4],[3,-3],[2,-3],[-1,-3],[-8,-11],[0,-2],[6,-1],[25,18],[13,4],[3,4],[2,8],[5,3],[6,3],[4,5],[-14,6],[-53,3],[-7,4],[-27,27],[5,3],[10,1],[4,2],[4,4],[5,2],[23,2],[6,5],[6,10],[-6,5],[-16,6],[-7,5],[8,5],[21,3],[6,8],[-26,-1],[-14,3],[-10,11],[9,5],[31,3],[8,2],[20,1],[4,1],[1,4],[7,0],[-8,6],[-9,1],[-49,-7],[5,8],[24,13],[48,7],[12,8],[-28,-4],[1,5],[8,11],[-6,0],[-12,-5],[-5,1],[5,7],[9,21],[6,5],[7,2],[8,6],[15,14],[30,22],[18,23],[7,6],[21,7],[75,-9],[31,-11],[4,-3],[6,-6],[4,-2],[2,4],[0,5],[-3,3],[-8,4],[-16,18],[-8,6],[-32,8],[-3,2],[2,5],[28,21],[7,9],[3,1],[2,1],[3,2],[2,4],[1,6],[0,14],[1,6],[4,5],[11,11],[5,4],[5,-1],[11,-5],[19,1],[6,-3],[32,-30],[9,-5],[11,-3],[10,4],[4,14],[-4,13],[-17,13],[-5,9],[1,1],[2,3],[-19,7],[-5,5],[-7,10],[-3,2],[-5,1],[-14,-1],[-32,8],[-16,0],[-7,4],[-6,8],[7,10],[-1,12],[1,10],[26,15],[9,2],[6,-8],[-2,-4],[11,-3],[4,-4],[0,-10],[16,-4],[15,-7],[11,-12],[6,0],[4,12],[-3,6],[-3,4],[-8,6],[3,9],[0,6],[0,5],[5,4],[7,-1],[8,-3],[7,-1],[4,9],[-24,12],[-8,0],[4,7],[2,1],[-10,6],[-3,4],[-2,7],[4,4],[6,3],[7,1],[5,0],[-4,3],[-10,1],[-5,4],[6,4],[8,3],[8,2],[30,-6],[3,-1],[1,-3],[2,-5],[3,-3],[8,-3],[3,-2],[4,-7],[-2,-3],[-4,-4],[-5,-5],[46,4],[-5,9],[3,10],[3,7],[-5,3],[6,5],[11,0],[8,-8],[-2,-18],[-8,-11],[-10,-10],[-11,-8],[-9,-3],[4,-3],[11,5],[5,-4],[4,-5],[12,-2],[6,-3],[0,12],[2,6],[10,15],[6,6],[2,2],[4,-2],[1,-3],[1,-2],[1,-2],[4,-2],[14,-18],[3,-7],[7,-21],[-6,-21],[3,0],[3,2],[2,4],[3,5],[3,2],[4,1],[9,-1],[2,4],[12,38],[1,10],[-3,4],[-3,3],[-4,8],[-4,9],[-1,7],[6,14],[15,-7],[33,-25],[0,-7],[-3,-8],[-4,-6],[-5,-5],[-14,-9],[-6,-2],[6,-11],[6,2],[13,15],[3,-1],[5,-8],[4,-1],[2,2],[7,14],[8,5],[13,4],[12,0],[5,-7],[1,-4],[2,-4],[3,-5],[3,-1],[3,2],[3,4],[2,4],[1,2],[10,3],[8,5],[8,1],[8,-9],[2,-4],[2,-6],[0,-4],[-8,-4],[-8,-9],[-12,-4],[-7,-7],[-13,-19],[-7,-5],[-27,-7],[1,-5],[2,-4],[4,-7],[-4,-8],[-6,-6],[-6,-5],[-11,-3],[-13,-17],[-18,-5],[-5,-12],[-21,-21],[-13,-4],[-5,-4],[-9,-12],[-5,-5],[-38,-25],[-8,-11],[48,14],[12,-10],[-13,-14],[-50,2],[10,-11],[40,4],[13,-13],[-6,0],[-4,-5],[-2,-8],[5,-17],[0,-8],[-2,-3],[-16,8],[-12,-4],[-21,-21],[4,-2],[4,-1],[8,0],[-5,-4],[-4,-6],[0,-7],[5,-4],[5,3],[6,6],[7,4],[5,-5],[1,-9],[-2,-5],[-40,-32],[-9,-3],[-3,-2],[-3,-4],[-3,-3],[-1,-2],[-3,0],[0,-3],[0,-4],[0,-2],[-2,-5],[-2,-5],[0,-4],[2,-9],[-2,-4],[-5,-7],[0,-5],[-1,-28],[6,-13],[11,-9],[9,0],[-1,16],[-3,5],[-3,5],[-1,6],[1,9],[5,5],[18,7],[-2,-4],[-4,-12],[5,0],[5,2],[4,1],[4,-3],[-9,-3],[-4,-3],[-3,-7],[4,-3],[2,-5],[3,-5],[7,-3],[6,2],[13,5],[6,1],[7,6],[6,12],[10,29],[4,7],[5,4],[5,3],[6,0],[4,3],[5,6],[4,7],[2,7],[4,9],[19,17],[6,12],[-6,8],[-27,8],[5,10],[60,59],[59,73],[8,4],[8,3],[10,7],[8,11],[6,12],[12,39],[4,12],[4,2],[10,1],[5,3],[2,5],[3,11],[2,4],[8,10],[18,14],[14,21],[19,21],[66,48],[22,4],[-1,-2],[-3,-6],[13,-9],[-2,-7],[1,-3],[2,-2],[1,-6],[-1,-5],[-1,-5],[-5,-6],[-3,-3],[-4,-1],[-3,-2],[-2,-6],[1,-7],[1,-4],[3,-3],[3,0],[3,2],[5,3],[4,2],[3,-3],[-1,-6],[-2,-4],[-5,-7],[-4,-8],[-3,-11],[-2,-10],[2,-11],[-14,-18],[-83,-35],[9,-5],[34,13],[11,1],[24,-6],[9,-7],[-15,-49],[1,-8],[-4,-5],[-5,-4],[-4,-7],[0,-8],[1,-4],[3,-4],[2,-8],[-11,-9],[-6,-8],[-2,-10],[1,-4],[3,-6],[0,-4],[-1,-4],[-2,-8],[-1,-4],[-1,-2],[-1,-4],[0,-4],[3,-3],[11,-3],[3,2],[2,3],[1,4],[2,3],[3,4],[4,0],[7,-2],[4,2],[-5,12],[-1,4],[2,3],[6,7],[2,1],[8,-3],[9,0],[8,4],[7,6],[6,10],[1,9],[2,6],[37,2],[-4,-10],[5,-2],[29,8],[7,-1],[7,-3],[-3,3],[-10,5],[-3,3],[-5,9],[-14,14],[-3,6],[7,4],[3,3],[1,5],[-7,4],[-2,1],[5,10],[8,9],[9,7],[8,2],[2,-2],[5,-5],[3,-1],[3,-1],[12,1],[20,-9],[6,0],[-8,10],[-29,15],[-9,8],[2,9],[14,15],[-5,5],[-11,4],[-5,4],[8,15],[8,7],[41,2],[8,-3],[4,3],[4,8],[-7,1],[-7,3],[-4,6],[3,13],[6,13],[3,3],[7,2],[78,-13],[-41,13],[0,4],[4,-1],[4,3],[3,3],[4,3],[-3,3],[-4,6],[-3,3],[-2,0],[-6,0],[-2,2],[-1,3],[-1,2],[-1,0],[-2,1],[-10,-2],[-5,0],[-2,4],[1,5],[5,8],[1,5],[-4,-3],[-7,-9],[-4,-4],[-5,-2],[-41,7],[-10,6],[-9,10],[4,16],[4,8],[6,2],[49,-14],[-2,6],[-3,5],[-6,7],[-5,4],[-12,5],[-4,5],[-3,13],[9,4],[62,-11],[6,-8],[3,-15],[5,-7],[7,-1],[6,8],[-2,8],[-1,8],[2,7],[3,6],[-10,3],[-4,4],[-1,7],[0,10],[-1,5],[0,5],[3,7],[9,6],[12,-2],[9,1],[2,19],[18,-13],[3,-9],[-8,-14],[7,-4],[18,0],[7,-2],[12,-9],[6,-2],[24,6],[6,5],[4,6],[6,3],[6,0],[5,-3],[1,-3],[0,-3],[0,-4],[1,-2],[4,-3],[1,1],[17,19],[6,5],[6,2],[5,-1],[7,-4],[5,-6],[3,-7],[-3,-10],[-5,-4],[-6,-3],[-4,-6],[6,0],[-3,-1],[-2,-2],[-2,-4],[-2,-5],[4,1],[11,7],[-2,-6],[-2,-4],[-3,-4],[-3,-2],[8,-4],[31,16],[41,-2],[11,-10],[2,0],[2,-2],[1,-4],[-1,-4],[-3,-5],[-2,-11],[-6,-12],[-2,-5],[-5,-13],[-11,-3],[-20,2],[4,-7],[5,-2],[6,0],[6,-3],[-6,-8],[-7,-4],[-15,0],[0,-4],[2,-2],[1,-1],[1,-2],[1,-3],[-38,4],[5,-5],[5,-3],[11,-4],[-10,-11],[-12,-5],[-12,-2],[-12,1],[-15,8],[-6,1],[-10,-4],[-4,2],[1,10],[-4,2],[-4,-2],[-3,-3],[-4,-2],[-2,-4],[-36,-4],[-4,3],[-3,0],[-7,-2],[-3,-1],[4,-6],[10,-2],[5,-4],[-5,-3],[-4,-3],[-4,-3],[-3,-7],[24,12],[11,3],[25,-7],[1,-2],[1,-5],[3,-1],[21,1],[7,-1],[6,-4],[-16,-20],[-38,-9],[-18,-12],[1,-1],[1,-3],[-23,-14],[-11,-3],[-9,-6],[-13,-4],[-7,-5],[40,4],[100,38],[28,23],[8,1],[5,-9],[-4,-29],[-15,-23],[-19,-16],[-30,-19],[-6,-9],[-11,-9],[-23,-8],[-11,-8],[-7,-9],[4,-8],[2,-7],[4,-18],[3,7],[5,20],[4,6],[5,3],[10,5],[-6,-7],[-6,-9],[33,14],[36,6],[-30,-16],[-7,-10],[-3,-9],[2,-1],[11,5],[7,7],[4,4],[-5,-5],[-2,-4],[1,-5],[6,-3],[2,3],[12,18],[10,11],[10,9],[12,4],[11,0],[-3,-12],[-6,-6],[-5,-5],[-5,-7],[-5,-11],[-10,-16],[-11,-15],[-3,-8],[-1,-8],[3,-11],[1,-10],[-1,-11],[-3,-18],[0,-22],[6,-38],[0,-17],[-3,-11],[-5,-7],[-4,-6],[-10,-15],[-8,-6],[-9,-4],[-7,0],[15,-5],[17,11],[15,20],[10,23],[2,12],[-2,7],[-3,7],[-3,11],[0,6],[2,11],[-1,5],[-1,4],[-2,14],[2,10],[5,17],[3,9],[1,12],[0,11],[1,9],[4,9],[3,4],[9,7],[8,4],[1,5],[1,7],[1,6],[6,8],[11,6],[10,1],[9,-3],[-1,-11],[4,-10],[5,-6],[5,2],[1,6],[-1,5],[-2,5],[0,5],[3,5],[4,4],[8,3],[0,4],[-20,1],[-6,3],[-15,16],[-2,2],[1,7],[21,40],[2,5],[2,13],[2,6],[5,6],[4,1],[12,-3],[11,0],[2,2],[-3,7],[-10,7],[-10,5],[-4,7],[8,17],[25,23],[14,24],[9,11],[10,9],[9,6],[73,6],[7,-2],[6,-4],[-1,-3],[-11,-1],[0,-4],[44,-3],[12,-9],[0,-3],[0,-8],[1,-4],[2,-3],[2,-3],[6,-3],[22,-4],[6,-5],[-6,-9],[-24,-15],[7,-5],[27,1],[-5,-5],[-8,-3],[-14,0],[2,-6],[3,-3],[3,0],[4,1],[-3,-9],[-7,-3],[-7,-1],[-6,-4],[1,-1],[1,-1],[2,-2],[-4,-8],[7,-5],[6,5],[12,17],[6,5],[35,5],[50,22],[13,0],[9,-10],[1,-22],[-5,-15],[-17,-15],[-6,-11],[40,8],[4,3],[3,5],[2,5],[4,5],[24,24],[10,5],[21,1],[10,-2],[28,-18],[-6,-10],[-8,-5],[-16,-5],[9,-5],[31,-3],[26,-16],[3,-6],[-5,-7],[-18,-9],[-31,-7],[-8,-4],[0,-4],[4,1],[3,0],[3,-3],[2,-6],[-12,1],[-23,7],[-11,0],[0,-4],[45,-8],[82,22],[12,-2],[22,-9],[5,-8],[-10,-7],[47,-29],[3,-16],[12,-12],[7,-4],[4,6],[3,4],[25,15],[6,-4],[7,-17],[4,-4],[5,-3],[16,-25],[-4,-6],[-5,-5],[-3,-5],[1,-9],[3,-6],[5,-3],[4,-5],[3,-10],[-10,0],[-30,-12],[-107,-9],[-9,-6],[0,-13],[-7,-8],[-26,-5],[-6,-5],[-5,-8],[0,-7],[7,-4],[-8,-14],[-10,-8],[-48,-15],[-7,-4],[0,-4],[4,-3],[7,-1],[-130,14],[-131,15],[2,0],[-80,18],[-79,19],[-11,-4],[-5,-9],[44,4],[-6,-11],[-12,-9],[-13,-6],[-9,-2],[5,-8],[10,-4],[19,-1],[11,8],[4,0],[13,-7],[4,-1],[0,-4],[-25,1],[-7,-5],[53,-7],[19,-10],[40,1],[-2,-6],[-2,-2],[11,0],[6,-1],[2,-3],[-2,-3],[-15,-9],[8,-5],[51,5],[13,-7],[82,-21],[-6,-2],[-24,-18],[-13,-7],[-12,-8],[-13,-6],[-5,-6],[-2,-4],[-1,-3],[-1,-2],[-2,-4],[-3,-2],[-7,-3],[14,-2],[6,3],[10,15],[12,13],[6,3],[4,0],[4,-1],[3,-2],[4,-3],[4,-2],[7,4],[10,-4],[13,8],[8,-4],[-3,-8],[2,-5],[2,-5],[-1,-7],[9,-16],[-5,-6],[-5,-15],[-11,-6],[-14,-12],[-1,-5],[0,-5],[-5,-1],[-4,-5],[-3,-7],[-3,-7],[-6,-3],[-11,-2],[-6,-3],[10,0],[-3,-8],[-7,-11],[-6,-9],[10,4],[4,4],[9,12],[31,24],[10,3],[29,2],[22,-4],[2,0],[24,18],[10,5],[9,-3],[-5,-6],[-7,-14],[-5,-7],[-13,-6],[-5,-6],[1,-10],[4,10],[7,5],[14,5],[12,11],[2,-1],[6,-13],[4,-6],[16,-12],[3,1],[1,4],[-2,4],[-5,6],[-11,19],[-4,7],[6,3],[16,1],[5,5],[1,8],[-4,5],[-6,5],[-4,6],[2,7],[0,14],[0,13],[0,6],[21,0],[13,4],[4,-1],[6,-10],[-2,-5],[-14,-8],[9,-4],[20,5],[7,-5],[2,-4],[0,-5],[0,-6],[0,-5],[2,-13],[0,-1],[1,-26],[-1,-21],[-6,-13],[-15,-3],[7,-4],[19,4],[4,2],[1,6],[1,16],[-1,7],[0,4],[4,2],[1,3],[0,3],[0,3],[-1,7],[-2,5],[-1,5],[3,6],[-3,11],[9,5],[60,-6],[6,-6],[-4,-3],[-2,-6],[1,-5],[4,-2],[4,1],[5,3],[9,8],[2,0],[14,9]],[[58042,91349],[-32,31],[-3,6],[0,10],[5,44],[2,13],[3,8],[102,95],[32,51],[-40,73],[-15,46],[-5,6],[-90,33],[-90,33],[-11,3],[-10,7],[-7,11],[0,21],[-53,17],[-6,5],[-52,68],[-15,26],[-8,11],[-9,2],[-21,-9],[-35,5],[-14,-4],[-12,-12],[-2,-10],[-33,-12],[-18,-18],[-4,-1],[-5,0],[-4,-2],[-3,-5],[2,-2],[4,-3],[2,-2],[-11,-11],[-59,-16],[-5,0],[-20,12],[-8,0],[-8,-2],[-16,9],[-8,2],[-26,-6],[-18,4],[-48,-6],[-9,-4],[-6,-11],[-9,-10],[-3,-5],[3,-11],[-8,-12],[-28,-24],[-14,-21],[-12,-16],[-4,-5],[-3,-5],[-5,-2],[-41,-9],[-8,-4],[-7,-9],[-3,-7],[-2,-6],[1,-6],[4,-5],[7,-14],[0,-14],[-5,-13],[-7,-10],[-17,-9],[-4,-7],[1,-4],[3,-3],[2,-4],[-4,-7],[-2,-7],[0,-14],[-2,-5],[-4,-3],[-6,-14],[8,-23],[2,-5],[-26,-34],[-3,-9],[-10,-47],[-1,-16],[4,-16],[2,-3],[3,-10],[1,-5],[0,-4],[-1,-3],[-1,-2],[-1,-2],[0,-20],[-1,-4],[-2,-6],[0,-3],[4,-10],[1,-2],[-1,-3],[1,-2],[2,-3],[5,-5],[2,-3],[1,-4],[-2,-7],[-12,-9],[-3,-8],[-1,-8],[-3,-6],[-9,-10],[-5,-7],[-3,-9],[-4,-9],[-7,-5],[-7,-1],[-33,9],[-14,-2],[-13,-6],[-51,-36],[-11,-17],[-4,-12],[-1,-13],[0,-28],[-2,-4],[-1,-3],[0,-4],[3,-5],[-3,-12],[-4,-6],[-6,-2],[-7,-2],[-18,-10],[-7,1],[-9,-6],[-3,-10],[-3,-11],[-6,-8],[-8,-1],[-5,5],[-8,18],[-21,26],[-26,17],[-50,13],[-42,12],[-40,21],[-6,6],[-9,13],[-57,24],[-21,0],[-18,-10],[-5,-26],[-10,-24],[-25,-12],[-45,-6],[-79,-40],[-6,2],[-21,29],[-8,6],[-14,4],[-47,-7],[-71,29],[-7,2],[-8,-1],[-31,-9],[-6,1],[-3,12],[-7,53],[-4,6],[-22,15],[-22,30],[-3,6],[-4,15],[-4,7],[-38,34],[-21,31],[-79,117],[-7,5],[-90,12],[-60,-31],[-5,-5],[-5,-9],[-8,-20],[34,-56],[-16,-26],[-7,-4],[-11,3],[-80,37],[-8,-3],[-26,-37]],[[54131,90872],[-8,2],[-9,4],[-5,8],[6,13],[20,19],[14,1],[4,-14],[-15,-21],[-7,-12]],[[53944,90927],[11,-1],[8,-18],[-7,-16],[-12,-4],[-10,8],[-6,6],[-1,7],[2,6],[-11,0],[-13,1],[-5,9],[10,2],[-3,10],[14,3],[8,-2],[6,-7],[9,-4]],[[53896,90896],[17,12],[10,-5],[9,-12],[-13,-28],[-13,-4],[-3,-6],[-3,-4],[-2,-2],[-24,-2],[-3,-1],[-4,-3],[-4,-1],[-2,2],[-3,4],[-4,1],[-2,-2],[-1,-4],[-3,-4],[-4,-2],[-18,0],[3,-8],[11,-2],[5,-6],[1,-7],[-2,-5],[-4,-4],[-14,-2],[-4,1],[-2,3],[-1,8],[-2,2],[-6,-2],[-2,-4],[-2,-6],[-2,-5],[2,-7],[1,-3],[2,-2],[-5,-4],[-5,0],[-5,1],[-6,-1],[2,4],[-2,1],[-3,3],[-2,1],[0,13],[-8,8],[-10,-1],[-5,-11],[0,-3],[2,-3],[1,-2],[2,-1],[1,-2],[-1,-4],[-3,-3],[-3,-9],[-3,-7],[-4,-2],[-16,18],[8,22],[29,31],[-7,3],[-15,-17],[-8,-2],[0,4],[3,1],[3,2],[2,3],[1,6],[-3,0],[-2,0],[-4,4],[13,4],[-3,3],[-10,5],[10,13],[15,5],[13,5],[-6,3],[-4,3],[-4,1],[-19,3],[38,31],[8,-3],[4,0],[2,-1],[4,-6],[4,-2],[6,2],[4,3],[6,-2],[5,-7],[3,1],[2,3],[3,8],[3,1],[5,7],[7,14],[13,9],[18,-2],[7,-25],[-12,-15],[8,-7],[9,3]],[[54100,91033],[-12,-2],[-4,13],[-13,10],[-9,8],[-6,9],[5,7],[13,10],[13,-6],[20,-2],[22,-3],[18,-4],[19,-4],[0,-12],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-11,-7],[-36,0]],[[51465,85588],[1,-4],[4,-6],[6,-6],[1,-10],[0,-16],[-5,-14],[-1,-22],[-10,-10],[-7,-6],[-8,1],[-5,8],[-3,8],[-3,15],[-1,13],[2,14],[0,10],[0,6],[-2,3],[4,11],[14,-4],[-13,21],[-2,8],[0,9],[3,4],[4,4],[2,7],[-5,6],[-3,10],[2,8],[6,1],[10,-28],[3,-13],[2,-4],[3,-3],[2,-3],[2,-6],[-1,-3],[-1,-3],[-1,-6]],[[51474,85860],[3,-4],[4,-18],[3,-7],[-10,-12],[-5,-4],[-6,0],[0,4],[3,1],[9,7],[-3,9],[-1,10],[-2,8],[-6,2],[1,-10],[-3,-1],[-6,5],[-4,8],[-1,0],[-3,-2],[-3,-2],[-2,-3],[-1,-5],[0,-3],[1,-4],[0,-6],[-1,-7],[-8,-12],[-2,-7],[2,-9],[4,4],[5,9],[4,4],[-4,-12],[-1,-4],[0,-5],[2,-4],[1,-5],[-2,-7],[2,-4],[-2,-4],[-2,-3],[-2,-3],[-7,-3],[0,1],[-2,4],[-3,5],[-3,7],[-3,9],[-1,10],[2,19],[4,16],[7,14],[9,14],[-12,-1],[-6,3],[-2,10],[-3,-7],[-5,-3],[-3,2],[-2,10],[2,7],[3,4],[2,5],[1,10],[1,-1],[3,-2],[1,-1],[1,5],[2,2],[2,-1],[3,-2],[-2,8],[-10,17],[4,2],[3,2],[7,-1],[2,-8],[2,-6],[7,-10],[3,-2],[3,0],[2,-2],[0,-6],[1,-6],[3,-1],[4,0],[3,-1],[5,-15],[4,-8],[4,-3]],[[51524,85920],[1,-5],[0,-17],[2,-12],[-5,-9],[-16,-17],[-9,0],[-8,3],[-1,5],[3,1],[5,-1],[3,-1],[2,5],[-1,5],[-3,2],[-4,1],[-1,-2],[-2,-5],[-4,-2],[-4,1],[-3,2],[-3,4],[-1,3],[-2,11],[-6,21],[-3,8],[-4,7],[1,7],[0,5],[-1,5],[-2,4],[10,17],[3,8],[-5,3],[-1,2],[2,4],[3,4],[3,2],[3,1],[3,-1],[3,-3],[2,-5],[12,-3],[9,-12],[7,-16],[6,-17],[6,-13]],[[51560,86046],[8,4],[3,-1],[1,-7],[0,-29],[-2,-10],[-14,-23],[1,-7],[4,-7],[5,-13],[-5,-3],[-8,7],[-6,0],[-12,-13],[-5,-1],[-6,10],[-2,22],[-1,6],[-3,-2],[-3,-3],[0,-2],[-6,0],[-7,3],[-6,6],[-4,6],[-3,11],[4,4],[20,2],[1,2],[-2,8],[-1,6],[1,5],[2,4],[3,3],[1,0],[3,-3],[2,-1],[2,2],[1,2],[4,3],[1,1],[18,4],[1,-1],[2,-2],[2,-1],[2,2],[1,3],[0,2],[1,1],[2,0]],[[51419,86121],[-2,-5],[-5,-2],[-5,2],[-3,1],[-1,9],[-2,10],[-3,7],[-3,5],[-2,-15],[-7,3],[-7,11],[-5,9],[-3,9],[0,7],[1,3],[14,3],[4,0],[5,-6],[4,16],[-5,-3],[-4,3],[-3,5],[-5,3],[-2,4],[-1,15],[-2,6],[4,9],[-1,5],[-3,3],[-1,5],[-3,14],[1,6],[6,2],[2,-1],[1,-3],[6,-22],[19,-31],[6,-16],[2,-13],[-5,-7],[-9,0],[3,-6],[7,-9],[4,-6],[1,-5],[1,-8],[1,-8],[0,-9]],[[51382,86313],[-5,21],[3,-3],[2,0],[1,-1],[13,-18],[34,-13],[12,-17],[3,-13],[0,-11],[-3,-7],[-15,-10],[-4,0],[-2,6],[0,9],[1,4],[3,5],[-15,7],[-4,6],[2,2],[1,1],[1,1],[0,4],[-4,-1],[-1,3],[0,6],[-2,6],[-2,2],[-4,-1],[-4,-2],[-3,-1],[-4,4],[-4,11]],[[51579,86403],[0,-38],[0,-10],[-3,-29],[0,-10],[2,-28],[-2,-5],[-3,-2],[-8,1],[-3,-3],[-2,-6],[-2,-5],[0,-3],[-23,-5],[-7,1],[-5,5],[-7,13],[-4,3],[-3,3],[-12,21],[-19,20],[4,3],[14,1],[6,3],[2,2],[2,6],[3,4],[11,9],[13,8],[6,6],[8,5],[3,4],[2,6],[0,14],[1,6],[4,7],[8,3],[8,-3],[6,-7]],[[51377,86700],[8,-34],[-1,-9],[-5,-8],[-11,-9],[-5,-7],[-4,-5],[-3,8],[-2,12],[-5,7],[-1,-3],[-8,-10],[-1,-1],[-2,-5],[0,-5],[-1,-4],[-2,-5],[-2,10],[0,12],[0,21],[0,4],[-2,7],[0,5],[1,5],[7,1],[3,4],[6,-20],[3,-4],[3,9],[-1,8],[-7,28],[5,3],[3,-5],[4,-19],[1,-10],[1,-5],[2,1],[1,4],[0,6],[0,5],[-1,3],[2,0],[3,1],[2,1],[2,3],[-1,2],[-2,3],[-1,3],[4,1],[3,-2],[2,-3],[2,-4]],[[51351,87121],[12,6],[12,-1],[75,-29],[-5,-8],[-8,-5],[-16,-3],[4,4],[2,6],[0,6],[-4,5],[-9,-17],[-11,-11],[-11,-8],[-27,-9],[-7,3],[-5,9],[-1,7],[3,1],[6,-4],[2,2],[2,3],[3,7],[-8,0],[-19,4],[-7,4],[5,7],[7,6],[5,6],[0,9]],[[51593,87353],[12,0],[6,-2],[1,-6],[-3,-2],[-1,-3],[-1,-4],[-1,-5],[1,-3],[1,-3],[1,-1],[1,0],[-2,-7],[0,-3],[-3,-4],[-22,-10],[-43,1],[-2,1],[-2,2],[-2,4],[-2,5],[-1,4],[-3,4],[22,-5],[7,5],[-5,3],[-6,3],[-10,2],[-4,2],[2,5],[4,4],[5,1],[-1,2],[0,2],[-1,2],[-2,2],[6,11],[10,3],[20,-2],[2,1],[2,3],[3,1],[2,-3],[2,-4],[2,-3],[2,-2],[3,-1]],[[51663,87422],[1,-6],[1,-7],[1,-5],[4,-2],[4,-2],[11,-7],[3,-4],[-3,1],[-3,-1],[-6,-4],[-45,-47],[-17,-6],[2,7],[6,8],[3,6],[-2,1],[-2,2],[-2,1],[3,15],[-3,10],[-5,8],[-2,12],[3,13],[6,11],[7,7],[7,5],[8,4],[8,-2],[6,-6],[6,-12]],[[51739,87438],[11,1],[5,-2],[4,-7],[-2,0],[-1,-1],[0,-1],[-1,-2],[-43,-4],[-21,3],[-18,21],[49,4],[4,-2],[13,-10]],[[51903,87629],[7,-2],[7,-6],[5,-9],[-2,-12],[-46,-12],[-18,-12],[-3,-1],[-1,3],[-1,6],[-1,3],[-2,1],[-2,1],[0,3],[2,1],[3,2],[2,2],[2,3],[-1,12],[2,7],[5,4],[6,-2],[-2,-4],[8,-2],[30,14]],[[51897,87685],[8,2],[9,6],[9,1],[5,-9],[0,-9],[-13,-4],[-4,-7],[2,-1],[3,-4],[1,-5],[-1,-6],[-4,-3],[-5,3],[-8,8],[-15,8],[-4,6],[1,3],[3,1],[6,-1],[-6,6],[-2,4],[0,6],[4,5],[4,-2],[7,-8]],[[52160,87828],[20,9],[10,1],[8,-10],[-4,-12],[-7,-10],[-9,-8],[-10,-4],[-5,-3],[-3,0],[-2,2],[-4,5],[-1,1],[-5,2],[-15,11],[0,3],[5,1],[2,6],[1,6],[1,4],[2,1],[2,2],[2,1],[12,-8]],[[52122,87812],[3,-2],[3,-6],[5,-13],[5,-6],[2,-2],[-7,-6],[-5,-2],[-11,-2],[-4,-4],[-3,-5],[-20,-17],[-5,-2],[-5,2],[0,1],[-5,9],[-2,2],[-20,8],[-5,5],[-2,5],[2,6],[6,4],[11,4],[-4,5],[-1,5],[1,4],[4,2],[-5,4],[-2,1],[-3,0],[0,3],[7,0],[18,4],[-4,-7],[8,-1],[6,-4],[11,-16],[2,4],[1,6],[0,4],[-4,4],[3,4],[5,3],[1,1],[3,9],[0,6],[-6,16],[10,1],[5,-1],[3,-4],[0,-10],[1,-7],[-1,-7],[-2,-8]],[[52253,87921],[6,-6],[6,-11],[4,-11],[-1,-8],[4,-7],[2,-1],[0,-5],[-47,-11],[-12,3],[-13,21],[2,4],[15,8],[16,19],[8,6],[10,-1]],[[52356,87925],[18,-16],[7,-12],[-2,-12],[-40,-10],[-13,2],[-8,7],[-15,23],[-8,10],[2,6],[1,15],[1,4],[3,1],[3,-1],[2,-3],[2,-4],[3,-2],[3,2],[3,2],[2,0],[4,-7],[4,-11],[4,-5],[3,7],[-2,10],[0,9],[3,7],[5,3],[5,-3],[3,-6],[7,-16]],[[52198,87982],[5,2],[18,-2],[-9,6],[-44,11],[-6,7],[2,12],[-1,1],[-3,4],[9,7],[8,3],[16,2],[8,3],[14,17],[8,4],[18,0],[9,-5],[6,-23],[13,-11],[3,-10],[-8,-18],[-4,-5],[-3,-2],[-8,-3],[-1,-2],[-1,-5],[-1,-1],[-14,0],[-4,-2],[-8,-6],[-5,0],[-1,6],[-11,5],[-5,5]],[[52538,88115],[10,0],[0,-3],[-9,-4],[-10,-13],[-69,-27],[-39,-2],[-15,-9],[-25,-6],[-19,-15],[-8,-1],[-19,0],[-5,1],[-12,11],[-1,1],[0,1],[-1,2],[-2,0],[-2,-1],[-1,-3],[-1,-3],[-1,-1],[-4,0],[-3,2],[-2,4],[1,6],[-2,0],[3,12],[3,9],[5,7],[27,27],[6,2],[50,5],[21,-4],[5,0],[4,2],[-12,7],[-27,5],[-11,9],[6,6],[5,1],[10,-3],[47,18],[11,0],[1,-14],[4,0],[2,2],[1,5],[1,7],[2,4],[5,2],[9,1],[9,4],[4,-1],[3,-7],[-1,0],[-2,-3],[-2,-3],[-1,-2],[2,-4],[3,-2],[4,-17],[8,3],[9,6],[9,-1],[11,-14],[1,-3],[0,-3],[1,-2],[3,-1]],[[52322,88177],[-7,-2],[-6,0],[-6,3],[-6,7],[17,10],[52,10],[62,33],[-4,3],[-5,0],[-6,-3],[-4,-4],[2,7],[15,17],[5,-4],[4,2],[5,4],[5,2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[0,-4],[3,-2],[2,-6],[0,-12],[2,-7],[1,-4],[1,-5],[0,-9],[-9,-12],[-14,-6],[-55,-7],[-19,-7],[-6,4],[20,12],[-16,-4],[-4,-5],[-4,5],[-7,-1],[-15,-7]],[[53135,88702],[7,-11],[31,0],[7,-15],[-3,-4],[-2,-6],[-4,-15],[-7,6],[-21,3],[-5,6],[-4,9],[-10,2],[-19,-5],[-14,29],[3,9],[8,1],[15,-2],[-9,15],[-30,-4],[-11,7],[-2,8],[2,10],[3,8],[4,4],[5,1],[5,-4],[11,-9],[24,-12],[11,-11],[5,-20]],[[53080,88905],[-2,-2],[-21,1],[-19,-15],[-9,-10],[-8,-3],[-8,-2],[-6,1],[0,4],[73,55],[3,2],[4,-1],[7,-6],[7,-3],[4,-3],[4,-4],[1,-6],[2,-3],[17,-6],[0,-3],[0,-1],[-1,0],[-1,-1],[-12,-15],[-11,-10],[-12,-6],[-15,-2],[2,6],[0,3],[-2,2],[-3,1],[-3,-1],[-3,-2],[0,4],[4,3],[5,8],[4,8],[-1,7]],[[53011,88891],[-7,-5],[-22,-11],[1,6],[1,2],[-9,0],[5,5],[3,9],[3,10],[4,8],[5,4],[19,0],[5,2],[15,8],[11,9],[19,10],[0,9],[8,1],[9,-4],[6,-6],[-1,-2],[-1,-1],[-1,-1],[-39,-29],[-18,-6],[-16,-18]],[[53395,89037],[7,-3],[10,-1],[7,-4],[-3,-8],[-8,-10],[-11,-7],[-21,-8],[-6,1],[-12,6],[-6,2],[-6,0],[-13,3],[-6,5],[4,2],[11,-2],[4,1],[0,4],[-1,5],[0,4],[5,6],[11,4],[6,4],[-4,-1],[-3,1],[-1,3],[-2,5],[1,3],[1,7],[1,8],[-1,2],[5,9],[8,6],[7,5],[7,1],[5,-4],[9,-17],[8,-8],[-3,-10],[-10,-14]],[[53458,89216],[3,-8],[4,-6],[4,-3],[5,0],[-5,-6],[-9,-3],[-4,-7],[-14,-6],[-4,-4],[-3,-6],[-4,-4],[-5,-3],[-27,-5],[-8,1],[-1,-3],[1,-10],[3,-1],[4,-6],[4,-6],[-4,-3],[-4,-3],[-7,-11],[-3,-3],[-29,-19],[-7,3],[6,8],[5,13],[8,28],[-3,-1],[-3,1],[-3,1],[-3,2],[5,10],[3,11],[4,8],[5,4],[4,-1],[4,-5],[3,-2],[2,3],[4,10],[2,3],[0,5],[-7,-1],[-2,1],[-1,0],[-2,3],[-2,3],[4,4],[10,14],[16,14],[17,10],[-2,5],[-1,3],[-1,4],[0,5],[-15,-13],[-9,-3],[-8,3],[9,8],[-7,0],[7,15],[3,8],[1,9],[-2,1],[-2,3],[-2,1],[6,6],[4,9],[4,4],[6,-9],[6,-15],[2,-5],[3,-3],[14,-8],[3,-4],[13,-24],[1,-5],[0,-12],[1,-7]],[[53334,89372],[-1,-7],[-4,-3],[-8,-5],[4,-9],[1,-4],[-1,-6],[-4,-6],[-9,-15],[-2,-4],[-3,0],[-1,3],[-1,4],[-3,1],[-3,-1],[-3,-2],[-2,0],[-3,3],[5,4],[-6,2],[-18,-4],[-6,7],[2,10],[5,15],[7,13],[4,6],[19,8],[9,1],[8,-7],[3,0],[5,2],[4,0],[2,-6]],[[53527,89554],[12,10],[16,7],[17,1],[12,-7],[-4,-8],[-9,-1],[-34,-15],[-17,-13],[-14,-6],[-36,-37],[-8,-4],[-10,-2],[4,5],[4,2],[4,3],[2,7],[-31,-4],[4,8],[13,16],[4,7],[5,15],[3,7],[5,5],[31,19],[7,0],[6,-4],[-8,-13],[-3,-8],[2,-3],[5,1],[7,3],[6,4],[5,5]],[[53492,89601],[-11,-9],[-66,-27],[11,16],[4,3],[4,2],[4,3],[4,6],[8,8],[2,4],[-3,2],[-6,-1],[-10,-7],[-5,0],[0,4],[4,3],[8,8],[4,1],[16,2],[4,3],[1,4],[1,5],[2,5],[10,3],[14,11],[-9,7],[-10,3],[-11,-1],[-10,-5],[0,4],[26,15],[3,1],[3,1],[2,11],[3,1],[5,-5],[4,-5],[2,-6],[1,-8],[2,-7],[0,-7],[-6,-6],[-12,-5],[0,-4],[21,0],[-5,-5],[-5,-4],[0,-3],[11,2],[5,-1],[3,-6],[-2,-5],[-2,-3],[-11,-1],[-3,-2],[-5,-5]],[[53964,90246],[-4,-16],[-5,-14],[-6,-10],[-7,-8],[5,-21],[1,-10],[-5,-6],[1,-2],[1,-4],[1,-2],[-4,-3],[-5,-2],[-5,1],[-2,6],[0,9],[-1,3],[-2,2],[-11,16],[-9,4],[-21,5],[0,4],[6,3],[5,5],[9,12],[-2,9],[3,1],[19,-15],[5,-2],[5,3],[6,11],[7,15],[8,11],[7,-5]],[[53626,90798],[0,4],[7,0],[21,-11],[0,-5],[-4,0],[-2,-5],[-4,-4],[-3,-2],[-4,-1],[0,-4],[12,0],[-5,-7],[-5,-1],[-6,0],[-5,-2],[-3,-5],[0,-5],[2,-3],[4,-1],[4,3],[3,6],[3,2],[2,-14],[3,-10],[1,-14],[0,-7],[-2,-5],[-5,-2],[-14,-1],[-4,1],[-13,14],[-5,3],[3,-13],[-5,1],[-2,-1],[0,-4],[3,-4],[5,-2],[9,-1],[5,-3],[2,-5],[-2,-6],[-2,-5],[-4,-3],[-1,-3],[0,-3],[-1,-1],[-5,-4],[-27,-10],[-4,-9],[-3,-9],[-8,-6],[-16,-3],[2,6],[11,15],[4,4],[0,1],[0,4],[-1,8],[0,3],[2,6],[2,5],[6,11],[3,7],[1,12],[2,5],[2,2],[4,0],[2,2],[0,4],[0,8],[0,3],[14,28],[3,5],[6,7],[10,5],[4,3],[3,9],[-1,2],[-3,4],[-1,1]],[[53688,90817],[5,13],[9,2],[20,-5],[2,-2],[5,-8],[3,-2],[-6,-26],[-5,-13],[-5,-6],[0,-3],[-2,-14],[-2,-5],[-2,-1],[-7,9],[-3,2],[-15,-19],[-8,-7],[-4,8],[0,13],[-1,6],[-2,3],[-5,-2],[-1,-4],[0,-6],[-2,-4],[-3,0],[-2,3],[-1,6],[0,7],[1,8],[3,5],[17,20],[5,2],[5,-5],[6,-13],[4,-4],[5,3],[3,13],[-5,11],[-8,8],[-4,7]],[[54166,90956],[-15,-8],[5,-3],[4,-5],[-12,-6],[-48,-40],[-7,-3],[-5,5],[1,10],[5,9],[10,13],[-5,0],[-3,4],[-2,5],[-2,3],[-4,0],[-3,-3],[-4,-13],[3,-8],[-3,-6],[-5,-4],[-7,-2],[-3,-2],[-3,-3],[-1,-3],[1,-3],[12,-5],[-4,-5],[-12,-10],[-12,-3],[-4,-2],[-10,-9],[-6,-2],[-22,-2],[-4,-1],[-4,-5],[-2,-2],[-4,0],[-9,4],[-4,0],[1,-6],[1,-2],[-5,-3],[-10,0],[-8,-6],[-10,-3],[-4,0],[3,9],[1,3],[1,0],[1,1],[0,3],[-2,3],[-1,2],[-2,4],[-1,3],[11,12],[23,7],[10,6],[-15,-4],[-7,1],[-6,7],[4,5],[6,2],[11,1],[-7,7],[-2,11],[2,11],[7,7],[8,-2],[10,-20],[8,-2],[0,4],[-3,4],[2,3],[3,2],[2,5],[1,3],[3,-2],[6,-7],[6,2],[0,6],[-3,8],[-5,8],[-3,-4],[-3,0],[-3,4],[1,9],[-12,5],[-3,3],[30,8],[8,-2],[12,-9],[7,-2],[-2,10],[-8,8],[-3,7],[31,13],[5,-7],[0,-8],[2,-4],[5,-8],[3,-3],[0,7],[-1,14],[3,6],[3,4],[5,2],[5,0],[10,-4],[5,-4],[2,-6],[1,-9],[-1,-3],[-19,-18],[0,-5],[8,2],[16,12],[8,3],[3,4],[1,20],[4,8],[9,2],[22,-5],[15,12],[10,3],[20,0],[-5,-9],[-33,-44],[-6,-3],[1,3],[0,4],[0,3],[-1,2],[-3,-1],[0,-3],[0,-3],[-1,-2]],[[54561,91032],[3,-4],[6,-6],[3,-4],[-6,-4],[-14,-4],[-6,-5],[4,-4],[5,-6],[3,-7],[-4,-3],[-47,-2],[-14,-6],[-11,-9],[-5,-3],[-1,4],[-7,7],[6,7],[16,11],[-4,-1],[-4,1],[-7,3],[5,21],[9,18],[6,9],[8,5],[34,8],[5,-1],[8,-6],[4,-1],[2,-2],[2,-5],[0,-7],[1,-4]],[[54736,91224],[6,-3],[16,-17],[4,-8],[-11,-7],[-73,-19],[-7,6],[2,2],[2,5],[1,5],[0,6],[2,4],[10,9],[9,5],[18,29],[7,8],[4,1],[2,-7],[1,-1],[7,-18]],[[54779,91269],[0,12],[5,5],[26,-2],[13,-5],[11,-10],[10,-16],[-25,-18],[-14,-19],[-10,-6],[-11,0],[-9,6],[-4,7],[-1,19],[-4,11],[-14,12],[-6,7],[-1,9],[6,7],[7,-6],[12,-17],[6,-8],[8,-7],[9,-3],[7,2],[-5,6],[-12,8],[-4,6]],[[54591,91168],[13,-9],[-3,-5],[-9,-10],[8,-6],[-1,-10],[-4,-10],[-5,-9],[-4,-3],[-3,-3],[-3,-4],[-1,-7],[2,-7],[1,-2],[1,-2],[1,-4],[-2,-9],[-4,-3],[-7,0],[-11,5],[-20,2],[-34,-8],[-19,-13],[-4,-1],[-3,2],[-3,5],[-4,2],[-3,-3],[-3,-10],[-4,-16],[-4,-14],[-12,-11],[-4,-10],[-8,-22],[-8,-8],[-10,-6],[-7,0],[0,10],[-2,8],[1,9],[2,8],[1,9],[-1,8],[-2,6],[-1,7],[0,10],[-3,-6],[0,-5],[1,-6],[0,-8],[-2,-8],[-2,-3],[-7,-7],[-3,2],[-5,4],[-4,3],[-2,-5],[2,-7],[7,-9],[3,-6],[-7,0],[-3,5],[-2,7],[-3,6],[-4,1],[-2,-6],[-2,-8],[-4,-5],[1,-3],[0,-7],[1,-2],[-10,0],[-5,-1],[-4,-4],[3,-2],[3,-1],[4,-1],[3,1],[-4,-10],[-14,-15],[-1,-8],[-3,-2],[-8,3],[-4,-1],[2,3],[2,1],[0,4],[-6,1],[-9,9],[-4,2],[-42,-6],[-11,3],[-4,11],[5,-2],[5,4],[8,17],[5,5],[18,9],[10,10],[17,23],[12,8],[-9,7],[-1,3],[-1,6],[-2,4],[-3,1],[-3,-1],[3,-13],[0,-7],[-3,-6],[-29,-28],[-7,-3],[-2,1],[-6,3],[-2,-2],[-2,-2],[-2,-4],[-13,-7],[-10,-13],[-19,-4],[-7,-9],[8,1],[3,-2],[2,-7],[-5,-1],[-20,-13],[-3,-3],[-5,-13],[-8,-9],[-13,-9],[-11,-2],[-4,10],[2,1],[2,2],[1,2],[1,3],[-3,9],[4,9],[7,8],[6,3],[3,4],[10,23],[5,9],[20,25],[8,5],[8,8],[5,2],[24,0],[-7,2],[-20,2],[-5,5],[2,6],[9,2],[16,0],[-16,4],[-2,1],[0,5],[1,4],[-1,2],[-26,4],[5,12],[5,8],[6,4],[9,0],[12,-3],[3,3],[-4,9],[24,4],[3,-3],[8,-11],[5,-3],[-4,10],[-13,19],[4,-1],[8,-3],[5,-1],[-3,7],[-1,2],[0,4],[31,4],[2,-1],[3,-6],[2,-2],[4,-3],[4,0],[3,1],[4,3],[-4,0],[-3,4],[-3,4],[-3,4],[-6,1],[-13,1],[-5,4],[-5,8],[-6,6],[-4,9],[-1,15],[1,10],[2,3],[33,0],[4,1],[3,2],[3,1],[4,-2],[7,-5],[5,-3],[14,-10],[-7,5],[-2,3],[-1,2],[-2,8],[-1,2],[-7,4],[-39,0],[-7,3],[-4,5],[-1,8],[1,16],[-2,9],[3,-1],[6,-3],[3,-1],[3,2],[2,4],[2,4],[2,3],[8,1],[16,-5],[6,4],[-5,3],[-8,2],[-7,3],[-4,8],[1,12],[6,6],[14,2],[-2,5],[-1,4],[-3,2],[-2,1],[3,8],[6,15],[4,6],[9,4],[28,-4],[22,9],[8,-1],[6,-6],[0,-1],[1,-4],[-2,-8],[-1,-11],[1,-8],[4,-5],[2,-6],[-3,-10],[-10,-31],[-1,-4],[0,-7],[-1,-5],[-2,-4],[-4,-6],[-2,-4],[-5,-6],[-17,-12],[12,2],[13,5],[13,9],[10,14],[6,3],[5,-6],[4,-11],[-2,-10],[-3,-8],[-5,-16],[-3,-9],[-3,-4],[-2,-1],[-3,0],[-3,-2],[-2,-4],[-5,-8],[-2,-3],[-6,-3],[-16,-3],[-5,-6],[-2,-10],[1,-8],[2,-6],[1,-8],[-1,-10],[-3,-5],[-4,-5],[-3,-9],[11,7],[6,6],[4,7],[1,12],[-1,8],[0,8],[6,9],[6,5],[20,11],[13,11],[7,4],[7,-3],[5,-18],[4,-7],[6,5],[2,10],[-3,10],[-7,12],[-1,1],[-3,5],[-2,5],[4,2],[6,9],[2,3],[9,3],[29,-3],[-3,15],[-6,6],[-16,8],[-4,4],[-4,6],[-1,8],[2,10],[3,2],[23,13],[4,1],[5,-2],[8,-8],[4,-2],[5,1],[3,4],[0,5],[-9,7],[-4,10],[-1,9],[3,2],[16,-19],[21,-10],[11,-1],[3,-2],[0,-4],[0,-8],[4,-8],[21,6],[7,0],[-4,-6],[-10,-7],[-3,-8],[5,1],[5,-1],[5,-4],[2,-8],[-8,-5],[0,-5],[2,-7],[-1,-11]],[[54601,91314],[5,-4],[4,-9],[1,-9],[-5,-6],[1,-14],[-6,-6],[-25,-1],[-11,3],[-11,6],[-15,19],[-16,11],[-6,10],[12,16],[15,-3],[15,-11],[15,-6],[14,0],[13,4]],[[53999,91131],[-3,2],[-2,4],[-3,10],[3,6],[4,3],[8,0],[1,7],[10,6],[22,7],[0,4],[-7,0],[-22,8],[5,12],[9,11],[10,7],[7,-2],[1,-5],[1,-14],[1,-9],[3,-6],[4,-4],[5,-2],[6,0],[-2,3],[-3,2],[-2,2],[-3,1],[2,11],[3,6],[5,4],[5,3],[-7,5],[-3,5],[2,9],[4,5],[6,2],[5,-2],[5,-3],[-2,-5],[4,-3],[-4,-26],[2,-6],[9,3],[23,16],[12,4],[11,-4],[-3,-6],[0,-6],[2,-6],[4,-2],[3,2],[6,12],[5,3],[-1,5],[0,5],[1,5],[2,4],[-13,17],[10,8],[3,4],[6,-11],[5,-3],[0,-5],[0,-5],[0,-5],[2,-10],[2,-4],[3,4],[2,5],[1,4],[0,3],[-2,3],[8,16],[10,-4],[10,-12],[10,-5],[-3,15],[-7,8],[-8,6],[-7,8],[2,12],[-3,8],[-10,13],[-2,6],[-3,11],[-1,10],[22,18],[5,2],[6,1],[3,-2],[5,-6],[4,-8],[1,-9],[-6,-7],[12,-11],[4,-2],[-3,-3],[-1,0],[0,-5],[3,1],[4,-2],[6,-7],[-9,-6],[-4,-4],[-2,-6],[8,-3],[16,23],[6,-8],[-4,-24],[-2,-7],[-9,-17],[17,10],[5,8],[2,2],[2,0],[1,-2],[1,-4],[2,-1],[10,3],[-4,-10],[-2,-11],[-3,-8],[-6,-4],[-9,4],[-4,0],[-3,-4],[1,-3],[7,-9],[-5,-6],[-3,-2],[11,-6],[13,-4],[10,-9],[1,-22],[-7,-14],[-10,-10],[-76,-44],[-53,3],[-9,5],[2,1],[3,5],[1,2],[-15,5],[-1,1],[1,2],[2,11],[5,4],[12,1],[20,11],[7,1],[17,0],[2,2],[2,3],[2,4],[1,3],[8,5],[14,0],[7,4],[-3,7],[-2,7],[-1,8],[2,10],[-35,9],[-9,-5],[6,0],[15,-8],[-5,-12],[-8,-10],[-10,-6],[-7,3],[1,5],[0,2],[-1,2],[0,4],[-4,-9],[-6,-11],[-6,-8],[-6,1],[-5,4],[-10,-10],[-5,5],[3,7],[1,8],[-2,5],[-3,-2],[-2,-7],[-4,-10],[-2,-6],[-7,-3],[-8,3],[-7,8],[-5,12],[-1,-12],[-4,-8],[-8,-12],[-2,-5],[-1,-9],[-1,-2],[-17,1],[-3,-3],[-7,-8],[-8,-1],[-16,3],[-5,4],[-1,10],[2,11],[3,7],[-3,4],[-2,-3],[-1,-4],[-3,-1]],[[54313,91281],[-8,-10],[-10,-8],[-9,1],[-4,17],[3,7],[0,6],[0,7],[-1,9],[2,9],[6,14],[2,7],[16,24],[7,16],[7,15],[12,12],[13,7],[28,6],[9,8],[14,35],[8,5],[-1,3],[0,7],[-1,2],[5,3],[10,3],[4,2],[12,15],[35,16],[8,-2],[6,-12],[-1,-13],[-5,-12],[-4,-10],[-5,-13],[-2,-23],[-4,-10],[-4,-6],[-13,-7],[-12,-14],[-4,-2],[-3,-2],[-3,-5],[-6,-11],[-1,-1],[-5,-4],[-4,-3],[-1,-3],[0,-4],[-1,-3],[-4,-6],[-2,-3],[-9,-4],[-16,-10],[-35,-11],[-10,5],[-8,10],[-5,2],[-6,-4],[5,-5],[4,-6],[2,-8],[0,-9],[-1,-6],[-10,-23]],[[55019,91592],[2,-8],[1,-22],[2,-5],[3,-2],[0,-5],[-2,-5],[-2,-4],[-4,-2],[-15,2],[-17,-6],[-9,-6],[-5,-8],[4,-4],[1,-4],[0,-6],[1,-7],[3,-3],[6,-6],[2,-3],[-4,-7],[-7,-2],[-13,1],[0,-4],[9,-5],[6,-4],[2,-5],[2,-8],[6,-2],[6,1],[5,-1],[-6,-9],[-8,-4],[-38,-6],[-32,2],[-27,-11],[-25,2],[-9,-2],[2,8],[3,7],[7,13],[-9,1],[-7,-2],[-7,-4],[-8,-8],[-11,-15],[-40,-29],[-13,-13],[-8,-20],[4,-3],[7,2],[4,-2],[-8,-12],[-15,-8],[-16,-2],[-9,5],[1,9],[4,5],[6,2],[5,1],[-3,2],[-1,1],[2,7],[4,3],[5,1],[4,2],[-8,8],[-79,-18],[-4,6],[-9,3],[-1,11],[3,12],[9,6],[15,-9],[7,0],[-1,13],[26,8],[13,-4],[6,0],[4,9],[-1,1],[-1,2],[-1,2],[-1,2],[25,14],[8,11],[-25,-12],[-10,-1],[-20,9],[-21,0],[0,4],[2,1],[1,1],[1,3],[1,3],[-5,3],[-3,1],[-3,0],[18,9],[40,-5],[16,16],[-6,-3],[-2,-1],[-2,2],[-1,2],[1,3],[0,1],[0,3],[-3,8],[-3,5],[-1,-6],[-4,-7],[-8,0],[-17,5],[0,4],[3,1],[2,2],[3,6],[-23,-3],[-5,3],[-3,8],[5,4],[60,-4],[-2,1],[-5,7],[3,4],[-11,-1],[-5,2],[-5,7],[5,3],[5,1],[9,0],[-7,6],[-8,1],[-23,-4],[-26,1],[0,4],[4,0],[4,2],[7,6],[-1,3],[-1,6],[4,2],[3,0],[8,-3],[3,-3],[2,-1],[2,1],[3,6],[2,2],[5,-2],[6,-5],[4,-2],[5,1],[8,6],[5,2],[37,-4],[26,-16],[9,-1],[-3,9],[-5,4],[-11,4],[-10,10],[-4,2],[46,0],[13,8],[-47,7],[-23,9],[-16,28],[11,-1],[6,-3],[5,-10],[5,-5],[6,-4],[4,-1],[-3,9],[-1,3],[19,-3],[6,3],[-7,5],[-12,16],[-6,3],[4,7],[7,2],[8,-2],[9,-7],[5,-2],[8,-1],[3,-2],[4,-9],[3,-2],[7,-1],[5,-2],[15,-13],[5,-3],[12,-1],[0,4],[-8,4],[-4,4],[-3,4],[-2,5],[-4,13],[-1,2],[-20,11],[-5,7],[-2,4],[-2,7],[2,5],[1,4],[0,4],[-1,4],[13,-2],[11,-13],[17,-34],[4,-3],[7,-2],[7,0],[3,7],[-1,5],[-5,2],[-1,5],[-1,6],[-1,11],[0,5],[-1,4],[-1,3],[0,2],[2,4],[4,2],[4,-2],[3,-5],[2,-4],[8,-20],[5,-6],[5,4],[8,16],[5,7],[5,3],[6,-3],[4,-8],[6,-22],[-3,-5],[-6,-7],[-3,-4],[-2,-4],[0,-3],[-1,-3],[-1,-6],[-3,-10],[-1,-5],[2,-5],[4,-2],[4,4],[5,12],[2,10],[2,6],[8,4],[4,8],[3,2],[8,-2],[21,-14],[-3,-6],[-5,-3],[-10,1],[3,-11],[-3,-8],[-12,-13],[12,-9],[5,-2],[4,7],[-2,7],[4,5],[7,1],[6,-3]],[[55277,91823],[6,-8],[7,-7],[4,-9],[-1,-14],[-6,-12],[-18,-6],[-16,-21],[-10,-4],[-11,-1],[-9,-5],[-3,-3],[-3,-6],[-3,-7],[-1,-5],[2,-6],[5,-2],[5,-2],[4,-4],[3,-11],[-4,-8],[-15,-11],[-10,-4],[-30,8],[-3,-2],[-10,-8],[-5,-2],[-21,0],[-62,-16],[-19,0],[-7,6],[-11,14],[-6,4],[-16,0],[-8,3],[-7,9],[3,5],[6,8],[3,3],[-1,3],[-1,5],[3,0],[2,-1],[6,-4],[3,-1],[3,2],[6,4],[6,3],[28,-5],[7,-4],[2,-3],[4,-7],[-1,0],[-1,-3],[1,-3],[3,-2],[2,2],[5,8],[3,2],[-1,4],[6,0],[3,2],[3,4],[7,3],[3,4],[-21,-5],[-6,1],[-4,3],[-29,41],[8,3],[28,-3],[-1,0],[12,-2],[34,2],[37,-9],[6,5],[-11,5],[-56,6],[-11,6],[-2,12],[-5,9],[2,9],[7,7],[7,3],[3,-1],[2,-3],[5,-6],[5,-3],[8,2],[4,-1],[1,-5],[-1,-6],[1,-5],[5,0],[3,2],[2,5],[4,11],[6,9],[8,4],[19,1],[-3,-29],[6,-25],[12,-16],[15,1],[-5,4],[-2,7],[1,8],[5,19],[9,19],[-4,7],[-24,23],[-4,7],[-2,8],[3,15],[11,-2],[13,-7],[9,2],[-4,3],[5,5],[6,-1],[5,-5],[5,-7],[-3,-2],[-1,-3],[-2,-7],[6,0],[11,2],[24,-9],[4,-3]],[[56018,91894],[5,3],[5,1],[5,-1],[4,-3],[-2,-6],[-2,-2],[-4,-2],[-3,-2],[-3,1],[-2,3],[-2,3],[-1,5]],[[55527,91935],[6,4],[8,2],[7,-2],[6,-4],[-13,-5],[-9,1],[-2,2],[-3,2]],[[55821,91927],[39,4],[-33,-17],[-1,-11],[-10,-10],[-13,-5],[-14,0],[-10,6],[-9,14],[-3,9],[-1,7],[7,15],[5,8],[6,3],[10,1],[7,-4],[14,-17],[6,-3]],[[55844,91961],[2,-13],[-8,-7],[-18,-2],[3,6],[8,10],[7,7],[6,-1]],[[55449,91935],[5,2],[5,0],[4,-2],[4,-6],[0,-13],[-10,-9],[-30,-11],[-2,-3],[-2,-7],[-1,-2],[-1,-7],[0,-3],[-2,-4],[-5,-3],[-2,-3],[-3,-6],[-11,-11],[-3,-4],[-2,-5],[-1,-5],[-2,-4],[-9,-9],[-11,-6],[-59,-15],[-9,8],[-9,18],[-4,4],[-55,38],[-22,7],[-9,10],[-1,10],[11,4],[27,-8],[5,2],[8,10],[6,5],[-16,2],[-9,5],[-4,10],[4,10],[9,5],[16,4],[14,-4],[4,1],[5,5],[4,2],[3,-2],[2,-4],[1,-4],[1,-2],[5,-1],[12,9],[-4,6],[-6,6],[-4,6],[-1,10],[6,-4],[5,-1],[4,2],[25,15],[5,-3],[0,-5],[-1,-7],[3,-5],[6,2],[6,6],[6,5],[7,-5],[-4,-7],[-4,-11],[-1,-10],[14,-8],[14,-15],[8,-2],[0,15],[5,11],[8,8],[19,7],[6,-1],[5,-5],[2,-8],[-1,-6],[-2,-6],[0,-6],[3,-6],[3,2],[4,7],[3,5]],[[55775,91979],[1,-9],[0,-5],[-2,-3],[-5,-3],[-6,-1],[-7,3],[-5,4],[-5,2],[-3,-2],[-5,-8],[-3,-2],[-3,-1],[-6,-3],[-4,0],[-4,1],[1,3],[1,4],[1,4],[1,13],[0,6],[-2,5],[-5,3],[-3,-3],[-2,-7],[2,-9],[-13,0],[1,-9],[-4,-3],[-11,4],[-5,0],[-5,2],[-5,4],[-4,6],[-2,7],[-1,4],[1,4],[0,8],[2,16],[4,12],[7,9],[6,5],[18,5],[5,3],[0,2],[1,4],[0,4],[1,3],[3,2],[7,2],[41,0],[12,-4],[9,-6],[4,-6],[0,-9],[-4,-14],[-6,-11],[-2,-6],[-2,-11],[0,-2],[-1,-3],[1,-3],[4,-10],[1,-1]],[[55550,92012],[36,-16],[12,0],[0,-4],[-28,-7],[-8,-6],[3,-5],[-1,-5],[-4,-3],[-11,-6],[-44,0],[-12,5],[-8,10],[0,5],[0,18],[0,7],[-2,3],[-2,2],[-2,4],[-7,18],[-3,4],[-5,6],[-2,4],[-9,9],[-20,7],[-7,11],[4,4],[4,-1],[8,-3],[0,4],[-1,7],[7,6],[17,7],[4,-3],[1,-7],[1,-8],[1,-6],[4,-7],[5,-5],[5,-4],[5,-1],[6,-7],[3,-13],[4,-11],[8,3],[2,6],[4,15],[2,4],[5,-2],[14,-11],[-3,-11],[2,-7],[5,-6],[7,-4]],[[56367,92105],[6,-3],[6,-1],[6,-3],[6,-7],[3,-9],[-1,-7],[-4,-3],[-75,5],[-80,20],[-18,21],[-2,3],[2,9],[5,7],[7,2],[5,-3],[3,-7],[5,-5],[10,-7],[-8,14],[-2,3],[0,9],[1,7],[3,2],[13,-12],[12,11],[7,-9],[2,8],[3,4],[4,-1],[3,-7],[2,0],[0,7],[3,6],[4,2],[4,-3],[1,-5],[0,-13],[1,-6],[5,-10],[4,5],[2,12],[-2,13],[8,5],[6,-6],[5,-11],[2,-15],[7,-5],[35,-5],[-3,-1],[-2,-3],[-2,-3],[-2,-5]],[[56571,92223],[-2,-2],[-4,-5],[-2,-1],[2,-4],[5,-6],[2,-2],[-8,-19],[-11,-13],[-51,-37],[-25,-7],[-7,-6],[5,1],[8,-1],[6,-3],[5,-5],[-46,-21],[-17,-3],[-14,3],[-6,11],[2,16],[7,18],[4,7],[2,9],[1,9],[-1,8],[-17,-32],[-10,-11],[-8,5],[-4,4],[-4,1],[-5,0],[-4,0],[-3,3],[-18,23],[-5,3],[7,4],[17,-4],[6,8],[-12,6],[-3,2],[-4,7],[1,3],[7,3],[4,3],[2,1],[2,0],[2,1],[1,3],[0,4],[3,0],[5,0],[2,0],[1,2],[3,8],[1,2],[30,14],[5,-4],[2,-9],[7,2],[7,7],[6,2],[0,4],[-6,3],[-5,6],[-2,5],[6,2],[5,0],[7,-3],[6,-6],[3,-9],[-1,-9],[-2,-8],[0,-7],[5,-2],[3,4],[6,21],[4,7],[-6,3],[-2,4],[3,5],[7,0],[5,-2],[10,-9],[6,-1],[-4,7],[-2,1],[7,10],[25,-10],[10,0],[-6,9],[-8,7],[-14,8],[1,3],[3,7],[1,3],[-16,4],[-2,3],[20,4],[6,0],[5,-5],[4,-4],[11,5],[5,-3],[-4,-4],[2,-5],[9,-11],[-2,-8],[-2,-7],[-1,-7],[0,-7],[3,-8],[5,-3],[6,-1],[7,-4]],[[56685,92316],[-1,-9],[5,-6],[13,-9],[-8,-19],[-25,-12],[-23,-26],[-17,-7],[-17,1],[-15,6],[-4,8],[-8,12],[-3,8],[-1,4],[0,6],[0,5],[-2,2],[-12,0],[6,8],[4,7],[0,7],[-6,6],[5,4],[2,3],[2,5],[-13,10],[-2,5],[1,6],[3,4],[7,8],[6,12],[3,3],[30,2],[7,-5],[-3,-4],[-1,-4],[2,-3],[4,-1],[-2,-4],[-2,-2],[-1,-1],[-3,-1],[3,-4],[4,1],[3,2],[3,1],[27,0],[4,-2],[15,-10],[3,-4],[3,-3],[2,-5],[2,-5]],[[56228,92227],[-4,2],[-3,0],[-7,-6],[-8,-3],[-10,3],[-4,6],[5,10],[-7,6],[-5,-7],[-7,-23],[-6,-6],[-10,-4],[-9,-1],[-3,7],[3,10],[2,7],[7,13],[5,6],[12,7],[5,9],[-2,1],[-6,4],[21,13],[6,7],[-65,-4],[-2,-2],[-4,-5],[-2,-1],[-8,0],[-8,4],[4,7],[8,8],[5,5],[-18,0],[-9,2],[-7,6],[10,9],[16,-2],[42,-16],[7,0],[6,5],[2,5],[0,6],[-2,6],[-4,3],[10,0],[16,-8],[26,-20],[0,4],[-4,8],[-5,15],[-3,15],[3,7],[6,0],[3,-1],[2,-3],[3,-6],[4,-6],[6,-4],[6,0],[6,3],[-4,5],[-1,6],[2,5],[4,4],[7,2],[7,-3],[24,-15],[1,-4],[-4,-6],[-10,-6],[-3,-5],[3,-7],[7,-3],[6,6],[5,7],[5,2],[4,-5],[1,-9],[0,-9],[2,-7],[3,-4],[2,5],[1,8],[0,7],[3,6],[7,2],[15,-2],[-5,9],[-6,7],[2,11],[-4,7],[-7,5],[-7,10],[-1,4],[-1,4],[0,3],[9,2],[14,7],[-2,-6],[-1,-2],[5,-4],[11,-1],[4,-7],[-3,0],[0,-4],[5,0],[9,3],[5,-2],[2,-5],[-2,-5],[-8,-8],[6,-6],[8,-8],[7,-6],[6,4],[-4,8],[6,4],[6,3],[3,5],[-2,13],[7,0],[13,-8],[7,0],[-3,3],[-3,5],[-2,5],[2,3],[18,-4],[5,4],[-3,2],[-2,2],[-5,0],[-3,1],[-1,3],[0,3],[-1,1],[-16,6],[-5,4],[-6,10],[5,4],[14,1],[-2,0],[-3,2],[-2,2],[-2,4],[7,1],[13,-11],[6,-3],[6,2],[1,5],[-2,5],[-5,4],[0,5],[8,-6],[15,-17],[8,-6],[4,-1],[12,2],[3,3],[0,9],[-6,11],[1,7],[0,5],[-2,7],[-1,7],[4,3],[4,0],[5,-2],[4,-3],[3,-5],[3,-4],[11,-8],[2,0],[1,-10],[3,-5],[3,-2],[5,-1],[-7,-5],[-13,1],[-7,-5],[4,-4],[5,-2],[10,-2],[-3,-2],[-6,0],[-2,-2],[-2,-3],[-1,-7],[-1,-2],[-5,0],[-10,6],[-4,-2],[-2,-5],[-1,-13],[-1,-6],[-1,-1],[-2,1],[-3,0],[-4,-5],[-9,-4],[4,-6],[2,-2],[-25,5],[-4,3],[-3,0],[-1,-10],[-2,-3],[-1,-2],[-2,-1],[2,-5],[3,-2],[8,-1],[-4,-3],[-4,-10],[-3,-3],[-6,-2],[-12,4],[-5,-2],[15,-8],[-7,-16],[-9,3],[-11,7],[-9,-2],[6,-2],[1,-7],[-3,-7],[-6,-4],[-7,0],[-13,7],[-7,1],[0,-5],[16,-8],[-3,-5],[-4,-3],[-3,-3],[-4,-1],[-5,1],[-7,6],[-3,1],[-3,-2],[-6,-12],[-3,-2],[-5,1],[-2,3],[1,5],[3,7],[-25,7],[-13,1],[-2,-8],[-2,-4],[2,-7],[-1,-4],[-3,-1],[-3,0],[-2,1],[-2,2],[-2,0],[-1,-8],[-2,-4],[-2,-2],[-1,-1],[-14,14],[-8,3],[-3,-15],[-2,-7],[-6,1],[-5,5],[-2,3]],[[56686,92495],[38,2],[10,-6],[-9,0],[0,-6],[-3,-3],[-5,0],[-4,1],[2,-4],[-4,-5],[-5,2],[-5,2],[-5,1],[-3,-4],[-2,-5],[-3,-4],[-10,0],[-6,2],[-4,3],[-2,5],[-4,7],[-21,8],[8,5],[19,1],[9,6],[-9,4],[-18,-3],[-9,3],[-7,8],[3,3],[15,1],[-3,5],[-2,2],[-2,1],[10,7],[35,-3],[-2,-6],[-2,-2],[10,-5],[22,2],[10,-5],[-10,-4],[-22,2],[-10,-6],[2,-2],[1,-2],[0,-2],[1,-3],[-4,-3]],[[57259,92539],[14,7],[7,0],[2,-10],[-3,-11],[-7,-7],[-19,-4],[-2,-2],[-5,-7],[-4,-3],[-29,2],[-6,-2],[-7,-5],[-6,-3],[-28,1],[-13,8],[-6,-1],[-4,-11],[8,-4],[2,0],[0,-4],[-24,2],[-18,-8],[-13,-3],[-6,3],[-4,5],[-7,11],[-10,8],[-11,6],[33,12],[7,8],[-20,3],[-5,3],[-5,2],[-36,-14],[-5,2],[-3,6],[-1,5],[1,4],[-1,6],[16,12],[-10,4],[5,4],[7,2],[12,2],[5,-2],[6,-4],[5,-2],[6,3],[-2,3],[-2,4],[-2,2],[4,6],[5,-1],[10,-5],[8,0],[2,-2],[3,-4],[5,-3],[12,2],[21,-11],[2,-6],[-1,11],[-3,8],[-5,5],[-36,28],[3,7],[12,-4],[5,3],[3,5],[4,3],[4,1],[3,-3],[2,-9],[34,5],[-1,-7],[-5,-18],[0,-5],[6,-4],[15,10],[6,0],[-1,-10],[5,1],[7,5],[4,2],[7,-1],[12,10],[7,-5],[1,-17],[-12,-12],[-16,-7],[-12,-2],[5,-5],[5,-3],[5,-1],[6,0],[0,-12],[-7,-4],[-3,0],[8,-5],[9,-2],[10,1],[8,2],[5,5],[12,13],[5,2]],[[53576,89725],[2,-5],[1,-12],[-2,-8],[-3,-2],[-3,-4],[-3,-4],[-6,-6],[-4,4],[-7,-3],[-7,2],[-3,7],[-2,5],[-6,1],[-4,-1],[-2,1],[2,4],[2,5],[7,7],[5,4],[10,11],[0,3],[1,3],[-1,3],[2,1],[2,-5],[1,-4],[4,1],[1,-2],[2,-1],[1,-1],[6,0],[2,0],[1,-2],[1,-2]],[[53594,89828],[6,0],[1,-4],[-3,-12],[-2,-14],[-3,-9],[-2,-3],[-4,4],[-2,2],[-2,4],[0,6],[-3,-4],[-1,-4],[-1,-7],[0,-8],[3,-10],[2,-3],[-7,2],[-2,3],[-2,2],[-4,3],[-2,-1],[-2,2],[-1,2],[-3,3],[-5,2],[3,2],[9,6],[2,6],[-4,9],[-3,7],[-2,1],[0,3],[3,3],[16,5],[3,0],[1,-2],[0,-4],[2,-2],[1,-3],[0,-4],[2,0],[3,7],[0,6],[0,3],[3,1]],[[54248,90708],[3,0],[0,-5],[-5,-7],[-9,-5],[-2,1],[-2,1],[-22,-6],[-4,0],[-8,3],[-27,2],[-11,-2],[-3,1],[0,5],[-3,10],[1,6],[4,4],[0,3],[-2,4],[2,1],[11,-1],[6,-2],[4,0],[2,4],[2,4],[8,8],[2,4],[2,-1],[1,-3],[-1,-4],[-1,-4],[0,-3],[9,-10],[6,-3],[14,-2],[4,-2],[1,-3],[5,0],[3,-1],[1,-5],[5,5],[0,1],[4,2]],[[54425,90745],[0,-2],[0,-5],[-2,-2],[-11,-5],[-12,0],[-16,5],[-15,11],[-7,1],[-7,-12],[-5,-2],[-3,-1],[-9,-1],[-26,2],[-4,2],[-2,1],[-2,2],[-4,3],[0,2],[4,0],[3,1],[4,5],[4,3],[11,2],[79,2],[9,-6],[7,-2],[4,-4]],[[54212,90732],[-1,4],[-1,2],[1,3],[3,2],[1,4],[4,5],[6,3],[3,4],[0,3],[2,0],[3,-5],[5,-11],[5,-8],[3,-11],[-5,-6],[-24,0],[-3,4],[-2,7]],[[54165,91274],[-2,-10],[-8,-5],[-16,-2],[-3,0],[-9,6],[-4,2],[-1,3],[4,9],[0,4],[-1,3],[1,3],[5,4],[7,1],[17,-3],[6,-5],[4,-10]],[[55750,91859],[-1,-3],[0,-4],[2,-10],[4,-14],[-4,-12],[-12,-8],[-16,-5],[-14,4],[-6,7],[-2,5],[-1,11],[2,8],[5,12],[2,5],[1,5],[1,3],[4,3],[6,2],[32,3],[3,-3],[0,-4],[-2,-2],[-1,-1],[-3,-2]],[[58339,91825],[21,2],[3,-4],[-6,-7],[-8,-4],[-23,-6],[-13,-10],[-7,-3],[-5,2],[-6,6],[-5,3],[-4,-3],[4,-7],[-4,-6],[-10,-8],[-23,5],[6,15],[19,19],[8,10],[-6,16],[2,15],[7,11],[10,3],[26,-7],[6,-5],[1,-4],[0,-8],[1,-5],[1,-2],[7,-5],[-1,-3],[-1,-7],[0,-3]],[[55503,91926],[6,-4],[6,-13],[-6,-14],[-12,-15],[-9,-19],[-11,-16],[-12,-6],[-53,-10],[-14,1],[2,11],[19,21],[6,15],[4,4],[14,5],[27,17],[9,9],[6,10],[7,6],[8,-1],[3,-1]],[[55185,91941],[-2,4],[-1,8],[5,10],[7,7],[3,4],[-1,2],[1,5],[-2,4],[0,6],[5,2],[9,-2],[7,-6],[4,-10],[1,-11],[2,-4],[4,3],[3,5],[17,20],[5,-1],[3,-5],[14,-7],[1,-7],[-4,-5],[-6,-7],[-8,-4],[-20,-5],[-20,-11],[-10,-11],[-3,-6],[-1,-1],[-2,-1],[-2,-1],[-3,2],[-5,6],[0,8],[4,6],[1,2],[-6,1]],[[55803,91972],[-9,-6],[-10,2],[-5,4],[-2,8],[-2,15],[4,13],[7,6],[7,-3],[16,-22],[0,-8],[-6,-9]],[[55427,91980],[-14,0],[-20,6],[-16,6],[-4,3],[-3,5],[2,8],[7,8],[12,5],[10,-4],[30,-21],[5,-5],[-1,-6],[-5,-4],[-3,-1]],[[55345,92044],[1,-5],[1,-4],[0,-7],[-6,-9],[-1,-3],[0,-3],[0,-3],[1,-2],[-1,-3],[-14,-12],[-10,-3],[-10,4],[-20,14],[-6,3],[-4,4],[2,3],[12,7],[5,1],[3,-3],[4,-5],[3,0],[-1,17],[5,4],[6,2],[1,3],[-6,4],[-2,5],[1,2],[-1,3],[-4,3],[-2,2],[1,3],[3,2],[9,-1],[3,-1],[1,-1],[1,1],[0,3],[2,3],[2,4],[3,0],[2,-1],[1,0],[2,2],[2,-2],[2,-2],[5,-10],[0,-8],[-1,-5],[5,-6]],[[56038,92149],[15,-12],[2,-7],[-2,-14],[-8,-21],[-4,-8],[-5,-5],[-5,-3],[-3,1],[-4,5],[-3,8],[0,14],[3,16],[0,12],[-1,5],[1,3],[1,1],[2,0],[1,4],[0,6],[3,1],[4,-4],[3,-2]],[[47788,92620],[6,-10],[0,-12],[-5,-10],[-8,-4],[-6,-5],[1,-11],[5,-14],[1,-10],[-6,-8],[-110,-41],[-7,1],[-13,6],[-7,1],[-34,-11],[-11,-8],[-10,-4],[-46,-44],[-4,-3],[-10,-4],[-5,-3],[-2,-4],[-5,-9],[-2,-4],[-7,-4],[-9,-3],[-10,1],[-7,3],[2,4],[1,5],[1,3],[-12,17],[-2,8],[8,3],[8,0],[4,1],[4,3],[10,11],[8,3],[3,3],[3,4],[2,3],[6,3],[23,3],[12,5],[12,10],[2,2],[1,2],[1,3],[0,1],[11,6],[33,6],[2,2],[1,3],[1,2],[3,1],[6,1],[3,1],[2,4],[9,19],[2,3],[5,5],[2,4],[13,24],[6,8],[14,12],[38,4],[4,2],[6,9],[1,1],[7,2],[22,-2],[11,4],[6,0],[6,-4]],[[55322,94605],[25,-22],[10,-3],[3,-2],[-1,-4],[-4,-8],[0,-2],[1,-5],[0,-2],[-2,-3],[-4,-3],[-7,-10],[0,-3],[-1,-8],[-13,-14],[2,-4],[-7,-5],[-26,-8],[-8,3],[-3,8],[-2,4],[-3,2],[-4,1],[-11,5],[-3,4],[-6,8],[-18,14],[-15,23],[-6,6],[8,15],[15,7],[30,2],[13,-4],[24,9],[13,-1]],[[57077,95900],[7,1],[21,-1],[0,-8],[-5,-2],[-47,-45],[-29,-15],[-13,-12],[-7,-4],[1,-2],[0,-1],[0,-2],[1,-2],[-12,-13],[-37,-21],[-8,-17],[1,-7],[2,-4],[1,-3],[-4,-4],[-4,-1],[-7,-1],[-6,2],[-4,4],[1,9],[6,10],[7,9],[11,7],[17,23],[72,55],[19,28],[-1,5],[4,1],[8,8],[5,3]],[[56784,96559],[-25,-16],[-24,-24],[-5,-24],[-21,-20],[-17,-20],[-5,-5],[-3,-6],[-5,-6],[-6,-5],[-8,-4],[-4,-7],[-5,-15],[-13,-26],[-7,-10],[-44,-31],[-54,-18],[-41,-27],[-10,-2],[-24,-29],[6,-22],[-16,-16],[-86,-4],[-61,-11],[-26,6],[-37,8],[-8,0],[-5,1],[-3,3],[-2,5],[-3,4],[-3,12],[10,9],[22,10],[-4,17],[0,5],[-2,5],[-9,8],[-7,9],[-3,3],[-1,3],[3,7],[4,4],[36,17],[10,11],[20,4],[16,15],[8,11],[5,11],[-31,-2],[-16,-7],[-9,-16],[-7,3],[2,7],[6,7],[7,4],[-11,11],[-17,6],[-16,0],[-43,-13],[-3,-3],[-11,-18],[-14,-9],[-115,-10],[-115,-10],[-13,-8],[-63,-11],[-15,3],[-32,-1],[-8,2],[-8,6],[0,7],[4,6],[14,14],[-3,5],[-8,3],[-8,8],[6,4],[-3,3],[-4,1],[-7,-1],[4,4],[4,1],[7,0],[-2,9],[-1,3],[87,20],[8,4],[5,8],[1,6],[-2,6],[-1,9],[2,2],[3,3],[1,3],[0,4],[0,2],[-1,1],[-1,3],[1,7],[1,8],[2,8],[1,3],[19,15],[10,10],[13,6],[7,6],[0,15],[12,10],[22,12],[2,9],[-3,4],[-4,4],[-1,7],[5,5],[30,7],[-3,6],[-4,6],[-4,4],[-4,-1],[-7,-2],[-60,15],[-14,10],[-21,6],[-101,55],[0,8],[6,7],[26,16],[97,22],[98,21],[97,-3],[98,-3],[26,9],[12,9],[120,15],[26,-12],[20,-2],[54,-19],[26,-19],[14,-6],[0,-4],[-21,-7],[-6,-5],[1,-11],[-7,-4],[-58,-5],[-10,-5],[-10,-13],[-4,-18],[5,-17],[13,-13],[69,-17],[7,-5],[21,-18],[27,-12],[12,-14],[5,-2],[87,-11],[15,4],[11,12],[10,9],[46,2],[6,2],[7,5],[6,1],[5,-6],[3,-6],[4,-5],[9,-7],[7,-3],[5,-24]],[[55840,96792],[-63,5],[-9,-3],[-8,-6],[-2,-2],[-1,-2],[-1,-4],[-7,-3],[-7,-2],[-7,2],[-6,8],[13,4],[4,3],[-6,0],[0,5],[14,4],[-1,11],[7,5],[8,2],[7,6],[-3,3],[-5,8],[-4,3],[-7,4],[-71,6],[4,7],[7,6],[8,3],[6,1],[25,-2],[7,4],[3,6],[-1,8],[-2,7],[-3,5],[-7,5],[-15,3],[-35,21],[-84,21],[2,4],[3,5],[3,3],[95,18],[96,18],[23,-6],[18,-1],[18,7],[12,16],[-1,1],[-3,2],[-2,1],[0,4],[20,15],[35,3],[33,-8],[15,-16],[6,-11],[15,3],[26,14],[8,2],[33,-1],[4,-1],[1,-3],[1,-4],[1,-3],[2,-2],[6,1],[4,4],[5,0],[10,-14],[7,-1],[12,5],[17,15],[6,2],[5,-1],[2,-4],[1,-5],[1,-7],[9,-24],[7,-9],[14,-5],[5,-3],[3,-7],[0,-8],[-1,-6],[-7,-9],[-3,-6],[2,-6],[3,-4],[3,-4],[1,-8],[-1,-12],[1,-4],[4,-4],[0,-7],[-3,-13],[-1,-15],[4,-12],[-2,-4],[10,-8],[-112,-13],[-112,-14],[-112,-13],[-14,4],[1,2],[3,5]],[[57505,97076],[-14,-5],[-6,-7],[1,-12],[-12,-5],[-37,-5],[-8,-4],[-2,-5],[-6,3],[-7,8],[0,1],[1,4],[1,4],[0,3],[-4,3],[-14,1],[-47,23],[-2,13],[-5,10],[-12,15],[12,20],[16,4],[33,-4],[5,-9],[4,-6],[27,-21],[8,-12],[16,-9],[52,-8]],[[53372,96803],[2,-6],[3,-5],[1,-5],[-2,-4],[-4,-3],[-6,0],[-6,3],[-13,11],[-35,3],[-9,4],[-8,7],[-14,17],[10,11],[2,3],[-2,6],[-5,2],[-8,2],[-50,30],[-6,10],[-4,4],[-3,3],[-33,13],[-13,11],[-18,8],[-11,2],[-39,-9],[-12,1],[-10,10],[-13,18],[-10,20],[-1,17],[-9,4],[-5,9],[-4,12],[-5,12],[-9,11],[-8,9],[-19,12],[4,10],[1,3],[-7,1],[-36,25],[-4,6],[-17,10],[-7,8],[-7,10],[6,9],[5,5],[3,5],[-2,14],[-4,10],[-6,8],[-13,10],[9,9],[12,2],[79,-18],[43,-27],[1,-7],[-3,-15],[11,-8],[19,-2],[4,-3],[5,-4],[14,-20],[-34,-24],[17,-10],[9,-8],[1,-9],[1,-9],[23,-7],[8,-6],[-5,-7],[0,-8],[3,-7],[6,-3],[3,-3],[-3,-7],[-8,-14],[27,11],[25,1],[5,-3],[2,-5],[3,-11],[3,-5],[4,-3],[10,-2],[7,-9],[53,-23],[31,2],[8,-8],[0,-3],[-5,-7],[-2,-4],[2,-5],[2,-5],[45,-50],[14,-9],[-1,-13],[4,-7],[6,-5],[2,-9]],[[58177,97198],[40,10],[23,0],[11,-14],[-105,-20],[1,-6],[1,-2],[-27,2],[-86,25],[-11,8],[-5,1],[-70,-10],[-69,-10],[-74,-33],[-5,0],[-68,13],[5,4],[48,14],[11,8],[10,4],[8,12],[4,2],[59,2],[11,5],[7,9],[-3,13],[103,-2],[57,-19],[12,-12],[8,-4],[104,0]],[[58352,97259],[67,0],[2,-1],[2,-2],[3,-5],[-7,-5],[-10,-3],[-19,0],[4,-4],[-10,-4],[-13,1],[-13,8],[-6,15]],[[55582,97328],[25,5],[8,-5],[-2,-1],[-4,-3],[76,5],[8,-5],[5,0],[16,-8],[53,-11],[12,-6],[7,-12],[-36,-17],[-57,-5],[-25,-13],[-13,-1],[-13,5],[-12,9],[-7,4],[-34,-1],[-15,6],[-7,5],[17,6],[9,6],[-1,7],[-6,9],[1,4],[4,4],[3,9],[-3,0],[-3,1],[-3,1],[-3,2]],[[55571,97478],[27,-8],[6,-6],[-1,-6],[-8,-4],[-9,-1],[-6,3],[-7,8],[-8,2],[-93,-12],[-8,2],[-3,4],[0,7],[5,11],[-11,8],[-4,1],[12,7],[12,2],[26,-1],[17,-9],[53,-8]],[[53064,97673],[-3,-7],[-1,-3],[-3,-2],[11,0],[5,-3],[3,-9],[-20,4],[-5,-2],[-6,-5],[-5,-3],[-6,-2],[-29,-1],[-11,3],[-8,10],[-4,8],[31,4],[-9,5],[-21,3],[-8,9],[44,3],[34,-11],[11,-1]],[[52977,97694],[-10,1],[-8,4],[-2,6],[8,9],[10,4],[44,-2],[39,-22],[-7,-6],[-74,6]],[[55613,97040],[-8,-4],[-15,4],[-8,0],[-13,-5],[-5,-6],[-1,-9],[-74,12],[-24,-8],[-26,-17],[-1,-4],[2,-8],[5,-9],[15,-11],[6,-8],[-95,-14],[-96,-14],[-8,-9],[13,-14],[6,-10],[10,-20],[-1,-8],[-4,-12],[-5,-5],[-10,-4],[-4,-8],[4,0],[-3,-4],[-4,-4],[-4,-4],[0,-8],[3,-4],[18,-12],[9,-3],[4,-4],[2,-7],[-2,-6],[-5,-6],[-5,-5],[-3,-2],[-23,-2],[-6,-4],[-2,-6],[4,-6],[17,-17],[20,-8],[9,-14],[-10,-9],[-70,-35],[-64,16],[-25,-4],[-24,-16],[6,-9],[21,-15],[-7,-12],[-10,-5],[-10,-3],[-9,-5],[1,-8],[-3,-6],[-5,-4],[-5,-2],[10,-16],[4,-4],[5,-3],[6,-2],[5,-3],[3,-9],[-3,-11],[4,-19],[1,-10],[-3,-11],[-25,-44],[-2,-9],[4,-15],[-2,-7],[-20,-28],[8,-16],[-3,-21],[-17,-15],[-13,-3],[-27,7],[-18,-5],[-5,0],[-6,2],[-9,10],[-5,0],[-35,-12],[-19,4],[-5,-4],[2,-15],[-9,-9],[-22,-4],[1,-6],[2,-4],[3,-2],[4,0],[-2,-6],[-3,-3],[-3,-3],[-4,-5],[-6,-18],[-7,-8],[-16,-9],[-7,-9],[2,-4],[-3,-6],[1,-5],[3,-7],[1,-8],[0,-10],[-2,-4],[-9,-9],[-8,-11],[-3,-12],[2,-12],[5,-13],[-5,-9],[-11,-7],[-5,-5],[-2,-3],[0,-3],[0,-8],[-7,-7],[-2,-3],[3,-3],[1,-4],[0,-4],[-3,-6],[-4,-2],[-62,7],[4,-10],[26,-13],[16,-13],[17,-9],[-10,-16],[-56,-46],[-9,-12],[2,-11],[-23,-6],[-12,-7],[-5,-12],[7,-8],[38,-9],[15,-8],[7,-8],[9,-8],[2,-3],[-2,-13],[-9,-8],[-19,-8],[2,-9],[2,-3],[-8,-5],[-18,-4],[-5,-11],[3,-6],[-3,-4],[-24,-5],[-12,-9],[-15,-5],[-61,6],[-7,3],[-2,6],[1,8],[-4,3],[-13,-1],[-13,6],[-6,2],[-7,-4],[-1,-3],[-1,-4],[0,-3],[-2,-2],[-3,-1],[-2,-1],[-2,-3],[-1,-4],[0,-4],[-6,-1],[-7,4],[-6,10],[3,4],[8,8],[-3,5],[0,6],[1,6],[2,7],[-3,1],[-4,1],[-6,6],[3,12],[0,7],[-4,3],[-30,9],[-16,9],[-33,6],[-16,7],[-17,20],[-56,34],[-50,15],[8,18],[14,8],[41,6],[4,3],[9,10],[8,1],[17,-3],[8,2],[14,7],[29,8],[39,-2],[8,-4],[4,-4],[2,-4],[-1,-4],[-4,-5],[6,-4],[25,8],[-4,15],[3,7],[8,2],[31,-2],[11,2],[6,8],[-13,4],[-46,-1],[-10,-6],[-7,-1],[-4,1],[-12,11],[-10,4],[-10,1],[-10,3],[-8,12],[0,3],[1,7],[-1,3],[-1,2],[-2,2],[-1,2],[-5,4],[-7,0],[-7,-3],[-5,-3],[-1,-8],[-20,5],[-8,-1],[-1,-9],[4,-8],[12,-12],[-7,-3],[-21,-1],[-19,-7],[-6,0],[-8,3],[-96,1],[-13,6],[-17,3],[-12,6],[-11,9],[-9,12],[4,2],[2,4],[-1,4],[-4,2],[-11,-1],[-5,1],[-5,4],[3,7],[2,3],[2,2],[-10,11],[-119,30],[-38,-4],[-7,2],[-14,8],[-7,2],[-14,24],[-2,2],[-1,1],[-1,1],[0,6],[0,3],[4,11],[-46,8],[-5,5],[0,10],[3,11],[4,7],[-46,30],[-7,6],[-4,9],[2,2],[4,6],[-2,1],[-1,2],[-1,1],[-2,0],[0,4],[20,-3],[6,3],[-8,13],[-20,8],[-9,7],[1,6],[-1,5],[-1,5],[-1,5],[11,2],[34,18],[102,10],[22,-7],[21,-23],[-4,-7],[-5,-5],[-5,-3],[-5,-1],[5,-9],[10,-1],[19,5],[17,-3],[8,2],[6,9],[0,15],[1,4],[2,2],[37,0],[25,9],[13,2],[28,-13],[98,-4],[99,-4],[7,-5],[5,-4],[13,-8],[16,-5],[10,-7],[19,-20],[6,-4],[20,-2],[6,1],[0,4],[-8,11],[8,5],[25,-5],[-11,13],[-48,7],[-19,9],[-11,10],[-11,6],[-4,6],[-10,11],[-15,5],[-122,13],[-122,13],[-16,-4],[-7,1],[-5,3],[-9,9],[-5,4],[-12,2],[-5,3],[-4,7],[33,11],[48,1],[23,11],[104,13],[104,14],[105,14],[25,15],[75,4],[75,4],[23,-11],[16,2],[6,-3],[6,-5],[7,-4],[7,-1],[5,4],[-12,9],[-15,7],[-30,4],[-10,4],[-10,10],[-16,23],[7,7],[8,-2],[8,-5],[8,0],[19,13],[7,3],[-3,2],[-2,2],[-3,4],[-1,4],[3,0],[4,2],[3,2],[3,4],[-69,-16],[-9,-5],[-4,-15],[-8,-7],[-125,-9],[-125,-9],[-52,25],[-12,1],[-68,-13],[-61,-39],[-89,-6],[-14,-7],[-13,0],[-29,14],[-13,-7],[31,-8],[-9,-5],[-39,-1],[-29,6],[-17,-5],[-9,0],[-14,13],[-10,2],[-18,-6],[-27,-24],[-16,-8],[-11,5],[-8,9],[-8,0],[-17,-7],[-7,1],[-5,3],[-5,6],[-5,11],[16,4],[7,6],[6,10],[-10,15],[-12,6],[-13,2],[-13,5],[4,7],[2,9],[0,11],[-3,8],[-2,6],[-6,19],[0,6],[4,12],[5,4],[2,4],[-4,12],[-4,8],[-10,9],[-5,7],[7,5],[24,-1],[24,11],[12,3],[6,5],[4,2],[26,-1],[14,-4],[18,-11],[46,-39],[5,-2],[1,-3],[2,-8],[2,-7],[3,-3],[12,-1],[5,3],[3,7],[-1,5],[-2,10],[-1,8],[-6,11],[-20,14],[-8,10],[3,9],[111,7],[112,6],[-3,5],[-9,8],[8,6],[18,8],[8,2],[7,3],[14,14],[14,6],[15,11],[34,10],[39,0],[16,-10],[22,-4],[7,2],[3,9],[-6,6],[-21,8],[-4,5],[-8,13],[6,9],[8,6],[43,17],[9,0],[10,-3],[10,-1],[46,10],[7,5],[4,2],[10,0],[43,-14],[89,3],[89,4],[45,21],[13,4],[15,8],[20,4],[6,3],[1,8],[-10,7],[-17,-2],[-97,-34],[-62,13],[-6,3],[-5,6],[-1,2],[-2,8],[0,2],[-2,2],[-12,0],[-32,-7],[-6,2],[-10,8],[-6,1],[0,4],[4,0],[5,2],[10,6],[8,7],[2,4],[3,6],[3,11],[3,6],[3,5],[4,4],[43,27],[8,10],[3,6],[4,5],[5,5],[4,2],[21,1],[5,5],[0,15],[-11,4],[-44,-5],[-4,2],[0,8],[-1,5],[-3,2],[-13,11],[-9,0],[-8,-8],[-11,-16],[-11,-9],[-9,-3],[-4,-4],[-3,-8],[5,-3],[-1,-7],[-3,-8],[-5,-5],[-1,-2],[-2,-10],[-1,-4],[-3,-2],[-76,-28],[1,-16],[-13,-7],[-78,-7],[-78,-7],[-27,15],[-22,35],[-2,13],[-4,8],[-5,4],[-8,3],[3,4],[3,3],[3,1],[2,4],[47,4],[6,3],[6,8],[5,11],[4,21],[4,11],[2,11],[-7,6],[-1,6],[0,6],[-1,4],[-7,6],[-3,3],[-2,5],[5,2],[4,3],[8,7],[-5,7],[-13,8],[-5,8],[-6,3],[-8,-4],[-14,-11],[-19,-25],[-3,-7],[-1,-9],[-1,-7],[-5,-3],[1,-5],[2,-4],[2,-2],[3,-1],[-5,-8],[3,-2],[2,-3],[0,-5],[-2,-7],[3,1],[3,-2],[3,-2],[3,-5],[-15,-5],[-42,-5],[-10,-18],[2,-1],[4,-3],[-17,-8],[-17,6],[-33,22],[4,6],[4,4],[4,5],[1,10],[-2,8],[-7,12],[0,8],[-24,1],[-14,-3],[-14,-8],[-15,-16],[-24,-2],[-12,-5],[0,-4],[22,-4],[5,-4],[1,-6],[-1,-5],[-1,-4],[-1,-7],[0,-2],[2,-1],[1,-2],[1,-3],[-1,-3],[-1,-6],[0,-3],[1,-7],[4,-4],[5,-3],[3,-5],[-7,-6],[-17,1],[-8,-2],[-25,-25],[10,-15],[17,-7],[33,-3],[11,-3],[10,-9],[9,-13],[7,-15],[-19,-6],[-59,2],[2,-4],[-7,-5],[-9,3],[-16,10],[-9,1],[-7,-3],[-6,-6],[-5,-8],[3,-6],[8,-6],[4,-4],[2,-4],[4,-13],[-11,-2],[-44,-25],[-6,-7],[-8,-5],[-9,3],[2,8],[4,6],[5,4],[4,6],[-21,-4],[-4,1],[-3,2],[-4,0],[-4,-3],[-4,-6],[-2,-6],[0,-20],[-6,6],[-7,6],[-28,14],[-7,0],[-7,-2],[7,-10],[19,-10],[4,-13],[-98,5],[-98,5],[-19,-6],[-13,-9],[-7,0],[-13,10],[-10,9],[-4,7],[10,8],[3,4],[-1,3],[-3,6],[-1,3],[3,4],[-26,17],[13,0],[-5,14],[-8,7],[-56,11],[-24,16],[-18,18],[-8,4],[-13,14],[-14,7],[-4,6],[46,12],[131,0],[55,21],[-15,7],[-17,-2],[-31,-10],[-76,3],[-75,3],[-11,4],[-6,15],[2,4],[-8,7],[-91,11],[-21,12],[-11,2],[-6,4],[-6,8],[-3,9],[5,8],[-7,10],[-10,4],[-20,1],[-6,2],[-9,6],[-7,6],[-3,7],[6,8],[18,31],[14,7],[30,-5],[13,3],[-10,13],[-12,7],[-81,19],[-16,10],[-18,7],[-20,15],[-7,7],[-3,12],[65,7],[94,-25],[95,-25],[63,1],[9,5],[-2,5],[-6,12],[-5,7],[-1,3],[0,8],[-1,3],[-1,3],[-7,10],[-10,3],[-90,-17],[-24,8],[8,5],[10,3],[18,0],[-7,6],[-7,2],[-16,0],[-64,26],[-16,2],[-8,5],[15,5],[6,4],[13,18],[14,4],[7,5],[-2,4],[-2,3],[-2,1],[-3,1],[12,9],[4,4],[5,12],[3,4],[4,3],[13,4],[26,0],[13,4],[-5,7],[-12,2],[-4,7],[11,11],[4,1],[-2,4],[-2,4],[-2,8],[2,2],[4,7],[-10,0],[-26,-9],[-42,5],[20,-27],[3,-6],[-6,-9],[-12,0],[-13,6],[-7,7],[2,4],[-4,2],[-14,12],[-2,5],[-1,5],[-2,5],[-4,4],[0,7],[-27,-7],[2,-4],[-3,-5],[-3,-3],[-7,-5],[11,-5],[27,-33],[9,-17],[-6,-12],[-117,-40],[-15,0],[-12,14],[6,3],[-1,5],[-7,8],[-1,5],[-1,17],[-2,17],[-6,12],[-8,8],[-12,4],[-5,5],[-3,5],[-8,18],[-3,3],[-4,4],[-20,8],[-20,24],[16,5],[5,3],[-13,7],[-2,2],[-2,7],[1,2],[3,1],[3,2],[7,7],[3,5],[-1,6],[-1,4],[-1,4],[-2,4],[-2,2],[-3,2],[-11,10],[-15,8],[-13,1],[-7,2],[-6,6],[-5,12],[9,11],[132,1],[-11,7],[-80,13],[3,7],[6,6],[35,19],[116,-14],[7,3],[0,8],[-8,5],[-21,5],[-33,21],[-6,6],[-4,8],[1,0],[3,3],[2,0],[-1,2],[-1,5],[0,2],[2,2],[5,9],[-13,9],[10,7],[16,1],[53,-13],[14,0],[10,13],[-10,12],[7,2],[15,-4],[6,4],[3,6],[5,5],[4,3],[30,6],[12,-1],[11,-11],[4,-6],[14,-9],[5,-6],[0,-4],[-1,-3],[-1,-2],[7,-8],[19,-16],[1,-8],[5,-4],[2,-1],[2,0],[-1,-2],[-4,-10],[17,-9],[9,-2],[8,3],[-2,2],[-2,3],[-4,8],[8,5],[8,-3],[23,-22],[4,-2],[10,2],[1,1],[3,8],[1,21],[-13,11],[-27,11],[3,4],[-5,4],[2,4],[-5,1],[-4,3],[-3,7],[0,9],[3,4],[9,12],[51,-1],[17,-7],[11,-8],[2,-2],[2,-5],[6,-3],[2,-2],[2,-9],[-2,-5],[-11,-6],[12,-5],[41,17],[23,-1],[41,14],[12,8],[28,10],[53,5],[29,13],[64,-1],[59,15],[12,-2],[13,-7],[18,-17],[1,-5],[1,-8],[0,-7],[0,-6],[0,-5],[4,-6],[-21,-22],[-44,-19],[-133,-8],[-6,5],[-13,-5],[-50,0],[4,-8],[-5,-4],[-101,-46],[-23,-3],[-17,3],[-9,-3],[-5,-12],[9,-2],[17,-8],[9,-3],[9,2],[27,11],[54,1],[37,15],[41,-3],[30,6],[30,-7],[15,1],[7,-3],[4,-10],[-17,-21],[-5,-3],[-5,-1],[-10,-6],[-4,-2],[-6,1],[-10,3],[-5,1],[3,-8],[2,-9],[-3,0],[-2,-2],[-1,-4],[-1,-6],[11,-1],[44,-19],[6,1],[2,7],[-2,4],[-12,12],[11,7],[14,1],[14,-2],[11,-6],[1,-2],[1,-7],[2,-3],[4,-2],[8,-1],[23,-9],[6,-4],[2,-8],[6,-5],[18,-10],[2,-2],[5,-14],[2,-2],[4,0],[-3,-14],[-1,-7],[2,-7],[-6,-6],[2,-7],[6,-6],[7,0],[9,2],[6,-3],[12,-10],[9,2],[8,12],[15,32],[-4,3],[-11,17],[-6,6],[-13,6],[-6,5],[2,4],[3,3],[2,3],[3,2],[-5,6],[-3,8],[-3,7],[-12,6],[-6,7],[-3,7],[5,4],[-15,16],[-4,8],[5,4],[14,16],[34,18],[50,2],[7,4],[-9,1],[-19,8],[-10,0],[9,11],[26,7],[11,6],[-9,-1],[-4,1],[-4,4],[8,8],[35,27],[25,29],[6,9],[4,4],[6,1],[86,-22],[18,-13],[46,-53],[10,-7],[13,-5],[10,-9],[15,-5],[5,-4],[4,-5],[-6,-9],[0,-4],[2,-7],[3,-5],[2,-3],[1,-5],[-2,-7],[4,-8],[6,-6],[11,-6],[-3,-11],[2,-7],[9,-11],[3,-7],[6,-15],[4,-6],[-2,-11],[4,-8],[5,-7],[3,-9],[4,-10],[11,-6],[19,-5],[7,-6],[9,-17],[7,-7],[16,-5],[8,-6],[4,-13],[-2,0],[-2,0],[-8,-12],[-19,-17],[-5,-12],[1,-15],[6,-8],[8,0],[26,32],[21,-3],[21,-17],[18,-19],[5,-4],[18,-10],[4,-5],[2,-6],[1,-13],[0,-9],[0,-6],[1,-5],[5,-7],[6,-5],[11,-6],[6,-5],[4,-2],[9,-1],[4,-3],[1,-3],[2,-8],[1,-2],[5,-6],[6,-3],[24,-3],[11,4],[4,8],[-10,13],[1,2],[0,2],[0,2],[1,2],[-16,4],[-6,6],[-5,22],[-4,6],[-4,3],[-4,5],[-10,28],[-5,7],[-16,13],[-5,8],[-3,7],[-4,15],[-3,7],[-1,8],[0,10],[0,9],[-3,4],[-4,3],[-32,30],[-14,8],[2,17],[-4,21],[-7,21],[-4,30],[-3,11],[-6,19],[-3,5],[-3,2],[-2,4],[1,8],[3,3],[14,9],[-6,3],[-12,1],[-5,6],[-2,5],[-2,9],[-2,7],[-6,7],[-14,16],[-4,7],[5,4],[-3,6],[-13,11],[1,2],[4,7],[0,3],[-1,4],[-1,1],[-1,1],[0,1],[-3,7],[-3,6],[-4,5],[-4,3],[6,9],[2,3],[-5,7],[-3,8],[-1,10],[3,11],[8,11],[10,5],[107,-10],[10,6],[-10,14],[-26,9],[-10,12],[-3,6],[-1,3],[1,5],[4,8],[4,7],[18,10],[-3,1],[-2,2],[-3,4],[-1,5],[5,1],[11,6],[17,3],[32,17],[11,4],[9,-2],[11,-5],[48,-5],[4,-3],[2,-4],[2,-10],[1,-4],[6,-9],[6,-7],[14,-11],[8,-4],[5,-3],[2,-5],[-1,-4],[-5,-6],[-2,-4],[4,-6],[32,-22],[9,-3],[9,2],[7,11],[-2,2],[-9,10],[-2,4],[2,8],[4,5],[22,13],[85,-10],[36,-19],[45,-10],[9,-10],[11,-8],[16,-4],[58,-38],[11,-14],[15,-5],[10,-5],[19,-17],[-9,-19],[-14,-10],[-29,-7],[-12,-6],[-5,-5],[-10,-14],[-18,-12],[5,-4],[-9,-18],[-13,-4],[-14,0],[-13,-7],[23,-3],[16,4],[5,-1],[4,-5],[1,-17],[4,-10],[-5,-10],[-2,-5],[-1,-7],[1,-4],[3,-4],[2,-4],[0,-6],[-6,-10],[-34,-10],[6,-14],[11,1],[21,13],[21,2],[10,3],[16,17],[10,6],[8,10],[4,16],[1,6],[2,8],[4,13],[6,11],[4,13],[8,11],[9,9],[11,7],[18,8],[29,1],[15,-11],[14,-7],[30,-8],[46,-25],[8,-13],[2,-7],[2,-15],[2,-5],[6,-5],[11,-5],[6,-4],[6,-7],[-1,-1],[-4,-2],[-3,-8],[2,-8],[5,-3],[6,-2],[4,-5],[-6,-2],[-6,-4],[-6,-6],[-3,-9],[0,-10],[3,-6],[9,-8],[-27,-22],[-43,-4],[-10,-7],[17,-7],[53,3],[24,-16],[5,-4],[-2,-8],[-7,-15],[0,-8],[8,-6],[31,0],[10,-4],[29,0],[8,3],[6,5],[5,7],[7,5],[9,3],[23,-3],[4,-1],[53,-18],[16,-1],[33,8],[14,-8],[-2,-4],[-3,-2],[-2,-1],[-3,-3],[-2,-4],[1,-2],[2,-2],[1,-2],[2,-6],[3,-7],[4,-5],[23,-13],[3,-3],[-1,-8],[-5,-11],[-2,-8],[22,0],[7,3],[6,1],[12,-7],[34,-5],[70,-32],[131,-24],[130,-23],[14,-7],[7,-1],[16,0],[5,-4],[1,-8],[-3,-5],[-4,-5],[-2,-5],[-1,-8],[3,-4],[4,-3],[5,-5],[-5,-8],[-7,-8],[-7,-6],[-13,-4],[-8,-5],[-8,-7],[-5,-7],[2,-2],[6,-11],[1,-3],[-3,-8],[-6,-1],[-7,1],[-19,10],[-39,-6],[0,-11],[-8,-4],[-17,3],[0,3],[-13,5],[-14,0],[-3,1],[-3,2],[-3,4],[-6,8],[-2,0],[-2,-1],[-3,-2],[-47,9],[-14,-13],[-4,-9],[-2,-8],[-4,-5],[-7,-2],[-21,0],[-12,7],[-4,1],[-63,1],[-3,-5]],[[59193,97982],[56,12],[95,-16],[-12,-11],[-15,-5],[-71,-7],[-71,-7],[-56,-22],[-113,-12],[-113,-12],[-113,-12],[-32,14],[-5,4],[1,4],[4,3],[134,18],[134,18],[133,18],[16,7],[7,2],[15,-1],[6,5]],[[55082,98010],[-38,2],[-12,6],[6,12],[5,5],[9,2],[5,3],[9,10],[17,12],[4,1],[75,-14],[24,-13],[4,-4],[4,-2],[4,1],[4,1],[3,0],[4,-6],[-15,-7],[-6,-1],[-4,-2],[-7,-12],[-4,-2],[-37,-14],[-12,3],[-42,19]],[[56713,98111],[7,7],[7,1],[7,-3],[6,-5],[7,-9],[20,-14],[5,-9],[-59,-5],[-11,13],[4,2],[3,6],[2,9],[2,7]],[[56747,98136],[-9,-9],[-12,-2],[-57,8],[-9,7],[5,4],[6,3],[6,1],[6,0],[15,2],[17,0],[16,-5],[16,-9]],[[57547,97890],[-2,-4],[-4,-10],[-4,-4],[3,-3],[2,-3],[2,-1],[3,-1],[-4,-11],[-10,-13],[-5,-8],[9,-12],[25,-18],[4,-11],[-9,-19],[-16,-11],[-64,-7],[-17,-7],[-19,-21],[-9,-3],[-30,-2],[-5,-4],[1,-7],[-6,-5],[-7,-3],[-15,0],[-2,-12],[-9,-7],[-55,-16],[-21,-16],[-110,-26],[-4,-3],[0,-6],[4,-5],[8,-5],[3,-4],[8,-3],[4,-5],[2,-5],[14,-23],[1,-6],[-3,-5],[-8,-7],[-21,-10],[-8,-8],[5,-7],[-4,-7],[-6,-3],[-7,-2],[-38,-21],[-65,-14],[-12,-8],[-51,-14],[-58,-1],[-3,1],[-1,3],[-2,6],[-1,3],[-1,3],[0,2],[0,3],[-3,3],[-4,2],[-42,-5],[-58,-27],[-76,-9],[-8,-13],[0,-5],[4,-9],[0,-6],[-4,-8],[-6,-6],[-51,-25],[-105,7],[-104,7],[-104,7],[-53,26],[-15,12],[-8,11],[-2,2],[-1,5],[3,27],[67,33],[-106,-15],[-27,9],[-98,-11],[-98,-11],[-58,15],[-95,-6],[-95,-5],[-7,8],[4,1],[9,5],[4,2],[-25,16],[-4,10],[-5,5],[-74,3],[-74,3],[-34,13],[-16,13],[-92,25],[-7,8],[-4,12],[-4,14],[51,14],[109,6],[5,-2],[14,-15],[38,-15],[103,-7],[103,-6],[-8,11],[-133,23],[-42,27],[-6,8],[127,4],[128,4],[127,4],[4,3],[0,5],[-3,5],[-4,3],[15,11],[108,13],[18,9],[-17,10],[-20,0],[-115,-22],[0,4],[2,0],[7,4],[-27,0],[9,13],[24,2],[9,9],[-119,-5],[-119,-6],[-119,-6],[-119,-5],[-49,-22],[-51,0],[-22,-13],[-69,-5],[-20,12],[-5,1],[-24,0],[-18,-7],[-81,5],[-47,-8],[-11,2],[1,2],[4,7],[-6,1],[-6,2],[-3,5],[4,8],[-11,11],[-13,4],[-43,-5],[-6,2],[-3,4],[-8,16],[-6,5],[-21,6],[-4,4],[-11,16],[-10,9],[-11,6],[-22,3],[9,6],[41,17],[33,1],[30,10],[18,-5],[11,1],[10,5],[5,9],[-34,0],[6,2],[11,8],[14,8],[5,-1],[-2,-8],[8,-2],[16,-10],[7,0],[4,5],[1,6],[-2,5],[-5,4],[11,6],[11,3],[10,6],[10,13],[-27,-15],[-128,5],[-19,12],[-20,-6],[-6,2],[-11,12],[-6,2],[0,4],[13,-7],[17,-3],[16,2],[13,8],[-60,8],[-10,7],[-13,12],[-12,6],[-8,-12],[-3,1],[-7,4],[-7,2],[-37,-1],[-5,6],[10,1],[19,12],[18,6],[16,12],[8,1],[6,-6],[3,-2],[5,0],[14,4],[56,-4],[15,-4],[5,1],[8,5],[36,1],[21,-11],[10,-2],[8,2],[16,12],[-19,13],[43,-6],[15,-6],[14,-15],[62,-25],[17,-18],[8,-3],[8,1],[8,3],[17,13],[4,5],[-2,6],[0,4],[26,0],[26,8],[-11,12],[-17,3],[-30,-3],[-28,7],[-14,8],[-9,16],[-12,8],[-4,4],[-2,3],[-4,3],[-3,2],[-1,3],[0,3],[0,4],[0,4],[-2,7],[-1,4],[-2,5],[-5,5],[-18,8],[-5,7],[4,2],[7,5],[4,2],[69,-11],[15,-7],[76,-59],[17,-6],[50,2],[-8,7],[-24,1],[-6,8],[4,5],[30,19],[-3,2],[-6,6],[3,0],[2,1],[4,3],[-5,4],[-14,4],[6,3],[8,0],[6,2],[5,7],[-19,1],[-6,3],[11,2],[19,12],[10,3],[0,4],[-107,2],[-11,3],[-6,9],[-1,16],[0,10],[1,7],[9,4],[12,1],[21,-8],[12,-12],[4,0],[3,5],[-1,4],[-8,6],[-5,10],[1,9],[5,5],[40,-7],[10,-7],[-2,-4],[51,-2],[6,-2],[-4,-10],[-1,-3],[8,-5],[9,-3],[-1,-6],[-1,-2],[5,-3],[2,-1],[-3,-7],[-1,-7],[1,-4],[5,-2],[7,1],[3,3],[6,12],[8,9],[12,4],[43,-2],[10,-6],[1,-13],[16,-12],[16,-8],[-2,-9],[-2,-4],[-2,-4],[10,-10],[9,-6],[10,-2],[48,10],[11,-4],[-5,-4],[-13,-7],[-5,-5],[-2,-8],[2,-5],[8,-7],[8,-13],[3,-3],[8,-4],[8,-2],[86,13],[25,15],[12,2],[-2,-3],[-2,-2],[-2,-4],[-1,-3],[3,-2],[2,-2],[4,-8],[-4,0],[0,-5],[8,1],[6,2],[7,4],[6,6],[1,3],[0,4],[0,3],[4,1],[3,1],[3,1],[3,2],[3,3],[15,5],[33,-21],[15,2],[-10,7],[-3,0],[6,13],[13,3],[34,-5],[5,-6],[9,-22],[0,-7],[-5,-4],[-11,-4],[-18,-10],[-16,-5],[-33,-29],[7,-6],[7,1],[32,18],[17,3],[8,-3],[14,-10],[45,-11],[-2,-5],[6,-5],[11,-7],[10,-13],[11,-6],[6,-5],[-3,-4],[-9,-8],[14,-8],[-6,-10],[-2,-2],[11,-4],[13,1],[13,5],[11,10],[-7,9],[-7,7],[13,5],[20,-20],[11,3],[-11,14],[-4,3],[-12,3],[-6,4],[-3,8],[28,-2],[4,2],[-4,7],[-21,18],[5,8],[5,12],[0,3],[-2,6],[0,3],[2,3],[8,9],[5,11],[3,10],[-1,11],[-4,13],[8,8],[20,5],[8,9],[-4,7],[-51,16],[-2,1],[-9,9],[-2,6],[1,11],[6,11],[6,8],[2,7],[20,8],[62,-8],[0,-5],[-4,-9],[-9,-19],[-6,-8],[6,-10],[11,-5],[21,-2],[-4,4],[-5,3],[-3,4],[-3,6],[5,1],[16,10],[6,1],[2,2],[1,4],[1,5],[2,4],[2,3],[3,2],[-2,2],[-4,7],[5,4],[-5,6],[-6,9],[4,13],[-3,1],[-5,3],[-5,4],[-2,6],[3,5],[6,2],[12,-1],[42,-24],[81,-12],[25,-13],[-4,-3],[-6,-3],[-10,-2],[4,-3],[2,-1],[3,0],[-7,-4],[-29,-1],[-13,-6],[-6,-1],[6,-6],[7,-3],[14,1],[-1,-5],[-2,-4],[-2,-2],[-3,-1],[6,0],[17,-5],[12,1],[6,-2],[5,-6],[-17,-6],[0,-3],[1,-4],[0,-4],[0,-3],[2,-5],[0,-4],[-2,-5],[-5,-2],[-5,-1],[-10,-7],[-39,-5],[-8,-4],[-9,-33],[-5,-14],[0,-4],[3,-6],[12,-12],[17,-9],[18,-2],[12,7],[-10,4],[-6,5],[-8,9],[-11,4],[-5,6],[44,-4],[-3,6],[-2,1],[-2,1],[2,7],[4,2],[10,-1],[6,1],[3,-1],[2,-2],[1,-2],[0,-6],[0,-2],[7,-10],[7,-7],[8,-1],[9,10],[-10,14],[-2,4],[3,9],[7,4],[13,1],[-4,-3],[3,0],[4,-1],[3,-2],[2,-6],[-1,-5],[-3,-3],[-6,-4],[2,-2],[6,-6],[3,-1],[10,1],[0,-3],[-1,-7],[-1,-2],[10,-3],[9,5],[17,18],[40,7],[8,9],[-17,5],[-4,1],[-2,5],[-3,5],[-3,5],[5,2],[8,3],[5,3],[-16,4],[-6,4],[3,4],[3,3],[3,1],[3,0],[-2,7],[-2,3],[-2,2],[8,8],[9,-3],[19,-13],[26,0],[5,-2],[5,-3],[5,-2],[5,3],[-29,13],[-9,7],[51,-4],[31,-16],[9,4],[-4,6],[-1,2],[36,-6],[11,6],[-4,4],[-5,3],[-5,2],[-5,-1],[0,5],[21,-1],[6,4],[-7,6],[-46,1],[-18,9],[11,13],[20,2],[62,-12],[8,-4],[25,-18],[-8,0],[-11,-2],[-9,-5],[-8,-6],[1,-2],[3,-4],[2,-2],[-2,-2],[-4,-4],[-2,-2],[7,-4],[9,-4],[9,0],[6,6],[7,8],[35,9],[3,2],[3,5],[1,4],[0,5],[1,4],[8,5],[6,8],[7,4],[11,-13],[5,-7],[-3,-5],[-3,-3],[-4,-3],[-3,-1],[2,-10],[-5,-8],[-14,-14],[10,4],[21,4],[43,-5],[19,9],[67,8],[-9,-8],[-28,-9],[13,-12],[13,-4],[38,3],[17,6],[9,0],[5,-3],[6,-5],[5,-7],[3,-10],[23,14],[13,1],[10,-7],[-5,-8],[-16,-16],[39,0],[26,8],[120,-4],[121,-3],[27,-13],[28,-22],[10,-2],[42,-1],[13,-8],[-19,-14]],[[55529,98136],[-7,1],[-6,4],[-2,5],[5,7],[25,14],[18,1],[11,-3],[10,-5],[9,-8],[-8,-5],[-17,-3],[-16,-7],[-22,-1]],[[55765,98217],[-9,2],[-16,8],[-38,10],[-9,0],[6,4],[76,-4],[-2,-6],[-2,-4],[-4,-2],[-4,0],[1,-2],[1,-6]],[[55881,98237],[-10,-2],[-13,1],[-13,6],[-5,16],[10,-1],[42,11],[33,-2],[0,-3],[0,-1],[-1,0],[-1,-1],[3,-1],[3,-3],[3,-3],[3,-4],[-54,-13]],[[55731,98282],[-20,3],[-9,4],[-3,14],[29,0],[9,-5],[11,-10],[7,-4],[33,-9],[37,-1],[9,-4],[-3,-7],[-4,-3],[-23,-2],[-2,-1],[-4,-6],[-2,-1],[-13,0],[-2,1],[-1,2],[0,3],[-1,2],[-1,2],[1,2],[0,3],[-2,1],[-6,0],[-6,3],[-5,0],[-12,-4],[-6,1],[-3,3],[-4,9],[-4,4]],[[50960,18259],[6,-4],[2,-3],[-1,-5],[-1,-5],[-2,-10],[-1,-3],[-7,-4],[-17,-1],[-5,-8],[-1,3],[-1,0],[-1,1],[-1,0],[-1,22],[9,16],[12,7],[10,-6]],[[53075,85457],[1,1],[2,-2],[0,-5],[-2,-6],[-3,-4],[-4,-3],[0,-3],[1,-3],[-2,-6],[-4,-3],[-4,-1],[-1,1],[-1,2],[0,3],[-3,0],[-2,2],[0,8],[0,9],[0,9],[3,6],[5,2],[4,-1],[1,-5],[0,-4],[2,0],[7,1],[-1,1],[1,1]],[[53030,85479],[1,-3],[0,-6],[-2,-6],[-6,-11],[-2,0],[-1,2],[-1,1],[-4,-2],[-3,1],[-1,3],[-1,4],[-2,7],[1,3],[2,3],[4,4],[3,0],[0,-2],[0,-2],[-2,-2],[-1,-2],[0,-2],[4,4],[8,6],[3,0]],[[51469,86047],[2,-9],[1,-5],[-1,-3],[0,-5],[0,-6],[-5,-9],[-1,-5],[-2,-6],[-4,-1],[-2,4],[0,3],[-2,1],[-2,0],[-4,2],[-4,4],[-1,5],[0,3],[-1,3],[-6,7],[-1,2],[0,3],[2,8],[5,8],[2,4],[1,-1],[0,-4],[1,-5],[2,-6],[0,-6],[2,-5],[2,-1],[2,2],[1,1],[-1,2],[1,1],[1,0],[-2,2],[-3,7],[-2,7],[0,4],[-1,2],[-1,0],[-3,11],[0,6],[4,1],[1,-1],[2,-3],[5,-8],[2,-5],[-1,-1],[0,-2],[2,-6],[1,0],[1,4],[2,1],[2,-1],[3,-4]],[[51367,86516],[1,-2],[1,-1],[0,-2],[-1,-2],[-2,0],[-6,2],[-5,4],[-2,6],[0,5],[-1,2],[-1,-1],[-1,-1],[-5,4],[-3,3],[-1,4],[1,4],[-1,3],[-1,4],[-1,-1],[-1,-5],[-3,1],[-2,3],[-3,0],[-2,0],[0,2],[0,2],[-2,3],[2,3],[3,3],[12,2],[2,-2],[-2,-4],[-3,-2],[8,2],[4,0],[4,-2],[0,-2],[-2,0],[-1,-1],[0,-4],[4,-2],[3,-4],[7,-17],[0,-5],[-1,-1],[1,-1]],[[51311,86619],[3,-3],[2,-5],[0,-8],[-2,-8],[-4,-6],[-3,-1],[-1,3],[-1,5],[2,5],[0,5],[-3,-7],[-1,-3],[-1,-2],[-2,-1],[-3,4],[-1,6],[-1,3],[-2,0],[-2,4],[-1,6],[0,6],[1,4],[0,1],[-2,2],[1,1],[4,4],[1,1],[1,0],[2,3],[1,4],[3,2],[3,-1],[2,-3],[1,-5],[1,-5],[-1,-3],[0,-4],[3,-4]],[[51422,87202],[3,-3],[6,-13],[-1,-6],[-3,-5],[-3,-10],[0,-3],[-1,-5],[-3,-7],[-5,-6],[-6,0],[-9,4],[-2,1],[-4,2],[-1,2],[0,6],[2,4],[4,1],[2,-3],[1,-2],[2,4],[-1,8],[-15,14],[-3,5],[-1,3],[0,5],[0,5],[0,4],[2,1],[5,-3],[16,-13],[4,-1],[1,2],[1,3],[4,4],[5,2]],[[51565,87376],[-6,3],[-3,3],[2,3],[5,4],[7,2],[5,0],[2,1],[0,5],[2,4],[3,2],[5,0],[1,-1],[1,-2],[2,1],[3,0],[1,-7],[-3,-7],[0,-3],[2,0],[-3,-4],[-8,-3],[-7,1],[-2,3],[0,1],[-2,-1],[-2,-2],[-1,-3],[-4,0]],[[51553,87388],[-4,-2],[-10,-3],[-6,2],[-1,4],[-1,3],[1,2],[-2,9],[4,3],[6,-1],[5,-4],[5,-2],[4,-2],[0,-6],[-1,-3]],[[52309,87887],[1,-3],[2,-3],[-5,-3],[-21,-4],[-6,1],[-4,3],[-1,5],[-3,15],[-2,5],[-2,3],[1,4],[5,3],[6,1],[7,-3],[12,-13],[3,-2],[5,-5],[2,-4]],[[52544,88163],[2,-1],[1,-3],[-2,-4],[-9,-4],[-6,-4],[-9,-5],[-13,3],[-5,5],[4,2],[1,2],[0,3],[2,4],[1,3],[0,3],[2,3],[3,1],[7,0],[6,-1],[3,-3],[1,-2],[1,-1],[6,2],[1,-1],[2,-2],[1,0]],[[52758,88388],[3,-3],[1,-7],[-5,-5],[-5,-3],[-5,0],[-3,3],[-4,2],[-3,2],[0,2],[5,2],[2,2],[-1,2],[-3,0],[-3,0],[-2,2],[-1,4],[2,3],[7,0],[1,3],[2,3],[4,-2],[4,-5],[1,-3],[0,-2],[3,0]],[[53184,88720],[2,-11],[3,-4],[-1,-4],[-4,-3],[-7,-1],[-1,-1],[1,-3],[-2,0],[-5,2],[-8,4],[-9,7],[-2,5],[1,5],[1,3],[4,2],[0,8],[-2,14],[2,4],[7,-14],[-1,6],[1,3],[3,-2],[11,-16],[3,-1],[3,-3]],[[53152,88757],[-1,-7],[-1,-6],[0,-4],[-1,-1],[-1,-2],[-2,-2],[0,-3],[-2,-3],[-2,-2],[-4,2],[-5,5],[-4,6],[-3,7],[-3,3],[-2,0],[-2,-2],[0,-1],[-3,0],[-13,2],[-1,4],[4,5],[-1,3],[-3,1],[1,2],[0,4],[4,2],[32,11],[4,-1],[0,-5],[7,-2],[4,-6],[-2,-10]],[[53267,89034],[4,0],[0,-5],[-3,-5],[-6,-4],[-10,-8],[-6,-3],[-4,-3],[0,-2],[4,0],[4,-2],[-1,-4],[-4,-4],[-4,-4],[-3,-1],[-2,2],[1,3],[-1,4],[0,1],[2,3],[-2,0],[-7,-4],[-6,-6],[-7,-3],[-6,0],[-11,7],[0,2],[2,2],[1,1],[-1,1],[1,6],[1,6],[2,4],[4,3],[3,4],[4,4],[23,5],[7,-1],[5,-2],[4,-3],[2,-1],[1,1],[1,2],[2,2],[6,2]],[[54874,91387],[3,0],[4,-1],[-2,-3],[-4,-2],[-2,-4],[1,-5],[-1,-4],[-2,-3],[-4,-4],[-6,-5],[-6,-3],[-6,-4],[-4,-7],[-7,-12],[-5,-4],[-7,0],[-7,4],[-2,4],[2,4],[0,4],[0,5],[1,6],[3,7],[6,10],[9,9],[9,4],[27,4]],[[56899,92573],[-6,-5],[-1,-4],[4,-2],[-2,-1],[-9,-4],[-3,-5],[3,-4],[0,-3],[-5,-13],[-4,0],[-9,1],[-5,3],[-5,3],[-5,3],[-10,4],[-5,4],[1,8],[8,8],[7,3],[6,-2],[3,-4],[-1,-3],[1,-2],[4,-1],[4,1],[1,2],[-2,6],[-6,9],[1,6],[9,0],[5,-2],[1,-3],[2,-2],[2,-2],[2,0],[5,3],[3,0],[5,1],[1,-3]],[[51601,85480],[3,-3],[1,-7],[-1,-12],[-7,-5],[-23,17],[-19,9],[-7,5],[3,2],[2,3],[4,1],[5,-2],[3,0],[3,0],[9,-5],[5,-1],[7,3],[5,-1],[7,-4]],[[51517,85535],[1,-4],[0,-4],[-1,-8],[-3,-12],[-3,-3],[-2,2],[-1,2],[1,1],[-1,2],[-1,3],[-1,2],[-8,6],[-3,4],[-2,7],[0,7],[0,5],[2,4],[3,4],[3,1],[2,-1],[4,-3],[1,-2],[2,-2],[4,-4],[3,-7]],[[51671,85583],[15,-4],[8,-5],[-2,-9],[-10,-12],[-15,-6],[-12,-2],[-8,10],[0,15],[6,8],[10,5],[8,0]],[[51346,86375],[1,-5],[0,-4],[-2,-1],[-1,-3],[1,-10],[-2,-2],[-4,-1],[-6,1],[-5,4],[-1,3],[3,-1],[0,2],[-1,7],[0,2],[1,-1],[1,0],[0,1],[0,1],[-1,8],[0,4],[-1,4],[0,3],[0,4],[1,6],[3,1],[3,-4],[3,-3],[0,-3],[0,-3],[1,-1],[1,-2],[0,-3],[-1,-3],[1,-1],[2,1],[3,-1]],[[51343,86994],[-1,4],[-1,5],[1,4],[2,2],[2,1],[3,1],[1,3],[2,4],[3,-2],[-1,-6],[2,-3],[2,-5],[1,-2],[3,-5],[0,-9],[-1,-5],[0,1],[-1,3],[-2,2],[-2,1],[-5,-3],[-2,2],[-1,1],[-2,1],[-2,2],[-1,3]],[[54002,90400],[1,0],[2,-1],[-2,-6],[-6,-9],[-7,-4],[-23,-7],[-2,-2],[-6,-2],[-4,1],[-4,2],[1,4],[5,2],[-1,3],[1,1],[3,0],[3,3],[3,5],[8,9],[18,10],[5,0],[3,-2],[0,-4],[-1,-4],[0,-1],[3,2]],[[55728,91354],[15,-11],[33,-4],[19,-15],[13,-3],[7,-8],[0,-11],[-5,-9],[-8,-4],[-1,-12],[6,-7],[46,-15],[22,-16],[18,-15],[16,-24],[4,-4],[1,-1],[2,-5],[2,-2],[2,-1],[20,0],[6,-3],[2,-6],[2,-7],[8,-18],[4,-6],[8,-7],[22,-5],[25,-20],[15,-8],[6,-19],[50,-11],[13,-13],[1,-3],[8,-9],[4,-6],[3,-3],[2,-1],[2,-2],[0,-4],[0,-4],[0,-3],[10,-6],[64,-1],[19,-4],[1,-2],[-1,-5],[2,-2],[21,-1],[18,-8],[13,-1],[11,-7],[5,0],[5,1],[5,0],[8,-6],[8,-11],[8,-7],[17,5],[7,-6],[12,-20],[8,-8],[41,-23],[4,-5],[2,-5],[1,-5],[1,-5],[4,-5],[12,-13],[4,-10],[-1,-14],[2,-4],[1,-5],[-2,-15],[-1,-5],[0,-3],[0,-6],[1,-1],[1,0],[2,-3],[6,0],[24,13],[9,0],[4,-4],[3,-6],[11,-35],[1,-5],[3,-5],[20,-16],[8,-5],[25,-26],[19,-6],[5,-7],[0,-11],[-7,-11],[-9,-6],[-20,-6],[-9,-7],[-5,-10],[-1,-14],[1,-14],[1,-12],[0,-35],[1,-8],[3,-9],[3,-24],[2,-9],[7,-16],[2,-9],[1,-14],[-5,-6],[-10,-7],[-7,-6],[3,-7],[-5,-13],[-6,-10],[-4,-11],[4,-15],[9,-10],[10,0],[11,5],[11,1],[19,-11],[19,-2],[6,-3],[4,-4],[-1,-14],[-3,-16],[0,-14],[10,-5],[-7,-18],[-7,-10],[-32,-13],[-5,-5],[-3,-9],[0,-12],[1,-4],[5,-2],[-2,-8],[-3,-6],[-3,-6],[-3,-4],[2,-12],[5,-8],[6,-6],[7,-13],[3,-2],[2,-4],[1,-6],[1,-8],[0,-5],[1,-4],[2,-6],[10,-19],[7,-9],[5,-4],[8,-4],[7,-7],[16,-31],[11,-12],[6,-9],[7,-16],[11,-29],[1,-4],[-1,-6],[-4,-2],[-7,1],[-6,-2],[-4,-10],[-9,-13],[0,-5],[3,-22],[0,-12],[-1,-12],[-2,-10],[-3,-10],[2,-11],[1,-10],[0,-10],[-3,-9],[-5,-6],[-15,-9],[-1,-6],[-5,-6],[-9,-4],[-7,-5],[0,-10],[-7,-2],[-8,-5],[-6,-9],[-3,-14],[1,-7],[5,-11],[1,-6],[1,-8],[1,-11],[0,-8],[-1,-6],[-2,-8],[-1,-6],[1,-6],[4,-14],[3,-15],[9,-30],[8,-10],[10,-8],[28,-9],[7,-7],[15,-40],[2,-5],[3,-4],[7,-6],[3,-4],[2,-8],[7,-30],[1,-9],[-1,-13],[6,-12],[8,-11],[6,-24],[10,-16],[0,-11]],[[56711,89451],[-6,-11],[-10,-2],[-20,5],[2,-3],[0,-2],[1,-1],[3,-2],[-7,-3],[-13,2],[-7,-3],[-1,-4],[-2,-9],[-3,-4],[-2,0],[-3,2],[-2,2],[-4,2],[-3,2],[-2,3],[-1,4],[-1,5],[-1,0],[-3,-3],[-14,0],[-7,2],[-2,8],[-3,10],[-6,4],[-14,0],[-4,-3],[-7,-13],[-4,-4],[-4,0],[-2,3],[-1,3],[-1,2],[-22,0],[-12,4],[2,8],[-2,3],[-4,-1],[-4,-2],[1,-1],[-3,-7],[-2,-2],[-2,-1],[-2,-1],[-1,-4],[3,-3],[1,-3],[0,-5],[0,-5],[-1,-5],[-2,-1],[-2,1],[-5,1],[-5,4],[-3,9],[-1,10],[1,9],[-6,-1],[-4,-5],[-3,-6],[-4,-4],[-6,0],[-6,4],[-11,12],[-4,2],[-5,0],[-4,-4],[0,-10],[2,-8],[4,-5],[9,-7],[-4,-3],[-18,-8],[-3,-3],[-5,-7],[0,-11],[-7,-6],[-7,1],[2,13],[-8,16],[-3,3],[-16,2],[-12,7],[-2,2],[-6,10],[-4,2],[-7,-3],[-5,1],[-6,7],[-9,24],[-5,9],[-32,25],[-5,2],[-5,-2],[3,-6],[7,-8],[3,-7],[1,-5],[1,-15],[1,-7],[1,-6],[1,-6],[-1,-9],[-2,-8],[-3,-7],[-4,-4],[-4,-1],[1,13],[-7,8],[-16,3],[-4,-2],[-9,-10],[-3,0],[-2,5],[2,6],[3,6],[2,3],[-3,8],[-5,5],[-9,7],[1,2],[1,6],[-20,4],[-10,-1],[0,-11],[-12,-4],[12,-16],[-1,-7],[-4,-1],[-9,4],[3,-6],[5,-13],[4,-6],[-10,-15],[-11,5],[-11,10],[-10,0],[6,-9],[5,-6],[6,-3],[19,-4],[6,-4],[4,-10],[3,-16],[-3,0],[-4,0],[-3,-1],[-3,-4],[-3,15],[-6,7],[-7,0],[-7,-5],[2,-3],[1,-4],[-1,-5],[-2,-5],[2,-3],[2,-5],[4,-11],[-7,-4],[-20,-1],[21,-7],[10,0],[5,12],[-1,6],[-7,8],[-1,5],[2,6],[4,-3],[5,-6],[2,-5],[-2,-3],[15,-7],[1,-4],[-12,-8],[-2,-6],[3,-5],[6,-4],[11,-3],[2,-2],[2,-6],[3,-12],[-7,-4],[-5,4],[-5,8],[-5,4],[-8,1],[-7,3],[-6,7],[-3,1],[-4,-4],[2,-8],[-8,1],[-28,19],[-21,8],[-9,11],[-4,4],[-11,3],[-10,9],[-17,6],[-4,3],[-3,4],[-6,11],[-3,4],[-9,6],[-4,5],[7,-25],[16,-15],[34,-17],[23,-20],[19,-9],[3,-3],[5,-5],[6,-10],[3,-3],[6,1],[-7,-6],[-16,0],[-8,-2],[-2,-2],[-1,-2],[0,-2],[-1,-5],[-3,-2],[-3,3],[-2,4],[-3,0],[-7,-5],[-38,12],[-6,-1],[13,-21],[8,-7],[6,4],[-6,6],[-2,1],[7,1],[16,-19],[7,-6],[-2,-8],[-1,-7],[-2,-6],[-4,-3],[-5,0],[-4,4],[-6,12],[-3,-7],[1,-6],[2,-6],[0,-6],[-5,-4],[-5,-1],[-5,3],[-3,7],[-8,-7],[-8,-4],[-9,0],[-23,8],[-5,-1],[4,-9],[-13,0],[-7,2],[-6,11],[-6,-1],[-12,-4],[0,-3],[11,-5],[4,0],[0,-3],[-20,3],[-10,-2],[-6,-10],[2,0],[3,-3],[1,-1],[-12,-8],[6,-1],[6,-4],[6,-6],[4,-7],[5,-5],[6,-1],[5,3],[1,9],[5,-2],[5,-4],[9,-11],[9,-7],[4,-6],[-1,-9],[-9,-11],[-12,-7],[-13,-1],[-9,5],[-3,6],[-5,15],[-3,8],[-4,6],[-4,5],[-5,3],[-6,2],[-8,6],[-8,13],[-9,10],[-9,-1],[1,-1],[3,-2],[1,-1],[-3,-7],[-12,-1],[-4,-8],[35,-9],[9,-8],[17,-28],[15,-18],[20,-36],[3,-13],[-6,-5],[-15,-1],[4,-4],[1,-5],[0,-6],[-5,-17],[1,-3],[5,-2],[6,-3],[-7,-5],[-23,1],[-3,-5],[2,-8],[5,-9],[3,-3],[-9,-7],[-3,-1],[-2,1],[-6,3],[-3,0],[0,-1],[0,-2],[-1,-3],[-1,-2],[-5,-4],[-4,-4],[-1,-6],[4,-6],[-4,-4],[-34,-2],[-4,-2],[0,-5],[1,-3],[2,-4],[-2,-7],[-2,-4],[-3,-5],[-3,-3],[-4,-1],[3,-16],[-6,-7],[-5,-4],[2,-11],[-4,-3],[-10,-4],[-5,0],[-4,2],[-2,7],[0,7],[-2,4],[-4,2],[-4,-2],[-4,-6],[-1,-8],[2,-8],[3,-3],[8,-3],[-1,-7],[0,-2],[5,-6],[5,-2],[11,0],[17,5],[18,-8],[7,-5],[2,-8],[-4,-3],[-14,1],[-6,-2],[5,-10],[6,-8],[13,-10],[0,-5],[-5,0],[-2,-3],[1,-4],[3,-5],[0,-3],[-7,3],[-13,13],[-7,4],[-6,4],[-5,9],[-6,6],[-7,-1],[-3,-8],[1,-10],[3,-10],[5,-7],[8,-2],[9,-1],[8,-3],[5,-10],[-5,-1],[0,-6],[4,-6],[5,-3],[6,-1],[3,-1],[2,-2],[2,-3],[2,-8],[1,-1],[3,-2],[3,-8],[3,-2],[3,1],[0,3],[0,3],[-1,0],[2,8],[0,5],[2,2],[5,-2],[6,-8],[6,-11],[5,-5],[4,14],[2,0],[3,-2],[1,-3],[0,-13],[3,-7],[4,-5],[5,-1],[5,0],[-3,-4],[-4,-3],[-4,-1],[-4,2],[-7,12],[-3,2],[-13,-11],[-8,-5],[-3,6],[-1,4],[-2,2],[-2,0],[-2,-2],[-1,-4],[2,-1],[4,-1],[5,-10],[4,-3],[3,3],[3,2],[11,2],[4,-2],[1,-2],[2,-10],[1,-4],[-4,-9],[1,-7],[3,-4],[6,-1],[2,2],[3,8],[2,2],[6,-1],[6,-3],[-2,9],[4,0],[3,-3],[2,-6],[0,-8],[-2,-6],[-3,0],[-3,0],[-4,-4],[-3,-4],[-7,-4],[-3,-4],[-16,-26],[-11,-10],[-6,-8],[-7,-6],[-5,6],[-6,9],[-4,5],[1,-5],[1,-5],[-1,-5],[-1,-6],[2,-1],[1,-2],[0,-3],[1,-2],[-4,-2],[-8,-6],[-5,0],[-4,2],[-2,2],[-1,-1],[-36,-51],[-1,-1],[-8,4],[-1,1],[-3,-3],[-7,-18],[-22,-25],[-5,-12],[4,-10],[-2,-10],[-11,-23],[-1,-2],[0,-3],[-1,-8],[1,1],[0,-2],[1,-3],[0,-2],[-1,-2],[-1,0],[-1,-1],[-1,-3],[0,-12],[-1,-6],[-2,-3],[-3,-1],[-2,-3],[-1,-3],[-1,-1],[-6,-4],[-5,-8],[-5,-20],[-6,-19],[-2,-6],[-13,-12],[-13,0],[-3,-4],[-1,-8],[2,-4],[4,-1],[5,1],[-6,-14],[-4,-5],[-2,1],[-6,14],[-4,3],[-5,1],[-13,-14],[-1,-8],[-2,-5],[-3,-1],[-4,4],[3,6],[0,5],[-3,5],[-6,7],[-1,1],[-13,-30],[-6,-6],[-6,4],[1,-5],[0,-3],[-1,-3],[0,-5],[2,-13],[0,-4],[-2,-7],[-2,-6],[-3,-5],[-4,-3],[-5,2],[-2,5],[-1,8],[3,8],[-1,6],[-2,8],[-4,6],[-4,3],[-2,-9],[0,-36],[-2,-14],[-4,-2],[-4,5],[-4,6],[0,7],[2,6],[2,9],[2,8],[-1,7],[-5,-8],[-6,-12],[-2,-15],[1,-13],[-6,1],[-18,-1],[-3,-2],[-3,-2],[-4,-1],[-3,3],[-2,5],[-1,3],[-1,2],[-6,1],[-5,-2],[-5,-4],[-4,-5],[-3,-8],[1,-7],[4,-12],[-21,10],[-4,0],[-4,-4],[-10,-6],[-2,-2],[-5,-15],[-10,-11],[-11,-8],[-10,-10],[0,-6],[4,-16],[2,-14],[-1,-2],[-7,-2],[-2,-3],[-4,-4],[-6,-7],[-4,-1],[-13,8],[-1,8],[1,6],[-1,5],[-7,5],[1,2],[1,4],[0,2],[-4,3],[-7,10],[-15,5],[-3,5],[-6,9],[-6,5],[-7,-1],[-7,-7],[3,-3],[3,-3],[7,-2],[-3,-15],[3,-5],[7,-2],[9,-7],[-8,-5],[-4,-2],[-5,-1],[-1,-2],[3,-5],[11,-16],[1,-4],[1,-7],[-3,-2],[-5,3],[-9,9],[-23,28],[-8,4],[0,-5],[8,-19],[-6,-3],[-6,5],[-5,7],[-5,3],[-4,-4],[-1,-10],[0,-20],[0,-6],[-2,-10],[0,-5],[0,-18],[-3,-8],[-4,-4],[-3,2],[-1,10],[-6,-10],[-14,-4],[-7,-6],[2,-2],[4,-7],[-3,-4],[-6,-13],[-3,-7],[6,0],[-4,-10],[-6,1],[-11,13],[-5,-12],[5,-8],[8,-3],[7,-1],[-2,-7],[-3,0],[-4,0],[-3,-3],[-2,-6],[0,-5],[-2,-3],[-5,0],[-1,2],[-8,10],[-1,2],[-2,4],[-6,5],[-2,5],[1,8],[-3,4],[-5,3],[-4,3],[-5,6],[-5,4],[-4,-2],[2,-10],[-4,-2],[-15,6],[-12,1],[-5,-1],[-4,-4],[5,-6],[44,-18],[-5,-9],[-9,-3],[-18,0],[1,-6],[1,-2],[-5,-6],[-4,0],[-3,5],[-2,9],[0,9],[6,3],[13,0],[0,4],[-26,8],[-8,-4],[4,-4],[1,-5],[1,-5],[2,-6],[6,-15],[1,-6],[-40,13],[-13,0],[0,-4],[6,-1],[7,-3],[5,-5],[4,-6],[2,-6],[2,-8],[-1,-5],[-4,-3],[-6,3],[-5,4],[-6,2],[-6,-5],[-2,-5],[-1,-7],[-2,-7],[-4,-5],[9,0],[-12,-11],[-4,-1],[-2,-3],[-1,-15],[-3,-3],[-3,2],[-9,14],[-4,4],[-4,1],[-5,-1],[-4,-4],[9,-7],[5,-5],[3,-7],[-18,3],[-1,1],[-2,7],[-2,2],[-2,2],[-1,-2],[0,-4],[-1,-2],[1,-1],[-4,-6],[-7,-5],[-16,-4],[6,-6],[72,1],[8,-3],[5,-8],[2,-8],[-3,-3],[-4,3],[-2,8],[-2,0],[-3,-11],[-6,-3],[-8,2],[-16,10],[-5,-3],[-2,-11],[13,-10],[4,-2],[10,3],[5,1],[4,-4],[-3,-13],[-11,-1],[-20,6],[4,-9],[13,-5],[3,-7],[-1,-5],[-2,-4],[-3,-2],[-7,-2],[-2,-3],[-3,-2],[-2,-3],[-7,-3],[-3,0],[-5,2],[-5,0],[-1,1],[-1,2],[-1,3],[-1,4],[-9,12],[-4,4],[-6,0],[1,-2],[1,-6],[-13,0],[0,-4],[3,-2],[1,-4],[-2,-5],[-2,-5],[6,-4],[9,11],[6,-4],[-7,-18],[-4,-7],[-5,-3],[-3,-2],[-2,-5],[-3,-3],[-4,4],[0,4],[2,4],[2,4],[1,2],[-4,3],[-2,-5],[-3,-7],[-2,-7],[-6,-5],[-5,-1],[-12,2],[1,6],[1,2],[-5,4],[-5,1],[-11,-1],[7,11],[24,-4],[7,10],[-12,5],[-5,4],[-4,7],[1,1],[0,1],[1,2],[-6,-2],[-10,-7],[-9,-9],[-4,-8],[-1,-3],[-5,2],[-5,4],[-2,3],[-1,5],[1,21],[-1,2],[-2,5],[-1,3],[1,3],[2,5],[1,2],[-1,9],[-4,0],[-4,-3],[-4,1],[-2,4],[-5,22],[-2,5],[-3,4],[-4,3],[-3,2],[2,3],[3,9],[-6,-1],[-8,-9],[-5,-2],[-5,2],[-4,6],[-5,3],[-5,-3],[35,-30],[8,-12],[5,-12],[7,-19],[3,-18],[-4,-10],[0,-4],[12,-9],[3,-4],[3,-5],[1,-2],[0,-11],[2,-7],[9,-14],[2,-11],[-1,-7],[-2,-10],[0,-4],[2,-5],[-1,-3],[-3,-1],[-3,-1],[-1,1],[-7,6],[-3,1],[-17,0],[5,-7],[42,-19],[1,-7],[1,-5],[2,-4],[2,-2],[-6,-2],[-20,-19],[-2,2],[0,7],[-3,18],[1,3],[-1,2],[-4,1],[-2,-2],[-1,-5],[-3,-19],[-1,-4],[0,-5],[-1,-5],[-2,-2],[-6,-3],[4,-8],[-9,-15],[-5,-7],[-6,-2],[-3,2],[-4,8],[-3,1],[-14,0],[-12,-4],[-6,-5],[-3,-7],[0,-10],[4,-3],[6,-3],[3,-8],[-36,2],[-4,2],[-4,2],[-5,9],[-1,1],[-13,24],[-12,19],[-3,2],[-6,-3],[-2,-14],[-5,-4],[-6,-1],[-4,-3],[-3,-6],[0,-9],[12,-21],[1,-2],[0,-5],[0,-5],[0,-4],[-2,-2],[-3,-2],[-4,0],[-3,0],[4,-3],[3,-5],[1,-7],[-1,-7],[0,-6],[2,-8],[3,-6],[4,-3],[8,2],[4,0],[5,-6],[2,-5],[2,-6],[2,-6],[3,-3],[0,-4],[-2,0],[-2,-1],[-3,-3],[23,-15],[6,3],[9,-2],[9,-6],[6,-5],[-23,-16],[-7,-2],[-1,3],[8,15],[-5,3],[-5,-1],[-4,-4],[-3,-6],[-1,-8],[0,-10],[1,-9],[0,-5],[-2,-8],[-1,-2],[-5,-10],[-2,-8],[0,-12],[0,-7],[-1,-5],[-6,-5],[6,-3],[-3,-8],[-9,-13],[3,-3],[4,-6],[3,-5],[-3,-2],[-13,-3],[-3,-2],[-2,-6],[1,-6],[-1,-6],[-6,-2],[-3,-1],[-2,-5],[-1,-7],[0,-7],[1,-7],[4,-11],[1,-4],[-1,-4],[-4,-3],[-1,-3],[0,1],[0,-5],[0,-5],[0,1],[1,-1],[1,-1],[1,-3],[-2,-6],[-1,-2],[-1,-3],[-1,-3],[1,-4],[4,-2],[14,4],[-1,-6],[-2,-3],[-3,-2],[-3,-1],[0,-5],[5,-2],[0,-7],[-1,-9],[0,-9],[1,-11],[3,-3],[13,3],[5,3],[5,1],[5,-6],[3,-7],[2,-6],[0,-7],[-2,-6],[-2,-8],[-1,-10],[-1,-9],[-5,-4],[-5,1],[-4,2],[-4,3],[-4,7],[-10,25],[-6,10],[-8,5],[0,-8],[1,-6],[4,-10],[-10,3],[-4,4],[1,9],[-10,10],[-12,3],[-24,-1],[3,-6],[5,-3],[9,1],[19,-12],[-2,-10],[-9,-7],[-10,-3],[-7,0],[0,-4],[2,-1],[5,-4],[-8,-3],[-12,5],[-6,-6],[35,-8],[7,-8],[-7,-3],[-4,1],[-10,6],[-6,2],[-19,-2],[0,-4],[10,1],[4,-2],[3,-7],[-12,-6],[-13,-1],[8,-7],[28,-6],[0,-4],[-26,1],[-3,-3],[2,-3],[7,-3],[5,-5],[7,-2],[3,-1],[0,-5],[-12,0],[0,-3],[11,-6],[3,-3],[1,-7],[-2,-4],[-3,-3],[-2,-6],[1,-5],[2,-5],[2,-4],[3,-2],[3,0],[2,3],[1,3],[3,2],[2,-2],[0,-4],[-1,-4],[-3,-2],[-3,-1],[-3,-1],[-3,-3],[-2,-4],[-2,5],[-3,6],[-3,2],[-3,-12],[-5,-5],[-1,-6],[1,-3],[8,-15],[8,-8],[9,-4],[1,-7],[20,-13],[-8,-2],[-9,1],[-17,9],[4,-12],[7,-5],[9,-3],[7,-4],[-12,1],[-5,1],[-15,15],[-4,2],[-6,1],[0,-4],[6,-4],[9,-8],[8,-11],[5,-10],[4,-14],[-5,-5],[-7,-4],[-5,-9],[9,-8],[-1,-15],[-2,-5],[-4,-5],[5,-8],[1,-7],[-3,-5],[-7,0],[3,-2],[8,0],[2,-2],[2,-3],[0,-4],[0,-4],[-3,-1],[-2,-3],[-2,-6],[-1,-8],[-1,-8],[1,-2],[2,-3],[2,-3],[-5,-6],[-2,-1],[14,2],[7,-1],[4,-6],[-17,-5],[-6,-7],[-2,-16],[-1,-7],[1,-3],[6,-6],[5,-1],[2,-1],[-1,-8],[1,-4],[2,-7],[1,-2],[4,3],[3,-1],[1,-3],[10,-33],[-2,-1],[-3,-2],[-2,-2],[0,-3],[1,-7],[2,-1],[2,2],[2,-3],[1,-8],[-1,-6],[0,-5],[4,-5],[5,-2],[5,1],[1,-2],[-3,-9],[-4,-4],[-9,-5],[-7,-10],[-11,-8],[-6,-3],[-2,-3],[1,-2],[1,-2],[4,1],[6,3],[3,1],[5,-2],[6,-9],[9,-4],[15,-14],[-11,-8],[0,-4],[4,-4],[6,0],[4,1],[1,0],[5,5],[5,3],[37,7],[7,-1],[6,-5],[4,-5],[10,-7],[4,-6],[-4,-5],[-10,-7],[-2,-3],[1,-8],[4,-13],[1,-7],[4,-12],[9,-7],[20,-3],[0,4],[-4,17],[9,17],[15,13],[29,9],[8,-1],[7,-6],[6,-21],[0,-7],[-2,-6],[-2,-5],[-4,-2],[0,-4],[8,-1],[7,-5],[12,-14],[10,-8],[1,-4],[2,-9],[1,-4],[8,-14],[10,-8],[23,-10],[-4,-3],[-7,-8],[-4,-5],[0,-5],[4,-5],[2,-3],[2,-4],[4,4],[8,9],[5,4],[5,1],[3,-1],[9,-5],[19,1],[6,-4],[0,-2],[-1,-5],[0,-6],[1,-4],[1,-2],[6,-6],[0,-4],[-3,-1],[-4,1],[-3,0],[-3,-4],[39,-16],[10,-12],[-11,-7],[-45,19],[-9,12],[-15,25],[4,-21],[11,-16],[13,-14],[9,-14],[-5,-1],[-4,3],[-6,10],[1,-14],[6,-9],[14,-10],[6,-9],[4,-3],[5,0],[3,2],[3,3],[1,5],[0,1],[0,-18],[0,-9],[1,-5],[6,-19],[1,-9],[2,0],[1,9],[1,12],[-1,11],[-3,9],[6,3],[7,2],[7,-2],[10,-10],[10,-3],[4,-6],[1,-10],[0,-20],[1,-9],[13,-19],[2,-8],[-4,16],[-6,15],[-2,15],[3,17],[11,7],[3,-3],[1,-2],[0,-10],[0,-9],[1,-8],[13,-44],[9,-28],[6,-7],[12,-5],[6,-4],[5,-5],[1,-1],[0,-2],[0,-4],[0,-2],[4,-7],[2,-2],[3,1],[0,3],[-1,6],[-1,3],[5,-1],[5,-3],[-1,-8],[0,-24],[0,-5],[-9,1],[-4,3],[-20,35],[-9,13],[-8,5],[2,-8],[10,-18],[1,-10],[-3,-10],[-17,-29],[-5,-5],[-7,-1],[-12,0],[-6,-1],[-4,-5],[-2,-8],[5,0],[11,6],[70,3],[12,-7],[-3,-14],[-5,-8],[-6,-4],[-17,-6],[-5,0],[-4,3],[-3,4],[-3,9],[-2,4],[-3,-11],[-6,-7],[-7,-5],[-21,-7],[-6,-6],[-1,-9],[-10,0],[-1,-2],[-1,-5],[-1,-4],[-2,-3],[-2,-2],[14,0],[-2,-5],[-3,-5],[-4,-5],[-3,-2],[-3,2],[-2,3],[-3,4],[-3,0],[5,-11],[2,-7],[-2,-3],[-4,-2],[-7,-8],[-12,-6],[-15,-16],[-16,-7],[-7,-8],[-13,-18],[-9,-9],[-10,-2],[-21,3],[0,-4],[10,-8],[-4,-4],[-8,1],[-4,-1],[6,-3],[4,-5],[-2,-8],[5,-5],[7,-3],[5,-1],[-8,-7],[-17,1],[-16,6],[-8,8],[3,3],[3,1],[4,-1],[3,-3],[-1,5],[-1,12],[-2,4],[-3,1],[-6,-7],[-4,-2],[-2,1],[-3,6],[-3,1],[-1,-1],[-3,-6],[-2,-1],[-3,-3],[0,-6],[2,-7],[2,-5],[-9,-6],[-4,-1],[-3,1],[-6,5],[-3,1],[38,-40],[-10,-3],[-4,2],[0,-7],[21,0],[7,4],[3,-1],[2,-7],[2,0],[9,25],[18,8],[20,-4],[16,-9],[-2,-2],[-3,-4],[-1,-2],[8,-3],[4,1],[3,6],[-7,20],[-2,9],[13,0],[-11,8],[-5,6],[-3,10],[16,-2],[7,-3],[8,-7],[0,-2],[1,-8],[1,-2],[19,-13],[-4,-7],[-4,0],[-6,3],[-5,0],[6,-4],[9,-3],[9,-5],[4,-10],[-2,-9],[-5,-4],[-15,-1],[-4,-1],[-5,-3],[-4,-1],[-5,3],[-3,3],[-8,2],[-4,1],[-23,-4],[-8,4],[1,2],[1,7],[0,3],[-5,0],[-5,-2],[-5,-5],[-4,-5],[4,-3],[3,-4],[2,-5],[2,-5],[0,-4],[-9,1],[-3,-3],[2,-8],[16,-10],[7,-2],[7,-6],[7,-9],[4,-11],[-25,23],[-6,-1],[0,-7],[4,-5],[6,-2],[4,0],[2,-4],[1,-7],[3,-5],[5,3],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-4],[7,4],[3,0],[1,-6],[-1,-7],[-2,-5],[-2,-3],[-4,3],[-6,2],[-10,-4],[-10,-6],[-5,-6],[3,1],[3,-1],[2,-3],[2,-5],[-27,-14],[-8,-2],[4,4],[8,5],[3,3],[-3,4],[1,2],[2,2],[0,4],[-4,0],[-4,-1],[-4,-3],[-4,-6],[-3,-3],[-9,-1],[-4,-2],[-2,-4],[-6,-14],[-4,-3],[-15,1],[1,-3],[1,-7],[0,-3],[-6,4],[-4,0],[-3,-4],[5,-9],[-5,-10],[-7,-12],[-4,-13],[0,-7],[2,-5],[0,-5],[-2,-8],[-4,-4],[-5,-3],[-5,0],[-3,3],[-2,-7],[0,-8],[0,-17],[-4,4],[-3,5],[-1,7],[2,8],[-2,8],[-1,2],[-3,4],[-2,0],[-2,-2],[-2,0],[-4,4],[-3,3],[-5,12],[-3,4],[0,-8],[3,-13],[5,-10],[-3,-10],[-2,-4],[-2,-2],[-1,3],[0,6],[1,7],[1,4],[-9,5],[-1,11],[2,14],[-3,11],[0,4],[4,9],[1,18],[0,18],[-1,8],[0,3],[3,14],[0,7],[-3,3],[-3,-2],[-4,-5],[-1,-6],[-1,-18],[-1,-9],[-3,-3],[-3,2],[-9,14],[0,9],[6,13],[1,8],[-1,7],[-2,6],[-3,5],[-3,4],[4,-20],[-4,-9],[-3,-7],[-5,-5],[-6,-3],[3,-13],[-1,-12],[-1,-12],[5,-8],[-3,-9],[-2,-13],[-2,-9],[-2,3],[-3,-3],[-2,-3],[-1,-2],[2,-4],[2,-2],[3,-2],[2,0],[0,-4],[-2,-5],[3,-3],[4,-3],[-3,-10],[-5,-4],[-6,0],[-6,3],[-5,1],[2,-7],[4,-6],[9,-7],[0,-4],[-6,0],[2,-3],[2,-1],[-8,0],[-21,19],[-9,5],[0,-4],[5,-4],[1,-6],[-2,-18],[-3,-10],[0,-5],[2,-2],[2,-1],[6,-6],[-8,-5],[-34,9],[10,-17],[1,-8],[-5,-8],[-15,1],[-8,-2],[0,-11],[-31,1],[-9,3],[-3,4],[-5,10],[-4,2],[-3,-1],[-9,-6],[-5,-1],[4,-2],[9,-2],[3,-4],[0,-5],[-2,-5],[-2,-4],[-2,-2],[6,-5],[11,2],[6,-2],[0,-3],[-6,-8],[-4,-8],[-4,-6],[-7,1],[-16,12],[-10,2],[-6,-10],[13,0],[5,-5],[5,-11],[-7,0],[-24,-9],[-96,12],[-96,13],[0,-4],[3,-2],[3,-4],[2,-5],[-2,-5],[-4,-1],[-12,3],[-5,-2],[0,-4],[3,2],[4,2],[2,-2],[2,-6],[6,4],[12,-7],[6,5],[4,7],[4,2],[3,-2],[6,-9],[1,0],[0,-2],[0,-8],[1,-5],[4,-3],[3,1],[3,2],[1,8],[2,9],[2,9],[3,5],[4,-1],[14,-9],[4,-4],[33,1],[6,-2],[5,-7],[3,-3],[12,-2],[5,-6],[-1,3],[-1,7],[0,3],[10,-4],[3,0],[-3,-11],[2,-10],[5,-6],[8,-2],[-3,-3],[-1,-1],[0,-3],[7,0],[0,-5],[-2,-5],[3,-3],[11,-4],[15,-16],[-7,-5],[-14,0],[-6,-3],[3,-9],[-6,-6],[-10,-4],[-7,-2],[-1,-1],[-4,-5],[-1,-2],[-2,1],[-4,3],[-2,1],[-34,7],[-16,11],[-27,11],[-8,-5],[9,-2],[59,-35],[9,-1],[4,-3],[2,-8],[1,-5],[-1,-5],[-1,-5],[1,-6],[3,1],[4,2],[4,3],[1,2],[3,-3],[1,-3],[1,-14],[-40,9],[5,-7],[10,-9],[4,-5],[-1,-6],[1,-4],[3,-2],[3,1],[2,2],[0,4],[-2,5],[16,4],[6,-1],[-3,-11],[-1,-1],[-5,1],[-2,0],[0,-2],[0,-3],[0,-4],[-1,-3],[-4,-2],[-10,-2],[0,-4],[7,-2],[20,-14],[-3,-3],[-1,-1],[4,-4],[3,-6],[2,-8],[1,-9],[-1,-8],[-1,-1],[-3,2],[-3,1],[-2,-2],[1,-3],[2,-5],[3,-2],[-9,-19],[-16,12],[-16,21],[-13,10],[4,-10],[12,-12],[4,-10],[-2,0],[-4,-1],[-2,1],[6,-12],[10,-14],[5,-12],[-6,-3],[1,-7],[-1,-5],[-3,-1],[-4,1],[5,-5],[5,-3],[5,-3],[4,-9],[-3,-5],[-2,-1],[-3,1],[-2,5],[-8,-6],[-1,-4],[3,-6],[-5,4],[-6,18],[-4,2],[-4,-6],[2,-8],[6,-15],[3,1],[5,-1],[3,-11],[2,-5],[3,2],[3,5],[2,-2],[1,-5],[1,-10],[1,-3],[8,-10],[2,-5],[-4,0],[-11,8],[2,-9],[9,-9],[0,-6],[-3,-7],[-4,0],[-5,4],[-4,5],[-5,14],[-2,2],[-1,-12],[-3,-4],[-5,-1],[-11,3],[0,5],[0,5],[-1,5],[-1,5],[3,0],[3,0],[2,-2],[3,-2],[-36,45],[-3,0],[-2,-3],[-1,-5],[1,-4],[2,-5],[8,-11],[16,-9],[-2,-2],[-2,-5],[-2,-1],[2,-6],[0,-6],[-1,-5],[-3,-3],[-5,6],[-5,5],[-13,5],[4,-8],[-2,-4],[-2,2],[-5,2],[0,-4],[60,-77],[8,-9],[-2,-4],[-4,2],[-14,11],[-4,5],[-22,39],[-34,33],[3,-11],[3,-7],[9,-11],[16,-12],[12,-18],[2,-5],[2,-5],[2,-3],[4,-2],[3,-2],[9,-12],[4,-6],[-4,-4],[6,0],[5,-2],[4,-6],[2,-8],[-6,0],[0,-4],[4,0],[0,-4],[-19,2],[-8,4],[-9,6],[2,-5],[5,-7],[3,-4],[2,-9],[-1,-5],[-3,-1],[-6,3],[2,-6],[3,-2],[4,0],[2,-4],[2,-8],[-1,-2],[-3,-2],[-2,-3],[-3,-4],[-8,-8],[-2,-2],[-1,2],[-1,6],[0,7],[0,5],[-2,-3],[-2,-1],[-3,1],[-3,3],[3,-7],[2,-2],[2,-2],[-5,-7],[-2,-2],[0,-4],[7,-4],[0,-4],[-8,0],[0,-4],[21,-1],[11,-4],[8,-25],[6,-15],[2,-11],[-8,3],[4,-10],[-2,-2],[-4,-1],[-4,-3],[-1,-7],[1,-6],[4,-5],[6,-2],[-5,-4],[-5,-2],[-3,-4],[1,-11],[-16,4],[-7,-3],[-4,-13],[10,-8],[-2,-5],[-3,-3],[-1,-2],[4,-6],[-21,-15],[-5,-11],[7,-19],[-8,-9],[-2,-14],[2,-16],[4,-13],[8,-17],[3,-4],[3,-2],[2,1],[2,0],[2,-5],[5,-14],[-4,-3],[2,-7],[3,-8],[3,-7],[-4,0],[-10,5],[0,1],[1,3],[-1,2],[-2,2],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[0,-3],[-1,-3],[-1,-1],[-1,1],[-1,2],[-5,1],[-6,3],[-4,1],[2,-5],[2,-3],[3,-3],[2,-2],[0,-4],[-5,0],[-4,-6],[-1,-9],[1,-13],[3,-7],[3,-5],[2,-4],[-1,-7],[-8,-16],[0,-3],[1,-16],[0,-7],[-1,-6],[-8,-29],[0,-5],[2,-7],[4,-3],[3,3],[4,4],[3,2],[2,-2],[1,-5],[-1,-5],[-2,-4],[-3,-1],[-7,4],[-4,1],[-5,-1],[-6,-6],[-4,-1],[-1,-3],[2,-7],[4,-12],[1,-19],[-1,-11],[-2,-9],[-3,-4],[-5,-2],[-5,1],[-6,6],[-4,-1],[-4,-2],[-3,-2],[-2,-2],[-3,-5],[-6,-17],[-1,-3],[0,-3],[0,-6],[-1,-13],[-1,-14],[-2,-5],[-7,-1],[-2,-6],[-2,-11],[-13,-32],[-7,-21],[-8,-49],[-7,-48],[-2,-3],[-3,-2],[-2,-5],[-1,-6],[-2,-5],[-4,-7],[-11,-12],[-5,-8],[-16,-42],[-6,-10],[-5,1],[-5,6],[-8,5],[9,20],[2,11],[-6,5],[-14,-7],[-7,1],[-5,10],[-3,-3],[-1,2],[-2,3],[-2,2],[-4,1],[-4,6],[-2,1],[-4,-5],[-6,-10],[-5,-5],[-5,8],[2,4],[3,7],[1,6],[-3,3],[-4,-1],[-10,-11],[-12,-7],[-2,-3],[0,-9],[-2,-2],[-5,5],[-2,3],[-3,4],[-3,4],[-4,1],[-4,-1],[-3,-3],[-4,-8],[-2,-6],[0,-3],[-1,-3],[-13,-1],[-4,2],[-3,3],[6,4],[2,0],[-2,5],[-6,15],[-6,-10],[-11,-8],[-11,-3],[-9,7],[-2,3],[-2,-1],[-2,-3],[-3,-1],[-10,0],[-2,2],[-1,11],[-2,3],[-2,0],[-7,-3],[-2,-1],[1,-3],[2,-10],[1,-3],[-17,9],[-10,2],[-7,-5],[-6,-2],[-9,2],[-7,0],[0,-10],[-5,-3],[-5,5],[-5,6],[-5,4],[-14,0],[-7,-4],[-4,-8],[-1,-5],[0,-7],[0,-6],[2,-3],[4,-2],[2,-4],[1,-5],[1,-5],[8,-14],[3,-8],[3,-10],[-4,-2],[-3,-4],[-3,-4],[-3,-4],[-2,-3],[-1,3],[-2,6],[-5,0],[-2,-5],[-2,-2],[-2,1],[-2,1],[-2,1],[-8,0],[-3,0],[0,3],[4,5],[-3,4],[-2,4],[-1,5],[0,7],[-6,-8],[-3,4],[-1,3],[0,1],[-3,-2],[-6,-5],[-3,-1],[-7,-2],[-6,-6],[-9,-17],[-10,-15],[-7,-6],[-5,-3],[-5,-5],[-4,-11],[-3,-11],[-3,-5],[-11,-8],[-10,-19],[-8,-24],[-3,-25],[-1,-22],[1,-10],[3,-10],[4,-7],[11,-10],[3,-7],[1,-7],[0,-6],[0,-6],[2,-8],[3,-4],[6,-8],[12,-23],[2,-11],[-1,-12],[-4,-8],[-15,-21],[-5,-4],[-3,-4],[-13,-28],[-5,-9],[-5,-5],[-7,-2],[-18,0],[-8,2],[-8,4],[-22,17],[-7,4],[-9,1],[-4,-1],[-7,-5],[-4,-2],[-4,0],[-14,4],[-37,-4],[-5,-2],[-3,-4],[-2,-6],[-4,-5],[-4,-2],[-12,2],[-10,-3],[-25,-21],[-8,-4],[-20,-2],[-9,2],[-45,21],[-15,0],[-6,3],[-3,0],[-2,1],[-4,6],[-2,1],[-6,2],[-6,-2],[-3,-2],[-4,-5],[-3,-1],[-3,1],[-4,3],[-3,0],[-5,-2],[-6,-4],[-4,0],[-1,10],[9,21],[1,0],[2,0],[2,-2],[2,-4],[5,-4],[7,0],[6,4],[4,6],[-2,8],[1,3],[3,0],[4,-3],[-3,16],[-13,26],[-3,17],[3,18],[8,12],[19,17],[3,5],[3,7],[3,8],[1,8],[-2,11],[-4,7],[-4,4],[-4,10],[-5,-2],[-6,1],[-2,11],[-7,0],[-5,2],[-3,9],[3,1],[3,2],[1,5],[1,8],[-4,25],[-10,12],[-11,7],[-8,13],[-3,9],[-1,4],[0,9],[-1,3],[-1,3],[-3,3],[-2,1],[-3,4],[-2,10],[-1,11],[-2,8],[-5,5],[-4,4],[-3,5],[-1,12],[-2,6],[-25,39],[-2,4],[-10,28],[-3,6],[-3,19],[-1,5],[-7,18],[-3,14],[-11,9],[-4,8],[54,-28],[2,-2],[4,-9],[2,-1],[2,-2],[4,-5],[3,-2],[2,1],[4,3],[2,0],[12,-1],[5,1],[5,5],[4,8],[1,9],[-1,8],[-13,8],[-5,13],[-9,27],[-24,21],[-7,14],[10,21],[16,7],[33,-14],[16,7],[4,7],[4,11],[4,13],[2,12],[-2,12],[-8,27],[-5,26],[-4,7],[-8,3],[-7,-1],[-11,-5],[-4,0],[-5,0],[-4,2],[-14,19],[-3,8],[-2,13],[-4,6],[-5,5],[-4,10],[-6,22],[2,13],[-1,7],[-18,15],[-1,2],[0,2],[0,2],[-1,2],[-2,1],[-4,2],[-2,1],[-5,12],[-3,3],[-9,2],[-7,6],[-10,4],[-5,7],[-3,10],[-1,13],[0,3],[3,5],[0,2],[0,3],[-1,6],[0,3],[-1,4],[-1,4],[-3,4],[-8,5],[-9,8],[-6,11],[-1,11],[-2,1],[-5,7],[5,9],[-1,8],[-8,16],[-1,4],[-1,12],[0,5],[-2,1],[-8,-1],[-4,2],[9,10],[3,5],[-3,2],[-6,0],[-6,2],[-5,4],[-5,6],[8,0],[3,1],[4,3],[-4,3],[-4,1],[-9,0],[0,4],[3,4],[2,4],[2,3],[6,3],[2,3],[0,4],[-2,3],[1,8],[-2,5],[-3,4],[-3,4],[-1,1],[-1,3],[-1,3],[-2,1],[-2,-1],[-5,-3],[-2,0],[-4,7],[4,7],[7,9],[5,9],[-13,0],[6,5],[2,6],[0,6],[-9,22],[-1,2],[-3,-1],[-2,-2],[-2,-4],[-2,-1],[-4,-9],[-4,-40],[-4,-12],[-2,11],[-6,-2],[-5,0],[3,15],[-3,0],[-3,0],[-2,2],[-3,2],[3,6],[0,8],[-2,9],[-1,10],[1,9],[3,7],[3,4],[4,4],[-4,5],[-5,3],[2,1],[4,4],[-6,6],[-2,1],[4,9],[-2,33],[2,16],[-1,1],[-3,2],[-2,0],[-1,-8],[-4,-4],[-3,1],[-2,5],[-1,10],[-2,6],[-2,5],[-2,6],[3,12],[18,3],[4,9],[-6,-4],[-8,-2],[-8,0],[-7,2],[-14,10],[-6,1],[1,-11],[-4,-2],[-5,1],[-4,3],[0,6],[0,7],[27,31],[2,5],[-1,4],[-5,1],[-6,-1],[-4,-2],[-7,10],[-5,12],[-6,9],[-9,1],[6,8],[4,3],[4,1],[-3,13],[3,6],[15,6],[0,4],[-4,0],[0,4],[3,1],[1,1],[2,6],[-8,6],[2,10],[12,25],[3,14],[1,9],[-2,7],[-2,6],[-1,6],[0,6],[5,4],[-1,3],[-1,1],[-1,4],[7,2],[3,11],[3,39],[1,4],[3,1],[3,1],[3,1],[3,4],[1,6],[-4,0],[-4,1],[-2,5],[-2,16],[-3,5],[-3,4],[-3,6],[-1,14],[4,9],[16,9],[-3,8],[-6,-2],[-12,-9],[-15,1],[-7,-1],[0,-9],[-4,-3],[-9,0],[-14,-15],[-3,-2],[-2,-2],[-6,-11],[-3,-3],[-3,-1],[-5,0],[-4,2],[-3,3],[1,-3],[3,-9],[-9,3],[-3,9],[2,13],[4,15],[7,17],[7,12],[15,20],[-4,4],[4,7],[4,4],[9,5],[-5,9],[-6,-3],[-7,-10],[-4,-8],[-3,7],[-6,21],[-1,8],[-2,0],[2,-17],[-1,-20],[-3,-21],[-5,-17],[-7,-14],[-9,-11],[-19,-17],[3,8],[3,7],[3,5],[4,4],[0,4],[-4,0],[-8,-5],[-3,1],[-1,8],[1,6],[3,5],[4,1],[10,1],[-2,5],[-6,9],[1,14],[-5,0],[-2,-6],[-2,-7],[-3,-7],[-3,-4],[-4,-2],[-3,1],[2,7],[9,24],[6,12],[2,6],[3,8],[-3,-6],[-12,-19],[-4,-4],[-2,-3],[-1,-3],[-2,-7],[-1,-2],[-8,-5],[-7,4],[-8,0],[-6,-16],[-3,4],[0,4],[1,5],[0,6],[0,5],[-5,13],[1,10],[4,4],[10,-2],[-2,12],[3,6],[4,4],[5,6],[-10,8],[-2,3],[-1,3],[-2,6],[-1,3],[1,3],[1,2],[1,1],[1,0],[0,18],[1,4],[3,4],[2,2],[2,3],[2,6],[-6,0],[1,7],[-1,3],[-3,1],[-1,5],[0,5],[2,6],[0,5],[-3,8],[-10,18],[1,12],[1,5],[-2,2],[-7,0],[-3,5],[1,10],[3,10],[6,3],[-2,8],[2,5],[3,5],[2,7],[1,5],[-1,21],[-1,3],[-3,1],[-4,2],[-1,6],[0,14],[-1,6],[-1,6],[1,2],[0,2],[1,4],[-14,6],[-8,5],[-3,8],[3,9],[6,5],[12,8],[-12,-1],[-5,3],[-2,8],[1,8],[3,6],[18,29],[7,6],[28,5],[10,-4],[3,-17],[3,-13],[4,-13],[6,-11],[4,-6],[3,0]],[[54756,84415],[-7,-1],[-6,-7],[-10,-21],[7,-17],[0,-9],[-4,-15],[0,-5],[-1,-3],[-1,-1],[-3,-2],[-2,-1],[-1,-5],[-1,-9],[-1,-5],[-12,-26],[-1,-9],[-2,-16],[-5,-6],[-6,-4],[-6,-5],[1,-5],[2,-3],[3,-2],[3,-2],[-5,-6],[-4,-6],[-8,-16],[2,-8],[2,-12],[-1,-12],[-4,-5],[-3,-6],[-4,-31],[-3,-11],[-1,0],[-13,-9],[-2,-3],[-2,-5],[-1,-6],[0,-6],[-1,-6],[-1,-12],[-16,-60],[-3,-12],[0,-14],[-1,-5],[-3,-6],[-3,-5],[-2,-2],[-3,-2],[-2,-5],[-2,-13],[0,-3],[2,-2],[0,-3],[-1,-3],[-2,-6],[-1,-3],[0,-10],[-1,-7],[-2,-5],[-4,-11],[-3,-13],[-3,-12],[-2,-11],[0,-5],[0,-13],[-1,-6],[-4,-9],[-1,-6],[-2,-9],[-14,-39],[-5,-8],[-6,-5],[-6,0],[-4,6],[-1,6],[1,13],[0,6],[-4,16],[2,13],[0,15],[0,25],[2,9],[-2,11],[-3,11],[-1,11],[2,51],[1,6],[4,19],[7,13],[1,5],[2,12],[46,139],[5,6],[6,3],[8,0],[8,3],[4,7],[5,22],[12,37],[15,33],[12,35],[5,44],[1,6],[2,3],[6,3],[4,5],[1,6],[1,33],[1,10],[6,8],[9,16],[5,5],[5,3],[3,0],[2,-9],[2,-1],[3,2],[2,5],[2,0],[0,-3],[0,-1],[1,-2],[0,-2],[2,-3],[1,-2],[1,-4],[0,-3]],[[55288,84740],[3,-3],[8,-17],[2,-5],[-20,-2],[-8,-9],[-1,-22],[-3,6],[-4,3],[-2,-2],[0,-7],[-3,-4],[-2,-7],[0,-6],[3,-7],[-11,-3],[-10,-1],[-4,2],[-5,5],[-4,1],[-3,-1],[-1,-4],[1,-5],[1,-6],[-4,-20],[-5,-15],[-2,-6],[-1,-3],[-1,-5],[-1,-6],[2,-1],[12,-4],[-3,-10],[-2,-8],[-1,-8],[0,-9],[-2,-8],[-4,-9],[-2,-7],[4,-6],[-2,-10],[1,-5],[4,-3],[5,1],[-2,-3],[-2,-9],[11,-6],[11,-2],[1,2],[0,4],[2,2],[3,-2],[5,-4],[1,-2],[2,-4],[2,-6],[1,-9],[-1,-7],[-5,-3],[-8,0],[-1,1],[-4,3],[-1,0],[-2,-1],[-3,-5],[-2,-2],[-9,-2],[-9,-7],[-8,-10],[-6,-11],[-11,-11],[-3,-8],[2,-12],[2,-1],[6,1],[2,-2],[1,-18],[-10,-6],[0,-2],[-24,-7],[-8,-5],[0,-4],[4,0],[0,-4],[-6,-2],[-35,-23],[-7,-6],[-5,-10],[19,0],[-7,-6],[-20,-12],[-4,-8],[-2,-31],[3,-7],[5,-4],[10,-5],[-16,0],[0,-4],[4,-4],[-7,-8],[-3,-4],[-3,-13],[-4,-4],[-26,-15],[-9,-2],[-9,6],[18,38],[1,5],[-1,6],[-1,7],[4,5],[10,5],[4,4],[2,8],[3,16],[2,7],[-7,-5],[-6,-9],[-6,-5],[-6,3],[0,4],[4,5],[3,8],[1,8],[-4,3],[1,3],[2,6],[1,3],[-12,7],[-7,50],[-17,17],[1,12],[4,11],[10,10],[4,10],[1,12],[-1,9],[3,8],[0,3],[-3,2],[-2,3],[-1,3],[-3,6],[0,3],[0,7],[-1,4],[-3,8],[-3,11],[-2,14],[0,14],[4,22],[9,17],[46,56],[38,78],[10,13],[14,8],[4,-1],[4,-3],[5,-1],[4,3],[1,4],[2,9],[1,6],[4,11],[5,9],[6,7],[6,5],[7,1],[5,-3],[4,-7],[3,-11],[0,-3],[0,-3],[-1,-2],[-1,-2],[1,-4],[1,-1],[1,-2],[1,-2],[1,-5],[1,-5],[6,-8],[2,15],[4,7],[5,6],[2,11],[-1,3],[-2,5],[-1,4],[4,2],[17,4],[0,-4],[-4,-10],[5,-6],[7,0],[0,8],[4,4],[6,2],[5,0],[4,-2],[-2,-4],[1,-5],[2,-7],[3,-6],[4,-2]],[[55353,84804],[9,0],[4,-2],[5,-5],[-1,-3],[-2,-2],[-2,0],[-3,0],[-4,-7],[-13,5],[-6,-4],[-6,-6],[-12,-6],[-6,-10],[4,-4],[2,-3],[0,-4],[0,-6],[-8,-16],[-1,-4],[-4,1],[-4,3],[-4,4],[-4,5],[-10,22],[1,7],[2,4],[6,9],[2,6],[1,6],[2,5],[4,5],[4,2],[10,0],[4,4],[2,1],[4,-2],[5,-1],[5,4],[1,-9],[4,-2],[9,3]],[[53260,84853],[0,-10],[1,-4],[1,-2],[-3,-17],[-1,-3],[-3,-4],[-3,1],[-1,4],[2,7],[-5,2],[-4,-5],[-4,-10],[-2,-16],[-2,-4],[-3,-3],[-6,2],[-2,-3],[-2,-5],[-3,-3],[-4,0],[-2,3],[-2,3],[-1,2],[-8,1],[-1,2],[-1,7],[-1,5],[-2,6],[-1,5],[1,5],[3,2],[8,-1],[4,0],[-6,4],[-6,0],[-6,2],[-2,9],[3,10],[5,3],[12,-3],[25,0],[6,3],[5,5],[5,3],[6,-3]],[[53279,84955],[2,-12],[0,-13],[0,-26],[-2,-11],[-7,-4],[-7,-1],[-13,-12],[-15,6],[-7,-5],[-5,11],[-7,3],[-8,-3],[-7,-7],[-3,-6],[-1,-4],[-1,-2],[-2,0],[-3,2],[-9,10],[0,-20],[-2,0],[-2,15],[-1,3],[-8,12],[-3,5],[1,8],[5,9],[28,31],[9,4],[7,8],[4,3],[5,0],[8,-2],[4,2],[-1,6],[0,6],[2,5],[3,3],[-1,6],[-1,2],[5,4],[4,0],[10,-4],[3,-13],[6,-6],[5,-4],[5,-9]],[[55369,85036],[-11,-10],[-11,-5],[-10,7],[-8,24],[10,0],[7,-5],[16,-4],[7,-7]],[[55119,85563],[-1,2],[-2,7],[-2,3],[-4,5],[-15,8],[33,-1],[17,-6],[25,-18],[-15,0],[-6,1],[-6,7],[0,-13],[4,-4],[13,1],[-7,-11],[-9,2],[-14,14],[-11,3]],[[55152,86196],[2,-1],[1,-1],[2,-1],[1,-3],[-1,-5],[-3,-1],[-12,9],[-15,19],[-16,10],[-3,12],[-2,16],[1,29],[0,7],[-3,13],[1,4],[3,2],[4,-3],[2,-3],[3,-6],[1,-3],[0,-2],[-1,-3],[0,-3],[1,-4],[3,-6],[8,-7],[2,-7],[-4,0],[-7,6],[-4,1],[3,-8],[12,-28],[3,-9],[3,-6],[4,-1],[6,8],[0,-9],[2,-5],[3,-11]],[[55788,88234],[7,17],[11,-2],[5,-12],[-13,-11],[2,4],[-2,6],[-3,1],[-3,-1],[-4,-2]],[[55134,85468],[1,-1],[1,-4],[-1,-2],[-1,-2],[-8,-15],[-5,-4],[-1,-4],[-1,-3],[0,-4],[-1,-3],[-1,-3],[-1,-3],[-2,-3],[-2,-2],[-3,2],[-1,0],[-1,-2],[-3,-1],[-3,2],[-3,4],[-3,6],[-1,4],[2,2],[2,0],[2,2],[-1,3],[-2,5],[0,2],[2,-1],[2,2],[3,3],[1,4],[-2,2],[1,3],[11,8],[5,7],[5,5],[4,3],[4,-1],[1,-6],[0,-5]],[[55198,85534],[8,-1],[2,-1],[-4,-5],[-19,-13],[-2,1],[1,7],[4,6],[3,6],[4,2],[3,-2]],[[55221,85585],[2,-1],[2,-2],[-1,-4],[-3,-3],[-2,-3],[-3,-8],[-1,-1],[1,-2],[-1,-1],[-2,-1],[-1,0],[-3,3],[-3,2],[-2,0],[-1,-1],[-3,3],[1,6],[4,7],[5,6],[5,2],[4,-1],[2,-1]],[[55187,85612],[-3,4],[-3,4],[-1,3],[-3,5],[2,3],[12,-1],[0,2],[2,0],[3,-2],[2,-2],[5,-8],[1,-1],[1,-1],[1,-3],[1,-8],[-2,-7],[-4,-5],[-12,-7],[-1,0],[-2,2],[1,5],[2,1],[1,2],[-1,3],[0,5],[-2,6]],[[55029,85638],[5,3],[31,-10],[4,-4],[-5,-1],[-2,1],[-6,0],[2,-2],[3,-6],[-3,-6],[-6,-2],[-7,1],[-7,5],[-4,5],[-2,4],[-1,5],[-2,3],[0,4]],[[55237,85649],[3,-2],[1,-4],[-1,-2],[-3,-2],[-2,2],[0,4],[2,4]],[[55261,85643],[1,-2],[1,-6],[-3,-4],[-5,4],[-3,5],[-1,2],[-2,2],[0,4],[3,3],[3,0],[4,-4],[2,-4]],[[55257,85667],[-5,-9],[-4,-7],[-6,1],[-3,10],[3,9],[7,3],[4,1],[1,0],[2,-3],[1,-5]],[[55182,85710],[-3,-1],[-2,-3],[-2,-6],[-2,-1],[-5,4],[-1,-1],[0,-3],[-1,-1],[-1,1],[3,-12],[-1,-7],[-3,-2],[-3,2],[-1,5],[1,-20],[-2,1],[-3,-2],[-2,-4],[-2,1],[-1,3],[-1,5],[-2,6],[-2,5],[-2,5],[-1,6],[-1,3],[-1,2],[1,5],[3,3],[4,0],[3,-2],[2,-6],[0,3],[1,2],[1,1],[2,1],[2,1],[-2,0],[-2,0],[-1,1],[-1,1],[-2,0],[-1,2],[2,4],[2,5],[6,7],[3,5],[5,4],[6,3],[6,0],[6,-3],[3,-3],[0,-3],[1,-1],[1,0],[13,4],[-1,-3],[-15,-8],[-7,-9]],[[55271,85786],[1,-1],[1,-2],[0,-3],[-1,0],[-2,-1],[-2,-2],[-3,-1],[-5,1],[-3,2],[-4,-18],[-2,-5],[-3,-1],[-3,-2],[-6,3],[-1,7],[3,6],[19,26],[4,2],[3,-3],[4,-8]],[[55237,85766],[-7,-5],[-1,-2],[0,-2],[-1,-1],[-2,0],[-2,-1],[-7,-5],[-4,-1],[-3,0],[0,2],[5,3],[6,5],[5,8],[3,4],[11,14],[16,14],[0,-5],[-5,-8],[-13,-18],[-1,-2]],[[55276,85890],[1,-1],[1,-2],[0,-3],[-1,-3],[-3,-3],[-5,-2],[-4,0],[-4,2],[-2,2],[-1,-2],[-1,-2],[-3,1],[-7,-1],[-2,5],[4,9],[12,23],[3,7],[2,2],[3,-1],[2,-3],[3,-4],[2,-7],[0,-7],[-1,-8],[0,-3],[1,0],[0,1]],[[55201,86119],[1,0],[0,2],[-5,7],[2,3],[6,-1],[4,-4],[2,-3],[1,-4],[2,-3],[3,-1],[1,-3],[0,-4],[-1,-1],[0,-1],[2,1],[1,1],[2,-1],[1,-5],[1,-4],[-7,-5],[-6,-2],[-7,2],[-3,2],[-1,3],[-2,7],[0,6],[0,3],[1,4],[2,1]],[[54362,83703],[4,0],[2,1],[0,-3],[-3,-4],[-4,-1],[-1,-3],[1,-6],[1,-6],[-1,-2],[-1,-1],[-3,0],[-1,0],[-9,9],[-2,9],[3,8],[4,3],[2,-2],[2,-2],[3,0],[3,0]],[[54685,84998],[3,-2],[1,-4],[-1,-8],[-3,-4],[-3,-1],[-3,2],[-3,9],[-1,8],[4,4],[6,-4]],[[54692,85016],[5,2],[2,-1],[-1,0],[0,-1],[-2,-3],[-1,-2],[-2,-3],[-4,-2],[-5,0],[-5,2],[-5,4],[-4,7],[-1,5],[-2,3],[-1,3],[1,4],[-2,4],[-3,5],[1,6],[5,3],[3,0],[3,3],[2,0],[1,-1],[4,2],[2,-1],[1,-1],[-1,-4],[-3,-5],[-3,-2],[-3,1],[5,-6],[0,-1],[-3,0],[-2,-4],[1,-4],[4,-6],[7,-8],[6,1]],[[55089,85392],[8,6],[2,-1],[-1,-6],[-4,-6],[-6,-3],[-3,-3],[-2,-1],[-2,1],[-1,-3],[3,-5],[4,-2],[0,-2],[-7,-2],[-5,-3],[-9,-3],[-6,-5],[-3,0],[-2,2],[-2,2],[1,5],[4,9],[4,6],[10,8],[4,1],[4,0],[3,1],[1,2],[5,2]],[[55055,85416],[-1,-7],[-2,-2],[-2,3],[-2,1],[-2,-2],[-2,0],[-3,4],[-1,0],[1,-6],[0,-5],[0,-5],[-1,-5],[-4,-3],[-4,2],[-5,7],[-1,-1],[-2,-1],[-5,-6],[-4,-4],[-1,1],[-1,4],[1,2],[2,8],[2,4],[3,1],[1,2],[0,4],[0,4],[3,5],[3,3],[6,-1],[7,2],[6,2],[13,-2],[-1,-3],[-10,-5],[1,-1],[1,1],[2,0],[2,-1]],[[54918,85406],[-1,-5],[-1,-4],[1,-7],[0,-6],[-1,-6],[-1,-6],[0,-4],[-2,-2],[-2,-2],[0,-4],[3,-8],[-2,0],[-8,13],[0,-3],[-2,0],[-3,7],[1,10],[-2,5],[-2,1],[-1,4],[1,10],[2,10],[3,7],[1,5],[-1,3],[0,6],[0,17],[2,6],[3,0],[1,-4],[0,-4],[2,-1],[1,0],[2,-4],[2,-7],[2,-8],[2,-10],[0,-9]],[[55034,87594],[-13,-4],[-14,2],[-6,13],[3,10],[2,7],[1,6],[4,6],[6,2],[5,-2],[3,-4],[3,-2],[7,4],[6,-1],[3,-2],[0,-4],[-1,-8],[-2,-6],[-1,-4],[-1,-2],[-3,1],[-3,-1],[-1,-2],[2,-2],[2,-3],[-2,-4]],[[55797,88176],[-2,-6],[-2,-5],[-4,-4],[-5,-1],[1,6],[10,14],[1,-1],[1,-3]],[[55804,88226],[3,1],[3,5],[6,5],[2,1],[0,-1],[-1,-2],[-1,-2],[1,-3],[0,-3],[-2,-2],[-1,-4],[1,-5],[0,-6],[-1,-7],[-3,-7],[-4,-5],[-4,-3],[-2,0],[-2,0],[-4,-4],[-1,6],[6,29],[2,4],[2,3]],[[56224,89233],[3,-3],[-2,-5],[-7,-5],[-3,-1],[-23,-2],[-2,2],[0,7],[2,6],[4,1],[3,-2],[1,-3],[3,-2],[5,4],[6,6],[5,0],[5,-3]],[[56153,89218],[-1,3],[-2,7],[1,5],[0,2],[0,6],[3,4],[5,0],[10,-6],[1,-3],[-2,-2],[0,-4],[3,-5],[3,-3],[1,-3],[0,-4],[0,-4],[-3,1],[-3,2],[-2,2],[-14,2]],[[56276,89276],[4,-2],[2,-4],[-1,-3],[-2,-1],[-5,1],[-6,3],[-4,8],[2,4],[5,-3],[2,-2],[3,-1]],[[56171,89264],[-7,11],[-2,7],[4,3],[3,1],[4,0],[22,-13],[2,0],[2,1],[2,-2],[3,-5],[6,-5],[0,-5],[-4,-3],[-3,1],[-3,5],[-4,4],[-4,2],[-4,2],[-2,-2],[1,-6],[-1,0],[0,-2],[0,-4],[3,-4],[1,-3],[-2,0],[-4,2],[-13,15]],[[56271,89309],[13,6],[5,-3],[-1,-5],[-5,-2],[-2,-3],[0,-5],[-2,-3],[-3,-2],[-2,0],[-4,2],[-1,0],[2,-2],[-2,0],[-9,5],[-1,3],[-1,5],[1,3],[3,0],[4,0],[5,1]],[[56269,89316],[-3,4],[-1,2],[3,4],[8,1],[2,-8],[-4,-4],[-5,1]],[[56378,89388],[4,-4],[2,-6],[-1,-4],[-3,2],[-2,0],[-1,-4],[1,-5],[3,-8],[-5,2],[-8,8],[-8,10],[-4,11],[1,10],[5,3],[7,0],[7,-5],[1,-5],[-4,0],[0,-2],[5,-3]],[[56610,89410],[1,-2],[0,-4],[-1,-5],[-1,-4],[-2,-2],[-1,-2],[0,-2],[-3,-4],[-10,-9],[-10,7],[-5,8],[0,13],[2,3],[2,-5],[2,-3],[2,3],[1,7],[1,-1],[3,-3],[3,-2],[4,0],[3,1],[3,4],[1,-1],[2,-3],[1,2],[1,4],[1,0]],[[56316,89386],[-2,3],[-2,3],[0,4],[1,5],[1,8],[1,8],[3,3],[12,-12],[3,-9],[3,-12],[-2,-6],[-12,2],[-6,3]],[[57724,86330],[-5,5],[-4,7],[-4,4],[-6,-3],[1,-2],[2,-5],[1,-2],[-5,-2],[-1,-7],[2,-8],[4,-7],[-5,-3],[-1,-1],[4,-4],[2,0],[-10,-10],[-4,-2],[-19,4],[3,7],[8,4],[5,5],[-12,2],[-5,-1],[-4,-5],[-3,-7],[1,-5],[2,-5],[3,-7],[-10,3],[-23,22],[-10,-5],[2,-1],[2,-1],[1,-6],[-1,-2],[-3,-4],[-1,-2],[3,-2],[2,-3],[3,-3],[1,-5],[-14,4],[-24,20],[-12,5],[-21,1],[-5,3],[0,8],[7,2],[14,-2],[-6,6],[-21,14],[5,12],[-4,3],[-6,-3],[-4,-7],[1,-9],[4,-9],[1,-9],[-6,-6],[-1,8],[-1,2],[-6,-2],[-3,2],[-4,8],[-3,2],[-2,-2],[-3,-8],[-2,-2],[-3,2],[-4,8],[-2,2],[-3,0],[-3,-3],[-3,-3],[0,-4],[1,-6],[-2,-3],[-2,-3],[-4,-12],[-6,-3],[-13,1],[7,-10],[3,-6],[-1,-7],[-2,2],[-9,10],[-2,5],[-26,-10],[-8,-1],[2,4],[2,4],[2,9],[-5,0],[-6,-2],[-5,-3],[-4,-5],[-1,-5],[0,-10],[0,-4],[-2,-2],[-6,-4],[-3,-4],[-3,-1],[-5,6],[-6,8],[-4,5],[-5,2],[-6,-1],[-5,-3],[-1,-6],[-6,-2],[-7,4],[-7,8],[-5,9],[-2,11],[4,7],[7,4],[6,6],[7,16],[1,4],[-1,14],[1,5],[4,6],[12,11],[12,-2],[24,-19],[-6,22],[-9,17],[-11,7],[-12,-6],[-7,-8],[-11,-22],[-24,-50],[-3,-19],[9,-19],[-5,-9],[-2,-4],[-3,-3],[-8,0],[-2,-3],[2,-9],[-3,1],[-3,3],[-5,8],[0,-7],[0,-3],[-2,-2],[-4,0],[-3,-2],[0,-4],[-1,-4],[-1,-2],[-5,4],[-4,10],[-3,10],[-3,4],[-3,4],[-4,7],[-5,6],[-4,-1],[-1,-7],[4,-8],[9,-13],[-27,5],[-2,-1],[-5,-6],[-3,-2],[-2,4],[-11,12],[-9,6],[-4,3],[-10,14],[-9,8],[-9,5],[-8,1],[0,-4],[15,-8],[3,-4],[6,-11],[7,-4],[2,-5],[1,-6],[0,-5],[-2,-3],[-5,0],[-2,0],[1,-7],[3,-5],[10,-7],[6,-11],[2,-4],[4,-1],[2,-4],[-1,-7],[-2,-7],[-2,-3],[-14,-4],[-1,14],[-11,19],[2,8],[-3,-1],[-3,-2],[-2,-4],[-2,-1],[-3,0],[-3,2],[-16,18],[-6,5],[-7,3],[10,-15],[6,-6],[5,-4],[-3,-12],[-6,-12],[-1,-8],[3,-9],[8,-15],[2,-12],[-6,0],[-4,2],[-3,4],[-4,6],[2,4],[-4,7],[-5,2],[-6,1],[-6,2],[-8,13],[-5,3],[-4,-4],[2,-10],[10,-8],[19,-10],[-19,-9],[0,-3],[-5,-3],[-8,4],[-22,27],[-2,4],[1,8],[2,6],[3,2],[-6,4],[0,5],[16,0],[-4,12],[-6,1],[-7,-4],[-4,-6],[-8,-5],[-21,-7],[0,-3],[4,-3],[2,-6],[-1,-8],[-1,-8],[-1,-2],[-2,-1],[-2,-2],[-2,-10],[-1,-3],[-2,-2],[-40,0],[1,9],[-4,4],[-10,3],[1,-3],[1,-7],[0,-3],[-8,-3],[-26,0],[-2,-1],[0,-2],[0,-7],[0,-1],[-2,-2],[-3,1],[-5,4],[0,-5],[10,-7],[4,-4],[-3,-3],[-4,0],[5,-6],[-6,-4],[-17,-4],[-6,0],[1,4],[0,2],[1,2],[-12,-7],[-3,-5],[6,-4],[-2,-4],[-5,0],[-4,-5],[-5,2],[-4,7],[4,4],[3,9],[1,9],[-2,7],[-5,1],[-4,-8],[-7,-29],[-3,-4],[-23,-2],[-6,2],[-3,7],[10,3],[-1,11],[-7,9],[-10,-3],[6,-16],[-4,-3],[-8,-7],[-3,-2],[-15,-2],[-9,-4],[-2,-1],[-2,-3],[0,-4],[1,-8],[-2,-3],[-4,0],[-1,5],[-1,7],[-1,5],[-4,4],[-17,11],[-4,1],[-1,-2],[3,-6],[4,-4],[4,-2],[2,-3],[-3,-7],[-3,-5],[-4,-2],[-4,-2],[-2,-8],[19,8],[-1,-5],[-3,-4],[-5,-7],[5,-4],[0,-4],[-19,-15],[-10,-17],[-6,-6],[-6,-2],[-8,-1],[2,9],[8,19],[3,5],[-5,1],[-7,-7],[-13,-19],[-2,11],[-5,-4],[-5,-7],[-5,-4],[2,10],[3,4],[4,3],[3,6],[1,4],[0,5],[0,6],[2,7],[-13,1],[-7,-2],[-5,-7],[4,-4],[-8,-7],[-3,-1],[-4,0],[-9,4],[-8,1],[-5,-3],[0,-5],[7,-5],[-5,-4],[-5,2],[-4,3],[-5,3],[-2,-1],[-11,-6],[-3,0],[-3,3],[-5,-10],[-5,1],[-2,6],[4,7],[0,4],[-5,-1],[-3,-4],[-2,-5],[-3,-6],[-4,-5],[-4,-3],[-19,-4],[-21,-21],[-7,7],[-46,-7],[-4,3],[-3,7],[-2,2],[-4,0],[-18,-5],[-12,-7],[-6,0],[3,9],[12,23],[4,5],[8,3],[4,3],[0,4],[-2,5],[0,5],[1,6],[2,6],[-10,-4],[-3,-2],[-2,-5],[-2,-6],[-2,-5],[-4,-2],[-3,-3],[-1,-6],[-1,-7],[-2,-7],[-2,-3],[-6,-5],[-3,-4],[-9,-17],[-11,-13],[-25,-15],[-4,-7],[0,-11],[3,-9],[5,-2],[0,-5],[-47,-8],[-4,-4],[-17,4],[-6,-2],[-5,-3],[-17,-4],[-5,1],[5,4],[7,13],[4,4],[12,2],[39,20],[11,2],[-2,12],[1,5],[4,0],[3,-1],[9,0],[7,4],[6,8],[7,13],[4,12],[5,18],[2,12],[-5,-4],[-18,-44],[-8,-11],[-5,0],[0,2],[1,4],[1,2],[-3,3],[-3,1],[-3,-1],[-3,-3],[1,-4],[-11,4],[-3,-6],[-1,-6],[-2,0],[-2,4],[-1,6],[3,18],[0,2],[5,6],[21,8],[4,6],[6,15],[5,4],[-15,6],[-27,-6],[-13,0],[-7,3],[-6,4],[-5,6],[-1,9],[2,8],[4,7],[9,12],[-6,8],[-1,-4],[-3,-10],[-1,-3],[-3,-2],[-5,-3],[-2,-3],[0,10],[-3,7],[-5,3],[-9,3],[-6,7],[-3,3],[2,6],[1,6],[-2,5],[-4,3],[16,28],[5,9],[18,19],[5,9],[2,6],[2,10],[2,4],[7,7],[3,4],[0,6],[-6,1],[-7,-8],[-7,-12],[-3,-10],[-16,6],[-18,-9],[-39,-37],[-35,-11],[-16,-9],[-8,0],[4,5],[15,11],[-5,2],[-1,4],[6,12],[3,3],[13,7],[-14,-2],[-7,-3],[-13,-11],[-7,-3],[-15,-1],[3,4],[0,4],[0,3],[1,5],[2,3],[5,4],[6,10],[9,10],[1,9],[14,18],[9,7],[1,8],[-2,6],[-12,-14],[-10,-2],[-23,2],[6,16],[-44,-12],[-9,0],[-4,2],[-8,11],[-19,15],[-6,3],[-12,1],[-2,5],[0,7],[-2,3],[-5,-9],[-6,-6],[-4,1],[-8,11],[-1,2],[1,5],[0,2],[-2,0],[-3,-1],[-1,1],[-2,2],[-2,1],[-1,2],[1,7],[-13,0],[1,4],[1,8],[2,4],[-5,3],[-8,3],[-8,0],[-6,-2],[-3,-6],[1,-7],[8,-15],[-13,4],[-6,0],[-6,-4],[1,10],[4,18],[1,12],[-1,9],[1,8],[3,6],[8,2],[-4,5],[-1,6],[1,6],[2,7],[-18,-15],[-6,-7],[-6,-6],[-15,-3],[-4,-5],[-1,-5],[3,-9],[-2,-5],[-1,-3],[-1,-3],[0,-4],[0,-6],[-4,-8],[-8,-4],[-9,-1],[-6,3],[7,8],[-4,12],[-14,25],[4,0],[13,-5],[0,5],[-7,2],[-19,2],[-9,-4],[-3,0],[-3,1],[-4,5],[-3,1],[0,5],[2,0],[1,1],[3,2],[-4,9],[8,-4],[5,0],[2,4],[-13,12],[-6,3],[-6,8],[-4,9],[-3,8],[0,3],[1,1],[0,1],[-1,3],[20,-6],[4,0],[2,8],[-2,6],[-2,6],[-3,7],[13,0],[0,4],[-6,0],[-6,3],[-5,4],[-6,5],[5,4],[2,0],[3,0],[-6,9],[-4,3],[-3,0],[2,8],[-2,9],[-4,5],[-4,-2],[-2,2],[-2,3],[-1,4],[-1,4],[3,6],[-5,12],[4,2],[14,-3],[7,1],[6,6],[-3,3],[-3,1],[-7,0],[-2,1],[-6,11],[3,1],[5,6],[2,1],[3,-1],[2,-4],[2,-3],[4,0],[-2,6],[-1,7],[-2,5],[-2,3],[-3,1],[-1,2],[-1,4],[-2,5],[-12,27],[-5,5],[4,7],[2,2],[-8,6],[-2,5],[-1,8],[6,0],[12,-9],[6,-2],[6,1],[0,3],[0,2],[-5,4],[-6,1],[8,6],[16,-9],[8,3],[-4,4],[-4,7],[-1,8],[3,6],[-3,14],[-1,6],[-3,4],[2,0],[7,4],[-2,0],[-2,1],[-1,1],[-2,2],[4,8],[-4,0],[3,4],[5,1],[9,0],[-2,6],[0,2],[8,5],[9,3],[-4,12],[-6,6],[-13,6],[3,6],[3,3],[3,4],[-1,7],[11,0],[0,5],[-1,3],[1,11],[0,6],[-1,3],[-2,2],[-1,3],[0,3],[0,6],[0,3],[-2,12],[-1,4],[-4,4],[-4,3],[-8,3],[-4,2],[9,5],[17,-1],[9,4],[-4,9],[-5,7],[-8,9],[-19,10],[-6,6],[37,-6],[10,6],[-6,17],[-1,3],[-4,2],[-8,-3],[-3,1],[-12,17],[-2,6],[0,3],[1,1],[5,2],[7,1],[32,-14],[18,-13],[8,-3],[0,5],[-19,20],[-10,14],[-6,26],[-5,4],[-6,3],[-4,6],[0,4],[2,9],[-1,5],[-6,14],[0,4],[5,-2],[9,-8],[5,2],[-8,9],[-19,14],[-6,14],[1,7],[3,8],[2,8],[-1,7],[-4,4],[-5,1],[-3,4],[1,9],[-8,13],[-4,8],[-3,7],[3,3],[2,4],[1,4],[-6,4],[-1,4],[-1,6],[-2,4],[-2,1],[-13,-1],[-2,1],[-1,0],[-7,6],[-3,1],[5,12],[-4,5],[-13,3],[12,39],[2,14],[1,28],[2,5],[5,-12],[4,17],[1,8],[-2,7],[4,7],[9,6],[3,5],[2,8],[-2,6],[-8,8],[6,21],[-6,0],[-4,-7],[-3,-8],[-4,-6],[1,10],[3,17],[1,10],[0,28],[2,9],[-15,-7],[-4,3],[-2,6],[-1,7],[1,8],[4,7],[-2,8],[-18,-30],[-1,-6],[4,-9],[-6,2],[-2,9],[2,12],[2,10],[-2,1],[-2,2],[-2,1],[2,7],[2,3],[2,2],[-5,4],[-5,-2],[-5,-4],[-4,-6],[-1,8],[5,18],[2,10],[-5,-4],[-4,-2],[-2,3],[-1,11],[1,11],[2,8],[4,6],[5,4],[-2,5],[-6,11],[6,5],[5,8],[6,5],[6,-1],[-4,11],[-20,5],[-5,8],[-3,-2],[-3,-4],[-5,-10],[1,14],[4,23],[-1,12],[5,1],[8,6],[6,8],[3,9],[0,6],[-1,1],[-2,0],[-2,1],[-5,6],[-2,4],[-2,10],[1,9],[5,5],[6,2],[5,-5],[4,-2],[1,5],[1,2],[5,8],[2,5],[1,9],[1,9],[1,7],[4,7],[7,0],[19,-8],[6,2],[2,3],[5,6],[2,3],[2,4],[1,8],[2,8],[3,13],[1,4],[2,1],[9,4],[-4,21],[-1,11],[0,13],[-1,5],[0,2],[1,1],[4,4],[3,1],[2,-3],[1,0],[1,9],[3,8],[8,-5],[12,-14],[8,-3],[9,-7],[8,-3],[9,5],[-12,17],[-18,17],[-6,7],[-2,7],[6,9],[-4,-2],[-4,-1],[-3,1],[-4,4],[-1,7],[1,6],[-1,4],[-3,1],[2,7],[3,2],[8,0],[0,4],[-11,4],[-3,4],[-1,10],[2,5],[5,5],[6,3],[4,1],[16,-17],[9,-4],[5,13],[6,-5],[7,-5],[8,-2],[6,4],[-4,3],[-9,3],[-4,2],[0,4],[11,8],[4,1],[12,-1],[6,3],[13,9],[7,0],[-3,-8],[0,-6],[2,-23],[0,-5],[-3,-6],[7,-2],[22,-19],[-3,13],[-5,12],[8,3],[3,4],[3,5],[1,6],[1,5],[1,5],[2,4],[6,4],[2,-3],[3,-5],[3,-4],[4,0],[7,6],[4,2],[3,-1],[6,-4],[4,1],[2,2],[0,2],[0,3],[0,1],[2,0],[2,-1],[2,-2],[0,-1],[12,16],[6,11],[3,10],[2,0],[6,-15],[6,4],[6,13],[6,9],[-2,4],[-2,4],[-3,9],[-4,6],[-8,8],[-14,20],[-1,3],[-5,0],[-4,2],[-3,3],[-3,7],[-1,16],[6,7],[9,-1],[8,-8],[8,-12],[9,-3],[8,-1],[10,-6],[-23,25],[-11,16],[-2,15],[3,8],[3,2],[7,-1],[5,-3],[0,-6],[-1,-6],[0,-6],[6,-3],[7,-1],[5,-5],[-1,-15],[4,3],[4,6],[4,3],[0,4],[-2,6],[0,5],[2,5],[2,7],[5,22],[3,4],[3,3],[3,4],[1,7],[1,1],[12,-7],[-2,7],[-11,21],[4,8],[3,3],[2,2],[0,4],[-1,1],[-1,3],[12,-3],[5,2],[2,11],[0,11],[-1,6],[2,0],[5,-3],[4,-7],[3,-2],[1,3],[1,6],[2,3],[3,1],[3,-2],[4,-5],[4,-6],[1,-7],[-1,-8],[3,-5],[5,-13],[2,-3],[4,1],[5,2],[5,3],[3,4],[3,2],[2,1],[3,1],[1,5],[0,4],[0,3],[1,3],[1,3],[4,6],[9,5],[4,6],[-5,4],[-14,8],[19,0],[-5,10],[-2,2],[7,-4],[4,0],[3,2],[0,4],[1,4],[0,5],[-1,2],[-5,3],[-3,6],[1,7],[6,4],[5,-1],[4,-4],[5,-13],[5,-6],[3,1],[0,6],[-3,9],[1,7],[0,4],[-1,5],[16,15],[4,7],[3,3],[13,-5],[3,2],[3,4],[3,3],[-1,0],[-2,3],[0,4],[3,5],[4,1],[8,3],[22,-1],[8,3],[6,10],[7,-8],[6,2],[6,6],[6,8],[-9,8],[-4,5],[0,5],[3,8],[-1,6],[-2,5],[-1,6],[1,3],[3,27],[4,5],[6,0],[9,-5],[2,-2],[3,-4],[3,-2],[3,1],[2,2],[3,1],[9,-6],[18,-2],[4,6],[-3,14],[-7,14],[-4,7],[2,6],[3,1],[8,-3],[2,2],[6,10],[4,3],[1,8],[5,7],[7,7],[1,1],[4,6],[-2,0],[1,9],[2,9],[3,4],[6,-4],[4,0],[13,7],[4,4],[2,5],[6,19],[5,-1],[12,-7],[5,-4],[-2,6],[-2,8],[-1,8],[1,10],[4,9],[8,11],[4,9],[3,17],[2,6],[6,5],[12,5],[5,5],[-2,10],[4,-1],[3,1],[3,2],[3,4],[1,-1],[11,7],[10,0],[2,2],[0,11],[0,4],[2,4],[3,1],[8,-2],[3,3],[2,4],[1,8],[2,2],[5,5],[6,1],[5,4],[4,10],[0,4],[-1,6],[0,4],[5,5],[0,5],[-1,4],[-1,1],[2,12],[2,7],[8,13],[1,5],[1,5],[2,5],[1,1],[4,2],[8,11],[11,6],[5,5],[5,9],[-3,6],[-1,2],[0,4],[3,6],[4,4],[8,6],[-10,9],[-3,5],[5,3],[6,-1],[22,-12],[3,1],[2,3],[0,3],[-3,4],[-1,4],[2,10],[6,3],[11,0],[2,12],[10,6],[34,4],[49,26],[6,1],[5,-2],[3,-6],[2,-6],[4,-6],[2,0],[2,2],[2,1],[3,-3],[1,-2],[1,-9],[1,-3],[4,-7],[4,-4],[5,-3],[7,-1],[0,-3],[-3,0],[-2,-1],[-5,-3],[10,-4],[26,8],[2,2],[-3,11],[1,5],[4,19],[0,4],[-2,7],[-4,0],[-3,-3],[-4,-1],[-4,3],[-7,8],[-11,4],[-5,5],[-9,17],[1,2],[3,4],[2,2],[-2,4],[4,2],[28,-4],[5,-4],[10,-10],[7,-5],[6,-2],[5,3],[1,8],[-2,8],[-3,5],[-2,6],[1,9],[-2,3],[0,3],[0,3],[1,3],[-7,8],[-3,5],[-2,6],[0,6],[-1,5],[-2,3],[-2,4],[-9,8],[-31,8],[2,13],[2,6],[9,10],[4,4],[2,7],[1,8],[-1,9],[3,-1],[3,1],[4,1],[3,3],[-2,1],[-4,2],[-2,1],[3,9],[1,3],[-5,3],[-2,1],[-2,0],[4,6],[3,19],[4,8],[-1,2],[-2,4],[-1,2],[3,1],[1,1],[4,6],[-19,20],[4,2],[7,1],[4,2],[3,3],[4,9],[3,3],[-3,10],[3,22],[-1,11],[-8,14],[-9,11],[-20,19],[-6,3],[-8,0],[-6,-2],[-6,1],[-7,9],[-1,5],[-1,4],[-1,2],[-1,6],[-4,5],[-3,2],[-7,-2],[-4,4],[-5,4],[-13,-3],[-6,1],[-3,4],[-5,9],[-3,3],[-10,5],[-11,2],[-11,-2],[-10,-5],[-7,-8],[-4,-2],[-5,-1],[-3,2],[-1,6],[-1,22],[0,5],[-3,2],[-17,9],[-4,4],[-4,8],[-4,9],[-1,11],[3,15],[4,11],[16,31],[3,11],[3,4],[4,4],[8,1],[3,3],[0,8],[-4,-5],[-14,-7],[-3,-1],[-2,0],[-2,-1],[-1,-4],[0,-7],[0,-2],[-1,-2],[-7,-5],[-12,-27],[-7,-8],[-7,0],[-5,1],[-6,0],[-6,-5],[-1,-2],[-1,-2],[0,-3],[-2,-3],[-3,-2],[-14,6],[-8,11],[-3,3],[-11,4],[-11,8],[3,-8],[1,-9],[-2,-8],[-6,-3],[-5,2],[-5,7],[-4,8],[-3,7],[0,4]],[[56224,86034],[-2,13],[3,6],[5,-2],[5,-9],[0,-22],[0,-10],[-1,-9],[-2,0],[-3,6],[-5,1],[-4,-2],[-2,-7],[-1,-1],[-3,7],[-4,10],[-1,7],[-1,9],[-1,9],[2,7],[4,3],[4,-3],[0,-8],[1,-6],[6,1]],[[55971,86083],[9,14],[11,6],[12,0],[12,-8],[-2,-7],[-3,-3],[-7,-6],[5,0],[2,-3],[-1,-5],[-2,-5],[-4,-3],[-4,0],[-7,3],[-3,0],[-8,-3],[-3,-3],[-2,0],[-3,4],[-3,4],[-3,3],[4,3],[6,1],[11,0],[-3,7],[-4,2],[-10,-1]],[[56039,86115],[16,4],[15,0],[9,-8],[0,-4],[-3,0],[-3,0],[-3,-1],[-2,-3],[2,-1],[4,-7],[-21,0],[9,-4],[-2,-2],[-3,-2],[-3,-1],[1,-1],[2,-2],[-7,-7],[-8,-5],[-9,-1],[-7,5],[2,3],[1,1],[-1,8],[4,3],[1,1],[0,4],[-4,3],[0,6],[5,7],[5,4]],[[55931,86128],[4,-9],[7,-3],[15,-1],[0,-4],[-11,1],[-4,-4],[-2,-9],[-2,0],[-2,4],[-4,3],[-9,1],[-4,2],[-3,4],[-3,3],[-5,-1],[4,8],[6,4],[13,1]],[[56127,86128],[4,-9],[-17,-16],[1,-1],[4,-6],[2,-1],[-8,-11],[-9,-1],[-7,8],[-4,16],[4,3],[13,5],[8,9],[4,4],[5,0]],[[57170,86126],[2,5],[5,1],[10,-1],[-3,-7],[-3,-3],[-5,-2],[-4,0],[-2,7]],[[56169,86124],[3,11],[7,11],[7,6],[6,-4],[1,-14],[-8,-15],[-10,-7],[-6,12]],[[57117,86144],[-9,2],[-6,9],[-1,12],[4,11],[5,-3],[24,-27],[-2,-4],[-5,-3],[-4,-3],[-3,-6],[1,-8],[-7,4],[-3,2],[2,4],[4,10]],[[56345,86146],[6,14],[7,12],[8,6],[10,-2],[-2,-13],[-5,-8],[-7,-6],[-6,-7],[-2,-6],[-1,-6],[-2,-5],[-7,-3],[-2,-5],[0,-7],[2,-7],[-2,0],[-1,-1],[-1,-2],[-2,-1],[2,-1],[4,-3],[-1,-6],[-1,-2],[4,-19],[-10,-17],[-23,-21],[0,-4],[3,0],[2,-1],[3,-3],[-3,-4],[-3,-10],[-2,-3],[-7,2],[-2,-1],[-4,-5],[-4,11],[-4,10],[-2,-6],[-9,-12],[-1,-1],[-1,-3],[0,-7],[-2,0],[1,9],[-1,5],[-2,2],[-4,-4],[-1,8],[2,4],[2,5],[1,8],[-3,-5],[-10,-10],[-4,-8],[-12,-3],[-5,-3],[0,16],[1,7],[1,6],[-1,7],[0,8],[1,6],[-1,5],[-3,4],[-8,5],[-3,6],[6,2],[10,8],[6,2],[27,0],[0,4],[-51,4],[3,13],[2,17],[4,13],[8,2],[-6,-15],[-1,-7],[4,-3],[28,6],[10,8],[5,3],[54,9],[8,9]],[[56140,86188],[7,1],[33,-2],[20,-9],[5,-6],[-1,-7],[-1,-3],[-6,-2],[-2,1],[-2,2],[-2,1],[-2,-2],[-1,-2],[-4,-3],[-1,-1],[-13,-4],[-4,1],[5,7],[-4,6],[-6,3],[-7,0],[-4,-1],[11,0],[-5,-12],[-7,2],[-8,5],[-6,-1],[-2,0],[-1,8],[2,11],[6,7]],[[56218,86193],[-5,-4],[-5,-1],[-11,5],[5,9],[6,7],[6,3],[7,1],[1,-1],[0,-3],[0,-3],[0,-1],[8,-5],[4,0],[4,0],[3,-1],[2,-6],[-6,-8],[-8,-5],[-9,-4],[-7,0],[2,4],[1,4],[2,9]],[[56110,86200],[-5,-3],[-5,0],[-6,1],[-5,2],[-1,0],[-1,-2],[-2,-2],[-2,0],[0,2],[0,5],[0,2],[-6,5],[-3,2],[-9,2],[-6,4],[-6,6],[-2,7],[2,7],[4,5],[6,2],[5,0],[0,4],[-13,16],[1,8],[1,6],[3,3],[4,0],[4,-5],[13,-8],[2,-6],[1,-5],[2,-3],[3,-1],[3,-1],[5,-12],[0,-4],[-8,3],[-4,0],[-4,-3],[4,-3],[8,-5],[4,-4],[-2,-4],[9,0],[3,-2],[3,-6],[-7,-4],[-3,-1],[5,-3],[2,0],[3,0],[0,-5]],[[56034,86288],[-3,-7],[-4,-6],[-3,-3],[-2,6],[3,11],[6,15],[8,10],[6,0],[-1,-8],[-3,-6],[-7,-12]],[[55921,86288],[-5,3],[-9,2],[-5,5],[3,12],[-2,7],[-4,6],[-3,11],[6,0],[8,-10],[7,-14],[1,-6],[5,-16],[-2,0]],[[55942,86334],[5,-10],[14,-2],[6,-8],[-2,0],[0,-1],[-1,0],[-3,1],[-1,-6],[0,-5],[0,-5],[1,-4],[-4,1],[-4,-3],[-1,-5],[4,-5],[-7,3],[-7,8],[-6,11],[-3,14],[-4,-6],[-3,-2],[-2,4],[-1,10],[3,9],[5,2],[11,-1]],[[55916,86339],[-5,-1],[-2,4],[-1,5],[-2,4],[-5,1],[-3,2],[-3,5],[-3,9],[2,3],[6,4],[2,4],[1,5],[2,2],[3,-3],[0,-5],[1,-4],[2,-4],[3,-3],[-3,-9],[-1,-8],[1,-7],[5,0],[0,-4]],[[55906,86525],[-9,0],[-4,1],[-4,3],[7,6],[14,-6],[6,4],[-1,2],[-1,2],[0,2],[0,2],[1,2],[3,4],[2,2],[-9,12],[-5,4],[-6,1],[8,10],[4,2],[5,0],[5,-9],[4,-6],[11,-9],[-6,-7],[-4,-2],[-3,-3],[-1,-13],[-2,-5],[-6,-1],[-6,3],[-3,-1]],[[55950,87925],[-2,-8],[0,-7],[1,-7],[3,-6],[-7,-4],[-7,-1],[-4,2],[4,7],[-4,0],[-20,-16],[0,-4],[2,-1],[5,-3],[-4,-5],[-5,-3],[-12,-1],[-3,5],[-3,7],[-4,8],[-5,5],[-3,-2],[-4,-4],[-4,0],[-4,10],[6,0],[0,4],[-4,3],[-8,10],[-3,5],[-1,6],[-5,18],[0,7],[11,-10],[11,1],[11,4],[12,1],[0,-4],[-4,-2],[-3,-5],[-6,-14],[1,-5],[0,-1],[-1,-2],[4,-3],[15,-1],[2,-1],[2,-3],[2,-1],[3,3],[1,4],[-1,4],[-2,3],[1,3],[6,7],[12,6],[11,0],[7,-9]],[[55921,87950],[-1,9],[-2,1],[-4,-2],[-4,0],[-14,16],[2,2],[1,1],[3,1],[8,3],[9,9],[10,5],[8,-9],[0,-9],[-5,-11],[-11,-16]],[[56942,88996],[11,2],[8,-9],[-9,-5],[-19,0],[-23,6],[-16,-1],[-5,-11],[-22,-12],[8,-17],[17,2],[4,-3],[-3,-3],[-3,-1],[-4,0],[-3,0],[-3,-2],[-2,-4],[-3,-2],[-5,-1],[-6,0],[-3,4],[2,9],[-1,2],[-2,6],[-4,6],[-7,-15],[-7,-2],[-10,14],[-5,10],[-3,8],[-2,9],[7,7],[19,18],[24,2],[26,7],[13,-5],[4,-8],[-6,-4],[2,-4],[7,0],[8,0],[16,-3]],[[56643,85987],[2,-3],[-1,-1],[0,-4],[-3,-4],[-4,0],[0,-1],[0,-1],[-3,-1],[-4,-1],[-4,4],[-1,-1],[-1,2],[2,5],[4,5],[6,3],[7,-2]],[[56357,86043],[8,0],[3,-2],[-2,-4],[-1,-5],[-1,-5],[-2,-2],[-1,0],[-2,-3],[-3,-8],[-1,-5],[-2,-3],[-4,3],[-2,10],[1,8],[8,1],[0,3],[-2,2],[-4,0],[-2,2],[2,5],[7,3]],[[56377,86068],[1,-4],[0,-4],[-2,-5],[-2,-2],[-3,-1],[-2,1],[1,3],[-2,0],[-3,-3],[-5,-2],[-8,0],[-2,0],[-5,0],[0,2],[3,4],[3,5],[2,6],[2,2],[3,3],[7,4],[6,-1],[3,-3],[3,-5]],[[56108,86080],[2,-1],[4,-4],[-1,-4],[-6,-2],[-4,0],[-8,1],[-1,1],[-3,5],[2,4],[4,3],[3,1],[4,-4],[4,0]],[[56198,86116],[17,7],[3,-5],[-5,-10],[-7,-5],[-7,-3],[0,-3],[4,-3],[1,-4],[-4,0],[-6,0],[-3,1],[1,2],[0,2],[-1,5],[1,3],[1,2],[1,2],[0,3],[1,4],[3,2]],[[56106,86171],[-2,0],[-1,1],[2,2],[5,4],[3,1],[-1,-3],[-3,-3],[-3,-2]],[[56099,86169],[-4,-2],[-5,0],[-5,1],[-3,6],[-3,0],[-3,9],[1,3],[4,0],[4,0],[5,2],[9,-1],[4,-1],[1,-4],[-5,-13]],[[56194,86220],[-3,-5],[-24,-9],[-3,-1],[-6,1],[-4,5],[0,4],[2,2],[26,7],[8,1],[4,-5]],[[56168,86229],[0,-4],[-26,-13],[-2,0],[4,11],[5,4],[2,1],[17,1]],[[55927,86230],[4,-8],[1,-7],[-1,-4],[-2,1],[-2,0],[-2,1],[1,5],[-1,1],[-2,1],[-6,-2],[-2,4],[0,4],[2,4],[1,3],[4,1],[5,-4]],[[57389,86267],[12,-9],[2,-3],[-1,-3],[-4,-4],[-17,-5],[-4,-5],[-3,-11],[-3,-1],[-3,5],[-5,10],[1,5],[13,3],[4,3],[2,4],[0,4],[1,4],[2,3],[3,0]],[[56118,87970],[2,0],[7,-12],[0,-4],[-3,-8],[-5,-3],[-5,1],[-1,2],[0,4],[-1,2],[-2,-2],[-1,-2],[0,-3],[-1,-1],[-2,-1],[-1,2],[-2,4],[1,7],[4,7],[3,2],[6,-4],[2,1],[-1,3],[-4,4],[-1,3],[1,0],[2,0],[1,-1],[1,-1]],[[56151,87928],[-3,0],[-14,6],[-1,3],[1,2],[-2,3],[-3,2],[1,3],[2,2],[2,1],[1,4],[-1,5],[-3,5],[-1,4],[2,2],[4,1],[5,3],[4,-2],[2,0],[2,-2],[3,-4],[2,-3],[2,1],[0,3],[2,1],[2,-1],[2,-1],[1,-3],[2,0],[2,1],[1,3],[1,5],[1,4],[2,4],[1,1],[2,-1],[1,-5],[0,-3],[1,-7],[2,-4],[-1,-3],[-2,-5],[-4,-8],[-3,-4],[-6,0],[-9,9],[-12,-3],[0,-1],[7,-2],[6,-3],[1,-6],[-2,-4],[-2,0],[-1,-1],[0,-2]],[[56099,87976],[-3,1],[0,2],[0,2],[1,2],[1,3],[2,3],[1,3],[2,3],[1,3],[2,2],[1,3],[3,4],[5,0],[4,-1],[4,3],[4,0],[2,-1],[1,-1],[3,-1],[2,1],[2,-1],[0,-2],[-2,-1],[-2,-1],[0,-2],[1,-3],[-2,-5],[-5,-1],[-9,5],[-4,-1],[-3,-6],[-1,-3],[-4,-5],[-5,-5],[-2,0]],[[56335,88241],[4,0],[2,-2],[-1,-2],[-1,-1],[-1,-1],[0,-4],[-1,-4],[-1,-2],[-1,-3],[-2,-6],[-2,2],[-3,2],[-2,-2],[1,-4],[-1,-4],[-3,0],[-2,-3],[-5,-1],[-6,4],[-4,5],[-3,9],[-2,2],[-1,2],[0,3],[6,4],[2,2],[2,3],[5,4],[8,4],[5,-1],[2,-4],[2,-3],[1,-1],[1,1],[1,1]],[[56249,85930],[3,-1],[1,-1],[-2,-3],[-17,-10],[-5,-2],[-3,2],[0,5],[2,3],[1,0],[2,1],[7,3],[6,1],[2,1],[3,1]],[[56000,86153],[4,1],[3,-2],[-2,-5],[-3,-5],[-1,-4],[-1,-4],[-3,0],[-1,0],[-3,0],[-4,3],[0,8],[2,9],[5,8],[5,0],[0,-5],[-2,-2],[1,-2]],[[55905,86508],[2,-1],[0,-8],[-1,-5],[-4,2],[-11,7],[-1,-1],[-1,1],[0,2],[-2,2],[-2,3],[0,2],[5,2],[4,-3],[1,-5],[1,-2],[2,1],[2,0],[1,-1],[2,0],[2,4]],[[55950,86699],[2,-2],[1,-1],[-3,1],[-9,5],[-6,-3],[-4,0],[-2,1],[1,0],[-1,2],[-1,6],[1,3],[2,1],[1,1],[0,2],[2,3],[4,4],[3,-3],[-1,-5],[1,-5],[9,-10]],[[55978,86970],[1,-3],[-1,-2],[-2,0],[-1,-2],[-1,-2],[-2,0],[-6,1],[-5,4],[0,1],[3,1],[3,6],[11,-4]],[[55891,87747],[-5,5],[-2,-2],[-5,-3],[-5,5],[-3,5],[0,3],[1,0],[2,-1],[1,-1],[1,2],[1,5],[-2,2],[-3,3],[-3,5],[0,5],[2,3],[2,2],[2,0],[1,-2],[1,-1],[7,-3],[3,-3],[3,-5],[3,-7],[1,-8],[0,-6],[-1,-2],[-2,-1]],[[79866,59178],[0,8],[-2,6],[-2,5],[-2,5],[3,8],[-1,9],[-3,9],[-1,9],[2,8],[12,23],[4,12],[0,6],[-2,5],[-17,27],[-4,4],[-3,5],[-2,7],[-2,8],[1,8],[-2,10],[0,8],[3,5],[5,1],[8,5],[5,3],[4,1],[8,-3],[4,1],[3,6],[0,7],[-2,10],[0,6],[1,5],[4,6],[2,3],[2,9],[2,11],[1,20],[1,5],[2,5],[2,-1],[1,-3],[2,1],[1,4],[2,28],[0,9],[-2,8],[-4,9],[-12,20],[-4,7],[-2,11],[0,23],[0,2],[-1,4],[-5,3],[-12,-4],[-5,7],[-2,10],[1,14],[-1,12],[-4,4],[-2,-2],[-2,0],[-1,2],[-1,5],[-1,7],[-2,0],[-1,-2],[-2,-1],[-5,3],[-2,0],[-3,-4],[-2,-5],[-2,-3],[-3,5],[-15,55],[-3,6],[-11,11],[-4,8],[-3,8],[-1,9],[-2,25],[-1,8],[-3,7],[-15,18],[-3,9],[0,12],[7,32],[3,7],[4,1],[2,-1],[3,-3],[3,-1],[2,2],[19,25],[5,4],[11,4],[4,4],[4,10],[8,28],[4,8],[3,8],[0,5],[-2,5],[-2,7],[1,10],[0,1],[0,7],[-1,3],[-5,-1],[-16,-8],[-8,-2],[-8,5],[-6,12],[-10,27],[-7,10],[-5,3],[-4,1],[-3,2],[-5,5],[-3,7],[-2,5],[-1,2],[-1,7],[-3,32],[-2,8],[-6,8],[-5,5],[-1,0],[-4,3],[-11,2],[-9,0],[-4,1],[-3,4],[0,4],[-1,13],[-2,6],[-1,3],[-7,8],[-5,8],[-3,8],[-3,16],[-1,-1],[-2,-2],[-2,-1],[-1,2],[0,3],[1,3],[1,2],[0,1],[1,20],[0,24],[-5,15],[-7,1],[-6,-21],[-1,-10],[-3,-6],[-7,-10],[-2,-5],[0,-4],[0,-5],[-1,0],[-2,-4],[-3,-3],[-2,0],[-1,3],[0,6],[-8,-2],[-6,9],[-4,16],[-4,23],[-1,7],[2,32],[-2,7],[-4,4],[-3,0],[-6,5],[-5,6],[-7,15],[-2,12],[-2,15],[0,158],[0,13],[-3,10],[-7,-15],[-7,4],[-5,2],[-5,4],[-5,5],[-2,4],[-1,5],[-1,6],[-5,19],[0,3],[2,6],[0,4],[-3,10],[-13,25],[-8,29],[-2,9],[0,6],[3,9],[0,6],[-1,3],[-4,9],[-1,4],[-1,7],[0,6],[0,5],[-4,3],[-3,0],[-2,-4],[0,-5],[-1,-5],[-5,-8],[-3,-5],[-4,1],[-6,7],[-46,81],[-24,60],[-6,12],[-18,48],[-7,14],[-9,13],[-15,13],[-3,5],[-3,10],[-3,22],[-3,10],[-6,17],[-7,28],[-11,20],[-3,20],[3,45],[-1,3],[-3,16],[-7,7],[-2,5],[-1,5],[-1,14],[-1,6],[-3,5],[-4,5],[-3,5],[-4,20],[-1,2],[-4,2],[-1,2],[0,1],[1,3],[1,3],[-1,3],[-2,16],[-1,6],[-5,7],[-5,4],[-6,1],[-5,-4],[-2,-6],[-1,-13],[-1,-4],[-3,-4],[-1,1],[0,2],[-2,3],[-5,2],[-5,4],[-4,7],[-3,8],[0,7],[1,14],[0,7],[-2,6],[-1,1],[-1,-2],[-8,-2],[-3,-1],[-3,2],[-1,4],[-3,9],[-1,4],[-14,17],[-3,8],[0,12],[2,8],[0,7],[-5,10],[-8,13],[-7,13],[-3,17],[2,24],[4,33],[3,18],[4,10],[4,1],[3,-2],[3,1],[2,10],[0,2],[0,7],[-2,5],[-6,8],[-8,27],[-3,2],[-3,-1],[-4,-1],[-3,-1],[-7,5],[-14,17],[-4,1],[-5,-2],[-6,0],[-4,2],[-3,6],[-3,15],[-7,4],[-16,-2],[-4,1],[-11,6],[-11,4],[-4,2],[-2,4],[-3,10],[-1,3],[-3,2],[-6,1],[-2,2],[-5,5],[-7,16],[-4,6],[-9,10],[-4,7],[-9,29],[-4,7],[-4,6],[-6,2],[-8,-1],[-5,2],[-4,5],[-8,25],[-4,8],[-5,4],[-4,4],[-6,4],[-4,7],[-4,8],[-4,6],[-5,3],[-8,-5],[-3,5],[0,11],[-1,12],[-3,5],[-11,16],[-31,28],[-5,3],[-6,-1],[-6,-5],[-9,12],[-7,8],[-2,3],[-1,4],[-4,14],[-4,1],[-5,0],[-3,2],[2,11],[4,5],[10,9],[4,7],[6,17],[3,5],[6,3],[6,7],[7,5],[4,1],[1,-3],[0,1],[2,8],[1,6],[1,14],[2,6],[3,3],[3,2],[2,2],[1,7],[-3,8],[-1,10],[0,10],[-2,10],[-3,5],[-9,11],[-3,8],[-6,31],[0,8],[1,9],[3,2],[3,-2],[13,-14],[6,-3],[5,2],[3,3],[2,9],[2,4],[1,3],[6,0],[12,6],[8,5],[3,-7],[10,-6],[5,-17],[13,16],[5,3],[6,-1],[3,-5],[3,-8],[3,-8],[3,-3],[7,-6],[16,-19],[4,-2],[7,1],[2,2],[4,6],[3,2],[2,-1],[5,-6],[3,0],[2,7],[9,47],[2,8],[4,8],[4,6],[4,2],[3,1],[6,3],[6,13],[7,6],[6,8],[3,19],[0,10],[0,5],[-2,3],[-5,4],[-9,1],[-1,3],[2,11],[5,14],[15,18],[6,9],[3,9],[0,5],[2,3],[5,1],[8,-2],[4,2],[3,4],[1,2],[1,8],[-1,8],[0,7],[-1,11],[-1,5],[0,4],[1,1],[4,2],[1,2],[-2,9],[-11,14],[-4,12],[0,13],[2,6],[-1,5],[-24,27],[-12,-1],[-12,-9],[-12,-5],[-9,10],[-2,8],[0,12],[1,12],[1,8],[2,3],[2,0],[3,1],[1,8],[1,6],[-1,6],[-1,7],[-1,5],[-4,6],[-10,9],[-5,6],[-6,18],[-4,4],[-40,-2],[-11,6],[-9,11],[2,11],[16,22],[6,24],[7,-11],[7,-3],[7,4],[6,10],[18,50],[2,14],[0,2],[-4,8],[-16,11],[-14,14],[-5,9],[-2,19],[-4,8],[-6,1],[-6,0],[-6,4],[-2,4],[-2,10],[-2,5],[-2,3],[-4,3],[-2,3],[-4,9],[-5,18],[-3,9],[-2,4],[-2,3],[-3,3],[-3,1],[-2,0],[-7,-4],[-1,0],[-1,3],[-3,12],[-2,5],[-2,3],[-8,5],[-3,1],[-6,1],[-3,1],[-2,2],[-4,6],[-2,2],[-10,-1],[-13,-30],[-10,-4],[-3,1],[-3,-2],[-6,-5],[-20,-13],[-2,-3],[-5,-7],[-2,-3],[-3,0],[-5,1],[-4,-2],[-2,-7],[-3,-11],[-2,-12],[-2,-9],[1,-12],[1,-6],[-1,-4],[-6,-7],[-3,-3],[-2,0],[-2,-3],[-2,-7],[1,-6],[3,-11],[0,-5],[-2,-3],[-3,-3],[-3,-3],[-3,0],[-3,1],[-1,1],[-1,3],[-6,10],[-11,24],[-5,6],[-17,7],[-3,1],[-3,1],[-2,3],[-2,3],[-3,7],[-5,20],[-3,7],[-4,3],[-2,-2],[0,-3],[-2,-4],[-6,-6],[-1,-1],[-7,-4],[-1,0],[-3,1],[-8,5],[-16,17],[-4,3],[-3,-1],[-3,-2],[-2,-1],[-3,0],[-3,2],[-4,6],[-2,2],[-3,2],[-5,1],[-3,3],[-2,2],[-4,8],[-8,20],[-5,17],[-8,38],[-7,27],[-4,10],[-7,6],[-4,-1],[-2,2],[-1,4],[-2,5],[-2,11],[-2,22],[0,1],[-3,10],[-3,3],[-3,1],[-1,1],[-2,6],[0,5],[2,12],[1,6],[-2,7],[-3,6],[-3,5],[-4,3],[-6,1],[-6,-1],[-2,2],[3,11],[5,7],[9,5],[4,7],[1,10],[0,27],[1,12],[9,30],[1,7],[-4,1],[-6,-5],[-5,-7],[-4,-4],[12,41],[6,11],[11,26],[5,11],[0,2],[0,1],[0,2],[0,2],[-3,13],[-1,14],[1,41],[-1,6],[-1,7],[-2,8],[-2,1],[-1,-3],[-20,-17],[-5,-1],[-3,7],[-1,12],[0,24],[-2,27],[-5,8],[-5,-9],[-1,-48],[-3,-19],[-7,-16],[-8,-11],[-3,-1],[-15,-1],[-1,-1],[-1,1],[-2,6],[-2,9],[-1,13],[-1,14],[2,35],[-3,24],[-9,43],[-9,14],[-12,8],[-11,11],[-3,23],[0,2],[1,2],[0,2],[1,2],[3,7],[-5,8],[-7,7],[-5,9],[-2,7],[-3,15],[-2,6],[-2,5],[-9,10],[-20,39],[-17,17],[-5,10],[-2,12],[-4,7],[-5,7],[-4,9],[0,3],[1,7],[0,4],[-1,2],[-2,4],[-1,2],[-3,19],[-2,6],[-1,8]],[[79997,63194],[-6,-6],[-6,-12],[-5,-8],[-4,10],[0,5],[1,4],[2,3],[1,2],[-1,5],[0,3],[-1,2],[0,2],[-1,9],[-3,5],[-3,3],[-5,1],[1,-4],[0,-2],[-2,-6],[-2,0],[-2,10],[-2,-5],[-2,-17],[-3,-3],[-2,4],[-1,9],[0,10],[-2,0],[-2,-4],[0,-4],[1,-2],[1,-2],[0,-8],[-2,0],[-1,8],[-2,-4],[-1,12],[-4,3],[-5,-3],[-4,-4],[0,-4],[5,0],[3,-2],[2,-5],[2,-8],[-4,3],[0,-4],[1,-8],[1,-4],[-3,0],[-2,-2],[-2,-3],[-1,-3],[2,-4],[-5,-16],[-5,0],[-2,0],[-1,-3],[-2,-5],[-4,0],[-4,3],[-2,5],[-2,0],[-1,-3],[0,-2],[0,-3],[1,-8],[-1,-4],[-4,-1],[-4,4],[0,-3],[0,-1],[1,-1],[1,-3],[0,-4],[-2,-2],[-1,-3],[1,-3],[2,-4],[-2,-1],[-4,-3],[1,-1],[1,0],[0,-1],[0,-2],[-1,1],[-5,3],[-1,-15],[-1,-7],[-3,-3],[-4,1],[-3,2],[-3,4],[-2,6],[-1,7],[0,6],[-2,5],[-3,2],[-1,-3],[2,-6],[0,-6],[-1,-5],[0,-5],[4,-3],[-3,-2],[-6,0],[-6,2],[-1,0],[-2,1],[-3,3],[-2,6],[-1,1],[-10,5],[-2,-8],[2,-4],[8,-9],[0,-3],[-6,-5],[-9,0],[-7,-4],[0,-4],[2,-4],[-1,-4],[-1,-3],[-1,-5],[-1,-22],[-1,-6],[2,-4],[2,-2],[3,-1],[2,3],[-1,-27],[-2,-14],[-4,-8],[1,-5],[0,-4],[-1,-2],[-2,-1],[1,-9],[1,-9],[1,-7],[2,-4],[0,-3],[-4,-8],[-3,-3],[-4,-2],[-6,-1],[-5,0],[-4,-3],[-4,3],[-5,-1],[-6,-3],[-4,-3],[2,-2],[0,-1],[2,-1],[2,0],[0,-4],[-5,-2],[-6,-14],[1,-9],[-4,0],[-3,-2],[-3,-1],[-3,3],[0,-4],[-4,8],[-14,4],[-5,5],[0,3],[8,21],[15,20],[0,4],[-4,0],[-3,-2],[-4,-2],[-2,-3],[-2,-4],[0,-4],[-1,-4],[-2,-1],[-1,2],[0,4],[1,4],[1,3],[-2,1],[0,1],[0,1],[-2,-10],[-3,-4],[-2,2],[1,12],[-2,0],[0,-6],[0,-6],[-1,-4],[-1,-4],[0,8],[0,7],[-2,4],[-3,1],[0,-3],[1,-2],[1,-4],[1,-3],[-1,0],[-2,0],[3,-8],[-4,0],[-2,3],[-5,9],[-1,-8],[7,-12],[2,-8],[-3,-9],[-4,-4],[-6,0],[-5,0],[-4,2],[-4,3],[-4,4],[-3,4],[-7,12],[-3,2],[-1,-6],[-1,3],[-1,1],[-2,0],[8,-19],[3,-6],[6,-6],[2,-2],[1,-4],[0,-5],[2,-4],[3,-3],[0,-4],[-8,0],[-4,3],[-3,6],[-2,11],[-2,0],[0,-5],[1,-4],[1,-4],[1,-3],[-5,-16],[-2,4],[-3,12],[-5,8],[1,3],[0,1],[-1,4],[-2,0],[-5,-3],[-7,6],[-3,9],[5,4],[5,1],[3,2],[1,4],[-1,6],[-2,3],[-2,2],[-1,4],[3,7],[-2,4],[-2,3],[-2,1],[-3,1],[1,-3],[0,-4],[1,-2],[-7,1],[-4,6],[-4,3],[-6,-6],[0,-4],[2,0],[0,-4],[-10,8],[-6,3],[-5,-3],[2,-1],[1,0],[8,-7],[0,-4],[-1,1],[-6,3],[0,-4],[3,-5],[1,-7],[0,-6],[2,-6],[2,-4],[7,-1],[6,-5],[4,0],[2,-2],[1,-11],[0,-7],[-3,-8],[-1,-7],[-1,0],[-6,12],[-5,-12],[2,-7],[6,-6],[4,-7],[3,-14],[-1,-13],[-4,-5],[-5,7],[2,-10],[4,-12],[5,-11],[4,-7],[2,4],[3,-9],[5,-32],[-6,9],[-3,5],[-1,4],[-1,3],[-3,-2],[-3,-4],[-1,-3],[-3,-1],[-2,-1],[-2,-2],[-4,0],[-8,5],[-3,-1],[0,-4],[7,-6],[4,-5],[0,-7],[-6,-10],[-3,-4],[-5,-3],[-4,-2],[-5,1],[-2,3],[-4,12],[-3,5],[1,-9],[1,-1],[1,-5],[4,-10],[2,-2],[1,0],[1,-1],[0,-6],[0,-4],[-1,-3],[-1,-2],[-4,-4],[-7,-11],[-17,-15],[5,-5],[4,0],[8,9],[0,-4],[-4,-9],[2,-9],[3,-8],[-1,-11],[-2,0],[-8,-6],[-1,-1],[-1,-2],[-2,-5],[-2,-5],[-1,-5],[1,0],[4,5],[7,5],[6,2],[3,-6],[-1,-25],[-2,-14],[-3,-8],[-2,6],[0,3],[0,-3],[0,-1],[-1,-1],[-1,1],[5,-10],[1,-6],[1,-7],[0,-9],[1,-11],[1,-17],[-3,-7],[-6,14],[-3,7],[-3,6],[-4,3],[-5,-3],[-2,0],[1,-5],[1,-2],[2,-2],[2,3],[1,6],[7,-10],[1,-3],[1,-6],[3,-9],[2,-9],[-1,-9],[-4,-4],[-4,1],[-3,-2],[-7,-4],[-9,-1],[-4,-2],[-18,-4],[0,4],[2,0],[0,4],[-2,0],[-1,-1],[-3,-3],[0,-4],[2,-4],[-1,-3],[-6,-5],[-2,-4],[-4,-16],[-9,-25],[-7,-8],[-6,-20],[-7,-8],[-6,-15],[-5,-5],[3,13],[1,3],[-2,4],[-2,-8],[-3,-18],[-2,-7],[-5,-4],[-10,-6],[-5,-6],[-1,9],[1,10],[1,10],[1,12],[-2,0],[0,-10],[-5,-26],[-1,-5],[-4,2],[-5,6],[-3,6],[-2,6],[-2,0],[-2,-7],[-3,-8],[-12,-22],[-3,-6],[-1,-9],[0,-6],[2,-9],[0,-6],[-6,-16],[-1,-9],[0,-16],[-1,-7],[-1,2],[-3,6],[-2,-6],[-4,-6],[-7,-8],[2,-5],[3,4],[8,1],[4,4],[-2,-8],[-5,-14],[-1,-9],[-1,-4],[-4,0],[-4,0],[-2,-8],[-1,-10],[-7,-19],[-2,-10],[0,-9],[0,-17],[-2,-6],[0,13],[-4,2],[-3,-6],[0,-9],[1,4],[2,5],[1,3],[1,-5],[1,-6],[0,-6],[0,-3],[1,0],[0,-22],[-3,-45],[2,-23],[-4,5],[-4,-16],[-4,3],[0,-3],[3,-6],[1,-6],[2,-17],[5,-20],[1,-8],[-6,8],[0,-6],[2,-7],[2,2],[1,-2],[0,-11],[-1,-4],[0,-1],[-3,-3],[-2,0],[-2,-1],[-3,-17],[-3,-1],[-4,1],[-1,-3],[-3,-36],[0,-22],[2,-15],[-7,-7],[-3,-4],[-2,-5],[-7,5],[-7,-15],[-6,-21],[-2,-18],[-1,-8],[2,-5],[0,-5],[1,-8],[2,-19],[1,-8],[4,-10],[6,-10],[7,-9],[6,-3],[0,-4],[-4,-8],[-1,5],[-2,4],[-2,2],[-3,1],[3,-14],[1,-3],[2,-1],[5,1],[2,-2],[6,-13],[3,-9],[1,-8],[-4,-25],[1,-4],[3,-4],[0,-12],[0,-12],[-2,-8],[6,5],[0,14],[-1,36],[-1,2],[6,-7],[1,-17],[1,-17],[1,-8],[2,-6],[6,-43],[15,-49],[10,-22],[10,-2],[0,-11],[2,-11],[3,-11],[2,-7],[7,-10],[2,-4],[10,-28],[15,-25],[3,-8],[1,-8],[-5,-2],[2,-5],[5,2],[6,5],[7,2],[4,-4],[15,-23],[1,-2],[6,-4],[3,-4],[8,-20],[9,-14],[4,-8],[2,-11],[-2,0],[-3,4],[-3,-2],[-4,-4],[-1,-6],[3,-4],[2,2],[1,1],[3,1],[-1,-7],[0,-6],[3,-11],[0,7],[1,7],[1,6],[2,4],[3,3],[1,-1],[2,-2],[3,0],[3,3],[5,14],[3,-3],[0,-6],[-3,-12],[1,-12],[4,-13],[22,-56],[1,-4],[0,-4],[-5,-8],[-6,-9],[-3,-7],[-2,-7],[-3,-5],[-5,0],[0,-5],[3,-1],[1,-4],[0,-5],[-2,-6],[2,-11],[3,-17],[2,-31],[2,-6],[5,-11],[1,-5],[-2,-5],[-3,1],[-9,7],[-3,14],[-3,3],[-4,2],[-10,11],[-19,3],[-4,4],[-2,-3],[4,-6],[6,-5],[7,-4],[9,-2],[14,-8],[0,-4],[-2,0],[-6,5],[-5,-8],[-1,-12],[8,-9],[-1,7],[-1,2],[-2,3],[7,6],[9,-3],[9,-7],[6,-8],[3,-8],[6,-25],[8,-18],[13,-46],[4,-19],[2,-10],[1,-1],[5,-9],[1,-2],[1,-2],[4,-10],[24,-56],[51,-77],[17,-26],[28,-43],[5,-17],[-2,-25],[3,-5],[15,-45],[4,-4],[1,-5],[-1,-2],[-2,-2],[-2,-3],[-1,-5],[-1,-2],[-10,-12],[0,-4],[7,0],[3,1],[3,3],[1,3],[-1,4],[0,4],[5,7],[3,2],[1,-4],[2,-6],[2,-2],[4,-5],[36,-63],[9,-14],[24,-36],[29,-55],[9,-5],[0,-5],[-11,7],[-34,37],[-8,-3],[21,-25],[7,-3],[3,-3],[2,-8],[3,-1],[3,1],[2,3],[3,-6],[2,-5],[7,-6],[0,-4],[-3,3],[-1,1],[-2,0],[0,-2],[-1,-2],[-1,-4],[4,0],[4,0],[8,4],[-2,-4],[-1,-4],[-1,-4],[0,-6],[1,1],[2,-6],[1,-7],[0,-2],[2,0],[2,2],[1,4],[1,4],[3,3],[2,-3],[1,-6],[1,-4],[11,-15],[2,-6],[7,-21],[5,-7],[6,-16],[5,-5],[-1,-2],[-1,-1],[-2,-1],[-2,2],[-1,3],[-2,2],[-3,2],[-1,-5],[4,-34],[1,-5],[3,-5],[7,-8],[2,0],[2,3],[3,-1],[2,-4],[0,-6],[3,3],[1,-3],[11,16],[1,4],[-2,18],[0,6],[4,2],[13,-19],[6,-3],[2,4],[1,5],[2,5],[3,2],[0,-4],[3,-20],[2,-10],[9,-31],[-7,12],[-4,3],[-2,-8],[2,-7],[5,-4],[5,-2],[3,2],[2,0],[5,-4],[7,-3],[8,-2],[7,1],[-1,-3],[-3,-7],[-10,-17],[-3,-13],[0,-17],[5,-9],[6,-8],[4,-11],[4,9],[3,2],[2,-1],[2,-20],[0,-2],[-1,-9],[-3,-8],[-3,-7],[-4,-5],[5,4],[5,6],[5,2],[2,-8],[-3,31],[-2,8],[0,9],[2,10],[0,9],[-6,2],[0,5],[2,3],[1,4],[2,4],[0,5],[2,-2],[1,-1],[1,3],[2,0],[2,-5],[4,-5],[4,-4],[4,-2],[1,3],[1,5],[2,4],[1,-2],[1,-2],[3,-8],[-3,-6],[-3,-3],[-3,-5],[-1,-7],[-2,5],[-7,-3],[-4,3],[-2,-22],[2,-23],[4,-21],[1,-4],[3,-12],[3,-8],[15,-24],[4,-4],[4,-6],[2,-10],[-3,-2],[-2,-2],[-1,-3],[2,-2],[2,2],[2,4],[2,3],[2,0],[1,-8],[3,-37],[9,-35],[45,-129],[8,-9],[10,3],[-2,-17],[-2,-4],[-4,8],[-3,-2],[-4,-4],[-2,-7],[2,-11],[6,-10],[5,5],[6,25],[2,0],[1,-12],[1,-14],[1,-5],[7,-12],[1,-4],[2,-2],[5,-6],[1,-2],[2,-4],[0,-7],[0,-7],[0,-7],[2,-7],[-1,-3],[-1,-2],[0,-3],[2,0],[0,3],[2,9],[2,-1],[2,0],[5,1],[0,4],[-7,2],[-2,10],[2,13],[5,7],[0,5],[-1,1],[-1,2],[-2,5],[3,-2],[2,-1],[1,0],[2,3],[2,-9],[1,-23],[2,-5],[2,-2],[7,-11],[1,-5],[0,-22],[1,-8],[8,-13],[3,-4],[2,-2],[4,0],[2,-2],[-3,-8],[-3,-6],[-3,-3],[-5,1],[0,-5],[3,1],[2,-1],[1,-2],[0,-6],[-4,5],[-1,-7],[-1,-17],[-1,-9],[-5,4],[-4,-1],[-1,-4],[2,-7],[2,0],[2,2],[2,-1],[1,-5],[1,-8],[1,0],[0,5],[1,3],[1,8],[3,-53],[6,-46],[18,-84],[-6,-1],[1,-3],[6,-6],[2,-5],[5,-17],[2,-4],[10,-28],[2,-9],[2,-28],[-2,2],[-2,4],[-1,5],[0,-8],[2,-39],[1,-6],[0,-4],[0,-3],[-3,1],[-1,-7],[-2,-3],[-1,-3],[2,-8],[1,12],[1,4],[9,-53],[5,-14],[1,-8],[0,-32],[0,-8],[2,-10],[4,-17],[8,-20],[3,-8],[1,-8],[2,-25],[-3,-9],[4,-20],[9,-32],[-5,2],[-2,5],[-1,8],[-3,6],[-7,3],[0,-10],[3,-12],[9,-10],[3,-9],[7,-42],[4,-66],[2,-9],[8,-12],[1,-6],[-2,-46],[1,-23],[-2,-2],[-7,0],[-1,6],[2,35],[-4,29],[-2,10],[-4,-7],[0,-6],[-2,-22],[-2,-11],[-1,-4],[3,3],[3,-14],[1,-5],[4,-1],[-3,-7],[-4,-6],[-2,-7],[-1,-13],[4,-13],[0,-1],[0,-4],[0,-16],[1,-12],[2,-13],[2,-10],[4,-4],[0,-3],[3,-5],[4,-4],[1,0],[1,-6],[0,-4],[-1,-2],[-3,0],[0,-4],[1,-3],[0,-2],[1,-7],[-3,5],[-6,22],[-3,15],[-7,18],[-2,9],[-2,0],[-1,-10],[2,-4],[2,-3],[2,-4],[2,-6],[1,-12],[1,-6],[4,-7],[2,-3],[0,-4],[-1,-2],[-1,0],[2,-6],[6,-15],[2,0],[1,3],[1,2],[3,3],[-1,-6],[-2,-7],[-1,-5],[1,-7],[3,-5],[3,-1],[3,3],[1,-6],[-2,-8],[1,-6],[-3,-11],[-2,-6],[-3,-4],[-2,7],[-6,2],[-1,6],[1,4],[3,2],[3,4],[0,8],[-1,4],[-9,12],[-3,0],[-2,-2],[-2,-5],[-2,-9],[2,-5],[-1,-5],[0,-5],[3,-6],[-2,-4],[-1,-6],[-1,-10],[5,-5],[5,-13],[4,-6],[3,6],[2,1],[2,-7],[1,-6],[-1,-5],[-2,-2],[-3,1],[0,-4],[1,-3],[1,-3],[0,-5],[0,-5],[-2,2],[-3,3],[-1,2],[-1,-5],[-1,0],[-2,-2],[4,-21],[2,-8],[4,-8],[-1,18],[1,8],[3,3],[0,3],[-1,5],[0,3],[2,0],[1,-3],[1,-5],[1,-6],[0,-12],[0,-5],[-4,-13],[0,-6],[2,-12],[0,-10],[-2,-9],[-1,-9],[1,-11],[3,-8],[2,-7],[2,-8],[-1,-5],[4,-5],[2,-5],[6,-22],[7,-17],[6,-18],[11,-29],[2,-6],[1,-9],[0,-11],[-1,-10],[-2,-6],[-1,-1],[-5,-3],[-1,0],[-1,4],[1,3],[2,2],[1,2],[1,3],[1,2],[0,2],[-3,2],[-6,-9],[-1,-3],[-2,-9],[-1,-3],[-2,-2],[-3,-1],[-2,-1],[-3,-4],[2,-5],[1,-7],[-1,-9],[0,-8],[13,-50],[4,-10],[4,-1],[5,-8],[1,-2],[0,-5],[-2,-1],[-2,-1],[-2,-3],[0,-9],[1,-24],[-1,-8],[-3,-3],[-3,6],[-3,18],[-1,3],[-1,1],[-1,3],[-1,7],[1,1],[5,9],[0,4],[-6,20],[0,-5],[-2,-3],[-2,-1],[-4,1],[2,-5],[0,-5],[0,-5],[-2,-5],[-1,6],[-2,4],[-3,2],[-3,0],[5,15],[1,3],[1,2],[2,2],[3,3],[1,6],[-1,9],[-5,14],[-1,7],[0,18],[-1,2],[-3,-1],[-1,-4],[-1,-4],[-1,-5],[-10,-13],[-2,-5],[-7,-18],[-4,-8],[-4,-3],[-2,-4],[-8,-24],[0,-6],[1,-23],[-2,-4],[0,-9],[1,-9],[0,-6],[1,0],[1,-1],[0,-3],[2,0],[1,6],[0,7],[1,5],[3,2],[0,4],[-2,0],[0,4],[5,-3],[0,-8],[-3,-10],[-2,-9],[2,-10],[3,-8],[14,-19],[1,-5],[-3,-12],[1,-6],[1,-5],[1,-2],[5,-3],[4,-7],[3,-8],[-3,-6],[2,-4],[-2,-4],[-3,8],[-2,-6],[-2,-10],[-3,-5],[-5,3],[-2,7],[-4,15],[-12,28],[-9,11],[-8,-3],[2,-3],[1,-6],[1,-3],[-3,3],[-1,1],[-1,0],[1,-8],[4,-10],[2,-6],[6,2],[2,-9],[1,-15],[1,-13],[0,-5],[2,-6],[3,-5],[3,-5],[0,-5],[-1,-3],[-4,3],[-1,0],[-1,-4],[-3,-16],[-6,6],[-2,2],[2,-5],[2,-5],[6,-7],[-2,-9],[1,-6],[2,-7],[2,-6],[-7,4],[-3,-1],[-1,-7],[2,4],[4,-4],[1,-5],[1,-7],[0,-4],[0,-2],[0,-3],[3,-5],[1,-7],[-1,-5],[-3,-7],[-1,-5],[1,-24],[2,-11],[8,-31],[3,-7],[8,-11],[0,-4],[-1,-10],[0,-2],[-5,-8],[0,-10],[1,-9],[3,-6],[4,-4],[0,-4],[-5,-4],[-4,1],[-4,4],[-3,7],[-1,-1],[-2,-1],[-1,-2],[-2,18],[2,43],[-3,21],[2,0],[-7,35],[-2,25],[-3,7],[-4,-10],[4,-14],[1,-3],[1,-2],[-2,-16],[2,-6],[6,-13],[2,-9],[-1,-18],[-3,-16],[-5,-16],[-7,-14],[-5,-1],[-3,-20],[2,-19],[8,-4],[2,5],[4,12],[4,10],[2,-1],[-1,-8],[-2,-8],[0,-8],[3,-10],[0,-13],[0,-2],[10,-29],[-3,-13],[-2,4],[-2,-4],[-2,-12],[-5,-13],[-1,-5],[0,-6],[-1,-9],[-1,-4],[-5,-9],[-2,-5],[0,-6],[-2,-7],[-3,-9],[-2,0],[-3,6],[-5,0],[-4,-1],[-5,3],[-4,7],[-2,21],[-1,4],[-6,-3],[0,-8],[3,-7],[2,-4],[0,-8],[-1,-8],[-1,-9],[2,-9],[-6,-1],[-2,1],[5,-16],[0,-25],[-3,-40],[1,-23],[-1,-7],[-3,-7],[-7,-12],[-4,-6],[-4,-2],[-6,0],[-12,12],[-4,2],[-5,0],[-5,-2],[-5,-4],[-9,-14],[-3,-7],[-3,-8],[-2,-10],[-4,-30],[-2,-11],[-2,-4],[-4,-2],[-4,0],[-3,1],[-6,6],[-4,1],[-2,-1],[-6,-5],[-3,-2],[-10,0],[-2,-2],[-3,-8],[-8,-5],[-5,-9],[-4,-10],[-2,-10],[-3,-24],[-3,-6],[-7,-3],[-2,-1],[-10,-11],[-3,-1],[-4,0],[-2,-2],[-2,-8],[-4,-27],[-1,-6],[-5,-2],[-3,-4],[-4,-19],[-2,0],[-3,18],[-7,5],[-34,-14],[-8,-5],[-4,-10],[-1,-6],[-7,-14],[-1,-8],[-1,-7],[-4,-17],[-2,-25],[-10,-43],[-2,0],[-3,4],[-12,7],[-5,2],[-6,-1],[-4,-2],[-17,-14],[-11,-21],[-4,-4],[-10,-7],[-19,-21],[-6,-1],[-6,-5],[-10,-12],[-1,-1],[-3,-5],[-7,-16],[-2,-6],[-2,-7],[-6,-7],[-17,-17],[-5,-3],[-13,-3],[-11,-7],[-3,1],[-2,-6],[-8,-16],[-7,-22],[-5,0],[-10,14],[-8,2],[2,5],[2,2],[2,1],[2,4],[0,5],[-2,5],[-2,5],[-1,1],[-1,2],[-6,13],[-1,-1],[-3,0],[-3,1],[-2,2],[0,-9],[-2,0],[-3,8],[-6,6],[-6,1],[-4,-6],[-2,0],[1,5],[0,3],[-1,8],[-3,-12],[-2,-5],[-3,-3],[-1,11],[0,5],[-5,-5],[-2,-3],[-1,-4],[-2,0],[1,9],[3,5],[2,2],[1,1],[3,3],[2,6],[0,6],[-1,43],[-1,3],[-3,9],[-1,6],[0,-2],[4,-2],[-1,2],[0,12],[-3,10],[-8,16],[-1,-9],[3,-6],[4,-6],[2,-5],[-3,-15],[0,-8],[4,-3],[2,-5],[0,-9],[-3,-15],[0,-4],[2,-3],[2,-4],[0,-5],[-2,-1],[-3,3],[-3,6],[2,4],[-4,9],[0,3],[1,5],[1,8],[0,16],[-2,0],[-2,-17],[0,-17],[2,-16],[6,-11],[-3,-3],[-2,-2],[-6,-23],[-3,-5],[-1,3],[0,5],[1,7],[0,6],[-1,6],[-1,3],[-2,2],[-1,5],[-2,12],[0,10],[2,21],[-15,26],[-2,4],[-4,-4],[-6,-6],[-5,-3],[-3,7],[-1,6],[-4,9],[-2,4],[-2,4],[-4,3],[-1,-1],[-6,-6],[-1,-3],[-2,-6],[2,-4],[3,-3],[1,-3],[1,-6],[3,-17],[-1,-6],[-1,-4],[-2,-2],[-1,-4],[-2,-9],[-1,-5],[-1,-7],[-2,-11],[-3,-4],[-9,-7],[-5,0],[-2,11],[-2,0],[1,-9],[1,-3],[1,-4],[-3,-2],[-3,-3],[-2,-5],[-2,-12],[-3,-3],[-4,-3],[-3,-5],[0,10],[-1,7],[-1,6],[-2,6],[0,-21],[2,-8],[3,-4],[5,2],[4,6],[3,8],[2,9],[2,0],[1,-9],[1,-9],[2,-7],[5,0],[3,5],[4,16],[3,4],[4,-4],[3,-9],[3,-10],[2,-8],[4,-9],[2,-8],[2,-51],[-2,-13],[-4,-6],[-5,1],[-15,7],[-29,0],[-20,8],[-11,0],[-5,3],[-5,5],[-4,3],[-4,-2],[16,-22],[67,-48],[1,-2],[5,-8],[2,-2],[1,-1],[1,-3],[2,-3],[3,-1],[3,-1],[2,-1],[1,-3],[1,-5],[-1,-14],[-2,-9],[-15,-33],[-4,-6],[-5,3],[2,4],[0,6],[-1,5],[-1,5],[-2,0],[-1,-10],[-1,-2],[-3,-8],[-2,-5],[-1,-5],[1,-2],[2,-5],[2,-5],[-2,-2],[-4,-2],[-1,-2],[0,-4],[-2,-6],[0,-4],[-1,-2],[-1,-1],[-11,1],[-4,3],[-4,7],[-4,7],[-4,7],[-14,12],[-8,14],[-7,18],[-23,78],[-8,17],[-11,7],[1,-4],[2,-1],[1,-1],[9,-14],[3,-8],[2,-23],[3,-12],[26,-71],[6,-12],[22,-22],[14,-23],[16,-18],[4,-2],[3,-5],[-1,-12],[-3,-13],[-4,-7],[0,4],[2,4],[1,6],[-1,5],[-2,5],[-1,0],[-2,-21],[-5,-13],[-8,-6],[-6,4],[-7,11],[-16,38],[-7,11],[-24,30],[-69,150],[-2,4],[-3,3],[-2,0],[-1,-1],[-1,-2],[1,-3],[3,-3],[2,-3],[7,-14],[2,-9],[2,-20],[2,-8],[3,-8],[6,-12],[9,-13],[10,-16],[3,-5],[1,-5],[3,-10],[1,-5],[15,-29],[1,-2],[6,-14],[24,-42],[7,-16],[5,-20],[2,-23],[3,-7],[7,-2],[3,-5],[2,-11],[0,-12],[-1,-30],[-4,-21],[-5,-17],[-7,-13],[-6,-8],[-4,-1],[-3,2],[-2,2],[-3,-2],[-4,-6],[-12,1],[-3,3],[-14,22],[-24,27],[-51,103],[-27,69],[-10,20],[-8,13],[-10,5],[-8,12],[-6,2],[6,-17],[17,-38],[48,-99],[2,-11],[1,-10],[2,-12],[29,-90],[2,-8],[1,-10],[1,-24],[-1,-8],[-10,-23],[2,-6],[3,-2],[2,-3],[0,-9],[-1,-9],[-2,-4],[-8,-3],[-38,-25],[-42,-36],[-30,-25],[-61,-49],[-7,-12],[-13,-28],[-7,-12],[-3,-8],[-1,-10],[-1,-2],[-3,-2],[-2,-2],[0,-3],[0,-6],[0,-3],[-20,-83],[-6,-17],[-6,-14],[-9,-16],[-12,-4],[-9,-8],[-8,-21],[-8,-27],[-7,-15],[-18,-11],[-50,-30],[-7,2],[-1,3],[-2,2],[-2,3],[-17,5],[-7,5],[-1,2],[-1,7],[2,1],[4,-2],[5,2],[14,19],[3,4],[2,1],[2,3],[1,6],[-1,6],[-3,3],[-1,3],[3,4],[4,0],[18,-8],[4,2],[5,5],[4,6],[2,7],[-7,-6],[-9,-5],[-9,-1],[-6,8],[-1,7],[1,3],[3,2],[5,1],[6,0],[2,1],[5,7],[0,4],[-3,10],[0,12],[1,11],[-18,-17],[-11,-6],[-7,8],[-5,20],[3,22],[3,21],[5,27],[-1,23],[-1,42],[1,51],[3,36],[1,87],[1,36],[1,67],[1,25],[6,108],[4,32],[6,35],[13,-1],[9,2],[1,11],[5,10],[17,26],[6,6],[3,-4],[1,-10],[6,-37],[0,8],[-1,23],[0,26],[-2,12],[-4,14],[-12,34],[-11,22],[-6,7],[-5,2],[-11,-6],[-7,0],[-9,12],[-6,18],[-6,20],[-5,15],[-9,12],[-10,3],[-8,-6],[-8,-13],[-1,-6],[0,-5],[0,-4],[-3,-1],[-2,-3],[-1,-11],[-1,-3],[-10,2],[-1,-2],[-1,6],[0,4],[2,4],[-1,7],[-1,4],[-3,9],[-1,5],[0,16],[-1,14],[-3,9],[-8,12],[-1,-4],[0,-1],[0,-3],[-3,0],[0,16],[-3,12],[-6,16],[-1,8],[1,2],[2,0],[2,3],[2,7],[1,5],[0,6],[-1,6],[-2,0],[-2,-9],[-3,-7],[-4,-5],[-4,-3],[-5,1],[0,6],[1,10],[-2,7]],[[79013,56640],[6,-2],[3,1],[3,6],[12,36],[2,9],[3,9],[4,6],[4,2],[12,1],[21,-6],[6,-1],[14,-4],[13,1],[9,8],[7,15],[12,37],[3,7],[3,7],[28,29],[6,14],[0,19],[-10,38],[-4,23],[-1,20],[2,10],[3,8],[3,5],[1,2],[3,6],[7,7],[1,-3],[1,-8],[3,-9],[4,-3],[27,-10],[12,-5],[5,-6],[9,-17],[4,-3],[3,5],[8,36],[11,27],[4,5],[1,-1],[8,-5],[6,-6],[2,-1],[14,6],[26,12],[4,2],[7,6],[5,7],[7,8],[8,5],[7,-2],[5,-11],[5,-18],[9,-28],[2,-9],[3,-20],[2,-9],[4,-9],[5,-7],[6,0],[2,6],[4,12],[2,13],[1,10],[9,-16],[2,-7],[6,-12],[7,-11],[7,-8],[8,-5],[15,-4],[8,-3],[6,-11],[-7,57],[-7,27],[-2,10],[1,1],[0,15],[0,2],[1,6],[1,2],[5,1],[6,0],[3,-1],[2,4],[-3,12],[-5,34],[-3,10],[-5,8],[-5,2],[-4,-6],[-3,-13],[-3,13],[-4,9],[-10,18],[-4,10],[-6,22],[-5,8],[-14,7],[-6,9],[-3,17],[-1,13],[-3,4],[-5,3],[-4,6],[0,8],[5,45],[3,20],[1,9],[-1,9],[-4,31],[0,15],[0,8],[-1,7],[-3,5],[-8,3],[-3,3],[-3,10],[-1,3],[1,12],[3,10],[4,8],[1,2],[5,10],[5,2],[13,-10],[8,-1],[4,8],[2,13],[8,17],[2,7],[0,8],[0,8],[7,14],[13,-4],[14,-10],[12,0],[19,-13],[5,-6],[2,-5],[4,-13],[3,-4],[3,-1],[16,8],[3,1],[3,-1],[4,-3],[6,-9],[3,-4],[4,0],[2,9],[0,1],[-2,13],[-8,27],[0,9],[2,9],[2,7],[2,9],[0,5],[0,11],[1,4],[4,14],[1,2],[-2,14],[-8,32],[-3,14],[0,2],[7,4],[3,1],[3,-2],[3,-3],[1,-6],[2,-4],[3,0],[9,12],[13,0],[24,-7],[-2,9],[14,-6],[6,3],[5,15],[3,19],[5,14],[6,8],[5,1],[4,1],[21,-4],[10,3],[10,8],[7,10],[19,40],[9,22],[7,11],[4,7],[2,8],[8,18],[16,17],[5,3],[13,9],[12,2],[7,-8],[8,-27],[6,-10],[6,1],[9,26],[7,10],[7,6],[4,11],[2,13],[2,15],[8,48],[0,14],[-2,8],[1,6],[1,7],[2,7],[1,18],[-1,19],[-7,66],[0,17],[0,16],[-1,16],[-3,16],[-8,19],[-2,7],[-1,9],[-1,18],[-3,15],[-1,6],[0,7],[2,5],[1,3],[1,3],[0,4],[-1,4],[-4,7],[-1,8],[28,143],[4,18],[9,45],[1,19],[-2,58],[-2,21],[-23,94],[-5,14],[-6,15],[-1,2],[-2,9],[-5,13],[-2,9],[0,7],[2,12],[0,6],[-3,18],[2,9],[1,7],[1,7],[-1,7],[0,3],[-4,18],[0,5],[0,6],[0,5],[-2,6],[-4,4],[-10,-3],[-5,4],[-3,11],[0,12],[1,12],[-1,12],[-3,10],[-3,6],[-1,7],[2,14],[9,56],[1,21],[0,5],[0,6],[-3,12],[0,5],[0,12],[2,11],[6,21],[1,5],[0,6],[1,5],[2,4],[4,2],[1,-2],[1,-4],[2,-2],[6,3],[3,6],[3,9],[3,15],[1,8],[0,4],[1,8],[4,12],[2,7],[0,9],[-1,18],[0,9],[7,30],[1,15],[-3,16]],[[79502,56167],[4,-7],[15,-8],[4,-5],[-1,-15],[-1,-10],[-4,-6],[-8,0],[0,4],[2,11],[-4,13],[-6,11],[-5,6],[-2,-4],[4,-11],[5,-7],[2,-5],[-6,-1],[-3,5],[-9,31],[-7,18],[-3,11],[-2,10],[-1,13],[-2,9],[-6,17],[2,3],[0,-3],[1,-2],[2,-3],[14,-40],[13,-28],[2,-7]],[[79645,56551],[6,-3],[3,-4],[0,-7],[-1,-5],[-4,-4],[-4,-2],[-2,3],[-2,7],[-6,5],[-36,14],[-13,12],[4,1],[9,-9],[8,-3],[32,-1],[6,-4]],[[79769,56667],[9,-16],[2,-7],[-1,1],[-1,1],[-1,0],[-1,2],[-2,0],[0,-7],[-2,-3],[-2,-3],[-3,-12],[-2,-3],[-6,-4],[-4,-7],[-6,-19],[-3,-7],[-4,29],[1,11],[12,6],[8,10],[2,3],[0,6],[1,8],[1,7],[2,4]],[[79704,56652],[6,-8],[3,-6],[2,-6],[-13,-7],[-6,-5],[-4,-8],[-2,0],[0,10],[-1,8],[-2,7],[0,7],[0,11],[5,12],[0,10],[-2,0],[0,-9],[-2,14],[2,9],[6,5],[5,4],[6,-8],[-1,-18],[-6,-30],[2,0],[2,8]],[[79696,56707],[-1,-6],[-4,2],[-4,6],[-2,4],[-1,2],[-3,9],[0,1],[0,5],[3,5],[1,4],[1,13],[-1,5],[-4,5],[0,4],[3,1],[3,1],[3,0],[1,-5],[6,-9],[2,-5],[1,-1],[1,-1],[1,-1],[0,-5],[-1,-2],[-1,-2],[0,-2],[0,-6],[2,-7],[0,-5],[-2,-4],[-2,2],[-1,6],[-3,12],[-2,0],[1,-7],[3,-11],[0,-8]],[[80368,57707],[2,-2],[2,-2],[1,-4],[1,-4],[-1,-2],[-3,-4],[-2,-2],[-1,4],[-2,2],[-2,0],[-3,-2],[1,-1],[1,0],[0,-3],[-5,1],[-5,6],[-4,7],[-3,6],[0,4],[2,-1],[4,-1],[2,-2],[0,2],[0,7],[5,-5],[10,-4]],[[79628,55646],[-7,-2],[0,-6],[3,-9],[2,-8],[-4,3],[-3,0],[-2,-2],[-4,-1],[-2,-2],[-1,-6],[1,-7],[-1,-5],[1,-3],[0,-2],[-1,-2],[-4,-1],[-2,3],[-4,12],[-1,3],[3,14],[8,16],[9,13],[8,7],[1,-1],[1,-1],[0,-2],[0,-3],[0,-1],[-3,1],[1,-4],[0,-2],[1,-2]],[[79582,56327],[9,-19],[4,-12],[-3,-5],[-4,5],[-6,22],[-8,9],[-13,25],[0,4],[1,-2],[5,-2],[12,-18],[3,-7]],[[78911,56612],[1,-11],[0,-62],[-11,-58],[-4,-32],[5,-16],[-2,-13],[0,-7],[1,-6],[1,-10],[-4,5],[-1,3],[-6,5],[-4,26],[-3,50],[-8,44],[-5,19],[-8,14],[-11,11],[-4,8],[-2,23],[-1,7],[2,1],[17,-5],[6,1],[2,5],[1,3],[3,9],[1,2],[2,2],[1,6],[1,7],[1,5],[1,6],[3,4],[3,1],[4,-7],[-2,4],[20,-44]],[[79687,56664],[-5,3],[-4,3],[-3,2],[-4,-4],[2,-1],[0,-1],[1,1],[1,1],[4,-8],[3,-12],[0,-12],[-5,-4],[-7,5],[-6,14],[-6,16],[-4,14],[-1,9],[0,7],[1,16],[0,1],[-1,4],[0,9],[0,2],[5,2],[2,2],[2,15],[-2,14],[-7,24],[6,0],[2,-2],[3,-5],[2,-8],[2,-4],[8,-4],[3,-8],[2,-9],[0,-8],[-2,-4],[-1,-4],[-1,-7],[1,-2],[3,-10],[1,-2],[3,-4],[1,-8],[-2,-7],[-7,-1],[0,-4],[4,-1],[3,-4],[3,-12],[0,-4]],[[79744,62788],[1,-2],[1,-2],[2,-4],[-4,1],[-2,4],[-2,11],[-1,-5],[0,-4],[1,-4],[2,-3],[0,-4],[-4,-3],[-3,0],[-2,3],[-3,4],[2,-12],[8,-10],[2,-10],[-2,0],[0,4],[-2,0],[-1,-11],[-3,-10],[0,13],[-2,-2],[-1,-1],[-1,-2],[0,5],[-1,-5],[-2,3],[-1,2],[0,4],[6,0],[0,4],[-1,1],[0,1],[-1,2],[-1,0],[0,-4],[-3,0],[0,2],[-2,3],[-1,3],[-2,0],[1,-6],[1,-2],[0,-4],[-6,7],[-6,18],[-3,7],[-8,10],[-4,9],[1,11],[7,4],[2,3],[1,4],[0,4],[0,4],[3,4],[-2,-4],[3,-8],[9,-3],[3,-5],[2,0],[0,10],[3,2],[3,-3],[3,-5],[0,-4],[-1,-7],[4,-4],[4,-2],[3,0],[2,0],[1,-4],[1,-3],[1,-3],[2,-2],[-5,3],[-2,1],[0,-4]],[[79677,62835],[2,-8],[10,-27],[1,-15],[-4,-3],[-5,2],[-2,2],[-1,10],[-6,23],[-1,14],[-1,-5],[-1,-5],[1,-5],[1,-5],[-2,0],[-3,4],[-5,2],[-3,3],[-2,11],[3,17],[3,15],[11,-9],[3,-8],[1,-13]],[[79867,62853],[7,27],[1,10],[1,-2],[0,-2],[1,-4],[-2,-14],[-2,-10],[-13,-39],[-2,-6],[-2,-12],[-2,-5],[-4,0],[5,21],[0,9],[-3,7],[0,4],[6,0],[4,2],[3,5],[2,9]],[[79928,62918],[4,-2],[10,-14],[0,-4],[-3,2],[-1,2],[-2,0],[2,-12],[-2,-9],[-5,-7],[-4,-5],[5,20],[0,7],[-1,3],[-3,4],[-2,5],[2,10]],[[79869,62918],[4,9],[2,2],[2,-2],[-2,-8],[-4,-21],[-3,-21],[-2,-8],[-2,-8],[-4,-4],[-5,-3],[-7,-1],[-12,-6],[-5,-2],[0,4],[8,7],[8,9],[6,10],[5,10],[-1,7],[1,9],[4,17],[1,-2],[3,-2],[1,5],[2,11],[0,-12]],[[79894,62975],[2,2],[1,0],[0,-5],[-10,-43],[-2,-18],[-3,-15],[-5,2],[3,2],[0,4],[-1,5],[0,7],[1,6],[4,8],[1,6],[0,14],[1,5],[0,4],[2,3],[6,13]],[[79883,63032],[6,4],[1,-1],[-1,-7],[-4,-7],[-9,-13],[-3,-9],[-2,0],[-4,2],[-6,-12],[-9,-26],[-3,-3],[-7,-6],[-3,-4],[-10,-16],[-4,7],[2,14],[4,14],[2,12],[1,7],[2,17],[2,18],[1,0],[3,-5],[1,5],[1,4],[2,1],[-1,4],[0,9],[0,15],[1,7],[1,4],[1,2],[1,1],[1,0],[1,0],[1,-1],[3,-5],[7,-16],[1,-3],[2,0],[2,-2],[0,-5],[0,-5],[1,-4],[0,-2],[1,-3],[2,0],[2,2],[10,6]],[[79947,63120],[1,-2],[1,-2],[0,-2],[-1,-1],[-2,-1],[-27,-24],[1,2],[3,8],[16,19],[5,4],[3,-1]],[[79963,63137],[36,8],[0,-3],[-11,-14],[-4,-4],[-3,5],[-1,0],[-2,-2],[-19,-13],[-4,-1],[1,6],[1,6],[2,-5],[0,-3],[1,5],[2,3],[2,3],[-6,0],[-7,-3],[0,4],[9,6],[3,2]],[[80261,56719],[5,-9],[2,-12],[-2,-8],[-6,0],[-2,7],[-2,9],[1,8],[4,5]],[[80386,57933],[2,-12],[1,-7],[-1,-7],[-4,3],[-11,15],[-1,4],[-2,5],[-3,1],[-3,5],[2,8],[7,2],[6,-2],[4,-2],[2,-6],[1,-7]],[[79824,62803],[3,-4],[1,-4],[0,-8],[-1,-1],[-1,4],[-2,2],[-2,-1],[-3,3],[-3,11],[0,8],[1,0],[4,-8],[3,-2]],[[79828,62840],[2,-2],[1,-4],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-2],[-4,-3],[-1,-1],[-2,1],[-2,3],[-3,8],[-1,-2],[-1,1],[-1,4],[0,3],[2,1],[2,-1],[1,-1],[1,0],[3,1],[5,0]],[[79951,62921],[4,6],[4,-1],[-1,-8],[-2,-5],[-5,-13],[-2,-1],[-1,11],[3,11]],[[79013,56640],[0,4],[-5,12],[-3,4],[-4,-4],[-9,21],[-3,4],[-9,0],[-4,-4],[-3,-2],[-2,2],[-2,9],[-1,26],[-4,5],[-1,2],[-4,8],[-1,3],[-2,-1],[-2,-3],[-2,-1],[-2,5],[-4,-12],[-8,-1],[-14,8],[-4,-1],[-7,-4],[-5,1],[-27,16],[-4,1],[-4,2],[-8,14],[0,4],[-6,24],[-1,0],[-4,0],[-1,1],[0,2],[0,3],[0,2],[-1,4],[0,9],[-1,3],[-2,-12],[0,-12],[2,-22],[-1,-11],[-2,-10],[-6,-18],[-4,-7],[-3,-4],[-5,-1],[-7,0],[-3,1],[-2,3],[-1,4],[-2,4],[-3,2],[-5,0],[-2,2],[0,-4],[6,-7],[5,-11],[2,-10],[-6,-4],[-9,1],[-11,-5],[-5,0],[-3,3],[-2,9],[-1,8],[0,4],[0,2],[-1,7],[-1,3],[-2,0],[-2,-1],[-1,-2],[-1,-1],[-2,1],[-2,3],[-3,4],[-2,14],[-3,6],[-5,9],[-5,-4],[-1,7],[1,11],[4,6],[2,4],[3,10],[2,12],[1,8],[5,14],[11,7],[21,2],[1,0],[1,0],[0,1],[0,3],[-4,2],[-1,4],[2,25],[1,5],[2,4],[3,4],[3,5],[3,8],[1,7],[-1,23],[-4,21],[-8,29],[-5,30],[4,20],[-6,8],[-2,3],[-9,2],[-3,3],[-2,4],[-4,21],[-6,11],[-8,6],[-8,2],[1,-2],[1,-2],[-4,-12],[-2,0],[-1,4],[-1,2],[-4,2],[0,-4],[2,-7],[-2,-9],[-5,-16],[5,5],[1,-6],[-2,-11],[-7,-27],[-2,-11],[-1,-13],[-3,-16],[-1,-7],[1,-5],[1,-10],[0,-7],[-1,-9],[-4,-5],[-4,-2],[-4,2],[-1,-3],[-2,-2],[-3,-3],[-2,14],[-6,8],[-7,7],[-6,7],[-11,-14],[-5,-10],[1,-8],[-4,0],[-3,-1],[-3,-3],[-1,-4],[-6,5],[-6,2],[-3,3],[3,10],[-8,14],[-2,2],[-2,5],[1,10],[2,10],[2,2],[-1,18],[-3,30],[0,17],[1,5],[2,6],[2,8],[0,11],[0,10],[-1,7],[-4,16],[-1,4],[0,5],[-1,5],[-1,4],[-2,1],[-5,0],[-2,1],[1,6],[3,4],[2,4],[-2,6],[0,4],[2,7],[8,15],[8,10],[3,-8],[2,0],[0,9],[-3,15],[-1,9],[-4,-3],[-2,-2],[-1,-3],[-4,7],[-1,6],[0,8],[-1,11],[-2,9],[-4,12],[-2,8],[3,-2],[1,-1],[0,-6],[2,0],[2,7],[3,5],[3,3],[4,2],[4,-4],[5,-14],[4,-3],[-9,35],[-3,6],[2,6],[0,2],[-2,0],[0,-2],[-2,-6],[2,-5],[-1,-5],[-2,-5],[-2,-1],[-3,3],[-3,11],[-8,7],[-2,13],[0,15],[0,12],[-2,-4],[1,12],[1,4],[-2,0],[-2,2],[-1,6],[0,-20],[-1,-10],[-1,-6],[-2,0],[-3,2],[-4,-2],[-4,-4],[-3,-5],[-5,17],[5,8],[2,-4],[4,-8],[2,0],[-1,5],[-3,8],[-2,7],[0,24],[4,7],[3,-3],[5,-5],[5,1],[0,4],[-3,0],[-3,1],[-2,4],[-1,4],[0,4],[2,0],[0,4],[-3,-3],[-1,-1],[-2,0],[0,4],[-2,8],[-2,0],[0,-12],[-2,4],[0,-13],[-1,0],[0,17],[2,12],[3,9],[4,7],[3,3],[2,1],[3,-1],[3,-5],[3,-3],[4,1],[3,5],[2,7],[-2,0],[-2,-7],[-4,0],[-4,5],[-3,6],[-2,0],[-12,-12],[-1,4],[-2,7],[-2,8],[0,7],[-2,5],[-6,7],[-10,31],[-1,0],[4,-20],[13,-30],[4,-19],[-1,-10],[-3,-17],[0,-9],[3,-26],[-1,-10],[-2,-13],[-1,7],[-2,11],[-1,8],[-1,4],[-5,10],[-2,5]],[[78586,57367],[5,13],[-1,34],[-4,23],[-8,25],[-11,35],[-13,51],[-3,30],[-4,20],[-2,5],[-4,9],[-14,46],[-2,24],[6,97],[2,11],[3,11],[7,13],[2,9],[0,5],[-1,7],[-3,7],[-9,10],[-4,9],[0,4],[-1,10],[-1,5],[-2,4],[-7,9],[-21,44],[-8,13],[-16,11],[-2,3],[-2,4],[-2,9],[-1,13],[0,12],[2,10],[3,6],[3,19],[0,6],[0,7],[-1,4],[-2,4],[-1,6],[-2,12],[-1,23],[-2,13],[-1,7],[-1,7],[0,6],[3,7],[1,2],[-1,2],[-2,5],[-1,2],[1,3],[1,2],[2,2],[2,2],[1,4],[0,3],[-5,6],[-3,8],[-4,19],[-13,30],[-5,20],[-15,81],[0,1],[-1,42],[2,36],[-1,45],[0,1],[0,7],[0,5],[-1,6],[-3,10],[0,6],[5,14],[11,2],[22,-4],[17,3],[5,4],[14,16],[5,3],[-10,13],[-6,13],[0,12],[9,14],[28,29],[7,12],[1,5],[0,12],[1,6],[1,5],[5,13],[2,11],[5,32],[5,19],[7,14],[16,26],[4,10],[1,7],[0,9],[1,14],[2,9],[6,17],[2,10],[0,12],[0,7],[0,3],[2,10],[4,9],[5,4],[10,6],[5,6],[3,6],[19,34],[9,10],[6,4],[16,5],[13,8],[8,6],[19,-1],[6,2],[5,5],[8,11],[4,3],[1,-2],[1,-3],[2,-3],[3,0],[2,1],[11,16],[10,11],[5,2],[5,-4],[4,-5],[4,-2],[6,6],[1,5],[1,5],[1,4],[2,3],[3,1],[3,-2],[2,-3],[2,-4],[1,-6],[-1,-14],[1,-5],[2,-2],[9,-1],[17,-9],[5,-1],[4,0],[2,2],[2,0],[4,-3],[3,-4],[3,-4],[3,-4],[4,-2],[5,1],[2,4],[0,5],[3,5],[15,1],[7,-13],[10,4],[3,3],[8,8],[10,6],[1,-2],[2,-3],[2,-3],[3,-1],[2,3],[7,15],[1,3],[0,2],[3,0],[-1,-2],[0,-6],[2,-5],[3,-2],[5,2],[4,6],[4,5],[6,-1],[15,-13],[32,-9],[2,-2],[2,-1],[1,0],[1,0],[2,2],[2,3],[2,4],[3,1],[5,-2],[4,-4],[5,-2],[5,5],[4,7],[2,9],[3,8],[5,6],[4,0],[7,-6],[5,0],[2,3],[2,10],[3,2],[2,-3],[1,-10],[2,-3],[4,1],[9,14],[3,4],[5,-1],[4,-5],[4,-6],[4,-4],[2,-1],[5,2],[3,0],[2,-2],[4,-6],[3,-3],[4,-1],[11,-5],[6,-3],[1,-7],[0,-8],[-1,-27],[0,-5],[9,-34],[5,-11],[6,-7],[15,10],[9,30],[6,29],[8,9]],[[79217,58965],[0,-18],[1,-14],[3,-12],[16,-52],[5,-11],[2,-2],[4,-2],[2,-3],[7,-21],[3,-4],[3,-3],[4,-1],[8,0],[8,3],[8,5],[6,9],[5,3],[4,5],[8,11],[2,-3],[2,-4],[2,-4],[2,-5],[4,4],[5,-5],[4,-9],[2,-10],[5,6],[3,0],[2,-4],[5,-4],[4,-1],[6,2],[3,0],[8,-9],[4,-14],[3,-17],[5,-14],[23,-44],[7,-7],[1,-1],[7,-3],[7,1],[6,6],[7,-1],[14,-7],[6,0],[4,11],[-1,27],[4,9],[4,9],[5,7],[4,7],[2,11],[-1,12],[-4,8],[-4,8],[-4,9],[-7,35],[-5,10],[-9,13],[-4,7],[-2,12],[1,15],[-1,11],[-3,10],[-6,9],[-1,6],[0,7],[0,7],[1,6],[6,-2],[12,-8],[5,0],[1,3],[0,9],[1,3],[2,0],[3,-1],[4,1],[7,-2],[9,-2],[6,2],[4,5],[4,12],[2,13],[3,31],[3,10],[1,-3],[17,-22],[3,-2],[4,0],[3,2],[2,1],[15,4],[7,6],[3,11],[1,1],[2,3],[1,4],[-3,4],[0,4],[0,4],[1,3],[2,3],[4,-1],[3,-2],[4,0],[0,4],[-2,1],[-1,3],[-1,4],[0,6],[1,6],[1,1],[2,1],[2,2],[6,11],[2,-3],[3,-11],[1,-8],[2,-18],[1,-6],[2,-3],[6,-3],[3,-4],[6,-17],[4,-5],[4,-4],[20,-13],[1,-2],[2,-5],[2,-4],[2,-8],[10,-29],[7,-15],[4,-6],[4,-3],[4,0],[11,12],[1,3],[2,1],[2,1],[3,-2],[5,-7],[3,-1],[3,2],[1,3],[1,4],[3,15],[3,2],[1,1],[6,18],[8,20],[0,3],[1,1],[3,-3],[5,-8],[2,-7],[3,-3],[6,4],[9,12],[8,14],[2,9],[1,10],[3,8],[4,-1],[4,-1],[2,3],[3,12],[1,11],[0,4],[2,3],[3,4],[1,3],[5,14],[4,8],[5,-1],[8,-11],[5,-10],[3,-2],[5,-2],[6,-6],[4,-1],[3,7],[1,4],[0,5],[0,5],[0,5],[1,5],[2,5],[1,4],[2,13],[2,4],[4,4],[9,28],[4,7]],[[78828,56697],[4,-6],[2,-12],[0,-13],[-3,-6],[-4,1],[-4,1],[-4,5],[-2,10],[2,1],[1,2],[3,5],[-2,7],[1,4],[2,2],[4,-1]],[[78693,56825],[1,-3],[2,0],[3,-3],[0,-9],[-4,-2],[-3,-4],[-3,-5],[-2,-9],[-2,4],[-1,7],[-1,7],[0,2],[0,2],[-9,7],[-4,7],[-4,9],[-1,8],[3,8],[6,4],[4,-2],[4,-7],[3,-7],[1,-2],[1,-4],[0,-2],[2,-1],[2,0],[1,-1],[1,-4]],[[78621,57196],[1,-7],[1,-5],[1,-4],[-2,-4],[2,-8],[0,-11],[-2,-11],[-1,-7],[-4,-4],[-5,0],[-2,3],[1,5],[-3,7],[-1,12],[0,22],[-2,25],[0,15],[2,12],[1,-2],[1,-3],[0,-3],[3,6],[3,1],[2,-4],[4,-15],[0,-6],[-1,-6],[1,-8]],[[78619,57281],[1,-5],[3,-10],[1,-5],[0,-4],[-1,-5],[-3,-12],[-1,-4],[-3,1],[0,6],[1,14],[-3,9],[-3,11],[-2,11],[4,9],[5,-6],[1,-2],[0,-3],[0,-3],[0,-2]],[[78703,56738],[1,-1],[0,-2],[0,-4],[-1,-5],[-1,-6],[-2,-5],[-3,4],[-6,18],[-1,10],[1,8],[3,3],[3,1],[2,-2],[1,-4],[-3,-8],[0,-3],[0,-3],[0,-4],[2,-3],[2,0],[1,3],[1,3]],[[51608,79807],[7,4],[6,9],[3,10],[-5,3],[3,4],[2,6],[4,14],[2,4],[3,3],[1,5],[-1,9],[-2,2],[-6,1],[-2,2],[-1,4],[1,2],[1,2],[0,4],[0,3],[1,3],[2,2],[-1,3],[0,2],[-1,3],[-2,0],[-2,-1],[-2,1],[-1,1],[-4,2],[-2,2],[0,1],[0,8],[-1,3],[-6,18],[-2,4],[-4,3],[-3,0],[-3,2],[-2,7],[-2,8],[-1,7],[2,5],[3,3],[-3,4],[1,2],[0,1],[1,2],[0,3],[7,-1],[-3,6],[-6,6],[-3,2],[1,6],[10,23],[1,4],[0,3],[2,3],[2,4],[2,2],[4,1],[2,3],[3,8],[-1,3],[-2,4],[0,8],[2,3],[6,3],[2,3],[0,5],[0,6],[0,6],[2,4],[4,5],[1,3],[1,4],[1,10],[1,4],[4,6],[11,6],[4,6],[2,9],[1,8],[2,5],[6,1],[5,5],[1,-3],[1,-5],[2,-5],[3,-1],[1,-1],[3,-1],[6,2],[3,2],[1,2],[3,1],[3,-5],[1,-5],[0,-6],[1,-5],[4,-2]],[[65632,65647],[6,-7],[7,-5],[4,-2],[3,-7],[6,-40],[-2,-54],[0,-6],[1,-16],[0,-5],[-2,-7],[0,-5],[3,-10],[1,-6],[1,-4],[1,-4],[0,-4],[0,-4],[0,-7],[-1,-12],[-1,-17],[-2,-26],[-1,-84],[-1,-6],[6,-47]],[[65329,63915],[-18,-47],[-5,-2],[-38,10],[-38,10],[-39,10],[-39,10],[-38,11],[-39,10],[-38,10],[-39,10],[-39,10],[-38,10],[-39,10],[-38,10],[-39,11],[-39,10],[-38,10],[-39,10],[-39,10],[-44,12],[-7,4],[-6,10],[-15,37],[-14,37],[-15,37],[-14,37],[-14,36],[-15,37],[-14,37],[-15,37],[-14,36],[-15,37],[-14,37],[-15,36],[-14,37],[-15,37],[-14,37],[-15,36],[-14,37],[-16,40],[-4,14],[-2,16],[1,37],[0,16],[-2,23]],[[64324,64835],[6,16],[0,26],[-5,22],[6,12],[2,-10],[6,-17],[1,-12],[0,-34],[2,-21],[4,-5],[4,9],[3,26],[2,-7],[2,-18],[2,-6],[2,-2],[2,0],[3,1],[1,3],[0,3],[-1,1],[6,25],[5,8],[6,-17],[0,-13],[-3,-38],[1,-13],[3,-30],[1,-6],[-1,-20],[1,-6],[2,-12],[1,-6],[3,-11],[6,-3],[14,-1],[3,-2],[3,-3],[4,-9],[3,-3],[2,0],[1,3],[-2,4],[0,7],[6,1],[16,-1],[2,1],[1,-1],[4,-7],[9,-8],[2,0],[12,5],[4,-3],[3,3],[3,-3],[4,4],[5,1],[5,-1],[5,0],[5,4],[10,13],[5,1],[9,0],[4,2],[3,5],[3,7],[4,6],[4,3],[4,2],[6,4],[4,6],[2,6],[2,7],[8,7],[4,6],[4,8],[5,7],[5,5],[3,3],[3,4],[1,10],[0,11],[1,7],[6,6],[5,-4],[4,-8],[10,-26],[3,-3],[1,2],[1,3],[3,2],[6,0],[11,-7],[6,-2],[4,2],[6,5],[3,2],[3,0],[2,-2],[2,-1],[2,-1],[24,-5],[3,2],[9,7],[2,2],[0,3],[1,3],[1,0],[2,-2],[1,-2],[0,-3],[1,-1],[8,-13],[5,-5],[11,9],[6,-4],[5,-5],[5,2],[-4,4],[-1,6],[0,6],[-1,8],[6,3],[8,-7],[6,-10],[5,-10],[4,-13],[2,-3],[15,-1],[36,14],[2,0],[3,-3],[4,-9],[3,-4],[4,-2],[4,1],[3,3],[5,-7],[3,-4],[2,-1],[2,-2],[3,-11],[2,-3],[2,-1],[4,0],[3,1],[4,5],[3,-2],[3,-2],[2,-1],[9,8],[2,2],[2,3],[2,-1],[3,-3],[3,-1],[34,0],[7,1],[3,5],[17,18],[17,6],[6,6],[6,2],[7,6],[8,3],[3,2],[4,4],[5,8],[5,9],[2,9],[2,4],[19,11],[14,21],[3,1],[2,7],[5,0],[12,-9],[2,6],[10,16],[5,14],[11,43],[-1,15],[1,7],[4,4],[-3,3],[-1,1],[0,5],[5,-1],[6,-6],[4,-2],[-1,8],[-5,10],[-1,7],[4,-4],[5,-3],[4,-3],[2,-6],[2,0],[-1,15],[-5,5],[-8,1],[-7,3],[-16,21],[-7,3],[0,4],[4,2],[3,4],[3,6],[0,-3],[1,-5],[3,-4],[-1,6],[1,5],[3,9],[2,0],[2,-16],[6,-16],[7,-10],[6,2],[-1,2],[-5,6],[4,0],[6,-4],[2,0],[1,2],[2,8],[2,2],[10,41],[-4,4],[-3,5],[1,5],[5,2],[3,3],[1,8],[1,9],[6,4],[0,4],[-3,3],[-1,6],[-1,8],[-1,8],[1,4],[-2,2],[-2,5],[1,9],[3,6],[10,14],[2,4],[1,6],[2,3],[8,-8],[1,-1],[4,2],[4,5],[1,8],[-4,10],[31,34],[13,19],[9,15],[5,8],[7,4],[1,0],[1,1],[1,1],[1,0],[1,2],[1,1],[1,0],[0,1],[1,1],[8,9],[-1,12],[9,4],[1,-2],[21,47],[28,71],[2,9],[-1,8],[6,9],[4,-1],[4,-11],[2,-9],[-2,-7],[-3,-11],[7,4],[2,11],[-2,13],[-6,20],[-1,5],[2,5],[8,17],[3,2],[4,0],[-1,7],[0,7],[2,6],[3,4],[3,-4],[5,9],[9,23],[2,0],[1,-7],[2,0],[1,4],[1,8],[2,-5],[4,22],[3,10],[3,5],[-4,4],[2,7],[4,9],[2,10],[1,10],[3,12],[4,10],[5,3],[-2,-9],[-3,-8],[-2,-8],[1,-7],[5,-4],[5,2],[6,4],[6,2],[2,4],[4,23],[3,9],[7,15],[4,7],[10,7],[7,20],[3,4],[3,1],[3,2],[3,3],[2,4],[1,1],[8,5],[10,15],[15,37],[8,13],[-2,-6],[-2,-12],[-3,-10],[2,-4],[2,-1],[1,2],[0,9],[3,17],[0,11],[2,5],[12,22],[2,6],[2,7],[2,8],[1,11],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-2],[7,24],[6,25],[5,37],[1,5]],[[64904,64777],[-5,1],[-3,2],[0,5],[4,8],[3,4],[1,0],[7,5],[3,3],[5,9],[1,2],[2,3],[2,1],[3,2],[2,0],[5,-4],[2,-1],[1,2],[7,11],[8,6],[3,3],[2,7],[2,-8],[-1,-1],[-1,-3],[3,-10],[1,-2],[7,-9],[1,-1],[10,-4],[2,-2],[6,-4],[3,-17],[-4,-14],[-9,-5],[-10,0],[-8,7],[1,5],[-2,8],[-4,2],[-3,-11],[2,-4],[-7,-10],[-9,-3],[-9,2],[-9,7],[-5,5],[-2,2],[-8,1]],[[65052,64817],[-2,11],[-6,5],[-7,4],[-6,7],[-3,15],[3,12],[6,5],[2,-2],[2,-4],[7,-15],[4,-8],[3,-14],[-3,-16]],[[64603,64887],[4,9],[7,8],[6,-4],[3,-9],[2,-16],[-1,-9],[-6,-15],[-5,-9],[-5,-9],[-3,8],[-3,9],[-4,15],[1,11],[4,11]],[[64811,64838],[-4,10],[-4,0],[-5,6],[-2,-9],[-11,3],[-4,1],[-6,-2],[-1,-1],[-1,0],[0,3],[0,4],[1,4],[1,4],[1,1],[10,-4],[3,1],[7,6],[1,3],[2,2],[9,7],[5,5],[3,0],[2,-10],[3,-3],[2,3],[1,6],[0,7],[-2,6],[10,30],[5,6],[1,-3],[1,-6],[0,-3],[7,-7],[-2,-23],[-4,-7],[-11,-10],[-5,-7],[-6,-2],[-4,-5],[0,-7],[-3,-9]],[[65106,64943],[-14,8],[0,10],[12,20],[4,11],[1,0],[-1,-12],[2,-11],[4,-7],[11,-11],[5,-10],[0,-6],[-4,-3],[-7,3],[-13,8]],[[65073,64857],[-2,-4],[-3,-2],[-2,-2],[-3,0],[-2,2],[-5,11],[-3,5],[-3,2],[-1,4],[2,9],[2,6],[3,4],[4,3],[4,0],[2,-10],[3,-9],[6,-14],[-2,-5]],[[65090,64904],[2,-6],[1,-8],[-3,-17],[-5,-4],[-7,26],[-1,4],[2,0],[3,-1],[3,-4],[1,-1],[0,3],[-1,3],[-4,6],[-1,6],[4,0],[6,-7]],[[64530,65002],[6,-8],[2,-14],[-4,-13],[-3,-2],[-4,4],[-1,3],[-2,2],[-2,3],[0,8],[3,7],[2,7],[3,3]],[[50700,80724],[6,6],[10,5],[38,38],[58,46],[56,49],[62,27]],[[50930,80895],[2,-23],[-1,-15],[0,-13],[4,-15],[7,-10],[2,-1],[6,-4],[9,-2],[13,3],[1,6],[-1,7],[1,7],[3,4],[4,1],[4,1],[11,3],[7,1],[7,-2],[34,-15],[5,-5],[2,-7],[-1,-7],[1,-6],[4,-7],[3,-2],[33,1],[7,2],[12,14],[35,23],[13,14],[11,20],[2,6],[2,14],[0,3]],[[51172,80891],[0,-1],[6,-6],[2,-6],[2,-11],[4,-7],[5,-6],[4,-6],[1,-4],[0,-3],[-1,-5],[-1,-4],[-1,-1],[3,2],[2,4],[4,11],[-9,5],[-2,3],[-1,5],[0,13],[-1,6],[-2,5],[-4,6]],[[51183,80891],[6,0],[2,0],[10,-7],[6,-3],[13,-1],[5,4],[1,10],[-1,6],[-7,10],[-2,5],[0,6],[2,5],[1,4],[-4,5],[15,11],[15,8],[8,1],[3,-1],[3,-4],[-1,-10],[-2,-8],[-1,-6],[6,-5],[3,0],[8,2],[9,-3],[5,0],[3,2],[3,3],[22,35],[9,6],[4,0],[5,-3],[5,-4],[2,-5],[1,-9],[-2,-8],[-1,-9],[2,-10],[-12,7],[-3,0],[-2,-8],[6,-3],[20,-1],[5,-2],[10,-6],[6,2],[7,9],[7,12],[4,9],[2,7],[1,6],[2,4],[4,1],[1,-1],[8,-8],[6,-14],[-1,-10],[-3,-9],[-1,-13],[1,-6],[10,-14],[1,-5],[3,-13],[2,-4],[4,-3],[11,1],[5,-1],[5,-8],[0,-21],[5,-2],[2,1],[9,3],[32,-2],[6,3],[12,11],[5,3],[6,-1],[7,-5],[5,-9],[2,-12],[1,-13],[2,-2],[4,-5],[16,-7],[4,-3],[2,-4],[3,-3],[5,0],[12,3],[3,-1],[5,-3],[6,-11],[3,-4],[9,3],[5,-1],[2,-7],[1,-3],[-4,-5],[-1,-7],[6,-9],[-2,-2],[-3,-2],[-3,-1],[-3,1],[1,-4],[0,-2],[1,-3],[-2,-8],[-2,-4],[-2,-4],[-3,4],[-2,-2],[-2,-6],[0,-8],[3,-6],[-4,-15],[-11,-23],[6,2],[3,0],[3,-2],[-4,-8],[-4,-13],[-4,-8],[-1,-1],[-4,-2],[-3,-1],[-20,-31],[1,-13],[4,-9],[5,-4],[2,-2],[6,-4],[4,-1],[-1,-7],[-2,-14],[5,-4],[3,-1],[3,1],[1,3],[3,6],[2,2],[3,-1],[6,-8],[3,-3],[24,1],[3,-2],[3,-1],[20,-1],[6,2]],[[62897,75278],[-11,-35],[-6,-15],[-12,-24],[-4,-5],[-4,-4],[-6,-1],[-13,5],[-6,-1],[-5,-9],[-3,-21],[0,-30],[4,-26],[7,-10],[3,3],[1,6],[2,4],[4,0],[0,-3],[6,-19],[1,-4],[2,-23],[3,-13],[4,-10],[15,-16],[3,-3],[6,-2],[13,-19],[27,-19],[13,-13],[5,-16],[4,3],[2,-3],[2,-5],[6,-10],[8,-21],[2,-9],[-1,0],[-2,0],[-2,-5],[-1,-4],[0,-11],[-1,-3],[-2,-4],[-3,-6],[-2,-3],[-3,-16],[-1,-21],[-2,-19],[-2,-3],[-4,-9],[-5,-1],[-5,2],[-6,1],[-6,-6],[-3,-9],[-1,-10],[-3,-6],[-6,0],[-5,5],[-8,16],[-4,7],[-17,9],[-6,5],[-16,24],[-8,16],[-4,7],[-5,3],[-21,0],[-6,-2],[-8,-8],[-7,-7],[-5,-4],[-7,-1],[-13,3],[-42,24],[-14,14],[-5,5],[-11,16],[-7,17],[6,12],[6,4],[4,3],[0,4],[-6,4],[-19,6],[-39,25],[-9,14],[-5,7],[-4,1],[-9,-4],[-5,-1],[-5,2],[-13,11],[-5,4],[-9,1],[-9,-5],[-42,-56],[-27,-36]],[[62500,74922],[-3,-3],[-7,-9],[-3,-4],[-11,-1],[-26,7],[-6,-8],[2,-9],[11,-8],[2,-4],[1,-3],[-3,-6],[-7,-1],[-41,1],[-12,7],[-5,2],[-6,-5],[-4,-7],[-3,-10],[-4,-6],[-6,3],[-1,4],[-1,6],[-2,5],[-3,0],[-2,-2],[-5,-10],[-7,-4],[-6,1],[-6,4],[-15,14],[-4,1],[-3,-2],[-2,-3],[-2,-4],[-3,-3],[-6,-1],[-5,3],[-14,15],[-7,5],[-3,0],[-4,-4],[0,-5],[-1,-5],[-1,-5],[-4,-7],[-6,-5],[-6,-2],[-11,6],[-6,-1],[-11,-9],[-6,-2],[-1,0],[-6,-2],[-25,-1],[-12,-8],[-13,-19],[-6,-3],[-6,-1],[-46,10],[-12,-1],[-15,-10],[-2,-1],[-3,0],[-3,2]],[[62066,74814],[3,15],[-4,14],[-7,11],[-8,7],[-8,4],[-9,-1],[-25,-11],[-4,4],[-7,27],[-5,10],[-6,1],[-6,-1],[-8,4],[16,12],[4,6],[3,8],[0,4],[-8,1],[-9,7],[-13,19],[-21,22],[-4,7],[-8,25],[-2,4],[-3,2],[-1,2],[-1,3],[-2,2],[-8,5],[-2,2],[-2,6],[-2,8],[-2,4],[-4,-4],[-6,-13],[-6,3],[-5,9],[-7,7],[2,6],[6,7],[2,5],[1,5],[1,6],[1,6],[2,5],[-5,4],[-39,6],[-14,-2],[-6,-3],[-1,-1],[-6,-7],[-3,-10],[-2,-24],[-3,-9],[-6,-11],[-9,-20],[-5,-6],[-4,0],[-3,0],[-49,30],[-14,-1],[-6,1],[-5,7],[-4,4],[-4,0],[-9,-4],[-4,3],[-4,1],[-4,-1],[-4,-3],[-10,-5],[-19,12],[-12,-7],[-3,-5],[-9,-20],[-11,-15],[-3,-3],[-3,3],[-11,16],[-4,2],[-8,2],[-3,2],[-2,3],[0,5],[1,5],[-1,2],[-2,0],[-7,-5],[-8,-1],[-3,1],[-30,20]],[[61533,75055],[18,52],[8,18],[17,18],[5,17],[13,35],[0,7],[1,5],[0,5],[2,5],[4,10],[2,5],[0,5],[0,48],[0,3],[-3,37],[-1,13],[-1,8],[-11,32],[-8,23],[-3,4],[-3,5],[-2,11],[0,21],[-2,26],[-15,82],[-1,3],[-2,5],[-8,11],[-1,5],[-1,9],[-14,139],[-5,24],[-7,19],[-9,16],[-11,10],[-21,6],[-5,4],[-4,7],[-7,6],[-7,4],[-6,1],[-3,-1],[-6,-6],[-3,-1],[-3,3],[-13,30],[-6,36],[-12,32],[-4,17],[-7,0],[-11,-8],[-7,4],[-8,20],[-5,4],[0,3],[-7,18],[-2,2],[-20,13],[-28,6],[-13,-1],[-9,-4],[-3,0],[-3,1],[-6,9],[-3,2],[-1,1],[-5,8],[-2,3],[-3,2],[-9,2],[-22,17],[-10,2],[-7,-15],[-3,5],[-4,16],[-3,8],[-6,10],[-3,6],[1,19],[-4,17],[-6,16],[-5,9],[-8,6],[-15,7],[-9,14],[-4,3],[-13,3],[-9,6],[-6,2]],[[55713,75268],[6,-11],[3,-3],[5,0],[2,3],[3,9],[2,2],[2,-3],[6,-12],[2,-3],[6,4],[3,5],[3,5],[5,12],[2,11],[1,3],[1,12],[-1,5],[-3,18],[0,14],[4,29],[3,13],[5,10],[7,7],[26,14],[20,10],[8,5],[7,5],[3,5],[9,15],[7,7],[2,0],[2,-1],[4,-3],[10,-13],[10,-16],[5,-12],[2,-8],[1,-2],[3,-4],[2,0],[12,-4],[3,1],[0,4],[0,1],[0,12],[0,5],[-1,4],[-1,3],[1,5],[16,40],[2,2],[2,2],[5,1],[9,-6],[3,1],[0,3],[-2,6],[-1,5],[5,4],[3,-2],[3,-4],[3,-1],[1,2],[3,5],[4,-5],[6,0],[12,5]],[[55989,75489],[4,-3],[13,0],[10,-4],[5,0],[4,4],[4,8],[4,3],[27,26],[5,2],[11,0],[2,1],[10,13],[3,2],[3,-1],[15,-12],[9,-5],[5,-1],[4,-1],[10,3],[38,25],[8,12],[2,1],[1,-3],[1,-10],[0,-4],[5,-8],[4,-5],[5,-3],[5,-1]],[[56206,75528],[28,-58],[10,-13],[4,-17],[3,-9],[1,-3],[6,-9],[24,-27],[3,-2],[13,-11],[9,-3],[1,-2],[1,-3],[1,-2],[2,-1],[13,1],[2,-1],[2,-2],[0,-4],[1,-4],[2,-3],[2,0],[5,3],[1,0],[3,-4],[2,-3],[0,-4],[1,-8],[2,-7],[1,-6],[0,-14],[2,-14],[3,-13],[1,-4],[-1,-9],[1,-5],[1,0],[0,-2],[4,-3],[1,-2],[2,-7],[3,-20],[6,-23],[1,-4],[3,-2],[7,-1],[3,-2],[5,-12],[0,-14],[-3,-14],[-4,-9],[-2,-7],[-2,-8],[-1,-3],[-1,-2],[-5,-2],[-1,-2],[-1,-7],[-1,-8],[-1,-8],[1,-8],[1,-4],[2,-6],[1,-4],[0,-4],[-2,-10],[1,-9],[0,-41],[1,-3],[1,-6],[1,-3],[-1,-3],[-3,-7],[-1,-3],[0,-13],[2,-12],[-1,-11],[-7,-9]],[[56365,74949],[-25,3],[-8,-2],[-5,-1],[-5,-8],[-3,-4],[-2,-17],[-1,-2],[-1,-46],[-2,-23],[-4,-12],[-3,-4],[-3,3],[-5,7],[-2,5],[-2,4],[-1,3],[0,1],[-3,1],[-5,-2],[-1,-4],[1,-5],[-1,-5],[-5,-10],[-5,-6],[0,-1],[-5,-3],[-6,0],[-9,2],[-4,0],[-6,-3],[-4,-1],[-4,-1],[-8,0],[-3,2],[-6,6],[-3,2],[-3,1],[-7,-2],[-6,0],[-2,-3],[-2,0],[0,3],[-1,7],[0,3],[-3,1],[-8,2],[-11,5],[-3,1],[-2,0],[-7,-1],[-6,-5],[-10,-14],[-6,-4],[-2,2],[-9,8],[-1,1],[0,3],[-1,3],[-2,1],[-1,-1],[-3,-5],[-1,-1],[-18,-9],[-9,-7],[-2,-3],[-5,-6],[-2,-4],[-1,-5],[0,-10],[0,-2],[-1,-5],[-4,-9],[-10,-15],[-3,-11],[-11,-12],[-3,-6],[0,-5],[0,-6],[-1,-7],[-4,-6],[-2,0],[-6,-2],[-14,5],[-8,-6],[0,-2],[-1,-8],[-1,-3],[-1,-1],[-4,0],[-2,0],[-3,-4],[-6,-10],[-3,-3],[-7,3],[-13,18],[-1,0],[-21,5],[-7,-1],[-6,-4],[-10,-17],[-5,-4],[-9,-3],[-10,0],[-4,1],[-10,4],[-7,1],[-20,-10],[-41,-3]],[[55823,74661],[0,16],[-2,11],[-5,7],[-14,7],[-14,3],[-1,0],[-5,-2],[-9,-12],[-5,-3],[-7,2],[-3,4],[-4,5],[-4,14],[-5,34],[-6,38],[-2,10],[-3,4],[-3,0],[-1,1],[-3,-1],[-4,1],[-2,2],[-6,4],[-2,8],[0,10],[-1,14],[-4,14],[-11,23],[-3,15],[-5,32],[-1,18],[0,1],[1,12],[4,-2],[4,3],[3,8],[3,8],[2,10],[0,8],[0,1],[-2,6],[-3,8],[-2,2],[-5,1],[-2,3],[0,3],[-1,10],[-1,4],[0,2],[-3,9],[-2,4],[-3,2],[-2,9],[0,16],[-1,8],[14,5],[4,2],[4,4],[2,4],[2,6],[0,1],[-1,4],[-5,28],[-2,12],[-2,43],[1,6],[2,8],[3,6],[6,10],[2,5],[0,4],[-1,9],[-2,15],[0,3],[0,10],[8,7]],[[55823,74661],[1,-28],[-2,-12],[-5,-10],[3,-3],[1,-5],[0,-4],[2,-5],[8,-12],[7,-15],[3,-8],[2,-10],[0,-12],[-1,-11],[-3,-20],[0,-7],[-1,-5],[0,-5],[-1,-6],[-2,-3],[-3,-2],[-2,-4],[-2,-6],[-4,-1],[-3,-4],[-2,-5],[1,-7],[-1,-4],[-1,-3],[-3,-6],[-7,-8],[-6,3],[-6,5],[-8,0],[-3,-4],[-2,-5],[-1,-6],[-2,-6],[-3,-2],[-5,-3],[-3,-4],[0,-5],[1,-17],[0,-6],[-1,-7],[-1,-5],[-3,-9],[-5,-18],[0,-3],[-3,-3],[-3,-3],[-3,-3],[-2,-6],[-1,-13],[1,-12],[-1,-12],[-3,-15],[-1,-2],[-4,-2],[-2,-3],[0,-3],[1,-7],[0,-3],[2,-11],[-1,-3],[-4,-19],[-1,-4],[-2,-2],[-7,-6],[-11,-8],[-6,-1],[-15,4],[-5,-3],[-5,-4],[-9,2],[-5,-4],[-4,-7],[-3,-9],[-2,-11],[-1,-10],[-5,-2],[-14,-1],[-3,-1],[1,-5],[4,-36],[2,-4],[6,-10],[13,-35],[1,-10],[-2,-12],[-5,-8],[-5,0],[-4,5],[-11,7],[-3,1],[-2,-2],[-2,-4],[1,-3],[1,-2],[1,-5],[0,-3],[-2,-7],[0,-2],[0,-2],[2,-4],[1,-2],[1,-5],[1,-3],[1,-3],[-1,-6],[-3,-8],[-6,-5],[-4,-6],[-1,-13],[-2,2],[-3,1],[-2,0],[-2,-1],[-2,-4],[-1,-4],[1,-5],[-1,-3],[-5,-2],[-6,5],[-7,11],[-13,11],[-11,6],[-10,5],[-4,-4]],[[55555,73977],[-1,-1],[0,-3],[-2,0],[-2,8],[1,10],[5,18],[-5,3],[-1,3],[4,15],[5,29],[1,7],[-2,13],[-3,3],[-5,1],[-6,3],[0,2],[0,2],[0,3],[-2,2],[-3,3],[-3,2],[-5,0],[-2,3],[0,4],[4,8],[3,4],[3,4],[-5,7],[-13,41],[-2,8],[-2,6],[-2,3],[-9,0],[-5,2],[-3,2],[3,4],[-8,8],[-1,-4],[0,-1],[-1,-3],[-1,5],[-1,3],[-2,2],[-2,2],[0,3],[-2,7],[-2,6],[-1,-2],[-3,5],[-18,10],[-16,15],[-9,13],[-15,8],[-9,12],[-27,48],[-3,8],[-1,5],[-4,27],[-2,7],[-10,16],[-3,7],[-1,3],[-1,1],[0,4],[7,7],[5,0],[4,-5],[10,-19],[2,-7],[4,-14],[2,-9],[0,-8],[3,-2],[6,2],[6,4],[2,5],[2,53],[-1,9],[-7,7],[-9,16],[-8,17],[-1,13],[1,-4],[1,-4],[1,-5],[2,1],[2,0],[6,-10],[3,3],[2,11],[1,14],[-4,12],[-7,6],[-7,-3],[-1,-17],[-2,10],[-20,46],[-1,5],[1,7],[4,6],[4,5],[4,6],[2,10],[1,9],[1,36],[1,9],[2,7],[5,2],[3,2],[-1,5],[-2,6],[-1,4],[2,4],[2,5],[1,4],[1,1],[-2,7],[-4,8],[-3,8],[3,3],[4,3],[5,13],[5,5],[-4,-7],[2,-14],[-2,-12],[0,-12],[2,0],[1,8],[0,-2],[0,-2],[1,-4],[3,8],[15,11],[5,9],[0,15],[-3,12],[-3,10],[-2,12],[-1,-15],[-4,-14],[-7,-18],[0,3],[-1,4],[3,4],[3,9],[2,11],[-1,12],[-1,3],[-5,3],[-1,2],[-2,7],[0,3],[1,3],[3,45],[-1,9],[-2,4],[-1,5],[0,4],[6,4],[1,7],[0,8],[0,7],[12,29],[2,11],[-1,12],[-3,11],[-4,7],[-5,3],[-6,0],[-5,1],[-3,6],[-2,11],[0,24],[-1,5],[-4,7],[-1,6],[4,-7],[6,0],[5,8],[-1,16],[6,5],[7,10],[6,12],[2,16],[-1,9],[-2,4],[-3,2],[-4,3],[-4,6],[-4,12],[-3,6],[24,-5],[8,4],[2,1],[6,20],[2,0],[0,-6],[1,-4],[2,0],[2,2],[-2,16],[-1,4],[-2,-4],[-2,5],[-8,12],[6,16],[-1,18],[-1,20],[0,11],[5,-3],[3,8],[0,12],[-2,11],[-2,0],[-33,22],[-4,4],[-6,4],[-18,-10]],[[55379,75255],[-1,6],[1,16],[-3,6],[-2,4],[-1,3],[0,2],[0,4],[1,3],[1,3],[0,4],[-2,14],[2,2],[2,1],[2,2],[1,10],[-2,4],[-2,9],[-1,11],[0,12],[1,10],[5,18],[0,5],[-1,2],[-4,8],[-16,18],[-4,8],[-3,10],[1,6],[8,14],[26,66],[1,3],[0,8],[0,4],[3,10],[1,3],[14,26],[4,10],[6,6],[4,8],[4,10],[3,11],[2,9],[3,4],[4,4],[4,6],[1,7],[2,16],[1,8],[5,12],[7,13],[3,5],[5,7],[6,4],[7,-5],[4,-13],[2,-15],[1,-6],[0,-5],[-1,0],[-1,-3],[-2,-7],[0,-4],[-1,-9],[0,-4],[1,-6],[5,-18],[9,-11],[5,-4],[5,-1],[3,1],[1,1],[11,10],[2,4],[7,8],[14,-1],[7,3],[10,21],[6,7],[7,-7]],[[55573,75666],[6,-9],[14,-13],[4,-9],[8,-30],[2,-3],[3,-6],[2,-5],[0,-4],[-3,-7],[0,-4],[1,-4],[4,-6],[2,-3],[0,-5],[0,-8],[0,-4],[3,-10],[2,-4],[3,-1],[19,1],[5,-1],[34,-40],[5,-8],[2,-4],[5,-11],[11,-36],[3,-16],[0,-11],[0,-19],[2,-11],[9,-36],[1,-12],[1,-8],[0,-7],[-2,-11],[-3,-5],[-2,-2],[-1,-3],[-2,-7],[0,-5],[2,-7],[0,-4]],[[62494,74799],[11,-4],[3,-17],[-4,-14],[-10,6],[-4,7],[-2,9],[1,8],[5,5]],[[63494,75251],[2,-4],[9,-8],[10,-14],[24,-55],[10,-15],[4,-9],[1,-15],[19,-34],[11,-37],[5,-3],[5,-8],[4,-9],[2,-8],[6,-15],[2,-3],[1,-3],[7,-3],[2,-2],[4,-10],[10,-34],[9,-28],[4,-10],[3,-11],[2,-13],[3,-51],[2,-11],[3,-4],[2,-7],[5,-43],[13,-35],[33,-61],[3,-7],[3,-10],[5,-8],[13,-12],[6,2],[6,-7],[5,-10],[5,-5],[3,-6],[-1,-13],[-5,-22],[-2,-12],[0,-6],[0,-6],[2,-4],[3,-8],[1,-3],[2,-5],[5,-8],[6,-7],[3,-3],[12,-1],[6,-2],[4,-4],[10,-14],[6,-5],[13,-3],[12,-6],[7,-1],[5,2],[15,10],[7,2],[32,-2],[2,-3],[1,-5],[1,-4],[1,-4],[5,-10],[6,-8],[5,-5],[25,-8],[5,-5],[3,-9],[4,-13],[4,-13],[5,-6],[6,-3],[6,-9],[4,-12],[2,-12],[3,-49],[2,-5],[2,-11],[2,-13],[-1,-8],[-5,17],[-6,15],[-7,13],[-14,18],[-6,5],[-6,4],[-12,3],[-11,6],[-5,1],[-3,-1],[-4,-2],[-3,-2],[-10,0],[-5,-3],[-10,-13],[-5,0],[-2,3],[-4,9],[-2,4],[-3,2],[-7,2],[-7,7],[-6,-5],[-9,-14],[2,-14],[-8,-13],[-11,-9],[-19,-7],[-16,-16],[-21,-12],[-5,-6],[-11,-20],[-5,-5],[-3,-7],[0,-12],[1,-16],[0,-7],[-15,-9],[-2,-9],[0,-12],[4,-12],[3,-5],[4,-5],[2,-4],[1,-6],[-2,-4],[-2,-3],[-5,-8],[-3,-1],[-2,-3],[-2,-6],[-1,-7],[0,-5],[1,-12],[4,-13],[1,-7],[-2,-7],[-2,-4],[-2,-3],[-2,-3],[0,-6],[0,-3],[1,-3],[1,-4],[0,-4],[-2,-3],[-4,-5],[-2,-9],[0,-3],[2,-4],[-1,-8],[1,-8],[6,-15],[0,-5],[-4,-5],[-7,-6],[-7,-14],[-6,-12],[-5,-15],[0,-10],[-3,-10],[-3,-13],[-2,-14],[-1,-12],[0,-16],[3,-11],[25,-39],[4,-6],[2,-8],[0,-3],[-1,-2],[-2,-20],[0,-5],[3,-7],[-4,3],[-2,3],[-2,5],[-2,5],[-2,0],[1,-9],[3,-10],[3,-8],[5,-5],[0,-5],[-7,3],[-4,7],[-3,9],[-14,15],[-10,-6],[-7,-15],[-3,-19],[1,-65],[-1,-7],[-2,-11],[-4,-19],[-1,-9],[-1,-21],[-1,-13],[-3,-10],[-21,-25],[-11,-7],[-7,11],[1,7],[0,5],[0,3],[3,5],[12,4],[4,4],[4,9],[2,12],[1,11],[-4,12],[-5,4],[-13,1],[0,5],[-2,25],[-1,6],[-5,7],[-5,3],[-12,-1],[-4,-2],[-1,-5],[-1,-6],[-3,-8],[0,-3],[0,-7],[0,-4],[-2,-2],[-1,0],[-1,0],[0,-28],[1,-15],[4,-12],[-1,-15],[-7,-42],[-1,-4],[-6,-21],[0,-2],[-8,-16],[-10,5],[0,-21],[1,-10],[1,-9],[6,-28],[2,-91],[2,-100]],[[63576,73231],[-18,6],[-9,0],[-6,-5],[-6,-10],[-7,-7],[-8,-5],[-6,-4],[-13,2],[-1,0],[-9,15],[-8,21],[-4,8],[-6,14],[-5,10],[-4,9],[-5,12],[-4,6],[-4,8],[-2,16],[-3,13],[-6,0],[-15,-11],[-8,0],[-5,8],[-4,11],[-14,18],[0,10],[1,12],[-2,8],[0,5],[-4,5],[-37,30],[-18,24],[-5,17],[-1,25],[3,6],[14,15],[1,4],[0,5],[1,3],[51,16],[12,11],[2,7],[2,7],[0,1],[2,8],[0,8],[-2,7],[-8,30],[-4,7],[-16,11],[-16,25],[-7,16],[-3,16],[0,20],[5,17],[8,13],[10,8],[17,6],[15,16],[7,4],[3,1],[-6,22],[-8,18],[-19,29],[-47,92],[-17,26],[-5,6],[-4,2],[-3,-8],[-3,-4],[-4,-2],[-21,1],[-6,-3],[-6,-6],[-4,-7],[-12,-21],[-33,-31],[-5,-4],[-15,-25],[-4,-4],[-6,-1],[-19,-11],[-12,-11],[-9,-12],[-14,-30],[-9,-15],[-8,-8],[-4,-3],[-27,-18],[-14,-13],[-2,-5],[-1,-6],[-10,-27],[-5,-22],[-1,-5],[-3,-5],[-2,-2],[-17,-16],[-3,-1],[-4,2],[-8,6],[-5,0],[-4,-4],[-4,-6],[-4,-7],[-7,-21],[-2,-3],[-2,-3],[-5,-4],[-2,-3],[-3,-9],[-5,-18],[-5,-7],[-16,-14],[-5,-7],[-3,-8],[-8,-27],[-3,-9],[-4,-7],[-5,-6],[-4,-4],[-6,-4],[-5,-1]],[[62920,73496],[-10,34],[-1,7],[0,7],[0,8],[1,7],[1,1],[0,2],[4,19],[0,17],[-1,17],[-4,19],[-6,9],[-10,9],[-7,11],[0,19],[6,10],[10,-3],[17,-14],[3,1],[13,15],[6,1],[3,2],[-1,4],[-1,1],[-2,4],[-1,3],[-12,13],[-7,12],[-3,9],[-1,9],[-2,9],[-5,6],[-20,15],[-9,11],[-4,19],[4,15],[9,9],[20,7],[4,2],[2,5],[0,5],[-2,6],[0,10],[3,5],[4,4],[3,8],[-1,10],[-4,7],[-4,5],[-5,2],[-17,-3],[-6,2],[-4,4],[-6,15],[-4,5],[-10,2],[-19,-16],[-10,-4],[-6,3],[-4,7],[-6,20],[-4,8],[-5,5],[-11,5],[-8,11],[-11,36],[-8,12],[-17,9],[-9,8],[-6,5],[-13,20],[-2,7],[-12,42],[-6,11],[-8,6],[-29,5],[-9,7],[0,8],[-1,6],[18,18],[46,-12],[19,3],[4,5],[2,6],[3,28],[1,4],[6,9],[5,12],[4,14],[5,38],[0,4],[0,3],[-1,4],[-7,15],[-4,6],[-4,4],[-6,-1],[-4,-2],[-2,-1],[-5,1],[-12,21],[0,1],[-65,59],[-16,25],[-9,32],[-3,6],[-6,7],[-2,4],[-1,7],[-1,13],[-1,6],[-5,9],[-6,8],[-5,8],[-4,14],[0,11],[0,14],[7,20],[11,15],[11,8],[22,17],[7,14],[5,24],[0,13],[-5,4],[-7,1],[-5,3],[-5,7],[-11,25],[-8,10],[-3,1],[-4,2],[-3,6],[2,19],[-1,14],[-8,-2],[-3,-2],[-12,-10],[-7,1],[-12,9],[-13,2],[-5,6],[-4,8],[-6,5],[-9,16],[-4,4],[-1,-11],[-2,-7],[-5,1],[-6,6],[-4,10],[3,19],[28,-2],[9,12],[0,9],[-4,8],[-14,19],[-5,2],[-18,0],[-5,4],[-1,7],[2,12],[-10,35]],[[62642,74515],[9,11],[4,16],[-7,6],[-4,1],[-4,0],[-4,-2],[-3,-4],[-2,-6],[-1,-6],[1,-6],[2,-6],[9,-4]],[[62815,73485],[-3,0],[-16,6],[-18,14],[-59,21],[-6,4],[-14,9],[-25,1],[-16,6],[-8,1],[-2,0],[-1,1],[-6,5],[-4,2],[-4,2],[-6,5],[-6,7],[-3,6],[0,6],[0,5],[1,5],[1,6],[-1,4],[-7,5],[-3,3],[-1,5],[-2,13],[-1,5],[-3,4],[-2,3],[-3,3],[-2,6],[3,9],[-2,6],[-4,4],[-3,1],[-3,2],[0,6],[1,5],[-1,4],[-3,0],[-2,-1],[-2,-3],[-1,-1],[-29,16],[-7,-4],[-2,9],[-3,30],[-2,6],[-2,6],[-2,6],[-5,19],[-2,6],[-3,2],[-3,6],[-2,6],[-1,4],[-1,3],[-10,11],[-1,3],[-1,2],[-1,3],[-2,1],[-3,-1],[-1,1],[-8,8],[-1,5],[3,7],[-6,8],[-4,12],[-8,57],[-3,13],[-6,7],[1,2],[1,2],[-7,1],[-5,1],[-2,1],[-4,4],[0,2]],[[62446,73945],[-3,7],[-4,23],[-2,7]],[[62437,73982],[8,6],[13,4],[12,-1],[9,4],[7,7],[2,1],[10,13],[11,6],[9,-8],[2,-4],[19,-39],[2,-10],[2,-10],[-1,-14],[-3,-22],[2,-8],[5,-6],[10,4],[8,12],[8,4],[1,-4],[7,-16],[4,-12],[2,-7],[4,-3],[14,-2],[4,-4],[9,-15],[3,-2],[3,-1],[3,1],[4,2],[3,2],[22,24],[7,5],[34,14],[2,0],[6,0],[8,-4],[6,-8],[3,-7],[0,-10],[-1,-15],[2,-28],[-1,-9],[-9,-25],[-2,-12],[2,-6],[0,-3],[16,-7],[6,-7],[5,-10],[7,-8],[4,-4],[16,-13],[5,-9],[2,-4],[1,-5],[-1,-4],[-2,-4],[-6,-15],[-2,-15],[3,-15],[5,-16],[8,-17],[5,-19],[15,-67],[16,-52]],[[62558,74732],[-7,1],[-2,14],[0,1],[1,1],[2,1],[1,-1],[8,-11],[-3,-6]],[[64060,74336],[-5,2],[-4,-2],[-4,6],[-2,9],[0,7],[4,-4],[3,1],[2,3],[3,0],[4,-7],[1,-9],[-2,-6]],[[63996,74396],[-4,-1],[-6,0],[2,14],[-9,21],[0,14],[3,-3],[4,2],[2,-4],[1,-12],[3,-7],[3,-5],[3,-8],[0,-7],[-2,-4]],[[55573,75666],[3,8],[1,8],[-1,8],[0,10],[1,5],[3,9],[4,15],[-1,3],[-2,6],[-16,24],[-3,9],[0,12],[3,5],[5,7],[3,3],[3,3],[10,-4],[11,-10],[9,-5],[7,13],[0,5],[0,6],[0,6],[2,6],[3,2],[10,7],[23,6]],[[55651,75833],[23,8],[13,8],[7,14],[-2,5],[-1,7],[-6,6],[-5,8],[3,16],[4,10],[5,2],[5,0],[5,3],[3,3],[1,4],[3,9],[2,5],[3,-1],[3,-1],[4,0],[5,9],[8,18],[6,19],[1,15],[-2,4],[-3,0],[-3,-1],[-2,1],[-2,4],[-2,6],[-2,13],[-3,11],[-1,6],[2,8],[2,3],[9,0],[6,4],[22,26],[7,4],[7,2],[4,-2],[3,-2],[5,-7],[3,-4],[2,-4],[2,-8],[-1,0],[-2,1],[-4,-5],[1,-3],[-1,-8],[-1,-8],[-1,0],[2,-5],[20,-19],[23,-20],[3,-3],[6,-4],[18,-1],[5,-6],[4,-14],[4,-31],[3,-7],[5,-5],[4,3],[3,5],[5,-2],[4,-13],[1,-18],[1,-19],[8,-14],[3,-2],[7,0],[3,-1],[3,-3],[5,-7],[3,-3],[9,-3],[6,0],[2,-5],[0,-3],[0,-12],[-1,-10],[-4,-20],[-1,-9],[-1,-3],[-1,-2],[0,-2],[3,-3],[4,-2],[4,0],[7,1],[27,-6],[7,-4],[4,-6],[9,-17],[5,-5],[4,0],[12,8],[6,1],[8,-3],[2,-2],[5,-6],[2,-13],[-1,-5],[-3,-3],[-3,-2],[-3,-4],[0,-1],[-1,-12],[-1,-2],[0,-1],[-2,-2],[-1,-1],[1,-3],[2,-5],[0,-2],[-3,-14],[-14,-36],[-11,-18],[-2,-6],[-1,-9],[2,-19],[-2,-9],[-5,-9],[-17,-8],[-6,-10],[0,-14],[11,-26],[2,-16]],[[62066,74814],[-1,-14],[2,-19],[5,-17],[5,-8],[12,-3],[12,-10],[11,-14],[9,-18],[3,-12],[1,-11],[1,-12],[1,-13],[3,-12],[11,-30],[3,-11],[1,-10],[1,-41],[0,-5],[-6,-16],[-2,-4],[2,-13],[-12,-23],[-3,-12],[0,-14],[-2,2],[-1,1],[-1,0],[-2,1],[1,-2],[1,-2],[0,-4],[-6,-2],[-6,-6],[-10,-19],[1,-8],[6,-10],[12,-16],[0,-4],[-1,-1],[-4,-23],[-2,-6],[-2,-10],[3,-9],[7,-12],[13,-26],[4,-15],[0,-1],[-5,-7],[3,-10],[8,-18],[2,-6],[-3,-8],[-12,-5],[-4,-5],[4,-18],[12,-11],[26,-12],[30,-27],[34,-10],[4,3],[10,11],[6,3],[2,-2],[4,-5],[2,-2],[3,1],[6,3],[8,1],[17,8],[9,0],[10,-5],[15,-15],[24,-22],[16,-23],[7,-13],[3,-9],[1,-9],[1,-5],[3,-4],[4,-5],[1,-6],[0,-6],[1,-4],[3,4],[11,-19],[5,-5],[1,-1],[3,1],[1,0],[2,-2],[1,-5],[17,-37],[5,-12]],[[62446,73945],[-23,27],[-5,7],[-17,13],[-4,7],[-7,19],[-4,5],[-7,-3],[-30,-40],[-1,-7],[1,-19],[0,-7],[0,-3],[-2,-7],[-9,-31],[-1,-8],[-1,-10],[1,-8],[1,-8],[-1,-7],[-2,-7],[-2,-13],[1,-11],[0,-11],[-5,-11],[-5,-7],[-14,-11],[-6,-2],[-8,1],[-19,16],[-6,1],[-15,-7],[-7,-1],[-6,1],[-4,0],[-5,-2],[-5,-6],[-3,-7],[1,-8],[8,-14],[1,-6],[2,-12],[3,-12],[0,-4],[-1,-4],[0,-6],[1,-5],[4,-11],[0,-6],[-2,-10],[0,-5],[7,-10],[13,-10],[10,-13],[3,-15],[-6,-18],[-1,-9],[2,-23],[-2,-7],[-5,-7],[-4,-11],[2,-4],[1,-4],[1,-9],[1,-4],[3,-3],[2,-4],[0,-5],[0,-5],[1,-5],[1,-4],[3,-14],[4,-9],[4,-7],[15,-12],[1,-17],[-7,-43],[-1,-12],[0,-7],[2,-7],[1,-11],[-1,-4],[-3,-4],[-1,-4],[4,-3],[5,-3],[2,-2],[2,-4],[2,-10],[0,-12],[-1,-23],[2,-30],[0,-11],[-4,-23],[0,-7],[1,-15],[0,-6],[-1,-10],[1,-5],[3,-3],[4,-3],[14,-4],[9,9],[3,1],[5,-3],[3,-6],[4,-8],[2,-9],[0,-9],[-6,-15],[-10,-14],[-8,-14],[1,-29],[-1,-11],[-1,-12],[-2,-9],[-2,-4],[-5,-4],[-3,-3],[0,-5],[2,-11],[-1,-4],[-6,-5],[-3,-4],[-3,-8],[-2,-12],[-3,-9],[-6,-13],[-3,-9],[-2,-7],[-2,-8],[0,-7],[1,-9],[0,-7],[-2,-6],[-3,-6],[0,-3],[-1,-4],[5,-13],[9,-3],[18,4],[4,-2],[10,-8],[3,-4],[1,-5],[1,-7],[2,-7],[3,-7],[2,-1],[2,1],[2,1],[2,-3],[0,-3],[-1,-9],[0,-4],[2,-7],[4,0],[4,2],[4,4],[7,1],[8,-6],[7,-10],[10,-21],[1,-6],[-3,-7],[-10,-14],[-2,-5],[-1,-18],[5,-10],[7,-8],[1,-11],[-3,-11],[-2,-15],[0,-15],[1,-12],[2,-10],[-4,-18],[2,-9],[3,-4],[11,-2],[4,-5],[4,-17],[2,-5],[10,3],[3,-6],[2,-8],[2,-8],[16,-18],[6,-12],[-1,-19],[-3,-7],[-4,-4],[-3,-5],[-2,-11],[1,-12],[2,-10],[2,-10],[-2,-11]],[[62434,72466],[-3,10],[-6,5],[-29,7],[-5,-1],[-9,-7],[-11,-13],[-10,-16],[-6,-15],[-7,-9],[-7,-7],[-24,-13],[-2,-7],[-1,-9],[-5,-13],[-2,-10],[-3,-4],[-3,-1],[-12,5],[-2,4],[-2,6],[-11,43],[-2,12],[0,13],[2,12],[5,10],[3,4],[4,1],[2,2],[3,7],[0,6],[0,7],[-2,13],[-2,14],[-3,10],[-5,8],[-6,7],[-27,19],[-5,1],[-10,3],[-12,-3],[-10,-15],[-8,-21],[-9,-16],[-15,-5],[-5,-9],[-3,-1],[-2,2],[-6,10],[-3,3],[-7,3],[-7,1],[-28,-3],[-7,1],[-7,5],[-5,7],[-2,2],[-4,1],[-4,-1],[-6,-4],[-4,-1],[-4,3],[-13,18],[-12,10],[-3,5],[-8,9],[-3,1],[-5,-1],[-3,-2],[-2,-4],[-3,-1],[-2,0],[-2,2],[-37,33],[-4,2],[-9,-1],[-11,-5],[-11,-8],[-7,-9],[-12,-7],[-11,3],[-23,13],[-2,3],[-1,10],[-3,3],[-3,1],[-3,0],[-13,-10],[-2,-2],[-2,-5],[0,-4],[-1,-4],[-1,-5],[-35,-86],[-3,-16],[-1,-4],[-4,-3],[-24,-7],[-16,-9],[-13,-2]],[[59975,71741],[3,8],[12,37],[3,4],[0,10],[-8,41],[-19,56],[-4,9],[-4,10],[-3,18],[-4,8],[-4,7],[-4,7],[-3,14],[1,9],[7,19],[3,5],[2,3],[3,2],[4,0],[1,3],[3,14],[3,4],[4,5],[3,3],[1,5],[2,13],[3,4],[1,2],[2,3],[11,7],[3,2],[13,29],[2,6],[3,0],[30,33],[4,2],[3,4],[3,11],[3,12],[1,9],[0,7],[-1,6],[-1,5],[-1,7],[-1,4],[1,37],[-1,9],[-3,10],[-17,40],[-9,17],[-10,12],[-11,5],[-10,-6],[-9,-15],[-16,-33],[-4,-5],[-4,-3],[-3,-3],[-9,-19],[-5,-6],[-10,-4],[-23,-2],[-10,-6],[-4,-6],[-3,-11],[-3,-3],[1,4],[0,3],[-1,2],[-2,3],[-3,-9],[-4,-7],[-2,-8],[2,-9],[4,10],[6,-3],[1,9],[1,-1],[1,-1],[1,-2],[1,-3],[1,4],[1,4],[-1,4],[-1,4],[4,4],[1,-4],[1,-6],[2,-3],[3,2],[3,3],[3,2],[4,-2],[-17,-13],[-7,-10],[-5,-14],[1,-7],[3,5],[13,25],[4,4],[4,2],[-11,-19],[-1,-5],[-3,-10],[-1,-5],[-2,-6],[0,-8],[0,-6],[-2,-3],[-3,-1],[-4,-5],[-3,-1],[-9,-2],[-3,2],[-9,13],[-2,3],[-4,-2],[-3,-4],[0,-5],[2,-1],[3,-2],[9,-7],[-12,6],[-12,3],[-2,-2],[-7,-6],[-1,-3],[-1,-4],[-3,-2],[-5,-4],[-8,-10],[0,-2],[-3,3],[-4,11],[-4,2],[-4,2],[-70,73],[-7,5],[-9,10],[-6,4],[-4,1],[-4,-1],[-1,0],[-4,-1],[-4,-3],[1,2],[1,10],[-4,3],[-11,21],[-23,21],[-2,-5],[-8,8],[-12,-5],[-18,-14],[-8,-3],[-4,-2],[-8,-8],[-2,-3],[-2,-11],[-2,-2],[-8,-8],[-25,-38],[-30,-32],[-8,-13],[-24,-52],[-3,-9],[-1,-6],[-2,-4],[-6,-5],[-10,-17],[-10,-9],[0,-16],[1,-19],[-1,-16],[-5,-8],[-9,-3],[-7,-4],[-3,-13],[1,1],[1,2],[0,-4],[-6,-12],[-2,-7],[-1,-9],[0,-7],[-2,-4],[-4,0],[0,3],[2,11],[-1,16],[-4,15],[-6,7],[-4,2],[-4,4],[-3,2],[-4,-6],[-5,-15],[-3,-5],[-5,-2],[2,-1],[1,-1],[1,-3],[-3,-5],[-4,-12],[-3,-3],[-3,0],[-10,-7],[-2,-3],[-8,-16],[-1,-6],[-2,-16],[-2,-4],[-1,3],[-7,19],[-1,8],[-2,2],[-4,-1],[-4,-3],[-6,-10],[-6,-14],[-7,-10],[-6,2],[4,4],[0,4],[-6,1],[-12,6],[-6,1],[-6,-2],[-10,-9],[-4,-1],[-10,6],[-6,1],[-5,-10],[-6,-2],[-13,1],[-8,-4],[-3,-1],[-4,2],[-5,5],[-3,2],[-7,-4],[-3,-7],[-3,-9],[-4,-9],[-3,-4],[-1,0],[-1,2],[-2,2],[-4,1],[-8,-1],[-19,8],[-5,1],[-18,-17],[-3,-2],[-3,-6],[-14,-21],[-12,2],[-25,10],[-11,9],[-17,19],[-1,1],[-10,2],[-5,2],[-21,22],[-3,5],[-2,7],[-5,3],[-6,3],[-4,5],[-13,30],[-3,0],[-1,3],[-5,6],[-1,4],[-1,17],[-1,5],[-7,16],[-16,26],[-4,17],[0,5],[-1,4],[-3,7],[-4,9],[0,2],[-4,3],[-1,0],[-5,19],[-3,9],[-4,5],[-17,29],[-2,2],[-3,1],[-3,0],[-3,1],[-2,3],[-2,2],[-2,2],[-11,-1],[-5,2],[-3,5],[-3,6],[-7,4],[-8,2],[-5,-1],[-2,4],[-11,8],[-5,13],[-4,6],[-3,-1],[-6,2],[-21,16],[-5,6],[-4,8],[-52,40],[-8,3],[-1,14],[-10,10],[-111,29],[-46,-4],[-7,3],[-6,6],[-12,15],[-16,-19],[-7,-12],[-4,-19],[-4,-10],[-1,-5],[0,-18],[-1,-19],[0,-11],[3,-9],[0,-4],[-2,-4],[-2,-5],[-1,-6],[-1,-9],[1,-11],[1,-6],[2,-5],[2,-6],[2,4],[-1,-13],[-4,-21],[1,-7],[-9,-13],[-5,-10],[-3,-21],[-6,-16],[0,-5],[-3,-10],[0,-10],[3,-8],[4,-4],[-2,-9],[7,-4],[-4,-9],[-7,-11],[-4,-12],[2,0],[2,2],[0,-1],[2,-1],[-3,-5],[-3,-5],[-4,-6],[-3,-13],[-4,-8],[-8,-12],[1,25],[-1,11],[-4,5],[-6,-4],[-30,24],[-5,0],[-21,-6],[-3,-5],[-1,-9],[0,-12],[-2,0],[0,4],[-2,8],[-2,-12],[0,-4],[-4,4],[1,-4],[-1,-4],[-10,4],[-2,1],[-2,4],[-3,2],[-4,-3],[6,0],[0,-4],[-18,-18],[-5,1],[-3,-3],[-3,0],[-3,2],[-4,1],[-2,0],[-2,-1],[-4,-7],[-4,-4],[-11,-4],[-3,-4],[1,0],[1,-1],[-1,-3],[-2,0],[-7,-4],[0,-4],[6,0],[-4,-6],[-4,-6],[-4,-3],[-5,-1],[0,4],[1,2],[1,2],[0,2],[1,2],[-3,-1],[-1,-1],[-1,-2],[-4,6],[-3,2],[-3,-1],[-4,-3],[-1,-2],[0,-3],[-1,-2],[-3,-1],[0,-2],[-4,-11],[-1,13],[-10,7],[-3,13],[4,-3],[2,3],[-1,5],[-2,3],[-14,-4],[0,4],[3,2],[2,2],[3,1],[3,-1],[-6,5],[-22,-1],[-8,3],[-17,18],[-3,-6],[-2,5],[-1,17],[-1,-5],[-1,1],[-1,3],[-2,1],[-3,-2],[-1,-2],[-1,-1],[-1,-3],[-2,-4],[-1,-4],[-1,-3],[-2,-2],[-2,3],[-2,6],[-2,4],[-2,-4],[-16,27],[-2,2],[-2,9],[-4,7],[-16,10],[-5,10],[-4,-5],[-1,8],[0,2],[1,2],[0,5],[-8,0],[2,3],[-3,4],[-2,1],[-2,0],[1,5],[2,4],[3,2],[3,1],[0,3],[-1,0],[-1,1],[2,11],[-2,10],[-3,8],[-4,4],[0,3],[3,6],[2,1],[2,2],[0,4],[-1,21],[-1,10],[-3,-3],[-2,0],[-4,7],[-13,-9],[-6,2],[5,2],[1,6],[-1,8],[-3,9],[1,4],[3,10],[2,6],[3,-6],[4,6],[3,9],[5,3],[0,-4],[-2,-6],[2,-2],[4,1],[1,5],[0,5],[-2,6],[-2,4],[-1,3],[-18,22],[-21,15],[-3,6],[-2,8],[-4,-6],[-6,-10],[-3,-7],[0,-3],[2,0],[0,-4],[-6,-1],[-2,-1],[-2,-2],[-1,-5],[1,-6],[0,-4],[-4,-2],[2,-5],[1,-1],[1,-2],[-2,-4],[3,-6],[1,-2],[2,0],[1,6],[2,4],[0,6],[-1,8],[5,-8],[-2,-10],[-5,-9],[-4,-5],[2,-6],[-3,-4],[-5,0],[-4,1],[-2,6],[0,5],[2,4],[4,2],[0,4],[-5,4],[-2,4],[-3,2],[-5,-2],[-1,16],[-10,12],[-13,4],[-8,-7],[-2,0],[-1,10],[-3,5],[-4,-2],[-4,-9],[-2,3],[-3,17],[2,8],[2,12],[-1,10],[-3,6],[0,3],[0,1],[1,0],[1,0],[-1,2],[0,1],[0,2],[1,4],[-2,0],[-1,-6],[-1,-2],[0,-5],[-2,3],[0,5],[-4,7],[-8,2],[-6,-6],[1,-14],[-3,4],[-3,1],[-2,0],[-4,2],[4,4],[0,5],[-6,0],[-4,1],[-2,6],[-1,13],[2,-1],[1,1],[1,2],[-1,3],[0,2],[-1,1],[0,2],[-1,6],[-1,4],[-2,-1],[0,-5],[-3,-5],[-5,-3],[-8,-2],[-3,-2],[0,-3],[2,-4],[2,-4],[1,0],[3,1],[2,0],[3,-5],[-3,-8],[-2,-9],[-3,-6],[-5,0],[-15,12],[-2,4],[-2,0],[1,-10],[1,-3],[-8,-1],[-3,2],[-1,5],[2,6],[2,2],[8,2],[0,4],[-4,4],[-4,6],[-4,4],[-4,-3],[-4,-10],[-2,-10],[1,-9],[4,-5],[-2,-13],[11,-15],[2,-13],[-3,4],[-5,2],[-3,-2],[-2,-9],[-2,2],[-2,3],[0,-3],[0,-2],[-1,-2],[-1,-1],[1,-1],[1,0],[0,-3],[-14,-9],[-6,-7],[-5,-13],[-3,-13],[-6,-15],[-6,-9],[-8,5],[-1,-4],[-1,-2],[-1,-1],[-2,-2],[0,-1],[1,-5],[1,-2],[-4,-2],[-3,-1],[-2,2],[-1,5],[-3,-8],[-3,-1],[-4,3],[-3,6],[0,2],[1,5],[1,2],[-2,1],[-1,2],[-1,4],[21,0],[5,4],[3,6],[3,7],[4,8],[-4,8],[-5,-9],[-2,-3],[0,4],[2,5],[1,7],[-1,7],[-2,5],[-3,3],[-1,-1],[0,-8],[-2,-3],[-3,1],[-3,2],[-2,2],[-2,-1],[-3,0],[-3,2],[-1,5],[1,3],[10,4],[-2,4],[6,-1],[2,1],[1,1],[2,3],[1,3],[0,1],[10,1],[3,3],[-1,-10],[4,0],[5,5],[0,9],[-3,3],[-5,1],[-2,4],[1,4],[2,3],[3,5],[2,4],[1,-4],[1,-2],[3,-6],[-1,10],[0,12],[-2,6],[-3,1],[-3,-1],[-3,-3],[-5,-13],[-6,-7],[-2,1],[-1,6],[-4,-7],[-11,-5],[-4,-4],[-2,0],[-2,7],[-2,-2],[-4,-5],[-4,-4],[-1,8],[-2,-1],[-2,-4],[-2,-3],[-2,2],[-2,4],[-2,1],[-2,-7],[-2,0],[-3,5],[-5,5],[-6,2],[-5,-4],[0,4],[-3,-3],[-3,0],[-4,2],[-4,1],[-5,-3],[-6,-13],[-4,-4],[0,-4],[1,-5],[-4,-19],[0,-13],[-9,8],[-5,3],[-5,1],[-5,-1],[-4,-2],[-3,1],[-2,6],[-18,-12],[-2,-4],[-1,-3],[-1,-1],[-2,1],[-3,6],[-2,1],[-6,2],[-3,1],[-3,-3],[-1,8],[-2,4],[-3,0],[-4,-4],[0,3],[0,1],[-1,0],[-1,0],[2,4],[0,3],[-1,3],[-3,3],[0,3],[4,-2],[4,-2],[5,0],[4,2],[2,7],[1,9],[3,7],[3,4],[3,1],[7,-1],[20,5],[10,-1],[5,3],[2,6],[0,8],[2,7],[6,3],[12,-13],[4,3],[5,-5],[4,1],[3,1],[4,-2],[7,12],[3,3],[25,1],[3,2],[1,-3],[5,-4],[6,-2],[5,-1],[10,2],[4,-2],[5,-8],[1,6],[1,4],[6,6],[-2,7],[-3,4],[-4,1],[-5,0],[2,4],[3,-1],[0,3],[-2,6],[-3,5],[1,0],[1,1],[1,1],[1,2],[2,-2],[2,1],[3,3],[3,2],[0,4],[-6,9],[-2,6],[-2,5],[4,-4],[2,4],[-2,2],[-1,2],[0,2],[-1,3],[2,-1],[5,1],[2,0],[0,3],[-5,0],[0,4],[6,1],[3,-1],[2,-4],[2,3],[1,1],[1,-1],[2,-3],[2,0],[3,4],[6,-6],[2,2],[2,0],[0,-4],[2,-8],[1,3],[0,2],[0,1],[-1,3],[1,2],[0,2],[-1,2],[-2,1],[0,5],[2,0],[3,0],[1,-2],[2,-3],[5,17],[2,4],[0,4],[-4,0],[3,6],[1,6],[5,-6],[4,-1],[3,3],[-2,8],[15,10],[8,4],[0,3],[-2,5],[-2,3],[-3,1],[-36,-10],[-14,1],[-5,-2],[1,-7],[0,-4],[-5,4],[-30,8],[-3,-1],[-3,-5],[-3,-2],[-3,1],[-8,3],[-7,-1],[-23,-13],[-3,2],[-2,0],[0,-2],[-2,-6],[-2,1],[-3,1],[-3,0],[-3,-2],[-6,7],[-9,0],[-8,-5],[-6,-10],[-5,5],[-8,6],[-6,-1],[-1,-14],[-7,8],[-3,2],[-4,2],[-8,-2],[-3,2],[-3,4],[-5,13],[-2,3],[-4,0],[-4,-6],[-2,4],[1,2],[-2,0],[-1,-6],[-3,-14],[-1,3],[0,1],[0,1],[1,3],[-1,1],[-1,1],[0,2],[1,2],[0,1],[0,1],[-1,4],[-3,-3],[-7,-2],[-3,-3],[0,-4],[1,-6],[-2,-7],[-3,-5],[-4,-2],[1,-6],[1,-2],[-3,1],[-1,0],[-2,-1],[-2,4],[-4,-2],[-3,9],[-2,13],[0,10],[-2,10],[-2,8],[-1,8],[3,13],[2,0],[5,3],[5,6],[3,7],[-2,3],[-2,1],[-3,-1],[-2,-3],[-1,2],[-1,2],[0,4],[2,-4],[3,7],[9,-6],[5,3],[0,4],[0,5],[1,5],[-1,7],[3,-2],[2,-3],[1,-5],[0,-7],[1,0],[2,6],[2,5],[2,1],[2,-4],[1,1],[0,1],[0,1],[1,2],[0,-11],[1,-2],[2,0],[3,0],[2,-3],[2,-3],[2,-1],[3,3],[0,-2],[-1,0],[0,-1],[-1,-1],[4,-12],[4,-4],[4,1],[8,9],[5,5],[3,3],[3,3],[6,0],[3,3],[0,4],[-3,-1],[-1,-1],[-2,-2],[-2,18],[-2,10],[-3,4],[0,5],[13,5],[4,-2],[-4,-12],[3,2],[3,3],[4,8],[-5,3],[-1,4],[0,11],[1,3],[3,4],[2,3],[1,4],[0,8],[1,4],[-4,4],[0,1],[-2,1],[-1,-2],[0,-2],[-1,-2],[-7,1],[-3,-2],[-1,-5],[-2,-8],[-3,-8],[-5,-5],[-4,3],[5,7],[1,8],[-3,5],[-6,0],[-1,-2],[-3,-5],[-3,-2],[-1,3],[1,6],[1,6],[6,10],[-1,5],[2,6],[0,8],[-3,10],[-2,0],[-1,-16],[-7,-6],[-7,2],[-6,8],[-3,13],[3,12],[5,10],[6,5],[-3,9],[-5,4],[-1,0],[-5,0],[-5,-4],[-2,-8],[-2,-8],[-2,-5],[-7,0],[0,-4],[4,-5],[-2,-2],[-16,-2],[-4,-2],[-3,-5],[-2,4],[-2,3],[-2,0],[-2,-3],[0,4],[-1,2],[-1,2],[-2,-2],[-1,-1],[0,1],[-3,2],[3,6],[2,6],[1,6],[-2,6],[5,4],[1,1],[0,4],[-2,11],[1,27],[-5,-2],[-1,3],[-2,0],[-2,-3],[-2,-4],[1,10],[2,9],[0,8],[-1,9],[1,4],[-1,3],[-1,3],[1,7],[4,-5],[3,9],[0,13],[-1,7],[-4,3],[-16,17],[-24,12],[-10,9],[2,12],[5,2],[19,-2],[6,1],[24,15],[3,5],[7,13],[2,9],[1,14],[0,12],[0,8],[-2,5],[-3,5],[-2,7],[1,12],[1,2],[3,5],[2,4],[1,6],[0,5],[0,4],[-1,6],[4,6],[-3,13],[-7,22],[-7,-4],[-10,0],[-10,3],[-7,4],[-2,4],[-1,4],[-1,3],[-3,2],[-2,0],[-2,1],[-2,2],[-1,3],[-1,9],[-2,3],[-8,2],[-14,9],[-8,2],[-8,-3],[-5,-4],[-2,0],[-2,-2],[0,-4],[-1,-4],[-3,-2],[-2,3],[-6,21],[1,7],[0,9],[-2,9],[-1,8],[-3,8],[-6,10],[-3,6],[-5,-4],[-1,7],[1,17],[-4,6],[-5,0],[-4,-4],[-6,-2],[-17,0],[-3,-2],[-3,-38],[-2,2],[0,2],[-2,0],[1,-9],[0,-7],[-2,-6],[-3,-3],[-2,3],[-3,14],[-3,8],[0,-13],[-3,-1],[-3,5],[-6,10],[-2,5],[0,6],[1,8],[-8,-3],[-7,10],[-7,12],[-6,5],[1,-9],[0,-3],[-1,0],[-2,4],[-6,10],[0,6],[1,6],[0,5],[-1,6],[-2,0],[-2,-16],[-6,-4],[-7,4],[-9,13],[-3,2],[-14,8],[-1,4],[2,9],[7,-5],[3,8],[3,11],[6,2],[0,5],[-5,6],[-1,10],[2,7],[4,-7],[1,5],[0,3],[1,1],[2,2],[1,-7],[0,-6],[-1,-6],[-2,-5],[1,-2],[2,-1],[1,0],[3,0],[2,-1],[0,-3],[1,-3],[2,-2],[4,0],[4,1],[1,4],[-2,7],[0,4],[4,-4],[2,-1],[4,1],[3,3],[7,8],[2,2],[4,5],[0,12],[-2,12],[-5,7],[0,4],[7,-5],[4,-7],[2,1],[4,15],[-4,4],[-7,11],[-5,3],[-4,6],[-3,0],[-2,-2],[-2,-8],[-2,-2],[-6,1],[0,2],[3,6],[2,12],[-1,7],[-9,21],[2,-4],[-1,7],[-3,18],[-1,4],[1,3],[-4,23],[1,8],[0,9],[2,7],[2,2],[4,2],[7,5],[3,1],[7,-1],[7,-3],[6,-5],[5,-7],[10,-17],[4,-11],[1,-9],[7,-17],[7,-15],[2,-4],[2,-2],[2,-4],[1,-6],[1,-7],[0,-6],[0,-5],[1,-6],[-1,-3],[-1,-1],[-2,0],[-2,3],[-3,1],[-3,-1],[-3,-3],[5,-4],[0,-6],[-3,-7],[-2,-8],[7,-2],[2,-6],[2,-9],[3,-9],[5,-27],[5,-13],[6,3],[1,8],[-2,5],[-4,5],[-2,25],[1,10],[4,10],[4,7],[4,-3],[0,4],[2,0],[3,-6],[3,-11],[6,-24],[1,2],[3,2],[1,1],[3,-8],[4,1],[5,4],[5,3],[21,3],[14,11],[5,2],[1,1],[4,5],[1,2],[3,0],[3,-2],[2,-1],[4,3],[0,-2],[1,2],[8,-6],[6,7],[7,12],[8,7],[0,4],[-3,4],[-1,-1],[-2,-3],[-2,5],[-5,-4],[-9,1],[-3,-2],[-7,6],[-7,0],[-18,-12],[-6,-5],[-1,0],[3,7],[-5,6],[-8,23],[-4,4],[-7,3],[-2,3],[-7,8],[-3,10],[4,-7],[5,-6],[7,-8],[5,1],[0,4],[-4,7],[-3,5],[-4,4],[-4,4],[1,7],[1,15],[1,7],[-4,6],[-2,-2],[-3,-4],[-6,0],[1,6],[1,2],[-6,4],[-3,0],[-4,0],[0,3],[1,6],[1,3],[-4,0],[-3,2],[-5,6],[2,4],[2,3],[3,1],[3,0],[-6,14],[-2,8],[-2,11],[6,6],[14,5],[8,9],[1,-1],[2,-2],[0,-1],[0,-1],[3,0],[3,-1],[7,-4],[3,-2],[5,0],[-2,8],[3,3],[2,4],[2,1],[2,-4],[1,5],[0,4],[0,5],[-1,6],[-2,-4],[-5,16],[-2,4],[11,8],[2,-12],[5,-2],[2,8],[-3,15],[5,2],[4,4],[4,5],[2,5],[6,-7],[6,7],[2,9],[-6,3],[5,16],[-1,6],[-4,7],[-5,-8],[-3,-3],[-3,-1],[-5,-1],[-2,2],[-3,9],[-1,2],[-3,-2],[-3,-3],[-2,-1],[-3,6],[-3,-5],[-9,-10],[-4,-1],[-3,2],[-4,11],[-4,3],[-5,6],[-3,13],[1,15],[4,10],[0,4],[-1,0],[-5,0],[4,7],[6,8],[7,7],[5,2],[3,5],[-2,12],[-7,18],[-8,16],[-3,5],[-9,8],[-2,2],[-6,6],[-3,8],[0,6],[-2,12],[-2,12],[-2,9],[-5,3],[-13,-1],[-7,1],[-5,4],[3,5],[1,12],[2,6],[4,2],[3,-2],[-1,-4],[-5,-2],[0,-4],[3,0],[3,-2],[2,-3],[2,-4],[-2,10],[2,4],[3,3],[3,3],[5,13],[29,37],[-3,3],[-1,1],[0,3],[1,4],[0,4],[-1,5],[10,1],[4,2],[3,5],[-3,9],[5,5],[16,9],[1,1],[0,2],[0,6],[4,23],[0,12],[-2,8],[-4,5],[-8,1],[-7,-4],[-5,-8],[-5,-4],[-7,8],[-39,-12],[-58,-17],[-7,-5],[-3,-5],[-2,0],[-13,-11],[-2,-3],[-3,0],[-15,4],[-3,0],[-3,-3],[-3,-1],[-3,-5],[0,-1],[-1,-3],[-2,1],[-3,4],[-22,-9],[-11,0],[-11,9],[-1,13],[7,31],[4,29],[11,17],[2,14],[2,32],[-1,6],[-5,17],[-1,8],[0,5],[1,2],[1,1],[1,4],[0,14],[2,15],[-1,6],[-4,1],[1,7],[4,29],[0,4],[-2,12],[0,5],[1,5],[3,8],[0,5],[1,6],[6,16],[3,4],[14,-8],[5,5],[9,7],[3,3],[12,19],[2,7],[1,5],[0,7],[1,4],[1,2],[-1,3],[0,2],[1,1],[3,0],[2,1],[1,1],[2,8],[1,11],[0,11],[-2,9],[2,8],[1,4],[2,1],[3,-1],[4,2],[8,5],[9,4],[5,8],[12,26],[3,3],[2,1],[4,4],[3,4],[30,60],[6,7],[11,1],[24,-3],[10,4],[3,-2],[7,-6],[16,-3],[6,3],[8,10],[7,14],[8,11],[13,1],[10,-3],[10,-1],[6,3],[10,9],[4,1],[5,-6],[3,-9],[4,-18],[-4,-4],[-2,0],[-1,2],[0,1],[-1,-2],[-2,-1],[12,-21],[16,-17],[16,-12],[20,-8],[8,0],[3,1],[9,11],[5,1],[7,-3],[7,-5],[7,-2],[6,6],[6,-4],[8,-1],[8,3],[6,16],[15,13],[5,10],[-5,0],[-14,8],[-4,-4],[-3,0],[-1,6],[0,6],[-2,1],[-2,1],[-1,2],[-2,5],[-1,2],[-1,4],[0,7],[-1,4],[-2,1],[-3,0],[-2,1],[-9,15],[-3,6],[0,4],[4,2],[3,3],[4,9],[3,2],[3,-2],[2,-1],[3,7],[5,-11],[0,-2],[3,0],[0,1],[1,3],[3,1],[46,-12],[12,-7],[6,-10],[-5,-14],[-24,-20],[-7,-10],[1,-15],[10,-5],[23,4],[23,14],[66,5],[14,-4],[24,1],[-3,-1],[-2,-2],[-2,-4],[0,-5],[11,7],[13,0],[13,-6],[12,-9],[2,3],[1,-1],[1,-2],[2,0],[2,1],[3,5],[3,2],[15,4],[5,6],[4,4],[5,-2],[9,-4],[9,-1],[8,-3],[4,-3],[6,-7],[5,-2],[5,-2],[21,1],[5,2],[4,5],[3,7],[2,16],[2,7],[4,-2],[4,0],[5,3],[4,3],[-5,10],[-6,9],[-7,7],[-6,3],[-15,0],[-2,-2],[-6,-9],[-3,-2],[-15,6],[-25,25],[-15,6],[5,18],[10,10],[20,13],[8,8],[12,20],[4,3],[82,13],[12,6],[11,10],[6,8],[2,0],[2,-3],[2,-5],[3,-4],[3,2],[3,3],[3,2],[3,3],[1,5],[2,4],[2,3],[3,2],[3,1],[3,-1],[5,-3],[4,-7],[1,-12],[4,1],[53,19],[32,3],[10,-8],[6,1],[4,11],[-3,13],[-11,3],[-22,-4],[-2,-1],[-2,-2],[-3,-1],[-3,0],[-3,2],[-5,8],[-2,2],[-5,1],[-9,6],[-6,1],[-66,-4],[-5,-3],[-4,-5],[-5,-4],[-6,4],[-2,5],[-1,5],[-2,5],[-3,1],[1,2],[1,1],[1,1],[1,1],[-1,6],[-1,4],[-3,3],[-2,3],[-2,-4],[-2,4],[-3,-4],[-3,-2],[-7,-3],[0,4],[2,1],[2,2],[1,4],[0,6],[3,-3],[1,-1],[0,2],[0,1],[1,1],[1,0],[-3,8],[-6,10],[-3,4],[-3,4],[-6,-2],[-5,9],[-16,12],[-6,7],[-5,12],[-6,8],[-15,13],[1,1],[0,1],[1,2],[-4,3],[-1,6],[-1,8],[-2,8],[5,4],[6,10],[4,13],[4,22],[3,9],[1,7],[-6,7],[7,16],[10,19],[11,13],[9,-3],[1,0],[3,6],[4,1],[53,-16],[55,-21],[74,-17],[70,-3],[8,1],[4,3],[6,8],[4,1],[3,4],[2,7],[2,4],[2,-2],[3,4],[3,10],[3,2],[4,-5],[11,-4],[10,-11],[91,-36],[9,-13],[5,-4],[23,-7],[72,3],[7,6],[2,2],[4,-1],[6,-2],[3,-1],[11,4],[2,-1],[2,-2],[2,-1],[2,1],[0,2],[1,3],[2,2],[11,7],[9,10],[16,24],[4,8],[2,8],[1,10],[0,12],[1,6],[2,11],[1,7],[-1,4],[-5,5],[-1,5],[3,8],[6,4],[12,1],[2,2],[4,11],[2,3],[3,1],[42,26],[59,63],[33,27],[11,13],[2,2],[27,14],[7,8],[5,15],[18,33],[1,3],[4,13],[10,4],[15,1],[1,4],[2,1],[3,3],[0,4],[1,3],[2,1],[1,-1],[2,-6],[1,-1],[5,4],[6,11],[4,6],[20,16],[3,4],[4,3],[4,0],[4,-3],[3,9],[6,8],[8,2],[6,-5],[5,1],[17,10],[4,3],[4,0],[8,1],[8,3],[5,4],[3,-2],[20,8],[9,7],[13,14],[44,23],[44,37],[10,1],[21,-6],[29,0],[7,-2],[13,-8],[60,-10],[5,3],[8,-4],[36,4],[91,-20],[32,15],[10,1],[4,-2],[8,-7],[10,-5],[37,-3],[14,2],[15,7],[4,4],[11,14],[10,9],[8,17],[6,20],[2,17],[4,-2],[8,-2],[4,-4],[0,4],[1,1],[2,-1],[2,0],[2,-7],[3,-5],[2,-4],[-1,-4],[0,-4],[10,-13],[7,-4],[8,1],[3,3],[4,7],[3,2],[4,-1],[3,-3],[6,-8],[0,-4],[-15,3],[-7,-2],[-6,-7],[-3,-9],[-2,-13],[-2,-14],[0,-11],[2,-9],[8,-22],[8,-18],[15,-20],[0,-4],[-4,0],[2,-8],[2,-9],[4,-8],[8,-7],[8,-16],[4,-5],[17,-11],[12,-3],[5,-5],[8,-13],[11,-10],[12,-6],[13,-3],[12,2],[6,4],[10,11],[17,4],[30,20],[6,2],[7,3],[11,15],[6,2],[0,-4],[-1,-3],[-1,-4],[-3,-3],[-2,-2],[0,-9],[-5,-18],[1,-10],[2,0],[1,14],[2,13],[4,11],[4,7],[3,4],[1,1],[17,-25],[0,8],[2,0],[21,-44],[4,-17],[0,-24],[-1,-6],[-3,-10],[0,-2],[0,-20],[1,-9],[3,-10],[12,-25],[7,-8],[9,-28],[5,-6],[14,-12],[8,-3],[1,-3],[1,-4],[0,-7],[1,-7],[2,-3],[3,-1],[3,-2],[2,-3],[3,-7],[1,-3],[3,-1],[5,-1],[3,-4],[5,-3],[7,3],[11,10],[15,21],[2,5],[1,6],[4,11],[1,4],[1,1],[1,13],[4,6],[3,-1],[5,-3],[6,-2],[24,0],[22,-9],[41,-33],[8,-12],[5,-19],[1,-26],[1,-10],[5,-4],[6,-2],[10,-11],[6,-4],[35,1],[10,-4],[7,-10],[3,-3],[6,-3],[6,-1],[5,-2],[7,-13],[4,-6],[12,-5],[1,-4],[6,-11],[6,-4],[11,2],[4,-2],[2,3],[4,3],[2,2],[2,5],[4,16],[3,10],[4,9],[5,8],[5,6],[2,-10],[5,-6],[5,0],[5,7],[2,-4],[7,2],[0,-37],[5,-10],[14,-12],[4,-4],[3,-6],[5,-14],[11,8],[13,-3],[33,-18],[17,-5],[11,-6],[6,0],[12,5],[6,-2],[12,-17],[6,0],[10,5],[10,-5],[8,-1],[3,4],[21,2],[4,5],[10,16],[4,4],[9,4],[3,0],[2,-3],[4,-9],[2,-4],[3,2],[5,1],[3,1],[2,2],[3,4],[2,4],[4,2],[5,11],[1,3],[2,2],[6,3],[19,7],[5,5],[4,6],[6,3],[31,0],[23,8],[2,3],[7,9],[3,2],[10,-2],[5,-2],[8,-12],[7,-2],[4,3],[8,8],[5,1],[4,2],[15,15],[1,2],[1,3],[2,2],[3,1],[18,-7],[4,-6],[7,-15],[16,-24],[11,-10],[11,-3],[5,3],[6,4],[5,2],[8,-9],[3,-1],[6,1],[3,-1],[16,-22],[5,-4],[6,-1],[4,5],[18,10],[6,1],[16,-24],[8,-9],[11,-4],[5,2],[8,5],[7,3],[10,6],[6,7],[13,6],[46,48],[9,-7],[8,-1],[8,4],[9,8],[10,15],[4,2],[9,2],[4,2],[3,4],[17,35],[19,24],[4,2],[4,-2],[12,-6],[7,1],[10,12],[5,3],[5,1],[7,4],[6,5],[5,6],[11,19],[6,7],[7,2],[7,1],[5,3],[26,34],[7,4],[6,5],[3,2],[10,2],[4,2],[5,7],[4,10],[3,13],[1,13],[3,3],[16,23],[4,11]],[[57782,75326],[4,-28],[0,-6],[1,-2],[2,-4],[1,-4],[0,-4],[-3,-3],[-3,1],[-5,3],[-4,0],[-4,-3],[-2,-8],[-1,-15],[1,-16],[5,-10],[5,-10],[4,-10],[5,-27],[4,-8],[5,-7],[2,-5],[1,-6],[1,-1],[1,-2],[0,-3],[-1,-2],[-1,0],[-2,-1],[0,-3],[2,-10],[4,-10],[5,-9],[8,-8],[4,-8],[6,-16],[15,-23],[42,-43],[60,-41],[86,-66],[27,-10],[2,-1],[0,-1],[1,-1],[2,-1],[2,2],[2,5],[2,1],[6,-1],[7,-5],[4,-6],[-2,-15],[-4,-11],[-5,-10],[-5,-5],[-3,-1],[1,-4],[2,-5],[2,-5],[2,-4],[0,-1],[2,-1],[-1,-4],[-1,-3],[-1,0],[-1,-12],[-2,-10],[-2,-9],[-3,-8],[-3,-3],[-4,-2],[-3,-3],[-2,-5],[0,-3],[0,-3],[0,-2],[1,-2],[0,-4],[-2,-3],[-1,-1],[-6,1],[-2,4],[-2,0],[-2,-1],[-2,-6],[-1,-1],[-3,-1],[-5,-6],[-11,-4],[-3,-1],[-1,-2],[-1,-3],[-2,-2],[-3,-1],[-7,0],[-3,2],[-2,4],[-3,4],[-7,1],[-33,-7],[-8,5],[2,19],[-3,6],[-2,2],[-3,0],[2,14],[-3,12],[-5,8],[-7,3],[1,-9],[6,-10],[2,-10],[1,-6],[-1,-8],[-2,-9],[-3,-5],[-8,2],[-15,24],[-7,6],[-9,2],[-19,12],[-10,2],[-9,0],[-3,2],[-3,6],[-2,1],[-10,-4],[-5,-1],[-2,2],[-3,3],[-13,-8],[-2,-2],[-3,0],[-15,-11],[-4,-1],[-5,-4],[-5,-6],[-3,-5],[-6,-16],[-2,-7],[1,-5],[-5,-3],[-22,5],[-5,4],[-4,6],[-4,4],[-11,5],[-11,1],[-59,-14],[-9,-8],[-6,-20],[-7,-47],[-6,-18],[-26,-42],[-12,-34],[-25,-30],[-1,-3],[-3,-7],[-1,-2],[-3,-2],[-7,-1],[-8,-8],[-13,0],[-5,-1],[-5,-7],[-8,-18],[-3,-4],[-8,-2],[-3,0],[-11,-6],[-16,-16],[-4,-6],[-5,-6],[-17,-4],[-6,-5],[-9,-13],[-3,-3],[-4,-3],[-2,-18],[-3,-7],[-9,-8],[-2,-4],[0,-10],[-2,-10],[-4,-8],[-15,-23],[-2,-2],[-9,-3],[-3,-5],[-6,-10],[0,-2],[-2,-2],[-7,-15],[-5,-6],[-6,-7],[-7,-5],[-6,-1],[-3,-5],[1,-11],[3,-11],[4,-6],[-13,-20],[-4,-6],[-11,-10],[-9,-13],[-3,-3],[-15,-9],[-3,0],[-3,3],[1,7],[2,7],[2,3],[4,6],[4,13],[2,12],[1,6],[13,28],[3,22],[-1,16],[-5,13],[-9,10],[3,4],[1,4],[-1,3],[-4,1],[-1,3],[3,6],[3,5],[2,1],[3,4],[14,9],[6,1],[4,11],[14,15],[13,18],[16,10],[13,17],[7,8],[9,7],[8,2],[13,-2],[4,2],[3,7],[6,15],[4,7],[7,-5],[9,5],[7,10],[4,13],[-9,29],[-2,5],[-3,0],[-18,-5],[-6,-5],[-4,-2],[-19,0],[-8,-4],[-21,-20],[-8,8],[-4,3],[-5,1],[-4,-2],[-4,-5],[-4,-2],[-8,6],[-4,-1],[-15,-7],[-52,1],[-7,2],[-4,4],[-2,9],[-2,10],[-2,9],[2,9],[-1,13],[-3,13],[-4,10],[2,1],[1,1]],[[57234,74596],[10,-2],[9,7],[6,12],[2,15],[5,11],[15,21],[-2,7],[0,4],[1,2],[2,2],[-1,0],[-1,1],[1,3],[2,1],[1,2],[1,3],[-1,6],[2,-6],[0,-2],[2,0],[2,3],[2,6],[2,11],[2,0],[1,-3],[1,-3],[2,-1],[2,-1],[4,2],[0,3],[-2,5],[-1,2],[4,6],[8,6],[4,5],[2,6],[0,2],[-3,2],[-3,6],[-1,5],[1,4],[2,2],[5,1],[2,3],[2,7],[0,7],[-8,6],[-2,6],[-4,13],[-1,9],[5,15],[-2,3],[-4,2],[0,5],[5,13],[-3,10],[-1,11],[1,11],[3,13],[-4,10],[3,5],[17,3],[5,4],[7,10],[8,8],[2,3],[0,3],[2,2],[3,1],[14,24],[3,-6],[5,-5],[6,-3],[5,1],[4,6],[2,10],[1,13],[0,12],[-1,12],[-4,29],[-2,22],[-1,10],[-3,9],[2,6],[-1,15],[1,7],[-1,3],[-1,4],[0,5],[0,4],[-5,-13],[-3,5],[-13,11],[-15,19],[2,7],[1,9],[-4,1],[-5,4],[-11,4],[-8,11],[-4,3],[-8,-1]],[[57314,75173],[-3,6],[-1,12],[1,13],[3,14],[12,16],[29,-2],[13,7],[4,8],[2,11],[1,10],[0,5],[0,3],[1,3],[1,5],[0,4],[-1,2],[-3,3],[-1,3],[2,3],[1,3],[2,3],[8,13],[5,5],[5,1],[26,-7],[5,1],[3,4],[6,9],[3,2],[3,-2],[5,-7],[3,-2],[3,2],[2,4],[4,5],[3,3],[3,0],[2,-2],[3,0],[3,5],[3,2],[5,-2],[2,1],[4,6],[2,7],[2,7],[4,2],[6,6],[6,18],[6,6],[1,0],[5,0],[5,-3],[4,-4],[5,-6],[3,1],[6,-1],[7,-3],[1,1],[0,2],[1,3],[6,13],[4,4],[6,2],[9,-4],[9,-8],[8,-12],[12,-29],[6,-12],[6,-9],[21,-18],[4,-6],[7,-15],[3,-4],[5,3],[-4,3],[1,1],[1,2],[1,1],[-1,1],[0,1],[-1,0],[-1,2],[6,3],[3,3],[2,5],[3,-3],[1,0],[1,3],[1,6],[21,9],[11,-1],[14,-12],[4,-2],[3,0],[4,2],[1,4],[-5,4],[1,6],[0,8],[1,6],[1,1],[1,0],[1,0],[1,-1],[6,1],[2,0],[7,-3],[7,-6],[4,-1],[14,2],[4,-2],[10,-4]],[[57238,74062],[5,4],[2,-5],[-1,-21],[-2,-9],[-4,1],[-9,10],[-8,6],[-4,5],[-1,7],[2,5],[5,2],[10,-1],[1,0],[2,0],[1,-1],[1,-3]],[[57225,74257],[0,-12],[-6,-6],[-6,-3],[-19,-5],[-12,-9],[-25,-6],[-6,0],[-7,4],[-3,3],[-1,4],[-12,6],[0,4],[6,16],[10,16],[11,12],[19,6],[24,14],[3,1],[3,-1],[2,-2],[2,-5],[2,-4],[4,-1],[0,-4],[-1,-5],[0,-7],[0,-8],[1,-4],[-3,-10],[3,-2],[5,2],[4,6],[2,0]],[[57682,74545],[4,2],[9,-2],[7,-6],[1,-11],[-5,-6],[-11,-2],[-5,-3],[-9,-13],[-6,-4],[-6,4],[-3,0],[-5,4],[-5,7],[1,12],[-2,5],[-1,5],[1,6],[2,4],[2,2],[2,-1],[0,-7],[7,6],[8,4],[7,0],[7,-6]],[[57679,74431],[2,0],[1,-2],[0,-5],[-3,-1],[-4,4],[-5,2],[-5,0],[-4,5],[0,6],[3,5],[2,7],[2,6],[9,-7],[1,-4],[-2,-5],[0,-7],[3,-4]],[[48500,71745],[4,1],[5,-1],[6,-6],[5,-6],[5,-2],[7,6],[-2,-12],[-13,-17],[-1,-9]],[[49181,71392],[7,-24],[2,-7]],[[50397,75695],[-2,-3],[-1,-6],[-1,-6],[3,-2],[0,-3],[-5,-12],[-1,-7],[6,1],[5,-6],[1,-10],[-5,-6],[-2,-1],[-5,-3],[9,-20],[0,-7],[3,-4],[17,-3],[2,0],[3,3],[2,3],[1,4],[2,2],[17,4],[9,6],[3,16],[1,2],[1,0],[1,0],[0,-2],[4,-2],[3,0],[3,3],[3,4]],[[50883,75598],[-1,-8],[-2,-12],[1,-10],[0,-10],[4,-8],[5,-6],[6,2],[6,0],[4,-8],[2,0],[3,4],[3,-1],[7,-7],[-6,-21],[-2,-6],[0,-9],[-3,-4],[-2,-3],[-2,-6],[-5,3],[-10,-3],[-9,6],[-2,5],[-5,-1],[-6,-10],[-3,-13],[-1,-21],[0,-14],[2,-11],[4,-8],[10,-9],[5,-11],[6,-15],[0,-7],[-4,-6],[-1,-8],[2,-9],[1,-12],[1,-4],[1,-3],[5,-7],[1,-5],[-1,-11],[-7,-19],[-3,-15],[-5,-8],[-7,-18],[-10,1],[-10,-12],[-3,-16],[-8,-8],[-25,-31],[-5,-13],[-9,-3],[-6,-3],[-8,-3],[-3,-1],[-1,-1],[-4,-7],[-1,-2],[-1,-5],[-3,-1],[-3,1],[-4,-14],[-35,-24],[-56,-42],[-6,-9],[-16,-18],[-21,-14],[-8,-10],[-7,-16],[-14,-38],[-8,-18],[-9,-14],[-19,-17],[-11,-5],[-19,-3],[-19,-8],[-6,-6],[-3,-1],[-9,1],[-54,-27],[-24,-3],[-70,-42],[-19,-7],[-2,-2],[-5,-15],[-1,-4],[-2,-3],[-3,-3],[-6,7],[-2,1],[-13,-1],[-11,-3],[-11,-8],[-7,-7],[-32,-50],[-15,-33],[-30,-50],[-5,-17],[7,-7],[8,-5],[3,0],[2,3],[-1,4],[-4,5],[5,-1],[3,-3],[3,-5],[7,-14],[7,-9],[4,0],[5,-3],[0,-12],[-4,-12],[-3,-7],[-18,-8],[-7,-11],[-14,-35],[-8,-11],[-9,-5],[-8,-2],[-7,17],[13,3],[7,-7],[9,9],[10,26],[-6,1],[-8,-1],[-23,-12],[-5,-6],[-5,-8],[-4,-11],[-9,-34],[-4,-18],[-5,-11],[-5,-9],[-4,-10],[-2,-15],[-7,-12],[-19,-61],[-3,-6],[-8,-10],[-3,-7],[-10,-22],[-16,-22],[-17,-55],[-8,-13],[-14,-15],[-7,-17],[-12,-42],[-7,-18],[-18,-32],[-29,-78],[-1,-6],[-1,-15],[-2,-10],[-3,-7],[-6,-12],[-4,-9],[-3,-10],[-2,-10],[-2,-8],[-8,-21],[-3,-10],[-2,-21],[1,-30],[1,-25],[6,-39],[17,-63],[3,-10],[4,-10],[-4,-4],[-4,-5],[2,-11],[3,-22],[4,-19],[7,-22],[8,-24],[10,-30],[4,-9],[10,-13],[11,-18],[6,-8],[7,-3],[13,-2],[13,-7],[12,-11],[9,-16],[-1,-1],[-3,-4],[3,-2],[2,-4],[8,-10],[3,1],[2,-7],[0,-10],[-2,-4],[-5,-1],[-5,-2],[-4,-3],[-4,-7],[-4,-12],[0,-2],[-1,-2],[-6,0],[-2,-2],[-3,-6],[-3,-3],[-3,-4],[-3,-9],[2,-8],[-6,2],[-4,-2],[-3,-3],[-5,-1],[-9,0],[-3,-3],[-4,-5],[-4,-10],[0,-8],[1,-8],[-2,-9],[-4,-7],[-5,-3],[-11,0],[-13,-5],[-7,-4],[-8,-11],[-27,-19],[-4,-5],[-2,-7],[-2,-2],[-10,-19],[-3,-9],[-1,-12],[0,-6],[-1,-2],[-9,-1],[-4,-2],[-3,-5],[-1,-9],[-10,1],[-3,-23],[4,-54],[-3,-7],[-5,-2],[-10,1],[-6,-3],[-5,-7],[-4,-9],[-3,-10],[-1,-8],[-2,-9],[-1,-25],[-1,-40],[0,-10],[-3,-6],[-7,-5],[-5,-9],[-3,-8],[-11,-47],[-1,-10],[1,-24],[-1,-6],[-7,16],[-7,-31],[-4,-5],[-6,-4],[-2,-8],[1,-11],[9,-28],[3,-5],[8,-10],[7,-6],[5,-1],[3,7],[5,-5],[2,-7],[-1,-6],[-4,-6],[-3,-4],[-2,-2],[-3,0],[-2,2],[-3,-2],[-7,-5],[-5,-2],[-8,-7],[-10,0],[-4,-1],[-4,-3],[-6,-8],[-3,3],[-11,9],[-9,3],[-18,1],[-5,-1],[-4,-3],[-3,-5],[-2,-5],[1,-6],[3,-10],[-8,3],[-9,4],[-1,6],[-2,6],[-6,1],[-8,6],[-4,2],[-4,-8],[-1,-5],[-8,0],[-9,2],[-8,-7],[-5,-5],[-12,-20],[-5,-5],[-5,-2],[-2,-2],[-2,-2],[-2,-4],[-1,-3],[-1,-2],[-3,-20],[0,-4],[-2,-3],[-2,1],[-1,2],[-2,0],[-3,-3],[-5,-8],[-3,-1],[-4,-2],[-14,-10],[-7,-7],[-1,-7],[-2,-4],[-5,1],[-2,-5],[-2,-11],[-3,-12],[-9,-20],[-16,-28],[-7,-17],[-5,-24],[-2,-20],[-3,-17],[-2,-16],[-8,-36],[-6,-17],[0,-7],[1,-5],[1,-5],[0,-5],[0,-5],[-2,-3],[-2,-2],[-6,-1],[-2,-1],[-3,-6],[-10,-11],[-4,-8],[-3,-25],[-3,-7],[-4,-5],[-5,-9],[-1,-4],[-1,-12],[-2,-4],[-2,-3],[-3,-2],[-3,-1],[-3,-12],[-4,-6],[-6,-3],[-5,-2],[-11,6],[-7,14],[-7,16],[-8,13],[-9,11],[-6,3],[-7,2],[-5,-2],[-9,-8],[-5,-2],[-3,1],[-7,6],[-4,1],[-22,-7],[-4,-4],[-6,-23],[-5,-26],[-8,-13],[-1,-2],[-3,-5],[-7,-5],[-10,-3],[-5,3],[-5,-4],[-8,9],[-5,7],[-5,4],[-3,-1],[-2,-6],[-3,-1],[-3,3],[-7,17],[-8,10],[-5,1],[-15,-9],[-25,7],[-22,-3],[-20,6],[-28,-5],[-4,-5],[-4,-7],[-6,-7],[-10,-11],[-17,1],[-11,14],[-6,-1],[-4,-4],[-10,9],[-4,9],[-8,-1],[-10,-1],[-4,-6],[-14,-3],[-20,11],[-10,6],[-14,-5],[-20,-10],[-26,12],[-7,-2],[-8,-11],[-24,-6],[-8,-2],[-50,7],[-4,-2],[-4,-6],[-8,-23],[-1,-5],[-4,-7],[-3,-9],[-1,-9],[-8,-24],[-18,-4],[-7,-25],[-10,-11],[-3,-3],[-6,-4],[-11,-5],[-12,1],[-32,7],[-6,0],[-3,-1],[-3,-4],[-20,-24],[-19,-3],[-13,-14],[-3,-2],[-10,-2],[-5,-2],[-3,-4],[-4,-8],[-7,-24],[-1,-5],[-4,-22],[-3,-9],[-1,-2],[-2,-4],[-3,-2],[-4,-3],[0,-5],[1,-5],[-3,-8],[-9,-29],[-1,-6],[-1,-28]],[[48517,71873],[-6,0]],[[48511,71873],[-2,13],[-5,5],[-6,5],[-6,0],[0,-6],[-3,-5],[-1,-7],[0,-9],[2,-8],[-2,-4],[1,-9],[2,-6],[1,-5],[-1,-6],[-2,-4],[-2,-4],[-6,-4],[-28,-17],[-4,-4],[-8,-5],[-5,18],[-12,12],[-5,6],[-6,-4],[-6,3],[-6,6],[-11,6],[-5,7],[-6,15],[-18,30],[-5,6],[-6,0],[-13,-4],[-14,8],[-8,16],[-5,20],[-6,18],[-15,14],[-2,8],[-1,10],[-2,11],[-2,10],[-10,19],[-6,26],[-5,18],[-6,20],[-6,9],[-2,5],[3,2],[2,0],[9,-14],[3,-6],[-2,-5],[2,-5],[5,-9],[3,2],[2,3],[3,8],[6,12],[-2,0],[-6,-3],[-4,1],[-3,9],[2,18],[-2,11],[-14,22],[-3,3],[-19,2],[-5,2],[-4,8],[-3,23],[-3,12],[-4,11],[-2,11],[1,10],[6,10],[5,4],[10,7],[4,5],[3,14],[-3,25],[2,14],[9,14],[23,-3],[8,17],[-6,-6],[-7,-5],[-7,0],[-5,8],[-12,-8],[-5,-7],[-2,-12],[2,-36],[-2,-7],[-10,0],[-8,18],[-9,39],[-6,18],[-8,15],[-68,84],[-7,6],[-7,3],[-5,4],[-11,16],[-6,5],[-5,4],[-5,14],[-2,15],[2,7],[3,5],[10,25],[3,10],[-14,-27],[-8,-9],[-9,0],[0,-4],[7,-16],[2,-10],[1,-6],[-4,-1],[-24,20],[-9,5],[-11,6],[-7,-5],[8,-2],[3,-3],[-67,-3],[-4,-3],[-6,-9],[-5,-1],[-5,3],[-4,5]],[[47940,72496],[-4,26],[-2,13],[2,9],[-2,20],[-3,47],[-4,18],[0,7],[-1,13],[-1,14],[-2,11],[-2,4],[-4,7],[-3,3],[-2,6],[0,1],[-1,4],[0,4],[-1,8],[-1,0],[-1,0],[0,6],[1,3],[3,6],[0,3],[1,2],[0,3],[-1,4],[3,3],[7,13],[2,5],[2,9],[2,28],[4,18],[5,12],[25,36],[8,23],[3,21],[6,27],[1,11],[0,6],[-1,5],[0,5],[2,4],[9,3],[3,3],[4,0],[3,-2],[4,-1],[3,3],[4,2],[2,2],[3,7],[2,12],[3,5],[5,-1],[15,-11],[7,1],[3,15],[2,7],[3,18],[5,18],[4,20],[2,8],[3,17],[-1,1],[-4,5],[-8,-1],[-7,-4],[-1,0],[-1,1],[-4,-8],[-6,-5],[-7,-2],[-5,0],[-3,6],[-3,4],[-11,48],[-2,3],[-5,6],[-1,3],[-2,4],[-1,7],[-2,4],[-29,63],[-8,10],[-4,3],[4,7],[3,7],[0,7],[-3,7],[3,7],[5,30],[11,28],[2,9],[-1,4],[-2,2],[-1,2],[-2,4],[0,4],[0,6],[0,14],[2,20],[1,4],[2,8],[1,3],[12,17],[4,5],[5,3],[4,6],[4,8],[1,5],[3,4],[13,5],[4,3],[4,6],[3,5],[2,2],[0,9],[2,9],[-4,12],[6,8],[6,14],[9,30],[3,6],[1,6],[0,6],[-3,4],[2,10],[-2,12],[-4,10],[-4,7],[-7,8],[-7,3],[-7,-1],[-7,-7],[-3,-2],[-5,1],[-4,3],[-2,5],[-1,5],[3,12],[1,6],[-4,11],[-6,5],[-8,4],[-7,6],[-4,9],[-2,12],[1,12],[3,11],[-13,28],[-6,7],[-2,7],[-1,13],[0,13],[1,8],[3,9],[1,13],[0,13],[-2,6],[-12,5],[-6,5],[-4,5],[-3,13],[-2,5],[-9,9],[-5,7],[-8,18],[-5,8],[-9,41],[-2,8],[-1,2],[60,-5],[4,2],[5,3],[5,2],[11,-1],[5,3],[6,-7],[8,0],[41,8],[4,3],[3,13],[0,4],[-1,4],[0,6],[2,5],[3,10],[1,6],[0,4],[-2,6],[0,6],[2,8],[2,3],[7,5],[2,2],[7,17],[1,6],[0,10],[1,5],[0,3],[-1,6],[0,4],[1,2],[2,4],[1,2],[2,15],[1,5],[-1,6],[2,7],[4,13],[-11,33],[-6,12],[-4,10],[-3,5],[-3,1],[-7,2],[-3,2],[-4,8],[-2,20],[-2,9],[2,7],[3,13],[3,6],[5,3],[12,13],[3,1],[2,1],[5,-1],[6,1],[5,5],[1,4],[0,5],[0,5],[1,4],[2,3],[12,15],[2,4],[5,14],[-9,15],[-7,17],[-1,19],[5,21],[6,15],[1,7],[-1,10],[-3,8],[-3,6],[-3,6],[0,10],[1,9],[7,19],[2,11],[0,7],[-1,10],[-2,20],[-4,19],[0,9],[0,11],[0,6],[1,3],[0,4],[-1,6],[0,4],[0,15],[5,2],[1,8],[-1,8],[-3,3],[-4,2],[-3,5],[-2,12],[-6,24],[-4,11],[-9,15],[-2,6],[-1,8],[3,8],[1,11],[6,5],[17,-3],[8,2],[3,6],[11,26],[3,11],[-1,14],[1,5],[4,7],[9,14],[2,4],[2,9],[10,24],[3,6],[5,1],[18,1],[3,3],[16,11],[9,11],[9,15],[9,23],[1,1],[3,-2],[2,1],[0,3],[1,5],[-1,3],[0,1],[3,4],[4,3],[9,1],[0,5],[10,27],[0,4],[0,4],[-1,5],[2,6],[7,12],[14,31],[-3,6],[-4,9],[-12,20],[-12,12],[-14,8],[-22,8],[-4,0],[-2,-3],[-2,-3],[-4,-4],[-4,-4],[-3,-1],[-8,5],[-3,9],[-2,12],[-1,11],[-1,5],[-2,5],[-1,6],[2,5],[2,5],[1,6],[7,48],[3,11],[-7,4],[-5,1],[-2,4],[2,26],[-1,10],[-4,7],[-6,4],[-4,-12],[-10,-5],[-19,-1],[-9,4],[-10,25],[-8,2],[-2,-18],[-7,-6],[-17,-2],[-8,2],[-6,9],[-4,3],[-3,2],[-6,-8],[-10,-7],[-9,7],[-8,11],[-9,9],[-4,-1],[-5,-4],[-4,-5],[-2,-4],[-1,-8],[2,-19],[-1,-10],[-3,-7],[-3,-6],[-9,-9],[-19,-11],[-6,-1],[-10,0],[-4,-1],[-4,-4],[-6,-12],[-4,-5],[-1,9],[-3,10],[-3,8],[-4,3],[-3,0],[-4,5],[-2,0],[-2,-3],[-1,-4],[0,-4],[-2,-4],[-4,-5],[-5,-3],[-6,-1],[-5,0],[-5,4],[0,6],[4,19],[-15,1],[-4,3],[-8,9],[-4,2],[-8,-6],[-18,-7],[-7,1],[-3,-2],[-1,-3],[-1,-4],[-2,-3],[-9,0],[-2,17],[-1,16],[-5,-4],[-1,-7],[-2,-9],[-2,-8],[-6,0],[-4,1],[-4,-3],[-3,-6],[-3,-7],[-9,-15],[-1,0],[-12,-6],[-24,3],[1,1],[1,14],[-1,8],[-2,4],[-10,7],[-3,10],[0,11],[3,11],[11,25],[8,13],[8,8],[4,6],[3,8],[1,10],[-2,9],[-5,6],[-5,4],[-6,-1],[-5,-4],[-4,-2],[-3,5],[-1,9],[1,26],[-3,9],[-2,6],[-9,-10],[-5,-3],[-5,0],[-2,-1],[-2,-3],[-7,-10],[-5,-4],[-43,-11],[-5,-3],[-10,-11],[-5,-3],[-10,-1],[-5,-1],[-5,-6],[-2,-6],[-3,-12],[-2,-6],[-6,-6],[-7,-4],[-6,-5],[-3,-4]],[[47569,75324],[-3,-9],[-5,-10],[-5,-6],[-5,-3],[-5,-4],[-4,-9],[-5,-6],[-4,2],[0,9],[-5,115],[1,10],[3,4],[11,1],[5,2],[2,5],[-2,5],[-5,4],[-1,4],[1,2],[8,6],[0,3],[1,5],[1,6],[3,2],[2,2],[5,10],[14,18],[4,3],[1,1],[9,13],[5,3],[6,6],[2,3],[1,5],[0,19],[-1,3],[-1,1],[-2,-1],[-4,-7],[-3,-11],[-4,-10],[-7,-5],[-6,-2],[-15,-11],[-3,-5],[-3,-1],[-14,1],[-6,-2],[1,7],[3,13],[0,8],[2,0],[4,-9],[2,4],[0,20],[-1,4],[0,3],[1,1],[4,2],[9,-4],[2,2],[2,7],[10,20],[5,7],[9,9],[4,7],[2,8],[-2,-2],[-3,0],[-2,2],[-3,0],[-1,-1],[0,-1],[-6,-6],[-7,-9],[-4,-3],[-6,-3],[-9,-1],[-9,2],[-7,6],[-2,7],[-1,11],[-2,7],[-4,3],[-10,2],[-2,3],[3,5],[5,5],[5,4],[5,2],[3,-2],[2,-5],[0,-6],[-4,-3],[3,-3],[4,-2],[4,-2],[3,2],[1,6],[-1,7],[0,7],[4,4],[-4,21],[0,10],[1,9],[2,7],[4,5],[3,1],[4,8],[10,36],[2,13],[-1,0],[-2,-9],[-3,-9],[-4,-7],[-5,-3],[-5,3],[-3,8],[-3,9],[-4,5],[-4,-13],[-1,-7],[3,-5],[-6,-14],[-3,-3],[-4,5],[1,6],[-4,-3],[-9,-11],[4,-8],[-3,-4],[-10,-4],[-1,-3],[-2,-14],[-2,-1],[-3,-4],[-4,-7],[-4,7],[0,11],[-2,10],[-6,4],[-4,7],[1,14],[4,15],[4,9],[0,7],[0,9],[2,12],[3,7],[2,4],[2,4],[3,2],[1,1],[8,8],[7,15],[4,6],[7,3],[2,4],[1,9],[0,10],[-6,5],[-1,-14],[-5,-8],[-6,-4],[-7,-2],[-14,3],[-6,-2],[1,-10],[-7,-10],[-3,-3],[-5,1],[-4,5],[-2,8],[-1,9],[-3,11],[3,0],[3,2],[2,4],[2,6],[-3,7],[-3,4],[-6,3],[0,5],[-1,8],[-1,3],[1,3],[2,4],[1,4],[0,5],[0,4],[-2,2],[-5,1],[-2,3],[-4,10],[-4,3],[0,-4],[2,-6],[-2,-4],[-2,-1],[-2,1],[-1,8],[-3,0],[-3,-3],[-2,-3],[-2,-5],[-3,-12],[-2,-5],[-1,1],[-3,14],[-3,3],[0,4],[2,5],[6,25],[0,4],[1,5],[1,4],[1,4],[1,5],[-2,4],[-4,4],[-2,14],[2,4],[4,0],[2,5],[1,11],[4,5],[3,4],[1,7],[4,-6],[4,-2],[3,2],[4,6],[2,3],[1,3],[1,3],[2,3],[3,2],[2,1],[5,0],[0,5],[-5,-4],[-6,-2],[-5,1],[0,5],[-8,-7],[-4,1],[-3,10],[13,20],[9,7],[11,-7],[4,0],[5,2],[4,2],[3,5],[4,3],[3,8],[1,9],[2,0],[5,-7],[8,1],[7,4],[5,6],[-6,-1],[-3,4],[-4,13],[-1,0],[-4,3],[-2,4],[2,1],[3,1],[11,7],[12,13],[8,3],[2,5],[3,3],[3,1],[3,-3],[9,-14],[5,-3],[5,-2],[11,-5],[5,-1],[7,4],[10,9],[11,5],[9,-7],[15,11],[2,4],[1,5],[2,5],[3,3],[6,2],[1,2],[1,3],[1,2],[15,6],[1,-7],[3,-6],[6,-9],[4,7],[1,5],[-1,14],[2,8],[6,-1],[8,-8],[4,-3],[2,-5],[1,-7],[2,-6],[6,-10],[3,-6],[2,-9],[2,10],[0,9],[-2,18],[0,9],[1,6],[3,4],[6,5],[-6,5],[-5,1],[-9,-2],[-5,3],[-7,11],[-4,3],[5,6],[28,6],[2,1],[2,3],[1,4],[-1,4],[-1,1],[-6,-5],[-17,-4],[1,2],[1,1],[2,1],[-1,2],[-3,2],[-3,-7],[-6,-4],[-12,-1],[2,9],[1,13],[1,9],[4,-3],[3,9],[-2,3],[-2,4],[-2,6],[0,7],[2,0],[4,-2],[2,2],[7,-2],[8,7],[40,48],[1,-7],[3,-3],[3,-1],[3,3],[-3,-1],[-1,1],[0,3],[1,1],[2,2],[1,2],[-5,6],[-1,7],[1,6],[1,7],[2,5],[4,2],[9,-1],[9,4],[7,7],[7,10],[6,12],[7,-2],[4,-9],[2,-10],[4,-8],[0,-4],[-2,2],[-2,1],[-2,1],[-2,-5],[-1,-5],[0,-5],[1,-5],[-3,-3],[-3,3],[-1,-3],[-1,0],[-1,-1],[0,-4],[14,-1],[2,4],[-5,13],[3,3],[4,1],[7,-4],[-1,2],[-1,4],[0,2],[4,7],[5,7],[5,5],[11,4],[6,6],[5,9],[2,9],[1,2],[2,-2],[2,-4],[0,-7],[-1,-3],[-6,-12],[0,-9],[1,-2],[2,0],[3,2],[0,2],[0,3],[0,2],[2,2],[2,0],[5,4],[1,-8],[7,-21],[-1,-9],[2,1],[4,8],[2,8],[4,-2],[2,3],[3,5],[4,2],[11,-2],[3,-2],[23,-20],[11,-6],[18,-49],[13,-10],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-5],[3,-2],[3,1],[2,3],[3,3],[4,0],[6,-3],[10,-3],[17,1],[5,5],[5,-5],[5,-1],[3,-4],[0,-11],[-1,-7],[-3,-7],[-2,-8],[3,-10],[1,0],[2,9],[1,10],[1,8],[4,5],[3,14],[16,5],[27,2],[4,-2],[17,2],[11,-6],[7,-1],[16,13],[14,-2],[14,-8],[10,-9],[3,3],[3,2],[7,0],[0,2],[-1,7],[0,3],[3,-2],[7,-5],[4,-2],[14,5],[14,0],[5,1],[7,5],[6,3],[2,3],[2,3],[4,1],[9,-10],[3,-2],[22,-4],[4,4],[5,-4],[4,3],[4,5],[4,3],[33,0],[1,6],[-2,4],[-1,5],[3,6],[0,2],[-1,4],[0,2],[9,0],[3,3],[1,7],[2,6],[4,-1],[9,-7],[6,-8],[16,-28],[5,-12],[2,0],[1,8],[2,-2],[3,-11],[15,-3],[56,3],[8,-3],[1,-9],[-3,-9],[-5,-7],[2,-4],[2,3],[6,3],[3,2],[2,4],[1,4],[2,3],[4,1],[11,-2],[5,-2],[20,-21],[9,-5],[24,-2],[7,-3],[3,-8],[3,4],[20,-9],[2,1],[4,5],[3,1],[3,-1],[6,-5],[20,-7],[23,-16],[5,-3],[62,-9],[1,0],[8,-11],[5,9],[8,2],[8,-3],[5,-8],[2,0],[3,8],[3,2],[13,-3],[34,6],[8,9],[17,9],[7,1],[12,0],[2,2],[0,3],[1,3],[2,1],[2,-1],[7,-8],[1,3],[1,1],[2,0],[1,0],[-1,2],[-3,3],[0,4],[10,10],[5,4],[4,-2],[4,3],[1,-1],[1,-2],[8,7],[9,3],[8,-2],[8,-8],[-13,-9],[-5,-5],[-3,-7],[3,-5],[1,-2],[1,-1],[-1,0],[-1,-1],[0,-3],[3,0],[3,1],[4,3],[2,3],[4,8],[1,2],[2,-1],[3,-6],[2,-2],[1,3],[0,5],[-2,6],[-2,3],[0,3],[4,-1],[2,0],[2,-2],[0,3],[1,0],[1,0],[-2,5],[3,2],[8,1],[3,3],[3,4],[3,2],[21,11],[7,-1],[0,-10],[4,-1],[4,-4],[3,-5],[3,-2],[19,-5],[1,-3],[1,-3],[1,-3],[-1,-5],[-1,-1],[-2,0],[-2,-1],[-1,2],[-3,3],[-2,1],[-2,-3],[-1,-4],[-2,-3],[-4,-4],[5,-2],[3,-6],[3,-3],[4,11],[3,-7],[4,-1],[8,4],[4,-1],[13,-7],[17,-4],[13,-7],[4,-1],[3,-3],[6,-11],[7,-4],[6,-2],[5,-1],[6,7],[9,-8],[14,-19],[0,4],[-3,15],[-1,7],[-2,4],[0,3],[1,2],[4,2],[3,6],[12,12],[5,2],[0,4],[-2,0],[0,4],[5,4],[6,1],[15,-1],[13,2],[6,4],[4,3],[4,-1],[6,-7],[5,-9],[3,-6],[3,-15],[1,-12],[1,2],[2,11],[0,3],[0,3],[1,3],[1,3],[3,1],[4,-2],[3,-2],[8,-2],[16,-11],[12,-4],[7,-4],[5,-12],[27,-20],[11,-5],[12,-2],[12,2],[9,4],[3,0],[2,-2],[2,-4],[2,-4],[4,-2],[1,1],[1,1],[1,2],[2,0],[1,-1],[1,-3],[0,-3],[2,-1],[8,10],[4,2],[6,1],[19,11],[7,7],[3,2],[4,0],[3,-4],[2,-6],[3,-3],[3,4],[-1,2],[-3,4],[-1,3],[11,8],[10,14],[10,9],[5,-6]],[[45018,66964],[5,-1],[5,-6],[4,-7],[1,-8],[-2,-10],[-11,-33],[0,-3],[0,-4],[0,-4],[-1,-3],[-1,-2],[-2,-1],[-1,-2],[-1,-3],[-1,-3],[-2,-4],[-2,-4],[-1,-5],[0,-14],[-3,-7],[-4,0],[-6,6],[-4,9],[-3,8],[-3,6],[-21,5],[-5,5],[-4,8],[-2,21],[8,7],[11,-2],[12,-6],[4,6],[11,20],[2,5],[0,6],[1,3],[6,5],[10,12]],[[45724,67070],[2,-4],[5,-5],[1,-4],[-1,-9],[-2,-11],[-1,-10],[4,-10],[0,-4],[-3,-3],[-2,-5],[-3,-13],[3,-8],[1,-11],[0,-9],[-5,-4],[-3,-4],[-9,-21],[-4,-7],[-20,-12],[-3,-3],[-1,0],[-7,-16],[-4,-3],[-3,3],[-2,4],[-3,3],[-12,1],[-5,3],[-5,4],[-15,24],[-2,6],[-1,4],[-6,6],[-2,4],[-1,3],[-9,34],[-1,12],[1,12],[-1,7],[0,9],[0,9],[1,7],[3,6],[11,11],[5,7],[6,12],[5,15],[-1,14],[3,6],[1,10],[-1,12],[-1,9],[3,0],[3,0],[3,-1],[2,-3],[4,2],[15,-10],[21,0],[17,-8],[7,4],[-1,20],[8,3],[1,-1],[2,-8],[0,-4],[-3,-2],[-2,-8],[1,-16],[1,-23],[1,-4],[1,-7],[1,-8],[2,-7]],[[45191,67174],[14,7],[13,-8],[12,-14],[15,-21],[3,-13],[2,-14],[-4,-11],[-6,-7],[-8,-15],[-6,-8],[-6,-3],[-7,-4],[-7,3],[-15,17],[-9,27],[0,21],[1,22],[8,21]],[[45436,67140],[-3,-10],[-5,-10],[-18,-34],[-4,-13],[-3,-7],[-9,4],[-15,-11],[-7,-5],[-5,-4],[-4,2],[-3,8],[-1,5],[1,7],[-3,2],[-2,4],[-1,5],[-1,11],[0,4],[-4,9],[-11,20],[-2,10],[-2,13],[-4,9],[-5,9],[-2,7],[-2,27],[-1,5],[-4,12],[-4,13],[-9,18],[-2,12],[6,8],[15,13],[6,-4],[6,-9],[4,-2],[3,1],[8,4],[6,6],[9,5],[7,5],[5,-3],[11,2],[6,1],[5,9],[7,1],[3,3],[6,1],[6,8],[13,22],[5,9],[2,5],[1,9],[1,4],[5,5],[2,3],[5,5],[6,2],[5,4],[2,11],[5,-3],[27,-1],[17,11],[6,-7],[-2,-16],[-9,-12],[-20,-21],[-5,-16],[-6,-11],[-7,-15],[-8,-12],[-5,-4],[-4,-6],[-3,-11],[0,-12],[2,-10],[1,-6],[-1,-6],[-3,-4],[-2,-6],[-2,-13],[-9,-32],[-3,-26],[0,-11]],[[46118,67487],[11,9],[10,2],[9,-6],[8,-17],[3,-20],[1,-26],[-2,-51],[-2,-12],[-4,-23],[-2,-8],[0,-19],[0,-7],[1,-4],[3,-8],[0,-4],[-1,-6],[-5,-9],[-1,-3],[0,-6],[-1,-5],[-1,-6],[-4,-12],[-3,-10],[-3,-20],[-6,-20],[-9,-9],[-30,-9],[-12,-8],[-10,-12],[-11,-5],[-5,-6],[-9,-19],[-8,-19],[-8,-17],[-12,-10],[-7,0],[-11,9],[-5,3],[-19,-2],[-3,2],[1,2],[1,7],[1,7],[0,2],[2,1],[9,-3],[6,1],[10,7],[16,13],[20,25],[8,15],[4,10],[3,10],[2,11],[2,30],[2,10],[6,18],[7,42],[2,7],[3,5],[8,26],[7,29],[11,31],[3,29],[4,18],[1,21],[2,8],[3,6],[4,5]],[[45067,67536],[0,-11],[2,-14],[2,-10],[6,-6],[0,-11],[-8,-18],[-4,-13],[2,-12],[3,-21],[-2,-11],[-2,-16],[-6,-16],[-6,-24],[-5,-20],[-2,-12],[-2,0],[-2,6],[-6,6],[-2,11],[-2,30],[-3,7],[-2,9],[-6,15],[-2,13],[-10,31],[-1,15],[-2,10],[-1,9],[-4,6],[-3,7],[1,18],[8,19],[9,16],[7,9],[6,-7],[7,-1],[7,-4],[11,9],[5,-5],[5,-7],[2,-7]],[[46254,67786],[5,2],[5,-6],[8,-14],[-2,-12],[-1,-10],[-2,-8],[-6,-7],[-1,-9],[1,-8],[1,-8],[1,-11],[-1,-4],[-2,-8],[-1,-5],[0,-5],[0,-10],[0,-5],[-4,-14],[-8,-13],[-9,-10],[-13,-6],[-3,-5],[-2,-6],[-4,-3],[-4,0],[-6,-3],[-5,-1],[-10,-4],[-7,-10],[-6,-16],[-5,-18],[-1,0],[-3,8],[-6,3],[-13,1],[-2,3],[-2,7],[-1,7],[1,3],[3,2],[2,5],[3,9],[1,10],[1,29],[1,8],[10,28],[5,10],[3,6],[5,4],[5,2],[7,1],[5,3],[9,15],[6,6],[5,3],[4,1],[14,0],[4,3],[3,7],[4,14],[3,20],[2,10],[3,9]],[[46253,67812],[3,-10],[-4,-14],[-7,-10],[-7,2],[0,4],[4,9],[3,13],[2,9],[6,-3]],[[49796,72824],[-3,-13],[1,-13],[4,-22],[-6,11],[-1,17],[0,19],[-1,17],[1,1],[1,-2],[0,-1],[0,-1],[1,-3],[2,-6],[1,-4]],[[50423,73375],[11,8],[5,-9],[0,-13],[-7,-3],[-9,0],[-14,15],[-4,4],[-6,-6],[-3,-3],[-4,-11],[-4,-5],[-4,2],[1,12],[-1,5],[0,6],[1,4],[2,5],[0,5],[-2,2],[-1,2],[1,5],[4,6],[2,-3],[2,2],[3,7],[1,9],[1,0],[1,-1],[0,-1],[0,-1],[13,-33],[11,-10]],[[50446,73620],[-2,-5],[2,-12],[4,-20],[-4,0],[-4,-5],[-2,-8],[-1,-9],[-2,-3],[-9,-11],[-9,-22],[-4,-5],[-7,-7],[-3,-6],[-1,2],[-2,3],[-1,3],[-5,-10],[-4,-4],[-2,-20],[-1,-14],[-9,-1],[-2,12],[-5,7],[-4,-3],[-2,0],[-1,1],[-3,-1],[-2,7],[-5,3],[-5,-3],[-2,-7],[-8,10],[-4,6],[-1,11],[4,14],[0,9],[-2,7],[2,3],[3,3],[3,1],[3,-3],[3,3],[2,1],[7,0],[-3,25],[1,14],[3,6],[3,2],[5,6],[6,12],[2,0],[3,-4],[5,7],[3,-3],[6,8],[7,6],[8,4],[6,-2],[3,6],[3,2],[4,0],[5,-6],[2,-1],[5,-1],[3,-1],[2,-3],[3,-4]],[[50931,74031],[8,-4],[16,-16],[10,-1],[-2,-6],[0,-5],[1,-4],[1,-5],[-1,-3],[-2,-3],[-1,-3],[2,-8],[-4,-16],[-3,-9],[-4,-3],[-4,-3],[-4,-7],[0,-9],[2,-9],[-12,-18],[-11,-23],[-9,-28],[-3,-33],[-2,3],[-2,1],[-4,-24],[-9,-16],[-25,-26],[-11,-15],[-2,-6],[-1,-2],[-3,-3],[-2,-2],[-1,3],[-8,18],[-2,3],[-4,3],[-2,2],[-1,6],[-1,6],[-1,6],[-2,2],[-2,1],[-5,6],[-2,1],[-3,0],[-5,-3],[-2,-1],[-25,3],[-10,8],[-7,14],[-3,32],[-4,5],[0,9],[5,15],[-3,12],[-8,12],[-10,9],[-7,3],[-6,-3],[-18,-16],[-4,-7],[-3,-16],[-6,-12],[-8,-1],[-5,15],[-1,1],[-1,5],[1,3],[3,3],[-8,12],[-2,-5],[-2,-2],[-2,2],[-2,5],[-7,-7],[-2,-1],[-3,3],[-2,11],[-5,7],[-2,10],[1,12],[1,9],[20,21],[6,2],[5,6],[14,24],[4,3],[5,2],[5,2],[5,7],[9,15],[1,3],[2,7],[0,2],[2,1],[3,-1],[1,0],[7,11],[1,3],[1,2],[6,10],[1,3],[2,1],[9,7],[4,5],[3,5],[3,4],[4,2],[1,1],[2,6],[1,1],[6,-1],[2,1],[9,6],[16,19],[9,3],[15,3],[16,6],[29,20],[3,-8],[2,2],[1,1],[3,-3],[-3,-4],[-9,-7],[-4,-2],[-4,-3],[-4,-7],[-3,-5],[-3,3],[-2,0],[-1,-19],[10,-3],[21,10],[0,-4],[-3,-3],[0,-4],[0,-4],[-1,-5],[-1,-3],[-2,-2],[-4,-3],[-9,-4],[-2,-4],[0,-13],[3,-13],[7,-11],[9,-9],[8,-3],[19,0],[5,3],[8,14],[4,4]],[[51195,74114],[1,-9],[6,-16],[2,-9],[-2,0],[-1,3],[-2,4],[-2,3],[-2,2],[-1,-39],[-14,-3],[-20,15],[-45,49],[-10,6],[-11,1],[-20,-7],[-10,6],[1,7],[0,9],[1,8],[3,5],[-2,3],[-6,3],[-2,4],[-3,7],[0,3],[1,3],[1,7],[3,7],[19,8],[7,-5],[27,5],[11,-1],[3,1],[4,2],[5,7],[3,2],[1,-7],[2,-4],[6,-9],[0,-1],[-1,-5],[0,-4],[2,-2],[2,2],[2,4],[3,6],[-1,9],[2,3],[2,-4],[-1,-8],[1,-4],[8,-8],[2,-5],[1,-2],[3,-5],[1,-1],[4,-2],[2,-1],[3,-7],[3,-10],[-1,-8],[-5,-4],[5,-3],[4,0],[3,-1],[2,-10]],[[50829,73664],[-1,-16],[-6,-13],[-8,1],[-5,20],[7,12],[11,8],[2,-12]],[[48805,71299],[1,0],[-1,0],[0,1],[0,-1]],[[48915,71324],[0,1],[1,0],[-1,-1]],[[48916,71326],[0,0]],[[49323,71307],[2,0],[0,-2],[-1,-2],[-1,1],[0,3]],[[48494,71739],[1,-1],[0,-1],[-1,0],[0,2]],[[79217,58965],[4,0],[14,7],[5,4],[2,5],[4,13],[2,3],[3,-1],[4,-7],[4,0],[2,3],[5,10],[2,4],[3,2],[8,3],[2,3],[2,4],[2,14],[1,6],[2,4],[7,12],[8,25],[4,16],[1,17],[-4,39],[0,19],[2,27],[-1,5],[-3,11],[0,13],[1,14],[2,11],[1,1],[4,2],[2,2],[-1,4],[-2,8],[0,9],[1,3],[1,1],[4,0],[2,1],[2,13],[-5,19],[3,11],[11,15],[3,7],[-8,3],[-3,6],[-8,24],[-1,3],[0,6],[0,3],[-2,1],[-3,-2],[-2,1],[-7,15],[-6,2],[-2,10],[0,13],[1,13],[2,12],[3,8],[11,25],[8,13],[7,10],[2,1],[0,16],[-1,13],[-1,2],[-6,-2],[-5,0],[-6,2],[-4,6],[-1,11],[2,13],[5,7],[13,9],[10,13],[1,2],[4,7],[1,11],[1,25],[1,13],[7,36],[3,31],[-3,28],[-8,23],[-12,17],[-12,8],[-6,2],[-12,-2],[-4,1],[-3,4],[-4,7],[-3,10],[-11,48],[-3,22],[1,21],[6,16],[6,5],[3,3],[2,4],[-1,2],[0,3],[-2,3],[-3,2],[-32,17],[-11,1],[-3,1],[-36,27],[-8,6],[-6,9],[-4,12],[-3,14],[-1,15],[0,27],[-1,13],[-3,11],[-2,4],[-5,6],[-3,3],[-2,3],[-5,12],[-3,4],[-7,9],[-3,4],[-1,6],[-2,6],[-2,18],[-3,11],[-3,10],[-3,9],[-5,8],[-15,17],[-5,9],[-3,10],[-2,12],[0,14],[1,25],[3,25],[4,22],[0,7],[0,6],[-6,49],[0,7],[1,5],[0,2],[2,13],[0,7],[0,7],[-1,7],[-3,12],[-1,6],[-1,20],[-1,35],[1,13],[18,87],[1,13],[1,28],[0,35],[1,29],[0,7],[-1,7],[-7,30],[-1,3],[-2,4],[-5,6],[-2,3],[-2,5],[-4,17],[-5,16],[-4,8],[-13,17],[-5,3],[-43,47],[-8,15],[-9,20],[-1,4],[-2,12],[0,4],[-1,4],[-4,10],[-7,25],[-4,12],[-18,22],[-2,3],[-1,1],[-2,6],[-1,6],[-3,18],[-12,56],[-2,6],[-2,4],[-17,32],[-4,9],[-3,11],[-12,60],[-14,50],[-5,11],[-7,7],[-6,2],[-7,-3],[-5,-8],[-4,-10],[-2,-4],[-1,-3],[-1,-1],[-2,-1],[-4,2],[-3,6],[-2,8],[-3,6],[-4,6],[-4,5],[-5,3],[-5,2],[-16,2],[-3,2],[-16,14],[-3,3],[-2,5],[-4,6],[-16,9],[-7,1],[-7,3],[-3,1],[-4,-1],[-1,-1],[-5,2],[-15,10],[-3,0],[-22,-9],[-7,-6],[-6,-9],[-5,-12],[-3,-15],[0,-4],[1,-2],[0,-2],[1,-3],[2,-2],[12,-17],[2,-5],[-1,-5],[-2,-4],[-4,-3],[-10,-4],[-6,-4],[-8,-3],[-3,-2],[-2,-3],[-3,-7],[-2,-9],[-1,-20],[-2,-13],[-3,-9],[-5,-5],[-6,-5],[0,1],[0,1],[1,2],[-1,-1],[-2,-3],[-3,-5],[-1,-8],[-1,-11],[3,-34],[-2,-6],[-2,-4],[-3,-9],[-3,-8],[-5,-4],[-5,3],[-8,11],[-5,3],[-5,-2],[-24,-22],[-4,-5],[-1,-6],[-16,-18],[-11,-19],[-4,-5],[-10,-5],[-4,-5],[-1,-9],[2,-11],[2,-9],[0,-4],[-6,2],[-14,14],[-4,2],[0,6],[5,38],[-4,24],[-9,9],[-24,0],[-10,4],[-9,10],[-7,13],[-6,14],[-8,-2],[-8,9],[-14,25],[-7,18],[-2,2],[-1,2],[-8,13],[-3,10],[-1,10],[-2,8],[-5,6],[-13,1],[-8,1],[-2,-3],[-4,-10],[-42,-91],[-6,-4],[-10,12],[-11,6],[-3,7],[-2,0],[-4,-9],[-3,-11],[-2,-25],[-7,-39],[-1,-11],[-26,-11],[-4,-6],[-2,-11],[-3,-7],[-7,8],[0,-9],[0,-7],[-2,-7],[-2,-5],[-5,-4],[-3,-2],[6,-11],[-5,-7],[-10,-8],[-5,-12],[-1,-5],[-2,-4],[-1,-5],[0,-1],[-3,11],[0,4],[-1,3],[-1,-1],[-2,-2],[-3,-7],[-4,-1],[-5,1],[-3,-3],[-2,-5],[2,-2],[3,0],[1,-1],[0,-4],[-1,-1],[-5,-13],[-1,-1],[-2,0],[-4,-3],[-31,-51],[-5,-14],[-5,-22],[-2,-5],[-3,-2],[-4,-2],[-3,-3],[-1,-9],[-4,-14],[-2,-3],[-2,-3],[-1,-1],[-2,2],[-8,7],[-8,10],[-5,2],[-3,10],[-5,8],[-5,7],[-5,6],[-13,4],[-9,4],[-5,7],[0,13],[4,13],[9,22],[6,27],[1,4],[1,11],[-1,12],[0,6],[0,5],[2,4],[3,3],[0,1],[0,1],[0,1],[0,2],[-2,4],[-1,4],[1,3],[2,4],[5,5],[2,7],[-1,20],[1,12],[2,6],[9,10],[7,13],[5,15],[3,15],[5,16],[4,6],[9,11],[2,8],[-1,8],[-5,23],[-1,11],[1,11],[4,22],[1,9],[-1,5],[-2,3],[-2,3],[-1,3],[-3,12],[-1,4],[0,21],[1,6],[1,4],[5,11],[1,4],[-3,8],[-17,16],[-3,5],[-6,12],[-4,11],[-2,10],[2,12],[8,17],[2,11],[0,6],[1,3],[18,20],[4,7],[1,7],[0,13],[0,6],[2,4],[5,3],[3,3],[7,15],[4,9],[1,9],[-1,10],[-7,13],[-1,11],[1,10],[4,19],[1,10],[-1,35],[0,12],[2,10],[7,16],[3,9],[3,19],[2,9],[11,23],[-2,17],[-7,18],[-12,21],[-4,8],[-2,9],[0,14],[1,34],[-6,50],[0,4],[0,3],[0,3],[-1,5],[-1,2],[-5,2],[-2,3],[-1,18],[1,24],[4,21],[7,8],[6,3],[4,14],[1,16],[0,15],[-1,8],[-2,5],[-2,5],[-4,4],[-4,3],[-3,-2],[-3,-3],[-3,-4],[-7,-4],[-8,-2],[-8,2],[-7,6],[-12,15],[-7,4],[-7,2],[-25,-1],[-2,1],[-1,0],[-3,-4],[-1,-2],[-3,-12],[-11,-28],[-13,-24],[-3,-8],[-2,2],[-2,6],[-2,6],[-4,4],[-23,18],[-7,-1],[-6,-9],[-3,-10],[-3,-8],[-4,0],[-8,4],[-8,7],[-5,7],[-4,7],[-1,9],[0,9],[0,10],[-3,8],[-5,14],[-3,7],[-1,11],[-1,19],[-1,9],[-2,7],[-3,8],[-1,4],[-2,8],[2,11],[6,18],[4,10],[3,16],[2,5],[2,3],[5,5],[3,3],[2,9],[2,10],[1,20],[7,38],[7,42],[2,24],[-1,31],[0,5],[-1,0],[-2,-8],[-2,-2],[-5,3],[-4,6],[-2,5],[-1,3],[-5,4],[-2,3],[-1,3],[-1,8],[-2,5],[-7,19],[-16,70],[-5,13],[-11,6],[-10,-5],[-8,-11],[-6,-14],[-3,-22],[0,-1],[-2,0],[-6,-5],[-1,-1],[-3,-5],[1,-23],[-5,-8],[-5,0],[-5,5],[-3,9],[-2,12],[1,20]],[[77805,62502],[-1,10],[0,8],[1,8],[3,8],[3,8],[1,11],[0,12],[3,19],[3,53],[3,20],[4,16],[0,7],[2,10],[6,18],[2,7],[1,10],[3,7],[7,13],[7,18],[5,8],[11,6],[3,8],[3,10],[3,7],[6,3],[24,-8],[12,-7],[6,0],[9,6],[8,10],[3,3],[5,8],[7,14],[0,4],[-8,3],[-25,-8],[-5,7],[1,12],[2,24],[1,12],[1,3],[5,7],[2,4],[-1,5],[-3,16],[5,5],[13,5],[5,6],[3,9],[14,54],[9,71],[1,8],[0,6],[0,5],[4,2],[3,-1],[2,-1],[2,-2],[3,-3],[5,-4],[6,2],[10,9],[4,5],[9,19],[4,2],[26,28],[39,63],[3,4],[2,9],[-1,10]],[[62920,73496],[-5,3],[-29,21],[-4,1],[-3,0],[-6,-4],[-11,-1],[-4,-1],[-5,-4],[-15,-18],[-5,-4],[-18,-4]],[[52405,82980],[2,10],[-2,4],[4,17],[-2,15],[-5,14],[-2,15],[1,19],[3,16],[4,15],[3,15],[-29,7],[-4,-1],[-1,-5],[0,-22],[-2,-3],[-3,-1],[-3,-5],[-4,-7],[-5,-3],[-4,2],[-4,6],[-3,15],[1,14],[1,14],[1,16],[6,11],[11,2],[12,-4],[6,-7],[-4,-2],[-3,-3],[-5,-7],[1,-7],[16,-3],[16,-4],[5,2],[0,12],[-6,20],[-3,25],[-2,25],[0,7],[3,9],[0,5],[0,7],[-3,15],[-3,27],[-2,12],[-4,12],[-7,7],[-10,3],[-18,0],[-14,5],[-11,13],[-25,46],[0,4],[6,1],[0,4],[-5,3],[-7,0],[-6,-2],[-5,-5],[-3,-8],[1,-6],[8,-10],[-2,-1],[-2,-2],[-4,-5],[7,-2],[7,-6],[7,-9],[2,-10],[-3,-2],[-34,34],[-6,5],[-17,3],[-4,6],[0,8],[15,51],[6,23],[3,24],[1,24],[-14,117],[-1,6],[-1,1],[0,3],[0,2],[1,2],[2,-1],[0,-2],[1,-1],[1,-1],[2,-3],[6,-45],[5,-16],[1,-7],[-1,-5],[-2,-8],[-1,-7],[1,-8],[2,-2],[13,9],[13,12],[6,3],[11,10],[11,14],[2,10],[-2,10],[-4,10],[-4,9],[-11,16],[0,19],[-3,21],[-7,14],[-9,8],[-22,12],[-6,1],[-2,-5],[0,-26],[0,-12],[-2,-13],[1,-10],[-1,-4],[-4,2],[-1,3],[-1,6],[-1,7],[-2,43],[1,13],[7,37],[1,14],[-3,205],[1,10],[2,11],[12,51],[6,16],[4,7],[2,-1],[1,-6],[2,-2],[0,-5],[-6,-19],[-2,-5],[0,-4],[2,-2],[1,-1],[5,-1],[1,-2],[2,-6],[1,-6],[2,-2],[12,-3],[3,-2],[-4,-3],[1,-6],[-1,-9],[2,-6],[2,-2],[2,1],[1,4],[-2,5],[0,4],[9,4],[14,0],[12,-3],[5,-7],[3,-1],[14,-13],[4,2],[3,5],[3,7],[2,6],[2,0],[8,-27],[0,-5],[-1,-2],[1,-6],[2,-6],[4,-4],[6,-8],[3,-3],[5,1],[17,4],[1,1],[2,3],[1,4],[0,6],[0,9],[1,5],[1,13],[1,3],[2,1],[1,2],[-2,5],[-8,9],[-3,0],[-2,1],[-2,3],[0,5],[-1,6],[-5,3],[0,6],[4,4],[13,1],[17,36],[5,2],[11,5],[15,0],[1,2],[-7,3],[-12,0],[-3,3],[3,11],[4,9],[3,5],[9,8],[13,15],[5,2],[3,-1],[5,-3],[4,-1],[3,1],[2,3],[1,3],[2,2],[5,0],[6,-3],[6,-4],[2,-8],[2,-14],[4,-8],[4,-6],[4,-6],[3,-13],[-7,-2],[-9,-15],[-7,-3],[0,-4],[2,-5],[-3,-6],[-8,-9],[-3,-8],[0,-8],[1,-19],[2,-5],[5,1],[4,6],[4,19],[4,2],[5,-1],[5,1],[-2,5],[-2,2],[-3,0],[-3,-3],[2,7],[2,4],[2,5],[2,8],[2,0],[-2,-13],[7,-2],[10,2],[6,-1],[4,-3],[4,1],[4,0],[3,-8],[-1,-6],[-6,-11],[-3,-8],[3,-1],[1,-3],[0,-3],[2,-5],[2,-3],[7,-5],[2,-2],[0,-3],[1,-3],[3,0],[4,10],[2,3],[4,-5],[3,5],[0,8],[-6,3],[-9,-6],[0,-1],[-2,-1],[-3,0],[-2,2],[0,3],[1,3],[1,22],[5,19],[2,17],[-6,16],[-2,3],[-2,2],[-5,-1],[-11,-6],[-3,-5],[-6,-5],[-6,0],[-3,8],[4,7],[12,9],[3,10],[2,8],[-1,4],[-7,3],[-3,3],[-2,4],[-2,4],[-1,4],[-2,6],[-1,7],[0,7],[2,2],[6,12],[1,3],[1,3],[0,7],[-1,7],[-2,3],[-3,1],[-3,2],[-4,5],[5,15],[5,12],[6,9],[8,11],[2,1],[2,1],[3,0],[1,2],[2,8],[1,2],[41,16],[9,0],[32,-16],[0,-4],[-3,-3],[0,-4],[2,-3],[4,-2],[3,0],[3,3],[10,19],[5,11],[5,8],[11,5],[9,7],[13,-4],[30,4],[-17,17],[-8,4],[-6,6],[-3,1],[-2,-2],[-10,-15],[-5,-7],[-6,-3],[-5,5],[-5,6],[-5,-2],[-10,-10],[-11,-6],[-24,0],[-64,-27],[-5,-1],[-6,3],[-31,31],[2,-8],[-2,-4],[-9,-5],[-7,-6],[-4,-2],[-4,0],[1,4],[-5,4],[-4,-1],[-5,-5],[-5,-6],[-4,1],[-6,-7],[-5,-7],[-2,-1],[-2,8],[-6,3],[-6,-1],[-5,-4],[4,-5],[-10,-11],[-14,-8],[-10,3],[-6,-2],[-7,-3],[-3,-4],[-1,-12],[-4,-7],[-4,-5],[-4,-7],[-1,-17],[-1,-1],[0,-5],[-1,-3],[-2,-3],[-9,-16],[-6,0],[-3,-2],[-2,-3],[-2,-3],[-4,-2],[-5,-4],[-2,-8],[2,-20],[0,-9],[-4,-6],[0,-3],[11,1],[3,-1],[2,-8],[-2,-5],[-4,-3],[-3,0],[-3,1],[-7,5],[-3,2],[-4,-2],[-5,-5],[-4,-1],[0,-5],[13,5],[4,-2],[6,-5],[3,-2],[19,10],[5,-1],[0,-5],[0,-11],[0,-5],[4,-8],[2,-6],[-5,-8],[-2,-4],[-4,-2],[-4,-1],[-2,-2],[0,-2],[3,-3],[-5,0],[-8,8],[-7,11],[-3,7],[-2,9],[-7,7],[-8,5],[-7,1],[-5,4],[-5,7],[-6,9],[-4,8],[-3,22],[-1,3],[-4,2],[-8,6],[-5,0],[4,-22],[2,-13],[-1,-8],[-4,0],[-2,12],[-1,27],[4,25],[6,18],[50,95],[15,18],[23,43],[8,10],[10,-1],[23,-9],[13,-1],[26,7],[11,6],[13,18],[5,2],[70,-12],[25,4],[25,11],[24,19],[21,27],[59,128],[11,18],[19,25],[10,21],[3,3],[7,11],[14,3],[25,-2],[25,5],[23,12],[20,16],[33,41],[19,15],[7,4],[9,1],[8,-2],[7,-7],[-16,-6],[-14,-16],[-23,-41],[-8,-35],[8,-27],[14,-24],[10,-29],[-8,-26],[0,-31],[6,-61],[-5,-9],[-14,-12],[-7,-10],[-9,-24],[-5,-16],[-3,-25],[-7,-29],[-3,-9],[-3,-4],[-2,-2],[-3,-2],[-13,1],[-4,-2],[-5,-1],[-23,18],[-18,22],[-11,5],[-9,11],[-7,3],[-6,-4],[-8,-15],[-5,-1],[5,-1],[6,9],[5,4],[5,3],[6,-3],[27,-34],[9,-5],[11,-12],[6,-2],[22,-1],[5,-3],[-7,-12],[-2,-4],[-1,-8],[-2,-16],[-1,-5],[2,-9],[3,-31],[1,-23],[2,-13],[7,-25],[2,-4],[3,-4],[1,-3],[-4,-6],[-2,0],[-7,4],[-3,1],[-13,0],[-4,-3],[-5,-5],[-5,5],[-5,5],[-6,1],[-7,-3],[-6,-6],[-3,-1],[-4,-1],[-5,-3],[-8,-8],[-10,-4],[-13,-12],[-39,-6],[0,-4],[13,-3],[42,15],[9,7],[4,1],[1,2],[0,2],[1,3],[2,2],[2,-1],[4,-3],[1,-1],[3,1],[4,2],[3,4],[1,4],[2,8],[4,1],[9,-4],[-1,-2],[-1,-5],[5,-2],[13,-3],[12,1],[7,6],[7,3],[5,-14],[2,-19],[-5,-17],[-19,-17],[-14,-18],[-2,-2],[-2,-19],[-1,-5],[2,-7],[-1,-9],[-3,-7],[-4,-5],[9,0],[3,3],[0,23],[0,16],[3,8],[12,10],[9,15],[5,4],[6,-4],[1,-4],[1,-13],[0,-4],[2,-2],[8,-8],[21,-14],[22,-3],[66,12],[10,-1],[9,-6],[4,-5],[9,-19],[17,-21],[0,-3],[-6,-8],[-4,-14],[-1,-15],[0,-14],[-4,-13],[-25,-44],[-13,-10],[-5,-9],[-1,-7],[0,-19],[-4,-18],[-8,-2],[-10,9],[-6,13],[7,2],[3,3],[1,7],[-1,8],[-3,3],[-3,0],[-3,4],[-7,2],[-7,-9],[-6,-13],[-9,-13],[2,-14],[3,-15],[2,-10],[-3,-4],[-5,-2],[-4,-1],[-4,2],[-3,4],[-2,12],[-2,6],[2,2],[5,4],[2,2],[-2,6],[-2,3],[-12,5],[-2,-1],[-6,-5],[-8,-2],[-5,5],[-4,8],[-6,9],[6,1],[9,9],[5,2],[4,-3],[5,-6],[5,-2],[4,8],[-5,9],[0,8],[8,19],[-3,0],[-4,2],[-4,4],[-3,4],[-3,3],[-7,-4],[-4,3],[-1,-8],[-1,-5],[-3,-2],[-4,-1],[-2,-3],[-7,-19],[-7,-11],[-15,-15],[-7,-11],[-4,-14],[2,-8],[5,-9],[4,-12],[2,-15],[-1,-11],[-4,-10],[-5,-12],[7,4],[5,0],[1,-4],[-7,-18],[0,-8],[0,-15],[0,-10],[-1,-5],[-1,-5],[-6,-10],[-1,-5],[-2,0],[-3,-2],[-3,-4],[-2,-3],[2,-2],[2,-5],[1,-7],[-3,-4],[-1,-3],[-1,-3],[-3,-1],[-3,1],[-3,3],[-4,8],[-1,4],[-1,4],[-1,5],[-3,4],[-3,1],[-27,-1],[-4,-2],[-2,-3],[-2,-5],[-2,-3],[-7,-3],[-15,1],[-7,-2],[7,-9],[40,-11],[3,-2],[-1,-7],[-5,-12],[-2,-10],[1,-5],[4,-1],[7,0],[0,-4],[-12,-7],[-3,-7],[3,-10],[-1,-1],[-2,-3],[-7,5],[-30,-11],[-14,-9],[-8,-1],[-17,8],[-10,10],[-3,2],[-29,0],[-6,4],[-1,-2],[0,-2],[-1,-2],[0,-2],[6,-4],[20,0],[3,-3],[15,-18],[3,-7],[2,-6],[3,-5],[5,-1],[27,0],[-5,-7],[-14,-14],[-8,-12],[-4,-3],[-6,-1],[-3,-3],[0,-5],[0,-6],[-1,-2],[-18,-6],[-6,-5],[-4,-1],[-3,0],[-6,4],[-4,0],[1,-3],[1,-1],[-4,-7],[-10,-4],[-5,-6],[5,-3],[5,0],[14,4],[2,2],[3,1],[16,-10],[1,-7],[-1,-8],[-3,-7],[-4,-3],[-9,-3],[-5,-2],[2,-7],[3,-9],[1,-5],[0,-6],[-2,-5],[0,-5],[6,-4],[3,-4],[4,-6],[1,-5],[-4,-5],[0,-4],[3,-4],[10,-22],[3,-2],[4,-4],[1,-9],[-1,-7],[-2,-4],[-2,-6],[-1,-9],[-1,-5],[-4,-3],[-4,-1],[-4,-1],[-16,4],[-4,-2],[-3,-3],[-1,-4],[-3,-3],[-7,-6],[-4,-2],[-3,0],[-2,-3],[0,-5],[2,-5],[5,0],[0,-4],[-9,1],[-3,-1],[-4,-4],[3,-3],[4,-1],[8,0],[3,-2],[4,-5],[7,-13],[-7,-12],[-5,-5],[-5,-4],[-13,-3],[-5,-4],[2,-9],[4,0],[16,8],[7,-1],[2,1],[2,2],[2,3],[2,2],[4,1],[6,-3],[11,-15],[6,-6],[15,-5],[4,-3],[2,-9],[6,-45],[0,-2],[0,-2],[-3,-3],[-4,0],[-4,3],[-3,0],[-2,-7],[3,-1],[4,-3],[2,-3],[2,-5],[1,-5],[1,-7],[-1,-6],[-4,-2],[-4,2],[-4,11],[-2,3],[-12,-1],[-3,1],[-5,4],[0,2],[2,2],[1,4],[-5,9],[-2,5],[2,3],[7,3],[-1,7],[-7,5],[-8,-3],[-1,-4],[-4,-12],[-3,-6],[-2,-5],[-1,-2],[-2,-1],[-4,1],[-2,-2],[-5,-7],[-12,-12],[-4,-7],[-1,-13]],[[53290,82883],[-3,-5],[-3,-1],[-3,-2],[-2,-6],[11,-6],[-1,-13],[-9,-13],[-12,-5],[-43,12],[-14,-4],[-14,-8],[-10,-12],[-6,1],[-26,19],[-17,19],[-31,24],[-14,4],[-14,8],[-15,5],[-6,6],[-3,9],[2,10],[7,5],[8,-1],[8,0],[5,13],[-4,2],[-4,3],[-15,23],[-2,4],[0,10],[4,10],[12,17],[4,-3],[39,11],[7,-4],[13,-14],[5,-2],[5,-5],[8,-23],[7,-5],[7,-2],[49,-34],[-2,10],[-4,6],[0,5],[6,7],[8,0],[7,4],[2,0],[-2,7],[-1,7],[1,8],[0,6],[22,-24],[1,-8],[7,-11],[4,-4],[5,-1],[-3,-4],[-1,0],[4,-11],[14,-14],[3,-6],[1,-10],[1,-4],[0,-3],[-3,-7]],[[52902,82982],[5,-5],[5,-4],[4,-6],[0,-9],[2,-2],[3,-2],[-21,-6],[-6,-8],[-4,-2],[-6,3],[-48,65],[-5,13],[-1,9],[4,-5],[23,-17],[7,-7],[7,-13],[3,-6],[4,-2],[5,0],[3,2],[1,4],[-2,10],[4,-7],[4,-17],[3,-4],[5,0],[4,1],[1,5],[-4,10]],[[53449,83059],[24,-6],[9,-10],[5,-20],[-1,-7],[-2,-3],[-5,-2],[-7,0],[-32,9],[-10,-2],[-10,-6],[-9,-9],[-15,-25],[-5,-4],[-9,2],[-17,11],[0,3],[4,0],[-2,6],[2,5],[2,3],[3,2],[-1,2],[-3,5],[-1,1],[6,9],[3,2],[4,-2],[2,4],[-2,8],[4,0],[7,-6],[4,-2],[3,1],[9,4],[3,3],[-1,6],[0,5],[1,3],[3,2],[0,4],[-10,8],[-2,4],[-1,6],[1,4],[3,3],[5,0],[6,-14],[9,-5],[23,-2]],[[52780,83027],[4,-9],[11,-41],[0,-6],[-4,-1],[-8,0],[-4,-3],[-5,-5],[-6,-4],[-4,2],[-4,5],[-13,5],[-5,4],[0,4],[8,5],[8,-5],[9,-8],[8,-4],[0,4],[-13,14],[-13,6],[-3,0],[-3,-1],[-4,-5],[-2,-2],[-11,1],[-10,9],[-5,16],[1,19],[-2,0],[0,4],[6,-6],[7,-9],[6,-7],[6,2],[-1,2],[-2,4],[-1,4],[1,2],[1,1],[-2,3],[-11,10],[-2,5],[3,5],[0,4],[-21,-2],[-4,0],[-3,3],[-3,0],[-3,2],[-2,5],[1,3],[5,5],[2,4],[-5,0],[-5,-2],[-4,-1],[-5,3],[0,5],[25,14],[9,2],[12,-3],[16,-24],[9,-6],[13,-2],[8,-7],[8,-10],[6,-13]],[[53015,83067],[2,17],[9,29],[11,23],[6,-3],[-13,-74],[-6,-19],[-14,-36],[-27,-109],[-3,-7],[-3,-3],[-7,0],[-3,5],[-7,35],[-3,7],[-4,5],[-9,9],[7,0],[4,3],[4,5],[4,8],[3,10],[1,3],[3,-3],[1,-1],[7,3],[0,6],[-1,7],[-3,-3],[-2,-1],[-3,1],[-2,3],[4,14],[6,10],[15,23],[7,5],[16,28]],[[54208,83120],[-1,-3],[-1,-2],[0,-1],[-2,-2],[2,-8],[1,-6],[-1,-5],[-3,-7],[-6,-12],[-1,-6],[1,-5],[0,-4],[1,-7],[-5,-6],[-3,-5],[-4,-4],[-13,4],[-12,1],[-15,8],[-19,14],[-22,8],[-22,22],[-5,7],[4,13],[1,25],[1,36],[1,6],[3,7],[5,11],[2,9],[2,10],[3,7],[4,-4],[11,-19],[4,-6],[6,-8],[10,-8],[11,-11],[7,2],[6,-2],[4,-11],[3,-5],[4,-3],[20,-17],[13,-5],[5,-8]],[[52354,83246],[-7,-3],[-7,9],[-7,15],[-8,28],[-2,12],[3,9],[9,3],[1,-18],[5,-3],[5,1],[4,-4],[0,-7],[-3,-14],[1,-5],[2,-7],[2,-11],[2,-5]],[[52962,83080],[-12,0],[-5,-1],[-5,-3],[-5,-5],[-3,-6],[-5,-6],[-6,1],[-11,7],[-19,2],[-6,2],[-2,3],[-3,2],[-2,3],[-3,1],[-7,-1],[-4,0],[-22,17],[-8,1],[-2,-5],[0,-12],[-4,3],[-7,10],[-4,3],[-6,0],[-11,-3],[-4,3],[21,20],[4,8],[-5,9],[-4,10],[-3,7],[-6,3],[-4,-1],[-3,-3],[-3,-1],[-5,1],[-6,8],[-4,1],[-3,-5],[1,-9],[9,-18],[-1,-10],[-1,-1],[-10,2],[0,2],[0,2],[0,3],[1,0],[0,2],[0,5],[-4,14],[-1,6],[1,6],[2,6],[0,5],[-5,3],[-11,3],[-3,3],[-3,3],[-2,3],[0,3],[-3,6],[-1,3],[1,4],[3,5],[0,3],[0,7],[-3,10],[-1,4],[1,20],[-3,3],[-4,0],[-8,-1],[-4,2],[-4,4],[-6,11],[4,2],[5,1],[5,2],[3,6],[-15,9],[2,-1],[7,1],[-3,6],[-5,4],[-11,2],[-4,2],[-9,14],[0,4],[7,-4],[8,-9],[8,-6],[7,3],[-27,29],[-11,3],[2,6],[3,3],[3,1],[4,3],[10,16],[15,3],[5,-1],[1,-3],[0,-5],[3,-6],[13,-9],[15,6],[27,23],[36,14],[12,11],[7,3],[8,1],[2,-1],[0,-2],[2,-8],[0,-2],[4,2],[1,4],[-1,12],[4,2],[8,-5],[19,-16],[5,-7],[3,-7],[3,-4],[2,-2],[5,0],[5,-2],[8,-8],[-4,3],[-5,0],[-3,-3],[-1,-7],[1,-3],[4,-4],[1,-4],[-2,-5],[-2,-1],[-3,0],[-3,-2],[-10,-18],[4,-10],[10,1],[6,13],[3,-1],[18,11],[10,4],[1,2],[0,4],[-1,4],[-2,2],[-2,1],[-3,2],[-2,3],[-1,3],[1,5],[3,-2],[4,-5],[1,-2],[4,6],[-1,9],[-3,11],[-2,10],[2,-3],[4,-5],[0,10],[-2,15],[0,3],[6,1],[8,-11],[13,-27],[0,-3],[1,-6],[0,-4],[2,-2],[0,-2],[6,-7],[2,-8],[-1,-5],[-2,-3],[-8,-7],[-13,-6],[-19,2],[-5,-1],[-3,-4],[-2,-7],[3,-4],[4,0],[4,3],[-1,3],[0,2],[2,6],[5,-2],[19,-5],[4,-5],[28,-48],[1,-5],[7,-26],[2,-10],[-2,0],[-3,7],[-5,4],[-5,-2],[-2,-11],[2,-7],[7,-14],[2,-9],[1,-13],[-1,-11],[-2,-10],[-4,-13],[-1,-4],[0,-12],[-1,-3],[-7,-11],[-3,-7],[-1,-7],[-3,-6],[-4,-4],[-4,-1],[-11,1]],[[53504,83449],[16,-49],[0,-2],[-10,-14],[-4,-2],[-5,-3],[-5,-5],[-3,-4],[-6,-3],[-6,12],[-4,16],[0,13],[3,8],[4,5],[3,4],[3,4],[3,7],[5,15],[4,6],[1,-4],[0,-1],[1,-3]],[[52933,83554],[3,8],[3,9],[-1,10],[-3,10],[-5,5],[-6,3],[-4,6],[1,15],[3,7],[4,5],[4,-1],[2,-25],[4,-10],[7,-7],[7,-2],[-3,-6],[-1,-6],[0,-7],[2,-5],[5,-9],[3,3],[2,6],[2,4],[1,-4],[-4,-9],[-7,-12],[-2,-10],[1,-20],[-3,-10],[-9,-11],[-10,4],[-7,13],[-3,22],[2,12],[3,5],[4,3],[5,4]],[[53344,82978],[5,1],[6,2],[5,0],[4,-5],[8,-15],[8,-12],[0,-3],[-25,-25],[-4,-6],[-10,-25],[-2,-5],[-3,-3],[-7,-11],[-3,-2],[-4,-9],[0,-18],[3,-34],[-1,-21],[-5,-1],[-6,9],[-1,8],[-4,7],[-9,22],[-3,8],[1,12],[3,10],[8,15],[-6,1],[-4,3],[-1,6],[3,10],[-3,3],[-2,3],[-2,6],[-13,17],[-1,3],[-1,5],[-1,4],[0,4],[0,3],[-2,4],[-4,7],[-5,4],[-3,6],[-1,12],[0,11],[-1,8],[-3,6],[-5,3],[0,5],[10,10],[3,2],[4,-2],[5,-8],[3,-2],[3,2],[7,8],[1,0],[2,-4],[4,3],[5,7],[0,4],[-3,4],[-5,18],[-3,6],[-19,11],[-5,1],[-2,2],[-3,5],[-3,2],[-17,1],[-5,3],[-5,6],[-4,6],[15,-4],[29,-17],[15,-4],[-6,14],[-17,16],[-8,15],[24,5],[2,3],[-1,4],[-6,7],[-16,-2],[-4,8],[4,5],[2,7],[0,7],[-5,5],[-6,0],[-5,-5],[-4,-7],[-4,-4],[-3,0],[-10,6],[-21,6],[-5,4],[-4,-3],[-19,11],[-4,-1],[-8,-5],[-4,-2],[-19,0],[0,-4],[6,-4],[-10,0],[-6,3],[-5,9],[-2,16],[4,-4],[4,0],[4,4],[2,8],[-3,-3],[-3,-1],[-7,0],[-1,3],[1,14],[-2,4],[-5,3],[-15,17],[-3,6],[3,1],[4,1],[3,2],[1,6],[-2,3],[-4,1],[-5,1],[-2,-1],[-2,-3],[-2,-5],[-2,-4],[-4,0],[-2,3],[-4,13],[0,4],[8,-1],[4,1],[3,2],[2,4],[3,3],[4,3],[3,0],[6,4],[3,7],[-1,7],[-3,3],[1,6],[-2,13],[-6,21],[-3,8],[-4,5],[-4,3],[-6,1],[-5,-5],[-3,-1],[-2,3],[1,8],[2,5],[2,1],[4,1],[7,3],[3,9],[-1,11],[-3,11],[-13,19],[-13,10],[-30,9],[0,5],[43,-5],[-4,10],[-18,9],[-6,6],[-3,5],[-2,5],[-2,3],[-5,3],[-14,2],[-5,3],[0,3],[44,-8],[9,2],[18,8],[9,2],[0,-4],[-3,1],[-3,0],[-3,-2],[-2,-2],[4,-11],[7,-8],[9,-3],[7,5],[-12,12],[4,5],[2,-4],[5,-1],[10,0],[5,2],[9,9],[10,2],[4,3],[3,6],[1,8],[1,5],[1,8],[0,4],[-1,5],[-4,8],[-2,5],[7,-6],[7,-1],[6,3],[6,8],[10,-2],[7,16],[2,23],[-9,20],[-8,4],[-18,2],[-22,10],[-7,6],[-2,11],[35,-21],[8,2],[42,-8],[6,-6],[11,1],[20,7],[10,8],[5,1],[4,-5],[-2,-6],[-7,-11],[-3,-7],[3,-6],[-1,-4],[-5,-1],[-4,3],[0,2],[1,6],[-8,-1],[-4,-2],[-3,-5],[14,-29],[5,-17],[-4,-11],[-4,-1],[-9,3],[-4,-2],[-5,-9],[-3,-3],[-5,0],[0,-5],[4,-2],[14,2],[4,2],[4,4],[5,3],[5,0],[2,-5],[3,-10],[2,-9],[0,-5],[-22,-5],[-5,-2],[-2,-4],[3,-4],[4,-1],[13,1],[2,1],[2,3],[5,-5],[7,-12],[2,-8],[0,-3],[-2,-4],[-2,-10],[5,6],[3,6],[12,30],[0,1],[1,0],[-1,5],[-3,7],[0,2],[1,7],[2,9],[4,13],[5,5],[9,4],[5,3],[5,17],[-6,19],[-6,18],[2,11],[5,-1],[9,-12],[6,-3],[2,-3],[0,-6],[-1,-6],[0,-5],[1,-8],[1,-2],[1,-2],[2,-5],[5,-17],[5,-24],[1,-23],[-7,-13],[-10,5],[-5,-1],[-2,-10],[-2,-7],[-10,-11],[-3,-9],[5,-1],[8,4],[7,9],[1,9],[4,2],[5,-2],[4,-5],[2,-7],[-9,3],[-1,-1],[2,-5],[4,-4],[10,-5],[2,12],[6,19],[1,13],[-11,65],[0,21],[-1,8],[-7,32],[-4,8],[-5,3],[-6,0],[-22,-10],[-8,-2],[-4,5],[4,15],[15,14],[26,20],[43,43],[22,15],[23,-1],[24,-17],[20,0],[5,-3],[10,-11],[8,-4],[15,-14],[-4,-10],[-12,-18],[-4,-10],[-7,-24],[-4,-7],[0,-4],[8,-14],[4,-9],[2,-7],[1,-11],[3,-13],[4,-12],[3,-7],[-1,-6],[-1,-8],[0,-13],[-2,-10],[0,-4],[0,-3],[1,-3],[3,-6],[-6,-9],[-11,-26],[-10,-9],[-2,-7],[-3,-7],[-6,-3],[-5,2],[-3,3],[-4,3],[-5,0],[-20,-14],[-6,-7],[-17,-22],[-14,-35],[7,-31],[14,-15],[5,-2],[17,-1],[4,-3],[12,-12],[7,-9],[2,-9],[1,-10],[1,-9],[4,-16],[-4,-6],[-2,-2],[-14,-12],[-58,-17],[-5,-6],[-7,-5],[-6,-10],[-3,-12],[2,-10],[-2,-6],[-3,-2],[-2,1],[-3,2],[2,13],[-3,8],[-6,2],[-5,-4],[-2,-3],[-3,-1],[-1,-2],[-1,-6],[2,-3],[8,-8],[23,-2],[11,-4],[2,-14],[-2,-6],[-1,-2],[-2,-2],[-3,-2],[-6,-4],[-2,-3],[2,-1],[10,-29],[0,-11],[-4,-6],[-6,-2],[-6,-1],[-4,-2],[-10,-9],[-6,-1],[-10,5],[-15,17],[-9,2],[0,-3],[1,0],[1,-1],[-2,-1],[-1,-1],[-1,-2],[-2,0],[1,-12],[-2,-6],[-2,-6],[-1,-9],[2,-6],[4,-4],[4,-1],[4,4],[-1,2],[-1,5],[2,1],[7,4],[2,-4],[4,-10],[1,-3],[2,-2],[9,-11],[5,-3]],[[53197,84046],[0,8],[3,3],[23,3],[12,6],[0,-5],[-1,0],[-1,-1],[-1,-2],[-5,-3],[-4,-6],[-3,-7],[-4,-5],[-4,-2],[-6,1],[-5,3],[-4,7]],[[52451,84074],[-4,-5],[-11,-11],[-1,-11],[-23,-7],[-7,-5],[-3,2],[-8,19],[-3,5],[-6,9],[-7,4],[-2,0],[-8,-4],[-3,1],[1,7],[1,3],[2,2],[2,2],[3,1],[1,3],[0,5],[-1,6],[-1,2],[8,7],[20,3],[6,11],[-3,-1],[-3,1],[-4,1],[-3,2],[2,6],[5,9],[3,6],[-1,0],[-1,4],[0,10],[1,2],[2,0],[2,0],[2,0],[8,4],[16,3],[9,5],[6,-2],[5,8],[10,23],[6,-5],[4,7],[3,8],[4,-2],[-2,-5],[-3,-7],[-1,-4],[1,-3],[2,-8],[1,-5],[-1,-2],[-3,-19],[-2,-7],[-2,-3],[-2,-2],[0,7],[-1,5],[-2,2],[-2,2],[-7,-6],[-1,-2],[-1,-7],[1,-3],[1,-3],[1,-3],[2,-20],[3,-6],[4,-2],[-1,-3],[-2,-2],[-2,0],[-2,0],[2,-2],[2,-2],[-4,-6],[-4,-14],[-4,-8]],[[53095,84423],[7,0],[3,-1],[3,-3],[2,-8],[0,-6],[-2,-5],[-7,2],[-6,2],[-21,-6],[4,-4],[3,-9],[-1,-9],[-6,-9],[-4,-7],[-2,-8],[-5,-7],[-9,-2],[-5,5],[-7,16],[-10,2],[-8,5],[-5,6],[-4,6],[0,3],[9,3],[9,10],[7,7],[11,1],[7,2],[5,7],[20,0],[12,7]],[[53195,70120],[6,-2],[10,-7],[4,-5],[3,-15],[5,-6],[9,-8],[33,-9],[10,-7],[-5,11],[-18,10],[-5,11],[13,-13],[30,-18],[65,-74],[12,-22],[10,-6],[18,-21],[22,-19],[13,-6],[106,-21],[26,4],[69,37],[12,9],[9,13],[4,5],[7,2],[19,2],[26,-9],[3,-3],[3,-4],[55,-53],[13,-6],[47,4],[12,-3],[24,-13],[21,-17],[51,-15],[3,-2],[5,-9],[1,-2],[5,-3],[10,-18],[15,-18],[25,-38],[12,-24],[6,-4],[45,-14],[4,-4],[4,-7],[13,-12],[5,-4],[51,-4],[57,-18],[13,-8],[6,-2],[4,-4],[10,-25],[10,-11],[4,-7],[2,-21],[3,-12],[6,-22],[11,-29],[2,-9],[0,-13],[-3,-21],[-1,-24],[0,-14],[1,-43],[3,-21],[33,-157],[7,-22],[30,-77],[18,-35],[21,-30],[78,-67],[88,-28],[102,-2],[60,-24],[60,-38],[48,-19],[9,0],[3,-2],[2,-3],[10,-10],[8,-14],[3,-3],[2,-2],[41,-22],[22,-20],[23,-14],[20,-7],[4,-6],[8,-21],[5,-9],[5,-4],[25,-11],[44,-30],[9,-10],[8,-14],[25,-53],[67,-93],[16,-32],[8,-14],[18,-18],[12,-4],[5,-5],[41,-49],[11,-9],[25,-7],[25,-1],[26,5],[14,8],[13,7],[23,20],[31,38],[5,5],[13,4],[5,6],[37,53],[46,102],[12,39],[7,17],[10,15],[5,9],[18,69],[13,65],[1,26],[-1,76],[-5,15],[-7,39],[-6,17],[-12,23],[-5,12],[-19,97],[-1,24],[0,26],[-1,10],[-5,22],[-2,11],[-1,25],[1,27],[4,49],[4,23],[-1,6],[-1,6],[-1,7],[2,5],[3,9],[25,97],[7,18],[53,97],[4,12],[13,29],[6,6],[11,9],[5,7],[4,8],[40,58],[65,50],[38,47],[33,30],[13,5],[52,-6],[13,2],[23,11],[11,12],[43,70],[4,3],[13,2],[13,6],[7,-11],[13,-9],[13,-6],[12,-2],[60,12],[2,2],[3,9],[1,2],[6,2],[3,0],[3,-2],[3,-4],[0,-3],[0,-4],[1,-6],[9,-17],[11,-4],[26,1],[11,-7],[27,-38],[6,-5],[4,-4],[5,-2],[13,-2],[65,-35],[15,-18],[5,-3],[3,-1],[10,-7],[3,-1],[10,1],[6,-3],[12,-11],[12,-4],[6,-4],[3,-6],[1,-8],[-2,-6],[-4,-11],[-1,-6],[2,-36],[3,-9],[4,-7],[6,-6],[-3,-12],[-3,-37],[-5,4],[0,5],[0,5],[-2,5],[-2,5],[-5,-49],[1,-12],[4,-6],[17,-12],[6,-2],[5,-5],[5,-11],[4,-13],[4,-18],[4,-4],[4,-2],[4,-4],[2,-7],[2,-12],[3,-5],[0,10],[-4,26],[6,-3],[12,-1],[2,-2],[8,-12],[2,-2],[35,-5],[38,1],[48,-20],[44,-33],[-7,-12],[-1,-4],[2,-3],[7,-5],[18,-25],[6,-3],[53,1],[74,-10],[25,14],[6,8],[3,3],[11,-4],[3,1],[2,2],[2,1],[2,-2],[1,-2],[4,-4],[4,-2],[5,-5],[9,-3],[11,-8],[33,-12],[10,-12],[4,-19],[-2,-24],[-1,-13],[2,-10],[10,-19],[14,-40],[2,-10],[4,-17],[5,-17],[-1,-2],[0,-2]],[[56986,69217],[-18,-25],[-7,-21],[-11,-50],[-45,-67],[-3,-19],[0,-22],[3,-50],[0,-48],[6,-64],[2,-12],[10,-36],[4,-30],[12,-48],[3,-24],[-1,-20],[-4,-21],[-4,-23],[-3,-33],[-8,-41],[-1,-12],[-3,-20],[-5,-20],[-16,-45],[-9,-16],[-7,-18],[-3,-8],[-5,-20],[-11,-39],[-5,-21],[0,-23],[3,-12],[8,-26],[24,-112],[1,-13],[-1,-12],[-4,-30],[2,-25],[14,-45],[4,-24],[0,-14],[-3,-43],[1,-23],[3,-21],[23,-104],[5,-32],[2,-34],[0,-73],[0,-99],[0,-236],[0,-234],[0,-46],[0,-209],[0,-23],[0,-90],[0,-200],[0,-52],[0,-112],[0,-116],[0,-173],[0,-173],[0,-173],[0,-172],[0,-173],[0,-173],[0,-173],[0,-173],[0,-173],[0,-172],[0,-173],[0,-173],[0,-173],[0,-173],[0,-173],[0,-172]],[[56939,63496],[0,-74],[0,-74],[0,-74],[0,-73],[0,-74],[0,-74],[0,-74],[0,-74],[0,-73],[0,-74],[0,-74],[0,-74],[0,-56],[-1,-56],[0,-57],[0,-56],[0,-66],[0,-4],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-28,0],[-41,0],[-33,0],[-35,0],[-37,0],[-32,0],[-23,0],[-45,0],[0,-74],[0,-74],[0,-73],[0,-74]],[[56661,62016],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,37],[-34,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,37],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,37],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,37],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-28,30],[-6,6],[-34,36],[-35,37],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,37],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-34,36],[-35,36],[-34,37],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-25,27],[-6,-2],[-12,-11],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-17,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-4,-5]],[[54161,64088],[-1,0],[-47,-51],[-48,-51],[-47,-52],[-48,-51],[-17,-19],[-5,-1],[-4,4],[-12,23],[-35,61],[-35,61],[-35,61],[-34,61],[-16,27],[-32,36],[-29,13],[-24,12],[-25,12],[-24,11],[-25,12],[-24,12],[-25,11],[-24,12],[-25,12],[-24,11],[-25,12],[-24,12],[-25,11],[-24,12],[-25,12],[-24,11],[-25,12]],[[53324,64397],[-21,84],[-20,78],[-31,124],[0,2],[-20,79],[-19,77],[-8,18],[-9,10],[-11,7],[-88,57],[-67,43],[-53,34],[-6,2],[-6,-1],[-30,-22],[-33,-24],[-11,-2],[-5,4],[-36,57],[-5,11],[-4,21],[-5,55],[-5,16],[-41,47],[-4,16],[0,82],[-2,84],[-1,78],[-4,37],[-10,38],[-43,115],[-34,91],[-42,115],[-39,104],[-7,33],[7,28],[4,10],[5,23],[10,18],[2,8],[1,10],[1,12],[98,90],[5,12],[11,76],[0,12],[-3,17],[0,20],[7,64],[-1,8],[-4,7],[-13,13],[-3,6],[-2,11],[-6,62],[-23,158],[0,10],[1,10],[5,23],[4,35],[4,13],[11,25],[3,11],[-3,12],[-4,14],[-1,12],[7,9],[8,8],[4,12],[19,118],[1,5],[0,24],[-40,203],[-4,34],[14,208],[7,99],[-1,113],[-6,90],[-22,142],[-22,142],[-33,115],[-35,99],[-15,32],[-16,36],[-7,19],[65,67]],[[52644,68372],[62,60],[8,4],[20,3],[8,7],[34,83],[29,87],[26,53],[17,66],[4,24],[0,19],[-7,42],[-1,21],[2,23],[-1,11],[-9,33],[-8,63],[-21,101],[0,10],[3,39],[4,14],[18,36],[19,60],[14,21],[31,0],[15,10],[5,7],[4,8],[3,9],[5,20],[12,20],[3,20],[3,47],[6,12],[5,-1],[5,-5],[5,-4],[6,3],[9,14],[10,11],[9,17],[11,47],[8,14],[86,75],[72,63],[20,23],[3,6],[6,10],[5,18],[-1,25],[-7,21],[-18,33],[-6,23],[0,33],[4,62],[-2,62],[5,40],[0,33],[1,9],[8,57],[-1,26]],[[52644,68372],[-8,65],[-8,65],[-8,65],[-8,65],[-8,66],[-7,65],[-8,65],[-8,65],[-8,65],[-8,65],[-8,66],[-8,65],[-8,65],[-7,65],[-8,65],[-8,65],[-1,7],[-5,42],[-3,11],[-4,9],[-47,61],[-58,76],[-44,58],[-34,39],[-8,15],[0,1],[-4,20],[-2,61],[-4,83],[-4,19],[-28,79],[-26,74],[-6,6],[-6,-2],[-6,1],[-6,3],[-5,5],[-31,40],[-10,6],[-13,2],[-11,6],[-7,14],[-4,27],[0,79],[0,2],[-5,24],[-21,66],[-17,55],[-3,15],[-3,31],[-8,27],[-2,11],[-3,32],[-2,23],[6,60],[1,43],[4,16],[6,11],[11,21],[7,16],[7,14],[11,9],[18,5],[5,5],[4,8],[2,10],[10,70],[6,20],[11,14],[24,19],[11,15],[27,21],[2,4],[12,18],[6,7],[2,4],[2,4],[2,10],[1,5],[10,11],[2,7],[-7,19],[1,10],[3,8],[9,17],[1,1],[2,5],[1,8],[-6,60],[0,22],[3,23],[6,32],[5,43],[4,21],[13,26],[17,45],[3,11],[-10,13],[-12,7],[-10,9],[-7,21],[-1,24],[0,22],[3,20],[10,42],[0,18],[-2,49],[-1,18],[-5,20],[-14,39],[-3,20],[-1,25],[1,48],[6,37],[1,7],[1,32],[6,44],[3,10],[3,11],[-1,10],[-2,11],[-1,12],[1,25],[13,63],[0,3],[1,8],[1,25],[-1,11],[-2,11],[-5,5],[-5,2],[-5,5],[-24,5],[-12,8],[0,1],[1,20],[6,14],[8,8],[18,12],[34,35],[6,12],[7,21],[2,20],[-6,12],[-9,9],[1,10],[9,7],[11,2],[10,-1],[10,3],[19,14],[5,6],[0,7],[-9,25],[-1,6],[0,7],[-1,16]],[[52389,72346],[5,4],[20,13],[7,3],[23,0],[7,3],[11,17],[9,7],[2,1],[6,11],[8,18],[9,28],[4,4],[2,2],[8,15],[3,3],[9,5],[22,16],[3,3],[6,17],[5,4],[37,1],[10,7],[7,13],[4,4],[4,-3],[2,-3],[4,1],[3,3],[8,3],[6,5],[6,7],[4,7],[6,-6],[5,2],[10,12],[6,5],[5,2],[12,1],[6,4],[3,1],[3,-3],[2,-4],[3,-2],[24,-1],[0,-1],[1,-6],[0,-27],[-9,-12],[-10,-7],[-6,-15],[1,-5],[4,-16],[1,-3],[2,-2],[2,-9],[2,-1],[12,-3],[6,1],[6,9],[3,8],[4,11],[-1,10],[-17,12],[-3,0],[-6,-4],[-3,0],[0,4],[7,8],[3,1],[1,3],[1,3],[1,2],[5,1],[27,-11],[5,1],[14,11],[3,-1],[4,-11],[20,-5],[9,-14],[21,-13],[5,-8],[-9,-4],[-4,-3],[-4,-4],[-2,9],[-7,2],[-9,-4],[-5,-7],[2,-10],[7,-5],[9,0],[5,2],[2,-5],[2,-7],[1,-5],[-1,-8],[-2,9],[-12,-20],[2,-29],[10,-30],[13,-23],[10,-8],[3,-4],[7,-15],[3,-7],[-2,-7],[-6,-11],[-3,-12],[-3,-5],[-4,-1],[-3,5],[2,9],[-3,3],[-4,-1],[-10,-5],[-2,-4],[-5,-12],[-1,-8],[4,-3],[8,-1],[4,-3],[2,3],[1,2],[4,13],[6,-23],[7,-17],[10,-11],[13,-2],[4,1],[6,0],[14,12],[8,4],[6,10],[2,16],[2,14],[4,24],[5,7],[6,2],[13,-1],[11,4],[11,7],[14,17],[8,15],[3,2],[1,6],[1,3],[16,22],[2,5],[1,7],[-1,4],[-1,3],[3,7],[6,4],[14,3],[11,14],[5,1],[5,-4],[3,-10],[-1,-5],[-2,-8],[-1,-6],[0,-6],[3,-9],[1,-5],[1,-4],[5,-13],[1,-5],[1,-6],[1,-13],[0,-6],[2,-4],[1,-6],[2,-4],[2,-2],[2,-3],[3,-9],[-2,-10],[-4,-9],[-11,-8],[-15,-22],[-8,-26],[-12,-30],[-19,-62],[-15,-64],[-8,-17],[-23,-10],[-26,-26],[-10,4],[-10,-12],[-9,-24],[-4,-22],[-3,-25],[-4,-24],[0,-31],[-1,-31],[1,-20],[4,-20],[2,-10],[1,-4],[2,-6],[1,-13],[1,-5],[6,-17],[5,-8],[4,-4],[3,-6],[7,-39],[4,-8],[19,-31],[1,-1],[5,-5],[9,-6],[17,10],[2,-1],[3,-3],[5,-8],[-3,-8],[-2,-11],[2,-13],[3,-8],[11,-9],[25,-17],[11,2],[8,-12],[4,-14],[-10,-7],[-2,-14],[1,-9],[0,-5],[3,-13],[4,-9],[13,-7],[-8,-12],[-2,-16],[-1,-14],[1,-26],[-4,-12],[2,-22],[6,-18],[10,-22],[6,-8],[7,-5],[4,-4],[-1,-11],[-7,-1],[-6,-7],[-5,-19],[-8,-12],[-4,-13],[-4,-14],[-6,-9],[2,-17],[-1,-18],[-9,-20],[-11,-10],[-8,-15],[2,-14],[-2,-12],[0,-24],[-12,-14],[-2,-5],[-2,-2],[-1,-4],[3,-12],[1,-8],[-10,-8],[-6,-9],[-9,-17],[-5,-16],[-5,-8],[-3,-11],[-5,-9],[-4,-6],[-19,-10],[-2,-3],[-1,-4],[-1,-6],[-1,-8],[-2,-6],[0,-11],[-2,-7],[-1,-10],[-4,-8],[-6,-5],[-26,-7],[-10,-9],[-15,-43],[-13,-7],[-3,1],[-2,2],[-3,0],[-4,-2],[-1,-3],[-2,-4],[-5,-14],[-3,-4],[-4,-1],[-13,-11],[-5,-7],[-12,-8],[-6,-13],[-4,-18],[-10,-36],[-6,-17],[-4,-2],[-2,-4],[0,-1],[-1,-1],[2,-10],[1,-12],[0,-25],[1,-11],[4,-23],[1,-11],[3,-19],[6,-22],[26,-65],[2,-5],[4,-4],[40,-70],[10,-11],[22,-17],[4,-2],[8,-3],[19,5],[21,11],[18,17],[5,2],[7,-21],[-1,-40],[-8,-13],[-5,-3],[-3,-8],[-2,-10],[2,-9],[7,-20],[3,-8],[6,-3],[12,4],[21,23],[10,6],[5,3],[4,9],[2,12],[-1,10],[-5,10],[-1,5],[8,12],[4,-4],[3,-2],[3,3],[2,7],[2,0],[4,-6],[12,-9],[5,-6],[3,-8],[10,-27],[1,-5],[1,-30],[-7,-21],[6,-37],[-3,-17],[8,5],[6,-11],[5,-13],[7,-6],[7,-3],[14,-13],[7,-4],[-2,-3],[-1,-1],[-1,0],[-27,15],[-14,3],[-3,-18],[3,-8],[4,-6],[4,-9],[2,-12],[3,-6],[6,0],[12,4],[12,-5],[23,-15],[13,0],[4,5],[-1,8],[-5,7],[-5,3],[-3,4],[-4,9],[-4,8],[25,-32],[15,-13],[2,-1]],[[53053,70511],[5,-6],[6,-4],[5,-6],[3,-8],[-19,-30],[-4,-4],[-2,-3],[-1,-5],[-3,-19],[-2,0],[1,16],[1,5],[-4,-3],[-4,-19],[-5,-13],[-4,-9],[-2,-11],[-5,8],[0,11],[2,9],[-5,14],[-5,4],[-4,7],[-5,3],[-5,-10],[-3,-9],[-5,-2],[-6,9],[-2,9],[-2,17],[1,15],[5,17],[-3,24],[0,19],[10,7],[23,-9],[12,-1],[9,10],[8,-18],[9,-15]],[[53045,70994],[3,4],[3,5],[32,-1],[3,-6],[-4,-8],[-12,-15],[-5,2],[-5,5],[-10,7],[-5,7]],[[53129,71063],[2,-2],[2,-4],[7,-12],[-2,-8],[-28,-21],[-14,-15],[-5,-3],[-2,10],[4,8],[4,8],[5,12],[1,9],[0,3],[0,6],[2,2],[1,-6],[4,-4],[7,2],[0,13],[-2,7],[3,8],[3,5],[2,7],[3,6],[4,-5],[8,-2],[2,-5],[-8,-5],[-1,-3],[-1,-4],[-1,-7]],[[57393,79049],[14,9],[6,1],[6,-8],[3,-1],[3,6],[3,-9],[6,-1],[11,3],[5,-3],[6,-12],[3,3],[12,-17],[2,-5],[1,-10],[3,2],[3,7],[2,3],[4,-4],[1,-7],[2,-6],[10,-5],[0,-5],[-3,-5],[-6,0],[0,-4],[8,-7],[5,-2],[3,4],[3,-2],[2,-3],[2,-3],[0,-3],[-3,-5],[-1,-4],[2,-14],[5,-12],[7,-8],[7,-6],[0,-5],[-6,-3],[0,-3],[1,-2],[0,-2],[1,-2],[7,5],[4,-8],[2,-8],[4,3],[3,-5],[1,-6],[-2,-5],[-4,-4],[6,-7],[2,-1],[0,-1],[0,-3],[-5,-9],[3,-6],[6,-5],[5,-8],[0,-3],[1,-18],[-1,-4],[3,-3],[4,-2],[3,-2],[2,-5],[-10,-8],[4,-4],[3,-9],[4,-9],[1,-5],[1,-2],[5,-6],[1,-2],[0,-1],[1,-5],[0,-6],[1,-4],[0,-4],[-6,-2],[3,-13],[6,-16],[18,-34],[8,-11],[8,-5],[1,-2],[0,-3],[1,-8],[1,-3],[1,-2],[0,-6],[0,-2],[1,-1],[3,-1],[1,0],[2,-16],[2,-9],[3,-4],[2,0],[2,-2],[1,-1],[1,-1],[7,-1],[1,1],[4,-2],[4,-4],[3,-5],[2,-5],[-2,-3],[-1,-5],[-1,-6],[-1,-7],[5,-6],[-3,-18],[4,-4],[1,-1],[3,-4],[7,-23],[3,-9],[3,-1],[7,-3],[3,-2],[2,-3],[2,-2],[7,-2],[3,-5],[6,-14],[-1,-8],[3,-7],[7,-13],[4,-16],[0,-1],[1,-4],[1,-4],[-1,-3],[-3,-1],[3,-7],[12,-9],[0,-4],[-1,-5],[1,-1],[3,-2],[2,-2],[9,-14],[8,-8],[3,-4],[0,-9],[7,-2],[6,-6],[7,-4],[5,4],[2,-9],[1,-1],[8,-16],[4,-10],[6,-22],[0,-9],[0,-1],[-2,-9],[5,-5],[0,-6],[0,-7],[3,-6],[0,-5],[-1,-7],[0,-4],[4,-17],[12,-28],[0,-11],[15,-46],[3,-16],[0,-3],[1,-6],[0,-8],[-2,-6],[-3,-8],[-1,-8],[2,-10],[-2,-2],[-1,-5],[-1,-22],[1,-5],[3,-10],[1,-2],[2,1],[0,-1],[1,-5],[0,-18],[0,-5],[-2,-5],[-4,-2],[2,-9],[-1,-3],[-1,0],[-2,-2],[-2,-2],[-1,-18],[-2,-3],[-3,-2],[-1,-4],[2,-12],[0,-7],[-1,-2],[-3,-12],[-4,-5],[-2,-2],[-4,-2],[-2,-2],[-1,-4],[1,-10],[-1,-3],[-3,-2],[-4,-2],[1,-5],[5,-12],[2,-4],[2,-4],[0,-5],[-3,-14],[-1,-14],[-5,-20],[-1,-4],[-2,-8],[-2,-2],[-1,-3],[0,-3],[2,-2],[0,-3],[-3,-21],[-1,-6],[1,-8],[7,-30],[0,-6],[1,-4],[2,-4],[1,-5],[-1,-4],[-1,-5],[0,-5],[1,-4],[2,-7],[1,-3],[-1,-3],[-4,-4],[-1,-3],[1,-17],[4,-18],[5,-14],[2,-6],[3,-59],[-1,-9],[2,-8],[-4,-3],[-9,0],[-4,-2],[-4,-5],[-5,-6],[-4,-7],[16,-13],[6,-7],[5,-13],[1,-3],[1,-1],[0,-2],[0,-20],[2,-6],[8,-13]],[[58238,77247],[-2,1],[-8,0],[0,-4],[4,-9],[3,-10],[5,-8],[9,-2],[-6,-10],[-3,-16],[-3,-53],[-1,-10],[-4,-16],[-1,-9],[0,-9],[-1,-9],[-2,-6],[2,-12],[-7,-17],[4,-11],[-2,-7],[-2,-2],[-3,-1],[-3,-2],[-4,-9],[-2,-3],[-5,4],[-3,-1],[-3,-2],[-3,-1],[-54,-13],[-35,-3],[-10,-5],[-28,-30],[-8,-12],[-7,-15],[-2,5],[1,8],[-4,11],[-2,9],[6,4],[7,2],[10,8],[11,4],[6,7],[5,10],[2,14],[-1,7],[-4,8],[-8,13],[1,-9],[1,-5],[0,-6],[-5,1],[-4,-4],[-3,-2],[-4,9],[-1,11],[0,35],[2,12],[13,7],[4,8],[-3,6],[-12,12],[-3,2],[-9,0],[-9,5],[-3,-1],[-1,-3],[0,-6],[-2,-5],[-3,-2],[-6,-1],[-3,-2],[-10,-14],[-3,-7],[-2,-13],[0,-3],[3,-3],[1,-4],[-1,-3],[-1,-2],[-1,-1],[-1,-2],[1,-5],[2,-5],[2,-3],[6,-4],[14,-21],[-4,-6],[-1,-2],[-3,0],[3,-4],[1,0],[0,-5],[-4,-3],[0,-6],[2,-6],[4,-5],[-3,-3],[-3,-1],[-13,-1],[-2,-2],[-17,-15],[-3,-4],[-3,-9],[0,-7],[2,-4],[4,6],[-1,-8],[-6,-2],[-1,-9],[1,-9],[2,-3],[15,4],[7,6],[6,9],[6,12],[-4,12],[19,-10],[4,-5],[2,-10],[-3,-12],[-5,-9],[-6,-3],[5,10],[4,11],[1,10],[-6,6],[0,-5],[2,-4],[-1,-2],[-5,-2],[-4,4],[-2,0],[-1,-1],[-1,-3],[-2,-4],[-5,-6],[-9,-14],[-5,-4],[-13,-11],[-4,-5],[5,14],[1,6],[-4,1],[-4,-2],[-2,-4],[-1,-7],[3,0],[-2,-6],[2,-5],[2,-3],[4,-3],[-11,-5],[-4,-6],[0,-9],[1,3],[2,3],[1,2],[4,-3],[3,-5],[-2,-8],[-4,-15],[-2,-16],[2,-12],[2,0],[2,4],[2,7],[1,14],[3,4],[6,6],[8,17],[5,8],[5,4],[5,2],[4,6],[2,8],[3,12],[-2,-12],[-2,-10],[-18,-54],[-13,-15],[-26,-51],[-2,-14],[-1,-7],[-4,4],[-4,-3],[-4,-5],[-3,-6],[-1,-8],[-1,-8],[-1,-22],[2,-8],[4,-12],[4,-19],[1,-9],[-1,-5],[2,-4],[-4,3],[-3,-1],[-3,-5],[-2,-5],[2,-11],[5,-48],[5,-31],[0,-3],[-1,-5],[-2,-6],[-2,-11],[-4,-17],[-1,-8],[-6,-20],[-2,-6],[-4,-33],[-2,-5],[0,-6],[1,-5],[-1,-6],[-1,-6],[0,-6],[0,-6],[-1,-6]],[[57938,76374],[-40,-4],[-59,16],[-58,40],[-9,12],[-13,68],[-6,17],[-16,-3],[-19,-16],[-18,-7],[-11,23],[-2,3],[-5,18],[-7,4],[-16,-8],[-53,-1],[-3,3],[-5,15],[-4,5],[-15,11],[-6,10],[1,14],[-4,5],[-1,1],[-7,-1],[-5,5],[-30,9],[-20,19],[-7,-7],[-33,-5],[-26,-24],[-10,-5],[-12,0],[-4,-1],[-5,-5],[-3,-2],[-5,-1],[-10,-5],[-55,-12],[-23,-5],[-6,-2],[-22,-15],[-22,-9],[-10,-8],[-10,-17],[-5,-12],[-2,-9],[-34,-38],[-2,-7],[-3,-8],[-13,-26],[-8,-7],[-9,-15],[-1,-2],[-6,-17],[-12,-7],[-2,0],[-17,-1],[-5,-6],[-4,-6],[-6,-6],[-6,-4],[-5,-2],[-6,-4],[-6,-1],[-12,1],[-2,0],[-4,-2],[-12,-8],[-6,-2],[-12,2],[-10,10],[-10,11],[-1,1],[-9,8],[-11,4],[-36,5],[-33,18],[-59,-7],[-13,3],[-12,7],[-45,26],[-9,2],[-10,-5],[-16,-18],[-4,-2],[-6,0],[-50,-4],[-2,1],[-97,38],[-16,14],[-6,2],[-24,-8],[-4,1],[-8,2],[-30,25],[-44,4],[-26,-6],[-10,-8],[-10,-3],[-8,-6],[-22,-3],[-37,-5],[-9,3],[-7,9],[-3,12],[0,13],[7,45],[3,13],[5,5],[6,2],[11,5],[6,2],[10,8],[4,18],[-2,18],[-6,5],[-6,3],[-13,3],[-10,7],[-59,62]],[[56303,76662],[-1,1],[-1,8],[1,29],[-2,8],[-5,4],[-12,2],[-11,8],[-9,12],[-7,15],[-5,17],[0,5],[0,9],[0,5],[-1,4],[-6,8],[-1,5],[0,8],[1,8],[1,5],[2,3],[3,1],[9,1],[4,2],[2,6],[1,10],[2,10],[4,6],[5,3],[6,-1],[6,-3],[10,-11],[6,-2],[5,1],[7,5],[4,8],[2,10],[-14,24],[-4,5],[-22,4],[-9,7],[-10,11],[-19,33],[-4,4],[-5,1],[-7,1],[-3,-4],[-10,-16],[-5,-5],[-12,-4],[-4,-5],[-1,-9],[-32,-87],[-4,-6],[-6,-2],[-6,1],[-6,4],[-5,7],[-3,17],[-3,4],[-3,3],[-3,4],[-1,5],[-1,7],[-1,4],[-1,4],[-7,29],[-3,4],[-9,2],[-25,20],[-5,2],[-4,-2],[-11,-7],[-12,-4],[-14,0],[-14,6],[-10,16],[-3,11],[-1,10],[-3,10],[-5,7],[-5,2],[-17,-2],[-24,4],[-4,3],[-5,16],[-5,6],[-5,3],[1,8],[3,6],[3,5],[8,4],[16,-1],[8,2],[11,5],[4,5],[1,11],[-3,10],[-4,5],[-9,6],[-7,5],[-14,4],[-6,6],[0,3],[0,4],[-1,3],[-4,1],[-4,1],[-1,5],[2,6],[2,5],[2,2],[8,1],[2,2],[4,4],[1,3],[0,4],[1,8],[1,3],[2,4],[1,3],[0,2],[0,5],[0,3],[0,1],[2,5],[2,4],[3,2],[4,0],[3,5],[1,7],[-1,8],[-3,5],[-7,12],[-7,9],[-8,7],[-29,13],[-12,1],[-5,3],[-9,10],[-5,8],[-9,21],[-4,5],[-3,-1],[-5,-7],[-3,-2],[-3,1],[-2,3],[-3,4],[-2,4],[-14,9],[-9,6],[-5,6],[-10,21],[-18,24],[-9,20],[-4,6],[-5,4],[-5,2],[-4,4],[-2,8],[7,8],[4,6],[0,8],[-3,14],[-8,21],[-1,10],[2,15],[3,11],[1,5],[1,8],[-1,31],[1,6],[1,6],[0,5],[-2,6],[-3,2],[-4,-1],[-2,-6],[-2,-6],[-3,-5],[-4,-1],[-4,1],[-3,4],[-3,8],[-6,13],[-3,6],[0,4],[-1,2],[0,12],[-1,5],[-2,4],[-5,5],[-2,2],[-9,25],[-4,6],[-6,4],[-10,1],[-5,4],[-15,20],[-5,5],[-11,7],[-5,6],[-4,9],[-6,27],[-3,9],[-18,33]],[[55622,77776],[12,21],[44,2],[7,16],[11,-4],[11,-7],[9,-11],[2,-3],[4,-2],[2,0],[15,5],[6,4],[4,7],[2,6],[0,1],[0,8],[1,4],[2,1],[3,-1],[3,-1],[2,3],[0,5],[-3,13],[0,6],[1,3],[11,14],[3,2],[3,2],[6,2],[5,0],[3,-2],[5,-6],[2,-2],[3,1],[4,3],[2,1],[5,-2],[10,-6],[6,0],[2,2],[3,0],[2,-2],[2,-4],[5,-6],[5,2],[13,24],[2,2],[8,-1],[3,4],[3,9],[2,11],[2,26],[2,13],[5,8],[6,3],[11,1],[7,7],[-2,13],[-8,23],[1,12],[3,10],[5,8],[4,11],[1,23],[1,11],[5,8],[6,2],[10,-1],[6,4],[6,12],[1,7],[1,3],[3,7],[8,1],[5,5],[5,11],[1,12],[-7,7],[-1,2],[-1,1],[-1,2],[1,3],[0,4],[1,3],[2,3],[5,23],[4,10],[6,8],[10,4],[3,4],[2,7],[0,7],[-1,6],[0,7],[0,7],[1,2],[1,0],[13,16],[2,4],[5,29],[1,1],[-2,7],[-2,3],[-3,0],[-2,2],[-1,3],[0,2],[10,19],[7,9],[13,13],[6,8],[2,5],[1,11],[1,5],[3,6],[6,8],[3,5],[1,7],[0,6],[-1,5],[1,7],[1,7],[3,8],[1,6],[4,21],[1,7],[11,23],[5,8],[5,4],[12,6],[6,16],[0,20],[-3,20],[-1,19],[6,14],[8,13],[17,19],[14,5],[1,2],[3,2],[1,4],[0,1],[1,4],[0,4],[1,4],[6,14],[1,5],[1,11],[1,5],[2,3],[5,5],[2,3],[6,14],[3,4],[6,4],[4,3],[4,1],[13,-3],[4,0],[4,2],[3,5],[4,23],[9,3],[20,-16],[10,-2],[11,2],[10,7],[8,10],[7,13],[3,4],[6,3],[6,1],[1,2],[3,7],[-1,4],[-1,4],[0,5],[3,8],[4,4],[11,6],[5,6],[7,19],[4,7]],[[55622,77776],[-15,19],[-5,3],[-7,-5],[-2,-1],[-2,2],[-3,6],[-1,2],[-5,1],[-2,0],[-7,-5],[-8,-2],[-12,10],[-18,2],[-11,-3],[-4,-3],[-23,-14],[-5,1],[-17,17],[-6,5],[-6,3],[-6,1],[-16,-5],[-6,0],[-5,-1],[-7,-5],[-6,-6],[-4,-7],[0,-5],[2,-5],[1,-5],[-7,-6],[-2,-4],[-2,-4],[-2,-5],[-4,-5],[-3,-2],[-3,0],[-3,-3],[-3,-5],[-2,-6],[-3,-5],[-4,-2],[-10,0],[-6,-2],[-2,-2],[-3,-4],[-2,-7],[-1,-7],[-4,-6],[-7,-3],[-25,4],[-6,5],[0,1],[-4,11],[-6,4],[-7,-4],[-4,-12],[0,-17],[-5,-2],[-7,1],[-7,-7],[-1,-2],[0,-2],[0,-2],[2,-5],[1,-3],[0,-2],[-2,-1],[-5,4],[-17,2]],[[55250,77671],[-4,-1],[-3,-4],[-3,-3],[-6,-2],[-4,-5],[-2,0],[-1,0],[-4,4],[-3,-6],[-1,-5],[-1,-4],[-3,-3],[-4,1],[-10,8],[-14,7],[-5,-1],[-7,-9],[-1,-3],[-1,-8],[0,-3],[-1,0],[-4,-7],[-6,-18],[-3,-6],[-12,-15],[-7,-4],[-7,4],[-4,-5],[-10,-17],[-5,-7],[-2,0],[-2,-1],[-2,1],[-2,0],[-5,9],[-4,0],[-5,-3],[-4,-3],[-5,3],[-5,7],[-6,0],[-9,10],[-5,2],[-23,0],[-2,-1],[-5,-5],[-3,-2],[-3,0],[-29,12],[-20,0],[-4,0],[-3,-2],[-1,-4],[-2,-5],[-3,-1],[0,3],[-5,14],[-9,9],[-33,15],[-7,1],[-2,2],[0,4],[-1,3],[0,7],[-2,9],[0,4],[-2,6],[-13,21],[-10,7],[-12,3],[-24,2],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-2,10],[-3,2],[-7,-4],[-5,-1],[-1,2],[0,5],[-1,10],[-3,-7],[-3,1],[-3,4],[-1,0],[-4,2],[0,4],[2,1],[4,3],[2,0],[-3,5],[-4,1],[-5,3],[-2,10],[0,6],[-4,18],[-1,6],[-11,22],[-4,2],[-22,1],[-4,3],[-14,15],[-3,6],[-1,6],[-3,4],[-14,18],[-3,6],[-7,18],[-10,19],[-2,2],[-2,4],[-3,11],[-2,9],[1,10],[-3,9],[-1,4],[-3,4],[-3,6],[-2,0],[0,-3],[-1,-2],[-2,2],[-1,3],[-1,2],[-2,1],[-1,1],[-7,2],[-2,2],[-2,-8],[-2,0],[-4,10],[-8,8],[-5,10],[-5,11],[-5,9],[-6,7],[-7,2],[-3,2],[-2,1],[-2,-2],[-1,-6],[-2,0],[-3,6],[-12,11],[-2,2]],[[54587,78009],[-4,25],[-9,12],[-11,23],[-9,9],[-6,6],[-1,4],[-1,4],[3,6],[5,4],[2,2],[2,3],[-2,12],[-4,4],[-5,0],[-1,1],[-1,0],[-2,2],[0,9],[-4,-1],[-2,5],[-3,7],[-3,6],[-4,17],[0,2],[0,2],[1,5],[2,6],[1,2],[2,7],[2,7],[1,6],[-2,3],[-4,0],[-2,2],[-1,2],[-5,8],[-3,2],[-25,-3],[-12,-2],[-2,1],[-10,3]],[[54470,78222],[4,4],[4,5],[10,20],[3,5],[7,7],[6,4],[2,2],[2,4],[0,4],[0,3],[1,4],[2,3],[3,1],[2,3],[2,9],[2,6],[4,1],[10,-3],[12,2],[6,-1],[4,-5],[2,-2],[1,-1],[2,1],[1,2],[5,1],[7,0],[5,2],[-1,6],[-4,6],[-4,2],[-8,1],[3,5],[13,7],[3,3],[1,3],[-1,3],[-3,3],[-6,2],[-2,8],[2,9],[6,5],[6,12],[1,7],[-3,7],[-5,1],[-9,-7],[-4,4],[0,3],[3,10],[0,6],[-2,3],[-3,1],[-2,0],[-1,2],[-1,9],[4,13],[-1,11],[9,7],[4,5],[1,8],[-1,9],[-8,26],[-1,1],[-1,1],[-1,1],[-1,2],[0,4],[1,1],[2,1],[0,2],[-1,23],[3,7],[4,2],[3,-4],[4,-8],[30,20],[10,12],[4,4],[-1,24],[3,5],[8,5],[3,7],[0,9],[-2,8],[-4,5],[-4,4],[1,12],[-2,12],[-5,9],[-6,4],[-9,-2],[-19,11],[-7,-3],[-16,9],[-5,4],[3,5],[4,10],[2,3],[1,-3],[2,-2],[1,0],[2,1],[3,4],[11,9],[3,3],[1,5],[0,8],[1,6],[11,6],[11,-2],[23,-12],[3,-4],[2,-5],[1,-6],[2,-6],[3,-5],[3,-3],[15,-3],[3,1],[3,4],[5,12],[4,5],[4,-16],[11,-2],[22,8],[20,4],[6,3],[-4,3],[-2,5],[-1,6],[-1,19],[-2,12],[0,10],[4,7],[-2,4],[-2,11],[-3,2],[-5,4],[-2,3],[0,6],[3,3],[10,3],[4,5],[3,6],[2,8],[1,10],[-1,1],[-1,1],[-1,1],[-1,3],[1,1],[3,3],[0,1],[1,5],[1,4],[0,3],[-3,5],[18,21]],[[54763,78899],[10,9],[10,-3],[12,-5],[2,-1],[19,-4],[8,-10],[29,-55],[3,-3],[2,-2],[7,-2],[3,-3],[9,-20],[4,-5],[3,0],[2,2],[4,1],[4,-3],[5,-6],[6,-7],[2,-6],[3,-5],[11,-9],[7,-5],[23,-9],[16,1],[64,6],[34,-5],[10,2],[21,12],[57,9],[12,-1],[11,-6],[8,-3],[8,1],[7,6],[9,16],[5,5],[6,2],[7,4],[-10,11],[-9,11],[-1,12],[0,12],[3,24],[-1,7],[-2,3],[0,2],[4,6],[2,2],[5,2],[3,3],[8,22],[4,6],[27,8],[13,4],[4,3],[7,0],[5,-1],[17,4],[34,-6],[3,1],[17,15],[37,-1],[15,15],[0,3],[1,3],[-1,3],[0,4],[0,1],[3,9],[3,23],[3,9],[5,4],[25,9],[3,0],[3,-1],[3,-4],[6,-10],[3,-2],[13,3],[6,-1],[5,-9],[0,-6],[-1,-5],[-1,-5],[3,-5],[2,-1],[10,5],[7,-3],[11,-13],[6,-3],[6,3],[13,17],[6,5],[11,5],[1,1],[11,10],[5,2],[2,3],[2,5],[2,11],[1,4],[3,6],[3,1],[3,-2],[4,-1],[5,3],[9,11],[3,2],[5,-4],[3,-4],[4,-3],[6,5],[8,12],[7,15],[6,17],[11,47],[3,9],[4,8],[8,13],[1,1],[4,7],[0,3],[0,2],[0,2],[0,2],[-1,10],[0,5],[1,5],[8,4],[17,2],[59,19],[4,0],[5,-3],[8,-11],[4,-1],[9,-2],[15,-13],[10,-1],[7,1],[8,-2],[8,-5],[5,-8],[7,-2],[22,14],[9,3],[5,-3],[3,-4],[3,-2],[5,3],[3,7],[1,6],[3,6],[5,4],[5,2],[9,0],[15,6],[4,-1],[9,-8],[5,-3],[2,-3],[2,-5],[3,-12],[2,-4],[4,-3],[10,0],[5,-1],[3,-7],[3,-24],[2,-7],[16,-34],[7,-10],[7,-8],[9,-4],[8,1],[14,10],[12,3],[9,7],[4,2],[14,1],[6,2],[5,1],[16,-2],[5,2],[5,5],[5,10]],[[54763,78899],[-7,9],[-9,4],[-6,5],[2,10],[-4,4],[-1,1],[2,11],[1,6],[3,5],[-4,5],[-1,4],[-4,11],[-3,2],[-5,1],[-3,4],[-7,10],[-2,10],[0,13],[-2,10],[-4,22],[0,2],[0,7],[0,3],[-1,2],[-2,1],[-3,4],[-2,1],[-2,2],[-1,4],[-1,2],[-1,4],[-1,3],[0,1],[-2,1],[1,3],[1,4],[1,2],[-2,5],[-2,4],[-3,4],[-2,1],[-6,1],[-2,2],[-1,3],[1,7],[0,3],[1,1],[1,4],[2,32],[1,8],[3,8],[7,15],[2,8],[2,6],[4,5],[5,7],[1,3],[1,7],[-3,28]],[[55231,79790],[27,-3],[8,-7],[-2,-10],[0,-8],[2,-8],[0,-9],[-1,-20],[2,-6],[5,-2],[7,1],[11,9],[6,2],[3,-2],[5,-5],[3,-2],[3,0],[7,2],[8,4],[2,5],[1,8],[2,11],[1,0],[3,0],[1,2],[1,4],[-1,2],[0,2],[-1,1],[4,19],[4,9],[4,5],[5,3],[5,2],[9,-1],[3,1],[4,2],[2,3],[24,37],[1,3],[1,1],[2,-1],[2,-2],[5,-11],[2,-3],[7,-6],[3,-12],[5,-30],[4,-19],[2,-4],[5,-5],[5,-2],[12,0],[-2,-4],[0,-3],[0,-10],[-1,-7],[16,-7],[6,-1],[6,0],[9,6],[3,-3],[2,-11],[2,-10],[2,-29],[-1,-2],[-2,-5],[0,-2],[1,-2],[4,-4],[0,-1],[0,-1],[2,-3],[1,-2],[-1,-4],[-1,-1],[-2,-1],[-1,-1],[-11,-24],[-1,-8],[4,-7],[7,-3],[12,-2],[7,3],[3,6],[6,8],[5,5],[9,1],[7,-5],[15,-19],[9,-6],[5,6],[3,14],[2,21],[3,6],[2,7],[2,7],[5,16],[2,3],[0,-1],[7,-1],[2,4],[6,10],[5,3],[21,3],[1,2],[2,9],[2,8],[0,5],[1,4],[3,3],[4,0],[11,-6],[14,1],[0,10],[5,2],[23,-17],[6,-2],[7,3],[3,4],[4,8],[3,2],[3,0],[6,-1],[10,2],[5,-1],[24,-41],[5,-4],[6,-1],[5,0],[4,-1],[5,-5],[5,-7],[4,-5],[5,-1],[7,3],[6,8],[9,18],[6,8],[4,1],[6,0],[5,2],[2,5],[-3,9],[-7,5],[-3,6],[6,9],[4,2],[11,4],[4,-1],[6,-5],[3,-6],[5,-4],[6,1],[4,7],[9,18],[5,4],[4,-1],[16,-11],[27,-11],[4,0],[11,3],[4,-2],[5,3],[4,3],[20,3],[5,-2],[3,-3],[5,-7],[3,-2],[2,-1],[4,1],[3,-1],[5,-6],[9,-20],[4,-5],[3,3],[4,6],[5,6],[5,2],[6,-4],[10,-14],[15,-10],[10,-13],[8,-18],[3,-21],[2,-19],[8,-8],[20,-5],[9,-8],[3,-2],[3,0],[6,1],[3,-1],[3,-5],[0,-4],[-1,-4],[0,-3],[3,-3],[13,-5],[15,0],[6,-3],[14,-20],[10,-4],[22,-1],[9,-7]],[[53962,82272],[2,0],[5,3],[4,4],[0,5],[-4,4],[2,2],[1,2],[-1,2],[-2,2],[1,5],[3,-3],[4,-3],[3,-3],[3,-12],[4,-3],[8,-5],[5,-8],[4,-3],[12,-3],[15,-6],[5,-5],[4,-8],[9,-22],[3,-6],[2,2],[0,10],[1,5],[3,4],[4,4],[-1,2],[0,2],[1,4],[-3,1],[-7,1],[-4,2],[-8,26],[2,13],[6,26],[4,-4],[2,1],[3,2],[5,1],[-2,15],[1,12],[2,10],[1,11],[-2,0],[-1,-7],[-2,-4],[-7,-9],[2,-4],[-3,1],[-2,2],[-1,2],[-2,3],[2,2],[2,4],[2,2],[-4,10],[-6,5],[-31,4],[-4,6],[3,12],[-1,1],[-1,3],[-2,-6],[-3,-1],[-2,1],[-3,2],[-3,-2],[-2,-3],[-1,-3],[-3,-4],[8,-2],[5,-3],[2,-4],[0,-7],[-3,-5],[-4,-2],[-2,2],[-8,-6],[-3,-1],[-4,-1],[0,-4],[3,-2],[0,-1],[-3,-1],[-3,1],[-4,2],[-4,1],[-4,4],[-14,24],[-6,4],[-1,0]],[[53947,82413],[4,-3],[3,-3],[9,-4],[27,-3],[11,3],[11,7],[20,19],[74,41],[63,21],[77,40],[50,17],[55,19],[54,30],[45,7],[30,13],[-3,-4],[-14,-8],[6,-5],[25,5],[0,4],[-2,0],[0,4],[13,0],[0,3],[-1,0],[-1,1],[1,10],[-7,0],[-15,-6],[10,6],[11,9],[17,26],[-3,-9],[-6,-8],[-3,-5],[3,1],[5,2],[4,2],[4,6],[10,5],[3,6],[-3,8],[-5,0],[-3,-3],[-4,-5],[12,25],[32,51],[0,-3],[-1,-6],[2,-1],[5,2],[3,5],[2,8],[-1,2],[-4,-2],[-4,-5],[5,15],[10,12],[19,14],[58,11],[23,11],[12,2],[10,5],[27,36],[83,49],[105,24],[48,20],[74,9],[45,0],[7,-3],[10,-11],[4,-2],[5,-2],[95,-70],[18,-28],[2,-6],[3,-10],[0,-8],[-4,-3],[-2,3],[-1,4],[-2,4],[-5,5],[-3,11],[-5,7],[-13,28],[-3,1],[-9,3],[-3,1],[-2,5],[-8,4],[-17,14],[-16,10],[-3,4],[-9,9],[-2,1],[-4,-2],[-1,-3],[-4,-17],[-1,-4],[0,-8],[2,-2],[6,-4],[2,-2],[3,-8],[4,-11],[0,-4],[-1,-4],[0,-4],[3,-4],[-1,-12],[3,-5],[5,2],[5,7],[-2,-10],[2,-8],[4,-6],[7,-27],[2,-6],[-1,-13],[0,-24],[2,-22],[4,-10],[4,-2],[9,-8],[4,-2],[4,0],[4,-2],[4,-3],[2,-5],[5,-9],[47,-18],[10,-1],[9,6],[2,-3],[3,-3],[8,-2],[104,19],[23,14],[11,3],[9,5],[17,22],[5,3]],[[47986,83083],[-5,-3],[-2,-4],[-3,-4],[-2,-3],[-18,-3],[-3,-3],[-3,-4],[-7,-15],[1,-6],[-1,-1],[-2,0],[-1,-4],[2,-16],[0,-4],[-2,-4],[-1,-1],[-5,-3],[-3,-4],[-1,-7],[2,-15],[0,-6],[-3,-13],[-5,-10],[-20,-31],[-2,-8],[0,-15],[1,-4],[1,-2],[0,-2],[-3,-1],[-3,0],[-6,3],[-8,-3],[-9,3],[-5,-3],[-10,-12],[-10,-7],[-9,-1],[-9,6],[-8,9],[-4,0],[-9,-12],[-14,-8],[4,-5],[2,-1],[-2,-9],[2,-6],[5,-4],[5,-1],[2,-2],[3,-8],[2,-3],[2,0],[5,4],[2,1],[4,-3],[8,-10],[5,-2],[4,3],[5,4],[3,-1],[0,-12],[-11,-5],[-28,-32],[-10,-6],[-11,1],[-21,6],[-6,-8],[-6,-10],[-3,-9],[-2,-3],[-3,-3],[-7,-5],[-14,-6],[-5,-3],[-2,-1],[4,-4],[0,-5],[1,-5],[3,-5],[6,-9],[12,-21],[7,-8],[7,-5],[8,0],[6,-18],[3,-9],[5,-7],[2,-1],[3,-1],[10,-2],[5,-4],[1,-9],[2,-26],[3,-10],[6,-4],[15,-2],[16,1],[5,-1],[20,-19],[2,-4],[1,-5],[1,-5],[3,-3],[30,-9],[6,2],[11,11],[7,0],[-3,-6],[1,-1],[3,1],[2,-1],[2,-5],[0,-3],[2,0],[4,1],[13,-5],[3,0],[2,0],[-6,17],[0,4],[2,3],[8,6],[1,-1],[-1,-5],[0,-5],[0,-7],[-1,-5],[1,-2],[4,2],[3,4],[2,5],[1,6],[-2,6],[6,3],[-1,3],[-2,3],[-1,2],[1,6],[2,4],[2,3],[3,3],[16,5],[5,5],[-1,10],[4,7],[-10,10],[1,8],[-9,6],[-1,6],[2,1],[2,-1],[1,2],[1,0],[2,6],[-1,1],[-1,3],[-1,4],[1,2],[0,1],[2,1],[4,-1],[3,0],[9,8],[13,27],[8,10],[9,1],[9,-6],[18,-18],[2,-4],[2,-10],[2,-2],[4,0],[1,-2],[3,-10],[3,-11],[1,-8],[-2,-6],[-5,-4],[10,-6],[2,-3],[1,-5],[1,-6],[2,-6],[5,-10],[5,-8],[6,-6],[6,-5],[3,0],[3,3],[2,4],[3,2],[3,0],[3,-3],[6,-6],[4,-6],[2,-3],[2,-11],[-3,-11],[-6,-10],[3,-7],[-1,-6],[-4,-14],[4,-5],[8,-11],[4,-3],[1,1],[2,4],[1,2],[2,2],[2,1],[4,-2],[2,-1],[24,11],[8,1],[0,-1],[1,-3],[2,-2],[1,-2],[2,0],[7,3],[7,2],[2,2],[1,5],[0,5],[-1,4],[1,4],[3,8],[3,-1],[2,-4],[3,-3],[4,1],[4,3],[4,1],[4,-5]],[[48258,82507],[17,-21],[5,-3],[2,-2],[4,-8],[1,-2],[6,-1],[3,-1],[2,-2],[5,-10],[-1,-7],[-9,-14],[-5,-2],[-7,3],[-6,5],[-4,5],[-4,-1],[-19,10],[-15,3],[0,-5],[3,-3],[-1,-5],[-4,-8],[-2,-10],[-1,-17],[0,-11],[1,-10],[6,-11],[10,-6],[20,-4],[0,-4],[-3,-11],[0,-10],[3,-9],[6,-6],[-6,-9],[-1,-15],[1,-16],[1,-26],[1,-9],[2,-8],[2,-6],[3,-4],[4,-3],[3,-3],[5,-14],[7,-7],[9,-5],[5,-5],[2,-6],[2,-7],[1,-9],[-2,-8],[-5,-10],[-1,-4],[0,-5],[-2,-5],[-4,-10],[-2,-5],[-2,6],[-5,1],[-6,-2],[-4,-5],[18,-11],[1,-6],[1,-7],[2,-5],[0,-1],[-2,-5],[-1,-2],[4,-3],[12,-1],[5,-4],[-3,-10],[-4,-1],[-4,5],[-4,2],[-1,2],[-3,5],[-1,2],[-3,-1],[-5,-3],[-2,-1],[-16,-16],[-1,-6],[2,-5],[7,-9],[5,-11],[4,-4],[8,-2],[2,-3],[3,-1],[3,-2],[0,-5],[-2,-4],[0,-3],[-1,-13],[1,-8],[1,-9],[3,-6],[3,-5],[2,-7],[-2,-11],[4,-7],[9,-25],[0,-2],[0,-1],[-1,0],[0,-1],[1,-10],[-1,-14],[-1,-14],[-2,-9],[-1,-9],[3,-10],[12,-17],[1,-4],[-4,-2],[-1,-3],[-3,-11],[-2,-2],[-3,-5],[-9,-28],[2,-4],[-12,-15],[-3,-5],[-3,-9],[-7,-28],[2,-13],[-1,-3],[-5,-15],[-13,-30],[-1,-11],[0,-9],[3,-17],[1,-9],[-1,-25],[-4,-10],[-17,-37],[-5,-7],[-4,-4],[-5,-8],[-6,-15],[-3,-9],[0,-11],[1,-10],[-1,-8],[-2,4],[-2,3],[-2,1],[-17,-1],[-5,2],[1,11],[-2,-2],[-3,-1],[-2,-3],[-2,-2],[0,-4],[4,-2],[4,-5],[3,-6],[2,-8],[-2,-6],[9,-3],[3,-5],[1,-6],[4,5],[6,15],[0,-4],[-4,-12],[5,-14],[14,-19],[-8,-25],[-3,-7],[-3,-4],[-2,-1],[-3,1],[-3,4],[0,3],[3,2],[2,8],[0,2],[-4,1],[-1,-1],[-3,-5],[-3,-4],[-1,-1],[-12,-1],[0,4],[5,0],[-4,5],[-2,-1],[-5,-4],[-13,-4],[-12,-9],[-5,1],[-7,10],[-5,4],[-21,8],[-20,-4],[-5,2],[0,4],[4,3],[4,5],[3,7],[1,10],[-4,-7],[-4,-6],[-6,-3],[-5,3],[-2,-3],[0,-5],[0,-2],[1,-2],[-1,-4],[3,3],[1,1],[1,0],[0,-8],[-1,-4],[-2,-4],[2,0],[1,0],[0,-4],[-2,0],[-1,0],[2,-4],[-20,-16],[-3,-4],[-3,-7],[-4,-5],[-5,3],[3,8],[3,4],[4,3],[3,4],[0,6],[-5,24],[-2,4],[-2,5],[-4,5],[-2,2],[-4,4],[-4,19],[-3,6],[1,-7],[0,-6],[1,-3],[0,-6],[1,-3],[4,-10],[1,-6],[-4,-14],[1,-6],[7,0],[0,-4],[-5,-5],[-8,-14],[-5,-5],[-6,-2],[-12,-1],[-6,-2],[1,7],[8,14],[-6,4],[-3,0],[-4,0],[0,-4],[1,-2],[1,-2],[1,-2],[1,-2],[-3,1],[-4,2],[-2,1],[-3,-2],[-2,-3],[-2,-4],[-1,-3],[-6,-4],[-5,0],[-11,4],[-53,-8],[-19,-13],[-10,-3],[-2,-2],[-1,-3],[-1,-3],[-3,-1],[-2,3],[-1,4],[-1,4],[-1,2],[-5,-2],[-5,-6],[-3,-7],[1,-10],[3,4],[4,1],[5,-2],[8,-4],[2,-1],[1,-3],[-2,-7],[-9,-8],[-1,-18],[-1,-4],[-2,-2],[-3,0],[-2,-3],[-5,-4],[-15,2],[-6,-4],[-2,-8],[0,-6],[-2,-3],[-29,5],[-1,3],[-1,5],[-1,6],[-3,2],[-1,-2],[0,-1],[0,-14],[-1,-5],[-4,-8],[-4,-6],[-4,-4],[-6,0],[8,-10],[3,-2],[-3,-6],[-6,-4],[-11,-3],[-15,-9],[-4,-7],[5,-8],[-4,-3],[-21,-6],[-11,-6],[-17,-2],[-8,1],[-3,0],[-3,0],[-1,2],[0,4],[2,3],[3,2],[2,1],[0,3],[-2,5],[4,1],[4,2],[4,4],[4,5],[-2,2],[-2,1],[-1,1],[-3,0],[2,8],[1,2],[3,2],[-2,6],[-2,1],[-2,-2],[-2,-5],[-4,4],[-5,1],[-12,0],[0,4],[-2,3],[-5,-2],[-5,-3],[-5,-2],[-12,1],[-5,-1],[-6,-5],[9,-4],[12,-2],[7,-7],[-5,-19],[10,1],[3,-1],[0,-4],[-1,0],[0,-4],[2,-3],[1,-1],[-4,-1],[-2,-1],[-1,-2],[9,0],[-5,-10],[0,-2],[0,-3],[1,-3],[1,-4],[-2,-4],[-9,-14],[-3,-6],[-7,-6],[-11,-3],[-3,-3],[-4,-7],[-1,6],[-4,5],[-5,3],[-3,-2],[4,-4],[1,-7],[-1,-6],[-4,-4],[-2,12],[-6,5],[-13,0],[0,-4],[3,-2],[6,-1],[3,-1],[2,4],[2,0],[1,-4],[0,-4],[-2,-2],[-3,-2],[-1,-1],[-5,-14],[0,-3],[0,-7],[1,-9],[1,-7],[-4,5],[-4,11],[-4,5],[-4,0],[-14,-5],[-33,5],[4,-6],[4,-3],[11,0],[0,-4],[-2,-2],[-2,-2],[6,-4],[-3,-3],[-2,-5],[0,-5],[1,-7],[-11,2],[-2,-2],[-2,2],[-2,4],[-2,2],[-10,0],[-3,1],[-3,2],[-1,0],[-2,-3],[-6,4],[-4,-7],[-3,-10],[-2,-7],[-10,-5],[-2,-1],[-1,-6],[-2,1],[-3,4],[0,3],[-2,1],[-6,6],[-3,1],[-3,0],[-4,-4],[-16,-4],[-3,2],[-7,5],[-3,1],[0,-4],[1,-1],[3,-3],[-3,-7],[-3,-5],[-4,-3],[-5,-1],[-7,2],[-2,-1],[1,-6],[0,-3],[-4,-1],[-2,-3],[-1,-5],[-3,-4],[-3,0],[-2,1],[-3,1],[-3,-2],[0,4],[-1,3],[0,2],[-1,4],[-8,-7],[0,-5],[-2,-1],[-2,0],[-2,-2],[-4,-4],[-3,-2],[-9,0],[3,3],[2,3],[2,4],[2,6],[-4,-3],[-3,-2],[-1,2],[2,8],[3,5],[7,6],[4,4],[-1,2],[-1,0],[0,1],[0,2],[-3,-3],[-9,-7],[-1,-4],[-2,-4],[-6,-7],[-3,6],[0,6],[2,7],[1,8],[-2,4],[-5,3],[-5,1],[-3,-2],[2,-7],[-8,-6],[-20,-5],[-1,-3],[0,-5],[-1,-2],[-5,0],[-2,0],[-5,-7],[-3,-2],[-5,0],[0,6],[-4,7],[-4,3],[-2,-5],[-15,-19],[2,-3],[1,0],[1,-1],[-19,-12],[1,7],[-3,-2],[-8,-9],[-1,4],[-2,-4],[0,7],[1,3],[1,2],[0,4],[-3,1],[-1,2],[-2,5],[6,3],[5,5],[10,13],[5,4],[10,4],[6,4],[5,5],[12,19],[5,5],[10,6],[6,5],[-13,2],[-54,-36],[-17,-2],[12,10],[2,2],[3,2],[2,6],[3,5],[10,5],[35,25],[3,8],[9,1],[11,8],[10,3],[8,5],[1,9],[1,3],[1,4],[1,1],[0,4],[-3,3],[-5,-4],[-5,-2],[-6,6],[-2,0],[-1,1],[-1,2],[1,8],[0,2],[-2,3],[-3,2],[-2,2],[-3,2],[1,-8],[0,-5],[0,-6],[3,-6],[-6,-2],[-3,-4],[-8,-10],[-6,-5],[-5,-2],[-19,-3],[-9,-5],[-35,-7],[-12,-7],[-4,-4],[0,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-18,-8],[-6,-7],[-3,1],[-6,3],[-3,0],[-13,-2],[-6,-4],[-5,-6],[-1,4],[2,2],[0,4],[0,3],[1,3],[2,2],[19,7],[4,3],[0,3],[0,1],[-1,0],[-1,0],[1,7],[-2,5],[-4,1],[-4,0],[3,7],[6,2],[12,-1],[6,3],[13,17],[0,4],[-12,0],[5,11],[9,9],[9,6],[8,3],[-1,-3],[-2,-6],[-1,-3],[5,1],[4,3],[4,6],[0,10],[4,-4],[5,-1],[10,1],[0,4],[-2,0],[-5,4],[0,3],[3,4],[7,11],[6,4],[3,8],[2,2],[2,1],[7,-1],[9,4],[16,12],[9,4],[0,4],[-20,-3],[-29,-15],[-5,-4],[-3,-4],[-1,-4],[-10,0],[-4,-2],[2,-4],[-8,-7],[-3,-1],[0,3],[1,6],[0,3],[-4,0],[-2,-2],[-1,-3],[-2,-3],[-3,-1],[-7,-2],[-3,-1],[-12,-13],[-7,-4],[-6,5],[-6,-8],[-7,-8],[-7,-6],[-7,-2],[2,7],[-27,17],[11,4],[3,14],[-5,16],[-11,7],[-4,-4],[-7,-14],[-3,-3],[-3,-2],[-9,-11],[-4,-4],[-2,8],[4,17],[-2,8],[-4,1],[-6,0],[-3,1],[2,6],[0,3],[-1,1],[-1,0],[0,3],[1,1],[0,2],[1,2],[-1,1],[-2,-1],[-1,0],[0,4],[9,2],[23,11],[5,0],[2,2],[1,4],[0,4],[-1,2],[-4,3],[-2,6],[-3,6],[-5,1],[0,4],[3,3],[7,3],[3,2],[-2,9],[6,4],[7,2],[7,7],[18,11],[27,7],[11,9],[6,20],[2,0],[0,-11],[2,-4],[4,-1],[4,0],[-1,5],[6,35],[9,-6],[8,-1],[21,4],[-2,2],[-2,4],[-2,2],[10,8],[-55,-4],[3,-12],[-1,-7],[-2,-3],[-1,10],[-3,4],[-4,2],[-4,2],[-8,1],[-37,-13],[-7,-5],[-3,3],[-3,6],[-3,3],[-3,-1],[-1,-4],[-2,-1],[-8,9],[-3,1],[-7,-4],[0,-3],[2,0],[3,-1],[4,-3],[0,-4],[-7,2],[-13,6],[-7,0],[1,-4],[1,-2],[2,-2],[-6,0],[-11,-7],[-6,-1],[-6,3],[-2,7],[-1,10],[-2,12],[2,2],[5,6],[0,4],[-2,4],[3,6],[6,4],[5,2],[-2,-8],[6,-7],[4,-1],[2,2],[1,5],[-1,4],[0,4],[3,5],[-2,3],[-2,1],[3,9],[3,2],[4,0],[6,2],[3,4],[6,13],[3,3],[29,11],[4,-5],[-3,-23],[1,-3],[18,3],[8,7],[7,10],[3,13],[-7,11],[10,0],[3,-2],[-1,-6],[1,-8],[0,-10],[1,-7],[4,-3],[5,-1],[8,-5],[10,-3],[11,0],[4,3],[6,9],[3,3],[4,-2],[-2,-2],[-2,-2],[5,-4],[20,4],[-5,6],[-4,1],[-8,1],[-10,6],[-4,2],[-4,-4],[-2,3],[-2,3],[-1,5],[0,5],[3,-4],[3,-3],[3,0],[4,3],[-4,3],[-2,1],[-2,0],[0,5],[3,0],[7,3],[-3,10],[1,29],[-5,6],[-15,4],[-7,5],[-5,7],[4,5],[5,3],[19,2],[27,16],[4,4],[4,8],[5,4],[7,0],[8,-3],[4,-3],[-1,8],[-3,4],[-5,1],[-4,0],[1,3],[1,3],[-1,3],[-1,3],[0,4],[2,4],[1,3],[-1,7],[1,4],[6,11],[2,-2],[2,1],[2,3],[3,2],[11,-4],[22,0],[3,-2],[2,-2],[3,-1],[3,2],[2,4],[1,2],[3,1],[21,-1],[1,0],[2,-1],[4,2],[18,0],[10,2],[4,3],[4,5],[4,3],[34,14],[5,5],[2,-7],[5,-1],[6,1],[4,3],[2,3],[1,6],[3,5],[3,2],[48,8],[10,4],[-5,0],[-18,10],[-10,2],[-18,-3],[-5,1],[-3,3],[0,3],[4,4],[0,5],[-2,5],[1,7],[-1,6],[-4,2],[2,5],[3,8],[2,3],[-7,-3],[-9,-6],[-6,-8],[-1,-7],[-9,-23],[-24,-43],[-6,-3],[-24,-4],[-2,-2],[-4,-8],[-3,-2],[-3,-1],[-4,1],[-3,1],[-3,3],[4,5],[7,5],[4,6],[0,8],[-9,-7],[-20,-8],[-14,-1],[-6,2],[-6,3],[-2,5],[-2,3],[-9,2],[-4,5],[1,9],[-3,4],[-10,-1],[0,-4],[3,-1],[2,-2],[2,-4],[1,-5],[-21,-12],[-12,-4],[-6,-4],[-3,-6],[-1,-9],[-2,-1],[-2,3],[-2,1],[-8,-7],[-50,-9],[0,3],[5,3],[12,11],[15,5],[56,71],[-1,2],[-1,6],[3,2],[4,4],[3,2],[3,1],[9,-1],[3,0],[5,3],[3,1],[3,2],[1,6],[1,7],[2,5],[-1,3],[0,1],[1,4],[-2,4],[3,3],[3,3],[3,5],[2,6],[2,5],[1,5],[1,3],[2,3],[0,4],[1,8],[17,21],[3,12],[-5,2],[-22,-2],[-7,4],[8,10],[3,5],[8,18],[3,4],[3,3],[-2,4],[15,37],[6,8],[4,10],[4,13],[5,10],[6,3],[6,-5],[13,-16],[6,-3],[6,2],[5,5],[7,2],[6,-5],[1,10],[-4,5],[-12,5],[0,4],[16,4],[5,-2],[8,-9],[5,-1],[0,4],[-11,8],[0,5],[6,-4],[4,-1],[3,5],[3,2],[2,-1],[-1,-6],[3,-4],[3,-4],[3,-2],[4,-2],[-2,12],[-2,5],[-1,4],[3,9],[4,6],[10,9],[-3,0],[-5,-3],[-3,-1],[-27,1],[-4,3],[5,4],[12,4],[6,0],[0,4],[-8,0],[0,4],[3,3],[7,3],[3,2],[0,4],[-22,4],[-5,-1],[-10,-6],[-90,-9],[-9,-6],[-4,-4],[-6,-2],[-12,0],[-6,4],[-3,5],[-2,6],[-4,5],[6,10],[-3,7],[-4,0],[-3,-11],[-1,-13],[-3,-7],[-5,-1],[-4,7],[0,4],[5,13],[-2,26],[6,6],[0,-1],[3,-3],[2,0],[1,1],[2,6],[1,1],[1,2],[-11,14],[3,5],[10,7],[-10,1],[-5,-1],[-4,-4],[3,-7],[1,-10],[-2,-9],[-6,-2],[-5,6],[2,11],[2,11],[0,4],[-1,1],[-2,3],[-1,1],[-1,-3],[-4,-6],[-4,-2],[-2,-4],[-3,-10],[-7,-15],[-4,-7],[-13,-7],[-5,0],[-4,7],[-6,6],[-12,-4],[-4,4],[1,2],[2,8],[0,6],[1,5],[2,2],[2,1],[4,0],[5,2],[11,10],[4,5],[0,3],[-9,0],[0,5],[6,3],[0,4],[-5,0],[-3,-1],[-6,-6],[0,-4],[-3,-3],[-5,0],[-1,7],[1,5],[6,5],[2,6],[-3,-1],[-3,-3],[-2,-3],[-2,-2],[-3,2],[-2,2],[-3,0],[-3,-4],[-1,-5],[1,-7],[0,-5],[-3,-3],[-3,0],[-5,-3],[-11,0],[-3,1],[-3,2],[-3,5],[-2,5],[-2,5],[-4,1],[-11,-2],[-7,1],[-4,5],[-2,-2],[-2,-1],[-5,-1],[2,10],[3,6],[4,4],[6,1],[11,-3],[4,1],[4,6],[0,4],[-3,1],[-3,2],[-2,4],[-1,5],[6,-1],[6,-4],[6,-1],[2,6],[-5,-1],[-11,3],[-10,6],[-6,8],[0,4],[-2,7],[-2,7],[-3,3],[-8,-3],[-3,0],[-3,3],[7,7],[6,0],[7,-3],[7,0],[-1,2],[-1,7],[0,3],[12,0],[13,-5],[1,-2],[4,-9],[3,2],[4,7],[3,2],[-17,15],[-4,7],[10,3],[22,-3],[8,3],[9,8],[4,0],[3,-1],[6,-6],[13,-3],[22,-2],[0,4],[-5,3],[-19,-2],[-12,6],[-23,18],[-4,26],[2,13],[3,9],[2,10],[-3,10],[3,3],[10,2],[8,4],[6,1],[3,1],[3,4],[2,0],[6,-4],[3,-2],[51,12],[0,4],[-4,1],[-11,7],[1,1],[1,2],[2,1],[2,0],[0,4],[-2,5],[3,5],[10,10],[-2,1],[-6,3],[3,3],[1,4],[2,4],[0,6],[-2,-1],[-1,0],[-1,-1],[-2,-2],[-7,3],[-40,1],[-27,-20],[-15,-4],[-10,12],[4,3],[2,17],[4,4],[-1,6],[0,2],[1,4],[0,4],[-2,0],[0,4],[13,4],[3,-1],[6,-6],[4,-1],[3,-3],[1,-14],[3,-3],[3,2],[0,4],[-1,7],[1,7],[-2,3],[-3,5],[-2,3],[-4,1],[0,-4],[2,-4],[-3,1],[-2,5],[-4,14],[1,3],[0,3],[-2,3],[-2,0],[-4,-1],[-1,2],[-1,4],[-2,3],[-2,5],[-1,9],[1,9],[3,3],[4,1],[3,5],[-4,3],[0,3],[3,4],[3,2],[-2,4],[8,9],[-3,3],[-3,0],[-7,-3],[0,-5],[0,-2],[-1,-1],[-3,-1],[0,-4],[2,0],[-8,-12],[-8,-3],[-7,8],[-6,15],[6,0],[12,5],[5,3],[-8,8],[-4,6],[-1,7],[2,-1],[3,-2],[2,-1],[-3,7],[-10,13],[4,-3],[3,0],[3,2],[1,5],[-14,15],[-6,4],[-4,-7],[4,-6],[-2,-5],[-5,-2],[-5,1],[3,-6],[1,-2],[0,-4],[-4,1],[-4,-1],[-5,-4],[0,-4],[3,-2],[2,-3],[0,-12],[-2,0],[-6,-4],[4,-3],[4,-5],[0,-6],[-5,-2],[-5,1],[-4,2],[-2,6],[-1,11],[2,7],[6,17],[1,7],[1,11],[3,5],[3,3],[3,8],[-9,0],[-3,2],[-3,5],[5,1],[3,5],[1,8],[2,7],[3,3],[13,9],[1,3],[0,3],[2,2],[2,0],[2,-2],[1,-3],[0,-4],[1,-3],[4,-4],[4,-3],[5,0],[4,3],[2,-5],[3,-2],[2,0],[3,3],[0,-2],[0,-1],[0,-1],[2,0],[-6,-15],[-7,-6],[-7,1],[-7,8],[-2,-12],[5,-3],[6,-1],[5,-3],[5,-4],[4,5],[3,6],[4,3],[-3,8],[1,9],[5,8],[4,4],[6,-2],[10,-9],[6,-1],[-2,5],[-2,3],[-5,4],[0,4],[2,2],[3,0],[6,-2],[-5,4],[-15,4],[-3,6],[-1,9],[0,4],[16,5],[6,-1],[11,-9],[5,-2],[48,-4],[3,1],[5,3],[3,0],[3,-1],[3,-5],[3,-2],[22,-4],[2,1],[4,3],[3,3],[2,3],[3,3],[3,-1],[13,-7],[2,-1],[2,-2],[2,-11],[2,-3],[5,1],[3,1],[0,2],[2,-5],[0,-4],[0,-5],[-2,-2],[0,-4],[6,-4],[0,-5],[-5,-4],[1,-6],[14,-15],[3,-7],[2,-9],[0,-11],[2,0],[0,10],[1,9],[1,9],[-2,8],[6,4],[6,7],[5,12],[2,16],[4,10],[10,1],[17,-5],[1,1],[2,2],[1,1],[4,-3],[4,-4],[5,-2],[6,-6],[4,-1],[14,0],[6,2],[6,6],[7,-7],[17,4],[8,-5],[2,-6],[1,-6],[1,-6],[8,-4],[3,-4],[6,-11],[4,4],[4,1],[9,-1],[0,4],[-4,3],[-5,2],[-4,3],[-2,7],[-2,4],[-4,4],[-5,2],[-4,0],[0,4],[2,3],[3,7],[2,2],[7,-4],[3,-1],[2,3],[3,3],[20,-5],[-5,7],[-5,5],[-5,3],[-5,1],[-6,0],[-2,1],[-1,5],[2,6],[3,-1],[7,-7],[5,4],[-2,6],[-6,4],[-6,2],[-27,0],[-2,2],[0,7],[1,4],[3,4],[3,3],[8,3],[32,28],[5,2],[2,2],[0,5],[1,11],[1,11],[2,-2],[2,-7],[1,-3],[1,-1],[0,-4],[8,7],[9,6],[23,5],[3,1],[13,11],[9,3],[0,4],[-9,0],[-4,3],[-4,5],[15,16],[0,12],[12,14],[0,15],[3,-2],[2,-3],[2,-2],[3,-1],[3,19],[2,5],[-1,1],[0,1],[-1,0],[0,2],[-5,-6],[-6,-4],[-19,-4],[-10,-10],[-6,-4],[0,4],[3,5],[0,5],[-1,4],[-5,2],[-4,-2],[-7,-12],[-7,-4],[-13,-18],[-4,-4],[-3,-3],[-5,-1],[0,3],[7,10],[4,5],[6,1],[3,5],[0,8],[-4,6],[-4,-6],[-2,0],[1,13],[-4,0],[-4,-8],[-3,-11],[-1,-4],[-3,3],[-3,5],[-1,4],[1,3],[-1,2],[-2,1],[-2,0],[-3,-3],[-1,-1],[-7,0],[-3,-2],[-3,-8],[-4,1],[-6,5],[-21,0],[-4,4],[2,6],[-3,3],[-23,11],[-5,0],[1,2],[1,2],[1,2],[1,2],[0,4],[-3,3],[-2,4],[0,4],[4,2],[4,0],[4,2],[2,5],[0,7],[4,4],[19,18],[7,3],[28,-1],[15,-6],[7,0],[0,4],[-19,6],[-5,6],[4,3],[13,1],[3,-2],[3,-7],[5,-7],[5,-3],[5,3],[-15,18],[-10,5],[-10,9],[-7,1],[1,5],[2,2],[3,0],[3,1],[3,2],[4,7],[3,3],[5,-7],[7,-1],[13,3],[15,-7],[6,0],[0,4],[-5,1],[-6,3],[-5,6],[1,10],[3,5],[11,-2],[4,1],[-3,4],[-3,10],[-4,3],[-5,0],[-2,0],[-1,-3],[0,-4],[0,-4],[0,-2],[-8,1],[-7,8],[-5,12],[-3,11],[3,4],[3,-2],[2,-3],[4,-2],[4,0],[4,2],[6,6],[-8,4],[-6,8],[-11,16],[0,4],[3,3],[3,1],[3,0],[3,-4],[3,6],[1,2],[-2,0],[1,9],[3,1],[2,0],[3,2],[6,14],[2,3],[2,-4],[1,-14],[3,-3],[1,3],[2,11],[3,3],[-4,17],[-1,11],[2,4],[3,4],[4,18],[3,7],[4,0],[16,-9],[5,2],[9,5],[4,2],[-2,-6],[-2,-4],[-1,-3],[-1,-6],[2,-3],[3,4],[8,14],[17,13],[6,3],[3,4],[3,10],[3,9],[7,1],[7,-7],[-2,-7],[-13,-10],[0,-4],[12,7],[2,-1],[1,-3],[5,0],[4,3],[3,2],[3,-8],[0,-4],[-1,-7],[3,1],[4,4],[4,2],[-1,-6],[-2,-4],[-3,-2],[-4,-1],[0,-4],[6,1],[3,-2],[2,1],[3,4],[3,11],[-1,7],[-6,11],[-2,12],[5,7],[7,7],[7,10],[1,-3],[1,-1],[-6,-28],[-1,-4],[1,-1],[1,-3],[1,-2],[2,-2],[3,0],[2,3],[3,1],[4,-2],[5,-5],[6,-6],[2,-5],[1,-3],[2,-7],[1,-5],[0,-4],[-2,-10],[0,-6],[2,5],[5,16],[1,3],[1,5],[-1,9],[-3,9],[-1,4],[-1,6],[-1,7],[-2,7],[-4,2],[-2,-4],[1,-9],[1,-9],[2,-6],[-4,1],[-2,3],[-3,4],[-2,4],[-8,3],[-4,3],[1,8],[8,19],[0,3],[10,-2],[4,2],[10,11],[3,1],[5,-2],[3,-6],[2,-6],[3,-2],[1,-5],[0,-9],[-1,-9],[-1,-3],[1,-5],[4,-4],[8,-5],[0,-7],[2,-8],[4,-7],[3,-3],[3,-4],[1,-10],[-2,-10],[-2,-4],[-4,-1],[-4,-4],[-5,-7],[-15,-13],[0,-4],[17,4],[5,-3],[-3,-13],[-3,-4],[-14,-12],[-9,-16],[-4,-4],[0,-5],[5,3],[5,4],[27,31],[3,1],[2,7],[6,3],[6,2],[5,2],[3,8],[2,9],[-1,9],[-5,3],[-2,3],[2,5],[2,8],[0,14],[-1,1],[-12,22],[-6,6],[-2,4],[-1,4],[-2,6],[0,6],[7,7],[3,10],[0,12],[-3,9],[5,0],[4,-3],[4,0],[4,3],[0,2],[0,2],[-1,1],[0,3],[5,-5],[6,-5],[6,0],[11,14],[6,3],[5,-4],[4,-11],[-5,0],[-2,0],[5,-4],[6,-4],[6,0],[6,5],[-18,17],[-8,13],[-1,14],[-7,5],[-4,4],[-2,4],[4,3],[5,-1],[10,-7],[19,-8],[4,-1],[11,-7],[4,-4],[14,-27],[4,-4],[14,-8],[10,-2],[13,-7],[6,-5],[6,3],[4,-9],[-1,-12],[-8,-6],[-8,-2],[-9,-5],[-9,-7],[-10,-12],[-9,-5],[-7,-3],[-4,-5],[-12,-20],[-4,-10],[-4,-11],[-1,-2]],[[47315,82020],[7,-14],[-5,-11],[-10,-4],[-5,7],[-1,9],[-1,4],[0,4],[2,5],[3,3],[4,1],[4,-1],[2,-3]],[[47232,82422],[3,2],[3,2],[3,-1],[2,-3],[0,-4],[-2,-5],[-2,-9],[-1,-10],[1,-8],[-6,-7],[-5,3],[-5,9],[-6,7],[-4,0],[-4,-1],[-3,1],[-1,6],[1,9],[1,6],[-1,6],[-3,5],[-5,2],[-21,-6],[-8,2],[-14,6],[-7,0],[0,4],[7,1],[6,2],[5,6],[3,12],[2,-4],[3,-1],[2,1],[2,4],[6,-10],[8,3],[6,7],[6,4],[24,-1],[6,-3],[5,-16],[-5,0],[0,-5],[0,-5],[-1,-4],[-1,-3],[0,-4]],[[47631,83047],[5,-2],[3,-3],[3,-5],[1,-10],[-12,-5],[-6,1],[-5,4],[0,4],[1,2],[0,1],[-1,5],[4,3],[2,1],[-1,2],[-1,1],[0,1],[2,4],[2,0],[2,-1],[1,-3]],[[47273,81051],[2,1],[2,-2],[-2,-4],[-1,-2],[-22,-9],[-3,1],[-4,3],[0,6],[4,5],[6,2],[6,1],[10,-2],[2,0]],[[47135,81221],[3,-1],[1,-3],[-2,-5],[-5,-4],[-11,-7],[-9,-1],[-3,-4],[-6,-1],[0,5],[4,8],[14,13],[3,3],[5,0],[2,-1],[2,-3],[2,1]],[[47319,81917],[1,1],[1,-1],[0,-4],[-5,-2],[-33,19],[-9,9],[3,5],[7,0],[7,-7],[3,0],[7,2],[5,-1],[7,-4],[2,-4],[-2,-4],[0,-4],[6,-5]],[[47986,83083],[-2,-12],[4,0],[13,5],[5,-1],[12,-8],[9,-1],[10,1],[3,3],[6,10],[4,4],[0,7],[2,11],[4,10],[3,4],[3,6],[2,26],[1,9],[5,0],[12,-10],[5,-2],[36,2],[32,18],[19,2],[5,4],[4,7],[5,6],[6,4],[7,1],[10,-8],[6,-2],[11,8],[7,-2],[27,-19],[4,-1],[6,1],[11,6],[5,1],[11,-3],[6,-3],[2,-4],[2,-2],[11,-14],[3,-6],[-1,-33],[-2,-10],[-4,-13],[2,-5],[5,-1],[5,1],[4,-1],[4,-2],[4,-4],[2,-6],[-1,-10],[-5,-22],[1,-4],[8,-2],[7,-5],[7,-7],[5,-11],[2,-4],[2,-9],[1,-5],[2,-2],[4,-5],[3,-3],[2,-5],[3,-6],[2,-7],[0,-8],[3,-17],[7,-5],[9,-4],[6,-13],[2,0],[-5,13],[-18,23],[4,11],[9,-3],[8,-10],[6,-9],[3,-19],[-1,-17],[-4,-13],[-6,-8],[-8,-5],[-17,-6],[-7,-5],[-7,-9],[-6,-9],[-6,-15],[-4,-8],[3,-3],[2,-5],[0,-5],[1,-3],[3,-1],[2,3],[2,4],[3,4],[6,12],[3,4],[9,6],[10,9],[6,3],[4,-2],[5,-4],[6,-1],[33,7],[2,-2],[3,-8],[3,-2],[3,-1],[0,-4],[1,-5],[0,-6],[5,-21],[3,-8],[5,-4],[2,-4],[1,-24],[1,-8],[9,-17],[2,-1],[-2,-6],[0,-3],[1,-3],[0,-3],[-1,-3],[-6,-11],[-1,-7],[2,-10],[-1,-10],[-3,-4],[-4,-4],[-1,-5],[4,-6],[-4,-3],[-4,-9],[-4,-1],[-3,5],[-3,8],[-2,12],[-4,2],[-3,5],[-2,7],[0,6],[2,7],[6,10],[2,9],[-1,19],[-3,13],[-5,11],[-20,22],[-7,6],[-8,0],[0,-4],[2,-5],[-1,-6],[-2,-5],[-3,-4],[4,0],[3,-3],[2,-3],[2,-2],[11,-1],[3,-3],[-5,-2],[-6,-2],[-2,-2],[9,-6],[-1,-7],[0,-7],[1,-5],[4,-2],[0,-2],[-1,-2],[-1,-4],[2,-4],[-8,-30],[-2,-6],[-10,-10],[-3,-6],[11,5],[13,9],[12,4],[8,-10],[2,-23],[-3,-17],[-7,-13],[-10,-12],[-1,-1],[-3,1],[-1,0],[-2,-13],[-2,-1],[-3,-2],[-2,1],[-1,5],[-3,4],[-16,2],[-12,-2],[-12,-5],[-5,-2],[-6,-2],[-1,-7],[0,-21],[0,-2],[-1,-11],[-1,-13],[-3,-11],[-3,-10],[-5,-8],[-11,-7],[-9,-12],[-12,-11],[-3,-2],[-11,-1],[-5,1],[-5,4],[0,4],[6,3],[2,1],[-21,10],[-4,0],[-3,11],[-7,4],[-9,0],[-5,3],[-2,-4]],[[49259,81038],[-8,-12],[-5,-6],[-13,-4],[-11,-10],[-5,-4],[-12,-6],[-23,-2],[-4,2],[-2,4],[-1,4],[-2,2],[-2,-3],[-8,-12],[-1,-4],[-16,-13],[-1,-1],[-4,-1],[-4,-5],[-7,-10],[-1,-2],[-2,-7],[-1,-3],[-2,-2],[-4,0],[-2,-2],[4,-13],[-2,-12],[-5,-8],[-5,2],[-5,1],[-19,-11],[-70,9],[-5,4],[-5,9],[-8,15],[-16,18],[-4,0],[-5,-3],[-6,4],[-6,7],[-3,6],[0,3],[0,1],[1,0],[1,1],[-2,11],[-1,3],[-2,8],[-3,10],[-3,8],[-2,3],[-5,5],[-3,4],[-4,11],[-3,4],[-3,1],[-9,-1],[-21,-4],[-4,-2],[-4,-3],[-2,-4],[-1,-5],[3,-6],[2,-6],[2,-5],[-11,0],[0,-2],[-1,-2],[-2,-1],[-1,3],[0,2],[-2,2],[-3,1],[-1,1],[-1,-2],[-3,-5],[-1,-1],[-2,0],[-3,3],[-7,3],[-2,0],[-3,-2],[-3,-4],[-4,-6],[-3,-2],[-3,1],[-3,3],[-2,0],[-1,-6],[-4,0],[-16,9],[-5,1],[-1,2],[-1,1],[0,5],[5,5],[-1,6],[-2,8],[0,9],[9,4],[1,2],[3,7],[2,4],[2,-5],[-2,0],[0,-4],[2,-1],[2,-3],[9,4],[14,1],[13,5],[6,13],[0,4],[0,3],[0,1],[-2,1],[-3,-5],[-2,-3],[-3,0],[-11,2],[-15,11],[-4,-4],[-22,-4],[-6,3],[-8,8],[-6,10],[-4,11],[12,-2],[5,1],[2,5],[-5,0],[-5,1],[-4,5],[-3,7],[1,1],[2,4],[1,5],[0,6],[-2,4],[-2,-2],[-2,-6],[-2,-2],[-2,-5],[-1,-1],[-3,1],[-3,2],[-2,5],[-5,-1],[-1,-5],[2,-5],[4,-6],[-10,-7],[-10,0],[-21,4],[-8,-2],[-10,-3],[-2,-1],[-9,-9],[-1,-14],[-2,-1],[-1,-1],[0,-2],[0,-5],[-5,-16],[-3,1],[-4,4],[-2,-2],[-4,-6],[-25,0],[-4,-1],[-5,-4],[-2,-4],[-2,-6],[-3,-4],[-5,-3],[-2,-6],[-3,-1],[-1,1],[-3,3],[-18,7],[-7,7],[2,6],[-4,12],[-13,4],[-6,8],[2,4],[21,-4],[0,2],[-1,5],[0,2],[4,0],[7,-3],[4,-1],[4,1],[9,7],[13,4],[7,6],[3,1],[4,-3],[0,4],[-8,11],[-2,14],[5,12],[10,3],[0,5],[-3,-3],[-8,-5],[-16,-1],[-3,-3],[5,0],[3,-3],[1,-5],[-1,-9],[4,-5],[-1,-6],[-5,-6],[-21,-7],[-6,0],[-39,7],[-5,-3],[3,-9],[-3,-5],[-4,0],[0,6],[0,4],[-13,14],[-6,2],[6,0],[4,1],[3,3],[4,6],[4,5],[9,3],[5,3],[4,6],[1,5],[-2,15],[0,9],[-1,9],[-2,8],[-4,4],[-2,-4],[-5,6],[-11,2],[-5,4],[-4,-4],[-15,-4],[-6,0],[2,2],[2,2],[0,4],[-1,3],[0,2],[0,2],[3,2],[0,4],[-2,7],[2,4],[10,1],[6,2],[8,12],[4,2],[8,2],[11,6],[9,10],[1,15],[4,0],[0,4],[-3,3],[0,4],[3,3],[5,2],[7,-1],[3,-1],[15,-11],[6,0],[8,5],[-2,8],[5,-2],[11,-5],[6,-1],[2,2],[0,6],[-1,7],[0,5],[2,2],[9,2],[5,5],[4,7],[7,15],[5,7],[4,0],[9,-9],[0,17],[10,7],[35,-2],[3,2],[2,3],[1,4],[2,3],[8,4],[6,5],[5,6],[8,13],[4,4],[5,1],[6,1],[5,2],[33,37],[16,30],[8,21],[4,14],[2,25],[2,13],[4,12],[3,9],[-2,5],[0,7],[0,7],[2,5],[2,1],[6,-4],[3,-1],[5,2],[14,14],[0,5],[-8,-1],[-14,-6],[-7,-2],[-5,5],[-12,22],[-3,9],[0,15],[5,15],[6,11],[5,5],[1,1],[1,8],[1,3],[1,1],[3,1],[11,12],[4,6],[-8,-1],[-4,-5],[-5,-2],[-21,34],[-6,14],[-1,6],[1,5],[5,2],[3,4],[-1,9],[-2,9],[-1,4],[0,8],[0,4],[2,3],[17,15],[-2,1],[-1,1],[-1,3],[-3,-5],[-4,-3],[-2,1],[-3,7],[-7,-7],[-7,-1],[-16,3],[-20,-8],[-5,-4],[-5,-4],[-20,0],[-5,-3],[-6,-6],[-9,-15],[1,-2],[0,-2],[-4,-4],[-3,-7],[0,-7],[4,-7],[-4,-4],[-2,-2],[-2,-2],[-3,1],[-4,6],[-6,3],[-6,5],[-3,2],[-3,-1],[-2,-3],[-2,-3],[-2,-2],[-6,-2],[-15,2],[-4,-3],[-4,-6],[-4,-2],[-4,3],[2,6],[1,2],[-1,4],[1,3],[4,10],[39,58],[4,3],[5,0],[5,2],[6,4],[22,22],[6,13],[18,15],[2,8],[1,10],[1,25],[1,7],[2,2],[1,-1],[1,-4],[1,-4],[3,5],[2,7],[0,2],[11,18],[3,2],[5,3],[4,7],[6,15],[6,10],[7,6],[8,3],[9,1],[3,-1],[2,-1],[2,-1],[3,3],[6,4],[7,2],[9,10],[31,16],[9,0],[-3,11],[-8,11],[-2,7],[5,-1],[6,-2],[5,-4],[3,-5],[6,4],[6,-3],[5,-7],[5,-9],[4,-3],[32,1],[11,3],[53,34],[11,0],[11,-6],[6,-6],[2,-6],[4,-5],[35,-30],[4,-6],[4,-7],[2,-3],[1,2],[0,12],[0,10],[-3,7],[-5,9],[-6,19],[-10,17],[-4,8],[-1,10],[3,6],[5,3],[12,2],[6,3],[10,11],[6,-1],[7,-10],[16,-55],[5,-9],[7,-7],[8,-5],[9,0],[0,1],[0,3],[1,3],[2,1],[3,0],[4,-3],[2,0],[5,0],[4,2],[7,5],[-1,8],[0,5],[3,5],[2,3],[2,-1],[3,0],[2,2],[3,3],[-4,1],[-14,-5],[-3,-2],[-2,-9],[-5,-3],[-3,1],[-9,1],[-12,6],[-11,9],[-9,12],[-6,14],[-33,89],[-1,9],[1,8],[3,9],[18,39],[15,24],[2,2],[3,6],[11,10],[3,7],[-24,0],[-10,6],[-7,14],[-2,20],[3,44],[-4,17],[5,10],[6,5],[26,12],[4,1],[4,-4],[2,-1],[1,3],[1,4],[2,3],[3,2],[2,1],[-4,7],[10,12],[1,10],[-4,-5],[-5,-2],[-9,-1],[-1,1],[-5,13],[0,5],[2,3],[3,3],[2,3],[6,13],[3,5],[9,5],[4,6],[5,15],[-5,9],[-6,17],[-4,10],[-1,5],[6,3],[6,8],[4,10],[0,12],[-2,0],[-1,-9],[-4,-7],[-8,-9],[-10,-7],[-5,-5],[-3,-6],[-2,-9],[-5,-4],[-12,-1],[-4,4],[-4,8],[-2,10],[3,6],[-2,7],[-3,5],[-3,3],[-3,-2],[1,-8],[-1,-9],[-2,-7],[-1,-7],[-1,-5],[-8,-13],[-5,-13],[-3,-5],[-7,-5],[-1,-7],[1,-8],[0,-7],[-10,17],[-3,3],[-4,1],[-4,1],[-3,3],[-3,4],[1,9],[2,10],[-1,9],[-4,4],[0,4],[9,4],[3,17],[-1,20],[1,12],[-5,-3],[-2,-6],[-3,-15],[3,-12],[-4,-3],[-7,1],[-4,-1],[-6,-3],[-6,8],[-10,22],[-8,13],[-4,8],[-2,9],[1,5],[1,5],[1,5],[-2,8],[-1,6],[0,2],[-7,4],[-10,24],[-6,8],[-26,45],[-5,3],[-1,2],[-3,9],[-3,4],[2,4],[3,5],[1,1],[6,21],[8,46],[9,27],[4,14],[2,6],[2,2],[6,3],[3,3],[4,5],[4,10],[2,11],[-2,11],[9,34],[5,16],[7,10],[5,2],[4,-3],[3,-5],[4,-2],[3,0],[11,8],[-3,4],[-14,8],[7,10],[4,4],[18,6],[3,-1],[2,-2],[2,-2],[2,-3],[11,-4],[5,0],[23,8],[5,4],[-19,0],[0,5],[5,1],[5,3],[4,2],[5,-2],[0,4],[-7,4],[-1,0],[-23,-8],[-89,8],[-5,1],[-4,3],[-4,2],[-4,-2],[1,-1],[0,-1],[1,-2],[-5,-3],[-4,2],[-8,9],[-4,-16],[2,-7],[2,-12],[0,-12],[0,-10],[-3,-9],[-5,-4],[-26,3],[-7,-1],[-6,-13],[-20,4],[1,-3],[1,-1],[-2,-2],[-3,0],[-1,3],[-2,3],[3,8],[2,-1],[1,-3],[0,4],[-1,2],[-1,2],[-3,-7],[-4,-5],[1,-6],[1,-2],[-2,-1],[-4,-4],[9,-11],[-2,-3],[-15,-8],[-22,-21],[-13,-2],[-9,1],[0,4],[-1,1],[-1,0],[0,1],[-1,2],[1,1],[0,3],[1,0],[-1,6],[1,8],[0,6],[-4,2],[0,3],[-4,-5],[-4,-8],[-1,-10],[3,-10],[-11,-2],[-14,11],[-10,21],[3,23],[-4,-3],[-7,-11],[-5,-2],[-4,0],[-21,13],[-3,3],[-2,4],[-3,8],[-1,7],[-2,4],[-5,2],[-1,-3],[-2,-6],[-2,-7],[-1,-7],[3,-14],[2,-8],[1,-4],[5,-1],[4,-1],[4,-3],[3,-6],[1,-7],[-3,-7],[-1,-7],[4,-9],[-4,-8],[1,-13],[2,-11],[-2,-5],[-2,-1],[-1,-3],[-2,-3],[-3,-1],[-6,1],[-6,3],[-7,7],[-3,2],[-10,-1],[-2,3],[-16,30],[-9,11],[-33,26],[-13,4],[-6,5],[-5,16],[-6,3],[-10,0],[-7,-3],[-6,-6],[-6,-8],[-4,-7],[-2,-6],[-2,-3],[0,-3],[0,-4],[1,-6],[1,-6],[2,-6],[3,-3],[2,-6],[3,-14],[5,-15],[7,-8],[1,-5],[-2,-11],[0,-5],[0,-3],[4,-10],[-6,2],[-12,8],[-6,2],[-3,4],[-1,9],[0,10],[3,6],[-2,3],[-1,4],[0,4],[1,5],[-5,0],[-2,2],[-2,2],[-1,5],[-2,8],[-1,8],[-3,3],[-6,4],[-26,39],[-8,18],[-5,21],[-2,23],[1,22],[2,11],[4,4],[6,0],[3,0],[1,2],[2,7],[2,-3],[3,-7],[1,-3],[4,-8],[2,-6],[2,-6],[0,-7],[-1,-14],[2,-5],[3,-7],[5,-5],[5,-1],[5,6],[1,3],[1,2],[0,4],[-10,24],[-2,6],[0,5],[-1,1],[-3,11],[-1,7],[0,13],[0,4],[2,6],[4,14],[2,8],[1,12],[2,11],[6,7],[11,9],[18,30],[2,1],[2,1],[1,2],[0,6],[0,3],[7,20],[1,6],[0,5],[-1,13],[1,6],[1,4],[9,14],[5,5],[3,3],[1,6],[3,14],[2,7],[9,9],[19,11],[6,12],[3,16],[-3,14],[-6,11],[-10,4],[5,10],[0,1],[-1,13],[-6,12],[-8,8],[-15,8],[-9,1],[-3,2],[2,5],[0,5],[-16,13],[-9,9],[-5,10],[12,16],[4,13],[-1,20],[-2,7],[-1,5],[-2,6],[-1,25],[0,1],[-2,16],[2,16],[4,10],[6,7],[9,4],[5,2],[4,-1],[18,-10],[4,-1],[4,2],[6,-5],[46,-8],[7,5],[-31,8],[-11,3],[-12,9],[-14,22],[-11,5],[-5,6],[-5,8],[-3,8],[-3,17],[-1,3],[-4,1],[-1,-4],[0,-6],[2,-7],[13,-24],[3,-11],[-2,-5],[-5,-1],[-7,0],[-6,4],[-3,8],[-1,11],[0,22],[0,5],[11,34],[20,38],[1,9],[-1,2],[-3,-3],[-4,-6],[-16,-40],[-4,-7],[-6,0],[-2,5],[0,18],[-1,8],[-3,6],[-4,2],[-3,-6],[3,-11],[4,-20],[2,-21],[-1,-9],[-3,-2],[-1,-4],[1,-12],[0,-12],[1,-8],[1,-6],[-3,-3],[-5,2],[-4,3],[-5,2],[0,-4],[4,-2],[3,-3],[3,-5],[2,-7],[-1,-8],[-3,-6],[-3,-5],[-3,-5],[-1,-7],[-1,-6],[-1,-5],[-3,-6],[-4,-6],[-3,0],[-9,2],[-4,6],[-4,16],[-3,16],[-1,12],[-11,18],[-2,8],[-2,5],[-4,-5],[4,-9],[11,-33],[2,-12],[-2,-6],[-6,2],[-18,19],[-3,7],[0,13],[-2,-5],[-3,-8],[-2,-8],[0,-6],[-1,-4],[-9,-15],[7,-16],[3,-10],[2,-10],[-5,0],[-12,8],[-10,4],[-3,5],[-1,15],[-2,2],[-2,1],[-2,3],[-1,5],[-1,5],[1,11],[0,5],[3,6],[1,5],[-1,5],[-3,18],[7,9],[30,63],[16,9],[12,10],[2,4],[10,27],[5,8],[8,6],[11,6],[9,9],[6,15],[-5,-4],[-10,-13],[-5,-3],[-11,-1],[-5,-3],[-4,-5],[-3,-7],[-7,-21],[-3,-4],[-33,-27],[-23,-42],[-2,-2],[-5,0],[-2,-2],[0,-3],[-2,-8],[-1,-8],[-1,1],[-3,-7],[-6,-2],[-7,1],[-5,2],[0,3],[0,5],[-1,3],[-2,-1],[-1,-3],[0,-4],[0,-4],[-2,-32],[1,-1],[4,-3],[2,0],[3,-12],[1,-7],[0,-5],[1,-5],[3,-4],[0,-3],[-1,0],[0,-4],[1,-1],[2,-3],[-1,-1],[-1,-2],[-1,-2],[15,-20],[7,-14],[2,-15],[-2,-8],[-3,-4],[-10,-4],[-4,-3],[-13,-18],[-3,-5],[-2,-7],[-2,-7],[-1,-5],[-1,-10],[-1,-5],[-6,-6],[1,-2],[1,-3],[1,-2],[-1,-13],[3,-4],[3,-1],[2,-6],[-1,-8],[-5,-2],[-3,-4],[2,-11],[-6,-14],[-2,-5],[0,-4],[0,-11],[0,-5],[-1,0],[-1,1],[-2,-2],[-6,-20],[-4,-8],[-7,-4],[0,-4],[4,1],[2,-2],[3,-3],[3,-5],[4,-13],[0,-2],[4,-4],[-3,-9],[-9,-16],[-5,-6],[-5,-5],[-7,-4],[-6,-2],[-3,1],[-5,4],[-4,0],[-2,-2],[-7,-5],[-3,-2],[-8,1],[-5,2],[-3,7],[-3,26],[-1,13],[2,12],[8,7],[10,16],[3,6],[0,12],[-1,14],[-1,13],[4,17],[-1,5],[-2,4],[-1,4],[1,6],[7,18],[6,21],[1,12],[-4,8],[16,15],[2,7],[1,8],[4,10],[5,9],[4,4],[8,4],[9,11],[9,16],[5,17],[-27,-36],[-10,-10],[-3,-2],[-4,0],[2,8],[-7,3],[-4,3],[-4,6],[-2,8],[0,16],[-2,4],[12,22],[2,4],[2,8],[4,7],[5,5],[4,7],[-6,-4],[-10,-13],[-7,-5],[-5,-6],[-3,0],[-1,4],[-2,6],[-1,7],[31,57],[2,7],[-1,3],[1,2],[2,3],[-4,2],[-3,-3],[-4,-4],[-4,-3],[-2,-11],[-12,-17],[0,-13],[-4,-10],[-1,-2],[-3,1],[-1,4],[1,4],[1,3],[1,16],[10,24],[21,37],[1,2],[0,3],[1,2],[2,1],[2,0],[2,-2],[2,-1],[0,-1],[0,-1],[3,-2],[2,0],[0,3],[-1,4],[-2,2],[-1,2],[-1,1],[-2,9],[-1,5],[2,4],[8,17],[2,5],[2,8],[-8,-3],[-7,-9],[-5,-10],[-7,-6],[2,12],[4,12],[4,11],[6,10],[-3,8],[4,6],[6,4],[5,2],[3,2],[1,4],[-2,4],[-4,2],[-11,-4],[-3,-2],[-2,-4],[-3,-3],[-3,1],[-1,5],[0,7],[3,12],[4,22],[2,8],[6,7],[5,-4],[7,1],[14,7],[0,3],[-7,0],[-12,-5],[-6,2],[6,19],[2,5],[3,2],[4,2],[2,3],[-1,5],[7,12],[9,5],[28,3],[22,-7],[10,2],[7,8],[18,28],[9,25],[6,9],[-6,-4],[-4,-8],[-3,-11],[-4,-9],[-12,-12],[-6,-13],[-3,-4],[-12,-1],[-30,8],[-7,-9],[-5,4],[-4,23],[-4,-2],[-3,-5],[-6,-13],[-4,3],[10,29],[2,8],[6,-8],[7,-3],[7,0],[5,3],[13,12],[7,4],[3,3],[3,5],[-9,-6],[-3,-1],[-6,0],[-1,0],[-4,-5],[-3,-1],[-6,-6],[-4,-1],[-3,2],[-5,6],[-3,0],[0,5],[1,2],[2,1],[1,2],[2,3],[0,5],[1,2],[7,17],[3,4],[11,12],[2,4],[2,4],[-6,4],[0,4],[3,2],[6,6],[7,-1],[4,1],[8,9],[6,0],[12,-5],[6,2],[11,9],[22,6],[5,4],[-46,-12],[-22,12],[0,4],[3,8],[2,3],[19,24],[5,10],[4,11],[-16,-17],[-2,-5],[-2,-4],[-3,-3],[-3,-2],[-3,-1],[-2,-2],[-1,-4],[-1,-5],[-1,-5],[-3,-9],[-4,-5],[-4,-2],[-5,-1],[-2,-1],[-3,-5],[-6,-3],[-2,-3],[-3,-8],[-8,-11],[-5,-4],[-5,-1],[-3,-3],[-4,-10],[-3,-3],[-3,-1],[-3,-3],[-3,-4],[-12,-20],[-18,-26],[-19,-18],[-2,-1],[-2,2],[-3,8],[-3,2],[-5,1],[-5,3],[-5,4],[-3,4],[4,10],[1,5],[1,5],[-3,0],[-10,-17],[-17,5],[-41,40],[-2,5],[1,9],[2,5],[4,1],[14,1],[10,-2],[9,-5],[8,-9],[2,4],[-7,6],[-3,4],[0,6],[30,24],[6,1],[18,-11],[7,-2],[15,1],[8,3],[6,5],[-26,-4],[-6,1],[-14,10],[-12,4],[-30,-20],[-10,-4],[-3,0],[-4,2],[-6,5],[-4,2],[-19,-2],[-21,6],[-7,0],[-5,-7],[-5,-4],[-7,2],[-6,4],[-4,5],[-2,3],[-1,3],[-1,4],[0,4],[1,5],[1,0],[2,-1],[2,2],[6,11],[4,4],[42,5],[4,2],[9,9],[5,1],[4,-1],[3,-3],[3,-4],[4,-4],[14,-8],[3,-2],[0,7],[-2,6],[-3,4],[-5,1],[0,4],[4,1],[3,0],[3,-2],[4,-3],[4,6],[6,3],[7,-3],[5,-2],[-20,13],[-6,7],[0,7],[4,4],[29,5],[11,6],[9,11],[-3,2],[-6,-1],[-4,-3],[-5,-10],[-5,1],[-11,3],[2,6],[11,14],[-12,3],[-26,-7],[-13,4],[9,3],[10,1],[0,4],[-2,2],[-6,7],[5,7],[3,12],[3,14],[3,11],[4,8],[8,6],[9,4],[7,-2],[3,-4],[5,-11],[3,-5],[4,-4],[5,-2],[9,-2],[15,4],[13,8],[0,4],[-4,-1],[-5,-3],[-4,-2],[-4,2],[-6,-5],[-6,2],[-6,5],[-6,2],[-4,4],[1,7],[1,8],[-6,5],[-3,0],[-6,-3],[-3,-1],[-2,2],[-5,5],[-3,2],[-3,4],[4,10],[12,17],[3,7],[2,2],[3,0],[8,-1],[3,3],[5,4],[7,-4],[12,-10],[6,-4],[27,0],[1,2],[2,4],[5,0],[5,-1],[2,-1],[1,0],[0,4],[-5,4],[-23,-4],[-7,-3],[-4,-1],[-2,2],[-7,11],[-3,3],[-23,8],[-4,6],[2,11],[10,16],[4,8],[-5,10],[6,11],[12,9],[10,2],[9,-8],[8,-12],[10,-8],[11,4],[0,4],[-12,3],[-3,3],[-4,9],[-3,4],[-2,1],[-3,4],[4,9],[7,8],[6,4],[0,4],[-7,3],[-4,-5],[-4,-7],[-3,-4],[-5,-1],[-10,-8],[-5,-3],[-6,1],[-10,6],[-6,1],[-12,-4],[-6,0],[-2,8],[1,2],[7,19],[2,3],[6,4],[2,3],[3,3],[2,-3],[1,-4],[2,-2],[6,1],[31,18],[13,13],[2,17],[-5,1],[-7,-9],[-13,-21],[-7,-6],[-6,1],[-7,4],[-8,1],[7,5],[2,4],[-1,5],[-2,8],[0,4],[-2,0],[-4,-5],[-19,-29],[-7,-4],[-14,-3],[-7,4],[-5,23],[1,0],[2,1],[1,2],[0,1],[0,2],[-3,5],[-1,2],[0,8],[1,4],[3,4],[-3,2],[-8,3],[-2,1],[-1,6],[-2,11],[-1,7],[1,5],[4,10],[1,3],[0,9],[0,7],[1,5],[5,0],[-1,3],[-1,6],[0,3],[4,2],[5,-1],[5,-3],[15,-18],[5,-4],[2,2],[5,-8],[2,-3],[9,-7],[3,0],[-2,3],[0,3],[-1,3],[-1,3],[20,4],[12,-3],[6,1],[1,4],[-8,8],[-13,3],[-12,-2],[-8,-8],[-9,13],[1,2],[2,6],[-9,2],[-5,9],[-3,12],[-5,9],[-5,2],[-4,1],[-3,2],[-2,8],[2,7],[6,7],[-2,6],[0,4],[10,7],[6,0],[8,-10],[3,0],[3,5],[2,6],[-3,1],[-2,3],[-1,4],[-3,4],[-4,2],[-23,6],[-1,7],[2,15],[-1,7],[1,5],[-2,12],[-1,7],[1,7],[2,5],[3,5],[4,4],[7,3],[7,0],[8,-2],[6,-6],[-1,-8],[1,-11],[2,-12],[2,-9],[3,-6],[4,-5],[4,-2],[4,0],[-2,3],[-1,3],[-2,7],[3,0],[3,-1],[5,-3],[-2,11],[2,9],[0,7],[-4,9],[-10,12],[-4,7],[3,6],[-2,0],[-1,1],[-1,3],[3,5],[6,10],[2,5],[4,-6],[3,-2],[11,0],[-2,-16],[8,-12],[11,-7],[9,-2],[-1,4],[3,6],[3,17],[3,6],[3,0],[13,-7],[4,-3],[8,-11],[9,-7],[20,-9],[-4,9],[-3,3],[-8,5],[-12,14],[-18,9],[-3,3],[0,3],[-1,1],[0,2],[1,4],[2,0],[2,-2],[2,-1],[2,7],[5,-3],[8,-13],[6,-4],[3,0],[5,3],[3,1],[4,-1],[6,-6],[3,-1],[3,-2],[11,-12],[11,-6],[8,-16],[6,-5],[-2,3],[-2,6],[-1,6],[-1,4],[-1,4],[-28,27],[-7,3],[0,4],[6,0],[2,4],[-1,7],[-2,8],[-4,3],[-9,2],[-3,4],[-9,3],[-11,16],[-7,2],[0,1],[1,1],[1,1],[-4,7],[-6,2],[-11,0],[1,2],[0,2],[1,2],[2,2],[0,4],[-10,19],[6,8],[10,-3],[7,-16],[6,6],[6,-2],[6,-1],[7,9],[-2,0],[1,6],[0,6],[-1,4],[-2,5],[4,0],[0,4],[-6,4],[4,3],[8,2],[3,3],[0,4],[-9,0],[-4,1],[-4,3],[2,4],[-2,3],[-2,2],[-3,2],[-2,1],[0,3],[1,7],[1,2],[-4,0],[-3,3],[-13,22],[1,10],[4,2],[7,-4],[11,-9],[5,-1],[5,1],[11,9],[6,2],[6,-1],[6,-5],[2,4],[3,4],[4,3],[3,1],[5,-2],[8,-8],[4,-2],[14,1],[4,-1],[19,-17],[-3,6],[-3,4],[-7,7],[3,3],[8,2],[4,3],[-18,4],[-5,0],[-2,-2],[-4,-5],[-2,-1],[-3,1],[-6,6],[-3,1],[-4,3],[-8,14],[-3,3],[-1,2],[-5,9],[-1,2],[-2,7],[-1,4],[0,5],[5,0],[-3,6],[0,6],[2,6],[3,6],[0,3],[0,4],[0,3],[1,2],[2,-1],[4,-2],[1,-1],[17,-13],[11,1],[-8,7],[-2,4],[1,5],[-2,4],[-3,-3],[-3,-1],[-2,-1],[-4,1],[0,4],[3,0],[1,0],[0,4],[-2,1],[-1,1],[-3,3],[16,10],[7,-4],[8,-6],[-31,30],[0,11],[1,5],[2,2],[15,10],[4,5],[3,9],[-2,0],[2,13],[1,12],[2,10],[5,6],[36,-9],[6,-5],[5,-7],[0,-3],[2,-9],[1,-8],[1,0],[0,-6],[-1,-5],[-1,-5],[-2,-4],[5,4],[2,6],[1,6],[0,6],[1,9],[3,4],[1,4],[-1,10],[5,-5],[8,-13],[5,-3],[8,-6],[3,-2],[3,-2],[0,-5],[-1,-5],[-1,-4],[-3,-5],[-10,-10],[-5,-15],[-5,-12],[-3,-8],[5,1],[17,21],[2,2],[2,9],[5,4],[5,3],[5,6],[3,10],[2,11],[3,8],[7,4],[12,-3],[11,-6],[14,-11],[0,-5],[0,-2],[-1,0],[1,-6],[-7,-9],[-4,-11],[-3,-12],[-5,-13],[5,3],[4,5],[8,13],[0,2],[0,3],[0,2],[1,1],[1,1],[11,13],[1,2],[11,8],[7,4],[3,1],[6,-2],[8,-9],[6,-2],[-4,4],[3,3],[2,3],[1,4],[2,2],[3,1],[5,-3],[4,-1],[3,1],[2,8],[3,2],[11,0],[5,-2],[3,0],[3,2],[2,4],[4,10],[2,2],[3,1],[0,1],[1,-2],[5,-11],[1,-2],[7,1],[23,-4],[24,4],[12,7],[19,16],[11,6],[17,4],[9,-1],[6,-3],[-2,-3],[-1,-1],[6,-7],[8,0],[16,7],[15,-8],[8,0],[4,12],[-5,2],[-5,4],[-5,6],[-3,8],[7,10],[4,3],[5,-1],[1,-3],[0,-6],[2,-5],[2,-2],[8,0],[18,6],[11,2],[15,-12],[9,0],[18,4],[10,-5],[-2,-10],[-5,-13],[-1,-8],[-4,-5],[-4,-11],[-2,-5],[-8,-8],[-2,-4],[-3,-11],[0,-10],[3,-7],[6,-4],[4,0],[3,2],[2,1],[2,-3],[1,-7],[-1,-5],[-2,-4],[-3,-1],[-3,-21],[-12,-26],[-15,-24],[-10,-14],[-12,-8],[-24,-9],[-10,-7],[-15,-17],[-2,-6],[-2,-9],[-5,-10],[-12,-15],[-61,-57],[-21,-12],[-5,-6],[-2,-6],[-3,-12],[-1,-5],[-3,-3],[-7,-4],[-9,-2],[-17,-14],[-3,-2],[-2,-4],[-1,-5],[0,-6],[-5,3],[-1,1],[2,4],[-4,2],[-7,1],[-8,6],[-1,-2],[0,-5],[3,-6],[4,-3],[9,-1],[4,-2],[2,-3],[6,-11],[-6,-11],[-1,-6],[1,-7],[-5,0],[-8,4],[-4,0],[-3,-3],[-5,-7],[-2,-3],[-8,1],[-15,9],[-8,3],[-23,-7],[-6,5],[-9,14],[-5,6],[-6,2],[15,-25],[9,-9],[11,-3],[11,7],[6,1],[4,-6],[5,-6],[7,-6],[4,1],[-1,9],[18,-14],[9,-3],[16,15],[9,-3],[5,-7],[-4,-8],[9,-3],[10,6],[10,10],[8,13],[4,6],[4,-1],[2,-5],[-1,-10],[-2,-5],[-38,-57],[-6,-6],[-8,-13],[-3,-4],[-6,-1],[-4,2],[-2,6],[4,9],[-8,9],[-9,-5],[-22,-22],[-3,-2],[-7,0],[-19,-6],[-5,1],[-4,0],[-3,-7],[-1,-8],[-5,-4],[-4,-2],[-18,-21],[-2,-4],[-2,-6],[-3,-9],[2,-1],[4,4],[8,4],[4,5],[4,6],[3,5],[3,6],[13,9],[10,13],[12,7],[3,0],[3,-2],[3,-5],[14,-4],[7,1],[4,4],[3,4],[13,9],[4,1],[1,-8],[-6,-12],[-8,-12],[-8,-7],[-10,-18],[1,-3],[1,-2],[1,-2],[1,-1],[-13,-1],[-5,-4],[-5,-7],[3,-6],[-2,0],[-6,2],[-16,0],[0,-5],[8,1],[4,-1],[4,-3],[-5,-14],[-4,-6],[-3,-4],[10,-4],[5,0],[6,4],[5,6],[2,4],[0,2],[6,0],[3,2],[5,9],[4,4],[5,4],[4,1],[5,3],[-4,6],[-10,11],[8,-1],[25,5],[27,-3],[9,3],[42,36],[17,5],[-3,-7],[-1,-2],[-2,-3],[3,-4],[4,1],[4,2],[4,1],[-6,16],[11,-5],[5,0],[5,1],[4,3],[5,7],[2,7],[-1,7],[3,6],[2,1],[3,-2],[3,-1],[4,2],[7,5],[4,1],[34,-1],[21,-16],[36,-15],[12,0],[12,4],[17,14],[4,2],[44,0],[2,-1],[3,-6],[3,-1],[3,1],[2,2],[3,0],[2,-3],[10,5],[24,-10],[8,1],[5,-8],[2,1],[2,4],[4,3],[5,-1],[13,-7],[2,4],[2,-1],[2,-3],[3,0],[4,2],[4,5],[3,1],[5,-4],[4,-1],[1,3],[1,3],[2,3],[2,3],[3,1],[6,-1],[12,-9],[6,-2],[7,2],[16,14],[5,1],[31,-1],[0,-2],[1,-5],[3,-6],[2,-3],[4,-1],[4,5],[4,0],[2,-2],[3,-8],[23,-31],[3,-10],[1,-11],[1,-10],[5,-10],[0,-3],[-2,-8],[3,-6],[8,-10],[-4,-1],[-2,-5],[1,-5],[2,-2],[4,-2],[-2,-3],[-6,-7],[-12,-18],[-5,-10],[0,-9],[-29,-31],[-8,-13],[-17,-55],[-7,-31],[-2,-12],[1,-11],[5,-5],[1,-5],[-4,-11],[-25,-47],[-9,-21],[-4,-21],[1,-5],[2,-4],[1,-4],[0,-8],[-1,-3],[-5,-8],[-1,-3],[-2,-11],[-4,-6],[-10,-9],[-7,-13],[-7,-14],[-4,-6],[-16,-12],[-5,-5],[-4,-6],[-3,-7],[-1,-3],[-4,-26],[-3,-7],[-4,-6],[-2,-9],[0,-5],[1,-8],[0,-3],[-1,-4],[-5,-7],[-3,-10],[-4,-6],[-26,-23],[-5,-12],[-6,-5],[-10,-6],[-3,-5],[-5,-15],[-3,-2],[-2,2],[-2,2],[-3,1],[-16,-2],[-65,-12],[-2,0],[-10,-6],[-10,-8],[-29,-36],[-12,-5],[-12,4],[4,-5],[5,-2],[11,0],[6,2],[12,8],[11,3],[55,33],[3,4],[2,6],[6,5],[7,1],[5,-4],[5,-6],[10,0],[3,-8],[0,-11],[-2,-11],[-3,-9],[-5,-6],[7,0],[1,-1],[1,-9],[1,-2],[3,-1],[3,-1],[2,-1],[1,-4],[26,-3],[6,-4],[9,-10],[3,-2],[10,-10],[0,-4],[-15,-17],[-5,-12],[-7,-4],[-13,-3],[-18,-15],[-6,-2],[-7,2],[-17,10],[-13,1],[-7,-3],[-3,-4],[-2,-5],[-15,-13],[-15,-21],[-5,-3],[-5,-3],[-3,-6],[-4,-20],[-3,-8],[-4,-4],[-20,-1],[-5,-3],[-10,-8],[-11,-6],[-11,-2],[-11,0],[-45,16],[-24,0],[-11,4],[-10,8],[0,1],[-10,11],[-6,9],[-4,3],[-5,0],[0,-3],[16,-14],[3,-5],[2,-1],[9,-21],[2,-4],[2,-1],[6,1],[1,0],[2,-3],[2,-4],[2,-4],[3,-1],[16,4],[6,0],[48,-16],[13,0],[4,2],[3,0],[3,-5],[5,-5],[50,-4],[2,-2],[5,-9],[2,-2],[3,-1],[18,2],[21,12],[6,6],[5,9],[5,8],[7,1],[-2,7],[-1,3],[-1,2],[5,5],[8,12],[6,3],[47,-4],[5,-3],[8,-13],[5,-4],[-3,-10],[-1,-3],[4,-1],[7,1],[4,-3],[1,2],[3,3],[2,3],[4,-5],[11,-10],[11,-4],[17,-18],[12,-8],[45,-10],[3,-2],[1,-5],[1,-5],[0,-5],[2,-1],[6,-3],[6,-8],[16,-38],[3,-8],[37,-57],[4,-14],[3,-7],[6,-5],[1,-4],[1,-5],[2,-2],[3,1],[1,3],[2,3],[1,1],[3,0],[3,-2],[4,-5],[2,-9],[-6,0],[0,-4],[4,-2],[9,3],[7,-1],[18,-16],[0,-4],[-1,-4],[0,-4],[2,-5],[3,-4],[-4,-3],[0,-4],[3,-2],[5,-6],[0,-4],[-2,-6],[1,-3],[3,-1],[2,-3],[1,-7],[1,-40],[0,-6],[-2,-9],[0,-3],[0,-6],[2,-12],[7,-16],[0,-10],[0,-3],[-1,-3],[0,-2],[-1,-3],[-2,-4],[1,-4],[1,-4],[1,-4],[1,-6],[4,-7],[6,-9],[-2,-7],[1,-4],[3,-3],[2,-6],[-1,-6],[-2,-5],[-1,-5],[1,-6],[5,-10],[1,-4],[1,-13],[2,-12],[1,-4],[1,-1],[4,-2],[1,-1],[0,-2],[1,-5],[5,-14],[3,-6],[1,-5],[1,-8],[2,-6],[3,-3],[1,-2],[8,-10],[2,-6],[0,-4],[0,-3],[0,-3],[0,-13],[1,-6],[2,-2],[-1,-5],[16,-74],[6,-19],[10,-15],[4,-4],[15,-8],[0,-5],[-6,0],[0,-3],[1,-1],[1,-4],[1,-5],[1,-4],[2,-4],[2,-3],[-2,-5],[-3,-3],[-7,-4],[1,-4],[1,-3],[2,-1],[3,0],[1,1],[0,2],[1,1],[1,0],[1,-1],[1,-3],[0,-3],[0,-1],[3,0],[2,4],[2,16],[5,-8],[5,-5],[5,-2],[12,-2],[14,-12],[57,-22],[62,-49],[8,-10],[3,-8],[1,-5],[-1,-5],[1,-6],[3,-5],[9,-9],[4,-4],[4,-10],[5,-14],[3,-15],[0,-12],[1,-4],[2,-4],[2,-3],[3,-1],[-1,-6],[-1,-2],[2,-3],[6,-10],[2,-3],[11,-4],[3,-3],[3,-4],[7,-4],[2,-6],[2,-15],[0,-3],[8,-10],[34,-17],[10,-11],[-25,-17],[-9,-13],[-6,-23],[6,-17],[8,-39],[5,-17],[29,-58],[50,-94],[4,-20],[-3,-19],[-2,-2],[-6,-7],[6,19],[1,10],[-4,4],[-6,3],[-12,11],[-6,3],[-5,-2],[-11,-9],[-6,-1],[-7,0],[-6,3],[-6,4],[-5,5],[-26,43],[-10,10],[-10,2],[-2,0],[-35,-15],[-5,0],[-17,0],[-10,-3],[-2,1],[-7,9],[0,1],[-16,3],[-6,-3],[-19,-16],[2,-1],[3,-2],[2,-2],[2,-3],[4,9],[8,5],[8,1],[7,-3],[11,-10],[3,-4],[4,-4],[5,3],[7,7],[50,12],[8,-4],[5,-12],[20,-40],[12,-8],[9,-13],[5,-4],[10,-2],[4,-2],[13,-21],[26,-28],[5,-3],[6,-1],[5,-3],[4,-7],[1,-4],[1,-6],[0,-6],[2,-2],[2,-1],[8,-8],[-2,-4],[5,-4],[5,-8],[3,-10],[1,-8],[23,-80],[3,-22],[1,-26],[-6,-31],[-2,-4],[-3,-1],[-5,-2],[-5,-4],[-25,-32],[-5,-3],[-4,-4],[-22,-41],[-6,-8],[-6,-4],[-4,-4],[-4,-8],[0,-7],[9,-1],[14,4],[4,-1],[8,-9],[3,-2],[7,-6],[14,-28],[7,-11],[5,5],[6,1],[11,-2],[4,-3],[8,-14],[4,-3],[0,4],[-1,9],[5,11],[8,11],[3,8],[2,14],[3,16],[5,15],[3,10],[10,13],[14,8],[15,4],[13,-1],[-2,4],[6,3],[6,-2],[6,-3],[6,-2],[24,0],[11,-4],[12,-8],[14,-4],[12,7],[-3,3],[-3,2],[-4,0],[-3,0],[0,4],[86,-27],[33,-22],[69,-69],[8,-12],[7,-14],[5,-28],[5,-18],[4,-17],[-2,-13],[2,-9],[0,-11],[0,-22],[6,-27],[-1,-6],[-3,-5],[-7,-31],[0,-6],[-1,-5],[-12,-43],[-9,-21],[-3,-4],[-3,-7],[0,-15],[1,-27],[-2,-11],[-5,-21],[-1,-10],[-4,-16],[-1,-9],[-1,-3],[-22,-12],[-4,-7],[-5,4],[-1,-5],[-1,-7],[-2,-4],[-2,-2],[-7,-14],[-19,-28],[-3,-7],[-3,-2],[-19,32],[-8,4],[-14,15],[-8,2],[0,-4],[10,-13],[6,-5],[13,-4],[2,-2],[2,-3],[0,-9],[-1,-3],[-6,2],[-3,-1],[-6,-2],[-4,-1],[-3,1],[-8,7],[-6,0],[-13,-6],[-8,-2],[8,-4],[46,-4],[6,4],[-1,-11],[-22,-30],[3,-3],[5,-3],[10,-2],[3,4],[2,6],[1,1],[0,-13],[-3,-9],[-16,-20],[-14,-12],[-9,-5],[-20,-4],[-5,1],[-2,3],[-5,12],[-9,16],[-2,8],[-1,-11],[-4,-6],[-11,-7],[-8,-11],[-2,-1],[0,-3],[-1,-8],[-1,-7],[-2,-3],[-3,-1],[-5,-5],[-2,-2],[-4,0],[-6,4],[-3,1],[-6,-1],[-13,-7],[-6,-5],[4,-3],[5,-1],[5,-3],[3,-9],[8,10],[17,5],[9,5],[8,9],[5,1],[4,-6],[1,-5],[-1,-6],[-1,-4],[-1,-1],[1,-5],[1,-4],[2,-8],[-3,-3],[-1,-5],[0,-14],[-1,-3],[-2,-3],[-4,-4],[7,1],[3,-2],[1,-3],[-8,-17],[-14,-17],[-12,-10],[-4,-3],[-12,-6],[-22,5],[-8,-1],[0,1],[-4,0],[-1,0],[-1,-1],[-5,-7],[-4,-2],[-4,0],[-4,-1],[-3,-5],[-5,5],[-1,0],[-7,0],[-19,-7],[-1,-4],[-1,-6],[-2,-7],[-3,-6],[-4,-3],[-5,-2],[-4,-3],[18,4],[2,2],[2,4],[1,4],[1,2],[18,7],[45,-9],[4,-4],[3,-8],[0,-6],[-2,-3],[-6,-1],[-10,3],[-4,0],[-9,-12],[-10,-3],[-5,-4],[2,-4],[2,-4],[2,-3],[2,-2],[24,0],[12,-4],[-3,7],[-1,8],[1,6],[6,0],[1,-8],[3,-11],[4,-9],[3,-5],[59,-9],[34,15],[90,11],[7,-6],[-3,-19],[-1,-4],[-1,-3],[-2,-3],[-1,-2],[-10,0],[-2,-2],[1,-13],[2,-10],[5,-16],[2,-23],[-2,-23],[-6,-19],[-8,-12],[-18,-8],[-8,-8],[-3,-1],[-6,1],[-3,-2],[-3,-3],[-2,-5],[-2,-2],[-6,-4],[-18,0],[-6,-2],[-5,-5],[-11,-14],[-14,-28],[-3,-7],[1,-15],[3,-23],[-10,-5],[-21,9],[-19,9],[-11,-5],[-27,-36],[-11,-7],[-60,-17],[-11,-7],[-1,0],[-3,-5],[-3,-6],[0,-3],[-10,-8],[-10,-20],[-11,0],[-5,1],[-13,6],[-3,1],[-10,0],[-2,2],[-5,6],[-5,3],[-12,1],[-5,2],[-53,26],[-9,2],[-1,-1],[-6,-5],[-10,6],[-36,-18],[-48,0],[-45,-20],[-2,1],[-3,3],[-2,2],[-3,-2],[-1,-5],[2,-11],[-2,-6],[-5,-4],[-6,3],[-26,22],[-2,3],[2,6],[4,4],[8,4],[0,4],[-3,3],[-6,7],[-3,3],[-1,-2],[-4,-3],[-2,1],[3,8],[-3,2],[-2,2],[-9,2],[-7,0],[-2,0],[-5,-2],[-4,-10],[-2,-15],[-4,-11],[-7,-1],[-6,8],[3,11],[5,10],[2,8],[-6,4],[-17,-2],[-4,-2],[10,-11],[1,-4],[1,-11],[-1,-7],[-4,-4],[-3,0],[-5,3],[-5,4],[-2,3],[-2,6],[-9,6],[-6,8],[-9,4],[-4,3],[-5,8],[-5,9],[-31,24],[-5,3],[0,-4],[3,-1],[5,-5],[4,-1],[6,-11],[22,-33],[2,-8],[0,-7],[-7,-3],[-17,-2],[-5,-2],[2,-2],[2,-2],[0,-4],[-12,-3],[-8,-3],[-3,-4],[-1,0],[-9,2],[-9,-22],[-1,-3],[-6,2],[-6,6],[-19,5],[-6,0],[-6,-3],[-11,-8],[-5,-1],[-7,2],[-10,2],[-6,0],[-6,-3],[-5,-3],[0,-1],[-5,-5],[-4,-6],[-3,-3],[-2,4],[0,6],[-1,3],[-11,4],[-7,-1],[-2,1],[-1,2],[0,1],[-2,7],[-2,2],[-2,-3],[-10,-22],[4,1],[3,2],[3,2],[3,4],[6,-15],[3,-4],[5,-2],[5,0],[4,-1],[2,-5],[-2,-10],[4,-3],[2,-1],[-10,-16],[1,-9],[-6,-3],[-22,-1],[-5,1],[-21,14],[-51,8],[-10,8],[-6,-1],[-10,-5],[-3,-6],[-4,-12],[-1,-13],[2,-6],[7,-3],[1,-7],[-3,-10],[-4,-8],[-2,0],[0,22],[-6,15],[-59,61],[-47,24],[-7,0],[-16,-5],[-4,-1],[-10,-9],[-7,-1],[-10,4],[-4,-2],[-6,-7],[-1,-1],[-5,-5],[-3,-2],[-3,1],[-5,3],[-3,1],[-5,-2],[-10,-5],[-11,-4],[-3,-6],[-3,-8],[-4,-8],[-20,-12],[-6,0],[-5,2],[-4,5],[-3,9],[-4,14],[-1,3],[-1,0],[0,1],[-1,2],[-2,0],[-1,-1],[0,-3],[0,-3],[4,-5],[3,-20],[3,-8],[-5,-7],[-5,-8],[-4,-10],[-3,-12],[-3,-16],[0,-12],[5,-25],[-6,0],[-7,-2],[-4,-5],[-2,-9],[2,-9],[4,-4],[13,1],[0,-4],[-3,-10],[0,-2],[-3,-1],[-2,-2],[-1,-3],[-2,-14],[-4,-4],[-4,2],[-4,5],[-2,-13],[-6,-5],[-6,-2],[-3,-6],[-2,-10],[-3,-12],[-1,-14],[2,-15],[-4,-3],[-12,-4],[-4,-1],[-6,2],[-6,4],[-4,0],[-4,-6],[-10,13],[-16,27],[-19,23],[-3,2],[-2,-1],[-7,-5],[-3,-1],[-2,-2],[-3,-6],[-3,-1],[-3,1],[-3,2],[-4,6],[1,2],[1,5],[-6,3],[-7,6],[-3,9],[4,11],[-10,-1],[-3,1],[-4,3],[-1,4],[-1,5],[-3,6],[-2,10],[2,8],[4,8],[3,8],[-5,-3],[-3,0],[-3,3],[-1,-4],[0,-2],[-3,-4],[-2,-2],[-4,0],[0,-4],[4,-3],[1,-6],[-1,-7],[-2,-4],[-4,-2],[-13,2],[5,-9],[15,3],[7,-6],[-10,-4],[0,-4],[2,1],[6,-1],[-2,-5],[7,0],[0,-3],[-3,-2],[-2,-3],[0,-4],[2,-4],[0,-4],[-6,1],[-3,7],[-3,8],[-5,4],[-23,9],[-13,-2],[-20,-17],[-11,-6],[-46,-4],[0,-1],[-1,-1],[-1,-2],[-2,0],[-3,16],[-2,1],[-2,-2],[-2,-2],[-1,-1],[-6,0],[-6,-3],[-3,-5],[3,-7],[0,-5],[-2,-2],[-3,-4],[-2,-4],[-1,-4],[0,-4],[2,-4],[0,-2],[-4,-11],[0,-4],[-3,-4],[-14,3],[-5,-3],[-5,-8],[-5,-4],[-12,-6],[-3,-5],[-12,-27],[-3,7],[-2,21],[-4,4],[-5,-2],[0,-5],[0,-7],[-3,-6],[0,-4],[1,-2],[5,-6],[-3,0],[-2,-1],[-3,-3],[-3,-3],[0,-4],[0,-5],[-1,-5],[-2,-2],[-9,-6],[3,1],[2,-1],[4,-4],[1,0],[4,1],[1,-1],[1,-2],[1,-8],[1,-2],[1,-5],[-4,-11],[-8,-16],[-2,-1],[-6,2],[-3,-1],[-2,-2],[-8,-14],[-4,-14],[0,-3],[-3,2],[-3,3],[-8,12],[-1,3],[-2,4],[-1,8],[1,5],[-1,4],[-2,6],[-7,17],[-5,8],[-5,5],[-17,11],[-11,3],[-10,8],[-4,3],[-6,-1],[-7,-3],[-6,-6],[0,-9],[2,-10],[-3,-8],[-5,-5],[-4,-3],[-11,-5],[-14,-2],[-10,5],[-3,18],[3,1],[2,1],[1,2],[0,4],[-1,3],[-1,2],[0,-1],[-2,12],[0,6],[1,3],[0,2],[5,12],[3,2],[8,4],[18,14],[9,5],[11,9],[6,1],[8,-12],[6,-4],[6,5],[4,9],[2,6],[0,5],[2,3],[10,0],[10,8],[32,45],[10,10],[4,2],[1,3],[0,7],[0,7],[-2,12],[3,3],[4,0],[2,0],[20,14],[0,4],[3,8],[2,23],[1,12],[1,10],[2,8],[6,6],[6,0],[2,2],[3,6],[2,0],[2,-3],[1,-7],[1,-8],[0,-7],[2,2],[1,1],[1,2],[5,-4],[11,-1],[5,-3],[-3,8],[-5,4],[-9,4],[-5,8],[1,5],[1,5],[-1,7],[0,3],[7,-2],[20,2],[8,4],[5,9],[3,10],[4,10],[-1,9],[1,6],[2,3],[4,-1],[20,23],[3,7],[2,10],[5,8],[12,12],[8,21],[-2,52],[3,25],[2,5],[4,14],[-1,5],[-1,8],[0,9],[1,3],[25,0],[3,-1],[6,-6],[2,-1],[17,-2],[5,2],[4,4],[19,28],[2,4],[1,3],[2,4],[3,2],[-2,6],[-3,16],[-1,4],[-1,4],[-5,9],[-2,5],[10,-1],[2,1],[2,7],[-1,6],[-2,5],[-3,3],[0,4],[21,11],[51,6],[10,6],[6,1],[20,0],[6,1],[9,7],[5,0],[35,-12],[23,1],[35,-11],[8,-11],[5,-3],[32,2],[20,8],[10,2],[18,-1],[11,2],[8,7],[2,-4],[-4,-8],[4,-4],[5,12],[1,4],[0,8],[0,4],[-1,3],[-1,5],[0,23],[-1,11],[-3,7],[5,-2],[3,1],[1,6],[1,9],[2,5],[4,6],[1,5],[-4,6],[6,9],[9,-3],[10,14],[19,33],[5,5],[5,4],[6,2],[6,1],[6,3],[6,8],[24,56],[2,3],[3,1],[3,3],[1,5],[0,5],[2,6],[2,5],[1,3],[16,22],[10,17],[5,4],[11,6],[5,5],[2,7],[-1,7],[-4,5],[-1,-11],[-5,-6],[-6,-3],[-6,-1],[-5,-2],[-4,-7],[-3,-8],[-4,-7],[-17,-15],[-2,-3],[-3,-6],[-18,-29]],[[49699,80503],[5,-12],[0,-5],[-1,0],[-1,-1],[0,-1],[-1,-2],[-11,-4],[-4,-3],[-8,-9],[-1,-3],[-1,-3],[0,-13],[0,-6],[-1,-3],[-31,-13],[-10,4],[-36,35],[-2,4],[-9,9],[-3,2],[-11,-2],[-4,-3],[-5,-4],[6,17],[11,13],[24,15],[0,-2],[-1,-4],[0,-2],[6,1],[7,7],[9,16],[7,7],[7,0],[42,-23],[7,0],[2,-1],[4,-3],[0,-2],[0,-5],[0,-1],[1,-1],[2,1],[1,0]],[[49733,80559],[0,-4],[1,-2],[3,-4],[2,-2],[0,-4],[-23,4],[0,4],[6,4],[7,17],[4,0],[3,-4],[0,-3],[-1,-3],[-2,-3]],[[50253,80917],[6,-9],[2,-9],[-1,-7],[-7,-4],[-33,4],[-5,3],[-5,6],[-4,9],[-3,7],[4,16],[2,4],[4,1],[34,-16],[3,-2],[3,-3]],[[48728,82018],[1,-3],[3,-4],[1,-4],[-1,-7],[-2,-1],[-3,1],[-6,7],[-6,13],[-2,5],[-3,0],[-8,0],[-2,1],[-4,10],[0,4],[7,9],[3,-3],[3,0],[5,1],[2,-2],[5,-5],[3,-7],[3,-7],[1,-8]],[[48861,82040],[8,1],[4,-1],[3,-4],[-5,-8],[-10,-23],[-6,-5],[-7,-1],[-7,-5],[-7,-7],[-5,-7],[-1,-2],[-1,-2],[0,-2],[0,-4],[0,-5],[-1,-1],[-1,1],[-10,-9],[-4,-7],[-18,-14],[-3,-1],[-3,1],[-8,4],[0,-1],[-1,-2],[-3,-2],[-1,1],[-1,4],[0,5],[1,5],[1,2],[2,3],[3,6],[1,5],[-3,3],[-4,-3],[-6,-11],[-4,-3],[0,2],[-9,11],[-1,0],[-2,-1],[-1,1],[0,1],[0,5],[0,2],[0,1],[0,5],[-1,4],[-6,7],[-9,23],[-5,8],[0,5],[1,6],[1,9],[0,13],[1,19],[0,9],[-3,9],[5,4],[35,16],[4,0],[19,-4],[5,-1],[11,-7],[3,-3],[1,-8],[1,-7],[1,-3],[-1,-1],[4,-4],[4,-3],[1,0],[0,-3],[0,-4],[0,-4],[1,-1],[0,-1],[5,-7],[1,-7],[1,-5],[1,-3],[3,-1],[4,0],[6,3],[4,0],[1,2],[3,5],[2,2],[1,-1],[4,-3],[1,-1]],[[48267,83226],[15,-3],[2,-2],[1,-6],[-2,-7],[-2,-7],[-2,-4],[0,5],[0,3],[1,2],[1,3],[-7,6],[-7,1],[-7,-1],[-6,1],[3,4],[3,3],[4,1],[3,1]],[[48591,83343],[-6,-5],[0,-8],[3,-9],[1,-10],[-4,-5],[-7,-4],[-13,-3],[-15,2],[-12,5],[-12,9],[-11,12],[0,4],[-1,4],[-2,16],[-1,5],[0,4],[1,1],[1,2],[0,2],[2,2],[-7,12],[-5,12],[-3,14],[1,19],[4,13],[7,13],[9,9],[9,2],[-1,2],[0,5],[-1,2],[7,0],[3,0],[18,-11],[4,-6],[6,-11],[4,-13],[6,-29],[-4,-8],[12,-15],[1,-13],[-3,-2],[-4,0],[-2,-3],[1,-7],[3,-3],[11,-6]],[[48602,83485],[3,-2],[2,-5],[1,-5],[-2,-3],[-3,0],[-3,5],[-3,10],[-18,21],[-3,10],[-4,16],[0,8],[-10,8],[-2,4],[-2,10],[-3,10],[0,9],[9,6],[9,-9],[8,-11],[3,-2],[2,-1],[2,-2],[2,-13],[2,-3],[2,-1],[3,-3],[3,-8],[3,-7],[2,-8],[2,-19],[0,-3],[-2,-4],[-3,-8]],[[48324,83473],[0,-7],[0,-6],[1,-6],[1,-5],[0,-4],[-3,-2],[-3,-2],[-2,-4],[-1,-5],[-2,5],[-5,-9],[-6,-7],[-8,-5],[-8,-3],[-11,2],[-4,-2],[-2,-13],[-1,-2],[-3,-4],[-7,-7],[-7,-3],[-7,3],[-3,13],[1,14],[6,8],[15,10],[-6,21],[-3,5],[-11,7],[-2,0],[1,11],[7,11],[12,15],[-6,3],[-8,2],[-7,-2],[-6,-5],[-7,-21],[-4,-10],[-8,-7],[-9,-16],[-4,-5],[-8,-2],[-3,6],[0,10],[4,10],[-2,1],[-1,3],[-1,1],[3,9],[12,23],[-9,8],[4,3],[2,4],[1,6],[0,9],[1,7],[2,5],[10,9],[15,8],[4,5],[3,3],[3,-2],[-2,-4],[-3,-17],[0,-4],[2,-10],[2,-5],[3,-1],[0,4],[-2,12],[6,13],[9,11],[10,7],[7,11],[4,3],[4,1],[4,3],[3,4],[3,4],[3,-1],[1,-3],[1,-3],[2,-25],[3,-33],[1,-18],[2,-6],[4,-6],[4,-5],[3,-2],[1,-2],[-1,-5],[-1,-5],[0,-4],[1,-3],[2,-2],[4,-3]],[[48276,83695],[2,2],[4,-3],[2,3],[0,2],[-1,2],[-1,3],[5,1],[4,3],[4,0],[1,-8],[-9,-18],[-3,-12],[0,-10],[-5,-5],[-8,-3],[-7,0],[-6,4],[4,4],[2,7],[2,8],[2,7],[6,9],[2,4]],[[48389,83700],[14,18],[9,6],[6,-3],[1,-6],[1,-8],[-1,-7],[-4,-5],[-4,-9],[-6,-7],[-11,-33],[-24,-56],[-6,-23],[-2,1],[-7,-11],[-5,-3],[-2,-4],[-3,-23],[-2,-9],[-7,-6],[-11,1],[-9,8],[-5,15],[-2,28],[0,11],[3,9],[4,4],[5,3],[4,6],[9,8],[21,5],[9,10],[-6,0],[-10,-4],[-10,0],[-4,9],[3,14],[8,15],[9,13],[6,5],[8,3],[21,25]],[[48419,83753],[2,-4],[3,-9],[-6,-6],[-9,-4],[-6,-1],[3,10],[4,5],[9,9]],[[48435,83790],[1,-2],[2,-2],[1,1],[1,3],[1,-9],[-2,-8],[-3,-9],[-2,-18],[-3,3],[-6,16],[3,6],[3,14],[4,5]],[[48435,83822],[3,4],[7,-2],[3,3],[-1,-8],[-3,-4],[-2,-5],[2,-8],[-6,-5],[-5,4],[-2,10],[4,11]],[[48456,83879],[8,0],[4,1],[3,3],[-4,-10],[-5,-7],[-6,-3],[-8,0],[2,5],[1,4],[5,7]],[[48288,83912],[-14,-1],[-7,1],[-7,8],[3,6],[3,4],[3,2],[4,0],[4,-5],[8,-8],[3,-7]],[[48105,83952],[15,7],[7,-1],[3,-10],[-4,-8],[-16,-2],[-1,-10],[-5,-6],[-7,-1],[-6,-3],[-5,-11],[2,-10],[-6,-1],[-17,10],[-3,7],[-1,9],[-3,10],[6,4],[19,4],[6,2],[10,8],[6,2]],[[48419,83891],[3,-4],[4,-8],[2,-8],[-4,-4],[-9,0],[-4,2],[1,6],[-2,3],[-2,1],[-1,0],[-3,0],[1,-8],[-3,-7],[-9,-9],[0,-5],[4,4],[5,3],[11,2],[4,-3],[-2,-6],[-4,-7],[-25,-20],[-11,-4],[-9,8],[2,1],[3,4],[3,5],[0,6],[-2,3],[-4,0],[-7,-3],[-1,-2],[-2,-4],[-1,-5],[-3,-1],[-9,-3],[-23,-14],[-4,-6],[-3,-3],[-4,1],[-3,3],[-4,1],[-2,-1],[-7,-5],[-3,-2],[-26,0],[-1,-2],[-2,-4],[-1,-4],[-3,-2],[-4,0],[-5,2],[-8,6],[-5,6],[-4,9],[-2,11],[3,9],[6,5],[7,1],[5,-1],[5,-6],[3,-9],[4,-5],[5,4],[0,5],[-2,0],[-1,1],[-1,1],[-2,2],[5,2],[13,-3],[4,3],[5,5],[19,5],[13,10],[5,7],[-2,3],[-5,-2],[-16,-11],[-14,-4],[-7,1],[-5,6],[-2,6],[2,6],[2,4],[3,2],[4,1],[2,3],[4,12],[1,4],[1,5],[3,3],[2,1],[10,-1],[17,10],[3,3],[2,6],[0,6],[-1,4],[-3,4],[-18,-11],[-6,-1],[-2,-2],[-2,-2],[-3,-1],[-2,3],[-5,12],[-2,5],[-4,5],[-5,4],[-26,5],[-6,3],[-4,4],[-4,5],[13,11],[-2,6],[-6,7],[-1,8],[10,1],[4,2],[5,5],[2,-5],[3,-2],[2,0],[2,3],[1,11],[8,8],[11,4],[9,1],[4,-3],[13,-5],[-1,-3],[-1,-6],[0,-3],[9,-1],[6,-12],[12,-32],[1,-4],[0,-4],[0,-3],[3,-1],[28,0],[2,-2],[2,-4],[2,-2],[5,4],[2,0],[3,0],[2,-2],[6,-12],[2,-2],[3,-1],[5,1],[2,0],[3,-3],[4,-6],[3,-6],[1,-8],[3,-1],[4,1],[3,-2],[-2,-12],[-2,2],[-2,1],[-6,1]],[[48205,84035],[-2,-6],[-4,-12],[-2,-4],[-2,-4],[-2,-2],[-3,-2],[-4,0],[-10,-17],[-14,-14],[-5,-2],[-7,4],[-3,0],[-1,-6],[-1,-6],[-3,4],[-3,7],[-1,6],[7,1],[8,9],[12,24],[4,5],[9,8],[6,3],[8,9],[5,2],[7,1],[3,-2],[-2,-6]],[[47946,84232],[1,-4],[1,-5],[1,-4],[2,-3],[-8,0],[-2,-2],[-2,-4],[-3,-3],[-2,-2],[-2,-1],[2,-6],[-3,-3],[-4,-3],[-4,-1],[-18,5],[-5,2],[1,6],[3,6],[4,2],[4,3],[1,6],[-1,7],[-3,4],[7,6],[7,2],[5,5],[2,16],[2,0],[0,-1],[2,-3],[2,-1],[2,0],[1,-2],[1,-2],[-4,-10],[-2,-2],[9,-5],[3,-3]],[[48243,84261],[14,-11],[6,-8],[-5,-6],[0,-4],[7,0],[-3,-22],[-6,-12],[-7,-5],[-11,-2],[-5,4],[-5,14],[-4,3],[-4,2],[-8,11],[-6,3],[17,23],[9,8],[11,2]],[[48164,84257],[5,4],[9,6],[6,2],[3,-3],[7,-2],[3,-3],[-7,-5],[-9,-2],[-9,1],[-8,2]],[[48344,84394],[-7,4],[-6,8],[-2,8],[7,5],[9,-3],[7,-8],[2,-9],[-10,-5]],[[47987,84419],[4,-4],[2,-5],[3,-4],[5,1],[-2,-9],[-2,-3],[-3,-2],[-4,-5],[-1,-5],[-3,-12],[-2,-5],[-6,-3],[-21,7],[0,-4],[18,-6],[5,-6],[2,-9],[1,-13],[0,-11],[-3,-7],[-5,3],[-5,1],[-11,0],[0,-4],[5,-2],[10,2],[4,0],[5,-5],[3,-6],[4,-5],[5,-1],[0,-4],[-6,-8],[-23,6],[-9,-6],[-8,11],[-2,6],[-8,31],[-1,10],[2,7],[0,4],[-5,8],[-3,3],[-3,1],[3,5],[2,4],[4,11],[1,7],[1,5],[1,3],[4,1],[2,9],[-3,18],[-8,26],[6,5],[12,7],[3,1],[25,-21],[-3,-2],[-1,0],[-6,2],[0,-4],[6,-1],[9,-10],[6,-1],[0,-4],[-7,-5],[-6,4],[-6,6],[-11,8],[-6,9],[-5,6],[-6,-4],[1,-2],[2,-2],[2,-3],[0,-3],[1,-5],[2,-1],[3,0],[2,0],[7,-4],[1,-1],[3,-7],[4,-3],[9,0],[4,-1]],[[47982,84512],[-1,-3],[-1,-1],[2,-3],[2,1],[3,1],[2,1],[2,-1],[8,-7],[-2,-4],[-4,3],[-6,-7],[-5,0],[1,-6],[3,-2],[6,0],[4,-2],[2,-4],[0,-4],[-24,-8],[-7,2],[-22,15],[-3,7],[1,11],[4,9],[5,6],[7,0],[3,-3],[4,-1],[3,1],[3,3],[2,-3],[2,-1],[3,-1],[3,1]],[[48315,84431],[-3,5],[-1,10],[3,38],[2,10],[4,5],[8,1],[0,4],[-2,3],[-1,3],[-2,6],[3,4],[2,0],[6,-4],[0,5],[-4,8],[3,-1],[2,-2],[1,-2],[2,-3],[-1,-10],[-5,-17],[-4,-20],[0,-19],[2,-4],[4,-10],[2,-9],[-5,-5],[-4,-2],[-5,-4],[-4,-2],[-5,4],[1,4],[0,2],[1,2]],[[48342,84533],[-5,2],[-1,7],[0,7],[4,8],[-2,1],[0,1],[0,2],[2,4],[2,2],[1,1],[2,-3],[-3,-23],[0,-9]],[[48019,84613],[4,-1],[6,0],[5,-3],[3,-8],[-3,-3],[-5,-10],[-1,-2],[-4,0],[-3,5],[-2,4],[-2,2],[-3,2],[-6,7],[-13,0],[0,-5],[3,0],[2,-1],[1,-3],[-2,-3],[0,-5],[8,1],[2,-3],[1,-8],[2,-5],[5,0],[9,3],[-6,-13],[-7,-5],[-16,-2],[-2,-1],[-4,-3],[-2,0],[-2,2],[-2,8],[-1,2],[-4,-1],[-12,-11],[0,-5],[20,0],[17,6],[5,-1],[5,-2],[2,-2],[1,-4],[-1,-4],[-6,-12],[-11,1],[-6,-2],[-5,-4],[-4,4],[-10,-1],[-5,2],[-2,2],[-1,1],[-4,7],[-1,3],[-1,4],[-2,2],[2,1],[6,4],[-9,1],[-17,13],[-9,2],[-2,-4],[-2,-2],[-2,-2],[-2,1],[-3,2],[-5,2],[-12,11],[0,4],[6,5],[4,10],[4,12],[5,10],[6,-4],[19,4],[0,-4],[-3,-1],[-5,-3],[5,-8],[8,10],[9,14],[6,8],[0,-4],[-1,-2],[-2,-3],[-2,-7],[15,-7],[6,-1],[0,4],[-2,0],[-4,4],[6,3],[13,11],[8,2],[3,-6],[1,-5],[-2,-5],[-4,-4],[4,-3],[8,5],[4,-3]],[[48176,84431],[-4,-4],[-26,10],[-6,5],[-6,7],[-2,8],[-2,16],[-12,10],[-3,13],[17,0],[-4,5],[-2,7],[-1,7],[2,7],[4,7],[3,1],[3,-2],[14,-25],[2,-5],[3,-4],[5,-4],[3,-1],[-1,7],[0,4],[1,1],[1,2],[1,1],[-4,7],[-1,1],[-1,2],[-2,4],[-1,3],[1,2],[2,1],[1,2],[2,3],[5,0],[8,-5],[-3,11],[-7,9],[-8,7],[-7,2],[4,6],[3,8],[0,9],[-3,5],[0,5],[6,-1],[4,-4],[3,-5],[6,-5],[1,-5],[0,-5],[1,-4],[3,-4],[2,-2],[13,-8],[3,-3],[3,-6],[4,-5],[3,1],[4,2],[5,1],[-6,-18],[2,-1],[6,9],[4,11],[3,-2],[21,-32],[0,4],[-1,2],[-1,4],[-1,2],[0,8],[-4,8],[-10,13],[-4,12],[1,6],[3,6],[4,12],[-3,-1],[-4,1],[-2,2],[-2,2],[1,8],[-2,5],[-2,3],[-1,4],[-1,7],[1,2],[2,1],[11,8],[2,3],[2,7],[2,7],[2,4],[4,-2],[2,1],[1,1],[0,2],[3,-6],[2,-4],[7,-6],[2,-4],[7,-13],[1,-3],[13,-12],[5,-8],[3,-6],[1,-5],[3,-41],[2,-18],[1,-8],[-1,-9],[-2,-13],[-1,-8],[-2,-5],[-7,-8],[-2,-6],[3,4],[5,4],[5,2],[4,-1],[2,-7],[-1,-5],[-3,-5],[-2,-4],[1,-9],[4,-7],[4,-4],[2,-4],[-2,-6],[-9,-6],[-4,-4],[24,4],[6,-3],[1,-4],[-3,-6],[-7,-4],[0,-4],[8,1],[6,4],[6,1],[6,-8],[2,-2],[4,-1],[7,1],[4,-2],[3,-5],[2,-6],[1,-3],[4,-1],[3,3],[2,4],[1,2],[12,0],[8,9],[7,3],[8,0],[5,-7],[21,0],[-5,-15],[0,-4],[2,-6],[-2,-6],[-2,-5],[-5,-9],[-10,-10],[-5,-2],[-11,-2],[-2,-4],[0,-13],[-3,-8],[-6,-5],[-5,-4],[-3,-3],[-2,-5],[-17,-26],[-4,-6],[-5,-4],[-15,-3],[-4,2],[-3,7],[1,11],[8,13],[-1,5],[0,4],[2,1],[0,2],[2,5],[0,3],[2,3],[5,11],[3,4],[3,4],[27,15],[0,4],[-8,-5],[-8,-2],[-23,-1],[-2,2],[0,3],[0,5],[-1,3],[-7,13],[-3,5],[-3,2],[1,-6],[1,-5],[3,-9],[-3,-9],[-1,-4],[-3,-3],[2,-5],[-4,-5],[-2,-6],[-3,-6],[-4,-3],[-3,5],[-2,11],[-1,12],[-1,8],[-2,4],[-1,1],[-2,-2],[-2,-3],[-2,4],[-2,3],[-3,1],[-3,1],[0,-4],[4,-5],[-4,-4],[-40,-12],[0,5],[4,3],[8,13],[0,4],[-5,0],[-5,-2],[-5,-3],[-4,-4],[-5,10],[-5,11],[3,2],[3,2],[2,3],[2,5],[-13,-2],[-5,2],[-13,20],[0,2],[-2,6],[-1,2],[-1,3],[-1,1],[-1,2],[-1,5],[13,10],[5,3],[6,-1],[5,-5],[5,-7],[6,-7],[7,-2],[-3,8],[-18,17],[-3,5],[-2,2],[-3,1],[-3,-1],[-6,-3],[-4,0],[4,4],[0,4],[-2,1],[-5,3],[2,1],[0,1],[1,2],[-2,2],[-2,3],[-1,5],[2,6],[-4,-1],[-6,-8],[-4,-3],[2,6],[0,5],[-1,5],[-3,5],[-2,-8],[-3,-2],[-3,-2],[-3,-5],[0,-6],[3,-11],[-1,-7]],[[47993,84646],[12,15],[5,1],[3,-6],[-5,-7],[-8,-4],[-7,1]],[[47605,84719],[4,-4],[10,-1],[5,-3],[-5,-7],[-6,-2],[-5,5],[-3,12]],[[48043,84760],[-1,-7],[-2,-3],[-3,-2],[-4,-1],[1,5],[0,1],[-1,1],[0,2],[12,13],[6,3],[5,-4],[0,-13],[-3,-2],[-10,7]],[[48090,84946],[3,0],[1,0],[0,4],[-3,2],[-3,6],[-1,7],[1,6],[6,-3],[9,-11],[2,2],[3,-3],[2,-4],[2,-4],[1,-6],[-23,0],[0,4]],[[48068,84666],[-6,-6],[-2,1],[-14,19],[-2,2],[-17,24],[-3,3],[-2,4],[-2,5],[0,4],[5,1],[3,-1],[2,-3],[2,-4],[1,-8],[23,24],[3,7],[7,2],[13,0],[-14,12],[0,4],[15,9],[8,2],[8,-2],[6,-5],[-3,3],[-3,3],[-2,2],[-1,2],[-1,2],[6,3],[2,1],[0,4],[-16,0],[-4,2],[-7,9],[-5,1],[-16,0],[-7,3],[-2,9],[-4,-3],[-2,0],[-13,11],[4,5],[4,5],[3,3],[6,0],[0,3],[-1,2],[-1,1],[0,2],[8,1],[9,4],[17,11],[-26,-8],[-8,0],[1,5],[2,3],[3,1],[3,-1],[0,4],[-7,0],[2,2],[2,2],[2,4],[1,4],[-12,-10],[-2,0],[-8,19],[-2,3],[1,7],[-1,3],[-3,1],[-1,4],[1,7],[3,5],[0,6],[2,1],[1,2],[1,2],[1,3],[-2,1],[-2,2],[-1,1],[0,4],[21,1],[5,3],[-7,4],[-3,3],[-1,7],[1,8],[1,4],[5,7],[5,-4],[10,-6],[3,-1],[2,2],[15,-8],[0,-4],[-8,1],[1,-8],[6,-10],[4,-5],[-1,-9],[3,-12],[4,-12],[4,-6],[0,6],[-1,3],[1,8],[-2,4],[-4,10],[-2,6],[3,2],[1,4],[0,4],[1,2],[13,4],[2,2],[5,2],[7,-4],[7,-8],[3,-8],[8,12],[-7,5],[-3,3],[-1,4],[-1,9],[-1,4],[-2,0],[-4,-1],[-2,1],[0,1],[-1,5],[-1,2],[-3,5],[-2,3],[-1,4],[2,1],[1,1],[1,2],[2,0],[-1,4],[-2,3],[-2,1],[-3,0],[23,23],[6,9],[3,-2],[3,2],[1,2],[3,2],[9,0],[7,3],[18,10],[2,3],[7,11],[50,42],[14,21],[8,8],[6,0],[6,-7],[5,-11],[3,-11],[2,-10],[5,-9],[1,-6],[-6,-3],[-2,-4],[-6,-24],[2,-4],[4,-3],[3,-1],[4,0],[0,-5],[-6,-3],[-12,-11],[-5,-6],[2,-5],[-1,-4],[-2,-2],[-3,-1],[-4,-2],[-2,-8],[-8,-4],[-1,-4],[1,-6],[-1,-4],[-2,-3],[-3,-1],[-8,0],[5,-10],[11,-4],[11,1],[7,4],[14,17],[4,2],[5,2],[3,0],[-3,-4],[0,-4],[2,0],[-1,-3],[-2,-4],[-1,-1],[1,-3],[1,-6],[-7,-4],[-2,-2],[-2,-2],[-3,-6],[-1,-2],[-5,-3],[-4,1],[-8,6],[-5,2],[-12,-2],[-5,2],[-8,6],[-4,0],[6,-21],[3,-7],[-2,-3],[-1,-2],[0,-3],[1,-4],[-5,-5],[-14,-3],[-9,-14],[-4,-3],[-3,1],[-4,3],[-3,0],[-7,-8],[-15,-4],[-4,0],[0,-4],[10,0],[36,10],[9,6],[4,0],[3,-3],[3,-6],[2,-7],[-1,-8],[1,-1],[3,-3],[-2,-4],[-2,-2],[-3,-1],[-2,-1],[3,-2],[3,-2],[3,0],[4,0],[-5,-7],[-4,-6],[-5,-6],[-6,-2],[-26,6],[-6,2],[-2,0],[-1,-4],[2,-3],[6,-2],[5,-5],[9,-4],[4,-6],[0,-4],[-2,-2],[-5,-10],[-2,-4],[-5,-4],[-4,1],[-3,2],[-5,1],[0,-4],[1,-1],[1,-2],[2,-1],[0,-4],[-7,-4],[-5,1],[-4,5],[-4,6],[-2,8],[-2,3],[-2,1],[-2,-3],[2,-6],[3,-7],[2,-4],[-2,-4],[-9,5],[-3,3],[-1,3],[-2,7],[-8,18],[-2,8],[0,8],[4,16],[8,9],[10,3],[10,1],[0,4],[-26,0],[0,-4],[-2,-7],[-6,-9],[-8,-9],[-5,-4],[3,-6],[6,-18],[3,-4],[4,-2],[3,-4],[3,-6],[3,-4],[-2,-1],[-1,-2],[-1,-1],[-2,0],[1,-4],[3,-2],[2,-1],[1,-1],[1,-4],[1,-13],[-23,7],[-9,6],[-3,-2],[-1,-3],[-2,-4],[-2,-4],[3,-2],[6,-3],[3,-2],[6,-14],[1,-3],[-1,-5],[-4,-3],[-5,-1],[-5,1],[0,-4],[2,0],[0,-4],[-6,1],[-13,11],[-2,-4],[2,-1],[2,-5],[2,-2],[-3,-6],[-3,-4],[-8,-6],[2,-1],[1,-2],[1,-1],[-5,-7],[-17,-14]],[[49179,85316],[13,-2],[6,-3],[0,-7],[-8,-6],[-1,-2],[-1,-6],[2,-4],[0,-3],[-3,-3],[3,-11],[1,-8],[-2,-6],[-6,-4],[-13,16],[0,4],[3,4],[-3,9],[-8,15],[3,-2],[4,-1],[3,1],[3,2],[0,5],[-19,0],[0,3],[11,6],[12,3]],[[49097,85287],[8,1],[17,9],[8,-1],[-7,-12],[-14,-5],[-26,1],[-1,2],[-6,16],[-1,5],[-3,3],[-3,3],[-2,3],[-6,12],[0,3],[1,3],[0,2],[-1,4],[-2,1],[-3,-4],[-2,1],[-2,2],[-3,0],[-2,0],[-1,6],[4,12],[1,2],[6,7],[12,5],[4,0],[4,-3],[9,-10],[6,-3],[6,-3],[15,-25],[-4,-4],[0,-4],[3,-1],[2,-2],[4,-6],[0,-3],[-5,-1],[-7,-3],[-6,-5],[-3,-8]],[[49242,85393],[4,-2],[1,-5],[1,-7],[0,-9],[-3,-4],[-5,-3],[-10,-3],[-4,-3],[-6,-13],[-5,-4],[-4,1],[-21,10],[-3,3],[-3,5],[-10,24],[-3,4],[-3,-1],[-4,-6],[-4,-5],[-6,2],[-2,-3],[-3,0],[-3,2],[-3,1],[4,-9],[-9,1],[-3,-2],[-2,-7],[-6,4],[-17,-3],[-7,7],[-3,13],[1,13],[3,11],[5,8],[0,4],[-2,4],[-2,4],[-1,4],[-1,4],[-3,-2],[-2,-3],[0,-3],[1,-4],[0,-4],[-2,2],[-3,1],[-2,-1],[-2,-2],[2,-2],[1,-4],[0,-5],[0,-1],[2,-8],[-3,-5],[-6,-7],[0,-4],[-10,4],[-8,15],[-4,20],[5,18],[2,4],[-2,26],[7,18],[13,9],[13,3],[13,-1],[8,-2],[9,-11],[4,0],[4,2],[3,0],[3,-2],[4,-7],[3,-3],[-4,-3],[-2,-1],[5,-6],[16,-10],[-2,-1],[-1,-1],[-1,-2],[1,-2],[1,-1],[2,-1],[-17,-8],[-2,2],[-3,-10],[-5,-9],[-6,-6],[-5,-2],[4,-4],[5,-2],[11,-2],[4,4],[4,7],[5,5],[10,-11],[4,1],[4,4],[4,2],[4,-3],[3,-6],[3,-3],[5,4],[-1,-2],[0,-7],[-1,-3],[6,-2],[4,4],[5,4],[5,2],[6,1],[3,-1],[2,-4],[-2,-6],[-12,-9],[-4,-5],[3,-8],[4,-5],[5,-1],[6,1],[-4,13],[-2,4],[5,0],[9,7],[5,1]],[[49293,85482],[-1,-7],[1,-4],[8,-5],[-5,-6],[-12,-2],[-6,-4],[-1,13],[-4,7],[-5,1],[-5,-5],[1,-9],[-6,-2],[-5,4],[6,11],[4,3],[5,0],[3,2],[1,7],[-1,4],[-9,10],[-3,2],[11,5],[4,-1],[0,-4],[-1,-2],[-1,-2],[8,0],[3,0],[3,-3],[-4,1],[-3,-4],[0,-5],[3,-5],[3,-1],[4,1],[6,4],[0,-3],[0,-1],[-1,0],[-1,0]],[[49165,85486],[-9,1],[-8,2],[-7,6],[-7,9],[-1,11],[5,8],[8,4],[7,0],[0,-1],[0,-3],[1,-2],[2,-2],[2,-1],[2,0],[12,3],[3,0],[4,-2],[0,-3],[0,-1],[-1,0],[-1,-1],[-4,-7],[0,-9],[0,-8],[-8,-4]],[[49213,85527],[4,-3],[3,0],[2,2],[4,1],[0,2],[-2,10],[1,4],[-1,8],[1,6],[3,3],[5,0],[0,-5],[-3,0],[0,-4],[4,1],[3,-1],[3,-2],[2,-6],[-2,-5],[-6,-10],[-1,-3],[0,-10],[0,-7],[2,-5],[5,-1],[0,-4],[-8,-3],[-5,-1],[-2,2],[-1,8],[-3,6],[-3,3],[-5,1],[0,13]],[[49320,85584],[6,10],[4,5],[1,-1],[3,-13],[1,-6],[-13,0],[-6,-3],[-2,-7],[-3,-3],[-5,-14],[-2,-3],[-3,-2],[0,13],[-5,-1],[-12,-16],[1,6],[1,2],[0,4],[-6,-3],[-2,0],[-2,3],[-10,-16],[-6,-6],[-5,2],[0,-8],[-2,-4],[-1,1],[-1,7],[2,8],[2,3],[2,2],[4,3],[2,4],[5,9],[2,3],[4,2],[3,0],[2,2],[1,8],[-2,2],[-4,7],[7,0],[11,7],[7,1],[0,-4],[-4,-3],[-4,-4],[-7,-10],[2,-1],[1,0],[1,-3],[3,4],[9,2],[7,9],[4,1],[5,-1],[4,2]],[[49153,85600],[-3,2],[-2,-1],[-2,2],[-1,5],[6,0],[8,-2],[5,2],[8,13],[4,3],[5,-4],[0,-3],[-1,0],[-1,-1],[-3,-4],[0,-3],[1,-5],[-6,-1],[-1,1],[0,-4],[21,-8],[4,-2],[5,-16],[2,-3],[3,-2],[3,-1],[3,-1],[2,-4],[0,-3],[-5,0],[-4,-3],[-6,-10],[0,5],[1,4],[1,4],[2,3],[-14,15],[-7,5],[-8,1],[0,-5],[2,-2],[2,-6],[-4,4],[-2,-5],[-2,-2],[-2,1],[-3,2],[-2,2],[-1,3],[-4,13],[-1,3],[-1,3],[-2,5]],[[49541,85724],[2,9],[5,6],[6,3],[6,0],[0,-3],[0,-1],[-1,0],[-1,0],[-4,-1],[-1,-3],[-1,-4],[4,0],[0,-5],[-5,-3],[-5,-6],[-4,-1],[-1,9]],[[49782,86367],[4,-1],[3,-4],[1,-5],[-2,-6],[-7,-7],[-7,2],[-8,5],[-8,0],[0,-5],[1,-2],[1,-1],[1,-2],[1,-2],[-8,1],[-6,10],[-9,20],[0,5],[32,0],[3,-2],[0,-4],[0,-4],[1,-2],[2,0],[2,1],[2,2],[1,1]],[[49695,86249],[2,10],[5,7],[5,3],[5,0],[-4,-10],[-19,-25],[-2,-4],[0,-5],[2,-1],[2,3],[3,6],[1,1],[4,3],[4,0],[1,-6],[0,-3],[0,-7],[-2,-6],[-2,-2],[-22,-3],[-4,-2],[6,-6],[14,-3],[7,-6],[-13,-15],[-4,-2],[-1,-1],[0,-3],[1,-4],[0,-2],[2,-1],[2,3],[1,0],[2,-2],[4,-1],[2,-1],[-11,-12],[-5,-2],[-5,1],[-3,8],[-2,5],[-3,0],[-2,-3],[1,-4],[1,-3],[2,-3],[0,-3],[-2,0],[-3,-1],[-4,-3],[0,-4],[11,0],[-2,-4],[-1,-4],[-3,-8],[5,8],[3,2],[4,2],[-8,-20],[-2,-9],[5,7],[6,3],[3,-3],[-4,-11],[9,-8],[0,-4],[-7,0],[0,-4],[2,0],[0,-4],[-5,3],[-3,-3],[-3,-4],[-5,0],[4,-4],[-1,-5],[-1,-3],[-3,-1],[-2,0],[0,-4],[2,0],[5,-4],[-4,-6],[2,-8],[5,-6],[3,0],[-2,-8],[-4,-5],[-5,-1],[-4,2],[1,-8],[6,-17],[-2,-7],[-4,1],[-9,6],[1,-12],[0,-13],[-3,-11],[-4,-8],[-1,3],[-1,1],[3,-7],[1,-6],[-1,-7],[-3,-8],[3,-5],[1,-5],[-1,-4],[-3,-3],[-1,3],[-4,9],[-2,-6],[-3,1],[0,4],[3,6],[0,4],[-4,4],[-9,-2],[-4,2],[-4,7],[5,8],[-1,9],[2,5],[3,3],[3,1],[3,0],[0,3],[-5,6],[-2,2],[0,4],[7,0],[-2,11],[3,9],[5,10],[4,28],[4,12],[3,12],[-2,16],[-1,2],[-2,-1],[-1,1],[-2,6],[1,2],[0,3],[5,12],[-3,0],[-4,-3],[-1,-2],[-3,0],[-1,3],[1,4],[4,16],[2,6],[3,5],[2,3],[0,4],[-5,0],[-4,-6],[-8,-18],[-4,13],[-4,10],[-5,6],[-9,3],[0,-5],[5,-2],[4,-6],[4,-7],[4,-8],[-2,-9],[-6,6],[-2,2],[-4,1],[0,-11],[-2,-8],[-2,-2],[-2,8],[-3,-3],[-1,-6],[-1,-7],[-2,-4],[-3,0],[-11,8],[0,2],[-6,7],[-1,-1],[-2,6],[0,3],[2,4],[3,3],[9,2],[3,2],[-3,3],[-7,13],[-1,-5],[-2,-8],[-3,-6],[-3,-1],[-2,6],[-2,6],[-4,-2],[-8,-6],[-6,-1],[-3,1],[-1,2],[-1,3],[0,3],[-2,1],[-6,1],[-2,3],[-3,16],[-3,11],[1,4],[4,5],[4,4],[5,3],[6,2],[4,-1],[4,-4],[3,-5],[4,-3],[4,0],[-2,8],[10,-4],[0,4],[-2,0],[0,4],[13,2],[4,-5],[0,-17],[2,0],[3,3],[1,1],[-2,3],[-1,7],[-1,2],[6,0],[-1,3],[-1,6],[6,3],[8,-3],[6,-8],[3,-13],[4,7],[3,5],[-7,9],[5,15],[2,-2],[2,-1],[4,0],[-3,6],[5,2],[13,0],[-6,5],[-8,2],[-7,4],[-2,13],[-5,-7],[-3,-2],[-3,1],[-3,4],[-1,6],[1,6],[3,4],[0,4],[-9,0],[-3,1],[-3,4],[1,7],[-1,10],[-2,19],[-4,-11],[-3,-7],[-3,-3],[-4,2],[-1,5],[2,6],[3,4],[-5,0],[-5,-2],[-4,1],[-5,5],[-2,-7],[-4,-2],[-10,1],[-1,3],[2,7],[2,7],[3,3],[7,-1],[1,1],[2,4],[0,4],[0,4],[0,4],[3,6],[3,4],[4,1],[4,-7],[3,-12],[9,-10],[11,-4],[9,6],[-3,3],[-4,1],[-7,0],[-2,2],[-3,5],[-3,4],[-5,1],[3,4],[4,10],[1,3],[3,0],[9,7],[-3,4],[-1,1],[2,4],[1,3],[-1,2],[-1,3],[7,3],[8,-1],[7,-4],[7,-7],[1,3],[1,2],[-5,5],[1,6],[6,13],[3,-11],[0,-5],[-1,-4],[1,-5],[-1,-4],[-1,-2],[-3,-1],[2,-14],[-2,-6],[-4,-5],[-4,-8],[6,0],[-1,-3],[-2,-1],[-3,0],[2,-1],[1,-2],[1,-1],[2,0],[-6,-20],[3,1],[3,1],[2,2],[2,4],[2,-4],[-4,-9],[-1,-4],[1,-3],[0,-5],[-5,-2],[-7,-21],[-5,-5],[0,-4],[3,-1],[4,1],[3,1],[3,3],[0,11],[7,6],[18,3],[-13,11],[-4,6],[3,4],[3,3],[3,-1],[0,-10],[3,3],[6,11],[1,4],[2,1],[5,-3],[4,-6],[-2,-6],[4,-2],[3,-3],[2,-5],[1,-7],[-2,-2],[0,-2],[4,-3],[-4,-3],[-6,3],[-3,-3],[-2,-4],[-3,-3],[-3,-2],[1,-1],[4,1],[6,3],[-1,-1],[-3,-3],[0,-4],[10,6],[3,-3],[1,-11],[2,0],[1,6],[1,0],[1,-1],[2,3],[1,3],[1,5],[2,4],[2,5],[1,-2],[0,-2],[1,-5]],[[49725,86416],[-3,-7],[1,-6],[4,-12],[-1,-6],[-2,-6],[-9,11],[-5,4],[-6,1],[4,-4],[4,-8],[6,-16],[-4,-3],[-4,-1],[-4,0],[-3,4],[1,-7],[3,-4],[5,-1],[4,-1],[-1,-2],[-1,-1],[5,-6],[0,-8],[-4,-5],[-5,-2],[4,-10],[1,-5],[1,-7],[-1,-8],[-2,-1],[-7,3],[-7,0],[-3,1],[-1,5],[-1,0],[-2,-3],[0,-3],[3,-4],[0,-4],[-10,2],[-6,8],[-4,13],[-3,55],[2,13],[9,2],[0,-4],[0,-7],[3,-7],[4,-4],[3,2],[-1,3],[-4,15],[-1,8],[1,4],[3,9],[-1,2],[-1,2],[-1,5],[1,6],[1,5],[3,6],[3,6],[4,0],[3,-10],[3,7],[5,2],[13,-1],[0,-8],[-1,-3],[-2,-1],[0,-5],[2,0],[1,-2],[1,-1]],[[49748,86408],[-8,-1],[-4,1],[-5,3],[1,6],[1,6],[-1,5],[-1,4],[5,-4],[1,5],[0,8],[-2,7],[5,2],[2,8],[0,9],[-3,5],[0,4],[4,3],[5,6],[4,6],[0,6],[3,6],[3,0],[3,-4],[1,-8],[-1,-7],[-3,-4],[-3,-3],[-3,-5],[1,-2],[3,2],[4,3],[3,3],[5,22],[3,5],[2,-3],[2,-1],[4,0],[3,-2],[3,-3],[2,-5],[1,-7],[-2,0],[-5,-4],[5,-3],[2,-1],[-4,-5],[-6,-3],[-3,-4],[2,-7],[0,-5],[-6,0],[2,-1],[2,-1],[2,-2],[0,-4],[-12,-13],[-2,-3],[2,-7],[4,-7],[2,-6],[-4,-5],[-3,0],[-2,1],[-2,2],[-2,2],[-6,0],[-4,0]],[[48250,80042],[2,-2],[2,-5],[-1,-6],[-3,-2],[-3,2],[0,8],[3,5]],[[48240,80057],[2,-2],[0,-5],[-2,-4],[-2,2],[-2,6],[0,5],[2,0],[1,-2],[1,0]],[[48704,80781],[0,-4],[0,-7],[-2,-3],[-2,5],[0,8],[1,7],[1,1],[1,-4],[1,-3]],[[46197,84579],[-1,0],[0,1],[1,0],[0,-1]],[[49634,86058],[2,0],[1,-4],[-1,-6],[-3,-6],[-2,-9],[-2,-5],[-1,1],[0,4],[1,6],[0,7],[0,2],[-1,-4],[0,-4],[-5,-7],[-3,-4],[-1,3],[4,5],[1,7],[1,8],[3,6],[-1,4],[-2,2],[1,3],[5,2],[2,2],[1,0],[0,-5],[-2,-8],[0,-3],[2,3]],[[49429,86095],[1,-5],[1,-11],[-5,-7],[-6,4],[-5,5],[-2,3],[0,5],[2,2],[5,4],[6,1],[3,-1]],[[49704,86100],[4,3],[0,-4],[-1,-9],[-2,-6],[-2,-5],[-2,-13],[-3,-1],[-8,6],[-2,4],[1,20],[-5,7],[0,6],[6,1],[5,-2],[2,1],[1,5],[2,1],[1,-3],[0,-6],[1,-5],[2,0]],[[49744,86231],[2,1],[0,-3],[-1,-3],[-4,-5],[-5,-8],[-8,-9],[-10,-4],[-6,4],[2,3],[1,2],[1,3],[1,5],[3,4],[3,2],[3,0],[3,2],[2,3],[10,1],[2,1],[1,1]],[[56365,74949],[55,-13],[12,2],[6,3],[3,3],[3,4],[1,5],[1,11],[1,5],[4,6],[6,6],[6,5],[5,0],[5,-6],[3,-6],[3,-5],[6,1],[5,5],[8,10],[5,2],[28,-1],[18,-15],[9,-1],[4,4],[1,1],[7,11],[5,3],[9,0],[9,-3],[5,2],[6,17],[4,3],[5,-1],[6,1],[6,3],[4,3],[8,11],[2,0],[13,-15],[4,0],[5,7],[1,2],[2,1],[1,1],[1,4],[6,-6],[4,-1],[3,2],[2,5],[0,5],[-1,13],[-1,19],[8,6],[11,-2],[9,-4],[2,-2],[1,-4],[1,-2],[2,-1],[1,3],[1,9],[2,4],[4,5],[0,1],[5,5],[5,3],[5,1],[4,-8],[6,-6],[0,-5],[-1,-5],[1,-3],[2,-1],[2,1],[2,1],[2,1],[8,-2],[2,1],[10,4],[4,1],[6,-1],[4,1],[6,13],[6,2],[8,5],[6,-8],[3,-16],[1,-16],[1,-5],[1,-3],[1,-2],[2,-4],[1,-1],[2,-3],[2,-2],[0,-3],[-1,-6],[0,-3],[5,-6],[3,-2],[10,1],[-2,-6],[7,0],[5,-1],[5,-4],[6,-8],[9,-20],[6,-8],[6,-1],[2,9],[-1,10],[1,8],[11,1],[6,4],[3,0],[3,0],[9,-9],[45,-31],[5,2],[1,0],[1,-2],[2,-6],[1,-2],[11,-7],[1,-1],[5,-8],[12,-26],[5,-5],[7,-2],[6,1],[47,25],[7,2],[3,-1],[2,-1],[2,0],[3,1],[2,5],[2,7],[2,5],[4,2],[25,-2],[2,-2],[6,-5],[3,-2],[3,1],[2,2],[2,3],[3,4],[3,2],[10,1],[10,12],[3,1],[6,-3],[9,-15],[5,-3],[4,1],[7,6],[4,0],[3,-2],[3,1],[7,5],[7,8],[4,3],[23,9],[3,-1],[1,1],[3,8],[5,16],[3,14],[1,4],[2,1],[1,1],[1,5],[-1,4],[-4,5],[-1,3],[-3,11],[1,4],[3,5],[1,7],[0,7],[0,7],[-1,8],[-2,2],[-4,2],[-2,2],[0,4],[0,9],[0,5],[-3,15],[-1,5],[-3,4],[-3,3],[-4,1],[-4,3],[-2,5],[-1,3],[-1,7],[-1,8],[0,9],[2,7],[1,3],[2,1],[2,0],[2,2],[8,10],[7,3],[15,1],[6,9],[4,-1],[3,-2],[7,-13],[4,-5],[6,-3],[10,2]],[[57234,74596],[1,2],[-3,9],[-1,12],[-2,11],[-6,4],[0,4],[4,0],[5,1],[5,3],[1,2],[-1,6],[-5,1],[-4,-2],[-3,-2],[-1,4],[-1,4],[-2,0],[0,-4],[1,-4],[1,-5],[-2,0],[-4,8],[-9,9],[-9,4],[-6,-4],[-5,2],[-15,0],[-3,4],[-3,0],[-20,-2],[-11,3],[-12,7],[-12,4],[-11,-6],[-2,1],[-6,2],[-6,5],[-4,6],[-4,5],[-14,4],[-5,1],[-10,8],[-11,13],[-12,6],[-9,-15],[-2,0],[0,3],[-22,7],[-6,5],[-3,4],[-3,1],[-1,1],[1,8],[1,5],[2,4],[3,2],[3,1],[-5,6],[-4,2],[-22,0],[-5,-2],[0,-10],[-6,-8],[-3,-3],[-4,-1],[2,-11],[-3,-5],[-5,-1],[-5,1],[-4,-2],[-9,-9],[-4,-2],[-8,-9],[-8,-18],[-9,-12],[-10,7],[-11,-8],[-5,0],[-5,4],[1,1],[0,1],[1,2],[-10,8],[-6,-9],[-1,-3],[-2,0],[-3,9],[-3,8],[-3,8],[1,7],[-4,4],[-3,4],[-2,6],[0,9],[-14,4],[-4,2],[-2,-4],[-3,0],[-4,-2],[-2,-6],[-6,4],[-7,-2],[-7,-5],[-6,-13],[-12,-17],[-4,-4],[3,-4],[2,-6],[0,-4],[-6,-3],[-1,-2],[0,-3],[1,-4],[2,-2],[4,1],[3,-1],[-36,-35],[-28,-27],[-11,-4],[-12,2],[-12,5],[-31,27],[-5,2],[-4,1],[-9,-2],[-15,-10],[-6,-6],[-6,-9],[-4,-10],[-2,-15],[3,-13],[5,-9],[6,-3],[4,-4],[5,-11],[4,-13],[2,-11],[1,0],[10,-14],[4,-2],[4,-1],[4,1],[3,2],[2,-6],[5,-9],[1,-5],[-3,-3],[-19,-4],[-4,-7],[-1,-11],[2,-16],[11,-28],[3,-4],[9,-7],[2,-3],[10,-4],[3,-2],[3,2],[8,2],[2,4],[0,5],[-1,8],[-4,11],[2,4],[-2,4],[5,1],[5,-10],[7,-23],[3,-7],[6,-9],[6,-5],[6,5],[3,-3],[8,-5],[3,-1],[2,-2],[3,-14],[2,-4],[8,0],[9,-17],[15,-36],[18,-29],[2,-15],[-9,-12],[-11,-5],[-6,2],[-2,9],[-1,10],[-4,6],[-5,5],[-5,5],[-7,18],[-5,19],[-7,15],[-11,9],[-23,7],[-8,5],[-7,8],[-10,17],[-6,8],[-3,2],[-11,-2],[-10,4],[-4,0],[-14,-12],[-7,-2],[-8,6],[-1,-3],[-1,-6],[-2,1],[-4,-11],[-2,-11],[1,-9],[4,-19],[1,-4],[2,-3],[10,-11],[2,-9],[4,-8],[4,-4],[1,1],[19,-14],[4,2],[4,-3],[5,-6],[4,-7],[4,-5],[11,-6],[3,-7],[-1,-6],[-3,-5],[0,-6],[1,-3],[5,-6],[1,-5],[0,-5],[-2,-1],[-2,0],[-1,-2],[0,-7],[2,-3],[3,1],[2,3],[0,-6],[0,-4],[1,-3],[1,-3],[-7,-10],[-1,-6],[3,-5],[0,-4],[-6,0],[-2,-4],[1,-3],[5,-1],[0,-4],[-15,-1],[-5,2],[1,7],[0,4],[-2,0],[-3,-3],[-1,1],[-1,4],[1,6],[-10,10],[-2,1],[-1,6],[-3,5],[-4,1],[-2,-3],[0,-3],[1,-5],[-10,28],[-2,7],[2,10],[1,6],[-2,2],[-2,2],[-2,5],[-1,6],[-1,4],[-25,54],[-9,11],[-6,2],[-23,3],[-15,15],[-13,6],[-11,-1],[-9,-10],[-7,-20],[-1,-11],[2,-10],[3,-10],[1,-11],[1,-4],[2,-1],[6,-1],[3,-1],[1,-3],[3,-8],[15,-35],[8,-15],[29,-26],[19,-7],[0,-4],[0,-5],[1,-6],[3,-7],[3,-5],[4,-3],[6,-1],[4,-2],[-2,-4],[-5,-5],[-5,-1],[-24,6],[-41,28],[-7,2],[-20,-5],[-4,-3],[2,7],[4,11],[0,7],[-1,5],[-4,9],[-1,4],[-2,14],[-5,10],[-5,9],[-3,9],[4,19],[1,23],[-1,21],[-6,15],[-11,10],[-6,4],[-10,4],[-5,5],[-5,3],[-4,-2],[-15,18],[-3,0],[-3,4],[-6,3],[-7,4],[-5,15],[-13,17],[-5,4],[-5,1],[-11,-1],[3,9],[-2,10],[-9,17],[1,1],[1,0],[1,0],[-1,3],[-10,19],[-2,10],[6,4],[18,1],[9,4],[4,5],[2,5],[3,4],[3,7],[-2,10],[-7,7],[-2,1],[-1,2],[1,4],[1,7],[-4,15],[-7,8],[-7,2],[-8,-5],[2,-11],[-1,-9],[-2,-7],[-3,-6],[-4,-3],[-3,-3],[0,-2],[-5,0],[-3,2],[-2,3],[-6,-7],[-3,-7],[-1,-9],[2,-10],[-2,0],[-2,4],[0,-9],[-2,0],[0,5],[-2,0],[-1,-7],[-2,0],[-3,4],[-3,3],[0,3],[-4,-1],[-5,-6],[0,-7],[5,-5],[-2,0],[-2,-2],[-1,-3],[-1,-6],[-1,-3],[-2,1],[-4,5],[-7,-1],[-3,-2],[-4,-5],[4,-6],[3,-9],[2,-9],[-1,-9],[3,-5],[3,-7],[3,-6],[5,-2],[1,-6],[-4,-14],[-7,-21],[-8,-41],[0,-6],[-11,-38],[-1,-14],[2,-9],[3,-10],[2,-14],[-1,-13],[0,-7],[4,-2],[1,-3],[3,-17],[15,-20],[2,-3],[2,-2],[6,-4],[2,-2],[1,-2],[2,0],[1,-2],[-1,-11],[1,-2],[0,-1],[3,-21],[2,-8],[3,-6],[11,-15],[6,-5],[4,-7],[7,-15],[3,-8],[2,-10],[2,-12],[0,-13],[2,-9],[8,-34],[7,-35],[4,-11],[3,-6],[15,-16],[14,-10],[11,-13],[0,-2],[2,-2],[3,-18],[3,-8],[24,-44],[3,-13],[14,-21],[6,-32],[13,-45],[1,-8],[-3,-3],[-9,-13],[-5,-3],[-11,-3],[-5,-3],[-4,-3],[1,-1],[1,-2],[1,-1],[2,0],[0,-4],[-2,-1],[-2,-2],[-2,-3],[-1,-2],[-4,2],[-6,-1],[-6,-3],[-4,-4],[-5,-4],[-6,1],[-11,5],[2,8],[4,8],[-2,8],[4,5],[9,7],[0,-7],[-4,-25],[20,18],[3,7],[-2,5],[2,2],[2,0],[2,-2],[1,-2],[2,3],[2,7],[1,6],[-2,7],[-7,20],[-3,6],[1,10],[-3,10],[-5,10],[-4,7],[-6,6],[-4,3],[-22,3],[0,2],[0,3],[-1,3],[-1,3],[-3,10],[-1,3],[-2,0],[-8,0],[-6,2],[-1,0],[1,-6],[0,-4],[-2,-5],[-1,-7],[0,-7],[3,-5],[-6,-3],[-11,-2],[-10,-4],[-5,-10],[0,-23],[0,-7],[8,-37],[1,0],[3,7],[3,5],[-1,7],[2,0],[2,-4],[1,-7],[2,4],[3,-9],[1,-12],[1,-11],[5,-8],[0,3],[1,0],[0,1],[-1,4],[0,4],[7,-7],[3,-11],[2,-10],[5,-9],[-2,-7],[0,-2],[2,-3],[-9,-8],[-2,-6],[1,-10],[15,15],[7,4],[9,1],[0,-3],[-3,-5],[-9,-8],[-2,-4],[-1,-4],[-2,-12],[-2,-4],[-2,-5],[-1,-2],[-1,-2],[-2,-3],[-2,-1],[-4,2],[-2,-1],[-2,-3],[-1,-1],[-2,0],[1,-7],[0,-2],[-4,0],[-5,-6],[-3,-2],[-3,2],[-4,2],[-4,2],[-3,-2],[-2,-4],[-1,-13],[-2,-3],[-7,-1],[-2,-2],[-1,-5],[-4,0],[-7,-3],[-6,-1],[-3,6],[-1,5],[-3,-2],[-5,-5],[-2,1],[-5,6],[-2,1],[0,1],[-10,12],[-2,0],[-5,-7],[-2,-2],[-2,-3],[-3,-1],[-3,0],[-2,-2],[-2,-2],[-2,-4],[-1,1],[-3,3],[0,-16],[14,4],[0,-4],[-6,-6],[3,-7],[5,-2],[3,7],[2,0],[-2,-9],[4,1],[4,2],[3,0],[3,-3],[13,12],[4,1],[6,-19],[6,-12],[3,-3],[3,-5],[3,-2],[2,0],[5,3],[3,1],[4,-2],[4,-4],[4,-7],[2,-7],[6,10],[3,2],[5,0],[3,-2],[5,-8],[4,-2],[16,0],[7,-5],[5,-11],[8,-47],[4,-6],[6,-1],[2,2],[4,5],[3,3],[3,-1],[4,1],[4,7],[-6,7],[-2,1],[5,4],[5,-2],[9,-10],[5,-2],[9,-2],[5,-4],[4,-5],[3,-8],[2,-8],[-1,-7],[-3,-6],[-5,-3],[-3,-6],[-2,-14],[2,7],[4,1],[3,-4],[3,-6],[3,-4],[7,-3],[4,-3],[0,-4],[-2,-2],[-6,0],[-3,-2],[-3,-4],[0,-4],[1,-3],[5,-1],[19,1],[28,-8],[3,5],[3,8],[7,-6],[9,-17],[-5,-6],[-2,-1],[0,-5],[3,-1],[3,-3],[1,-3],[-2,-5],[0,-4],[9,-7],[13,-34],[11,-12],[4,0],[16,4],[6,-6],[3,-1],[27,-20],[5,-1],[5,-3],[5,-7],[7,-15],[13,-18],[2,-4],[1,-3],[5,-4],[1,-5],[0,-5],[-1,-4],[0,-4],[3,-5],[-2,-2],[-2,-4],[-1,-7],[0,-7],[-2,8],[-4,-1],[-14,-13],[0,-12],[4,-25],[2,-11],[2,-8],[3,-7],[1,-5],[-1,-5],[-3,-13],[-2,-6],[0,-5],[1,-6],[1,-6],[-2,-7],[3,0],[4,-2],[2,-4],[1,-6],[-1,-3],[-9,-5],[2,-4],[3,-3],[3,-2],[4,1],[-2,-5],[2,0],[4,-3],[-2,-6],[0,-4],[0,-3],[2,-4],[-2,-1],[-1,-2],[-1,-2],[0,-3],[6,-7],[3,-6],[0,-9],[0,-13],[-1,-7],[-6,-11],[3,-4],[0,-4],[-3,0],[0,-4],[1,0],[1,-2],[-1,-3],[1,-3],[-1,1],[0,2],[-1,-3],[3,-6],[-2,-7],[-5,-7],[-4,-9],[-3,4],[-11,8],[-4,1],[-5,3],[-2,7],[0,22],[-2,0],[-3,-3],[-3,11],[-3,25],[-1,-2],[-3,-3],[-2,10],[-4,10],[-5,6],[-4,-1],[-1,2],[-1,1],[-1,2],[-1,3],[-2,0],[-1,-13],[-3,0],[-3,3],[-2,-6],[-1,4],[0,3],[-1,1],[-2,0],[1,7],[-1,6],[-6,11],[-1,12],[-11,29],[-1,8],[-5,4],[-4,-2],[-5,-4],[-5,-2],[0,3],[0,1],[2,2],[1,2],[1,4],[-5,-3],[-2,3],[-2,5],[-4,3],[-4,0],[-3,1],[-3,3],[-2,4],[10,16],[2,8],[-2,11],[-2,4],[-2,1],[-2,-2],[-2,-1],[-11,0],[-3,-1],[-1,-3],[-2,-3],[-1,-1],[-7,-1],[-3,-1],[-3,-2],[-10,-17],[-5,-3],[10,-5],[-6,-3],[-22,3],[-29,-4],[-10,-9],[-8,-10],[-5,-7],[-14,-11],[-11,9],[-3,-2],[-2,0],[-2,1],[-3,1],[-1,-4],[0,-6],[-1,-7],[-2,-3],[-2,-6],[1,-11],[4,-9],[5,1],[5,-4],[7,-1],[6,1],[5,4],[9,-14],[5,-7],[5,-3],[-1,-6],[-1,-6],[1,-5],[1,-4],[-4,-1],[-5,-5],[-6,-2],[-1,-2],[0,-4],[-1,-6],[7,-9],[4,-3],[4,0],[-2,-14],[-1,-9],[1,-9],[2,-13],[-4,0],[1,-12],[1,-6],[6,-4],[11,-14],[2,4],[11,-17],[1,-1],[1,0],[3,-2],[5,-8],[3,-3],[4,-1],[6,7],[0,16],[-5,15],[-8,6],[0,4],[5,7],[5,3],[14,2],[3,-7],[-1,-15],[-4,-17],[-5,-9],[3,-5],[3,-4],[3,-2],[5,-1],[0,-5],[-6,-3],[-2,0],[0,-4],[2,0],[2,-2],[8,-2],[6,-8],[5,-3],[13,-18],[-1,-3],[-1,-1],[1,-1],[1,-3],[0,-4],[-5,-5],[-17,-10],[-1,0],[-33,-3],[-5,2],[1,-3],[0,-1],[0,-2],[1,-3],[-10,3],[-4,-1],[1,-6],[-10,-4],[0,-5],[2,-3],[3,-1],[3,1],[-2,-4],[0,-4],[2,0],[6,-4],[-5,-4],[-5,-1],[-10,1],[-6,-2],[0,-5],[2,-7],[3,-10],[-6,-2],[-4,0],[-3,2],[-4,4],[0,4],[5,0],[0,4],[-3,2],[-4,-2],[-3,1],[-3,7],[6,-4],[-2,5],[-2,4],[-6,7],[-2,-4],[-3,0],[-2,3],[0,1],[-1,19],[0,7],[4,-4],[3,-3],[3,5],[2,8],[0,9],[6,-6],[2,-2],[0,3],[-2,6],[0,3],[0,6],[-1,3],[-2,2],[-2,1],[-2,2],[-4,3],[-9,-4],[-5,3],[4,4],[-4,12],[-7,-7],[-3,-4],[-1,-5],[-4,21],[-3,8],[-5,8],[-1,0],[-3,-1],[-2,1],[-1,2],[0,2],[0,3],[0,1],[-4,3],[-3,0],[-3,0],[4,-1],[1,-2],[1,-5],[-6,4],[-5,-1],[-4,-4],[-4,-6],[-2,3],[-8,9],[1,2],[1,6],[-3,2],[-4,5],[-1,5],[0,4],[-2,7],[-3,5],[-6,-4],[-5,-5],[-4,-9],[-1,-15],[1,-3],[3,-7],[0,-3],[0,-4],[-1,-7],[-1,-4],[2,-6],[1,-4],[2,-2],[1,-4],[0,-3],[0,-11],[1,-2],[3,-5],[0,-6],[-2,-8],[0,-6],[15,-29],[2,-3],[-2,-8],[4,0],[0,-4],[-2,0],[0,-4],[3,-5],[7,-20],[2,-11],[9,-29],[1,-2],[2,-6],[2,-6],[-2,-3],[-1,-3],[-1,-8],[-1,-15],[2,-8],[6,-2],[5,2],[4,2],[0,-3],[1,-1],[1,-2],[0,-2],[-2,-2],[1,-1],[1,-1],[-2,-5],[5,-3],[2,-4],[0,-3],[-5,3],[3,-11],[7,-19],[0,-7],[2,-10],[2,-10],[-2,0],[-3,0],[-1,0],[0,-3],[3,-6],[1,-3],[0,2],[1,0],[1,2],[0,-6],[1,-5],[0,-5],[-1,-5],[2,-7],[6,-24],[2,-5],[-1,-5],[4,-10],[7,-14],[2,-6],[1,-7],[-1,-5],[-3,-2],[0,-3],[3,-1],[2,-1],[4,-3],[-1,-4],[-3,-5],[-1,-3],[-1,-3],[0,-2],[0,-2],[1,-3],[-2,-7],[-4,1],[-4,4],[-2,4],[-3,-7],[-3,-6],[-2,-6],[4,-5],[0,-2],[-1,-5],[-1,-1],[8,0],[-7,-11],[0,-15],[4,-16],[6,-15],[3,-11],[1,-1],[5,-4],[4,-5],[5,-4],[1,-3],[1,-2],[1,-3],[2,0],[-2,-3],[-1,-1],[0,-4],[1,-3],[0,-3],[-1,-3],[-2,-3],[5,-12],[8,-9],[6,-9],[-2,-14],[-10,8],[-2,-7],[-4,-1],[-12,6],[-3,6],[-2,7],[-3,5],[0,3],[1,8],[-2,10],[-3,8],[-5,3],[-12,-4],[-5,-1],[-3,7],[-1,10],[-6,23],[-2,6],[-4,5],[-11,15],[3,7],[-1,7],[-11,18],[-2,1],[-1,-5],[-4,-8],[-1,4],[0,5],[1,14],[0,9],[-3,12],[-2,22],[-4,10],[-6,7],[-8,2],[-14,1],[-18,-4],[-12,-12],[0,-25],[-9,-11],[-3,-9],[-3,-13],[5,0],[2,-4],[1,-7],[0,-9],[-2,0],[0,4],[-1,4],[-2,4],[-3,0],[-2,-3],[-1,-6],[-1,-5],[1,-2],[5,-7],[-1,-12],[-4,-6],[-2,13],[-4,-4],[-2,-6],[0,-35],[1,-14],[1,-11],[6,-23],[-2,-4],[2,-5],[-4,-4],[-1,-6],[1,-7],[2,-7],[0,-4],[-3,0],[-1,-1],[0,-3],[0,-4],[-3,6],[-1,11],[0,11],[-2,8],[-4,6],[-10,7],[-3,8],[-2,0],[-3,-5],[-3,1],[-2,5],[-2,5],[-3,9],[0,6],[2,6],[2,9],[4,-2],[1,7],[-1,9],[-3,6],[2,3],[2,9],[-5,0],[0,8],[0,9],[1,7],[4,1],[0,4],[-5,3],[0,10],[5,20],[-8,-3],[-5,15],[-5,18],[-5,10],[1,12],[-4,15],[-20,46],[-6,5],[-7,-9],[-7,10],[-3,6],[-1,8],[2,3],[1,6],[1,6],[0,6],[1,12],[1,16],[-1,4],[-19,7],[-10,1],[-5,-2],[-11,-11],[-10,-5],[-3,-6],[-2,-8],[-3,-57],[-1,-7],[0,-5],[1,-7],[2,-5],[0,-6],[-1,-7],[4,-7],[3,-4],[4,-1],[0,-4],[-3,0],[-4,-3],[-1,-4],[1,-5],[-2,-5],[-12,-18],[-1,-3],[-2,-2],[-2,0],[-5,17],[-1,1],[-9,30],[-5,0],[-4,-2],[-7,-6],[-3,6],[-7,5],[-2,5],[-1,0],[-3,-2],[-1,4],[-2,8],[-2,7],[1,5],[0,5],[-1,6],[0,8],[1,6],[4,10],[1,5],[0,10],[-2,8],[-4,5],[-6,-3],[3,2],[1,2],[0,4],[-2,0],[-2,-2],[-1,-6],[-2,20],[-7,16],[-9,15],[-5,18],[-3,23],[-1,24],[2,22],[5,16],[18,24],[7,14],[4,19],[-1,24],[-3,13],[-2,10],[-19,61],[-10,28],[-5,9],[-24,29],[-6,5],[-3,5],[-6,12],[-3,5],[-16,8],[-5,-3],[-2,-16],[-1,0],[-1,6],[0,6],[-1,5],[-2,4],[3,12],[1,10],[-1,10],[-4,27],[-3,8],[-4,4],[-12,11],[-29,16],[-3,3],[-1,7],[1,9],[-2,5],[8,40],[2,0],[6,-10],[12,10],[13,18],[7,14],[4,-2],[3,4],[3,6],[3,5],[0,4],[-1,1],[0,1],[-1,2],[-2,-2],[-3,-3],[-3,-4],[-1,-3],[12,32],[1,4],[10,27],[1,6],[1,7],[0,36],[0,9],[3,-5],[3,-11],[3,-4],[0,7],[-1,6],[-1,4],[2,-4],[4,-3],[5,-2],[5,0],[4,-2],[14,-18],[22,-8],[6,1],[5,5],[9,10],[8,15],[11,39],[6,15],[21,22],[3,5],[18,-6],[6,0],[3,1],[2,2],[3,-4],[3,-4],[4,-2],[5,-2],[3,-2],[2,-5],[1,-7],[2,-6],[3,-4],[8,-7],[3,-1],[3,0],[3,3],[1,0],[2,-4],[2,-2],[3,-2],[1,-3],[3,-15],[2,-6],[3,-2],[10,-6],[1,-1],[1,-3],[1,-3],[2,-1],[9,0],[12,-5],[3,-3],[6,4],[4,-5],[5,-7],[8,-6],[3,-4],[3,-3],[3,3],[2,1],[22,-9],[30,-27],[17,-10],[2,-4],[3,-2],[22,-33],[5,-14],[1,-2],[6,-2],[8,-13],[4,-5],[5,-1],[4,1],[7,4],[2,0],[2,0],[2,0],[2,2],[6,14],[0,3],[-2,7],[-4,7],[-3,3],[-5,3],[-7,9],[-5,1],[1,2],[1,1],[-9,1],[6,8],[2,3],[4,1],[4,2],[6,11],[2,3],[8,-1],[14,-10],[5,3],[8,-6],[9,2],[20,10],[5,9],[5,2],[3,3],[-2,7],[-5,7],[-5,3],[0,3],[0,5],[4,0],[6,3],[3,1],[0,4],[-2,1],[-20,4],[-4,3],[6,8],[-8,13],[-3,1],[-9,-14],[-3,-2],[-10,2],[0,4],[6,0],[-4,9],[-4,5],[-4,2],[-16,3],[-5,-2],[-3,-9],[4,3],[4,-1],[3,-3],[2,-7],[-5,0],[-8,3],[-4,-3],[-4,29],[-2,0],[-2,-9],[0,3],[-1,3],[0,3],[-6,-3],[-10,-2],[-4,-4],[-11,13],[2,6],[5,7],[2,7],[-5,4],[-10,5],[-7,8],[-4,2],[-2,1],[-1,4],[-5,12],[3,11],[-4,12],[-7,5],[-5,-11],[5,-1],[0,-5],[-3,-3],[-3,3],[-3,1],[-4,-5],[-2,-6],[-1,-5],[0,-3],[1,-2],[1,-1],[1,-1],[2,-1],[0,-4],[-2,-2],[0,-1],[0,-2],[0,-3],[-3,-6],[-3,-1],[-4,2],[-5,5],[0,2],[-3,10],[-1,0],[-1,4],[0,1],[0,2],[3,1],[-4,13],[-13,28],[-2,9],[-2,3],[-1,1],[-3,2],[-13,13],[0,-6],[2,-10],[0,-6],[-8,-10],[-2,-4],[2,-5],[2,-2],[1,0],[1,3],[1,-6],[0,-4],[-2,-4],[-3,-2],[2,-4],[-1,-5],[-4,-1],[-6,4],[-7,2],[-10,-2],[-2,3],[-3,3],[-4,2],[-3,-2],[-2,0],[-3,1],[-4,-4],[-4,-8],[-2,-10],[-2,4],[-2,8],[-2,5],[-2,1],[-3,0],[-1,0],[1,6],[-5,6],[-8,4],[-15,11],[-5,0],[-5,-4],[-7,11],[-8,1],[-8,-6],[-11,-13],[-3,-1],[-4,-1],[-2,2],[-2,5],[-1,4],[-2,2],[-2,-1],[-14,-20],[-2,-6],[-1,-12],[-2,-3],[-6,6],[-7,12],[-16,0],[-5,-2],[-4,-4],[-4,-2],[-4,4],[-18,-22],[-3,-11],[-1,0],[-3,4],[-4,1],[-3,1],[-2,0],[-2,4],[-11,11],[4,2],[5,-5],[4,-6],[4,-4],[0,4],[-1,3],[-1,2],[0,3],[2,4],[-3,3],[-1,1],[0,5],[1,1],[3,3],[-6,0],[2,8],[-3,-2],[-2,-1],[-2,0],[-2,3],[-2,-2],[-1,-1],[-3,-2],[2,12],[-4,6],[-5,3],[-5,0],[-2,6],[-3,35],[-6,12],[-3,4],[-2,1],[-1,-1],[-3,0],[1,-5],[12,-32],[-4,0],[1,-2],[1,-2],[-1,-6],[-1,-7],[-1,-5],[-2,-2],[-3,-1],[-5,-5],[-2,-3],[0,-2],[1,0],[1,-1],[-2,-5],[-4,4],[-2,-1],[-1,-4],[0,-2],[1,-2],[-2,-5],[-4,-6],[-3,-3],[-2,-1],[-5,1],[-2,2],[-2,3],[-3,1],[-2,-6],[2,-3],[1,-1],[2,-1],[-1,-1],[-3,-1],[-3,-4],[0,-6],[-5,1],[-2,6],[-1,8],[-1,5],[-4,2],[-8,1],[-4,1],[4,3],[2,3],[1,4],[-1,7],[-2,-3],[-2,-2],[3,10],[1,3],[-1,-4],[3,-3],[3,4],[3,5],[2,6],[-5,7],[-2,-1],[-3,-6],[-3,2],[-2,5],[-2,6],[0,7],[1,1],[0,1],[0,3],[3,-6],[3,-3],[3,1],[1,8],[-4,-5],[2,8],[-3,11],[1,5],[0,5],[-2,0],[-2,1],[-3,3],[2,2],[2,1],[1,1],[-1,1],[-1,2],[-2,1],[3,10],[1,4],[-1,4],[-2,3],[-2,-3],[-2,-4],[-3,-2],[-1,-2],[-3,-4],[-3,-3],[-2,3],[0,5],[-3,9],[-1,6],[3,24],[0,13],[-6,11],[-5,22],[-2,5],[-11,0],[-4,3],[-3,5],[-2,8],[-7,47],[-2,10],[-4,5],[-4,-3],[-4,-7],[-4,-8],[-2,-7],[-2,7],[-1,-1],[-2,-3],[-2,1],[-3,-5],[-1,3],[-1,5],[-1,5],[-9,13],[0,3],[2,8],[1,11],[2,9],[5,5],[6,-1],[3,1],[2,2],[-1,3],[-2,4],[-3,2],[-6,5],[-2,9],[-1,11],[1,9],[4,11],[1,-5],[2,-9],[5,-6],[5,-3],[5,5],[4,9],[3,10],[2,0],[1,-5],[0,-3],[0,-2],[-1,-2],[0,-1],[1,-2],[0,-2],[-1,-4],[5,0],[5,1],[3,5],[2,11],[2,0],[2,-6],[3,0],[4,1],[4,1],[4,-3],[2,-3],[3,-2],[5,-1],[1,-4],[-1,-8],[0,-8],[2,-4],[4,-2],[4,-4],[6,-10],[1,5],[0,3],[2,2],[1,2],[0,4],[-2,7],[3,4],[5,0],[5,-5],[6,-13],[0,-1],[2,-2],[2,-1],[1,2],[1,5],[-2,4],[-1,2],[-1,9],[-1,1],[-1,-1],[-1,2],[-4,10],[0,6],[2,8],[-2,5],[1,5],[2,3],[2,-1],[0,14],[-7,15],[-14,23],[-2,-3],[-1,-4],[0,-4],[2,-4],[-4,2],[-1,-1],[-2,-1],[-5,-9],[6,-8],[-15,4],[0,4],[-4,1],[-3,4],[-3,4],[-1,1],[-3,-3],[-3,3],[-2,5],[0,6],[1,2],[2,1],[0,4],[-2,0],[-2,-3],[-3,0],[-3,3],[-3,5],[-2,0],[-1,-6],[-5,-5],[-1,-4],[1,-5],[3,-2],[1,-2],[-11,0],[4,3],[-1,4],[0,6],[-1,4],[-2,-2],[0,3],[0,1],[0,1],[0,1],[0,3],[-2,0],[-2,0],[-1,-2],[-1,-3],[4,13],[-1,10],[-4,4],[-3,-6],[-1,4],[-1,-4],[-2,-4],[-2,-2],[-3,-2],[0,-5],[4,-1],[-1,-5],[0,-7],[-1,-7],[-2,-4],[-2,-3],[-2,-3],[-2,-6],[-4,4],[1,-6],[0,-2],[1,-1],[2,1],[13,-18],[6,-4],[1,-4],[1,-4],[-1,-2],[-2,1],[-5,5],[-8,4],[-2,0],[-3,-2],[0,-3],[-3,-7],[-3,-5],[-1,5],[-1,5],[-2,4],[-2,4],[-1,3],[0,3],[-1,2],[-1,2],[0,1],[1,4],[1,2],[1,2],[1,2],[-3,20],[-5,14],[-8,10],[-9,9],[-8,11],[-22,46],[-8,9],[-3,5],[1,6],[-1,5],[-1,7],[0,7],[2,5],[0,4],[-3,-2],[-3,-1],[-2,2],[-1,5],[-5,-3],[-4,0],[-3,3],[-4,5],[-7,-6],[-12,10],[-9,18],[0,18],[-4,6],[-2,7],[-3,6],[-6,2],[0,4],[1,0],[0,3],[-2,5],[-3,9],[-2,3],[5,2],[5,0],[4,2],[-1,8],[-2,5],[-11,11],[0,4],[5,0],[3,-2],[3,1],[2,5],[0,4],[-3,4],[-4,3],[-4,1],[0,-8],[-3,4],[-3,3],[-3,1],[3,5],[-5,2],[-5,1],[-4,-1],[-5,-2],[2,5],[1,5],[1,6],[0,8],[2,-4],[2,0],[2,3],[1,5],[1,2],[-1,7],[0,3],[1,1],[3,3],[-1,12],[-5,5],[-5,3],[-2,2],[-1,3],[-4,6],[-2,1],[-3,2],[-2,2],[-2,5],[-13,4],[-6,4],[-3,4],[-2,-1],[-1,1]],[[56702,71111],[-2,-5],[0,-6],[1,-5],[3,-3],[0,-4],[-8,1],[-6,5],[-11,14],[0,3],[3,1],[3,1],[2,3],[1,4],[4,0],[3,-1],[7,-3],[0,-5]],[[57493,71453],[7,3],[3,0],[0,-3],[-2,-3],[-2,-1],[2,-13],[0,-3],[-4,-1],[-6,-2],[-3,-2],[-4,-4],[-2,-4],[-3,-3],[-3,-1],[-3,-2],[-5,-8],[-3,-2],[-3,3],[-3,5],[-2,6],[1,2],[3,3],[5,11],[2,2],[1,2],[2,9],[1,2],[2,-1],[3,-3],[1,0],[11,7],[4,1]],[[57311,71384],[-3,-11],[-4,-7],[-4,-6],[-4,-9],[5,-30],[4,-14],[6,7],[-3,-9],[-4,-9],[-3,-10],[2,-8],[-2,-11],[-2,-11],[-3,-9],[-3,-7],[-2,-5],[-2,-15],[-2,-3],[-3,-1],[-3,-2],[-2,-3],[-16,-12],[-4,-2],[-8,0],[-1,1],[-4,8],[-2,3],[-6,2],[-6,-1],[-5,0],[-5,5],[-2,4],[-3,1],[-2,-1],[-2,-4],[-2,-1],[-10,3],[-12,-4],[-21,-12],[-57,4],[-18,-10],[-4,-4],[-5,-3],[-25,5],[-19,-1],[-5,-2],[-7,-2],[-2,-2],[-4,-5],[-16,-11],[-4,-2],[-16,3],[-6,-3],[-2,-2],[-2,-4],[-2,-2],[-3,0],[-2,2],[-1,2],[-3,0],[-5,0],[-4,-2],[-7,-5],[-4,3],[-6,1],[-68,-4],[0,3],[4,5],[1,7],[-1,23],[1,7],[1,11],[0,9],[-1,6],[-2,8],[-2,7],[-2,3],[-1,1],[-2,3],[-1,3],[-3,1],[-25,1],[-7,2],[-4,5],[-1,0],[-3,-2],[-3,5],[-6,13],[-4,5],[-5,4],[-5,3],[-5,-4],[-17,15],[0,6],[0,3],[-30,-5],[-21,5],[-2,2],[-1,3],[-1,3],[0,1],[-2,0],[-2,-2],[-1,-2],[-1,-1],[-20,0],[-5,4],[-2,0],[-2,-6],[-1,1],[-7,-3],[-5,4],[-8,17],[-4,4],[-24,-1],[-12,3],[-9,10],[-2,-3],[-2,-2],[-2,0],[-2,1],[-4,-7],[-20,1],[-8,-6],[-4,7],[-16,-2],[-7,3],[-1,3],[1,6],[-1,3],[-3,2],[-3,1],[-2,1],[-2,4],[-2,5],[-2,4],[-4,3],[2,4],[-1,1],[-1,1],[0,2],[4,4],[2,1],[2,0],[0,2],[0,1],[1,1],[1,0],[-2,4],[-1,4],[0,6],[1,6],[-2,11],[3,13],[4,13],[3,10],[-1,3],[-1,4],[-2,3],[0,4],[3,15],[2,5],[0,5],[-3,3],[0,4],[1,3],[0,1],[0,2],[-1,3],[4,14],[1,7],[-1,7],[5,16],[1,6],[1,-12],[0,-24],[2,-10],[2,-6],[1,-2],[2,0],[2,-1],[0,-3],[0,-2],[1,-3],[2,-2],[2,-1],[7,-1],[6,2],[4,6],[3,10],[0,14],[-1,12],[-3,11],[-1,9],[3,6],[-2,10],[-1,8],[1,8],[3,8],[4,7],[3,0],[2,-4],[6,-5],[0,-5],[-3,-6],[0,-7],[3,-19],[-1,-15],[1,-5],[5,-18],[5,-6],[24,-5],[7,-3],[5,2],[15,-3],[7,1],[3,1],[3,3],[1,4],[1,6],[1,5],[3,1],[7,-1],[-3,22],[9,6],[13,-2],[6,-7],[6,-26],[-1,-4],[-2,-2],[-2,-8],[-1,-3],[-3,-2],[-2,-1],[-6,-1],[-11,5],[-6,0],[-4,-5],[1,-5],[5,-5],[5,-4],[8,-5],[9,-11],[5,-2],[5,1],[5,4],[5,6],[3,5],[3,-27],[1,-11],[-1,-22],[1,-5],[2,-3],[6,0],[2,-3],[11,-7],[24,13],[10,-4],[6,6],[23,7],[7,4],[17,16],[6,3],[6,2],[6,0],[28,-8],[6,-6],[2,4],[5,4],[8,5],[17,-13],[2,4],[1,1],[0,2],[1,6],[13,-6],[3,-7],[5,1],[2,-1],[0,-3],[-1,-4],[-1,-3],[0,-4],[2,-14],[6,-7],[9,-1],[12,1],[8,4],[5,-1],[1,-1],[1,-3],[2,-3],[2,-1],[9,0],[15,4],[7,-3],[4,-1],[4,4],[2,-4],[2,4],[5,-8],[4,-10],[5,-7],[8,-4],[8,2],[43,29],[6,2],[3,-1],[6,-6],[4,-1],[17,0],[-2,-8],[-3,-7],[-7,-10],[2,-3],[-1,-6],[-1,-4],[1,-4],[3,-3],[0,10],[1,5],[2,-1],[3,-5],[-2,-4],[0,-2],[2,-3],[-2,-4],[-1,2],[-1,0],[-2,-1],[-2,-5],[1,-5],[-2,-7],[-2,-9],[1,-12],[-3,-5],[0,-5],[2,-6],[1,-6],[1,-12],[3,-1],[4,1],[5,-4],[3,-5],[4,-2],[6,1],[4,4],[4,16],[4,4],[2,0],[1,1],[3,4],[4,10],[0,2],[3,1],[9,1],[11,4],[2,1],[8,10],[3,5],[2,2],[3,1],[1,-1],[2,1],[1,3],[2,0],[4,-5],[11,-5],[-3,-6],[6,-6],[7,1],[6,6],[6,7],[-2,1],[0,1],[0,2],[7,13],[6,12],[6,10],[9,2],[-2,7],[3,0],[1,0],[0,2],[-1,5],[-1,2],[8,0]],[[57558,71506],[6,-10],[1,-7],[-1,-12],[-7,3],[-7,-5],[-6,-11],[-1,-15],[1,1],[0,2],[1,1],[2,0],[-2,-5],[-2,-5],[-2,-4],[-4,-3],[2,10],[-2,4],[-4,0],[-3,3],[-3,5],[-2,7],[1,6],[4,2],[0,4],[-2,0],[0,4],[4,2],[1,6],[-3,17],[0,8],[1,5],[0,4],[-1,7],[-3,3],[-7,8],[-2,5],[1,8],[2,8],[2,6],[2,3],[6,7],[3,15],[1,15],[7,14],[2,18],[1,18],[-2,10],[0,4],[4,4],[2,0],[0,-4],[2,0],[1,3],[4,9],[3,4],[2,0],[1,-1],[2,-3],[-1,-8],[-4,-11],[-1,-7],[0,-15],[1,-5],[1,-6],[0,-5],[-1,-4],[-4,-6],[-3,-7],[-1,-9],[-1,-5],[-3,-6],[-3,-7],[-1,-10],[0,-9],[0,-4],[8,-10],[6,-21],[2,-4],[2,-2],[-1,-4],[-3,-4],[-1,-1],[0,-4],[0,-1],[2,-3]],[[56466,71729],[5,-7],[5,-4],[4,-9],[1,-21],[-2,0],[-2,6],[-7,12],[-2,7],[-2,7],[-2,13],[1,0],[0,-1],[0,-1],[1,-2]],[[56392,71972],[18,-22],[5,-10],[2,-10],[-2,-3],[-4,0],[-4,-4],[-2,-5],[-2,-8],[0,-35],[-2,-1],[-4,1],[-5,2],[-3,-1],[-3,-5],[-1,8],[-3,4],[-8,4],[0,2],[0,2],[0,3],[-1,1],[-3,-1],[-1,1],[-2,4],[-2,9],[-2,3],[2,34],[0,13],[-2,14],[-2,7],[-1,5],[1,6],[9,25],[3,5],[3,-4],[11,-35],[5,-9]],[[57148,72016],[4,3],[3,5],[2,3],[10,-7],[9,-14],[5,-1],[-2,-8],[-2,1],[-3,4],[-3,3],[-4,-2],[-4,-2],[-3,-2],[-8,3],[-1,-1],[-1,1],[-1,4],[-2,4],[0,5],[1,1]],[[57844,72046],[-4,-9],[3,-27],[-6,-5],[-1,-4],[-2,-21],[-2,-6],[-6,-13],[-1,-7],[-1,-17],[-1,-7],[-3,-3],[-2,-4],[-3,-18],[-2,-6],[0,1],[-5,0],[-2,-1],[-1,-2],[0,-4],[-1,-4],[-3,-2],[-7,-29],[3,-3],[2,-2],[2,-1],[3,-1],[-1,-5],[-1,-4],[-2,-4],[-2,-4],[1,-2],[3,-10],[-14,8],[-6,0],[-7,-4],[-12,-14],[-5,-8],[-11,-31],[-8,-19],[-10,-16],[-13,-14],[-11,14],[-2,1],[-1,4],[-5,18],[4,9],[8,41],[2,15],[-1,13],[-3,7],[-4,5],[-7,14],[0,3],[2,4],[-1,3],[-2,3],[-2,0],[-2,0],[-2,5],[5,3],[11,13],[6,4],[3,4],[-1,4],[2,4],[1,3],[0,4],[0,5],[2,8],[2,5],[3,9],[1,3],[8,4],[1,2],[2,5],[10,17],[2,6],[2,5],[17,10],[31,28],[4,6],[9,8],[18,-2],[9,18],[2,0],[2,-3],[3,-7],[0,-3]],[[57050,72073],[10,-5],[10,-12],[7,-15],[3,-16],[0,-12],[-3,-12],[-4,-9],[-5,-3],[-6,1],[-13,6],[-5,5],[4,3],[6,-1],[4,2],[2,4],[3,9],[2,3],[-2,15],[-1,6],[-2,4],[0,3],[1,8],[-4,4],[-11,5],[0,4],[2,1],[1,1],[1,1]],[[57610,72049],[-3,-10],[3,-7],[6,-1],[5,6],[1,-2],[1,-2],[0,-4],[-2,-6],[-3,-5],[-3,-3],[-3,1],[-2,-2],[-2,2],[-4,0],[-3,6],[-2,10],[1,9],[-3,4],[-4,-2],[-2,-5],[-2,-5],[-2,0],[-2,5],[-3,5],[-1,4],[0,12],[1,6],[1,5],[3,-10],[4,3],[4,7],[4,3],[4,-4],[3,-17],[5,-3]],[[57322,72167],[9,-1],[10,-10],[8,-13],[2,-9],[-2,-2],[-1,-1],[-1,2],[-2,6],[-4,-7],[-4,-2],[-8,0],[-4,-2],[-3,-5],[-4,-13],[0,-8],[1,-7],[-2,-4],[-7,-1],[-5,3],[-5,16],[-4,5],[0,4],[1,2],[1,2],[-3,7],[-1,8],[2,5],[4,-3],[4,4],[4,-5],[5,-8],[4,-4],[2,3],[3,8],[1,2],[3,-1],[3,-2],[2,0],[3,3],[-4,3],[-1,6],[1,5],[0,1],[-3,2],[-3,3],[-2,4],[0,4]],[[57741,72139],[0,-7],[1,-5],[1,-5],[-3,-3],[-1,-1],[2,-1],[1,-2],[0,-2],[1,-3],[-6,-6],[-3,-2],[-4,0],[0,4],[1,1],[2,4],[2,3],[-12,7],[-3,4],[4,5],[-13,0],[1,6],[3,6],[3,6],[0,7],[2,0],[0,1],[2,3],[0,-4],[5,10],[6,6],[6,1],[0,-5],[-8,-4],[-3,-4],[-2,-8],[2,1],[2,0],[2,-6],[9,13],[1,-2],[0,-1],[1,-1],[-2,-2],[0,-3],[-1,-2],[-1,-2],[2,3],[1,-1],[0,-4],[-1,-5]],[[56907,72183],[22,-24],[5,-13],[0,-3],[-7,0],[-5,3],[-7,13],[-5,5],[-4,3],[-4,6],[-2,10],[5,1],[2,-1]],[[56984,72216],[11,-1],[0,-1],[0,-3],[0,-3],[-15,-28],[-10,-14],[-7,1],[10,37],[3,1],[6,9],[2,2]],[[56045,72236],[4,-4],[1,-7],[-1,-9],[0,-12],[-2,3],[-1,2],[0,2],[-1,5],[-4,-5],[2,17],[1,7],[1,1]],[[56798,72232],[11,10],[5,2],[4,-8],[-1,-7],[1,-32],[-3,-4],[-5,-5],[-9,-5],[-34,-1],[-10,-7],[-1,8],[2,13],[-1,8],[1,1],[1,4],[2,2],[-3,4],[-1,1],[3,4],[2,11],[3,5],[1,-3],[2,-4],[2,-3],[2,-2],[4,1],[3,-17],[6,-4],[9,0],[3,2],[-1,7],[-2,7],[-3,4],[-4,-4],[-2,4],[-3,7],[-2,5],[0,4],[3,6],[3,-4],[5,-6],[7,-4]],[[56845,72257],[3,-4],[3,-5],[1,-6],[-3,-8],[-4,-2],[-4,6],[-6,14],[4,8],[5,0],[1,-1],[0,-2]],[[57020,72216],[0,1],[1,0],[0,1],[1,2],[-3,-1],[-5,1],[1,5],[2,8],[0,8],[0,3],[12,16],[4,-8],[4,-14],[4,-6],[5,-5],[4,-2],[5,-4],[3,-10],[-4,-1],[-2,-4],[0,-5],[2,-6],[0,-4],[-6,-14],[-10,8],[-18,31]],[[56026,72228],[0,21],[1,9],[3,6],[1,-1],[1,-2],[2,-1],[1,0],[0,-3],[-1,-2],[-1,-2],[-1,-1],[0,-6],[-2,-6],[-2,-5],[-2,-7]],[[56835,72284],[0,-4],[-2,-4],[-8,-24],[-4,0],[-5,2],[-2,4],[-1,7],[-1,4],[-1,4],[1,7],[2,5],[4,3],[4,2],[4,-2],[1,-2],[2,-1],[2,0],[2,3],[0,-1],[0,-1],[1,-1],[1,-1]],[[57061,72282],[2,7],[5,8],[7,8],[2,0],[-2,-4],[1,-1],[1,-1],[0,-15],[-6,-6],[-6,-1],[-4,5]],[[57577,72327],[3,-9],[14,-6],[4,-11],[-9,-9],[-30,-15],[-7,-7],[-16,-30],[-6,-2],[-7,2],[-7,4],[-3,4],[-16,-12],[-4,-8],[3,-12],[-4,-2],[-2,-7],[0,-8],[2,-8],[-5,2],[-5,7],[-4,8],[-1,5],[0,21],[2,9],[3,-3],[1,3],[4,6],[1,3],[1,-2],[7,-6],[3,6],[3,6],[3,12],[10,15],[1,3],[29,31],[28,8],[4,2]],[[57113,72313],[2,6],[2,3],[4,2],[3,5],[3,-2],[7,-10],[-3,-7],[-5,0],[-7,2],[-6,1]],[[57223,72345],[4,-8],[4,-7],[6,-6],[5,-3],[0,-3],[-1,0],[-1,-1],[-4,4],[-5,-2],[-5,-3],[-3,1],[-4,-7],[-12,-15],[-4,-2],[-3,-6],[-8,-22],[-4,-5],[-22,-13],[-12,-2],[-5,15],[4,-3],[2,6],[4,4],[4,2],[3,-5],[2,0],[2,3],[2,1],[7,0],[1,2],[4,14],[-4,-2],[-1,3],[-1,5],[1,3],[3,0],[32,28],[0,4],[-2,1],[-1,2],[-1,1],[-2,0],[0,4],[8,4],[3,4],[2,4],[2,0]],[[56966,72354],[-4,1],[-5,8],[-5,12],[-1,11],[3,9],[5,7],[5,5],[4,-1],[-5,-31],[-2,-9],[1,-3],[2,-3],[2,-6]],[[56862,72402],[3,-8],[10,-21],[4,-17],[0,-4],[-1,-3],[-4,-3],[-1,-3],[-10,-18],[-4,11],[-4,17],[-3,16],[2,9],[0,4],[-3,4],[-3,10],[-3,2],[0,3],[0,2],[2,3],[-2,1],[0,1],[0,3],[3,0],[7,-10],[3,-2],[2,3],[2,0]],[[57475,72350],[2,7],[2,3],[1,2],[-1,9],[1,7],[2,6],[2,6],[1,1],[1,3],[1,4],[-1,4],[-2,4],[-3,-1],[-1,-2],[-2,-1],[-2,4],[-1,3],[-2,10],[-2,3],[-2,2],[-1,2],[1,9],[3,-8],[24,-16],[0,-5],[-4,0],[2,-7],[4,-4],[3,-4],[0,-9],[3,5],[2,2],[2,0],[3,-3],[1,-7],[-2,-10],[1,-7],[-1,-4],[-1,-2],[0,-2],[2,0],[0,4],[2,0],[-2,-9],[-5,0],[-8,5],[-2,-4],[0,-5],[-1,-5],[-2,-2],[-3,1],[-2,2],[-2,0],[-2,-3],[-2,5],[-2,5],[-2,2],[-3,0]],[[57168,72443],[0,-3],[-1,0],[-1,-2],[-5,17],[4,0],[4,2],[7,6],[-1,-4],[-1,-4],[2,-6],[2,-2],[-2,-5],[-2,-3],[-3,0],[-3,4]],[[57022,72411],[-3,-2],[-2,-4],[-1,-5],[-2,-6],[-2,-4],[-4,-5],[-7,-10],[-5,-2],[-10,1],[-2,2],[-6,8],[-3,2],[-2,3],[-1,7],[3,23],[4,7],[8,9],[-2,2],[-2,1],[-1,-1],[4,10],[7,11],[9,9],[8,5],[-4,-11],[2,-4],[8,-2],[4,8],[-1,2],[-1,7],[4,0],[3,0],[0,-5],[-1,-5],[-1,-4],[-1,-3],[-5,-20],[0,-9],[5,-3],[0,-4],[-4,0],[0,-5],[4,0],[0,-3]],[[57090,72498],[2,2],[5,-4],[6,-9],[4,-10],[1,-11],[1,-25],[0,-11],[-3,-25],[-1,-13],[-8,-29],[-1,-2],[-2,-1],[-4,-2],[-10,-17],[-3,-2],[-5,-2],[-3,-4],[-1,4],[-1,1],[-2,3],[-1,5],[-2,12],[-1,4],[-1,4],[-8,8],[1,3],[0,3],[0,4],[-2,4],[-1,5],[-1,5],[1,3],[0,1],[-4,15],[-3,7],[-4,3],[0,4],[1,2],[2,1],[1,0],[1,-3],[3,3],[11,21],[18,22],[1,4],[4,13],[2,1],[6,1],[1,2]],[[56789,72487],[-2,4],[9,10],[5,3],[4,-4],[1,0],[2,3],[1,1],[2,-2],[1,-2],[2,-8],[1,-11],[0,-12],[-1,-10],[-2,8],[-2,0],[0,-7],[-1,-6],[-2,-4],[-2,-3],[-1,2],[-1,1],[0,1],[-1,3],[1,1],[1,-1],[1,1],[-3,2],[-2,1],[-3,0],[-2,-3],[-1,6],[0,2],[-1,-1],[-2,-3],[-2,2],[-2,0],[-2,-2],[-2,-4],[0,7],[0,1],[3,4],[-2,3],[0,3],[1,3],[2,3],[-1,5],[1,2],[2,1]],[[56424,72552],[2,-2],[4,-4],[2,-4],[1,-4],[1,-6],[-1,-6],[-2,-2],[-6,2],[-4,5],[-2,7],[-4,6],[1,4],[3,3],[2,1],[3,0]],[[56551,72601],[-4,-7],[-7,-5],[-6,-2],[-5,2],[1,-12],[-4,-6],[-5,-2],[-7,0],[-16,-8],[-6,0],[0,4],[25,28],[7,4],[12,0],[6,4],[9,0]],[[56768,72626],[2,15],[6,11],[7,9],[4,9],[2,0],[0,-8],[0,-5],[-2,-8],[-1,-3],[10,-11],[4,-9],[-1,-13],[-4,2],[-3,-6],[-2,-11],[-1,-9],[-4,-7],[-5,-9],[-6,-5],[-6,-3],[3,21],[2,9],[5,6],[0,4],[-1,1],[-2,2],[-1,1],[0,4],[2,6],[0,6],[-3,3],[-5,-2]],[[57054,72629],[-4,1],[-21,-4],[1,4],[0,2],[-1,1],[0,2],[1,5],[1,1],[1,0],[1,1],[2,14],[-2,5],[-4,1],[2,9],[3,4],[4,2],[3,6],[8,-25],[1,2],[1,12],[3,2],[8,-4],[2,-1],[1,-3],[2,-3],[5,-3],[1,-4],[0,-5],[-2,-5],[-4,-3],[-5,0],[-5,-3],[-1,-11],[-2,0]],[[56928,72640],[1,-2],[2,-2],[2,-3],[1,-4],[0,-6],[0,-3],[-2,-3],[-17,-15],[-4,-5],[0,6],[0,4],[1,3],[1,3],[0,4],[-2,0],[-6,0],[1,6],[1,4],[2,4],[2,3],[-1,0],[-3,3],[5,2],[4,8],[1,10],[0,9],[-2,13],[0,5],[2,0],[7,-1],[3,-5],[2,-9],[2,-9],[1,-6],[-1,-4],[-2,-6],[-1,-4]],[[56521,72711],[1,0],[1,-1],[0,-1],[0,-2],[2,-6],[2,-4],[3,-2],[4,-1],[0,-3],[-5,-6],[-7,-2],[-7,2],[-5,6],[0,3],[7,4],[3,4],[1,9]],[[56969,72727],[-3,2],[-9,18],[-11,9],[-3,3],[-2,5],[-1,7],[-1,8],[1,5],[3,1],[16,-1],[1,-1],[3,-3],[0,-4],[-2,0],[0,-5],[2,0],[2,-2],[2,-2],[1,-4],[5,6],[5,-1],[5,-6],[2,-7],[5,9],[7,-3],[9,-6],[6,-4],[-2,-4],[3,-1],[1,-4],[1,-5],[1,-6],[-7,-16],[-2,-15],[-3,-3],[-13,4],[-8,8],[-4,2],[-3,2],[-3,11],[-4,3]],[[56770,72788],[8,-18],[-2,-18],[-7,-18],[-8,-15],[-8,-19],[-5,-7],[-5,3],[0,9],[1,29],[-1,5],[0,11],[3,14],[5,9],[4,-2],[2,4],[2,5],[-3,0],[-1,0],[0,4],[3,3],[2,1],[3,-1],[2,-3],[1,0],[1,3],[0,1],[2,-1],[1,1]],[[57322,72788],[-5,-16],[-7,-15],[-24,-37],[-5,-4],[-24,-5],[-5,-4],[-3,-4],[-6,-9],[-3,-3],[-2,-2],[-2,0],[-2,1],[-4,1],[-11,-5],[-4,1],[-1,12],[2,8],[9,15],[2,7],[2,8],[4,10],[5,8],[4,4],[7,1],[16,-4],[6,3],[5,-3],[9,4],[7,8],[8,14],[9,4],[13,2]],[[56540,72840],[5,-3],[-2,-7],[-3,-7],[0,-7],[-4,-5],[-1,-6],[1,-7],[-2,-6],[-2,-3],[-6,-3],[-3,-2],[-2,3],[-2,2],[-4,3],[0,4],[4,3],[-1,6],[-2,5],[-4,2],[-3,4],[-2,8],[-1,9],[1,4],[33,3]],[[57513,72812],[3,4],[2,-3],[0,-6],[-2,-7],[-6,4],[-10,-4],[-26,-17],[-2,-3],[-3,-4],[-2,-5],[0,-3],[-1,-2],[-3,-3],[-2,0],[-18,0],[-3,2],[-1,4],[0,4],[-1,5],[-5,12],[-3,4],[-6,3],[-3,6],[-3,1],[-2,0],[-4,-3],[-8,-2],[-4,-3],[-4,-5],[-1,-7],[-2,0],[0,4],[-2,0],[-3,-5],[-3,6],[-1,10],[-1,7],[0,14],[1,7],[3,6],[5,2],[5,1],[4,3],[1,8],[2,4],[32,13],[10,0],[10,-3],[3,-4],[8,-10],[9,-5],[11,-12],[3,-6],[1,7],[-2,5],[-2,5],[-3,8],[5,-3],[3,0],[3,3],[3,4],[0,-7],[7,-4],[13,-2],[-8,-6],[-1,-1],[-1,-5],[1,-5],[2,-4],[2,-7]],[[55805,72851],[5,-16],[19,-21],[3,-18],[-4,7],[-8,7],[-9,5],[-8,1],[-4,-3],[-2,-6],[-2,-5],[-2,-2],[-4,-3],[0,-7],[2,-7],[1,-3],[-1,-8],[-1,-3],[-3,-2],[-6,0],[-2,3],[-8,18],[-14,19],[-6,12],[-1,9],[-6,10],[-11,24],[-6,7],[2,7],[-1,10],[1,3],[-2,5],[11,27],[7,11],[7,-2],[0,-2],[0,-2],[1,-2],[0,-2],[6,-18],[2,-12],[3,-4],[7,-7],[9,4],[11,-8],[10,-13],[4,-13]],[[56942,72837],[0,-9],[-2,-11],[-4,-10],[-4,-7],[1,-2],[1,-10],[-2,0],[-2,6],[-6,8],[-3,6],[-6,25],[-1,4],[-4,0],[-4,3],[-2,4],[-3,7],[-5,15],[-3,4],[-5,-5],[-1,16],[-5,11],[-6,9],[-5,9],[-2,0],[-2,-6],[-2,-2],[-1,3],[2,9],[-3,4],[-4,11],[-3,5],[3,2],[1,2],[-2,4],[0,6],[1,6],[2,4],[15,14],[7,2],[4,-4],[-1,-6],[1,-4],[1,-1],[3,-1],[3,-2],[3,-4],[1,-4],[-1,-2],[0,-3],[2,-13],[1,-4],[2,-3],[7,-5],[22,0],[3,-5],[-1,-12],[-5,-20],[12,-16],[-2,-3],[-1,-1],[-1,0],[0,-8],[-2,-5],[-2,-4],[0,-4],[2,-3],[4,3],[4,-3]],[[56502,72914],[-2,4],[0,4],[2,6],[4,6],[4,4],[8,-4],[4,5],[3,9],[2,6],[-4,0],[-2,-3],[-2,-4],[-3,-1],[-2,1],[-5,3],[-3,0],[9,8],[-3,3],[-4,6],[3,0],[3,0],[3,-2],[2,-3],[1,5],[0,1],[-1,2],[2,3],[2,2],[3,0],[6,-2],[4,-2],[1,-4],[-1,-5],[0,-3],[1,-4],[2,-3],[1,-3],[0,-3],[8,0],[-10,-8],[1,-6],[-6,-9],[-1,-9],[-1,0],[-3,4],[-3,-3],[-3,-6],[-4,-4],[-4,1],[-9,4],[-3,4]],[[55759,73011],[-4,2],[-4,6],[-7,13],[-8,8],[-10,5],[-10,-3],[-4,-15],[-5,7],[-10,5],[-4,9],[-1,5],[-1,11],[0,4],[-5,14],[-1,6],[4,-2],[4,-7],[4,-3],[0,4],[-5,7],[-3,9],[-7,33],[-3,8],[-3,2],[-2,-10],[0,-10],[2,-19],[0,-12],[-3,-10],[-3,-5],[-4,-3],[-4,-6],[-1,0],[-2,10],[-8,8],[-2,10],[1,5],[2,6],[2,6],[0,5],[-1,5],[0,5],[2,3],[2,2],[3,7],[4,16],[2,19],[0,18],[2,-8],[0,-4],[2,0],[4,12],[2,-4],[2,-11],[3,-9],[3,5],[1,-3],[1,-7],[2,-3],[3,2],[5,9],[6,6],[3,10],[0,11],[-3,11],[6,-4],[-3,20],[-1,4],[1,8],[1,6],[0,6],[-2,5],[0,3],[10,0],[15,-72],[0,-5],[0,-9],[-2,-5],[-2,-4],[-4,-6],[3,-5],[6,-21],[4,-3],[3,5],[4,8],[3,4],[0,-2],[-1,-4],[-1,-3],[6,-1],[1,-7],[1,-8],[2,-8],[12,-18],[3,-15],[10,-23],[2,-10],[0,-9],[0,-10],[-3,-10],[-2,-1],[-7,3],[-2,0],[-3,-3],[-3,-1]],[[55754,73206],[3,-2],[3,-3],[5,-7],[-1,0],[-4,0],[2,-16],[1,-6],[4,-2],[0,-5],[-8,-2],[-4,-2],[-4,1],[-5,11],[2,4],[-4,8],[-4,9],[-5,20],[-1,5],[0,13],[-1,6],[-2,4],[-3,3],[-2,5],[1,9],[5,-5],[2,3],[3,14],[5,-3],[0,-7],[-1,-8],[-2,-6],[4,0],[3,-2],[3,-3],[3,-4],[-2,-12],[-2,-10],[-6,-19],[3,-2],[2,-1],[4,-1],[3,1],[0,3],[-4,5],[6,0],[-2,4]],[[55816,73332],[-6,-15],[-2,-10],[-1,-8],[-4,0],[0,4],[11,28],[2,1]],[[57267,73295],[-3,-7],[-1,-12],[-1,-10],[-6,-3],[2,-6],[1,-1],[2,-2],[-1,-3],[4,0],[1,-4],[-4,-9],[-1,-9],[0,-7],[3,-45],[4,-24],[-7,-2],[-7,-9],[-3,-13],[3,-15],[0,-8],[-7,-6],[-13,-8],[-2,-6],[-2,-13],[-2,-5],[-3,-1],[-5,4],[-4,1],[-3,4],[-6,13],[-2,1],[-1,0],[-2,4],[-3,7],[-1,7],[-2,-1],[-3,-1],[-1,-2],[0,5],[0,8],[0,4],[-5,-5],[-2,3],[1,9],[2,9],[3,4],[4,2],[5,2],[1,2],[3,6],[7,-1],[2,1],[2,7],[0,7],[1,7],[4,3],[-1,7],[1,14],[-1,8],[-1,-2],[0,-1],[-1,-1],[-2,4],[-1,4],[-3,2],[-2,2],[2,5],[-1,8],[-1,9],[-2,6],[-3,6],[-3,2],[-4,1],[-5,3],[-4,6],[-9,19],[-2,8],[-1,9],[2,7],[2,6],[1,9],[40,14],[6,-2],[13,-7],[1,-4],[12,-24],[0,3],[1,3],[1,2],[2,0],[0,3],[-1,1],[-1,0],[4,3],[4,-2],[3,-5],[2,-8]],[[57107,73336],[2,-5],[8,-11],[0,-3],[-1,-1],[-1,0],[-2,-22],[-1,-3],[-4,1],[-3,2],[-2,0],[-3,-3],[-1,5],[0,4],[1,4],[0,3],[-1,3],[-4,6],[-1,4],[-3,4],[-2,4],[1,4],[2,1],[2,-1],[1,-3],[1,-1],[1,4],[2,3],[3,0],[1,-3],[2,0],[0,4],[2,0]],[[55718,73340],[-3,-6],[-3,-9],[-4,-14],[-2,0],[0,15],[5,57],[5,20],[2,12],[4,22],[3,2],[2,6],[4,12],[3,7],[5,8],[7,5],[0,-2],[1,-3],[3,-3],[4,-8],[2,-9],[0,-8],[2,-7],[-2,-7],[0,-6],[1,-5],[1,-4],[0,-5],[-1,-3],[-1,-4],[-6,-16],[-1,-5],[0,-4],[2,-1],[1,4],[2,7],[2,5],[0,-9],[-1,-32],[-1,-7],[-2,-1],[-2,8],[-2,0],[1,-3],[1,-9],[-1,1],[-3,3],[0,-5],[-1,-2],[0,-2],[-1,-3],[-4,4],[-5,-2],[-2,-5],[2,-6],[0,-3],[-3,0],[-2,2],[0,4],[1,6],[-6,1],[-3,12],[-4,-5]],[[56854,73453],[1,-1],[0,-2],[1,-2],[0,-5],[0,-5],[-1,0],[-1,0],[-2,-1],[-1,-4],[-2,-4],[-2,0],[-2,4],[-2,0],[-3,-4],[-3,3],[-3,5],[-1,6],[-2,0],[-3,-3],[-4,-5],[0,-10],[-10,20],[12,8],[-3,17],[-2,5],[-3,-6],[-2,0],[-1,7],[-2,2],[-3,-1],[-4,-3],[0,6],[-6,5],[-1,9],[-1,-1],[-1,-3],[-2,5],[-3,3],[-2,-1],[-3,-3],[0,6],[1,5],[2,4],[2,1],[2,3],[1,7],[-2,11],[0,8],[1,8],[3,5],[6,3],[19,-22],[4,-7],[0,-6],[-1,-14],[1,-8],[1,-6],[1,-2],[5,-4],[12,-14],[5,-9],[4,-10]],[[56829,73068],[-2,-29],[0,-15],[4,-13],[-2,-9],[-3,-26],[-2,-9],[-5,-6],[-5,-5],[-6,-4],[-6,-2],[-3,2],[-2,3],[0,7],[-7,18],[-1,1],[-4,5],[-7,-5],[-5,-9],[5,-5],[0,-5],[-4,-6],[-5,1],[-4,5],[-5,10],[-1,4],[-2,7],[-2,5],[-2,3],[0,4],[4,4],[-3,13],[-3,4],[-4,-1],[-1,10],[-5,5],[-6,1],[-5,-4],[-3,4],[-2,0],[-2,-4],[0,3],[0,1],[1,0],[1,1],[0,16],[-3,3],[-4,-2],[-1,5],[1,4],[5,9],[2,5],[-1,8],[-4,8],[-2,15],[-4,5],[-4,2],[-4,-2],[1,-8],[-6,3],[2,10],[4,13],[4,6],[-2,8],[-2,0],[-3,-4],[-2,-4],[-1,-1],[0,-3],[0,-3],[-2,-1],[-3,2],[0,2],[1,3],[1,1],[0,5],[-4,0],[6,20],[-6,6],[-6,4],[-7,2],[-8,1],[7,3],[3,3],[2,6],[-2,5],[-1,5],[0,4],[1,1],[-3,10],[-2,5],[-1,-4],[-16,2],[-19,-4],[-6,1],[-9,6],[-4,1],[-6,-1],[-8,-3],[-4,0],[-19,8],[-5,-1],[-8,-4],[-4,1],[-3,6],[-7,27],[-1,-3],[-1,-1],[-1,-1],[-3,0],[3,9],[5,10],[4,9],[-2,9],[0,4],[2,0],[0,4],[-6,17],[-4,8],[-5,4],[-12,3],[-6,3],[-3,6],[-1,4],[-1,11],[0,5],[-7,8],[-1,2],[-1,2],[-2,1],[-2,3],[-1,6],[-1,5],[-2,3],[-9,9],[-7,6],[-8,14],[-2,2],[-2,2],[-3,12],[-1,2],[-6,6],[-27,34],[-10,9],[-7,4],[-3,0],[-5,0],[-8,-3],[-4,0],[-4,5],[-6,12],[-2,1],[-3,1],[-5,1],[-4,4],[-4,1],[-4,-2],[0,-4],[4,0],[4,-3],[2,-5],[0,-8],[-3,-4],[-4,-2],[-31,-5],[-6,-6],[0,7],[0,6],[1,6],[2,2],[2,2],[7,8],[2,2],[7,2],[12,12],[9,3],[8,7],[6,4],[1,2],[1,8],[1,3],[3,1],[6,1],[2,2],[2,5],[1,5],[0,6],[0,4],[4,2],[5,8],[3,2],[17,0],[6,4],[14,14],[7,2],[3,-2],[4,-8],[2,-2],[4,-1],[4,-2],[4,-4],[2,-5],[-2,-11],[3,-9],[6,-6],[6,-2],[0,-6],[4,-27],[2,-8],[1,-6],[3,-11],[5,-11],[12,-9],[12,-17],[7,-3],[0,-4],[0,-5],[0,-2],[2,0],[2,3],[4,-6],[7,-2],[4,-4],[3,3],[3,-3],[6,6],[5,-2],[4,-7],[2,-11],[3,-7],[5,-7],[11,-8],[13,-7],[13,-2],[6,-2],[6,-4],[5,1],[5,9],[6,-5],[6,0],[6,2],[6,-1],[18,-10],[5,-6],[-3,-1],[-2,-4],[-3,-5],[-1,-6],[0,-10],[1,-6],[25,-35],[4,-10],[-7,-9],[-5,-19],[-1,-21],[6,-12],[0,-4],[-5,-3],[0,-5],[7,-13],[0,-7],[0,-9],[1,-8],[6,-14],[1,-6],[1,-3],[2,-1],[0,-2],[0,-11],[0,-5],[2,-4],[-3,-8],[-1,-2],[2,-8],[4,-7],[7,-10],[10,-8],[1,-4],[1,-5],[1,-5],[2,-2],[9,3],[4,0],[8,-10],[11,-2],[5,-3],[5,4],[25,8]],[[56510,73653],[-4,1],[-3,1],[-2,-1],[-3,-1],[1,10],[3,4],[4,1],[2,2],[1,7],[3,7],[4,5],[3,4],[5,-5],[4,-7],[3,-9],[-2,-12],[-5,6],[-4,-7],[-4,-15],[-2,1],[-2,5],[-2,3]],[[56574,73636],[-3,3],[-8,14],[-2,5],[-1,8],[-9,23],[4,4],[1,-3],[0,-1],[2,0],[1,0],[7,-12],[7,-10],[9,-9],[9,-5],[-1,-9],[6,-2],[7,1],[6,-3],[0,-4],[-9,-16],[-6,-6],[-7,-2],[-2,1],[-4,6],[-8,2],[-2,3],[0,4],[3,4],[0,4]],[[55594,73709],[4,-8],[5,-6],[5,-9],[3,-14],[-6,1],[-3,1],[-3,4],[-6,12],[-2,8],[-1,8],[4,3]],[[56648,73697],[-4,-18],[-7,-17],[-9,-11],[-8,2],[4,8],[3,5],[4,7],[4,22],[14,37],[5,5],[0,-2],[0,-2],[-1,-2],[-1,-2],[6,-2],[-1,-12],[-5,-13],[-4,-5]],[[57392,73595],[0,-5],[-1,-10],[-3,-7],[-9,6],[-4,-4],[-4,2],[-2,6],[-3,5],[2,3],[-3,3],[0,3],[1,3],[0,3],[0,2],[2,7],[0,3],[-3,5],[-1,2],[-2,9],[-4,2],[-10,-1],[-5,-5],[4,-10],[11,-14],[11,-24],[5,-8],[0,-4],[-1,-3],[1,-5],[-8,-5],[-8,-4],[-19,-3],[-4,1],[-9,6],[-10,2],[-4,3],[-7,8],[-7,5],[-16,6],[-14,1],[-3,2],[-3,4],[-8,21],[-3,4],[-5,2],[0,3],[2,2],[2,3],[2,1],[1,0],[1,-1],[2,0],[10,4],[1,2],[5,12],[3,4],[3,0],[3,1],[3,1],[8,12],[8,11],[0,1],[3,3],[-1,6],[-3,5],[-2,3],[-9,4],[-4,0],[-6,-1],[-4,-2],[-4,-4],[-4,-7],[-4,-17],[-1,0],[-12,-29],[-4,-7],[-6,-2],[-5,1],[-24,15],[-4,4],[-4,5],[-3,2],[-3,1],[-5,4],[-10,16],[-5,4],[0,5],[3,2],[1,5],[0,7],[1,6],[-1,1],[0,1],[-1,1],[-1,1],[2,3],[1,2],[0,4],[0,5],[1,5],[3,2],[2,2],[2,1],[8,13],[2,4],[2,0],[3,-12],[9,1],[10,5],[8,-3],[1,4],[1,2],[1,3],[1,4],[1,-6],[1,-3],[1,0],[4,9],[6,4],[12,3],[7,5],[3,7],[-1,10],[-2,15],[50,3],[5,-3],[-2,-13],[5,-6],[8,-3],[5,-6],[-2,-6],[-9,-23],[1,-3],[11,-19],[10,-6],[2,-3],[1,-3],[10,-23],[4,-6],[6,-6],[-4,-4],[1,-5],[2,-4],[3,-5],[0,-6],[1,-3],[1,-2],[3,1],[0,-12],[4,-13],[5,-11],[4,-5]],[[56947,73900],[10,-11],[-2,-15],[-13,-31],[-2,0],[-3,28],[0,13],[6,8],[-1,5],[1,2],[2,1],[2,0]],[[55581,73823],[1,-7],[2,-18],[4,-8],[0,-4],[-4,-4],[-2,3],[-7,4],[-6,8],[-5,3],[-5,2],[-4,1],[-3,2],[-7,10],[-3,3],[-4,1],[-4,0],[-4,2],[-1,3],[2,-1],[2,2],[2,6],[-10,5],[-3,3],[-1,-2],[0,-2],[0,-1],[-3,10],[-3,12],[-2,12],[-2,25],[-4,12],[-5,10],[-7,9],[-6,5],[-4,4],[-7,28],[-1,4],[-5,0],[-3,0],[-3,4],[-1,8],[0,13],[-1,5],[-5,-6],[0,10],[-1,6],[-3,4],[-4,0],[3,5],[7,17],[2,5],[2,1],[26,2],[8,2],[7,6],[8,7],[4,-2],[2,-3],[2,-4],[3,-3],[7,-4],[3,-3],[2,-5],[2,0],[0,4],[2,0],[-1,-18],[-3,-11],[-6,-6],[-17,-12],[-3,-4],[-2,-7],[1,-7],[3,-6],[3,-2],[0,-5],[-4,0],[0,-3],[16,-14],[7,-3],[-1,-13],[-2,-2],[-5,3],[4,-12],[5,-62],[1,-4],[4,-3],[3,-3],[8,-2],[4,-3],[6,-8],[2,-1],[5,1],[4,2],[3,3],[2,-1],[3,-8]],[[57069,74180],[-3,-6],[-1,-2],[0,-4],[2,0],[0,-1],[0,-2],[1,-5],[0,-6],[1,-3],[-7,-6],[-7,-8],[-4,-12],[1,-14],[-4,0],[-3,-2],[-2,-3],[-2,-3],[3,-4],[2,-1],[-4,-3],[-3,-6],[-1,-5],[5,-5],[-4,-7],[2,-6],[3,-6],[2,-6],[1,-4],[-1,-1],[-1,0],[-2,-3],[-1,-4],[0,-6],[-1,-3],[-3,3],[-2,1],[-8,5],[-2,2],[-1,6],[0,5],[0,3],[-5,3],[-5,12],[-5,1],[7,8],[3,5],[2,6],[-2,8],[-3,6],[-3,3],[-4,1],[-11,-16],[2,0],[2,-1],[2,-1],[1,-3],[-5,-1],[-3,-6],[-3,-8],[-2,-9],[2,2],[1,1],[1,2],[3,-7],[3,-10],[2,-8],[-2,-4],[-6,0],[-4,2],[-9,6],[6,16],[1,3],[-1,6],[-3,-2],[-4,-6],[-1,-5],[-2,0],[0,5],[-1,2],[-1,2],[0,3],[-16,-8],[-3,-4],[-2,0],[1,4],[1,3],[1,3],[3,2],[-2,1],[-2,3],[-2,1],[0,5],[0,2],[2,3],[2,1],[0,5],[-2,0],[0,3],[1,1],[1,1],[2,3],[-2,0],[2,8],[-1,6],[-3,4],[-2,6],[0,9],[0,7],[-1,6],[-3,2],[0,4],[10,1],[18,7],[2,-1],[2,-2],[1,-3],[1,-2],[5,1],[14,7],[7,-3],[3,-7],[4,-9],[4,-9],[-1,-4],[6,4],[8,7],[4,5],[0,6],[5,14],[4,5],[1,-1],[8,1],[2,1],[8,7]],[[57136,74423],[1,-9],[-4,-5],[-25,-15],[-7,1],[-9,9],[-19,24],[-4,8],[-2,8],[5,-1],[16,16],[8,4],[8,0],[22,-11],[5,-5],[4,-7],[3,-9],[-2,-8]],[[56885,74594],[-6,-1],[-2,-6],[2,-7],[6,-3],[0,-11],[-5,-3],[-1,-8],[2,-18],[2,-7],[0,-4],[0,-5],[-2,-1],[-5,5],[-1,-2],[-2,-4],[-5,-4],[-9,-2],[-4,-2],[-6,-11],[-4,-4],[-2,6],[-2,4],[-4,7],[-1,0],[-2,-1],[-1,1],[0,1],[0,5],[0,2],[-4,6],[-2,1],[-7,4],[-6,0],[-4,5],[-2,16],[2,15],[4,16],[10,22],[21,28],[8,-7],[12,-2],[4,-3],[1,-3],[1,-6],[2,-5],[3,-2],[3,-1],[2,-3],[2,-4],[2,-4]],[[56634,72289],[1,-3],[0,-3],[-1,-1],[-2,3],[0,4],[2,0]],[[56516,72335],[1,-3],[1,-6],[-1,-1],[-2,1],[0,4],[0,1],[-1,1],[0,3],[-1,5],[2,-1],[1,-4]],[[57657,71934],[14,-1],[0,-3],[0,-6],[-1,-5],[-1,-1],[-2,0],[-6,-3],[-4,2],[-5,0],[-5,-2],[-3,3],[-1,8],[3,6],[2,1],[4,1],[5,0]],[[57551,72154],[3,-5],[3,-12],[-3,-11],[-6,-5],[-4,0],[-6,2],[-3,4],[-1,6],[4,12],[8,9],[5,0]],[[57464,72461],[2,-3],[2,-7],[0,-7],[-2,-1],[-1,0],[0,-2],[-2,-1],[-2,-1],[-3,1],[-4,4],[0,4],[3,3],[1,4],[-2,1],[-4,-4],[-3,1],[-2,5],[1,5],[1,5],[-3,3],[-3,3],[-2,4],[-4,4],[-1,8],[3,5],[4,-1],[1,2],[0,4],[2,0],[3,-3],[1,-1],[1,1],[1,-1],[2,-1],[1,-1],[3,-1],[1,-4],[-2,-6],[-1,-5],[3,-3],[3,-3],[1,-7],[1,-4]],[[57388,72592],[1,-3],[1,-6],[-1,-2],[-2,3],[-2,2],[-1,0],[-1,1],[-2,0],[-3,-3],[-1,-4],[0,-3],[-1,-2],[-2,0],[2,-4],[3,-7],[0,-20],[-3,-2],[-3,4],[1,4],[-1,2],[-3,2],[-2,6],[2,14],[1,4],[0,4],[-1,5],[0,8],[1,7],[2,1],[3,-1],[4,1],[3,-2],[3,-4],[1,-3],[1,-2]],[[56871,72745],[0,-3],[1,-8],[-6,-1],[-13,4],[-4,4],[5,2],[5,3],[3,6],[3,3],[5,1],[2,-4],[-1,-7]],[[55818,73360],[1,-2],[1,-6],[-3,-7],[-4,-4],[-4,-4],[-2,-2],[-3,-2],[-3,-6],[-2,-7],[-2,-1],[-1,6],[1,6],[5,15],[4,8],[5,4],[7,2]],[[55777,73368],[2,0],[0,-2],[-1,-3],[-2,-4],[-2,-3],[-7,-4],[-1,-7],[4,-5],[2,-4],[1,-1],[2,-3],[2,-6],[-3,3],[-10,16],[-4,15],[2,7],[5,1],[6,6],[1,-3],[1,-1],[2,1],[0,-1],[0,-2]],[[56689,73775],[2,-2],[1,-2],[0,-10],[-3,-14],[-5,-5],[-3,5],[0,4],[2,1],[-1,3],[-3,3],[-1,4],[1,6],[1,6],[2,6],[3,1],[0,-6],[0,-4],[2,2],[2,2]],[[59222,42170],[-20,-14],[-24,-17],[-35,-25],[-48,-34],[-46,-33],[-43,-30],[-29,-21],[-26,-18],[-22,-9],[-10,-6],[-21,-20],[-28,-20],[-37,-25],[-40,-27],[-19,-21],[-26,-28],[-23,-19],[-29,-14],[-36,-18],[-29,-15],[-5,0],[-39,-19],[-28,-13],[-38,-30],[-24,-18],[-29,-22],[-26,-27],[-21,-21],[-24,-6],[-5,-3],[0,-4],[2,-17],[0,-27],[1,-26],[11,-74],[7,-28],[9,-12],[4,-3],[3,-8],[3,-10],[2,-11],[1,-12],[1,-39],[1,-7],[4,-12],[1,-5],[-1,-6],[-5,-21],[-2,-13],[1,-8],[8,-17],[1,-5],[3,-17],[0,-2],[-4,-3]],[[58443,41210],[-11,-9],[-8,-1],[-9,8],[-4,4],[-7,2],[-3,-2],[-4,-7],[-2,-3],[-5,-2],[-3,2],[-7,10],[-11,5],[-11,-3],[-11,-7],[-11,-3],[-12,3],[-24,13],[-12,2],[-7,-3],[-11,-10],[-12,-4],[-16,-11],[-7,-2],[-6,1],[-5,4],[-6,1],[-7,-4],[-10,-18],[-5,-6],[-24,-5],[-4,-2],[-61,-58],[-10,-21],[-3,-4],[-5,-2],[-6,-7],[-4,-8],[-3,-7],[-6,-23],[-3,-7],[-7,-3],[-13,0],[-6,-2],[-1,-1],[-4,-4],[-9,-19],[-6,-16],[-1,-4],[-4,-12],[-1,-7],[1,-5],[1,-4],[1,-3],[1,-3],[-1,-21],[-4,-24],[-1,-24],[4,-17],[-6,-31],[-1,-13],[1,-10],[4,-25],[0,-14],[-6,-22],[-1,-5],[-2,-22],[-4,-9],[-11,-17],[-2,-10],[-6,-11],[-2,-4],[-4,-2],[-8,0],[-13,-5],[-101,-81],[-19,-25],[-27,-47],[-25,-22],[-43,-38],[-15,-18],[-11,-25],[-37,-117],[-5,-20],[-6,-47],[-7,-30],[-15,-31],[-28,-53],[-74,-157],[-3,-8],[0,-6],[0,-15],[1,-14],[-10,-23],[-10,-21],[-8,-16],[-8,-9],[-4,-2],[-13,-1],[-3,-3],[-10,-13],[-7,4],[-26,-25],[-7,-1],[-4,-3],[-4,-4],[-8,-15],[-3,-2],[-4,1],[-16,11],[-4,4],[-4,7],[-4,10],[-4,6],[-5,4],[-7,3],[-11,7],[-22,24],[-13,5],[-10,-3],[-2,1],[-2,3],[-2,4],[-3,2],[-12,3],[-3,2],[-1,4],[-2,5],[-2,5],[-2,2],[-3,-2],[-10,-16],[-2,-3],[-7,-2],[-4,-6],[-5,-2],[-2,-2],[0,-2],[0,-7],[0,-3],[-4,-2],[-5,0],[-4,-2],[-2,-7],[-2,4],[-15,-17],[-4,0],[-11,0],[-17,17],[-3,7],[-2,9],[0,9],[5,3],[-4,10],[-13,11],[-2,9],[-3,6],[-5,8],[-7,6],[-10,6],[-3,6],[-4,4],[-7,-1],[-14,-13],[-19,-8],[-2,-1],[-2,-5],[-2,-2],[-1,1],[-3,3],[-1,1],[-21,0],[-3,1],[-10,7],[-8,-1],[-3,1],[-5,5],[-9,14],[-5,5],[-2,4]],[[56494,40022],[-1,8],[0,8],[2,8],[-7,11],[-5,13],[-6,8],[-4,4],[-4,3],[-9,1],[-5,-1],[-4,-2],[-5,-1],[-5,2],[-3,8],[-1,8],[1,9],[-1,10],[-3,6],[-12,10],[-7,11],[-6,16],[-6,18],[-2,16],[-1,6],[-12,26],[-4,5],[-13,7],[-17,15],[-8,10],[-11,21],[-8,9],[-4,7],[-2,8],[-4,28],[-3,16],[-6,15],[-13,28],[-3,6],[-17,14],[-4,0],[-1,2],[-1,5],[0,11],[-1,4],[-3,8],[-9,6],[-4,5],[-3,7],[-3,17],[-20,65],[-2,6],[-2,3],[-5,1],[-1,2],[-2,4],[-2,7],[-4,12],[-2,8],[-3,5],[-7,3],[-1,1],[-2,5],[-2,2],[-1,-2],[-1,-1],[-2,-2],[-4,-3],[-3,-1],[-3,3],[-24,40],[-2,8],[-1,10],[-1,9],[-3,4],[-5,1],[-2,4],[1,7],[0,8],[-1,8],[-5,17],[-1,7],[0,10],[1,11],[3,11],[2,7],[1,8],[-5,4],[-9,4],[0,4],[-1,13],[0,6],[-1,2],[-3,6],[-2,4],[-1,9],[0,7],[-1,8],[-3,8],[2,-1],[7,1],[-10,32],[-7,19],[-1,13],[0,9],[0,36],[0,38],[0,2],[0,26],[0,61],[0,60],[0,61],[0,60],[0,26],[0,18],[0,13],[0,23],[0,89],[0,90],[0,89],[0,89],[0,89],[0,90],[0,89],[0,89],[0,89],[0,90],[0,89],[0,35],[0,54],[0,89],[0,90],[0,89],[0,89],[34,0],[35,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[9,0],[-3,22],[-5,18],[-6,17],[-15,33],[-6,16],[-2,19],[2,24],[5,27],[5,43],[5,42],[4,17],[12,38],[10,29],[2,10],[1,10],[-3,27],[-1,36],[-3,15],[-7,15],[-6,19],[-2,26],[2,83],[2,76],[6,29],[0,6],[-1,15],[-1,44],[-2,14],[-3,12],[-2,11],[0,15],[1,12],[5,23],[8,25],[1,7],[0,10],[-1,14],[0,8],[1,6],[3,9],[9,14],[2,8],[0,7],[-12,58],[-2,15],[1,84],[-5,2],[-2,8],[2,23],[-1,33],[1,10],[2,12],[-1,8],[-5,18],[-2,10],[-2,29]],[[47143,55494],[0,-30],[-8,-73],[-5,-22],[-1,-14],[2,-16],[2,-12],[0,-11],[-7,-14],[-6,-7],[-5,-3],[-6,-2],[-22,0],[-6,-2],[-6,-7],[-4,-11],[-7,-25],[-3,-6],[-7,-8],[-2,-5],[-1,-5],[-1,-7],[1,-143],[-7,-2],[-2,-2],[-13,-15],[-10,-19],[-37,-96],[-3,-7],[-3,-6],[-4,-3],[-11,-5],[-11,-14],[-41,-69],[-5,-13],[-18,-50],[-3,-4],[-22,-22],[-5,-2],[-10,-33],[-5,-9],[-1,-3],[1,-6],[4,-13],[1,-8],[-1,-5],[-1,-3],[-2,-2],[-6,-1],[-1,-4],[1,-12],[-1,-9],[-2,-11],[-2,-10],[-8,-9],[-1,-10],[1,-15],[-2,-3],[-9,-9]],[[46812,54567],[-5,8],[-11,6],[-6,6],[-5,8],[-4,8],[2,1],[1,1],[1,2],[1,4],[-7,0],[-4,-1],[-2,-3],[-2,0],[-2,13],[-4,9],[-15,26],[-39,48],[-65,51],[-67,56],[-54,36],[9,15],[10,1],[10,-7],[10,-9],[-1,5],[-1,4],[-2,2],[-3,1],[-2,1],[-2,8],[-3,3],[-5,5],[-3,0],[-5,-5],[-2,2],[-2,4],[-3,3],[-1,5],[3,11],[3,11],[6,10],[3,9],[3,6],[5,-3],[3,3],[3,1],[7,0],[2,0],[3,3],[2,0],[2,-1],[3,-5],[2,-1],[5,3],[5,6],[5,5],[8,1],[-1,2],[-1,4],[0,3],[5,3],[5,1],[4,4],[1,12],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,-2],[-2,5],[0,3],[-3,-1],[-3,0],[-3,-1],[-1,-4],[-1,-5],[-2,-3],[-4,-2],[-4,-4],[-5,0],[-3,-1],[-6,-6],[-6,-3],[-6,-5],[-3,-2],[-2,1],[-5,2],[-3,1],[-7,5],[-2,11],[-1,13],[-5,8],[0,4],[2,3],[0,3],[1,5],[-1,5],[-2,-4],[-2,-2],[-2,-1],[-1,4],[-2,0],[0,-9],[-7,14],[4,20],[10,31],[5,-5],[1,-3],[2,4],[-2,8],[0,8],[2,7],[4,2],[-6,8],[-5,-10],[-8,-27],[-14,-18],[-9,-7],[-4,7],[-2,0],[-18,7],[-2,0],[-2,1],[-2,2],[-11,16],[-5,4],[-3,6],[-2,11],[-1,10],[0,8],[3,5],[5,5],[-5,-2],[-14,-12],[-13,18],[-4,15],[-2,7],[-5,3],[-3,2],[-3,7],[-6,15],[5,2],[10,11],[5,3],[4,-1],[5,-3],[9,-9],[-6,13],[-7,10],[-6,12],[-4,29],[-1,2],[-1,2],[0,4],[2,8],[1,8],[2,9],[2,7],[3,6],[-9,3],[-4,7],[-2,12],[-4,15],[-3,4],[-4,4],[-3,5],[-2,9],[1,9],[0,7],[1,8],[2,7],[-2,-1],[-2,-3],[-1,-2],[-2,-2],[-2,-1],[-2,0],[-1,0],[-2,1],[-12,-4],[-7,-6],[-7,-9],[-7,-11],[-4,-11],[-2,0],[0,9],[0,25],[-1,13],[0,7],[1,7],[-3,5],[-10,33],[-1,0],[0,3],[-1,0],[-2,1],[0,5],[-2,6],[-7,20],[-2,2],[-1,6],[-2,6],[-3,2],[4,10],[1,5],[0,7],[0,6],[-4,11],[-1,6],[6,-2],[1,-2],[2,2],[1,-1],[1,-5],[5,4],[5,0],[5,-4],[4,-5],[4,-8],[5,-20],[10,-11],[7,-13],[7,-11],[5,2],[2,0],[0,5],[-3,1],[-3,3],[-2,5],[-1,7],[3,0],[0,4],[-8,4],[-7,5],[-4,9],[2,14],[3,6],[9,6],[3,5],[2,6],[2,6],[2,3],[4,-3],[0,7],[1,6],[1,6],[2,5],[3,-2],[18,-2],[5,-3],[3,-1],[2,2],[6,8],[3,2],[-5,3],[-6,-2],[-6,1],[0,7],[5,14],[10,46],[-7,-18],[-4,-16],[-6,-12],[-10,-6],[-5,0],[-4,2],[-4,0],[-7,-9],[-5,-1],[-4,3],[-3,8],[6,3],[3,7],[3,8],[5,7],[0,4],[-2,1],[-2,1],[-1,2],[-1,4],[-2,0],[-2,-18],[-2,-7],[-3,-3],[-5,3],[-4,7],[-5,14],[-3,-3],[-2,0],[-1,4],[-1,7],[-2,-10],[3,-7],[4,-4],[4,-3],[-4,-4],[8,-12],[1,-14],[-5,-12],[-5,-11],[1,-5],[0,-5],[-2,-4],[-2,-2],[-3,2],[-1,4],[-8,26],[-2,10],[-2,17],[-2,11],[-3,10],[-2,7],[-2,6],[0,10],[1,18],[1,1],[-1,62],[7,19],[4,2],[1,-2],[1,-4],[2,-4],[21,0],[5,2],[5,5],[8,2],[16,-1],[-11,7],[-2,-1],[-2,-4],[-5,0],[-5,2],[-3,4],[-3,-3],[-5,-2],[-4,1],[-2,6],[0,4],[-2,2],[-2,-1],[-1,1],[-1,5],[1,2],[1,1],[3,11],[5,6],[7,2],[7,1],[0,5],[-5,3],[-7,-3],[-11,-9],[-7,-1],[-7,3],[-5,9],[-2,14],[-1,-3],[-1,0],[0,-1],[0,-5],[-4,9],[-2,-1],[0,-2],[-1,-2],[-1,-4],[-6,11],[1,28],[-4,11],[0,3]],[[46305,55824],[6,10],[13,8],[7,3],[4,-2],[11,-14],[6,-5],[4,2],[9,13],[10,11],[5,6],[4,10],[4,19],[2,9],[3,8],[1,1],[5,1],[1,1],[-1,5],[-3,10],[-2,6],[2,17],[4,18],[6,9],[5,-12],[6,7],[6,0],[5,0],[6,2],[5,8],[6,23],[5,5],[4,2],[0,5],[-1,5],[0,5],[2,6],[2,3],[4,6],[2,-1],[1,-2],[1,0],[1,4],[1,3],[1,2],[2,4],[1,3],[10,65],[0,3],[-1,2],[0,3],[3,2],[1,1],[1,1],[1,2],[0,2],[3,20],[1,5],[3,2],[2,-1],[3,0],[1,5],[0,26],[1,1],[4,17],[3,6],[9,11],[1,0],[0,2],[0,8],[0,3],[2,0],[1,-1],[1,2],[0,3],[-1,6],[0,2],[4,44],[-1,6],[0,4],[0,4],[2,5],[10,12],[13,10],[41,19],[7,-1],[5,-6],[5,-10],[6,-9],[6,-4],[4,-2],[5,0],[9,4],[52,24],[2,5],[1,36],[118,2],[59,0],[7,-1],[10,-6],[4,-1],[3,-5],[2,-14],[3,-39],[2,-7],[21,-27],[11,-23],[10,-27],[7,-26],[3,-20],[2,-6],[1,-2],[5,-4],[2,-3],[1,-4],[2,-16],[2,-5],[7,-11],[3,-6],[1,-5],[1,-16],[2,-5],[3,-3],[2,-4],[0,-9],[-2,-14],[1,-11],[3,-9],[4,-9],[5,-6],[0,-4],[-3,-4],[-2,-5],[3,-3],[5,0],[2,1],[3,-1],[3,0],[2,-1],[3,-11],[4,-6],[3,-5],[3,-3],[12,-22],[1,-7],[-1,-7],[-2,-6],[-1,-8],[0,-5],[1,-10],[-1,-5],[-2,-7],[-3,-4],[-3,-3],[-3,-4],[-5,-19],[-3,-25],[2,-22],[10,-6],[12,1],[11,-3],[6,-4],[4,-5],[0,-4],[0,-4],[0,-1],[-4,-35],[-1,-21],[0,-43],[1,-6],[2,-17],[0,-2],[0,-7],[0,-2],[1,-2],[2,-3],[1,-1],[11,-32],[4,-7],[2,-6],[12,-33],[-2,-13],[-4,-12],[-5,-7],[-7,-1],[-5,-3],[-6,-9],[-4,-13],[-4,-17],[-5,-9],[-2,-7],[0,-8],[0,-7],[-1,-4],[-3,-1],[-4,-51],[-4,-15],[-5,-12],[-7,-20],[-2,-19],[5,-11],[2,20],[6,12],[7,6],[10,-1],[4,-4],[8,-11],[3,-1],[5,4],[10,14],[16,34],[3,9],[7,29],[3,8],[3,6],[3,5],[5,3],[8,3],[2,0],[8,-5],[2,-3],[2,-2],[3,1]],[[46529,54952],[-3,-5],[0,-6],[2,-18],[-1,-10],[-2,-7],[-3,-6],[-2,-9],[0,-10],[2,-19],[0,-8],[-4,-6],[-4,-2],[-5,3],[-2,9],[5,0],[-4,15],[-4,15],[-6,11],[-6,4],[-4,1],[-25,14],[-9,10],[-24,7],[-28,17],[0,4],[10,5],[1,8],[4,8],[4,3],[11,4],[30,0],[5,1],[10,6],[17,3],[5,-1],[6,-5],[-4,-10],[2,-3],[11,1],[5,-3],[4,-6],[3,-7],[3,-8]],[[46305,55824],[-3,4],[-3,5],[-1,7],[1,9],[1,0],[4,0],[1,1],[0,2],[-1,2],[1,3],[7,16],[6,18],[3,9],[5,6],[5,0],[8,-4],[6,4],[0,3],[-17,-1],[-8,2],[-4,6],[1,2],[2,5],[1,3],[0,8],[2,12],[2,12],[-6,-13],[-3,-15],[-2,-15],[-3,-18],[-6,7],[-3,3],[-2,7],[2,3],[1,5],[-1,16],[1,3],[1,4],[0,3],[-1,2],[-2,3],[-1,1],[-1,12],[0,18],[2,11],[5,-8],[-1,13],[0,5],[1,6],[-2,0],[-2,-4],[-2,-3],[-3,-1],[-4,0],[-2,-3],[-1,-6],[-3,-27],[-2,-6],[-6,7],[-3,2],[-1,3],[2,9],[-3,5],[-2,10],[-2,11],[-1,11],[2,11],[6,17],[2,13],[-2,0],[-7,-11],[-10,-2],[-9,7],[-4,12],[-2,18],[0,9],[3,9],[2,7],[2,7],[2,10],[0,11],[-2,0],[-6,-27],[-4,-11],[-5,-3],[-4,5],[-3,11],[-3,13],[-1,12],[-9,-8],[-6,-8],[-10,-12],[-8,-5],[0,-1],[-2,-3],[-2,-1],[-1,3],[0,5],[2,2],[2,1],[1,2],[9,27],[6,14],[3,16],[5,14],[0,9],[0,34],[0,4],[2,3],[3,3],[1,4],[2,7],[4,4],[4,5],[2,10],[-6,-6],[-4,-2],[-2,4],[-13,30],[0,7],[-2,-1],[0,-1],[-2,-2],[3,-19],[1,-16],[-3,-14],[-9,-8],[-10,2],[-5,14],[-1,19],[3,18],[11,30],[5,20],[-1,19],[-2,4],[-1,-7],[-1,-12],[-1,-5],[-3,-4],[-5,-17],[-4,-4],[0,-2],[-1,-2],[-10,-8],[-1,0],[-5,1],[-5,2],[-5,3],[-1,4],[-2,7],[-4,10],[-5,10],[-4,4],[-7,10],[-2,4],[-3,14],[-3,3],[-4,0],[-3,2],[-2,3],[-5,12],[-4,4],[-3,1],[-3,2],[-5,8],[-1,14],[5,18],[7,9],[7,-11],[-2,7],[-3,10],[-4,7],[-2,-2],[-2,-7],[-4,3],[-3,7],[0,4],[6,5],[5,12],[8,27],[-4,-4],[-3,-5],[-6,-13],[-3,-4],[-7,-8],[-2,-2],[-1,-8],[1,-27],[-1,-7],[-2,-6],[-4,-4],[-5,-1],[-6,4],[-5,9],[-2,11],[0,12],[4,10],[7,10],[4,11],[-4,10],[-1,-9],[-3,-5],[-4,-2],[-5,0],[1,-13],[-5,-10],[-6,-4],[-3,4],[-1,4],[-2,5],[-2,7],[-1,9],[1,4],[2,4],[1,4],[-1,4],[-2,1],[-1,-1],[-1,-2],[-1,-2],[-2,-10],[-6,8],[-17,32],[-3,3],[-4,2],[-4,-1],[-4,-2],[-4,-1],[-3,4],[-6,-12],[-3,6],[-1,15],[0,13],[2,19],[0,8],[-1,7],[-2,4],[-1,2],[-18,38],[-3,13],[0,12],[0,15],[1,14],[3,7],[0,1],[-5,-1],[-3,-4],[-2,-6],[-3,-5],[-4,-3],[-5,-2],[-4,2],[-2,7],[-2,0],[-2,-8],[-2,3],[-1,8],[-1,11],[0,10],[1,8],[3,17],[3,-3],[4,7],[4,9],[4,6],[-7,1],[-2,7],[0,11],[4,33],[2,9],[3,-4],[2,0],[0,9],[2,4],[3,3],[1,3],[3,26],[7,28],[4,4],[2,8],[0,9],[-1,8],[1,3],[3,9],[-6,-4],[-1,-4],[1,-7],[0,-9],[-9,-14],[-2,-3],[-4,-6],[-4,-15],[-4,-16],[-3,-19],[-4,-13],[-8,-20],[-8,-14],[-4,-3],[-1,7],[0,9],[2,7],[2,4],[3,2],[-2,1],[-2,0],[-1,-1],[-2,-4],[-4,8],[3,24],[2,10],[3,9],[2,3],[4,6],[2,3],[1,5],[1,4],[1,1],[-2,2],[-2,2],[-4,-10],[-12,-20],[-3,-10],[-4,-22],[-4,-7],[-2,12],[-4,7],[-3,8],[0,14],[4,-1],[3,6],[2,8],[2,7],[2,8],[0,9],[1,8],[-1,4],[1,3],[0,3],[1,6],[-5,-8],[-2,-5],[-1,-5],[-1,-3],[-8,-8],[-2,0],[0,7],[0,7],[1,5],[1,6],[-2,5],[0,5],[1,5],[3,5],[-5,1],[-2,7],[1,9],[2,7],[4,5],[4,4],[6,2],[4,1],[3,4],[2,9],[1,8],[2,4],[4,2],[6,13],[4,5],[-2,4],[-1,3],[-3,10],[0,-6],[-1,-5],[-1,-4],[-2,-2],[-2,-1],[-4,-3],[-1,-2],[-1,-12],[-3,-9],[-5,-5],[-5,4],[-1,-3],[-1,-1],[-2,-1],[-3,1],[2,11],[-2,7],[-3,2],[-1,-6],[-8,-22],[-8,3],[-6,34],[-7,-1],[5,-10],[1,-11],[-1,-10],[-2,-10],[-6,10],[-4,2],[-4,1],[9,-15],[4,-8],[1,-10],[-3,-11],[-5,-11],[-5,-7],[-3,-1],[0,2],[-2,0],[-1,0],[-1,-2],[1,-4],[1,-5],[0,-3],[0,-21],[1,-3],[3,-3],[3,-3],[1,-7],[-1,-3],[-3,-11],[-5,5],[-10,3],[-5,6],[-6,13],[-4,14],[-3,12],[-1,12],[2,11],[5,11],[2,2],[5,4],[1,2],[0,5],[1,4],[1,3],[2,3],[0,3],[-1,0],[-1,1],[0,2],[0,2]],[[45827,56965],[8,17],[9,23],[27,109],[5,46],[5,22],[27,85],[5,12],[7,7],[11,3],[23,-6],[12,5],[25,28],[25,30],[4,6],[2,5],[3,15],[2,5],[3,3],[2,0],[1,-2],[23,-3],[7,2],[3,-2],[2,-3],[3,-5],[2,-3],[5,-2],[4,0],[8,3],[4,0],[12,-4],[6,4],[12,16],[2,3],[6,-6],[5,0],[5,6],[4,11],[1,6],[0,14],[-1,6],[1,3],[4,0],[2,-3],[1,-12],[3,-3],[4,-3],[0,-3],[-1,-5],[2,-4],[5,-2],[8,3],[6,6],[5,6],[1,8],[2,26],[0,10],[-5,70],[1,25],[3,24],[-1,11],[-3,10],[-2,2],[-10,4],[-5,4],[-3,4],[-6,15],[-2,5],[0,5],[-2,3],[-7,6],[-3,4],[-5,11],[-6,7],[-5,4],[-8,2],[-2,2],[1,7],[0,12],[1,6],[6,15],[17,16],[7,12],[5,6],[8,4],[4,-3],[-3,-13],[19,0],[8,7],[4,15],[1,15],[3,12],[0,7],[-1,17],[0,7],[1,5],[5,25],[1,10],[-1,10],[-3,12],[-14,37],[-3,16],[0,13],[2,39]],[[46186,57975],[90,-7],[12,-7],[1,0],[2,-2],[2,-3],[1,-1],[2,0],[1,1],[0,2],[2,1],[8,4],[2,0],[3,-1],[3,-5],[3,-1],[2,1],[5,3],[2,0],[1,-1],[3,-6],[1,-2],[1,1],[4,2],[2,0],[2,1],[2,-1],[2,-3],[3,7],[5,-6],[5,1],[5,1],[4,-1],[4,-8],[1,-11],[0,-12],[-1,-10],[-5,-21],[-1,-9],[2,-12],[3,-9],[4,-5],[5,-1],[5,1],[5,-4],[5,1],[3,6],[1,11],[4,24],[11,0],[10,-12],[7,-13],[0,-2],[0,-4],[0,-5],[3,-6],[3,-2],[8,-1],[5,-4],[1,-6],[1,-5],[6,-2],[18,2],[6,-1],[5,-5],[5,-7],[8,-19],[1,-5],[0,-4],[1,-3],[4,0],[1,0],[2,2],[8,9],[5,4],[5,2],[5,0],[6,-3],[12,-9],[5,-8],[7,-25],[5,-5],[47,26],[10,12],[9,17],[5,5],[7,1],[17,-12],[6,-1],[4,2],[10,12],[3,4],[1,1],[2,0],[1,0],[0,-1],[17,-15],[6,-3],[22,-2],[11,4],[21,17],[12,4],[24,4],[9,-2],[18,-14],[8,-1]],[[46836,57815],[0,-11],[-5,-2],[-7,1],[-4,-5],[-1,-13],[1,-24],[0,-13],[-5,-24],[-8,-17],[-4,-17],[5,-24],[5,-10],[17,-16],[5,-8],[11,-32],[5,-8],[5,-8],[6,-6],[6,-4],[5,0],[9,8],[4,0],[5,3],[4,9],[3,11],[2,17],[2,2],[2,0],[2,3],[4,13],[1,3],[1,1],[9,13],[3,8],[3,25],[2,6],[4,2],[7,-1],[12,9],[5,0],[7,-4],[5,-7],[11,-37],[7,-10],[6,-6],[5,-9],[2,-16],[-1,-6],[-3,-10],[0,-5],[1,-6],[8,-16],[11,-45],[8,-18],[12,1],[4,4],[3,6],[3,10],[2,11],[1,8],[2,6],[5,7],[6,7],[4,2],[-2,13],[3,8],[6,5],[6,9],[0,4],[-1,6],[0,6],[3,2],[1,3],[-3,11],[1,6],[5,4],[13,-2],[3,8],[2,5],[9,17],[4,5],[2,-3],[1,-2],[5,-3],[-1,8],[2,3],[2,0],[3,3],[1,6],[1,1],[2,-3],[1,-4],[2,7],[11,9],[2,-2],[1,-4],[2,-4],[9,-4],[10,-9],[5,-2],[7,0],[2,0],[3,-3],[4,-7],[2,-3],[2,-1],[1,-1],[4,0],[3,-1],[3,-4],[6,-9],[3,-4],[6,-3],[9,-11],[6,-2],[5,-3],[10,-16],[5,-5],[2,0],[6,2],[2,0],[3,-3],[4,-7],[3,-4],[5,-3],[16,-1],[6,15],[4,11],[1,7],[0,12],[0,10],[2,10],[4,9],[9,12],[31,22],[6,10],[4,7],[12,11],[4,1],[17,-6],[7,14],[1,8],[-1,14],[4,2],[3,9],[1,12],[0,7],[-2,3],[-5,2],[-2,3],[-1,5],[0,6],[-1,4],[-8,9],[-5,10],[-4,10],[-1,6],[4,11],[13,6],[5,7],[2,1],[1,-1],[4,-4],[4,-3],[2,2],[2,4],[4,1],[21,-10],[12,-8],[33,-36],[9,-10],[5,-11],[3,-14],[1,-13],[-3,-13],[-3,-12],[-3,-12],[-1,-16],[1,-6],[3,-9],[1,-6],[2,-7],[3,1],[6,4],[4,-5],[3,-10],[3,-13],[-1,-14],[-4,-23],[-1,-13],[1,-11],[5,-9],[6,0],[7,1],[6,-2],[5,-9],[1,-10],[0,-11],[0,-13],[1,-7],[2,-5],[2,-6],[0,-7],[-14,-151],[5,0],[5,-4],[4,-6],[5,-3],[6,1],[5,5],[3,2],[4,-6],[6,-43],[1,-10],[3,-12],[3,-11],[3,-9],[15,-14],[8,-1],[7,11],[1,-7],[1,-13],[2,-11],[2,-8],[3,-3],[8,0],[16,-11],[9,-8],[6,-11],[-5,-3],[-6,-6],[-3,-7],[2,-9],[5,-2],[5,2],[3,-3],[-1,-15],[-4,-8],[-5,-4],[-5,-1],[-5,2],[-11,5],[-3,-4],[-2,-14],[0,-2],[1,-3],[0,-3],[0,-5],[-1,-1],[-3,-1],[-1,0],[-2,-3],[-6,-6],[-2,-2],[-3,-10],[-2,-22],[-2,-9],[-3,-3],[-5,0],[-3,-2],[-2,-7],[0,-6],[0,-5],[0,-7],[-3,-12],[-13,-27],[-2,-8],[-2,-9],[-1,-11],[1,-9],[4,-6],[5,3],[4,5],[6,1],[4,-2],[5,0],[5,1],[5,3],[5,7],[3,9],[7,32],[4,0],[6,-4],[6,1],[3,1],[2,0],[5,-4],[3,1],[5,6],[4,0],[6,-6],[6,-12],[4,-13],[2,-14],[0,-61],[-1,-11],[-1,-5],[-2,-5],[-6,-33],[-1,-12],[8,-6],[1,-11],[4,-117],[3,-15],[9,-25],[7,-27],[5,-6],[6,0],[6,2],[4,4],[3,3],[2,-1],[2,-9],[1,-8],[1,-15],[1,-8],[6,-8],[7,-3],[15,-1],[5,-7],[4,-12],[3,-15],[2,-14],[1,-15],[-2,-14],[-6,-28]],[[47780,56488],[-3,-7],[-2,-7],[-1,-8],[-1,-9],[-5,-14],[-7,-8],[-14,-11],[-5,-10],[-6,-16],[-3,-15],[3,-7],[3,-2],[-1,-6],[-3,-6],[-6,-5],[0,-5],[1,-6],[1,-5],[1,-1],[1,0],[2,-1],[1,-3],[0,-11],[1,-3],[-1,-1],[-1,-1],[-1,-2],[1,-5],[2,-1],[5,1],[1,-13],[-10,-154],[-1,-5],[1,-14],[1,-13],[1,-11],[2,-9],[16,-48],[5,-11],[4,-5],[6,-3],[7,0],[5,1],[5,4],[11,13],[6,3],[11,0],[2,-6],[-8,-47],[-1,-14],[-9,-51],[0,-21],[14,-12],[3,1],[3,2],[3,-1],[3,-15],[3,-6],[7,-10],[11,-14],[4,-9],[-1,-1],[-4,-7],[-7,-2],[-5,0],[-6,-1],[-25,-27],[-4,-9],[-2,-15],[-2,-14],[-1,-29],[-5,-51],[3,-19],[12,-8],[7,-1],[16,-11],[1,0],[3,4],[2,0],[2,-3],[2,-7],[1,-4],[6,-9],[2,-5],[6,-26],[3,-6],[8,-11],[2,-6],[1,-11],[-1,-22],[1,-13],[3,-24],[0,-11],[-2,-15],[0,-14],[1,-12],[6,-26],[-16,-3],[-8,2],[-6,8],[-9,37],[-6,17],[-6,-2],[-1,-9],[1,-9],[-1,-9],[-4,-4],[-5,0],[-5,3],[-3,5],[-4,5],[-2,8],[-1,9],[-2,7],[-4,6],[-4,2],[-4,-2],[-8,-4],[-3,1],[-4,-1],[-3,0],[-2,2],[-3,6],[-2,1],[-6,0],[-9,-8],[-6,-2],[-9,5],[-4,-1],[-14,-23],[-1,-4],[0,-7],[1,-7],[2,-6],[1,-8],[1,-12],[-3,-34],[0,-11],[0,-11],[-1,-7],[-4,-10],[-1,-6],[23,-32],[28,-18],[2,1],[17,12],[3,0],[1,-5],[-2,-9],[-2,-7],[-2,-18],[0,-9],[2,-8],[5,-7],[5,-11],[3,-13],[1,-6],[1,-7],[-5,1],[-4,5],[-2,5],[-3,1],[-12,-4],[-4,1],[1,-5],[-1,-15],[-3,-23],[-13,-44],[-1,-24],[2,-6],[6,-11],[2,-7],[-1,-6],[-2,-3],[-1,-2],[-2,-4],[-1,-9],[-1,-20],[-1,-9],[-9,-21],[0,-3],[1,-6],[-1,-2],[-1,-2],[-3,-4],[-1,-3],[-6,-15],[-1,-6],[0,-5],[1,-9],[0,-5],[-8,-18],[-10,9],[-11,17],[-9,5],[-10,-6],[-5,-1],[-7,16],[-7,-8],[-13,-24]],[[47642,54946],[-8,11],[-9,14],[-5,13],[-2,17],[2,22],[-33,3],[-3,-11],[-7,-19],[-2,-12],[0,-21],[-1,-3],[-2,-6],[0,-4],[0,-3],[1,-2],[2,0],[0,-3],[1,-14],[-1,-12],[-3,-10],[-5,-11],[-8,-10],[-1,-3],[-1,-5],[-1,-12],[-1,-6],[-2,-4],[-5,-3],[-2,-4],[-5,-13],[-3,-8],[-1,-6],[0,-10],[3,-11],[1,-11],[-2,-12],[-3,-4],[-12,-10],[-4,-1],[-5,18],[-4,5],[-1,-14],[-3,3],[-1,-1],[-1,-9],[-1,-1],[-7,-4],[-2,-2],[-5,0],[-3,-4],[-4,-7],[-4,-6],[-3,-2],[-4,-2],[-2,-1],[-2,-1],[-3,-6],[2,20],[-1,8],[-5,6],[-2,4],[0,10],[-2,2],[-6,0],[-2,0],[-7,14],[-4,37],[-4,12],[-4,1],[-9,-5],[-5,1],[-1,4],[-2,12],[-2,5],[-3,3],[-2,2],[-3,1],[-5,0],[-3,-2],[-1,-2],[0,-6],[-2,-2],[-1,-1],[-5,-13],[-3,6],[-5,20],[-3,-10],[-8,-17],[-3,-2],[-1,2],[3,5],[2,6],[1,7],[0,8],[1,8],[3,6],[5,9],[7,20],[2,12],[-1,9],[5,12],[2,7],[1,15],[2,9],[2,8],[3,5],[-6,14],[0,20],[3,21],[3,16],[-7,19],[-3,10],[-7,19],[-6,25],[-3,25],[1,25],[3,26],[1,1],[2,6],[0,6],[0,6],[-2,6],[-3,8],[-3,1],[-3,-5],[-3,-9],[0,7],[3,11],[1,6],[-5,43],[0,7],[-1,7],[-3,3],[-7,3],[-4,6],[0,16],[2,17],[2,9],[2,3],[0,3],[0,2],[-2,3],[-1,6],[-1,6],[-2,7],[-2,5],[3,6],[1,3],[2,2],[1,1],[4,5],[-2,1],[-2,5],[-4,7],[-14,13],[-4,10],[-2,4],[-2,-5],[-2,-4],[-2,-2],[-2,-1],[-2,1],[-5,0],[-4,-2],[-3,1],[1,11],[2,8],[4,5],[2,7],[-1,13],[-4,7],[-5,6],[-6,0],[-3,-8],[-1,-13],[0,-8],[-1,-2],[-4,9],[-3,11],[-1,10],[-2,28],[-1,10],[-3,8],[-5,1],[0,-7],[-1,-5],[-2,-4],[-2,-6],[0,-4],[1,-5],[-1,-4],[-6,-4],[-6,-6],[-2,-1],[-1,4],[-2,2],[-1,2],[-4,-2],[-1,-1],[-6,0],[-4,-1],[-5,-3],[-4,-6],[-11,-18],[-11,-14],[-6,-2],[-4,3],[-1,8],[3,28],[-2,8],[-5,5],[-15,9],[-5,0],[-5,-3],[-9,-19],[-5,-6],[-2,10],[-6,-5],[-3,-1],[-3,0]],[[47642,54946],[12,-13],[5,-21],[6,-41],[3,-58],[2,-11],[1,-7],[5,-15],[2,-7],[2,-19],[1,-5],[4,-8],[1,-5],[0,-4],[-1,-7],[1,-4],[1,-4],[4,-9],[1,-6],[1,-5],[1,-15],[4,-56],[0,-15],[-2,-5],[-6,-9],[-2,-6],[0,-10],[0,-10],[0,-9],[-3,-16],[1,-5],[2,-3],[2,-3],[0,-8],[-1,-9],[-2,-18],[-3,-17],[-4,-13],[-25,-59],[-6,-13],[-20,-34],[-4,-9],[-5,-6],[0,-1],[-1,-8],[-1,-3],[-1,-1],[-3,-2],[-2,-1],[-7,-18],[5,-1],[3,-1],[7,0],[3,-2],[3,-5],[8,-24],[5,-4],[4,6],[2,11],[1,11],[1,5],[2,-2],[3,-9],[9,-10],[4,-9],[-1,-3],[-2,-4],[-1,-10],[0,-5],[3,-11],[1,-5],[-2,-5],[-2,-3],[-1,-4],[3,-7],[3,6],[3,3],[4,0],[3,-3],[3,7],[3,-3],[3,-6],[3,-6],[1,1],[1,2],[1,2],[2,-2],[2,-5],[0,-5],[0,-4],[0,-2],[3,-2],[21,-11],[4,-2],[3,-4],[2,-3],[2,-2],[4,0],[4,2],[6,8],[4,2],[13,4],[7,1],[5,-3],[4,-6],[18,-9],[2,-1],[1,1],[1,1],[2,-1],[1,-2],[0,-7],[1,-3],[13,-21],[4,-11],[1,-8],[-4,-23],[-1,-12],[-1,-14],[1,-12],[3,-8],[0,3],[2,3],[4,2],[2,-1],[3,-5],[1,-5],[1,-14],[1,-2],[2,-1],[1,-1],[1,-4],[-1,-3],[-3,-3],[0,-3],[0,-17],[0,-4],[4,-10],[11,-12],[3,-7],[5,-15],[4,4],[3,12],[3,8],[2,-3],[3,-8],[4,-7],[5,-1],[0,-2],[6,-7],[1,0],[6,-6],[1,-4],[-2,-6],[2,-4],[4,-10],[2,-2],[3,3],[3,7],[2,1],[0,-10],[4,-1],[2,-8],[1,-8],[3,-4],[2,5],[1,9],[1,18],[9,-8],[1,-21],[-2,-25],[0,-22],[5,-46],[4,-15],[6,-26],[3,-9],[-5,2],[-2,-7],[1,-12],[4,-10],[-6,-1],[-2,1],[3,-6],[1,-1],[-2,-5],[-3,-6],[-2,-8],[0,-23],[-1,-6],[-4,5],[0,-10],[1,-10],[2,-11],[3,-8],[4,-5],[3,2],[2,-1],[1,-11],[1,-12],[0,-6],[-2,-7],[-3,-10],[-1,-4],[-1,-9],[-1,-4],[-3,-3],[-1,3],[0,4],[-1,4],[0,3],[2,3],[0,2],[-3,2],[-1,-2],[-7,-8],[-2,-6],[-1,-5],[-3,-20],[2,-28],[0,-10],[-2,-10],[-7,-29],[-4,3],[-5,1],[-4,-5],[-4,-11],[-1,-10],[3,-34],[-1,-13],[2,-8],[3,-8],[1,-11],[0,-9],[-1,0],[-2,3],[-4,1],[-8,-14],[0,-6],[2,-18],[-1,-7],[-1,-12],[0,-4],[0,-1],[1,-7],[2,-4],[2,-4],[2,-4],[1,-5],[1,-31],[-1,-127],[0,-5],[1,-6],[0,-6],[0,-15],[2,-12],[0,-5],[-1,-6],[-2,-11],[-1,-6],[2,-7],[9,-14]],[[47905,53047],[-15,-3],[-4,1],[-6,6],[-4,2],[-19,0],[-2,2],[-1,4],[-1,4],[-2,2],[-4,0],[-11,10],[-3,4],[-4,6],[-1,7],[-2,8],[-2,6],[-9,6],[-6,11],[-3,2],[-5,2],[-3,3],[-2,4],[-3,4],[-5,4],[-12,7],[-9,3],[-18,14],[-33,9],[-10,7],[-12,28],[-4,5],[-6,2],[-29,22],[-30,47],[-16,19],[-39,30],[-9,9],[-19,36],[-8,9],[-8,9],[-3,1],[-6,5],[-8,3],[-7,5],[-7,6],[-4,8],[1,1],[0,1],[0,2],[-12,7],[-10,12],[-16,30],[-4,6],[-10,9],[-8,14],[-5,4],[-5,5],[-4,11],[4,0],[-4,10],[-5,7],[-6,5],[-6,6],[-32,65],[-2,8],[-3,22],[-3,10],[-3,6],[-4,7],[-5,5],[-4,3],[-1,0],[-8,4],[-1,0],[-1,5],[4,9],[0,6],[-4,14],[-28,34],[-40,83],[-39,66],[-9,24],[-3,4],[-4,6],[-2,4],[-1,6],[1,8],[0,7],[-3,9],[-4,7],[-5,6],[-4,2],[-3,3],[-20,33],[-11,27],[-15,20],[-5,4],[-11,5],[-4,6],[-3,7],[0,8],[3,-3],[2,0],[2,2],[1,6],[-5,2],[-4,7],[-4,8],[-4,7],[-9,12],[-5,4],[-5,0],[0,-4],[14,-16],[7,-11],[2,-14],[-5,12],[-7,9],[-9,8],[-56,30],[-36,38],[-6,11],[2,10],[2,-5],[1,-3],[2,-2],[3,-2],[-4,16],[-1,15],[2,13],[7,13],[-4,0],[-3,-1],[-2,-3],[-3,-4],[-6,28],[-9,21],[-11,15],[-44,51],[-50,38],[-33,31],[-6,15],[0,24],[1,13],[1,6],[0,7],[-4,16],[-1,2],[-5,4],[-6,7],[-5,8],[-2,6],[-7,21]],[[56350,56936],[0,-16],[40,-121],[29,-43],[50,-104],[46,-157],[47,-158],[5,-26],[9,-103],[-2,-22],[-4,-18],[-10,-33],[-3,-17],[0,-7],[3,-14],[0,-8],[0,-19],[1,-5],[2,-8],[2,0],[1,-1],[2,-5],[0,-4],[-7,-46],[0,-10],[3,-18],[0,-9],[-3,-7],[-3,-6],[-11,-29],[-6,-13],[-3,-4],[-5,-2],[-9,1],[-4,-3],[-3,-10],[-2,-5],[-6,-75],[1,-15],[4,-12],[7,-9],[8,2],[10,21],[5,0],[2,-13],[0,-21],[-4,-34],[-5,-16],[-11,-27],[-4,-16],[0,-14],[2,-16],[5,-13],[5,-5],[4,2],[7,10],[4,5],[5,2],[5,-1],[4,-4],[4,-6],[4,-3],[9,0],[9,-5],[4,3],[9,9],[9,0],[18,-8],[16,3],[11,-10],[5,-2],[8,3],[29,-10],[15,5]],[[54499,51794],[-2,2],[-3,4],[0,6],[2,8],[0,5],[-1,2],[-4,5],[-1,3],[0,12],[-1,5],[-1,5],[-2,6],[-5,13],[-4,15],[-2,12],[0,5],[0,22],[-1,11],[-4,14],[-1,7],[0,14],[5,20],[1,11],[-1,12],[-4,21],[-1,12],[1,7],[2,8],[3,9],[-4,1],[-3,1],[-4,-2],[-3,1],[-1,5],[1,8],[-1,20],[1,16],[7,16],[2,14],[0,15],[-3,14],[-4,12],[-4,20],[-6,18],[-2,5],[-3,3],[-2,0],[-3,-2],[-4,-2],[-1,2],[-1,3],[-1,3],[-4,30],[-2,11],[-5,13],[-5,9],[-4,4],[-12,-3],[-2,1],[-2,4],[-2,1],[-2,-2],[-3,-3],[-1,-1],[-3,1],[-3,1],[-2,3],[-20,47],[-27,59],[-27,62],[-29,66],[-23,52],[-19,43],[-3,6],[-22,51],[-24,75],[-17,83],[5,0],[9,-5],[5,-1],[5,2],[11,11],[6,3],[5,5],[0,7],[-4,5],[-4,1],[-4,0],[-1,4],[-1,9],[-2,8],[-4,3],[-4,-1],[-4,6],[-1,16],[-1,33],[-3,36],[-2,16],[-4,17],[-10,25],[-2,8],[-2,15],[-2,6],[-3,5],[-12,9],[-44,64],[-10,21],[-7,25],[-4,28],[-2,45],[-2,10],[1,4],[1,6],[1,15],[0,6],[-4,56],[-1,7],[-2,6],[-1,6],[1,16],[-2,5],[-1,5],[-1,7],[0,9],[0,2],[2,22],[-1,23],[0,30],[-2,13],[-2,14],[-3,12],[-4,9],[-6,6],[-12,9],[-6,8],[-4,10],[-1,7],[2,1],[3,7],[3,10],[1,10],[1,8],[1,2],[3,9],[2,10],[0,5],[4,3],[1,6],[0,17],[1,10],[4,17],[1,6],[0,18],[0,7],[-2,10],[-4,14],[-1,8],[-1,10],[1,9],[5,27],[4,32],[2,9],[-2,12],[-2,63],[-4,11],[-2,12],[-3,12],[-4,0],[-7,-10],[-4,-1],[-9,2],[-5,0],[-4,7],[-2,9],[-2,11],[-2,9],[-4,9],[-4,7],[-3,8],[-2,5],[-2,7],[-1,5],[1,4],[2,5],[1,0],[3,-4],[2,0],[1,2],[1,5],[1,3],[1,6],[0,3],[-1,3],[0,2],[4,7],[6,14],[4,2],[8,17],[4,11],[3,10],[11,-1],[40,41],[4,7],[11,28],[3,11],[0,7],[0,6],[-1,14],[1,7],[7,20],[31,153],[3,15],[4,9],[5,6],[16,18],[4,6],[2,8],[5,27],[5,25],[10,51],[4,37],[2,11],[3,10],[2,3],[7,7],[2,6],[1,6],[-1,34],[0,6],[1,6],[4,14],[5,28],[7,11],[4,8],[21,25],[13,21],[1,4],[3,10],[1,3],[2,1],[5,0],[1,1],[1,8],[-5,10],[1,10],[15,43],[2,8]],[[54300,54925],[9,-6],[10,-2],[21,6],[12,-2],[14,-28],[11,-8],[10,1],[36,18],[5,4],[9,12],[4,9],[6,18],[4,9],[5,5],[6,4],[18,5],[9,7],[6,0],[6,2],[6,7],[10,15],[5,5],[25,7],[3,5],[1,9],[0,40],[2,12],[4,8],[3,-1],[3,-2],[2,-2],[4,2],[2,5],[3,15],[2,6],[4,8],[5,5],[11,7],[1,-5],[0,-5],[0,-5],[-2,-18],[1,-11],[3,-9],[5,-7],[3,-3],[3,-1],[2,-2],[2,-6],[2,-8],[-1,-6],[-1,-6],[-1,-7],[2,-13],[2,-7],[11,-6],[7,-7],[6,-11],[10,-24],[6,-22],[4,-5],[7,1],[2,3],[0,1],[6,10],[1,0],[3,-1],[1,1],[1,5],[-1,3],[-2,2],[0,5],[2,11],[3,8],[5,5],[10,7],[12,4],[6,-2],[2,7],[2,4],[3,1],[9,-3],[0,2],[0,5],[1,6],[4,7],[6,-4],[3,-4],[1,-3],[2,0],[4,5],[5,11],[10,25],[5,10],[2,0],[2,0],[2,2],[1,11],[2,7],[4,7],[0,1],[4,6],[38,29],[5,7],[4,9],[13,-8],[4,4],[2,14],[5,7],[5,3],[10,2],[6,3],[5,6],[6,17],[5,4],[7,0],[5,0],[38,-14],[11,-1],[11,4],[22,18],[26,13],[122,7],[22,10],[8,25],[0,28],[6,24],[9,17],[12,13],[16,12],[5,5],[6,11],[12,38],[9,18],[4,11],[2,14],[3,11],[28,67],[11,48],[3,4],[3,3],[3,9],[9,13],[-6,14],[-8,13],[-5,6],[-2,9],[-33,30],[-4,5],[-1,8],[-1,10],[-2,6],[-4,-6],[-5,8],[0,9],[6,20],[3,-2],[2,0],[2,3],[1,5],[1,6],[1,2],[3,1],[4,5],[5,4],[2,2],[0,5],[2,4],[4,8],[6,9],[11,11],[11,7],[7,-5],[2,0],[3,1],[7,-4],[2,1],[1,7],[4,3],[11,1],[6,3],[2,0],[4,-3],[3,-6],[2,-2],[3,7],[3,-5],[5,-4],[5,-2],[5,-1],[4,1],[10,9],[3,-3],[21,1],[1,-1],[2,-2],[1,0],[3,3],[6,-1],[8,8],[9,3],[7,-10],[5,4],[12,0],[2,2],[2,3],[6,6],[3,1],[3,0],[7,4],[6,2],[23,-3],[4,3],[3,11],[4,-4],[1,0],[3,2],[7,10],[2,0],[3,0],[2,1],[1,5],[0,3],[1,3],[1,3],[1,1],[2,-2],[1,-9],[2,-1],[1,2],[0,3],[0,4],[1,3],[8,14],[2,2],[2,0],[4,-4],[3,0],[0,2],[0,4],[0,4],[2,2],[3,-3],[2,-7],[3,-7],[5,-3],[4,2],[8,12],[4,2],[3,-1],[3,-5],[6,-10],[6,2],[23,-2],[5,2],[2,2],[5,8],[3,3],[3,0],[3,-3],[6,13],[3,15],[4,12],[7,5],[1,6],[-2,14],[-2,14],[5,6],[3,2],[2,3],[1,6],[1,7],[1,6],[2,-1],[6,-7],[0,1],[6,-1],[4,-3],[2,-1],[15,0],[-4,25],[11,12],[13,8],[2,4],[3,-4],[2,6],[1,6],[2,6],[3,3],[1,1],[2,5],[1,2],[1,-2],[2,-2],[2,-2],[1,1],[2,12],[1,14],[2,13],[6,6],[3,5],[11,25],[2,9],[1,6],[3,4],[6,8],[1,5],[0,5],[2,2],[4,-4],[0,8],[-1,2],[-1,2],[0,4],[4,3],[2,8],[0,20],[1,9],[4,16],[1,11],[0,3],[2,3],[2,3],[1,1],[1,1],[0,1],[1,2],[1,1],[1,-2],[3,-6],[1,-1],[2,2],[2,3],[4,7],[1,1],[1,-1],[1,0],[0,2],[0,9],[0,2],[5,21],[2,11],[16,21],[2,1],[1,9],[2,9],[14,34],[4,7],[4,-5],[11,-9],[4,-2],[10,8],[9,19],[7,24],[15,70],[7,22],[9,11],[3,-1],[3,-2],[4,-1],[3,2],[1,-1],[8,6],[2,2],[7,3],[4,9],[2,12],[3,12],[2,2],[4,1],[2,1],[2,6],[-1,5],[-1,9],[0,6],[1,12],[8,31],[-2,4],[0,4],[1,4],[0,4],[-2,5],[-5,12],[-1,5],[-1,10],[-2,23],[-1,12],[1,11],[2,18],[1,12],[2,9],[3,5],[5,3],[4,1],[2,2],[1,4],[2,4],[3,2],[2,1],[5,3],[3,0],[6,-5],[3,-2],[1,5],[1,1],[6,13],[9,12],[5,5],[17,9],[3,7],[-3,12],[2,8],[2,12],[3,12],[5,4],[23,-5],[5,2],[8,-9],[3,13],[3,18],[8,14],[3,8],[4,6],[4,-4],[2,0],[3,4],[6,10],[3,4],[6,5],[6,4],[1,0],[7,2],[5,3],[3,5],[5,12],[3,4],[3,2],[5,-2],[4,-3],[3,-1],[3,6],[6,-13],[6,0],[6,3],[6,2],[3,-2],[5,-5],[3,-1],[10,0],[2,0],[11,-6],[7,-12],[16,-12],[16,-3]],[[56350,56936],[11,84],[1,5],[5,11],[1,6],[0,12],[1,12],[1,10],[5,21],[1,11],[0,17],[-1,8],[-7,44],[-3,42],[-4,7],[-7,0],[-26,-6],[-3,3],[0,18],[-1,5],[-7,14],[-22,16],[-10,10],[-10,20],[-8,25],[-6,28],[-1,28],[15,183],[5,30],[1,10],[0,9],[-2,3],[-2,-8],[-4,5],[-11,-5],[-18,-12],[-3,-4],[-1,-2],[-2,-2],[7,65],[0,8],[0,7],[-1,7],[-20,132],[-9,30],[-1,8],[7,19],[13,68],[-3,8],[-29,22],[-35,48],[-7,-24],[-9,-18],[-11,-13],[-13,-8],[-11,-3],[-12,0],[-11,5],[-10,10],[-6,12],[-11,43],[-7,20],[-1,6],[0,4],[5,18],[7,45],[23,90],[8,24],[9,19],[5,6],[30,24],[4,7],[26,57],[10,27],[2,24],[-3,14],[-10,25],[-4,14],[-1,11],[0,34],[-4,23],[-18,35],[-5,23],[0,13],[1,9],[-1,9],[-4,11],[-7,13],[0,6],[7,23],[23,60],[2,7],[7,14],[8,11],[44,44],[6,7],[10,21],[6,7],[8,3],[6,5],[4,10],[1,18],[-2,19],[-3,11],[-5,7],[-15,5],[-5,6],[-3,8],[-3,13],[-1,7],[1,5],[2,10],[1,2],[4,4],[2,3],[0,4],[-1,4],[-2,3],[0,4],[-4,63],[-3,8],[-8,14],[-6,22],[5,21],[11,17],[12,12],[56,31],[2,5],[2,8],[-1,5],[-4,19],[-1,11],[-3,32],[0,15],[3,9],[10,15],[5,10],[2,10],[0,11],[2,15],[3,12],[25,54],[5,10],[7,7],[9,8],[2,5],[13,47],[2,13],[3,69],[0,20],[-3,19],[-6,16],[-6,14],[-5,15],[-2,17],[2,19],[6,13],[22,28],[17,45],[8,10],[6,2],[14,3],[42,-19],[21,5],[37,27],[18,8],[32,0],[34,-10],[32,-23],[7,-1],[4,18],[0,35],[0,137],[0,138],[0,137],[0,138],[0,137],[-1,138],[0,138],[0,137],[0,138],[0,137],[0,138],[0,137],[0,138],[0,137],[0,138],[0,138]],[[56939,63496],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,-1],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[28,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[28,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[11,0],[3,4],[14,56],[1,4],[12,51],[8,15],[5,6],[5,2],[5,-2],[6,-5],[6,-12],[2,-13],[0,-15],[-7,-38],[-9,-52],[17,0],[7,0],[29,0],[28,0],[29,0],[28,0],[29,0],[28,0],[28,0],[29,0],[28,0],[23,0],[6,0],[28,0],[29,0],[28,0],[29,0],[28,0],[28,0],[6,0],[59,0],[65,0],[64,0],[63,0],[2,0],[65,0],[64,0],[65,0],[64,0],[65,0],[65,0],[64,0],[65,0],[65,0],[64,0],[65,0],[65,0]],[[60245,63496],[-1,-9],[-1,-3],[-1,-1],[-4,-1],[-5,-4],[6,-10],[3,-7],[0,-72],[7,-81],[-3,-17],[4,-5],[1,-7],[0,-7],[2,-7],[3,-6],[2,-6],[15,-71],[36,-111],[23,-45],[30,-76],[2,-10],[0,-11],[-2,-10],[-4,-5],[-5,4],[-6,-8],[-5,8],[-7,27],[-2,5],[-2,7],[-1,7],[2,3],[3,-2],[2,-5],[2,-6],[1,-5],[7,-10],[3,-3],[3,2],[-1,5],[-7,16],[-4,23],[-3,8],[-4,-3],[-8,12],[-2,-6],[-3,1],[-1,6],[-2,7],[1,8],[2,6],[0,7],[-3,8],[-7,3],[-5,-10],[-1,-16],[0,-14],[2,-3],[3,-1],[1,-4],[-1,-7],[-1,-5],[1,-15],[0,-7],[-1,-7],[-3,-5],[-3,-2],[-2,-3],[0,-10],[2,-5],[8,-19],[7,-35],[4,-37],[2,-78],[4,-37],[13,-70],[0,-39],[-1,-9],[-1,-10],[-3,-5],[-8,2],[-1,-8],[1,-17],[-2,-42],[2,-24],[0,-9],[6,-35],[3,-21],[1,-19],[2,-28],[-5,-23],[0,-4],[-1,-6],[-3,-9],[-1,-5],[0,-16],[2,-20],[17,-94],[2,-20],[0,-39],[-1,-10],[-1,-7],[-5,-13],[-1,-9],[2,-36],[0,-11],[0,-5],[1,-6],[5,-15],[6,-34],[11,-126],[2,-61],[1,-7],[2,-4],[3,-3],[1,-4],[0,-4],[-1,-8],[0,-4],[7,-19],[3,-30],[6,-38],[3,-24],[3,-31],[4,-11],[6,-22],[6,-23],[9,-17],[2,-7],[2,-7],[3,-3],[4,2],[3,4],[2,-1],[16,5],[10,8],[1,-11],[6,-6],[5,-2],[6,1],[2,-7],[0,-10],[5,-8],[-2,-23],[4,5],[3,2],[3,-5],[5,-10],[31,-18],[12,-23],[8,-26],[12,-24],[7,-11],[12,-9],[4,-9],[-4,-10],[-7,-8],[-2,-20],[8,-34],[13,-25],[15,-7],[11,4],[2,22],[5,3],[10,12],[2,-6],[-3,-5],[-4,-5],[-2,-4],[-1,-5],[0,-6],[0,-7],[-4,-7],[-4,-2],[-3,0],[-4,0],[-2,-6],[4,1],[10,3],[3,-1],[3,-3],[2,-4],[3,-4],[4,-2],[7,-1],[4,-3],[4,-2],[3,3],[1,5],[-4,4],[5,8],[5,-11],[9,-29],[-3,-8],[5,-6],[7,-1],[5,6],[2,-9],[1,-23],[2,-8],[6,-2],[2,9],[0,14],[-4,12],[5,-6],[11,-25],[2,-9],[0,-9],[1,-6],[3,-13],[-1,-6]],[[60722,61132],[-39,-67],[-8,-23],[-17,-91],[-8,-25],[-5,-9],[-14,-14],[-5,-9],[-1,-12],[0,-12],[-1,-12],[-4,-9],[-7,-2],[-5,6],[-4,9],[-4,5],[-10,-6],[-2,-1],[-1,-5],[0,-4],[1,-4],[0,-6],[-3,-11],[-5,-8],[-4,-1],[-1,13],[0,12],[0,10],[-3,6],[-6,0],[-7,-5],[-19,-26],[-9,-23],[-5,-9],[-7,-3],[-6,4],[-8,17],[-6,3],[-10,-11],[-12,-44],[-11,-12],[-11,-4],[-37,-23],[-3,-4],[-1,-7],[3,-27],[1,-10],[-2,-25],[-1,-12],[-6,-23],[-2,-13],[-2,-12],[-16,-38],[-26,15],[-8,-1],[-13,-17],[-8,-1],[-5,1],[-15,-5],[-2,1],[-11,14],[-3,2],[-7,2],[-5,4],[-4,6],[-5,4],[-5,-1],[-2,-5],[-1,-5],[1,-5],[5,-16],[1,-11],[-1,-11],[-7,-20],[1,-7],[3,-6],[3,-7],[0,-7],[0,-24],[0,-2],[2,-6],[0,-3],[0,-3],[-2,-4],[-1,-3],[-1,-35],[-7,-36],[-3,-8],[-9,-14],[-4,-8],[-3,-11],[0,-10],[0,-20],[-1,-11],[-3,-24],[0,-8],[2,-13],[3,-11],[5,-9],[4,-11],[0,-2],[2,-10],[0,-11],[-1,-10],[-1,-13],[2,-12],[5,-24],[0,-13],[-2,-15],[-12,-25],[-5,-15],[-9,-54],[-12,-74],[-14,-78],[-7,-25],[-14,-30],[-3,-13],[-15,-113],[-1,-25],[4,-26],[-9,-13],[-6,-18],[-14,-86],[-5,-17],[-20,-41],[-3,-10],[0,-13],[3,-56],[6,-99],[2,-33],[3,-58],[4,-74],[4,-73],[7,-109]],[[60351,62820],[3,-4],[1,-1],[1,-8],[-3,-39],[-2,-10],[-3,0],[-3,14],[0,18],[2,18],[4,12]],[[61771,57852],[15,32],[5,2],[7,-4],[13,-12],[43,-81],[4,12],[1,0],[9,6],[4,11],[2,5],[9,4],[3,3],[2,16],[-3,19],[-1,18],[12,23],[7,33],[4,8],[3,-1],[3,-5],[3,0],[61,54]],[[61977,57995],[4,-6],[3,-10],[2,-12],[3,-10],[27,-65],[6,-22],[4,-8],[5,-3],[4,7],[0,-21],[1,-10],[1,-10],[2,-8],[3,-7],[2,-7],[1,-10],[0,-23],[1,-12],[2,-8],[10,-31],[1,-10],[-1,-34],[2,-45],[-1,-19],[-4,-17],[-6,-15],[-8,-10],[-2,-1],[-7,-3],[-8,-8],[-6,-2],[-12,-1],[-5,-3],[-9,-13],[-21,-54],[-2,-2],[-1,-1],[-3,-3],[-2,-2],[-1,-4],[-1,-9],[-2,-3],[-4,-3],[-15,-2],[-4,-3],[-4,-6],[-4,-4],[-8,6],[-5,-2],[-26,-19],[-7,-9],[-6,-15],[-20,-74],[-2,-5],[-2,-3],[-9,-6],[-3,0],[-6,3],[-8,-1],[-2,1],[-1,2],[-3,8],[-2,2],[-6,-1],[-3,-5],[0,-4],[4,2],[1,-13],[0,-1],[0,-14],[2,-12],[9,-8],[5,-10],[4,-3],[4,2],[4,8],[3,2],[3,-1],[2,-3],[3,-1],[2,3],[2,7],[-2,5],[-3,3],[-1,3],[2,10],[6,8],[13,11],[18,4],[6,4],[3,4],[2,5],[3,2],[3,-5],[2,-2],[7,0],[39,1],[6,3],[6,-1],[6,-7],[5,2],[3,9],[2,7],[3,2],[2,-6],[4,-34],[0,-1],[3,-9],[3,-5],[9,-10],[4,-8]],[[60722,61132],[1,-6],[2,-6],[2,-19],[12,-34],[1,-6],[0,-12],[1,-6],[5,-14],[1,-4],[1,-10],[26,-82],[20,-92],[19,-69],[7,-50],[3,-12],[-3,-23],[5,-17],[7,-17],[4,-18],[2,-23],[2,-20],[8,-34],[1,-12],[1,-24],[2,-12],[4,-17],[2,-24],[1,-10],[9,-43],[6,-46],[-3,4],[5,-27],[2,-13],[0,-17],[-5,-11],[4,-27],[-1,-15],[-2,4],[1,-9],[2,-3],[3,0],[2,-2],[-1,-21],[1,-5],[1,-6],[1,-4],[1,-5],[1,-8],[-1,-23],[1,-7],[1,-6],[2,-9],[1,-8],[-1,-7],[-1,-15],[0,-8],[8,-77],[1,-27],[1,-9],[7,-29],[9,-77],[6,-21],[16,-21],[3,-9],[2,-4],[10,-9],[3,-5],[0,-8],[-1,-6],[-2,-6],[-1,-7],[1,-7],[4,-8],[1,-5],[0,-16],[2,-9],[7,-18],[-4,0],[-4,-6],[-1,-9],[2,-9],[1,5],[3,6],[3,2],[2,-5],[0,-11],[-6,-5],[-6,-2],[-3,0],[1,-6],[5,-16],[1,-20],[1,-4],[4,-3],[6,-2],[6,2],[3,5],[2,7],[5,1],[6,-2],[4,-4],[7,-19],[14,-97],[1,-2],[5,-4],[2,-2],[0,-11],[2,-10],[2,-8],[3,-6],[-4,-32],[-1,-51],[0,-2],[3,-4],[1,-2],[0,-9],[3,-5],[4,0],[4,4],[2,-11],[4,-2],[4,3],[6,2],[2,3],[2,7],[0,7],[0,5],[-2,5],[1,4],[4,5],[5,20],[1,11],[-6,20],[-3,24],[-2,8],[-4,1],[-2,-10],[-2,-5],[-2,13],[-1,11],[1,31],[-1,6],[-1,12],[0,6],[0,7],[2,3],[2,1],[1,4],[2,20],[2,6],[4,-6],[2,0],[0,4],[2,12],[2,0],[0,-2],[0,-6],[3,5],[3,13],[3,6],[4,-15],[6,-12],[26,-45],[4,-5],[6,-3],[3,-1],[2,-4],[4,-5],[2,-6],[1,-7],[-1,-6],[-2,-7],[-5,-8],[-2,-6],[-2,-5],[-4,-23],[3,1],[2,-1],[2,-4],[0,-6],[0,-2],[-3,-2],[0,-2],[0,-3],[1,-2],[1,-2],[1,-5],[7,-10],[1,-5],[1,-7],[3,-16],[2,-7],[0,-7],[-1,-8],[0,-7],[1,-7],[3,3],[4,-2],[3,-4],[1,-6],[1,-5],[1,-1],[1,-1],[1,-4],[0,-5],[-2,-9],[0,-4],[3,-11],[6,-6],[21,-16],[4,-4],[2,-3],[2,-11],[4,2],[7,11],[6,5],[4,12],[4,13],[4,10],[-1,-10],[1,-8],[3,-4],[5,2],[1,5],[-1,7],[1,5],[5,3],[3,0],[1,1],[3,-5],[-1,-2],[0,-4],[0,-4],[4,-2],[2,-2],[0,-3],[1,-3],[3,0],[2,1],[2,3],[1,4],[1,4],[-1,4],[-1,5],[0,11],[1,-3],[2,-6],[1,-3],[7,-4],[1,-5],[0,-5],[0,-5],[1,-6],[2,-2],[2,0],[1,2],[3,0],[5,-1],[3,-3],[1,-5],[1,-23],[1,-5],[8,-7],[-1,10],[2,3],[8,-1],[1,-3],[1,-5],[-1,-3],[-4,3],[-2,-4],[13,-29],[0,2],[1,1],[2,-1],[1,-5],[0,-5],[0,-16],[-2,-13],[0,-7],[2,-8],[7,-10],[2,-7],[0,-12],[3,4],[3,3],[3,0],[3,-2],[0,11],[6,-6],[15,2],[8,-9],[9,-13],[8,-5],[18,-1],[33,-15],[3,-3],[3,-9],[5,-22],[3,-10],[13,-18],[8,-12],[7,-17],[4,-20],[1,-22],[3,-9],[4,-6],[5,-4],[2,-5],[1,-5],[5,-13],[4,-24],[6,-14],[13,-23],[7,-18],[2,-8],[2,-11],[2,-19],[1,-7],[3,-7],[4,-6],[9,-11],[5,-9],[4,-11],[10,-39],[3,-25],[2,-9],[18,-11],[4,0],[9,7],[3,1],[2,-3],[6,-19],[4,-10],[2,-3],[4,-2],[3,1],[6,3],[2,0],[5,-3],[10,-14],[4,-3],[3,-4],[1,-11],[1,-12],[1,-9],[12,-19],[2,-8],[1,0],[6,-18],[2,-8],[1,-1],[2,-2],[1,-1],[1,-7],[2,-13],[2,-6],[3,-2],[3,3],[3,3],[1,0],[1,-4],[5,-7],[2,-3],[1,-6],[1,-14],[1,-5],[7,-10],[1,0],[1,-9],[2,1],[2,3],[0,2],[-2,3],[-4,10],[-1,4],[0,1],[-1,1],[-1,2],[0,4],[1,1],[4,-1],[1,0],[0,16],[-4,7],[-4,5],[-6,1],[-3,1],[1,4],[3,3],[3,0],[10,-16],[10,-29],[4,-4],[5,-6],[2,-15],[0,-24],[3,-20],[2,-9],[3,-3],[3,-7],[2,-15],[5,-68],[3,-15],[2,-28],[0,-3],[0,-2],[9,-10],[6,-4],[12,-2],[6,2],[3,5],[2,8],[2,9],[3,-2],[1,-4],[1,-5],[1,-5],[1,-3],[2,-2],[2,-3],[0,-7],[2,-7],[14,-25],[10,-34],[4,-5],[5,-1],[5,-5],[4,-5],[3,-7],[2,-9],[3,-33],[4,-22],[1,-11],[1,-17],[1,-9],[2,-6],[4,-2],[4,2],[3,4],[4,3],[4,-16],[5,-9],[8,-5],[10,-2],[-1,-3],[-3,-9],[3,0],[2,1],[3,3],[-1,1],[6,7],[4,8],[2,9],[1,5],[0,4],[0,3],[3,3],[-2,6],[0,6],[1,5],[1,4],[8,-12],[4,-8],[1,-6],[2,-6],[3,-5],[3,-5],[3,-5],[2,-7],[0,-18],[1,-9],[7,-28],[-1,-5]],[[61218,59733],[4,-1],[1,-1],[3,-24],[-2,-11],[-4,-4],[-6,6],[-2,1],[-2,1],[-14,-7],[-6,-1],[-6,4],[-9,10],[-7,2],[-13,-6],[-3,1],[-2,1],[-1,2],[-1,4],[-2,3],[0,1],[-1,2],[-3,-9],[-3,-5],[-5,-1],[-7,3],[-11,9],[-1,0],[-4,2],[-6,-3],[-3,7],[-2,5],[-7,45],[3,0],[2,-2],[0,-2],[1,0],[-2,-4],[2,-3],[2,-4],[0,-2],[1,-2],[1,-6],[2,0],[2,3],[4,-3],[4,-5],[3,-3],[3,1],[12,7],[-5,19],[-7,16],[-8,10],[-9,4],[-10,-4],[-3,2],[-2,10],[1,12],[2,7],[4,1],[6,-9],[2,-3],[4,0],[1,5],[-4,10],[-1,10],[0,2],[5,5],[7,2],[3,-1],[1,0],[1,7],[-2,10],[-3,8],[-3,3],[-10,-1],[-3,3],[-3,10],[10,-1],[11,-5],[10,-9],[6,-8],[2,-3],[3,-8],[1,-4],[-2,-9],[-2,-6],[-1,-7],[2,-4],[3,-1],[2,2],[3,3],[-1,2],[-1,4],[0,4],[2,2],[3,-4],[1,-7],[0,-1],[-2,-48],[1,-9],[2,-7],[0,-2],[5,-17],[1,-5],[3,0],[16,-10],[4,17],[2,3],[2,2],[-4,3],[-5,3],[-3,7],[2,6],[5,4],[7,1],[5,-1],[3,-2],[3,-1],[1,-1],[1,-1],[2,-3],[1,-5],[0,-5],[1,-5],[3,-2],[3,-1],[6,-9],[4,-1]],[[61137,59973],[-4,-8],[-1,-9],[2,-3],[2,-3],[2,-4],[3,-4],[1,-5],[-5,-3],[-8,5],[-7,8],[-11,3],[-3,6],[0,9],[2,9],[5,4],[6,1],[3,4],[-1,5],[-1,5],[0,7],[1,6],[2,3],[7,-12],[2,-2],[2,-1],[5,-5],[3,-7],[-2,-6],[-5,-3]],[[54470,78222],[-11,-9],[-6,-5],[-1,-1],[-12,-4],[-1,-1],[-3,-4],[0,-2],[2,-1],[0,-4],[-2,-19],[0,-1],[-1,-9],[1,-10],[3,-15],[6,-5],[3,-10],[1,-13],[-6,9],[-3,3],[-11,3],[-19,14],[-8,3],[-7,-1],[-11,-7],[-8,-5],[-7,0],[-22,4],[-4,4],[-1,-8],[0,-8],[-2,-5],[-1,-2],[-2,-1],[-3,-2],[-4,2],[-6,0],[-6,-3],[-4,-4],[-3,-9],[0,-1],[-1,-5],[-1,-4],[-1,-2],[-5,-6],[-8,-2],[-7,5],[-1,2],[-5,6],[-8,5],[-15,-1],[-36,-3],[-9,1],[-19,3],[-5,1],[-7,1],[-16,-7],[-10,-22],[-5,11],[-4,1],[-4,-3],[-6,-6],[-1,0],[-5,-1],[-4,1],[-3,-2],[-5,-10],[-3,-10],[-2,-10],[-2,-9],[-3,-10],[-3,-7],[-1,-2],[-6,-5],[-7,-1],[-3,2],[-5,-3],[-1,-3],[-2,-4],[-3,-5],[-2,-8],[-2,1],[-1,0],[-2,0],[-5,-9],[-3,-3],[-3,-1],[-6,-1],[-3,-1],[-4,-9],[-2,-11],[-2,-5],[-1,-5],[-5,-3],[-3,5],[-3,11],[-4,7],[-10,-3],[-4,1],[-4,3],[-5,3],[-2,3],[0,3],[-2,3],[-3,1],[-9,-3],[-33,1],[-26,1],[-1,0],[-3,2],[-15,19],[-4,3],[-5,2],[-5,1],[-5,-2],[-4,-1],[-5,1],[-25,18],[-8,2],[-18,-5],[-4,0],[-19,7],[-4,0]],[[53805,78019],[-4,-1],[-4,1],[-34,16],[-12,0],[-2,3],[-4,6],[-2,1],[-17,-2],[-12,4],[-28,-9],[-11,1],[-6,3],[-18,16],[-23,8],[-65,7],[-15,15],[-7,3],[-3,1],[-2,0],[-4,-3],[-3,0],[-2,2],[-6,5],[-2,2],[-14,2],[-16,-3],[-4,1],[-5,3],[-8,9],[-9,2],[-6,1],[-12,7],[-9,13],[-6,19],[-2,13],[-5,4],[-5,1],[-6,3],[-3,3],[-1,3],[-1,4],[0,7],[1,7],[1,4],[1,4],[-1,8],[-2,13],[-5,4],[-11,1],[-4,2],[-2,3],[-1,3],[-3,5],[-3,2],[-7,2],[-3,2],[4,6],[0,5],[-2,6],[-2,6],[-1,14],[-1,7],[-2,6],[3,10],[16,14],[6,11],[0,8],[1,8],[-7,3],[-13,-4],[-5,-1],[-28,-21],[-20,-2],[-12,-6],[-12,-9],[-10,-11],[-12,-3],[-3,-3],[-6,-7],[-3,-1],[-5,3],[-9,10],[-5,1],[-2,-1],[-3,1],[-14,4],[-7,-1],[-8,-3],[-3,-2],[-2,-1],[-3,1],[-2,2],[-2,2],[-1,3],[-2,1],[-5,2],[-3,-1],[-2,-3],[-2,-4],[-10,-14],[-8,1],[-9,6],[-10,3],[-19,-5],[-20,-9],[-4,-4],[-18,-26],[-3,-7],[-3,-21],[-5,-18],[0,-3],[0,-6],[0,-3],[-2,-2],[-3,-2],[-1,-1],[-6,-16],[-4,-6],[-4,-1],[-4,3],[-10,1],[-5,-1],[-9,-5],[-3,0],[-3,2],[-5,6],[-2,2],[-3,0],[-5,-3],[-3,1],[-8,6],[-3,2],[-6,-3],[-3,0],[-2,5],[2,3],[6,8],[1,4],[-2,6],[-22,18],[-4,2],[-5,-1],[-28,-11],[-12,2],[-9,10]],[[52903,78223],[0,13],[3,20],[-1,10],[-3,5],[-9,10],[-6,14],[-3,5],[-1,1],[-2,1],[-2,-1],[-8,-7],[-7,-11],[-4,-14],[-1,-11],[-7,-1],[-5,3],[-4,-2],[-5,-10],[-1,-8],[0,-5],[-1,-4],[-3,-6],[-12,-9],[-7,-3],[-2,0],[-4,0],[-12,6],[-6,5],[-11,15],[-30,14],[-6,8],[-4,7],[0,6],[0,6],[1,14],[1,6],[0,3],[-1,2],[-1,0],[-2,1],[1,7],[-53,24],[-4,1],[-15,-3],[-5,2]],[[52661,78337],[8,15],[2,15],[-3,15],[-7,13],[-8,8],[0,5],[3,9],[0,4],[-3,8],[-2,5],[-1,5],[1,9],[-4,6],[-3,5]],[[52644,78459],[9,22],[10,17],[1,4],[1,10],[1,6],[11,19],[3,9],[0,25],[-8,11],[-10,6],[-8,18],[-1,4],[-1,10]],[[62434,72466],[-3,-17],[0,-6],[2,-11],[2,-4],[1,-1],[3,-1],[2,-3],[1,-4],[1,-9],[1,-3],[3,-1],[5,3],[3,1],[2,-2],[3,-6],[6,-6],[2,-5],[0,-6],[-3,-7],[-2,-16],[2,-10],[2,-10],[1,-13],[-1,-14],[-4,-11],[-10,-21],[-3,-14],[2,-11],[6,-6],[7,-3],[9,1],[4,-1],[3,-5],[3,-6],[3,-3],[3,-2],[4,0],[4,-4],[4,-10],[7,-21],[3,-13],[0,-11],[-6,-21],[-3,-21],[0,-12],[-1,-1],[-3,-3],[-1,-1],[-1,-10],[4,-8],[1,-2],[4,-6],[4,-7],[0,-8],[2,-5],[2,-4],[3,-6],[1,-8],[0,-5],[1,-6],[4,-6],[7,-6],[8,1],[16,11],[7,-1],[5,-11],[3,-15],[1,-13],[1,-26],[2,-10],[5,-12],[-7,-7],[2,-7],[5,-7],[4,-7],[1,-12],[0,-27],[1,-12],[9,-20],[3,-12],[-1,-12],[-3,-9],[-4,-12],[-1,-12],[1,-10],[5,-9],[6,-1],[6,3],[6,7],[5,2],[9,8],[8,1],[6,-4],[10,-7],[11,-17],[3,-4],[8,-2],[8,-13],[13,-32],[7,-30],[3,-8],[5,-3],[11,6],[3,-1],[5,-6],[5,1],[6,5],[6,10],[3,0],[3,-2],[3,-1],[9,6],[18,-2],[5,4],[5,5],[5,3],[5,0],[8,-6],[2,-1],[1,-2],[2,-12],[1,-4],[2,-3],[2,-3],[6,-5],[6,1],[11,4],[6,4],[4,5],[5,5],[6,-1],[5,-6],[2,-8],[-1,-9],[-3,-10],[-4,-7],[-9,-9],[-3,-10],[-5,-7],[-6,-1],[-10,1],[-14,-13],[-6,-2],[-20,1],[-5,-4],[-4,-7],[-2,-9],[-1,-10],[0,-10],[3,-23],[-1,-8],[-9,5],[-1,0],[-1,-1],[2,-12],[3,-11],[1,-3],[1,-2],[-1,-3],[-1,-2],[-2,-3],[-1,-4],[-1,-5],[0,-5],[4,-17],[18,-50],[15,-24],[7,-13],[2,-18],[-1,-2],[-2,-6],[-3,-7],[-2,-8],[0,-9],[4,-5],[11,0],[4,-6],[-1,-15],[-6,-18],[-4,-17],[6,-12],[-2,-7],[-3,-3],[-4,-1],[-7,-4],[-5,2],[-2,0],[-8,-8],[-4,-7],[-4,-2],[-9,7],[-3,-1],[-3,2],[-6,7],[-4,2],[-2,-1],[-4,-11],[0,-3],[1,-7],[-1,-3],[-2,-2],[-3,0],[-2,-1],[-3,-5],[-2,-7],[0,-8],[1,-8],[3,-16],[-1,-11],[-2,-11],[-2,-14],[-5,-10],[-7,5],[-3,3],[-5,4],[-7,0],[-2,-12],[1,-15],[-2,-14],[-7,-9],[-8,-2],[-4,-2],[-2,-7],[-1,-7],[0,-12],[-1,-7],[-7,-16],[-2,-9],[4,-8],[2,-3],[3,-3],[2,-4],[1,-5],[0,-7],[2,-3],[1,-3],[1,-4],[1,-11],[0,-12],[1,-10],[3,-7],[1,-4],[0,-6],[-1,-7],[-1,-4],[-1,0],[-7,4],[-19,2],[-8,4],[-10,9],[-11,5],[-1,-16],[3,-24],[-1,-17],[-1,-5],[-2,-4],[-1,-4],[-2,-3],[-15,-6],[-3,-8],[9,-49],[3,-12],[6,-7],[5,8],[6,0],[6,-7],[4,-11],[2,-14],[-1,-14],[-3,-29],[-2,-5],[-4,-11],[0,-6],[1,-7],[2,-5],[2,-5],[0,-6],[-3,-7],[-11,-16],[-4,-8],[-7,-11],[-3,-13],[-3,-15],[-4,-16],[-2,-5],[-3,-3],[-6,-5],[6,-14],[6,-6],[7,-1],[9,2],[1,-1],[25,-80],[4,-8],[4,-6],[4,-7],[2,-10],[1,-12],[2,-10],[3,-10],[3,-10],[5,-7],[13,-17],[1,-4],[1,-5],[0,-21],[1,-4],[5,2],[5,6],[8,14],[5,3],[13,1],[6,2],[-1,-18],[5,-9],[6,-7],[2,-13],[-3,-9],[-13,-14],[-5,-10],[5,-8],[8,-3],[9,2],[5,8],[1,2],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,-2],[9,-20],[4,-11],[2,-11],[1,-12],[0,-10],[1,-8],[10,-16],[11,-28],[8,-13],[4,-7],[3,-10],[0,-6],[-2,-12],[0,-4],[1,-6],[3,-4],[1,-5],[-2,-8],[-4,-8],[-8,-13],[-6,-8],[-4,-2],[-5,1],[-6,-1],[-5,-6],[-1,-7],[4,-6],[12,-2],[6,-4],[4,-7],[1,-8],[-2,-10],[-4,-8],[-4,-6],[-4,-8],[6,-23],[16,-4],[33,7],[30,-17],[27,-23],[8,-14],[26,-27],[1,-1],[13,-19],[18,-20],[12,-23],[83,-132],[9,-11],[9,-8],[8,-4],[10,2],[5,3],[13,13],[4,0],[15,-10],[6,-6],[4,-7],[3,-9],[5,-11],[7,-10],[2,-5],[0,-7],[-1,-3],[-2,-4],[-2,-11],[-1,-2],[0,-3],[2,-8],[1,-3],[8,-15],[2,-3],[1,-3],[5,-12],[1,-4],[3,-2],[2,-8],[5,-7],[1,-8],[0,-8],[-2,-6],[-1,-5],[-1,-6],[-1,-9],[0,-4],[2,-3],[5,-2],[3,-4],[2,-7],[3,-5],[4,-1],[5,-4],[1,-1],[4,-11],[7,-26],[4,-9],[10,-8],[2,-11],[2,-10],[9,-32],[2,-5],[5,-6],[3,-4],[1,-5],[2,-10],[1,-5],[4,-9],[11,-15],[4,-11],[0,-12],[-1,-14],[-42,-209],[-1,-102],[-1,-143],[91,0],[3,-3],[1,-8],[-1,-285],[0,-18],[30,-8],[3,-2],[3,-3],[4,-9],[4,-12],[3,-13],[2,-26],[1,-6],[2,-4],[3,-3],[4,-1],[3,1],[10,3],[4,0],[3,-3],[3,-4],[5,-17],[9,-19],[11,-18],[2,-5],[1,-6],[1,-6],[-1,-7],[-2,-5],[-3,-4],[-2,-5],[0,-7],[0,-4],[4,-14],[5,-11],[2,-6],[0,-1],[6,-30],[0,-8],[3,-11],[1,-4],[2,-3],[4,-6],[4,-5],[8,-4],[2,-2]],[[63480,68213],[0,-3],[7,0],[1,-6],[-3,-7],[-8,-3],[-30,6],[-21,13],[-10,14],[-10,6],[-15,18],[-12,7],[-13,5],[-12,0],[-11,-5],[-19,-19],[-2,15],[-1,18],[-2,16],[-4,12],[3,-20],[0,-7],[0,-8],[-1,-7],[-1,-6],[2,-5],[0,-14]],[[63318,68233],[-60,56],[-16,5],[-72,0],[-16,-3],[-44,-35],[-15,-18],[-9,-25],[-24,-112],[-10,-35],[-2,-9],[-1,-17],[0,-6],[-6,-23],[-21,-64],[-8,-40],[-4,-11],[-18,-37],[-17,-54],[-42,-88],[-8,-16]],[[62925,67701],[-12,-5],[-12,-5],[-5,-2],[-7,-3],[-13,-5],[-29,5],[-21,4],[-21,3],[-21,4],[-21,4],[-29,4],[-28,5],[-29,5],[-28,5],[-29,5],[-28,4],[-29,5],[-28,5],[-22,4],[-22,3],[-23,4],[-22,4],[-25,4],[-2,2],[-2,1],[-1,1],[-2,1],[-22,33],[-26,39],[-27,40],[-26,40],[-26,40],[-32,48],[-32,48],[-32,47],[-18,28],[-14,20],[-32,48],[-31,48],[-32,48],[-32,48],[-25,36],[-24,37],[-24,37],[-25,37],[-29,44],[-21,33],[-6,9],[-26,42],[-26,42],[-27,42],[-23,38],[-24,37],[-23,37],[-24,37],[-18,30],[-25,27],[-24,26],[-25,26],[-24,27],[-24,26],[-25,27],[-24,26],[-24,27],[-25,26],[-24,27],[-24,26],[-25,27],[-24,26],[-25,27],[-24,26],[-24,27],[-25,26],[-28,31],[-16,16],[-15,11],[-94,33],[-23,7],[-55,17],[-55,17],[-55,17],[-54,17],[-1,0],[-1,-1],[-1,0],[-1,0]],[[60873,69491],[0,4],[34,52],[7,18],[-6,40],[-4,18],[-6,7],[-52,-27],[-3,3],[-2,9],[-14,85],[0,1],[0,1],[22,13],[-19,123],[-13,87],[-13,84],[-9,63],[-12,76],[-13,85]],[[51950,77667],[13,-20],[6,-6],[9,-3],[9,0],[8,3],[17,10],[8,7],[4,2],[20,-3],[9,5],[17,17],[8,6],[6,1],[3,6],[3,7],[4,3],[29,-10],[4,-4],[4,-6],[5,-11],[1,-2],[3,-1],[2,0],[3,2],[2,0],[14,-7],[7,0],[5,-2],[2,0],[3,3],[1,2],[0,3],[1,6],[0,1],[6,0],[0,11],[3,9],[4,5],[20,6],[3,2],[2,2],[3,7],[0,1],[3,9],[1,1],[1,17],[0,7],[1,6],[2,7],[3,3],[5,1],[3,1],[12,16],[6,19],[0,22],[-9,23],[-6,8],[-1,3],[1,5],[3,6],[5,8],[6,4],[12,4],[6,6],[14,26],[8,6],[3,4],[3,5],[1,5],[0,6],[-2,2],[-1,3],[3,7],[6,9],[7,6],[12,4],[4,1],[8,-2],[3,-8],[2,-13],[0,-18],[-1,-17],[-5,-31],[-1,-15],[1,-15],[3,-9],[6,-6],[7,-5],[7,-5],[8,-12],[18,-39],[3,-2],[5,-3],[13,-11],[5,0],[2,2],[4,5],[2,1],[1,0],[1,-1],[2,-5],[2,-3],[5,0],[8,0],[4,-2],[7,-14],[-4,-14],[-8,-14],[-4,-17],[-2,-3],[0,-1],[5,-1],[4,-2],[16,-13],[2,-2],[2,-4],[2,-9],[5,-13],[3,-8],[1,-8],[1,-10],[-2,-7],[-1,-7],[-1,-9],[11,5],[9,-6],[8,-3],[9,17],[7,20],[1,10],[-3,10],[-3,2],[-6,2],[-3,2],[-2,6],[-2,10],[-3,5],[-1,1],[0,2],[0,1],[1,2],[9,12],[-5,21],[1,7],[7,8],[6,3],[3,2],[2,6],[1,7],[-1,13],[1,8],[6,11],[20,21],[2,6],[1,7],[2,5],[3,4],[3,2],[3,4],[3,6],[4,22],[8,25],[2,13],[0,7],[-4,21],[0,9],[0,7],[0,6],[-4,4],[-2,8],[2,15],[5,14],[5,7],[13,3],[6,-3],[0,-7],[7,-10],[2,-1],[3,2],[2,3],[1,4],[2,4],[4,5],[2,1],[1,-4],[2,-57],[-1,-9],[1,-3],[2,-3],[6,-5],[3,-3],[5,-22],[4,-7],[5,-6],[7,-3],[32,-1],[5,3],[4,9],[0,5],[0,7],[0,6],[4,5],[2,0],[7,-6],[4,-1],[6,3],[18,14],[12,3],[6,-1],[5,-2],[7,-7],[2,-9],[0,-12],[2,-13],[4,-8],[11,-14],[3,-11],[0,-13],[9,0],[12,6],[8,8],[3,11],[-3,11],[-12,17],[-2,6],[-1,5],[0,6],[1,8],[2,6],[6,7],[2,4],[2,13],[-2,7],[-4,3],[-13,3],[-8,5],[-4,8],[4,12],[-2,3],[-1,3],[-1,4],[0,6],[1,6],[0,13],[0,4],[3,5],[6,9],[2,5],[3,19],[2,4],[2,3],[27,11],[7,0],[4,-5],[1,-7],[-2,-12],[1,-7],[12,-6],[2,-2],[2,-3],[1,-3],[3,-2],[4,-1],[10,1],[20,-7],[5,1],[2,5],[1,4],[3,15],[0,15],[-2,12],[-6,7],[-12,2],[-5,8],[-2,12],[1,5],[3,5],[3,7],[0,8],[0,7],[1,5],[5,5],[3,7],[0,8],[-2,9],[-1,9],[6,10],[2,4],[1,5],[1,19]],[[53805,78019],[0,-4],[0,-4],[-1,-4],[-2,-3],[0,-15],[-1,-3],[-2,-7],[-5,-4],[-7,0],[-10,-1],[-7,-10],[-5,-12],[-7,-10],[-13,-11],[-7,-7],[-3,-2],[-4,-1],[-3,-5],[-4,-13],[-4,-10],[-1,-3],[-7,-7],[2,-5],[2,-8],[1,-14],[4,-8],[1,-8],[2,-5],[8,1],[-4,11],[4,-2],[9,-1],[4,-3],[7,-3],[6,-5],[8,-12],[7,-2],[8,1],[4,-1],[3,-1],[1,-5],[1,-6],[-8,-21],[-26,-30],[-5,-5],[-6,-13],[2,-3],[0,-4],[0,-4],[-2,-5],[-2,-1],[-4,-6],[3,-6],[2,-2],[0,-1],[1,-1],[7,-13],[8,1],[9,7],[8,2],[2,1],[5,-11],[-3,-12],[-1,-12],[-3,-8],[-8,-29],[-1,-20],[2,-7],[2,-5],[8,-7],[9,-1],[5,-3],[11,-12],[3,-3],[19,-13],[22,-56],[3,-5],[4,-4],[3,0],[0,-1],[-2,-8],[-5,-10],[-6,-10],[-13,-2],[-11,8],[-14,-1]],[[53808,77471],[2,4],[3,7],[8,1],[8,-2],[6,2],[-3,2],[-3,4],[-3,7],[-10,8],[5,3],[-1,10],[-4,12],[-4,7],[-22,35],[-5,6],[-15,10],[-6,2],[-5,-7],[-3,-13],[1,-11],[8,-2],[-10,-7],[-2,-3],[-1,-4],[-8,-2],[-3,-2],[-5,-8],[-7,-7],[-7,-4],[-7,5],[4,1],[5,4],[5,4],[1,5],[-2,10],[-11,4],[-4,8],[-5,-2],[-27,9],[-2,2],[-7,10],[-2,2],[-3,-1],[-9,-5],[-4,-9],[-2,-2],[-3,2],[-2,9],[-3,1],[-3,-2],[0,-6],[1,-5],[3,-3],[0,-4],[-6,-1],[-6,-5],[-3,-8],[1,-10],[5,-5],[6,2],[10,7],[-3,-8],[-10,-12],[-2,-10],[-3,-7],[-7,-3],[-22,-1],[-10,-3],[-45,-45],[-47,-34],[-28,-15],[-4,-6],[-3,-2],[-10,-4],[-8,-7],[-3,-1],[2,8],[3,8],[2,7],[-2,5],[3,-1],[2,1],[1,3],[0,5],[2,0],[1,-5],[2,-2],[1,0],[2,3],[-4,8],[3,0],[3,0],[3,1],[0,-1],[1,1],[1,-2],[0,-2],[1,-1],[-1,0],[-3,0],[0,-4],[6,1],[1,7],[1,9],[2,4],[5,0],[4,3],[3,5],[2,8],[-3,-2],[-7,-8],[-2,0],[-5,8],[-2,5],[-1,9],[-6,-5],[-8,-10],[-4,-11],[2,-7],[0,-4],[-4,1],[-5,6],[-2,-3],[-2,0],[-2,13],[-3,-10],[1,-5],[10,-6],[0,-4],[-4,-3],[-5,-1],[-3,2],[0,6],[-9,0],[-11,-9],[-10,-15],[-6,-16],[0,-4],[2,0],[-3,-6],[-1,-5],[1,-5],[3,-5],[-3,-5],[0,-5],[0,-4],[-1,-6],[-2,-2],[-3,0],[-1,-2],[2,-8],[-3,-8],[-1,-6],[-2,-5],[-6,-1],[-4,2],[-3,4],[-2,-2],[-2,-13],[3,-5],[3,-12],[3,-3],[3,3],[2,7],[1,8],[-1,7],[5,-4],[1,-6],[0,-8],[1,-11],[-3,-2],[-1,-3],[2,-3],[2,-4],[-1,-9],[3,-7],[5,-4],[5,0],[-1,2],[-1,1],[4,5],[6,10],[3,2],[-2,-9],[1,-9],[3,-8],[2,-9],[0,-20],[2,-22],[-3,2],[-3,2],[0,4],[0,6],[0,2],[-3,-13],[0,-10],[3,-6],[6,1],[-1,2],[0,2],[-1,4],[5,-7],[4,-9],[3,-9],[3,-8],[0,-4],[-2,0],[-1,-1],[-1,-2],[-2,-1],[4,-8],[4,9],[1,7],[-1,7],[-4,9],[4,-5],[5,-4],[4,-4],[-1,-7],[4,-7],[2,-2],[3,-3],[6,-11],[6,-10],[3,5],[-2,-1],[-1,1],[0,4],[4,0],[4,-2],[3,-4],[2,-6],[0,-6],[-3,-6],[1,-4],[-2,-6],[-1,-3],[-1,-4],[-1,0],[-3,0],[-1,-7],[0,-19],[-2,-9],[-3,-10],[-9,-15],[0,3],[-1,6],[-2,6],[-2,5],[4,14],[1,7],[-1,7],[-4,2],[-3,-3],[-2,-5],[-1,-4],[-3,-10],[0,-5],[6,-5],[0,-4],[-2,-5],[-3,-1],[0,-4],[2,-1],[3,-2],[3,-1],[-3,-10],[-5,-6],[-6,-1],[-5,7],[-3,7],[-7,11],[-5,5],[-3,0],[-7,-9],[0,-4],[4,0],[-8,-41],[-2,-23],[2,-26],[4,-19],[2,-9],[3,-4],[0,-7],[-1,-42],[1,-26],[8,-60],[1,-15],[1,-4],[1,-4],[4,-8],[1,-3],[0,-12],[2,-12],[5,-22],[6,-17],[8,-16],[11,-17],[6,-16],[9,-15],[10,-13],[7,-4],[16,-33],[8,-13],[9,-10],[5,-5],[12,-6],[1,-1],[13,-3],[5,-4],[11,-14],[19,-12],[3,-6],[2,-5],[85,-115],[32,-31],[6,-3],[3,-6],[13,-7],[7,-7],[3,3],[2,4],[1,3],[1,0],[1,1],[1,2],[1,0],[2,-1],[1,-3],[0,-2],[1,-2],[5,-4],[5,-10],[3,-9],[2,-5],[6,-2],[5,-5],[2,-8],[-2,-9],[40,-159],[4,-12],[1,-4],[2,-21],[1,-5],[4,-9],[8,-30],[4,-21],[5,-50],[11,-62],[11,-62],[10,-40],[6,-19],[17,-43],[1,-9],[2,-7],[41,-76],[17,-25],[20,-21],[9,-11],[12,-31],[36,-57],[10,-10],[16,-10],[11,-4],[4,-5],[3,-10],[1,-24],[2,-12],[3,-8],[5,-4],[1,0],[5,-2],[6,-5],[9,-13],[10,-7],[23,-7],[11,-6],[4,-6],[8,-15],[3,-4],[5,-2],[11,-14],[5,-4],[6,-2],[6,-2],[32,0],[33,-12],[13,0],[46,12],[45,-4],[70,14],[24,-10],[0,-1],[8,-4],[6,-16],[5,0],[-1,-9],[2,-11],[2,-22],[1,-8],[-1,-10],[-2,-7],[-5,-9],[-6,-9],[-5,-4],[-5,-3],[-5,-7],[-8,-14],[-9,-13],[-29,-23],[-7,-16],[-2,-22],[1,-24],[4,-20],[6,-14],[8,-11],[17,-19],[18,-9],[4,-6],[4,-6],[52,-38],[44,-39],[17,-7],[5,-7],[4,-7],[11,-12],[66,-36],[5,-8],[2,0],[0,5],[2,0],[6,-10],[48,-25],[40,-36],[20,-24],[10,-15],[10,-26],[4,-3],[5,-2],[10,-13],[17,-30],[4,-3],[6,-3],[10,-11],[24,-10],[3,-3],[29,-19],[26,-32],[22,-6],[9,-8],[0,-14],[3,0],[7,4],[4,-1],[2,-4],[0,-6],[1,-6],[6,-10],[1,-3],[-1,-27],[23,-31],[25,-24],[6,-2],[2,-2],[5,-16],[4,-5],[9,-13],[7,-20],[4,-9],[5,-3],[2,-4],[19,-42],[17,-68],[2,-4],[1,-3],[2,-1],[-2,-7],[1,-4],[1,-4],[0,-6],[-2,-6],[-5,-6],[-2,-17],[-4,-7],[-10,-12],[-6,-26],[-1,-6],[-1,-13],[-3,-13],[0,-5],[1,-16],[1,-7],[-4,-31],[1,-5],[-2,-2],[-3,-8],[-1,-2],[-6,1],[-3,1],[-2,2],[-13,17],[-5,3],[-11,0],[-4,1],[-7,8],[-7,5],[-8,13],[-10,12],[-4,2],[-3,3],[-18,44],[-3,5],[0,5],[5,0],[2,4],[1,7],[-2,9],[-3,5],[-8,4],[-3,3],[10,10],[3,13],[-4,15],[-9,15],[-7,10],[-4,8],[-2,8],[0,12],[-1,10],[-1,8],[-3,5],[3,0],[0,3],[-14,18],[-4,3],[-93,8],[-5,2],[-15,14],[-3,1],[-6,-1],[-2,0],[-2,3],[-5,8],[-2,1],[-5,2],[-15,15],[-16,9],[-7,7],[-4,8],[7,5],[5,8],[2,9],[-6,10],[5,4],[14,-5],[6,6],[1,9],[-5,1],[-12,-6],[1,1],[1,3],[-6,4],[-5,-3],[-5,-6],[-6,-3],[-2,2],[-1,4],[-2,6],[-1,4],[-3,2],[-6,0],[-3,1],[-21,3],[-20,-16],[-18,-28],[-13,-32],[-23,-53],[-6,-19],[-6,-35],[-2,-6],[-4,-4],[-10,-28],[-11,-16],[-5,-7],[-5,-14],[-2,-22],[0,-8],[4,-22],[5,-18],[-2,-7],[-5,-7],[-4,-13],[-13,-21],[-10,-28],[-5,-19],[0,-18],[3,-17],[8,-15],[0,-4],[-4,-15],[9,-17],[12,-14],[9,-7],[35,-3],[9,-5],[5,-5],[5,-7],[4,-9],[1,-9],[3,-5],[17,-13],[13,-18],[5,-3],[6,-1],[5,-4],[3,-6],[4,-9],[6,-11],[8,-12],[10,-8],[10,-1],[-10,-41],[-2,-32],[-1,-8],[1,-8],[2,-7],[5,-13],[1,-7],[-1,-19],[-5,-34],[0,-18],[7,-22],[1,-5],[2,-3],[9,-6],[4,-1],[-5,-6],[-3,-4],[-1,-4],[-1,-23],[1,-3],[-10,-14],[-1,-3],[-2,-2],[-2,-6],[-4,-12],[-3,12],[-7,2],[-8,-4],[-5,-6],[-7,14],[-5,5],[-6,2],[-6,-1],[-27,-12],[-31,-24],[-11,-13],[-2,-5],[-3,-4],[-16,-15],[-7,-11],[-4,-7],[-3,-17],[-3,-9],[-3,-11],[-2,-14],[4,-4],[0,-2],[0,-10],[3,-45],[5,-40],[0,-15],[-2,-44],[-2,-8],[-11,-17],[-4,-9],[-3,-1],[-8,-13],[-9,-5],[-27,-23],[-9,-14],[-38,-79],[-5,-20],[-7,-62],[-4,-19],[-3,-8],[-3,-6],[-4,-6],[-4,-4],[-13,-5],[-4,-3],[-16,8],[-50,-4],[-8,3],[-7,6],[-7,7],[-5,8],[-6,13],[-2,12],[0,11],[6,9],[-7,19],[-3,10],[1,9],[4,11],[2,11],[0,11],[-3,14],[-1,20],[5,13],[9,7],[29,14],[2,5],[1,3],[4,6],[1,3],[4,27],[20,72],[4,26],[0,20],[-5,16],[-8,16],[-2,2],[-4,3],[-1,3],[-3,6],[0,3],[0,3],[1,6],[2,7],[5,5],[11,6],[18,20],[10,7],[12,2],[20,-4],[5,1],[4,5],[8,10],[6,17],[4,22],[1,25],[0,25],[-1,12],[-3,9],[-4,6],[-6,2],[-4,4],[-4,12],[-16,60],[-11,139],[-3,20],[-10,56],[-11,23],[-7,21],[-8,13],[-7,10],[-3,7],[-2,15],[-3,15],[-3,23],[-6,15],[-3,10],[-5,60],[0,-4],[-1,12],[-2,6],[-2,2],[0,4],[3,22],[-2,14],[-9,23],[-2,8],[-2,12],[-4,10],[-9,16],[-8,21],[-6,8],[-1,5],[0,7],[-4,-2],[-21,2],[-6,-6],[-5,-12],[-10,-10],[-9,-18],[-5,-3],[-14,3],[-5,3],[-8,17],[-3,2],[-2,-3],[-3,-1],[-3,-1],[-3,1],[0,4],[5,6],[-5,16],[-8,15],[-7,8],[-5,4],[-18,30],[-4,3],[-4,-1],[-9,-4],[-5,1],[-3,4],[-4,12],[-5,9],[-8,5],[-2,3],[-3,4],[-5,-2],[-5,6],[-3,2],[-1,10],[7,16],[2,13],[-2,10],[0,6],[3,2],[3,2],[3,3],[3,4],[6,4],[1,6],[0,17],[-7,20],[-24,84],[-7,20],[-8,15],[-7,12],[-7,10],[-9,4],[-9,-6],[-8,-10],[-3,-2],[-15,2],[-3,-2],[-12,-17],[-7,-2],[-8,3],[-8,8],[-5,-5],[-13,-5],[-6,-8],[-13,-11],[-3,-8],[-4,8],[-1,13],[3,11],[6,5],[6,1],[2,1],[3,5],[2,7],[11,18],[9,5],[1,10],[-2,10],[-4,9],[-5,6],[-6,-2],[-4,3],[-3,3],[-3,7],[-5,4],[-5,10],[-10,19],[-5,6],[-5,1],[-8,-2],[-7,-3],[-3,-7],[-2,-11],[-6,0],[-5,8],[-8,2],[-7,7],[-4,2],[-4,-1],[-1,-6],[0,-7],[1,-8],[0,-8],[-2,2],[-7,2],[-2,4],[3,24],[-2,22],[-7,28],[-15,44],[-10,11],[-3,5],[-1,6],[-1,13],[0,6],[-8,24],[-9,25],[-17,34],[-19,28],[-4,2],[-8,-3],[-4,0],[-2,5],[-17,-4],[-9,-9],[3,-17],[-8,-1],[-3,1],[-3,4],[-1,6],[-2,2],[-2,-4],[-2,0],[-5,10],[-43,33],[-11,1],[-23,-7],[-4,-4],[-10,-10],[-11,-6],[-6,-14],[-6,-3],[-7,3],[-2,8],[-1,10],[-3,9],[-3,8],[-5,17],[-4,9],[-16,29],[-8,12],[-9,8],[-5,3],[-22,2],[-4,1],[-20,21],[-7,4],[-3,-4],[-2,-7],[-4,7],[-21,51],[-27,51],[-29,42],[-4,6],[-8,3],[-4,6],[-2,1],[-9,3],[-2,1],[-4,9],[-2,10],[-1,12],[-1,12],[-1,11],[-3,12],[-7,19],[-6,15],[-27,33],[-3,3],[-3,5],[-1,7],[-2,5],[-7,1],[-3,3],[-4,6],[-4,7],[-5,5],[-5,4],[-22,-1],[-3,-1],[-2,7],[-3,12],[-5,11],[-3,4],[-3,9],[-6,12],[-1,6],[-1,9],[-1,10],[-15,49],[-7,16],[-33,41],[-14,6],[-19,17],[-7,3],[0,5],[-3,2],[-2,2],[-3,0],[-3,0],[2,-4],[-8,0],[-21,12],[-4,1],[-5,0],[-4,-2],[-2,-5],[-1,-9],[-4,-10],[-1,-7],[-2,1],[-3,0],[-2,-1],[-1,0],[-2,3],[-4,7],[-7,4],[-4,7],[-2,9],[0,7],[4,8],[3,2],[8,-4],[7,0],[4,10],[2,14],[1,15],[-1,9],[-6,15],[-2,11],[-3,-1],[-3,-2],[-2,-1],[-4,8],[-2,12],[-3,9],[-5,4],[0,11],[-7,9],[-13,12],[-2,7],[-1,10],[-2,8],[-2,4],[-3,2],[-8,14],[-14,12],[-45,24],[7,9],[3,9],[0,12],[0,13],[1,4],[1,3],[1,4],[-1,7],[-3,6],[-3,5],[-19,14],[-14,5],[-14,1],[-12,-6],[1,-6],[1,-3],[-8,-5],[-5,9],[-6,29],[7,9],[4,11],[6,33],[-1,7],[0,13],[1,12],[2,8],[-2,10],[-1,13],[-1,24],[-1,12],[-3,12],[-22,72],[-18,38],[-4,7],[-9,7],[-3,10],[-6,45],[-8,142],[-4,22],[-11,44],[-9,21],[-12,13],[-8,23],[-5,5],[-5,3],[-10,10],[-6,3],[-4,3],[-3,2],[-1,-3],[-1,-3],[-2,-3],[-3,0],[-3,2],[-4,7],[-9,11],[-5,8],[-3,-3],[-9,12],[-5,0],[2,-5],[-1,-1],[-2,-2],[-1,-1],[1,-5],[2,-3],[2,-3],[3,-1],[0,-4],[-2,-1],[-1,-2],[-1,-5],[4,-3],[-1,-4],[-3,1],[-2,8],[-2,5],[-13,9],[-14,20],[-3,3],[-8,11],[-3,3],[-8,0],[-3,2],[-3,2],[-10,17],[-1,1],[-2,8],[-5,5],[-13,9],[-3,3],[-2,6],[-2,8],[-3,-3],[-5,-1],[-5,1],[-2,5],[-2,5],[-13,9],[-2,13],[-30,25],[-8,11],[-3,-6],[-2,-6],[-1,-8],[0,-9],[-13,8],[-5,6],[1,6],[-5,14],[-8,7],[-28,7],[-14,8],[-8,7],[-2,-2],[-13,1],[-6,2],[-3,2],[-3,7],[-18,2],[-7,-2],[-3,-3],[-8,-10],[-3,-5],[-2,-2],[-2,0],[-2,0],[-2,0],[-17,-19],[-5,-1],[-3,-2],[-7,-11],[-21,-21],[-6,-12],[2,-11],[-3,-7],[-1,-3],[0,-5],[-1,-1],[-4,-4],[-2,-2],[-1,-8],[0,-6],[0,-6],[-4,-7],[-7,-5],[-15,-8],[-8,-7],[-4,-6],[-4,-6],[-7,-15],[0,-4],[0,-9],[0,-5],[-2,-9],[-2,-7],[-13,-23],[-5,-14],[4,-12],[0,-4],[-6,-2],[-8,-15],[-8,-4],[-2,-3],[-1,-3],[-1,-3],[-1,-5],[-4,-3],[-7,-3],[-19,-20],[-49,-18],[-13,-14],[-12,-5],[-34,1],[-8,-5],[-4,0],[-2,3],[-3,2],[-3,0]],[[53452,76463],[9,2],[5,13],[-1,2],[1,2],[0,1],[1,1],[0,1],[2,6],[1,10],[-1,10],[-2,6],[-8,-2],[-9,-7],[-3,-5],[-4,-6],[-3,-15],[4,-12],[8,-7]],[[53459,75285],[0,1],[0,-1]],[[53333,72284],[10,-17],[4,-10],[1,-13],[-7,-16],[-9,3],[-10,12],[-7,14],[-1,4],[-2,9],[-1,10],[4,4],[1,1],[2,3],[1,0],[2,-1],[3,-5],[1,-2],[2,-1],[2,-2],[2,1],[2,6]],[[53409,72938],[4,-1],[2,2],[3,2],[2,1],[2,-3],[4,-5],[5,-3],[4,-1],[-3,-7],[-4,-1],[-5,3],[-3,5],[-4,-4],[-3,1],[-3,5],[-1,6]],[[54313,73153],[8,-1],[16,-12],[10,-3],[-1,-5],[-1,-3],[-3,-1],[-2,1],[-12,-13],[-4,-8],[-1,-7],[-1,-9],[4,0],[-13,-37],[-8,-31],[-30,-64],[-25,-66],[-5,-19],[-5,-13],[-7,-9],[-8,-20],[-1,-9],[0,-6],[3,-11],[0,-7],[-1,-6],[-4,-7],[-1,-5],[0,-12],[-4,-18],[-1,-13],[-4,-21],[-14,-27],[-5,-17],[-1,-10],[-1,-10],[1,-59],[1,-10],[2,-8],[2,-5],[19,-18],[11,-4],[5,-6],[4,-10],[3,-14],[-5,7],[-2,-2],[-2,-7],[-3,-6],[1,10],[-2,5],[-3,0],[-3,-3],[1,-8],[-4,-12],[3,-18],[6,-12],[5,5],[4,-3],[0,-4],[-5,-2],[1,-8],[4,-10],[5,-5],[6,-1],[4,-4],[2,-9],[-2,-14],[-4,3],[-2,-4],[1,-8],[2,-4],[6,2],[2,-3],[3,-7],[0,-10],[-2,-1],[-3,2],[-1,3],[-2,-1],[-9,-9],[1,-4],[-2,-3],[-1,-1],[2,-4],[0,-4],[-7,-1],[-5,-4],[-4,-5],[-4,-2],[-6,-6],[-5,-11],[-14,-62],[0,-7],[-4,-5],[2,-12],[5,-19],[5,-35],[-1,-8],[-5,-9],[-6,-3],[-5,3],[-6,7],[-4,10],[-2,3],[-3,4],[-4,2],[-2,-1],[-2,-3],[-3,-5],[-7,6],[-10,13],[-11,6],[-9,-3],[-19,-15],[-1,5],[-1,1],[-3,-2],[-5,7],[-16,4],[-4,11],[-4,6],[-16,11],[-5,5],[-4,-2],[-22,9],[-3,7],[-23,83],[-7,17],[-25,42],[-20,22],[-23,18],[-10,3],[-31,-4],[-3,-1],[-5,-6],[-3,-2],[-12,3],[-17,23],[-11,8],[-12,4],[-10,7],[-9,11],[-23,40],[-8,10],[-10,5],[-13,3],[-10,7],[-8,9],[-14,19],[-12,12],[-5,8],[-3,3],[-3,2],[-3,3],[-7,22],[-2,3],[-6,6],[-3,7],[-2,3],[-3,2],[-2,2],[-3,8],[-1,2],[-34,8],[-4,-3],[-3,-1],[-3,2],[-2,6],[-1,12],[-1,5],[-8,13],[-8,6],[-23,5],[-22,-1],[-23,-7],[-11,1],[-6,10],[-12,33],[-5,9],[-4,3],[-11,0],[-5,5],[-4,10],[-4,12],[-3,10],[-1,9],[-1,7],[0,8],[-3,6],[-3,7],[-3,9],[1,7],[4,4],[1,-3],[4,5],[1,2],[-1,2],[2,16],[1,0],[1,11],[1,5],[-1,3],[-2,7],[-1,5],[0,4],[0,1],[1,1],[6,23],[2,15],[2,10],[0,8],[-3,7],[8,5],[7,14],[8,10],[9,-5],[8,10],[4,7],[1,9],[2,6],[4,-1],[4,-2],[4,-1],[5,9],[0,15],[-1,15],[3,10],[2,-7],[3,1],[3,-1],[2,-11],[6,-27],[8,-23],[3,-5],[8,-6],[3,-5],[0,-5],[9,-9],[12,3],[23,18],[10,12],[2,5],[0,2],[0,4],[0,7],[-1,6],[-3,5],[0,6],[9,14],[-1,5],[1,5],[4,4],[3,2],[3,-1],[9,-7],[6,-2],[8,0],[7,5],[2,13],[4,-2],[3,1],[4,3],[5,3],[4,3],[2,0],[1,-1],[1,-4],[0,-4],[1,-3],[10,-12],[2,-4],[0,-19],[1,-5],[4,-17],[34,4],[8,-9],[-1,-11],[1,-5],[2,-7],[2,-4],[9,-6],[9,-14],[8,-9],[13,-4],[4,-3],[-1,-2],[0,-1],[-1,-2],[6,1],[18,-5],[6,3],[13,11],[11,4],[4,5],[3,6],[4,4],[19,5],[4,7],[12,-11],[5,-4],[7,-1],[4,0],[8,4],[34,-8],[16,1],[15,7],[13,12],[9,-7],[13,4],[35,22],[9,11],[8,13],[10,21],[3,2],[9,-1],[6,1],[21,9],[4,4],[3,2],[2,1],[8,-1],[3,-3],[5,-10],[2,-3],[3,0],[7,-4],[9,1],[3,-1],[1,-2],[3,-8],[1,-2],[6,-2],[4,3],[5,4],[15,9],[8,16],[10,35],[-1,4],[0,1],[0,2],[1,5],[-1,2],[2,0],[1,-7],[-2,-14],[1,-8],[4,-4],[4,-1],[5,-1],[8,3],[22,13],[6,7],[4,5],[10,8],[12,18],[4,3]],[[54157,73230],[0,-8],[4,-4],[3,-6],[3,-6],[1,-9],[-2,-3],[-4,-5],[-6,11],[-4,9],[-1,9],[4,12],[2,0]],[[54140,73254],[-2,5],[1,10],[2,10],[4,4],[9,0],[3,-3],[-2,-9],[2,-3],[2,-4],[1,-1],[0,-4],[-7,0],[1,-7],[1,-3],[2,-2],[0,-5],[-5,-1],[-4,4],[-4,6],[-4,3]],[[54128,73299],[0,-6],[-11,8],[-8,11],[6,8],[10,0],[4,-2],[3,-7],[-1,-2],[-1,-3],[-2,-7]],[[52348,73610],[1,-4],[1,-1],[2,0],[2,2],[0,1],[1,1],[1,-2],[-5,-7],[-2,-4],[1,-5],[-2,-8],[-2,-20],[-3,-16],[-1,-3],[-3,-1],[-3,0],[-2,3],[0,5],[-1,4],[-10,28],[-4,20],[1,12],[0,5],[-2,0],[0,4],[4,12],[7,-8],[9,1],[7,-2],[3,-17]],[[52307,73681],[0,-20],[1,-24],[-1,-9],[-5,-3],[-5,0],[-5,4],[1,7],[0,4],[-7,11],[-2,8],[2,9],[4,5],[12,5],[5,3]],[[53873,74574],[-3,2],[-4,-1],[-4,-2],[-4,-4],[-2,4],[-7,4],[-3,5],[2,11],[2,6],[2,3],[-1,2],[-1,6],[6,0],[17,-10],[6,-6],[-1,-4],[0,-4],[1,-4],[-2,-2],[-4,-6]],[[52298,74784],[-7,-8],[0,-16],[-1,-13],[-10,1],[2,5],[1,6],[1,6],[0,5],[1,5],[4,6],[5,8],[4,3],[1,7],[-1,8],[1,6],[2,1],[5,-1],[1,2],[0,3],[2,3],[3,4],[0,-4],[1,-4],[1,-4],[3,-5],[0,-6],[0,-8],[-3,-5],[-16,-5]],[[52720,74488],[7,-12],[2,-4],[0,-6],[-3,-10],[-1,-6],[-1,-13],[-2,-9],[-6,-17],[-5,-21],[-3,-8],[-6,-3],[-5,-4],[-3,-8],[-5,-17],[-3,-7],[-7,-9],[-3,-8],[-3,-12],[0,-9],[1,-25],[1,-6],[6,-30],[3,-8],[4,-3],[3,-3],[6,-15],[6,-7],[-1,-9],[-10,-45],[-2,-19],[3,-16],[2,2],[2,2],[1,0],[1,-4],[-1,-5],[-2,-2],[-2,0],[-1,-1],[-2,-8],[-1,-7],[-1,-7],[2,-7],[-2,0],[0,-3],[2,-2],[1,-2],[1,-1],[0,-3],[-3,-8],[-3,-12],[-1,-15],[-1,-14],[1,-8],[1,-14],[0,-9],[0,-6],[-3,-10],[0,-8],[-1,-4],[-1,-4],[-2,-7],[0,-8],[2,-26],[-1,-16],[-7,-39],[5,-10],[-2,-19],[-7,-31],[-3,-26],[-1,-9],[1,-9],[2,-5],[7,-8],[0,-4],[-8,-5],[-7,-13],[-4,-17],[2,-14],[-2,-6],[0,-3],[2,-3],[2,-4],[-1,-5],[-3,-12],[0,-6],[-3,-5],[-5,-4],[-4,-5],[-1,-12],[-3,2],[-1,2],[0,3],[2,5],[-5,5],[-4,1],[-4,-2],[-4,-4],[-3,0],[-1,5],[-2,3],[-6,5],[-7,13],[-2,2],[-2,3],[-7,11],[-2,3],[-3,1],[-4,3],[-3,4],[-2,4],[-2,-4],[-4,4],[-5,2],[-10,2],[-6,-4],[-4,-8],[-3,-8],[-1,-4],[-8,4],[-7,10],[-11,22],[-3,-3],[-2,3],[-2,5],[-3,3],[-4,2],[-3,-1],[0,-2],[4,-2],[0,-5],[-2,-5],[2,-2],[2,-2],[1,-3],[3,-1],[7,2],[2,-3],[0,-5],[-1,-2],[-11,-20],[-3,-8],[-2,-11],[-1,-14],[1,-11],[1,-11],[2,-10],[2,-3],[2,-3],[0,-5],[-4,-12],[-3,-21],[2,0],[-3,-3],[-1,1],[-2,2],[-3,-7],[-28,-48],[-2,-1],[-3,-1],[-1,-2],[-3,-8],[-2,-2],[-4,1],[-3,5],[-7,10],[0,-12],[-4,11],[-6,10],[-8,6],[-6,1],[-6,-4],[-8,-9],[-4,-11],[1,-12],[-4,-4],[-2,4],[2,11],[-2,3],[-5,0],[-5,2],[0,4],[5,10],[0,15],[-4,10],[-6,-2],[-2,31],[-4,26],[-2,0],[-2,-4],[-7,6],[-4,1],[1,3],[3,9],[-4,5],[-6,-6],[0,2],[-2,4],[-1,10],[-2,7],[-3,3],[-3,-4],[-2,6],[1,15],[-1,7],[-2,5],[-3,2],[-2,-1],[1,-6],[-2,2],[-1,3],[-1,4],[0,6],[-1,6],[-1,2],[-2,0],[-2,2],[-2,9],[0,5],[1,4],[14,27],[2,11],[-5,13],[1,9],[-10,12],[-2,11],[1,6],[5,9],[1,5],[1,9],[0,5],[-4,16],[-1,2],[0,2],[2,7],[8,16],[4,10],[4,20],[3,11],[-2,4],[3,8],[-1,12],[-3,24],[-1,27],[-1,6],[0,4],[1,6],[-1,15],[1,4],[3,-2],[3,-3],[9,-23],[4,-8],[6,-4],[8,3],[-14,8],[-3,4],[0,10],[4,10],[4,10],[3,7],[-2,0],[-1,-4],[-1,-4],[-1,-2],[-2,-2],[3,6],[3,9],[2,11],[1,8],[1,19],[-1,7],[-2,8],[-6,12],[-8,8],[-9,1],[-7,-9],[2,-3],[0,3],[2,1],[1,-1],[2,0],[-3,-3],[-2,-6],[-2,-15],[-2,5],[2,6],[-2,5],[-3,4],[-4,7],[-1,0],[-1,1],[-1,5],[0,4],[1,4],[1,4],[0,4],[-2,22],[0,6],[4,13],[0,7],[-4,9],[-4,-4],[-1,2],[3,5],[4,5],[1,0],[8,0],[5,3],[2,1],[3,3],[3,7],[2,9],[1,9],[-2,8],[-4,16],[-2,11],[-1,31],[5,28],[0,17],[-4,14],[-6,10],[-7,8],[-2,-5],[-6,9],[-1,11],[3,31],[-1,11],[-3,16],[-4,14],[-4,6],[-5,5],[-2,12],[-2,14],[-2,14],[-5,10],[-7,-1],[-14,-14],[-6,5],[3,11],[3,9],[-7,3],[-4,-7],[-3,-11],[-1,-14],[-3,8],[-1,10],[-2,15],[0,3],[5,5],[4,5],[3,9],[1,14],[1,0],[1,3],[1,4],[-2,1],[-4,1],[-1,1],[-2,3],[-4,10],[-2,4],[-3,2],[21,81],[2,9],[0,11],[-2,9],[-5,3],[-4,5],[1,10],[3,11],[3,7],[2,0],[1,-7],[2,-1],[2,0],[2,-4],[0,-5],[-1,-7],[-1,-8],[1,-7],[13,-26],[9,-9],[31,-7],[15,-7],[7,-1],[5,1],[22,15],[5,8],[5,9],[2,9],[19,14],[7,1],[4,-1],[4,-4],[16,20],[5,9],[10,27],[3,5],[0,2],[0,1],[-2,1],[9,6],[3,2],[2,4],[3,11],[2,2],[3,3],[5,7],[4,9],[4,15],[5,4],[19,4],[4,2],[8,12],[2,-4],[4,9],[2,10],[0,24],[2,10],[5,5],[6,3],[6,4],[0,-5],[2,-3],[2,-1],[3,1],[3,-7],[0,-21],[3,-4],[-1,3],[-1,3],[1,4],[1,6],[2,0],[1,-8],[0,-2],[-1,-2],[0,-4],[4,1],[1,1],[2,2],[1,-3],[5,-5],[1,14],[4,-3],[10,-16],[0,5],[3,-3],[2,-1],[2,-1],[3,0],[0,-3],[-2,-2],[0,-2],[-1,-2],[-1,-3],[3,-2],[2,-4],[2,-5],[2,-5],[-1,-4],[0,-6],[1,-14],[4,12],[1,5],[3,3],[-1,3],[0,2],[-1,2],[-2,2],[4,3],[3,0],[4,-2],[4,-1],[1,1],[1,4],[2,0],[2,-5],[-2,-5],[3,-3],[2,-3],[1,-1],[2,3],[2,0],[0,-2],[1,-1],[1,-1],[-1,-7],[0,-6],[-2,-6],[-3,-6],[0,3],[-1,3],[-1,3],[-5,-36],[-2,-9],[5,0],[-2,9],[5,3],[3,-1],[1,-6],[-1,-9],[1,0],[1,1],[0,2],[0,1],[2,-3],[0,-1],[2,0],[4,7],[8,-1],[7,-5],[6,-5],[-4,-7],[-4,1],[-4,4],[-5,2],[-4,-4],[-2,-9],[-1,-11],[-3,-8],[1,-8],[-4,-2],[-12,2],[-1,-3],[1,-1],[-2,-1],[2,-7],[2,0],[2,3],[3,0],[3,-2],[5,-5],[2,-1],[5,2],[4,5],[4,3],[6,-2],[-2,-5],[-1,-4],[-2,-2],[-3,-1],[0,-4],[10,-8],[2,-2],[0,-7],[2,-3],[2,0],[3,4],[2,-6],[3,-3],[3,-2],[4,-1],[-10,-6],[-2,-3],[2,-8],[0,-4],[-4,2],[-4,-3],[-1,-5],[3,-6],[1,7],[1,-8],[8,-17],[2,-8],[1,-11],[8,-28],[1,-8],[2,-36],[1,-6],[1,-5],[2,-2],[4,-1],[1,-4],[0,-5],[2,-6]],[[53026,75572],[5,-7],[4,-13],[0,-8],[3,-5],[-4,-8],[-4,4],[-11,17],[-2,8],[4,4],[0,8],[2,3],[3,-3]],[[52900,75843],[-2,-4],[-1,-6],[0,-7],[2,-7],[-2,-10],[-3,-7],[-4,-4],[-5,-3],[6,-4],[4,-10],[2,-11],[-4,-8],[-2,6],[-2,0],[-3,0],[-3,3],[-1,3],[-3,10],[-1,3],[-3,3],[-4,6],[-3,0],[-4,-13],[-2,10],[-11,-9],[-6,7],[-1,-9],[-1,-4],[-2,0],[-23,1],[-6,4],[-5,8],[-2,16],[3,10],[6,7],[7,3],[6,1],[3,-2],[6,-5],[4,-2],[5,-1],[6,1],[0,3],[0,1],[-1,0],[-1,1],[4,4],[0,4],[0,1],[5,-1],[10,0],[-1,-9],[3,-3],[4,0],[2,1],[1,6],[2,3],[2,2],[2,4],[3,15],[2,6],[4,3],[2,-2],[3,-3],[2,-6],[1,-6]],[[52733,75973],[0,-1],[1,-1],[1,-1],[2,-9],[-4,-11],[-5,-10],[-6,0],[-5,12],[7,22],[5,5],[4,-6]],[[53431,77359],[5,12],[5,5],[5,-2],[6,-9],[-3,3],[-4,1],[-8,1],[-15,-45],[0,4],[2,11],[7,19]],[[53572,71714],[2,0],[2,-4],[0,-6],[-1,-2],[-4,0],[-2,2],[-1,4],[0,3],[2,2],[2,1]],[[53985,73291],[-1,7],[4,2],[1,-7],[-4,-2]],[[54048,73315],[1,-6],[2,-3],[0,-2],[-3,-1],[-6,3],[-3,8],[0,7],[1,1],[5,-2],[3,-5]],[[53658,73399],[4,0],[3,-4],[0,-2],[-5,-9],[-4,-1],[-3,2],[0,5],[1,4],[4,5]],[[54229,73454],[2,-2],[2,-2],[-1,-5],[-1,-4],[-1,-3],[-1,-4],[-2,-2],[-4,1],[-5,8],[0,2],[2,3],[3,3],[1,2],[1,3],[2,1],[2,-1]],[[53727,74629],[1,3],[3,1],[-2,-6],[-3,-3],[1,5]],[[53506,71499],[-1,-1],[1,-4],[-1,-5],[-2,-2],[-3,1],[-1,2],[-1,0],[-11,8],[-5,3],[-3,2],[2,3],[6,0],[3,-1],[13,-3],[2,-1],[1,-1],[0,-1]],[[53353,72955],[1,-5],[1,-6],[-4,1],[-5,6],[-3,7],[-2,7],[2,4],[5,0],[3,-3],[2,-11]],[[52631,74890],[1,-4],[1,-3],[0,-4],[-3,-16],[1,-3],[0,-3],[-1,-5],[-2,1],[-2,4],[-2,3],[-2,-1],[-1,2],[3,11],[-1,4],[0,5],[3,8],[1,5],[2,-1],[2,-3]],[[52619,74884],[1,-3],[0,-2],[-11,-4],[-5,2],[-1,5],[0,5],[1,2],[2,2],[2,2],[2,4],[0,5],[1,1],[2,0],[2,3],[2,-1],[1,-4],[1,-5],[0,-5],[0,-5],[0,-2]],[[52860,75547],[2,4],[3,-7],[-1,-9],[-5,2],[1,10]],[[52803,75696],[1,-3],[0,-2],[0,-3],[0,-4],[-3,-2],[-4,0],[-3,2],[-3,3],[1,5],[3,1],[2,5],[2,8],[2,1],[1,-7],[1,-4]],[[53424,77391],[5,0],[5,-5],[-1,-7],[-2,-3],[-5,-4],[-4,2],[-1,8],[3,9]],[[52644,78459],[-4,-11],[-5,-20],[-1,-20],[2,-10],[3,-8],[3,-10],[0,-12],[-3,-8],[-4,-7],[-3,-6],[0,-5],[6,-3],[17,-4],[6,2]],[[63576,73231],[0,-52],[-3,-18],[2,-12],[1,-31],[5,-22],[4,-73],[11,-69],[-2,-11],[0,-14],[1,-12],[2,-10],[10,-26],[0,-7],[-1,-5],[0,-4],[3,-23],[6,-23],[14,-35],[18,-33],[21,-25],[44,-39],[21,-12],[107,-25],[11,3],[10,7],[9,3],[10,-9],[-3,-1],[-3,2],[-2,0],[-2,-5],[23,-15],[37,-14],[13,-9],[8,-14],[-1,-21],[3,-9],[3,-21],[3,-9],[4,-10],[6,-32],[9,-24],[9,-15],[21,-26],[13,-29],[4,-4],[6,-3],[31,-35],[5,-2],[4,-3],[8,-16],[5,-6],[43,-40],[40,-49],[24,-18],[77,-26],[50,-25],[51,-16],[50,-25],[51,12],[46,29],[47,20],[50,16],[47,17],[48,24],[46,24],[92,36],[12,3],[110,11],[20,8],[13,20],[0,-23],[-16,-9],[-20,-5],[-13,-6],[-3,-3],[-4,1],[-8,4],[-4,-1],[-7,-5],[-5,-2],[-16,4],[-14,0],[2,-7],[4,-2],[9,1],[-6,-4],[-2,0],[7,-15],[11,-9],[43,-7],[5,-4],[5,-3],[34,17],[4,4],[2,10],[0,61],[-2,11],[-4,4],[-5,3],[1,9],[6,20],[-7,18],[-4,21],[-6,50],[-9,39],[-1,8],[-3,51]],[[64975,72585],[76,-12],[6,1],[5,3],[5,9],[5,6],[6,0],[6,-1],[7,0],[10,5],[46,47],[7,1],[17,-6],[6,0],[4,4],[7,12],[5,4],[4,5],[13,15],[7,10],[1,4],[1,9],[4,15],[1,9],[0,14],[0,4],[-1,4],[-4,5],[-1,3],[0,13],[5,18],[1,12],[1,9],[4,10],[8,15],[42,49],[13,24],[2,7],[2,8],[3,3],[4,1],[3,2],[2,4],[3,11],[2,5],[6,3],[16,5],[3,2],[3,9],[6,6],[12,7],[4,1],[5,8],[6,5],[21,27],[6,4],[18,2],[55,19],[8,0],[17,-6],[11,-11],[4,-2],[15,0],[4,-3],[8,-7],[4,-2],[4,0],[40,12],[11,-2],[1,-1],[9,-6],[4,-1],[24,6],[5,6],[2,9],[1,11],[-1,10],[-8,15],[2,8],[18,27],[9,11],[10,7],[26,1],[4,-2],[4,-4],[4,-4],[3,-3],[5,1],[22,17],[14,3],[2,-1],[11,-14],[10,-10],[4,-2],[42,-13],[11,-8],[5,-1],[5,4],[4,6],[9,10],[4,6],[5,17],[1,1],[2,5],[5,4],[3,0],[3,0],[6,-4],[3,-3],[1,-4],[0,-4],[1,-6],[7,-18],[5,-20],[3,-9],[9,-16],[3,-18],[6,-14],[2,-11],[-1,-9],[-5,-32],[7,-15],[40,-27],[4,1],[4,2],[5,1],[5,-1],[14,-7],[13,1],[4,2],[5,0],[3,-4],[4,-5],[3,-4],[2,0],[1,-1],[4,2],[3,-1],[2,-3],[2,-9],[2,-4],[4,-3],[4,1],[5,2],[5,0],[9,-4],[44,-35],[18,-8],[9,-1],[5,-2],[5,-4],[2,-4],[0,-4],[-1,-4],[0,-4],[5,-14],[1,-5],[1,-11],[0,-8],[1,-6],[5,-7],[4,-3],[22,-6],[4,-2],[7,-9],[4,-2],[25,4],[5,4],[3,10],[3,10],[3,8],[5,5],[5,1],[5,-4],[14,-21],[12,-8],[6,-2],[6,1],[2,3],[2,3],[2,3],[3,0],[6,-2],[3,1],[3,1],[4,8],[0,9],[2,4],[17,-16],[21,-8],[11,-9],[4,-4],[4,-2],[8,-3],[3,-2],[9,-16],[37,-46],[6,-1],[16,13],[6,-3],[6,-9],[5,-13],[1,-8],[-1,-13],[2,-6],[1,-5],[-1,-6],[-2,-5],[-1,-7],[1,-12],[5,-41],[3,-8],[18,-25],[5,-10],[2,-4],[-1,-3],[-1,-2],[0,-1],[0,-4],[-1,-5],[0,-4],[5,-2],[2,-4],[2,-3],[2,-2],[3,0],[9,6],[4,-1],[4,-9],[2,-9],[2,-11],[2,-10],[3,-5],[3,1],[2,3],[3,9],[3,3],[3,-1],[40,-22],[18,-26],[10,-10],[23,-7],[10,-8],[9,-19],[10,-38],[13,-33],[29,-62],[6,-16],[8,-36],[6,-17],[9,-9],[44,1],[39,1],[59,2],[33,1],[29,1],[14,-4],[11,-3],[2,-20],[2,-9],[1,-6],[1,-7],[-1,-7],[-1,-7],[-1,-6],[-2,-4],[-1,-6],[0,-7],[2,-9],[-6,-48],[-1,-29],[3,-17],[0,-2],[-1,-2],[-1,-4],[3,-2],[2,-3],[2,-4],[1,-3],[1,-6],[1,-7],[0,-13],[1,-6],[4,-12],[4,-36],[1,-18],[0,-3],[0,-4],[-3,-7],[-2,-4],[-1,-5],[0,-6],[0,-5],[-1,-7],[-3,-3],[-2,-1],[-2,-3],[-1,-7],[1,-12],[0,-6],[-3,-6],[-6,-8],[-3,-7],[4,-3],[6,-2],[6,-5],[5,-8],[4,-9],[3,-9],[3,-9],[1,-11],[2,-21],[1,-9],[0,-10],[-2,-13],[2,-4],[0,-6],[-2,-14],[0,-3],[0,-11],[-1,-4],[-3,-7],[-2,-3],[1,-16],[4,-13],[7,-19]],[[67019,71563],[2,-5],[3,-24],[0,-12],[-1,-13],[-4,-11],[-7,-14],[-3,-11],[-2,-19],[-2,-6],[-5,-13],[-2,-7],[-1,-12],[1,-30],[-2,-11],[-6,-5],[-6,-2],[-6,0],[-4,-6],[-2,-13],[0,-12],[0,-6],[2,-3],[1,-5],[0,-6],[-3,-3],[-1,-2],[1,-6],[10,-24],[1,-2],[-1,-7],[-1,-5],[1,-5],[3,-5],[-7,-17],[-2,-8],[-2,-25],[-4,-22],[-1,-12],[-1,-5],[-3,-11],[-1,-8],[0,-6],[1,-11],[0,-5],[-1,-21],[-2,-20],[-9,-5],[-1,-9],[-6,-17],[-8,-12],[-5,-11],[-1,-14],[1,-15],[-1,-14],[-3,-7],[-3,-2],[-4,1],[-4,-1],[-3,-4],[-2,-4],[-1,-5],[-13,-25],[-6,-6],[-6,-4],[-16,-3],[-7,-7],[-4,-12],[3,-1],[3,-2],[1,-4],[3,-15],[2,-4],[7,-5],[3,-6],[3,-6],[5,-16],[20,-47],[3,-11],[-20,-2],[-29,-3],[-19,-2],[2,-13],[-5,-8],[-13,-13],[-10,-18],[-8,-20],[-8,-28],[-2,-26],[1,-8],[3,-51],[8,-91],[-1,-23],[-9,-35],[-2,-19],[7,-43],[18,-30],[22,-17],[22,-3],[20,2],[11,-1],[9,-4],[5,-5],[4,-7],[3,-9],[-1,-1],[-2,-6],[-4,-3],[-13,-1],[-5,-6],[-1,-9],[1,-10],[1,-10],[-2,-12],[-3,-6],[-9,-11],[-8,-12],[-10,-26],[-14,-33],[-15,-36],[-13,-33],[-2,-8],[0,-47],[4,-38],[8,-48],[10,-58],[9,-59],[11,-62],[11,-69],[12,-82],[10,-63],[-1,-48],[-4,-47],[-1,-10],[-8,-17],[-2,-9],[1,-4],[3,-2],[1,-4],[-2,-13],[0,-6],[2,-6],[1,-6],[0,-13],[-2,-37],[1,-28],[4,-55],[-4,-44],[1,-14],[4,-28],[3,-56],[10,-7],[28,-7],[46,-13],[1,0],[47,-12],[54,-15],[32,-8],[15,-5],[8,-5],[5,-8],[10,-23],[2,-11],[-2,-25],[0,-12],[3,-12],[7,-22],[3,-14],[0,-17],[1,-6],[5,-19],[3,-19],[1,-12],[0,-12],[-2,-12],[-5,-20],[1,-6],[1,-41],[-1,-2],[-1,-4],[0,-10],[0,-1],[1,-3],[-5,-10],[-23,-50],[-35,-78],[-32,-71],[-23,-50],[-30,-66],[-15,-35],[-23,-51],[-43,-94],[-21,-46],[-16,-35]],[[67107,65395],[-2,8],[0,10],[-5,7],[-1,4],[-1,2],[-3,-4],[-1,-3],[0,-10],[-1,-3],[2,-3],[2,-7],[2,-2],[-6,1],[-5,4],[-4,0],[-6,-9],[6,-4],[3,-3],[2,-5],[-1,-6],[-4,-11],[-2,-6],[0,-3],[0,-3],[-2,-4],[-4,-4],[-15,-9],[4,-5],[-7,-17],[-47,31],[-16,7],[0,10],[-4,14],[-39,27],[-45,15],[-39,18],[-26,6],[-5,5],[5,7],[-7,19],[-1,8],[0,33],[-1,5],[-10,20],[-4,5],[-5,1],[-5,-1],[-19,-11],[-5,-5],[-3,-9],[-4,-10],[-2,-6],[0,-4],[1,-4],[1,-12],[1,-1],[2,-1],[3,-3],[2,0],[2,-1],[1,-4],[3,-6],[-3,1],[0,-1],[8,-8],[-1,-8],[-3,1],[-9,8],[-12,9],[-5,6],[-12,-1],[-8,13],[2,10],[1,2],[-4,3],[-5,2],[-10,-1],[-7,-3],[-2,-1],[-3,-6],[0,-3],[1,-3],[6,-8],[-2,-11],[-7,0],[-6,8],[-3,2],[-10,2],[-2,3],[-3,8],[-4,5],[-10,-1],[-15,-5],[-14,-1],[-11,-15],[-11,8],[-12,22],[-13,6],[-32,-4],[-12,0],[-21,10],[-14,26],[-10,10],[-15,-5],[-33,-11],[-8,-2],[-16,-5],[-15,-14],[-6,-3],[-3,1],[-2,4],[-2,3],[-2,-1],[-3,-3],[-2,-1],[-7,1],[-5,2],[-5,4],[-3,6],[-13,39],[-7,16],[-11,10],[-10,-1],[-2,3],[-2,5],[-1,6],[-1,5],[-4,2],[-23,0],[-51,18],[-17,-6],[-15,2],[-5,5],[2,9],[-8,-1],[-9,-3],[-4,-4],[-6,-10],[-5,-2],[-1,1],[-1,3],[-2,0],[-3,-6],[-2,-3],[-3,-2],[-3,1],[-1,4],[-1,-2],[-10,-13],[-10,-3],[-9,4],[-9,5],[-9,3],[-8,7],[-6,15],[-8,34],[-9,21],[-10,4],[-12,-5],[-11,-12],[-9,-14],[-7,-8],[-4,0],[1,27],[1,6],[1,3],[0,2],[0,5],[-3,14],[-4,7],[-6,3],[-7,0],[-6,-1],[-16,-7],[-3,1],[-6,6],[-3,1],[-3,0],[-6,-3],[-3,-1],[-7,1],[-19,12],[2,3],[-37,5],[-4,4],[-2,10],[-1,29],[-7,30],[-4,24],[-2,11],[-3,5],[0,2],[-6,14],[-2,1],[-3,-1],[-1,0],[-1,3],[0,7],[-4,21],[-1,10],[-3,11],[-1,7],[2,13],[9,18],[3,12],[-4,19],[-18,38],[1,16],[-2,4],[-2,27],[-1,13],[-4,11],[-5,10],[-1,4],[-1,5],[-1,14],[0,5],[5,74],[-1,28],[-18,137],[-4,11],[-10,15],[-3,10],[0,9],[-8,11],[-3,6],[4,-1],[3,3],[3,3],[3,3],[-2,4],[0,6],[1,5],[1,5],[-8,-7],[-3,-1],[-3,1],[-1,3],[-1,3],[-2,1],[-1,2],[-2,4],[-2,3],[-5,-6],[-2,2],[0,5],[0,6],[-4,-1],[-2,3],[0,4],[3,2],[1,3],[5,10],[3,3],[0,5],[-9,2],[-6,8],[-5,13],[-1,13],[-4,-6],[-3,-2],[-8,0],[-4,2],[-2,6],[-3,6],[-2,2],[-29,1],[-6,4],[-2,-5],[-7,7],[-8,4],[-18,1],[-8,3],[-14,11],[-9,3],[-17,-2],[-9,-4],[-6,-9],[-6,-5],[-18,-2],[-8,-2],[-2,-3],[-5,-9],[-1,-3],[0,-6],[-2,-2],[-2,-1],[-2,-3],[-5,-8],[-19,-21],[-6,-11],[0,-3],[-2,-1],[-5,-9],[-3,-2],[-12,-2],[-12,-6],[-3,0],[-9,0],[-3,-1],[-4,-6],[-3,-1],[-10,0],[-9,4],[-3,0],[-5,-4],[-9,-17],[-4,-3],[-3,-5],[-15,-32],[4,3],[2,1],[2,4],[1,-14],[-2,-18],[-3,-17],[-4,-12],[-9,-15],[-10,-10],[-12,-5],[-13,2],[-22,14],[-13,4],[-10,-10],[-3,-11],[-2,-11],[-3,-8],[-6,-3],[-6,-1],[-12,-7],[-4,-3],[-18,-31],[-3,-4],[-27,-42],[-30,-33],[-2,-3],[-2,-4],[-2,-4],[-3,-1],[-3,1],[-5,5],[-3,2],[-24,-4],[-12,3],[-5,14],[-4,17],[-8,14],[-12,5],[-25,-2],[-10,10],[-5,15],[-5,19],[-5,18],[-8,13],[-6,2],[-6,-2],[-5,-3],[-21,-3],[-6,2],[-19,10],[-5,2],[-3,2],[-5,8],[-2,2],[-3,0],[-6,-2],[-18,-17],[-13,-3],[-11,-6],[-6,0],[-13,7],[-7,1],[-6,-6],[-4,2],[-14,24],[-21,23],[-27,39],[-4,10],[-1,11],[-1,28],[-2,12],[-5,11],[-9,11],[-94,61],[-6,1],[-6,3],[-4,8],[-3,9],[-4,8],[-16,8],[-3,6],[-2,13],[-6,7],[-13,7],[-22,38],[-10,13],[-15,12],[-21,18],[-6,12],[0,12],[2,8],[5,3],[6,2],[5,-1],[6,1],[3,6],[-2,14],[-4,7],[-12,9],[-4,6],[-2,7],[-5,20],[-2,6],[-20,40],[-10,14],[-10,8],[-49,21],[-11,10],[-32,58],[-11,13],[-11,9],[-13,3],[-20,-4],[-4,2],[-5,6],[-10,-1],[-11,-5],[-17,-6],[-11,3],[-24,10],[-3,1],[-2,4],[0,6],[-1,4],[-2,3],[-8,3],[-12,6],[-6,12],[-6,21],[-7,8],[-2,-17],[-6,-1],[-5,36],[-6,14],[-4,22],[-11,32],[-4,9],[-6,11],[-1,12],[6,32],[-1,15],[-5,18],[-10,16],[-4,8],[-9,29],[-9,18],[-3,6],[-17,79],[-2,18],[0,76],[-4,25],[-6,22],[-7,16],[-9,10],[-12,5],[-11,2],[-5,2],[-3,7],[-2,11],[-13,31],[-2,12],[-2,16],[1,14],[6,7],[5,-4],[6,-8],[4,-11],[3,-10],[3,5],[0,4],[-2,5],[1,7],[2,4],[5,9],[2,7],[1,13],[0,13],[-3,9],[-5,-3],[-3,17],[-1,7],[-4,5],[-2,-1],[-2,-2],[-2,-2],[-1,3],[-1,10],[0,5],[-1,3],[-7,2],[-22,-2],[-5,-2],[-7,-8],[-8,2],[-6,10],[-2,16],[-1,15],[1,7],[2,7],[2,8],[2,10],[3,4],[4,-8],[1,24],[1,4],[-3,2],[-2,3],[-3,12],[2,14],[0,23],[-2,24],[-2,16],[-3,12],[-6,14],[-4,4],[0,-18],[-2,7],[-8,22],[-14,22],[-3,8],[-2,10],[-4,11],[-9,17],[-16,13],[-3,6],[-2,12],[-4,11],[-7,15],[-8,20],[-12,43],[-7,18],[-5,9],[-12,13],[-11,20],[0,3],[-1,7],[-1,11],[-1,6],[5,1],[1,4],[-2,4],[-4,4],[3,20],[-6,33],[2,16],[-4,5],[-5,11],[-3,12],[-2,10],[-1,6],[-4,5],[-3,2],[-7,5],[-10,2],[-10,-3],[-10,-6],[-88,-103],[-10,-8],[-9,4],[-8,21],[0,9],[0,27],[-2,10],[-2,6],[-1,3],[-1,3],[-3,3],[-3,2],[-3,1],[-6,1],[-3,-1],[-6,-2],[-3,-1],[-3,1],[-4,6],[-2,1],[-6,-2],[-10,-8],[-6,-2],[-7,1],[-3,5],[0,24],[-1,2],[-3,5],[-2,4],[0,3],[0,9],[1,4],[1,4],[0,4],[-3,4],[-2,-10],[-3,-10],[-4,-7],[-5,-1],[-5,5],[-2,8],[-3,6],[-5,1],[-6,4],[-19,20],[-4,6],[-1,19],[-5,12],[-7,7],[-9,5],[3,9],[4,3],[12,-4],[5,1],[10,5],[5,2],[5,-3],[12,-11],[4,-2],[6,-2],[4,-3],[4,-6],[4,-10],[1,8],[6,18],[8,19],[1,6],[1,10],[-6,-2],[-4,5],[-3,9],[-2,22],[-3,-3],[-4,-8],[-5,-6],[1,7],[0,2],[1,3],[-2,6],[-3,-1],[-2,-4],[-4,-1],[-2,2],[-3,8],[-2,2],[-2,-1],[-2,-3],[-2,0],[-5,1],[-5,3],[-5,1],[-5,-5],[-10,2],[-8,-9],[-2,-12],[8,-6],[9,-3],[7,-8],[2,-11],[-6,-10],[-4,0],[-15,4],[-4,-2],[-15,-26],[-1,-3],[-2,-7],[-2,-7],[3,-6],[-1,-4],[-2,-4],[-1,-4],[3,-12],[4,-9],[6,-8],[5,-10],[2,-10],[2,-13],[1,-27],[0,-8],[-3,-12],[-1,-6],[1,-7],[1,-11],[0,-7],[-1,-11],[-4,-11],[-5,-7],[-6,-3],[-19,4],[-4,-4],[-6,4],[-19,0],[-12,12],[-5,2],[0,-10],[1,-7],[4,-12],[0,-8],[0,-6],[-2,-5],[-3,-4],[-2,-3],[-7,-3],[-20,3],[0,4],[-2,-3],[0,-2]],[[65146,66051],[1,-2],[2,-2],[1,-4],[1,-4],[-5,-23],[-2,0],[-3,2],[-3,3],[-2,4],[0,7],[-1,6],[0,6],[1,7],[2,4],[2,2],[3,-1],[3,-5]],[[65010,66157],[-21,2],[-2,0],[-9,8],[-6,18],[3,8],[4,6],[5,3],[6,-1],[4,-3],[11,-2],[4,-3],[0,-2],[0,-2],[0,-5],[0,-1],[0,-4],[1,0],[1,-2],[2,-2],[0,-1],[1,-4],[0,-3],[-1,-4],[0,-3],[-3,-3]],[[64810,66341],[-5,-5],[-6,-1],[-16,6],[-4,4],[-1,0],[-4,5],[-8,14],[-3,5],[1,3],[2,1],[2,1],[3,1],[23,-14],[21,-3],[7,-5],[3,-6],[3,-4],[-4,-2],[-11,2],[-3,-2]],[[65644,66361],[2,16],[4,11],[7,6],[10,2],[2,-18],[-9,-14],[-10,-7],[-6,4]],[[65614,66461],[5,-2],[7,-6],[5,-7],[2,-2],[2,-11],[-5,-5],[-4,-5],[-17,-8],[-6,-11],[-7,-26],[-3,-11],[-11,-22],[-2,-8],[-3,-5],[-10,-10],[-3,-5],[-2,-3],[-14,-25],[-8,-9],[-6,5],[-6,12],[-7,10],[-19,-18],[-5,-8],[-5,-6],[-6,0],[-13,4],[-5,-3],[-6,-5],[-15,-21],[-16,-12],[-9,-13],[-5,-5],[-17,-4],[-13,-7],[-5,-6],[-2,-2],[-1,1],[-2,0],[-3,2],[-3,0],[-1,-5],[-1,-4],[-3,-3],[-3,-2],[-3,-1],[-1,2],[-1,1],[-2,7],[-1,14],[2,11],[0,7],[-1,3],[-3,18],[3,6],[13,-9],[3,3],[2,-1],[1,0],[15,15],[37,23],[5,2],[4,2],[1,1],[12,15],[6,9],[18,13],[3,0],[6,0],[3,0],[2,2],[2,4],[3,2],[-1,4],[-1,4],[4,10],[1,11],[-1,26],[-2,10],[-5,9],[-4,7],[-2,4],[7,8],[38,-28],[11,5],[29,36],[37,16],[11,0]],[[65686,66522],[3,-3],[3,-3],[3,-4],[0,-1],[1,-7],[-1,-8],[-3,-6],[-2,-1],[-1,-2],[-5,-2],[-8,7],[0,15],[5,13],[5,2]],[[63973,67805],[5,-5],[3,-3],[-1,-10],[1,-10],[-2,-9],[-3,-1],[-3,4],[-2,14],[-2,11],[-2,7],[3,4],[3,-2]],[[65151,65824],[2,-5],[0,-11],[-3,-4],[-4,2],[-4,4],[-1,6],[4,4],[6,4]],[[65526,66270],[2,-7],[0,-14],[-4,-12],[-5,-7],[-5,5],[1,14],[3,13],[5,7],[3,1]],[[64899,66275],[3,-3],[3,-9],[-4,-7],[-5,2],[-5,4],[-2,8],[2,6],[5,1],[3,-2]],[[65291,65800],[0,-6],[1,-7],[-2,-4],[-2,0],[-2,-2],[-2,5],[-2,-2],[0,4],[-1,3],[-1,6],[4,4],[5,3],[2,-4]],[[51183,80891],[-1,2],[-2,7],[-1,7],[0,6],[0,5],[-3,3],[-3,-6],[-7,-2],[-25,1],[-5,2],[-6,5],[-15,17],[-5,3],[-11,2],[-4,-4],[-8,-20],[-4,-7],[-4,-3],[-10,-1],[-3,-3],[-3,-1],[-3,2],[-8,11],[-17,11],[-11,14],[-4,0],[-11,-5],[-7,-1],[-15,5],[-5,4],[-5,8],[-3,9],[-4,7],[-9,11],[-3,6],[-1,10],[3,5],[28,24],[75,10],[6,-1],[4,-3],[5,-5],[4,-8],[2,-8],[-2,-2],[-5,-4],[-2,-2],[0,-4],[27,-4],[13,-7],[11,-13],[4,-10],[6,-20],[4,-7],[6,-3],[15,3],[5,-4],[6,2],[9,0],[3,1],[5,2],[4,13],[-2,13],[-6,10],[-8,6],[-2,0],[-10,3],[-12,6],[-4,1],[-9,-1],[-4,0],[-7,6],[-22,27],[15,10],[7,2],[25,-1],[8,-3],[6,-8],[-1,11],[-4,5],[-1,0],[-11,1],[-3,1],[-2,3],[-3,3],[-1,5],[-1,7],[0,7],[1,5],[4,5],[4,3],[10,1],[-3,4],[-7,6],[-20,8],[-4,8],[-1,20],[-5,12],[-7,8],[-8,7],[-5,-5],[-7,-3],[-7,0],[-5,-2],[-1,-2],[-2,-1],[-3,0],[-3,17],[8,7],[18,7],[2,4],[6,1],[9,-3],[8,-5],[1,-1],[2,1],[3,1],[3,4],[-2,6],[-7,13],[-2,2],[-1,2],[-1,4],[0,4],[2,4],[1,2],[1,2],[-1,9],[-6,23],[-3,10],[2,5],[2,3],[13,-3],[11,2],[9,8],[40,64],[34,65],[28,67],[17,65],[2,16],[0,5],[5,15],[12,115],[5,29],[1,9],[3,19],[11,39],[3,19],[0,11],[1,15],[2,12],[4,5],[17,-4],[3,4],[2,-5],[-5,-18],[7,-10],[11,-5],[11,1],[7,5],[11,13],[6,3],[11,2],[11,6],[56,64],[4,7],[5,5],[13,4],[6,5],[5,14],[8,41],[6,18],[9,14],[6,7],[11,6],[4,7],[5,8],[5,6],[5,3],[14,3],[9,11],[45,22],[10,10],[6,0],[19,13],[27,1],[30,1],[24,1],[3,-1],[5,-5],[3,-2],[2,1],[7,7],[41,16],[66,13],[27,-6],[6,-3],[5,-7],[9,-49],[2,0],[6,-7],[1,-1],[1,-1],[2,-3],[2,-3],[8,-4],[11,-8],[5,2],[3,-3],[3,-1],[3,1],[3,3],[2,0],[0,-4],[-3,-2],[-1,-2],[0,-2],[2,-5],[0,-10],[9,-6],[20,-7],[3,0]],[[50930,80895],[45,19],[4,5],[4,0],[18,-15],[27,-10],[9,-11],[6,-3],[11,0],[10,-4],[7,1],[27,16],[4,6],[2,11],[2,6],[6,-1],[7,-3],[4,-3],[2,-4],[3,-9],[2,-4],[3,-1],[7,-2],[3,-3],[1,-1],[10,-1],[5,10],[2,2],[5,-1],[6,-4]],[[31052,57711],[2,-3],[3,-5],[1,-5],[-3,-3],[-3,-6],[2,-31],[0,-12],[-3,-4],[-5,0],[-2,-4],[1,-5],[2,-15],[1,-6],[0,-6],[-2,-7],[-1,-7],[-2,-3],[-3,1],[-1,3],[-6,26],[-1,11],[-1,10],[1,19],[0,12],[-1,12],[-4,13],[-5,7],[-14,4],[-6,4],[-5,8],[-2,9],[4,12],[-2,4],[1,7],[2,6],[2,3],[4,0],[4,-5],[6,-16],[3,-3],[4,-3],[18,-17],[9,-3],[2,-2]],[[32500,60849],[4,-5],[2,-8],[3,-3],[6,-8],[-1,-8],[-3,-5],[-6,2],[-4,15],[-1,20]],[[51121,81079],[11,-5],[6,-4],[0,-10],[-3,-6],[-4,-4],[-5,-3],[-22,-5],[-4,0],[-11,5],[-6,6],[-2,8],[-2,7],[-5,5],[-10,6],[-2,2],[-2,3],[-2,3],[-4,0],[-7,-11],[-2,-2],[-12,-1],[-6,3],[-3,7],[0,19],[10,9],[24,4],[1,1],[5,-1],[3,-2],[27,-1],[6,-2],[4,-5],[11,-17],[1,-3],[2,-3],[3,-3]],[[51359,81923],[0,-4],[5,0],[-2,-8],[-3,-9],[-8,-15],[-13,-14],[-6,-16],[-10,-3],[-10,5],[-5,15],[2,15],[5,18],[7,14],[13,15],[7,18],[7,14],[9,0],[1,-4],[0,-3],[0,-3],[-1,-3],[4,-8],[2,-10],[0,-10],[-4,-4]],[[51355,81988],[11,19],[19,22],[19,14],[13,-3],[0,-4],[-7,0],[-3,-2],[-8,-4],[-22,-28],[-6,-11],[-8,-8],[-8,5]],[[51506,82112],[4,4],[41,10],[-7,-12],[-7,-3],[-17,-1],[1,-2],[1,-4],[0,-3],[-3,-2],[-12,-1],[-12,-7],[-10,-3],[-39,-22],[-8,0],[-3,9],[3,10],[15,7],[5,6],[6,0],[37,9],[5,5]],[[51576,82134],[66,4],[12,-8],[-28,-8],[-29,0],[-7,-2],[-13,-8],[-7,2],[-5,9],[2,8],[4,5],[5,-2]],[[51725,82158],[27,4],[8,-4],[0,-4],[-4,0],[-47,-19],[-6,-9],[-1,3],[-1,2],[2,3],[-3,8],[7,8],[11,6],[7,2]],[[51789,82187],[4,1],[15,-9],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-10,4],[-5,4],[0,4]],[[32433,60920],[3,-2],[2,-8],[-2,-7],[-3,-2],[-3,6],[1,10],[2,3]],[[47780,56488],[5,-4],[6,0],[6,3],[5,5],[5,9],[3,4],[7,2],[3,2],[2,3],[3,5],[6,18],[2,5],[0,6],[2,3],[2,3],[2,5],[0,8],[4,12],[-4,10],[6,3],[6,7],[3,10],[-3,9],[2,3],[1,1],[0,4],[4,6],[3,1],[3,0],[2,1],[2,6],[1,8],[2,5],[5,2],[10,-13],[7,-2],[3,1],[5,0],[2,2],[2,4],[7,18],[4,0],[3,-1],[3,-4],[2,-5],[2,-7],[0,-7],[0,-6],[0,-5],[1,-6],[5,-17],[0,-6],[-1,-6],[1,-3],[3,-1],[3,2],[7,6],[7,-1],[1,-9],[-1,-24],[0,-15],[2,-7],[5,-2],[17,-1],[22,-7],[28,-16],[4,-6],[5,-11],[4,-14],[5,-9],[7,0],[6,5],[6,9],[3,13],[0,15],[-3,6],[-4,5],[-3,6],[0,8],[7,47],[3,7],[6,2],[16,-4],[5,1],[17,16],[6,2],[6,-4],[10,-13],[6,-2],[7,5],[2,7],[0,2],[1,20],[2,4],[1,4],[2,6],[0,6],[-2,4],[-3,3],[-3,2],[-2,2],[-3,12],[-1,10],[3,19],[1,27],[-1,5],[-1,4],[0,5],[0,11],[2,11],[4,14],[0,2],[6,4],[4,-4],[5,-21],[5,-8],[5,-8],[12,-13],[4,-3],[15,-6],[6,-1],[7,2],[5,8],[1,14],[-2,5],[-4,4],[-3,4],[-1,8],[0,23],[2,11],[5,5],[6,1],[6,-2],[7,-1],[5,6],[6,7],[6,6],[7,2],[3,-3],[0,-9],[-1,-24],[0,-5],[6,-4],[3,-3],[2,-5],[1,-4],[-1,-7],[-3,-4],[-3,-3],[-2,-5],[1,-8],[1,-7],[0,-7],[-2,-5],[-5,-9],[-2,-5],[0,-9],[2,-1],[2,1],[3,-1],[1,-3],[1,-4],[2,-3],[2,-1],[3,1],[2,0],[2,-2],[1,-6],[0,-4],[-3,-10],[-1,-5],[1,-6],[5,-11],[-5,-19],[0,-11],[4,-7],[-7,-16],[0,-2],[1,-3],[0,-4],[0,-3],[-3,-2],[-2,2],[-1,2],[-1,1],[-3,-8],[-1,-8],[1,-22],[4,2],[3,-4],[6,-14],[4,-5],[21,-16],[24,0],[6,11],[3,11],[2,13],[1,15],[3,5],[13,-9],[3,5],[-1,32],[1,11],[3,10],[5,7],[20,22],[35,16],[16,3],[8,5],[2,0],[4,-3],[6,-8],[7,-6]],[[48465,56644],[5,-6],[5,-13],[4,-15],[0,-11],[4,-3],[2,0],[2,-1],[2,-2],[1,-5],[1,-5],[1,-4],[3,-5],[4,-4],[4,-3],[6,0],[1,2],[1,3],[1,2],[2,-1],[1,-2],[2,0],[3,0],[3,2],[2,3],[1,4],[2,3],[5,0],[13,-4],[4,2],[14,-17],[2,1],[2,8],[5,-1],[4,-6],[1,0],[2,-9],[0,-33],[-1,-3],[-1,-3],[0,-3],[3,-1],[2,2],[2,3],[1,4],[1,4],[1,-13],[-2,-10],[-1,-7],[8,1],[-2,-11],[2,-6],[7,-10],[0,-4],[-6,-5],[-3,-5],[2,0],[2,-1],[2,-2],[2,-1],[-4,-4],[2,-7],[3,-1],[4,3],[2,5],[2,-10],[3,-6],[3,-4],[4,-4],[3,-9],[2,-11],[-1,-8],[-6,-1],[1,-6],[3,-8],[3,-14],[1,-4],[-4,-24],[0,-7],[8,-16],[3,-2],[1,4],[2,6],[2,2],[3,-1],[1,-3],[1,-3],[2,-1],[7,-1],[5,-3],[4,-8],[2,-12],[6,4],[2,-9],[1,-14],[3,-10],[-5,-3],[-2,-1],[-3,1],[0,-5],[3,-4],[0,-3],[1,-5],[4,3],[4,-13],[4,2],[-2,3],[0,3],[1,2],[2,0],[3,0],[2,-2],[1,-4],[1,-4],[3,-6],[1,-4],[1,-6],[0,-5],[2,-2],[4,-3],[1,-4],[0,-2],[2,2],[3,3],[2,4],[1,3],[-1,2],[4,0],[4,1],[3,3],[4,8],[3,-5],[4,-13],[3,-2],[4,2],[1,6],[0,8],[2,8],[0,4],[1,3],[1,1],[5,0],[2,-1],[1,-2],[1,-3],[-1,-10],[-2,-15],[-1,-11],[4,-12],[9,-2],[10,1],[7,-4],[2,-8],[3,-20],[1,-6],[4,-4],[1,5],[0,10],[1,9],[4,-2],[8,-7],[2,5],[3,15],[1,7],[-1,14],[0,5],[2,6],[8,18],[-3,3],[-1,0],[3,7],[5,4],[11,3],[5,6],[8,23],[5,8],[4,1],[16,-9],[3,-4],[2,-1],[1,1],[1,3],[0,3],[0,1],[5,5],[2,1],[9,1],[2,8],[1,10],[4,4],[6,3],[10,15],[6,3],[18,1],[6,3],[2,4],[5,10],[2,4],[4,3],[14,3],[2,0],[4,-5],[1,0],[2,1],[2,7],[1,2],[4,-3],[2,-4],[2,-5],[3,-5],[5,-2],[16,5],[44,-8],[4,-2],[4,-10],[3,-3],[3,2],[3,4],[3,2],[1,-4],[0,-11],[1,-13],[2,-7],[7,1],[4,8],[9,28],[5,7],[3,-5],[0,-11],[-1,-14],[2,-12],[4,-6],[7,0],[6,-3],[6,-14],[3,-29],[3,-14],[5,-8],[5,-1],[9,6],[6,-3],[4,-9],[3,-14],[5,-27],[14,-57],[28,-78],[6,-10],[7,-1],[5,9],[7,31],[9,17]],[[49253,56089],[3,-10],[1,-8],[-2,-19],[1,-5],[1,-10],[0,-16],[-1,-10],[-4,-4],[-3,-4],[-3,-8],[-1,-11],[3,-9],[3,-6],[5,-3],[5,-5],[-1,-11],[-3,-11],[-9,-10],[-3,-11],[-5,-21],[-6,-13],[-1,-5],[-1,-29],[-1,-9],[-2,-9],[2,-3],[2,-4],[2,-3],[4,-2],[7,0],[7,-4],[7,-8],[2,-9],[0,-12],[5,-28],[1,-3],[2,0],[2,-2],[1,-5],[0,-10],[6,-41],[-1,-8],[-3,-4],[-2,-4],[0,-7],[1,-5],[2,2],[2,-9],[13,-166],[12,-166],[-2,-9],[-12,-15],[-4,-3],[-3,1],[-4,3],[-2,1],[-2,-4],[-2,-8],[-1,-9],[1,-8],[4,-17],[1,-14],[0,-10],[-3,-8],[-5,-6],[-17,-12],[-5,-8],[-13,-31],[-4,-8],[-1,2],[-1,4],[-2,2],[-2,0],[0,-5],[-2,-44],[-1,-6],[-2,-5],[-6,-8],[-2,-5],[-1,-3],[1,-8],[0,-3],[-1,-4],[-3,-7],[-1,-4],[-20,-91],[-4,-24],[-13,-182],[0,-6],[2,-9],[2,-5],[1,-4],[0,-9],[-3,-11],[-12,-34],[-2,-6],[-2,-29],[-2,-5],[-13,-9],[-1,-1],[-3,-4],[-32,-117],[-5,-23],[0,-21],[1,-6],[3,-10],[4,-15],[1,-4],[-6,-33],[-1,-3],[-5,-6],[-2,-7],[-1,-10],[22,-209],[3,-8],[1,-2],[8,-16],[6,-33],[9,-99],[4,-21],[11,-42],[3,-21],[1,-22],[-3,-67],[18,3],[-3,-37],[2,-15],[6,-8],[6,1],[9,12],[4,4],[20,-11],[4,-6],[2,-8],[1,-9],[0,-31],[5,-43],[8,-38],[1,-10],[-1,-11],[-2,-7],[-4,-1],[-9,3],[-2,-36],[1,-9],[3,-12],[2,-6],[0,-5],[-2,-13],[1,-5],[0,-2],[4,-7],[2,-4],[-3,-11],[-4,-6],[-6,-2],[-11,1]],[[49210,53519],[-1,17],[-9,2],[-12,-3],[-7,1],[2,-12],[-1,-12],[-4,-10],[-6,-3],[-4,3],[-15,14],[-4,8],[-6,-4],[-11,0],[-4,-5],[-3,11],[-4,14],[-5,11],[-5,5],[-2,4],[3,10],[5,8],[1,2],[2,8],[0,18],[2,7],[4,5],[3,1],[2,4],[0,12],[0,9],[-2,4],[-3,1],[-5,0],[-1,-1],[-2,-3],[-2,-3],[-3,-1],[-2,1],[-4,3],[-2,0],[-3,-2],[-5,-8],[-4,-2],[3,-14],[2,-12],[-2,-8],[-8,-2],[1,-5],[0,-4],[-1,-4],[-2,-4],[2,-3],[2,-1],[-2,0],[2,-2],[3,-2],[3,0],[3,0],[0,-4],[-2,-3],[-5,1],[-2,-2],[-3,-4],[-2,-5],[-2,-5],[-1,-7],[-3,5],[-2,-3],[1,-5],[4,-4],[-2,-8],[2,-5],[3,-3],[5,-1],[-11,-17],[-18,2],[-70,32],[-13,1],[-9,4],[-2,1],[-1,4],[0,5],[1,4],[-1,4],[-2,5],[2,8],[-3,-5],[-2,-8],[-2,-8],[-1,-8],[-2,0],[-3,4],[-5,2],[-12,-1],[-3,2],[-13,14],[-19,6],[-9,5],[-4,14],[5,-4],[6,1],[5,6],[3,9],[4,-11],[2,-4],[2,-2],[2,2],[1,3],[0,4],[-2,4],[0,4],[4,-2],[10,-9],[2,0],[2,2],[7,-5],[10,-11],[-1,4],[0,5],[-1,4],[4,-1],[8,-2],[3,3],[3,9],[-1,5],[-4,5],[-2,7],[-3,19],[-1,9],[-1,5],[-2,3],[-3,1],[-3,-3],[-2,3],[-2,1],[-3,-1],[-1,-5],[1,-3],[6,-9],[7,-20],[4,-10],[5,-4],[-2,-8],[-5,1],[-4,2],[-4,-4],[-2,0],[-4,9],[-2,2],[-3,0],[-4,1],[-3,3],[-4,4],[-2,5],[-1,8],[-1,-2],[-2,-3],[-1,-3],[-1,5],[0,5],[-1,5],[0,6],[-2,0],[0,-8],[-1,-7],[-3,-4],[-3,3],[-2,-4],[-3,-1],[-3,1],[-4,4],[-6,-3],[-3,-2],[3,-5],[4,-2],[4,1],[4,3],[4,-9],[-4,-6],[-5,-6],[-5,-2],[-4,4],[-4,5],[-6,5],[-6,4],[-2,-2],[-2,-5],[-6,3],[-7,9],[-4,-3],[-3,-4],[-3,-2],[-4,4],[-2,-3],[-1,0],[-2,3],[-2,5],[-8,-11],[-4,-3],[-4,2],[1,2],[1,7],[0,3],[-7,3],[-3,-1],[-3,-7],[-2,4],[-3,3],[-2,0],[-2,-9],[-4,-8],[-2,-6],[-2,5],[-4,5],[-3,5],[-3,1],[-3,-3],[-2,-5],[-3,-3],[-3,7],[1,2],[1,2],[-10,-1],[-4,-4],[-1,-11],[2,3],[3,-1],[1,-4],[1,-6],[-5,3],[-20,2],[-1,5],[-1,5],[-3,9],[-2,-5],[0,-5],[1,-4],[3,-2],[0,-3],[-5,-3],[-4,-3],[-7,-11],[-5,7],[-6,-1],[-5,-5],[-3,-5],[-1,0],[-2,2],[-3,3],[-2,4],[-1,3],[3,3],[3,-1],[3,-1],[4,-1],[-1,6],[0,3],[-2,2],[-2,1],[0,5],[2,2],[2,5],[1,5],[0,7],[-2,0],[-3,-13],[-5,-7],[-6,-3],[-7,-1],[8,-12],[-6,-10],[-10,-10],[-7,-8],[-2,-9],[1,-5],[2,-4],[5,-2],[5,-1],[5,2],[3,4],[-2,6],[0,5],[7,4],[4,4],[1,-3],[1,-4],[3,-1],[3,2],[6,5],[4,1],[8,0],[3,-1],[2,-3],[1,-3],[1,-1],[4,-1],[3,0],[6,5],[-2,-1],[-4,1],[-2,2],[-1,6],[1,3],[10,5],[0,-8],[2,0],[6,6],[17,-2],[8,8],[1,-9],[2,4],[2,8],[2,5],[5,0],[5,-5],[4,-2],[3,7],[5,-4],[6,2],[5,4],[12,4],[7,9],[4,2],[35,2],[8,-7],[-2,-2],[-3,-2],[-3,0],[-3,1],[21,-21],[-87,-15],[-87,-15],[-46,-22],[-25,-5],[-5,-4],[-3,3],[-3,2],[-15,0],[-3,-1],[0,4],[1,0],[1,0],[1,0],[0,4],[-8,0],[-1,7],[0,11],[-2,11],[3,9],[-3,2],[-15,-4],[-5,-4],[-5,-5],[-4,-7],[-4,9],[-8,8],[-10,5],[-8,-5],[-1,2],[-2,3],[0,2],[-1,1],[-2,0],[-3,-6],[-5,3],[-5,5],[-4,-2],[-2,0],[-3,3],[-1,-2],[-1,-6],[2,-7],[-1,0],[-3,4],[0,-6],[0,-2],[2,1],[0,-2],[2,-3],[0,-1],[2,3],[1,1],[4,1],[0,-5],[-2,-5],[-7,-7],[-2,-3],[0,11],[-4,-24],[-2,-8],[-10,29],[-2,0],[0,-2],[0,-6],[-3,4],[4,-17],[11,-11],[14,-3],[11,6],[-5,7],[-4,0],[-5,-2],[-5,3],[0,4],[2,0],[3,0],[2,2],[2,3],[1,2],[4,8],[1,2],[4,-2],[5,-5],[4,-3],[4,6],[3,-5],[4,-1],[3,2],[1,8],[-5,-2],[-2,5],[-2,6],[-4,3],[0,4],[4,-4],[9,3],[17,-21],[7,4],[4,6],[4,1],[9,-2],[2,-4],[1,-10],[2,-11],[4,-7],[-70,-5],[-11,-8],[-56,-7],[-8,3],[-7,9],[-8,-12],[6,-4],[2,0],[-22,-15],[-62,-20],[-2,-1],[-31,-21],[-5,-5],[-2,-5],[-3,0],[-15,-11],[-22,-24],[-76,-55],[-2,-4],[-2,-9],[-4,-4],[-29,-16],[-6,-1],[-4,-3],[-8,-15],[-4,-6],[-35,-22],[-28,-4],[-7,-8],[-7,-3],[-3,-4],[-8,-20],[-15,-27],[-17,-22],[-11,-8],[-21,-4],[-17,-15],[-3,-5],[-3,-12],[-3,-1],[-3,0],[-3,-2],[-5,-9],[-15,-17],[-22,-39],[-5,-4],[-6,2],[-13,5],[-4,-2]],[[49134,53495],[-1,-10]],[[49133,53485],[-12,6],[-28,5],[-4,5],[2,8],[5,10],[5,9],[8,-4],[2,-3],[0,-4],[1,-3],[1,-3],[2,-2],[6,-4],[1,0],[1,1],[3,-3],[4,-8],[3,-1],[1,1]],[[56303,76662],[-12,-8],[-3,-4],[-4,-11],[-4,-8],[-1,-1],[0,-3],[0,-3],[0,-2],[1,0],[-3,-18],[-1,-6],[1,-6],[2,-13],[0,-5],[-4,-9],[-5,-2],[-5,1],[-6,-3],[-3,-7],[-2,-9],[-4,-6],[-6,0],[-4,-1],[-9,-3],[-6,-4],[-3,-8],[-1,-7],[0,-17],[-1,-10],[-1,-2],[-2,-8],[-1,-3],[-1,-18],[-2,-18],[-4,-14],[-1,-13],[3,-16],[7,-13],[1,-5],[-1,-10],[0,-4],[1,-8],[2,-8],[2,-7],[3,-6],[3,-5],[8,-7],[3,-5],[2,-7],[0,-14],[2,-7],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[1,-2],[1,-2],[0,-1],[0,-2],[-1,-1],[0,-3],[-1,-3],[0,-3],[4,-11],[5,-28],[3,-11],[3,-6],[10,-7],[2,-3],[4,-8],[2,-3],[3,-1],[6,1],[3,-2],[2,-3],[3,-10],[1,-1],[1,-3],[3,-2],[5,1],[3,-1],[4,-3],[2,-1],[2,-3],[20,-31],[4,-8],[1,-5],[0,-11],[1,-4],[2,-4],[7,-11],[7,-16],[4,-6],[5,-4],[14,-5],[4,-3],[1,-7],[0,-8],[-3,-19],[-5,-20],[-6,-13],[-2,-3],[-5,-4],[-2,-3],[-1,-4],[-2,-11],[-2,-4],[-11,-18],[-4,-8],[-4,-2],[-8,-3],[-3,-3],[-2,-5],[-1,-8],[-5,-28],[-2,-7],[0,-1],[-4,-6],[-8,-6],[-8,-3],[-21,9],[-8,-2],[-4,-4],[-1,-3],[-2,-2],[-5,1],[-4,0],[-2,-3],[-5,-11],[-3,-4],[-7,-6],[-2,-3],[-2,-4],[-1,-2],[0,-3],[1,-2],[6,-25],[4,-9],[4,-5],[1,-2],[0,-2],[0,-2],[-1,-1],[-3,-6],[-8,-22],[2,-8],[-1,-14],[-1,-7],[-3,-23],[-1,-12],[1,-1],[14,-21],[9,-10],[3,-7],[2,-8],[2,-9],[-1,-12],[-4,-22],[-3,-10],[-3,-3],[-4,-1],[-4,-3],[-4,-9],[-5,-22],[-4,-8],[-5,-3],[-11,0],[-6,-5]],[[55651,75833],[3,23],[-1,14],[-4,10],[-17,13],[-15,17],[-8,5],[-15,3],[-3,1],[-4,2],[-16,26],[-1,1],[-9,15],[-17,18],[-3,5],[-2,6],[-2,6],[-2,4],[-3,2],[-3,-2],[-6,-10],[-3,-4],[-10,-1],[-9,1],[-7,4],[-5,7],[-5,11],[-9,23],[-2,0],[-2,-3],[-4,-2],[-6,1],[-12,6],[-6,4],[-4,7],[-9,18],[-1,0],[-9,13],[-3,7],[-5,17],[-3,8],[-17,26],[-11,27],[-5,6],[-38,26],[-7,10],[-5,16],[0,17],[5,13]],[[55331,76250],[7,0],[3,10],[3,14],[3,9],[3,2],[8,-2],[3,0],[3,3],[7,8],[2,1],[5,-4],[5,-9],[4,-12],[2,-10],[2,-5],[3,5],[3,13],[4,1],[10,-7],[2,2],[1,3],[-1,2],[-2,3],[-1,7],[-1,8],[1,8],[1,7],[7,11],[0,16],[-7,33],[-6,19],[-28,48],[-15,37],[-8,17],[-10,11],[-3,3],[3,5],[1,4],[-2,7],[0,5],[2,5],[2,4],[6,2],[4,1],[4,-2],[7,-8],[7,-10],[4,-4],[4,1],[4,2],[14,1],[16,-2],[7,1],[7,3],[11,13],[5,9],[2,9],[-2,11],[-3,5],[-3,-1],[-2,-4],[-1,-1],[-2,3],[-5,8],[-9,8],[-1,4],[-5,11],[-5,7],[-1,3],[-1,11],[-2,5],[-2,0],[-3,-5],[-2,-1],[-2,2],[-3,4],[-12,14],[-5,8],[-2,8],[0,12],[-4,13],[-5,10],[-4,6],[-4,1],[-9,-3],[-3,0],[-3,2],[-6,4],[-12,4],[-5,4],[-5,9],[-6,21],[-3,11],[0,12],[2,12],[4,8],[4,8],[0,16],[-4,27],[0,9],[10,5],[2,3],[2,4],[2,5],[0,4],[0,9],[1,4],[1,3],[3,3],[1,2],[13,33],[4,18],[2,6],[3,5],[6,7],[3,6],[2,11],[10,71],[1,3],[2,1],[1,1],[0,6],[-1,5],[-1,3],[-2,3],[-2,3],[-1,2],[0,-1],[0,-1],[-3,0],[-3,1],[-6,8],[-2,0],[-2,-1],[-3,-1],[-12,4],[-3,-1],[-5,-3],[-3,0],[-1,3],[-1,5],[-2,3],[-3,-1],[-25,-27],[-5,-3],[-6,-1],[-8,-4]],[[55282,77040],[-6,17],[-1,12],[7,6],[4,-1],[6,-10],[4,-1],[3,4],[3,5],[4,11],[3,2],[3,2],[2,5],[-1,9],[-3,4],[-6,-3],[-3,4],[0,6],[1,7],[1,7],[1,6],[-1,6],[-2,17],[-1,15],[-1,5],[-2,8],[-2,4],[-3,4],[-2,4],[0,6],[4,5],[15,-2],[6,2],[2,9],[-4,12],[-2,8],[6,2],[3,-2],[6,-12],[3,-4],[5,-3],[6,-1],[12,3],[1,1],[1,3],[1,2],[2,2],[1,-1],[2,-6],[2,-1],[24,2],[1,1],[3,5],[1,14],[-3,12],[-6,3],[-4,11],[-56,22],[-10,8],[-7,13],[-1,5],[0,7],[-1,6],[-3,2],[-11,0],[-6,2],[-5,5],[-4,8],[-3,9],[14,10],[3,6],[-2,7],[-5,9],[-3,4],[-2,11],[4,15],[2,-1],[17,-4],[8,12],[-3,9],[-4,3],[-4,1],[-5,3],[-2,4],[-2,3],[0,3],[-2,5],[-3,2],[-2,-1],[-3,-2],[-4,-4],[-3,-5],[-4,-4],[-5,-1],[-3,4],[-5,14],[-3,3],[1,5],[1,11],[1,11],[3,5],[3,3],[8,16],[1,5],[-1,9],[-4,5],[-5,4],[-4,5],[-2,7],[-1,18],[-2,9],[-8,15],[-2,5],[-4,7],[-1,3],[1,3],[1,2],[0,4],[1,16],[9,1],[3,1],[2,4],[0,5],[-3,5],[-6,6],[2,5],[3,3],[4,5],[-1,9]],[[46593,59220],[5,-5],[6,-2],[6,1],[12,9],[6,2],[4,-4],[12,-22],[3,-3],[2,7],[1,9],[2,3],[6,-3],[5,0],[6,4],[4,7],[7,18],[4,7],[11,5],[5,6],[4,7],[3,8],[1,6],[1,4],[2,3],[0,3],[2,1],[2,1],[1,2],[0,3],[-2,6],[-1,3],[0,3],[2,22],[1,10],[2,9],[0,1],[1,10],[-1,9],[-2,6],[-3,6],[-2,0],[-2,-3],[-1,-1],[-3,4],[0,3],[1,18],[3,24],[0,6],[0,8],[-1,6],[1,12],[5,32],[2,28],[1,9],[9,42],[5,42],[3,19],[7,16],[1,6],[0,20],[7,-2],[1,0],[8,-5],[7,-1],[8,8],[10,22],[5,6],[7,4],[3,3],[3,6],[0,3],[1,3],[-1,3],[0,3],[-1,2],[-1,1],[-1,2],[-1,2],[1,1],[3,1],[16,-7],[6,-6],[7,-12],[26,-78],[5,-12],[70,-107],[9,-18],[8,-31],[10,-21],[10,-29],[2,10],[4,34],[3,9],[7,15],[3,10],[3,22],[2,9],[4,9],[3,3],[3,0],[3,1],[3,9],[4,5],[2,5],[3,12],[-1,25],[1,11],[3,6],[5,1],[17,-5],[11,-1],[6,2],[10,7],[4,1],[6,-2],[4,2],[28,-1],[8,-3],[13,2],[4,-1],[24,-20],[2,0],[5,2],[2,0],[6,-6],[10,-13],[7,-4],[11,-1],[32,10],[32,-6],[11,5],[16,19],[5,5],[14,6],[69,6],[-4,33],[-4,37],[0,17],[4,16],[17,42],[6,7],[6,-6],[1,-19],[-4,-41],[-1,-54],[48,0],[9,0],[34,0],[5,0],[25,0],[19,0],[21,0],[22,0],[24,0],[37,0],[39,0],[42,0],[44,0],[46,0],[46,0],[47,0],[48,0],[48,0],[47,0],[46,0],[46,0],[44,0],[42,0],[12,0],[27,0],[37,0],[22,0],[20,0],[19,0],[17,0],[38,0],[43,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,2],[0,3],[0,1],[0,2],[1,3],[5,58],[5,57],[5,58],[6,57],[5,56],[5,56],[5,56],[5,56],[1,18],[0,4],[0,3],[-1,3],[-2,3],[-11,16],[-11,16],[-11,16],[-13,18],[-10,14],[-11,16],[-2,9],[-3,10],[-1,24],[-2,53],[-3,53],[-3,54],[-3,53],[-3,54],[-2,53],[-3,54],[-3,53],[-3,53],[-2,54],[-3,53],[-3,54],[-3,53],[-2,54],[-3,53],[-3,53],[-3,55],[-2,55],[-3,55],[-3,55],[-3,55],[-3,55],[-3,55],[-2,55],[-3,55],[-3,55],[-3,55],[-3,55],[-1,34],[-2,35],[-2,34],[-2,35],[-4,81],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-3,64],[-2,35],[-5,76],[-4,77],[-2,34],[-4,72],[-3,71],[-4,72],[-4,71],[-4,72],[-4,71],[-4,71],[-4,72],[-4,71],[-4,72],[-4,71],[-4,72],[-4,71],[-4,72],[-3,71],[-4,72],[-4,71],[-3,56],[-1,16],[-4,71],[-4,72],[-4,71],[-4,71],[-4,72],[-4,71],[-2,37],[-4,81],[-5,80],[-2,37],[0,3],[-2,48],[-3,47],[-3,48],[-2,47],[-3,47],[-3,47],[-3,47],[-2,47],[-3,48],[62,0],[61,0],[62,0],[61,0],[62,0],[61,0],[62,0],[61,0]],[[48660,65272],[21,-28],[22,-29],[21,-28],[21,-28],[31,-43],[22,-31],[22,-31],[22,-31],[22,-31],[23,-30],[22,-31],[22,-31],[22,-31],[22,-31],[22,-31],[22,-31],[23,-30],[22,-31],[22,-31],[22,-31],[22,-31],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[25,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[25,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[25,-33],[24,-34],[4,-5],[20,-28],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[24,-33],[24,-34],[24,-33],[33,-46],[4,-12],[5,-38],[0,-13],[-3,-64],[-6,-54],[-1,-11],[1,-15],[2,-8],[4,-3],[6,-1],[6,0],[11,5],[6,0],[7,-4],[4,-6],[5,-21],[5,-11],[4,-7],[12,-7],[12,-4],[5,-3],[5,-6],[10,-4],[11,-11],[18,-28],[5,-17],[2,-21],[0,-44],[2,-9],[33,-55],[6,-5],[6,-1],[5,1],[5,0],[4,-7],[3,-12],[1,-11],[2,-8],[6,0],[3,3],[5,9],[4,2],[3,-1],[2,-3],[2,-4],[3,-3],[18,-13],[4,-1],[7,7],[11,21],[7,9],[6,2],[5,-3],[5,-6],[17,-27],[10,-22],[9,-26],[11,-41],[3,-7],[5,-3],[6,-3],[6,-4],[10,-11],[5,-3],[3,0],[25,-10],[16,-1],[76,-33],[35,-31],[16,-26],[5,-4],[10,-6],[4,-4],[4,-8],[1,-8],[-5,-119],[0,-23],[4,-22],[1,-4],[2,-1],[1,-3],[1,-5],[0,-4],[-1,-11],[0,-6],[2,-11],[4,-9],[3,-9],[0,-13],[-2,-14],[-6,-8],[-5,-6],[-6,-9],[-2,-11],[-1,-23],[-2,-10],[-6,-13],[-3,-5],[-2,-5],[-2,-12],[-4,-13],[-3,-10],[1,-11],[4,-13],[5,-10],[6,-9],[6,-7],[13,-11],[16,-33],[6,-8],[3,-2],[4,-2],[7,1],[23,11],[29,12],[48,19],[20,8],[27,10],[48,19],[47,19]],[[51174,61806],[0,-73],[0,-73],[0,-74],[1,-73],[0,-1],[0,-72],[0,-73],[0,-74],[0,-73],[0,-73],[0,-32],[0,-41],[0,-74],[0,-73],[1,-73],[0,-73],[0,-73],[0,-74],[0,-37],[0,-62],[-4,-6],[-3,0],[-2,-2],[-1,-10],[-1,-11],[2,-58],[-2,-6],[-3,-12],[-1,-5],[0,-38],[0,-79],[1,-51],[0,-66],[-3,-13],[-3,-8],[-13,-13],[-6,-10],[-5,-12],[-5,-13],[-24,-126],[-2,-16],[2,-17],[3,-17],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[-16,-34],[-4,-13],[-2,-11],[-3,-58],[-2,-23],[-3,-17],[-1,-4],[-7,-17],[-11,-12],[-22,-9],[-10,-11],[-22,-50],[-24,-30],[-3,-16],[-2,-68],[-5,2],[-2,1],[-29,10],[-52,18],[-33,12],[-11,-1],[-4,-2],[-2,-3],[-1,-6],[-1,-11],[0,-21],[-1,-8],[-14,-1],[-27,-2],[-27,-2],[-26,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-1],[-26,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-2],[-26,-2],[-27,-2],[-21,-1],[-9,-5],[-7,-9],[-19,-36],[-23,-43],[-18,-35],[-23,-45],[-7,-7],[-7,-4],[-43,-2],[-8,-7],[-8,-6],[-8,-4],[-3,-1],[-43,32],[-9,-1],[-18,-13],[-9,-4],[-9,0],[-37,19],[-2,-6],[0,-14],[1,-30]],[[50060,59300],[-70,50],[-37,32],[-19,10],[-18,-7],[-17,-22],[-10,-9],[-8,0],[-2,8],[-7,36],[-2,2],[-9,0],[-61,-1],[-10,-5],[-5,-8],[-3,-4],[-15,-31],[-57,-106],[-10,-13],[-11,-9],[-53,-27],[-12,-12],[-96,-130],[-19,-7],[-20,-2],[-23,3],[-13,-1],[-8,-8],[-2,-15],[-6,-146],[-1,-6],[-2,-4],[-14,-13],[-5,-5],[-4,-1],[-9,4],[-65,64],[-21,10],[-15,-8],[-23,-27],[-6,-11],[-16,-36],[-5,-11],[-41,-48],[-7,-25],[2,1],[0,-1],[1,-2],[0,-1],[-11,-76],[-4,-17],[-5,-23],[1,-32],[8,-56],[-10,-7],[-9,-8],[-2,-1],[-2,2],[-2,3],[-2,2],[-7,1],[-2,-1],[-4,-4],[-4,-11],[-4,-2],[-2,9],[0,9],[-2,5],[-5,10],[-7,9],[-5,-1],[-6,-3],[-8,2],[-13,20],[-7,5],[-6,-11],[6,-9],[2,-15],[-1,-33],[-2,-14],[-4,-21],[10,-148],[-4,-5],[-45,-6],[-6,-5],[-1,-17],[3,-20],[0,-11],[-3,-10],[-3,-1],[-3,1],[-12,3],[-6,0],[-2,1],[-3,3],[-4,10],[-2,1],[-4,-1],[-2,2],[-22,36],[-13,17],[-21,34],[-5,5],[-11,6],[-10,8],[-4,2],[-6,-1],[-5,0],[-7,4],[-3,5],[3,7],[3,3],[5,11],[2,2],[3,1],[2,2],[0,7],[-1,1],[-7,3],[-2,2],[-1,4],[-2,11],[0,1],[-1,4],[-1,2],[-1,1],[-1,-1],[-1,-2],[-4,-9],[2,-3],[3,0],[2,-3],[-1,-6],[-4,-7],[-4,-5],[-3,-2],[-3,-3],[-5,-10],[-2,-3],[-8,-4],[-2,-3],[-5,-9],[-2,-11],[-5,-24],[-4,-14],[-6,-13],[-3,-3],[-2,0],[-3,1],[-3,-1],[-4,-6],[-5,-9],[-4,-11],[-1,-9],[2,-5],[6,-7],[0,-5],[-2,-6],[-3,-1],[-18,1],[-4,-4],[-4,-19],[-2,-5],[-1,-5],[0,-8],[1,-5],[9,-16],[7,-34],[3,-10],[9,-14],[5,-14],[2,-16],[-1,-34],[4,-27],[-1,-7],[-6,-38],[-2,-7],[-1,-1],[-3,-5],[-5,-4],[-6,-1],[-4,2],[-8,10],[-8,4],[-9,-2],[-10,-4],[-8,-7],[-3,-1],[-1,1],[-1,-2],[-2,-30],[2,-10],[12,-20],[5,-9],[6,-28],[2,-7],[2,-3],[0,-2],[-2,-8],[-4,-11],[-5,-11],[-5,-12],[-2,-14],[10,-50],[3,-26],[-9,-3],[-2,4],[-2,7],[-3,5],[-4,-1],[-3,-4],[-1,-4],[0,-5],[-1,-9],[1,-7],[-1,-3],[-1,-3],[-24,-42],[7,-28],[-3,-6],[-8,-1],[-10,-12],[-3,-12],[-1,-9],[-1,-6],[0,-2],[-6,-5],[-3,-1],[-5,2],[-3,-2],[-3,-5],[-2,-8],[-2,-7],[-2,-6],[-4,-5],[-8,-3],[-5,-3],[-5,10],[-6,0],[-12,-9],[-6,0],[-6,3],[-6,1],[-6,-5],[-2,-5],[-3,-3],[-3,-1],[-3,0],[-5,-1],[-11,1],[-4,-1],[-4,-4],[-9,-12],[-9,-5],[-4,-8],[-8,-17],[-10,-18],[-6,-17],[-2,-3],[-2,-1],[-1,2],[-2,2],[-2,2],[-2,0],[-1,-2],[-1,-2],[-1,-1],[-10,-3],[-1,-2],[-2,-4],[-1,-1],[-2,1],[-3,5],[-1,1],[-4,-1],[-2,-1],[0,-3],[2,-7],[1,-1],[8,-9],[1,-2],[4,2],[3,-1],[3,-2],[5,-5],[5,-5],[3,-9],[2,-11],[0,-11],[0,-13],[-3,-23],[-1,-6],[-2,-6],[-2,-6],[0,-7],[2,-7],[3,-1],[3,1],[3,-1],[10,-17],[2,-21],[0,-49],[2,-13],[0,-8],[-2,-5],[-6,-6],[-5,-8],[-1,-11],[2,-61],[0,-10],[-4,-12],[-9,-19],[-2,-14],[-2,-24],[-3,-8],[-6,-9],[-5,-4],[-5,-3],[-27,-7],[-4,-6],[-1,-9],[0,-6],[3,-30],[-2,-16],[7,4],[3,-17],[5,-41],[4,-13],[1,-7],[-4,-34],[0,-5],[0,-6],[-2,-3],[-2,-2],[-2,-4],[-2,-9],[-2,-32],[0,-5],[1,-10],[0,-5],[5,-3],[-3,-6],[-2,-9],[0,-9],[2,-4],[1,-6],[-4,-31],[-7,-22],[-1,-4],[-2,-31],[-2,-8]],[[46836,57815],[1,16],[1,16],[1,14],[-3,10],[-1,-3],[-2,-8],[-1,6],[-2,9],[0,5],[-2,10],[-2,-2],[-2,-6],[1,-5],[-3,4],[-3,12],[-2,3],[-3,2],[2,4],[6,5],[0,7],[0,5],[-1,4],[0,6],[2,19],[0,6],[-2,6],[-2,3],[-2,2],[-1,1],[0,9],[1,4],[3,3],[2,16],[4,2],[4,2],[2,8],[0,5],[-3,11],[0,3],[2,4],[0,7],[0,7],[0,6],[-1,5],[-2,4],[-1,3],[-1,1],[-1,0],[-1,1],[0,4],[1,3],[0,3],[1,2],[-1,10],[1,6],[1,6],[2,6],[-1,3],[-2,3],[-1,4],[0,3],[2,2],[2,-1],[2,-2],[1,0],[2,4],[2,2],[1,4],[0,15],[-1,7],[-1,6],[-3,5],[0,-10],[-2,-7],[-4,-3],[-4,2],[1,6],[1,12],[0,5],[0,2],[2,3],[0,2],[-2,2],[-1,2],[-1,4],[-2,7],[-4,12],[1,3],[2,5],[0,4],[-3,2],[-5,3],[-3,4],[-3,5],[-4,5],[-5,3],[-1,9],[-1,21],[-2,8],[-4,6],[-2,7],[-1,11],[1,6],[4,11],[0,7],[-1,5],[-6,12],[-7,20],[-2,11],[0,13],[-2,-2],[-4,-2],[-3,1],[-1,6],[1,8],[-2,3],[-7,-1],[-5,-2],[-3,1],[-2,4],[-2,6],[-2,5],[-4,1],[-4,-5],[-3,-10],[-2,-12],[0,-11],[-12,-19],[-2,-3],[-1,0],[-3,6],[-2,4],[-1,12],[-1,4],[-3,3],[-7,8],[-2,1],[-1,7],[4,32],[1,10],[-2,7],[-3,2],[-2,1],[-3,3],[-2,3],[-2,9],[-2,4],[-16,25],[-5,12],[-6,20],[-4,21],[-5,23],[-4,12],[-4,7],[24,27],[9,20],[5,27],[1,24],[0,12],[-1,11],[-5,12],[-6,8],[-4,10],[-3,15],[0,25],[6,45],[2,24],[0,13],[-10,50],[-3,9],[-4,5],[-11,8],[-3,6],[-3,8],[-2,8],[4,3],[1,7],[-2,8],[-26,20],[-3,1],[0,26],[-1,12],[-3,26],[0,12],[1,11],[5,6],[2,4],[1,6],[1,8],[0,6],[2,6],[6,11],[1,5],[0,10],[-2,3],[-3,2],[-2,3],[0,7],[0,4],[2,4],[1,7],[-3,0],[-4,2],[-5,4],[-2,7],[-2,8],[-5,10],[-2,18]],[[46186,57975],[-98,1],[-73,1],[-26,0],[-98,1],[-23,0],[-76,0],[-13,1],[-8,-3],[-7,-7],[-17,-24],[-17,-16],[-14,-23],[-1,-1],[-70,-69],[-10,-4],[-48,6],[-2,0],[-22,-3],[-6,2],[-17,12],[-10,2],[-21,-7],[-2,-2],[-1,-2],[-1,-1],[-3,1],[-6,5],[-3,1],[-3,-2],[-19,-21],[-22,-25],[-8,-8],[-14,0],[-15,-7],[-5,-1],[-38,5],[-10,-5],[-6,-9]],[[45353,57773],[-2,8],[-1,7],[-2,13],[-1,4],[-5,6],[-6,13],[-3,7],[-1,8],[0,25],[1,5],[2,5],[1,6],[2,6],[14,17],[6,1],[9,-2],[9,12],[3,5],[1,5],[2,5],[1,6],[11,16],[5,-12],[4,-23],[4,-5],[0,9],[3,7],[5,3],[5,-2],[10,-11],[8,-5],[9,-9],[5,-1],[6,6],[6,17],[5,5],[7,0],[5,-4],[6,-2],[6,9],[3,2],[2,-5],[2,-7],[2,-5],[21,17],[5,3],[7,1],[4,2],[4,6],[4,4],[6,0],[5,-6],[7,-12],[5,-7],[2,-6],[3,-1],[18,-1],[2,-2],[3,-8],[2,-2],[2,1],[7,4],[3,4],[3,7],[4,5],[6,-5],[2,3],[1,1],[2,1],[4,-6],[2,0],[1,2],[2,-1],[2,-5],[2,-10],[1,-5],[2,-3],[2,-3],[2,-1],[4,-1],[3,2],[13,11],[5,11],[8,23],[3,5],[3,3],[2,4],[1,8],[-2,4],[-3,2],[-1,4],[2,4],[-3,14],[-2,18],[-1,18],[2,15],[4,4],[3,0],[5,0],[3,0],[4,4],[3,4],[2,6],[1,7],[6,-12],[5,-3],[3,6],[1,17],[-4,-10],[-4,1],[-4,3],[-5,2],[-4,-4],[-7,-11],[-5,-2],[-3,0],[-4,-1],[-4,-4],[-1,-9],[0,-34],[3,-23],[0,-6],[0,-9],[0,-5],[-1,-4],[-6,-12],[-3,-6],[-14,-27],[-3,-4],[-3,-1],[-3,3],[-3,4],[2,18],[-9,8],[-19,7],[-14,-18],[-5,-3],[-1,2],[-1,4],[-2,5],[-3,2],[-4,-2],[-4,-5],[-4,-2],[-3,2],[-4,5],[-7,10],[0,3],[0,4],[0,3],[-1,2],[-3,1],[-2,1],[-2,2],[-1,5],[-4,15],[-1,2],[-1,1],[-2,3],[-1,12],[-1,7],[-2,0],[0,-4],[0,-3],[-3,-12],[-1,-4],[-1,-20],[-8,-10],[-12,-4],[-3,-3],[-5,-8],[-2,-1],[-3,0],[-7,4],[-10,0],[-3,-2],[-6,-5],[-3,-1],[-3,0],[-9,4],[-3,-2],[-4,-5],[-2,-2],[-1,-2],[-2,-7],[-1,-6],[-3,-4],[-11,7],[-10,11],[-4,8],[-2,8],[-1,1],[-2,2],[-3,2],[-1,5],[0,6],[2,5],[3,4],[2,1],[0,4],[-4,0],[-3,5],[-1,7],[-1,8],[-2,-48],[-2,0],[-4,10],[-10,18],[-1,12],[-4,-5],[-2,-7],[-2,-6],[-5,-2],[-3,2],[-2,4],[-1,6],[0,8],[4,15],[5,12],[4,14],[-2,20],[-1,-16],[-1,-4],[-1,-5],[-1,-3],[-2,-2],[-5,-10],[-3,-6],[-1,-8],[0,-13],[2,-21],[-1,-9],[-8,-8],[-12,-21],[-10,-7],[-5,6],[-2,16],[0,20],[1,21],[5,21],[7,11],[10,-6],[0,8],[-4,7],[-6,2],[-5,-3],[-5,-15],[-4,-5],[-3,2],[2,5],[0,5],[0,5],[-2,5],[6,17],[1,9],[-1,10],[-2,0],[-2,-6],[-1,-3],[-2,2],[-1,9],[1,7],[1,8],[10,31],[1,7],[0,8],[-1,14],[-1,7],[1,12],[3,25],[0,15],[0,10],[-1,5]],[[45346,58207],[0,14],[1,6],[2,5],[4,9],[1,6],[4,14],[10,5],[12,0],[46,-1],[42,-1],[62,-1],[36,-1],[18,0],[7,0],[10,-1],[2,3],[1,42],[0,10],[0,42],[1,8],[4,4],[19,4],[13,8],[3,0],[19,-4],[4,1],[9,6],[6,7],[7,5],[8,0],[31,-14],[10,0],[9,4],[9,7],[8,11],[6,15],[1,17],[1,36],[4,13],[7,14],[5,13],[7,5],[7,-11],[13,-24],[14,-21],[18,-19],[9,-5],[11,-2],[4,-3],[9,-12],[5,-3],[6,-2],[3,-4],[6,-17],[7,-14],[10,-8],[10,-3],[10,3],[9,5],[3,-3],[8,-15],[3,-5],[4,-5],[4,-2],[8,-1],[4,-2],[3,-7],[2,-6],[3,-5],[3,-4],[10,-11],[7,-4],[8,-1],[16,3],[15,-6],[8,0],[6,7],[13,21],[4,4],[5,-1],[12,9],[11,1],[11,6],[21,4],[14,12],[8,25],[1,31],[-7,28],[-2,5],[-7,7],[-2,4],[0,1],[-2,5],[-2,11],[-1,5],[-5,8],[-6,7],[-7,5],[-6,2],[-4,-1],[-6,-7],[-3,-3],[-3,-1],[-5,1],[-3,0],[-5,-3],[-13,-14],[-16,-7],[-5,-5],[-16,-20],[-16,-12],[-5,-3],[-5,2],[-7,6],[-20,30],[-2,4],[-3,6],[-2,8],[-3,26],[-3,11],[-4,10],[-5,9],[-12,12],[-11,1],[-12,-6],[-17,-20],[-3,-2],[-4,3],[-11,14],[-2,5],[-6,38],[-2,11],[-4,10],[-4,8],[-6,9],[-10,7],[-28,2],[-16,13],[-6,1],[-21,-15],[-20,-28],[-6,-3],[-3,3],[-5,15],[-3,5],[-12,5],[-13,-11],[-11,-18],[-9,-19],[-3,-10],[-3,-13],[-2,-13],[0,-4],[-1,-8],[-1,-23],[-4,-3],[-14,0],[-17,0],[-17,0],[-17,0],[-18,0],[-17,1],[-17,0],[-17,0],[-18,0],[-6,0],[-11,0],[-17,0],[-17,0],[-18,0],[-17,1],[-17,0],[-17,0],[-18,0]],[[45399,58516],[-3,9],[-1,6],[0,17],[5,9],[7,7],[7,12],[-2,2],[-2,4],[-2,2],[4,7],[2,9],[0,7],[-6,1],[1,-9],[-2,-12],[-2,-8],[-4,1],[-2,-13],[-5,-8],[-5,-3],[-6,3],[-4,11],[-2,11],[3,23],[0,15],[1,6],[2,8],[10,24],[2,8],[2,-2],[4,-4],[2,-2],[-1,2],[-1,10],[9,4],[1,-12],[2,-11],[3,-7],[4,2],[-2,13],[-1,15],[-1,12],[-4,4],[1,8],[6,56],[1,9],[-6,-18],[-3,-12],[-2,-24],[-3,-15],[-4,-10],[-3,2],[-2,0],[-3,-8],[-5,-3],[-6,-1],[-5,-4],[-3,-5],[-1,-5],[-1,-5],[-1,-5],[-1,-3],[-4,-4],[-1,-3],[-3,-11],[-2,-4],[-3,3],[-1,5],[0,8],[-1,6],[-2,3],[-4,5],[-1,12],[0,12],[2,7],[-2,9],[-1,9],[-1,19],[1,10],[1,6],[1,4],[7,10],[3,3],[4,0],[8,-2],[4,-2],[2,-5],[0,-8],[4,7],[3,9],[4,5],[6,-5],[0,13],[2,6],[4,4],[3,6],[-3,-3],[-4,-1],[-3,1],[-3,6],[13,17],[4,8],[7,19],[4,7],[9,5],[4,11],[4,3],[2,-2],[2,-5],[3,-2],[2,3],[2,2],[5,5],[2,3],[-18,1],[-7,6],[0,13],[-4,-5],[-2,-8],[1,-9],[3,-6],[-3,-4],[-3,0],[-3,3],[-3,1],[-2,-2],[-1,-4],[-1,-6],[-1,-5],[-7,-26],[-2,-6],[-3,-3],[-6,-3],[-4,-4],[-2,-7],[-4,-14],[-2,-5],[-7,-5],[-6,3],[-6,4],[-6,1],[6,25],[1,4],[4,3],[8,18],[-4,-3],[-3,-11],[-3,-3],[-7,0],[-2,-2],[-2,-2],[3,-8],[0,-5],[-5,-12],[-1,-4],[0,-9],[-2,-5],[-5,-13],[-1,-5],[-2,-17],[2,-56],[-2,0],[-2,114],[-1,17],[-5,29],[-5,21],[-2,6],[-4,3],[-7,4],[-3,5],[-1,9],[-3,32],[-2,10],[-2,7],[-5,11],[-2,3],[-2,1],[-2,2],[0,8],[0,6],[2,12],[0,6],[-1,10],[-4,11],[-8,18],[-20,19],[-3,7],[-2,8],[-10,31],[-7,40],[-11,32],[-8,16],[-5,7],[-5,5],[-6,2],[-5,3],[-12,12],[-1,5],[-10,-1],[-8,3],[-7,-1],[-6,-10],[2,-5],[4,-2],[-2,-9],[-4,-4],[1,-1],[2,-5],[1,-2],[-2,-8],[-1,-1],[-1,-3],[-3,5],[-19,48],[-5,8],[46,26],[14,23],[41,36],[10,16],[44,109],[9,27],[19,45],[39,142],[19,53],[36,125],[2,6],[-1,6],[-2,9]],[[45404,59832],[7,22],[2,33],[1,64],[2,7],[4,26],[4,24],[2,40],[2,12],[4,7],[10,5],[4,6],[2,6],[1,7],[12,100],[1,24],[2,11],[4,11],[5,10],[6,8],[6,3],[10,-4],[3,-1],[3,2],[3,2],[8,12],[3,3],[3,2],[4,-2],[2,-3],[2,-4],[4,-11],[5,-10],[5,-5],[6,-2],[7,2],[2,3],[2,2],[2,1],[2,-1],[4,-3],[2,-1],[2,1],[11,10],[4,1],[9,-5],[3,0],[7,3],[4,-1],[13,-8],[9,-1],[2,-2],[7,-6],[4,-2],[4,0],[4,3],[4,5],[6,12],[4,4],[4,1],[12,-5],[4,1],[3,3],[3,6],[7,19],[3,7],[4,3],[4,0],[3,-5],[1,-6],[2,-5],[4,-3],[4,0],[4,2],[11,10],[5,2],[9,0],[13,-4],[4,1],[30,9],[6,5],[2,2],[1,4],[0,4],[-1,4],[-4,9],[-2,8],[1,7],[2,6],[4,2],[4,-2],[2,-6],[3,-7],[3,-5],[2,-2],[2,1],[2,1],[1,3],[2,4],[0,4],[1,8],[2,5],[3,4],[6,6],[3,-4],[4,-8],[0,-1],[2,-8],[3,-8],[5,-2],[9,5],[47,-7],[3,0],[10,5],[2,1],[3,-2],[8,-7],[3,-2],[3,1],[11,6],[3,1],[12,-5],[3,0],[3,0],[3,2],[2,3],[8,9],[2,2],[6,0],[17,-14],[2,-3],[2,-4],[-1,-7],[-1,-11],[1,-5],[2,-2],[11,2],[2,-3],[1,-4],[1,-11],[1,-4],[3,-3],[7,-1],[3,-1],[2,-3],[5,-13],[2,-4],[6,-9],[10,-23],[16,-31],[10,-11],[1,-3],[5,-12],[3,-3],[5,-5],[3,-3],[1,-4],[1,-4],[-2,-9],[-1,-5],[1,-4],[3,-7],[1,-6],[0,-5],[-1,-10],[1,-10],[4,-5],[11,-7],[3,-2],[4,-7],[2,-4],[1,-5],[2,-16],[2,-6],[2,-5],[2,-4],[2,-3],[3,-2],[2,1],[2,1],[5,6],[4,7],[2,4],[5,15],[2,4],[2,3],[3,1],[2,1],[3,-1],[-1,-8],[-1,-10],[-1,-7],[1,-7],[1,-1],[3,-3],[1,-1],[0,-2],[1,-2],[1,-1],[1,-2],[1,-1],[2,-3],[1,-1],[2,0],[1,1],[8,8],[2,1],[5,0],[1,0],[2,1],[8,8],[15,6],[4,4],[1,1],[2,0],[2,-1],[0,-8],[-4,-18],[-1,-10],[3,-4],[10,9],[4,-1],[2,-3],[2,-8],[1,-3],[8,-11],[1,-4],[1,-5],[0,-10],[1,-5],[4,-19],[1,-7],[3,-5],[2,-6],[7,-11],[2,-4],[0,-5],[0,-5],[-1,-10],[0,-5],[1,-4],[1,-3],[5,-13],[2,-9],[2,-10],[0,-11],[-1,-5],[-1,-5],[0,-5],[0,-5],[1,-4],[2,-4],[5,-5],[2,-3],[2,-4],[3,-10],[1,-5],[0,-4],[0,-5],[-4,-13],[-1,-5],[-1,-5],[1,-5],[2,-15],[5,0],[8,3],[4,0],[2,-2],[5,-7],[2,-2],[6,-4],[4,-4],[3,-6],[2,-7],[1,-8],[-2,-22],[0,-5],[1,-5],[1,-6],[1,-2],[9,-5],[4,1],[4,6],[3,6],[5,4],[4,2],[4,-5],[2,-4],[1,-5],[1,-16],[1,-5],[3,-7],[1,-5],[1,-4],[0,-20],[1,-10],[2,-9],[3,-7],[17,-24],[3,-7],[2,-10],[-1,-8],[-5,-2],[-9,2],[-3,-4],[1,-8],[7,-13],[2,-4],[3,-1],[2,-1],[6,3],[3,0],[3,-2],[3,-3],[1,-4],[1,-5],[0,-5],[-2,-15],[0,-4],[1,-6],[1,-1],[7,-5],[2,-4],[8,-17],[7,-6],[1,0],[3,0],[8,6],[5,1],[2,-2],[2,-4],[4,-9],[15,-19],[5,-8],[3,-3],[7,-3],[3,-4],[2,-6],[1,-5],[7,-48],[0,-6],[4,-5],[9,-23],[5,-8],[17,-17],[16,-25]],[[50998,57396],[15,18],[3,7],[2,13],[-1,12],[-4,11],[-6,14],[-1,2],[-1,2],[-2,6],[-1,6],[-1,33],[1,10],[3,9],[5,10],[4,19],[-1,21],[-7,43],[0,26],[8,78],[-3,147],[1,6],[61,96],[18,36],[44,145],[9,127],[1,14],[1,142],[18,1],[8,3],[8,8],[43,87],[13,19],[15,13],[33,17],[56,28],[9,2],[6,-6],[6,-13],[7,-5],[16,-2],[28,10],[40,-4],[9,4],[3,3],[9,13],[4,9],[4,22],[4,9],[7,8],[41,15],[9,-4],[79,-65],[79,-65],[2,-3],[2,-3],[2,-2],[3,2],[16,18],[5,3],[15,-7],[5,-2],[19,-23],[39,-77],[45,-103],[23,-87],[6,-26],[17,-40],[10,-19],[9,-14],[8,-7],[10,-2],[20,0],[5,2],[2,0],[6,6],[13,24],[17,42],[6,2],[29,-11],[10,0],[9,6],[101,127],[9,9],[10,2],[70,-21],[8,-6],[3,-5],[7,-13],[7,-10],[10,-15],[4,-4],[8,-5],[4,-4],[4,-7],[6,-17],[28,-53],[2,-3],[3,-2],[1,0],[1,2],[3,3],[4,2],[6,2],[4,0],[7,-4],[7,-6],[12,-19],[5,-13],[8,-27],[5,-12],[10,-13],[74,-45],[9,-2],[81,-20],[11,0],[14,9],[5,0],[59,-14],[6,1],[2,1],[3,5],[3,5],[2,5],[48,118],[9,18],[6,7],[3,3],[1,-1],[1,1],[2,4],[2,6],[1,15],[1,6],[5,10],[53,62],[11,10],[135,60],[8,4],[27,4],[50,-12],[135,1],[84,-44],[31,-26],[39,-50],[12,-21],[6,-5],[16,-9],[9,2],[4,1],[6,9],[5,2],[14,-11],[3,-3],[1,-4],[0,-3],[1,-3],[2,-1],[1,2],[1,3],[2,3],[2,1],[3,-4],[2,-5],[2,-3],[3,3],[4,-2],[10,-1],[8,-1],[6,-2],[6,-4],[4,-2],[4,4],[1,7],[3,32],[1,2],[6,3],[2,1],[3,5],[1,6],[2,14],[-5,3],[2,9],[4,11],[1,9],[10,20],[1,2],[1,-3],[2,1],[2,3],[2,4],[0,4],[1,9],[3,-4],[2,-6],[3,-4],[4,-2],[3,4],[1,13],[4,3],[6,3],[5,8],[7,18],[2,10],[1,2],[1,-2],[2,-4],[1,-2],[3,0],[0,3],[-1,4],[-1,7],[0,2],[4,3],[1,1],[1,1],[2,-1],[1,0],[0,2],[0,5],[0,1],[8,18],[4,7],[-2,4],[-2,4],[-2,2],[-2,2],[0,4],[4,-2],[4,-4],[2,1],[1,9],[8,-3],[8,3],[25,26],[7,5],[7,2],[0,-4],[-1,-6],[3,-2],[5,0],[5,3],[0,-2],[0,-6],[2,4],[2,10],[2,3],[2,-2],[1,-4],[-1,-6],[-1,-5],[8,7],[7,3],[7,5],[5,14],[-4,1],[0,3],[2,8],[1,1],[2,0],[2,0],[1,5],[-1,3],[-1,5],[0,2],[2,6],[2,5],[11,22],[4,6],[0,10],[2,5],[8,2],[1,1],[68,-7]],[[53779,58585],[64,-185],[63,-185]],[[53906,58215],[16,-158],[16,-158],[0,-45],[0,-3],[2,-10],[0,-11],[-2,-18],[0,-7],[3,-9],[4,-5],[4,-2],[57,-4],[18,-9],[7,-8],[1,-6],[-1,-9],[0,-5],[2,-5],[8,-13],[3,-2],[0,-5],[-1,-1],[-2,-3],[5,-8],[6,-6],[4,-8],[2,-12],[2,-3],[3,3],[4,4],[2,2],[4,-4],[1,-5],[0,-7],[-5,-11],[-1,-4],[-1,-3],[-2,-7],[-4,-43],[0,-6],[-5,-7],[1,-11],[5,-26],[0,-6],[1,-4],[-1,-20],[-4,-19],[-6,-60],[-2,-10],[-10,-28],[-1,-6],[0,-5],[3,-7],[1,-1],[5,0],[2,-2],[1,-4],[1,-4],[1,-4],[5,-10],[3,-10],[2,-12],[0,-15],[-1,-12],[-2,-15],[-3,-14],[-4,-11],[-4,-5],[-15,-11],[-6,-8],[-10,-19],[-6,-7],[-16,-11],[-5,-6],[-25,-48],[-2,-2],[-8,-2],[-3,-3],[-8,-17],[-5,-7],[-6,-7],[-6,-3],[-6,2],[-19,17],[-11,7],[-9,0],[-10,-18],[-11,-23],[-9,-24],[-7,-25],[-4,-24],[-4,-9],[-10,-13],[-5,-8],[-3,-10],[-1,-12],[2,-23],[-2,-9],[-2,-7],[-49,-149],[-8,-34],[-10,-74],[-10,-112],[-6,-37],[0,-8],[2,-12],[0,-6],[0,-8],[-5,-20],[-3,-9],[-6,-10],[-2,-3],[-4,-5],[-5,-5],[-22,-5],[-10,-7],[-4,-20],[0,-12],[3,-20],[1,-11],[-1,-14],[-7,-22],[-2,-12],[1,-13],[3,-10],[8,-17],[3,-14],[-1,-9],[-3,-10],[-2,-14],[-4,-40],[-1,-38],[-8,-42],[-18,-16],[-22,-7],[-19,-17],[-4,-7],[-8,-21],[-3,-7],[-2,-3],[-17,-17],[-2,-2],[-2,-11],[2,-2],[8,-3],[2,-12],[3,-18],[-1,-23],[-1,-11],[-1,-10],[-13,-49],[-6,-28],[0,-24],[2,-22],[-6,-111],[-3,-26],[-6,-17],[-4,-3],[-4,0],[-3,1],[-4,0],[-3,-3],[-2,-7],[-3,-17],[-4,-19],[-5,-11],[-28,-32],[-4,-2],[-5,2],[-9,8],[-3,2],[-5,-1],[-4,-4],[-3,-4],[-4,-4],[-4,-1],[-4,1],[-8,5],[3,-8],[6,-34],[1,-8],[0,-17],[-2,-5],[-9,-12],[-2,-6],[-2,-8],[-2,-6],[-3,-5],[-6,-2],[-11,4],[-6,-6],[-6,-19],[-2,-25],[0,-27],[5,-48],[0,-12],[-1,-5],[-2,-8],[-11,-34],[-1,-14],[0,-23],[1,-23],[2,-15],[1,-9],[-2,-9],[-10,-23],[-28,-82],[-10,-38],[-2,-12],[-1,-13],[1,-13],[4,-35],[-1,-12],[-4,-6],[-4,-7],[-8,-23],[-17,-36],[-16,-34],[-18,-54],[-5,-12],[-5,-8],[-2,-5],[1,-3],[7,-3],[4,-7],[14,-43],[10,-25],[4,-14],[-3,-14],[-2,-2],[-3,1],[-2,3],[-3,0],[-4,-2],[-3,-4],[-12,-23],[-4,-6],[-1,-5],[-1,-6],[-1,-4],[-2,-2],[-4,0],[-3,-2],[-3,1],[-2,-1],[-1,-3],[-1,-7],[-1,-3],[-16,-22],[-17,-33],[-5,-15],[-2,-16],[2,-9],[6,-15],[2,-10],[-1,-16],[-2,-16],[-8,-40],[-6,-19],[-8,-9],[-11,-3],[-7,-12],[-4,-20],[-2,-25],[-2,-13],[-5,-11],[-7,-8],[-7,-3],[-3,0],[-6,3],[-3,1],[-1,-1],[-3,-6],[-2,-1],[-2,0],[-3,4],[-2,1],[-8,-1],[-17,-4],[-7,2],[-5,9],[-5,28],[-5,46],[-1,23],[0,24],[0,28],[-6,24],[-9,15],[-26,10],[-9,19],[-6,26],[-2,27],[-5,24],[-9,13],[-23,18],[-19,22],[-7,5],[-5,9],[-2,29],[-5,14],[-4,-17],[-3,-22],[-3,-22],[-1,-45],[-2,-2],[-1,-1],[-2,-3],[-3,-9],[-3,-8],[-1,-10],[0,-13],[-72,-2],[-7,5],[-6,9],[-3,12],[-4,43],[-2,10],[-4,2],[-7,-8],[-68,-123],[-6,-5],[-5,3],[-6,6],[-6,1],[-6,-13],[-21,-142],[0,-1],[-3,-6],[-10,0],[-4,0],[-8,-4],[-4,-7],[-7,-26],[-4,-10],[-6,-6],[-11,-8],[-1,-2],[-9,-11],[-8,-34],[-8,-10],[-4,-1],[-4,1],[-3,-1],[-4,-4],[-4,-9],[-8,-36],[-7,-21],[-38,-65],[-25,-57],[-6,-18],[-4,-8],[-4,-5],[-2,-4],[0,-17],[-1,-8],[-5,-1],[-6,5],[-6,1],[-5,-9],[-4,-10],[-10,-14],[-3,-10],[1,-12],[3,-10],[2,-10],[-1,-15],[-5,-12],[-5,-8],[-2,-9],[4,-15],[6,-11],[6,-10],[5,-12],[3,-16],[-1,-14],[-5,-12],[-5,-10],[-4,-12],[-2,-13],[1,-11],[1,-12],[0,-12],[-2,-13],[-6,-26],[-2,-14],[0,-8],[3,-14],[0,-6],[-7,-81],[-2,-7],[-3,-3],[-4,-1],[-3,-3],[-2,-7],[-6,-17],[-2,-8],[-4,-26],[-2,-12],[-4,-12],[-11,-37],[-2,-11],[-8,-11],[-2,-10],[1,-12],[1,-8],[1,-9],[-5,-10]],[[52387,53321],[-1,3],[-2,3],[-2,1],[-2,-2],[-3,-5],[-3,-6],[-1,-5],[0,-5],[-3,-11],[-1,-6],[1,-6],[1,-9],[0,-5],[-2,-10],[-3,-3],[-4,2],[-4,3],[-1,-1],[-3,-1],[-2,2],[1,6],[1,4],[2,6],[0,6],[-1,2],[-2,-1],[-6,-6],[-3,-1],[-9,6],[0,17],[3,21],[1,20],[-2,0],[-2,-20],[-6,-10],[-8,1],[-7,14],[1,2],[1,6],[-2,1],[-6,6],[2,8],[-3,7],[-7,12],[-7,8],[0,1],[-2,9],[-3,13],[-2,5],[-3,2],[-3,3],[-4,7],[-2,6],[-2,5],[-2,0],[0,-4],[16,-31],[3,-10],[8,-28],[1,-14],[-5,-6],[2,-8],[3,-10],[3,-8],[3,-3],[2,-5],[5,-26],[3,-9],[-1,-4],[-2,-13],[-1,-6],[2,-8],[2,-4],[3,-2],[3,-4],[1,-14],[-5,-8],[-5,-7],[-3,-10],[-3,-18],[-3,-3],[-3,-1],[-12,0],[-16,4],[-23,0],[-12,4],[-5,-1],[-10,-10],[-5,-1],[-12,0],[-48,-12],[-2,3],[-4,1],[-3,-2],[-2,-6],[3,0],[2,-1],[2,-1],[2,-2],[-6,-4],[-9,-1],[-8,3],[-3,8],[-4,2],[-25,4],[1,2],[0,2],[1,2],[2,2],[-4,2],[-3,-1],[-2,0],[-1,7],[1,4],[2,2],[2,4],[1,6],[-1,3],[-5,14],[1,2],[1,6],[-4,10],[1,15],[5,28],[-2,0],[-3,-5],[-1,-3],[-2,-5],[-1,-6],[0,-9],[1,-6],[0,-6],[-2,-7],[0,-4],[4,-9],[0,-5],[0,-2],[-5,-11],[-3,-4],[-3,-4],[-3,-1],[-3,5],[-2,0],[-2,-12],[-6,1],[-10,11],[-7,1],[-7,3],[-6,6],[-3,11],[-2,-3],[-2,-1],[-5,0],[-1,-2],[0,-4],[-1,-5],[-3,-2],[0,-4],[2,-2],[2,-2],[-2,-4],[4,-3],[5,-8],[7,-3],[1,-4],[0,-5],[-2,-5],[-12,-4],[-1,3],[-7,19],[-17,41],[-3,12],[0,16],[0,6],[-2,0],[-4,-4],[-6,-1],[-1,1],[-2,6],[-5,8],[-3,6],[-4,27],[-3,10],[0,-6],[-2,-6],[-1,-4],[-1,-1],[1,-6],[1,-1],[2,0],[2,-4],[3,-21],[2,-9],[5,-3],[9,-9],[6,-21],[1,-19],[-7,-8],[3,-5],[5,-9],[2,-10],[-2,-11],[-7,-18],[-5,-4],[-6,5],[0,-9],[0,-3],[-5,5],[-4,6],[-1,9],[1,12],[-4,-8],[-1,-9],[2,-11],[3,-9],[-8,-4],[-2,0],[-3,14],[-2,15],[-1,30],[-4,16],[-1,10],[3,4],[1,5],[1,11],[1,13],[-1,8],[2,-2],[2,-1],[2,-1],[-2,7],[-5,13],[-1,6],[-2,13],[-1,6],[-5,-16],[-2,1],[-1,9],[-3,13],[-2,-9],[1,-14],[-1,-5],[3,-9],[6,-35],[-3,0],[-2,0],[-1,3],[-1,5],[-2,-2],[-2,-2],[-3,11],[-3,10],[-8,19],[1,-10],[1,-7],[4,-15],[2,-6],[1,-4],[1,-4],[-1,-6],[-2,-2],[-1,-4],[2,-7],[3,9],[5,3],[5,-2],[2,-8],[-2,-41],[0,-14],[10,-41],[4,-10],[-1,-5],[-2,-6],[-2,-3],[-4,1],[-3,3],[-5,5],[0,-2],[1,-3],[0,-4],[-6,4],[-6,6],[-6,3],[-6,-5],[-4,7],[-2,10],[0,10],[2,11],[-5,5],[-4,15],[-3,19],[-1,15],[0,11],[1,6],[2,4],[2,5],[2,6],[1,10],[-1,9],[-5,4],[-7,8],[-5,20],[-4,37],[-1,14],[1,8],[3,8],[2,7],[-1,5],[-2,1],[-4,-7],[-2,7],[-1,4],[-1,6],[-2,-3],[-2,-1],[-3,1],[-2,3],[1,-10],[1,-11],[1,-9],[4,-3],[2,-4],[2,-11],[2,-21],[1,-23],[2,-10],[2,-4],[4,-4],[3,-9],[5,-19],[-6,-12],[-1,-5],[-1,-8],[6,-58],[3,-18],[3,-9],[0,-14],[5,-10],[4,-9],[-7,-8],[-9,-3],[-11,-2],[-10,2],[-6,8],[-1,8],[1,35],[1,4],[1,3],[-1,3],[-2,5],[-1,2],[0,21],[1,9],[6,36],[1,6],[0,18],[-6,-14],[-4,-25],[-2,-27],[2,-20],[-1,-5],[0,-11],[-1,-8],[-2,13],[-1,8],[-1,37],[-1,7],[-2,-4],[-1,-3],[-1,-3],[-2,-2],[1,-9],[1,-27],[1,-10],[3,-13],[2,-11],[3,-21],[0,-7],[-2,-6],[-3,-2],[-8,0],[-8,-2],[-2,4],[-3,19],[-1,18],[1,27],[-1,22],[-5,15],[-8,-1],[8,-14],[3,-20],[-1,-24],[-4,-23],[-1,-20],[-13,-7],[-17,3],[-7,11],[-4,-1],[-4,-3],[3,-11],[-5,-3],[-7,-1],[-5,-3],[-5,-5],[-13,-1],[-6,-4],[-6,16],[5,25],[19,44],[-4,1],[-2,1],[-2,0],[-2,-2],[-10,-24],[-1,32],[-4,28],[-2,0],[-1,-11],[1,-15],[1,-15],[2,-11],[-2,6],[-3,6],[-3,6],[-5,2],[3,-14],[3,-9],[2,-10],[0,-15],[-2,-12],[-2,-9],[-2,-2],[-2,-2],[-2,-3],[0,-9],[2,3],[2,0],[4,-3],[-2,-5],[-7,-6],[-11,-1],[-7,4],[-1,-3],[-1,-3],[-2,-2],[-4,3],[-2,6],[-1,9],[0,10],[1,10],[4,14],[0,8],[-1,-1],[-3,-1],[-1,-1],[0,9],[1,16],[-3,1],[-3,1],[-3,3],[-4,-2],[-1,-6],[1,-9],[1,-8],[1,-5],[-1,-8],[2,-7],[2,-7],[1,-9],[-1,-13],[-2,1],[-3,6],[-4,4],[-6,1],[-3,3],[0,21],[2,1],[0,1],[-4,12],[0,2],[0,10],[0,10],[-2,0],[-2,-20],[-1,2],[-4,6],[4,-20],[1,-10],[-4,-7],[-4,1],[-4,6],[-4,6],[-2,4],[-5,4],[-7,11],[-3,14],[3,15],[-3,1],[-2,-2],[-1,-4],[0,-7],[-2,0],[-4,10],[-11,14],[-4,9],[2,-3],[4,-3],[2,-3],[-2,8],[-4,3],[-3,2],[-4,3],[-6,14],[-2,6],[-8,17],[-2,2],[-25,51],[-8,23],[-3,26],[1,-1],[1,-1],[2,-2],[0,11],[-12,16],[-3,11],[-2,9],[-7,26],[-3,7],[10,-12],[-2,14],[-9,22],[-8,46],[-3,27],[-1,9],[-4,16],[-1,9],[-1,10],[-1,4],[-2,5],[-1,6],[-1,9],[1,7],[3,3],[5,-1],[4,-3],[3,-5],[5,-15],[3,-4],[-4,23],[-1,9],[5,-1],[6,-3],[-2,7],[-8,18],[-2,3],[-1,-2],[0,-11],[-1,-2],[-3,-1],[-2,0],[-4,-3],[-3,3],[-7,-3],[-3,4],[-1,4],[1,22],[-1,27],[-6,53],[1,8],[7,3],[18,1],[6,3],[0,-5],[1,-4],[2,-7],[3,3],[2,9],[1,4],[2,3],[9,8],[5,1],[4,0],[3,-4],[2,0],[-2,7],[-7,13],[-2,9],[-2,8],[0,10],[1,9],[1,7],[4,5],[4,2],[10,-1],[3,4],[3,7],[4,14],[-4,-4],[-4,-7],[-4,-5],[-5,4],[-1,-3],[-2,-3],[-1,-3],[-6,3],[-7,-7],[-4,-13],[2,-15],[-3,-15],[-4,-9],[-4,-2],[-6,6],[-2,4],[0,3],[-2,3],[-3,1],[-1,-3],[0,-8],[2,-8],[2,-5],[-16,2],[-32,22],[-1,3],[-1,7],[-1,3],[-9,17],[-6,9],[-2,12],[0,13],[0,6],[2,2],[5,10],[2,4],[2,1],[28,-3],[10,-3],[6,-7],[1,0],[3,8],[5,21],[2,7],[4,3],[4,0],[4,-2],[3,-5],[1,-4],[1,-13],[1,-3],[3,0],[2,2],[0,4],[0,6],[-2,9],[-5,10],[-6,9],[-4,4],[-6,0],[-2,-6],[-4,-18],[-3,-5],[-4,-5],[-5,-3],[-5,1],[-5,6],[-2,9],[0,10],[5,32],[1,9],[-1,11],[-2,0],[-7,-44],[-3,-12],[-4,-8],[-5,-4],[-6,-1],[-3,-2],[-7,-8],[-7,-5],[-1,1],[-4,6],[-4,8],[-5,12],[-3,12],[-3,17],[-2,8],[-3,10],[-1,14],[1,12],[1,14],[3,10],[3,5],[4,-2],[5,-10],[2,-1],[2,4],[-1,5],[-1,6],[0,6],[9,16],[23,18],[6,23],[-6,-2],[-9,-19],[-11,-7],[-21,-23],[-4,-6],[-14,-28],[-3,0],[-11,49],[-33,93],[-6,11],[-11,10],[-5,12],[-7,24],[-10,21],[-8,15],[-21,28],[-9,12],[-17,34],[-11,15],[-4,4],[-25,22],[-17,7],[-60,24],[-71,13],[-119,-13],[-6,2],[-4,5],[-2,7],[-4,6],[2,3],[2,1],[2,-1],[2,-3],[4,9],[1,-4],[1,-8],[1,-9],[10,19],[1,-1],[1,-4],[3,-1],[3,3],[5,1],[5,1],[4,5],[4,9],[1,7],[-1,6],[0,6],[3,2],[11,0],[6,2],[13,8],[3,-2],[7,5],[5,7],[4,10],[2,12],[3,3],[23,8],[-2,3],[-2,2],[-1,0],[-2,-1],[-16,8],[-16,-13],[-15,-18],[-13,-10],[-5,0],[-3,-1],[-10,-11],[-3,-2],[-3,-1],[-4,-1],[-1,2],[-3,2],[-4,0],[-1,3],[-1,2],[-1,7],[-1,8],[2,12],[0,9],[-4,-6],[-4,-7],[-6,-14],[-2,-2],[-3,0],[-2,-1],[-1,-5],[0,-4],[1,-9],[1,-5],[-2,-7],[-3,-12],[-1,-7],[-1,-5],[-2,-3],[-1,-4],[1,-5],[1,-3],[1,-3],[1,-3],[1,-3],[-1,-14],[-17,-3],[-31,3],[-36,-9],[-43,4],[-62,-12]],[[50751,54241],[0,36],[2,27],[1,12],[1,6],[5,31],[0,13],[-2,25],[0,12],[3,13],[5,9],[4,5],[1,7],[-1,27],[0,6],[-2,3],[-3,0],[-3,2],[-2,4],[-3,6],[-1,12],[1,12],[3,25],[-2,25],[-3,23],[-1,21],[7,22],[3,3],[4,2],[3,3],[1,7],[-2,5],[-7,13],[-3,6],[-1,8],[1,4],[1,4],[2,11],[3,6],[0,6],[1,8],[-6,146],[1,6],[2,3],[3,0],[6,-3],[1,2],[0,3],[0,5],[1,25],[-6,22],[-8,21],[-6,22],[-1,23],[0,19],[3,80],[-1,8],[-2,9],[-7,16],[-3,17],[-2,7],[0,2],[-1,3],[1,4],[3,12],[1,5],[1,37],[3,38],[1,35],[1,11],[2,10],[3,10],[2,11],[0,13],[-2,12],[-5,25],[-2,13],[-1,14],[0,12],[2,24],[0,6],[-1,11],[1,5],[1,7],[6,14],[2,6],[2,20],[-1,18],[-5,144],[0,1],[0,6],[2,5],[4,4],[2,3],[0,5],[-1,10],[-1,5],[1,9],[4,17],[0,9],[-1,4],[-2,1],[-1,1],[0,5],[0,1],[4,10],[0,4],[2,16],[1,38],[-1,15],[21,-3],[4,1],[3,4],[2,5],[3,4],[3,1],[8,1],[3,-1],[3,-3],[3,-4],[3,-3],[3,0],[19,11],[7,10],[4,18],[9,61],[6,23],[2,13],[0,38],[-1,10],[-4,18],[-1,17],[1,16],[5,19],[2,3],[4,3],[3,4],[16,47],[1,3],[-2,7],[0,4],[2,15],[5,3],[5,-2],[5,-1],[9,11],[2,15],[-2,18],[-4,19],[-1,11],[1,14],[2,11],[5,7],[20,18],[11,6],[16,-4],[5,10],[8,28],[9,23],[2,11],[2,51],[2,9],[4,9],[4,4],[4,6],[2,13],[0,3],[1,11],[-1,9],[-2,7],[-19,41],[-4,14],[0,11],[6,27],[7,23],[1,7],[0,11],[1,4],[2,6],[5,11],[5,4],[6,-3],[18,-19],[4,1],[5,11],[1,11],[1,31],[2,16],[7,29],[2,16],[0,18],[0,15],[-1,17],[-3,11],[-3,5],[-4,1],[-4,2],[-2,7],[-3,19],[-1,7],[-2,5],[-3,4],[-2,5],[-1,7],[0,10],[6,32],[0,17],[-5,53],[-3,10],[-2,11],[-1,12],[0,13],[2,23],[-2,4],[-2,1],[-1,0],[-2,-1],[-2,0],[-7,14],[-50,147],[-4,16],[-1,14],[6,32],[2,9],[3,27],[19,69],[6,13]],[[52094,53125],[9,2],[3,-1],[-1,-8],[-3,-7],[-5,-3],[-10,1],[-4,-1],[-14,-11],[-5,-1],[-21,3],[-4,4],[-1,8],[2,11],[3,3],[13,8],[4,-2],[9,-11],[5,-2],[5,1],[10,5],[5,1]],[[52020,53130],[13,3],[3,-3],[-3,-7],[-2,-7],[0,-8],[0,-9],[-2,-9],[-2,-6],[-4,-5],[-4,-3],[-25,-11],[-9,2],[-3,7],[3,11],[9,20],[6,20],[5,14],[2,5],[1,10],[3,-5],[5,-16],[4,-3]],[[50751,54241],[-1,0],[-110,-22],[-22,-10],[-95,-23],[-74,-36]],[[50449,54150],[-2,12],[6,6],[36,18],[6,1],[-6,44],[-5,44],[-7,25],[-3,3],[-6,7],[-1,3],[-1,5],[1,13],[-1,6],[-1,5],[-5,8],[-1,4],[0,7],[-2,1],[-3,0],[-2,1],[-3,2],[-2,4],[-2,5],[-2,5],[-1,6],[0,5],[1,5],[0,5],[-3,12],[-4,6],[-1,7],[2,13],[4,12],[2,6],[1,9],[-1,14],[-3,12],[-1,11],[0,10],[2,25],[0,8],[-3,6],[-4,7],[-4,10],[-5,42],[21,0],[5,3],[0,87],[0,86],[0,89],[-1,58],[0,51],[0,10],[0,118],[0,93],[1,95],[0,68],[-3,50],[-1,6],[-2,1],[-1,2],[2,15],[0,10],[0,5],[9,32],[1,11],[-1,5],[-7,20],[-2,6],[0,7],[0,18],[-1,79],[0,55],[0,65],[-1,74],[-1,16],[-2,14],[-6,22],[-17,38],[-23,49],[-1,5],[-5,17],[-4,23],[-2,60],[-3,17],[-5,-5],[-4,9],[-3,15],[-1,12],[1,7],[5,16],[2,8],[0,6],[0,12],[1,6],[0,7],[-2,28],[0,46],[-1,64],[0,44],[0,5],[-4,20],[-29,41],[-40,56],[-24,33],[-16,23],[-26,37],[-21,29],[-2,9],[0,14],[3,61],[5,33],[0,23],[-2,53],[4,20],[15,30],[3,11],[1,6],[0,14],[1,6],[4,18],[0,6],[-2,12],[-1,6],[1,12],[7,37]],[[50250,56980],[8,-10],[4,-1],[5,0],[1,3],[1,7],[0,7],[-2,3],[-2,2],[-1,6],[0,6],[0,6],[1,2],[2,7],[2,7],[2,5],[1,1],[1,0],[6,-3],[2,-2],[2,-3],[1,-1],[1,-2],[2,-5],[0,-2],[2,0],[3,4],[1,0],[8,-2],[3,-2],[1,-3],[2,-6],[2,-4],[1,3],[0,10],[-3,6],[-2,7],[0,6],[0,7],[-1,7],[-3,2],[-1,2],[0,2],[1,8],[-1,2],[-2,1],[-2,-3],[-1,-1],[0,9],[1,1],[9,5],[2,2],[2,11],[1,3],[3,0],[5,-6],[3,-2],[-1,11],[-1,20],[-5,18],[1,7],[3,6],[3,9],[2,-4],[2,-7],[0,-3],[3,0],[1,1],[1,2],[3,1],[5,0],[5,-3],[9,-9],[3,14],[1,4],[-1,6],[-3,6],[0,4],[1,7],[3,-3],[4,-8],[1,-6],[2,5],[2,2],[2,-2],[2,-5],[5,9],[-1,7],[-2,8],[-2,11],[2,11],[6,7],[6,6],[5,6],[-3,13],[1,5],[2,7],[3,5],[4,3],[3,3],[1,9],[5,-6],[5,-2],[26,-5],[0,-3],[-1,-9],[0,-4],[5,1],[5,-23],[6,4],[5,5],[12,6],[6,5],[4,3],[12,-1],[6,0],[10,10],[6,2],[5,-3],[2,4],[4,-2],[7,-7],[12,-9],[9,-2],[8,8],[1,3],[37,78],[20,35],[15,17],[4,8],[1,6],[0,6],[0,10],[3,17],[11,25],[3,16],[10,57]],[[50663,57515],[0,6],[-3,10],[-1,7],[2,7],[2,2],[3,-1],[2,1],[2,5],[2,8],[2,5],[3,0],[3,-2],[2,1],[0,10],[0,7],[-2,3],[-3,1],[-3,3],[-3,5],[-2,5],[-1,6],[-10,55],[-2,33],[-1,14],[3,10],[7,7],[3,1],[7,-1],[3,1],[1,1],[2,7],[2,2],[2,-1],[1,-3],[2,-1],[1,6],[2,7],[2,2],[2,-1],[3,0],[1,-1],[1,-4],[1,-2],[2,0],[1,2],[3,5],[1,2],[10,5],[1,0],[2,-3],[2,0],[1,1],[4,6],[2,0],[9,-5],[3,3],[4,13],[1,4],[0,5],[1,4],[2,4],[3,2],[3,-4],[2,2],[3,4],[4,11],[4,4],[2,1],[6,0],[3,1],[6,1],[4,9],[13,-25],[6,-7],[2,-6],[2,-7],[2,-14],[3,-5],[3,-3],[3,-2],[9,-3],[2,-1],[1,-3],[3,-11],[11,-35],[48,-91],[1,-4],[4,-5],[1,-4],[0,-12],[2,-14],[2,-10],[6,-23],[4,-10],[2,-4],[4,-5],[4,-2],[3,4],[4,4],[4,-1],[3,-4],[3,-2],[12,-16],[10,-7],[3,-5],[3,-4],[9,-28],[2,-4],[1,-2],[2,-2],[1,-5],[1,-9],[1,-5],[1,-5],[1,-4],[2,-3],[3,-10],[1,-3]],[[53391,47056],[0,1],[-13,48],[-4,38],[6,37],[3,7],[4,1],[3,1],[4,3],[2,6],[1,8],[0,19],[-1,7],[-4,21],[-5,21],[-7,40],[1,16],[-11,41],[-3,28],[-15,39],[-13,43],[0,7],[4,-2],[5,-2],[4,-3],[1,-3],[2,-14],[6,-3],[4,6],[3,10],[1,8],[2,3],[0,12],[-1,5],[-3,2],[-3,0],[-2,-6],[-1,-9],[1,-12],[-2,-3],[-2,2],[-1,11],[-2,7],[-2,1],[-2,-5],[-2,-1],[-4,4],[-4,-1],[-6,2]],[[53268,40252],[0,5],[-2,3],[-2,6],[0,8],[0,7],[2,23],[0,78],[3,51],[3,46],[-4,42],[0,18],[5,3],[2,-25],[3,-11],[5,25],[-1,46],[2,15],[-3,56],[2,63],[-12,224],[1,12],[1,9],[6,27],[-6,27],[-13,43],[-1,26],[5,34],[3,6],[6,7],[6,5],[2,-4],[1,-10],[4,-3],[4,2],[14,28],[2,9],[1,8],[0,17],[1,8],[5,14],[18,21],[3,13],[1,18],[6,44],[3,16],[-3,16],[1,17],[4,34],[2,69],[2,9],[2,8],[10,19],[2,1],[4,-5],[3,0],[2,7],[1,9],[0,11],[-2,8],[-4,4],[-3,-2],[-1,1],[1,13],[2,19],[8,35],[1,21],[1,8],[3,7],[3,6],[3,6],[1,8],[3,32],[0,8],[1,4],[2,6],[1,0],[2,-1],[2,1],[3,8],[2,16],[6,19],[-1,11],[-1,10],[0,11],[0,8],[3,13],[4,44],[2,47],[1,8],[5,15],[3,21],[3,39],[1,38],[-1,20],[-3,19],[-2,10],[-1,4],[0,7],[0,3],[-2,5],[0,4],[0,4],[1,0],[2,-1],[2,2],[3,1],[2,2],[1,4],[0,6],[1,5],[-1,5],[-2,9],[-3,8],[-2,8],[5,15],[1,13],[6,14],[1,8],[1,9],[1,9],[5,15],[1,6],[0,21],[1,9],[2,8],[7,4],[1,3],[2,2],[2,-1],[4,-6],[2,-2],[2,0],[4,13],[2,22],[2,61],[-1,59],[1,7],[4,15],[1,8],[-3,8],[0,5],[0,2],[1,2],[0,19],[0,9],[-3,19],[-1,9],[1,10],[2,9],[3,7],[4,2],[6,2],[2,3],[1,7],[4,8],[5,5],[3,2],[3,4],[2,10],[0,6],[0,4],[-1,4],[0,4],[0,4],[3,6],[0,4],[2,9],[8,9],[2,7],[1,7],[1,0],[2,-2],[2,-1],[5,7],[0,1],[5,5],[3,5],[19,49],[7,12],[3,6],[5,16],[17,41],[4,16],[0,16],[-2,16],[-5,17],[-2,18],[4,15],[13,28],[6,8],[18,37],[8,8],[2,4],[5,17],[1,5],[8,15],[5,6],[6,1],[0,-2],[6,-2],[3,-4],[9,18],[3,3],[5,-2],[5,-8],[5,-3],[10,4],[8,13],[12,28],[6,10],[3,7],[1,9],[1,25],[1,11],[2,11],[5,17],[18,36],[1,0],[0,-4],[-2,-3],[-2,-3],[-1,-5],[2,-6],[4,9],[6,19],[9,21],[2,9],[7,47],[8,35],[3,19],[3,41],[2,9],[4,9],[4,10],[2,11],[2,13],[5,59],[3,18],[0,12],[-4,107],[1,64],[1,14],[2,10],[-2,6],[0,6],[2,8],[0,7],[0,32],[0,6],[2,6],[5,15],[1,7],[0,17],[7,84],[0,34],[0,44],[-1,21],[-4,19],[-25,78],[-2,11],[0,10],[2,10],[8,21],[1,10],[-2,9],[-3,10],[-12,20],[-2,6],[-1,7],[-26,66],[-18,31],[-4,12],[-1,11],[-1,40],[-1,13],[-2,12],[-15,45],[-3,13],[-4,29],[-4,12],[-11,24],[-16,56],[0,8],[3,9],[2,12],[-3,24],[-6,26],[-7,24],[-22,55],[-2,11],[1,10],[6,14],[2,11],[0,10],[-2,12],[-2,10],[-2,4],[0,7],[-9,55],[-1,11],[1,26],[-1,9],[-5,21],[-2,13],[-6,10],[-21,74],[-8,39],[-5,17],[-2,33],[11,47],[16,39],[14,13],[-7,-19],[-20,-35],[-10,-49],[-1,-16],[3,-7],[3,5],[16,56],[0,6],[2,7],[3,2],[4,0],[3,1],[4,8],[3,19],[3,12],[7,16],[2,6],[0,7],[0,14],[1,6],[8,19],[5,7],[5,4],[-14,-29],[-3,-12],[4,5],[9,9],[5,7],[2,1],[2,3],[0,6],[1,4],[0,3],[1,2],[2,1],[17,-5],[7,5],[4,30],[4,22],[1,9],[-2,9],[-8,24],[-3,17],[-4,40],[-2,19],[3,2],[3,-1],[2,1],[2,6],[1,6],[0,45],[-1,12],[-3,14],[-26,86],[-3,5],[-4,27],[-2,10],[-2,7],[-4,16],[-2,6],[-4,22],[-3,27],[-18,70],[-38,182],[-13,68],[-8,60],[-8,17],[-4,10],[-5,14],[1,20],[-1,16],[-5,118],[-2,18],[-1,9],[-1,3],[0,3],[-1,2],[1,2],[2,5],[1,3],[0,6],[1,2],[0,2],[-1,5],[-8,-11],[-6,5],[-20,59],[-24,47],[-19,61],[-26,99],[-10,50],[-7,33],[-8,22],[-6,20],[-8,20],[-11,43],[-1,19],[4,11],[7,4],[5,7],[-1,-9],[-1,-17],[6,1],[10,6],[14,1],[18,8],[8,12],[7,5],[8,2],[15,17],[3,3],[7,0],[6,-5],[7,-4],[7,-3],[8,5],[13,6],[12,9],[6,9],[12,12],[6,14],[5,15],[2,11],[4,7],[7,3],[5,2],[4,4],[5,-1],[11,-2],[3,0],[4,4],[12,13],[4,3]],[[53257,40628],[0,-23],[3,-21],[0,-8],[-6,13],[-4,17],[-9,58],[1,17],[2,7],[6,10],[5,-3],[0,-30],[2,-13],[0,-24]],[[55282,77040],[-3,-2],[-9,0],[-23,-1],[-9,4],[-5,5],[-6,7],[-10,15],[-3,17],[2,6],[6,7],[1,6],[0,2],[-2,3],[-1,1],[0,2],[0,3],[0,2],[-1,3],[0,3],[-2,1],[-1,1],[-8,2],[-3,2],[-4,6],[-10,32],[-2,3],[-1,1],[-2,0],[-2,-3],[0,-3],[-1,-4],[-1,-2],[-2,-3],[-3,2],[-2,4],[-1,5],[-2,7],[-1,3],[-2,2],[-2,-1],[-4,-3],[-2,-2],[-2,1],[-5,1],[-2,0],[-4,-2],[0,-1],[0,-4],[1,-8],[1,-8],[-7,0],[-7,5],[-3,2],[-4,4],[-4,7],[-6,10],[-5,6],[-5,4],[-20,2],[-4,3],[-13,14],[-6,4],[-7,-3],[-3,-5],[-1,-8],[0,-7],[-2,-6],[-5,-5],[-6,-2],[-3,0],[-3,0],[-5,2],[-6,4],[-16,21],[-4,4],[-5,0],[-4,-4],[-17,-30],[-4,-7],[-3,-2],[-7,-2],[-8,-5],[-3,-1],[-6,4],[-5,7],[-15,30],[-8,11],[-8,7],[-9,1],[-6,-4],[-11,-17],[-5,-5],[-3,-1],[-6,1],[-14,-3],[-2,-1],[1,4],[3,12],[-7,-5],[-3,-1],[-4,2],[2,4],[1,3],[0,3],[-2,4],[-2,2],[-1,-2],[-1,-4],[-1,-2],[-9,-4],[-5,-1],[-4,3],[-2,4],[-10,9],[-5,3],[-11,11],[-5,-18],[-1,-3],[-13,-1],[-3,-3],[-18,12],[-7,6],[-12,13],[-5,18],[-2,-2],[-4,-5],[-2,-2],[1,5],[0,4],[0,3],[-1,5],[-3,-8],[-3,3],[-3,7],[-4,2],[1,-4],[1,-4],[-6,-1],[-2,3],[1,5],[-1,5],[-2,12],[-2,4],[-8,-10],[-1,-3],[-2,-5],[-3,-4],[-2,-3],[-2,-6],[-2,-3],[-4,-2],[-2,-4],[-2,-7],[0,-5],[0,-5],[-4,-4],[-7,-2],[-55,25],[-16,1],[-13,-14],[-9,-30],[-4,-9],[-3,-3],[-7,-4],[-3,-2],[-2,-6],[0,-3],[1,-4],[-1,-7],[-1,-5],[-6,-16],[-3,-17],[-1,-8],[-7,-3],[-11,4],[-10,7],[-8,7],[-25,38],[-5,10],[-6,23],[-4,11],[-4,4],[-6,2],[-2,2],[0,3],[1,5],[0,5],[-2,5],[-4,3],[-3,0],[-6,-2],[-27,1],[-15,-4],[-6,-8],[-3,-4],[-3,-13],[0,-5],[1,-35],[-1,-9],[-7,-26],[0,-11],[3,-18],[-1,-10],[-7,-18],[-1,-7],[-1,-4],[1,-15],[4,-12],[4,-10],[3,-11],[-1,-11],[-5,-3],[-6,-3],[-4,-8],[0,-10],[3,-10],[7,-18],[2,-3],[7,-7],[2,-5],[2,-6],[2,-4],[4,1],[3,1],[5,1],[2,1],[2,4],[2,5],[2,3],[3,0],[2,-3],[1,-6],[1,-6],[1,-5],[2,-4],[2,1],[2,2],[2,0],[3,-6],[3,-15],[3,-8],[3,-3],[4,-2],[6,-1],[4,-3],[2,-5],[1,-8],[1,-8],[-2,-2],[-2,-8],[-4,-9],[-2,-10],[5,-9],[6,-1],[10,7],[6,-2],[3,-6],[2,-10],[2,-12],[6,-29],[2,-11],[0,-10],[-1,-4],[-3,-2],[-2,-3],[0,-4],[1,2],[3,-1],[5,-2],[6,-5],[3,-5],[1,-5],[0,-1],[-1,-10],[-1,-5],[-2,-9],[-1,-7],[0,-9],[3,-18],[5,-26],[4,-10],[12,-20],[4,-11],[7,-23],[4,-10],[5,-8],[3,-4],[3,-2],[3,-1],[7,1],[3,-2],[3,-9],[2,-9],[2,-7],[12,-6],[5,-6],[4,-8],[3,-7],[8,-18],[14,-21],[9,-20],[11,-16],[2,-9],[1,-10],[3,-12],[4,-10],[31,-38],[44,-70],[13,-24],[9,-13],[6,-8],[16,-14],[27,-7],[9,-9],[4,-15],[-5,-50],[6,-29],[11,-26],[11,-16],[6,-6],[3,-4],[2,-6],[2,-13],[3,-11],[4,-8],[3,-2],[38,-39],[3,-6],[8,-16],[9,-31],[1,-16],[-8,-9],[-15,-5]],[[54883,75901],[-9,7],[-4,-2],[-5,5],[-5,7],[-3,7],[-3,11],[-2,7],[3,5],[6,5],[-4,3],[-4,-3],[-5,-5],[-6,-3],[2,2],[6,6],[-3,0],[-3,1],[-2,2],[-2,5],[2,4],[-2,6],[0,2],[-6,-8],[-9,14],[-15,31],[-40,33],[-10,12],[-5,4],[-2,2],[-1,8],[-2,3],[-3,2],[-3,1],[-2,1],[-2,4],[-3,7],[0,3],[-1,7],[-1,3],[-1,1],[-3,1],[-2,1],[-26,53],[-7,8],[-3,5],[-2,3],[-2,3],[-36,8],[-16,11],[-19,7],[-26,28],[0,2],[0,3],[-1,2],[-1,1],[-2,0],[-3,-3],[-1,-1],[-11,4],[-20,0],[0,4],[5,1],[7,2],[6,4],[4,6],[-4,4],[-7,2],[-27,1],[-3,-1],[-5,-5],[-2,-1],[-5,-2],[-12,-5],[-33,-1],[0,-5],[9,-3],[4,-5],[2,-8],[-17,0],[0,-6],[-4,0],[-9,6],[-7,1],[-3,2],[-4,5],[-2,0],[0,-4],[-3,4],[-6,0],[-2,4],[-1,-1],[0,-1],[0,-2],[-1,0],[0,7],[2,1],[2,0],[2,2],[1,4],[0,3],[-1,3],[1,5],[-4,-1],[-2,-1],[-1,-2],[-1,5],[-3,3],[-6,4],[5,1],[0,4],[-2,3],[-5,0],[0,4],[1,1],[2,2],[1,1],[-3,3],[-1,1],[2,4],[-2,4],[2,4],[-2,9],[3,3],[11,0],[0,5],[-13,4],[-5,0],[4,3],[3,0],[2,-2],[2,-1],[3,1],[-1,4],[-2,4],[-3,3],[4,2],[2,4],[-1,6],[-3,4],[0,-11],[-2,0],[-7,8],[-4,6],[-2,0],[-2,0],[-2,1],[-2,3],[-4,10],[-1,3],[-12,10],[-3,5],[-6,3],[-18,2],[-3,7],[-3,13],[-7,5],[-7,3],[-4,9],[8,-6],[4,-2],[5,0],[0,4],[-2,1],[-1,0],[-1,-1],[-7,10],[-18,14],[-8,10],[0,1],[-6,13],[-4,6],[-4,3],[-4,1],[-2,1],[-2,2],[-3,3],[-2,4],[-1,4],[-2,5],[-15,29],[-7,16],[-6,8],[-5,4],[-12,22],[0,2],[-12,21],[-3,3],[-3,3],[-1,4],[1,6],[-4,5],[-15,23],[5,10],[-3,13],[-5,12],[-6,6],[3,6],[5,4],[5,-1],[2,-11],[3,-7],[6,4],[3,10],[-6,7],[2,1],[0,1],[1,-2],[3,0],[-2,7],[-1,3],[14,-14],[6,-12],[3,-4],[4,0],[-4,20],[3,1],[1,2],[1,2],[1,3],[-4,2],[-3,5],[-2,6],[-2,7],[5,-3],[8,-11],[8,-4],[20,-18],[4,-2],[22,-5],[6,0],[1,7],[-4,4],[-18,4],[-1,2],[-9,17],[-2,2],[-27,20],[-4,6],[-39,60],[-13,28],[-8,14],[-7,5],[-2,3],[-9,11],[-2,1],[-2,5],[-27,66],[-5,20],[3,7],[0,9],[-2,10],[-1,12],[-1,33],[1,10],[6,38],[2,9],[2,11],[-2,13],[-16,57],[-1,10],[-3,7],[-4,5],[-17,14],[-30,35],[-14,28],[-4,3],[-5,8],[-2,8],[4,5],[-3,5],[-10,12],[5,-9],[1,-1],[-1,-5],[-3,-3],[-3,0],[-2,3],[-4,7],[-30,23],[-11,3],[-5,5],[-4,1],[-5,-6],[-6,-14],[-5,-18],[-4,-20],[-3,-41],[-3,-19],[-1,-1],[0,-2],[-7,-14],[-8,5],[5,-8],[-1,-9],[-4,-9],[-4,-6],[-2,4],[-1,-5],[0,-4],[1,-11],[-1,1],[-2,1],[-1,1],[0,-3],[5,-8],[2,-12],[-1,-14],[-4,-11],[-3,-4],[-2,1],[-2,2],[-3,1],[-4,-2],[-3,-5],[-2,-5],[-2,-5],[-2,0],[1,12],[2,5],[2,5],[-3,11],[-6,8],[0,5],[0,4],[0,3],[-3,0],[1,-7],[-2,-10],[2,-5],[3,-3],[2,0],[2,-2],[1,-5],[-3,-5],[-4,-11],[-1,-3],[-1,2],[-2,0],[1,-4],[1,-5],[-1,-5],[-1,-6],[-2,1],[-1,0],[0,-2],[1,-3],[0,-4],[-1,0],[-1,-1],[0,-1],[0,-2],[-3,2],[-6,-2],[-4,0],[2,-3],[1,-3],[2,-6],[-1,0],[0,-4],[1,0],[0,-4],[-2,-2],[-1,-3],[-2,-7],[0,-5],[1,-1],[0,-1],[-1,-5],[3,0],[1,-1],[2,-3],[1,-4],[-10,-1],[-5,1],[-4,4],[0,-2],[0,-1],[-2,-1],[-1,9],[-3,1],[-3,-1],[-2,3],[-2,-4],[3,-2],[3,-4],[1,-5],[-1,-6],[2,-10],[2,-2],[-5,-3],[-1,5],[1,10],[-1,9],[-2,2],[-9,5],[-3,1],[1,2],[1,4],[0,2],[-1,0],[-2,0],[1,4],[-1,4],[-3,-1],[-5,2],[-4,5],[-4,6],[2,4],[3,-6],[4,-2],[4,3],[3,9],[-8,-3],[-3,1],[-3,6],[0,4],[1,1],[2,4],[1,3],[-3,6],[-6,23],[-12,18],[-14,31],[-2,3],[-4,6],[-5,5],[-5,2],[1,3],[1,6],[1,3],[-6,14],[7,7],[24,3],[-5,4],[-7,1],[-13,-1],[-6,-3],[-4,1],[-1,4],[1,7],[0,5],[0,4],[-3,2],[2,4],[0,3],[-1,3],[-3,3],[0,3],[3,3],[1,3],[0,5],[-2,6],[2,6],[0,6],[-2,5],[-4,3],[1,4],[2,3],[2,2],[3,0],[0,3],[-3,2],[-2,3],[-2,3],[-1,5],[3,1],[3,2],[4,5],[-3,2],[-8,1],[-2,1],[-3,4],[-3,7],[0,7],[4,2],[0,4],[-4,5],[-8,36],[1,1],[1,1],[0,2],[-1,2],[0,1],[0,1],[1,4],[-4,16],[-1,9],[1,7],[2,0],[3,-3],[13,-9],[5,-1]],[[53774,77409],[11,-18],[9,1],[27,2],[14,-13],[3,-5],[5,-3],[15,-3],[2,4],[3,5],[4,6],[13,8],[4,8],[-6,10],[0,7],[1,4],[2,2],[4,-2],[7,-2],[4,-3],[4,-6],[7,-7],[7,-4],[7,-1],[1,0],[7,2],[13,10],[7,3],[6,-3],[11,-7],[13,-3],[13,1],[11,9],[5,8],[11,12],[3,10],[2,8],[1,13],[0,3],[2,7],[2,6],[7,12],[3,6],[4,12],[2,4],[1,1],[4,2],[3,-3],[0,-9],[0,-11],[0,-8],[3,-7],[3,-6],[10,-11],[2,-1],[2,-2],[1,-3],[1,-5],[-1,-10],[0,-3],[6,-8],[25,-17],[5,-16],[11,-4],[12,7],[6,13],[1,13],[5,0],[6,-6],[5,-7],[4,0],[2,-1],[3,-2],[3,-4],[14,0],[2,-4],[21,-26],[12,-3],[12,7],[15,8],[9,0],[3,1],[3,4],[5,10],[3,4],[-14,14],[-4,10],[-3,13],[-1,15],[0,1],[-2,6],[-2,7],[0,5],[3,2],[2,3],[1,4],[2,5],[8,4],[3,3],[4,2],[6,-1],[-2,6],[-4,11],[-1,1],[-4,8],[-1,1],[-1,-1],[-3,-1],[-2,-2],[0,-2],[-1,-2],[-4,2],[-2,3],[-2,3],[-2,8],[-3,4],[-2,1],[-1,3],[1,1],[1,6],[2,4],[12,9],[7,4],[27,13],[1,1],[3,4],[-1,5],[-1,6],[1,6],[3,2],[4,0],[3,-2],[3,-1],[3,2],[5,6],[3,2],[7,-2],[10,-3],[11,1],[5,2],[6,5],[3,6],[0,8],[-4,12],[-1,8],[1,7],[2,7],[2,7],[0,10],[0,18],[-1,12],[0,1],[3,12],[3,7],[1,6],[-1,3],[-3,6],[-3,4],[-8,4],[-3,3],[-3,4],[-5,8],[-4,14],[0,15],[4,16],[5,15],[1,2],[4,8],[6,4],[4,0],[20,-3],[6,5],[5,14],[3,4],[1,1],[4,3],[5,2],[12,0],[1,0],[1,0],[9,8],[9,7],[9,2],[3,2],[1,0],[6,5],[6,5],[3,5],[0,1],[2,8],[0,8],[0,9],[0,10],[9,-3],[1,0],[3,1],[3,3],[2,5],[2,3],[4,1],[3,-2],[6,-9],[4,-3],[5,-2],[2,0],[10,4],[6,0],[2,1],[0,2],[-1,5],[-1,3],[-5,4],[-1,3],[-1,5],[0,10],[0,5],[-3,16],[-1,8],[0,4],[0,5],[7,12],[1,1],[9,5],[4,4],[6,3],[2,5],[1,1],[2,-4],[1,0],[1,4],[4,-3],[3,-1],[4,0],[3,0],[2,-2],[5,-8],[2,-2],[3,0],[6,1],[3,-1],[2,-2],[7,-8]],[[55121,75674],[1,-10],[-1,-19],[0,-10],[2,-9],[3,-8],[3,-7],[3,-2],[4,-4],[2,-7],[-1,-9]],[[55137,75589],[-6,15],[-4,4],[-9,4],[-4,4],[0,9],[-48,49],[-5,12],[0,5],[0,8],[1,8],[-2,3],[-14,4],[-12,10],[-4,2],[-5,1],[-4,1],[-4,4],[-2,6],[6,0],[-6,9],[-2,5],[-2,6],[-4,-6],[-7,6],[-11,17],[-17,13],[-6,10],[4,13],[-8,-1],[-8,11],[-8,3],[-2,-1],[-2,-1],[-2,-2],[-2,-5],[-1,1],[-2,2],[-1,1],[-2,2],[-6,8],[-4,3],[5,-8],[3,-6],[3,-14],[0,-3],[-2,-2],[-1,1],[0,4],[0,4],[0,3],[-6,6],[-14,9],[-12,4],[-15,11],[-15,4],[-24,15],[1,15],[-7,7],[-19,7],[-22,24],[-9,5],[-5,5],[-2,2],[-3,1],[-30,0],[-9,3],[-5,3],[-5,5],[-2,6],[2,6],[0,4],[-2,2],[-2,3],[-1,4],[-2,3],[6,-1],[9,-12],[5,-3],[24,4],[22,-5],[42,-26],[10,-10],[8,-11],[0,-3],[0,-3],[1,-3],[1,-3],[1,-1],[3,1],[1,0],[5,-6],[3,-2],[3,-1],[1,2],[0,5],[1,2],[1,-1],[3,-3],[1,-1],[4,-1],[2,-2],[5,-5],[11,-5],[5,-5],[3,-6],[2,0],[4,1],[12,-18],[7,-3],[-9,10],[-2,7],[3,7],[-2,4],[-8,-5],[-7,7]],[[54903,75870],[4,9],[3,6],[7,2],[6,-2],[11,-7],[6,-2],[2,2],[3,3],[2,1],[3,-7],[1,-6],[0,-14],[0,-7],[9,-21],[3,-4],[10,-4],[7,-8],[12,-21],[6,-9],[15,-15],[49,-51],[9,-8],[15,-8],[8,0],[3,-3],[5,-13],[0,-1],[4,-4],[10,-2],[5,-2]],[[54682,75807],[18,-4],[3,-4],[1,-9],[-3,-8],[-6,-6],[-5,-1],[-1,4],[-2,1],[-5,3],[-3,-6],[-3,-1],[-4,3],[-3,8],[3,3],[1,5],[-2,3],[-2,-3],[-2,0],[2,7],[5,3],[8,2]],[[54905,75783],[5,-8],[15,-10],[5,-11],[-101,45],[-3,-6],[-6,4],[-5,8],[-3,6],[5,2],[9,5],[5,-1],[-2,0],[-1,-2],[-3,-4],[3,1],[3,-1],[3,-1],[2,-3],[2,4],[5,-5],[14,0],[10,-10],[14,-5],[7,-4],[-1,-1],[0,-1],[-1,-2],[16,-3],[3,3]],[[54758,75917],[5,-10],[4,-7],[10,-11],[-2,-5],[-5,5],[-6,-1],[-12,-4],[-26,9],[-12,-2],[-20,-12],[-14,-3],[-31,10],[-13,6],[-5,0],[0,-3],[-5,2],[-5,5],[19,16],[0,5],[-5,2],[-11,3],[-5,3],[6,5],[6,1],[7,-2],[6,0],[6,-6],[7,-5],[16,-6],[15,0],[4,2],[6,6],[33,5],[22,-11],[5,3]],[[54511,75978],[1,2],[1,2],[1,-1],[1,-6],[-1,-3],[-2,-3],[-3,-4],[-3,-6],[-4,-4],[-24,-12],[-10,-1],[-7,3],[6,5],[1,9],[-2,7],[-3,-1],[-2,0],[-4,8],[2,2],[1,1],[1,1],[2,1],[7,6],[10,3],[11,0],[8,-5],[-1,-3],[-1,-1],[7,4],[3,-1],[4,-3]],[[54636,76010],[-6,-1],[-31,11],[-23,13],[-8,3],[-5,5],[-4,2],[-12,8],[1,2],[2,2],[3,0],[3,-3],[3,0],[7,7],[2,-4],[1,2],[3,6],[0,-4],[10,5],[8,-8],[8,-10],[8,1],[-8,12],[-7,7],[-3,5],[5,-1],[7,1],[6,-8],[1,0],[3,3],[2,1],[3,0],[8,-2],[4,-2],[2,-3],[2,-5],[2,-5],[3,-3],[1,-3],[-1,-1],[-1,0],[5,-7],[6,-4],[7,-1],[26,0],[5,4],[4,-6],[5,-2],[17,-2],[17,-7],[25,2],[13,-2],[10,-8],[-69,0],[-70,0]],[[54583,76103],[-22,20],[-4,9],[2,-2],[1,-3],[2,0],[0,4],[1,1],[2,-1],[1,1],[-1,4],[0,4],[2,3],[3,1],[-4,11],[-4,13],[6,1],[2,-1],[11,-7],[54,-3],[34,-14],[0,-4],[-4,0],[3,-2],[3,-2],[2,1],[2,3],[2,-3],[5,-10],[3,-1],[3,0],[2,0],[2,-6],[-4,-11],[-2,-4],[-2,3],[-5,-11],[-9,-4],[-52,-2],[-17,4],[-18,8]],[[54553,76140],[-5,-8],[-7,3],[-19,19],[-14,9],[-7,1],[0,3],[1,1],[1,0],[-3,4],[0,4],[1,3],[4,2],[16,-2],[6,-5],[1,-10],[8,2],[5,-7],[5,-10],[7,-9]],[[54355,76319],[17,-12],[-17,7],[-2,-2],[-3,5],[-12,14],[-4,3],[2,5],[1,-3],[1,-1],[9,-2],[3,-4],[2,-6],[3,-4]],[[54239,76448],[1,-6],[21,-26],[4,-7],[3,-6],[8,-11],[-2,3],[-17,11],[-5,6],[-6,12],[-7,8],[-4,6],[-4,8],[-2,7],[4,3],[6,-8]],[[54250,76507],[-1,7],[-8,13],[-2,7],[5,0],[4,-4],[15,-17],[8,-3],[2,-1],[1,-3],[0,-10],[1,-3],[2,-3],[3,-3],[2,-2],[3,-4],[2,-6],[2,-8],[1,-7],[-2,2],[-2,2],[-2,0],[-3,1],[-2,1],[-1,2],[0,3],[-1,2],[-8,3],[-3,3],[-3,6],[2,2],[0,2],[-3,2],[-5,6],[-5,5],[-2,5]],[[54237,76538],[-4,6],[-2,8],[-3,5],[-3,-3],[-1,0],[-1,3],[0,1],[-1,2],[-1,2],[-2,-7],[-6,7],[-6,10],[-7,10],[-10,18],[-5,6],[1,3],[1,2],[-1,3],[-3,9],[46,-57],[6,-11],[2,-17]],[[54122,76615],[3,2],[1,0],[2,-2],[2,-5],[-4,-2],[-6,3],[-4,7],[1,9],[1,-6],[2,-4],[2,-2]],[[54206,76497],[20,-22],[1,-6],[-7,-4],[-13,17],[-4,-2],[1,-2],[1,-2],[1,-3],[7,-8],[2,-2],[2,-3],[2,0],[2,0],[0,-5],[-1,-3],[-3,2],[-2,5],[-1,1],[-10,10],[-4,5],[-4,8],[-11,26],[-7,12],[-11,37],[-6,8],[-7,6],[-24,39],[-1,6],[-1,5],[-4,9],[2,1],[1,-1],[1,0],[6,-10],[15,-19],[2,-4],[1,-5],[1,-5],[3,-2],[4,-2],[2,-3],[2,-2],[4,3],[-1,-6],[-1,-2],[4,-1],[2,-3],[2,-6],[0,-8],[1,-7],[3,-6],[13,-22],[3,-3],[4,0],[1,-3],[7,-18]],[[54132,76859],[-3,4],[-29,54],[-5,13],[-3,14],[1,0],[1,-1],[11,-19],[18,-41],[11,-13],[-1,18],[6,0],[10,-9],[8,-12],[6,-16],[4,-6],[11,-6],[3,-6],[2,-9],[4,-10],[-5,1],[-8,10],[-6,1],[1,6],[1,2],[-11,11],[-6,3],[-3,3],[-4,3],[-5,0],[0,-4],[16,-13],[22,-50],[14,-14],[-4,6],[-5,7],[-4,11],[-2,12],[11,-8],[26,-42],[6,-6],[4,-7],[8,-11],[4,-7],[-6,-2],[-6,6],[-7,8],[-6,5],[0,-4],[5,-2],[5,-5],[4,-7],[3,-7],[-5,0],[0,-3],[1,-2],[1,-1],[1,-2],[-6,3],[-12,8],[-7,1],[0,-4],[12,-12],[0,-4],[-6,3],[-6,5],[-5,7],[-4,9],[0,4],[4,0],[0,5],[-2,2],[-2,2],[-2,8],[3,-1],[2,1],[1,3],[2,4],[-7,8],[-3,1],[-2,-1],[-5,-3],[-2,0],[-3,5],[-5,16],[-17,21],[-3,1],[-14,14],[0,3],[1,1],[3,3],[2,1],[-4,10],[-8,18],[0,5]],[[54012,76862],[23,-37],[2,-11],[-6,-1],[-8,11],[-9,18],[-4,4],[0,4],[6,-2],[2,-2],[-8,15],[-4,6],[-5,3],[-2,-6],[-3,-2],[-4,1],[-3,4],[0,3],[2,0],[0,2],[-1,3],[5,9],[-2,12],[-8,19],[-1,8],[-2,18],[0,11],[5,-6],[7,-5],[5,-8],[-2,-14],[1,-5],[1,-9],[2,-16],[1,-6],[10,-21]],[[54094,76988],[0,-5],[1,-2],[3,-5],[-4,4],[-4,2],[-4,0],[-3,-2],[-12,20],[4,1],[3,-1],[3,-1],[3,-3],[0,4],[-1,2],[0,1],[0,2],[0,4],[4,-6],[1,-3],[2,0],[-3,12],[-3,5],[-3,4],[-1,2],[-1,6],[6,-1],[5,-3],[-1,2],[-1,6],[6,0],[4,-5],[0,-6],[-4,-5],[0,-4],[2,-2],[11,-16],[7,-6],[3,-5],[8,-20],[2,-12],[-3,-8],[-7,10],[-14,23],[-9,11]],[[54031,76919],[-2,-5],[1,-5],[1,-2],[4,4],[2,-8],[-2,-4],[-2,-4],[-2,-1],[-3,0],[-8,0],[-13,22],[-9,30],[1,26],[-2,1],[0,1],[-1,1],[-1,1],[-3,-2],[-1,4],[-1,8],[-1,19],[0,5],[-2,3],[-3,0],[-4,8],[-4,35],[-6,9],[0,3],[1,2],[1,3],[-2,11],[2,2],[7,-4],[2,-3],[5,-11],[2,-3],[5,0],[3,0],[2,4],[1,8],[-1,4],[-2,9],[1,6],[4,-7],[2,4],[-6,8],[-4,11],[-8,35],[-2,5],[-15,27],[-2,7],[-1,9],[4,12],[3,8],[3,6],[6,2],[6,-3],[2,-7],[-1,-24],[1,-14],[2,-11],[5,-22],[7,-21],[1,-3],[4,-4],[6,-2],[4,-2],[2,-8],[-1,-10],[-2,-11],[-3,-8],[2,-4],[-3,-10],[0,-9],[1,-19],[3,-17],[1,-10],[-4,-4],[1,-6],[4,-9],[1,-5],[0,-6],[-2,-7],[0,-8],[2,-13],[3,-9],[5,-8],[3,-10]],[[54089,77086],[-4,2],[-14,14],[-8,4],[-1,5],[0,9],[0,21],[-1,5],[-5,-4],[0,-4],[4,-4],[-8,-1],[-22,5],[-7,4],[-7,8],[-6,11],[-4,10],[3,5],[2,2],[3,1],[3,0],[1,3],[0,5],[0,6],[3,2],[10,1],[5,3],[-3,8],[4,8],[1,5],[1,5],[-1,5],[-1,4],[0,5],[4,5],[0,6],[0,6],[-2,3],[-2,1],[4,7],[4,0],[9,-7],[-3,0],[-1,0],[1,-4],[0,-4],[2,-2],[1,-2],[4,-11],[4,-14],[-8,-5],[5,-4],[8,-2],[6,3],[2,-11],[-4,-21],[2,-12],[4,-6],[5,-2],[12,0],[0,-17],[17,-24],[4,-16],[-2,0],[-3,-4],[-4,-1],[-3,1],[-3,4],[-4,-4],[0,-4],[4,-5],[-1,-4],[-5,-2],[-5,-1]],[[54530,76236],[7,-4],[11,-7],[-1,-3],[-11,-2],[-14,4],[-4,-1],[-2,-2],[-4,-1],[-4,1],[-3,2],[-2,2],[0,3],[2,2],[1,-1],[2,0],[4,-1],[2,3],[-1,5],[4,3],[13,-3]],[[54099,76700],[4,-4],[5,-7],[0,-4],[-4,0],[-3,-1],[-2,-3],[-3,1],[-3,6],[1,5],[3,0],[1,2],[0,4],[1,1]],[[54059,76729],[8,-9],[5,-10],[-1,-2],[-5,4],[-11,16],[-1,5],[5,-4]],[[54110,76751],[2,-6],[2,-11],[-3,-4],[-5,3],[-3,3],[-5,7],[1,5],[3,7],[-2,18],[1,1],[2,1],[3,0],[3,-2],[2,-6],[1,-6],[-2,-4],[0,-4],[0,-2]],[[53956,76919],[6,11],[4,-2],[0,-5],[-1,-4],[-4,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-4],[0,-1],[2,-6],[2,-7],[-2,-1],[-4,3],[-3,2],[-2,4],[0,5],[1,4],[2,12]],[[53774,77409],[1,2],[-1,5],[2,6],[0,4],[-3,1],[-2,2],[-1,4],[-1,6],[5,-2],[24,5],[22,5],[0,3],[-3,7],[-4,7],[-5,7]],[[64113,65125],[5,1],[7,13],[2,15],[-2,56],[-3,15],[-12,43],[0,9],[3,17],[0,11],[0,11],[-2,5],[-7,8],[-2,21],[-1,21],[-2,14],[2,11],[-1,12],[-1,14],[0,13],[2,32],[0,12],[-4,45],[3,25],[0,12],[-3,7],[7,19],[6,2],[3,-8],[1,-11],[2,-4],[0,-12],[8,-2],[-5,24],[-1,10],[0,11],[0,6],[1,7],[1,8],[-2,7],[-2,3],[-6,2],[-4,3],[3,8],[4,2],[4,0],[4,4],[1,4],[1,9],[2,2],[1,-2],[2,-5],[2,-1],[2,-5],[-1,-10],[-2,-16],[0,-12],[1,-5],[2,-11],[1,-3],[2,-3],[3,1],[0,2],[0,3],[1,14],[1,14],[1,6],[3,6],[2,-2],[2,-4],[4,0],[2,4],[4,17],[2,8],[-8,-6],[-7,-3],[-6,5],[-4,16],[0,8],[2,28],[0,3],[3,4],[1,3],[-1,3],[-1,3],[0,3],[0,18],[4,-2],[1,4],[1,7],[2,3],[2,-2],[2,-5],[1,-7],[0,-7],[4,5],[3,8],[0,10],[-1,10],[-2,-4],[-4,8],[0,13],[8,34],[1,11],[1,27],[2,-3],[1,-2],[1,-3],[1,0],[7,35],[5,16],[8,6],[4,2],[12,9],[2,3],[2,9],[6,13],[2,9],[5,-4],[6,4],[10,12],[22,-23],[4,-10],[1,-11],[-1,-15],[0,-13],[3,-5],[6,-4],[1,-10],[1,-12],[1,-11],[4,-8],[4,-1],[2,-1],[12,2],[7,-1],[5,-4],[5,-5],[5,-7],[3,-7],[3,-9],[2,-10],[5,-65],[0,-8],[-1,-7],[-2,-3],[-2,2],[-1,9],[-2,2],[-3,-3],[-2,-5],[-1,-7],[1,-6],[2,-4],[3,0],[1,4],[1,4],[5,-13],[-4,-14],[-5,-4],[-1,15],[-4,-2],[-10,-10],[4,-3],[5,-5],[3,-6],[2,-6],[-1,-13],[-4,-5],[-5,-3],[-4,-4],[-2,3],[-1,1],[0,-31],[0,-9],[0,-1],[-2,-5],[-2,-5],[-2,-6],[1,-6],[10,-34],[2,-8],[0,-9],[-1,-25],[-1,-31],[1,-13],[1,-7],[4,-3],[16,-5],[2,-5],[3,-12],[1,-10],[1,-11],[0,-49],[-3,-61],[2,-7],[-3,-5],[-4,-36],[-4,-11],[-9,-21],[-3,-14],[-2,-3],[-3,-1],[-2,-2],[-1,-6],[-7,-53],[-1,-3],[-1,-7],[-3,-5],[-2,-11],[-2,-25],[-3,-9],[-12,-13],[-2,-4],[-1,-14],[-4,-9],[-4,-7],[-2,-9],[-4,9],[1,8],[3,10],[1,12],[-2,6],[-5,2],[-10,-2],[0,10],[-2,0],[-3,-4],[-3,-2],[-5,-1],[-5,-4],[-2,-6],[1,-4],[0,-1]],[[64226,65053],[-19,-29],[-14,-9],[-16,-1],[-17,5],[-14,12],[-13,29],[-20,65]],[[64226,65053],[0,-4],[15,4],[2,-4],[3,-6],[2,-3],[3,5],[0,-5],[0,-5],[-1,-5],[-2,-2],[-1,-3],[0,-6],[1,-6],[1,-1],[-1,-20],[2,-3],[5,3],[4,6],[7,26],[4,8],[4,4],[2,7],[0,14],[4,-4],[5,-1],[4,-2],[2,-7],[2,-8],[3,-1],[4,0],[4,-6],[0,-4],[-4,-4],[-6,-3],[-5,-6],[-2,-9],[-1,0],[-6,-14],[-2,-4],[-1,-8],[-1,-4],[-17,-24],[-2,-7],[-1,-3],[-3,-9],[-2,-6],[0,-6],[-1,-13],[-1,-5],[0,-4],[0,-4],[0,-3],[-1,-1],[-3,0],[-1,-1],[-1,-2],[0,-12],[0,-7],[1,-3],[18,-3],[6,3],[4,4],[2,4],[3,3],[4,1],[18,-7],[5,-8],[8,-17],[12,-7]],[[64438,61719],[-44,-12],[-45,-13],[-44,-13],[-45,-13],[-44,-12],[-44,-13],[-45,-13],[-44,-13],[-45,-13],[-44,-12],[-45,-13],[-44,-13],[-45,-13],[-44,-12],[-45,-13],[-44,-13],[-45,-13],[-36,-10],[-26,-19],[-12,-13],[-40,-42],[-48,-49],[-53,-56],[-47,-49],[-36,-37],[-6,-9],[-22,-55],[-25,-65],[-44,-112],[-41,-105],[-27,-69],[-5,-19],[-13,-74],[-19,-104],[-8,-23],[-32,-38],[-34,-41],[-8,-7],[-9,-2],[-37,3],[-4,0],[-3,5],[-24,67],[-20,58],[-18,51],[-11,12],[-61,-17],[-46,-13],[-68,14],[-52,11],[-69,15],[-59,12],[-13,9],[-45,54],[-16,6],[-46,1],[-7,0],[-35,0],[-56,1],[-6,-3],[-17,-13],[-8,-1],[-19,8],[-17,1],[-27,-5],[-21,-11],[-6,0],[-11,7],[-6,1],[-4,-6],[-4,-15],[-4,-10],[-6,-5],[-7,2],[-11,11],[-4,1],[-6,-6],[-5,-11],[-3,-11],[-4,-9],[-7,-2],[-3,2],[-2,1],[-1,3],[-1,5],[1,12],[0,6],[-2,2],[-6,-4],[-5,-1],[-11,2],[-11,-2],[-5,0],[-5,4],[-12,19],[-19,44],[-12,14],[-20,18],[-5,3],[-9,1],[-5,2],[-6,-2],[-7,-4],[-24,-32],[-24,-42],[-14,-34],[0,-3],[16,-10],[5,-9],[3,-13],[-1,-11],[-6,-7],[-7,-3],[-7,-6],[-6,-9],[-1,-12],[0,-14],[-2,-12],[-6,-23],[-1,-13],[1,-9],[2,-10],[2,-13],[0,-13],[-2,-11],[-4,-23],[-2,-15],[1,-10],[6,-23],[3,-22],[4,-5],[10,-6],[3,-5],[2,-6],[0,-8],[-1,-6],[-2,-3],[-3,-2],[-2,-4],[-4,-12],[0,-8],[3,-9],[1,-14],[1,-1],[-2,-11],[-5,-2],[-11,7],[-7,3],[-4,-4],[-1,-8],[0,-12],[-1,-11],[-8,-39],[-3,-10],[-6,-10],[-12,-14],[-4,-3],[-11,-4],[-3,-3],[-1,-8],[1,-9],[0,-9],[-2,-10],[-8,-10],[-9,-9],[-14,-9]],[[61885,60165],[0,1],[0,22],[-2,6],[4,19],[-2,12],[-13,31],[-4,13],[-1,12],[1,25],[3,26],[0,11],[-5,2],[2,4],[-4,7],[-2,9],[-1,8],[3,5],[-2,6],[-8,14],[-1,4],[-4,11],[-6,15],[-2,3],[-9,10],[-3,0],[-3,-3],[-9,27],[3,26],[-2,10],[0,29],[-1,10],[-2,3],[-3,3],[-1,8],[-3,5],[-5,1],[-5,-1],[-4,1],[-4,6],[-2,10],[-4,16],[-1,9],[-2,20],[-1,9],[-2,4],[-13,11],[1,-10],[2,-9],[5,-17],[-6,-7],[3,-39],[-3,-11],[-2,12],[0,41],[-1,12],[-4,23],[-5,80],[-1,15],[-2,10],[2,30],[0,12],[-2,13],[-2,6],[-3,2],[-3,0],[-2,2],[-1,3],[-1,5],[-2,7],[-29,52],[-3,2],[-1,-3],[-2,5],[-3,12],[-5,16],[-2,10],[-1,4],[-2,2],[-6,-2],[-3,1],[-1,8],[-2,5],[-12,25],[0,-1],[-2,-2],[-2,-1],[-2,0],[-2,6],[-9,25],[-3,3],[-16,31],[-6,-5],[-11,15],[-6,-2],[-3,16],[-4,9],[-6,9],[-6,11],[-12,30],[-1,10],[0,8],[1,6],[-1,5],[-3,2],[-2,2],[-1,4],[1,5],[-1,5],[-12,21],[-4,12],[3,11],[-5,13],[-2,6],[-1,8],[-1,3],[-3,2],[-1,4],[1,9],[-6,1],[-5,3],[1,3],[0,2],[1,1],[2,2],[-2,7],[-3,4],[-3,0],[-4,-3],[2,6],[1,5],[1,6],[-2,4],[2,8],[-2,4],[-3,1],[-5,-1],[1,8],[-1,11],[-2,12],[-2,7],[-1,7],[-2,23],[-1,5],[-1,5],[0,31],[-1,4],[0,2],[-2,2],[-2,0],[-1,3],[-1,5],[0,5],[0,4],[-10,14],[-2,4],[0,6],[-2,7],[-2,7],[-4,3],[-2,3],[-1,3],[-1,2],[-1,-2],[-3,-6],[-1,-1],[-3,2],[-3,4],[-3,5],[-2,6],[-8,33],[-3,9],[-4,8],[-1,7],[-1,8],[1,11],[7,39],[1,12],[1,5],[1,2],[0,4],[-2,8],[-1,0],[-6,7],[-1,1],[-11,6],[-3,18],[0,4],[-6,14],[-1,2],[0,6],[0,7],[2,11],[1,7],[2,4],[1,5],[0,11],[2,12],[3,15],[-2,8],[-5,7],[-6,5],[-12,7],[-5,7],[-3,16],[-3,13],[-2,5],[1,7],[2,14],[-1,5],[-1,11],[-1,6],[-1,5],[-5,6],[-1,5],[-1,13],[-3,6],[-4,5],[-8,12],[1,2],[0,7],[-1,6],[-2,9],[-1,5],[-1,7],[-1,9],[0,7],[2,6],[3,4],[1,5],[-2,5],[1,6],[-1,6],[-1,5],[-1,7],[-24,17],[-6,7],[-15,30],[-6,7],[0,4],[3,-1],[6,-7],[2,24],[-1,30],[-2,13],[-13,37],[-5,7],[-14,4],[-6,-1],[-2,-6],[3,-14],[-4,6],[-4,13],[-2,12],[0,5],[-4,5],[-12,33],[-8,11],[-2,4],[0,4],[4,16],[-2,10],[-3,7],[-9,7],[-10,13],[-3,2],[-2,8],[-3,2],[-2,2],[-7,20],[-2,2],[-7,4],[-3,0],[-5,3],[-5,7],[-13,20],[-10,23],[2,8],[-5,7],[-7,4],[-9,3],[-1,3],[-3,7],[-4,8],[-3,6],[0,2],[-2,4],[-9,16],[-5,5],[-6,-1],[-7,-2],[-5,-4],[-3,-5],[-6,5],[-12,14],[-6,6],[0,-8],[2,-4],[2,-3],[2,-4],[1,-1],[3,-4],[2,-4],[-2,-2],[-5,3],[-27,34],[-4,6],[-4,4],[-5,3],[-5,5],[-4,18],[-5,9],[-15,23],[-8,15],[-16,54],[-6,9],[0,5],[3,-1],[2,1],[2,3],[1,5],[-4,1],[-4,4],[-6,13],[-2,6],[-2,18],[-1,6],[-9,21],[-1,10],[4,14],[-9,7],[-4,1],[0,-5],[2,-3],[1,-3],[2,-1],[-5,3],[-6,7],[-4,9],[2,9],[-2,3],[-2,3],[1,5],[1,5],[2,-4],[2,-4],[2,-2],[4,-2],[-2,7],[0,4],[0,3],[-1,6],[-1,0],[-2,-1],[-2,2],[-4,10],[-1,0],[0,-10],[-6,7],[-8,13],[-6,15],[0,13],[2,-3],[2,-4],[2,-1],[0,4],[-1,7],[-1,3],[-2,1],[-3,3],[-2,3],[-3,-1],[-3,-3],[-3,-1],[0,3],[-8,24],[-1,8],[-1,10],[0,14],[-1,6],[-4,5],[-1,5],[0,7],[-1,3],[-2,1],[-12,17],[-3,7],[-2,16],[-2,12],[-1,6],[1,3],[2,8],[1,4],[-2,8],[-10,32],[-4,5],[-9,28],[22,38],[3,15],[1,18],[-3,18],[-4,9],[0,3],[3,5],[0,8],[-5,20],[-3,-13],[-3,-2],[-3,7],[-2,12],[2,4],[-5,13],[-1,17],[1,18],[-1,17],[-3,16],[1,8],[5,4],[1,4],[2,8],[0,9],[-2,7],[-2,-12],[-2,-5],[-2,-3],[-4,0],[-1,3],[0,4],[-1,5],[-1,3],[-2,2],[-1,3],[-1,4],[-1,6],[0,10],[-1,5],[-1,0],[-3,4],[0,2],[-1,4],[-1,2],[-9,24],[-8,35],[-5,50],[0,11],[7,6],[8,-19],[5,0],[2,13],[0,11],[0,7],[1,2],[4,5],[1,3],[0,11],[3,24],[1,12],[-2,0],[-4,-20],[-2,8],[1,7],[2,6],[1,9],[0,24],[2,16],[9,21],[3,25],[2,6],[2,5],[3,6],[4,17],[4,9],[1,3],[0,7],[-1,7],[-3,4],[-3,-2],[-2,-5],[-2,-17],[-2,-6],[-7,-3],[0,17],[4,25],[-3,32],[2,33],[-2,16],[-2,8],[-8,21],[-7,33],[-5,18],[-2,9],[0,7],[8,14],[-1,4],[-13,30],[-5,9],[-3,-3],[1,-4],[5,-10],[2,-5],[1,-6],[0,-6],[1,-6],[2,-6],[-2,-4],[-4,16],[-8,24],[-7,17],[-15,51],[0,8],[9,-9],[9,-39],[4,-3],[3,-4],[3,1],[2,4],[2,7],[-3,7],[-5,18],[-3,3],[-2,2],[-2,4],[-2,6],[0,7],[-3,9],[-5,4],[-7,4],[-4,5],[-6,-3],[-4,10],[-6,25],[3,6],[3,8],[1,9],[1,8],[-1,17],[-1,9],[0,7],[-4,3],[-2,-9],[-4,13],[-4,13],[-5,20],[-5,11],[-3,13],[-3,9],[-1,8],[-2,11],[0,8],[-2,18],[-4,14],[-3,17],[-2,23],[-1,17],[-2,13],[0,10],[-5,10],[-2,7],[-1,9],[0,10],[-7,-7],[-2,4],[-3,0],[1,-10],[2,-5],[7,-5],[0,-5],[-9,2],[-6,11],[0,29],[-13,31],[-6,41],[-2,14],[-1,14],[-2,14],[-5,11],[-2,2],[-3,2],[-5,3],[-3,6],[-1,8],[-2,11],[-4,8],[-4,3],[-5,2],[-3,5],[-3,4],[-3,10],[-4,10],[-3,4],[-4,6],[-6,4],[-4,1],[-7,8],[-4,6],[-5,10],[-5,13],[-6,8],[-5,9],[-8,16],[-2,2],[-3,1],[-2,-2],[-2,-3],[-7,8],[-4,7],[-11,14],[-9,13],[2,7],[4,7],[7,2],[-2,5],[-5,-2],[-5,-6],[-2,8],[3,10],[1,9],[-2,3],[-2,-5],[-4,-1],[-1,-6],[1,-3],[1,-5],[1,-8],[0,-5],[-2,-4],[-6,5],[-8,-4],[-13,18],[-4,7],[-11,17],[-2,12],[-4,5],[-4,4],[-5,6],[-5,7],[-5,7],[-7,0],[-3,1],[-4,-7],[-1,-7],[2,-12],[-12,-1],[-3,9],[-8,7],[-7,-4],[-6,13],[-4,13],[-6,17],[-10,16],[-3,20],[3,12],[2,-1],[6,-7],[2,9],[-2,11],[-38,109],[-17,46],[-8,21],[-1,16],[1,4],[0,6],[0,6],[-1,4],[-2,2],[-3,-7],[-3,-1],[-5,6],[-4,10],[-5,21],[8,0],[6,-2],[6,-1],[7,5],[3,10],[1,30],[6,25],[-1,13],[-5,25],[-2,14],[2,35],[-1,13],[-1,13],[-3,12],[-3,11],[-5,12],[-3,6],[-3,4],[-3,5],[-2,11],[-3,4],[-5,9],[-6,11],[-5,14],[-3,13],[-1,6],[0,13],[-1,5],[-2,6],[-4,9],[-1,6],[5,6],[-4,14],[-13,24],[-2,8],[-4,25],[-2,4],[-4,5],[-1,3],[0,3],[0,8],[-1,3],[-2,7],[-4,17],[-3,7],[-3,5],[-8,6],[-4,4],[-11,34],[-7,17],[-6,1],[0,-7],[2,-7],[1,-6],[-4,-3],[-3,2],[-9,12],[-4,2],[-2,3],[-7,16],[-1,6],[-1,3],[1,13],[-1,3],[-3,2],[-2,3],[-3,15],[-1,14],[3,13],[6,13],[3,12],[1,16],[-1,17],[-2,13],[-7,14],[-9,9],[-9,5],[-10,1],[-10,7],[-6,17],[-18,80],[-6,21],[-12,31],[-21,97],[-22,76],[-13,32],[-16,28],[-7,16],[-5,25],[-8,28],[-6,37],[-5,-2],[-4,6],[-6,21],[-18,30],[-22,55],[-8,30],[-1,4],[-1,6],[1,5],[3,9],[0,5],[-1,7],[-7,19],[-23,53],[-13,17],[-3,6],[-7,15],[-8,23],[-8,16],[-11,38],[-3,15],[-1,12],[0,21],[-1,11],[-3,8],[-9,18],[-5,16],[-7,36],[-6,16],[-2,3],[-6,4],[-2,3],[-2,4],[-1,8],[-3,11],[-1,17],[-3,8],[-14,31],[-4,15],[-3,5],[-4,4],[-14,20],[0,-4],[-2,0],[-3,8],[4,6],[6,5],[5,6],[3,-3],[-1,4],[-2,9],[-2,1],[-8,3],[-2,2],[-2,0],[0,-4],[-1,0],[-2,4],[-1,4],[-2,3],[-2,1],[-5,0],[-3,0],[-3,7],[-13,17],[-3,-3],[-3,0],[-3,0],[1,-3],[1,-3],[1,-3],[-3,3],[-3,4],[-3,2],[-3,-3],[-3,-3],[-9,-5],[-2,-2],[-1,-3],[-1,-5],[-2,0],[0,4],[-2,0],[-4,-2],[-6,2],[-5,0],[-4,-8],[-1,3],[-1,1],[0,4],[2,0],[0,5],[-1,4],[1,3],[3,3],[2,1],[-2,3],[-3,0],[-3,0],[-3,-3],[0,-4],[2,0],[0,-4],[-3,-2],[-2,-4],[-3,-10],[0,2],[-1,1],[-1,0],[-1,1],[1,4],[2,3],[2,3],[2,2],[0,3],[0,2],[0,3],[-4,1],[-3,-2],[-2,-3],[0,-7],[-2,1],[0,1],[-1,-1],[-1,-1],[0,2],[0,4],[0,1],[-2,0],[0,-4],[-2,0],[-1,5],[-2,3],[-1,0],[-2,-4],[-2,4],[-1,2],[-1,5],[-1,2],[-2,8],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[-4,5],[-1,-3],[0,-6],[-1,-5],[-2,-2],[-4,-3],[-1,-3],[0,-3],[5,-9],[0,-4],[-1,0],[-1,-1],[-1,-2],[0,-1],[-2,4],[-2,-10],[0,-8],[-2,-5],[-6,-1],[1,2],[0,1],[1,1],[-2,4],[-1,9],[-1,7],[0,15],[-2,4],[-7,-6],[2,7],[-2,4],[4,12],[3,4],[2,2],[0,3],[2,2],[2,4],[2,2],[-2,4],[1,3],[1,2],[2,2],[2,1],[0,-3],[-1,0],[-1,0],[0,-1],[3,-3],[2,-1],[2,2],[0,6],[-1,0],[0,4],[-2,4],[0,4],[2,3],[3,1],[0,4],[0,6],[2,27],[1,-1],[2,-2],[1,-1],[0,2],[0,6],[-1,-2],[-1,-1],[-2,3],[6,10],[5,20],[5,21],[3,28],[5,15],[2,18],[2,10],[8,26],[-2,27],[-1,28],[-4,26],[5,37],[4,19],[4,15],[0,4],[-2,0],[5,15],[1,7],[-2,7],[0,4],[3,18],[0,8],[-5,2],[0,4],[4,13],[5,24],[2,26],[-3,14],[0,9],[3,11],[2,12],[6,53],[1,8],[3,13],[0,4],[0,8],[3,5],[7,7],[-2,10],[-1,13],[1,9],[3,-3],[1,1],[0,2],[0,1],[1,0],[-2,8],[-1,10],[2,9]],[[59708,67852],[30,-10],[33,-11],[44,-14],[38,-12],[41,-13],[33,-11],[16,-5],[32,-10],[29,-10],[8,1],[7,5],[30,47],[29,45],[33,50],[21,33],[18,56],[17,54],[13,41],[15,48],[7,13],[7,7],[25,10],[24,9],[40,16],[40,15],[37,14],[33,13],[6,10],[12,55],[9,42],[10,45],[8,36],[4,11],[6,10],[31,31],[33,35],[21,21],[1,2],[1,0],[0,1],[-14,30],[-31,65],[-30,66],[-31,66],[-30,66],[-1,2],[-1,2],[-1,2],[0,2],[-37,71],[-35,71],[-1,1],[-36,71],[-36,72],[11,6],[58,32],[69,37],[68,38],[17,9],[52,28],[10,5],[53,28],[62,33],[63,33],[62,33],[32,16],[9,8],[33,56],[6,8],[2,2]],[[62925,67701],[31,-8],[31,-7],[31,-7],[31,-7],[28,-7],[27,-7],[28,-7],[28,-6],[15,-4],[1,0],[3,-11],[13,-43],[16,-79],[1,-15],[1,-32],[3,-18],[3,-17],[5,-14],[6,-10],[6,-8],[5,-11],[3,-15],[14,0],[50,1],[49,1],[50,1],[49,1]],[[63453,67372],[6,-13],[4,-5],[7,-6],[1,-4],[3,-26],[0,-20],[-3,-13],[-6,4],[-1,-4],[-1,-2],[0,-2],[5,-1],[5,2],[3,6],[2,9],[3,-4],[0,-5],[-3,-11],[-1,-16],[-1,-7],[2,-14],[3,-11],[23,-49],[2,-7],[-4,-11],[-2,-11],[0,-12],[1,-12],[3,-10],[9,-23],[2,-6],[-1,-7],[0,-2],[4,-5],[10,-8],[3,-1],[9,1],[3,-1],[5,-6],[4,-2],[1,-1],[0,-4],[-1,-4],[-1,-3],[-2,-1],[-2,0],[-2,1],[-5,-4],[-1,-4],[0,-8],[3,-8],[5,-11],[7,-9],[5,-5],[0,-2],[6,-18],[12,-21],[1,-6],[-3,-12],[0,-7],[0,-7],[1,-3],[0,-5],[-3,-9],[-3,-10],[-4,-5],[2,7],[0,5],[0,14],[0,9],[2,4],[1,5],[-1,9],[-5,-8],[-4,-22],[-5,-7],[5,26],[1,7],[-1,11],[-3,-1],[-2,-8],[-5,-42],[0,-9],[-1,-2],[-1,-3],[0,-4],[4,1],[1,3],[2,10],[2,3],[0,-26],[1,-6],[3,0],[2,6],[2,6],[2,-7],[0,-8],[0,-9],[3,-3],[3,3],[2,6],[1,6],[0,-11],[0,-3],[-2,-3],[2,-5],[-1,-4],[-1,-2],[-4,0],[3,-13],[1,-4],[-6,7],[-3,0],[-2,-7],[6,-4],[5,0],[3,6],[3,10],[2,0],[2,-8],[-4,-7],[-1,-11],[2,-10],[5,0],[2,4],[-2,4],[-2,4],[0,4],[2,6],[3,3],[6,3],[6,1],[3,-4],[10,-17],[11,-10],[2,-7],[-5,-7],[4,-4],[3,1],[2,4],[-2,7],[5,-4],[5,-3],[11,-1],[2,1],[5,6],[2,1],[3,-1],[5,-3],[3,-1],[6,-3],[4,-7],[7,-18],[2,-3],[2,-2],[2,-2],[1,-5],[1,-5],[1,-10],[0,-5],[-3,0],[-2,3],[-1,5],[1,8],[-2,0],[-6,-13],[-16,3],[-5,-10],[-2,0],[-2,10],[-5,0],[-10,-10],[2,-3],[6,-3],[3,-3],[3,-3],[1,-3],[2,-3],[4,-3],[2,-4],[1,-3],[2,1],[4,9],[0,2],[2,2],[0,4],[1,1],[2,-2],[2,-3],[3,-2],[-2,-9],[-3,-4],[-3,-3],[-2,-5],[-1,-6],[0,-16],[0,-6],[2,1],[4,3],[3,5],[3,5],[3,2],[4,-2],[5,-6],[-2,-12],[1,-11],[2,-12],[1,-12],[0,-25],[1,-11],[5,2],[-1,-11],[2,-4],[3,1],[3,5],[-1,9],[2,6],[5,1],[4,-7],[2,4],[1,-7],[-1,-6],[-1,-6],[-1,-8],[-1,-4],[-3,-2],[-3,0],[-3,1],[3,-7],[6,-3],[3,-7],[2,3],[2,5],[3,12],[1,-2],[0,-1],[1,0],[-3,-11],[3,-2],[7,4],[4,-1],[8,-6],[4,-1],[-7,16],[-3,9],[4,8],[4,0],[3,-3],[2,-4],[3,-2],[2,2],[5,10],[-1,-9],[-2,-14],[0,-9],[1,-13],[2,-8],[1,-3],[6,-5],[5,-11],[16,-48],[8,-19],[2,-4],[8,-7],[3,-3],[4,-9],[3,-4],[17,-15],[11,-15],[6,-1],[6,0],[7,-1],[9,-10],[8,-15],[14,-36],[4,-16],[21,-28],[4,-10],[1,-15],[-12,21],[-7,8],[-15,4],[-4,3],[-3,6],[-2,22],[-2,-4],[-3,-10],[-1,-9],[0,-8],[0,-7],[1,-6],[1,-6],[3,-6],[1,-3],[-1,-36],[0,-10],[8,-45],[3,-9],[4,-9],[6,-6],[23,-16],[8,-14],[5,-20],[2,-27],[0,-64],[-1,-14],[-3,-12],[-5,-7],[0,9],[-2,3],[-3,-2],[-3,-6],[2,-15],[-1,-23],[-2,-23],[-2,-16],[-5,6],[-1,8],[0,10],[0,8],[-2,7],[-3,5],[-2,4],[-3,4],[-1,3],[-1,0],[-1,1],[-1,17],[0,4],[-2,4],[-2,6],[-3,6],[-4,4],[-3,-2],[-7,-27],[-2,-3],[-3,-4],[1,-8],[3,-8],[2,-3],[0,-4],[3,-9],[0,-5],[-1,-2],[-2,-1],[-2,-2],[-1,-5],[1,-9],[1,-8],[0,-9],[-2,-9],[5,-3],[4,5],[2,9],[-1,10],[3,-2],[2,-3],[3,-8],[1,-1],[1,1],[1,-1],[0,-4],[1,-4],[0,-2],[1,-1],[1,0],[7,-3],[3,-8],[2,-10],[3,-11],[0,-4],[-6,-11],[3,-28],[7,-31],[5,-19],[17,-39],[7,-23],[3,-28],[-2,0],[-5,28],[-2,5],[-3,1],[-4,4],[-4,5],[-3,10],[-5,6],[-4,1],[0,-11],[2,-9],[7,-9],[2,-7],[1,6],[1,3],[2,0],[10,-43],[32,-78],[7,-13],[-1,8],[-1,9],[-1,8],[2,3],[3,3],[1,-2],[2,-13],[1,-3],[1,-1],[1,-2],[2,-8],[5,-5],[10,-5],[2,-6],[6,-27],[-2,-4],[3,-9],[4,-15],[3,-18],[1,-13],[0,-7],[-2,-13],[0,-8],[1,-7],[1,-6],[1,-4],[2,-10],[4,-14],[0,-10],[-1,-24],[2,-24],[2,-13],[3,-8],[2,12],[8,-12],[7,-18],[3,-10],[5,-9],[6,-39],[7,-9],[5,-10],[2,-23],[1,-36],[1,-7],[3,-10],[3,-10],[3,-6],[4,1],[6,11]],[[61718,60363],[0,-8],[-1,-11],[-2,-13],[1,-10],[2,-17],[-2,-12],[0,-1],[-7,1],[-7,19],[-7,4],[-6,1],[-3,6],[8,6],[5,8],[-2,12],[-7,8],[-7,-2],[-8,-2],[-6,-3],[-5,-6],[-5,-5],[-5,4],[-7,12],[-4,9],[-6,3],[-8,11],[-6,10],[-4,13],[-2,18],[-4,7],[-5,0],[-4,1],[1,4],[0,13],[-4,11],[-3,11],[1,11],[4,-2],[1,-5],[4,-5],[10,-10],[6,-14],[3,-9],[1,-14],[0,-7],[5,-11],[5,-9],[2,-2],[10,2],[3,-11],[6,-1],[5,4],[5,1],[3,-7],[0,-7],[4,0],[8,7],[-8,4],[-4,13],[3,10],[3,17],[1,6],[4,1],[2,-1],[2,-2],[8,-10],[0,-10],[4,-12],[-1,-6],[7,-2],[2,-12],[11,-9]],[[61644,60414],[-5,7],[-4,10],[-7,19],[-6,16],[-2,7],[3,6],[7,1],[5,3],[4,6],[2,10],[3,0],[1,0],[1,12],[-2,14],[-4,3],[-3,4],[-4,0],[-6,3],[-4,1],[0,2],[2,5],[2,2],[1,-5],[9,-2],[7,-5],[5,-12],[0,-2],[2,-16],[0,-11],[-2,-13],[1,-11],[9,-4],[3,-13],[-11,-1],[-4,-8],[2,-10],[7,-5],[4,-5],[5,-5],[2,-14],[0,-7],[-9,10],[-10,6],[-4,2]],[[63768,66668],[5,-5],[15,-8],[14,-7],[-5,-4],[-5,2],[-4,4],[-4,2],[-5,-2],[-4,-3],[-4,-5],[-3,-6],[-3,4],[-1,0],[-3,3],[-1,1],[0,4],[4,3],[0,3],[-1,4],[-1,2],[-1,2],[-3,2],[-3,0],[-3,-3],[-3,-1],[-3,-3],[-4,-7],[-3,-9],[-2,-10],[-1,16],[6,15],[8,11],[8,3],[3,-1],[3,-2],[4,-5]],[[60285,65524],[3,-5],[1,-3],[-1,0],[-1,1],[-2,0],[0,-2],[1,-4],[-2,1],[-6,7],[-1,6],[0,4],[-2,1],[-4,-2],[-2,5],[-1,8],[-3,0],[-3,-4],[0,4],[2,11],[2,6],[4,0],[4,-1],[3,-4],[3,-12],[1,1],[1,4],[1,-3],[2,-19]],[[60261,65523],[5,0],[0,-2],[-5,-6],[-2,-3],[-3,-7],[-2,-10],[-5,-6],[-6,7],[-5,12],[-5,7],[-11,24],[-1,1],[-1,3],[0,3],[1,-1],[0,2],[0,3],[-3,6],[-3,9],[0,4],[3,-1],[3,-5],[5,-12],[2,-4],[5,-5],[10,-8],[5,-3],[3,0],[3,-3],[1,-4],[-6,-1],[-1,-8],[3,-7],[3,2],[3,7],[4,6]],[[60235,65591],[-2,1],[-4,7],[1,8],[3,6],[4,-1],[3,-7],[0,-7],[-3,-5],[-2,-2]],[[60219,65570],[-3,4],[-1,0],[-1,1],[-2,5],[0,5],[-2,2],[-4,1],[-1,3],[1,-1],[0,2],[-3,7],[-4,5],[-5,0],[-2,-3],[-1,-2],[-2,-2],[0,6],[2,8],[5,2],[5,-3],[14,-18],[1,-4],[2,-7],[4,-5],[4,-3],[6,-8],[10,-16],[3,-5],[-1,-2],[-1,-2],[1,-2],[-2,1],[-4,7],[-4,4],[-3,1],[-1,4],[-1,7],[-3,2],[-2,-1],[-2,1],[-3,6]],[[60250,65600],[-1,17],[0,4],[0,7],[2,4],[2,2],[3,-2],[1,-6],[0,-5],[0,-5],[-2,0],[-1,3],[-1,-1],[1,-5],[0,-2],[-1,1],[2,-8],[2,-16],[-1,-5],[-3,9],[-2,2],[-1,6]],[[60189,65614],[0,-4],[-2,-6],[-2,-3],[-2,1],[-4,6],[-22,21],[-6,3],[-2,-8],[-3,3],[-5,10],[-3,8],[-2,12],[2,10],[7,14],[3,7],[2,3],[1,-4],[-2,-6],[-4,-14],[0,-5],[2,-5],[2,-3],[1,0],[2,-1],[1,-4],[3,-3],[2,-1],[7,-14],[4,-6],[3,0],[3,1],[0,-2],[1,-4],[1,-5],[2,-2],[3,1],[-1,1],[0,2],[2,3],[2,-1],[4,-5]],[[60151,65708],[-1,5],[-1,12],[1,25],[5,20],[7,13],[2,2],[-4,-7],[-3,-10],[-3,-10],[0,-11],[2,-11],[5,-10],[3,-1],[1,-1],[0,-4],[-2,-8],[-1,-7],[0,-4],[1,-3],[2,-3],[3,1],[1,-1],[-1,-5],[-3,-2],[-4,1],[-5,8],[-3,4],[-2,7]],[[57016,39932],[-11,-51],[0,-17],[2,-14],[8,-41],[11,-40],[8,-16],[9,-12],[9,-14],[5,-21],[9,-46],[9,-30],[3,-12],[2,-25],[2,-8],[3,-12],[18,-39],[10,-13],[4,-8],[13,-38],[8,-15],[11,-11],[7,-12],[3,-21],[1,-44],[10,-44],[35,-64],[8,-46],[0,-1],[-1,-12],[-5,-22],[-1,-12],[1,-15],[3,-11],[6,-23],[9,-23],[6,-26],[27,-152],[7,-22],[11,-13],[12,-7],[15,0],[3,-3],[3,-4],[2,-5],[3,-8],[0,-4],[-2,-13],[-2,-7],[-2,-2],[0,-1],[4,-5],[2,-2],[8,-3],[7,-7],[7,-24],[6,-10],[5,-4],[11,-5],[5,-4],[11,-15],[5,-10],[2,-11],[2,-13],[4,-8],[5,-5],[13,-7],[4,-5],[1,-2],[2,-4],[4,-11],[4,-9],[5,-5],[5,-2],[7,0],[10,-4],[32,-32],[10,-4],[9,0],[9,-2],[9,-10],[3,-6],[4,-13],[3,-5],[4,-3],[3,0],[2,0],[4,0],[6,-2],[5,-3],[5,-7],[4,-10],[14,-73],[5,-70],[-4,-85],[10,11],[10,2],[32,0],[22,-6],[16,6],[9,-9],[11,0],[5,-4],[4,-8],[2,-11],[0,-23],[-4,-21],[-2,-21],[7,-47],[1,-24],[-5,-48],[-1,-6],[-2,-5],[-2,-6],[0,-8],[0,-6],[-1,-14],[0,-6],[2,-33],[0,-12],[-3,-32],[0,-10],[2,-11],[9,-26],[5,-9],[19,-29],[8,-20],[7,-23],[10,-24],[3,-8],[0,-5],[0,-9],[1,-4],[2,-6],[4,-10],[8,-33],[1,-7],[-1,-4],[-2,-7],[-1,-6],[1,-1],[2,-1],[2,-4],[-2,-7],[1,-6],[2,-1],[1,1],[2,-2],[1,-5],[3,-12],[2,-6],[3,-7],[4,-5],[4,-3],[16,-2],[21,-8],[33,-1],[11,-4],[11,-8],[22,-23],[6,-3],[5,2],[4,3],[10,5],[3,3],[3,1],[9,-4],[8,-2],[4,-3],[11,-17],[13,-8],[40,-37],[9,-5],[17,-2],[8,-4],[5,-6],[11,-7],[4,-8],[1,-11],[-3,-14],[-5,-14],[-3,-13],[-1,-25],[2,-25],[5,-22],[9,-18],[10,-11],[10,-4],[26,2],[2,-2],[3,-7],[1,-5],[2,-12],[2,-5],[21,-37]],[[58443,41210],[0,-48],[1,-56],[0,-71],[1,-41],[31,0],[20,0],[45,1],[30,0],[12,-5],[11,-16],[5,-10],[4,-6],[5,-2],[6,6],[3,5],[5,12],[4,5],[3,-1],[2,-4],[2,0],[2,8],[7,9],[13,-2],[28,-14],[5,-4],[5,-6],[4,-11],[5,-20],[3,-8],[6,-6],[2,-4],[2,-5],[0,-6],[2,-4],[1,0],[2,1],[2,0],[1,-2],[0,-2],[-1,-3],[1,-2],[5,-1],[6,0],[6,-2],[4,-6],[11,-11],[46,-6],[7,-7],[8,-13],[16,-38],[6,-9],[11,-13],[4,-5],[2,-11],[2,-22],[2,-9],[4,-5],[29,-9],[55,3],[22,-7],[29,-24],[44,-36],[33,-28],[3,-6],[1,-8],[1,-14],[2,-23],[8,-12],[1,-1],[0,-1],[3,4],[4,3],[4,1],[9,-1],[17,-8],[8,-1],[5,3],[8,11],[5,4],[3,1],[-2,-17],[-7,-63],[-5,-19],[-5,-12],[-19,-40],[0,-3],[16,-58],[11,-42],[7,-34],[4,-37],[0,-22],[1,-5],[1,-13],[3,-12],[2,-4],[6,-7],[2,-6],[0,-9],[-1,-9],[-2,-4],[-4,-13],[-11,-43],[-1,-5],[-3,-3],[-2,-4],[0,-7],[3,-20],[2,-5],[4,-7],[11,-10],[4,-10],[1,-13],[-1,-11],[-5,-22],[-1,-23],[1,-26],[-1,-21],[-7,-10],[-5,-4],[-3,-10],[-2,-13],[0,-11],[0,-12],[3,-16],[1,-11],[-1,-8],[-2,-3],[-3,-3],[-1,-5],[0,-6],[4,-8],[-1,-5],[-1,-12],[1,-13],[9,-61],[1,-20],[0,-4],[-2,-13],[-3,-8],[-1,-4],[-1,-5],[2,-9],[4,-13],[13,-21],[5,-11],[2,-12],[-1,-6],[-8,-13],[-6,-17],[-1,1],[0,-6],[4,-9],[1,-6],[-2,-12],[-5,-7],[-6,-6],[-5,-7],[-5,-5],[-6,-3],[-4,-4],[-4,-8],[-1,-10],[1,-13],[4,-21],[8,-34],[2,-16],[0,-19],[-2,-16],[-3,-13],[-5,-8],[-7,-1],[-12,2],[-8,-3],[-27,-25],[0,-6],[2,-32],[2,-8],[3,-5],[-3,-4],[-3,-4],[-3,-5],[-1,-8],[3,-13],[0,-6],[0,-8],[0,-8],[2,-5],[4,-2],[3,0],[18,5],[4,-1],[3,-3],[2,-2],[1,-4],[1,-7],[1,-7],[2,-5],[3,-4],[2,-6],[2,-20],[-8,-74],[-1,-14],[-1,-11],[-2,-10],[-4,-13],[-10,-24],[-1,-6],[1,-17],[-2,-24],[0,-12],[3,-7],[6,-1],[5,2],[4,-3],[1,-13],[1,-11],[-2,-43],[0,-5],[0,-6],[1,-8],[-1,-5],[-2,-6],[-1,-6],[1,-13],[3,-6],[5,-2],[7,-1],[6,3],[8,18],[5,3],[5,-6],[1,-12],[-3,-23],[3,-10],[4,-9],[6,-8],[6,-5],[3,-7],[-1,-11],[-2,-14],[0,-25],[-5,-34],[-1,-44],[1,-14],[1,-5],[-15,1],[-4,-6],[-1,-18],[-2,-9],[-5,-3],[-4,-1],[-3,-6],[-2,-28],[-1,-10],[-4,-14],[-1,-5],[1,-5],[2,-7],[0,-5],[-2,-18],[-2,-9],[-2,-7],[-12,-31],[-18,-45],[-9,-34],[-9,-36],[-7,-15],[-12,-4],[-13,3],[-12,-3],[-9,-23],[-3,-25],[0,-24],[4,-64],[3,-61],[-1,-23],[-7,-26],[-14,-36],[-21,-55],[1,-5],[4,-6],[3,-6],[1,-1],[1,0],[1,-1],[0,-4],[-1,-4],[-1,-3],[0,-2],[20,-69],[0,-3],[1,-3],[-11,14],[-10,-22],[-14,-30],[-14,-32],[-15,-32],[-14,-32],[-15,-33],[-14,-32],[-15,-32],[-14,-32],[-15,-32],[-15,-33],[-14,-32],[-15,-32],[-14,-32],[-15,-33],[-14,-32],[-15,-32],[-15,-32],[-14,-32],[-18,-25],[-22,-31]],[[57938,76374],[-1,-8],[-1,-72],[1,-8],[3,-10],[3,-7],[2,-7],[0,-8],[-3,-16],[-4,-18],[-5,-16],[-4,-7],[-3,-2],[-13,-19],[-3,-6],[-1,-8],[0,-10],[-4,8],[-13,11],[-2,4],[-3,5],[-7,5],[-13,4],[-7,-2],[-10,-9],[-5,-2],[-18,2],[-6,-2],[-11,-9],[-7,-17],[-2,-5],[-15,-63],[-4,-9],[-5,-6],[-19,-8],[-3,-3],[-2,-1],[-2,0],[0,-4],[9,-12],[2,-4],[0,-7],[-6,-26],[-3,-29],[-2,-5],[-3,-4],[-2,-4],[-1,-7],[0,-13],[5,-27],[1,-12],[-2,-40],[2,-9],[-6,-7],[0,-10],[2,-12],[2,-16],[0,-28],[-1,-11],[-1,-5],[-14,-1],[-15,4],[-12,1],[-3,-1],[-2,-4],[-2,-8],[-1,-6],[1,-6],[2,-4],[4,-4],[-8,-2],[-12,-8],[-6,-2],[-5,-7],[1,-15],[3,-17],[2,-10],[-4,4],[-26,1],[-8,-8],[-4,-12],[-2,-15],[-3,-14],[-5,4],[-3,-6],[0,-9],[4,-5],[-1,-5],[0,-3],[1,-9],[1,5],[0,1],[-1,2],[2,12],[8,-14],[3,-2],[4,5],[2,7],[3,3],[5,-7],[2,6],[2,-1],[3,-3],[2,-2],[4,2],[3,3],[2,1],[4,-1],[0,-4],[-1,0],[-1,-1],[2,-10],[3,-7],[4,-2],[7,7],[0,-5],[2,-3],[2,-1],[3,1],[0,-4],[-1,-1],[-5,-3],[2,-6],[2,-1],[2,-1],[-2,-6],[-1,-8],[2,-9],[3,-6],[4,-2],[3,0],[4,2],[4,0],[0,-3],[-1,-4],[0,-3],[1,-3],[2,-3],[-7,-9],[-3,-11],[1,-11],[7,-9],[-1,-2],[-1,-3],[10,-10],[2,-4],[1,-4],[3,-6],[4,-5],[3,-3],[0,-2],[-1,-5],[-1,-1],[9,-8],[2,-4],[5,-16],[14,-15],[2,-6],[3,-6],[3,-2],[-1,-6],[2,-6],[2,-4],[3,-4],[0,-3],[0,-1],[-1,0],[-1,0],[3,-6],[2,-7],[1,-9],[-2,-7],[1,-6]],[[78586,57367],[-2,12],[1,30],[-1,14],[-3,17],[-19,52],[-12,20],[-2,7],[0,38],[-2,26],[-5,17],[-33,66],[0,6],[6,-1],[-3,9],[-11,17],[1,6],[0,4],[-5,-5],[-4,-2],[-3,-4],[-2,-11],[4,-55],[4,-14],[0,-4],[-1,-7],[-2,0],[-3,3],[-3,2],[-1,2],[1,13],[-1,5],[-5,14],[-7,11],[-9,9],[-30,22],[-4,6],[-4,1],[-3,-10],[-2,0],[-6,6],[-2,2],[-1,5],[0,5],[1,4],[0,2],[-2,12],[-5,18],[0,11],[7,-4],[7,5],[6,9],[4,10],[3,14],[-3,12],[-4,5],[-3,-6],[2,-2],[2,-3],[1,-4],[0,-4],[-4,-10],[-5,-6],[-5,1],[-3,13],[1,27],[2,12],[3,12],[-2,0],[-1,-4],[-5,-16],[-1,0],[-2,7],[0,7],[0,8],[2,6],[-4,-5],[-4,-3],[-4,1],[-2,7],[-4,-3],[-2,-1],[3,-3],[1,-5],[0,-6],[-2,-6],[2,0],[6,8],[2,-6],[1,-6],[0,-6],[-1,-6],[6,-9],[3,-19],[-3,-11],[-10,10],[-17,37],[-8,9],[-4,5],[1,6],[-5,12],[-6,14],[-4,15],[1,12],[1,-5],[1,-2],[2,0],[2,-1],[-4,5],[2,5],[4,6],[2,8],[-2,0],[-2,-5],[-2,-3],[-2,1],[-2,3],[3,5],[1,2],[2,1],[-14,-1],[-1,5],[5,12],[-11,-1],[-4,-2],[0,-5],[4,-5],[2,-8],[4,-7],[5,0],[-1,-7],[0,-8],[-1,-17],[-9,30],[-4,9],[-5,3],[-5,1],[-3,-3],[0,26],[-1,6],[-1,6],[-1,3],[-1,-2],[0,-4],[-3,-4],[-1,-3],[4,-26],[0,-6],[-9,15],[-4,9],[-2,8],[5,-4],[-1,10],[-2,2],[-2,0],[-2,0],[-2,5],[-2,4],[0,5],[-2,7],[-4,13],[-6,11],[-6,9],[-7,7],[-4,3],[-18,1],[-5,-3],[-2,-8],[-3,-9],[-2,-8],[-5,-5],[-5,-1],[-12,2],[-2,-2],[0,-4],[0,-4],[-1,-2],[-1,-1],[-3,1],[-4,-1],[-9,5],[-12,-4],[-6,-5],[-3,-5],[-1,-11],[-3,-1],[-7,10],[-19,18],[-21,10],[-45,12],[-6,-2],[-9,-12],[-12,-4],[-3,-6],[-1,-10],[0,-15],[-14,13],[0,4],[4,6],[-1,10],[-5,6],[-5,-6],[-3,3],[-3,0],[-2,-2],[-4,-1],[2,2],[1,2],[1,4],[0,4],[-6,0],[1,4],[2,9],[1,3],[-2,1],[-5,3],[4,27],[4,11],[5,-5],[2,0],[2,6],[2,6],[2,6],[2,10],[-1,10],[-1,8],[-2,8],[-11,31],[-1,8],[1,5],[2,4],[3,3],[2,5],[0,4],[1,11],[1,5],[2,-3],[3,3],[3,6],[1,6],[0,14],[-3,10],[-3,8],[-1,11],[-2,3],[-2,2],[-3,2],[-1,7],[6,16],[4,17],[6,17],[3,10],[-1,12],[-3,21],[-1,6],[-4,12],[-1,4],[1,7],[1,4],[2,2],[2,14],[4,3],[5,3],[5,6],[1,8],[0,14],[0,13],[-4,11],[2,13],[5,18],[0,4],[-4,-5],[-2,-5],[-3,-4],[-4,-2],[-17,0],[-7,2],[-14,8],[-12,3],[-6,6],[-19,5],[-9,7],[-11,16],[-5,4],[0,4],[0,6],[2,7],[0,8],[0,9],[-3,-12],[-1,-9],[0,-25],[-2,-9],[-6,-5],[-35,-13],[-13,2],[-7,-2],[-5,-4],[-13,14],[-5,6],[-2,-11],[-4,-7],[-4,-5],[-24,-20],[-11,-4],[-6,-6],[-6,-5],[-4,-3],[-4,-6],[-2,-12],[-3,-9],[-6,3],[4,-4],[0,-10],[-2,-9],[-4,-7],[-4,-3],[-4,-4],[-1,-10],[0,-1],[2,-19],[9,-24],[16,-29],[1,-2],[2,-4],[2,-4],[0,-6],[1,-5],[2,-23],[5,-23],[-1,-10],[-2,-9],[-9,-26],[-2,-9],[-3,-19],[-4,-42],[-1,-9],[-10,-34],[-4,-23],[-3,-24],[-1,-25],[0,-19],[0,-6],[5,-39],[1,-12],[-1,-37],[1,-14],[8,-42],[0,-8],[-2,-9],[-6,-44],[0,-6],[3,-6],[2,-6],[3,-5],[1,-6],[1,-12],[0,-5],[1,-6],[-2,-7],[-1,-3],[-5,-7],[-1,-6],[-2,-21],[-1,-6],[-6,-21],[-28,-61],[-7,-26],[-2,-28],[4,-20],[-1,-4],[-4,-1],[-2,-2],[-1,-5],[0,-6],[2,-23],[0,-3],[-1,-5],[0,-5],[1,-7],[-10,-2],[-8,-17],[-23,-78],[-1,-6],[-1,-10],[-5,-16],[-2,-11],[0,-14],[-1,-12],[-2,-12],[-7,-33],[-1,-6],[-1,-6],[-5,-12],[-2,-6],[0,-34],[0,-13],[5,-24],[0,-11],[-5,-10],[-2,12],[-4,0],[-5,-7],[-4,-9],[-2,-6],[-2,-8],[-1,-9],[-1,-11],[1,-13],[4,-21],[1,-11],[0,-12],[-3,-13],[-1,-7],[-2,-10],[1,-14],[4,-25],[1,-12],[-1,-9],[-2,0],[-2,4],[-1,3],[-5,0],[-4,-1],[-2,-1],[-3,-3],[-1,-5],[0,-25],[-1,-10],[-17,-54],[-1,-5],[1,-6],[1,-4],[-1,-3],[-3,0],[-5,-3],[-5,-7],[-4,-10],[-3,-9],[-2,-12],[-2,-29],[-3,-10],[-3,-2],[-3,-1],[-3,-3],[-1,-8],[1,-5],[1,-2],[3,-1],[3,0],[-2,-8],[-3,-7],[-2,-6],[-1,-10],[2,-7],[8,-12],[3,-7],[1,-8],[0,-11],[-2,-9],[-2,-5],[-3,0],[-3,0],[-6,-8],[-1,8],[-2,5],[-3,4],[-3,4],[-4,-4],[-4,-1],[-3,-1],[-3,-7],[0,-6],[2,-26],[3,-9],[11,-20],[5,-13],[3,-1],[5,3],[-4,-12],[-11,-2],[-2,-9],[-2,-14],[-7,-26],[-3,-15],[1,-16],[3,-11],[3,-9],[1,-10],[-1,-7],[-4,-6],[-1,-8],[2,-26],[0,-47],[1,-1],[0,-2],[1,-3],[0,-4],[-1,-3],[-4,-6],[-1,-3],[-1,-6],[0,-6],[-1,-11],[0,-2],[1,-12],[4,-24],[2,-23],[1,-13],[3,-13],[8,-27],[2,-10],[0,-13],[1,-10],[12,-45],[16,-45],[-2,-1],[-1,0],[-2,1],[-2,0],[-2,0],[0,-3],[0,-2],[-1,-3],[-6,-8],[-3,-4],[-5,-12],[-2,-10],[1,-25],[6,-27],[13,-6],[14,-2],[7,-15],[9,2],[10,0],[8,3],[8,11],[2,9],[1,11],[2,9],[4,7],[3,1],[13,-5],[5,2],[3,4],[3,4],[2,2],[9,5],[5,7],[0,1],[10,-2],[2,-1],[2,5],[3,0],[6,-4],[2,-3],[2,3],[3,3],[1,3],[4,-7],[10,-10],[1,-6],[-1,-6],[2,-10],[5,-18],[2,4],[0,-45],[2,-11],[2,-8],[3,-7],[2,-7],[1,-9],[0,-29],[0,-6],[3,-9],[0,-7],[0,-1],[-1,-3],[-2,-4],[0,-4],[0,-15],[3,-45],[-1,-9],[3,-19],[6,-115],[2,-19],[5,-15],[15,-21],[3,-8],[1,-10],[6,-26],[5,-14],[1,-12],[2,-5],[2,-3],[6,-6],[1,-1],[2,-7],[4,-2],[4,2],[4,5],[-3,17],[0,24],[-3,20],[-10,8],[6,5],[8,-13],[8,-18],[3,-13],[14,-78],[9,-117],[11,-107],[7,-67],[20,-206],[17,-85],[15,-50],[4,-12],[2,-12],[-1,-8],[-7,1],[-3,8],[-10,19],[-6,7],[-2,2],[-8,0],[-5,6],[4,15],[-3,19],[-2,26],[-4,5],[1,48],[-1,41],[-5,22],[-8,8],[-10,-3],[-6,-20],[-2,-10],[-2,-3],[-3,3],[-1,5],[-1,3],[0,5],[0,7],[2,12],[9,12],[4,11],[1,23],[-2,31],[-4,30],[-5,18],[-5,4],[-5,-2],[-6,-4],[-5,-2],[-3,-5],[-13,-24],[-3,-8],[0,-11],[3,-50],[5,-28],[2,-22],[1,-10],[4,-4],[0,-2],[6,-11],[2,-4],[0,-3],[9,-48],[5,-18],[7,-12],[6,-2],[7,0],[6,-4],[2,-12],[0,-1],[0,-13],[1,-8],[1,-5],[2,-5],[4,0],[3,-3],[3,-5],[-5,-4],[-2,-3],[-2,-2],[-1,-4],[1,-7],[2,-4],[2,-3],[4,-16],[3,-7],[4,-3],[4,1],[4,-6],[2,-4],[2,-2],[7,-1],[4,2],[6,4],[7,13],[3,8],[-1,16],[0,10],[7,-19],[43,-124],[5,-9],[7,-6],[5,-3],[6,6],[5,-9],[8,-16],[14,-23],[14,-15],[8,0],[12,1],[34,2],[11,11],[4,13],[9,-3],[4,-7],[5,-3],[2,-2],[0,1],[9,-1],[-2,12],[-4,13],[-18,15],[8,6],[8,-3],[7,-12],[11,-14],[9,-6],[5,-3],[4,-1],[6,-3],[4,-3],[2,-3],[8,-7],[10,-12],[2,-5],[28,-103],[16,-50],[13,-44],[10,-21],[28,-37],[31,-63],[15,-22],[0,-1]],[[77812,54285],[-2,12],[-3,10],[-5,3],[3,19],[1,10],[-3,4],[-4,-2],[-2,-5],[-2,-13],[-10,17],[-8,19],[-1,5],[0,7],[-1,6],[-2,3],[-4,-4],[-2,-1],[-1,2],[1,5],[2,7],[1,3],[-1,6],[-2,10],[-1,6],[-1,2],[-3,0],[-2,1],[-2,5],[-1,11],[-3,8],[-7,11],[-7,23],[-4,8],[-5,-4],[-3,0],[-2,7],[-2,16],[-2,5],[-1,3],[-24,19],[-7,14],[0,23],[1,11],[2,1],[4,0],[1,3],[-1,6],[-1,5],[-3,3],[-5,5],[1,11],[1,12],[-2,8],[4,20],[3,9],[3,4],[1,4],[8,22],[-2,6],[-5,-3],[-5,-6],[-3,-3],[-5,4],[-1,7],[0,21],[-10,-11],[-4,-9],[-2,0],[-1,9],[-2,0],[-6,3],[-7,24],[-5,28],[2,13],[6,7],[5,17],[3,21],[2,20],[-2,0],[-8,-32],[-5,-12],[-7,6],[-1,9],[1,25],[-1,8],[-4,1],[-2,-8],[-2,-12],[-1,-9],[1,-21],[-1,-9],[-5,-3],[-3,2],[-4,4],[-4,5],[-1,4],[-2,1],[-8,3],[-4,5],[-3,9],[-8,28],[2,10],[1,14],[-1,27],[-1,4],[-3,9],[0,7],[-1,1],[-6,0],[-3,2],[4,12],[0,13],[-2,15],[-2,27],[-2,0],[-3,-2],[-2,-1],[-3,3],[-2,4],[-1,4],[3,1],[1,4],[-2,8],[-3,9],[-4,4],[-4,1],[-2,3],[-4,12],[-6,8],[-5,7],[-5,8],[-2,14],[-1,0],[-1,-21],[-3,-16],[-5,-8],[-10,4],[-7,14],[-1,39],[-4,16],[12,19],[2,7],[0,11],[2,18],[0,10],[-6,-12],[-2,-2],[-4,1],[-1,4],[-5,15],[-2,4],[-4,3],[-5,5],[-2,12],[1,6],[0,4],[0,3],[-1,5],[-2,6],[-4,5],[-2,4],[-2,6],[0,4],[-2,2],[-3,-2],[-2,-3],[-2,-11],[-1,-2],[-4,-3],[-4,-5],[-4,-3],[-4,2],[-2,5],[-1,13],[-2,5],[-3,4],[-2,-2],[-1,-5],[-1,-3],[-3,-7],[-2,0],[0,9],[-1,5],[-4,8],[-1,5],[-1,11],[1,29],[-1,8],[1,19],[0,10],[-1,10],[-5,23],[-4,-17],[-1,0],[-1,43],[-2,6],[-5,-3],[-8,-11],[-3,2],[-2,0],[0,-4],[-2,0],[-1,7],[1,31],[2,5],[4,7],[3,8],[-4,4],[-6,2],[-5,5],[-1,-14],[-4,-3],[-5,-1],[-4,-4],[-3,-7],[-4,-7],[-5,-4],[-3,8],[-1,0],[-1,-7],[-1,-4],[-2,0],[-2,6],[-2,0],[0,-7],[-6,1],[-5,-5],[-1,-6],[8,-7],[1,-10],[0,-12],[2,-9],[0,-16],[-5,-24],[-6,-16],[-3,10],[-2,0],[0,-6],[-1,-3],[-3,-8],[-4,9],[-5,20],[-8,6],[0,4],[-2,5],[-3,1],[-3,1],[-2,1],[-2,3],[-1,3],[-1,9],[0,25],[-2,9],[-3,9],[-5,55],[-12,76],[-1,13],[2,10],[2,5],[1,-6],[0,-11],[2,-8],[7,-15],[2,12],[-3,7],[-4,6],[-2,7],[-1,4],[1,3],[1,3],[0,2],[0,10],[0,3],[4,18],[0,6],[0,13],[-5,23],[0,8],[1,6],[2,3],[2,3],[2,5],[1,3],[1,4],[1,37],[1,13],[6,20],[3,24],[5,16],[4,14],[2,3],[1,-2],[4,-2],[4,0],[-1,6],[-1,7],[3,9],[6,15],[-8,-8],[-5,-3],[-3,5],[-1,15],[3,7],[7,0],[5,5],[-4,19],[-8,23],[-3,13],[-2,15],[0,12],[1,-4],[4,-2],[2,2],[2,4],[4,10],[-5,5],[0,9],[3,10],[1,8],[3,10],[2,11],[4,37],[2,11],[6,21],[5,52],[3,16],[9,-12],[9,16],[3,7],[-1,6],[-2,1],[-5,-2],[-2,1],[-2,2],[-1,8],[0,2],[-6,5],[2,9],[6,9],[2,-1],[1,3],[3,7],[0,2],[0,5],[-5,14],[4,0],[1,5],[-2,6],[-3,5],[1,4],[5,-6],[4,-4],[4,2],[1,10],[1,1],[2,5],[2,5],[-2,3],[-6,0],[-2,2],[-3,3],[-1,-5],[0,-1],[-1,-3],[-1,0],[0,5],[0,13],[0,2],[2,5],[2,1],[2,1],[3,1],[4,6],[3,7],[2,9],[2,11],[-2,-5],[-4,-12],[-3,-3],[-3,1],[-1,4],[-1,5],[-5,6],[2,11],[5,11],[3,6],[1,-4],[2,-2],[2,0],[2,2],[-1,4],[4,7],[1,6],[-1,2],[-2,1],[-2,3],[1,3],[3,6],[2,7],[2,3],[6,0],[3,3],[0,6],[-2,2],[-3,0],[-1,-4],[-3,8],[0,4],[1,8],[12,45],[4,9],[8,46],[6,26],[3,13],[1,14],[0,12],[1,12],[5,22],[0,12]],[[77429,56599],[5,36],[3,30],[4,23],[0,12],[-4,37],[-1,7],[-6,9],[-1,8],[3,25],[2,14],[13,34],[5,10],[3,2],[6,0],[2,2],[2,5],[1,6],[1,6],[2,6],[4,3],[3,-1],[2,-3],[3,0],[10,9],[1,1],[2,5],[1,4],[1,12],[0,9],[-2,12],[0,7],[0,6],[0,7],[2,6],[1,5],[3,6],[1,1],[1,-2],[4,-1],[3,-2],[3,-3],[3,0],[2,7],[2,18],[2,5],[4,10],[11,12],[2,3],[3,5],[2,6],[3,12],[2,6],[3,3],[5,4],[2,5],[9,53],[3,13],[9,23],[4,13],[4,24],[3,9],[10,24],[2,10],[1,10],[1,15],[3,9],[8,17],[3,10],[3,12],[1,10],[-1,24],[1,14],[2,10],[5,6],[6,2],[12,2],[3,5],[18,51],[2,14],[4,39],[0,6],[-5,3],[-5,7],[-5,9],[-4,9],[-2,13],[1,12],[4,24],[1,12],[-2,10],[-4,8],[-5,3],[-5,9],[1,16],[5,28],[0,7],[1,6],[1,5],[-1,6],[-3,2],[-3,0],[-15,-11],[-4,2],[-1,10],[1,6],[3,5],[2,5],[1,8],[-1,6],[-3,12],[-1,6],[0,6],[0,11],[-1,7],[-1,6],[-5,11],[-1,7],[-1,11],[-1,33],[-2,13],[-6,24],[-1,12],[0,6],[3,13],[2,6],[0,13],[0,13],[0,9],[-1,5],[-2,9],[-14,15],[-3,6],[-3,6],[-2,6],[-2,4],[-6,4],[-3,3],[-1,5],[0,12],[-2,5],[-3,4],[-6,3],[-2,2],[-3,10],[-1,11],[1,11],[-1,12],[-2,7],[-6,11],[-2,7],[-1,6],[-1,18],[-4,18],[0,5],[0,8],[1,6],[2,5],[1,6],[-1,12],[-4,11],[-5,10],[-5,6],[-6,10],[-1,12],[1,13],[3,14],[0,15],[0,13],[0,12],[3,10],[5,4],[11,3],[4,7],[1,10],[-1,13],[-4,22],[0,8],[1,5],[2,5],[1,6],[0,6],[-1,11],[2,30],[-1,11],[-10,92],[0,50],[1,13],[0,16],[-2,5],[-2,5],[-9,18],[-2,10],[-3,28],[0,10],[1,7],[0,5],[-1,4],[-1,5],[-1,2],[-4,2],[-2,1],[-1,4],[-1,9],[-2,3],[-8,14],[-3,7],[-3,13],[-3,11],[-9,22],[-1,11],[-1,14],[-3,9],[-5,7],[-6,4],[-6,5],[-33,52],[-6,14],[-7,28],[-3,0],[-3,-2],[-4,0],[-2,3],[-4,10],[-2,4],[-2,2],[-4,2],[-2,1],[-3,5],[-3,5],[-12,33],[-20,83],[-3,4],[-4,2],[-2,9],[-1,14],[-3,13],[-3,11],[-34,68],[-15,49],[-2,12],[1,9],[0,3],[-1,3],[-3,5],[-1,4],[0,12],[0,21],[-2,13],[-5,21],[-1,6],[0,3],[0,5],[1,5],[1,5],[1,6],[-1,13],[-9,19],[-2,14],[1,11],[6,21],[1,11],[-1,8],[-2,10],[0,7],[8,-1],[2,0],[5,4],[4,9],[10,29],[3,1],[7,-2],[5,-4],[9,-12],[4,-3],[2,1],[1,4],[0,9],[-1,3],[-1,3],[-2,2],[-1,1],[1,4],[0,2],[1,3],[3,3],[1,3],[1,6],[-1,10],[0,5],[2,2],[10,5],[4,3],[5,6],[6,-5],[6,-7],[4,-9],[1,-13],[7,17],[3,28],[-1,30],[-7,88],[1,34],[0,10],[-1,22],[0,13],[9,60],[1,11],[-2,25],[-1,14],[4,23],[1,10],[-2,12],[-8,22],[-1,8],[3,5],[3,-1],[4,-3],[2,-2],[4,0],[2,1],[2,2],[3,6],[4,11],[2,12],[2,10],[6,6],[5,0],[17,-4],[3,-3],[2,-5],[2,-2],[4,1],[3,4],[6,14],[2,6],[-1,13],[1,13],[2,12],[3,11],[8,18],[1,10],[2,27],[2,25],[0,11],[-5,15],[-6,8],[-5,11],[-1,20],[-6,-10],[-2,-10],[-3,-24],[-3,-14],[-17,-27],[-9,-26],[-4,-7],[-5,8],[-2,9],[-4,42],[-4,18],[0,6],[3,12],[0,7],[-2,10],[-17,47],[-2,6],[0,6],[1,7],[0,5],[0,5],[-2,6],[-4,11],[-9,14],[-4,11],[-2,17],[-1,6],[-9,13],[0,11],[2,11],[3,10],[4,2],[5,6],[3,8],[1,6],[-2,5],[-3,2],[-2,3],[-1,7],[0,9],[2,3],[4,-2],[3,-5],[-2,17],[-2,8],[-3,3],[-4,5],[-1,8],[0,10],[-2,8],[-3,8],[-4,19],[-3,9],[-5,11],[-5,6],[-6,3],[-14,1],[-5,3],[-3,8],[-4,13],[1,2],[1,5],[0,5],[-7,0],[-1,5],[2,7],[2,5],[-6,9],[-10,29],[-5,9],[-5,5],[-24,47],[-2,5],[0,8],[1,12],[0,8],[-2,8],[-3,4],[-4,3],[-4,4],[-4,8],[-2,8],[-2,17],[-7,20],[-1,9],[-2,6],[-3,3],[-7,7],[-4,5],[-7,14],[-39,74],[-2,7],[-2,8],[0,8],[-1,6],[0,6],[-2,7],[-7,11],[-2,7],[-1,8],[-3,7],[-3,6],[-3,8],[7,2],[-4,28],[2,9],[8,28],[7,10],[1,2],[1,3],[0,7],[-2,7],[-1,3],[-1,3],[-4,20],[-1,8],[0,2],[-4,4],[-1,1],[-2,-1],[0,1],[-1,5],[0,3],[2,6],[0,3],[-1,7],[-2,10],[-1,7],[0,6],[0,3],[-1,4],[-15,40],[-3,13],[1,5],[4,4],[2,9],[1,11],[-2,9],[-4,4],[-14,12],[-3,-2],[-1,-1],[-5,-29],[-1,-4],[-3,-4],[-5,6],[-6,10],[-6,11],[-4,13],[-1,15],[0,13],[-1,13],[-7,23],[-7,27],[-1,9],[-3,11],[-6,11],[-2,7],[6,-2],[2,0],[3,-3],[5,-19],[1,-5],[1,-4],[3,-4],[3,0],[7,2],[13,-1],[11,11],[19,26],[6,4],[14,-1],[14,7],[1,0],[1,1],[2,6],[2,24],[-2,24],[-3,24],[-2,22],[0,13],[-1,11],[-3,22],[0,5],[1,15],[-2,8],[-2,6],[-7,10],[-6,13],[-2,7],[3,6],[6,8],[4,9],[2,9],[2,23],[3,11],[17,27],[4,9],[2,8],[1,47],[-1,10],[-2,11],[-2,6],[-8,12],[-1,6],[1,6],[3,1],[3,-1],[2,2],[3,12],[-3,10],[-4,11],[-2,15],[0,5],[-2,12],[0,4],[9,26],[9,16],[3,7],[1,8],[0,4],[-1,3],[-1,7],[0,12],[0,11],[2,7],[6,2],[5,1],[17,18],[2,4],[4,9],[3,5],[3,2],[2,0],[3,1],[1,8],[0,10],[-2,22],[0,10],[3,39],[2,8],[6,3],[4,-8],[4,-10],[3,-2],[7,2],[6,-7],[11,-20],[10,-6],[2,-2],[1,-6],[0,-12],[0,-6],[5,-8],[7,3],[13,12],[11,1],[13,-3],[13,1],[9,10],[1,1],[3,0],[3,-3],[2,-6],[3,-5],[4,-4],[1,1],[1,4],[3,5],[5,4],[7,3],[2,3],[4,12],[3,5],[5,4],[24,7],[6,4],[16,25],[8,-7],[4,-6],[4,-6],[5,-17],[4,2],[10,15],[11,8],[4,7],[3,13],[3,15],[-1,11],[-1,11],[-1,14],[1,6],[1,5],[1,3],[1,2],[0,6],[-2,11],[0,6],[3,40],[5,20],[11,16],[12,10],[11,3],[6,-1],[11,-7],[5,-4],[11,-18],[5,-6],[7,2],[34,21],[9,16],[4,8],[3,3],[3,3],[0,1],[3,10],[1,15],[-2,10],[-9,19],[-3,35],[-2,11],[-10,21],[-3,10],[5,4],[4,-3],[14,-19],[21,-14],[3,0],[5,1],[3,0],[2,-2],[5,-6],[2,-1],[6,2],[10,8],[6,3],[11,-1],[5,4],[5,9],[2,9],[4,22],[3,9],[5,6],[6,5],[15,4],[2,2],[1,-1],[3,-5],[2,-5],[0,-6],[1,-5],[3,-5],[3,-8],[3,-2],[3,0],[4,-2],[4,-4],[2,-5],[1,-6],[2,-6],[13,-16]],[[77186,56024],[-9,15],[-1,5],[0,4],[2,3],[2,2],[2,0],[3,-4],[2,-9],[0,-9],[-1,-7]],[[77693,56121],[2,-13],[-6,-5],[-4,4],[8,14]],[[77689,56167],[-1,-5],[0,-1],[-1,3],[0,5],[1,0],[0,-1],[1,-1]],[[77568,54363],[4,-5],[-1,-3],[-3,-2],[-8,-12],[-7,-2],[-5,3],[-5,9],[5,-2],[3,5],[3,7],[5,2],[-2,0],[9,2],[2,-2]],[[77686,54329],[0,-6],[-1,-3],[-1,-3],[-2,-2],[-3,10],[-4,25],[-9,18],[1,9],[3,7],[3,8],[0,6],[-1,11],[1,3],[1,4],[2,2],[2,3],[0,5],[1,11],[1,11],[2,4],[6,-31],[0,-28],[5,-22],[2,-17],[0,-9],[-1,-6],[-2,-3],[-3,-1],[-2,-1],[-1,-5]],[[77612,54773],[4,-6],[7,-3],[2,-7],[-3,0],[-4,0],[-3,-2],[-2,-4],[-4,-14],[-3,-7],[-2,5],[0,30],[2,13],[6,-5]],[[77509,54997],[8,-18],[3,-3],[0,-21],[3,-22],[4,-20],[5,-14],[-5,-7],[-6,8],[-6,14],[-7,34],[-1,6],[0,20],[0,10],[-2,8],[1,2],[0,1],[1,2],[2,0]],[[77534,55004],[1,-7],[0,-12],[-1,-10],[-2,-7],[-3,-1],[-2,2],[-2,2],[-1,3],[0,4],[-2,2],[-2,2],[-1,2],[-7,24],[6,7],[10,-3],[6,-8]],[[77372,55270],[12,-16],[5,-9],[2,-17],[0,-64],[-2,-14],[-4,1],[-3,9],[-2,11],[-1,15],[-1,8],[0,5],[1,4],[2,1],[2,1],[0,6],[0,5],[-1,6],[-1,4],[-2,2],[-3,1],[-1,4],[-1,4],[-3,13],[-2,10],[-1,11],[0,10],[1,-3],[1,-2],[2,-6]],[[77338,55150],[1,3],[1,3],[1,2],[3,-9],[0,-9],[-3,-7],[-9,-6],[-1,-8],[1,-21],[-10,10],[-5,0],[-2,-12],[-1,-15],[-3,-9],[-4,-2],[-4,6],[-2,8],[-1,38],[-1,5],[-2,4],[-1,5],[0,6],[1,2],[2,2],[2,4],[-1,8],[-2,3],[-5,3],[-1,1],[1,6],[3,5],[2,4],[-1,5],[-2,7],[1,6],[3,6],[1,5],[-1,7],[-1,11],[0,21],[0,4],[1,5],[2,9],[1,6],[0,12],[0,13],[-2,24],[1,0],[1,-1],[2,-3],[2,2],[2,-2],[3,-4],[2,-5],[2,-8],[2,-28],[2,0],[2,6],[4,-5],[5,-9],[4,-8],[2,7],[3,3],[2,-2],[2,-8],[0,-10],[-2,-9],[-3,-13],[-1,-5],[1,-11],[0,-5],[-1,-2],[-2,-2],[-2,-3],[-1,-5],[0,-10],[1,-12],[2,-10],[3,-9]],[[77399,55309],[-5,-41],[0,-7],[-9,7],[-3,2],[-2,8],[1,3],[6,4],[-1,9],[3,9],[4,9],[2,9],[2,-1],[1,-3],[0,-3],[1,-5]],[[77304,55886],[3,-8],[3,-9],[1,-11],[0,-13],[-6,-13],[2,-3],[-4,-5],[-5,-3],[-6,0],[-4,8],[0,8],[2,48],[0,3],[1,3],[3,2],[3,1],[3,-2],[4,-6]],[[77796,56147],[2,-1],[3,-6],[1,-8],[-3,-7],[-2,-16],[-1,-19],[-2,-16],[-8,-8],[-1,-4],[0,-4],[-1,-4],[-2,-2],[-2,0],[-2,0],[-13,-3],[-3,-2],[-1,12],[-2,22],[-2,11],[4,11],[-1,11],[-2,10],[-1,11],[2,7],[7,2],[7,-2],[16,-8],[5,2],[2,11]],[[77336,56255],[2,-13],[-1,-8],[-5,-16],[-4,13],[2,8],[3,8],[3,11],[0,-3]],[[77787,56271],[9,-12],[3,-20],[3,-45],[-3,5],[-7,8],[-15,13],[-3,6],[1,7],[-1,7],[-5,12],[0,4],[3,13],[2,5],[2,-2],[3,-1],[5,1],[3,-1]],[[78489,57403],[7,2],[5,-16],[0,-21],[-4,-18],[0,-4],[4,0],[-3,-8],[0,-5],[1,-15],[-2,0],[-2,3],[-2,9],[-2,4],[-2,3],[-9,5],[2,7],[1,3],[1,3],[0,7],[-1,6],[-3,13],[0,6],[5,43],[2,4],[2,-3],[1,-6],[1,-7],[0,-7],[-2,-8]],[[78444,57602],[1,-4],[3,-11],[5,-11],[3,-9],[-1,-10],[-4,-4],[-4,6],[-9,19],[-1,-7],[1,-7],[-1,-5],[-4,-2],[-3,1],[-11,7],[0,-4],[1,-2],[1,-6],[-2,3],[-1,2],[-2,2],[-3,1],[0,4],[1,8],[0,37],[-2,6],[-8,38],[4,0],[-2,5],[-1,3],[-1,2],[-2,3],[5,0],[7,-5],[5,1],[9,-14],[3,-7],[3,-8],[4,-15],[2,-8],[4,-6],[0,-3]],[[77185,56051],[-5,10],[1,12],[5,7],[6,-4],[2,-3],[0,-5],[-1,-5],[-1,-4],[-2,0],[-3,2],[-2,0],[0,-10]],[[77302,55802],[3,-4],[3,-11],[-1,-12],[-4,-14],[-6,-34],[-3,1],[-2,11],[-1,12],[1,13],[1,16],[-1,18],[2,9],[5,-2],[3,-3]],[[30067,62142],[3,-16],[1,-10],[-1,-10],[0,-15],[1,-14],[8,-37],[3,-46],[0,-27],[-3,-13],[-2,-4],[-3,-18],[-3,-4],[-7,-9],[-2,-3],[1,-12],[5,-14],[1,-3],[9,-19],[18,-17],[4,-4],[-1,-35],[-2,-10],[-3,-11],[-10,-13],[-4,-8],[-8,-23],[-12,-27],[-4,-5],[-14,-8],[-5,-6],[1,-11],[5,2],[7,5],[6,-1],[3,-4],[4,-17],[2,-6],[7,-11],[2,-6],[1,-11],[1,-24],[2,-23],[-1,-11],[-1,-11],[-2,-10],[-3,-11],[-4,-7],[-8,-9],[-1,-2],[-1,-1],[-4,-9],[-6,-20],[-3,-7],[-11,-8],[-21,8],[-10,-5],[-5,-7],[2,-10],[26,-52],[1,-5],[1,-9],[-1,-4],[-3,-2],[-1,-6],[2,-11],[4,-5],[11,-6],[2,-4],[5,-12],[2,-6],[10,-14],[15,-11],[4,-6],[3,-4],[0,-2],[-3,-11],[0,-1],[-12,-43],[-3,-11],[0,-12],[0,-5],[3,-17],[1,-7],[0,-10],[0,-17],[-1,-10],[-3,-18]],[[30062,61153],[-5,6],[-19,51],[-9,16],[-9,12],[-22,16],[-9,9],[-9,7],[-11,0],[-22,-7],[-29,0],[-41,-1],[-21,-8],[-6,6],[-3,3],[-2,-3],[2,-22],[-3,-6],[-3,0],[-7,6],[-5,1],[-32,-6],[-7,1],[1,-3],[0,-7],[1,-2],[-4,0],[-2,1],[-2,3],[-8,-10],[-15,3],[-7,-6],[-8,9],[-9,8],[-11,5],[-29,7],[-8,-1],[-2,1],[-8,10],[-2,2],[-37,12],[-17,-3],[-2,1],[1,8],[4,3],[10,0],[0,3],[-19,4],[-22,0],[-7,-4],[-9,-10],[-3,-2],[-2,3],[-3,10],[-2,4],[-4,-5],[-2,-11],[-2,-9],[-3,4],[-2,0],[-3,-4],[-3,3],[-1,8],[1,9],[-4,-2],[-3,-16],[-4,-6],[0,8],[1,7],[2,14],[-2,-4],[-3,-8],[-2,-5],[0,2],[-2,1],[-3,1],[-1,-1],[0,-2],[0,-3],[0,-2],[-12,-20],[-20,-18],[-5,-10],[-5,-17],[12,-25],[2,-9],[1,-12],[-1,-4],[-3,-2],[-19,0],[-2,1],[-3,3],[-2,4],[-1,8],[-18,52],[-1,2],[-2,2],[-1,1],[-1,2],[0,2],[0,2],[-1,2],[-5,10],[-27,40],[-5,5],[-8,3],[-4,3],[-3,4],[-1,6],[-1,6],[-1,2],[-3,0],[-3,2],[-7,6],[-2,2],[-2,-4],[-5,4],[-6,-5],[-6,-7],[-6,-4],[-5,2],[-6,5],[-6,6],[-2,5],[-2,7],[-11,11],[-2,11],[-1,11],[-2,8],[-7,19],[10,28],[-1,3],[-1,6],[5,7],[3,27],[4,6],[1,3],[0,7],[-1,8],[-2,4],[0,7],[2,5],[9,11],[13,10],[5,2],[6,-3],[3,0],[1,5],[2,4],[3,2],[3,1],[16,-2],[11,-5],[36,-33],[16,-1],[1,-1],[1,-4],[1,-2],[0,-4],[2,0],[2,2],[2,1],[8,-9],[3,-3],[13,-1],[3,-1],[3,-3],[6,-10],[2,-2],[3,-1],[1,2],[1,2],[1,1],[3,-1],[4,-3],[2,0],[2,1],[3,6],[2,1],[0,1],[3,9],[2,2],[2,0],[3,0],[2,0],[13,8],[3,1],[10,-5],[0,-11],[-5,-7],[-8,2],[0,-4],[-6,4],[-5,2],[-6,-1],[-6,-5],[2,-2],[5,-5],[4,-2],[1,-4],[0,-4],[1,-5],[5,-5],[9,3],[4,-4],[10,12],[12,3],[44,-7],[5,-3],[11,-11],[6,-3],[23,2],[11,-2],[9,-8],[5,-6],[5,-3],[4,-1],[7,3],[20,7],[24,-12],[-1,-9],[5,2],[7,5],[5,0],[4,-3],[20,-7],[11,5],[7,13],[6,18],[4,21],[7,17],[9,4],[46,-9],[2,2],[1,2],[0,3],[1,1],[2,0],[1,-2],[0,-1],[1,-1],[6,-13],[3,-3],[4,2],[3,10],[0,14],[0,36],[0,7],[2,8],[2,5],[1,4],[-1,7],[-3,4],[-12,12],[-4,2],[-6,0],[-4,2],[-5,10],[-5,12],[-6,9],[-6,-2],[-10,12],[-2,5],[-3,11],[-14,45],[-4,8],[-5,10],[-6,7],[-5,3],[-5,5],[-29,64],[-2,15],[12,10],[11,1],[6,4],[2,9],[-1,11],[-4,6],[-5,4],[-5,5],[-3,8],[-7,24],[-1,9],[1,3],[1,1],[-1,1],[1,3],[2,5],[3,14],[2,5],[3,3],[5,2],[4,1],[3,-1],[-4,15],[-2,4],[-6,1],[-3,5],[-1,11],[0,13],[1,7],[2,-4],[2,-3],[3,-1],[3,0],[3,5],[0,4],[-1,5],[-1,14],[0,2],[4,-2],[2,-1],[2,-4],[2,-3],[4,0],[-5,22],[-3,3],[-15,2],[-3,5],[-3,8],[-3,9],[-6,8],[-17,16],[-15,18],[-5,3],[-5,4],[-10,17],[-2,1],[-2,-2],[-18,12],[-2,1],[-6,3],[-3,0],[-1,-1],[-2,-3],[-2,-3],[-2,-1],[-5,2],[-6,5],[-6,7],[-3,6],[-6,-11],[-12,-3],[-27,3],[-5,3],[-3,0],[-2,3],[-5,11],[-2,3],[-4,5],[-2,12],[0,12],[-1,7],[10,32],[1,7],[3,0],[15,14],[0,4],[-16,0],[5,7],[5,1],[6,-1],[5,1],[34,31],[10,15],[6,15],[3,-8],[3,-2],[8,2],[4,-2],[7,-5],[4,-1],[3,0],[2,1],[6,3],[4,1],[4,-1],[4,-3],[3,-6],[2,10],[5,5],[7,2],[5,-4],[7,6],[9,4],[10,3],[8,-1],[28,-14],[7,-8],[6,-6],[17,-10],[1,-3],[5,-14],[8,-10],[8,-6],[4,6],[5,-6],[8,-6],[8,-4],[4,2],[1,-10],[14,-25],[0,-4],[-1,2],[-5,2],[4,-17],[1,-3],[5,-2],[1,1],[-1,5],[4,8],[-1,1],[-2,-1],[-1,0],[0,1],[1,3],[0,2],[1,-2],[0,4],[-1,2],[-1,6],[2,0],[4,-4],[5,-1],[5,3],[3,9],[2,5],[6,1],[4,-7],[-3,-14],[5,-6],[5,0],[11,3],[1,0],[1,-1],[2,-2],[4,-8],[3,-2],[9,0],[3,-1],[1,-3],[1,-3],[2,-2],[4,-6],[3,-1],[2,2],[1,4],[2,5],[3,1],[5,8],[8,0],[14,-8],[7,-2],[2,-3],[-1,-7],[-3,-3],[-3,-1],[-8,0],[3,-11],[5,-1],[5,3],[4,1],[5,-8],[3,-4],[2,2],[1,8],[0,4],[-7,3],[-2,4],[-1,5],[1,6],[2,4],[3,-1],[7,-3],[12,-1]],[[29547,61185],[5,0],[5,-3],[4,-4],[0,-9],[-3,-4],[-6,-1],[-11,1],[-4,2],[-5,5],[-7,13],[1,6],[1,3],[2,-1],[2,-4],[3,5],[2,-2],[1,-4],[2,-3],[8,0]],[[29501,61502],[6,6],[9,-1],[7,-8],[0,-13],[-6,-8],[-9,0],[-7,8],[0,16]],[[29763,62366],[8,1],[6,-1],[5,-5],[6,-7],[26,-21],[11,-14],[-3,-14],[-4,4],[-24,6],[-11,9],[-13,6],[-5,4],[-3,-1],[-3,-2],[-3,-1],[-6,2],[-7,5],[-6,6],[-4,7],[1,0],[1,1],[2,3],[12,9],[14,3]],[[29650,61650],[-5,7],[-2,3],[-2,5],[-1,6],[-1,7],[1,6],[3,8],[5,7],[6,4],[6,2],[6,-2],[39,-33],[19,-12],[21,-22],[20,-17],[8,-20],[2,-13],[1,-15],[-1,-15],[-3,-12],[-3,-2],[-2,4],[-3,10],[-2,4],[-2,2],[-6,0],[-25,12],[-9,1],[-8,4],[-25,32],[-25,14],[-6,9],[-6,16]],[[30067,62142],[5,-2],[5,-5],[-1,11],[-5,23],[1,6],[0,5],[-8,0],[-1,7],[3,9],[5,10],[1,2],[1,0],[3,0],[2,2],[3,7],[2,3],[3,3],[3,1],[2,2],[3,6],[-1,8],[-1,6],[2,5],[3,2],[2,-1],[4,-3],[2,-1],[1,2],[2,5],[1,1],[28,5],[8,-2],[7,-5],[26,-28],[8,-3],[7,6],[6,-9],[4,-3],[12,-1],[4,1],[0,5],[0,6],[2,6],[3,3],[3,-6],[3,-15],[2,2],[1,3],[2,4],[0,4],[-2,1],[-1,1],[0,1],[0,4],[4,-3],[4,0],[3,2],[5,1],[3,5],[5,19],[3,5],[4,2],[9,9],[5,1],[5,-2],[4,-5],[2,-8],[-1,-9],[5,-5],[2,0],[-1,10],[-1,3],[14,-5],[4,1],[8,4],[3,0],[3,-5],[13,-29],[1,-6],[-2,-5],[11,0],[4,-4],[10,-18],[10,-11],[11,-7],[12,-4],[17,0],[2,1],[1,4],[3,5],[4,4],[3,2],[11,-7],[17,-36],[10,-22],[4,-7],[6,-5],[5,-3],[13,-3],[10,-7],[19,-8],[4,0],[3,2],[2,5],[10,22],[6,5],[15,-1],[7,2],[4,-1],[4,-5],[10,-21],[3,-13],[-1,-15],[-4,-33],[5,-5],[3,-10],[-1,-27],[1,-12],[2,-9],[18,-56],[9,-17],[1,-2],[9,-8],[6,2],[11,9],[5,2],[13,1],[5,2],[6,5],[8,11],[3,1],[3,-1],[6,-6],[4,-1],[6,3],[3,1],[2,0],[2,-1],[1,-2],[0,-3],[1,-3],[2,1],[3,4],[16,-14],[5,-6],[3,12],[5,10],[13,14],[8,5],[2,-7],[-2,-14],[-5,-17],[6,-4],[6,0],[6,3],[5,6],[2,-13],[-4,-11],[-5,-9],[-2,-10],[-1,-11],[-4,-9],[-4,-8],[-6,-3],[-22,9],[-24,-4],[-6,3],[-10,10],[-35,9],[-4,-2],[-2,-8],[-1,-28],[-2,-24],[1,-9],[3,-4],[3,-5],[15,5],[6,-4],[6,4],[13,-10],[7,1],[-2,3],[-2,3],[-2,2],[-3,1],[0,4],[14,2],[5,-2],[5,-7],[3,-19],[5,-7],[5,-2],[9,-3],[26,-14],[11,-6],[4,1],[6,6],[-2,4],[-4,4],[0,6],[5,3],[5,-8],[5,-19],[4,-5],[4,-2],[4,-3],[2,-7],[3,6],[7,6],[3,5],[-2,5],[1,1],[3,0],[2,2],[3,6],[1,2],[1,0],[10,-1],[6,-2],[5,-4],[4,-5],[1,-2],[0,-2],[0,-2],[1,-2],[6,-4],[1,0],[10,-4],[6,-1],[2,-1],[1,-1],[2,-3],[3,-3],[4,-1],[3,-2],[33,-61],[11,-29],[17,-26],[12,-17],[4,-3],[1,-3],[13,-24],[16,-20],[8,-23],[-2,-24],[-26,-80],[-2,-3],[-2,-4],[-1,-6],[1,-21],[-1,-5],[-3,-11],[-4,-4],[-6,-2],[-7,0],[-5,4],[-11,14],[-4,3],[-4,-6],[0,-10],[2,-11],[-3,-12],[-3,-9],[-2,-11],[-4,-34],[-2,-6],[-3,-3],[-24,-3],[-4,3],[-1,22],[-7,28],[-9,28],[-8,20],[-9,12],[-11,10],[-12,3],[-13,-11],[-21,-2],[-5,2],[-12,8],[-6,2],[-4,3],[-8,14],[-7,3],[-5,-2],[-5,-4],[-6,0],[-6,6],[-5,-11],[-36,-5],[-11,-8],[-6,-1],[-15,22],[-6,6],[-4,1],[-2,-5],[0,-7],[1,-6],[-1,-6],[-3,-2],[-4,0],[-3,2],[-2,2],[-4,16],[-3,4],[-2,2],[-42,9],[-8,0],[-1,-1],[-5,-2],[-9,-9],[-7,-10],[-3,-2],[-7,-5],[-3,-3],[-3,-4],[-7,-11],[-4,-15],[-2,-18],[-2,-5],[-6,-6],[-1,-5],[-2,-6],[-9,-18],[-7,-16],[-3,-6],[-2,1],[-7,0],[-5,-2],[-4,-4],[-4,6],[-6,3],[-35,-1],[-6,-4],[-12,-13],[-6,-3],[-19,0],[-5,4],[0,5],[2,4],[2,4],[2,3],[-1,7],[-2,3],[-2,2],[-2,6],[-5,7],[-2,6],[1,6],[2,2],[2,2],[1,4],[1,12],[1,13],[-1,11],[-2,7],[-6,15],[-3,6],[-7,5],[-5,2],[-7,2],[-6,-4],[-3,-10],[1,-12],[-1,-5],[-8,-17],[-2,-3],[-3,-2],[-3,1],[-6,3],[-3,1],[-2,-2],[-4,-6],[-2,-1],[-4,1],[-1,-1],[-3,-6],[0,-2],[-2,-7],[-1,-3],[0,-2],[-4,-3],[-1,-1],[-8,-18],[-4,-5],[-6,-1],[-3,2],[-2,5],[-1,6],[-2,5],[-3,4],[-3,3],[-12,5],[-6,0],[-4,-3],[-2,-9],[0,-5],[-3,-9],[0,-6],[0,-8],[2,-4],[1,-4],[2,-7],[5,-32],[1,-5],[1,-7],[-6,-17],[-5,-24],[-26,-78],[-2,-13],[-1,-5],[-3,-4],[-5,-6],[-4,-6],[-2,-5],[-2,-7],[-2,-10],[-2,1],[-1,1],[-1,2],[0,-4],[-1,-2],[-1,-2],[2,0],[-1,-5],[-1,-3],[-2,-3],[-2,-1],[-1,-2],[-2,-12],[-1,-4],[-4,-10],[-9,-56],[-3,-11],[-11,-33],[-3,3],[-3,5],[0,2],[-2,5],[-20,64],[-4,10],[-10,8],[-22,-6],[-9,5],[2,4],[9,18],[2,8],[0,13],[-1,9],[-5,17],[-3,9],[0,3],[0,7],[1,23],[-2,10],[-4,12],[-11,17],[-15,12]],[[30132,60860],[-5,6],[0,13],[3,14],[3,12],[4,-4],[4,-6],[7,-14],[-5,-3],[-6,-14],[-5,-4]],[[30926,61230],[15,1],[3,-3],[3,-8],[3,-11],[2,-11],[0,-5],[-4,2],[-9,9],[-5,2],[-5,-2],[-8,-5],[-5,-2],[-10,6],[-7,13],[-4,15],[-3,15],[4,2],[5,-1],[5,-5],[4,-6],[3,-3],[13,-3]],[[53779,58585],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,18],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,18],[-2,19],[-2,28],[-4,30],[-6,41],[0,35],[10,26],[7,7],[10,9],[11,2],[6,3],[5,1],[9,17],[2,10],[1,11],[-2,23],[-1,4],[-3,5],[0,3],[1,3],[5,8],[9,21],[3,4],[5,3],[6,1],[4,5],[2,13],[0,12],[-4,26],[-1,12],[0,12],[2,12],[4,18],[9,41],[7,31],[8,24],[9,24],[8,24],[8,24],[8,24],[9,24],[8,25],[8,24],[9,24],[8,24],[8,24],[8,24],[9,24],[8,24],[8,25],[9,24],[8,24],[8,23],[15,33],[16,36],[11,24],[16,35],[15,34],[16,35],[15,35],[16,34],[16,35],[15,34],[16,35],[15,34],[16,35],[15,34],[16,35],[16,34],[15,35],[16,35],[15,34],[10,21],[3,11],[1,6],[1,7],[1,15],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[0,6],[1,21],[1,27],[1,27],[1,28],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,25],[8,46],[4,16],[12,41],[11,40],[11,41],[11,41],[6,21],[2,10],[-1,10],[-4,13],[-6,14],[-17,36],[-16,37],[-16,36],[-16,36],[-8,17],[-23,36],[-4,11],[-4,13],[-4,15],[-2,27],[2,27],[7,23],[11,13],[-4,14],[-5,15],[-5,14],[-4,15],[-5,14],[-4,15],[-5,14],[-5,15],[-4,14],[-5,15],[-5,14],[-4,15],[-5,14],[-5,15],[-4,14],[-5,15],[-5,14],[-6,21],[-10,23],[-5,8],[-13,13],[-5,9],[-1,10],[0,15],[0,12],[0,31],[-1,43],[0,50],[0,50],[-1,44],[0,31],[0,11],[-2,24],[-2,26],[-3,25],[-3,37],[-3,37],[-4,37],[-3,37],[-3,37],[-4,37],[-3,37],[-3,37],[-4,38],[-3,37],[-3,37],[-4,37],[-3,37],[-3,37]],[[54300,54925],[11,31],[8,33],[3,35],[0,60],[-6,3],[-8,4],[-6,1],[-13,20],[-10,49],[-17,127],[-37,169],[-8,34],[-4,12],[-16,33],[-12,41],[-4,12],[-6,9],[-7,4],[-11,3],[-3,3],[-1,4],[0,5],[-1,7],[-3,15],[-1,6],[-2,4],[-2,1],[-2,3],[-1,7],[-3,6],[-11,17],[-4,5],[-2,1],[-3,0],[-2,-1],[-3,-2],[-4,3],[-62,105],[-62,105],[-5,19],[-2,26],[-80,192],[-24,41],[-1,9],[17,51],[23,42],[9,25],[13,57],[1,6],[0,6],[1,4],[2,2],[4,0],[68,10],[81,-42],[11,-2],[35,23],[13,-1],[16,-8],[8,-1],[8,4],[3,4],[5,9],[3,4],[3,2],[12,3],[17,-2],[47,-32],[15,1],[63,33],[4,3],[-12,23],[-9,6],[-19,24],[-13,23],[0,3],[-4,4],[-10,32],[-38,74],[-3,11],[-2,12],[0,15],[-2,11],[-2,7],[-4,7],[-4,9],[-4,22],[-2,10],[-6,6],[-1,3],[-2,2],[-3,2],[-3,0],[-3,2],[-3,3],[-1,3],[-2,11],[0,15],[2,14],[2,10],[1,10],[-2,14],[-22,87],[0,22],[3,25],[1,15],[-2,10],[-3,9],[-7,38],[-2,51],[-2,60],[2,37],[1,9],[7,20],[2,10],[-1,6],[-1,3],[-1,2],[-1,5],[0,7],[1,9],[2,30],[2,12],[2,10],[13,30],[4,16],[-3,20],[-8,20],[-3,11],[-5,26],[0,12],[0,12],[2,12],[1,1],[2,0],[2,0],[1,3],[0,4],[-3,6],[-1,2],[2,6],[4,9],[2,6],[-7,34],[-2,6],[-4,1],[-4,5],[-2,10],[0,14],[1,5],[3,5],[2,5],[-1,6],[-1,3],[-2,6],[0,6],[1,3],[8,2],[-2,7],[-4,9],[-3,8],[0,8],[1,4],[0,4],[-2,5],[-2,5],[0,7],[2,7],[1,3],[-5,10],[-6,5],[-5,-2],[-4,-7],[-4,-1],[-4,6],[-6,15],[-7,11],[-1,4],[-1,8],[1,3],[2,1],[2,4],[-1,6],[-1,3],[-1,3],[-1,4],[0,7],[1,10],[1,7],[0,42],[1,5],[-5,45],[-4,14],[0,3],[0,7],[0,2],[-1,2],[-2,1],[-1,0],[0,-3],[-2,4],[-1,1],[-1,1],[1,6],[0,4],[2,9],[1,4],[-9,72],[-3,13],[-9,-5],[-5,1],[-2,10],[-1,5],[-2,6],[-2,5],[-3,2],[-1,-2],[-4,-14],[-4,9],[4,20],[-1,10],[-5,3],[-8,-5],[-5,6],[-1,3],[-5,7],[-1,3],[0,4],[-1,3],[-2,2],[-2,-1],[-5,-9],[-3,-1],[-1,4],[0,5],[0,6],[-3,-2],[-2,0],[-1,3],[0,5],[0,23],[-5,10],[-9,14],[-3,9],[1,7],[4,27],[0,12],[0,10],[-3,9],[-4,9],[0,1],[-13,41],[-4,7],[-99,-2]],[[63318,68233],[2,-10],[3,-9],[3,-12],[1,-12],[0,-22],[1,-14],[3,-20],[8,-28],[8,-22],[8,0],[4,-26],[7,-26],[12,-32],[5,-23],[-1,-12],[-6,-2],[-12,9],[-6,7],[-1,5],[-6,2],[-7,3],[-5,1],[-16,-5],[-8,-13],[-7,-13],[-17,-18],[-12,-20],[-6,-18],[-6,-15],[-13,-11],[-1,-9],[-2,-9],[6,-1],[10,4],[8,2],[6,5],[7,4],[3,-4],[-8,-10],[0,-7],[-1,-8],[7,-9],[4,0],[6,4],[6,3],[1,15],[5,3],[5,-3],[5,7],[3,9],[5,4],[2,-3],[4,-11],[1,-2],[4,-7],[3,-2],[7,-5],[11,4],[-2,-26],[-1,-11],[1,-17],[3,-27],[3,-12],[3,-11],[2,-12],[7,-81],[5,-20],[13,-39],[5,-7],[10,-7],[1,-9],[-1,-11],[0,-12],[2,-12],[8,-20],[1,-7],[3,-8],[7,-5],[11,-5],[-3,-9],[-1,-11],[0,-10],[2,-11],[-4,6],[-2,3],[0,-5],[0,-3],[2,-2],[2,-3],[-2,-5],[-1,-1],[-1,0],[-1,2],[-2,0],[-1,-12],[3,-3],[4,4],[3,7],[1,-6],[1,-29],[1,-7],[2,-8],[5,-11],[3,-6]],[[63427,67918],[4,-3],[2,-4],[3,-5],[3,-5],[2,-5],[3,-17],[-1,-6],[-4,3],[-3,1],[-2,3],[-8,13],[-5,4],[-8,2],[-6,-1],[1,16],[3,9],[5,1],[11,-6]],[[63431,68064],[-6,-18],[-8,-20],[-10,-17],[-11,-10],[-2,1],[-10,2],[-6,15],[-10,43],[-12,39],[-1,3],[-2,4],[-5,6],[-3,6],[6,7],[3,3],[6,8],[3,1],[1,4],[2,20],[-5,4],[-2,0],[-3,0],[3,9],[4,-1],[7,-8],[3,-1],[4,1],[2,4],[-2,9],[5,4],[5,5],[1,5],[-5,6],[-3,0],[-4,-3],[-2,3],[-2,4],[0,6],[-1,6],[1,4],[-5,0],[-1,1],[-1,2],[1,4],[4,5],[4,3],[4,1],[4,-3],[3,-5],[43,-114],[5,-21],[-2,-27]],[[63355,68239],[-2,-4],[-3,-6],[-1,-3],[-8,-7],[-2,-1],[-2,3],[-1,4],[-1,3],[4,5],[6,14],[3,4],[11,2],[4,0],[-1,-6],[-7,-8]],[[24972,58602],[-4,38],[0,9],[1,10],[1,9],[2,9],[4,7],[7,8],[4,6],[2,8],[2,9],[2,8],[4,8],[27,39],[6,12],[3,4],[12,10],[4,0],[5,-2],[8,-12],[4,-4],[4,5],[0,3],[0,1],[-2,9],[0,4],[0,5],[12,44],[6,12],[7,12],[7,6],[30,15],[2,4],[0,9],[-1,3],[-4,3],[-1,3],[0,4],[-1,9],[0,2],[-2,7],[-1,2],[-1,3],[-2,2],[-6,2],[-2,8],[2,5],[3,4],[2,6],[-1,7],[-2,6],[-2,6],[2,10],[4,6],[4,-1],[3,-6],[1,-11],[4,5],[7,17],[2,2],[3,3],[4,-1],[3,-4],[3,-2],[5,2],[6,13],[3,2],[0,-11],[2,5],[0,1],[8,-12]],[[25177,59007],[4,-2],[11,-3],[9,-9],[14,-6],[7,-10],[13,-8],[2,5],[4,16],[3,4],[2,2],[2,-1],[1,-2],[2,-5],[1,-5],[1,-6],[-1,-6],[-1,-6],[3,-6],[10,-2],[4,-5],[2,-7],[1,-18],[1,-5],[8,-12],[2,-6],[3,-9],[1,-7],[0,-3],[0,-5],[1,-6],[2,-4],[3,2],[3,4],[4,3],[5,0],[7,-9],[5,-15],[4,-18],[2,-17],[5,2],[12,-2],[4,2],[3,4],[2,1],[2,-7],[0,-10],[-2,-10],[0,-8],[4,-6],[6,-2],[2,-1],[2,-3],[1,-4],[1,-5],[-1,-3],[0,-1],[2,1],[7,2],[7,-1],[21,-14],[13,-2],[2,-2],[3,-5],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,-7],[0,-6],[-1,-8],[0,-8],[1,-6],[3,-16],[0,-9],[-3,-8],[8,0],[5,7],[5,4],[11,5],[3,0],[4,-3],[2,-1],[1,2],[0,3],[0,4],[1,2],[1,0],[3,0],[2,-2],[2,-1],[2,7],[3,2],[3,1],[3,2],[2,4],[1,4],[1,4],[2,4],[3,3],[3,-1],[2,1],[1,8],[-1,2],[-2,4],[-1,3],[0,11],[0,2],[3,2],[4,0],[1,-1],[7,-3],[4,0],[14,4],[8,-1],[3,-6],[4,-22],[4,-10],[5,-10],[5,-11],[2,-14],[13,13],[4,2],[2,-1],[4,-5],[2,-2],[1,2],[4,5],[2,2],[3,0],[5,-3],[3,1],[3,4],[2,6],[3,4],[4,1],[3,-4],[2,-16],[2,-7],[2,-2],[4,-3],[1,-2],[5,-8],[8,-14],[5,-4],[-3,-9],[-5,-26],[-2,-10],[2,-10],[-1,-6],[-3,-6],[-3,-7],[-1,-10],[1,-22],[-1,-11],[-7,-34],[-1,-16],[3,-14],[2,-2],[6,4],[4,-3],[2,-5],[2,-7],[0,-8],[0,-8],[-5,-11],[-22,-21]],[[25606,58409],[-2,3],[-2,5],[-2,13],[-8,-29],[-2,-16],[5,-8],[4,-2],[9,-19],[5,-7],[1,-3],[0,-8],[-3,-12],[-5,-9],[-21,-22],[-5,-9],[-1,-10],[6,-9],[-10,-5],[-38,6],[-9,4],[-2,0],[-5,-4],[-24,-5],[-25,9],[-7,-5],[-4,3],[-4,2],[0,3],[7,1],[0,9],[-3,11],[-5,8],[1,-5],[3,-9],[1,-6],[-10,0],[-5,-1],[-4,-3],[3,-3],[2,1],[3,1],[4,1],[0,-5],[-7,-5],[-7,0],[-5,7],[-2,15],[3,-3],[1,-1],[3,8],[0,3],[-4,5],[-6,15],[-3,5],[1,-9],[1,-7],[1,-6],[-1,-6],[-4,5],[-12,6],[-5,5],[-4,17],[-3,3],[-3,1],[-9,4],[-4,0],[-11,-5],[-16,-1],[-3,-3],[1,-3],[2,-2],[2,-1],[2,2],[8,-4],[22,5],[3,-1],[4,-4],[1,-4],[4,-9],[2,-3],[0,-5],[-5,2],[-4,2],[-8,5],[0,-4],[23,-10],[12,-8],[5,-11],[-2,-7],[-5,2],[-5,6],[-4,6],[-4,4],[-72,28],[-9,8],[-68,67],[-33,42],[-19,17],[-21,10],[-9,0],[-7,4],[-40,-1],[-17,9],[-8,3],[-17,12],[-10,-4],[-26,-1],[-4,7],[-3,21],[-1,14],[-3,6],[-6,7],[-23,27],[-19,18],[-22,22]],[[25631,58286],[0,7],[2,3],[4,-2],[2,-11],[0,-9],[2,-6],[-3,-3],[-3,3],[-3,-2],[0,6],[-1,6],[0,8]],[[25620,58315],[3,-2],[1,-9],[-1,-5],[-2,-4],[-4,7],[-1,10],[2,3],[2,0]],[[24972,58602],[-40,35],[-44,40],[-27,21],[-22,11],[-16,6],[-20,4],[-21,-5],[-3,-2],[-32,-4],[-37,1],[-34,8],[-42,17],[-65,61],[-24,28],[-35,44],[-40,62],[-40,73],[-54,82]],[[24376,59084],[5,2],[5,13],[7,35],[5,22],[2,9],[-1,12],[-5,29],[0,4],[1,9],[-1,4],[-2,15],[-1,5],[0,12],[1,7],[6,14],[3,18],[-1,37],[1,19],[4,7],[3,2],[4,1],[3,3],[3,7],[6,27],[-36,96],[-2,10],[0,11],[1,10],[5,19],[14,48],[9,31],[10,37],[22,78],[22,78],[19,69],[14,48],[5,18],[6,23],[3,8],[5,5],[13,0],[38,0],[38,0],[38,0],[39,0],[36,0],[2,0],[38,1],[39,0],[38,0],[25,0],[5,1],[5,4],[1,3],[2,9],[1,5],[-2,-2],[-1,-1],[-1,-2],[-2,0],[-1,10],[7,12],[-4,7],[0,4],[6,5],[-1,6],[-9,9],[-1,11],[2,8],[4,6],[3,3],[-4,3],[-2,5],[-1,6],[3,7],[1,-3],[1,-1],[4,-1],[-1,3],[-2,7],[-1,3],[1,0],[1,1],[0,1],[0,2],[2,-3],[2,-1],[2,2],[0,6],[-2,-2],[-4,3],[-3,5],[2,2],[5,3],[4,8],[2,10],[-2,8],[-2,0],[0,-5],[-2,0],[1,9],[2,3],[4,-1],[4,-2],[-3,11],[0,3],[0,8],[-1,8],[-2,1],[-2,-2],[-3,-1],[-2,1],[-2,3],[-3,3],[-8,2],[-1,4],[0,5],[-1,6],[-2,3],[-3,4],[-3,2],[-6,-7],[-2,6],[-1,12],[-3,0],[-7,-4],[-2,-1],[-1,1],[-4,2],[-5,0],[-3,-2],[1,6],[3,4],[2,5],[0,6],[-4,4],[-4,1],[-2,2],[2,9],[-1,9],[2,10],[1,9],[-4,4],[-1,-3],[-1,-2],[-1,-1],[-3,-1],[0,3],[4,14],[-4,22],[-19,55],[-4,7],[-9,10],[-5,7],[1,7],[0,4],[-3,5],[-3,-5],[-3,0],[-19,12],[-6,6],[-8,17],[-5,6],[4,10],[-1,4],[-3,2],[-5,0],[-1,-3],[1,-5],[1,-6],[-3,-2],[-2,2],[-3,7],[-2,3],[-10,8],[-4,6],[-1,12],[-1,6],[-10,25],[-1,5],[-2,11],[-1,4],[-3,1],[-7,-1],[-3,2],[-9,22],[-3,8],[-1,6],[-2,11],[-1,4],[-2,3],[-6,3],[-1,4],[-1,9],[-1,11],[-3,9],[-3,5],[-7,1],[-8,-2],[-5,2],[-3,14],[-4,5],[-8,3],[-7,6],[1,10],[2,0],[122,-1],[0,162],[1,163],[2,5],[5,4],[12,0],[62,-1],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0]],[[25233,61020],[1,-128],[2,-165],[0,-168],[-5,-154],[-5,-166],[-2,-61],[-4,-123],[-8,-137],[0,-28],[0,-8],[2,-7],[1,1],[2,3],[4,2],[2,1],[5,4],[21,-2],[8,3],[9,0],[25,-13],[10,8]],[[25301,59882],[4,-3],[10,-17],[9,5],[13,-5],[9,-12],[1,-12],[6,-2],[28,-37],[-3,-26],[1,-4],[7,0],[3,2],[1,5],[0,5],[-1,0],[0,3],[-1,2],[-1,2],[0,5],[2,1],[2,-1],[3,1],[1,5],[1,10],[2,6],[3,5],[1,6],[1,9],[-2,14],[-1,9],[2,0],[0,-6],[0,-2],[2,0],[3,4],[9,-3],[4,3],[-7,13],[-3,5],[-6,5],[-2,6],[-2,7],[-2,5],[-11,14],[-4,8],[4,10],[4,-5],[8,-7],[3,-4],[9,-18],[5,-6],[15,-26],[29,-27],[9,-18],[3,-2],[12,-23],[10,-8]],[[25494,59783],[-3,-3],[-1,-5],[0,-7],[-2,-8],[-2,5],[-4,-4],[-4,-5],[-5,-3],[-6,-1],[-1,-4],[-9,-30],[-13,-26],[-19,-31],[-9,-14],[-24,-39],[-24,-39],[-24,-38],[-24,-39],[-35,-56],[-10,-9],[-28,-20],[-9,-9],[-1,-3],[-4,-6],[-3,-11],[-5,-27],[6,-11],[0,-16],[-4,-16],[-2,-7],[-3,-7],[-7,-13],[-2,-7],[0,-11],[1,-8],[3,-8],[5,-14],[3,-9],[5,-26],[3,-8],[3,-5],[1,-3],[0,-2],[1,-10],[-1,-5],[-3,-6],[-1,-4],[1,-30],[0,-10],[-1,-10],[-3,-7],[-4,0],[-6,5],[-4,1],[-5,-1],[-2,-3],[-1,-5],[-3,-6],[-8,-16],[-4,-8],[-3,-11],[-2,-5],[-6,-3],[-3,-4],[-2,-7],[-1,-10],[1,-18]],[[84452,44937],[5,3],[22,19],[5,1],[4,4],[6,19],[3,6],[8,8],[19,12],[27,11],[3,3],[2,7],[6,2],[7,1]],[[84699,45162],[10,12],[5,12],[14,43],[1,9],[3,5],[12,10],[4,8],[1,10],[2,53],[2,14],[4,12],[4,8],[6,4],[13,4],[5,6],[2,1],[10,-3],[4,2],[8,10],[18,12],[6,1],[18,-3],[6,3],[15,14],[7,2],[7,-5],[3,1],[8,16],[5,-5],[8,0],[15,5],[33,22],[13,2],[29,-11],[11,-11],[7,-2],[6,3],[12,7],[3,1],[3,1],[13,1],[11,3],[6,6],[12,18],[9,6],[9,11],[3,1],[6,0],[2,3],[6,-8],[5,-5],[7,-3],[6,-1],[4,-3],[11,-20],[11,8],[21,21],[8,4],[5,8],[2,2],[3,1],[5,-4],[2,0],[12,5],[12,11],[29,43],[6,6],[4,-2],[5,-7],[19,-20],[6,-3],[6,-1],[7,1],[5,5],[9,13],[2,2],[3,-2],[2,-4],[0,-5],[2,-6],[6,-7],[13,-8],[5,-7],[2,-12],[-3,-10],[-20,-32],[-13,-27],[-25,-42],[-18,-37],[-2,-6],[-3,-1],[-20,-9],[-18,-27],[-8,-9],[-42,-6],[-6,-3],[-3,-4],[-8,-12],[-3,-2],[-2,-1],[-6,-1],[-3,-2],[-11,-27],[-10,-36],[-10,-18],[-11,-7],[-74,-20],[-8,-7],[-4,-4],[-21,-30],[-28,-41],[-5,-3],[-16,5],[-6,-1],[-3,-3],[-6,-11],[-3,-2],[-11,0],[-6,-3],[-18,-22],[-5,0],[-14,4],[-5,-2],[-6,-9],[-5,-7],[-18,-14],[-30,-24],[-10,-13],[-15,-25],[-7,-7],[-4,-8],[-5,-17],[-3,-7],[-3,-5],[-4,-3],[-13,-2],[-5,-3],[-5,-6],[-5,-10],[-10,-15]],[[84880,45616],[3,10],[6,15],[8,11],[5,-5],[-2,-19],[-11,-55],[-2,-18],[-1,-5],[-3,-4],[-2,-2],[-1,3],[-2,2],[-9,6],[-4,4],[-3,7],[-1,6],[1,5],[2,8],[4,7],[9,16],[3,8]],[[81952,53325],[5,-12],[5,7],[6,13],[6,7],[6,3],[0,7],[-2,9],[-2,10],[1,5],[1,2],[3,1],[3,0]],[[81666,53195],[70,-5],[21,8],[19,23],[27,21],[10,7],[6,13],[4,17],[10,21],[34,57],[10,14],[47,60],[36,32],[7,2],[5,-5],[0,-7],[-4,-7],[-8,-8],[-3,-8],[-4,-23],[-1,-7],[-2,-8],[-9,-18],[-2,-9]],[[52065,76375],[-1,-2],[-4,-5],[-4,-8],[-6,1],[-4,2]],[[48660,65272],[-48,63],[-48,64],[-48,63],[-49,64],[-33,42],[-7,8],[-40,50],[-46,59],[-47,58],[-47,58],[-55,69],[-55,69],[-54,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,68]],[[49382,71250],[6,4],[1,-1],[1,0],[1,-1],[1,-2],[8,7],[10,-4],[10,-7],[9,-4],[18,4],[7,-4],[2,0],[2,1],[5,7],[26,13],[7,9],[2,1],[9,0],[3,1],[5,5],[9,19],[17,11],[4,3],[2,11],[33,49],[5,3],[27,5],[7,4],[2,2],[1,2],[7,16],[6,3],[5,6],[4,8],[3,7],[3,12],[3,28],[3,11],[3,9],[10,44],[2,7],[3,2],[7,1],[1,3],[7,18],[3,3],[7,9],[8,14],[4,9],[2,3],[10,5],[5,6],[4,6],[5,5],[6,4],[4,-1],[1,-5],[2,-2],[3,2],[11,11],[6,20],[7,4],[2,-3],[2,-4],[3,-4],[3,-2],[3,0],[5,-3],[4,-1],[3,-2],[1,-4],[2,-5],[2,-5],[3,-1],[10,1],[5,2],[6,5],[5,7],[3,17],[4,1],[3,-2],[3,-1],[3,3],[2,4],[13,47],[0,6],[0,2],[-1,4],[0,4],[0,2],[2,1],[1,-1],[2,-3],[1,0],[3,0],[6,-1],[2,1],[12,9],[8,4],[3,-3],[1,-7],[3,-3],[4,-2],[2,-2],[1,-6],[-2,-8],[1,-7],[4,-8],[7,-7],[20,-7],[12,-9],[6,-2],[3,1],[8,4],[13,11],[11,14],[9,15],[10,35],[3,15],[9,37],[3,14],[0,7],[1,3],[2,3],[3,3],[2,3],[14,24],[4,6],[18,11],[3,4],[2,4],[6,6],[2,4],[1,5],[1,14],[2,5],[5,5],[6,2],[12,1],[7,3],[5,5],[4,7],[20,24],[11,5],[4,7],[5,8],[4,6],[6,2],[21,3],[4,1],[4,4],[9,11],[18,8],[4,6],[3,5],[6,8],[3,5],[2,5],[0,5],[2,5],[2,5],[5,4],[12,5],[11,12],[20,0],[6,4],[11,10],[7,2],[11,0],[6,1],[6,3],[17,14],[5,2],[5,-2],[13,-7],[6,-3],[7,1],[11,5],[51,5],[4,1],[3,1],[7,6],[3,1],[2,-1],[6,-3],[3,0],[15,7],[16,2],[13,-5],[4,0],[24,5],[69,36],[6,4],[6,0],[6,-2],[5,-6],[2,-5],[0,-6],[1,-4],[4,-1],[3,-1],[5,-3],[3,0],[40,4],[9,5],[26,35],[18,17],[7,10],[7,18],[2,8],[7,12],[16,20],[12,5],[3,-1],[8,-2],[9,-10],[7,-14],[8,-11],[11,-6],[9,0],[2,0],[8,9],[3,8],[2,9],[0,15],[3,1],[18,-14],[10,-5],[34,-4],[5,2],[11,5],[6,2],[3,1],[2,4],[2,4],[1,2],[3,1],[6,-1],[3,0],[10,9],[17,30],[9,10],[24,13],[13,3],[10,-4],[10,-11],[5,-1],[3,1],[6,3],[9,0],[3,0],[12,-3],[6,-5],[11,10],[4,2],[3,-1],[7,-6],[4,-1],[3,2],[8,8],[3,2],[5,0],[8,-6],[4,-2],[33,8],[3,-1],[5,-2],[4,-3],[2,-4],[4,-3],[9,0],[4,-3],[8,6],[3,1],[9,0],[20,-3],[20,4],[5,-1],[45,-33],[6,-9],[1,-4],[3,-1],[4,0],[3,0],[2,-3],[2,-8],[1,-2],[5,-4],[6,-3],[5,-1],[5,0],[-5,-29],[1,-9],[8,-10],[33,-29],[9,-4],[10,-1],[19,5],[15,8],[2,0],[8,0],[2,2],[3,7],[2,3],[11,8],[6,7],[4,21],[3,9],[5,8],[5,4],[13,6],[5,5],[10,15],[6,4],[7,1],[19,-7],[12,1],[46,18],[45,29],[11,11],[5,15],[1,12],[-1,10],[0,9],[3,11],[2,4],[12,14],[4,8],[2,5],[9,8],[13,6],[13,0],[11,-6],[10,-14],[1,-1],[0,-6],[1,-4],[2,-3],[2,-1],[3,-4],[3,-22],[5,-10],[4,2],[5,-3],[5,-5],[6,-2],[41,-4],[4,-3],[5,-5],[5,-6],[3,-7],[-1,-9],[9,-6],[11,-2],[7,1],[25,13],[8,8],[4,-4],[7,-3],[7,0],[2,5],[3,5],[12,17],[4,4],[1,3],[3,6],[2,7],[0,6],[0,7],[-1,4],[-11,20],[-9,12],[0,4],[3,1],[6,2],[3,1],[3,-2],[5,-5],[2,-1],[1,0],[1,-1],[1,-2],[1,-1],[2,2],[2,4],[1,1],[2,1],[2,-2],[5,-5],[3,-1],[3,1],[7,7],[3,0],[1,-1],[0,-2],[2,-5],[2,-7],[1,-4],[4,-1],[6,-1],[2,-1],[3,-3],[4,5],[5,3],[10,-13],[8,-15],[10,-12],[12,-4],[3,1],[2,2],[3,2],[3,-1],[3,-3],[3,-3],[3,-4],[2,-4],[13,2],[3,2],[5,10],[3,4],[-2,-12],[-4,-13],[-1,-12],[5,-8],[-5,-17],[10,-12],[16,-9],[11,-2],[40,16],[6,6],[6,8],[38,34],[5,-6],[5,-9],[6,-4],[12,1],[7,-1],[5,-5],[4,3],[3,-3],[4,-5],[4,-3],[9,-2],[10,2],[29,21]],[[53324,64397],[-19,-24],[-19,-24],[-19,-23],[-18,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-18,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-18,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-18,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-18,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-18,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-36,-45],[-28,-48],[-19,-35],[-20,-34],[-20,-35],[-20,-34],[-21,-38],[-11,-18],[-16,-30],[-17,-32],[-18,-32],[-17,-32],[-18,-32],[-17,-32],[-18,-33],[-17,-32],[-18,-32],[-17,-32],[-18,-32],[-17,-32],[-18,-32],[-18,-32],[-17,-33],[-18,-32],[-17,-32],[-22,-40],[-12,-17],[-12,-9],[-36,-15],[-28,-11],[-61,-25],[-61,-25],[-27,-11],[-53,-22],[-52,-21],[-53,-22],[-52,-21]],[[58920,34575],[1,152],[-3,49],[-13,50],[-2,17],[-4,61],[2,17],[9,47],[1,16],[-2,20],[-3,22],[-2,22],[4,18],[-19,9],[-8,9],[-7,13]],[[61232,44266],[5,4],[4,-2],[2,-6],[-3,-8],[5,-3],[7,14],[5,-7],[1,-12],[-3,-10],[-4,-8],[-2,-6],[2,-10],[5,-4],[6,-2],[4,-5],[2,-9],[1,-20],[2,-9],[4,-5],[11,-3],[4,-4],[2,-10],[-4,-3],[-10,2],[-9,-5],[-24,-39],[2,-20],[2,3],[2,3],[1,5],[1,5],[5,-10],[20,-20],[5,-12],[-5,-12],[-16,-15],[-5,-10],[-5,-15],[-4,-16],[3,-22],[-2,-21],[2,-6],[3,2],[4,15],[3,3],[7,-6],[0,-17],[-4,-19],[-4,-12],[-9,-20],[-2,-6],[0,-8],[2,-15],[0,-6],[-3,-10],[-19,-28],[-2,-8],[-4,-21],[-2,-6],[-4,-2],[-6,0],[-4,-1],[3,-9],[3,-12],[2,-4],[2,12],[4,-5],[4,-9],[4,-9],[3,-9],[8,4],[1,-19],[-1,-19],[-2,-23],[-3,-19],[-2,-8],[-4,-8],[-1,-9],[3,-9],[5,-9],[2,-7],[-2,-7],[-6,-15],[-1,-5],[3,-8],[1,-7],[1,-19],[1,-12],[5,-10],[1,-4],[1,-3],[0,-29],[2,-10],[3,-10],[3,3],[1,1],[4,-4],[-8,-16],[-1,-17],[1,-18],[4,-17],[9,-25],[0,-5],[-5,-10],[-1,-6],[-1,-19],[-3,-29],[-1,-8],[1,-10],[5,-17],[2,-9],[-1,-10],[-2,-12],[-3,-11],[-4,-4],[-4,3],[-4,3],[-2,-2],[-1,-12],[7,3],[6,-9],[4,-16],[2,-15],[-1,-8],[-2,-7],[-1,-8],[1,-9],[2,-5],[4,-1],[8,2],[0,-6],[-2,-5],[-2,-4],[-7,-3],[-2,-6],[-2,-12],[-7,-22],[-1,-10],[4,-9],[3,-3],[4,-1],[11,-1],[2,-3],[-1,-40],[1,-9],[3,-4],[3,-1],[8,-9],[2,-5],[-2,-7],[-3,-1],[-5,11],[-3,0],[-2,-6],[0,-7],[3,-26],[2,0],[3,3],[4,-1],[2,-6],[2,-15],[1,-3],[4,-2],[1,-5],[0,-7],[-1,-6],[-4,-10],[-6,-3],[-6,4],[-5,9],[0,-5],[1,-6],[0,-5],[1,-1],[-4,-5],[-8,2],[-1,-5],[2,-5],[3,-5],[3,-6],[-2,-12],[-3,-16],[-1,-5],[-3,-4],[-1,-1],[0,2],[-2,3],[0,5],[-1,4],[-3,4],[-2,0],[-2,-1],[-8,-9],[-6,-8],[-4,-10],[-2,-9],[0,-11],[2,-6],[14,-27],[4,-3],[4,3],[4,10],[-2,9],[-3,8],[-1,10],[2,4],[5,0],[4,-2],[4,-4],[4,-3],[4,3],[4,0],[2,-11],[-2,-19],[-6,-34],[-2,-20],[1,-10],[3,-20],[0,-11],[-2,-44],[-1,-12],[-4,-7],[-4,-6],[-2,-8],[1,-7],[3,3],[7,12],[0,-48],[2,1],[3,1],[1,1],[-1,-13],[-9,-19],[-2,-10],[0,-25],[-2,-13],[-3,-8],[5,-9],[4,-11],[4,-9],[6,-4],[0,-4],[-3,-9],[-10,-17],[-3,-12],[1,-13],[8,-34],[1,-11],[5,-70],[3,-16],[0,-7],[1,-6],[4,-9],[2,-5],[2,-6],[0,-4],[1,-15],[3,-26],[0,-12],[-1,-16],[-3,-7],[-11,-9],[3,-4],[3,-5],[1,-7],[0,-9],[-3,-6],[-4,-3],[-8,-3],[-8,-10],[2,-10],[4,-12],[-2,-17],[4,3],[3,11],[3,1],[2,-5],[-1,-6],[-1,-6],[4,-6],[-4,-6],[-2,-2],[3,-3],[3,0],[3,3],[2,4],[0,18],[7,11],[14,12],[3,-5],[4,-9],[1,-9],[0,-17],[1,-7],[5,-6],[-3,-8],[-2,-11],[0,-12],[1,-10],[-4,-2],[-6,-11],[-3,-3],[-4,3],[-5,11],[-5,2],[6,-64],[-5,3],[-3,-4],[1,-6],[3,-6],[-6,-12],[1,-3],[1,-3],[2,-2],[-2,-27],[0,-10],[6,12],[4,13],[8,50],[2,5],[17,17],[3,1],[8,-6],[8,-14],[4,-17],[-3,-18],[-4,-5],[-8,-4],[-5,-3],[-3,-7],[0,-5],[3,-3],[4,0],[3,5],[2,5],[3,3],[4,-4],[1,-8],[0,-11],[-6,-33],[0,-7],[3,-10],[1,-2],[1,-2],[2,-3],[1,-5],[1,-4],[0,-8],[0,-5],[1,-9],[-4,-35],[0,-3],[0,-3],[2,-4],[1,-4],[0,-3],[-1,-3],[-1,-2],[-14,-12],[-2,-5],[-1,-5],[-10,-21],[-4,-8],[-4,-5],[-5,-2],[-5,-1],[-3,3],[-3,18],[-3,7],[1,-11],[1,-11],[1,-10],[5,-8],[4,-2],[13,0],[4,2],[3,-10],[3,-13],[2,-13],[-1,-9],[-4,7],[-2,1],[-3,-3],[-4,-1],[-15,8],[-3,-11],[4,-17],[10,-29],[-8,-6],[-9,-2],[-8,-7],[-5,-17],[-4,3],[-6,2],[-5,1],[-4,-2],[-2,-6],[-2,-22],[-2,-8],[10,-4],[5,-3],[4,-6],[2,18],[6,7],[7,-2],[7,-9],[4,-13],[2,-19],[-1,-16],[-6,-6],[3,-9],[0,-8],[-11,-23],[-1,-4],[1,-10],[-1,-5],[-2,-5],[-1,-4],[-6,-10],[-1,-4],[-1,-4],[1,-10],[-1,-4],[-2,-8],[-1,-9],[1,-6],[3,1],[-2,-9],[-2,-8],[-3,-6],[-5,-6],[-3,-3],[-3,0],[-7,3],[-1,-15],[-4,-11],[-11,-16],[-4,-11],[-17,-59],[-56,-119],[-12,-14],[-1,-5],[-1,-8],[-1,-6],[-3,-3],[-3,-1],[-3,-2],[-3,-4],[-2,-6],[4,-6],[5,6],[10,21],[2,-14],[-2,-10],[-3,-10],[-2,-11],[-1,-15],[-4,-9],[-9,-17],[-11,-45],[-8,-22],[-9,-10],[-18,-1],[-5,-3],[-17,-19],[-9,-15],[0,-2],[0,-5],[2,-2],[3,-1],[0,-7],[0,-15],[0,-7],[2,-12],[4,-11],[4,-8],[5,-5],[-12,-17],[-5,-3],[0,4],[-1,8],[-1,4],[-2,-3],[-3,-1],[-3,-1],[-3,1],[1,-3],[3,-7],[1,-2],[-7,-6],[-3,-4],[-3,-7],[1,-1],[0,-3],[0,-5],[-2,-5],[-4,-10],[-6,-8],[-11,-13],[-8,-14],[-12,-8],[-2,-4],[-7,-14],[-49,-52],[-43,-56],[-4,-8],[-7,-22],[-4,-5],[-5,5],[0,-2],[0,-10],[-4,-8],[-4,-5],[-6,-3],[5,-4],[4,3],[3,0],[0,-12],[-2,-10],[-3,-10],[-4,-7],[-5,-5],[-10,-2],[-9,1],[-9,-2],[-17,-22],[-10,-7],[-44,-8],[-4,3],[-6,14],[-5,3],[6,-17],[-5,-13],[-10,-8],[-10,-3],[2,11],[-13,-27],[-5,0],[-3,4],[-2,5],[-2,1],[-2,-4],[-1,-4],[0,-5],[1,-5],[-78,-64],[-4,-6],[-6,-15],[-4,-5],[-5,0],[-5,14],[0,40],[-4,11],[2,-12],[-4,-3],[-3,1],[-4,3],[-3,3],[4,-12],[7,-14],[3,-13],[-6,-10],[5,-8],[-6,-10],[-18,-14],[-36,-16],[-16,-17],[-36,-50],[-2,-1],[0,7],[-7,-6],[-10,-18],[-11,-15],[-10,3],[-6,-16],[-36,-43],[-8,-16],[-4,-6],[-4,-2],[-3,5],[-4,-14],[-3,-4],[-4,-2],[-7,0],[-3,-4],[-1,-8],[-3,-10],[-8,-9],[-8,-5],[-6,4],[-1,-22],[-8,-21],[-20,-35],[-20,-69],[-8,-16],[0,5],[-2,12],[-2,-4],[-3,7],[-2,6],[-3,4],[-3,4],[-4,6],[-1,8],[0,8],[-1,9],[-6,13],[-8,6],[-7,-4],[-4,-15],[9,12],[6,-9],[4,-20],[2,-19],[1,-22],[2,-8],[10,-4],[3,-5],[3,-5],[4,-5],[-9,-32],[-3,-11],[-8,-15],[-2,-8],[-1,-11],[-2,-7],[-5,2],[-7,4],[-5,1],[-4,-6],[-3,-8],[-4,-19],[5,4],[8,13],[4,4],[-3,-13],[-20,-48],[-11,-19],[-26,-62],[-13,-25],[-9,-4],[-2,-24],[-2,-8],[-2,2],[-6,6],[1,-12],[1,-4],[-3,1],[-5,-1],[-4,-2],[0,-4],[2,-8],[-2,-7],[-5,-12],[-11,-47],[-4,-13],[1,7],[-1,6],[-2,1],[-2,-2],[-1,-5],[-1,-13],[-2,-12],[2,-2],[3,2],[-1,5],[1,-1],[2,-2],[1,-1],[0,-2],[0,-6],[4,-13],[-2,-6],[-5,-4],[-4,-3],[-5,-4],[-6,4],[-6,6],[-6,4],[-6,13],[-9,38],[-1,-19],[6,-41],[2,-21],[-4,-19],[2,-2],[2,-3],[1,-4],[1,-5],[-1,-3],[-3,1],[-4,4],[-9,-3],[-8,-5],[-10,-2],[-4,8],[-1,34],[0,4],[1,6],[0,5],[-2,2],[-3,-1],[-1,-2],[-9,-19],[-13,-41],[-6,-9],[-9,-2],[2,12],[-1,7],[-3,0],[-4,-6],[-1,-9],[-1,-11],[-2,-10],[-3,-7],[-6,-3],[-4,5],[-2,8],[-4,3],[-2,-2],[-3,-3],[-1,-4],[-1,-6],[1,-6],[2,1],[2,3],[2,0],[-1,-10],[-40,-55],[-3,-6],[-4,-13],[-3,-5],[-4,2],[-3,-8],[-6,-22],[2,2],[1,0],[4,2],[0,-4],[-7,-9],[-8,-12],[-13,-28],[5,0],[-2,-8],[-12,-29],[-2,-3],[-4,-1],[-2,-2],[-1,-5],[-1,-6],[-1,-5],[-15,-39],[-28,-61],[-33,-53],[-26,-56],[-10,-8],[-7,-4],[-15,-32],[-8,-13],[-3,6],[-3,-4],[-8,-19],[-15,-20],[-8,7],[-3,5],[-2,8],[-1,17],[-2,9],[-2,3],[-2,3],[-12,21],[-13,10],[-3,5],[-11,33],[-2,5],[-5,4],[-1,9],[-1,11],[-2,9],[-3,4],[-4,3],[-5,3],[-4,2],[-4,-4],[-3,-17],[-4,-3],[0,-5],[5,1],[5,9],[5,3],[4,-2],[4,-4],[3,-7],[2,-18],[2,-9],[15,-43],[2,-3],[3,-2],[4,-2],[3,-2],[2,-4],[2,-10],[7,-15],[1,-5],[-1,-16],[-5,-16],[-6,-11],[-7,2],[1,-10],[2,0],[4,4],[2,2],[5,-3],[1,-4],[-2,-17],[0,-10],[2,-19],[0,-8],[0,-4],[0,-4],[-1,-2],[-2,-4],[-1,-5],[0,-6],[1,-4],[1,-5],[0,-13],[0,-6],[1,-4],[2,-9],[1,-9],[2,-9],[0,-5],[-1,-5],[-2,-5],[-1,-4],[-2,-7],[-5,3],[-9,10],[-5,-2],[-4,-4],[-3,0],[-2,10],[0,-5],[0,-3],[0,-4],[4,-10],[20,-23],[0,-3],[-2,-5],[-2,-7],[-2,-9],[-3,-20],[-1,-6],[-6,-12],[-1,-9],[6,-9],[-1,-7],[-4,-6],[-4,-3],[-4,2],[-4,6],[1,-9],[1,-9],[2,-7],[2,-6],[4,-5],[6,-3],[3,-2],[1,-5],[1,-8],[0,-10],[-1,-8],[-11,-19],[-2,-7],[10,10],[6,3],[4,-3],[1,-15],[2,-6],[4,6],[3,-12],[3,-5],[5,-5],[5,-8],[3,-7],[2,-8],[1,-9],[1,-12],[1,-6],[8,12],[4,-5],[0,-9],[-4,-6],[-3,-6],[1,-11],[2,5],[2,4],[3,2],[3,1],[13,-2],[2,-5],[9,-15],[1,-6],[0,-8],[0,-16],[3,4],[2,-1],[2,-4],[0,-7],[-1,-4],[-4,-8],[0,-6],[1,-11],[9,-16],[3,-8],[-2,-7],[-1,-8],[-1,-8],[0,-9],[8,12],[4,2],[5,-6],[2,-4],[1,-1],[0,-2],[1,-6],[0,-4],[-1,-4],[0,-3],[3,-1],[-2,-13],[-1,-6],[-3,-6],[-3,4],[-3,1],[-2,-3],[-1,-7],[1,-5],[2,-1],[1,0],[1,0],[1,-4],[-1,-5],[0,-16],[-1,-9],[-4,-5],[-5,-2],[-2,2],[-2,4],[-2,1],[-2,-7],[-1,-9],[2,-4],[2,-2],[5,-6],[1,0],[1,-1],[1,-2],[0,-3],[-1,-4],[0,-2],[-1,0],[1,-7],[-1,-5],[1,-4],[3,-4],[-2,-7],[2,-3],[3,-2],[2,-4],[1,-8],[-2,-4],[-3,-1],[-3,-3],[-3,-8],[1,-2],[3,-1],[3,-6],[0,-6],[0,-26],[7,15],[8,70],[0,-10],[-2,-38],[-2,-17],[2,-52],[9,-46],[17,-57],[4,-11],[3,-4],[9,-40],[1,-26],[-2,-51],[3,-25],[8,-37],[1,-10],[2,-37],[2,-28],[3,-50],[-8,-152],[0,-25],[1,-15],[4,-7],[5,-3],[5,-6],[5,-19],[4,-9],[2,6],[-1,26],[2,9],[7,8],[-7,21],[-4,29],[0,29],[5,22],[-1,5],[0,5],[1,4],[2,3],[3,-18],[3,-4],[3,10],[-7,25],[-2,3],[1,7],[6,17],[1,3],[-1,5],[0,3],[1,2],[2,0],[1,2],[2,2],[0,1],[1,7],[3,3],[3,-1],[3,-2],[1,-6],[0,-7],[-1,-14],[5,-100],[3,10],[1,11],[1,33],[2,14],[1,10],[2,0],[-4,-73],[0,-12],[2,-39],[-1,-13],[-14,-92],[0,-74],[8,-129],[5,-23],[3,8],[1,3],[0,5],[5,-4],[4,0],[2,3],[-2,6],[0,3],[6,-5],[-1,-17],[-11,-41],[-6,-17],[-10,-53],[-6,-18],[-1,-9],[-1,-12],[0,-12],[3,-22],[1,-12],[-2,-25],[-17,-97],[-4,-77],[0,-51],[-1,-12],[-1,-13],[-3,-5],[-3,12],[0,11],[2,11],[-1,7],[-7,3],[-5,-2],[1,-4],[3,-5],[2,-1],[1,-14],[1,-6],[-1,-11],[-3,-24],[0,-12],[0,-19],[0,-8],[-1,-6],[-2,-8],[-1,-6],[0,-4],[1,-11],[1,-7],[-1,-7],[-2,-11],[-1,-6],[2,0],[13,30],[-4,21],[-1,11],[3,9],[4,1],[4,-5],[8,-13],[5,-4],[3,0],[2,5],[2,41],[-1,7],[0,4],[11,-5],[3,-7],[1,-26],[1,-5],[2,-1],[1,-3],[-16,-103],[-1,-12],[0,-8],[3,-12],[1,-6],[-1,-6],[-2,-4],[-2,-3],[-1,-3],[-2,-12],[-3,-11],[-43,-124],[-31,-67],[-1,-6],[0,-8],[-1,-6],[-1,-5],[-21,-40],[-82,-85],[-45,-42],[-46,-23],[-1,0],[-36,-30],[-7,-4],[-31,-26],[-16,-5],[-62,-44],[-56,-41],[-40,-41],[-34,-23],[-41,-44],[-11,-5],[0,4],[5,4],[4,6],[4,7],[2,7],[-3,-2],[-12,-11],[-2,-6],[-3,-4],[-7,-2],[-5,-4],[2,-12],[1,2],[4,3],[-4,-13],[-6,-8],[-14,-12],[-6,-8],[-72,-98],[-8,-17],[-15,-40],[-6,-24],[-5,-38],[-4,-13],[2,-30],[-1,-5],[0,4],[0,4],[-2,5],[-1,0],[-2,-5],[-3,-3],[-2,-4],[-1,-6],[0,-8],[-1,-8],[-1,-8],[-2,-6],[-13,-25],[-2,-6],[-2,-4],[-7,-12],[-2,-3],[-4,0],[-2,2],[-6,7],[-4,2],[-5,1],[-5,-3],[-4,-6],[-2,-12],[1,-11],[3,-6],[3,2],[-1,3],[1,20],[2,2],[4,-2],[4,-2],[2,-2],[2,-5],[2,-10],[1,-4],[3,-3],[6,-4],[3,-5],[2,-6],[2,-14],[2,-6],[2,-5],[3,-3],[1,-3],[2,-18],[5,-26],[1,-12],[5,8],[7,-3],[7,-7],[4,-6],[6,-15],[4,-13],[4,-12],[5,-9],[3,-3],[3,3],[3,3],[5,1],[-3,19],[0,15],[1,16],[3,19],[3,27],[2,7],[4,5],[10,9],[1,-15],[-8,-95],[-3,-165],[-3,-45],[-3,-13],[-1,-7],[2,-25],[-2,-46],[0,-6],[-3,-17],[0,-6],[2,-8],[1,-6]],[[59140,35038],[-3,17],[6,16],[10,13],[8,6],[0,-6],[-2,-18],[-3,-16],[-1,-4],[-2,-5],[-1,-1],[-1,3],[-3,3],[-1,3],[0,4],[-1,2],[-4,-1],[0,-2],[-2,-14]],[[59852,37708],[3,12],[3,-1],[1,-9],[1,-14],[-2,-43],[-10,-83],[-6,0],[-2,8],[0,12],[3,45],[9,73]],[[61085,40831],[10,-2],[1,-14],[-2,-12],[-7,-15],[-2,-18],[0,-10],[-1,-8],[-7,-5],[-6,5],[-7,11],[-4,20],[1,23],[3,11],[8,8],[13,6]],[[58059,48858],[5,60],[6,13],[16,2],[5,-1],[17,-16],[6,-4],[12,-3],[6,-3],[5,-6],[3,-6],[0,-2],[0,-7],[1,-8],[0,-1],[6,-12],[2,-7],[-1,-7],[-4,-10],[-1,-6],[1,-7],[3,-13],[0,-7],[2,-11],[7,1],[12,11],[5,1],[5,-2],[11,-4],[6,-7],[5,3],[5,7],[7,2],[2,0],[3,2],[2,2],[8,7],[2,0],[3,-3],[11,-8],[6,-1],[6,1],[3,4],[1,5],[1,13],[2,5],[3,0],[6,-4],[7,0],[6,2],[5,7],[6,12],[3,11],[4,12],[2,13],[2,13],[0,6],[1,61],[6,45],[-2,45],[2,31],[0,5],[1,4],[3,0],[2,-3],[2,-3],[0,-1],[5,-9],[2,-1],[3,1],[2,-1],[3,-2],[4,-6],[8,-21],[5,-9],[6,-8],[6,-5],[6,0],[5,7],[13,34],[0,4],[0,5],[1,4],[4,0],[8,-9],[4,-2],[4,0],[6,3],[5,3],[4,5],[3,7],[2,3],[1,4],[2,5],[5,3],[1,-2],[9,-4],[1,1],[1,-4],[2,-8],[1,-5],[15,-26],[10,-9],[9,-1]],[[58216,49647],[11,-1],[6,1],[5,3],[5,7],[5,7],[4,5],[7,2],[3,-1],[6,-8],[2,-1],[3,2],[1,12],[3,6],[2,4],[3,1],[2,0],[3,-4],[8,-24],[1,-12],[1,-25],[3,-12],[4,-10],[6,-3],[6,1],[6,5],[19,22],[2,2],[3,13],[4,8],[1,1],[8,10],[12,9],[3,6],[1,9],[2,23],[2,8],[2,3],[2,1],[2,0],[2,1],[5,6],[12,25],[4,10],[3,10],[0,4],[1,9],[1,3],[1,2],[1,2],[4,4],[2,3],[1,9],[2,25],[2,8],[5,3],[4,-1],[5,-3],[5,-1],[4,2],[4,4],[4,1],[4,-3],[3,-2]],[[77429,56599],[-2,-1],[-1,-3],[-1,-3],[-4,-15],[-4,-30],[-2,-23],[-3,-9],[-6,-13],[-6,-18],[-15,-67],[-8,-24],[-5,-9],[-2,6],[0,6],[-3,8],[-1,5],[0,6],[0,12],[0,6],[-2,19],[0,27],[-5,19],[-1,7],[-1,4],[1,4],[4,24],[2,10],[1,27],[3,21],[0,13],[-4,34],[-5,18],[0,12],[1,25],[-1,25],[-9,43],[-1,25],[0,25],[1,9],[4,3],[6,-2],[3,-5],[5,-18],[3,7],[0,8],[-2,8],[-3,6],[3,3],[3,-1],[3,-4],[3,-6],[2,9],[2,16],[1,7],[5,14],[1,8],[-2,11],[3,-1],[3,1],[2,3],[2,5],[-3,2],[-7,1],[-3,3],[-1,3],[-1,5],[1,4],[9,5],[3,7],[3,7],[3,3],[2,-1],[3,-5],[2,-2],[1,2],[4,3],[4,1],[1,-2],[1,7],[2,11],[0,11],[-2,8],[3,4],[-2,5],[-5,8],[-1,3],[1,7],[1,3],[2,1],[2,3],[2,8],[-1,8],[-2,10],[-1,13],[-5,-3],[-4,5],[-5,18],[13,7],[6,8],[2,11],[0,19],[4,17],[1,12],[2,4],[0,3],[-3,10],[-6,28],[-1,10],[0,11],[1,10],[-6,-3],[-2,5],[3,21],[2,11],[6,5],[11,2],[-3,8],[0,23],[-3,9],[-3,2],[-4,-4],[-2,2],[-1,6],[2,10],[-1,5],[3,10],[1,9],[-1,21],[1,10],[1,14],[3,10],[5,-1],[3,4],[2,-2],[2,-4],[3,-2],[3,2],[1,6],[0,7],[1,5],[4,2],[5,-2],[5,-4],[3,-4],[2,0],[-4,17],[-20,8],[-6,11],[2,15],[6,13],[4,14],[-5,15],[2,-10],[-1,-7],[-3,-5],[-3,-7],[-6,-24],[-2,0],[-5,1],[-1,-3],[-1,-1],[-3,-7],[-1,-2],[-3,-3],[-1,-7],[0,-9],[-1,-7],[-3,-6],[-2,-3],[-3,2],[-8,9],[-8,14],[-2,4],[0,6],[-2,7],[0,5],[1,5],[3,11],[2,3],[1,-1],[1,1],[0,6],[-8,0],[4,13],[2,3],[2,1],[2,0],[3,-1],[3,9],[2,10],[4,9],[7,0],[-4,9],[-6,-1],[-11,-8],[-23,0],[2,12],[6,5],[14,0],[5,2],[5,6],[4,7],[3,13],[4,3],[3,1],[2,2],[0,20],[0,6],[-2,10],[-3,7],[0,7],[2,9],[-13,-2],[-2,4],[-3,6],[-3,8],[0,6],[1,8],[-1,5],[-2,5],[1,9],[2,3],[3,2],[6,3],[0,4],[-4,0],[3,6],[8,10],[4,6],[1,7],[-1,7],[-2,6],[-2,2],[-9,-3],[-7,-7],[-5,-9],[-7,-9],[-2,2],[-5,4],[-2,2],[-5,10],[-2,10],[1,12],[3,11],[4,7],[6,3],[24,11],[6,7],[3,12],[-2,10],[-4,5],[-10,8],[-6,14],[-2,2],[-4,3],[0,6],[1,13],[0,13],[2,8],[3,4],[6,2],[11,0],[3,2],[2,4],[1,4],[-2,2],[-3,0],[-3,6],[-3,2],[-3,1],[-3,0],[-3,0],[-2,3],[-2,13],[2,12],[3,13],[2,13],[1,2],[2,0],[2,-1],[1,1],[0,3],[-2,9],[1,17],[1,7],[2,6],[2,3],[1,5],[1,9],[-1,1],[-8,-3],[-3,1],[-2,2],[-1,4],[1,5],[3,2],[3,0],[2,1],[2,5],[-2,3],[-12,-3],[-3,6],[0,7],[0,-2],[2,1],[3,3],[2,1],[1,2],[1,6],[-4,49],[-3,3],[-7,16],[-3,5],[3,13],[2,5],[2,2],[-1,4],[-4,21],[-3,12],[0,6],[-1,23],[0,7],[2,5],[-2,17],[-1,43],[-3,9],[-4,4],[-15,24],[-1,22],[-1,7],[-3,-8],[-2,5],[0,6],[0,6],[0,7],[-4,18],[0,8],[4,6],[-1,4],[0,5],[1,11],[-3,-3],[-1,-5],[-2,-12],[1,10],[-1,9],[-2,8],[-2,6],[-1,2],[-2,2],[-1,3],[-1,5],[0,4],[3,5],[0,5],[-1,7],[-7,19],[-2,12],[-3,5],[-4,5],[-3,2],[1,8],[-1,5],[-6,8],[0,13],[-11,30],[-2,14],[2,-4],[1,8],[-7,3],[-5,0],[-4,4],[-1,19],[3,22],[1,9],[-1,8],[-1,8],[0,7],[2,9],[-2,6],[-4,33],[0,26],[0,6],[-1,6],[0,4],[1,5],[0,3],[-3,6],[-4,10],[-3,11],[-1,10],[-2,0],[0,-7],[-2,-13],[0,-7],[1,-3],[4,-10],[1,-3],[0,-16],[-2,-8],[-3,-8],[0,-8],[4,-22],[1,-11],[-1,-11],[-2,-21],[-3,-49],[4,-27],[1,-11],[-1,-10],[-2,-11],[-1,-3],[-1,-3],[-1,-3],[-1,-7],[-1,-7],[0,-6],[1,-12],[3,-7],[1,-4],[-2,-4],[-2,0],[-2,3],[-4,9],[0,-5],[-1,-4],[0,-3],[-1,6],[0,8],[0,7],[-2,3],[-2,2],[2,6],[2,6],[2,2],[-1,3],[-1,6],[-1,4],[4,2],[1,7],[0,9],[-2,9],[5,0],[0,5],[-2,5],[-4,3],[-6,-1],[-2,1],[-4,4],[1,3],[2,10],[1,3],[-7,7],[-3,17],[2,15],[6,-2],[-2,26],[0,24],[2,10],[0,6],[-1,2],[-1,1],[-3,3],[-2,3],[-1,4],[-1,14],[-3,24],[-1,13],[1,13],[6,18],[2,9],[1,8],[2,11],[1,8],[0,5],[-4,21],[4,0],[-1,8],[-1,6],[-2,1],[-2,-7],[-13,37],[-7,33],[-6,18],[-2,13],[-2,15],[0,12],[1,13],[3,18],[2,11],[-3,-5],[-2,-6],[-2,-4],[-3,3],[-1,6],[-3,27],[-8,32],[-3,17],[4,16],[-7,10],[-4,15],[0,17],[5,15],[11,6],[7,-14],[6,-19],[10,-10],[-10,27],[-2,13],[5,4],[-5,4],[-4,4],[-1,7],[2,10],[-2,3],[-2,6],[-1,5],[-1,4],[0,3],[-2,-2],[-2,-7],[1,-1],[1,-3],[0,-5],[0,-3],[-4,-7],[-4,4],[-2,10],[-1,13],[-2,0],[-1,-11],[2,-24],[-2,-5],[-2,-2],[-1,-3],[-2,-3],[-4,0],[-1,1],[-2,3],[-1,4],[-1,4],[-8,68],[-6,17],[2,6],[1,6],[0,14],[0,7],[3,8],[0,5],[-1,15],[-2,9],[-4,6],[-4,5],[1,5],[2,3],[3,1],[3,-1],[-1,5],[-1,7],[-2,5],[4,9],[1,12],[-1,47],[1,10],[3,11],[-8,0],[-4,1],[-3,7],[-7,26],[-1,5],[0,10],[1,15],[-1,7],[-4,6],[1,6],[2,3],[1,2],[3,1],[3,20],[2,-3],[2,3],[5,8],[-2,7],[-7,42],[0,8],[4,17],[-2,7],[-7,36],[0,3],[1,5],[0,5],[0,5],[-2,4],[1,5],[0,9],[-1,9],[-2,7],[-2,5],[1,5],[1,5],[1,5],[-1,5],[-4,9],[-1,4],[0,4],[3,5],[0,4],[1,38],[-2,8],[-4,2],[2,17],[-6,14],[-15,22],[-8,21],[-8,14],[-1,5],[0,3],[-2,24],[0,6],[1,4],[1,3],[2,1],[5,4],[3,9],[2,10],[5,67],[3,13],[0,7],[0,7],[-1,6],[-2,11],[-3,23],[-1,26],[1,25],[3,24],[4,17],[6,16],[8,11],[10,4],[-1,5],[-2,3],[-2,3],[-2,1],[-3,-3],[-14,-20],[-6,-5],[-5,-1],[-18,5],[-7,-1],[-6,-3],[-2,-2],[-1,-2],[-2,-3],[-2,-1],[-2,1],[-3,2],[-2,1],[-8,-1],[-5,-4],[-5,-7],[-4,-13],[-10,88],[0,14],[-2,15],[-5,-17],[-7,4],[-8,23],[-5,21],[-2,22],[0,16],[4,12],[-3,7],[-1,6],[1,6],[1,15],[-2,0],[-2,-13],[-1,-7],[0,-9],[-3,5],[-1,7],[0,8],[0,9],[4,16],[-3,4],[-2,-1],[-3,-3],[-2,12],[1,15],[3,30],[0,9],[-1,5],[-5,10],[-2,5],[-2,7],[-1,9],[-1,8],[5,15],[8,-4],[9,-6],[7,7],[-11,11],[-5,3],[-6,2],[-6,-3],[-3,-7],[-2,-11],[-3,-12],[-5,13],[-3,20],[-2,18],[4,10],[0,4],[-6,3],[-2,10],[0,12],[-3,12],[-6,6],[-7,4],[-4,6],[1,12],[-30,46],[-2,5],[-2,6],[-1,10],[1,19],[-2,8],[-3,-9],[-2,-23],[-2,-9],[-1,4],[-3,5],[0,4],[-2,-2],[-2,-2],[-1,-3],[-1,-2],[2,-4],[6,-17],[10,-12],[7,-13],[0,-19],[-6,-14],[-7,-12],[-4,-17],[2,-26],[11,-40],[4,-20],[0,-25],[-2,-9],[-5,-18],[-2,-26],[-3,-4],[-9,4],[1,-5],[1,-5],[2,-5],[2,-5],[-4,1],[-6,3],[-4,0],[0,-4],[4,-4],[4,-6],[2,-6],[2,-8],[-1,-10],[-4,-13],[-2,-13],[-4,-21],[-4,-1],[-2,-4],[1,-5],[2,-6],[-5,-15],[-4,-9],[-11,-17],[-3,-6],[-5,-17],[-5,-32],[-11,-18],[-7,-16],[-16,-13],[-17,-7],[-17,-4],[-10,16],[-6,2],[-6,6],[-19,29],[-4,9],[-2,9],[0,14],[-1,12],[-2,9],[-6,24],[-1,13],[-1,12],[0,13],[2,9],[11,15],[4,7],[-9,1],[-14,-22],[-10,-4],[2,-5],[5,-12],[1,-5],[2,-22],[3,-10],[7,-18],[1,-11],[0,-7],[-3,-13],[-1,-6],[1,-7],[3,-12],[14,-38],[4,-16],[5,-6],[2,-9],[-4,-14],[-4,-5],[-6,-24],[-17,-13],[-16,-7],[-6,-4],[-7,-2],[-6,4],[-3,12],[-3,7],[-19,16],[16,-31],[1,-15],[-14,-32],[-11,-20],[-5,-4],[-5,2],[0,4],[2,8],[0,11],[-4,-9],[-4,-10],[-4,-9],[-7,-1],[1,5],[1,16],[-20,-41],[-5,-18],[-6,-3],[-6,3],[-3,8],[0,10],[-1,11],[-2,11],[-3,6],[3,-57],[-2,-12],[-8,-24],[-2,-10],[0,-28],[-1,-8],[-6,-23],[-39,-86],[-18,-26],[-8,-16],[-4,-6],[-6,-4],[-6,-1],[-18,5],[-4,3],[-2,7],[-1,58],[2,5],[3,4],[3,8],[1,11],[-1,9],[7,13],[5,17],[2,20],[2,19],[-1,13],[-1,9],[-4,19],[-1,11],[1,7],[2,8],[2,11],[-2,0],[-2,-6],[-3,-5],[-2,-6],[-1,-7],[1,-10],[4,-18],[1,-11],[-1,-27],[-1,-7],[-8,-22],[-4,-26],[-7,-16],[-6,-5],[-4,15],[2,13],[5,15],[4,18],[-1,19],[-9,-31],[-5,-19],[-1,-20],[1,-44],[-3,-14],[-11,-5],[-8,6],[-5,17],[-3,22],[0,23],[6,67],[-2,19],[-6,-32],[-3,24],[4,25],[7,20],[10,7],[10,-1],[3,1],[2,4],[-1,3],[-3,1],[-3,0],[-2,2],[-1,5],[-2,2],[-1,-1],[-5,-3],[-2,-1],[-2,-1],[-1,2],[-2,8],[-2,0],[-2,-10],[-8,-22],[-6,-12],[-1,-15],[2,-30],[-1,-16],[-5,-74],[-2,-14],[-3,-10],[-3,-2],[-4,-2],[-4,-2],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-2,-2],[-7,0],[-3,0],[-10,9],[-12,2],[-3,5],[3,11],[3,4],[3,3],[3,4],[1,7],[0,5],[-1,5],[-1,5],[-1,1],[-6,-13],[-3,-2],[-1,13],[0,19],[0,8],[-3,17],[-1,7],[2,8],[3,9],[3,8],[3,4],[4,1],[5,4],[4,7],[1,12],[-10,-13],[-1,11],[-1,26],[-5,20],[0,9],[2,8],[5,17],[3,8],[5,5],[7,2],[5,3],[4,8],[3,11],[2,11],[-1,-4],[-4,-8],[-1,-3],[-1,-3],[-7,-3],[-5,-4],[-6,0],[-3,-2],[-6,-19],[-1,-3],[-3,-5],[-2,-12],[0,-26],[1,-6],[2,-12],[1,-6],[0,-4],[1,-2],[1,-3],[-4,-13],[0,-3],[-3,-8],[-16,-22],[-4,-11],[-8,-37],[-2,-8],[-4,-7],[-5,-5],[-6,-1],[-7,5],[-2,8],[-2,11],[-2,13],[-1,-11],[-3,1],[-3,8],[-3,9],[8,11],[10,11],[11,15],[8,20],[2,30],[2,5],[3,5],[2,5],[1,6],[1,5],[0,12],[1,2],[2,3],[3,5],[0,8],[-5,-6],[-3,-7],[-4,-19],[-7,-26],[-2,-11],[-4,-15],[-4,-8],[-5,-6],[-16,-31],[-7,-7],[-6,2],[-1,16],[7,20],[15,29],[6,20],[4,25],[2,26],[-1,26],[-4,19],[-1,10],[2,10],[4,10],[5,36],[2,4],[3,2],[3,-1],[0,4],[-3,6],[-5,56],[1,7],[1,8],[2,3],[2,1],[2,3],[0,9],[-10,-10],[-4,2],[-2,12],[-1,-13],[3,-52],[0,-34],[-1,-9],[-7,-16],[-1,-8],[-2,-15],[-4,-14],[-6,-10],[-6,-4],[-1,4],[3,10],[6,15],[6,24],[-2,11],[-3,-1],[-3,-10],[-2,-19],[-2,-6],[-3,-5],[-2,-2],[-4,1],[-2,4],[-2,4],[-2,3],[-5,2],[-1,-5],[0,-23],[0,-14],[-1,-11],[-2,-10],[-14,-49],[-8,-19],[-9,-9],[-5,-2],[-4,-4],[-3,-9],[-1,-16],[-2,-6],[-5,-4],[-6,0],[-4,5],[-6,-14],[-4,-4],[-3,5],[-7,23],[-1,8],[-1,9],[2,67],[6,69],[0,44],[0,8],[1,3],[4,8],[1,5],[4,46],[-1,36],[1,7],[10,-6],[6,0],[3,12],[2,17],[0,9],[-6,5],[0,3],[7,7],[3,10],[0,30],[1,9],[2,17],[1,7],[1,8],[5,13],[1,7],[0,25],[-2,9],[-3,16],[-1,8],[1,9],[2,3],[3,-1],[3,-2],[3,0],[3,5],[8,24],[-5,0],[2,9],[2,10],[-1,40],[1,6],[1,6],[4,13],[2,8],[1,11],[-1,10],[-7,7],[-2,8],[1,8],[2,5],[13,-12],[2,2],[1,4],[3,2],[2,3],[0,6],[-1,5],[-2,2],[-3,2],[-1,3],[-1,8],[1,26],[1,8],[4,1],[4,4],[0,14],[4,-2],[3,-3],[4,-5],[2,-7],[-4,40],[-3,61],[0,9],[1,10],[0,7],[-1,8],[-2,8],[-1,3],[-1,3],[0,8],[2,15],[5,-3],[5,-11],[5,-8],[-1,9],[-6,20],[1,6],[1,7],[-2,6],[-4,9],[-3,12],[-2,12],[-1,27],[-3,12],[-11,23],[-3,18],[-1,35],[-1,16],[-10,42],[-1,8],[2,9],[8,8],[3,6],[1,13],[-1,14],[-3,13],[-5,17],[-1,6],[0,7],[0,7],[-2,5],[-3,7],[-1,4],[-2,23],[-2,12],[-5,5],[-12,-3],[-6,1],[-4,7],[0,5],[0,8],[0,8],[1,5],[3,2],[3,-8],[4,3],[4,-6],[2,-1],[3,3],[3,10],[2,3],[-3,10],[-2,11],[-2,8],[-7,4],[-4,4],[-2,9],[-1,11],[-3,10],[-14,32],[-6,17],[-4,18],[4,-2],[1,5],[-2,49],[-2,7],[-27,54],[0,5],[2,0],[5,-8],[10,0],[19,8],[-4,4],[-4,4],[-6,-10],[-5,4],[-8,26],[-8,21],[-2,11],[1,17],[-3,-5],[-2,-8],[0,-9],[1,-7],[-4,-2],[-6,3],[-6,7],[-3,9],[-3,-3],[-1,-1],[-4,10],[-2,18],[2,17],[4,11],[-3,21],[-1,8],[1,7],[3,10],[0,5],[3,11],[1,1],[-1,4],[-1,5],[0,3],[7,10],[3,4],[-4,0],[-7,-3],[-3,0],[-4,4],[-1,4],[2,6],[1,10],[0,6],[-2,13],[0,9],[2,7],[3,16],[1,8],[-2,49],[1,10],[3,5],[3,13],[1,13],[-2,9],[-3,-15],[-7,-28],[-2,-18],[3,-30],[0,-18],[-3,-8],[-4,-7],[-4,-12],[-6,-8],[-7,8],[-2,6],[0,15],[-1,6],[-3,3],[-3,-3],[-2,-8],[0,-9],[2,-4],[9,-18],[2,-7],[0,-5],[-1,-5],[0,-7],[0,-39],[2,-12],[1,-7],[5,-12],[1,-7],[0,-7],[-2,-9],[0,-5],[-1,-6],[-6,-16],[-1,-1],[-3,-2],[0,-1],[0,-3],[0,-5],[1,-3],[1,-1],[-4,-6],[-3,5],[-3,9],[-12,8],[-14,29],[-6,5],[-12,10],[-4,7],[-3,6],[-1,6],[-2,5],[-3,5],[-3,1],[-2,-1],[-2,0],[-2,8],[-1,7],[1,13],[-1,7],[-2,5],[-1,6],[-2,7],[0,6],[-2,9],[-10,17],[-3,8],[-8,33],[-3,4],[-16,45],[-3,11],[-1,10],[0,25],[2,9],[5,9],[6,6],[6,-1],[2,-4],[1,-6],[1,-4],[3,-2],[9,0],[6,-19],[2,-14],[-5,-8],[12,-17],[7,-6],[8,-1],[1,-15],[9,-13],[12,-7],[10,2],[9,9],[18,27],[6,13],[0,2],[-1,8],[1,2],[0,1],[3,2],[0,1],[5,14],[2,9],[0,11],[-1,19],[2,7],[0,4],[-2,5],[-2,-1],[-8,-3],[-7,3],[-2,6],[1,7],[5,4],[-3,3],[-3,1],[-7,0],[-2,2],[-8,15],[-11,15],[-6,11],[-2,12],[-3,7],[-10,8],[-2,9],[2,11],[5,6],[6,1],[6,-3],[-2,10],[2,9],[4,8],[3,9],[-4,13],[-1,3],[-2,-16],[-5,-16],[-6,-10],[-8,2],[-3,5],[-2,7],[-1,9],[0,11],[2,7],[7,6],[2,7],[-8,2],[-4,-9],[-1,-11],[-3,-6],[-12,0],[-4,6],[0,15],[-3,-16],[-2,-6],[-4,-3],[0,39],[1,7],[15,44],[5,8],[7,1],[10,-2],[-3,7],[-1,7],[1,5],[5,2],[-2,5],[-2,4],[-2,2],[-2,1],[-2,-2],[0,-9],[-1,-1],[-14,-1],[-3,-1],[-2,-2],[-3,-1],[-5,1],[0,-2],[-3,-11],[-1,-4],[-4,0],[-4,2],[-3,5],[-3,5],[2,2],[2,4],[2,3],[-10,8],[-3,5],[3,7],[-4,4],[-1,7],[1,7],[4,2],[0,4],[-1,4],[-4,-3],[-3,-4],[-2,-5],[-1,-8],[-1,3],[-3,6],[-2,3],[-2,-14],[-1,-4],[-3,-2],[-4,3],[-3,5],[-3,8],[-1,6],[-1,15],[-6,30],[0,14],[-2,0],[0,-22],[-1,-12],[-3,-2],[-2,7],[-4,37],[-2,0],[-2,-12],[-4,-9],[-5,-7],[-6,-4],[-7,1],[-9,6],[-7,3],[-3,-6],[-5,4],[-3,5],[-4,7],[-2,8],[1,-12],[2,-9],[5,-19],[6,-41],[16,-66],[1,-15],[-6,9],[-4,16],[-7,32],[-5,29],[-3,17],[-5,7],[-6,-8],[-2,-17],[1,-20],[5,-22],[2,-19],[1,-8],[3,-9],[2,-2],[1,-1],[1,-2],[3,-9],[-1,-1],[-5,13],[-3,1],[-1,2],[-3,7],[-3,17],[-15,45],[-2,10],[-1,16],[-3,11],[-7,16],[-6,16],[-3,6],[-1,6],[-1,17],[-1,8],[5,-3],[15,3],[4,3],[3,7],[4,14],[1,-3],[0,-3],[1,-2],[0,-4],[2,0],[6,31],[1,5],[0,4],[-9,-4],[-11,-26],[-8,-10],[-8,3],[-1,19],[4,31],[5,10],[6,45],[4,10],[7,5],[3,14],[2,29],[-5,-8],[-2,-24],[-4,-9],[-4,2],[-3,12],[-1,15],[1,12],[10,39],[4,22],[-3,12],[-1,-11],[-3,-13],[-3,-13],[-4,-10],[-3,-13],[-1,-17],[1,-33],[-2,-26],[-6,-22],[-16,-45],[-11,-45],[-1,-1],[-1,-3],[-3,-3],[-3,-1],[-2,2],[-2,3],[-2,8],[-18,27],[-3,7],[1,9],[1,9],[2,9],[4,7],[18,25],[10,4],[12,8],[-3,3],[-2,1],[-6,0],[-3,1],[-1,3],[-1,3],[-2,6],[-6,11],[-3,5],[-2,8],[-2,53],[-2,9],[-3,6],[-6,1],[1,-14],[-3,-12],[-5,-5],[-2,11],[4,3],[1,0],[-8,12],[-2,18],[-2,20],[-4,18],[-6,16],[-10,35],[-8,11],[7,-26],[12,-38],[2,-6],[2,-47],[6,-33],[0,-9],[-2,-27],[2,-61],[-2,-13],[-2,8],[-5,12],[-3,10],[-12,65],[-5,16],[-26,48],[-3,10],[-3,27],[-3,12],[-10,20],[-3,6],[-1,5],[-1,4],[-4,1],[-3,2],[-6,8],[-3,2],[-4,6],[-3,12],[-3,27],[-15,89],[-5,16],[-2,9],[-3,53],[-2,7]],[[75628,62942],[-11,19],[-2,10],[-1,8],[-7,13],[-2,8],[-2,10],[1,9],[2,18],[0,12],[-2,23],[0,12],[2,10],[8,22],[3,26],[3,11],[5,2],[9,-1],[10,26],[9,-6],[4,-10],[1,-10],[1,-10],[2,-10],[2,-5],[3,-3],[6,-4],[12,-3],[9,4],[7,-3],[6,-24],[2,-24],[2,-12],[3,-7],[6,1],[6,8],[6,11],[2,10],[0,6],[-1,6],[-10,60],[-3,30],[0,15],[-4,141],[5,90],[-1,18],[-4,36]],[[77237,56272],[-5,-4],[-5,2],[-3,8],[2,11],[4,4],[4,-3],[3,-8],[0,-10]],[[77285,56700],[-2,-13],[-4,-9],[-4,0],[-2,11],[1,8],[4,5],[4,3],[4,0],[0,-1],[-1,-3],[0,-1]],[[77341,56971],[1,9],[2,6],[3,-1],[0,-9],[-1,-7],[-2,-5],[-2,-1],[-1,8]],[[77073,57447],[-2,3],[-4,8],[5,0],[4,-7],[1,-6],[-4,2]],[[77176,58034],[0,12],[2,7],[3,1],[3,-10],[1,-9],[-1,-5],[-4,0],[-4,4]],[[77304,56421],[-5,1],[-1,-2],[-1,-3],[1,-4],[2,-4],[2,-3],[1,-3],[-1,-6],[-6,-4],[-3,-9],[-2,-11],[-2,-5],[-4,-3],[-10,-14],[-4,1],[-1,-7],[-1,-5],[-1,-5],[1,-4],[-7,-24],[-3,-7],[-1,12],[-3,-2],[-1,12],[0,16],[1,8],[1,5],[1,17],[4,2],[2,4],[1,4],[0,2],[2,2],[1,5],[1,6],[1,4],[2,3],[8,9],[8,15],[5,5],[6,-4],[1,2],[1,0],[4,-2],[0,-4]],[[77273,56464],[-1,3],[-2,8],[-1,5],[1,6],[2,6],[1,5],[-2,5],[0,4],[5,0],[7,-9],[5,-3],[0,-3],[0,-1],[-1,0],[-1,0],[0,-4],[-1,-2],[0,-3],[1,-4],[-4,-5],[-3,-4],[-2,-6],[-1,-28],[-3,-17],[0,47]],[[77197,56685],[-3,-9],[2,-4],[3,0],[2,1],[1,-4],[1,-4],[3,-10],[-2,-4],[-1,-2],[-2,-1],[-2,0],[2,-9],[2,-3],[-7,-6],[-4,2],[-1,9],[4,11],[-2,8],[-1,11],[1,10],[4,4]],[[77359,56920],[7,-8],[6,-11],[3,-16],[-3,-22],[-4,-5],[-5,0],[-3,4],[1,7],[3,2],[2,0],[2,1],[0,5],[-1,4],[-2,2],[-2,-1],[-3,-3],[0,9],[-1,8],[-1,9],[0,8],[1,7]],[[77191,56916],[2,17],[4,6],[6,0],[5,-3],[-3,-16],[-4,-12],[-5,-9],[-7,-7],[2,6],[1,6],[0,5],[-1,7]],[[77296,56888],[1,-11],[0,-12],[1,-9],[6,-1],[-3,-8],[-1,-7],[1,-7],[3,-6],[-2,0],[0,-1],[0,-2],[0,-1],[-4,-14],[-2,-5],[-5,-2],[-4,3],[-1,6],[0,20],[2,-2],[0,-2],[4,7],[-1,6],[-5,7],[0,8],[3,19],[-1,10],[-1,2],[-4,2],[0,2],[-1,5],[0,4],[0,2],[-5,13],[-6,10],[0,-3],[-1,-3],[-1,-2],[-2,20],[-2,3],[-3,0],[-2,-2],[0,-7],[-2,-3],[-9,-13],[-3,-2],[-3,6],[2,9],[7,15],[1,3],[4,5],[1,2],[0,4],[1,11],[2,4],[3,2],[5,-2],[6,-4],[4,-7],[2,-9],[2,-10],[1,-12],[0,-11],[2,-11],[3,-6],[4,-6],[3,-7]],[[77368,56969],[-2,-2],[-2,-4],[-1,-5],[0,-6],[-7,6],[-2,10],[0,12],[3,9],[4,8],[2,3],[1,5],[1,6],[-1,10],[0,4],[3,10],[2,-1],[2,-9],[2,-22],[0,-10],[-1,-16],[0,-17],[0,-3],[-2,-2],[-1,4],[-1,5],[0,5]],[[77298,57131],[2,-1],[2,1],[2,0],[1,-4],[-2,-6],[-4,-5],[-9,-5],[0,8],[-1,9],[-3,6],[-3,5],[0,4],[3,3],[6,2],[8,-1],[-2,-11],[0,-5]],[[77299,57458],[4,-1],[4,-13],[3,-16],[1,-11],[-1,-5],[-1,-2],[-2,-1],[-2,-2],[0,-6],[0,-18],[-3,-25],[-1,-12],[3,-12],[-4,-15],[0,-33],[-2,-17],[-2,4],[-1,-3],[0,-2],[-1,-3],[0,-4],[-3,5],[-4,10],[-1,5],[-2,-4],[0,-3],[0,-4],[0,-5],[-4,-1],[-2,-4],[0,-4],[5,-3],[-3,-3],[-3,-2],[-4,0],[-3,2],[-3,3],[0,3],[0,9],[3,-2],[3,1],[2,4],[2,5],[-1,5],[-1,13],[-1,4],[0,6],[2,4],[3,4],[2,3],[-1,5],[-1,1],[-2,3],[0,7],[1,5],[4,6],[1,11],[2,2],[2,1],[1,1],[0,7],[-1,11],[-1,7],[2,12],[8,32],[1,27],[2,8]],[[77370,57460],[2,-3],[2,-4],[1,-6],[1,-7],[0,-7],[0,-18],[-3,-17],[1,-46],[-1,-7],[-4,-10],[-1,-7],[1,-8],[1,-15],[0,-8],[-3,5],[-4,11],[-3,5],[-3,2],[-3,2],[-3,2],[-2,6],[-5,-12],[-2,2],[-1,9],[0,13],[-2,-3],[-1,0],[-1,3],[-1,4],[2,12],[-3,9],[-3,5],[-2,5],[-3,16],[1,8],[6,2],[-2,5],[-5,9],[-1,4],[1,8],[2,2],[1,2],[2,2],[1,1],[2,3],[1,3],[-3,1],[-3,0],[-2,1],[-2,2],[-2,5],[7,3],[12,-4],[4,1],[-1,3],[0,1],[-1,5],[4,0],[8,-5],[3,2],[6,4],[4,-1]],[[77237,57399],[2,-2],[1,-4],[0,-5],[-1,-5],[4,-12],[2,-5],[1,-8],[-6,9],[-3,4],[0,4],[-2,3],[-4,13],[-5,6],[-1,4],[3,2],[1,6],[0,11],[-1,12],[-5,3],[2,15],[-4,33],[4,13],[0,-22],[0,-6],[2,-4],[7,-13],[2,-7],[0,-16],[2,-12],[6,3],[0,-7],[-2,-6],[-2,-4],[-3,-3]],[[77128,57521],[3,-5],[1,-6],[0,-6],[-3,-6],[0,-3],[1,-15],[-1,0],[-5,4],[-2,14],[0,7],[6,16]],[[77292,57492],[0,15],[1,12],[2,3],[6,-7],[1,-8],[-2,-10],[-3,-8],[-3,1],[-2,2]],[[77296,57537],[-2,-4],[-2,-2],[-2,1],[-5,17],[2,8],[5,4],[2,-2],[0,-5],[2,-12],[0,-5]],[[77389,57557],[11,-6],[5,-5],[-1,-9],[0,4],[-7,-5],[-16,0],[-6,-5],[-5,-9],[-5,-7],[-6,-5],[-5,2],[-4,17],[-1,8],[0,8],[1,5],[2,9],[1,4],[-1,6],[-1,3],[-2,2],[-3,7],[-1,2],[-1,2],[-1,7],[0,18],[-2,18],[0,8],[2,7],[2,-7],[8,-14],[6,-17],[4,-19],[3,-6],[6,-7],[5,4],[4,-5],[8,-15]],[[77248,57687],[3,3],[4,3],[3,1],[2,-5],[0,-25],[0,-6],[-3,9],[-3,7],[-5,2],[-5,-5],[-1,1],[-1,1],[0,1],[-4,14],[-6,11],[-1,8],[1,11],[2,13],[4,12],[4,5],[5,-1],[5,-2],[3,-6],[1,-9],[0,-6],[-1,-11],[-1,-6],[-2,-4],[-2,-4],[-1,-5],[-1,-7]],[[77240,57793],[-1,-4],[-4,-17],[-3,-5],[-2,-4],[-3,-2],[-3,-1],[0,-3],[-2,-21],[-3,10],[-1,2],[-1,10],[-4,1],[-4,-2],[-3,3],[1,8],[4,6],[2,6],[-1,9],[-4,-6],[-1,-3],[-1,-4],[-2,0],[1,17],[4,7],[6,4],[8,10],[3,1],[2,-3],[-2,-5],[-2,-6],[-2,-3],[1,-4],[2,-5],[4,1],[1,0],[3,-1],[0,6],[0,6],[1,6],[5,5],[2,7],[1,7],[1,3],[4,-3],[3,-10],[0,-13],[-2,-10],[-2,-4],[-2,1],[-2,2],[-2,1]],[[77364,57870],[1,-10],[-1,-33],[-1,-8],[-4,-2],[-4,2],[-2,9],[4,40],[3,12],[4,-10]],[[77292,57912],[1,4],[1,-3],[2,-5],[0,-2],[6,-18],[-2,-13],[-6,-5],[-7,6],[-2,6],[0,7],[1,15],[1,2],[2,1],[2,1],[1,4]],[[77172,57924],[1,2],[3,3],[3,1],[1,-2],[1,-9],[2,-5],[0,-6],[-3,-14],[0,3],[-1,2],[-1,1],[0,2],[-1,4],[0,1],[-1,0],[-2,-1],[0,5],[1,3],[0,2],[-2,3],[-1,5]],[[77351,57922],[1,-16],[0,-23],[-1,-22],[-3,-14],[-18,-57],[-11,-21],[-14,7],[3,13],[1,4],[1,12],[4,24],[1,14],[-1,6],[-2,8],[-1,8],[-2,2],[0,3],[1,3],[2,3],[2,4],[0,4],[-5,20],[-3,27],[-1,28],[4,24],[5,-9],[15,-8],[5,-11],[0,-6],[-2,-25],[1,-9],[7,-25],[1,15],[2,19],[4,10],[4,-12]],[[77304,58219],[2,-1],[2,3],[2,2],[3,-4],[2,-7],[-1,-4],[-3,-6],[-2,-5],[-1,-2],[-1,-3],[-2,-6],[0,-6],[0,-18],[3,-26],[1,-12],[-4,-7],[0,12],[-4,14],[1,11],[-2,11],[-4,37],[-6,37],[-2,12],[0,11],[1,27],[1,7],[4,-1],[2,-9],[6,-59],[2,-8]],[[77203,58677],[1,-4],[-1,-7],[-1,-11],[-1,-22],[-2,0],[-1,9],[0,17],[1,15],[4,3]],[[75943,58844],[1,-27],[-2,-11],[-5,-7],[2,44],[1,7],[1,2],[2,-8]],[[76020,59270],[3,7],[2,10],[3,9],[6,6],[0,-4],[-2,-10],[-4,-12],[-4,-7],[-4,1]],[[77128,59688],[2,-9],[0,-10],[0,-10],[-2,-8],[-2,12],[-2,41],[2,-4],[1,-3],[1,-4],[0,-5]],[[76340,59905],[1,-9],[3,-16],[0,-7],[-1,-8],[-5,-18],[-4,-22],[-8,-3],[-8,4],[-6,8],[0,4],[5,8],[4,12],[6,24],[7,22],[5,9],[1,-8]],[[76294,60076],[2,-29],[-4,-30],[-7,-27],[-14,-37],[-2,-5],[-5,-4],[-15,-11],[-4,-5],[-2,-3],[0,-5],[0,-5],[0,-4],[-3,-7],[-6,-10],[-2,-8],[1,-9],[-2,-9],[-7,-18],[-2,0],[0,4],[4,15],[-2,21],[-7,37],[2,19],[7,10],[10,9],[9,15],[3,10],[4,19],[2,7],[9,17],[17,43],[9,14],[5,-14]],[[77107,60191],[0,-9],[1,-23],[-1,-12],[-1,-7],[-2,-5],[-1,-5],[-1,-8],[0,-5],[-1,-22],[1,-18],[-6,-13],[-9,5],[-2,27],[-3,9],[-11,19],[3,18],[4,6],[0,13],[-1,15],[-2,11],[-3,10],[-2,7],[-1,7],[1,4],[2,3],[1,4],[-2,6],[3,8],[5,6],[5,4],[4,2],[12,-11],[6,-4],[6,-2],[1,-11],[0,-11],[-6,-18]],[[76040,61603],[0,-7],[3,-13],[0,-6],[0,-14],[-3,-14],[-4,-11],[-6,-8],[-5,-1],[-7,0],[-6,3],[-3,4],[-1,8],[-4,7],[-6,11],[-27,66],[-1,5],[-3,15],[26,4],[6,5],[3,9],[3,3],[6,-13],[6,-9],[3,-2],[2,-1],[7,0],[10,2],[2,-4],[0,-14],[-1,-18],[0,-7]],[[76102,61969],[1,-9],[0,-12],[-2,-11],[-3,-5],[-4,-4],[-7,-18],[-4,-7],[-1,-2],[-1,-1],[-1,-1],[-2,1],[-1,3],[0,4],[-1,1],[-4,-4],[0,-5],[1,-5],[0,-5],[-2,-2],[-4,-1],[-6,1],[-5,-1],[-2,1],[-3,4],[-3,8],[-7,20],[-1,7],[-1,6],[-3,8],[0,6],[-1,2],[0,1],[-1,2],[0,3],[0,3],[2,0],[1,0],[1,4],[-3,9],[-3,5],[-10,6],[-4,5],[-2,7],[-5,20],[3,1],[1,2],[0,4],[-2,6],[11,27],[2,1],[2,-2],[6,-1],[2,-1],[2,-4],[2,-5],[1,-5],[1,-5],[14,-21],[4,-9],[5,5],[6,1],[6,-1],[5,-7],[5,-8],[11,-13],[4,-9]],[[75973,62200],[3,-18],[1,-9],[-2,-10],[-16,26],[-4,13],[-9,65],[-2,19],[6,-1],[6,-8],[3,-5],[2,-6],[0,-3],[2,-5],[4,-5],[4,-6],[2,-9],[-1,-27],[1,-11]],[[75823,62336],[1,-9],[13,-69],[2,-21],[0,-25],[-1,0],[-2,11],[-1,26],[-2,10],[-4,11],[-17,64],[-1,10],[-1,3],[-1,2],[-2,4],[0,5],[1,6],[1,3],[2,-1],[2,-4],[5,-6],[1,-5],[2,-5],[1,-5],[1,-5]],[[75628,62942],[-1,-22],[-1,-25],[1,-24],[3,-22],[8,-24],[2,-6],[0,-12],[5,-31],[2,-7],[1,-7],[0,-6],[-3,-5],[-1,2],[-2,5],[-1,2],[-3,5],[-6,31],[-19,69],[-5,39],[-1,6],[-15,24],[-3,8],[-4,17],[-3,10],[-13,29],[-2,9],[0,13],[2,38],[0,14],[-2,12],[-15,56],[-3,5],[-3,4],[-2,8],[-2,11],[-1,10],[2,0],[0,-2],[0,-1],[1,0],[1,-1],[2,11],[3,11],[5,6],[5,-4],[-4,7],[-2,11],[-2,12],[0,11],[2,7],[4,7],[3,8],[-1,10],[4,10],[1,4],[-1,6],[1,6],[0,5],[-2,4],[-2,1],[1,6],[1,5],[0,6],[-1,4],[-1,-5],[0,-1],[-1,-2],[2,0],[-4,-20],[-3,-9],[-5,0],[-2,7],[1,10],[1,9],[0,7],[-2,0],[-1,-10],[-3,1],[-2,7],[-1,8],[1,13],[2,4],[4,1],[4,8],[-2,4],[-4,-6],[-2,5],[2,8],[6,6],[0,4],[-13,-2],[-5,-4],[-5,-2],[-2,5],[0,14],[3,12],[5,6],[-2,6],[1,5],[3,5],[4,3],[0,5],[-3,-1],[-3,-2],[-2,-5],[-2,-5],[-1,7],[-1,13],[-2,23],[0,6],[-4,9],[-1,5],[0,23],[-7,60],[-1,20],[3,-2],[1,-1],[-2,8],[-2,-2],[-2,-7],[0,-11],[-2,0],[-3,10],[-2,13],[-2,14],[0,15],[1,9],[2,6],[3,4],[1,5],[0,10],[-2,5],[-3,3],[-2,3],[-1,15],[5,7],[7,4],[6,6],[3,11],[6,42],[-1,0],[-4,0],[-1,-9],[-3,-23],[1,-4],[-2,-4],[-3,-6],[-5,-7],[-4,-4],[-1,-3],[-7,-7],[-2,-6],[1,-9],[3,-5],[3,-2],[3,-4],[-1,-11],[-4,-8],[-6,1],[-5,14],[-4,67],[-3,22],[-19,73],[-36,98],[-9,7],[-4,9],[-4,11],[-3,9],[-2,-2],[-2,3],[-1,6],[0,7],[0,7],[3,8],[2,17],[4,25],[0,14],[-2,0],[-1,-11],[-5,-31],[-2,-6],[-6,-4],[-4,-10],[-2,-13],[1,-14],[-4,6],[-4,4],[-5,2],[-6,0],[0,-4],[6,-4],[1,-5],[-3,-5],[-5,-3],[-14,0],[5,-3],[4,-5],[2,-3],[0,-9],[-4,-5],[-4,-2],[-5,-1],[0,1],[-9,4],[-1,-1],[-1,0],[0,2],[0,9],[0,2],[-4,2],[-4,1],[-9,1],[0,-4],[3,-6],[1,-7],[-2,-4],[-6,0],[0,-4],[16,-8],[7,-6],[3,-12],[0,-8],[-3,-8],[-3,-23],[-5,-11],[-6,-8],[-7,-4],[-14,-5],[-10,10],[-6,16],[-3,25],[-2,7],[-3,11],[-4,18],[-2,5],[-4,-3],[4,-8],[4,-16],[2,-18],[0,-11],[-6,-6],[-9,-2],[-8,0],[-4,6],[-2,9],[-7,10],[-2,6],[-1,5],[-4,11],[-2,17],[-3,2],[-9,-1],[-1,3],[-3,22],[-2,3],[-3,2],[-2,3],[-2,11],[-4,11],[-1,4],[0,6],[-3,17],[-2,20],[-3,10],[-2,9],[-2,10],[-1,13],[-1,7],[-22,58],[-3,16],[-1,7],[0,6],[4,36],[0,24],[2,14],[3,11],[2,11],[-1,11],[2,0],[-5,19],[0,8],[3,5],[-1,1],[-1,0],[0,1],[0,3],[-7,-5],[-5,12],[-3,18],[0,11],[0,35],[2,14],[7,8],[16,0],[7,7],[0,22],[-1,8],[-2,3],[-2,1],[-5,-1],[-1,-2],[2,-6],[5,-7],[-2,-13],[-4,6],[-4,0],[-5,-6],[-7,-4],[-4,-6],[-1,3],[-4,23],[1,17],[4,14],[7,6],[-2,4],[0,-2],[0,-1],[-2,-1],[-2,6],[-4,-1],[-11,-9],[2,-8],[-1,-5],[-4,-3],[-4,0],[-5,0],[-3,3],[-7,9],[2,-9],[4,-6],[4,-4],[5,-1],[10,-1],[2,-5],[1,-53],[-1,-6],[-2,-4],[-2,-9],[-2,-10],[0,-9],[-10,7],[-54,21],[-11,8],[-9,12],[0,-7],[2,-6],[36,-43],[5,-7],[2,-7],[2,-8],[2,-5],[9,-4],[8,-8],[4,-3],[18,-4],[3,-4],[8,-24],[1,-10],[1,-21],[-1,4],[-2,6],[-3,5],[1,-12],[2,-35],[-1,-14],[-8,-21],[-2,-3],[-3,1],[-1,5],[2,6],[2,4],[0,4],[-2,0],[-3,-8],[-3,-6],[-4,-4],[-5,-2],[-10,0],[-4,-3],[-1,-9],[0,-4],[1,-13],[4,-19],[6,-17],[5,-15],[1,-3],[-1,-7],[1,-4],[1,-1],[1,0],[1,0],[1,-3],[3,-5],[1,-4],[-1,-5],[-4,-4],[-4,1],[-5,2],[-3,-1],[-6,-13],[-2,-20],[-4,-16],[-7,-4],[4,-8],[-1,-8],[-4,-3],[-3,7],[-6,-8],[4,-6],[8,-5],[5,-5],[3,11],[4,-2],[5,-8],[3,-9],[1,-6],[1,-19],[4,-19],[1,-20],[-1,-5],[-3,-7],[-2,-2],[-7,-2],[-2,-4],[-2,-8],[-3,-33],[0,-9],[1,6],[2,4],[1,2],[2,4],[0,6],[-1,12],[1,6],[2,8],[5,5],[5,2],[5,-2],[10,-13],[5,-17],[3,-19],[5,-21],[-4,3],[-2,2],[0,-14],[2,-11],[6,-21],[1,-12],[0,-12],[-1,-24],[-9,-46],[-7,-20],[-5,-3],[-8,-8],[-3,-5],[-1,-5],[0,-8],[-2,-10],[-8,-27],[-3,-7],[-3,-3],[-4,2],[-4,4],[-4,5],[-2,5],[1,15],[7,28],[1,14],[-3,17],[0,8],[1,18],[-1,8],[-4,2],[1,-12],[-3,-26],[1,-9],[2,-4],[2,-1],[1,-3],[1,-6],[0,-4],[-1,-4],[-2,-4],[-1,-1],[0,-1],[-1,-3],[-1,-8],[-1,0],[-1,2],[-1,-2],[-1,-5],[-1,-19],[-1,-7],[-1,-6],[-5,-15],[-4,-8],[0,-2],[-2,-10],[-5,-22],[-1,-11],[-1,-22],[-3,-23],[-2,-11],[-3,-8],[-15,-26],[-4,-5],[-5,-2],[-6,1],[-11,9],[-4,2],[-5,5],[-1,10],[2,7],[4,-2],[-2,9],[2,5],[3,6],[1,7],[0,5],[-1,3],[0,4],[1,6],[-2,-7],[-5,-25],[-3,-5],[-3,-1],[-3,-8],[-3,-3],[-2,1],[-4,6],[-3,1],[2,16],[1,32],[3,13],[2,5],[4,3],[3,5],[2,8],[1,9],[1,7],[1,7],[3,9],[11,20],[1,4],[2,7],[2,3],[2,3],[3,-2],[2,-2],[1,-1],[6,8],[5,14],[2,15],[-1,16],[-5,-25],[-4,-14],[-4,-6],[-7,-2],[-5,-5],[-16,-35],[-2,-6],[-2,-13],[-4,-11],[-1,-4],[-1,-3],[-4,-2],[-3,1],[-9,8],[2,8],[0,9],[2,7],[3,4],[2,3],[2,4],[1,9],[-1,18],[1,6],[1,9],[3,6],[3,3],[2,3],[2,8],[-7,-6],[-4,-10],[-4,-29],[-2,-6],[-8,-15],[-2,-5],[1,-27],[-1,-8],[-4,-7],[-5,4],[-4,10],[-2,12],[0,5],[-3,14],[0,7],[-1,44],[-3,24],[0,15],[-1,6],[-4,11],[-1,6],[-1,8],[0,6],[0,6],[1,8],[6,27],[22,66],[2,7],[1,8],[2,6],[3,6],[-8,-10],[0,-2],[-9,-18],[-4,-10],[-2,-9],[-2,-10],[-5,3],[-8,13],[0,-12],[2,-10],[1,-10],[-1,-13],[-12,-44],[4,-13],[3,-21],[3,-40],[0,-20],[0,-10],[-3,-8],[-4,-5],[-5,1],[-4,2],[-5,0],[0,-4],[6,-5],[5,-6],[3,-10],[1,-13],[0,-6],[-2,-11],[1,-6],[1,-5],[3,-12],[3,-11],[2,-7],[2,-8],[-2,-9],[-2,-2],[-6,-2],[-7,-13],[-2,-4],[0,-2],[-1,-3],[-3,-3],[-5,-4],[-3,-1],[-1,3],[-2,9],[-3,-2],[-4,-6],[-4,-3],[-5,1],[-5,2],[-4,4],[-4,5],[-1,5],[-1,6],[0,7],[3,10],[-1,6],[-4,11],[-8,-33],[4,-11],[5,-14],[6,-14],[6,-5],[2,-6],[-3,-12],[-6,-8],[-7,3],[-3,5],[-3,0],[-7,-3],[-1,-3],[3,-16],[1,-5],[-5,-11],[-6,8],[-8,24],[0,10],[-3,25],[1,13],[2,8],[5,12],[2,9],[1,10],[-1,42],[2,35],[2,12],[6,23],[2,13],[-1,13],[-3,12],[-3,11],[-4,9],[0,9],[9,22],[2,10],[0,12],[1,12],[2,12],[2,10],[-3,-4],[-2,-8],[-4,-16],[-3,-6],[-1,-6],[2,-13],[-1,-5],[-6,-8],[-3,-11],[0,-8],[6,-20],[2,-7],[0,-6],[0,-14],[0,-7],[-3,-11],[-1,-6],[-2,-38],[-1,-8],[-6,-6],[-2,9],[0,27],[1,6],[2,12],[1,8],[-13,59],[-1,12],[2,27],[-1,11],[-2,13],[-2,0],[-3,-39],[3,-75],[2,0],[0,8],[1,8],[2,4],[0,-1],[1,-5],[1,-8],[1,-7],[2,-5],[1,-7],[0,-8],[-2,-15],[-1,-3],[-4,-1],[-1,-2],[1,-4],[0,-3],[1,-3],[2,-7],[3,-15],[2,-5],[0,-4],[-2,-31],[-3,-7],[-4,-6],[-3,-7],[-3,-10],[-1,-8],[1,-10],[1,-14],[-1,-14],[-3,-11],[-4,-10],[-10,-17],[-3,-1],[-7,16],[-1,9],[-1,15],[1,27],[2,11],[3,18],[1,14],[-1,12],[-5,20],[-2,10],[-2,0],[-1,-9],[0,-8],[2,-7],[1,-8],[0,-10],[-1,-5],[-4,-10],[-3,-7],[-2,-6],[-4,-22],[-2,-4],[-1,-1],[-2,8],[-2,0],[0,-15],[3,-23],[-1,-15],[-5,-20],[1,-7],[6,-5],[-3,-8],[-5,-7],[-5,-4],[-6,-1],[-5,6],[-2,11],[1,10],[3,5],[1,6],[-9,49],[0,5],[0,7],[-2,2],[-2,-3],[-3,-6],[-1,-5],[-2,-3],[-3,2],[-6,7],[-3,5],[-1,3],[-7,49],[-1,10],[1,12],[3,25],[0,14],[-2,12],[-6,17],[-2,9],[2,27],[-1,11]],[[75537,63356],[1,-26],[10,-40],[2,-23],[0,-13],[-3,-24],[0,-14],[-3,-10],[-6,-1],[-7,3],[-5,-2],[0,-3],[1,-4],[0,-5],[-3,-3],[-3,0],[-3,3],[-1,5],[-2,11],[0,4],[0,4],[4,13],[1,6],[0,14],[-2,24],[-5,39],[1,22],[3,12],[2,5],[3,0],[4,-7],[2,-7],[-1,-9],[-3,-10],[0,-8],[4,10],[2,15],[-1,15],[-2,13],[5,1],[5,3],[0,-10],[0,-3]],[[74754,63369],[6,-9],[2,-16],[-4,-10],[-8,8],[-14,34],[0,2],[2,4],[1,11],[0,11],[-3,20],[0,9],[-2,11],[0,5],[3,1],[2,-2],[1,-3],[0,-3],[1,-9],[3,-39],[3,-18],[7,-7]],[[75524,63419],[-1,-9],[-4,-15],[-2,-21],[-6,-32],[-3,-6],[-2,10],[4,49],[-2,30],[1,11],[2,7],[7,15],[1,-2],[0,-2],[1,-4],[3,-23],[1,-8]],[[75164,63490],[0,-12],[1,-3],[1,-4],[2,-9],[-5,-2],[-2,-13],[-3,3],[-2,0],[-2,-12],[-5,-13],[-5,-9],[-5,1],[0,4],[2,1],[4,3],[2,0],[-2,7],[-2,3],[-2,3],[2,4],[0,4],[-1,6],[1,6],[1,4],[1,3],[19,25]],[[75092,63462],[6,23],[4,10],[7,4],[-1,-13],[-7,-24],[-7,-46],[-2,-7],[-3,-3],[-1,1],[0,28],[1,14],[3,13]],[[75107,63527],[-2,-15],[-8,-18],[-2,-12],[-1,0],[1,13],[4,17],[4,13],[4,2]],[[75120,63523],[11,-22],[3,-16],[-2,-19],[-6,-7],[-7,-15],[-4,-5],[-4,4],[-2,9],[0,10],[1,9],[2,6],[2,7],[0,13],[0,18],[1,6],[3,6],[2,-4]],[[75150,63535],[-1,4],[-12,-14],[-2,-6],[-1,0],[0,14],[2,13],[3,9],[5,4],[3,5],[8,16],[3,0],[3,7],[3,6],[3,3],[3,0],[-6,-37],[0,6],[0,4],[-2,7],[-3,-21],[-2,-22],[-2,-21],[-6,-13],[-5,-4],[-3,3],[-2,7],[0,8],[2,5],[9,17]],[[75261,63620],[1,4],[1,0],[1,-2],[1,-6],[0,-32],[-2,-14],[-6,-2],[-2,9],[0,16],[2,18],[2,13],[2,-4]],[[75270,63608],[1,32],[1,12],[4,-3],[0,-11],[0,-13],[-2,-11],[-4,-6]],[[75264,63633],[-4,3],[0,9],[3,10],[2,8],[1,27],[2,14],[2,10],[3,-5],[1,-9],[1,-11],[0,-12],[-1,-12],[-10,-32]],[[75318,63710],[2,-15],[5,-7],[2,-22],[1,-13],[1,-20],[-5,-18],[-2,-9],[-2,-7],[-4,-14],[-5,-9],[-4,-6],[-4,-1],[-3,-11],[-5,-6],[-7,0],[-5,3],[-3,4],[-2,9],[8,18],[6,16],[1,10],[3,29],[0,42],[2,46],[5,1],[9,-10],[6,-10]],[[75171,63750],[-1,2],[-2,0],[-2,1],[0,7],[0,4],[2,1],[2,-1],[1,-2],[4,-8],[4,-14],[3,-17],[1,-14],[-3,12],[-1,5],[-2,-11],[2,-24],[-2,-10],[-1,5],[-1,7],[0,6],[0,6],[2,0],[-2,11],[-2,23],[-2,11]],[[75179,63750],[2,35],[0,-2],[2,0],[1,-7],[1,-6],[0,-12],[-3,-3],[-1,-1],[-2,-4]],[[75321,63797],[12,6],[3,-11],[-3,-14],[-6,-8],[-6,-5],[-7,0],[-5,7],[2,16],[10,9]],[[75407,63846],[25,-64],[2,-26],[-3,-20],[-13,-3],[-9,10],[-8,24],[-5,23],[-1,19],[6,31],[6,6]],[[75219,63792],[12,-22],[6,-14],[-6,-56],[1,-96],[-3,-15],[-15,-46],[-4,-8],[-1,2],[-1,6],[-7,-13],[-2,-3],[-8,-24],[-2,-2],[-4,-4],[-3,-3],[-3,1],[-2,13],[3,17],[5,18],[4,16],[-16,-45],[-4,-1],[-2,11],[1,17],[3,17],[4,13],[-3,13],[3,22],[11,50],[2,10],[1,11],[0,35],[1,10],[-2,18],[0,11],[1,7],[0,4],[-3,11],[-4,36],[-3,14],[-4,8],[-16,22],[-5,2],[-1,22],[1,21],[6,49],[2,6],[3,5],[5,3],[5,3],[5,1],[3,-18],[3,-21],[3,-16],[5,-20],[4,-14],[4,-10],[5,-14],[2,-29],[3,-18],[7,-13]],[[75178,64001],[6,-12],[4,-12],[-5,-2],[-9,4],[-11,1],[-8,-14],[-4,-4],[-4,-8],[-1,-15],[2,-9],[-4,-10],[-3,6],[-3,7],[-1,5],[-1,6],[-3,4],[-7,5],[2,7],[1,5],[-1,17],[0,10],[1,11],[2,8],[3,3],[10,-4],[5,2],[1,8],[3,1],[11,0],[4,-3],[5,-12],[5,-5]],[[75185,64063],[-8,-1],[-2,1],[3,-4],[3,-6],[2,-5],[2,-6],[-9,2],[-3,2],[-2,5],[-3,12],[-2,3],[-3,2],[-1,-1],[-1,-2],[-3,-2],[-3,-1],[-7,0],[-3,1],[-5,13],[6,19],[9,15],[7,1],[6,-10],[11,-25],[6,-10],[0,-3]],[[75141,64131],[2,-5],[-1,-5],[-4,-8],[-6,-15],[-2,-3],[-3,24],[-1,9],[11,0],[2,1],[2,2]],[[75145,64281],[-5,-4],[-5,3],[-6,7],[-8,18],[-3,8],[1,6],[7,0],[10,-7],[13,-14],[11,-16],[2,-13],[-10,15],[-6,4],[-1,-7]],[[67019,71563],[3,3],[15,5],[2,0],[2,-2],[3,-4],[0,-2],[-3,-6],[4,-6],[0,1],[1,-1],[4,-7],[0,-2],[-1,-6],[0,-3],[2,-4],[2,-4],[2,-2],[3,-1],[2,-2],[3,-1],[18,-29],[12,-25],[19,-13],[37,-10],[17,2],[33,21],[16,-1],[9,-7],[7,-9],[28,-49],[8,-9],[15,-11],[4,-8],[3,-9],[2,-11],[1,-10],[-1,-24],[2,-9],[5,-21],[3,-7],[4,5],[27,64],[10,14],[7,1],[18,-29],[3,-3],[3,0],[3,2],[3,0],[8,-6],[2,-1],[5,2],[20,15],[4,5],[4,6],[4,8],[7,13],[17,15],[1,1],[26,35],[18,16],[6,2],[11,2],[6,2],[4,7],[1,11],[1,22],[3,19],[-1,6],[-4,7],[-1,7],[-1,30],[1,9],[7,13],[21,12],[8,10],[2,5],[0,4],[-2,3],[-7,5],[-1,3],[-4,9],[-15,22],[-1,8],[-2,10],[-2,8],[-2,7],[1,11],[4,7],[6,3],[61,-3],[24,9],[22,18],[4,7],[7,15],[4,7],[5,5],[6,2],[34,4],[11,5],[26,26],[8,5],[5,1],[4,1],[8,-3],[27,-17],[0,7],[-3,28],[0,11],[3,9],[3,8],[18,24],[10,8],[11,4],[11,-4],[5,-3],[3,-1],[3,4],[4,24],[3,7],[5,5],[5,3],[20,8],[10,6],[9,13],[5,12],[22,58],[5,21],[3,21],[2,24],[-1,12],[-4,23],[-1,12],[0,12],[1,12],[3,24],[5,19],[29,93],[11,32],[3,20],[-1,23],[-5,45],[1,23],[5,16],[9,10],[50,46],[20,12],[118,5],[4,0],[10,9],[13,30],[8,14],[3,8],[2,12],[0,13],[-3,25],[2,14],[2,12],[4,12],[3,10],[3,6],[3,3],[5,2],[11,0],[4,5],[2,16],[0,8],[5,-3],[5,-2],[2,-3],[5,-17],[2,-6],[2,-4],[5,-7],[63,-39],[5,-8],[8,-17],[4,-8],[6,-5],[3,-1],[9,1],[3,-1],[4,-6],[3,-1],[2,-2],[2,-2],[5,-8],[5,-7],[8,-1],[19,10],[7,2],[2,-3],[4,-10],[4,-3],[3,1],[2,3],[4,8],[5,7],[5,5]],[[55121,75674],[3,4],[3,2],[3,0],[3,-3],[3,0],[1,4],[0,5],[-2,6],[5,5],[3,3],[6,9],[1,5],[2,7],[0,17],[-3,17],[-4,9],[-6,9],[-10,25],[-3,14],[-3,15],[0,10],[2,6],[4,5],[2,5],[-2,12],[-6,21],[-3,12],[0,10],[5,23],[9,13],[15,5],[17,0],[11,-2],[-5,45],[0,15],[0,2],[2,18],[5,15],[12,26],[-7,5],[4,10],[36,40],[7,4],[-1,2],[-1,6],[-1,2],[5,4],[16,2],[7,-3],[7,-8],[2,-4],[1,-4],[-1,-4],[1,-5],[2,-7],[6,-11],[0,-1],[1,-3],[3,4],[2,5],[2,5],[1,4],[1,1],[3,3],[8,0],[2,3],[-9,25],[-8,35],[-10,20],[-2,2],[-6,-2],[0,3],[2,5],[0,4],[-4,9],[-2,2],[-4,1],[-3,3],[0,5],[2,5],[2,3],[5,4],[7,12],[4,4],[6,1],[4,-6],[3,-8],[4,-7],[5,-3],[5,0],[6,4],[7,13],[7,2],[13,-4]],[[55379,75255],[-5,7],[-11,18],[-4,4],[-21,11],[-4,4],[-7,5],[-2,2],[-3,6],[0,3],[1,3],[-1,6],[-2,1],[-2,4],[-2,5],[1,2],[0,3],[-1,29],[-16,23],[-2,8],[3,9],[-3,3],[-3,3],[-4,12],[-11,-1],[-2,7],[-1,6],[-1,2],[-2,0],[-2,2],[-4,12],[-4,7],[-11,13],[-3,9],[-2,20],[-2,8],[-4,4],[-5,0],[-5,-3],[-2,-5],[-1,3],[-2,2],[0,3],[-5,-4],[-2,-2],[-1,-3],[-1,-1],[-2,-2],[-2,4],[-3,8],[-9,12],[-4,8],[0,8],[-2,2],[-2,5],[-2,2],[0,4],[1,8],[-5,7],[-6,1],[-1,-12],[-2,0],[-2,2],[-6,-1],[-1,1],[-2,4],[-3,4],[-4,4],[-3,1],[1,2],[0,1],[0,1],[1,1],[-7,8],[-2,6],[1,6],[4,2],[23,-12],[3,-1],[8,-7],[4,-7],[2,10],[0,7],[-7,22],[0,6],[1,9],[-9,-19],[-12,-4],[-30,7],[0,-5],[5,-6],[-2,-17],[5,-5],[-6,3],[-4,6]],[[54903,75870],[-27,26],[5,0],[8,-5],[4,-2],[-4,6],[-6,6]],[[29140,62253],[-4,0],[-8,-3],[-7,-1],[-1,4],[1,10],[2,3],[3,3],[6,10],[2,2],[3,-1],[1,6],[-1,4],[-3,4],[-4,-6],[-1,1],[-1,4],[0,4]],[[29128,62297],[12,0],[0,-44]],[[29122,62297],[-2,-3],[-1,-5],[2,-4],[2,-7],[-4,-2],[-4,-1],[-2,-4],[-1,-3],[-2,0],[0,4],[-2,0],[-1,-2],[-1,-1],[0,-3],[3,-4],[4,-1],[0,-3],[-4,0],[-7,-3]],[[29102,62255],[1,22],[14,20],[5,0]],[[29128,62297],[1,3],[1,3],[4,5],[4,2],[3,12],[2,7],[-2,6],[0,15],[-6,-2],[-3,-8],[-1,-6],[-2,-7],[-3,2],[-2,3],[-5,-3],[-1,-7],[-1,-6],[1,-6],[2,-1],[1,-1],[1,1],[1,2],[1,2],[0,-2],[2,-6],[-4,-4],[0,-4]],[[29102,62255],[-15,-7],[-27,-4],[-3,1],[-9,4],[-3,3],[-2,1],[-1,-1],[-2,-6],[-2,-2],[-7,-2],[-9,1],[-9,3],[-5,7],[-10,-3],[-11,12],[-11,17],[-10,10],[-6,1],[-20,-1],[-5,1],[-11,6],[-6,1],[-11,-2],[-5,-3],[-4,-5],[-4,-1],[-37,18],[-25,5],[-12,-1],[-23,-12],[-10,-3],[-20,0],[-6,-1],[-12,-9],[-6,-2],[-35,4],[-36,-6],[-6,-6],[-6,0],[-6,3],[-6,1],[-4,-4],[-9,-14],[-6,-6],[-7,-4],[-36,-3],[-7,2],[-14,12],[-7,2],[-4,-6],[-1,0],[-2,4],[-3,1],[-3,-2],[-2,-6],[-7,4],[-8,2],[-7,-4],[-5,-11],[8,0],[0,-4],[-5,0],[-8,-6],[-5,-2],[-26,-1],[-17,-9],[-10,-2],[-12,2],[-17,-9],[-6,-1],[-3,1],[-4,4],[-3,5],[-2,7],[0,10],[6,20],[0,6],[2,1],[3,1],[2,2],[2,3],[2,6],[2,3],[-1,6],[2,5],[5,9],[6,18],[1,3],[0,4],[14,24],[-1,5],[-4,8],[1,3],[2,0],[8,-5],[3,6],[5,3],[1,2],[1,4],[5,15],[5,6],[12,13],[4,14],[5,7],[28,27],[6,1],[4,5],[4,21],[4,7],[1,0],[1,0],[2,0],[-2,-7],[2,-3],[3,-1],[5,3],[3,5],[3,7],[2,9],[1,9],[2,4],[11,14],[1,29],[2,4],[2,4],[4,21],[-9,27],[-2,5],[-8,11],[-10,7],[-3,1],[2,-7],[-1,-4],[-6,7],[-4,4],[-3,6],[-1,14],[1,4],[2,2],[3,2],[2,2],[6,16],[0,4],[-11,13],[-5,2],[-2,-11],[-5,11],[-5,15],[-6,13],[-7,5],[-8,-1],[-9,-4],[-7,-6],[-4,-9],[-3,4],[-1,0],[-2,-2],[-2,-2],[-3,-1],[-1,-2],[-2,-1],[-3,0],[-5,2],[-14,10],[-11,-11],[-3,-1],[-4,6],[-1,2],[-3,1],[-8,-1],[-2,1],[-5,3],[-2,2],[-1,-1],[-4,-1],[-13,2],[-5,3],[-8,10],[-5,3],[-10,3],[-6,-3],[-4,-7],[-4,-7],[-4,-4],[-18,-1],[-9,5],[-3,13],[-2,0],[-2,-9],[-9,22],[-4,3],[-6,2],[-3,7],[-5,19],[-3,7],[-5,9],[-6,7],[-4,0],[-3,-3],[-1,3],[0,5],[-1,4],[-3,8],[-2,6],[-1,5],[-2,9],[-19,28],[-4,2],[-10,-1],[-3,4],[-3,9],[-4,16],[-4,7],[-10,15],[-2,1],[-2,6],[-2,20],[-1,38],[-2,17],[-4,17],[-3,16],[1,17],[3,-6],[3,0],[3,4],[1,8],[-2,6],[-9,6],[-2,4],[-1,11],[-3,19],[0,11],[-1,10],[-6,18],[-1,9],[-2,20],[-4,19],[-5,16],[-6,12],[-5,6],[-4,3],[-15,4],[-3,3],[-2,4],[2,8],[3,-3],[4,-2],[8,1],[1,2],[-2,7],[-3,9],[-2,4],[-3,4],[-6,6],[-4,3],[-2,-1],[-2,-2],[-3,-4],[-13,-5],[-13,-3],[-1,-1],[-2,-3],[-1,-3],[-1,-3],[-1,-2],[-2,-1],[-8,1],[-4,2],[-3,0],[-3,-2],[-1,4],[-5,-5],[-5,-2],[-12,-1],[-6,-2],[-14,-14],[-12,-6],[-11,-2],[-11,2],[-22,13],[-5,6],[-5,9],[-4,1],[-14,-3],[-6,0],[-6,4],[-3,3],[-2,5],[-4,14],[-3,5],[-1,-5],[-1,-6],[-2,-4],[-3,0],[-2,2],[-3,5],[-2,2],[-12,7],[-1,1],[-2,4],[-2,5],[-1,7],[-2,5],[-4,3],[-19,1],[-19,11],[-7,-1],[-3,-9],[-2,-10],[-5,1],[-6,6],[-6,5],[0,4],[5,4],[0,4],[-4,2],[-1,7],[0,8],[0,7],[-5,-7],[-5,-3],[-5,0],[-7,2],[-5,4],[-4,2],[-2,-1],[-1,-5],[2,-4],[3,-3],[2,-1],[-3,-7],[-6,5],[-4,11],[-2,9],[-1,13],[-2,11],[-3,8],[-5,3],[-6,2],[-11,9],[-12,5],[-8,13],[-14,9],[-9,15],[-30,65],[-1,2],[0,3],[0,4],[-1,3],[-1,0],[-4,-1],[-1,1],[-3,5],[-1,4],[0,7],[4,-2],[5,1],[5,3],[4,6],[-5,-2],[-1,-2],[1,6],[1,5],[1,4],[0,5],[-2,2],[-3,-2],[-3,1],[1,7],[-6,0],[-3,5],[-1,7],[4,9],[-6,8],[-3,5],[-2,7],[-2,-6],[-3,-2],[-5,1],[-4,3],[-1,-12],[3,-8],[8,-12],[4,-11],[4,-14],[1,-14],[-1,-14],[-12,9],[-35,-2],[-34,5],[-40,-9],[-24,5],[-6,3],[-10,11],[-11,4],[-4,6],[-3,9],[-7,30],[-1,6],[0,9],[2,26],[-1,1],[-8,23],[-3,5],[-4,1],[-3,-2],[-2,-6],[0,-7],[4,-26],[0,-72],[-2,-18],[-6,1],[4,13],[-1,18],[-4,18],[-3,4],[-7,-6],[-2,-2],[-1,-5],[0,-11],[-1,-5],[-3,-3],[-2,2],[-2,4],[-3,1],[-2,-3],[0,-4],[-1,-3],[-3,-2],[-10,9],[-6,39],[-11,9],[-13,0],[-3,2],[-6,8],[-3,2],[-2,-2],[-4,-8],[-3,-2],[-1,0],[0,-2],[-1,-1],[-2,-1],[-1,1],[0,5],[-2,2],[-11,8],[-2,2],[-3,2],[-3,1],[-2,-7],[-2,-2],[-7,-1],[-6,1],[-4,4],[-2,0],[0,-7],[-2,-2],[-5,1],[0,-2],[1,-2],[1,-4],[-3,0],[-13,3],[-4,3],[-7,16],[-3,8],[-1,9],[-5,10],[-39,31],[-4,4],[-4,7],[-3,3],[-5,1],[-3,2],[-1,3],[-3,11],[0,3],[-4,0],[-5,1],[-5,4],[-3,10],[2,10],[3,5],[5,4],[3,2],[32,-2],[10,5],[8,-2],[8,1],[5,2],[8,-3],[6,-2],[14,5],[11,9],[3,-1],[3,3],[6,0],[3,2],[4,2],[4,7],[2,5],[3,2],[-1,13],[2,5],[-1,10],[2,16],[0,7],[-4,2],[-4,1],[-8,12],[-5,9],[-10,14],[-9,7],[-25,18],[-10,-1],[-22,-4],[-29,-10],[-9,8],[-19,11],[-21,-1],[-12,-2],[-6,-2],[-6,2],[-9,4],[-18,-5],[-15,7],[-3,-1],[-5,-5],[-3,-2],[-13,6],[-10,-5],[-29,16],[-6,-1],[-6,-5],[-3,-10],[-1,-11],[0,-12],[-1,-11],[-5,-5],[-9,-7],[-17,-28],[-3,-4],[-6,-1],[-5,-3],[-18,-19],[-9,-12],[-8,-16],[-16,-60],[-6,-13],[-9,-2],[-9,6],[-4,0],[-4,-2],[0,-1],[0,-9],[-1,-2],[-1,0],[-1,1],[-2,-1],[-1,0],[-1,0],[-1,-2],[0,-8],[0,-2],[-10,-13],[-3,-7],[-2,-5],[0,-3],[0,-2],[0,-3],[-2,-8],[-1,-4],[-3,-4],[-1,2],[0,2],[0,-7],[-2,-4],[-2,6],[-2,2],[-2,-1],[-1,-9],[-4,-10],[-14,-3],[-14,4],[-13,10],[3,5],[-1,6],[-2,6],[-2,7],[-2,0],[-4,-15],[-6,-15],[-9,-10],[-7,-4],[0,2],[1,4],[1,2],[-31,-9],[-2,1],[-1,2],[-1,4],[0,4],[0,2],[-3,-2],[-3,-8],[-4,-2],[-22,2],[-6,-2],[-11,-22],[-1,-5],[-2,-16],[-1,-6],[1,-4],[1,-3],[0,-9],[-3,5],[-3,-1],[-2,-7],[0,-9],[2,-8],[3,-3],[3,2],[4,5],[-2,-13],[-9,-14],[-3,-12],[1,-3],[2,-3],[1,-4],[-1,-6],[-3,-5],[-3,-5],[-3,-3],[-3,-1],[-5,2],[-11,11],[-6,3],[-6,-3],[-11,-13],[-5,-4],[-3,-1],[-6,1],[-2,0],[-3,-3],[-7,-8],[-8,-5],[-33,-55],[-12,-13],[-12,-2],[-3,12],[11,47],[2,23],[-6,17],[-11,4],[-13,-4],[-22,-13],[-11,-10],[-28,-37],[-11,-5],[-12,0],[-12,7],[-3,6],[-3,9],[0,9],[1,10],[1,4],[1,5],[2,4],[2,1],[1,-1],[1,-3],[1,-4],[0,-2],[2,-4],[3,-1],[2,-1],[3,0],[4,4],[4,7],[0,8],[-5,6],[5,5],[4,0],[3,-6],[0,-11],[23,24],[20,12],[23,21],[15,22],[3,2],[3,0],[4,-1],[1,-2],[-1,-5],[9,-8],[6,4],[7,8],[8,4],[4,-3],[5,-5],[3,-8],[2,-6],[1,-4],[8,11],[4,-1],[4,32],[-3,-7],[-3,-10],[-3,-6],[-4,7],[-2,11],[1,9],[-1,7],[-6,5],[3,13],[1,4],[-5,1],[-6,4],[-5,5],[-3,6],[-2,8],[-2,10],[-3,8],[-4,2],[2,5],[3,9],[3,11],[1,10],[1,14],[1,12],[4,26],[0,2],[5,15],[1,1],[3,1],[1,2],[1,3],[2,8],[0,3],[6,17],[4,9],[5,6],[0,5],[-5,0],[4,7],[12,5],[5,6],[4,9],[3,13],[2,13],[-4,7],[0,5],[3,-2],[3,-3],[4,6],[4,1],[3,-3],[2,-7],[3,22],[1,6],[3,2],[7,1],[2,3],[0,6],[1,10],[2,7],[3,-3],[4,-5],[3,3],[3,7],[3,5],[-3,7],[-2,4],[-4,2],[-5,-1],[2,5],[2,4],[2,3],[3,1],[4,-3],[3,-8],[1,-7],[3,-3],[4,1],[3,4],[17,24],[4,-8],[2,12],[5,6],[12,2],[4,2],[20,19],[9,7],[5,0],[3,-1],[3,-3],[3,0],[2,1],[4,5],[2,2],[0,5],[-2,-2],[-2,-3],[0,2],[0,2],[-2,1],[6,7],[6,4],[14,1],[1,3],[4,19],[2,2],[11,0],[-1,-4],[0,-2],[-1,-2],[6,-2],[3,6],[2,9],[2,7],[5,3],[3,-2],[3,-5],[5,-4],[-2,-6],[3,2],[4,5],[3,5],[1,10],[4,12],[6,12],[5,4],[3,3],[15,18],[5,5],[6,0],[4,-3],[4,-6],[0,-4],[-3,-4],[-1,-7],[1,-8],[2,-8],[3,-3],[3,4],[2,6],[2,4],[-5,8],[1,8],[4,7],[6,5],[11,4],[3,2],[3,5],[2,1],[3,-1],[4,-5],[2,-2],[2,2],[2,3],[2,2],[2,-3],[2,-6],[-2,-2],[-3,-1],[-1,-3],[1,-6],[2,-2],[2,2],[3,6],[-1,-12],[5,0],[6,7],[3,15],[4,13],[9,0],[10,-3],[7,2],[6,5],[25,-3],[26,7],[6,5],[6,0],[12,13],[6,4],[2,2],[3,8],[1,2],[3,1],[3,2],[4,5],[9,13],[4,5],[11,3],[13,11],[19,6],[9,8],[19,-9],[6,1],[8,4],[3,1],[7,2],[3,1],[3,2],[3,1],[2,-2],[11,-15],[8,-4],[18,-4],[8,-4],[6,4],[44,0],[7,-1],[4,2],[4,3],[3,-3],[3,0],[4,0],[3,-1],[2,-2],[5,-8],[6,-7],[1,-12],[-1,-13],[-1,-11],[-2,-4],[-2,-2],[0,-2],[4,-4],[3,0],[3,1],[4,3],[1,3],[2,15],[1,5],[2,4],[2,1],[3,1],[23,8],[3,2],[3,7],[7,3],[13,4],[4,3],[11,10],[6,10],[13,15],[4,2],[5,-4],[-3,-6],[-8,-7],[-13,-6],[-15,-18],[-4,-7],[0,-4],[13,-6],[15,-37],[10,-10],[6,0],[2,3],[2,6],[4,10],[2,5],[3,14],[1,3],[3,1],[6,3],[2,0],[11,-4],[2,0],[1,1],[1,-2],[0,-9],[2,-13],[5,-3],[6,2],[6,3],[44,17],[6,0],[13,-5],[7,1],[6,5],[5,8],[2,12],[-5,11],[3,3],[4,1],[4,-1],[2,-3],[0,-4],[-2,-4],[-7,-28],[7,-12],[1,-1],[10,-36],[6,-8],[4,-1],[11,-4],[4,-3],[3,-5],[3,-7],[4,-6],[5,-3],[15,0],[4,-2],[4,-7],[4,-5],[5,-3],[5,-3],[9,0],[9,3],[16,13],[-2,14],[5,1],[14,-15],[7,-4],[6,2],[1,14],[3,-3],[3,-4],[2,-5],[1,-6],[6,-22],[1,-4],[10,-12],[2,-1],[5,1],[2,-2],[1,-2],[0,-3],[0,-2],[5,4],[10,17],[17,9],[2,-1],[0,-4],[-3,-5],[-5,-7],[-6,6],[-3,-5],[-4,-21],[3,-10],[2,-3],[3,-4],[3,-1],[11,-3],[5,-3],[16,-23],[1,-3],[1,-2],[2,-1],[1,1],[2,3],[1,3],[1,1],[6,2],[2,-3],[7,-60],[0,-1],[4,-2],[4,-4],[3,-4],[3,-7],[3,-10],[4,-18],[2,-9],[8,-15],[1,-3],[4,-2],[8,0],[3,-2],[8,-22],[1,-7],[3,-4],[20,-35],[8,-8],[8,3],[3,-6],[5,-7],[5,-4],[2,7],[3,0],[15,-6],[5,0],[3,4],[1,4],[0,3],[4,0],[3,-1],[4,-5],[3,-1],[6,1],[10,8],[6,3],[6,0],[15,-3],[28,-7],[13,2],[1,-6],[6,-35],[1,2],[2,2],[3,-7],[3,4],[4,19],[-4,10],[-2,4],[-2,3],[0,4],[8,-2],[9,-18],[31,-21],[3,-6],[3,-8],[5,-9],[7,-8],[5,-5],[6,-4],[17,-6],[5,1],[0,-4],[0,-8],[0,-4],[3,3],[1,2],[2,-6],[3,-12],[2,-5],[2,-3],[5,-6],[2,-3],[2,-3],[3,0],[3,1],[3,0],[9,-8],[4,-3],[14,-2],[3,-2],[0,-6],[0,-7],[2,-5],[2,-1],[7,0],[-1,-1],[-1,-2],[3,-5],[4,-3],[3,-2],[3,-2],[1,0],[4,3],[3,-6],[3,-15],[6,-10],[1,-4],[2,-11],[5,-18],[2,-5],[3,-3],[4,-4],[13,-26],[1,-5],[4,-17],[2,-5],[3,1],[2,6],[1,44],[2,6],[3,3],[7,-2],[5,-1],[-3,-6],[-8,-3],[-2,-5],[0,-11],[1,-8],[2,-6],[2,-6],[3,-6],[3,-2],[7,0],[3,-4],[2,-9],[1,-10],[0,-7],[1,-7],[3,-5],[4,-4],[8,-5],[1,0],[4,4],[3,-3],[2,-4],[2,-2],[17,5],[5,-1],[5,-5],[12,-15],[0,8],[2,4],[7,4],[1,-6],[2,-3],[2,-1],[3,1],[0,3],[-1,4],[-1,2],[4,-3],[4,-6],[6,-12],[-4,-1],[-3,3],[-2,1],[-1,-11],[1,-10],[4,-19],[1,-9],[1,-6],[4,-3],[8,-2],[7,-7],[2,-1],[2,1],[2,3],[1,3],[0,1],[0,3],[-1,8],[-3,7],[-7,6],[-3,8],[-4,17],[-1,14],[-2,4],[-1,3],[-6,4],[-1,2],[0,6],[-2,8],[-3,4],[-5,-4],[-4,8],[-3,-7],[-4,5],[-8,19],[-10,17],[-3,9],[-2,2],[-4,-4],[3,10],[4,11],[5,6],[4,-1],[10,-16],[1,-5],[2,-15],[1,-3],[29,-43],[6,-5],[14,-9],[4,-6],[4,-8],[9,-15],[4,-3],[17,-24],[4,-4],[4,-3],[4,0],[5,3],[-3,-12],[2,-7],[3,-5],[1,-5],[-1,-12],[-6,-14],[-2,-10],[-3,3],[-4,10],[-2,3],[-18,16],[-4,3],[-5,1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,1],[-2,2],[-2,2],[-3,6],[-3,1],[-6,-1],[-2,-6],[1,-6],[3,-3],[3,-2],[2,-3],[2,-4],[3,-3],[3,-2],[8,2],[5,-5],[1,-10],[-2,-9],[-4,-5],[-1,-5],[1,-10],[3,-11],[1,-4],[3,-1],[7,2],[4,-1],[-2,-10],[2,1],[7,7],[1,1],[2,3],[3,1],[2,8],[4,32],[7,26],[2,6],[5,2],[5,-6],[30,-73],[5,-8],[0,-1],[4,-6],[10,-9],[16,-7],[3,-5],[-2,-8],[6,0],[-2,-13],[-2,-6],[-3,-2],[-10,-1],[-4,-3],[-3,-6],[-1,-8],[4,-15],[14,15],[0,-15],[2,4],[1,6],[1,7],[1,8],[-2,0],[4,11],[1,6],[1,7],[17,-12],[1,1],[3,2],[1,-1],[5,-6],[7,-4],[3,0],[4,-4],[4,-8],[2,-9],[-2,-3],[-5,-2],[-15,-14],[1,8],[-3,6],[-3,0],[1,-6],[-1,-10],[3,-4],[6,-1],[4,-4],[4,-6],[5,-5],[5,-2],[6,-1],[0,4],[-6,4],[-2,3],[-1,5],[-2,9],[0,3],[5,5],[5,0],[7,-4],[6,-8],[4,-9],[1,0],[0,13],[2,0],[-1,-24],[-3,-8],[-15,-1],[0,-4],[6,0],[-3,-3],[-1,-1],[2,-8],[3,0],[3,3],[4,1],[2,-4],[3,-11],[2,-1],[2,1],[2,3],[1,3],[1,3],[1,2],[1,0],[2,-1],[2,1],[8,9],[3,3],[-4,3],[-9,2],[-4,3],[-3,8],[-1,9],[2,8],[5,4],[33,-2],[7,-5],[4,-6],[9,-7],[1,-2],[6,-10],[4,-6],[29,-22],[9,-12],[2,-14],[0,-5],[0,-12],[1,-7],[3,-7],[2,1],[3,6],[4,5],[3,1],[4,-2],[3,-3],[2,-5],[1,-5],[0,-8],[2,0],[1,3],[0,3],[1,3],[2,-9],[2,-2],[2,4],[0,11],[2,-1],[8,0],[3,1],[2,2],[4,8],[2,2],[4,-1],[3,-1],[3,-3],[2,-10],[3,-1],[1,2],[-1,6],[14,20],[2,0],[4,-4],[1,-2],[1,-4],[3,-1],[4,3],[10,0],[8,-2],[5,-10],[3,-20],[11,4],[6,-8],[10,-29],[-6,-24],[-2,-4],[-3,-5],[-1,-4],[0,-4],[-1,-8],[-1,-4],[-2,-7],[-4,-7],[-4,-6],[-5,0],[-1,6],[-1,9],[-2,6],[-4,-5],[-2,3],[-2,1],[-1,-1],[-2,-3],[2,0],[2,-1],[1,-3],[1,-4],[-8,-1],[0,-7],[3,-10],[3,-11],[2,0],[3,10],[7,4],[8,1],[6,-2],[12,-12],[2,-2],[0,-9],[1,-6],[2,-4],[4,0],[-2,-14],[-4,0],[-4,6],[-4,4],[-2,2],[-1,3],[-1,4],[-1,4],[-2,3],[-1,1],[-15,-4],[-5,-4],[-19,4],[2,-7],[0,-7],[-3,-15],[0,-3],[0,-8],[-1,-7],[-1,-6],[2,-5],[3,-13],[11,-12],[4,-3],[2,6],[3,13],[14,22],[3,12],[4,-7],[3,-9],[0,-10],[-2,-11],[7,2],[3,-2],[-1,-6],[-1,-6],[3,-4],[6,-4],[-1,13],[16,-7],[4,10],[2,0],[1,-3],[2,-3],[2,-3],[3,-3],[2,12],[-5,4],[-2,1],[-3,-1],[4,10],[6,4],[7,0],[6,-1],[5,-4],[5,-8],[2,-6],[-6,-3],[2,-8],[2,-8],[1,0],[1,3],[1,5],[3,-12],[6,-3],[16,3],[-5,7],[-10,10],[-6,3],[4,8],[7,3],[7,0],[5,-3],[-2,5],[4,-1],[13,-5],[4,-4],[1,-4],[-5,-3],[0,-4],[8,-4],[1,1],[0,1],[0,1],[1,1],[3,-5],[5,3],[4,0],[3,-14],[0,3],[2,5],[0,4],[3,-4],[2,-2],[2,0],[2,2],[-4,8],[23,6],[5,-4],[3,-3],[3,-1],[2,-2],[1,-6],[2,-3],[4,0],[7,1],[5,-6],[4,-9],[5,-6],[22,-5],[5,-4],[5,-6],[-3,-3],[-1,-1],[4,-14],[0,-7],[1,-2],[1,0],[2,-2],[1,-3],[2,-2],[10,-7],[1,-8],[5,-8],[13,-16],[2,-6],[3,-12],[9,-25],[2,-2],[1,-4],[14,-29],[2,-2],[4,-1],[6,-4],[8,-9],[6,-12],[2,-12],[2,0],[4,8],[5,0],[7,-3],[5,-1],[5,4],[4,6],[6,5],[6,1],[3,-2],[3,-4],[5,-10],[10,-12],[3,-9],[2,-10],[2,-10],[0,-12],[-2,-13],[-6,-7],[-6,-5],[-4,-8],[-5,-6],[-2,-2],[-2,-3],[-1,-21],[-9,-16],[-10,1],[-12,6],[-13,1],[-17,-7],[-12,-2],[-23,-11],[-11,4],[-8,-7],[-18,6],[-21,-8],[-7,-1],[-7,-6],[-4,-8],[-5,-10],[-4,-7],[-7,-4],[-6,0],[-4,-1],[-2,-5],[-2,-12],[-4,-15],[-9,-6],[-10,-3],[-2,7],[-2,2],[-1,0],[-1,-5],[0,-5],[-7,-5],[-1,0]],[[28241,62642],[1,-11],[0,-8],[-3,-2],[-5,7],[-3,4],[-5,2],[-3,4],[-4,16],[-5,7],[-10,10],[4,6],[5,-2],[4,-6],[3,-6],[4,-11],[2,-5],[5,-5],[1,10],[2,2],[4,-4],[3,-8]],[[28212,62744],[-4,-9],[-13,-6],[-4,-6],[-5,5],[-4,3],[3,5],[10,4],[4,8],[1,-2],[1,-2],[3,3],[2,0],[6,-3]],[[28103,62760],[6,2],[6,-4],[9,-14],[-4,-8],[-7,4],[-6,11],[-4,9]],[[29023,62784],[2,-4],[4,-15],[2,-7],[1,-7],[-5,0],[-9,5],[-5,2],[-4,4],[-3,8],[0,10],[13,5],[4,-1]],[[28076,62792],[14,1],[5,-6],[3,-15],[-2,0],[-5,7],[-20,4],[-6,13],[4,10],[2,5],[3,0],[1,-5],[1,-6],[0,-8]],[[28048,62839],[4,-3],[6,-1],[5,-4],[0,-8],[-3,-9],[-2,-3],[0,4],[-1,2],[-7,3],[-14,19],[-3,6],[4,1],[5,0],[4,-3],[2,-4]],[[28035,62857],[-2,1],[-4,-1],[1,-3],[1,-9],[-8,8],[-5,10],[-10,22],[0,5],[5,-4],[4,-7],[3,-7],[3,-7],[-3,12],[-6,15],[-7,12],[-6,2],[0,-4],[0,-3],[1,-1],[0,-1],[1,-3],[-4,2],[-2,3],[-2,5],[-2,6],[12,1],[12,-15],[11,-21],[7,-18]],[[27947,62979],[9,3],[7,-9],[11,-23],[-4,-3],[-5,0],[-4,2],[-4,6],[2,0],[5,0],[-1,6],[-2,4],[-2,1],[-2,-3],[-7,11],[-3,5]],[[27396,63324],[-1,-1],[-11,-21],[-22,-30],[-9,-7],[-9,-2],[0,12],[3,3],[7,-3],[3,5],[3,9],[3,6],[3,-2],[3,-3],[4,2],[4,5],[1,5],[2,10],[4,7],[9,11],[2,2],[1,-3],[1,-3],[-1,-2]],[[27064,63283],[-2,-7],[2,-7],[4,-7],[4,-3],[-3,-9],[-6,-12],[-6,-11],[-5,-5],[-5,-2],[-36,-35],[-21,-15],[-20,-5],[-3,3],[-3,5],[-18,1],[-2,2],[-6,4],[-3,2],[-10,0],[-3,2],[-9,24],[-3,6],[-8,11],[-3,6],[-2,12],[-2,16],[-3,15],[-1,5],[2,0],[3,-6],[14,-20],[2,-8],[4,-7],[5,-5],[5,-2],[12,0],[0,2],[8,14],[5,6],[2,3],[1,5],[1,-1],[1,-3],[0,-6],[-2,-8],[2,-4],[5,18],[-2,7],[-8,3],[-3,6],[-24,84],[-4,23],[3,26],[12,18],[2,8],[2,6],[6,8],[6,6],[5,2],[-4,3],[-3,1],[-3,0],[-3,3],[0,2],[2,1],[2,4],[36,-9],[23,-11],[16,-9],[4,-4],[4,-7],[2,-9],[-1,-11],[-2,-7],[1,-7],[4,-9],[12,-21],[4,1],[3,-3],[1,-7],[2,-7],[1,-6],[0,-4],[-1,-7],[-3,-11],[-2,0],[1,-5],[1,-5],[-1,-5],[-1,-5],[6,-8],[3,-3],[4,-1],[0,-5]],[[28435,63531],[2,-8],[0,-7],[0,-8],[-6,-27],[0,-5],[4,-10],[-5,0],[-3,-3],[-6,-9],[2,11],[-2,4],[-3,-1],[-2,-10],[0,-2],[1,-4],[1,-4],[-2,-2],[-2,0],[-1,3],[-1,4],[-3,9],[-2,6],[-1,5],[-4,5],[-4,-3],[-6,2],[-6,6],[-4,5],[0,6],[1,6],[1,6],[1,7],[-1,4],[-3,3],[-5,3],[1,-5],[0,-5],[0,-6],[-1,-4],[-2,12],[-2,0],[-3,-9],[-4,-2],[-5,3],[-2,10],[-2,7],[-5,8],[-3,10],[1,13],[-2,4],[5,0],[4,-5],[4,-6],[4,-5],[5,0],[3,3],[2,5],[4,4],[4,3],[4,-1],[4,-2],[3,-4],[1,-2],[2,-8],[2,-2],[2,1],[4,6],[2,1],[3,-3],[9,-11],[3,-2],[4,3],[2,5],[3,1],[5,-9]],[[28376,63653],[2,8],[-3,8],[-5,8],[-4,4],[7,2],[6,-9],[4,-15],[4,-25],[4,-10],[5,-9],[4,-11],[-6,0],[-7,14],[-11,35]],[[28334,63586],[-2,8],[-9,13],[-3,9],[5,4],[3,7],[3,10],[1,9],[0,22],[-1,7],[-3,10],[4,-1],[5,-3],[3,-6],[1,-8],[-1,-5],[-3,-6],[-2,-8],[2,-9],[2,-2],[7,1],[3,-2],[2,-5],[1,-6],[2,-4],[4,-1],[-3,4],[1,4],[1,3],[2,3],[1,2],[2,-7],[3,-3],[3,0],[2,7],[2,-10],[-3,-5],[-5,-2],[-4,-4],[3,-2],[3,-3],[2,-4],[2,-3],[3,-2],[5,-2],[3,-4],[-6,-25],[-4,-10],[-3,6],[-1,-1],[-4,-2],[-1,-1],[-1,5],[0,2],[-3,5],[-1,12],[-6,4],[-4,-4],[2,-15],[-3,3],[-10,11],[-2,4]],[[28278,63693],[6,8],[-2,10],[-6,5],[-3,-5],[0,-5],[-1,-6],[-2,-4],[-3,1],[-2,7],[0,7],[1,5],[3,-2],[0,10],[-4,12],[-7,5],[-6,-8],[-2,3],[-1,1],[-1,0],[-2,1],[4,9],[6,3],[9,0],[9,7],[4,0],[2,-7],[6,6],[7,-4],[7,-9],[5,-10],[3,-7],[2,-9],[2,-9],[1,-20],[1,-6],[6,-13],[3,0],[4,-3],[3,-1],[-5,-9],[-6,4],[-14,17],[-6,3],[-7,0],[-7,2],[-7,11]],[[28215,63772],[-6,-4],[-7,-2],[-13,0],[-6,4],[-8,10],[-11,5],[-8,5],[-5,6],[4,7],[-4,9],[-6,-8],[-5,-5],[0,20],[1,-2],[2,-2],[1,12],[3,1],[3,-3],[2,0],[3,1],[12,-5],[7,-8],[8,-2],[8,2],[7,-2],[6,1],[5,7],[4,8],[5,4],[6,-1],[7,-4],[5,-6],[3,-9],[-1,1],[-2,3],[1,-8],[19,-38],[1,-5],[-1,-6],[-2,0],[-3,3],[-2,1],[-34,-16],[0,4],[0,2],[1,1],[0,3],[1,4],[1,2],[1,0],[2,-1],[1,1],[1,6],[-1,5],[-3,3],[-3,-4]],[[28060,63876],[-2,8],[-4,3],[-17,2],[-2,3],[-4,4],[5,2],[26,-4],[4,-5],[0,-6],[-6,-7]],[[27956,63876],[-2,1],[-3,2],[-4,5],[-4,7],[-9,21],[-5,-4],[-5,2],[-5,4],[-6,10],[-2,1],[-1,3],[-1,6],[-1,3],[-4,6],[-1,2],[-3,4],[-1,8],[-3,8],[-5,4],[-8,-7],[-4,1],[0,10],[8,5],[5,1],[5,-4],[14,-33],[6,-9],[13,-8],[11,-17],[11,-9],[6,-11],[4,-14],[2,-10],[-6,11],[-2,1]],[[27807,64066],[2,1],[0,-8],[-3,-6],[-6,8],[-3,-2],[-3,-8],[-3,-3],[-2,15],[4,5],[5,3],[4,0],[5,-5]],[[27688,64083],[14,13],[6,1],[5,-6],[-1,-2],[-3,-5],[-1,-1],[2,-3],[2,-3],[1,-5],[0,-6],[-28,10],[-4,7],[2,2],[1,2],[2,-1],[2,-3]],[[27723,64164],[2,-7],[3,-7],[3,-5],[4,-1],[5,-1],[1,-1],[-1,-2],[-2,-4],[-6,-6],[-5,3],[-12,11],[1,6],[1,4],[2,4],[2,6],[2,0]],[[27547,64197],[3,0],[2,-9],[2,-4],[0,-3],[-3,-5],[-4,-5],[-4,1],[-2,3],[-4,1],[-9,-1],[-7,-5],[-13,-14],[3,7],[17,22],[5,2],[5,0],[6,-3],[-1,3],[-2,6],[-1,4],[2,3],[1,-4],[4,-8],[0,9]],[[27641,64205],[1,0],[2,2],[2,0],[1,-5],[-1,-4],[-2,-2],[-2,-2],[-2,-4],[-3,1],[-5,4],[-5,4],[-5,-2],[-1,3],[-1,0],[-4,-3],[1,8],[2,5],[3,2],[5,1],[1,-1],[2,-6],[1,-1],[3,-1],[7,1]],[[28171,62706],[1,-3],[0,-5],[-2,-3],[-2,0],[-2,1],[-1,3],[-2,2],[0,3],[1,1],[1,-1],[7,-3],[0,2],[0,1],[-1,2]],[[28152,62708],[2,-1],[4,-3],[0,-3],[-5,-1],[-2,4],[0,3],[1,1]],[[27227,63290],[2,-5],[1,-10],[-5,-8],[-11,-8],[-8,-8],[-2,-1],[-2,-2],[-1,-3],[-4,-2],[-6,-1],[-1,2],[4,2],[5,10],[3,1],[3,4],[2,4],[2,3],[7,6],[4,0],[3,3],[2,5],[1,4],[1,3],[0,1]],[[27263,63299],[4,2],[0,-3],[-4,-7],[-5,-6],[-9,-14],[-5,0],[-3,7],[-1,8],[1,-1],[3,-6],[4,1],[4,6],[1,3],[-1,1],[1,1],[8,7],[2,1]],[[27043,63471],[10,-9],[5,-7],[-4,-3],[-7,-1],[-8,7],[-3,10],[7,3]],[[26791,63476],[2,-1],[-2,-1],[-5,0],[-6,1],[-5,4],[3,3],[8,-4],[5,-2]],[[27345,63537],[2,-4],[1,-8],[-2,-1],[-3,4],[-3,-1],[-2,1],[-1,4],[-1,5],[0,4],[2,3],[3,-2],[3,-3],[1,-2]],[[28128,63823],[1,2],[2,-2],[0,-4],[-2,-6],[-1,-4],[-5,-4],[-3,1],[0,3],[0,10],[1,1],[4,-2],[3,1],[0,4]],[[27079,63869],[1,-7],[1,-14],[-2,-11],[-1,-4],[-1,-3],[-2,2],[1,37],[-1,5],[0,3],[1,1],[2,-3],[1,-4],[0,-2]],[[27993,63877],[2,2],[11,1],[-3,-6],[-5,-6],[-2,0],[0,4],[-1,3],[-2,2]],[[27866,64007],[4,-4],[2,-4],[-3,-5],[-4,-2],[-2,4],[0,4],[-1,2],[-1,1],[-1,0],[-2,1],[-6,7],[-2,6],[0,6],[4,2],[-1,4],[0,5],[2,2],[2,-7],[-1,-9],[2,-2],[5,-2],[2,-5],[1,-4]],[[27826,64070],[2,-6],[0,-5],[-1,-2],[-4,-3],[-2,-4],[2,-3],[2,-1],[0,-3],[-2,-5],[-3,0],[-3,3],[-2,6],[1,3],[2,3],[0,3],[-2,1],[-3,3],[3,8],[6,4],[4,-2]],[[27760,64120],[1,-4],[2,-8],[-1,-2],[-2,5],[-1,3],[-1,-1],[-2,0],[-2,0],[-2,3],[-1,3],[0,2],[1,-1],[1,3],[0,8],[3,1],[4,-7],[0,-5]],[[27710,64154],[0,-2],[1,-4],[0,-3],[-1,-4],[-2,0],[-2,2],[-1,5],[-1,4],[-3,2],[-4,4],[-1,1],[0,3],[-1,1],[-2,2],[0,5],[2,4],[2,1],[2,0],[3,-1],[0,-4],[2,-4],[4,-7],[2,-5]],[[27666,64182],[3,0],[4,-1],[0,-3],[-3,-1],[-2,0],[-7,-1],[-3,-5],[-4,-3],[-4,-2],[0,1],[-1,4],[1,1],[3,-1],[-1,6],[2,3],[4,1],[2,0],[6,1]],[[27592,64216],[1,-2],[0,-4],[-1,-4],[-1,0],[-1,0],[0,-5],[-1,0],[-4,1],[-2,-2],[0,-4],[-1,1],[0,8],[2,6],[5,4],[3,1]],[[27562,64213],[18,-4],[0,-2],[0,-3],[-2,-1],[-2,2],[-2,0],[-1,-4],[-1,-1],[-6,5],[-3,2],[-2,1],[-6,-1],[-3,0],[-7,6],[-3,1],[-2,6],[-2,1],[1,3],[6,-1],[8,-6],[9,-4]],[[27533,64239],[2,-1],[1,-5],[-3,-5],[-3,1],[-3,2],[-3,1],[-3,3],[-2,4],[-1,2],[-2,2],[2,3],[6,2],[7,-9],[2,0]],[[25494,59783],[2,-2],[12,-18],[7,-5],[7,7],[16,35],[7,9],[-1,10],[3,2],[10,-3],[17,20],[2,8],[0,6],[-1,2],[-3,2],[-3,4],[-1,5],[1,1],[12,1],[4,3],[5,7],[8,5],[24,4],[5,3],[2,8],[2,1],[1,1],[5,-1],[5,-3],[12,-15],[5,-1],[0,3],[-3,6],[3,7],[10,12],[-5,-15],[-2,-9],[2,-4],[2,-5],[26,-48],[8,-8],[9,4],[1,3],[3,10],[2,3],[2,0],[7,0],[2,2],[2,10],[4,5],[5,1],[29,-13],[25,-18],[26,-6],[29,-14],[10,-2],[11,2],[17,11],[5,2],[1,1],[4,8],[1,1],[2,3],[3,-3],[4,-4],[1,-2],[12,-2],[54,10],[9,-1],[9,-7],[0,-1],[7,-8],[4,-3],[7,-1],[5,2],[5,5],[26,34],[7,15],[3,5],[10,8],[10,5],[39,3],[4,2],[3,3],[10,17],[6,13],[3,14],[-5,12],[-17,6],[-9,4],[2,7],[7,1],[21,-9],[15,-6],[11,-2],[13,-8],[13,-7],[4,-2],[3,-3],[1,-7],[0,-8],[1,-6],[2,0],[0,4],[0,2],[1,1],[1,1],[4,0],[3,-8],[5,-8],[6,-9],[12,-11],[21,-11],[14,2],[21,5],[30,1],[16,14],[20,31],[14,16],[21,1],[13,-9],[27,-26],[34,-20],[15,-11],[4,-6],[-1,-8],[-4,-11],[0,-9],[0,-15],[6,-11],[6,-2],[6,5],[1,12],[1,5],[3,0],[2,-8],[5,-7],[7,2],[6,-1],[14,-4],[2,6],[5,4],[-6,5],[-7,3],[-22,8],[-8,8],[-7,7],[-3,9],[11,-5],[38,-15],[25,-5],[17,-2],[6,-4],[15,-26],[20,-34],[30,-53],[29,-52],[17,-28],[21,-27],[5,-6],[5,-4],[10,-4],[3,-3],[1,-5],[1,-5],[-2,-3],[-4,-1],[-5,4],[-11,17],[-8,6],[-5,7],[-2,3],[-9,0],[-4,2],[-3,6],[1,1],[2,2],[1,1],[-2,7],[-10,22],[-1,0],[-4,-4],[-3,5],[-4,7],[-4,3],[-5,-1],[-3,-4],[-2,-5],[-4,-6],[-2,3],[-7,6],[3,6],[2,4],[0,4],[-1,1],[-3,1],[-3,0],[-2,-1],[-1,-6],[2,-10],[3,-11],[3,-9],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-9,33],[-3,7],[-3,1],[-4,-1],[-4,-3],[-4,0],[-4,3],[-4,0],[2,-13],[2,-5],[5,-3],[0,-5],[-1,-7],[0,-7],[2,0],[1,9],[5,5],[3,17],[2,2],[3,-4],[4,-19],[4,-16],[2,-13],[-6,-6],[-3,-6],[2,-15],[5,-16],[4,-11],[8,-8],[6,-3],[2,6],[-2,17],[3,-6],[4,-8],[1,-9],[-2,-9],[3,-10],[6,-2],[13,3],[0,-4],[-2,1],[-2,-1],[-3,-4],[0,-3],[2,-10],[4,-10],[4,-6],[6,-3],[5,1],[6,4],[7,5],[4,6],[-4,7],[-11,13],[-2,4],[-1,4],[-2,3],[-2,2],[-3,0],[-21,16],[-4,4],[-6,19],[-3,5],[2,5],[3,3],[6,5],[25,-23],[4,-12],[1,-6],[4,-6],[5,-4],[8,-4],[3,-5],[3,-6],[2,-8],[-2,-2],[-2,-4],[-1,-2],[0,-3],[4,-2],[4,5],[3,1],[2,-17],[-1,-22],[1,-6],[2,-4],[2,0],[2,4],[0,8],[2,0],[2,-12],[2,3],[5,17],[4,6],[6,3],[10,3],[1,3],[0,13],[0,5],[2,2],[2,0],[2,-1],[18,-8],[5,2],[0,-3],[-2,-4],[0,-2],[1,-3],[1,-4],[0,-18],[-2,-9],[-3,-4],[-3,3],[-2,10],[-1,3],[-2,2],[-3,1],[-2,0],[-2,-2],[-2,-5],[-1,-9],[-2,-3],[-1,-2],[-1,-3],[0,-6],[1,-6],[1,-1],[2,2],[2,3],[-2,5],[0,4],[0,3],[2,4],[2,0],[0,-15],[2,-10],[4,-4],[5,5],[2,3],[2,9],[2,3],[2,3],[12,10],[0,2],[-1,6],[-1,4],[-2,2],[-1,4],[-2,6],[0,8],[-2,11],[-4,7],[-5,-5],[-8,10],[-4,2],[-5,-5],[-2,4],[1,3],[1,6],[-5,1],[-12,9],[-2,4],[-3,6],[-6,4],[-4,5],[1,11],[5,5],[4,-5],[4,-8],[3,-4],[3,-2],[30,-32],[38,-29],[14,-22],[3,-11],[5,-38],[5,-24],[7,-23],[9,-14],[34,-28]],[[25746,58158],[3,4],[1,7],[2,6],[3,4],[3,3],[0,4],[-7,0],[-6,3],[-4,5],[-4,8],[-2,6],[0,3],[1,10],[1,1],[9,3],[3,2],[-16,9],[-10,2],[-5,-4],[-1,0],[-1,23],[-4,24],[-5,20],[-6,15],[-1,9],[-1,1],[-1,2],[-1,0],[-2,-1],[-1,1],[-2,5],[-1,5],[0,5],[3,6],[2,3],[5,4],[2,5],[6,16],[2,4],[3,-2],[5,3],[9,7],[-1,5],[0,3],[1,4],[-4,8],[-2,3],[-3,1],[-5,-2],[-3,1],[-2,5],[-5,-7],[-1,-3],[-2,-6],[0,-8],[1,-4],[0,-3],[-3,-5],[-2,0],[-9,0],[-5,-2],[-2,0],[-3,2],[0,4],[4,0],[0,4],[-5,2],[-5,4],[-5,1],[-4,-7],[-2,0],[1,6],[3,14],[-4,3],[-1,7],[1,17],[-1,9],[-4,-2],[-4,-7],[-2,-6],[2,-17],[-4,-16],[-7,-12],[-8,-4],[-5,2],[-7,8],[-5,4],[0,4],[0,4],[-1,2],[-3,0],[-2,1],[-4,3]],[[25662,58340],[1,-4],[0,-9],[-3,-9],[-7,-2],[-3,1],[-1,1],[-1,2],[0,4],[2,0],[-1,3],[-2,6],[-1,4],[4,3],[4,1],[8,-1]],[[25660,58387],[3,-2],[7,4],[5,0],[0,-4],[-5,-5],[3,-23],[-4,-8],[-13,8],[-6,8],[1,10],[3,11],[3,4],[3,-3]],[[25867,60020],[1,-3],[-2,-10],[1,-7],[-5,1],[-5,-3],[-7,-6],[-7,-8],[-4,7],[-5,4],[2,7],[13,12],[7,3],[4,2],[3,2],[4,-1]],[[25942,60114],[2,14],[8,14],[11,14],[9,8],[17,16],[18,12],[12,7],[8,2],[11,-1],[9,-1],[13,0],[-5,-4],[-6,-6],[-6,4],[-8,-5],[-6,3],[-5,-2],[-2,-1],[-4,-6],[-1,-1],[-3,0],[-4,-2],[-5,-8],[-10,-10],[-10,-8],[-11,-15],[-9,-6],[-6,-2],[-5,-8],[-4,-9],[-6,-8],[-2,9]],[[26135,60219],[5,16],[3,8],[9,8],[5,-4],[5,-7],[-2,-7],[-6,-1],[-1,-9],[-4,-10],[-5,-1],[-4,-8],[-14,-20],[-1,5],[2,11],[4,14],[4,5]],[[26683,60785],[2,0],[2,-1],[2,-1],[2,-2],[-3,-1],[-2,0],[-2,2],[-1,3]],[[28103,51319],[16,-24],[6,-17],[8,-14],[3,-10],[3,-13],[4,-12],[5,-9],[7,-4],[4,1],[4,3],[3,-2],[0,-11],[1,-6],[6,-14],[2,-9],[4,5],[4,0],[15,-7],[2,-3],[3,-5],[26,-62],[7,-11],[5,-6],[17,-9],[6,-6],[36,-59],[11,-12],[20,-1],[19,-16],[3,0],[1,2],[2,0],[2,-7],[1,-6],[0,-6],[1,-7],[3,-5],[6,-5],[6,-3],[6,0],[5,2],[23,18],[6,0],[9,-14],[2,-43],[6,-18],[18,-27],[10,-9],[8,3],[1,0],[12,-6],[4,-29],[1,-62],[3,-20],[1,-17],[3,-16],[7,-12],[10,-7],[30,-13],[5,-4],[4,-5],[4,-2],[6,0],[14,12],[5,1],[4,-2],[6,-3],[10,-25],[9,-6],[11,-1],[3,-1],[5,-3],[3,-5],[6,-13],[4,-7],[4,-3],[5,0],[19,6],[3,-1],[10,-10],[5,1],[-1,23],[3,3],[10,-6],[13,-3],[4,-2],[5,-7],[7,-15],[6,-3],[4,1],[7,8],[27,6],[5,7],[-3,40],[1,44],[0,4],[3,-1],[6,0],[3,2],[2,2],[7,17],[2,3],[1,2],[5,8],[3,2],[3,-3],[8,-17],[5,-7],[5,-5],[6,-3],[7,-1],[6,0],[3,0],[3,-2],[1,-7],[2,-15],[1,-5],[5,1],[7,4],[7,2],[2,-9],[2,-7],[18,-50],[2,-8],[1,-11],[3,-10],[7,-13],[17,-22],[2,-8],[11,-18],[8,-9],[5,-4],[5,-3],[6,-1],[7,1],[12,6],[5,1],[5,-4],[5,-8],[3,-8],[3,-4],[5,-4],[13,-25],[16,-21],[7,-5],[5,-8],[16,-6],[17,-14],[6,-7]],[[27683,48460],[-1,4],[0,5],[1,6],[3,5],[2,7],[2,8],[2,8],[-3,-17],[-1,-4],[2,-12],[4,6],[1,18],[3,9],[8,-16],[3,3],[20,9],[4,-1],[2,-1],[2,0],[3,2],[6,16],[1,2],[11,47],[3,8],[6,-2],[1,-14],[-2,-29],[3,4],[2,6],[2,6],[2,7],[3,4],[8,12],[5,10],[2,12],[2,14],[1,23],[5,21],[9,32],[2,12],[-3,10],[1,14],[4,23],[1,10],[8,60],[6,23],[1,4],[3,12],[1,14],[6,35],[3,10],[8,18],[2,11],[1,14],[-2,26],[-4,21],[-1,3],[-6,-1],[-3,1],[-2,2],[-3,11],[-6,32],[-3,12],[-2,7],[0,8],[0,35],[-2,27],[0,8],[2,13],[0,8],[-1,4],[-1,2],[-3,10],[-1,2],[-1,4],[0,3],[-1,4],[0,7],[2,7],[1,5],[1,5],[-2,7],[4,10],[5,3],[3,4],[1,14],[2,6],[5,5],[5,6],[2,13],[-17,-20],[-2,-3],[0,-5],[-1,-10],[-2,-2],[-9,-1],[-2,-5],[0,-5],[-2,-14],[-3,-24],[0,-17],[1,-17],[9,-32],[1,-18],[-5,-115],[-3,-24],[-2,-7],[-7,-18],[-3,-3],[-4,-3],[-10,-12],[-4,-2],[-3,3],[-1,8],[-3,2],[-6,-2],[-2,2],[-3,5],[-2,10],[4,9],[8,12],[3,13],[1,9],[3,5],[7,2],[2,-3],[2,-5],[2,-4],[3,-1],[3,4],[1,5],[0,6],[-2,6],[-1,-12],[-4,2],[-6,14],[-6,-2],[-6,-6],[-4,-2],[-2,8],[2,13],[5,25],[1,14],[1,8],[3,3],[3,1],[3,2],[2,5],[5,19],[-2,-1],[-2,-2],[-3,-6],[-2,-2],[-5,1],[-3,-1],[-3,-5],[-3,-7],[-12,-66],[-19,-56],[-8,-20],[-9,-9],[-2,-7],[-2,-6],[-3,-3],[-3,0],[-1,2],[-1,4],[-1,4],[-5,4],[-2,-5],[-1,-9],[1,-12],[1,-2],[7,-16],[1,-5],[1,-7],[-1,-13],[-2,-5],[-7,2],[-12,9],[-11,22],[-4,5],[-4,7],[-2,3],[-1,1],[-5,1],[-3,2],[-10,14],[-30,74],[-23,46],[-9,6],[-8,9],[-9,-1],[-15,10],[-5,5],[-11,22],[-7,5],[-4,0],[-3,1],[-2,6],[-2,20],[-2,9],[-5,14],[-4,8],[-10,18],[-1,3],[-1,7],[-1,5],[1,3],[2,-1],[1,-3],[1,-2],[1,-2],[7,-4],[3,0],[2,-2],[1,-10],[4,-8],[7,0],[10,8],[14,24],[11,12],[10,23],[2,35],[-4,18],[-2,19],[-1,5],[1,6],[3,1],[4,5],[1,14],[-1,15],[-8,63],[-4,25],[-2,11],[-2,9],[-3,7],[-3,11],[-7,34],[-3,11],[-2,7],[0,9],[1,7],[10,14],[-1,14],[0,17],[2,5],[3,7],[4,2],[4,-1],[2,8],[-1,9],[1,11],[1,10],[-1,14],[1,8],[5,5],[0,15],[-9,24],[-16,43],[-14,50],[-5,30],[-4,18],[2,12],[3,7],[4,7],[4,8],[2,6],[2,6],[4,8],[3,9],[1,5],[3,2],[4,-2],[4,0],[3,5],[4,3],[4,-2],[4,3],[3,2],[-1,-5],[5,-5],[5,-1],[3,6],[2,2],[2,6],[3,2],[3,-8],[2,-2],[5,-1],[7,6],[6,11],[6,14],[4,37],[2,12],[3,38],[5,30],[7,26],[3,18],[1,3],[3,4],[4,1],[3,3],[1,-16],[4,-12],[7,-7],[7,-2],[15,-1],[0,8],[-7,4],[-9,4],[-5,0],[-4,6],[-3,17],[-4,14],[-4,3],[-2,6],[0,15],[-3,16],[-1,17],[-4,19],[-5,13],[-3,25],[3,8],[5,1],[9,16],[9,28],[3,10],[1,8],[2,13],[2,10],[6,4],[4,12],[4,13],[5,-9],[6,6],[6,11],[8,12],[17,38],[13,37],[5,12],[1,12],[1,7],[1,2],[2,2],[6,4],[4,22],[3,20],[1,31],[0,14],[-2,25],[-1,45],[3,16],[0,5],[0,2],[3,-3],[2,-3],[1,-4],[1,-9],[2,0],[0,7],[3,12],[1,5],[-1,8],[-1,5],[-4,8],[-7,23],[-2,11],[0,12],[0,13],[2,7],[3,6],[2,9],[1,13],[-2,12],[-2,10],[-2,17],[-2,7],[-4,4],[-5,2],[-4,3],[-2,7],[-2,9],[-1,9],[0,26],[3,25],[6,21],[9,14],[4,-5],[4,-1],[10,2],[4,2],[5,11],[4,2],[4,2],[7,6],[9,3],[5,8],[3,2],[3,2],[8,14],[2,5],[4,11],[2,4],[6,7],[17,11],[7,11],[2,-6],[0,-5],[-6,-38],[1,-8],[3,-6],[3,-4],[3,-6],[4,-16],[1,-5],[-4,27],[-4,6],[-1,4],[0,3],[2,6],[0,3],[-1,15],[1,11],[3,9],[4,6],[12,-8],[14,16],[18,37],[6,3],[20,-3],[2,1],[7,5],[2,2],[8,-1],[4,1],[3,4],[6,-8],[8,3],[8,6],[7,3],[5,6],[21,59],[4,5],[7,-5],[6,-10],[3,-12],[2,-15],[1,-16],[5,6],[3,9],[1,11],[1,26],[2,6],[2,6],[3,9],[1,-5],[2,-3],[2,1],[3,3],[2,5],[0,4],[0,5],[1,6],[5,11],[5,2],[11,-9],[-2,9],[-5,2],[-6,2],[-4,4],[-2,8],[1,8],[2,7],[11,22],[1,8],[0,9],[-1,8],[1,6]],[[27761,48893],[12,-1],[20,-25],[11,-7],[0,-4],[-1,-4],[-1,-4],[-1,-4],[-3,-5],[-14,-13],[-1,-5],[-4,-8],[-1,-4],[-2,-9],[-2,-9],[-2,-5],[-1,0],[-3,-11],[-3,-14],[-4,-14],[-2,-9],[-4,-4],[-4,-9],[0,-14],[-4,-8],[-1,-9],[-5,-13],[-10,2],[-5,-7],[-5,-3],[-7,1],[-6,4],[-4,4],[-2,13],[2,21],[1,71],[1,8],[9,37],[4,24],[4,6],[17,10],[15,17],[6,4]],[[25094,49676],[7,-5],[6,-13],[0,-13],[-8,-5],[-9,2],[-23,22],[6,12],[4,-2],[13,1],[4,1]],[[24894,49727],[1,-2],[1,-2],[1,-2],[1,-5],[0,-4],[-1,-2],[-1,-2],[0,-1],[-1,-3],[-3,-2],[-2,-1],[0,-3],[1,-7],[-1,-3],[-1,-4],[-9,-11],[-2,-1],[-10,3],[-4,6],[-4,8],[-6,7],[3,6],[2,8],[2,9],[2,18],[2,9],[4,3],[2,-8],[6,3],[7,-3],[7,-7],[3,-7]],[[25192,50064],[3,-5],[4,0],[4,3],[3,4],[1,-22],[-5,-24],[-8,-22],[-9,-14],[-10,-6],[-1,-3],[-1,-6],[-3,-17],[-5,-18],[-4,-9],[-4,-6],[-5,-3],[-4,-1],[-9,1],[-3,-2],[-6,-9],[-4,-2],[-2,2],[-6,8],[-3,3],[-10,3],[-2,2],[-1,6],[2,6],[3,9],[3,5],[11,11],[3,6],[3,20],[3,1],[12,6],[3,7],[4,19],[3,7],[7,14],[2,5],[2,4],[10,8],[3,6],[4,1],[9,5],[3,-3]],[[24946,50151],[4,-6],[-1,-14],[-4,-25],[1,-7],[1,-9],[0,-6],[0,-2],[-3,-13],[1,-3],[-5,-4],[-3,-9],[-3,-11],[-4,-9],[-2,-4],[-2,-1],[-13,1],[-2,-2],[-1,-11],[-4,-6],[-5,-2],[-5,1],[-9,7],[-6,2],[-2,3],[-2,3],[-1,1],[-2,4],[-6,19],[-2,6],[-4,-1],[-6,2],[-5,5],[-3,6],[0,8],[0,28],[2,16],[3,14],[4,13],[5,10],[2,3],[8,7],[3,2],[3,0],[6,-3],[2,-1],[3,2],[3,4],[2,2],[26,6],[6,7],[2,-2],[2,-2],[1,-2],[1,-3],[1,-6],[0,-6],[0,-6],[2,-2],[3,-1],[5,-3],[3,0]],[[24611,50201],[-3,-3],[-19,-16],[-5,-2],[-3,-1],[-3,2],[-6,9],[-5,2],[-8,7],[-1,1],[-3,-1],[-2,0],[-1,3],[0,1],[0,2],[0,3],[-5,11],[-4,12],[-2,13],[-2,27],[-4,22],[1,8],[25,-1],[10,11],[13,6],[6,5],[2,-1],[3,-4],[10,-21],[3,-3],[3,-6],[1,-12],[-1,-23],[0,-51]],[[24843,50301],[4,-5],[-2,-10],[-6,-19],[-2,-13],[-5,-3],[-7,1],[-11,8],[-20,0],[-5,4],[-5,6],[-5,4],[-7,-5],[-3,10],[-2,15],[-3,12],[-7,3],[12,35],[0,8],[-1,10],[2,10],[5,8],[5,2],[2,-3],[1,0],[1,3],[5,-8],[19,-14],[7,-2],[9,-8],[15,-34],[7,-11],[-1,-1],[-1,0],[-1,-3]],[[24774,50037],[3,-3],[2,0],[1,-2],[0,-9],[-2,-3],[-6,-6],[-3,-3],[-8,-58],[1,-15],[-1,-10],[-6,3],[-3,-9],[-7,-17],[-3,-10],[-5,5],[-5,1],[-8,-2],[-6,-3],[-9,-14],[-31,-22],[-7,3],[-4,-3],[-25,7],[-31,0],[-6,3],[-4,9],[-1,6],[-1,7],[0,13],[-1,7],[-2,2],[-4,0],[-3,2],[-7,23],[3,27],[8,25],[8,18],[32,45],[2,4],[0,4],[1,3],[4,1],[7,6],[10,6],[3,0],[3,-2],[2,-3],[1,-2],[1,-2],[5,-3],[3,-1],[3,3],[2,3],[2,9],[2,2],[0,6],[2,12],[4,10],[4,-4],[4,10],[0,9],[-2,7],[-4,7],[-3,4],[-9,5],[-3,3],[-6,13],[-7,19],[-5,21],[-3,20],[1,17],[-1,6],[-4,5],[-2,2],[-4,1],[-1,1],[-1,3],[-3,10],[-17,19],[-6,15],[0,19],[-5,7],[-4,13],[1,12],[6,4],[-5,15],[-2,9],[-1,10],[0,21],[0,5],[-1,9],[0,6],[-3,20],[-6,10],[-8,0],[-10,-8],[-10,-14],[-4,-2],[-6,6],[-6,16],[-1,4],[1,6],[2,2],[2,2],[19,22],[5,12],[2,24],[7,-5],[5,3],[5,6],[10,5],[1,5],[2,6],[2,4],[4,2],[5,-1],[3,3],[4,-9],[2,-13],[1,-13],[1,-6],[4,-5],[3,-26],[3,-5],[1,-3],[4,-11],[2,-3],[6,0],[3,-1],[2,-3],[2,-10],[0,-15],[0,-27],[5,-66],[3,-11],[11,-22],[1,-3],[1,-3],[0,-7],[0,-7],[2,-3],[2,-1],[1,-1],[29,-38],[2,-7],[0,-5],[2,-5],[4,-8],[1,-2],[4,-2],[0,-4],[0,-3],[-1,-3],[-1,-2],[3,-23],[1,-24],[-2,-11],[-7,-14],[-2,-9],[6,8],[2,-5],[0,-11],[1,-9],[12,-4],[6,-7],[-1,-13],[4,-1],[3,-3],[3,-6],[2,-7],[-2,-8],[4,-3],[9,-21]],[[24857,50638],[-3,2],[-2,5],[-2,5],[-2,4],[1,13],[5,10],[6,6],[6,3],[6,-4],[7,-7],[5,-9],[2,-12],[-1,-9],[-5,-9],[-7,-8],[-5,-3],[-4,3],[-3,8],[-4,2]],[[24778,50857],[11,-14],[4,-27],[-5,-18],[-12,10],[2,13],[-2,25],[2,11]],[[28083,51283],[0,-5],[0,-4],[1,-7],[1,-20],[-2,-24],[-3,-16],[-7,7],[-3,-7],[-3,-5],[-5,9],[-5,10],[0,11],[4,12],[22,39]],[[24494,51291],[2,-1],[1,-5],[-1,-3],[-1,-2],[-2,2],[0,3],[0,4],[1,2]],[[24494,51295],[1,1],[-1,-2],[0,1]],[[24441,51452],[2,3],[1,-2],[0,-5],[-2,-1],[-1,5]],[[27828,48997],[3,-15],[6,-5],[4,-13],[-6,-19],[-10,-10],[-1,-26],[-7,-9],[-5,0],[-2,14],[4,22],[6,33],[8,28]],[[28103,51319],[4,5],[-2,10],[-3,6],[-4,5],[-2,7],[-1,9],[1,11],[0,12],[-2,9],[-2,1],[-3,-4],[-6,-5],[-2,6],[-3,5],[-4,1],[-2,5],[-6,8],[-3,2],[-7,10],[-4,9],[-3,9],[2,10],[2,6],[4,3],[6,3],[5,10],[4,18],[4,11],[7,15],[6,14],[3,9],[6,9],[13,7],[6,-3],[5,2],[6,-3],[5,-5],[6,-3],[10,-2],[6,-2],[8,-3],[1,-1],[2,-5],[3,-4],[3,-2],[2,1],[0,8],[1,5],[1,9],[3,9],[2,15],[-2,10],[0,9],[1,2],[1,2],[1,4],[0,6],[-1,3],[-1,-2],[-2,-8],[-4,-4],[-5,0],[-2,8],[0,11],[1,12],[0,9],[2,14],[0,7],[-1,5],[-2,7],[-3,5],[-3,2],[-3,-4],[-2,-8],[-3,-18],[-3,-4],[-2,5],[0,12],[-1,16],[-4,21],[-2,28],[-3,20],[0,26],[3,14],[3,16],[2,15],[8,7],[2,17],[8,31],[6,26],[4,18],[4,9],[-2,-10],[0,-10],[0,-10],[2,-10],[4,27],[2,28],[3,13],[5,-3],[7,18],[7,18],[7,21],[6,5],[5,10],[6,12],[7,9],[3,-1],[3,-13],[3,-16],[4,-16],[6,-17],[6,0],[-3,20],[-1,17],[0,18],[2,9],[4,8],[4,-10],[2,-18],[-2,-14],[3,-9],[2,-13],[2,-11],[4,-9],[3,-4],[10,-10],[4,-3],[3,0],[4,7],[6,3],[0,4],[0,4],[0,4],[0,1],[1,3],[0,3],[0,21],[-1,9],[-1,9],[-3,10],[-1,10],[2,6],[7,-3],[2,5],[7,0],[5,0],[5,0],[3,5],[7,8],[5,-1],[4,-8],[3,-11],[2,-6],[3,-2],[5,3],[-2,-9],[-3,-13],[1,-10],[5,-5],[3,-1],[6,-3],[4,0],[7,3],[3,1],[7,3],[5,8],[2,11],[0,11],[-2,7],[-3,10],[-4,9],[-4,2],[0,4],[6,0],[0,4],[-4,2],[-2,4],[0,5],[2,6],[-3,1],[-1,4],[0,5],[2,6],[-2,1],[-2,1],[0,4],[0,6],[5,-4],[4,3],[3,6],[4,3],[2,1],[2,1],[2,3],[-1,3],[-2,1],[-5,-5],[-2,0],[-4,6],[1,4],[3,4],[1,4],[2,-1],[5,-2],[5,-1],[4,2],[1,-4],[2,-5],[0,-3],[2,0],[-2,13],[-10,5],[3,11],[4,5],[4,1],[4,2],[3,8],[3,-3],[2,-2],[2,-3],[1,-5],[1,14],[-6,4],[-8,-2],[-6,-7],[-2,9],[0,13],[2,12],[3,6],[4,-1],[3,-5],[2,-5],[3,-5],[3,-2],[1,1],[0,4],[2,5],[2,6],[1,1],[1,3],[-1,6],[0,4],[-4,2],[-1,2],[0,3],[1,2],[2,8],[1,1],[1,2],[-1,5],[-2,2],[-3,0],[-2,1],[-1,5],[0,-4],[-1,-1],[0,-1],[1,-2],[-3,-4],[-3,-1],[-3,2],[-1,7],[-6,-14],[-3,-3],[0,8],[11,26],[6,19],[4,9],[21,38],[6,22],[3,13],[4,3],[5,-4],[0,5],[1,6],[0,6],[2,0],[3,-2],[2,4],[-2,6],[-4,4],[-5,-3],[-6,-1],[-1,5],[4,9],[6,13],[5,6],[7,5],[-4,7],[0,12],[3,6],[3,7],[3,4],[3,-1],[4,3],[4,1],[2,1],[5,11],[6,-25],[4,-10],[7,-5],[-1,6],[-9,24],[-3,9],[0,9],[1,10],[3,7],[1,-5],[2,-6],[1,-3],[1,3],[0,5],[-3,7],[0,3],[1,12],[3,10],[1,10],[-2,12],[3,1],[3,-1],[-1,-2],[0,-4],[-1,-3],[0,-5],[1,-4],[2,0],[2,3],[5,0],[2,-2],[2,-5],[1,-2],[0,6],[-1,4],[-2,4],[-2,2],[1,1],[1,2],[1,1],[-5,4],[-2,0],[1,6],[1,1],[1,-1],[3,-2],[0,9],[-3,3],[-6,-1],[-5,-3],[1,10],[4,1],[4,-2],[5,0],[-2,1],[-3,5],[-1,1],[1,2],[1,1],[1,1],[3,1],[-1,2],[-1,6],[5,3],[6,1],[0,-4],[-1,-5],[2,0],[9,5],[-4,2],[-1,4],[1,6],[5,12],[2,7],[2,18],[3,-5],[3,-1],[2,2],[3,6],[3,2],[4,2],[2,3],[-4,3],[-4,-1],[-4,-3],[-3,0],[-1,10],[2,1],[5,2],[4,3],[3,8],[-5,-1],[-12,-7],[-3,4],[-2,9],[1,11],[2,8],[7,-12],[5,-3],[6,0],[1,1],[-1,2],[-2,3],[-2,1],[-3,0],[-3,1],[-1,2],[-2,5],[5,0],[4,1],[3,4],[2,7],[-5,6],[-2,7],[0,8],[5,8],[2,-3],[1,-3],[1,-4],[-1,-6],[4,8],[-1,12],[-1,11],[13,9],[3,10],[3,11],[4,8],[0,3],[-17,-7],[0,4],[2,1],[2,2],[-7,0],[-3,1],[-3,4],[1,-26],[-16,-20],[-20,-7],[-11,12],[0,5],[4,5],[1,5],[-1,2],[-4,5],[-4,5],[-1,0],[-1,1],[0,7],[0,5],[1,4],[1,5],[1,15],[2,5],[3,4],[4,1],[2,-1],[1,-5],[-4,-7],[14,5],[4,3],[0,4],[-10,-4],[1,8],[2,6],[8,19],[4,20],[-3,0],[-1,1],[-1,2],[0,5],[-5,-2],[-3,5],[-3,8],[-5,6],[2,-6],[0,-7],[0,-6],[-2,-6],[-2,3],[-2,1],[-3,-1],[-2,-3],[0,-4],[1,-3],[0,-1],[-1,-4],[-1,2],[-1,1],[-1,0],[-3,1],[1,-11],[-1,-17],[-2,-14],[-3,-7],[-1,-4],[-1,-16],[0,-4],[-5,-1],[-3,5],[-2,8],[2,8],[-14,24],[-2,5],[-1,10],[1,9],[6,1],[-3,8],[-1,4],[-2,16],[-1,18],[0,18],[1,9],[1,6],[4,6],[3,2],[4,-1],[3,1],[1,8],[1,4],[3,4],[3,3],[3,-3],[5,-12],[2,-1],[4,3],[5,6],[4,9],[8,22],[-23,0],[-5,2],[-3,10],[-11,36],[8,24],[2,9],[2,25],[3,9],[6,7],[0,4],[-6,-4],[1,16],[3,28],[0,81],[1,-5],[1,-4],[2,-4],[2,-3],[1,6],[1,9],[-1,9],[-7,8],[-1,8],[0,9],[-1,8],[7,-2],[4,-7],[4,-10],[2,-10],[2,0],[-3,19],[-12,31],[-2,20],[-1,-2],[-3,-2],[-2,-1],[-2,24],[-3,76],[-2,10],[-2,89],[2,20],[2,19],[4,18],[-4,5],[-1,13],[1,13],[-1,6],[-3,5],[-1,11],[-1,24],[-4,-3],[-3,3],[-1,6],[0,10],[2,0],[2,-2],[1,-2],[1,1],[2,3],[-3,4],[-1,6],[-2,18],[0,2],[0,3],[-2,4],[-1,1],[-4,1],[-2,2],[-3,6],[-2,6],[-3,5],[-4,3],[-4,0],[-2,-2],[-2,-4],[-1,-6],[-3,6],[-4,0],[-3,-2],[-2,0],[-2,7],[1,5],[3,3],[3,2],[3,6],[6,29],[3,9],[3,2],[6,0],[3,2],[3,5],[3,5],[2,4],[4,2],[5,-3],[4,-6],[5,-3],[6,4],[2,4],[1,3],[0,4],[1,5],[1,3],[-1,7],[0,2],[1,1],[2,-1],[2,0],[1,2],[1,7],[3,5],[4,4],[2,5],[2,6],[2,7],[1,7],[0,6],[-1,25],[-4,21],[-11,39],[-1,2],[-2,3],[0,13],[-11,63],[-2,0],[0,-16],[-2,0],[-5,26],[-7,24],[-17,44],[-3,10],[-1,9],[1,23],[1,21],[1,11],[-2,7],[1,4],[11,-18],[7,-18],[2,4],[3,10],[4,22],[1,11],[0,10],[0,9],[-1,7],[-5,15],[1,4],[6,5],[1,-3],[1,-2],[1,-1],[1,-2],[1,9],[-1,8],[-3,7],[-3,4],[0,4],[4,15],[2,10],[0,12],[3,9],[2,13],[-1,13],[-2,9],[-10,17],[-2,4],[-1,4],[-2,4],[-2,4],[0,6],[1,13],[0,7],[0,8],[-2,3],[-3,1],[-10,12],[-6,-4],[-6,-8],[-3,-10],[1,-4],[1,-4],[-2,-1],[-2,-1],[-2,-2],[-2,0],[0,15],[1,7],[1,7],[-11,52],[-6,16],[-8,17],[-4,5],[-7,4],[-1,3],[-2,2],[-3,-2],[-1,-4],[0,-5],[0,-4],[-3,-3],[-1,41],[3,17],[7,7],[4,10],[-4,23],[-9,35],[-1,0],[1,-7],[1,-2],[1,-2],[0,-5],[-2,0],[-4,14],[-21,46],[-3,4],[-5,1],[-3,4],[-1,7],[-2,7],[-4,3],[2,3],[-4,3],[-3,5],[-5,13],[-2,1]],[[28362,54754],[11,78],[10,65],[7,-3],[6,2],[5,7],[4,11],[3,15],[-1,13],[-6,26],[-3,18],[-1,25],[2,22],[6,8],[3,-3],[14,-25],[3,-7],[0,-2],[-2,-5],[0,-2],[1,-2],[3,-1],[0,-1],[8,-22],[2,-8],[3,-30],[3,-6],[7,1],[7,12],[12,27],[39,51],[8,16],[-1,11],[-6,11],[-4,18],[1,7],[8,22],[7,34],[6,12],[9,10],[9,6],[9,4],[10,0],[1,2],[-2,10],[-2,6],[-3,4],[-3,6],[-2,8],[0,15],[-6,46],[-8,33],[-3,8],[-7,22],[-6,27],[-2,6],[-4,3],[-4,1],[-3,3],[-3,10],[-3,21],[-2,40],[-4,21],[-4,17],[-3,5],[-5,3],[-8,-2],[-3,4],[0,13],[2,18],[3,7],[8,18],[4,14],[-1,11],[-1,6],[0,4],[5,6],[4,3],[5,1],[3,4],[0,8]],[[28507,55601],[0,3],[1,1],[0,2],[1,2],[4,-5],[3,-22],[3,-11],[4,-7],[3,-8],[2,-9],[2,-11],[2,-23],[3,-12],[18,-26],[14,-12],[4,-6],[3,-8],[22,-78],[6,-10],[4,-1],[8,0],[1,-1],[2,-1],[2,7],[2,0],[2,-6],[0,-9],[-2,0],[-1,2],[-1,1],[0,-15],[2,-10],[3,-4],[5,5],[0,-12],[4,8],[1,-6],[-3,-9],[0,-9],[-2,1],[-3,2],[-1,1],[2,-21],[7,-9],[6,2],[0,11],[17,0],[-1,-5],[-2,-6],[-1,-6],[0,-7],[3,0],[0,2],[3,2],[0,-4],[-9,-8],[0,-4],[2,-1],[2,-1],[2,-6],[0,-1],[0,-1],[0,-2],[-2,3],[-1,1],[-2,1],[-3,-1],[2,-5],[3,-4],[3,-4],[1,-7],[-7,6],[-7,5],[-7,-2],[-3,-9],[-1,-3],[1,-1],[1,0],[-5,-34],[8,-20],[14,-10],[18,-1],[3,1],[3,2],[3,4],[2,5],[1,5],[0,4],[-1,3],[0,6],[1,5],[2,6],[1,5],[2,37],[-1,16],[-3,14],[-1,-4],[0,-3],[0,-4],[1,-5],[-2,0],[-1,10],[-1,13],[0,14],[3,20],[-1,13],[-4,19],[-1,19],[0,83],[-2,11],[-3,5],[-4,3],[-2,8],[-1,11],[-2,10],[-5,13],[-9,12],[-10,10],[-8,2],[0,-4],[-4,6],[5,15],[7,17],[3,13],[28,18],[7,1],[27,16],[3,5],[2,4],[0,7],[0,7],[1,6],[3,3],[0,4],[-2,0],[0,4],[5,2],[19,15],[4,5],[12,26],[14,21],[7,12],[0,4],[-2,7],[2,5],[17,8],[6,9],[6,1],[2,4],[1,5],[3,8],[10,15],[2,7],[-2,21],[3,17],[5,13],[10,18],[2,6],[2,9],[3,50],[2,8],[1,1],[8,6],[1,1],[4,3],[1,6],[0,11],[1,10],[1,6],[3,7],[3,4],[2,2],[11,8],[9,5],[8,10],[7,12],[0,14],[2,9],[6,-2],[4,-6],[9,1],[9,4],[7,6],[2,-2],[2,-3],[2,-5],[0,-7],[-4,4],[-4,1],[-4,-2],[-4,-6],[3,-4],[1,-1],[2,1],[2,4],[2,-4],[1,-2],[1,-2],[0,-5],[8,13],[6,5],[6,3],[6,-2],[5,-4],[1,0],[7,-4],[3,6],[11,20],[7,27],[5,38],[0,34],[-3,17],[-3,8],[-2,4],[-3,12],[-5,0],[-3,6],[-3,3],[-6,0],[-4,-3],[-3,-5],[0,6],[15,33],[3,15],[4,33],[0,14],[2,12],[3,17],[3,20],[2,12],[0,12],[3,34],[1,19],[-4,20],[0,12],[1,4],[1,2],[2,1],[2,2],[1,4],[3,13],[2,6],[1,3],[1,7],[0,7],[0,6],[1,5],[1,6],[-9,-10],[-11,-16],[-11,-25],[-12,-13],[-5,1],[4,20],[8,10],[4,5],[2,6],[2,6],[2,8],[2,6],[1,7],[-1,7],[1,5],[6,0],[-2,5],[0,5],[0,5],[2,5],[2,-12],[6,3],[10,13],[3,6],[0,13],[-2,16],[0,14],[-2,0],[-2,-3],[-2,4],[-2,15],[-2,0],[0,-5],[-1,-4],[-2,-2],[-2,-1],[1,5],[1,11],[1,4],[2,4],[3,3],[2,3],[8,19],[3,4],[-2,-10],[-3,-13],[-1,-10],[5,-4],[3,5],[2,13],[0,15],[0,12],[-2,2],[-2,1],[-2,1],[0,3],[1,8],[1,1],[-1,7],[0,6],[-1,5],[-3,2],[-1,3],[1,5],[3,6],[3,2],[3,1],[3,3],[4,4],[2,5],[0,3],[-2,6],[0,3],[1,1],[2,1],[1,2],[2,2],[3,0],[2,1],[0,7],[1,0],[2,5],[2,7],[0,3],[2,1],[7,6],[18,10],[3,5],[3,9],[2,6],[1,1],[2,-2],[1,-1],[2,-2],[0,-3],[0,-3],[-1,-1],[-1,-3],[2,-4],[0,-2],[0,-2],[2,0],[2,5],[6,12],[-2,5],[0,4],[0,5],[0,6],[-5,-8],[-1,-4],[-6,6],[-1,11],[2,11],[10,7],[4,11],[3,3],[4,0],[3,2],[3,3],[17,24],[11,6],[6,7],[3,9],[0,9],[1,6],[2,14],[1,5],[2,3],[4,4],[5,1],[6,4],[3,9],[7,11],[1,10],[7,0],[10,2],[4,8],[0,11],[0,10],[-1,3],[2,4],[7,-7],[6,-4],[15,-11],[27,-23],[20,-15],[14,-7],[14,-4],[19,-4],[18,2],[11,3],[-4,-6],[-13,-6],[-27,2],[-3,1],[-3,2],[-3,0],[-4,-3],[0,-5],[0,-7],[0,-6],[-2,-3],[-2,-7],[4,-18],[6,-27],[-4,5],[-4,9],[-4,5],[-3,-7],[-2,6],[-6,0],[-4,4],[-3,-2],[-2,-10],[-1,-12],[-1,-8],[0,-18],[0,-9],[2,-4],[4,3],[1,9],[2,11],[2,6],[0,-6],[1,-4],[2,-3],[3,0],[0,-6],[0,-22],[4,-4],[5,1],[3,5],[2,10],[-4,-4],[-2,2],[-2,5],[0,9],[1,8],[2,5],[2,5],[-1,7],[5,-2],[4,-8],[1,-12],[2,-28],[2,-7],[5,-1],[10,1],[2,1],[3,3],[5,10],[2,2],[0,6],[8,31],[0,4],[0,16],[3,13],[1,5],[1,3],[4,10],[1,3],[2,23],[2,13],[18,53],[0,5],[0,7],[-4,10],[-1,5],[0,7],[1,10],[1,5],[-1,6],[-2,11],[-1,6],[0,2],[3,5],[1,3],[-1,3],[0,2],[-1,1],[0,2],[0,6],[2,6],[3,10],[2,4],[1,1],[1,3],[0,6],[4,15],[4,0],[4,-1],[2,2],[0,15],[2,0],[0,-4],[0,-3],[2,-5],[2,8],[1,4],[1,-2],[1,0],[0,-2],[2,0],[0,12],[3,-5],[2,-9],[3,-2],[3,3],[1,6],[1,3],[2,-4],[2,0],[1,4],[1,2],[2,1],[2,1],[7,-2],[5,-4],[5,-7],[5,-9],[2,-2],[13,-6],[9,-11],[10,-7],[34,-5],[31,5],[8,0],[45,0],[31,10],[2,3],[2,5],[9,14],[7,8],[1,3],[2,5],[4,14],[1,2],[3,2],[3,5],[4,12],[3,5],[9,9],[16,32],[33,37],[49,83],[5,6],[10,8],[17,7],[4,5],[9,12],[5,-3],[6,6],[6,9],[7,4],[16,2],[5,2],[5,6],[7,12],[9,5],[12,18],[15,13],[3,9],[5,11],[1,6],[1,5],[3,21],[10,33],[3,20],[6,17],[2,7],[1,12],[-2,33],[-1,12],[-1,5],[-3,4],[-2,4],[-1,-1],[0,8],[3,5],[6,8],[9,-7],[28,11],[10,-5],[-1,-11],[-12,-25],[5,-4],[4,-15],[5,-5],[8,8],[1,2],[1,7],[2,7],[2,5],[3,3],[4,1],[3,-1],[3,1],[2,5],[-2,6],[-2,6],[-1,5],[3,6],[-3,5],[-2,4],[-2,4],[-3,3],[-4,0],[-3,-1],[-3,-3],[-2,-4],[-1,0],[-2,8],[12,18],[11,18],[0,3],[1,8],[2,2],[5,-1],[1,1],[4,6],[2,1],[4,-3],[-5,-6],[-4,-6],[-1,-9],[4,-8],[2,-2],[1,-1],[4,3],[1,2],[-1,2],[0,3],[1,1],[4,0],[1,0],[5,6],[4,5],[2,7],[1,11],[-1,1],[-1,0],[-1,2],[1,5],[1,4],[3,2],[3,2],[2,0],[-1,-10],[1,-6],[3,-4],[1,-8],[2,0],[1,2],[1,4],[0,4],[-1,2],[-2,1],[1,3],[3,3],[1,1],[3,4],[4,2],[3,4],[3,6],[-3,0],[-3,-3],[-3,-3],[-1,-2],[-3,2],[0,5],[3,5],[2,4],[-3,0],[-2,-1],[-3,-3],[-1,-4],[0,10],[1,3],[1,3],[-4,-4],[-7,-14],[-3,-6],[-1,4],[3,11],[4,9],[5,6],[6,3],[5,-2],[9,-8],[6,-3],[20,0],[5,-2],[6,-6],[9,-12],[4,-8],[2,-2],[3,-2],[10,0],[3,-2],[5,-9],[6,-4],[12,-5],[10,-10],[5,-9],[3,-10],[1,-3],[2,-5],[1,-11],[16,-60],[2,-16],[11,-33],[2,-11],[-2,-14],[-4,-12],[-3,-9],[-7,-12],[-20,-22],[-5,-13],[-4,-5],[-5,-3],[-4,-2],[-1,-5],[-5,-32],[-1,-5]],[[30187,57487],[-9,1],[-5,-6],[-9,-17],[-11,-10],[-8,-4],[-16,-9],[-16,-9],[-17,-9],[-16,-9],[-16,-8],[-17,-9],[-16,-9],[-16,-9],[-7,-4],[-6,-8],[-5,-14],[-2,-11],[-9,-32],[-8,-33],[-8,-32],[-8,-33],[-9,-32],[-8,-33],[-8,-32],[-9,-33],[-2,-7],[-5,-3],[-11,6],[-5,1],[-6,-2],[-15,-12],[-12,-2],[-6,-1],[-5,-7],[-1,-6],[0,-11],[-1,-6],[-2,-6],[-6,-12],[-2,-7],[-9,-49],[-5,-15],[-6,-10],[-12,-18],[-7,-17],[-6,-27],[-14,-81],[-7,-25],[-17,-42],[-6,-31],[-3,-11],[-5,-10],[-4,-12],[-2,-12],[-1,-3],[0,-8],[0,-12],[-5,-129],[-15,-105],[0,-23],[-2,-23],[0,-12],[2,-15],[2,-11],[1,-11],[-2,-15],[-9,-38],[-15,-50],[-7,-40],[-3,-11],[-4,-10],[-12,-15],[-4,-8],[-5,-26],[-22,-69],[-10,-51],[-3,-12],[-5,-10],[-10,-15],[-4,-11],[0,-13],[4,-5],[4,0],[30,2],[12,3],[10,11],[10,19],[4,6],[7,5],[7,7],[12,24],[6,1],[2,-5],[3,-21],[0,-3],[-1,-5],[0,-2],[1,-3],[3,-6],[0,-2],[2,-15],[-1,-24],[1,-13],[5,-15],[6,-3],[5,5],[10,13],[2,3],[3,2],[4,0],[2,-2],[2,0],[2,5],[5,-11],[5,-6],[1,-7],[-4,-13],[5,-12],[2,-11],[3,-26],[3,-26],[3,-26],[3,-26],[4,-25],[3,-26],[3,-26],[3,-26],[3,-24],[6,-20],[5,-11],[5,-13],[6,-12],[5,-13],[6,-12],[5,-13],[5,-12],[6,-13],[5,-12],[7,-15],[3,-6],[3,-3],[3,-1],[2,-3],[4,-7],[2,-9],[2,-10],[1,-10],[0,-10],[-3,-19],[0,-10],[1,-13],[9,-37],[6,-40],[1,-23],[-5,-13],[-4,0],[-6,2],[-5,-2],[-3,-10],[-1,-12],[-3,-9],[-3,-8],[-4,-7],[-3,-3],[-3,-3],[-3,-4],[-1,-7],[2,-5],[5,-14],[2,-7],[1,-10],[1,-26],[0,-10],[-6,-36],[-3,-62],[1,-12],[4,-23],[1,-12],[-1,-13],[-2,-12],[-2,-12],[1,-14],[7,-26],[11,-16],[5,-4],[7,-4],[13,-6],[23,1],[9,-6],[10,-26],[2,-2],[0,-3],[-2,-24],[-1,-5],[1,-18],[2,-17],[3,-17],[15,-62],[5,-12],[3,-5],[8,-7],[4,-5],[6,-12],[3,-3],[9,-4],[23,-12],[9,-1],[4,1],[3,4],[3,5],[3,5],[3,0],[3,-1],[2,2],[-1,10],[8,1],[7,2],[7,1],[7,-4],[-1,9],[2,5],[4,1],[9,-1],[2,-3],[2,-5],[3,-5],[2,0],[2,1],[4,4],[2,2],[2,-3],[0,-3],[1,-2],[6,-1],[0,1],[0,1],[5,3],[6,-4],[6,-9],[3,1],[7,8],[5,2],[4,-1],[9,-6],[4,0],[12,4],[4,-1],[3,-4],[0,-7],[1,-7],[1,-6],[4,-3],[13,-1],[3,-3],[3,-4],[2,-2],[5,3],[4,6],[2,5],[3,4],[19,-5],[15,4],[14,11],[12,18],[3,8],[1,6],[2,3],[6,0],[11,8],[12,2],[17,8],[8,0],[2,-2],[4,-7],[2,-2],[10,-4],[4,0],[8,5],[5,2],[2,-4],[14,-38],[2,-3],[5,-3],[3,0],[6,2],[3,0],[1,-2],[2,-5],[1,-2],[4,-3],[29,-29],[8,-1],[16,19],[10,5],[10,1],[8,-4],[9,-17],[5,-13],[21,-56],[21,-57],[21,-56],[21,-57],[22,-56],[21,-57],[21,-56],[21,-57],[8,-22],[3,0],[7,5],[14,13],[7,3],[6,-6],[11,-29],[7,-10],[15,19],[17,34],[6,7],[8,16],[5,5],[7,1],[6,-3],[10,-10],[5,3],[6,-3],[7,-5],[6,-3],[17,2],[6,-2],[18,-11],[6,-2],[6,-2],[12,-12],[6,-2],[4,4],[7,14],[3,3],[18,2],[20,12],[6,2],[6,-2],[18,-10],[10,0],[32,24],[12,3],[36,-7],[11,4],[10,7],[2,1],[3,2],[2,4],[2,6],[0,6],[1,8],[4,2],[3,0],[3,1],[3,5],[5,11],[4,4],[2,0],[5,-3],[20,-4],[43,-21],[8,-11],[8,-15],[7,-13],[11,-2],[1,0],[-2,-3],[-6,-8],[-3,-7],[-1,-8],[0,-23],[10,-34],[8,-11],[2,-12],[0,-14],[-1,-10],[-3,-6],[-10,-9],[-4,-5],[-13,-31],[-3,-9],[-16,-33],[-7,-22],[-5,-23],[-2,-26],[0,-27],[3,-35],[1,-11],[1,-3],[4,-8],[1,-3],[-1,-8],[-1,-4],[-2,-4],[-2,-5],[-3,-21],[-2,-3],[-3,-2],[-3,-5],[-5,-11],[-2,-4],[-9,-7],[-1,-2],[-3,-7],[-1,-3],[-2,0],[-3,1],[-1,-1],[-10,-18],[-7,-23],[-3,-25],[3,-23],[2,-9],[2,-9],[1,-11],[1,-14],[-1,-5],[-2,-14],[-1,-7],[0,-7],[0,-6],[1,-6],[1,-6],[1,-5],[5,-13],[1,-4],[0,-6],[-2,-4],[-1,-3],[-1,-3],[1,-26],[-1,-12],[-3,-23],[-2,-23],[0,-13],[0,-4],[3,-11],[1,-4],[0,-7],[-1,-4],[-1,-3],[2,-6],[-2,-11],[-1,-26],[-2,-10],[-3,-9],[-1,-13],[-1,-33],[-2,-16],[0,-18],[0,-6],[-1,-5],[-2,-3],[-2,-4],[0,-8],[0,-7],[2,-5],[3,-5],[2,-4],[0,4],[5,-7],[2,-8],[3,-21],[1,-2],[3,-3],[1,-3],[0,-5],[-1,-8],[-1,-5],[1,-8],[4,-13],[1,-8],[-1,-7],[-5,-19],[-1,-22],[2,-20],[2,-19],[1,-18],[3,-11],[5,-9],[5,-12],[2,-19],[3,-7],[2,-11],[-1,-10],[2,-2],[3,-14],[1,-37],[1,-13],[11,-41],[3,-14],[1,-30],[2,-13],[5,-13],[5,-6],[5,0],[6,2],[5,1],[11,-11],[8,-22],[18,-104],[4,-11],[4,-6],[11,-9],[9,-21],[-1,-24],[-8,-25],[-16,-45],[-4,-5],[-3,-2],[-6,-3],[-3,-3],[-5,-11],[-12,-23],[-12,-24],[-12,-23],[-12,-24],[-12,-23],[-12,-23],[-12,-24],[-11,-23],[-7,-14],[-5,-17],[0,-40],[4,7],[2,8],[3,7],[5,3],[7,0],[3,0],[5,6],[2,-2],[3,-8],[12,-11],[7,-3],[5,4],[6,3],[5,-9],[3,-13],[3,-11],[1,-27],[2,-13],[3,-5],[12,-1],[6,-3],[4,-8],[1,-5],[2,-11],[1,-5],[2,-3],[6,-7],[1,-3],[1,-5],[5,-12],[1,-2],[3,-2],[2,-6],[2,-6],[2,-6],[2,-5],[6,-7],[3,-5],[1,-6],[2,-8],[1,-7],[3,-3],[3,-2],[3,-4],[5,-12],[3,-3],[9,-7],[10,-12],[2,-4],[1,-6],[0,-11],[2,-6],[1,-12],[-3,-12],[-6,-11],[-3,-7],[0,-11],[5,-23],[2,-18],[4,-25],[3,-8],[4,-5],[5,-4],[4,-4],[2,-10],[1,-32],[-1,-10],[-1,-5],[-5,-12],[1,-7],[2,-6],[2,-5],[2,-8],[5,-8],[1,-4],[1,-7],[5,-20],[24,-135],[1,-13],[0,-26],[1,-12],[2,-12],[6,-21],[3,-13],[1,-13],[-2,-24],[1,-9],[3,-6],[3,-5],[3,-7],[3,-11],[2,-15],[0,-14],[-5,-22],[1,-14],[6,-25]],[[28297,52026],[0,-3],[6,-17],[3,-13],[0,-19],[-3,-16],[-7,-5],[-7,8],[-7,16],[-6,18],[-3,13],[1,8],[2,3],[2,3],[1,6],[-2,7],[-4,16],[0,7],[3,3],[5,-5],[6,4],[6,-7],[1,-11],[2,-5],[1,-8],[0,-3]],[[28360,52066],[4,-5],[11,-29],[4,-7],[9,-11],[5,-8],[-7,-9],[-8,-1],[-9,4],[-5,6],[2,3],[-2,5],[6,12],[0,7],[-4,4],[-5,1],[-4,6],[-2,13],[1,10],[4,-1]],[[28387,52046],[11,-17],[3,-9],[-1,-9],[-5,-1],[-7,8],[-12,20],[-8,22],[-2,6],[-1,7],[0,7],[1,3],[2,-4],[1,-2],[3,-3],[1,4],[0,2],[1,1],[2,2],[7,-17],[1,-4],[2,-11],[1,-5]],[[28513,52996],[5,-6],[6,1],[6,3],[5,-2],[-5,-18],[-3,-7],[-4,3],[-5,14],[-7,-6],[-6,-2],[-15,0],[-5,3],[-4,0],[-4,-2],[-2,-4],[-2,-5],[-2,-5],[-11,-6],[-1,-2],[-1,5],[0,8],[2,8],[2,3],[4,3],[6,11],[4,3],[3,-1],[7,-4],[4,1],[-1,4],[-5,7],[-2,5],[10,0],[-7,3],[1,6],[5,6],[5,5],[-2,1],[-1,2],[-1,1],[-2,0],[0,3],[1,2],[1,3],[7,-8],[5,-7],[3,-9],[2,-9],[4,-11]],[[27302,57886],[-2,12],[1,12],[3,10],[4,6],[1,-6],[-5,-45],[-4,-1],[-1,5],[3,7]],[[27393,58357],[-1,14],[3,12],[3,7],[4,-5],[2,-10],[-2,-9],[-4,-6],[-5,-3]],[[27330,52814],[-1,2],[0,1],[0,3],[1,4],[2,1],[0,1],[1,6],[1,1],[2,0],[1,1],[1,0],[1,-8],[0,-2],[-2,-1],[-1,-2],[-1,0],[-4,-6],[-1,-1]],[[28281,52241],[4,7],[2,-1],[0,-8],[0,-8],[0,-9],[-5,-9],[-3,-6],[-4,-2],[-3,2],[0,6],[4,1],[2,9],[1,12],[2,6]],[[29003,56610],[3,6],[3,-3],[3,-3],[5,-3],[1,-8],[-3,-6],[-3,0],[-3,2],[-3,-3],[0,-7],[-1,-4],[-3,0],[-1,7],[0,10],[1,7],[1,5]],[[27753,58511],[0,-1],[-1,0],[0,1],[1,0]],[[47940,72496],[1,-3],[0,-3],[1,-2],[2,-1],[0,-3],[-2,-5],[-5,6],[-6,3],[-6,0],[-6,-1],[-6,-4],[-11,-13],[-5,-3],[-16,-18],[-2,-5],[-42,-49],[-10,-14],[-4,0],[-4,3],[-6,2],[-17,1],[-5,3],[-2,-7],[-3,1],[-4,4],[-2,2],[2,-7],[1,-4],[1,-5],[-6,15],[-10,15],[-20,19],[-12,4],[-8,7],[-10,-1],[-22,-5],[-10,5],[-10,7],[-8,-7],[-13,-2],[-12,7],[0,-1],[-15,14],[-12,4],[-13,-2],[-4,-2],[-4,-4],[-8,-16],[-17,0],[-4,-2],[-7,-8],[-4,-2],[-4,-1],[-6,-3],[-6,-9],[-6,4],[-5,-9],[-2,-3],[-3,-2],[-6,-8],[-2,-2],[-5,3],[-3,5],[-3,3],[-4,-3],[2,17],[2,8],[1,4],[11,29],[4,16],[4,14],[-3,18],[5,8],[6,11],[4,26],[-2,11],[-2,9],[5,15],[7,15],[2,14],[5,20],[3,27],[2,16],[0,27],[-1,14],[-3,9],[-4,8],[0,7],[4,26],[1,17],[2,15],[4,3],[8,2],[1,14],[0,3],[-2,-4],[-6,-3],[-7,0],[-3,10],[2,30],[4,32],[-1,20],[-1,14],[-5,15],[-9,3],[-11,12],[1,5],[2,2],[2,1],[2,4],[15,53],[5,42],[6,32],[-1,31],[-2,38],[-3,33],[-7,23],[-7,13],[-9,17],[-10,14],[-8,5],[5,7],[6,-4],[10,-15],[13,-8],[6,-5],[0,-8],[12,1],[28,-13],[14,8],[-9,1],[-7,2],[-20,16],[-3,5],[-1,8],[-1,9],[1,7],[1,6],[3,3],[0,4],[-4,3],[-3,6],[-1,9],[2,6],[-5,2],[-5,-19],[-5,-3],[0,-4],[6,-1],[3,-9],[0,-10],[-3,-4],[-6,1],[-6,2],[-10,9],[-10,6],[-14,-4],[-12,-24],[2,-3],[-16,-11],[-27,-6],[-6,-3],[-4,-6],[-5,-2],[-7,4],[-2,0],[0,3],[0,4],[0,4],[1,2],[2,5],[9,14],[1,18],[0,28],[-6,28],[-9,22],[-4,18],[5,5],[13,2],[12,2],[6,-6],[3,-7],[2,0],[-2,12],[4,4],[9,4],[4,1],[0,3],[4,9],[5,7],[8,10],[10,15],[1,1],[1,2],[1,1],[0,4],[-2,8],[-4,11],[-1,13],[2,9],[-7,-1],[-3,9],[-1,15],[-3,14],[12,42],[7,18],[10,13],[6,2],[11,1],[6,4],[10,13],[4,7],[3,9],[-8,-9],[-12,-15],[-24,-5],[-4,-5],[-5,-17],[-13,-32],[-16,-51],[-8,-17],[-3,-8],[-2,-9],[1,-11],[0,-20],[1,-14],[-4,-14],[-14,-8],[-16,-4],[-18,3],[-5,-7],[-5,-10],[-11,11],[-12,9],[-7,2],[-11,-3],[-6,3],[0,12],[2,10],[-4,26],[0,12],[2,6],[3,7],[7,11],[9,48],[-1,36],[-3,22],[3,14],[1,16],[11,32],[3,16],[6,22],[1,22],[2,19],[-4,29],[-3,12],[-10,17],[-2,6],[3,2],[12,-6],[21,22],[5,8],[6,1],[3,-7],[3,-1],[3,5],[-2,8],[-4,7],[4,12],[6,12],[3,7],[5,5],[8,9],[4,11],[3,9],[5,17],[1,10],[-1,12],[4,16],[2,22],[21,96],[35,167],[4,9],[4,-8],[4,-4],[11,0],[0,4],[-4,7],[-4,5],[-5,3],[-13,3],[-5,5],[-3,8],[0,13],[3,17],[9,27],[18,118],[4,37],[6,27],[3,35],[1,2],[1,1],[1,-12],[-1,-4],[6,15],[4,5],[4,-4],[2,0],[0,4],[-1,2],[-1,3],[-1,4],[1,3],[3,3],[1,-2],[1,-3],[2,-2],[2,2],[3,4],[3,10],[-4,5],[-3,7],[1,6],[5,3],[7,1],[5,3],[4,5],[4,7],[-4,-1],[-7,-6],[-6,-2],[-1,0],[-2,-1],[-6,5],[-2,5],[-3,16],[11,24],[-3,13],[0,-10],[-2,-8],[-2,-2],[-1,8],[-4,-13],[-3,-15],[-2,-16],[-1,-15],[-1,-10],[-3,-14],[-4,-12],[-3,-7],[26,202],[0,22],[-3,39],[0,21],[5,8],[0,4],[-10,4],[-6,16],[-3,21],[-5,16],[1,8],[-1,7],[-1,6],[-2,8],[1,18],[-2,6],[-2,1],[-1,6],[-1,6],[-4,11],[-1,9],[0,7],[-1,17],[3,20],[-3,13],[-1,13],[-1,8],[-1,10],[-3,18],[-1,13],[-2,10],[-1,11],[-2,10],[0,14],[1,7],[6,4],[17,4],[5,4],[4,5],[4,6],[-31,-15],[-6,-1],[-4,1],[-5,5],[-5,19],[0,17],[2,26],[-2,17],[1,7],[2,5],[20,26],[9,17],[4,22]],[[45420,69712],[-10,28],[-2,5],[-2,6],[-1,6],[-1,7],[5,-8],[5,-13],[4,-16],[2,-15]],[[45336,69827],[-5,-17],[-11,-8],[-14,-2],[-22,4],[-46,34],[-11,12],[-9,15],[-8,17],[-2,10],[-1,11],[2,8],[4,4],[2,3],[7,17],[2,2],[2,1],[2,-1],[3,-2],[3,-4],[7,-14],[3,-2],[1,-1],[6,-3],[7,-8],[8,-1],[7,2],[6,7],[4,3],[6,3],[11,2],[4,-3],[9,-11],[3,-3],[14,-20],[4,-3],[3,-1],[10,-1],[5,-2],[5,-5],[3,3],[3,2],[3,-2],[2,-3],[-5,-2],[-9,-9],[-4,-1],[-3,-5],[-9,-20],[-2,-6]],[[45461,70047],[-4,-8],[-3,-6],[-4,-1],[-6,4],[0,4],[3,1],[3,2],[1,4],[4,19],[5,9],[7,3],[6,-5],[2,4],[0,-17],[1,-7],[3,-5],[-10,4],[-4,0],[-4,-5]],[[47790,72370],[14,-3],[6,3],[6,12],[1,-2],[0,-2],[1,-4],[-2,-2],[0,-2],[-5,-6],[-7,-3],[-8,1],[-6,4],[0,4]],[[43037,72394],[5,-6],[5,-11],[3,-13],[2,-12],[-4,-9],[-10,1],[-16,10],[-9,-4],[-5,0],[-2,6],[-2,7],[-3,7],[-2,6],[3,6],[6,9],[10,4],[11,1],[8,-2]],[[43000,72894],[11,-8],[7,-17],[0,-22],[-6,-19],[-11,-8],[-37,-8],[-12,-6],[-14,-2],[-12,1],[-7,-1],[-4,-4],[-8,8],[-7,5],[-16,7],[-24,2],[-34,43],[-10,22],[5,31],[22,3],[7,-3],[10,-14],[1,-5],[0,-7],[1,-5],[2,-4],[2,-2],[35,-8],[4,2],[8,8],[4,2],[2,-1],[6,-8],[3,-3],[4,4],[29,15],[39,2]],[[42191,73238],[13,-2],[5,-6],[2,-14],[-4,-6],[-9,0],[-21,5],[-7,-1],[-5,-3],[-10,-14],[-4,3],[-2,8],[-3,6],[-7,3],[-39,2],[-6,-5],[-18,29],[-7,18],[0,26],[9,13],[9,4],[20,-1],[11,-3],[28,-29],[9,-7],[1,-1],[3,-2],[5,-8],[3,-2],[6,-2],[18,-11]],[[42052,73328],[4,-27],[-2,-1],[-9,-6],[-2,-3],[2,-4],[0,-2],[1,-1],[3,-1],[-4,-4],[-3,0],[-7,4],[-3,0],[-9,-4],[-3,0],[-6,5],[-8,18],[-5,9],[-13,13],[0,5],[9,3],[8,0],[4,1],[3,3],[3,5],[4,11],[3,4],[24,-19],[6,-9]],[[42252,73332],[21,-13],[10,-9],[5,-11],[-4,-3],[-6,-1],[-11,0],[-4,3],[-9,8],[-9,3],[-4,3],[-5,4],[-4,5],[-4,4],[-7,-2],[-5,5],[-4,-5],[-2,3],[-5,10],[-4,4],[-29,16],[-5,6],[-5,16],[-2,2],[-2,0],[-1,-2],[-1,0],[-3,2],[-1,2],[1,3],[0,2],[-3,1],[-2,2],[-13,19],[-1,4],[0,8],[5,-3],[9,-11],[4,-2],[5,-1],[55,-36],[40,-36]],[[42494,73385],[-2,-3],[-6,-4],[-2,-2],[0,-5],[1,-10],[-1,-5],[-1,-2],[-8,-6],[-7,4],[-19,0],[-6,8],[-4,-6],[-3,-1],[-7,7],[-7,3],[-7,1],[-6,4],[-7,11],[-6,14],[-3,12],[-2,18],[6,14],[10,9],[10,4],[42,-5],[8,-6],[12,-11],[9,-13],[1,-12],[-1,-6],[2,-4],[3,-3],[1,-5]],[[42226,73575],[-5,0],[-6,2],[-6,4],[-4,7],[-3,9],[0,9],[5,18],[2,3],[3,1],[3,-1],[3,-3],[2,4],[4,-10],[9,-13],[5,-8],[2,-10],[-4,-7],[-5,-4],[-5,-1]],[[41331,73867],[2,-4],[4,-3],[3,-1],[4,4],[5,-11],[3,-10],[0,-25],[-2,-14],[-5,-16],[-6,-10],[-4,5],[-6,-4],[-6,-1],[-5,1],[-4,4],[-3,8],[-2,12],[0,10],[3,6],[-2,10],[2,9],[2,9],[2,11],[1,10],[5,6],[6,2],[5,0],[-2,-8]],[[41356,73997],[10,-3],[0,-17],[-5,-18],[-9,-3],[0,4],[-5,18],[-1,3],[1,6],[2,6],[4,4],[3,0]],[[45547,68256],[2,-1],[0,-2],[-1,1],[-1,2]],[[45593,68326],[2,-3],[0,-4],[-1,-4],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[3,5]],[[47488,73488],[2,1],[0,-3],[-2,-9],[-4,-10],[-5,-9],[-2,2],[3,10],[2,9],[4,5],[1,3],[1,1]],[[64975,72585],[-4,74],[-2,24],[-5,23],[-2,12],[-1,26],[-10,79],[-5,170],[1,9],[3,20],[3,29],[7,45],[-1,16],[3,19],[1,25],[-2,44],[0,4],[-3,9],[-1,5],[-1,6],[0,12],[-4,36],[-1,13],[3,48],[3,24],[4,19],[13,35],[5,21],[-3,18],[4,5],[3,11],[1,12],[3,10],[3,8],[3,12],[2,8],[-3,-1],[-1,12],[-3,6],[-10,6],[0,1],[-1,5],[-1,2],[-1,1],[-3,2],[-1,1],[-2,4],[-1,4],[-1,6],[0,6],[-3,12],[-4,4],[-10,1],[-7,3],[-3,0],[-3,-2],[-1,-3],[-1,-2],[-3,5],[-3,9],[-5,28],[-2,6],[-3,-4],[1,-10],[3,-9],[2,-6],[0,-3],[-5,4],[-4,9],[-1,11],[2,16],[-2,10],[0,6],[2,4],[8,8],[-8,2],[0,12],[6,27],[-6,-5],[-8,-10],[-4,-9],[4,-4],[3,-66],[-4,9],[-7,15],[-3,9],[-1,11],[0,12],[-2,9],[-6,1],[1,7],[1,9],[0,9],[-3,3],[-2,-4],[-4,-18],[-3,-6],[-1,13],[2,18],[5,34],[-8,-13],[5,21],[1,8],[-2,-2],[-6,-2],[4,12],[-1,5],[-4,-3],[-4,-10],[-2,4],[-3,-3],[-12,-1],[-6,-8],[-2,1],[0,11],[-2,0],[-2,-6],[-3,-6],[-4,-4],[-4,0],[1,4],[3,12],[-2,0],[-4,0],[-2,0],[-1,-1],[-2,-3],[-1,0],[-1,1],[-2,6],[-1,1],[-3,-2],[-8,-6],[-4,0],[0,4],[2,4],[-1,3],[-2,1],[-4,0],[-3,1],[-4,5],[-3,2],[-6,0],[-13,-7],[-6,-5],[10,-11],[4,-1],[-6,-14],[-1,-7],[-1,-10],[0,-10],[4,-24],[-1,-15],[-3,-7],[-3,1],[-6,84],[-2,8],[-12,29],[-1,10],[3,12],[2,5],[8,13],[2,5],[1,8],[1,7],[6,7],[3,11],[10,47],[8,25],[9,17],[11,-4],[-6,-5],[-4,-6],[-8,-19],[-2,-5],[-2,-17],[-1,-2],[-6,-10],[2,-15],[10,-2],[31,10],[17,-2],[6,-3],[3,-7],[2,-9],[3,-9],[4,-4],[5,-3],[12,-1],[4,-4],[3,0],[1,6],[0,6],[-1,4],[-2,3],[-3,1],[4,15],[3,-2],[4,-9],[5,-8],[5,0],[8,13],[6,3],[2,-1],[6,-6],[3,-1],[3,6],[-1,6],[-3,5],[-3,4],[-6,4],[-12,5],[-5,7],[5,2],[2,5],[1,6],[-3,9],[-4,6],[-3,2],[-14,-3],[-1,4],[0,11],[-1,7],[-2,7],[-3,6],[-3,3],[1,-20],[0,-9],[-1,0],[-10,27],[-8,11],[-7,3],[1,-3],[3,-13],[-2,2],[-4,4],[-2,2],[0,-12],[5,-11],[1,-10],[-10,11],[-1,21],[5,46],[-3,-3],[-4,-1],[-3,1],[-3,3],[0,4],[9,7],[14,34],[9,16],[-1,3],[-2,6],[-1,2],[3,3],[2,1],[6,1],[4,2],[0,4],[-2,4],[-1,2],[3,7],[4,6],[4,8],[2,11],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-4,8],[-5,2],[-10,-2],[-4,3],[-7,10],[-4,4],[-5,2],[-5,0],[-4,-2],[-5,-5],[-12,-21],[-4,-3],[-2,-1],[-4,-6],[-2,-1],[-2,1],[-5,6],[-2,1],[-3,2],[-19,24],[-4,-3],[-4,-7],[-4,-4],[-21,-4],[2,6],[2,4],[2,3],[2,3],[-19,-10],[-10,-2],[-9,4],[-5,18],[-3,6],[-5,-8],[0,-6],[2,-8],[4,-12],[1,-7],[2,-33],[2,-5],[8,-18],[3,-3],[10,-33],[9,-13],[2,-3],[0,-4],[-13,12],[4,-5],[8,-16],[-2,-4],[-9,15],[-4,8],[-8,31],[-4,8],[-9,7],[-4,10],[-2,12],[-1,23],[-3,7],[-26,35],[-10,16],[-4,13],[2,26],[2,14],[2,9],[2,10],[-3,11],[-7,17],[3,5],[-1,6],[-6,10],[-5,22],[1,23],[9,102],[4,20],[6,19],[17,38],[9,26],[1,21],[-3,4],[-7,3],[-1,4],[0,5],[2,11],[0,2],[-1,2],[4,3],[4,3],[2,0],[1,5],[-1,7],[-1,5],[-1,3],[7,45],[10,45],[2,20],[-3,41],[-1,24],[3,-4],[7,-6],[3,-4],[1,-7],[-1,-7],[-1,-7],[0,-6],[3,-11],[12,-25],[2,-10],[3,-23],[3,-8],[9,-10],[0,-2],[7,0],[4,1],[2,3],[-4,-8],[-7,-4],[-4,-5],[1,-9],[2,-4],[5,-6],[2,-5],[1,-5],[0,-7],[0,-5],[4,-3],[12,-1],[5,0],[6,5],[13,21],[4,3],[-4,-16],[-1,-9],[3,-3],[20,4],[3,3],[0,6],[0,8],[1,5],[4,10],[3,3],[4,-2],[0,-4],[-2,-11],[0,-5],[2,-12],[4,-9],[6,-6],[6,-2],[2,-2],[4,-5],[3,-1],[3,1],[2,2],[4,5],[10,7],[4,7],[1,12],[0,26],[1,9],[7,23],[1,1],[4,0],[2,-1],[3,-2],[2,-4],[1,-3],[1,-2],[4,-3],[1,-1],[0,-4],[-1,-4],[-1,-3],[0,-1],[2,-13],[1,-4],[3,-4],[-3,-8],[-1,-4],[-2,-4],[3,-10],[4,-24],[5,-11],[2,-2],[3,-1],[2,-2],[2,-6],[-1,-5],[-4,-12],[-1,-6],[5,-14],[11,0],[12,4],[16,-4],[5,7],[4,9],[12,11],[3,1],[3,-1],[7,-7],[7,-1],[6,3],[5,4],[9,4],[2,3],[1,5],[1,5],[-2,0],[-7,6],[-3,4],[16,-1],[9,2],[8,7],[17,0],[1,-2],[-2,-4],[-2,-14],[-1,-3],[1,-2],[9,-6],[41,-2],[-5,6],[-6,3],[4,7],[11,5],[4,7],[-28,0],[-3,1],[-2,5],[-1,13],[-1,10],[-5,17],[-2,15],[-3,10],[-1,5],[1,4],[1,2],[1,3],[-1,5],[-1,1],[-3,-1],[-3,1],[0,7],[1,3],[2,0],[2,0],[2,1],[7,14],[4,4],[5,2],[8,-6],[17,-22],[5,0],[8,-8],[1,-8],[-4,-10],[-5,-11],[10,-4],[32,10],[10,6],[4,1],[5,14],[12,10],[2,3],[11,29],[2,9],[1,10],[-1,10],[-2,8],[-7,14],[-9,24],[-3,3],[0,3],[6,-1],[7,-5],[12,-14],[-2,5],[-6,8],[-2,4],[-3,6],[-1,3],[0,3],[0,4],[2,4],[1,1],[1,-1],[-5,10],[-7,3],[-8,2],[-7,5],[0,18],[-10,17],[-55,69],[-25,18],[-5,5],[-10,17],[-13,12],[-6,7],[-1,3],[-3,10],[-6,14],[-2,4],[-10,3],[-6,6],[-4,7],[-4,9],[-5,19],[-3,21],[-1,23],[-1,51],[-1,22],[-3,19],[-5,19],[-13,37],[-2,10],[-1,5],[-3,2],[-4,1],[-2,2],[-1,8],[1,5],[1,5],[1,7],[0,4],[-1,11],[-1,7],[4,14],[0,7],[0,10],[-1,11],[-2,12],[-2,9],[-9,14],[-13,13],[-14,7],[-12,-6],[-12,11],[-85,-23],[-16,-14],[-6,-2],[-21,2],[-16,13],[-12,-8],[-10,-15],[-7,-12],[-27,-36],[-7,-17],[-32,-113],[-5,-11],[-4,-6],[-2,-6],[-2,-14],[-2,-15],[1,-9],[4,1],[8,18],[5,5],[13,-2],[7,-5],[3,-9],[0,-8],[-4,-12],[-1,-7],[0,-6],[1,-11],[1,-7],[-1,-13],[-19,-76],[-1,-12],[-4,-17],[0,-6],[0,-6],[4,-14],[2,-25],[2,-37],[2,-10],[15,-50],[1,-10],[-1,-12],[-6,-18],[0,-13],[-2,0],[-2,6],[-4,6],[-2,4],[0,7],[2,18],[0,14],[-1,12],[-2,12],[-3,11],[-1,3],[-3,6],[-1,3],[-1,7],[1,11],[0,6],[-6,35],[-1,5],[-3,6],[-5,22],[-4,5],[-4,1],[-2,4],[-1,6],[-1,8],[0,5],[-2,3],[-5,8],[-3,3],[-7,2],[-3,3],[-9,20],[-5,6],[-5,4],[-4,6],[-1,15],[1,1],[6,17],[1,5],[0,6],[0,13],[0,5],[2,6],[0,4],[-1,3],[-1,2],[-1,2],[-1,1],[-2,11],[-2,5],[-2,4],[-2,1],[-4,-1],[-2,2],[-3,6],[-1,3],[-5,3],[-4,9],[-2,1],[-7,4],[-4,8]],[[64730,73602],[3,12],[5,8],[6,2],[2,-4],[0,-2],[0,-3],[-8,-9],[-1,-24],[3,-47],[4,-50],[6,-48],[-1,-8],[0,-3],[1,-5],[-2,0],[-1,14],[-8,51],[-4,16],[-2,9],[-1,6],[1,16],[-1,15],[-2,28],[-1,13],[1,13]],[[64852,73912],[3,5],[3,3],[2,-4],[2,-3],[1,0],[1,3],[1,-13],[1,-3],[5,-14],[-1,-7],[-3,-7],[-5,-5],[-4,0],[-1,5],[-3,19],[-2,7],[-2,8],[2,6]],[[59708,67852],[3,5],[2,54],[2,15],[6,25],[0,9],[-6,11],[-4,0],[0,2],[0,1],[0,1],[-2,0]],[[53144,51752],[-83,0],[-83,0],[-83,0],[-4,0],[-61,0],[-18,0],[-37,0],[-6,2],[-17,19],[-5,2],[-5,4],[-7,10],[-7,13],[-3,9],[-1,12],[1,12],[0,11],[-3,10]],[[52722,51856],[3,7],[0,4],[2,10],[1,110],[8,80],[5,24],[1,10],[1,75],[3,27],[4,25],[6,17],[6,15],[3,16],[1,19],[-11,86],[-5,14],[0,4],[3,0],[1,1],[4,3],[0,4],[-5,-1],[-3,2],[-2,3],[-2,4],[-2,6],[-7,29],[-21,55],[-11,21],[-27,40],[6,2],[7,8],[23,37],[6,5],[7,0],[-9,6],[-8,-7],[-7,-10],[-7,-5],[-19,-4],[-4,4],[-1,7],[1,8],[5,5],[-8,42],[-14,39],[-3,15],[-2,14],[7,-15],[2,-1],[1,-3],[2,-13],[2,-5],[3,-3],[5,-1],[11,0],[-3,3],[-9,5],[-3,4],[-1,2],[-1,3],[-2,6],[-2,12],[1,15],[3,14],[5,9],[11,-20],[5,-3],[3,15],[9,-10],[4,-6],[2,-8],[2,6],[0,6],[-1,6],[-2,6],[3,0],[-13,10],[-6,8],[-2,11],[4,8],[7,5],[8,3],[6,0],[0,2],[-1,2],[-1,4],[1,1],[1,0],[0,3],[-28,-10],[-8,2],[-5,10],[2,15],[4,14],[6,6],[4,9],[12,38],[8,9],[1,3],[2,6],[-1,4],[-4,-4],[-6,-8],[-2,-6],[-2,-7],[-2,0],[0,12],[-5,-8],[-9,-29],[-5,-12],[-6,-6],[-8,-5],[-5,2],[0,14],[-4,-8],[-5,6],[-5,11],[-3,13],[2,14],[-4,9],[-4,-3],[-7,-18],[0,-2],[1,-3],[3,-2],[2,-1],[3,-4],[0,-3],[3,-14],[3,-7],[5,-8],[2,-10],[-3,-11],[-4,3],[-2,1],[-2,2],[-4,6],[-4,13],[-1,2],[-1,2],[-1,2],[0,5],[-4,0],[-2,-3],[-2,-4],[0,-7],[7,-9],[2,-5],[1,-7],[-1,-5],[-1,-6],[0,-8],[0,-5],[5,-5],[2,-4],[-4,-4],[-4,-2],[-10,-2],[-5,1],[-10,5],[-4,2],[-8,9],[-3,20],[1,22],[5,14],[0,3],[-7,-3],[-3,-10],[-2,-10],[-9,-19],[-8,3],[-3,-1],[0,11],[1,8],[-1,7],[-4,7],[-3,1],[-5,0],[-5,-1],[-3,-2],[-4,1],[-15,20],[-24,24],[-4,5],[0,17],[5,35],[1,17],[-9,17],[-6,20],[-5,23],[-7,84],[2,15],[7,26],[3,14],[-7,-14],[-3,-5],[-2,9],[1,7],[1,7],[1,8],[-1,8],[-2,5],[-6,4],[-2,10],[-2,7],[-3,5],[-2,2],[-1,-8],[8,-27],[2,-14],[-1,-9],[-3,-2],[-2,4],[-1,9],[-13,23],[-1,-8],[1,-6],[1,-5],[2,-2],[-3,-14],[-1,-2],[-2,1],[-6,7],[-1,2],[-2,5],[-5,4],[-4,5],[-2,11],[-3,21],[-13,38],[-1,24],[-5,-15],[2,-17],[4,-18],[7,-55],[3,-5],[3,-3],[3,-5],[1,-16],[-5,-7],[-35,-5],[-3,3],[1,7],[4,8],[3,6],[-4,3],[-3,0],[-2,-3],[-2,-12],[-2,-3],[-3,1],[-3,2],[-5,9],[-1,14],[1,10],[5,-1],[1,8],[6,21],[-4,-6],[-3,-1],[-3,6],[-1,9],[0,8],[2,8],[5,12],[8,12],[2,4],[0,8],[-1,7],[-1,7],[2,7],[2,-4],[-1,23],[0,12],[4,5],[1,1]],[[53692,51749],[0,15],[1,18],[-1,9],[-2,7],[-5,8],[-4,6],[-3,3],[-2,-1],[-4,-4],[-2,0],[-2,2],[-4,7],[-8,3],[-8,1],[-3,-2],[-3,-5],[-6,-12],[-2,-2],[-12,-3],[-8,7],[-4,2],[-4,-4],[-3,-2],[-5,2],[-8,6],[-3,-5],[-3,-3],[-4,1],[-4,3],[-2,-7],[-6,3],[-6,6],[-5,2],[-3,-3],[-3,-5],[-4,-5],[-6,-3],[-37,12],[-7,5],[-5,8],[-6,-4],[-5,4],[-15,10],[-11,2],[-15,-8],[-5,3],[-9,11],[-4,3],[-3,-1],[-5,-6],[-3,-2],[-6,-1],[-10,-8],[-6,-2],[-12,1],[-11,4],[-5,0],[-17,-3],[-21,3],[-21,-4],[-24,2],[-10,-3],[-4,1],[-14,10],[-6,10],[-3,3],[-3,1],[-4,-2],[-7,-5],[-74,-6],[-1,-5],[1,-8],[1,-8],[-2,-8],[-2,-6],[-2,-7],[0,-10],[0,-7],[-1,-8],[-1,-6],[-2,-7]],[[53087,48138],[-6,8],[-6,9],[-14,30],[-4,38],[-3,11],[-2,10],[-1,12],[0,14],[-6,14],[-9,14],[-34,62],[-45,65],[-2,27],[0,9],[2,10],[1,14],[-2,11],[-2,11],[-4,7],[-6,8],[-8,13],[-5,5],[-1,11],[-11,25],[-3,9],[-5,12],[-8,17],[-29,53],[-36,58],[-14,25],[-36,56],[-17,30],[-21,34],[-49,130],[-6,23],[5,-8],[8,-18],[6,-7],[6,-1],[4,5],[4,9],[5,12],[-1,-9],[-1,-6],[-1,-7],[1,-7],[1,1],[2,2],[0,2],[1,3],[0,-11],[1,-11],[2,-6],[4,4],[10,-8],[2,-2],[5,-14],[1,-13],[1,0],[1,6],[1,3],[2,-1],[2,-3],[0,2],[0,1],[1,0],[1,1],[1,-22],[1,-7],[2,4],[2,3],[3,1],[2,0],[-1,-8],[2,-2],[2,2],[3,4],[2,5],[2,11],[2,5],[4,3],[6,2],[6,0],[3,-1],[7,1],[3,3],[1,7],[-5,7],[-2,2],[0,11],[-5,6],[-7,5],[-3,10],[-2,0],[2,-10],[3,-31],[-4,2],[-2,4],[-1,5],[-1,2],[-3,2],[-3,11],[-2,3],[-2,1],[-3,2],[-2,1],[-1,-1],[0,-4],[0,-4],[0,-3],[-2,-4],[-2,-6],[-1,-6],[-1,-5],[-4,4],[-4,5],[1,6],[-1,12],[0,6],[3,3],[3,0],[3,0],[1,5],[-3,6],[-7,5],[-8,3],[-5,-1],[-6,27],[-1,5],[-3,4],[-1,0],[-1,-6],[-1,-1],[-4,-4],[0,-1],[-7,3],[-7,-11],[-6,-13],[-7,-3],[-2,3],[-3,5],[-2,7],[0,7],[0,2],[3,6],[1,2],[2,1],[-2,4],[-3,3],[-1,0],[-1,5],[1,5],[0,4],[-2,2],[-2,1],[-2,0],[-2,-2],[0,-4],[3,-14],[1,-9],[-2,-8],[-5,4],[-11,30],[-5,7],[3,-9],[6,-16],[2,-8],[-6,9],[-7,15],[-7,18],[-3,15],[0,3],[-2,14],[-1,54],[-2,8],[-28,58],[-7,9],[-9,21],[-4,7],[1,2],[1,6],[-6,4],[-3,10],[-4,23],[-12,24],[-2,6],[-1,1],[-3,5],[-2,6],[0,2],[-3,3],[0,6],[3,4],[1,-2],[2,-11],[5,-9],[6,-4],[6,1],[-1,-2],[0,-1],[-1,-1],[3,-3],[2,3],[3,12],[1,0],[2,-12],[-1,-1],[-2,-2],[0,-3],[0,-4],[0,-3],[2,2],[2,5],[-1,2],[15,0],[7,-4],[4,-10],[-1,-12],[-6,-11],[4,-7],[1,-3],[2,-2],[6,-1],[2,-1],[0,-3],[0,-10],[1,-5],[5,-8],[0,-3],[2,-7],[1,-5],[1,5],[1,3],[4,3],[1,2],[-1,10],[-2,12],[-2,9],[-3,-1],[-3,8],[-7,10],[-1,7],[3,10],[3,4],[-1,4],[-9,33],[-5,11],[-3,-5],[-4,5],[-1,3],[-1,-6],[0,-5],[1,-14],[-6,9],[-7,28],[-4,4],[-3,-4],[-1,-7],[-1,-6],[0,-3],[-3,-2],[-1,-5],[-1,-6],[0,-8],[-2,5],[-2,3],[-3,1],[-3,0],[4,12],[-1,6],[-6,10],[-6,-8],[-5,3],[-2,11],[-1,18],[1,7],[1,10],[0,5],[0,25],[0,6],[-3,13],[-1,7],[1,19],[-1,6],[-4,24],[-7,19],[-15,34],[-35,103],[-3,11],[-2,14],[-3,13],[-1,13],[4,-16],[2,-18],[4,-10],[5,-13],[5,1],[4,-4],[3,-7],[3,-19],[7,-14],[1,-12],[2,-6],[9,-23],[3,-5],[2,-4],[13,-23],[3,-2],[8,-6],[3,-73],[1,-9],[4,3],[0,6],[-2,8],[1,4],[2,3],[2,-3],[2,-5],[0,-5],[4,10],[7,8],[7,5],[7,2],[-1,-10],[-1,-10],[2,-8],[4,-5],[2,20],[0,10],[-2,7],[9,2],[23,-6],[8,4],[-12,9],[-4,7],[-3,12],[-3,22],[0,13],[1,10],[-2,1],[-6,7],[-1,0],[-3,0],[-2,-2],[-1,-3],[2,-9],[-1,-6],[-1,-3],[-1,-2],[-7,-20],[-6,-10],[-8,-5],[-9,-1],[-2,-1],[-1,-1],[-2,0],[-2,2],[-2,4],[0,10],[-2,8],[0,6],[0,11],[-1,3],[-3,1],[-3,1],[-1,1],[0,9],[2,6],[4,4],[5,1],[2,3],[0,8],[-1,9],[-2,5],[0,3],[2,2],[7,1],[2,2],[2,5],[2,12],[4,17],[-1,10],[-5,21],[1,3],[1,3],[-1,3],[-3,3],[0,-12],[2,-31],[-1,-6],[-2,-6],[-3,-5],[-3,-1],[-2,2],[-2,8],[-2,2],[-5,-3],[-3,-9],[-2,-8],[-3,-4],[-13,-6],[-5,2],[-3,7],[-1,13],[1,11],[1,5],[-1,1],[-2,4],[-1,4],[-1,-1],[-2,-3],[-2,-2],[-1,-2],[-1,-2],[-4,1],[-4,5],[-10,16],[-4,3],[-3,4],[-3,10],[0,12],[2,11],[-1,2],[-1,2],[0,4],[5,8],[-1,14],[-5,14],[-5,9],[3,-18],[-1,-16],[-1,-6],[-2,1],[-1,6],[-2,37],[-5,26],[-27,75],[7,-14],[4,-5],[4,3],[-4,4],[2,8],[2,7],[2,4],[2,1],[-4,3],[-8,-12],[-5,3],[-1,10],[-2,14],[-2,10],[-3,-4],[-2,0],[-2,21],[-2,8],[-4,15],[-7,35],[-6,22],[-4,31],[-9,24],[-6,43],[4,13],[2,-5],[-3,-11],[3,-5],[9,-4],[-1,-5],[0,-4],[0,-3],[1,-4],[6,1],[4,-15],[3,-20],[1,-25],[2,-8],[2,-7],[4,-3],[2,-4],[1,-9],[1,-8],[5,-3],[-3,10],[1,10],[1,10],[1,12],[1,9],[4,0],[5,-2],[5,-1],[0,4],[-3,3],[-3,5],[-2,6],[0,7],[2,4],[3,-1],[7,-6],[3,-9],[2,-10],[0,-9],[3,-12],[10,-20],[3,-10],[0,-12],[-2,-21],[2,-8],[2,0],[1,11],[1,36],[1,11],[7,15],[1,10],[0,8],[0,4],[0,2],[2,5],[2,2],[4,3],[2,2],[0,6],[0,7],[0,5],[3,3],[4,-16],[0,14],[-4,9],[-2,10],[2,16],[17,31],[5,21],[25,58],[7,23],[4,25],[-1,76],[2,13],[7,26],[1,12],[0,7],[2,12],[0,8],[-1,5],[-3,15],[0,8],[1,7],[2,6],[2,6],[1,5],[0,5],[-2,5],[0,5],[-1,12],[-9,112],[-4,20],[1,5],[2,16],[0,3],[2,2],[8,16],[3,2],[3,-4],[3,-12],[1,-14],[-1,-12],[-3,-22],[1,-7],[1,-7],[0,-5],[-3,-1],[-1,-3],[-1,-6],[1,-7],[1,-5],[2,5],[1,5],[2,4],[3,2],[9,0],[2,-2],[1,-8],[7,-15],[3,-11],[1,-23],[2,-3],[2,-3],[2,0],[1,6],[-2,26],[1,10],[3,11],[13,-8],[4,-4],[1,-7],[3,-20],[1,-6],[2,4],[8,17],[2,4],[4,-1],[3,-3],[3,-12],[13,5],[10,-22],[9,-29],[9,-15],[-10,39],[-4,11],[-1,10],[6,5],[7,0],[4,-9],[4,5],[5,14],[3,6],[9,13],[4,3],[4,0],[9,-7],[4,-1],[4,0],[11,8],[0,4],[-14,0],[-5,3],[-5,10],[-5,-6],[-5,-6],[-5,-4],[-22,-2],[-3,-3],[-13,9],[-3,5],[-5,8],[-2,3],[-9,-1],[-3,3],[-13,21],[-10,13],[-4,8],[-1,12],[-2,0],[-2,-7],[-1,-2],[-4,1],[-2,-1],[-6,-6],[-2,-1],[-2,7],[-2,21],[-3,4],[-4,9],[-13,65],[-4,11],[-8,19],[-5,5],[-5,-1],[-4,1],[-4,9],[0,9],[1,32],[2,7],[6,2],[7,3],[3,2],[5,7],[3,3],[4,1],[2,-2],[3,-2],[4,-1],[2,1],[4,6],[5,4],[4,6],[5,4],[5,-1],[5,-9],[2,-14],[-1,-12],[-5,-6],[-12,6],[-6,-2],[-4,-12],[7,5],[8,-2],[6,-7],[2,-16],[3,2],[3,4],[1,7],[1,7],[3,-9],[1,-17],[-2,-17],[-2,-9],[2,-17],[3,-5],[4,-2],[-1,9],[0,12],[2,10],[2,5],[2,5],[3,26],[2,9],[-4,12],[-1,12],[1,29],[-3,70],[-10,56],[0,14],[-2,10],[-2,6],[-2,7],[2,12],[3,12],[4,6],[4,2],[5,0],[5,3],[3,7],[2,8],[2,6],[5,2],[16,-1],[5,-3],[4,-13],[2,-25],[3,-13],[2,10],[1,8]],[[52723,51061],[8,-2],[4,-3],[5,-7],[7,-18],[5,-8],[5,-4],[5,-2],[4,2],[3,7],[1,8],[0,18],[2,8],[5,2],[8,2],[31,0],[77,-1],[6,0],[83,0],[63,-1],[20,0],[83,-1],[0,156],[0,155],[-1,124],[0,31],[0,155],[0,48],[-3,22]],[[52499,50098],[10,-5],[2,-20],[-1,-25],[0,-19],[-5,-7],[-4,-4],[-3,1],[-5,6],[-2,8],[0,7],[0,8],[0,10],[-1,5],[-4,8],[-1,7],[0,6],[1,5],[3,9],[3,6],[6,8],[3,7],[1,-6],[0,-5],[-1,-4],[-2,-2],[0,-4]],[[52604,50949],[2,0],[-1,-1],[-1,1]],[[50663,57515],[-14,26],[-22,64],[-20,57],[-20,61],[-12,35],[-6,21],[1,17],[4,7],[16,7],[2,2],[2,6],[1,2],[1,0],[3,-4],[2,0],[16,3],[4,2],[2,6],[0,13],[0,3],[0,7],[0,2],[-1,5],[-3,8],[-2,4],[-2,9],[-1,8],[-3,36],[0,7],[-2,8],[-3,7],[-5,6],[-3,5],[-3,7],[-1,3],[-1,11],[-8,18],[-11,6],[-27,5],[-2,-3],[-5,-11],[-3,-4],[-2,1],[-2,2],[-3,-1],[-1,-3],[-2,-8],[-4,-14],[-3,-12],[-4,-10],[-4,-7],[-5,-1],[-35,6],[-29,6],[-9,5],[-8,9],[-19,33],[-15,27],[-23,40],[-7,13],[-21,36],[-16,29],[-16,28],[-8,9],[-20,3],[-8,10],[-3,9],[-1,11],[0,11],[0,38],[0,56],[0,50],[4,24],[6,-2],[22,-19],[15,-8],[6,-5],[2,1],[3,20],[1,7],[1,3],[5,-3],[5,-8],[5,-6],[8,6],[-5,13],[-5,6],[-4,3],[-12,3],[-5,3],[-30,29],[-9,14],[-6,18],[-1,27],[-11,25],[-15,19],[-13,8],[-11,-2],[-5,0],[-5,6],[-3,6],[-1,4],[1,3],[1,2],[-1,3],[0,5],[0,4],[-3,2],[-37,-3],[-7,5],[-4,15],[1,9],[3,13],[1,11],[-2,5],[-5,4],[-3,7],[-3,8],[-9,13],[-4,8],[-2,3],[-2,7],[-2,11],[-2,5],[-6,8],[-2,4],[0,6],[2,11],[0,5],[-3,7],[-5,5],[-4,7],[-2,10],[-1,11],[-3,5],[-3,4],[-3,6],[0,5],[2,10],[1,3],[-2,5],[-1,4],[-2,2],[-2,4],[-3,11],[-1,7],[1,7],[7,22],[1,7],[1,18],[1,5],[3,7],[0,5],[-1,4],[-11,33],[-40,76],[-4,7],[-8,28],[-2,30],[19,110],[-2,18],[-8,34],[0,17],[4,9],[3,7],[3,8],[-1,13]],[[50250,56980],[-36,-2],[-27,-1],[-17,-7],[-35,-26],[3,26],[-4,2],[1,2],[0,3],[0,2],[1,3],[0,2],[-1,1],[0,1],[-31,13],[-25,11],[-63,27],[-34,15],[-14,6],[-15,6]],[[49953,57064],[-37,17],[-1,-10],[1,-6],[1,-5],[-3,-9],[-3,-7],[-14,-21],[-5,12],[-5,9],[-6,0],[-5,-14],[-1,-9],[-1,-13],[-1,-6],[-4,-6],[-7,-7],[-3,-7],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-11,1],[-6,-1],[-4,-3],[-2,-10],[-2,-15],[-3,-13],[-5,-6],[-13,27],[1,4],[2,4],[1,5],[-2,4],[-2,1],[-2,-2],[-1,1],[-1,6],[-2,1],[-31,1],[-2,4],[-1,1],[-2,-1],[-2,-4],[-6,-2],[-6,-15],[-5,-1],[2,8],[-3,0],[-1,2],[-2,8],[-2,3],[-3,1],[-38,6],[-8,-2],[-2,-9],[-34,0],[-35,1],[-7,3],[-9,7],[-3,3],[-3,2],[-35,3],[-5,-3],[-2,-11],[-4,-4],[-43,-1],[-61,-1],[-62,-1],[-67,-2],[-54,-1],[-26,0],[-7,0],[0,6],[-24,1],[1,-4],[-1,-4],[2,-11],[3,-11],[1,-11],[-1,-13],[-4,-9],[-4,-7],[-4,-9],[-2,-13],[-3,-27],[-5,-16],[-1,-14],[-1,-5],[-3,-7],[-1,-3],[0,-6],[1,-3],[1,0],[2,-1],[1,-3],[0,-4],[-1,-3],[-1,-2],[-2,-10],[-3,-14],[-1,-6],[1,-11],[8,-31],[1,-6],[1,-12],[0,-6],[2,-4],[3,-8],[1,-2],[1,-12],[2,-7],[10,-19],[3,-3],[5,-2],[7,0],[1,-3],[-1,-5],[-3,-6],[-3,-2],[-4,-1],[-2,-2],[-2,-4],[-2,-5],[-2,-9],[-2,-12],[0,-12],[3,-10],[2,-2],[3,-1],[2,-1],[1,-4],[1,-7],[2,-1],[2,0],[3,-2],[2,-4],[2,-2],[1,-3],[0,-7],[-1,-8],[-2,-5],[-5,-10],[-4,-12],[0,-12],[3,-26],[0,-51],[1,-12],[7,-20],[1,-11],[0,-15],[-3,-27],[2,-15],[6,-22],[1,-6],[-2,-6],[-9,-23],[-5,-20],[-1,-12],[2,-12],[2,-6],[2,0],[1,0],[3,-2],[1,-5],[0,-6],[1,-5],[2,-3],[1,-2],[-3,-6],[-3,-9],[-1,-10],[0,-9],[0,-10],[2,-6],[9,-19],[11,-27]],[[50449,54150],[-52,-19],[-44,-29],[-20,-18],[-3,-1],[-1,-1]],[[50329,54082],[0,21],[-3,10],[-23,5],[-4,4],[-3,8],[-3,12],[-2,5],[-2,2],[-3,2],[-2,4],[-4,13],[-7,47],[-21,0],[-6,4],[-4,5],[-9,24],[-7,9],[-14,14],[-5,13],[-5,14],[-3,14],[-2,15],[1,12],[0,4],[1,7],[2,6],[1,5],[-4,8],[-3,1],[-7,-1],[-3,1],[-2,9],[-4,6],[-4,7],[-1,13],[2,30],[0,9],[-3,10],[-4,8],[-5,6],[-4,2],[-2,5],[-8,32],[-4,5],[-2,4],[-1,5],[2,13],[6,21],[0,10],[-3,12],[-8,13],[-3,9],[4,3],[4,1],[12,6],[3,4],[6,21],[0,25],[-1,27],[1,23],[6,36],[3,27],[4,22],[0,13],[-5,39],[-1,5],[-11,-8],[-5,-2],[-5,1],[-9,17],[-4,26],[-2,29],[1,34],[1,8],[2,6],[3,6],[3,3],[5,3],[4,4],[1,8],[0,16],[1,18],[4,12],[8,-3],[-1,12],[0,31],[-2,34],[0,35],[0,3],[-3,39],[0,22],[0,12],[-2,22],[-1,28],[-2,14],[2,4],[2,4],[1,8],[0,8],[-2,5],[-2,4],[-1,6],[0,8],[1,2],[2,1],[3,2],[9,18],[5,6],[12,12],[4,6],[2,9],[-1,14],[-1,2],[-3,2],[-1,2],[0,2],[0,6],[-1,9],[0,7],[0,6],[-11,19],[-3,22],[-5,22],[-19,18],[-7,11],[-6,13],[-5,12],[-11,16],[-11,32],[-8,38],[-2,21],[-1,8],[2,6],[4,1],[3,-3],[3,-13],[3,7],[2,10],[-2,2],[3,2],[3,-1],[2,-2],[4,-1],[3,3],[1,8],[0,9],[2,8],[6,18],[-4,29],[-13,49],[-4,18],[3,18],[5,18],[1,20],[0,9],[2,5],[6,12],[4,12],[0,10],[-4,21],[0,12],[3,5],[3,4],[3,6],[1,8],[0,17],[3,30],[-2,14],[-5,9],[-8,6],[0,1],[0,1],[1,7],[1,6],[0,6],[-2,5],[-15,11],[-5,2],[-11,-1],[-7,-3],[-4,-3],[-1,-5],[-1,-12],[-1,-5],[-2,-4],[-13,-9],[-5,-2],[-5,1],[-1,8],[2,6],[-2,10],[0,8],[11,5],[5,4],[3,5],[1,6],[-2,7],[-4,0],[-7,-3],[-3,3],[-3,4],[-2,4],[0,1],[-1,4],[2,17],[0,4],[14,-4],[7,1],[5,7],[4,-5],[5,-2],[5,3],[1,8],[-2,12],[-5,2],[-12,-6],[-8,2],[-5,12],[0,18],[4,17],[7,-17],[5,-5],[5,1],[3,7],[1,11],[-1,10],[-1,9],[-2,6],[-2,5],[-2,6],[0,11],[6,46],[0,7],[-1,24],[0,8],[3,9],[3,8],[2,4],[0,4],[-2,12],[-3,14],[0,4],[0,6],[1,3],[0,4],[-1,6],[5,2],[4,-2],[3,2],[0,2],[1,10],[-1,12],[-2,4],[-3,1],[-4,5],[-2,15],[1,42],[0,20],[2,8],[1,10],[1,9],[7,11],[-6,9],[-3,3],[-12,-4],[-4,0],[3,12],[-3,9],[-5,9],[-3,11],[0,5],[1,6],[0,7],[-3,6],[-2,1],[-3,-2],[-3,-2],[-3,-2],[-2,1],[-8,6],[0,-2],[-1,-4],[-1,-3],[-3,-1],[0,2],[-14,56],[-5,10],[-15,19],[-2,6],[-3,13],[-2,6],[-3,3],[-9,6],[-2,4],[-2,3],[-2,3],[-6,2],[-3,2],[-4,3],[-2,4],[-3,12],[0,13],[2,15],[1,8],[1,25],[3,10],[4,10],[5,9],[3,4],[0,7],[-1,11],[-1,6],[6,60],[2,5],[2,5],[2,3],[2,4],[1,8],[1,21],[-1,18],[-4,14],[-9,7],[-6,0],[-9,-5],[-5,-1],[-5,3],[-6,6],[-5,9],[-2,10]],[[50329,54082],[-2,-1],[-13,-14],[-9,-16],[-14,-32],[-4,-11],[-6,-29],[-2,-11],[0,-13],[-3,-27],[-2,-11],[-9,-18],[-12,-8],[-53,-13],[-99,16],[-12,-2],[-7,-3],[-3,-3],[-1,-3],[-2,-2],[-7,-1],[-2,-1],[-5,-8],[-19,-11],[-4,-6],[-8,-15],[-10,-7],[-4,-9],[-3,-10],[-5,-10],[-22,-16],[-1,-2],[-4,-7],[-2,-3],[-2,-2],[-4,-1],[-60,-41],[-13,-3],[-1,-2],[-4,-3],[-20,-37],[-2,-6],[-2,-10],[-3,-8],[-10,-13],[-20,-10],[-3,0],[-2,-4],[-5,-8],[-4,-3],[-3,9],[-14,-22],[-4,-3],[-16,-28],[-6,-16],[-5,-6],[-20,-6],[-7,0],[-4,8],[-2,-5],[-2,-2],[-7,-1],[-7,-4],[-3,0],[-1,6],[-1,5],[-3,-1],[-3,-6],[-5,-1],[-4,-3],[-29,-26],[-3,-9],[-3,-5],[-5,-7],[-11,-11],[-6,-2],[-18,-1],[-3,-2],[-6,-8],[-3,-3],[-3,0],[-6,1],[-3,-1],[-5,-3],[-10,-11],[-19,-6],[-7,-5],[-4,-7],[-4,4],[-5,1],[-5,-3],[-4,-6],[0,-5],[2,-8],[-1,-5],[-1,-4],[-2,-3],[-19,-20],[-3,-5],[-8,-19],[-1,-4],[1,-4],[0,-3],[-3,-1],[-2,0],[-19,-12],[-22,-20],[-4,-9],[-7,-20],[-4,-8],[-4,-4],[-19,-5],[-4,-3],[-7,-1],[-2,1],[-2,4],[-1,6],[1,6],[-1,6],[-4,2],[-2,1],[-4,2],[-3,1],[0,3],[-3,6],[-11,20],[-6,5],[-3,3],[-1,6],[-1,4],[-1,5],[-1,3],[-29,24],[-47,21],[-46,33],[-36,6],[-40,15],[-39,25],[-4,2]],[[49134,53495],[2,1],[3,2],[3,1],[20,0],[6,-4],[1,-4],[4,-10],[1,-2],[4,1],[6,5],[3,2],[-1,16],[8,7],[10,3],[6,6]],[[45827,56965],[-11,-16],[-7,-8],[-3,1],[1,8],[2,4],[2,3],[3,3],[4,14],[1,3],[0,4],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-2],[-3,-1],[-4,2],[-2,3],[-1,6],[5,43],[2,7],[3,4],[2,7],[1,9],[2,7],[1,2],[4,-1],[1,1],[0,2],[0,8],[0,2],[12,2],[-1,5],[-1,4],[-2,3],[-2,2],[4,9],[2,11],[0,10],[-4,7],[-3,-16],[-4,-11],[-5,-7],[-7,-3],[1,-9],[-1,-6],[-3,-1],[-3,4],[0,-3],[-1,-2],[-1,-3],[0,-4],[-1,2],[-3,2],[0,-11],[-1,-6],[-3,-3],[-4,-6],[-3,-9],[-4,-17],[-8,-20],[-3,-6],[-3,-3],[-4,3],[-4,8],[-3,9],[0,6],[3,5],[8,9],[3,4],[1,7],[2,26],[-3,50],[3,14],[-6,-2],[-1,-8],[1,-12],[1,-10],[0,-9],[0,-14],[-2,-10],[-7,6],[-10,-1],[-3,2],[-2,3],[-2,2],[-1,1],[-6,-2],[-4,1],[-1,7],[-1,7],[-2,4],[-3,2],[-3,1],[-4,6],[-1,15],[0,28],[1,6],[0,4],[-2,2],[-1,0],[-1,1],[0,2],[-1,3],[1,7],[1,7],[1,7],[1,5],[7,20],[3,5],[2,-1],[5,-5],[4,-2],[2,2],[4,8],[3,2],[3,3],[3,8],[3,10],[1,7],[-15,-26],[-5,-6],[-5,5],[-1,7],[2,18],[1,6],[4,8],[2,6],[-2,3],[-4,-3],[-4,-7],[-2,-10],[-1,-10],[-2,-7],[-4,-5],[-4,-3],[-4,-4],[-2,-9],[-2,-8],[-2,-5],[-6,-2],[-3,-3],[-3,-3],[-3,1],[-1,13],[1,6],[4,22],[1,4],[1,4],[8,25],[-5,0],[-2,4],[1,7],[0,9],[3,-3],[2,0],[3,2],[2,5],[0,-4],[2,-8],[1,8],[2,6],[2,2],[2,-8],[2,0],[0,6],[-1,5],[-1,5],[-2,4],[2,1],[0,1],[0,2],[3,-2],[3,-1],[4,-1],[4,-2],[2,2],[-2,9],[1,4],[1,8],[2,0],[2,-7],[4,1],[3,0],[0,-11],[5,4],[0,9],[-3,9],[-4,7],[-1,-2],[-1,0],[-4,-2],[0,4],[7,4],[2,4],[3,4],[2,-7],[4,-9],[4,-4],[5,4],[-3,1],[0,4],[0,5],[-1,6],[-2,3],[-2,0],[-2,1],[-1,8],[3,-2],[6,-3],[2,-3],[4,4],[-1,-4],[0,-8],[-1,-4],[7,-10],[2,1],[2,9],[-1,5],[-4,10],[0,3],[1,4],[1,5],[3,4],[2,2],[1,-2],[2,-3],[3,-2],[3,-2],[2,-2],[1,-5],[0,-6],[0,-7],[5,4],[0,2],[-1,4],[0,2],[4,0],[3,-3],[2,-6],[2,-7],[-11,-4],[-4,0],[1,-3],[1,-3],[1,-1],[2,-1],[-1,-10],[2,-5],[2,1],[3,15],[3,1],[3,-1],[2,1],[9,1],[2,1],[3,3],[2,4],[2,5],[1,8],[-4,-2],[-2,-3],[-3,-2],[-9,-2],[-2,1],[-1,6],[0,3],[2,2],[2,1],[2,0],[-1,6],[-1,3],[2,8],[-4,1],[-2,-3],[-2,-6],[0,-9],[-4,9],[-2,3],[-4,0],[0,5],[2,2],[4,10],[0,4],[-2,8],[-2,0],[-3,-20],[-4,-2],[-4,5],[-4,1],[3,9],[4,4],[3,4],[2,11],[-3,-5],[-2,-3],[-3,0],[-2,4],[-2,0],[0,-6],[-1,-4],[-2,-2],[-3,0],[1,-9],[-2,-2],[-3,3],[-1,8],[-4,-13],[-3,3],[2,11],[6,7],[-2,4],[-1,4],[0,6],[2,6],[1,0],[2,-2],[1,0],[3,-2],[-1,9],[-3,5],[-5,6],[-2,0],[-1,-9],[-2,-8],[-1,-8],[0,-11],[-3,-3],[-2,-7],[-3,-2],[-1,2],[0,5],[3,9],[-3,3],[-1,8],[2,17],[-2,-3],[-2,-5],[-1,-7],[0,-7],[-1,0],[-6,0],[-3,-2],[4,-4],[0,-4],[3,-5],[3,-4],[2,-5],[-1,-8],[-3,-2],[-2,2],[-2,6],[-1,-5],[-1,-5],[-1,-5],[-1,-6],[-2,23],[-2,8],[-1,-1],[-2,-1],[2,-8],[-4,0],[1,-16],[1,-7],[3,-6],[-1,-8],[-5,7],[-3,8],[-6,18],[-1,-11],[2,-10],[3,-9],[2,-11],[-2,1],[-4,3],[-1,-8],[-2,0],[-2,6],[-1,10],[-1,0],[-2,-5],[0,-6],[-1,-7],[0,-6],[-2,2],[-1,2],[0,-12],[-3,4],[-1,5],[-1,6],[-2,7],[-1,7],[1,4],[3,5],[1,9],[3,9],[3,11],[0,14],[-9,-18],[-4,-5],[-5,7],[1,5],[0,12],[0,7],[-3,1],[-2,-3],[-2,-3],[-2,-3],[0,-2],[-2,-5],[-3,-4],[-1,5],[-1,10],[-1,9],[0,10],[5,16],[2,13],[2,6],[10,23],[4,4],[1,1],[1,3],[0,6],[1,6],[1,5],[4,7],[2,0],[0,-3],[1,-2],[1,-1],[2,-2],[1,5],[1,3],[2,-1],[1,1],[7,0],[11,-6],[6,-2],[34,0],[2,2],[4,9],[2,2],[7,4],[5,8],[3,9],[5,7],[6,0],[1,-9],[-1,-12],[-3,-9],[-2,-12],[0,-14],[2,-15],[3,-10],[5,-5],[7,-3],[6,-4],[3,-11],[3,-6],[6,-3],[7,2],[3,10],[-8,-6],[-5,10],[-3,13],[-4,7],[-8,2],[-3,2],[-3,4],[-2,4],[-1,4],[-2,6],[-2,8],[3,7],[3,7],[2,7],[5,29],[0,3],[2,2],[4,0],[3,2],[0,4],[-2,4],[-2,2],[0,2],[-3,2],[-3,1],[-3,-3],[-2,-1],[-6,6],[-3,1],[-4,-2],[-9,-11],[-4,-3],[-3,-4],[-8,-18],[-4,-6],[-6,-2],[-5,2],[-11,8],[-11,3],[-4,4],[-3,7],[-6,7],[-6,3],[-6,0],[-7,-4],[-2,-3],[-4,-8],[-2,-1],[-6,0],[-3,0],[-2,-2],[-9,-18],[-2,-3],[-4,-3],[-1,-2],[-9,-25],[-2,-4],[-5,-3],[-13,-16],[-5,-4],[-1,-1],[-18,-7],[-3,-3],[-2,-5],[-13,-15],[-6,-3],[6,48],[5,20],[7,1],[1,-2],[2,-2],[3,0],[3,0],[0,4],[-5,1],[-7,12],[-5,-1],[-5,-7],[-1,-10],[0,-11],[-9,-37],[-3,-3],[-6,3],[-1,7],[2,22],[-5,-5],[-1,-9],[0,-12],[-2,-11],[-1,-2],[-6,-4],[-3,-4],[-3,-5],[-2,-1],[-1,3],[-1,5],[0,12],[1,12],[5,21],[4,33],[2,8],[1,2],[2,3],[2,2],[1,1],[1,2],[2,14],[8,23],[2,5],[4,5],[6,5],[6,3],[5,0],[1,-4],[1,-5],[2,-5],[2,-3],[6,0],[2,-2],[3,-2],[1,8],[2,9],[1,7],[-2,5],[-2,-3],[-3,-5],[-3,-5],[-6,0],[-1,3],[-2,7],[-2,3],[-3,1],[-1,0],[-1,-1],[-11,-2],[-3,3],[-2,7],[-2,0],[-2,-10],[-5,-6],[-7,-3],[-5,-2],[0,-4],[1,-2],[1,-2],[-1,0],[-1,0],[0,-1],[0,-3],[-2,3],[-2,3],[0,-3],[1,-8],[-1,-8],[-2,-7],[-4,-8],[-4,-3],[-20,-1],[-3,-2],[-6,-5],[-2,-1],[-1,-2],[-2,-5],[-2,-4],[-4,-2],[-2,2],[-3,5],[-4,10],[-7,-3],[-9,3],[-7,7],[-4,7],[-5,26],[-3,3],[-7,3],[-4,2],[-2,6],[-2,7],[-1,9],[-1,18],[-3,15],[0,8],[7,35],[3,7],[4,6],[3,4],[4,3],[0,-7],[1,-5],[2,-1],[3,5],[0,5],[-3,9],[0,6],[4,10],[4,6],[5,4],[21,25],[4,8],[3,6],[3,10],[2,4],[3,3],[6,3],[3,2],[-8,1],[-5,-5],[-4,-8],[-3,-10],[-6,-8],[-14,-6],[-6,-4],[-10,-13],[-2,-5],[-10,-23],[-5,5],[0,11],[2,13],[0,12],[-1,-9],[-4,-12],[-1,-21],[-3,-9],[-4,-3],[-6,5],[-2,-4],[0,3],[-4,5],[0,-8],[-2,-3],[-4,-1],[-4,0],[-1,-2],[-1,-4],[-2,-3],[-1,3],[0,2],[-1,2],[-2,2],[-5,2],[-3,4],[-2,6],[0,6],[-2,3],[-6,16],[-1,4],[-2,2],[-5,10],[-3,4],[-1,-1],[-5,-3],[-2,0],[-1,3],[-3,9],[-1,4],[-11,17],[-3,3],[-4,0],[-3,-2],[-3,-4],[-3,-2],[-2,5]],[[45570,57103],[5,-9],[5,-11],[2,-15],[2,-25],[2,-6],[2,-4],[1,-5],[-1,-8],[-4,-4],[-3,0],[-3,1],[-2,-3],[-3,1],[-8,2],[0,-1],[-2,-2],[-2,-1],[-1,2],[0,5],[0,3],[1,2],[2,0],[3,2],[8,8],[2,3],[-2,6],[-3,2],[-3,-3],[0,-9],[-2,3],[-2,5],[3,9],[1,7],[0,7],[0,9],[-1,13],[0,8],[3,8]],[[45562,57078],[1,-17],[-1,-8],[-3,-9],[-5,-15],[-4,-4],[-1,7],[-1,9],[-2,7],[0,8],[3,10],[-6,0],[-3,6],[-1,9],[3,9],[4,7],[14,10],[1,-5],[1,-8],[0,-16]],[[45542,57054],[-4,0],[0,-4],[2,-12],[-1,-11],[-1,-8],[2,-6],[-6,-8],[-5,0],[-5,1],[-6,-5],[-1,5],[0,5],[0,5],[1,6],[-1,0],[-4,-13],[2,-8],[-4,2],[-1,2],[-1,4],[-6,-2],[-7,10],[-6,15],[-4,14],[4,8],[4,7],[5,3],[4,-2],[-4,-3],[-1,-1],[0,-2],[0,-2],[1,-2],[1,-2],[2,5],[3,3],[3,4],[2,20],[2,4],[3,2],[2,7],[1,-4],[4,-5],[1,15],[4,6],[6,-1],[5,-8],[1,-4],[0,-4],[-2,-4],[-1,-6],[0,-8],[2,-6],[4,-12]],[[45595,57163],[7,0],[1,-6],[-2,-22],[-1,-24],[-2,-8],[-7,0],[-7,10],[0,18],[4,19],[7,13]],[[45650,57163],[-1,-10],[2,-20],[-1,-11],[-1,-2],[-2,7],[-3,8],[-4,0],[0,-4],[2,0],[0,-4],[-2,-8],[-1,-4],[-2,-4],[-2,5],[-1,1],[-3,-2],[2,-7],[0,-8],[-1,-9],[-1,-9],[-1,3],[0,3],[-1,2],[-2,0],[0,-1],[-1,0],[-1,1],[-2,0],[-2,-7],[-3,4],[-2,8],[0,8],[2,3],[3,5],[1,4],[-4,4],[0,3],[5,13],[1,3],[-1,7],[0,2],[2,1],[2,-1],[1,0],[1,2],[3,12],[7,4],[7,0],[4,-2]],[[45507,57115],[-18,-3],[-4,1],[-7,7],[-1,1],[0,7],[1,6],[2,4],[3,1],[-1,10],[4,9],[5,6],[5,-1],[2,5],[2,-7],[3,-1],[4,1],[4,-1],[1,-5],[1,-7],[0,-8],[0,-5],[-3,-3],[-3,-3],[-1,-6],[1,-8]],[[45648,57277],[1,-1],[0,-2],[1,-1],[2,0],[0,-3],[-1,-1],[-1,-4],[2,-5],[-2,-5],[-6,-10],[-1,5],[-1,3],[-2,0],[-3,-7],[-4,0],[-4,4],[-2,7],[2,5],[2,1],[2,-2],[2,0],[2,4],[1,5],[1,6],[1,5],[2,-4],[2,2],[4,6],[1,-2],[1,-2],[-2,-4]],[[45484,57249],[-6,0],[-3,1],[-4,3],[4,4],[5,6],[4,7],[2,9],[3,6],[7,4],[8,2],[5,-2],[1,-6],[-1,-5],[-8,-19],[-1,-2],[-1,-3],[-1,-3],[-1,-4],[-1,-2],[-3,0],[-9,4]],[[45479,57277],[-2,-1],[-3,0],[-3,-3],[-1,-1],[-1,-2],[-1,-1],[-2,2],[-3,9],[-1,1],[-1,0],[-15,0],[-2,-4],[-2,-3],[-3,-1],[0,4],[2,4],[-2,8],[0,1],[2,3],[-3,4],[-1,0],[10,11],[11,1],[11,3],[8,18],[1,-1],[0,-1],[1,-2],[2,0],[2,0],[2,2],[1,2],[1,-2],[1,-2],[0,-4],[-1,-11],[-2,-9],[-5,-13],[-1,-5],[0,-3],[0,-4]],[[45549,57287],[1,10],[2,13],[3,11],[3,5],[4,4],[6,13],[4,-1],[0,-9],[2,-6],[3,-1],[1,8],[3,-7],[-1,-16],[3,-5],[-3,-12],[-1,-15],[1,-14],[3,-12],[-5,-4],[-7,-9],[-6,-3],[-3,12],[-2,0],[0,-3],[-1,-3],[0,-3],[-1,3],[-2,4],[-1,2],[-2,-7],[-2,-4],[-3,-4],[-3,-1],[-2,7],[-10,15],[-1,6],[10,12],[6,14],[1,0]],[[45701,57358],[0,-8],[-3,-6],[-1,-8],[2,-6],[3,-6],[0,-5],[-5,-1],[-4,1],[-2,3],[-3,0],[0,-2],[-6,-10],[-1,-1],[-6,1],[0,-4],[6,-5],[-2,-9],[-3,-6],[-3,7],[-3,-1],[-4,0],[-3,2],[-1,1],[-2,-2],[-2,4],[-1,6],[3,3],[4,4],[3,9],[3,7],[7,0],[0,9],[3,6],[3,6],[3,7],[5,-3],[4,3],[3,4],[3,0]],[[45509,57500],[5,4],[5,-1],[10,-3],[4,1],[4,3],[8,9],[-1,2],[0,1],[1,1],[4,0],[3,0],[5,-1],[2,-5],[0,-1],[-1,-16],[-2,-7],[-3,-7],[-2,-8],[-2,-23],[-2,-9],[-3,-9],[-3,4],[-4,0],[-3,-3],[-2,-1],[-4,5],[-7,22],[-3,3],[-3,0],[-3,1],[-1,8],[0,16],[-1,8],[-1,6]],[[48517,71873],[-1,-7],[0,-3],[0,-8],[-3,5],[-2,13]],[[29246,77119],[5,-1],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[28,0],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[13,0],[15,0],[27,1],[28,0],[28,0],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[28,0],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[28,0],[27,0],[0,14],[0,10],[2,8],[12,26],[1,6],[2,11],[1,7],[8,21],[2,11],[-5,7],[-7,6],[3,4],[12,4],[4,6],[8,16],[5,6],[6,4],[5,-2],[23,-22],[7,-3],[7,-2],[5,4],[9,20],[4,9],[3,1],[0,1],[6,1],[2,2],[5,8],[3,7],[3,5],[6,2],[7,-2],[5,-7],[12,-51],[4,-7],[5,7],[1,6],[0,11],[1,5],[2,4],[5,7],[2,5],[1,11],[-1,26],[1,12],[2,10],[3,8],[5,4],[7,0],[5,-5],[10,-14],[6,-6],[6,1],[6,4],[3,7],[-2,11],[-5,7],[-11,11],[-5,8],[-2,12],[0,10],[12,38],[27,47],[5,7],[16,11],[9,11],[3,2],[6,0],[3,1],[6,7],[3,9],[1,10],[0,13],[-1,6],[-2,4],[-1,3],[1,7],[1,3],[6,9],[21,25],[9,14],[5,19],[2,15],[-2,5],[-5,1],[-6,6],[-4,8],[0,10],[3,21],[1,2],[2,4],[1,2],[0,4],[-1,2],[-1,2],[-1,3],[-2,3],[-1,5],[4,5],[10,11],[4,8],[1,12],[-1,13],[-4,12],[-6,5],[1,12],[8,23],[5,22],[3,8],[6,2],[1,6],[1,13],[2,13],[6,6],[4,2],[22,28],[3,15],[3,39],[5,59],[3,30],[4,26],[5,10],[25,53],[25,53],[25,53],[25,54],[25,53],[26,53],[25,53],[25,53],[4,8],[4,3],[4,1],[43,-16],[4,-8],[0,-18],[-3,-35],[0,-20],[0,-3],[2,-13],[5,-12],[37,-35],[5,1],[35,27],[12,5],[14,-1],[7,1],[5,6],[5,9],[6,7],[13,10],[6,3],[7,2],[7,-1],[9,-9],[3,1],[4,3],[7,2],[0,4],[0,5],[1,7],[9,18],[14,6],[14,-5],[14,-11],[4,-5],[7,-16],[4,-3],[8,-5],[4,-4],[17,-24],[13,-13],[8,-15],[3,-7],[1,-8],[2,-5],[12,-15],[8,-19],[4,-5],[12,-10],[1,-4],[1,-23],[1,-80],[0,-79],[1,-80],[1,-80],[0,-79],[1,-80],[1,-79],[1,-80],[0,-6],[2,-4],[2,-4],[3,-5],[0,-5],[-3,-9],[-5,-9],[-3,-8],[1,-10],[5,-11],[1,-7],[-2,-8],[-4,-9],[-3,-11],[-2,-9],[1,-32],[2,-7],[4,-5],[7,-7],[4,-1],[2,3],[1,4],[2,1],[3,-4],[2,-6],[2,-6],[4,-6],[8,-10],[15,-10],[15,-6],[13,-1],[8,2],[8,-1],[5,-8],[2,-17],[-1,-21],[-4,-6],[-7,-9],[-7,-9],[3,-22],[14,-40],[-1,-22],[-7,-19],[-3,-10],[-1,-11],[1,-10],[12,-18],[10,-25],[10,-16],[10,-8],[10,10],[1,5],[0,5],[1,5],[2,4],[4,2],[3,-2],[7,-6],[3,-2],[9,-6]],[[31340,77225],[-5,1],[-3,-1],[-2,-4],[2,-8],[1,-1],[6,1],[2,-2],[1,-3],[0,-4],[2,-6],[2,-8],[0,-2],[2,0],[2,-3],[3,-5],[4,-9],[4,-11],[-3,-9],[2,-9],[4,-7],[3,-3],[2,-4],[5,-19],[3,-6],[-3,-7],[-1,-9],[-2,-8],[-6,-4],[-3,5],[-3,7],[-3,2],[-3,-14],[4,-6],[0,-6],[-2,-6],[-5,-2],[-3,3],[-10,12],[-3,1],[-2,-8],[4,-8],[5,-8],[2,-7],[4,-30],[1,6],[1,18],[0,4],[3,1],[5,-10],[4,1],[-2,5],[3,3],[0,3],[-2,6],[-1,3],[5,3],[4,-10],[2,-16],[0,-13],[6,7],[1,12],[-5,26],[4,-2],[3,-6],[6,-16],[1,-1],[4,1],[1,-1],[0,-2],[0,-3],[0,-2],[3,-15],[1,-2],[-2,-6],[-10,-18],[-3,-5],[-3,0],[-6,1],[-3,-1],[0,-2],[-2,-10],[-1,-4],[-3,5],[-2,-11],[-3,-8],[-15,-27],[-3,-2],[-5,-2],[-2,-4],[1,-2],[1,-5],[-8,0],[-2,1],[-5,5],[0,1],[-3,1],[-2,-2],[0,-5],[3,-10],[-6,1],[-4,5],[-4,6],[-5,4],[0,5],[4,10],[-1,11],[-5,5],[-8,-6],[4,-4],[-4,-4],[-3,0],[-3,3],[-3,5],[1,-10],[4,-7],[1,-7],[-3,-12],[5,-6],[-1,-3],[-3,-1],[-1,2],[-4,-8],[-2,-3],[-1,-6],[-4,11],[-1,15],[-2,12],[-6,3],[1,-10],[0,-9],[0,-8],[4,-6],[-5,-3],[-5,-1],[-5,1],[-4,3],[2,9],[-2,5],[-3,1],[-3,-6],[-1,0],[-2,13],[-4,-1],[-11,-17],[5,1],[2,-5],[0,-18],[-1,-5],[-1,-5],[0,-5],[1,-5],[1,-4],[-3,-2],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[-3,0],[-2,1],[-3,2],[0,2],[0,3],[0,4],[0,5],[-1,5],[-2,3],[-3,-1],[-2,-3],[-4,-8],[-9,-28],[-4,1],[-3,4],[-2,7],[-1,10],[3,29],[-1,5],[-3,-4],[-9,-28],[1,-3],[-1,-5],[-1,2],[-3,6],[1,7],[3,10],[2,9],[-1,9],[-2,-1],[-3,-6],[-1,-8],[-3,5],[-4,0],[-2,-4],[-2,-15],[-4,-3],[-3,-1],[-1,-2],[0,-7],[6,-13],[1,-7],[-1,-8],[-3,-2],[-4,2],[-3,2],[1,-11],[-4,-27],[-1,-15],[-5,9],[-1,15],[2,17],[4,12],[-4,-3],[-3,-8],[-2,-10],[-1,-9],[1,-11],[-1,-5],[-3,3],[-1,3],[-2,2],[-1,3],[0,5],[-1,39],[-3,-1],[-1,-3],[-1,-5],[0,-6],[-1,-6],[-3,0],[-5,4],[-3,-2],[3,-6],[9,-8],[0,-3],[3,-16],[1,-2],[0,-4],[-1,-5],[-1,-4],[-2,-3],[-3,0],[-1,4],[0,3],[-2,1],[-2,-2],[0,-2],[0,-3],[-2,-5],[-8,-21],[-3,-7],[-3,5],[-1,7],[0,8],[2,8],[-4,-2],[-2,-2],[-2,10],[-3,17],[-1,15],[1,14],[-1,9],[-8,4],[-1,2],[0,3],[0,3],[-2,1],[-2,-3],[-1,-3],[0,-3],[0,-4],[0,-3],[1,-4],[0,-4],[-2,-1],[-5,0],[-1,2],[-1,4],[0,17],[-1,13],[-2,3],[-5,-14],[0,-9],[0,-8],[-1,-4],[-9,16],[-1,7],[0,9],[-5,0],[-5,5],[-4,0],[-1,-11],[9,-6],[3,-8],[-5,-12],[2,-2],[0,-2],[1,-2],[1,-2],[-12,-1],[-6,3],[-5,6],[-2,-12],[-7,-13],[2,-8],[-8,-3],[-4,0],[-1,7],[1,32],[-2,9],[-5,4],[-8,0],[5,-18],[1,-8],[-1,-4],[-1,-2],[0,-3],[1,-3],[1,-3],[1,-1],[1,-2],[0,-5],[-2,-5],[-2,-7],[-3,-4],[-1,2],[0,14],[-1,7],[-1,6],[-5,-11],[-6,-5],[-7,0],[-7,3],[3,-6],[4,-13],[2,-7],[0,-6],[-4,-15],[-1,-7],[1,-8],[3,-2],[3,-1],[3,-3],[1,-9],[-1,-6],[-2,-2],[-4,5],[2,-7],[2,-4],[2,-3],[3,-3],[-8,-5],[-25,35],[-9,1],[-5,-3],[-6,7],[-8,14],[-6,3],[-10,-11],[-8,-1],[2,22],[2,11],[4,4],[3,-1],[3,-6],[2,-1],[3,3],[-1,6],[-1,7],[-2,4],[4,5],[3,5],[2,1],[5,-6],[3,-1],[2,4],[-5,13],[-1,8],[-10,-9],[-3,-3],[-5,-13],[-3,-6],[-3,-1],[-3,6],[1,10],[2,9],[1,7],[2,2],[3,3],[1,3],[1,3],[1,9],[0,4],[9,30],[-1,11],[-10,4],[-4,0],[-2,-1],[-1,-15],[-6,-33],[2,-1],[4,-3],[-5,-7],[-6,-4],[-3,1],[2,10],[-4,2],[-5,-4],[-7,-12],[-4,-4],[-12,-6],[-6,-6],[1,-5],[3,-5],[-1,-7],[1,-6],[7,-20],[2,-10],[-2,-9],[-5,-6],[-6,-4],[-4,-3],[-6,-28],[-4,-9],[-5,-28],[-4,-16],[-3,-8],[-3,-5],[0,-4],[2,-9],[-2,-10],[1,-7],[9,2],[-3,-13],[-3,-9],[-4,-5],[-8,-2],[-2,-6],[-1,-11],[-3,-8],[-8,6],[-1,-7],[-1,-3],[-2,-1],[-2,2],[-2,-7],[-2,-6],[1,-7],[3,-4],[-10,-10],[-3,-2],[-6,-3],[-1,2],[1,15],[8,21],[3,10],[-5,0],[-17,-34],[-3,-5],[-1,7],[3,16],[-3,3],[-4,-2],[-7,-6],[-5,0],[5,13],[2,8],[-2,3],[-5,1],[0,4],[5,9],[2,8],[-2,6],[-3,0],[-2,-9],[-2,-5],[-4,-3],[-3,-3],[2,-14],[-3,-5],[-5,-2],[-2,1],[-2,-7],[-2,-8],[-9,-52],[-4,-17],[-5,-10],[-1,13],[-2,8],[-2,8],[-1,8],[-2,0],[-1,-8],[-1,-9],[0,-20],[-4,9],[2,4],[-4,7],[0,6],[1,5],[1,6],[1,4],[1,7],[0,3],[0,4],[-3,4],[-1,5],[3,13],[8,24],[-1,10],[-3,-6],[-3,-8],[-4,-15],[-3,-9],[-2,-5],[1,-4],[0,-5],[0,-5],[-2,-5],[-1,-4],[1,-3],[1,-5],[-1,-4],[-1,-4],[3,-7],[1,-9],[1,-10],[-1,-10],[-4,-9],[-1,5],[1,20],[-4,-6],[-4,-1],[-5,4],[-4,7],[-4,6],[0,4],[6,14],[-2,5],[0,3],[1,3],[1,5],[2,-2],[3,-1],[2,-1],[-2,7],[-3,3],[-3,3],[-1,10],[0,7],[5,21],[2,3],[3,5],[1,5],[-4,1],[-4,-3],[-3,-7],[-26,-65],[-3,-8],[2,-4],[3,-3],[3,-3],[0,-8],[0,-9],[-4,-16],[3,4],[3,14],[3,3],[2,-4],[0,-9],[-7,-31],[-4,-10],[-4,1],[-2,16],[0,5],[1,2],[1,2],[0,1],[0,5],[-2,1],[-1,0],[-1,0],[-2,29],[-1,6],[-2,8],[-1,6],[0,8],[0,7],[0,7],[-1,6],[-1,12],[-1,11],[1,9],[0,10],[3,8],[3,5],[3,5],[1,5],[0,3],[-2,1],[-2,-2],[-2,-5],[-3,-3],[-5,-4],[-8,-16],[-5,-7],[-3,-7],[-2,-6],[0,-7],[3,-4],[5,0],[3,5],[3,5],[2,-3],[1,-5],[2,-16],[3,-43],[1,-21],[2,-21],[3,-10],[0,-6],[-2,-15],[-1,-3],[-3,-2],[-3,-5],[-3,-7],[-1,-7],[-3,7],[-1,18],[-3,4],[-1,5],[0,9],[0,14],[1,4],[2,2],[1,2],[0,6],[-1,6],[-4,5],[-1,6],[1,6],[1,3],[0,3],[-3,2],[-3,0],[-3,-1],[-2,-3],[-2,-4],[3,-3],[3,-4],[2,-7],[0,-11],[-2,-8],[-4,-7],[-3,-1],[-1,8],[-11,-24],[-2,-2],[-2,-1],[-2,-2],[-1,-10],[-1,-3],[-2,-2],[-2,0],[19,61],[-1,12],[-4,-5],[-4,-11],[-4,-14],[-2,-9],[-1,-10],[-3,-9],[-4,-6],[-5,-1],[5,16],[13,32],[3,17],[-6,-1],[-10,-12],[-3,1],[2,2],[3,5],[3,6],[1,7],[-4,-1],[-3,-3],[-3,-5],[-5,-11],[-3,-3],[-6,-6],[-4,-2],[-3,0],[-3,-2],[-14,-24],[-6,-6],[-8,-25],[-8,-9],[0,-7],[1,-9],[1,-5],[-3,-6],[-4,-2],[-8,0],[0,-4],[8,-2],[7,1],[6,-4],[3,-15],[0,-7],[-1,-18],[-1,-4],[-4,-1],[-7,-6],[-4,-1],[1,4],[1,4],[-5,-2],[-6,-14],[-4,-4],[-1,13],[-4,0],[-5,-6],[-4,-7],[-3,-13],[-1,-11],[1,-11],[2,-14],[5,6],[3,2],[3,1],[0,-4],[-4,-3],[-3,-5],[-6,-11],[0,-3],[-2,-8],[0,-3],[-2,-2],[-3,-1],[-3,-1],[-5,-8],[-4,-8],[-5,-7],[-7,-5],[-8,-1],[-3,-1],[-3,-5],[-9,-18],[-2,-1],[-3,-14],[-1,-15],[4,-12],[-4,-9],[-4,-11],[4,-4],[-4,-4],[-4,-6],[-5,-15],[-8,-31],[-3,-5],[-5,3],[-3,10],[-4,8],[-5,-1],[0,-3],[-3,-16],[0,-2],[-3,-15],[6,2],[6,1],[2,-3],[-2,-8],[-2,-8],[-1,-3],[-2,-9],[-15,-37],[-6,-21],[-2,-12],[-1,-10],[0,-4],[2,-21],[-1,-5],[-2,-1],[-13,1],[3,-6],[3,-2],[6,-5],[3,1],[0,-1],[1,-2],[2,-5],[-1,-7],[8,-38],[-2,-4],[-8,19],[-4,5],[2,-19],[5,-10],[16,-12],[-4,-3],[-2,-1],[-3,0],[5,-10],[15,-2],[1,-8],[5,-5],[1,5],[-1,16],[3,6],[3,4],[8,6],[-1,-9],[1,-4],[3,-2],[3,-1],[3,-2],[0,-4],[-1,-5],[1,-5],[0,-4],[-4,0],[-2,-3],[-1,-5],[-2,-4],[-3,-4],[-2,-1],[-5,1],[0,1],[-1,2],[-1,0],[-3,-3],[-3,-6],[-2,-5],[-2,-4],[-28,-11],[-14,-9],[-5,-6],[2,-4],[-2,-3],[-2,-3],[-1,-5],[0,-6],[3,3],[4,7],[3,3],[1,-6],[3,-5],[0,-4],[-2,-1],[-2,-1],[-2,-2],[-1,-3],[-6,-8],[-1,-2],[-3,-1],[-4,1],[-2,-3],[-1,-7],[2,-6],[4,-5],[4,-4],[-7,-3],[-8,14],[-5,-5],[-3,-8],[0,-5],[2,-9],[1,-13],[0,-6],[3,-5],[-4,0],[-5,10],[-4,2],[-3,-2],[1,-4],[2,-4],[3,-2],[-5,-2],[-5,6],[-4,3],[-3,-7],[3,-2],[3,-2],[2,-3],[1,-6],[-4,0],[-3,-4],[-2,-6],[3,-8],[3,-4],[3,-1],[6,7],[-1,-16],[4,-3],[6,1],[3,-8],[-1,-3],[-3,-5],[0,-3],[1,-1],[2,-2],[1,-1],[1,3],[2,-1],[4,3],[5,4],[3,4],[3,-8],[3,2],[2,7],[0,3],[-3,4],[-4,8],[-1,9],[0,7],[12,-20],[6,-9],[14,-6],[6,-6],[5,-8],[7,-14],[1,-4],[0,-17],[0,-2],[1,0],[4,-5],[5,-12],[7,-21],[6,-10],[-1,-10],[2,-9],[8,-22],[2,-1],[0,-2],[-2,-4],[-2,-4],[-3,0],[-3,1],[-3,3],[1,1],[3,2],[2,1],[-4,16],[-2,9],[-3,3],[-2,-4],[-3,-28],[-2,2],[-2,1],[-3,-1],[-6,-7],[16,-27],[9,-1],[5,-1],[11,1],[6,-8],[4,-21],[2,-22],[-2,-16],[-1,-15],[8,-16],[18,-20],[11,-6],[35,-6],[-4,-2],[-10,0],[-4,-4],[1,-4],[6,-2],[11,0],[9,5],[14,14],[25,11],[9,5],[9,7],[4,3],[6,15],[-1,18],[1,21],[-6,15],[3,0],[2,1],[5,3],[0,4],[-5,1],[-4,4],[-3,5],[-2,2],[-4,-4],[-2,-18],[-3,-7],[-1,21],[0,12],[-2,28],[-1,10],[-4,15],[-11,12],[-8,3],[-6,-8],[-1,-7],[4,0],[2,0],[0,-6],[-5,-6],[-4,5],[-6,15],[-2,4],[-2,1],[-2,1],[0,4],[3,5],[2,2],[3,3],[7,1],[7,-2],[6,-1],[8,-5],[10,-9],[8,-11],[10,-24],[9,-27],[11,-57],[5,-11],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-4,5],[-3,2],[-2,-3],[-1,-17],[-1,-8],[6,7],[4,-1],[3,-8],[0,-31],[-2,-39],[-11,4],[-44,-12],[-13,0],[-9,-8],[-4,-1],[-2,-2],[-3,-4],[-4,-12],[-3,-3],[1,6],[3,15],[-4,-1],[-8,-6],[-4,-1],[-10,2],[-3,-2],[-5,-6],[-3,-2],[-3,11],[-4,2],[-3,-5],[-8,-24],[-6,-11],[-7,-6],[-8,-2],[-9,-1],[-8,-3],[-18,-19],[-7,6],[6,11],[3,17],[0,45],[-1,10],[-1,8],[2,5],[3,5],[3,6],[-2,6],[3,4],[1,0],[-2,7],[-3,0],[-2,-4],[-1,-7],[-2,0],[-8,11],[-6,4],[-3,-1],[-1,-19],[1,-7],[2,-8],[-7,1],[-3,-6],[-2,-10],[-5,-10],[-3,9],[-3,-1],[-3,-5],[0,-3],[1,-2],[-5,-4],[-5,-4],[-3,0],[2,-15],[-1,-7],[-3,0],[-1,3],[-2,11],[-2,4],[-1,3],[-7,8],[-1,-15],[-4,-10],[-3,-11],[2,-17],[-6,-9],[-3,-3],[-4,0],[0,2],[1,2],[-13,-15],[-7,-3],[-8,6],[6,4],[1,7],[-1,9],[-4,8],[0,-12],[-3,-3],[-10,3],[2,-10],[1,-3],[-6,-6],[-18,-26],[-4,14],[-1,6],[2,7],[0,4],[-3,22],[-1,26],[0,14],[1,12],[4,18],[1,5],[15,42],[7,24],[-5,-2],[-3,-8],[-9,-27],[-1,-4],[-3,-3],[-6,4],[-4,2],[-2,-4],[0,-3],[-2,-6],[-1,-2],[0,-5],[0,-8],[0,-2],[-2,-1],[-4,-17],[-7,5],[-4,0],[-2,7],[0,8],[2,11],[2,10],[3,13],[0,4],[-2,3],[-3,1],[0,-2],[-1,-13],[-1,-5],[-3,2],[-5,5],[-5,7],[-3,8],[0,11],[-1,9],[-3,7],[-3,8],[-1,-7],[-1,-14],[1,-14],[1,-10],[2,-4],[2,-3],[2,-4],[1,-7],[0,-5],[-4,-12],[-1,-5],[-2,5],[-2,4],[-3,2],[-3,1],[-3,-2],[-3,-4],[-2,-4],[7,-6],[3,-9],[1,-12],[-1,-12],[-3,-11],[-4,-5],[-2,-6],[4,-12],[2,-9],[0,-31],[-1,-11],[-8,-37],[-4,-9],[-4,-7],[-1,-5],[-3,-3],[-3,1],[-6,5],[-7,-1],[-12,-4],[-43,-21],[-21,-9],[-12,-8],[-1,5],[6,6],[-2,6],[-3,4],[-3,4],[-4,1],[-18,-1],[-3,-1],[-17,-15],[-13,20],[-4,-4],[-1,-14],[-3,-6],[-7,0],[-9,6],[-7,1],[-2,-15],[-7,7],[-17,-16],[-9,6],[-2,3],[-4,3],[-2,2],[-1,5],[1,4],[1,4],[0,6],[-1,6],[-3,5],[-4,4],[-5,1],[3,-9],[5,-8],[2,-9],[-3,-14],[3,-4],[1,-1],[-5,-8],[-6,1],[-12,7],[-5,-1],[-6,-4],[-6,-6],[-3,-9],[-2,3],[-1,1],[-1,1],[0,3],[-2,0],[-3,-3],[-12,9],[-6,3],[-16,-6],[-3,-4],[-2,-4],[-2,-3],[-4,0],[-2,3],[-3,3],[-2,2],[-4,2],[-11,-2],[-3,-1],[-4,-6],[-2,1],[-4,-2],[-4,2],[-4,-8],[-10,0],[-1,6],[0,6],[-2,7],[-1,13],[-1,3],[-3,-4],[-2,-5],[-1,-3],[-10,-17],[-7,-16],[-3,-4],[-3,-9],[-7,-1],[-4,4],[-3,-4],[-6,-5],[-2,-3],[-3,-7],[-1,-3],[-1,-8],[1,-7],[-7,-1],[-6,7],[-3,3],[-1,3],[-4,3],[0,-8],[-7,-3],[-2,4],[-1,2],[-2,-2],[1,-8],[-1,-4],[-2,-4],[-3,-5],[-5,-4],[-2,-2],[-2,7],[-3,3],[-2,-7],[-2,-3],[-4,-1],[-4,-1],[-5,-4],[-4,-1],[-2,-2],[-3,-1],[-12,-14],[-4,-2],[-10,-11],[-3,-1],[-5,-6],[-5,-13],[-4,6],[-3,-1],[-5,-6],[-7,-3],[-2,5],[-2,0],[-2,-7],[-2,-1],[-4,-1],[-2,-3],[-3,-4],[1,-2],[-2,-6],[-5,-14],[-1,-2],[-6,0],[-4,-1],[-2,-4],[-12,-22],[-4,-9],[-2,-11],[-1,-2],[-3,0],[-4,-1],[-1,-5],[-1,-14],[4,-7],[2,-8],[-9,-2],[-10,1],[-7,-5],[-10,1],[-1,8],[0,4],[2,6],[3,13],[1,7],[-1,7],[-2,3],[6,26],[3,25],[4,24],[1,12],[0,49],[-1,22],[-3,21],[-3,9],[-3,6],[-9,13],[-5,13],[1,10],[2,10],[0,12],[-5,-7],[-3,-4],[-2,-5],[-1,-9],[1,-5],[1,-5],[2,-20],[2,-8],[3,-9],[6,-7],[4,-9],[0,-10],[-1,-26],[4,-51],[0,-15],[0,-11],[-3,-24],[-10,-43],[-11,-36],[-4,-10],[-2,-9],[-1,-9],[-1,-5],[-2,-9],[-1,-8],[-4,-8],[-7,-8],[-5,-10],[-2,-9],[-4,-3],[-5,-3],[-3,1],[1,7],[9,28],[-2,7],[-4,-8],[-2,-7],[-2,-9],[-3,-7],[-3,-1],[-5,-6],[-3,-2],[-5,-9],[-2,-25],[-1,-12],[-4,-3],[-4,-2],[-3,-7],[0,-9],[-1,-14],[-2,-5],[-3,-4],[3,-9],[4,-13],[10,-5],[4,-5],[2,-2],[15,4],[7,-1],[24,-14],[11,-11],[1,3],[-2,8],[0,11],[-6,24],[8,-7],[3,-12],[1,-12],[1,-20],[0,-40],[-2,-28],[-4,-31],[-5,-36],[-2,-15],[-2,-18],[-1,-19],[-2,-18],[-1,-12],[-2,-18],[-3,-26],[-1,-12],[-2,-18],[-1,-17],[-6,-58],[-2,4],[6,83],[2,29],[2,12],[2,11],[2,14],[0,12],[-3,4],[-5,-6],[0,-5],[4,-1],[1,-7],[-4,-3],[-2,-8],[-6,2],[-1,-7],[-4,-3],[-1,-10],[6,3],[1,-9],[-3,-13],[-6,-9],[6,-2],[1,-5],[-5,-9],[-3,-9],[1,-11],[2,-10],[0,-4],[-5,-11],[-6,-14],[-6,-21],[-1,-16],[8,-6],[0,-8],[-1,-10],[0,-3],[-4,-4],[-5,-10],[-3,-14],[-10,-5],[-2,-7],[1,-6],[-2,-6],[-6,-2],[-4,-2],[-4,-6],[-6,-11],[0,-8],[7,-12],[4,-11],[-2,-9],[-4,-1],[-2,5],[0,6],[-1,3],[-11,12],[-4,-4],[-3,0],[-3,4],[-3,4],[0,-22],[2,-10],[3,-5],[3,-4],[-1,-10],[-4,-14],[-4,2],[-3,3],[-3,0],[-4,-5],[-2,-5],[-2,-7],[-2,-9],[0,-7],[5,4],[4,-7],[4,-12],[2,-10],[-8,-6],[-17,-18],[-7,-4],[0,3],[2,9],[4,7],[7,13],[-7,8],[-10,-18],[-3,-11],[1,-8],[0,-3],[-18,1],[-7,-3],[-5,-11],[5,0],[3,-3],[3,-3],[4,-2],[15,8],[0,-4],[-8,-8],[-11,-27],[-6,-5],[-4,-8],[-13,-45],[-3,4],[-3,0],[-3,-2],[-2,-6],[1,0],[1,-1],[-1,-1],[1,-2],[3,3],[2,-1],[2,-4],[0,-6],[-1,-4],[-7,-12],[-2,-10],[-2,-3],[-3,-3],[-7,-3],[0,-4],[1,-6],[1,-4],[-6,-16],[-9,-15],[-11,-11],[-16,-11],[-3,-1],[-3,1],[-4,6],[0,6],[1,7],[1,7],[1,11],[2,12],[2,10],[14,49],[2,23],[-6,19],[-4,6],[-5,2],[-11,1],[-2,-1],[-5,-3],[-2,0],[-3,1],[0,3],[0,5],[-1,5],[-4,2],[-6,-1],[-8,-3],[-4,-4],[-3,-5],[-3,-3],[-5,0],[0,2],[-4,5],[-2,5],[-1,5],[1,7],[0,4],[-2,4],[-10,14],[-4,2],[-3,3],[-2,11],[-2,3],[-10,0],[-5,4],[-3,8],[-2,10],[-3,6],[-2,0],[-2,-1],[-2,-2],[-1,-1],[-3,3],[-1,3],[-1,3],[-28,52],[-9,10],[-6,12],[-3,18],[1,-3],[2,-3],[2,-2],[1,11],[3,27],[-1,9],[-10,16],[-3,7],[1,5],[6,10],[5,6],[2,3],[1,5],[0,8],[1,8],[4,5],[1,4],[2,4],[3,2],[1,3],[0,17],[6,17],[10,16],[10,12],[16,11],[12,5],[6,1],[5,1],[10,8],[6,3],[1,0],[2,3],[4,-2],[4,5],[4,8],[5,6],[-4,9],[-2,11],[1,7],[5,-3],[4,8],[1,-4],[11,29],[5,8],[-7,-4],[-9,-14],[-6,-3],[-5,-4],[-4,-11],[-1,-13],[1,-12],[-4,-6],[-16,-11],[-12,-10],[-6,-2],[-7,4],[-17,-14],[-5,-2],[-4,-3],[-10,-21],[-10,-11],[-4,-8],[-3,-24],[-4,-10],[-12,-26],[-2,-2],[-10,-6],[-1,-4],[-1,-7],[-2,-6],[-1,-7],[1,-5],[8,-13],[2,-5],[3,-11],[0,-10],[-2,-11],[-3,-11],[-3,-13],[-1,-12],[5,-13],[5,-9],[7,-13],[10,-30],[1,-3],[1,-2],[7,-10],[7,-7],[1,-14],[6,-13],[3,-12],[1,-15],[-3,-31],[0,-12],[0,-13],[1,-8],[1,-8],[-1,-15],[2,-13],[7,-9],[7,-12],[8,-21],[1,-10],[0,-11],[0,-13],[4,-8],[14,-32],[14,-26],[8,-13],[10,-7],[9,4],[1,5],[-1,5],[2,1],[2,-7],[5,-70],[0,-27],[-2,4],[-1,28],[-3,4],[-9,-5],[-5,2],[5,-17],[-4,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[3,-5],[3,-4],[4,-3],[5,0],[-6,-10],[-19,-9],[-5,-10],[5,0],[-1,-4],[-1,-4],[-2,-2],[-1,-2],[4,-1],[11,12],[7,1],[2,-3],[2,-6],[3,-5],[2,0],[5,12],[2,4],[0,9],[1,4],[2,-1],[0,-5],[1,-11],[-1,-20],[2,-15],[0,-17],[1,-13],[1,-13],[0,-1],[0,-16],[-2,-23],[-4,-20],[-4,-10],[1,18],[5,33],[0,18],[0,1],[-1,2],[-2,1],[-2,1],[-2,0],[0,-5],[0,-3],[-2,-9],[-3,4],[-4,-1],[5,-18],[-2,-7],[-2,2],[-4,4],[-6,5],[-5,2],[-3,-5],[11,-6],[2,-3],[-1,-5],[0,-5],[2,0],[0,-3],[-1,-1],[-1,-2],[-1,-2],[4,-2],[3,1],[3,0],[3,-6],[-1,-10],[-3,-11],[-3,-11],[-4,-7],[-6,-27],[-3,-4],[-9,0],[-1,4],[3,13],[-9,-9],[-3,-5],[-3,-7],[-4,-35],[-3,-5],[-1,-4],[-3,-19],[-2,-6],[-2,0],[-5,4],[-3,0],[-2,-3],[-5,-10],[-2,-3],[2,-5],[-6,-29],[-1,-5],[-1,-7],[-3,-6],[-5,-3],[-4,-5],[-1,-7],[-2,-9],[0,-6],[4,-5],[-2,-4],[-3,-1],[1,-5],[4,-4],[-1,-3],[-5,-5],[-2,-7],[1,-3],[5,2],[3,-4],[-3,-6],[-6,-5],[-6,-9],[-6,-12],[-6,-14],[-5,-12],[-8,-26],[-11,-26],[-8,-15],[-7,-19],[-15,-37],[-3,-12],[-4,-14],[-4,-7],[-4,-10],[-3,-10],[-3,-4],[-2,-5],[-6,-8],[-2,-4],[2,-7],[-1,-4],[-2,-5],[0,-5],[4,-3],[3,-5],[-1,-3],[-3,-1],[-2,-4],[-3,-1],[-2,3],[-5,1],[-6,-17],[-3,-7],[-4,-19],[-3,-20],[-3,-28],[-1,-19],[-2,-23],[0,-9],[-1,-13],[-3,-6],[-5,5],[-3,16],[-7,20],[0,15],[2,8],[0,4],[-6,10],[0,14],[5,13],[4,8],[-3,2],[-2,0],[-2,-2],[5,22],[2,11],[-2,7],[5,4],[3,7],[2,8],[0,6],[0,-1],[-2,1],[-1,-1],[-1,-4],[-2,0],[1,10],[2,11],[3,8],[8,7],[1,6],[-3,4],[-6,-5],[1,17],[4,13],[6,9],[6,6],[-11,8],[3,6],[3,5],[1,5],[-4,4],[5,6],[6,2],[3,3],[-4,9],[3,10],[4,5],[6,2],[6,0],[-2,9],[1,5],[9,18],[0,4],[-6,0],[0,4],[6,8],[3,7],[0,9],[-5,9],[3,8],[3,-1],[3,-4],[3,-3],[16,4],[-2,5],[-1,6],[0,7],[1,6],[2,1],[7,-2],[3,1],[-3,5],[-1,6],[0,5],[2,5],[-1,8],[-5,7],[-8,3],[-7,-2],[0,4],[7,9],[6,7],[10,3],[4,3],[4,6],[-6,5],[-5,2],[-26,4],[-6,-1],[-6,-8],[-8,-13],[-6,-6],[-2,3],[-1,4],[-1,2],[-1,3],[1,5],[1,4],[3,4],[2,5],[2,7],[-3,0],[-2,-2],[-2,-2],[-1,-4],[-2,0],[0,3],[0,1],[-1,0],[-1,1],[2,4],[6,15],[1,7],[2,4],[8,2],[2,2],[3,7],[12,21],[4,10],[-4,2],[-3,-5],[-3,-6],[-4,-3],[-7,1],[-4,-1],[-3,-4],[-1,2],[0,1],[-2,1],[0,5],[3,2],[3,4],[3,4],[1,6],[-2,4],[3,2],[8,2],[3,4],[-1,6],[-4,2],[-5,-1],[-4,1],[-6,-4],[-13,2],[-6,-2],[-1,-4],[0,-6],[-1,-4],[-2,-2],[-2,1],[-1,5],[0,12],[3,22],[9,11],[12,5],[10,8],[-4,4],[-13,2],[-5,5],[-2,11],[1,14],[3,12],[9,26],[3,9],[1,13],[1,3],[-1,2],[-3,1],[-2,-2],[-1,-6],[-1,-6],[-1,-6],[-14,-28],[-2,-5],[-7,-35],[-2,-5],[-2,3],[0,5],[1,6],[-1,6],[-1,3],[-3,5],[-2,5],[-1,5],[1,8],[8,6],[2,9],[-3,13],[-7,-7],[-8,-16],[-5,-15],[3,-3],[2,-6],[1,-7],[0,-9],[-3,-15],[-3,-5],[-3,4],[-9,26],[-3,5],[-7,3],[-2,4],[-2,11],[-17,35],[-5,6],[-3,-5],[4,-27],[-1,-13],[-1,0],[-2,16],[-5,15],[-8,22],[-2,4],[-2,6],[-2,7],[-1,13],[-3,4],[-2,3],[-2,3],[0,13],[4,4],[5,-1],[3,-5],[1,-14],[2,-1],[3,8],[1,15],[2,9],[5,5],[7,4],[5,4],[-1,6],[4,8],[-1,7],[-1,2],[-2,1],[-1,0],[-3,1],[-3,-1],[-1,-2],[0,-3],[-1,-5],[-3,-4],[-4,-1],[-8,-1],[-4,4],[2,8],[6,13],[0,4],[-1,2],[-2,2],[-2,8],[12,-4],[5,0],[4,1],[7,5],[4,2],[-4,-7],[-2,-1],[3,-5],[3,-3],[5,2],[8,-12],[6,3],[11,-15],[11,-1],[5,10],[3,4],[4,10],[1,18],[3,9],[-1,2],[-1,2],[-2,0],[-6,-21],[-2,-12],[-7,-6],[-10,8],[-5,5],[-8,6],[4,20],[-4,-3],[-4,-3],[-4,-2],[-5,4],[0,4],[2,4],[7,6],[4,2],[0,4],[-6,-1],[-6,-2],[-5,0],[-2,8],[2,3],[1,5],[0,6],[-1,6],[-3,-7],[-1,-8],[-1,-7],[-4,-9],[-2,7],[-5,8],[-3,8],[2,13],[8,-2],[-6,11],[-3,3],[-6,-4],[-5,-21],[-5,4],[-2,18],[2,9],[1,5],[-2,-1],[-4,-7],[-1,-16],[-4,-10],[0,-11],[1,-6],[-1,-7],[-4,-3],[-2,10],[1,15],[1,8],[3,11],[5,34],[1,6],[1,5],[8,11],[4,10],[2,-2],[-1,-9],[5,-10],[5,-4],[3,-5],[0,-11],[3,-7],[5,-7],[3,-5],[8,7],[3,3],[4,7],[2,9],[-1,9],[-3,-9],[-6,-6],[-9,-3],[-4,17],[1,19],[9,8],[8,4],[6,7],[-11,8],[-2,2],[2,12],[-1,6],[-3,0],[-1,-3],[-2,-14],[-2,-3],[-5,-8],[0,20],[1,10],[-1,4],[-3,5],[-6,5],[-4,-1],[-1,0],[-2,-4],[-2,-5],[-1,-2],[-2,-3],[-2,0],[-9,-2],[-2,-1],[-3,-3],[-1,-6],[0,-7],[2,-8],[-1,-10],[-5,-5],[-3,-6],[-4,-3],[2,33],[3,31],[4,17],[1,4],[4,13],[2,13],[2,2],[4,-3],[0,-11],[2,-11],[12,-6],[8,-3],[5,3],[8,10],[5,7],[1,12],[-2,3],[-2,4],[-1,4],[-1,6],[6,2],[4,1],[-3,4],[6,14],[12,21],[4,11],[-7,-5],[-6,-7],[-6,-5],[-6,4],[3,4],[0,4],[-9,-8],[-3,-18],[-5,-8],[-2,-17],[1,-13],[1,-9],[-4,-1],[-5,7],[-2,5],[3,15],[-1,23],[-2,11],[0,6],[-2,4],[-6,11],[0,10],[5,12],[6,25],[5,18],[9,16],[1,11],[1,5],[3,5],[6,1],[3,3],[1,5],[2,12],[1,3],[3,4],[13,-1],[9,-4],[8,0],[19,1],[12,-1],[7,-1],[6,6],[-7,5],[-11,-3],[-28,3],[-8,8],[6,13],[11,21],[6,9],[5,5],[6,1],[13,-7],[7,-2],[0,4],[-8,8],[-4,7],[-3,9],[7,7],[5,11],[3,14],[2,13],[-6,-4],[-5,-9],[-5,-10],[-4,-14],[-17,-24],[-10,-17],[1,20],[2,11],[7,17],[3,9],[2,10],[4,23],[-5,-2],[-3,-6],[-5,-14],[-8,-11],[-8,5],[-7,-1],[-5,1],[-3,-4],[-8,-33],[3,-6],[10,-6],[3,-2],[-1,-8],[-2,-5],[-13,-23],[-17,-16],[-8,-11],[-4,8],[-1,11],[2,26],[2,11],[0,5],[-2,4],[-3,0],[-2,-4],[-2,-6],[-2,-2],[-4,-45],[4,-10],[2,-7],[0,-3],[-2,-3],[-8,-17],[-2,28],[-6,27],[-4,2],[-21,-9],[4,-6],[8,-3],[6,-4],[-1,-11],[2,0],[-2,-6],[-3,-2],[-3,0],[-3,-4],[2,-8],[-1,-2],[-15,6],[-2,-4],[2,-7],[9,-20],[0,-4],[-3,-5],[-4,4],[-3,6],[-4,14],[-3,3],[-9,5],[5,-16],[5,-16],[8,-11],[6,0],[-1,-6],[-8,-13],[-5,-7],[0,8],[1,6],[-3,1],[-2,-3],[-2,-4],[-3,0],[-5,1],[2,11],[-5,5],[-6,6],[-9,11],[-2,5],[-3,-4],[-3,-2],[-7,-1],[-2,-1],[4,-3],[2,-4],[5,0],[4,-2],[2,-8],[0,-9],[8,-3],[1,-4],[1,-8],[1,-4],[2,-4],[5,-7],[1,-2],[4,3],[3,-7],[8,-12],[2,-2],[1,-15],[3,-10],[-2,-9],[-2,-4],[-3,5],[0,8],[-3,1],[-4,-5],[-2,-1],[-6,-1],[-4,4],[-2,0],[1,-6],[5,-4],[6,-3],[13,-11],[6,-5],[4,-7],[-1,-6],[-5,-3],[-6,-1],[-2,-2],[-3,-10],[-5,4],[-11,16],[-3,14],[-4,11],[-4,8],[-3,-2],[-1,-5],[0,-6],[-1,-10],[3,-2],[5,-2],[3,-6],[5,-10],[8,-11],[2,-7],[2,-12],[5,-6],[-4,-7],[2,-12],[-12,9],[-6,14],[-9,5],[-3,-4],[9,-9],[3,-7],[3,-8],[6,-8],[-1,-11],[-3,0],[-4,4],[-5,3],[1,-3],[0,-1],[1,-4],[2,-5],[-1,-5],[-3,-3],[2,-10],[3,2],[4,1],[4,0],[-1,-11],[-2,-11],[-8,-14],[-6,-5],[1,-12],[3,-10],[5,-8],[-2,-13],[0,-16],[2,-15],[3,-13],[-1,-34],[0,-26],[5,-18],[17,-35],[6,-15],[5,-12],[4,-4],[-4,-19],[-7,-19],[-9,2],[-5,7],[0,16],[-1,6],[0,4],[-1,3],[-2,4],[-4,5],[-3,2],[-9,3],[-5,9],[-12,12],[-9,18],[-3,18],[-7,88],[-3,15],[0,-4],[0,-5],[0,-6],[1,-43],[1,-13],[0,-14],[0,-15],[0,-14],[5,-21],[10,-16],[10,-15],[18,-15],[3,-3],[1,-11],[3,-12],[5,-10],[7,-12],[6,1],[2,4],[5,4],[5,-1],[4,-4],[-4,-10],[-3,-9],[1,-12],[2,-12],[2,-4],[6,-15],[7,-18],[4,-15],[-3,-6],[-3,-5],[2,-18],[1,-8],[1,-7],[1,-12],[-4,5],[-4,3],[-12,27],[-6,3],[-5,14],[2,16],[-2,19],[-6,9],[0,-5],[2,-9],[0,-4],[-1,-6],[-1,-4],[-1,-4],[-3,-8],[-3,4],[-6,12],[-2,-15],[-2,-5],[-4,4],[0,5],[-2,7],[-3,15],[-4,8],[-7,8],[-8,7],[-7,1],[-10,6],[-5,2],[-16,-6],[-6,6],[-8,9],[1,13],[-2,8],[-1,6],[-1,22],[-3,16],[-6,11],[-9,10],[7,-26],[3,-14],[2,-17],[-1,-27],[-7,9],[-8,6],[-8,6],[0,13],[-7,10],[-7,8],[-3,15],[-8,42],[-2,12],[-3,12],[0,-6],[-1,-5],[-1,-5],[-2,-5],[-4,-10],[-4,-5],[-5,-7],[-3,1],[0,14],[0,7],[1,4],[0,5],[-1,1],[0,1],[-1,2],[-4,-4],[-3,-5],[1,-2],[2,-2],[2,-8],[-5,-20],[-4,-6],[-6,-5],[-3,-3],[-7,-6],[-8,5],[-6,12],[-2,18],[1,16],[-2,13],[0,12],[2,11],[3,7],[2,8],[4,12],[5,-1],[6,1],[5,12],[-2,0],[-4,-5],[-4,-2],[0,5],[3,10],[3,8],[1,2],[2,1],[2,3],[2,1],[6,-1],[3,2],[1,3],[2,10],[2,10],[1,10],[2,5],[2,4],[2,3],[6,2],[4,2],[2,-3],[5,0],[2,1],[0,2],[-3,-1],[-2,2],[-1,3],[1,5],[1,9],[1,6],[2,1],[2,0],[0,2],[-3,3],[-1,2],[-1,6],[1,7],[1,3],[1,5],[-1,3],[-2,14],[2,10],[1,5],[0,6],[-1,4],[-1,7],[-3,4],[-4,5],[-3,6],[-2,2],[1,-6],[3,-6],[2,-3],[2,-5],[1,-4],[1,-4],[0,-6],[-1,-3],[-2,0],[0,-2],[1,-5],[0,-7],[0,-12],[-1,-2],[-2,-2],[-1,-3],[2,-4],[0,-6],[0,-11],[1,-12],[-1,-7],[-7,-3],[-5,0],[-3,-3],[-3,1],[-2,-1],[-2,-11],[-2,-6],[-3,0],[-2,5],[-2,3],[-3,-1],[0,-6],[4,-9],[4,-8],[1,-8],[-7,-3],[-7,-7],[-4,2],[-2,5],[1,4],[3,10],[-2,6],[-4,0],[-4,-5],[-2,-9],[-1,-9],[-2,-10],[-3,-9],[-4,-6],[2,-2],[1,-4],[1,-3],[-5,-6],[-2,-2],[0,-4],[-1,-11],[-5,-17],[-6,-30],[4,-27],[-6,7],[-5,9],[-2,-2],[3,-12],[7,-11],[4,-6],[3,-7],[2,-9],[-3,1],[-6,-3],[-5,-1],[1,-3],[13,-1],[12,-7],[17,8],[6,3],[9,11],[13,1],[8,15],[4,1],[6,-6],[2,-8],[-1,-10],[1,-7],[0,-7],[-3,-7],[-4,2],[-4,0],[0,-4],[4,-2],[2,-3],[9,-18],[7,-4],[2,-2],[2,-4],[1,-8],[0,-7],[-1,-10],[2,-5],[11,-6],[9,-13],[14,-7],[9,2],[6,-1],[5,-4],[2,-7],[3,-7],[7,3],[7,7],[2,3],[3,-1],[3,-3],[2,-3],[2,-1],[3,0],[6,3],[2,-4],[2,-7],[-2,-11],[3,-5],[4,-4],[6,-5],[7,-9],[2,-6],[2,-7],[-3,-6],[0,-2],[0,-8],[2,-2],[5,1],[6,-1],[4,-4],[2,0],[2,-6],[-2,-2],[-2,-1],[3,-3],[14,-15],[10,-6],[23,-21],[8,-6],[4,-6],[1,-13],[2,-13],[-1,-14],[-3,-8],[-5,1],[-9,16],[-4,3],[-3,-5],[2,-12],[6,-19],[1,-9],[0,-6],[-1,-5],[-2,-9],[-1,0],[-2,0],[-2,1],[-1,-3],[3,-7],[8,-12],[1,-7],[-3,-3],[-3,0],[-3,1],[-3,2],[2,-8],[-2,-4],[-2,-2],[-2,-4],[1,-6],[4,-9],[1,-4],[4,0],[-5,-8],[-7,3],[-16,9],[-1,4],[-3,6],[-3,4],[-1,-3],[-1,0],[-2,5],[-2,7],[-1,6],[-4,9],[-2,-8],[-3,-22],[-5,0],[-3,7],[-2,11],[0,7],[-3,9],[-10,22],[-2,11],[-1,4],[-9,11],[-1,5],[-1,6],[-2,2],[-3,-5],[-3,2],[-2,4],[-1,5],[0,9],[-4,-6],[-3,-1],[-4,3],[-3,6],[-11,29],[-5,11],[-18,17],[-5,23],[-8,5],[-4,10],[-6,37],[-5,14],[-3,6],[-5,4],[-12,5],[-3,-1],[-3,7],[-2,10],[-3,8],[-5,4],[-12,5],[-5,1],[-2,-6],[2,-6],[4,-4],[10,-2],[3,3],[2,-1],[1,-4],[1,-8],[1,-6],[1,-4],[3,-5],[20,-8],[3,-6],[1,-3],[5,-9],[2,-4],[-2,-33],[1,-10],[5,-3],[4,0],[3,-3],[1,-8],[3,-9],[5,-7],[5,-7],[4,-8],[6,-7],[2,-5],[3,-13],[3,-12],[4,-11],[3,-8],[3,-6],[4,-7],[3,0],[4,1],[2,0],[1,0],[1,0],[0,-2],[0,-8],[0,-2],[2,-8],[10,-3],[5,-6],[3,-12],[6,-13],[1,-1],[0,-5],[1,-9],[1,-12],[5,-15],[9,-7],[16,2],[6,0],[4,3],[6,-18],[10,-5],[12,-3],[12,-6],[-5,-7],[-5,-3],[-13,-2],[-8,-4],[0,-6],[5,-4],[6,-2],[9,-13],[6,-4],[3,6],[0,9],[6,-1],[2,-9],[-1,-9],[-1,-4],[-2,-6],[0,-6],[2,-4],[4,0],[3,-2],[0,-11],[-1,-20],[-1,-20],[-2,-17],[-6,-8],[-5,8],[-6,21],[-1,9],[-3,0],[-4,-3],[-5,2],[-9,27],[-5,8],[-3,-15],[3,-2],[2,-4],[1,-5],[1,-5],[-3,2],[-3,2],[-3,0],[-2,-4],[-2,-6],[2,-5],[7,-10],[2,-1],[2,-2],[0,-6],[-1,-1],[-8,-5],[0,-4],[9,1],[2,-1],[2,-5],[3,-8],[1,-8],[-2,-9],[-21,-7],[-11,-7],[-4,12],[-8,14],[-4,9],[-2,9],[-4,1],[-2,3],[-17,47],[-4,5],[-7,6],[-5,13],[-8,26],[-14,25],[-3,-2],[-1,-4],[-1,-6],[0,-7],[1,-3],[3,-3],[3,-1],[2,-3],[12,-35],[9,-10],[4,-10],[6,-18],[13,-40],[20,-24],[9,-14],[10,-11],[10,5],[8,7],[4,-1],[4,-7],[-1,-1],[-1,-7],[0,-7],[0,-6],[2,-5],[3,-6],[3,-1],[1,7],[8,-10],[6,-9],[2,-8],[-4,-3],[-6,-7],[-3,-7],[4,-4],[11,5],[3,-4],[1,-16],[-2,-13],[-2,-12],[-4,-8],[-5,-4],[-7,0],[-5,-2],[-4,-3],[-7,-12],[-5,-4],[-4,3],[-3,23],[-3,8],[-20,17],[-6,19],[-5,-3],[-13,20],[-2,7],[-1,8],[3,17],[-2,16],[-5,12],[-5,8],[-4,-4],[-12,-2],[-5,-2],[-2,-4],[-1,-6],[-1,-3],[-3,3],[-1,5],[-1,6],[-1,5],[-2,2],[-5,2],[-11,8],[-4,2],[-3,5],[-1,12],[1,13],[-1,11],[-3,-5],[-1,-6],[0,-15],[-1,-6],[-3,-6],[-6,-7],[-6,-1],[-4,6],[-2,11],[-8,23],[-3,4],[-3,2],[-3,-3],[-9,-12],[-2,-4],[-1,-2],[-2,6],[-2,7],[0,4],[-3,5],[-2,2],[-3,-1],[-4,-2],[-6,-4],[-2,0],[-3,1],[-5,5],[-2,2],[-11,-1],[-4,4],[-5,9],[-7,-12],[1,-8],[2,-3],[3,-1],[1,-2],[3,1],[18,-12],[24,0],[2,-3],[2,-6],[2,-4],[3,3],[9,13],[2,1],[6,-4],[3,-11],[1,-12],[2,-5],[7,-3],[10,-13],[5,-4],[26,0],[4,-4],[7,-21],[6,-5],[6,-4],[8,23],[5,-2],[2,-22],[3,-25],[-5,-23],[3,-14],[6,-2],[19,-7],[0,-4],[-3,-3],[-1,-1],[0,-4],[2,-2],[3,-1],[3,-1],[2,-2],[3,-6],[7,-13],[5,-7],[1,-6],[0,-6],[3,-7],[1,-8],[-1,-5],[-4,-7],[-8,-10],[0,-4],[7,1],[6,6],[6,7],[6,6],[7,3],[8,-1],[7,-4],[6,-6],[0,-7],[2,-7],[5,-5],[5,-1],[-6,12],[-2,8],[1,6],[4,10],[-1,4],[-7,7],[0,12],[5,6],[12,1],[28,-20],[12,-7],[13,-3],[6,4],[6,10],[8,-1],[5,-13],[8,-62],[27,-128],[2,-24],[0,-1],[12,-98],[4,-24],[1,-12],[1,-14],[1,-10],[8,-29],[12,-61],[42,-139],[3,-24],[8,-35],[-2,2],[-6,4],[-2,2],[0,4],[0,6],[-1,4],[-6,7],[-1,11],[-1,21],[-4,15],[-19,45],[-2,0],[-4,-3],[-4,2],[-2,7],[1,10],[2,-6],[2,-1],[7,4],[-1,9],[-3,8],[-2,3],[-4,-4],[-4,6],[-2,10],[-1,10],[-2,10],[0,4],[1,15],[-3,18],[-4,18],[-3,19],[-7,27],[-4,7],[-1,3],[0,2],[1,1],[1,0],[-2,16],[-2,39],[-1,8],[-4,14],[0,10],[-4,15],[-2,20],[-4,21],[0,3],[0,1],[-2,7],[1,7],[1,7],[0,7],[-1,4],[-3,8],[-2,4],[-5,33],[-2,16],[-2,3],[-4,4],[-3,0],[-1,-6],[-4,-61],[2,-32],[1,-1],[1,-4],[4,0],[1,4],[1,0],[-2,7],[4,5],[5,3],[2,-15],[0,-1],[0,-16],[1,-5],[1,-6],[0,-4],[-3,-1],[-11,0],[-6,3],[-1,9],[0,8],[-8,8],[-2,5],[-9,24],[0,-9],[2,-5],[1,-4],[1,-6],[0,-1],[0,-7],[-2,-12],[0,-9],[3,-12],[4,-12],[6,-10],[6,-6],[-4,-5],[3,-14],[7,-15],[6,-7],[-3,5],[-2,4],[-1,5],[0,6],[1,-1],[2,7],[2,12],[3,1],[1,-16],[-2,-27],[3,-9],[9,-25],[2,-9],[1,-7],[15,-69],[1,-9],[2,-12],[4,-13],[1,-10],[-5,-4],[-5,4],[-4,9],[-7,18],[-2,5],[1,6],[1,4],[1,5],[-1,6],[-2,7],[-3,9],[-6,9],[-2,3],[0,4],[-1,9],[-1,4],[-4,5],[-4,3],[-1,5],[4,11],[-8,11],[-4,4],[-5,1],[2,-9],[3,-4],[3,-5],[2,-22],[2,-12],[1,-9],[-4,-4],[7,-12],[4,-5],[4,-3],[0,-4],[-20,11],[-5,1],[-6,4],[-5,8],[-7,18],[-2,3],[-5,3],[-2,3],[-5,10],[-5,8],[-5,5],[-15,7],[3,3],[2,4],[0,4],[-4,1],[-2,-3],[-3,-7],[-1,-7],[1,-3],[6,-3],[6,-6],[6,-8],[3,-7],[5,-14],[3,-8],[7,-6],[2,-14],[4,-3],[3,-2],[-2,-4],[-6,-6],[-3,-2],[-10,-2],[0,-4],[1,0],[0,-4],[-8,-1],[-3,1],[-3,2],[-9,9],[-4,14],[-2,3],[-3,2],[-7,10],[-5,8],[-2,0],[1,-8],[1,-5],[2,-5],[3,-4],[2,-2],[4,-5],[9,-24],[5,-8],[0,-3],[-7,-3],[-6,3],[-29,22],[-8,9],[-5,13],[-4,-2],[-5,5],[-5,8],[-5,5],[4,-13],[2,-7],[2,-4],[10,-10],[1,-4],[3,-7],[7,-7],[8,-6],[5,-2],[0,-5],[-28,-7],[-4,-5],[0,-4],[1,0],[2,0],[-5,-12],[-9,-10],[-9,-8],[-7,-3],[-10,-1],[-5,1],[-3,3],[-8,21],[-3,5],[-4,-14],[-7,0],[-5,11],[-4,32],[-7,26],[-1,16],[4,26],[1,7],[4,8],[2,5],[3,17],[-3,10],[-5,6],[-6,4],[2,-6],[5,-10],[1,-6],[-1,-8],[-2,-5],[-4,-7],[-5,-11],[-2,-11],[-2,-12],[0,-39],[1,-7],[4,-13],[2,-17],[2,-5],[2,-5],[3,-4],[0,-8],[0,-6],[1,-5],[4,-2],[-1,-8],[-10,-24],[0,-4],[38,0],[8,-4],[2,0],[9,10],[14,10],[15,5],[9,-5],[1,-5],[0,-6],[-1,-6],[0,-3],[2,-4],[2,2],[2,4],[4,2],[5,-2],[12,-10],[7,0],[-3,7],[-6,6],[-3,6],[7,9],[24,13],[27,3],[7,-3],[7,-6],[5,-9],[0,-10],[-6,6],[-3,-5],[-2,-21],[9,6],[4,2],[-2,-13],[-4,-13],[-5,-8],[-6,-3],[0,-4],[6,-9],[3,-17],[-1,-15],[-8,-4],[-8,5],[-3,0],[2,-7],[3,-4],[5,-3],[4,-2],[4,0],[-1,0],[2,-4],[2,-7],[2,-7],[-2,-3],[-3,-4],[2,-7],[3,-7],[1,-2],[-4,-9],[-9,3],[-9,6],[-7,0],[5,-15],[7,-5],[7,1],[8,3],[0,-2],[0,-3],[1,-3],[1,-4],[2,0],[10,47],[1,20],[0,72],[2,6],[10,11],[2,4],[2,2],[4,-7],[5,-14],[7,-6],[2,-1],[2,2],[1,4],[-1,4],[-6,4],[-3,7],[-2,7],[-2,8],[6,-3],[6,-4],[6,-2],[5,5],[-2,4],[-3,3],[-3,1],[-3,0],[1,4],[2,5],[0,6],[0,6],[10,-12],[8,-17],[13,-37],[0,-7],[5,-13],[1,-4],[0,-11],[-2,-8],[-3,-8],[-1,-9],[1,-6],[4,-10],[1,-9],[0,-12],[-1,-4],[-7,0],[-6,-1],[-1,-4],[3,-11],[7,-17],[0,-6],[-4,-13],[-1,-2],[-2,-2],[-2,-1],[-3,-2],[0,-5],[0,-5],[0,-4],[-3,-3],[-4,-1],[-9,0],[0,4],[4,3],[2,1],[0,2],[-1,2],[0,2],[-1,2],[-7,-5],[-4,5],[-4,11],[-2,14],[-2,-9],[0,-11],[0,-9],[-1,-6],[-16,-29],[-1,-1],[-5,-2],[-1,-3],[1,-4],[0,-4],[1,-2],[0,-3],[-2,-5],[-1,-2],[-7,-4],[2,-8],[-2,-6],[-3,-4],[-1,-5],[0,-8],[-1,-4],[-2,-1],[-3,4],[2,4],[-5,6],[-4,-9],[-2,-13],[4,-9],[0,-3],[-5,-1],[-10,-6],[-4,-4],[-3,-8],[-2,-3],[-19,1],[-5,2],[-3,11],[-2,2],[-2,-3],[-1,-6],[-1,-7],[-3,2],[-9,10],[-3,15],[-3,6],[-6,6],[-2,-5],[0,-8],[0,-4],[2,-4],[1,-8],[-2,-9],[-4,-4],[-2,6],[-4,6],[-2,1],[-2,0],[-2,1],[-1,6],[11,0],[0,5],[-2,5],[-1,9],[-1,19],[-2,11],[-5,3],[-3,-4],[3,-11],[-6,-21],[-4,4],[-3,1],[-3,-3],[-2,-5],[2,-2],[2,-3],[1,-3],[1,-5],[-10,9],[-4,6],[-3,10],[2,0],[2,2],[1,2],[1,4],[-12,8],[-4,6],[4,6],[0,4],[-5,7],[-3,8],[1,6],[7,3],[14,-4],[5,4],[4,17],[-7,-3],[-7,1],[-12,6],[-8,1],[-6,-5],[-11,-12],[4,-2],[3,-4],[2,-5],[2,-6],[-3,-13],[-1,-3],[4,-8],[2,-3],[2,-2],[0,-3],[-2,-2],[0,-2],[-1,-2],[-1,-2],[3,-2],[2,-3],[2,-3],[1,-5],[-6,-5],[-8,3],[-6,9],[1,14],[-3,-1],[-2,-2],[-2,-2],[-1,-3],[-8,3],[-15,-7],[-6,6],[-6,10],[-6,4],[-14,4],[-8,4],[-13,13],[-13,6],[-5,6],[-11,16],[5,-18],[3,-8],[3,-3],[5,-3],[3,-7],[2,-18],[9,8],[12,-5],[11,-12],[8,-12],[5,-4],[16,-7],[18,-18],[23,-10],[25,-14],[7,-1],[0,-7],[2,-5],[4,-9],[1,-4],[-3,-10],[-1,-6],[-2,-8],[-7,1],[-13,5],[0,-4],[6,-5],[3,-4],[2,-5],[-2,-5],[-4,1],[-7,6],[-5,-2],[-3,-4],[-3,-5],[-2,-2],[-4,0],[-5,-2],[-4,-4],[-3,-6],[4,-2],[11,-1],[4,-4],[2,-4],[3,-1],[5,4],[-2,1],[-1,2],[-1,2],[0,3],[4,5],[4,-17],[-1,-15],[-6,-11],[-9,-6],[2,-10],[-10,-12],[-12,-13],[-6,-8],[-5,-13],[-11,-7],[-12,-1],[-8,3],[-10,9],[-8,11],[-12,25],[-4,4],[-10,7],[-13,33],[-10,8],[12,-34],[0,-6],[6,-5],[4,-11],[6,-25],[10,-24],[12,-9],[12,-4],[14,-8],[9,-12],[2,-4],[1,-3],[1,-1],[2,1],[3,6],[7,5],[5,8],[5,9],[5,8],[5,7],[3,2],[3,-1],[3,-3],[2,-6],[2,-5],[0,-3],[5,-4],[6,-8],[5,-3],[-2,11],[-6,17],[0,8],[5,4],[4,0],[5,-1],[4,-5],[4,-10],[1,9],[0,8],[0,8],[0,7],[2,9],[3,11],[4,8],[1,-1],[1,-3],[2,-7],[1,-3],[-1,-5],[-1,-10],[0,-5],[5,-12],[1,-6],[-1,-3],[-7,-7],[-3,1],[-1,-2],[-2,-6],[0,-4],[1,-4],[1,-2],[2,-2],[4,1],[13,7],[2,-2],[3,11],[6,4],[6,0],[2,2],[-1,9],[-4,12],[-2,9],[8,-4],[4,-10],[4,-11],[7,-7],[0,-4],[-3,-4],[-4,-9],[-3,-4],[-4,0],[-4,2],[-2,-1],[-2,-9],[1,-6],[2,-3],[0,-5],[-3,-10],[-2,-3],[-11,-9],[0,3],[-2,6],[0,3],[-2,0],[-1,-4],[0,-10],[-1,-6],[-1,-6],[-2,-3],[-4,-7],[-10,-21],[-2,-3],[-2,-2],[-2,-2],[-1,-5],[0,-3],[1,-4],[0,-4],[-1,-5],[-3,-3],[-3,-2],[-6,1],[-6,3],[-5,8],[-1,9],[5,8],[-6,10],[-4,10],[-2,1],[-2,-50],[-3,-13],[-7,7],[-2,12],[-1,16],[-1,13],[-4,6],[-7,-2],[-6,-7],[-6,-9],[-5,-10],[5,1],[2,1],[3,2],[2,4],[6,-17],[2,-7],[-54,8],[-9,-11],[-40,-21],[-3,-3],[-3,-2],[-3,4],[0,6],[5,7],[-6,16],[-2,14],[0,2],[-5,1],[0,-8],[2,-10],[1,-3],[0,-11],[-2,-8],[-2,-7],[-3,-3],[-2,2],[-2,4],[-1,3],[-3,-1],[0,-3],[2,-11],[-1,-2],[-8,-8],[-15,-33],[-7,-8],[-4,-1],[-7,-9],[-5,-2],[-5,10],[-1,0],[-2,3],[-10,4],[4,8],[13,17],[2,11],[-2,6],[-10,24],[-5,7],[0,3],[5,1],[1,3],[-2,5],[-4,4],[-2,0],[-3,-1],[-3,1],[-3,8],[2,-31],[2,-10],[3,4],[4,-4],[2,-8],[2,-8],[0,-15],[-4,-7],[-5,-2],[-2,2],[-2,2],[-2,0],[-3,-3],[-1,-5],[1,-5],[2,-7],[3,-6],[3,-3],[5,-2],[4,-5],[2,-7],[-3,-6],[0,-4],[2,-2],[1,-2],[-3,-3],[-4,-2],[-15,-8],[-22,-22],[-37,-54],[-17,-36],[-15,-41],[-9,-14],[-4,-9],[-4,-19],[-6,-22],[-2,-10],[-5,-65],[-5,-32],[-9,-16],[2,11],[1,5],[-1,4],[0,4],[4,18],[-2,46],[2,17],[-5,23],[-5,26],[-2,0],[0,-16],[3,-43],[3,-14],[-2,-8],[0,-10],[0,-20],[-1,-8],[-5,-22],[-10,-28],[-3,-5],[-4,-3],[-5,1],[-25,13],[-5,1],[-15,-1],[-4,3],[-7,3],[-23,-9],[-9,4],[1,4],[1,5],[-2,11],[-2,0],[-3,-17],[-6,-7],[-18,-8],[-24,-17],[2,7],[2,2],[0,4],[-16,-9],[0,-4],[3,0],[2,-3],[2,-4],[1,-5],[-12,-1],[-11,-9],[-30,-31],[-29,-44],[-19,-37],[-26,-64],[-29,-69],[-6,-25],[2,-4],[-2,-6],[-7,-69],[-1,-14],[-1,0],[-3,8],[0,22],[-1,11],[-3,8],[-4,3],[-11,0],[-1,7],[2,13],[7,28],[10,21],[4,5],[0,4],[-7,-6],[-5,-9],[-13,-32],[-3,-11],[-2,-13],[-1,-12],[2,-12],[6,-9],[6,-7],[10,-5],[1,-5],[-1,-6],[1,-7],[2,-11],[1,-3],[4,-2],[-3,-5],[-4,-5],[-4,-6],[-2,-9],[-2,4],[-2,11],[-3,2],[-3,-3],[-1,-6],[2,-6],[3,-6],[-1,-3],[-1,-2],[-2,-2],[-1,-1],[-2,10],[-5,6],[-7,3],[-5,1],[3,-8],[6,-3],[5,-4],[-1,-13],[-4,-8],[-12,-10],[-6,-8],[-2,-11],[0,-10],[-2,-7],[-7,-3],[-7,-1],[-6,-2],[-5,-4],[-4,-5],[-1,6],[-4,12],[-1,4],[-2,7],[-5,-3],[-9,-10],[-4,-3],[-4,-8],[-7,-27],[0,-7],[1,-6],[4,-10],[1,5],[2,3],[3,3],[3,1],[-2,-9],[-2,-4],[-14,-14],[-2,-1],[-2,-2],[-2,-4],[0,-4],[-2,-2],[-7,-5],[-6,-12],[-4,-13],[-5,-11],[-15,-16],[-8,-6],[-6,-2],[-3,3],[-3,7],[-3,7],[-4,3],[-2,5],[2,9],[6,15],[-5,8],[-1,-2],[-2,-4],[0,-4],[0,-2],[-9,11],[-2,-1],[1,-8],[2,-15],[1,-10],[-1,-8],[-3,0],[-4,4],[-4,6],[1,-8],[3,-8],[4,-6],[10,-4],[3,-4],[1,-6],[4,-4],[1,0],[0,4],[2,0],[-1,-18],[-4,-12],[-16,-21],[-3,-2],[-7,0],[-7,2],[-3,1],[-3,-3],[0,-4],[7,-8],[2,-6],[-3,-4],[-15,-5],[-12,-8],[-6,-1],[-7,-4],[-4,-7],[-4,-2],[-6,11],[-9,17],[-5,6],[-4,-1],[3,-8],[13,-21],[1,-1],[1,-1],[-1,-5],[-2,-6],[-3,-3],[-3,-2],[-20,-27],[-3,-2],[-2,-3],[-3,-1],[-3,5],[-2,6],[0,7],[-1,6],[-4,3],[1,-9],[-1,-11],[-3,-9],[-4,-3],[-4,1],[-3,5],[-2,5],[-5,5],[-5,2],[-4,0],[-3,2],[-10,16],[-2,5],[-2,8],[-2,0],[-1,-7],[1,-7],[2,-6],[1,-5],[-6,-2],[-20,6],[-9,0],[-3,-3],[-2,-6],[0,-8],[5,5],[25,-8],[3,0],[5,3],[3,0],[4,-1],[7,-7],[4,-3],[0,-5],[-8,1],[-8,-1],[-8,-3],[-7,-5],[26,-4],[7,-5],[3,-11],[-1,-11],[-12,-9],[-7,-9],[-5,-10],[1,-6],[5,1],[7,6],[7,8],[3,6],[5,7],[2,4],[1,5],[2,0],[-1,-11],[-2,-15],[-3,-9],[-4,3],[-1,0],[0,-4],[-1,0],[-1,-1],[5,-6],[-3,-8],[-23,-26],[-3,-1],[-5,1],[-2,0],[-10,-10],[-3,3],[-2,15],[0,16],[4,37],[-10,-8],[-2,3],[6,42],[-2,11],[-7,1],[0,-5],[1,-1],[1,0],[1,1],[1,-2],[1,-2],[-2,-6],[-2,-8],[0,-41],[1,-4],[3,-10],[0,-6],[-1,-11],[-3,-1],[-4,4],[-18,30],[-7,33],[-4,22],[0,12],[4,11],[-1,3],[-3,1],[-5,4],[-2,7],[-1,8],[-3,5],[-5,0],[0,-4],[3,-5],[4,-17],[3,-6],[0,-4],[-3,-14],[4,-21],[5,-22],[3,-15],[-3,-14],[0,-8],[4,-4],[2,-4],[9,-28],[5,4],[4,-2],[3,-5],[3,-6],[3,-11],[0,-6],[-7,-15],[-9,-22],[-23,-26],[2,21],[10,37],[-1,22],[-2,-5],[-1,-7],[0,-8],[-1,-8],[-2,-6],[-6,-12],[-2,-4],[-1,-15],[-2,-11],[-13,-27],[-2,-7],[0,-7],[1,-8],[0,-1],[3,-3],[4,0],[5,-2],[3,-12],[-5,-12],[-13,-19],[-3,3],[-2,6],[-1,5],[0,2],[-4,0],[-2,-5],[-1,-4],[-2,-3],[-2,-5],[0,-11],[4,-10],[7,-2],[-10,-18],[-6,-8],[-4,-1],[-5,6],[-12,5],[-5,3],[-2,5],[-1,7],[-3,5],[-3,0],[-3,-5],[2,-6],[5,-8],[1,-5],[-11,-5],[-4,-7],[15,-5],[2,-2],[6,-10],[4,1],[2,-1],[-3,-8],[-3,-15],[-9,-20],[-4,-7],[-3,-3],[-15,0],[-9,2],[-7,8],[-3,5],[-4,4],[-3,2],[-2,-4],[1,-9],[4,-4],[8,-4],[8,-12],[-1,-10],[-11,-22],[-3,-9],[-2,-9],[-12,-37],[-5,-3],[-3,-8],[-1,-4],[4,-13],[-2,-12],[0,-3],[0,-3],[0,-4],[-1,-11],[-10,-17],[1,-13],[4,-16],[4,-13],[2,-11],[-3,-4],[-25,6],[-6,5],[-6,7],[-3,1],[-3,-4],[7,-12],[11,-8],[13,-6],[10,-2],[5,-3],[12,-16],[4,-8],[0,-9],[-2,-14],[-3,-9],[-6,6],[-10,-30],[-6,-16],[-5,-7],[-7,1],[-2,4],[-1,6],[1,28],[-2,7],[-6,-1],[-3,-7],[0,-9],[2,-23],[1,-12],[-2,-8],[-10,9],[-2,-4],[1,-7],[8,-7],[6,-12],[3,-5],[0,12],[2,6],[6,10],[-1,-16],[-5,-41],[-2,0],[-3,12],[-6,13],[-7,11],[-7,5],[4,-11],[11,-22],[3,-10],[-2,-12],[-5,-5],[-13,-5],[0,-5],[6,-5],[10,1],[4,-3],[-4,-9],[-8,-18],[-2,-8],[0,-3],[-2,-8],[0,-3],[1,-5],[2,-4],[1,-4],[0,-7],[-3,2],[-2,1],[-3,1],[-3,0],[0,-4],[4,-3],[1,-6],[0,-8],[0,-8],[1,-5],[4,-8],[1,-7],[-1,-13],[-2,-15],[1,-7],[0,-5],[7,-5],[1,1],[4,3],[2,0],[2,-1],[1,-3],[0,-2],[1,-2],[2,-4],[-1,-10],[-2,-16],[-1,-50],[1,-18],[-4,7],[-3,8],[0,11],[0,13],[-1,6],[-1,6],[-3,5],[-2,2],[-3,-2],[0,-5],[0,-13],[-1,-11],[1,-10],[2,-9],[5,-3],[0,-2],[7,-12],[2,-5],[2,-9],[1,-4],[2,-4],[1,-1],[1,-2],[2,-6],[1,-7],[-1,-19],[1,-4],[2,-3],[2,-4],[1,-5],[-2,-27],[0,-24],[9,-65],[2,-11],[8,-70],[11,-75],[-2,-19],[2,0],[2,4],[2,-6],[0,-8],[2,-14],[1,-8],[2,-30],[1,-11],[3,-19],[4,-17],[4,-25],[6,-25],[1,-13],[2,-10],[11,-48],[19,-84],[18,-76],[12,-49],[9,-30],[4,-8],[-2,-12],[4,-6],[5,-7],[2,-11],[2,-11],[37,-119],[18,-54],[14,-39],[17,-55],[7,-39],[4,-11],[-4,-13],[-5,-11],[-2,-1],[-1,-3],[-1,-5],[-2,-4],[-3,-2],[-1,-3],[0,-58],[-2,-8],[2,-4],[0,-13],[1,-32],[6,-60],[4,-17],[1,-10],[6,-25],[22,-65],[0,-25],[-6,24],[-1,6],[-1,4],[-9,18],[-2,21],[-17,56],[-8,47],[-3,25],[1,102],[8,75],[0,24],[-2,23],[-1,9],[-3,6],[-4,3],[-5,-1],[-1,1],[-1,2],[-2,1],[-2,0],[0,-2],[0,-9],[0,-2],[-3,-2],[-2,0],[-18,6],[-5,4],[-4,9],[-1,9],[0,11],[1,12],[2,8],[2,-3],[2,8],[2,13],[0,10],[-12,8],[-10,16],[-5,5],[4,-54],[4,-15],[0,-4],[-3,-4],[9,-31],[1,-12],[1,-24],[7,-57],[2,-12],[5,-34],[9,-32],[2,-14],[44,-186],[45,-187],[10,-90],[41,-188],[0,-10],[-3,12],[-3,5],[-11,6],[-6,6],[-2,3],[-2,3],[-2,3],[-4,-1],[2,-5],[7,-15],[2,-2],[4,-5],[3,-2],[6,4],[2,1],[11,-23],[1,-7],[8,-8],[2,-9],[1,-9],[7,-26],[5,-32],[6,-21],[0,-7],[-2,-7],[-3,-2],[-3,0],[-3,-4],[0,-3],[3,-3],[6,-4],[3,-4],[2,-6],[7,-56],[0,-16],[-4,-9],[0,-4],[3,-10],[2,-18],[1,-76],[-2,-17],[-4,-1],[-3,-80],[-2,-19],[-1,-8],[0,-21],[0,-10],[-2,-8],[1,-13],[-7,-88],[-3,-18],[-4,-6],[0,-5],[4,-13],[-4,-174],[-2,0],[0,25],[2,27],[0,15],[-1,8],[-3,0],[-10,-26],[-1,-21],[-4,-16],[0,-25],[-4,-11],[-3,-2],[-3,0],[-2,-1],[-3,-5],[-1,-6],[-1,-14],[-6,-25],[-8,-16],[-1,-11],[0,-29],[-2,-10],[-4,-13],[-3,-11],[0,-11],[1,-12],[1,-4],[2,-2],[1,-3],[-2,-8],[-2,-12],[2,-4],[3,-4],[3,-5],[-1,-7],[-10,-17],[-12,-28],[-2,-4],[0,-6],[-1,-5],[-5,-10],[0,-7],[-1,-12],[3,-8],[4,-7],[0,-6],[-4,7],[-6,15],[-4,3],[0,9],[-4,-1],[-6,-5],[-3,-7],[6,-2],[5,-5],[3,-9],[1,-12],[-2,0],[-1,13],[-4,7],[-5,2],[-5,-6],[-1,4],[-1,3],[-2,3],[-2,2],[1,3],[1,3],[1,1],[3,1],[0,3],[-1,1],[-1,4],[-3,-1],[-12,0],[-4,-3],[-3,-10],[-1,-12],[-3,-9],[-4,3],[1,1],[1,3],[-10,-5],[-2,-1],[1,-6],[1,-4],[0,-4],[-2,-5],[-2,0],[-4,5],[-3,-3],[-6,-10],[-3,-1],[-5,0],[-4,3],[-3,6],[-1,-2],[0,-1],[-1,-2],[0,-3],[-2,2],[-1,1],[-1,2],[-2,3],[-1,-4],[-1,-2],[-1,0],[-3,2],[0,4],[1,5],[-8,4],[-4,7],[-8,-10],[-1,0],[-6,-14],[-5,-2],[-11,0],[-9,-4],[-11,-2],[-13,-6],[-5,2],[-13,24],[-4,19],[-3,18],[0,18],[3,24],[5,19],[5,8],[-2,-8],[3,-2],[4,-4],[2,-5],[2,-5],[5,-18],[1,-1],[4,-4],[21,-18],[0,-4],[-2,-1],[-2,-2],[-2,-1],[0,-4],[5,-4],[6,0],[6,3],[5,7],[3,13],[-2,10],[-16,33],[-5,5],[-10,3],[-5,6],[-1,1],[-11,4],[-13,20],[-2,6],[0,6],[-1,13],[-1,5],[-4,23],[-9,20],[-3,11],[5,7],[2,4],[1,5],[0,4],[-3,2],[-6,-3],[-4,3],[-1,5],[-3,27],[-5,21],[0,8],[-3,5],[-1,6],[0,11],[-9,1],[-3,1],[-1,5],[-4,16],[-1,3],[-4,3],[3,7],[7,11],[-2,4],[-5,16],[-7,11],[-6,9],[-4,3],[-8,3],[-3,3],[-4,5],[-3,10],[-3,5],[-4,-8],[-3,3],[-3,6],[-6,4],[-4,6],[-2,1],[-1,-1],[-3,-5],[-3,-2],[2,5],[0,1],[-1,2],[-1,3],[-2,-1],[-3,2],[-3,5],[-1,7],[-3,-4],[-2,-8],[-3,-4],[-3,-1],[-4,1],[-2,3],[-2,5],[-1,-3],[-1,-5],[-1,-1],[-1,-3],[0,-4],[-2,0],[-2,1],[-1,1],[-3,6],[-1,5],[-2,17],[4,3],[4,-4],[3,-6],[3,-3],[2,3],[3,6],[2,8],[1,7],[-4,0],[-6,-1],[-3,1],[-3,5],[-3,7],[0,7],[2,5],[-8,12],[-4,15],[-5,43],[-1,-6],[-1,-6],[0,-6],[0,-6],[-2,0],[-5,42],[-2,47],[2,20],[0,4],[-1,2],[-8,29],[-1,10],[2,0],[0,-4],[2,0],[-1,37],[-1,11],[-2,9],[-6,19],[-1,9],[0,-9],[1,-15],[-1,-5],[-2,-1],[-2,1],[-1,3],[-1,2],[-6,0],[-15,16],[-4,-4],[-1,1],[-1,3],[-2,-5],[0,6],[-1,9],[1,9],[2,5],[1,0],[2,-7],[2,-1],[2,1],[1,2],[1,3],[8,9],[7,14],[6,16],[-1,15],[3,8],[12,23],[1,5],[2,6],[4,2],[2,-3],[3,4],[2,4],[2,6],[1,7],[-4,-3],[-7,-8],[-5,-1],[-5,-4],[-5,-9],[-9,-18],[-3,-10],[-9,-46],[-1,-3],[-2,-2],[-6,-4],[-3,-2],[0,8],[-6,-4],[-3,-5],[-4,0],[-4,9],[-3,10],[1,8],[1,8],[1,14],[-2,11],[-5,21],[-1,9],[0,13],[7,69],[1,13],[-1,15],[-2,5],[-4,4],[-5,9],[0,8],[5,8],[14,16],[6,2],[3,3],[1,4],[4,18],[-5,-3],[-6,-11],[-11,-4],[-5,-4],[-5,-2],[-6,4],[-1,-10],[-4,-2],[-3,-1],[-2,-5],[-1,-2],[-3,5],[-5,11],[1,10],[-3,-2],[-5,-4],[-4,2],[-5,18],[-3,7],[-6,5],[1,-5],[3,-11],[8,-19],[3,-5],[2,4],[3,-7],[4,-18],[2,-4],[1,-4],[5,-22],[2,-26],[0,-9],[-2,-8],[-2,-2],[-1,16],[-2,7],[-1,-2],[-1,-5],[-2,-4],[-2,-2],[-1,1],[-3,6],[-1,1],[-1,0],[0,-2],[-1,-1],[-2,-1],[-2,1],[-2,5],[-2,3],[-4,3],[-2,0],[-3,0],[-8,11],[-8,51],[-8,16],[1,-10],[4,-14],[1,-9],[-3,4],[-2,2],[-1,2],[-2,12],[-25,96],[-3,21],[-6,24],[-2,14],[2,-7],[1,-3],[1,-3],[0,10],[-1,9],[-2,6],[-3,4],[0,-8],[-2,0],[-3,13],[-5,11],[-3,12],[0,13],[1,-2],[1,-1],[1,-2],[1,-4],[2,0],[-1,15],[-5,23],[-3,28],[-4,8],[-6,5],[-10,16],[-11,3],[-4,4],[-3,8],[-6,27],[-1,10],[2,0],[5,-20],[1,-5],[3,-4],[7,-6],[3,-6],[2,4],[2,5],[0,5],[0,6],[-2,0],[-2,-2],[-2,0],[-2,3],[-1,3],[4,11],[7,-4],[7,-7],[6,0],[-3,5],[-3,4],[-3,2],[-4,2],[4,4],[8,4],[4,6],[2,7],[-4,-2],[-4,-2],[-1,-1],[-5,-4],[1,5],[1,2],[1,-1],[2,-1],[1,0],[3,7],[0,2],[-2,6],[6,7],[3,11],[2,12],[4,12],[7,12],[1,5],[1,7],[2,3],[3,1],[2,3],[4,16],[2,4],[7,11],[2,6],[9,19],[3,9],[-1,13],[-6,25],[-2,25],[-4,7],[-4,1],[-6,-6],[-3,-8],[-1,-9],[0,-22],[2,-8],[0,-6],[-1,-6],[-10,1],[-2,1],[-4,11],[0,15],[1,29],[-1,15],[-5,7],[-8,3],[-8,1],[0,4],[5,4],[0,5],[-7,8],[-4,5],[-2,6],[-2,0],[0,-1],[0,-7],[-11,21],[1,-5],[2,-9],[1,-5],[-1,-4],[-1,-7],[0,-2],[-2,-5],[0,-3],[3,-1],[10,0],[-4,-7],[-12,-7],[-5,-10],[11,-8],[10,-12],[11,-8],[12,3],[-3,-3],[-9,-10],[1,-7],[1,-13],[0,-7],[-1,-6],[-4,-9],[0,-3],[-1,-4],[-3,-18],[2,-10],[-1,-11],[-3,-8],[-5,-4],[-5,0],[-2,1],[-1,3],[-1,5],[0,13],[0,2],[-6,2],[-3,4],[-5,14],[-5,11],[-11,16],[-5,10],[-2,-8],[3,-8],[16,-34],[4,-11],[4,-20],[2,-14],[-1,-7],[-3,2],[-3,10],[-3,13],[0,10],[-4,20],[-17,31],[-4,14],[-1,8],[-2,17],[-1,12],[1,10],[3,11],[3,8],[3,5],[-3,-8],[-2,-10],[-1,-10],[2,-9],[9,48],[6,54],[1,16],[0,7],[3,5],[-3,9],[-1,9],[-2,15],[0,8],[0,11],[2,8],[2,-3],[4,8],[2,8],[2,16],[6,17],[2,8],[-1,8],[-1,-2],[-1,-1],[-2,-1],[10,50],[4,7],[0,4],[-1,4],[6,20],[1,32],[0,7],[3,18],[1,51],[3,10],[-1,4],[-1,5],[0,5],[1,5],[2,5],[0,4],[0,4],[-1,6],[0,21],[-1,5],[-2,1],[-2,0],[-1,2],[-1,8],[-6,13],[0,5],[4,9],[4,-4],[7,-17],[-2,18],[0,6],[2,29],[-1,8],[-3,8],[-2,1],[-5,2],[-2,1],[-2,3],[-12,28],[-1,10],[1,12],[-3,0],[-3,3],[-2,5],[2,6],[0,6],[0,18],[1,2],[-11,16],[-3,10],[6,7],[-5,4],[-2,7],[-1,10],[0,11],[-5,-5],[-2,-3],[-2,4],[-3,5],[-1,4],[-5,-8],[-7,1],[-6,5],[-5,5],[-3,-1],[-8,-1],[-4,-1],[-5,-4],[-2,0],[-3,-1],[-5,4],[-1,7],[-1,6],[-1,4],[-4,1],[-2,4],[0,6],[3,5],[-2,5],[-2,9],[-2,7],[-4,3],[-5,2],[-5,4],[-4,5],[-3,6],[-1,3],[0,6],[-1,13],[0,1],[-5,17],[-9,22],[-4,10],[-6,9],[-7,-2],[-8,11],[-14,31],[-3,-1],[-3,4],[-7,10],[1,5],[0,9],[-1,8],[-2,6],[3,7],[2,11],[0,14],[-1,13],[-3,7],[-5,3],[-6,1],[-5,5],[-3,3],[-3,6],[-2,3],[-9,8],[-5,7],[-5,11],[-4,11],[-2,10],[0,6],[-1,14],[-2,6],[-2,4],[-3,3],[-1,3],[-2,13],[-11,20],[-2,8],[-3,5],[-12,18],[-3,3],[-5,2],[-4,6],[-6,12],[-6,-3],[-13,11],[-26,30],[-20,31],[-6,-1],[-9,-7],[-20,-3],[-5,-7],[-3,-2],[-2,5],[-1,8],[-2,3],[-1,1],[0,1],[-1,2],[-2,1],[-1,-2],[-2,-5],[-2,-2],[-5,0],[0,1],[-1,2],[-2,1],[-1,0],[-3,-4],[-2,-7],[-1,-6],[-1,-3],[-9,1],[-3,-1],[-10,-10],[-2,-5],[0,-9],[-1,1],[-1,1],[-1,2],[-2,-4],[1,-5],[0,-2],[0,-1],[-1,-4],[1,-4],[1,-5],[1,2],[2,4],[0,3],[2,-6],[6,-12],[-1,-3],[-4,2],[-7,5],[-9,5],[-5,7],[-5,2],[-3,-9],[4,-1],[1,-5],[1,-7],[2,-3],[18,-4],[8,-5],[2,-13],[-4,-14],[-7,-9],[2,7],[1,2],[0,3],[-10,7],[-12,2],[-5,-2],[-5,-3],[-5,-1],[-3,6],[-15,-17],[-11,-17],[-14,-7],[-8,-11],[-14,-25],[-4,-4],[-7,-2],[-5,-2],[-6,-9],[-5,-5],[-5,-2],[-4,-4],[-4,-7],[-3,-2],[-1,11],[1,4],[8,25],[-4,4],[-4,-3],[-3,-5],[-5,-3],[-3,-4],[-5,-15],[-7,-2],[-6,-16],[-4,-4],[-22,4],[-11,-1],[-32,-19],[-6,0],[-7,2],[-6,1],[-11,-9],[-5,4],[-5,9],[-2,9],[-5,50],[-1,30],[4,13],[1,-6],[-1,-40],[1,-14],[2,-13],[3,-13],[7,-20],[2,-3],[4,0],[3,2],[3,6],[2,5],[-1,3],[-1,7],[2,41],[-3,13],[-9,22],[-2,8],[-1,11],[-4,11],[-5,10],[-5,7],[-32,27],[-8,14],[-1,3],[-1,4],[-1,4],[-1,5],[2,0],[4,-10],[5,-11],[7,-7],[5,-1],[-35,54],[-4,3],[-14,26],[-2,7],[2,1],[17,-6],[0,-11],[18,-10],[5,-9],[4,-12],[10,-13],[10,-8],[4,5],[2,4],[5,3],[3,3],[-1,6],[-2,2],[-5,-1],[-2,1],[-1,2],[0,4],[0,1],[-3,-3],[-3,-13],[-3,-5],[-4,4],[-2,10],[0,20],[-1,9],[-5,-5],[-2,5],[1,9],[4,7],[0,3],[-5,0],[-4,-4],[-5,-3],[-5,4],[0,-4],[0,-3],[-1,-2],[-1,-3],[-3,6],[-6,7],[-7,5],[-5,-3],[-2,7],[-2,4],[-10,9],[-2,3],[-2,4],[-3,6],[6,6],[12,27],[4,2],[7,-5],[11,24],[6,-1],[-3,14],[-3,7],[-2,3],[-3,-4],[-7,-22],[-5,-6],[-1,8],[-3,-1],[-4,-4],[-4,-3],[-3,-3],[-2,-7],[-2,-5],[-4,2],[1,11],[-3,8],[-4,10],[-3,12],[-3,-10],[-3,-5],[-9,-1],[-5,-3],[-5,-5],[-3,-8],[2,-10],[5,-7],[3,0],[3,3],[6,2],[6,-2],[3,-6],[2,-6],[4,-7],[-4,-11],[2,-7],[5,-6],[4,-8],[-2,-9],[-3,7],[-2,-1],[1,-4],[2,-5],[-6,3],[-34,45],[-23,22],[-32,31],[-36,20],[-47,25],[-34,7],[-7,9],[0,2],[1,2],[4,-3],[22,-1],[18,-8],[4,3],[2,7],[1,8],[2,6],[1,1],[1,-1],[1,-7],[2,-6],[3,-5],[13,-6],[1,2],[2,4],[1,4],[-1,2],[-5,1],[-3,4],[-1,4],[4,3],[4,-1],[4,-4],[7,-11],[14,-7],[2,-3],[5,-7],[3,4],[0,8],[-2,5],[0,3],[-9,17],[-1,9],[1,3],[2,3],[0,9],[-7,-6],[-5,-2],[-3,5],[-4,16],[-4,-7],[-6,-1],[-12,4],[-5,-2],[-12,-5],[-5,-2],[-4,-3],[-4,-5],[-4,-5],[-5,1],[-3,8],[1,9],[6,16],[-6,0],[-3,-1],[-2,-3],[-2,-7],[-3,1],[-2,6],[-3,7],[0,-6],[2,-15],[-1,-5],[-3,-4],[-3,-3],[-4,-2],[-3,-1],[-3,-1],[-3,-9],[-4,-2],[-6,2],[0,-3],[0,-9],[-3,-4],[-22,2],[-23,-4],[-6,4],[-6,-6],[-8,-2],[-15,0],[-43,-11],[-28,-14],[-14,-4],[1,7],[2,3],[2,1],[11,9],[16,8],[16,0],[5,2],[18,27],[3,-2],[6,-6],[4,-2],[0,6],[-3,7],[-6,6],[-6,3],[-5,1],[-3,2],[-3,12],[-2,2],[-2,0],[-2,1],[-2,3],[0,6],[1,8],[5,7],[9,7],[0,3],[-1,2],[-1,4],[-5,-7],[-3,8],[-3,12],[-6,7],[2,-11],[0,-6],[-1,-4],[-6,-32],[-4,-14],[-2,-20],[-2,-7],[-5,0],[-1,7],[0,10],[2,8],[-2,8],[-1,10],[-2,9],[-6,1],[0,3],[1,7],[0,2],[-4,2],[-2,5],[-2,6],[-3,4],[-4,-2],[-1,-6],[1,-19],[1,-7],[5,-15],[2,-11],[-1,-7],[-7,-23],[-2,0],[0,2],[-1,0],[-1,2],[-2,-14],[-5,-3],[-7,-1],[-5,-6],[-1,-6],[1,-15],[-1,-5],[-2,-3],[-7,-2],[-3,-2],[1,-10],[-6,-6],[-40,-15],[-5,-5],[-2,1],[-6,-3],[-3,-2],[0,4],[3,2],[2,4],[2,3],[2,3],[4,2],[10,3],[-5,4],[-5,3],[4,3],[6,-1],[4,2],[3,4],[2,6],[0,6],[-3,5],[0,4],[8,18],[5,7],[7,3],[2,3],[0,8],[-1,8],[-3,5],[-2,2],[-5,-2],[-3,2],[-2,3],[-6,7],[0,-3],[2,-6],[2,-4],[2,-3],[3,-4],[-2,0],[0,-5],[-12,-21],[-3,-10],[-2,-10],[-4,-7],[-6,-3],[-5,-4],[-2,-7],[-3,-7],[-7,-3],[-4,2],[-1,2],[-1,3],[-1,5],[-5,9],[-1,3],[-2,0],[1,-9],[2,-7],[1,-6],[-2,-10],[3,0],[3,0],[3,2],[2,3],[-7,-23],[-18,-14],[-36,-9],[-35,0],[-24,-7],[-9,0],[3,6],[6,5],[11,4],[3,3],[1,4],[2,2],[6,-10],[11,-4],[10,6],[13,7],[8,10],[-4,20],[-13,22],[-2,8],[1,6],[2,13],[0,5],[-3,4],[-1,0],[-1,-2],[-3,-9],[0,-3],[0,-1],[-4,1],[-4,1],[-2,2],[-3,3],[-2,4],[-2,5],[-2,6],[0,6],[-1,7],[0,7],[-2,7],[-2,5],[-1,3],[0,10],[3,12],[3,10],[2,7],[1,9],[-1,12],[-9,45],[-3,7],[-6,6],[-3,1],[-3,0],[-2,2],[-1,7],[0,9],[0,7],[-2,6],[-4,1],[2,-8],[0,-9],[-2,-7],[-4,-5],[2,-8],[-2,-6],[-2,-6],[-2,-10],[0,-12],[-1,-8],[-2,-6],[-3,-7],[-1,-4],[0,-5],[0,-11],[-1,-5],[-2,-6],[-1,-5],[-1,-10],[-2,-20],[-1,-11],[1,-24],[-3,-44],[-2,-7],[-3,-4],[-1,2],[-1,4],[0,2],[-6,0],[-5,1],[-3,2],[0,5],[2,13],[-8,6],[-17,7],[-7,7],[-1,-5],[0,-2],[-1,-2],[0,-3],[-2,0],[-5,13],[-5,0],[-7,-6],[-7,-3],[-1,-3],[0,-7],[0,-7],[-3,-3],[-3,-1],[-2,-4],[-1,-4],[-2,-4],[-6,-5],[-5,4],[-5,6],[-8,3],[-3,0],[-4,1],[-2,4],[-2,12],[-4,5],[-1,7],[-2,0],[-5,-15],[-13,-9],[-13,-2],[-9,2],[-29,40],[-22,12],[-7,-6],[-4,-2],[-5,0],[0,-4],[35,-8],[-5,-8],[-9,-1],[-17,1],[-4,-2],[-8,-8],[-4,-2],[-5,-1],[-19,-12],[-18,-9],[-17,-10],[-4,-1],[-5,2],[0,5],[2,5],[4,4],[-5,5],[-9,13],[-6,3],[-3,-3],[-3,-5],[-3,-6],[0,-4],[2,-2],[7,-1],[1,-2],[0,-11],[-1,-7],[-2,-6],[-25,-26],[2,-8],[-2,-6],[-4,-11],[-1,-6],[0,-5],[-1,-5],[-4,-4],[-2,4],[2,3],[-1,2],[-3,3],[-2,-5],[-4,-3],[-4,0],[-3,4],[-2,0],[-1,-2],[-2,-7],[-9,-10],[-8,-5],[-5,8],[3,0],[2,1],[3,3],[-3,7],[-4,-1],[-4,-4],[-5,-2],[-9,3],[-5,0],[-4,-3],[-2,2],[-6,4],[-2,2],[-1,5],[0,4],[1,4],[0,5],[-2,11],[-5,1],[-10,-6],[-6,1],[-10,16],[-6,4],[-3,-1],[-5,-3],[-3,0],[-13,4],[-2,6],[-6,23],[-1,5],[-3,2],[-13,20],[-10,8],[-13,7],[-13,4],[-9,-2],[-6,-9],[-7,-12],[-10,-28],[-7,-17],[-21,-34],[-6,-18],[-2,-27],[6,-22],[9,-15],[12,-9],[20,-3],[10,-12],[17,-9],[6,-1],[12,7],[18,3],[6,3],[6,4],[19,26],[8,16],[5,19],[6,-2],[3,-4],[0,-9],[2,-6],[4,-5],[4,-4],[4,-3],[2,0],[1,2],[1,5],[6,15],[2,7],[2,8],[1,8],[2,0],[2,-8],[-3,-7],[-3,-16],[-2,-5],[1,-2],[1,-1],[1,-3],[1,-3],[4,14],[0,2],[2,1],[4,-2],[1,1],[4,5],[2,3],[0,5],[0,3],[-2,1],[-1,-1],[0,-3],[-2,0],[-2,1],[-1,3],[1,4],[7,4],[4,-3],[5,-10],[3,-4],[-4,-10],[-4,-6],[-3,-7],[-1,-15],[-8,-5],[-2,-3],[-1,-6],[1,-6],[0,-5],[-3,-5],[-5,9],[-7,6],[-8,0],[-6,-5],[-3,-9],[-2,-9],[0,-10],[2,-11],[3,-11],[3,-6],[5,-2],[8,-1],[4,3],[9,8],[3,-3],[-1,-4],[-4,-9],[-1,-7],[7,-14],[5,-9],[6,-5],[6,0],[6,3],[5,6],[4,11],[4,13],[1,13],[0,21],[1,8],[4,6],[3,2],[6,3],[3,3],[2,3],[1,4],[1,4],[1,5],[1,3],[0,8],[0,3],[2,2],[2,-1],[1,-3],[4,-1],[6,-5],[2,-2],[0,-4],[-2,0],[0,-4],[1,-2],[1,-2],[2,0],[1,3],[6,8],[2,1],[4,-3],[2,-3],[-1,-5],[-3,-5],[-4,-2],[-8,2],[-3,-4],[-2,-6],[1,-5],[1,-5],[0,-5],[-2,-4],[-3,-2],[-1,-2],[4,-4],[3,0],[8,2],[4,-2],[5,-11],[-4,-9],[-5,-2],[-2,10],[-7,-8],[0,-4],[4,-10],[2,-3],[-1,0],[1,0],[0,-3],[1,0],[2,4],[3,5],[3,2],[3,-1],[1,-6],[-2,-6],[-6,-7],[0,-4],[4,2],[2,2],[2,4],[2,-2],[7,-6],[-5,-6],[-2,-2],[1,-2],[1,-1],[1,-2],[1,-3],[-4,-1],[-3,-3],[-2,-4],[-1,-4],[2,-6],[2,-8],[2,-6],[4,-4],[-3,0],[-7,3],[-2,0],[-2,-4],[-3,-11],[-2,-4],[0,4],[1,8],[0,4],[-3,0],[-2,4],[-3,10],[-2,4],[-3,4],[-4,2],[-4,0],[2,-10],[-3,-8],[-4,-6],[-4,-8],[-3,-11],[-1,-2],[-4,-3],[-2,-1],[-7,2],[-2,-1],[-5,-10],[0,-11],[2,-10],[3,-6],[5,-2],[7,1],[5,0],[4,-7],[-2,0],[-2,0],[-1,0],[-1,0],[4,-5],[9,-16],[0,-4],[-4,1],[-4,5],[-4,6],[-3,5],[-8,3],[-8,1],[-8,3],[-13,16],[-9,5],[3,-6],[7,-8],[4,-6],[-1,-1],[-3,-3],[6,-4],[0,-3],[0,-1],[0,-3],[7,-14],[-5,-4],[-23,12],[-10,-4],[7,-3],[3,-3],[2,-6],[-3,0],[-1,0],[2,-7],[8,-17],[1,-7],[2,-14],[1,-5],[3,-4],[7,-5],[7,-8],[7,2],[4,-3],[-1,-2],[0,-1],[-1,-2],[4,-3],[8,-8],[5,-1],[0,-4],[-3,-8],[-1,-8],[2,-5],[4,4],[-1,-9],[-2,-4],[-3,-1],[-2,-1],[2,-7],[3,-2],[3,-1],[17,7],[6,0],[6,-6],[0,-2],[3,1],[2,0],[2,-3],[2,0],[2,3],[3,1],[3,-1],[4,-1],[0,-3],[-2,-2],[-2,-1],[-3,0],[-3,-2],[-2,-4],[0,-4],[1,-2],[2,-1],[4,-6],[3,-1],[3,0],[4,3],[6,2],[2,1],[2,1],[3,-3],[2,-5],[1,-11],[1,-4],[4,-2],[4,4],[5,7],[2,11],[2,0],[0,-1],[0,-1],[1,-2],[1,0],[0,-4],[0,-5],[0,-7],[3,2],[1,2],[2,-6],[1,-3],[2,-5],[1,-7],[3,3],[1,2],[2,-7],[1,-6],[1,-5],[3,-3],[-1,-5],[-3,-3],[-2,-2],[-3,-2],[0,-4],[11,-6],[2,-7],[3,-5],[5,-2],[3,0],[0,2],[-1,6],[4,1],[5,-1],[3,-4],[3,-8],[-6,0],[0,-5],[3,0],[1,-2],[2,-6],[-6,4],[-2,-2],[-2,-6],[-2,0],[0,4],[0,5],[0,3],[-4,-2],[-5,-6],[-3,-9],[-1,-7],[3,1],[18,-1],[-8,-29],[-3,-7],[-1,9],[-1,7],[-3,3],[-5,1],[2,-5],[1,-6],[1,-7],[0,-7],[-3,5],[-2,3],[-1,5],[-1,-8],[-4,-8],[-7,-15],[-1,-10],[5,-20],[-3,-4],[-3,4],[-9,20],[-1,6],[-2,7],[-7,23],[-2,5],[-3,4],[-1,0],[-1,-6],[1,-6],[0,-4],[1,-4],[-2,-5],[-4,-3],[-7,-2],[-5,-3],[-3,-10],[-1,-7],[-1,-8],[-13,-36],[-5,-8],[-6,-4],[1,19],[0,6],[2,3],[5,8],[2,5],[6,14],[1,6],[0,7],[0,6],[0,3],[2,4],[6,2],[3,3],[5,20],[2,7],[2,13],[1,12],[-4,0],[-1,-4],[0,-7],[-1,-7],[-2,-2],[-2,4],[0,8],[0,14],[-1,6],[-2,1],[-2,-4],[-1,-7],[1,-7],[1,-12],[0,-7],[-3,-10],[-7,-7],[-6,-2],[-3,5],[-3,16],[0,4],[2,7],[-2,4],[-6,4],[-16,52],[3,0],[5,4],[-5,5],[-6,1],[-3,-6],[3,-12],[-17,11],[-7,1],[-7,4],[-3,7],[-1,10],[-4,5],[-7,4],[-2,-4],[-5,1],[-13,6],[-17,4],[-7,2],[7,7],[5,3],[5,6],[2,8],[2,8],[0,9],[-2,4],[-3,1],[-2,-3],[-1,-1],[-1,-1],[0,-3],[-2,7],[1,4],[2,4],[0,4],[-1,5],[-3,-1],[-6,-6],[-2,1],[-1,4],[-1,4],[-1,3],[0,1],[-1,1],[-1,2],[0,4],[1,3],[1,3],[2,2],[1,7],[0,4],[-7,3],[-2,2],[-1,-2],[0,-8],[-2,-13],[-5,3],[-9,16],[-9,-7],[-8,5],[-31,38],[-5,4],[-5,2],[-3,-2],[-1,-3],[3,-4],[-2,-5],[-4,8],[-7,18],[-4,7],[-1,-6],[-5,-10],[-1,-8],[5,-1],[2,1],[0,-4],[-4,-4],[-2,-1],[-3,0],[1,-5],[2,-2],[1,0],[1,4],[3,-4],[12,-21],[3,-3],[2,-1],[8,-1],[7,-5],[7,-7],[6,-11],[-4,-4],[-2,-3],[-1,-6],[0,-10],[1,-3],[1,-3],[1,-4],[1,-4],[-1,-16],[-1,4],[-1,4],[-1,3],[-3,1],[1,-11],[3,-10],[3,-7],[5,-4],[0,-4],[-6,-5],[-3,10],[-5,2],[-2,-6],[3,-10],[-9,0],[-1,-18],[4,-17],[10,3],[-2,-10],[-7,-23],[-1,-4],[-4,-6],[-4,-8],[-5,-7],[-4,-3],[-14,-17],[-9,-7],[-4,3],[2,3],[0,6],[0,8],[-1,7],[-2,5],[-6,10],[-1,6],[2,6],[1,6],[1,7],[1,7],[1,8],[0,7],[0,6],[-1,8],[-2,5],[-2,1],[-1,-4],[-2,-10],[-2,-7],[-1,3],[-3,10],[-10,22],[0,7],[0,3],[-4,-1],[-2,-3],[-2,-6],[0,-8],[-1,-6],[-7,-16],[0,33],[-1,7],[-6,18],[-1,3],[-1,2],[-2,4],[-3,1],[-1,-9],[-1,-9],[-2,-8],[-6,-14],[-4,9],[-3,-1],[-2,-5],[-4,-3],[-9,6],[-3,3],[4,3],[0,5],[-3,1],[-3,-1],[-1,-3],[-1,-5],[-3,1],[-2,0],[-1,-3],[0,-7],[1,-2],[7,-2],[-1,-10],[-3,-7],[-1,-6],[3,-9],[-3,-7],[-2,3],[-2,6],[-3,6],[-1,-4],[-2,-7],[-2,-13],[1,-3],[1,-1],[-2,-23],[0,-10],[-2,8],[-1,5],[-4,1],[-3,-2],[0,-3],[0,-6],[0,-5],[-4,-3],[-1,-3],[-1,-3],[-2,-1],[-2,2],[-4,4],[-5,0],[-2,-8],[-2,0],[-10,6],[-3,0],[2,7],[5,2],[3,4],[-2,11],[-5,-4],[-5,3],[-4,6],[-5,4],[1,-10],[-1,-5],[-6,-6],[-1,-2],[0,-3],[-1,-2],[-3,-1],[-13,22],[-7,9],[-7,3],[-8,-5],[0,6],[1,5],[2,3],[3,2],[-3,5],[-4,3],[-5,1],[-2,-3],[0,-9],[-3,-4],[-4,-2],[-4,1],[-3,3],[-6,11],[-3,2],[-30,9],[-15,13],[-12,21],[-3,26],[2,-9],[5,-3],[6,2],[4,6],[3,11],[2,9],[3,7],[7,1],[-1,-10],[3,-12],[7,-7],[8,5],[0,-20],[-1,-9],[-3,-8],[3,-1],[2,-3],[1,-5],[0,-7],[6,4],[3,4],[3,4],[-2,3],[-1,4],[-1,1],[0,4],[4,15],[-3,13],[-15,25],[-9,9],[-3,5],[-1,5],[1,10],[-1,3],[-1,3],[-4,1],[-2,3],[-4,14],[-1,16],[1,15],[3,13],[3,5],[3,4],[3,6],[1,10],[-1,8],[-2,5],[-4,3],[-5,0],[3,-13],[-1,-9],[-8,-12],[-2,-6],[1,-6],[1,-5],[1,-2],[-1,-6],[-4,-11],[-1,-7],[-6,8],[-12,9],[-7,4],[-6,0],[-4,2],[-1,4],[1,6],[2,5],[1,6],[-4,5],[-7,-8],[-11,-8],[-11,-3],[-7,3],[3,6],[2,12],[-1,13],[-3,11],[-1,6],[0,7],[-1,6],[-2,3],[-3,-1],[-6,-5],[-3,-2],[-8,1],[-1,6],[2,10],[1,14],[1,26],[-2,7],[-7,6],[-6,1],[-26,-3],[-5,-3],[-10,-12],[-7,-2],[-3,6],[0,8],[-1,5],[-2,5],[1,11],[3,11],[3,5],[2,-4],[2,-7],[3,-2],[0,11],[0,8],[-2,6],[-3,3],[-13,4],[-4,0],[-7,-11],[-4,2],[-2,4],[-4,2],[-4,0],[-1,-3],[1,-5],[-2,-8],[-3,-4],[-24,-16],[-4,-4],[-6,-13],[-3,-4],[-4,0],[3,5],[1,7],[-2,6],[-5,3],[-1,-2],[-2,-8],[-2,-2],[-1,0],[-6,8],[1,-11],[2,-13],[3,-12],[2,-5],[2,1],[4,6],[7,2],[3,2],[2,0],[2,-3],[-8,-10],[-3,-2],[8,-30],[1,-11],[2,0],[5,6],[6,4],[7,0],[3,-6],[-8,-3],[-4,-3],[-1,-6],[6,-4],[-4,-7],[-8,0],[-12,-1],[-10,-6],[-19,-18],[-10,-7],[-10,0],[-42,16],[-7,1],[-7,2],[-9,3],[-38,20],[-31,23],[-16,14],[-17,15],[-31,24],[-19,11],[-29,13],[-15,2],[-15,-5],[-11,-4],[-11,3],[-9,1],[-10,1],[-12,-1],[-17,-3],[-23,-8],[-16,-4],[-11,-3],[-8,-7],[-7,-5],[-8,-5],[-2,-5],[-6,13],[-8,16],[-4,24],[2,10],[8,7],[10,3],[11,19],[3,29],[3,33],[-2,10],[-6,4],[-8,1],[-4,-2],[-6,2],[-1,-11],[-3,-10],[-15,-50],[-4,-36],[1,-17],[16,-32],[5,-18],[-5,-10],[-3,-1],[-8,5],[-34,1],[-6,-1],[-12,-7],[-8,-7],[-23,-24],[-33,-24],[-89,-74],[-10,-14],[-15,-32],[-5,-5],[-7,2],[-1,6],[2,8],[23,41],[7,7],[7,2],[3,2],[3,3],[2,2],[8,16],[3,4],[3,2],[14,-2],[5,1],[3,5],[2,11],[0,8],[-3,-4],[-4,-6],[-5,4],[-5,8],[-4,3],[-13,-13],[-24,-8],[-12,-6],[-5,-3],[-7,4],[-2,6],[1,4],[3,-3],[3,1],[3,10],[4,11],[6,19],[3,23],[3,27],[-1,13],[-1,10],[-1,10],[-2,5],[-2,10],[-4,3],[-3,0],[-5,-3],[-3,-2],[-6,-1],[-3,6],[-6,-8],[0,-11],[-6,-19],[-4,-21],[-4,-10],[-8,-5],[-4,-1],[-3,7],[-2,13],[-3,3],[-5,6],[-9,7],[-4,2],[-4,10],[-2,7],[-5,1],[-3,-22],[4,-3],[4,-2],[2,-4],[3,-1],[2,-1],[3,-4],[4,-7],[-7,-9],[-1,-9],[1,-11],[7,-12],[-1,-7],[-5,-9],[-3,-6],[-2,-16],[11,-17],[21,-10],[-1,-5],[-3,-7],[-3,2],[-4,-4],[-4,-2],[0,-4],[4,-6],[1,-10],[1,-8],[7,-1],[0,5],[-1,2],[0,1],[0,1],[1,1],[0,2],[0,1],[8,-25],[3,-4],[3,-1],[13,-11],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-4,6],[-6,2],[-5,-2],[-2,-12],[-2,-13],[-3,-11],[-4,-5],[-5,7],[-1,0],[-2,-8],[-2,-5],[-6,-8],[-1,0],[-2,1],[-1,-1],[0,-1],[0,-5],[0,-2],[-18,-39],[-7,-9],[-7,-9],[-3,12],[-3,3],[-5,1],[-4,5],[2,-5],[3,-16],[-2,-13],[0,-13],[2,-24],[0,-10],[0,-8],[-2,-8],[-20,-30],[-8,-8],[-15,-32],[-15,-24],[-4,-4],[-6,-1],[-5,-4],[-18,-25],[-32,-39],[-12,-11],[-12,-5],[-13,-2],[-13,1],[-10,-2],[-38,-25],[2,-8],[0,-6],[-1,-5],[-1,-10],[0,-2],[-1,-3],[1,-3],[2,-1],[2,0],[2,1],[0,2],[38,41],[11,8],[10,1],[-33,-40],[-18,-17],[-28,-13],[-17,-25],[-16,-10],[-18,-21],[-9,-7],[7,15],[9,13],[40,38],[6,3],[3,4],[1,9],[-2,10],[-5,5],[-5,-2],[-11,-11],[-4,-3],[-5,-2],[-17,-15],[-13,-7],[-6,0],[1,9],[5,5],[13,3],[4,7],[2,0],[0,4],[-5,1],[-4,-2],[-3,-2],[-4,-1],[-6,1],[-1,5],[1,6],[7,20],[1,6],[-2,2],[-6,0],[-4,-1],[-4,-3],[-6,-8],[2,9],[-6,-6],[-7,-17],[-6,-6],[-5,-3],[-1,1],[0,4],[-2,6],[-8,15],[-1,6],[3,6],[0,9],[-1,9],[-4,8],[-2,-3],[-3,-3],[-1,-2],[-5,15],[-1,5],[-1,0],[0,-9],[1,-10],[2,-9],[2,-5],[2,2],[3,3],[2,2],[1,-5],[-1,-5],[-2,-4],[-2,-2],[-1,-2],[0,-5],[1,-4],[1,-5],[-1,-5],[-1,-8],[4,-5],[9,-5],[-16,-19],[-9,-7],[-9,-2],[4,7],[5,1],[5,2],[1,12],[-2,11],[-11,-14],[-2,15],[-1,5],[-3,-1],[-3,-2],[-3,2],[-2,1],[-4,0],[-1,1],[-1,4],[-1,4],[1,4],[-1,4],[-1,9],[0,4],[-1,4],[-3,5],[-3,5],[-4,2],[-3,-1],[-4,-4],[-1,4],[-1,2],[-4,3],[1,-15],[1,-10],[2,-10],[8,-20],[1,-4],[1,-6],[0,-6],[-2,-14],[0,-4],[2,-7],[3,1],[2,6],[4,-3],[8,-10],[6,-5],[1,-3],[2,-4],[2,-5],[2,-11],[-14,-13],[-3,-1],[2,-10],[4,0],[5,5],[3,5],[9,4],[10,-7],[8,-14],[1,-14],[-20,-20],[-5,-3],[-10,-11],[-4,-2],[-30,-32],[-5,7],[-5,-2],[-3,5],[-1,9],[-1,22],[-1,6],[-2,4],[-5,1],[-2,2],[0,5],[-1,5],[0,4],[-2,2],[-3,4],[-1,2],[-5,15],[-2,4],[-3,-3],[-2,-4],[-1,-6],[1,-4],[2,2],[7,-10],[2,-7],[1,-9],[-2,-6],[-5,4],[-6,8],[-4,5],[-4,-8],[5,-17],[8,-18],[4,-15],[-2,-10],[-2,-10],[-1,-11],[5,-22],[-3,-8],[-10,-12],[-5,-9],[-9,-25],[-5,-6],[-9,-4],[-4,-4],[3,21],[2,10],[4,9],[-4,11],[2,11],[3,10],[-1,9],[-3,0],[-4,-9],[-6,-20],[3,-6],[1,-8],[-1,-10],[-3,-12],[-4,-12],[-3,-3],[-10,7],[1,1],[1,2],[1,2],[1,3],[-2,6],[1,18],[-2,8],[-1,0],[-5,-12],[-9,-12],[-11,-8],[-8,-4],[2,6],[-2,5],[-4,2],[-3,-1],[-3,-5],[-1,-7],[1,-5],[5,-3],[-12,-22],[-5,-13],[2,-6],[6,-1],[6,-4],[3,-7],[3,-8],[0,-7],[-1,-5],[0,-3],[3,2],[2,5],[2,6],[1,8],[1,8],[3,10],[13,10],[5,10],[-1,3],[-1,2],[1,1],[1,1],[2,1],[3,-4],[0,-7],[-1,-23],[0,-8],[0,-4],[0,-3],[-3,-5],[-2,-5],[-5,-18],[-1,0],[0,1],[0,1],[-1,2],[-10,-35],[-22,-59],[-6,-9],[-7,2],[0,4],[5,0],[-3,10],[-3,9],[-4,6],[-5,3],[-6,-1],[-12,-10],[-7,0],[2,3],[1,2],[0,2],[1,4],[-7,-3],[-16,1],[-7,-1],[-2,-2],[-1,-6],[-1,0],[-2,0],[-2,2],[-2,2],[0,1],[-1,2],[0,3],[-3,1],[-1,0],[-4,-3],[4,-15],[5,-8],[6,-2],[9,4],[3,-3],[3,-1],[4,3],[2,5],[1,-9],[-2,-17],[1,-6],[5,-21],[4,-8],[25,-20],[2,-8],[-1,-9],[-2,-10],[-4,-8],[-1,-4],[-1,-7],[-1,-13],[-1,-5],[-8,-30],[-5,-26],[-1,-12],[-1,-6],[-4,-9],[-11,-61],[-1,-13],[-3,-4],[-18,-14],[-6,-13],[-4,-3],[-5,7],[10,11],[3,6],[-1,1],[-1,2],[0,2],[-1,3],[5,-1],[3,1],[2,2],[2,5],[0,1],[-1,1],[-2,3],[0,-2],[-2,-1],[-3,2],[-1,7],[1,11],[1,11],[-5,-4],[-7,-12],[-3,-4],[2,-8],[-3,-2],[-2,-3],[-5,-7],[-1,8],[-3,-2],[-5,-14],[1,-4],[-1,-4],[-1,-3],[-3,-1],[-4,1],[-1,4],[0,5],[-1,6],[-22,61],[-7,13],[-9,11],[1,-14],[10,-18],[3,-13],[-4,0],[10,-19],[3,-12],[-6,-5],[1,-5],[0,-1],[1,-2],[5,4],[5,-2],[1,-6],[-3,-8],[-6,-7],[-7,1],[-7,6],[-7,0],[4,-11],[13,-7],[10,4],[5,0],[5,-5],[3,-13],[9,-1],[11,-4],[11,-2],[5,7],[7,7],[10,10],[4,-5],[0,-8],[-2,-7],[-4,-2],[1,-7],[0,-11],[0,-10],[-1,-5],[-3,-3],[1,-8],[2,-9],[0,-8],[-2,-7],[-3,-5],[-4,-3],[-5,-1],[0,-3],[3,-7],[2,-9],[-4,-6],[4,-15],[0,-10],[-4,-5],[-16,-2],[-2,-3],[-1,-6],[1,-26],[1,-10],[3,-9],[3,-7],[11,-9],[4,-8],[-4,-11],[-12,22],[-3,2],[-2,-6],[-1,-11],[-1,-12],[0,-8],[2,-7],[3,-2],[4,0],[5,-3],[3,-6],[2,-9],[2,-10],[2,-26],[6,-38],[3,-39],[6,-39],[2,-19],[-1,4],[-2,5],[-1,3],[-1,-8],[-3,-4],[-7,-4],[10,-6],[-1,-6],[-1,-9],[-1,-16],[-1,-6],[1,-2],[3,0],[5,-3],[2,-6],[0,-8],[2,-8],[2,-1],[6,-1],[1,-1],[1,-5],[-3,-12],[1,-4],[2,0],[1,2],[2,3],[0,2],[2,3],[2,-3],[1,-4],[-2,-3],[-2,-6],[-2,-12],[0,-13],[2,-5],[3,1],[2,2],[2,0],[2,-3],[2,-7],[-1,-4],[-2,-4],[-1,-5],[0,-7],[2,-6],[4,-12],[-2,-12],[0,-18],[1,-16],[3,-7],[2,-1],[2,-2],[3,-3],[3,-1],[8,-1],[3,-1],[3,-3],[-1,-9],[-1,-5],[-3,-1],[-4,3],[-1,-10],[-3,-15],[0,-8],[1,-9],[1,-4],[2,-2],[3,-3],[1,1],[0,2],[1,3],[7,6],[3,4],[2,6],[1,10],[0,10],[2,9],[3,4],[3,-1],[3,-16],[0,-17],[1,-27],[0,-5]],[[23017,65847],[-19,-3],[-13,2],[-4,-2],[0,-10],[-6,-9],[-6,-4],[-5,7],[-6,-9],[-1,-3],[0,-11],[2,-14],[0,-11],[-5,-5],[-3,1],[-1,4],[-1,5],[-2,3],[-2,0],[-1,-3],[0,-4],[-1,-2],[-6,2],[-3,9],[-1,9],[-2,4],[-6,1],[-5,1],[-4,4],[-5,7],[-13,24],[-8,7],[-3,8],[-2,10],[-3,8],[-5,8],[-5,4],[-5,3],[-25,3],[-3,2],[-1,9],[-5,3],[-22,0],[-17,-4],[-16,4],[-4,0],[-9,-9],[-6,-4],[-2,3],[-3,14],[-5,3],[-13,-7],[-10,1],[-10,6],[-22,21],[-3,6],[-6,19],[-2,4],[-7,0],[-3,2],[0,6],[2,12],[-8,4],[-9,10],[-7,5],[-5,-11],[-5,14],[-8,6],[-9,4],[-8,9],[-16,-13],[-4,2],[-3,4],[-6,10],[-2,1],[-3,1],[0,3],[3,8],[-2,5],[-4,3],[-3,1],[-4,-1],[1,10],[-3,7],[-9,12],[-5,9],[-1,3],[-3,0],[-1,-3],[-3,-1],[-3,4],[-1,-4],[-3,-1],[-2,1],[-3,4],[-7,-3],[-10,15],[-4,-9],[-2,10],[-3,3],[-7,0],[-4,-4],[-2,0],[-2,1],[-2,5],[-1,2],[-5,0],[-6,-1],[-5,2],[-6,9],[0,6],[1,8],[3,8],[1,6],[-1,8],[-3,17],[-3,8],[-7,3],[-7,5],[-2,14],[-2,30],[-1,9],[-11,63],[-3,28],[-4,26],[-4,10],[-5,9],[-4,10],[-9,21],[-3,8],[-11,17],[-2,5],[-2,7],[0,12],[0,6],[-2,5],[-2,1],[-3,0],[-2,2],[-4,7],[-1,3],[-5,13],[5,20],[1,5],[-1,5],[-1,4],[-1,4],[-1,2],[1,12],[4,26],[1,11],[-1,12],[-2,10],[-3,10],[-4,9],[0,1],[-4,3],[0,2],[-1,5],[0,2],[-2,2],[-8,6],[2,6],[5,10],[1,6],[0,6],[1,8],[1,11],[3,14],[0,7],[0,22],[0,3],[-1,8],[-1,5],[-2,2],[-4,1],[-2,3],[0,6],[1,13],[0,24],[-2,9],[-6,10],[-5,5],[-5,3],[-2,2],[-3,12],[-3,2],[-3,-1],[-6,-7],[-3,0],[-1,3],[-3,10],[-2,3],[-10,0],[-1,2],[-2,4],[-3,11],[-2,2],[-1,6],[-1,7],[-1,5],[-2,2],[-5,3],[-2,3],[-4,8],[-2,8],[-3,5],[-1,1],[-7,2],[0,4],[-3,6],[-4,6],[-1,1],[0,6],[0,13],[0,5],[-2,5],[-3,3],[-2,4],[-1,6],[3,9],[1,7],[-1,2],[-4,4],[-5,9],[-5,11],[-2,9],[3,8],[-4,5],[-5,2],[-5,3],[-4,9],[-2,8],[-2,8],[-2,10],[0,3],[1,4],[0,3],[-2,2],[-4,6],[-4,8],[0,4],[-1,8],[-2,13],[-5,10],[-27,26],[-5,2],[-2,3],[-1,8],[0,9],[-1,5],[-2,1],[-8,3],[-5,6],[-4,10],[-3,11],[2,11],[0,10],[-5,13],[-8,20],[-2,21],[-1,21],[-1,4],[-3,3],[-2,5],[0,6],[1,5],[8,8],[-11,8],[-6,8],[-3,12],[-1,6],[1,15],[-2,5],[-2,5],[-7,5],[-3,5],[0,10],[-10,25],[-3,13],[-7,57],[-2,6],[-1,3],[-1,6],[-2,4],[-1,2],[-4,0],[-2,2],[-1,4],[2,7],[-1,5],[-2,2],[-4,4],[-1,2],[-1,9],[-4,7],[-3,4],[-1,4],[-1,8],[0,6],[-1,5],[-2,4],[2,13],[-1,12],[-5,23],[-3,35],[-2,8],[-2,2],[-4,1],[-3,1],[-1,4],[-1,3],[-15,23],[-2,8],[2,12],[-6,21],[-3,8],[-6,8],[-13,12],[-2,3],[-6,14],[-6,10],[-20,18],[-3,3],[-3,5],[-2,6],[-2,6],[-1,8],[-1,17],[-2,10],[-9,6],[-18,11],[-8,8],[-6,12],[-2,4],[-3,1],[-3,1],[-3,5],[-1,8],[3,18],[-1,15],[-4,8],[-7,-2],[-7,-7],[-4,-8],[-3,2],[0,9],[2,12],[1,10],[-3,3],[-7,-1],[-4,4],[-2,4],[-2,6],[-3,14],[-2,10],[-5,14],[-2,7],[0,7],[1,8],[-3,-2],[-3,-2],[-3,-1],[-3,1],[-2,2],[-2,8],[-3,2],[-5,-4],[-4,-7],[-5,-5],[-6,4],[1,4],[3,11],[0,3],[-1,5],[-2,4],[-2,2],[0,-3],[-2,-11],[-3,-6],[-4,-3],[-14,-4],[-45,12],[-3,4],[-1,6],[-2,0],[-3,-4],[-9,0],[-6,3],[-2,1],[-3,-2],[-1,-3],[-3,-2],[-2,-1],[-3,-1],[-4,4],[-4,6],[-4,2],[-4,-7],[-8,3],[-26,-5],[-10,8],[-3,5],[-13,13],[-10,2],[-4,3],[-1,11],[-5,-2],[-4,5],[-3,7],[-6,2],[-2,-3],[-3,-11],[-3,-2],[-3,-1],[-3,-4],[-1,-6],[0,-16],[-1,-6],[-7,-18],[0,-2],[-31,5],[-2,-2],[-2,-7],[-3,-5],[0,-1],[-1,-1],[-2,-1],[-2,1],[-1,7],[-1,1],[-5,-4],[-10,-11],[-5,-2],[-10,1],[-2,-1],[-3,-4],[0,-4],[-1,-5],[0,-7],[-8,-27],[-2,-8],[-1,0],[-4,-16],[0,-2],[-3,-10],[-2,-3],[-3,-3],[1,-8],[0,-2],[-3,-2],[2,-9],[-2,-4],[-3,-4],[-8,-43],[-2,-6],[-2,-5],[0,-9],[0,-6],[2,-7],[-1,-7],[-2,-8],[0,-3],[2,-9],[0,-2],[-3,-3],[-2,0],[-1,0],[-2,-1],[-3,-5],[-2,-5],[0,-6],[-1,-11],[-3,-23],[0,-7],[2,-5],[6,-9],[3,-6],[-3,-3],[-8,-3],[-12,-17],[-2,-5],[-6,6],[-5,-9],[-8,-30],[-2,-6],[-2,-4],[-11,-11],[-3,-4],[-1,-5],[-2,-11],[-1,2],[-2,-2],[-2,-20],[-3,-16],[-7,-7],[-11,3],[-15,8],[-17,-1],[-4,5],[1,9],[1,3],[-5,-2],[-1,-2],[-3,10],[-3,-1],[-2,-5],[-4,-4],[-4,3],[-8,14],[-2,3],[-3,2],[-12,12],[-14,27],[-2,5],[-1,4],[-1,4],[-2,3],[-2,1],[-8,-1],[-24,12],[-8,8],[-14,21],[-2,2],[-3,2],[-2,3],[2,13],[-1,6],[-3,5],[-3,1],[-19,3],[-18,6],[-25,17],[-11,11],[-13,27],[-10,9],[-6,10],[-9,19],[-5,21],[-2,3],[-2,2],[-7,9],[-4,11],[-7,3],[-8,0],[-5,-5],[-3,8],[-23,27],[-2,2],[-1,2],[-2,5],[-1,5],[-1,4],[-3,7],[-14,17],[-4,8],[-1,6],[0,6],[0,9],[-2,8],[-5,17],[-3,25],[-3,9],[-5,7],[-5,11],[-1,5],[-4,28],[-5,12],[-2,6],[0,3],[-4,8],[-1,3],[-1,6],[1,9],[0,5],[-5,33],[-1,14],[1,12],[4,21],[1,14],[0,21],[0,13],[-4,10],[-6,21],[-2,4],[-5,5],[-2,3],[-4,11],[-3,17],[-4,14],[-5,6],[-2,3],[0,6],[-1,6],[0,5],[-2,4],[-4,4],[-2,5],[-2,6],[-1,3],[1,4],[0,9],[-1,6],[-2,8],[-1,6],[1,4],[1,7],[0,4],[-1,3],[-4,5],[-1,6],[-1,12],[0,6],[-4,10],[-8,18],[-2,7],[-2,2],[-8,2],[-3,2],[-2,5],[-1,6],[0,7],[-1,6],[-3,9],[-6,8],[-6,5],[-5,2],[-5,4],[-13,29],[-2,-4],[-3,7],[-2,2],[-1,-1],[0,6],[-1,4],[-2,1],[-3,1],[-3,2],[-3,8],[-2,2],[-1,1],[-4,2],[-1,-1],[-1,-4],[-2,-2],[-1,0],[-3,3],[-2,3],[-1,3],[-2,3],[-16,15],[-8,4],[-3,5],[-11,26],[-23,32],[-9,20],[-7,7],[-3,8],[-4,21],[-3,12],[-4,6],[-5,5],[-6,8],[-6,14],[-2,2],[-5,4],[-21,25],[-3,7],[-2,11],[-21,46],[-5,8],[-5,3],[0,2],[-3,4],[-6,6],[-1,5],[-2,10],[-2,5],[-4,6],[-12,15],[-5,3],[-7,2],[-5,4],[-9,10],[-12,6],[-6,6],[-3,7],[-10,10],[-1,4],[-1,3],[0,3],[-2,6],[-2,9],[-12,26],[-3,10],[-7,40],[-6,20],[-7,21],[-9,17],[-11,8],[-12,-3],[-6,3],[-2,4],[-1,2],[-3,3],[-12,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,1],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,1],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-7,0],[-4,0],[-12,0],[-6,0],[-6,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-16,0],[-17,4],[-8,5],[-14,10],[-14,10],[-15,10],[-14,9],[-14,10],[-15,10],[-14,10],[-14,10],[-114,74],[-113,75],[-114,75],[-114,75],[-114,75],[-113,75],[-114,75],[-114,75],[-10,7],[-1,1],[3,6],[4,25],[1,13],[-3,12],[5,15],[1,4],[6,10],[2,5],[4,10],[2,10],[2,15],[0,1],[-11,-2],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-3],[-20,-4],[-20,-3],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-3],[-20,-4],[-20,-3],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-4],[-20,-3],[-20,-3],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-4],[-20,-3],[-20,-3],[-23,-4]],[[17465,69735],[0,5],[-2,17],[0,15],[-1,13],[-4,18],[-4,14],[-7,8],[-9,1],[-1,7],[2,6],[4,4],[4,0],[1,-4],[5,-5],[1,-9],[3,-6],[3,-12],[3,-13],[2,-14],[3,-4],[3,4],[0,8],[-4,19],[0,11],[-4,11],[-4,3],[-5,7],[-3,5],[0,7],[-9,-1],[-4,-4],[-4,-7],[0,-22],[-2,3],[-3,10],[-1,6],[1,27],[0,10],[-1,12],[-6,23],[-1,9],[3,8],[2,-3],[2,4],[1,19],[-1,14],[-4,50],[-2,8],[-2,10],[-3,7],[-7,43],[-11,34],[-41,100],[-24,33],[-16,30],[-4,7],[-13,13],[-5,6],[-12,26],[-13,19],[-16,19],[-14,9],[-13,16],[-31,57],[-8,7],[-9,9],[-6,3],[-3,-4],[-4,4],[-3,0],[5,-7],[1,-6],[1,-6],[-3,0],[-2,5],[0,4],[-2,-3],[-1,4],[-2,13],[-3,-1],[-3,-1],[-2,-2],[-2,1],[-1,-3],[-3,-4],[-2,2],[1,-4],[-1,-7],[1,-9],[0,-5],[-2,1],[0,-3],[1,-2],[-1,0],[-3,-3],[-3,4],[-4,3],[-4,3],[-7,4],[-2,5],[-3,1],[-3,2],[-2,-2],[-2,-1],[-1,3],[-2,1],[-1,8],[-2,5],[-2,6],[2,6],[3,4],[1,4],[3,5],[1,7],[0,11],[-1,5],[-1,4],[-3,13],[-4,19],[-5,26],[-11,29],[-9,14],[-8,10],[-4,-1],[-3,2],[-4,-2],[-2,1],[-4,0],[-1,-2],[-8,1],[-8,1],[-3,0],[0,-3],[-1,-2],[-3,1],[-4,-2],[-7,2],[-5,0],[-2,-4],[-5,-1],[-3,-1],[-1,-1],[0,-3],[-1,-2],[0,-3],[-1,0],[-2,-1],[0,-2],[-1,-1],[-6,12],[-7,8],[-3,0],[-3,2],[-5,1],[-3,1],[-3,0],[-2,2],[-2,1],[-2,-1],[-5,2],[-6,7],[-6,4],[-3,0],[-8,10],[-7,2],[-8,8],[-3,2],[-4,2],[-1,0],[0,-2],[2,-1],[3,-1],[-1,-3],[-6,4],[-7,9],[-12,15],[-2,1],[-1,1],[1,2],[-1,1],[-1,1],[0,-2],[-1,-2],[-1,0],[-1,5],[-1,2],[-1,1],[-1,5],[-2,6],[-1,8],[-3,8],[-2,8],[-1,5],[1,4],[-1,1],[-1,6],[-1,6],[-3,8],[-2,4],[-2,-1],[-2,-1],[-3,3],[-2,3],[-2,2],[-3,3],[-3,8],[-2,4],[-2,3],[-2,2],[-1,1],[-2,-1],[-1,-1],[-1,1],[-1,2],[-2,5],[-3,3],[-2,4],[-3,6],[-2,2],[-2,-1],[-3,8],[-2,3],[-1,1],[-1,1],[-1,-2],[-1,0],[-1,1],[-1,2],[-1,2],[-2,1],[-2,1],[-4,1],[-1,2],[-3,3],[-2,0],[-5,9],[-2,3],[-2,-1],[-1,-1],[-1,0],[-1,0],[-4,4],[-6,1],[-1,-1],[-2,0],[-3,-2],[-5,1],[-6,-2],[-3,-2],[0,-1],[-1,-2],[0,-1],[-2,-2],[-1,-1],[-1,-2],[-4,0],[-3,1],[-3,3],[-3,2],[-10,7],[-4,1],[-1,-1],[-7,-1],[-1,0],[-1,-1],[0,-2],[-1,-2],[0,-2],[-3,3],[-4,0],[-2,0],[-1,-1],[-3,7],[-3,1],[-6,8],[-3,1],[-3,0],[-2,-1],[-2,1],[-1,2],[-4,5],[-2,1],[-2,0],[-5,7],[-4,-2],[-4,3],[-15,-2],[-12,8],[-10,-2],[-34,-1],[-37,-10],[-5,0],[-3,-5],[-5,5],[-5,24],[-5,18],[-7,8],[-6,3],[-6,8],[-5,0],[-7,-1],[-4,6],[-3,7],[0,7],[1,9],[3,16],[5,18],[2,12],[1,15],[-4,13],[-3,10],[-3,9],[3,14],[2,22],[1,15],[1,8],[-2,6],[-3,2],[-2,5],[-2,9],[-2,4],[-4,-2],[-1,5],[1,15],[7,41],[2,20],[1,23],[-1,20],[-3,19],[-2,3],[-1,3],[-4,0],[-2,2],[-5,9],[-3,3],[-5,1],[-7,1],[-1,-3],[0,-5],[-1,-3],[-2,1],[-7,11],[-17,14],[-7,13],[-3,6],[-3,9],[1,14],[2,8],[5,26],[2,19],[2,-9],[-1,-12],[1,-3],[3,1],[1,5],[3,2],[-2,4],[-1,2],[-3,13],[-2,4],[-2,-2],[-1,20],[-3,9],[-2,8],[-6,9],[-10,-2],[-5,7],[-5,2],[-7,0],[-9,17],[-8,17],[-10,19],[-8,30],[-3,2],[-4,14],[-3,5],[-5,3],[-2,-1],[1,-3],[-1,-1],[-6,9],[-5,2],[-5,3],[-5,5],[-5,0],[0,10],[-3,9],[-3,6],[-2,4],[-2,30],[-4,13],[-8,14],[-6,7],[-6,13],[-1,6],[-3,3],[-5,6],[-6,10],[0,10],[-2,6],[-2,11],[-1,10],[-2,10],[0,10],[-5,12],[-4,4],[-6,3],[-7,3],[-4,10],[-3,8],[0,8],[-4,5],[-3,7],[-3,17],[-4,7],[-4,11],[-6,12],[-4,5],[-3,6],[-7,10],[-7,8],[-7,8],[-5,5],[-3,-1],[-4,4],[-3,6],[-2,6],[-1,8],[-2,4],[-3,2],[-3,4],[-2,6],[-5,3],[1,5],[0,9],[0,2],[1,4],[-2,3],[-1,5],[0,6],[-1,6],[0,3],[1,4],[-1,2],[-1,5],[-1,4],[-1,7],[0,5],[0,4],[-3,11],[-1,4],[0,5],[-2,3],[-2,10],[0,4],[1,3],[0,3],[-1,2],[1,4],[-2,1],[-2,2],[0,3],[2,1],[3,-1],[3,1],[0,4],[-1,4],[-1,4],[1,1],[0,5],[-1,4],[-1,-2],[-1,3],[-1,1],[-1,-1],[-1,-2],[-5,5],[-2,4],[-1,5],[2,0],[2,1],[0,4],[1,5],[1,7],[1,1],[2,-2],[1,4],[1,5],[0,5],[1,3],[3,-1],[2,-2],[0,-3],[2,-3],[3,-2],[2,-5],[2,-6],[3,0],[2,3],[5,7],[4,10],[3,12],[4,16],[1,21],[1,11],[4,-4],[8,-5],[0,5],[-1,3],[-1,2],[-2,-1],[-2,0],[-2,3],[-1,2],[-2,3],[1,17],[2,16],[-4,17],[-15,55],[-8,16],[-5,8],[-9,6],[-4,-5],[-3,-6],[-3,-3],[-5,3],[-4,1],[-4,0],[-1,-1],[0,-2],[0,-3],[-3,1],[-3,-3],[-4,0],[-6,2],[-6,2],[-5,5],[-4,1],[-2,6],[-3,1],[-6,11],[-9,14],[-4,3],[-1,9],[-8,12],[-3,10],[-4,12],[-3,4],[-2,4],[-3,4],[-3,-1],[-2,-2],[-3,4],[0,9],[-6,10],[0,7],[-3,7],[-4,5],[-3,-1],[-2,8],[-1,13],[-1,6],[-2,4],[0,11],[2,10],[1,15],[1,27],[1,12],[-3,2],[0,7],[-5,19],[-5,18],[-1,23],[-4,12],[-4,3],[-2,0],[-2,-1],[-1,-3],[-1,-1],[0,5],[-3,5],[-3,12],[1,9],[1,9],[-2,8],[1,9],[-1,2],[1,1],[1,2],[2,0],[1,2],[1,3],[1,12],[1,23],[-2,22],[-2,13],[-2,16],[0,17],[2,3],[3,1],[3,2],[3,12],[3,-3],[13,3],[2,0],[3,-5],[3,-7],[0,-7],[2,-3],[0,-6],[1,-5],[1,-4],[2,-5],[3,-6],[-2,-9],[-4,1],[0,-5],[-4,1],[1,-19],[2,-1],[0,-5],[2,-7],[-2,-5],[-1,-6],[0,-3],[6,-3],[3,-8],[-2,-3],[-3,3],[-1,-6],[3,-2],[1,-4],[8,-2],[4,0],[0,-4],[5,-4],[4,-1],[7,-2],[2,-2],[2,-9],[1,-4],[3,-1],[6,-3],[3,-3],[0,-4],[-3,-6],[4,-1],[3,-5],[3,-2],[4,0],[3,-4],[4,0],[3,-7],[3,-11],[3,-7],[5,-4],[7,0],[5,2],[2,7],[-2,3],[-2,0],[-2,2],[1,3],[0,4],[0,3],[-2,5],[-1,3],[-2,1],[-7,0],[-4,8],[-2,15],[-9,21],[-1,22],[-3,29],[-7,16],[-1,5],[-4,6],[-3,-6],[-10,14],[-3,12],[4,3],[10,-3],[-1,9],[-2,1],[-1,-3],[-4,0],[-8,4],[-4,1],[-2,2],[-2,3],[0,4],[-2,1],[-1,-3],[-6,4],[1,8],[1,3],[0,2],[-1,0],[-3,-1],[-1,3],[2,2],[3,0],[2,4],[-3,2],[2,2],[5,1],[2,3],[-1,5],[-1,14],[-4,-2],[0,5],[2,1],[-1,9],[-4,13],[-6,-1],[-4,-1],[-8,2],[1,8],[-2,4],[-4,3],[-3,9],[-2,10],[4,-2],[4,-3],[1,8],[8,6],[2,5],[-3,9],[1,5],[6,-4],[3,-1],[3,1],[2,3],[5,0],[6,9],[0,8],[4,4],[4,6],[6,1],[6,-3],[5,-3],[5,-12],[6,-2],[6,3],[12,11],[8,3],[14,2],[18,-7],[14,-2],[3,-4],[11,-7],[16,-4],[8,2],[8,-5],[6,-1],[3,0],[2,5],[-3,4],[-5,-1],[-3,2],[1,4],[4,2],[3,5],[2,0],[1,2],[1,6],[1,6],[0,5],[1,5],[3,1],[7,0],[3,2],[0,3],[2,2],[3,1],[3,-3],[4,-2],[1,-5],[1,-5],[-2,-3],[-1,-4],[-4,-2],[-3,1],[-3,0],[-2,-6],[-1,-4],[3,-5],[3,-8],[2,-3],[2,3],[3,4],[1,4],[1,7],[0,6],[0,3],[3,2],[3,-5],[3,-2],[2,-2],[4,-6],[3,0],[4,-6],[5,-5],[6,-10],[4,-5],[0,4],[-4,10],[-4,10],[-3,4],[-5,3],[-3,3],[-3,0],[-1,4],[-2,2],[-2,-1],[-2,1],[-4,10],[-2,9],[-4,3],[-5,2],[-6,0],[-2,-1],[-2,-5],[-1,-1],[-2,1],[-2,2],[-2,1],[-4,-4],[-2,-6],[-1,-5],[0,-8],[-3,-6],[-5,-6],[-6,-7],[-7,1],[-4,3],[-1,5],[0,5],[1,5],[3,5],[3,2],[3,2],[3,2],[6,8],[3,7],[5,11],[1,14],[-2,0],[-4,-15],[-5,-8],[-7,-12],[-5,-5],[-10,-10],[-6,4],[-6,2],[-5,-1],[-1,-4],[-4,-4],[-5,-3],[-5,0],[-3,3],[2,3],[1,2],[2,8],[-13,0],[-4,-3],[-5,5],[-7,9],[8,7],[-1,9],[-3,7],[-5,1],[-6,-1],[-4,-2],[-3,-4],[-1,-3],[1,-5],[-3,-8],[-5,-9],[-8,-15],[-1,-5],[-1,-5],[-8,1],[-2,6],[-5,6],[-2,-2],[-1,0],[-3,2],[-5,1],[-6,4],[-5,-2],[-2,3],[-3,7],[-6,13],[-26,27],[-4,-12],[-7,-6],[-4,1],[-2,-4],[-13,-3],[5,-5],[1,-17],[-3,-16],[-3,-10],[-1,-5],[0,-4],[4,-3],[6,-4],[5,-4],[2,-8],[-1,-3],[-3,1],[-2,1],[-2,-4],[-5,-4],[0,-7],[3,-6],[1,-4],[-4,-3],[-3,3],[0,-4],[0,-6],[8,-5],[1,-3],[-1,-3],[4,-6],[3,-1],[3,-7],[-2,-5],[-2,-1],[-2,-1],[0,-5],[-2,3],[-2,4],[1,4],[-1,4],[-4,4],[-3,0],[1,-6],[1,-4],[-2,-3],[3,-5],[3,-2],[0,-4],[1,-6],[1,-7],[-2,-4],[-3,0],[-4,-2],[-2,2],[-3,-2],[-2,-3],[-2,7],[-3,4],[-5,8],[-2,4],[-4,3],[-4,8],[-5,2],[-7,13],[-8,4],[-4,-1],[-3,-3],[-1,-4],[-3,5],[-4,1],[-2,11],[-4,7],[-5,3],[-4,6],[-4,16],[-4,6],[-3,7],[-5,6],[-19,15],[-4,1],[-3,9],[0,6],[3,4],[-4,3],[-2,-4],[-2,-2],[1,-4],[0,-5],[1,-3],[2,-6],[-4,-1],[-4,-2],[-4,-7],[-1,-6],[1,-3],[2,-1],[3,-3],[-4,-1],[-3,1],[-3,1],[-6,0],[-2,1],[1,3],[2,0],[7,29],[11,56],[0,12],[-1,7],[-3,4],[0,9],[-3,6],[-2,7],[-3,6],[-1,8],[3,-3],[6,-12],[11,-25],[5,-14],[4,-13],[7,-12],[7,-11],[5,-11],[-2,14],[-5,8],[-11,26],[-13,36],[-2,3],[-2,-1],[-1,8],[-3,0],[-1,3],[0,8],[-2,9],[-3,7],[-4,10],[-8,11],[-5,0],[-1,-4],[-1,-5],[-2,-1],[-4,16],[2,14],[-1,8],[-2,7],[-2,12],[-2,2],[-2,10],[-3,5],[-3,10],[-2,7],[-11,18],[-23,18],[-6,11],[-8,12],[-3,5],[-6,6],[-2,11],[-4,6],[-2,3],[-1,6],[-9,19],[-4,14],[-5,6],[0,6],[-12,20],[-5,9],[-8,6],[-4,15],[-6,7],[-2,7],[-8,6],[-6,13],[-9,13],[-4,14],[-10,16],[-4,8],[-4,3],[0,8],[-4,14],[5,3],[6,17],[2,11],[2,12],[-1,6],[-1,12],[-2,15],[-3,13],[-2,16],[-5,6],[1,9],[-9,21],[-3,17],[-3,28],[-4,5],[2,11],[-3,5],[0,11],[-5,14],[1,34],[1,23],[5,28],[7,22],[1,10],[0,11],[-4,19],[0,35],[-1,7],[0,6],[-2,9],[-2,6],[-1,6],[-5,3],[-1,5],[-1,9],[-1,12],[0,13],[-2,15],[-3,15],[-7,6],[-8,13],[-6,25],[-7,10],[-7,22],[-6,9],[-6,15],[-3,5],[-3,4],[-4,3],[-1,0],[-2,-1],[-2,3],[-1,5],[0,15],[-2,10],[-8,18],[-6,5],[-13,8],[-10,21],[-10,11],[-17,24],[-2,8],[-5,3],[-6,11],[1,12],[4,22],[-5,15],[0,20],[-9,23],[-3,16],[3,13],[3,10],[1,10],[-1,6],[5,16],[3,16],[2,8],[8,24],[1,7],[0,2],[1,1],[1,1],[1,1],[0,2],[-1,3],[1,4],[4,14],[5,14],[6,20],[4,15],[2,-6],[-4,-13],[-3,-12],[-1,-5],[4,-3],[3,-1],[3,-3],[1,2],[-1,3],[1,1],[2,3],[0,4],[-2,8],[1,5],[-1,4],[2,3],[3,2],[1,5],[0,4],[0,5],[2,2],[1,10],[2,6],[2,2],[3,2],[5,2],[2,-2],[5,0],[3,4],[6,7],[1,11],[0,3],[-3,3],[-2,3],[-2,-3],[-3,-1],[-2,1],[-1,2],[-2,4],[-4,0],[-1,-1],[0,-7],[-3,-5],[-1,-9],[-4,-7],[-2,-8],[-2,-10],[-7,-16],[-2,5],[4,12],[11,36],[12,53],[4,25],[3,21],[-1,16],[-1,4],[-3,1],[-2,-1],[-2,3],[-1,4],[-1,9],[-2,7],[-1,7],[0,9],[-1,11],[0,4],[2,2],[2,-1],[2,2],[5,22],[3,23],[6,41],[3,31],[4,34],[1,22],[-4,32],[-1,18],[3,11],[-3,2],[-2,4],[-3,4],[-1,6],[0,6],[0,15],[-1,4],[-3,5],[-3,14],[-3,14],[0,9],[-2,16],[-4,18],[-5,4],[-3,2],[-2,-2],[-1,-3],[-9,14],[-9,8],[1,8],[4,3],[3,11],[5,22],[2,24],[2,41],[0,7],[-1,6],[-3,14],[-5,7],[-7,10],[-4,7],[-5,0],[-12,27],[-4,4],[-2,9],[1,11],[-3,11],[0,14],[-3,13],[-1,14],[-4,11],[-5,6],[0,6],[1,22],[-4,13],[-1,1],[-2,6],[1,12],[1,7],[0,9],[0,12],[0,13],[-4,12],[5,9],[0,7],[1,14],[4,17],[1,8],[2,20],[-1,11],[-2,6],[1,12],[-2,18],[-2,10],[-3,5],[-4,4],[-4,5],[-3,10],[-2,16],[-5,5],[-4,-1],[-3,7],[-4,33],[-2,7],[-3,6],[-5,5],[5,6],[16,50],[8,38],[2,11],[3,11],[2,15],[1,11],[2,27],[3,3],[-1,10],[9,72],[-2,22],[-2,6],[4,11],[3,6],[4,2],[5,5],[4,-2],[1,-6],[0,-15],[2,-8],[1,6],[2,11],[-1,6],[1,10],[2,5],[4,4],[3,14],[6,14],[6,4],[3,1],[1,-6],[0,-8],[0,-9],[1,-7],[4,-1],[6,-2],[7,0],[4,3],[-9,3],[-4,7],[-2,8],[-1,9],[-4,6],[1,7],[3,6],[-4,0],[-6,-3],[-2,-7],[-6,-5],[-5,-4],[-1,-10],[-12,-24],[-3,1],[11,31],[16,77],[4,23],[2,24],[2,18],[2,3],[8,6],[3,10],[2,6],[2,7],[2,6],[1,7],[1,1],[2,-4],[3,-10],[2,-3],[10,-1],[1,4],[-4,1],[-5,4],[-4,9],[-3,9],[-6,-1],[-3,-7],[0,-11],[-3,-12],[-6,-8],[-3,-2],[3,22],[5,26],[6,71],[2,36],[2,23],[0,5],[4,4],[1,6],[-4,15],[0,7],[2,33],[4,54],[0,35],[2,22],[-1,3],[-1,6],[0,3],[0,4],[3,5],[1,3],[3,34],[1,16],[3,6],[2,4],[4,3],[2,-5],[3,-5],[4,-4],[-2,17],[-4,3],[-2,3],[-6,-7],[-2,-2],[-2,-4],[0,8],[1,13],[-1,21],[6,66],[3,5],[2,2],[4,-2],[2,-4],[1,-2],[2,-5],[1,6],[1,4],[0,5],[-4,1],[-1,-2],[-1,0],[-2,2],[-4,4],[-2,-4],[-4,-5],[0,2],[1,6],[1,5],[1,7],[0,7],[-1,5],[-3,1],[-1,1],[1,2],[2,6],[2,22],[0,12],[-2,10],[-2,9],[2,16],[0,11],[4,9],[1,11],[4,12],[0,12],[1,4],[2,3],[1,4],[0,6],[-2,5],[1,5],[2,14],[1,18],[2,27],[-3,7],[0,5],[3,11],[6,13],[2,15],[1,14],[1,8],[0,12],[0,11],[-2,7],[2,20],[1,4],[1,13],[0,12],[-3,19],[-4,3],[-4,0],[0,4],[6,3],[2,8],[1,10],[0,7],[1,7],[1,4],[1,3],[1,-1],[0,-2],[-2,-18],[5,6],[3,9],[4,8],[-10,9],[-5,11],[1,25],[3,13],[1,19],[2,5],[0,-18],[2,-16],[5,-3],[3,-6],[6,-5],[-1,4],[1,3],[1,3],[1,4],[-1,5],[-1,7],[-2,3],[-1,8],[1,13],[-8,-3],[-6,8],[-3,5],[2,8],[2,18],[1,16],[5,9],[0,12],[1,4],[2,1],[3,-3],[2,-2],[2,0],[2,2],[2,7],[-1,-1],[-2,-1],[-1,-1],[-3,1],[-2,3],[-1,5],[-3,-2],[-1,-5],[-2,-2],[-1,-7],[0,-8],[-1,-4],[-1,4],[1,18],[-1,17],[-2,5],[-5,5],[-1,5],[0,5],[-1,1],[-2,-1],[-1,4],[4,8],[1,9],[2,11],[0,34],[0,15],[-3,12],[-6,12],[2,6],[3,3],[2,8],[4,3],[5,5],[1,7],[2,13],[-2,14],[-2,26],[-4,23],[-11,47],[-9,18],[2,3],[4,1],[4,-6],[-2,-4],[3,-6],[4,0],[5,-3],[8,-9],[2,-6],[1,1],[2,-1],[1,-7],[6,-2],[3,-3],[9,2],[3,-4],[2,-5],[1,-12],[0,-8],[4,-7],[0,8],[0,9],[0,8],[6,-4],[0,3],[-2,4],[-6,11],[-3,2],[-3,0],[-4,1],[-2,3],[-3,2],[-1,3],[2,2],[6,0],[4,0],[6,2],[6,5],[3,1],[3,-5],[6,-10],[2,-5],[6,1],[26,9],[4,3],[-6,3],[0,5],[3,2],[8,-1],[4,6],[7,5],[1,5],[5,1],[6,-2],[3,-1],[4,-8],[5,-6],[5,-5],[1,-7],[1,-6],[2,-4],[4,-7],[6,-7],[17,-4],[7,1],[6,-4],[6,-1],[6,3],[4,6],[4,10],[3,5],[4,4],[-7,-1],[-12,-9],[-6,-7],[-8,0],[-8,9],[-18,22],[-5,10],[-5,11],[-4,11],[-3,6],[-7,5],[-34,-9],[-17,6],[-1,3],[-1,6],[-1,5],[-5,6],[-3,-1],[-4,-1],[-2,-1],[-1,-6],[-2,-1],[-3,2],[-2,-3],[-1,-5],[-2,-3],[-4,1],[-4,5],[-4,0],[-2,-4],[-1,-4],[-5,0],[-2,-5],[-2,-1],[-1,-4],[-2,-2],[-3,-5],[-5,1],[-5,2],[-5,4],[-4,7],[-2,3],[-5,15],[-2,3],[-3,6],[-7,2],[-4,1],[-3,-5],[-2,-1],[-2,-5],[-1,-6],[3,-3],[1,-3],[-1,-2],[-3,1],[-3,1],[-2,-3],[-2,-2],[-1,2],[1,7],[0,7],[1,7],[1,10],[1,9],[1,11],[0,18],[0,31],[0,92],[-3,28],[3,7],[3,-5],[4,-9],[-2,-4],[2,-10],[3,-10],[2,-13],[-2,-45],[1,-16],[0,-27],[2,-20],[6,-3],[5,1],[5,-2],[3,14],[4,7],[2,15],[1,0],[3,-7],[10,-5],[8,-14],[2,12],[-5,6],[-6,4],[-5,5],[-1,3],[0,6],[-1,2],[-2,0],[-2,2],[-2,3],[-3,2],[0,5],[0,9],[4,4],[4,4],[2,3],[1,4],[1,6],[-1,8],[-1,4],[-1,3],[-4,14],[-7,15],[-3,11],[4,-2],[8,-9],[5,-2],[-6,16],[-2,17],[3,14],[9,6],[10,3],[5,-2],[2,-11],[2,-7],[4,-1],[5,4],[4,6],[-9,2],[-6,10],[-6,11],[-8,10],[-4,2],[-5,6],[-3,-4],[0,-7],[-11,-2],[-7,9],[-2,-12],[2,-5],[4,-3],[-3,-3],[-4,2],[-4,0],[-4,3],[-3,2],[-1,4],[-11,9],[-7,5],[-2,10],[0,28],[-3,24],[-5,22],[1,8],[4,8],[6,-7],[-2,-14],[6,-11],[1,-9],[4,1],[5,-3],[4,-4],[1,-1],[3,6],[-1,6],[-2,5],[-2,6],[-7,-5],[0,8],[2,9],[4,4],[8,1],[4,3],[8,8],[22,14],[19,10],[-4,4],[-4,-2],[-7,5],[-23,-1],[-1,2],[3,1],[6,4],[-12,2],[-13,0],[-2,6],[2,9],[-4,11],[-6,3],[-5,3],[-7,2],[-7,1],[-6,-4],[-3,-7],[1,-4],[2,-9],[0,-9],[0,-6],[0,-5],[2,-7],[2,-6],[4,1],[1,-2],[0,-7],[-5,5],[-4,2],[-3,-1],[-1,-3],[0,-5],[-3,-1],[-4,-1],[1,6],[-1,4],[1,6],[1,17],[0,36],[-1,14],[-1,24],[-6,48],[-3,23],[-5,22],[-4,16],[-3,6],[-6,1],[-2,6],[-5,21],[4,-1],[2,-3],[2,1],[-3,5],[-7,1],[-3,2],[-8,85],[-1,28],[-7,36],[-2,16],[-8,31],[-1,22],[-2,10],[-4,2],[-3,3],[-2,7],[-6,10],[-2,20],[-16,13],[-4,11],[-3,10],[-7,4],[-5,-1],[-8,19],[-5,28],[-4,21],[-3,22],[-3,28],[1,15],[-9,30],[-4,12],[5,3],[5,10],[3,12],[0,4],[-2,4],[-3,12],[1,2],[4,2],[2,6],[0,13],[1,5],[4,9],[1,6],[-3,3],[0,5],[-2,1],[-3,2],[-4,6],[-4,6],[-3,8],[0,10],[9,2],[10,-3],[6,-2],[5,-9],[4,-1],[4,5],[5,-3],[12,-12],[20,-19],[17,-14],[14,-8],[3,-2],[11,-9],[6,-3],[7,4],[6,-3],[19,-15],[13,-10],[4,-9],[13,-14],[15,-3],[7,-4],[8,0],[7,-2],[13,0],[3,-3],[12,2],[8,-4],[13,4],[12,3],[16,-8],[2,-6],[14,-4],[5,7],[4,3],[5,-4],[3,-6],[5,-1],[8,0],[11,5],[5,0],[4,-2],[-6,-1],[-4,-2],[-4,-1],[1,-4],[8,-4],[18,0],[10,-2],[9,2],[12,-2],[6,4],[15,25],[5,8],[12,4],[-3,-3],[-3,-3],[-4,-6],[-5,-7],[5,0],[9,-2],[6,-12],[8,-6],[6,-20],[-1,-15],[4,-8],[6,-4],[3,0],[-2,24],[1,7],[12,4],[5,0],[3,-2],[2,-5],[1,-9],[2,-3],[3,0],[4,-2],[4,-8],[4,-12],[1,-11],[-6,-5],[0,-5],[6,1],[3,6],[5,18],[-4,9],[-11,17],[-1,7],[1,9],[3,8],[3,3],[9,4],[8,6],[7,0],[6,-15],[-3,-3],[-7,-5],[-2,-4],[0,-8],[2,-6],[3,-4],[1,-4],[2,-9],[11,-30],[3,-4],[5,-4],[2,-4],[0,-5],[1,-12],[2,-5],[14,-27],[2,-8],[-3,-2],[-8,-1],[-3,-1],[-2,-5],[-2,-11],[-2,-6],[-13,-23],[-3,-12],[-6,-21],[-1,-12],[-1,-9],[-1,-6],[-2,-5],[-3,-3],[-4,-1],[-4,3],[0,7],[3,11],[5,38],[0,17],[-2,22],[-3,-8],[0,-11],[-1,-11],[-5,-6],[0,12],[-2,11],[-3,3],[-3,-10],[0,-9],[3,-11],[5,-17],[-6,-8],[-4,-14],[-3,-13],[-5,-9],[-2,-13],[-2,-3],[-3,-2],[-4,-4],[-22,-41],[-3,-10],[-9,-33],[-4,-9],[-6,-8],[-5,-9],[-4,-22],[-7,-24],[-1,-9],[9,-10],[16,3],[47,30],[9,8],[9,14],[-8,2],[-11,-7],[-19,-20],[-21,-14],[-11,0],[-6,14],[0,9],[4,8],[7,16],[3,6],[11,39],[20,44],[4,4],[17,17],[21,12],[7,5],[3,5],[2,8],[4,26],[2,10],[28,57],[3,4],[3,2],[4,-2],[1,-4],[-1,-5],[1,-5],[6,-2],[2,9],[-2,13],[-4,28],[-2,5],[-5,14],[0,6],[16,-15],[7,-9],[3,-14],[0,-9],[2,-20],[2,-6],[3,-5],[1,-6],[-4,-9],[2,-2],[3,-2],[3,-4],[2,-4],[0,-7],[-2,-5],[-1,-4],[-1,-3],[-3,-1],[-13,5],[-5,-2],[1,-7],[-3,-9],[-4,-9],[-5,-3],[-15,24],[-3,-2],[1,-7],[2,-4],[3,-3],[2,-4],[1,-4],[10,-57],[-2,-4],[2,-4],[-6,-5],[-8,13],[-10,33],[-2,-5],[-2,-6],[-1,-6],[1,-8],[1,-8],[3,-4],[9,-8],[2,0],[0,-1],[-2,-7],[-3,-6],[-5,-9],[-1,-6],[14,10],[6,7],[6,8],[9,8],[3,-10],[1,-15],[2,-8],[7,-4],[-1,-10],[-3,-13],[-2,-11],[-3,-15],[-3,-14],[-2,-13],[6,-13],[-2,-8],[-3,-6],[-4,-4],[-5,-2],[7,-21],[1,-10],[-3,-12],[-4,0],[-22,14],[-7,8],[1,6],[4,5],[2,8],[2,10],[5,8],[3,10],[-2,14],[-2,-11],[-4,-5],[-9,-7],[-2,-4],[-2,-4],[-2,-4],[-3,-1],[-2,-2],[0,-5],[-1,-6],[-1,-5],[-4,-10],[-1,-9],[1,-8],[7,-17],[0,-3],[-2,-3],[-2,-5],[0,3],[-1,-2],[-2,-3],[0,-2],[0,-1],[1,-4],[1,-4],[0,-4],[-9,-11],[-7,19],[-4,27],[0,14],[5,4],[2,9],[1,11],[0,17],[0,4],[-2,9],[-2,4],[-2,3],[-1,4],[1,8],[-4,-8],[-4,-29],[-3,-11],[-7,-10],[-4,-5],[-3,-2],[-5,-1],[-2,-5],[-8,-44],[-4,-13],[-7,-10],[-15,-6],[-7,-5],[-3,-9],[4,4],[7,4],[5,0],[1,-8],[-3,-5],[-5,-2],[-6,-4],[-3,-9],[6,4],[23,25],[2,1],[1,2],[6,16],[4,-2],[-2,-9],[-12,-34],[-4,-6],[-5,-5],[7,-1],[6,5],[5,10],[3,14],[2,-6],[0,-6],[0,-6],[-2,-6],[3,-7],[2,-13],[3,-5],[4,0],[0,6],[-2,8],[-2,7],[3,6],[0,7],[-1,8],[0,7],[2,7],[11,13],[2,-5],[-1,-6],[-1,-5],[-2,-4],[4,1],[4,3],[3,3],[0,1],[-1,10],[2,3],[5,-5],[2,-5],[3,-7],[2,-6],[7,-4],[4,-5],[2,-7],[1,-6],[10,9],[10,14],[22,48],[6,19],[4,22],[0,22],[4,-6],[10,-9],[10,-13],[5,-2],[4,2],[5,7],[-5,5],[-3,4],[0,5],[2,7],[3,5],[5,5],[6,4],[9,4],[3,6],[1,9],[0,11],[-3,8],[-7,15],[-2,8],[0,25],[-1,7],[-3,8],[-2,6],[-5,27],[-1,5],[2,4],[3,7],[4,2],[3,-6],[3,-9],[3,-5],[1,12],[1,9],[-2,8],[-4,7],[-12,8],[-3,3],[-3,5],[-1,6],[1,2],[3,2],[1,4],[1,5],[2,6],[4,10],[1,6],[-1,10],[-1,9],[-3,7],[-2,8],[1,12],[1,10],[2,8],[3,7],[8,10],[4,10],[0,13],[1,9],[3,8],[0,6],[1,5],[2,3],[6,6],[2,3],[2,3],[10,3],[2,3],[6,5],[1,8],[0,8],[2,3],[1,2],[2,3],[-1,2],[-2,2],[-2,2],[-4,1],[-4,-7],[-20,23],[-9,14],[-6,20],[-1,21],[0,19],[-2,13],[-12,8],[-1,1],[-2,2],[-2,2],[-2,-1],[-2,-6],[1,-12],[-6,-6],[0,-9],[1,-11],[2,-9],[2,-6],[5,-7],[5,-5],[4,-3],[4,-4],[4,-9],[6,-19],[-5,0],[-3,4],[-5,12],[-3,4],[-23,25],[-6,10],[-4,14],[-2,15],[0,14],[0,18],[9,2],[10,4],[5,1],[5,-2],[3,-4],[2,-6],[3,-4],[3,3],[-1,6],[0,6],[5,12],[-1,3],[-1,7],[-1,4],[-2,3],[-9,13],[-8,7],[-7,10],[-4,3],[-4,2],[-4,0],[-3,4],[-6,16],[-4,5],[0,4],[5,6],[-2,4],[-5,2],[-2,0],[-2,-2],[-5,-11],[-2,-3],[-4,-3],[-5,-1],[-4,2],[-3,4],[-3,10],[1,5],[3,4],[2,5],[-2,11],[-4,4],[-4,1],[-2,3],[1,7],[4,1],[4,-1],[4,3],[7,8],[6,-10],[4,-15],[5,-10],[0,16],[3,3],[5,-5],[7,-12],[3,-5],[4,-1],[3,2],[2,6],[1,3],[-1,4],[-1,6],[-1,16],[-1,9],[-3,9],[-3,8],[-11,11],[-4,6],[6,2],[6,-4],[11,-14],[5,-3],[6,5],[2,11],[-1,13],[-4,12],[-3,3],[-2,2],[-3,2],[-2,5],[-1,6],[-2,15],[0,4],[-6,4],[1,10],[6,18],[-2,9],[-6,8],[-7,5],[-6,2],[-5,-4],[-4,-9],[-9,-21],[-3,-3],[-2,3],[-2,5],[-1,7],[1,3],[4,6],[0,3],[-2,8],[-5,10],[-5,4],[-3,-7],[1,14],[-1,9],[-2,6],[-12,16],[-3,6],[-2,7],[2,6],[2,5],[3,4],[1,3],[-4,11],[-14,-1],[-1,11],[3,6],[7,1],[13,-3],[-3,10],[-3,10]],[[15902,79484],[27,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[33,0],[28,0],[61,0],[61,0],[61,0],[61,0],[3,0],[58,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[4,0],[57,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[34,0],[27,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[40,0],[21,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[52,0],[9,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[42,0],[19,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[2,1],[2,4],[1,6],[0,58],[-1,67],[0,54],[0,33],[16,-9],[34,1],[15,-6],[20,-16],[5,-6],[3,-9],[2,-25],[3,-13],[1,-11],[-2,-26],[2,-12],[4,-12],[10,-59],[12,-66],[0,-31],[0,-12],[0,-11],[0,-10],[3,-10],[3,-7],[27,-31],[20,-13],[11,-2],[47,8],[5,-1],[3,-2],[2,-3],[3,-4],[2,-4],[1,-4],[1,-13],[0,-3],[5,-3],[55,-5],[44,-4],[11,-12],[8,-43],[8,-14],[6,-2],[39,9],[5,-3],[9,7],[21,2],[9,9],[2,9],[-1,9],[1,6],[10,4],[8,6],[36,9],[35,-3],[42,-4],[7,-3],[20,-20],[44,-18],[21,-7],[5,-10],[1,-10],[-5,-3],[-13,-5],[-5,-4],[-2,-14],[4,-8],[7,-2],[6,-3],[24,5],[12,0],[10,-8],[4,-13],[2,-10],[0,-24],[2,-14],[3,-10],[9,-18],[9,-29],[4,-6],[5,0],[7,4],[7,6],[3,6],[0,12],[-3,12],[0,12],[6,12],[6,5],[29,6],[24,-2],[7,-7],[4,-13],[2,-15],[4,-15],[4,-8],[5,-7],[5,-5],[29,-19],[24,-5],[6,-5],[5,-6],[9,-19],[-6,-15],[7,-8],[20,-5],[6,1],[2,-2],[3,-4],[0,-6],[-2,-6],[0,-5],[3,-2],[25,3],[6,-3],[5,-5],[5,-2],[17,12],[25,4],[11,11],[9,15],[37,37],[12,8],[6,6],[23,19],[14,5],[9,-9],[1,-5],[-3,-7],[0,-6],[2,-7],[2,-3],[3,-2],[3,-5],[3,-8],[1,-18],[3,-10],[10,-9],[14,0],[25,11],[7,1],[3,-4],[4,-5],[5,-3],[3,0],[8,6],[4,1],[1,-1],[2,-2],[2,-1],[81,16],[16,-1],[13,-8],[4,-6],[14,-36],[4,-7],[4,-5],[17,-13],[5,-1],[27,16],[7,2],[4,0],[5,-2],[6,-5],[4,-1],[9,3],[6,0],[18,-7],[26,-1],[10,0],[21,-9],[7,0],[6,3],[26,22],[42,34],[53,44],[34,29],[39,32],[18,8],[47,20],[9,1],[8,-4],[52,-44],[52,-44],[52,-43],[52,-44],[52,-43],[52,-44],[53,-44],[52,-44],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[35,-31],[35,-30],[35,-31],[34,-31],[35,-30],[35,-31],[34,-31],[35,-30],[5,-5],[4,-4],[5,-4],[4,-4],[5,-5],[4,-4],[5,-4],[4,-5],[4,-9],[3,-12],[5,-34],[6,-35],[8,-52],[4,-14],[22,-41],[29,-53],[6,-8],[7,-5],[8,-1],[6,3],[4,6],[3,7],[5,7],[7,13],[9,5],[10,1],[14,-12],[17,14],[13,12],[13,-3],[11,-9],[-14,-55],[3,-20],[6,-14],[6,-17],[-2,-11],[-2,-8],[2,-11],[2,-11],[2,-16],[0,-8],[1,-7],[2,-14],[9,-18],[10,-12],[1,-21],[2,-2],[4,-7],[5,-16],[3,-6],[5,-2],[5,4],[16,24],[4,5],[5,2],[6,-1],[14,-6],[28,7],[15,-2],[13,-15],[16,-25],[5,-6],[4,-9],[4,-9],[-1,-9],[-13,-36],[-12,-37],[-11,-31],[23,-22],[32,-30],[55,-52],[50,-47],[72,-68],[47,-44],[12,-23],[4,-24],[13,-124],[14,-125],[13,-124],[14,-125],[13,-124],[13,-125],[14,-124],[13,-125],[1,-6],[-1,-15],[-2,-16],[-9,-37],[-9,-36],[-9,-37],[-8,-37],[-9,-37],[-9,-37],[-9,-37],[-9,-37],[-2,-20],[1,-20],[-5,-19],[-6,-19],[-3,-21],[-1,-12],[-4,-17],[-1,-10],[3,-12],[1,-4],[0,-6],[-2,-11],[-1,-25],[-8,-43],[-4,-16],[-7,-17],[-7,-12],[-9,-6],[-10,-2],[-14,-23],[-29,-60],[-9,-12],[-31,-25],[-27,-14],[-11,-16],[-8,-19],[-6,-19],[-2,-24],[-1,-50],[-5,-41],[1,-27],[6,-35],[3,-12],[7,-27],[8,-16],[24,-24],[33,-33],[42,-43],[13,-6],[60,1],[7,3],[40,40],[40,39],[40,39],[39,40],[40,39],[40,39],[40,40],[40,39],[36,12],[35,11],[36,12],[36,12],[36,11],[31,10],[4,2],[36,11],[36,12],[43,32],[42,33],[43,32],[6,5],[36,28],[43,32],[43,32],[42,33],[43,32],[16,22],[12,29],[3,25],[-2,10],[-6,7],[-7,4],[-6,6],[-7,9],[-4,6],[-3,7],[1,12],[2,9],[0,5],[-2,5],[-3,6],[-4,7],[-2,5],[-1,6],[0,8],[1,6],[2,5],[1,5],[1,8],[0,6],[-2,53],[-1,10],[-9,39],[-23,72],[26,20],[37,29],[54,41],[18,9],[64,0],[64,-1],[64,0],[64,-1],[64,0],[65,-1],[64,0],[64,-1],[1,2],[2,1],[1,2],[2,1],[2,2],[1,1],[2,2],[1,1],[12,33],[12,32],[12,33],[12,32],[12,32],[12,33],[11,32],[12,33],[7,11],[22,29],[2,4],[1,4],[1,5],[3,5],[2,2],[31,19],[6,5],[5,10],[-1,3],[-2,14],[0,4],[8,15],[23,26],[47,31],[8,5],[4,8],[3,10],[4,15],[11,19],[10,19],[15,32],[34,47],[34,47],[31,45],[20,28],[39,36],[15,6],[5,3],[12,15],[5,4],[16,9],[10,10],[5,3],[5,0],[35,-6],[8,0]],[[10832,91718],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[1,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[2,-10],[4,-5],[19,-7],[40,-15],[30,-11],[35,-13],[4,3],[3,7],[9,24],[3,8],[5,3],[6,-1],[28,-15],[43,-24],[43,-23],[13,0],[14,12],[25,28],[27,32],[14,10],[14,4],[31,2],[29,1],[42,3],[45,2],[6,-4],[3,-11],[-2,-13],[-11,-43],[-10,-39],[-9,-36],[0,-16],[20,-25],[14,-18],[2,-3],[14,-11],[45,-23],[27,-15],[11,-9],[2,-2],[1,-4],[11,-49],[4,-12],[11,-18],[31,-34],[35,-39],[40,-44],[42,-47],[43,-49],[43,-47],[41,-45],[4,-8],[4,-11],[9,-43],[8,-37],[10,-47],[-7,-31],[0,-15],[6,-9],[9,0],[9,5],[23,28],[16,19],[30,23],[31,24],[4,4],[29,22],[29,22],[15,5],[31,-3],[17,2],[12,10],[23,49],[1,2],[5,18],[-1,57],[0,46],[15,-6],[13,-1],[13,5],[13,16],[8,25],[-4,17],[-11,11],[-14,10],[25,17],[32,9],[33,10],[28,8],[26,16],[53,32],[44,27],[5,-2],[17,-22],[16,-13],[24,-19],[10,-14],[9,-16],[9,-15],[14,-6],[5,-3],[16,-20],[4,-8],[0,-10],[-1,-30],[-1,-9],[-4,-9],[-11,-14],[-5,-12],[29,-22],[-3,-8],[-3,-9],[-1,-10],[10,-23],[7,-9],[7,-6],[25,-8],[27,-8],[11,-2],[3,-3],[3,-8],[3,-17],[3,-7],[14,-22],[8,-9],[7,-4],[13,0],[9,-5],[7,-10],[15,-27],[3,-9],[1,-11],[-4,-26],[15,-3],[4,-4],[3,-6],[-1,-2],[-2,-2],[-1,-7],[2,-10],[3,-8],[26,-36],[31,-20],[35,-23],[31,-20],[12,-11],[9,-14],[27,-56],[20,-31],[22,-24],[24,-26],[19,-35],[-10,-19],[4,-24],[11,-24],[33,-47],[25,-38],[7,-15],[13,-52],[6,-15],[22,-39],[21,-37],[24,-52],[34,-76],[22,-50],[22,-48],[27,-46],[26,-44],[16,-39],[20,-50],[-13,-28],[-18,-40],[50,-18],[36,-13],[-21,-101],[66,-38],[1,-5],[-1,-8],[-3,-8],[-2,-6],[1,-7],[1,-5],[5,-9],[7,-18],[2,-11],[1,-12],[-1,-24],[2,-6],[7,-3],[30,-2],[29,6],[7,-1],[7,-5],[12,-15],[41,-33],[36,-30],[32,-27],[23,-12],[50,-9],[22,-16],[31,-49],[12,-9],[30,-9],[7,-4],[4,-9],[8,-39],[3,-9],[4,-4],[31,-13],[13,-5],[9,-1],[26,9],[7,-2],[6,-10],[9,-23],[3,-13],[2,-13],[2,-23],[-1,-26],[-1,-7]],[[13883,83579],[-1,-4],[-7,-17],[-15,-28],[-9,-11],[-4,-7],[-4,-14],[-1,-3],[-1,-4],[0,-6],[0,-5],[2,-4],[1,-4],[-2,-7],[3,-9],[4,-6],[3,-8],[2,-13],[-1,-11],[-2,-10],[-5,-20],[1,-4],[1,-5],[0,-13],[10,-23],[3,-17],[1,-5],[9,-15],[2,-7],[1,-12],[0,-28],[1,-13],[3,-9],[14,-27],[-12,-12],[-5,-7],[-5,-8],[-3,-3],[-6,-2],[-1,-3],[-1,-8],[-1,-7],[-1,-5],[-3,-6],[-7,-11],[-3,-5],[-2,-15],[-1,-7],[-8,-8],[-3,-12],[-5,-24],[-3,-5],[-6,-7],[-2,-4],[-2,-5],[-3,-14],[-2,-7],[-9,-12],[-2,-8],[-9,-18],[-5,-7],[-13,-9],[-16,-22],[-25,-22],[-7,-3],[0,8],[10,16],[2,5],[-2,2],[-3,0],[-2,-1],[-6,-8],[-18,-40],[-2,-3],[-3,-2],[-4,2],[-4,4],[-3,7],[0,8],[5,3],[6,2],[3,5],[-3,12],[-4,9],[-3,10],[-2,12],[-2,12],[0,5],[1,13],[-1,6],[-1,5],[-3,6],[-2,1],[-1,-7],[0,-38],[1,-12],[4,-11],[1,-6],[-1,-7],[-2,-6],[-3,-1],[-3,2],[-3,5],[-3,-17],[-5,-15],[-7,-7],[-10,4],[-14,18],[-5,13],[2,16],[-1,1],[-3,3],[2,13],[-2,8],[-4,9],[-1,11],[5,-2],[3,9],[-2,11],[-7,6],[-3,8],[-2,5],[-3,3],[-5,1],[0,5],[4,10],[3,12],[4,11],[6,7],[13,6],[13,12],[7,1],[3,-3],[1,-5],[0,-5],[1,-3],[4,-1],[10,1],[2,2],[3,1],[4,-2],[3,0],[2,16],[2,7],[5,12],[11,20],[23,30],[25,51],[4,13],[-6,-1],[-3,-4],[-3,-5],[-6,-5],[-8,-11],[-2,-5],[-9,-32],[-6,-15],[-15,-12],[-7,-11],[-18,-38],[-4,-3],[-5,4],[-2,6],[-2,16],[-2,6],[-8,-5],[-3,-3],[-9,-14],[-2,-2],[-22,-12],[-7,0],[-5,5],[-7,9],[-5,10],[-2,10],[0,26],[2,7],[15,25],[7,6],[6,3],[0,3],[5,15],[4,5],[4,0],[8,-3],[69,1],[3,1],[3,2],[-13,11],[-3,8],[6,6],[-3,8],[-3,-1],[-12,-18],[-4,-3],[-30,-6],[-8,4],[-3,18],[-4,65],[4,49],[2,9],[-2,43],[-1,8],[-7,18],[-1,9],[1,5],[3,6],[1,5],[0,4],[-4,7],[-3,12],[-10,14],[-3,7],[9,10],[2,6],[-4,5],[-2,-1],[-7,-7],[-4,1],[-4,2],[-3,4],[-2,1],[-2,5],[-11,30],[-5,7],[-15,19],[0,2],[2,6],[-6,0],[-5,3],[-3,7],[0,11],[-6,1],[4,9],[12,18],[27,24],[-3,0],[-7,0],[3,8],[16,24],[-15,-10],[-6,-5],[-6,-9],[-5,-12],[-3,-6],[-8,-5],[-7,-11],[-28,-15],[-3,-4],[-3,-6],[-8,-6],[-8,4],[-7,11],[-5,14],[-5,-8],[-8,-7],[-6,-3],[-4,6],[-19,-26],[-7,-3],[-8,1],[-2,-1],[-1,-2],[-1,-2],[-1,-3],[-5,-3],[-7,-8],[-6,-4],[-7,-8],[-2,-2],[-5,-1],[-9,1],[-6,0],[-3,-3],[-7,-7],[-3,-3],[-5,0],[-4,0],[-4,0],[-4,-4],[6,-2],[19,-14],[13,-4],[3,-5],[1,-11],[-3,-16],[-2,-10],[-3,-7],[-5,-8],[-4,-2],[-12,2],[10,-19],[1,-17],[-6,-15],[-10,-14],[0,-3],[1,-6],[0,-3],[-34,41],[3,-6],[7,-14],[1,-7],[3,-6],[5,-8],[2,-6],[-6,2],[0,-4],[4,-5],[3,-8],[0,-9],[-1,-10],[-1,-3],[-3,-2],[-2,-3],[-1,-7],[-2,-3],[-4,2],[-6,8],[-38,28],[-10,14],[-4,16],[-8,49],[-4,10],[-5,5],[-4,10],[-2,9],[6,5],[5,-4],[11,-16],[6,-4],[-3,17],[-1,15],[1,10],[2,5],[8,1],[19,-1],[4,1],[3,7],[-2,7],[-9,10],[5,10],[5,10],[4,9],[-1,10],[-4,11],[-1,9],[4,6],[7,4],[14,-2],[4,2],[1,6],[-1,12],[2,3],[1,6],[-6,38],[0,51],[4,5],[17,11],[21,7],[32,0],[28,-11],[5,1],[6,5],[8,15],[4,5],[7,0],[-7,4],[-6,-2],[-14,-10],[-8,-2],[-6,1],[-14,6],[-53,4],[-8,6],[-15,36],[-1,10],[-2,27],[-2,5],[-7,1],[-16,8],[-4,1],[-4,-3],[-4,-2],[-11,9],[-3,-5],[-2,0],[-6,29],[-1,13],[-4,12],[-9,7],[-14,6],[-1,3],[-13,15],[-3,3],[-1,5],[-1,9],[1,16],[3,13],[9,23],[-6,-1],[-12,-9],[-21,-10],[-8,-1],[-12,13],[-6,3],[-3,4],[4,13],[4,8],[5,2],[13,-2],[-3,10],[-5,4],[-6,2],[-6,4],[14,21],[5,8],[0,5],[13,11],[1,5],[-1,5],[1,5],[3,2],[6,0],[3,1],[2,2],[-5,5],[-6,-1],[-5,-5],[-5,-6],[1,-7],[-6,-4],[-7,-1],[-3,-3],[-2,-11],[-5,-4],[-6,2],[-38,26],[-24,26],[-4,6],[-1,3],[-1,8],[-1,3],[-1,3],[-15,16],[-4,1],[-1,3],[0,11],[-1,2],[-4,3],[-5,7],[-4,8],[-3,7],[7,4],[4,1],[4,-1],[5,-9],[3,-4],[3,3],[5,1],[7,-4],[5,1],[-1,16],[-11,35],[1,6],[2,2],[2,6],[1,5],[-2,3],[-3,-2],[-7,-7],[-2,-3],[-6,-22],[-5,-8],[-5,3],[-7,9],[-6,3],[-11,-2],[-3,2],[-13,13],[-7,4],[-4,4],[-3,2],[-6,1],[-5,0],[-4,-3],[-1,-1],[-2,1],[-2,2],[-1,2],[0,4],[2,3],[1,3],[2,6],[1,3],[1,5],[-2,6],[8,2],[-4,10],[-9,5],[-6,-12],[4,0],[0,-5],[-10,1],[-3,3],[3,8],[-2,6],[-2,3],[-3,-1],[-2,-3],[-2,-21],[-5,-12],[-6,-7],[-8,1],[-13,15],[-16,10],[-6,2],[-2,1],[-7,9],[-3,2],[-9,2],[-5,2],[-4,3],[0,4],[6,2],[7,7],[5,11],[-2,11],[-3,7],[1,1],[2,2],[1,6],[2,6],[3,3],[9,1],[52,-2],[20,15],[2,2],[1,4],[2,2],[16,0],[5,2],[8,5],[6,9],[0,12],[-4,0],[-13,-16],[-6,-4],[-16,0],[-3,-1],[-6,-5],[-4,-2],[-5,1],[-8,5],[-5,2],[-28,1],[-8,6],[-6,8],[-4,13],[10,9],[5,2],[12,2],[4,2],[1,4],[1,10],[0,5],[-2,3],[-2,-2],[-5,-5],[-3,-1],[-7,2],[-3,0],[-3,-4],[-3,-1],[-5,5],[-4,7],[-9,19],[-1,6],[0,10],[2,17],[2,4],[4,8],[10,10],[26,4],[9,10],[-5,2],[-23,-1],[-7,-3],[-6,-6],[-20,-4],[-16,1],[-4,3],[-12,22],[-3,3],[1,7],[3,32],[-1,9],[4,3],[4,1],[8,0],[2,1],[3,3],[2,0],[2,-1],[3,-6],[4,-3],[3,-4],[4,-8],[4,-4],[15,-2],[64,-47],[12,-6],[2,-4],[6,-10],[2,-2],[5,-4],[12,-19],[7,-6],[3,0],[4,2],[3,3],[1,4],[-2,2],[-19,9],[-5,8],[-8,17],[-8,12],[-2,8],[0,8],[-5,-2],[-9,2],[-7,6],[-3,9],[-31,18],[-10,16],[-6,6],[-14,5],[-8,6],[-8,8],[-5,8],[-2,16],[-2,58],[2,15],[4,1],[13,-5],[17,0],[9,-3],[15,-11],[8,-3],[3,1],[4,3],[3,1],[3,-2],[7,-5],[28,-13],[5,1],[-2,5],[-15,15],[-6,3],[-97,20],[-5,-3],[-3,-8],[-2,-13],[0,-4],[1,-8],[-1,-6],[-3,4],[-2,3],[-4,6],[-3,5],[-1,-12],[4,-23],[-3,-14],[-7,-11],[-7,2],[-6,11],[-10,21],[-17,32],[-1,4],[-1,5],[0,7],[-2,4],[-12,14],[14,17],[5,3],[5,0],[3,-5],[3,-7],[5,-8],[5,-6],[4,-3],[3,1],[1,8],[-2,20],[1,7],[6,6],[0,3],[-17,2],[-6,6],[-3,19],[4,9],[9,12],[5,11],[-5,7],[0,4],[6,2],[3,3],[3,3],[-2,4],[-5,-4],[-16,-8],[0,-4],[4,-5],[-2,-8],[-17,-36],[-1,-10],[4,-10],[-18,-15],[-5,-1],[-7,0],[-3,1],[-3,2],[-1,2],[-1,5],[-2,1],[-1,2],[-5,2],[-1,1],[-2,5],[0,5],[0,4],[-3,2],[-4,1],[-2,2],[-2,4],[0,7],[-2,5],[-3,1],[-4,-1],[-3,1],[-1,4],[-3,20],[5,-1],[2,2],[1,3],[0,5],[-2,4],[-5,7],[-3,5],[-1,5],[0,7],[-1,7],[1,5],[1,7],[2,4],[2,4],[2,6],[1,5],[0,5],[-1,4],[0,6],[0,2],[-1,3],[-1,3],[0,4],[2,2],[8,-2],[6,5],[5,7],[3,6],[0,3],[-2,3],[-1,4],[-4,24],[-1,11],[1,10],[3,2],[6,4],[3,2],[3,6],[1,4],[-1,4],[1,6],[8,25],[12,7],[29,5],[0,4],[-32,0],[-13,-4],[-7,-3],[-5,-5],[-1,-10],[2,-22],[-4,-5],[-6,-1],[-11,-9],[-7,-2],[0,-4],[6,-4],[2,-11],[-2,-13],[-3,-10],[-5,-8],[-12,-11],[-5,-8],[-1,-12],[4,-7],[6,-6],[3,-9],[-1,-5],[-3,-4],[-9,-14],[-3,-3],[-4,-1],[-5,0],[-14,7],[-56,64],[-5,3],[-3,2],[-5,11],[-3,3],[-15,0],[-4,1],[-8,6],[-4,1],[-3,-2],[-1,-5],[-1,-3],[-4,2],[0,5],[-1,8],[-2,6],[-4,-1],[-5,-3],[-9,-3],[-4,-1],[-6,5],[-3,11],[-2,14],[-1,31],[-2,10],[-4,6],[-8,5],[0,4],[1,1],[1,1],[1,1],[1,1],[-10,6],[-7,11],[-7,13],[-10,28],[-11,21],[-5,15],[9,-10],[4,-2],[4,3],[1,-2],[2,-3],[1,-3],[-1,14],[-3,11],[-3,11],[4,23],[-2,14],[-3,13],[-1,12],[-4,-3],[-3,-2],[-3,1],[-4,4],[-2,-8],[-5,-8],[-2,-5],[1,-5],[2,-5],[0,-4],[-3,-6],[1,-4],[1,-4],[-8,9],[-14,34],[-11,14],[-2,6],[1,8],[5,22],[-5,7],[-2,10],[-2,12],[0,14],[-1,14],[-3,8],[-4,7],[-4,10],[-1,4],[-1,16],[-3,16],[0,6],[-2,13],[-12,34],[-8,17],[-9,16],[-8,19],[-1,25],[8,52],[2,30],[-5,11],[-3,-8],[-8,-49],[-4,-32],[-3,-12],[-6,8],[-9,-5],[-17,9],[-7,0],[6,-6],[14,-9],[6,-8],[8,-17],[1,-3],[0,-4],[1,-2],[3,-2],[4,-2],[4,-5],[7,-5],[1,-4],[1,-6],[5,-21],[-1,1],[0,-2],[-1,-4],[0,-3],[1,-2],[6,-8],[2,-5],[1,-7],[0,-7],[-1,-7],[-3,8],[-11,8],[-5,6],[-3,9],[-1,18],[-1,8],[-8,13],[-13,12],[-13,6],[-10,-3],[4,-9],[15,-19],[3,-8],[6,-17],[5,-8],[9,-10],[5,-6],[3,-8],[-1,-10],[-2,-10],[-1,-9],[4,-8],[-3,-5],[-1,-6],[1,-5],[3,-4],[-3,-9],[0,-13],[2,-10],[4,-5],[10,-5],[2,-3],[0,-6],[-4,-10],[1,-6],[10,-25],[18,-38],[-3,-14],[0,-10],[3,-9],[17,-41],[2,-7],[-5,-6],[-8,-2],[-5,-5],[3,-14],[13,-26],[4,-15],[2,-3],[1,-2],[1,-3],[-1,-6],[0,-3],[2,-4],[7,-15],[3,-9],[12,-55],[1,-11],[0,-14],[-1,-6],[-3,1],[-3,3],[-3,-2],[-1,-4],[0,-18],[0,-6],[1,-4],[0,-2],[-1,-4],[-3,-3],[-9,-8],[-3,-2],[-7,2],[-38,19],[-11,15],[-9,20],[-6,26],[-2,18],[-2,6],[-8,16],[-3,14],[-3,13],[-5,10],[-6,0],[-2,-11],[4,-12],[7,-11],[3,-9],[1,-14],[-1,-6],[-4,-3],[-4,2],[-4,3],[-7,8],[-17,15],[-9,4],[-7,-5],[-7,-7],[-58,-16],[-7,1],[0,8],[2,16],[4,16],[4,8],[-6,1],[-15,-5],[0,4],[4,0],[3,3],[3,4],[3,2],[4,0],[11,-5],[-3,13],[1,5],[3,5],[1,12],[-1,11],[-3,7],[-4,5],[-5,3],[0,5],[19,12],[-4,2],[-11,3],[-2,1],[-1,1],[-15,41],[-4,7],[-7,2],[1,3],[2,5],[1,3],[-3,8],[-4,9],[-5,9],[-4,3],[-3,4],[-7,19],[-4,5],[3,8],[27,22],[5,5],[5,6],[-2,-10],[5,-1],[44,15],[-4,10],[-7,5],[-38,2],[-8,3],[2,-5],[2,-3],[6,-4],[-4,-6],[-20,-19],[-4,-2],[-5,3],[0,5],[-1,2],[-1,4],[0,5],[1,5],[4,11],[1,4],[-7,5],[-5,10],[-5,11],[-2,11],[-1,8],[0,6],[0,4],[-3,6],[-3,5],[-4,2],[-5,1],[-3,-3],[4,-6],[4,-10],[1,-10],[-3,-7],[2,-13],[-7,-8],[-10,-5],[-6,-7],[20,6],[9,1],[5,-11],[-4,-3],[-2,-1],[0,-4],[5,-4],[2,-11],[-1,-13],[-2,-12],[-7,-17],[-1,-6],[0,-5],[-1,-3],[-2,-2],[-3,-6],[-14,-10],[-17,8],[-31,25],[0,3],[19,-1],[10,2],[5,7],[-8,0],[-24,5],[-14,-6],[-7,0],[-7,8],[-5,16],[-4,24],[-1,22],[5,13],[0,4],[-9,-2],[-5,-6],[-8,-25],[-18,31],[-10,21],[-5,9],[-6,4],[29,-69],[-7,-10],[-7,4],[-6,9],[-7,5],[-3,1],[-5,2],[-5,4],[-7,9],[-14,5],[-4,3],[-9,13],[-12,10],[-8,13],[-18,18],[-6,8],[-3,1],[-4,-3],[-1,-5],[0,-7],[3,-3],[6,-3],[6,-7],[10,-18],[12,-13],[5,-9],[2,-13],[-4,-7],[-26,1],[-5,-5],[-10,-23],[-5,-3],[-5,-6],[-8,-15],[0,-5],[6,2],[6,5],[6,8],[9,16],[5,6],[6,3],[27,0],[15,-6],[4,-3],[3,-4],[1,-5],[1,-5],[0,-4],[3,-4],[2,8],[4,7],[5,4],[6,1],[3,-2],[8,-10],[7,-1],[3,-1],[3,-4],[2,-3],[5,0],[5,0],[6,6],[3,-3],[3,-4],[2,-2],[5,-3],[15,-17],[-3,-9],[-4,-3],[-5,1],[-5,-1],[2,-5],[-7,9],[-6,13],[-8,10],[-9,-3],[1,-8],[5,-1],[15,-15],[-3,-4],[-3,-1],[-3,0],[-3,0],[15,-6],[5,-6],[4,0],[2,-2],[1,-4],[-1,-3],[-1,-3],[0,-4],[2,-8],[1,-5],[2,-3],[5,0],[4,-3],[6,-11],[5,-3],[-4,12],[-6,9],[-5,10],[-3,16],[2,1],[30,-14],[3,-3],[2,-6],[4,-5],[3,-6],[-1,-8],[-3,-4],[-11,-10],[-17,-19],[-9,-6],[-8,5],[-2,-4],[11,-11],[3,-2],[3,2],[9,15],[9,3],[6,-5],[7,-7],[7,-3],[-2,5],[-5,7],[-1,4],[1,6],[3,2],[2,0],[2,0],[3,-2],[2,-4],[2,-1],[3,3],[-1,7],[-1,7],[2,6],[3,-5],[27,-27],[0,-4],[-2,0],[-2,-1],[-4,-3],[3,-4],[7,-13],[4,0],[5,1],[4,-2],[2,-9],[-1,-2],[-4,0],[-3,-2],[-1,-8],[-2,-5],[-5,-2],[-9,1],[4,-9],[5,-1],[10,6],[3,1],[14,-2],[0,-3],[-1,-4],[0,-4],[0,-4],[1,-4],[1,-3],[2,-1],[3,-2],[0,-5],[0,-5],[0,-5],[7,-30],[3,-6],[-9,-17],[-5,-8],[-6,-4],[-8,-2],[-17,-8],[-24,-6],[-4,4],[1,6],[4,7],[1,3],[-2,8],[-15,29],[0,-17],[-4,-2],[-19,10],[-13,14],[-7,3],[-2,2],[-2,9],[-2,1],[-3,-4],[1,-4],[3,-8],[0,-18],[-4,-3],[-6,2],[-7,-6],[3,-1],[1,-3],[2,-2],[1,-2],[3,-1],[5,-5],[2,-2],[6,1],[0,3],[-2,6],[1,9],[3,4],[1,1],[7,-3],[7,0],[2,-1],[1,-3],[1,-3],[0,-1],[7,-5],[4,-4],[1,-7],[0,-15],[-3,-9],[-6,1],[-12,10],[-16,-3],[-5,3],[-2,3],[-1,4],[-1,4],[-3,1],[-4,1],[-3,2],[-3,3],[-3,5],[-4,1],[-6,-3],[-10,-9],[22,-34],[3,-2],[1,-4],[0,-8],[-1,-5],[-7,-13],[-2,-3],[-10,3],[-1,-1],[-4,-3],[-4,0],[-3,2],[-4,4],[-4,10],[-2,12],[3,9],[9,1],[0,3],[-1,7],[-1,2],[-5,-4],[-4,-1],[-4,3],[-2,6],[-3,-3],[-2,-4],[-4,-2],[-3,1],[-3,5],[2,3],[2,4],[-1,5],[-4,3],[-10,-8],[-7,5],[2,2],[3,7],[1,2],[-2,9],[-3,7],[-4,6],[-4,3],[-1,-15],[-3,-8],[-4,1],[-2,12],[-3,10],[-7,7],[-9,4],[-8,1],[-4,-1],[-12,-7],[-3,-1],[-10,1],[-5,4],[-19,24],[-17,8],[-11,11],[-6,4],[-5,8],[-2,2],[-4,1],[-31,32],[-13,7],[-12,15],[-7,6],[-9,1],[-3,2],[2,5],[5,2],[10,0],[4,2],[12,13],[4,3],[4,1],[9,0],[4,3],[-6,10],[-3,5],[-3,2],[-4,-2],[-8,-9],[-4,-2],[-8,-2],[-21,-14],[-8,-1],[-2,8],[-1,12],[-6,12],[-46,47],[-7,9],[-2,3],[-4,2],[-3,3],[-1,5],[0,7],[2,11],[0,8],[-6,24],[-11,19],[-56,62],[-18,14],[-9,8],[-1,11],[-21,0],[-10,2],[-9,6],[9,-1],[4,1],[4,4],[-16,6],[-37,-3],[-14,13],[19,-3],[10,1],[4,8],[-1,7],[0,2],[3,7],[3,3],[8,4],[2,4],[-3,5],[-31,-7],[-6,-5],[-4,-2],[-9,0],[-4,-1],[-3,-2],[3,-5],[3,-7],[-7,9],[-9,11],[-10,9],[-12,5],[-13,8],[-6,8],[-40,28],[-62,27],[6,3],[12,-9],[6,2],[-10,13],[-3,3],[-5,0],[-5,0],[-5,0],[-4,4],[-1,8],[2,4],[1,4],[-4,4],[-4,0],[-5,-2],[-4,-3],[-2,-5],[-3,-8],[-6,3],[-7,7],[-7,4],[-9,2],[-10,6],[-10,8],[-7,9],[22,-9],[11,-11],[6,-1],[7,2],[5,7],[-11,9],[-7,2],[-5,-2],[-5,-3],[-5,1],[-6,3],[-12,10],[-5,6],[-3,2],[-17,8],[-72,53],[6,7],[19,-6],[9,3],[-1,2],[-1,6],[6,0],[4,2],[4,6],[3,9],[3,-7],[3,-5],[4,-1],[4,4],[-2,4],[4,5],[13,11],[-4,5],[3,10],[14,23],[13,15],[2,8],[-18,24],[-2,4],[-4,5],[-3,10],[-3,22],[-7,22],[-4,16],[2,7],[3,2],[6,11],[3,3],[3,1],[4,3],[7,9],[8,19],[5,6],[7,-8],[5,-9],[17,-21],[18,-39],[1,-9],[-9,-21],[-3,-16],[1,-8],[2,-21],[-2,-6],[0,-4],[4,-3],[2,-3],[2,-3],[1,-3],[2,-12],[7,-20],[3,-15],[-6,0],[-7,-3],[-6,-4],[-3,-5],[15,-14],[6,-2],[3,3],[9,25],[-2,7],[-8,16],[-1,4],[0,19],[-1,10],[-1,9],[-2,3],[-2,1],[-1,3],[-1,8],[1,3],[4,9],[2,2],[2,4],[-5,20],[0,8],[4,5],[26,5],[38,-2],[7,-3],[11,-15],[7,-6],[7,-1],[6,5],[-3,0],[-4,0],[-6,4],[-19,22],[-4,3],[-53,5],[-6,4],[-22,36],[-10,7],[-4,8],[-3,9],[-3,7],[-6,7],[-14,6],[-5,6],[-7,14],[-4,3],[-6,-3],[0,-5],[-10,-18],[-3,-12],[1,-13],[0,-6],[-2,-2],[-9,-1],[-9,-4],[-13,-13],[-8,-13],[-17,-27],[-15,-20],[-30,-15],[-24,-15],[-26,-17],[-33,-18],[-19,-5],[-49,2],[-32,2],[-21,6],[-20,6],[-28,10],[-41,26],[-29,12],[-44,23],[-22,9],[-21,5],[-7,6],[-4,12],[3,8],[6,5],[7,3],[-6,-6],[-3,-4],[-3,-6],[5,-4],[6,2],[17,12],[2,3],[2,2],[7,2],[8,5],[3,2],[2,7],[1,11],[1,12],[0,11],[-2,10],[-3,9],[-4,7],[-5,6],[2,0],[6,0],[-7,12],[-11,7],[-9,9],[0,17],[-18,-4],[-9,-6],[0,-9],[6,-19],[2,-3],[4,-1],[4,-2],[5,-9],[4,-11],[-2,-7],[-6,-5],[-16,-3],[-39,-24],[-17,-4],[-16,1],[-45,26],[-21,12],[-37,4],[-26,11],[-43,9],[-38,4],[-42,16],[-44,6],[-51,-12],[-60,-14],[-74,-9],[-41,-2],[-38,-14],[-32,-15],[-15,-2],[-35,18],[-17,2],[-40,1],[32,4],[28,-3],[8,3],[-5,13],[-8,11],[-43,39],[-4,2],[-6,0],[-3,3],[3,7],[10,10],[2,1],[2,1],[1,4],[-1,5],[-2,2],[-2,0],[-2,-3],[-10,-7],[-28,8],[-11,-3],[4,-8],[-21,-4],[-4,2],[-4,4],[-2,6],[3,5],[-4,7],[-8,-4],[-8,-8],[-7,-4],[-8,4],[-16,11],[-8,6],[4,1],[3,-2],[2,-2],[4,-2],[0,3],[-6,14],[-9,16],[-12,7],[-2,3],[-3,4],[-4,4],[-4,2],[-3,-2],[-4,-5],[-3,2],[-2,3],[-3,0],[-3,-1],[-4,2],[-3,-1],[-4,-6],[-5,0],[-3,1],[-3,2],[-4,5],[2,6],[5,6],[8,14],[1,3],[-1,5],[-2,1],[-2,0],[-1,2],[-2,7],[0,4],[4,5],[4,3],[4,1],[9,0],[0,4],[-6,5],[5,11],[14,17],[-1,6],[0,9],[-1,5],[-9,-13],[-6,-4],[-6,1],[-3,8],[2,6],[2,4],[3,2],[4,7],[3,3],[1,2],[0,3],[0,4],[0,4],[1,1],[3,3],[0,7],[-1,12],[1,7],[2,5],[5,7],[6,6],[2,3],[2,7],[0,6],[-2,7],[1,5],[4,2],[8,-3],[8,-4],[7,-3],[8,6],[4,6],[1,5],[1,6],[-1,9],[-2,2],[-3,-2],[-20,-6],[-8,-5],[-6,-6],[-4,-9],[-4,-11],[-5,-9],[-15,-8],[-4,-10],[-2,-12],[-4,-10],[-5,-6],[-18,-12],[-7,-3],[-5,-4],[-6,-9],[-9,-19],[-7,-20],[-5,-9],[-13,-7],[-20,-29],[-10,-7],[-10,-1],[-23,4],[-4,2],[-3,4],[-6,8],[-9,4],[-4,2],[-2,4],[-2,12],[-2,5],[-3,3],[-10,3],[-6,6],[-28,4],[-16,4],[-20,-6],[-17,-4],[-21,5],[0,9],[5,5],[12,4],[4,5],[5,7],[21,21],[25,39],[2,6],[2,10],[5,6],[5,4],[3,6],[-3,10],[-6,-3],[-11,-11],[-42,-21],[-10,5],[11,6],[6,6],[4,8],[-6,1],[-10,-5],[-5,4],[6,8],[3,6],[2,7],[-5,-2],[-7,-5],[-6,-8],[-6,-16],[-7,-5],[-15,-1],[3,8],[3,5],[8,7],[3,5],[5,11],[3,4],[-7,3],[-7,-6],[-8,-9],[-6,-4],[-8,-2],[-43,-21],[-11,-2],[-5,7],[0,2],[-1,1],[-1,2],[0,3],[1,2],[4,1],[2,1],[2,4],[32,29],[10,3],[3,2],[2,5],[1,6],[2,2],[7,-4],[2,4],[0,3],[-5,13],[1,5],[1,4],[-2,3],[-2,1],[-2,0],[-1,-1],[-1,-2],[-3,-10],[-7,-10],[-13,-10],[-7,-3],[-4,2],[0,6],[6,8],[-14,-4],[-3,-3],[-3,-5],[-2,-6],[-3,-5],[-4,-2],[-9,1],[-3,3],[-1,8],[0,8],[2,4],[3,3],[2,5],[-8,-4],[-11,-23],[-10,-7],[-8,-9],[-2,-3],[-3,-3],[-13,-6],[-3,0],[-6,7],[-9,2],[-27,-2],[-2,1],[0,4],[0,3],[-1,4],[-2,4],[-9,12],[5,4],[5,-1],[5,-6],[4,-5],[2,12],[1,5],[3,4],[4,-1],[8,-9],[8,5],[8,-9],[3,3],[1,7],[-4,5],[-5,2],[-4,0],[6,5],[7,-1],[13,-4],[5,1],[11,6],[12,3],[22,13],[19,5],[0,5],[-9,2],[-3,6],[4,5],[8,3],[28,-8],[-36,30],[-8,-4],[-8,-16],[-10,-13],[-11,-8],[-12,-2],[0,5],[1,2],[1,2],[2,8],[-35,-18],[-13,6],[1,10],[-3,5],[-5,0],[-5,-5],[-5,-8],[-2,-3],[-1,5],[1,12],[5,5],[1,3],[-1,5],[-3,4],[-3,2],[-3,1],[-4,-2],[-3,-3],[-5,0],[-5,5],[0,2],[-4,10],[-2,4],[-2,2],[-1,3],[0,6],[-5,12],[0,6],[7,0],[4,-3],[6,-7],[24,-6],[6,4],[-10,6],[-13,5],[-9,8],[2,15],[2,6],[3,12],[3,5],[6,1],[14,-6],[5,-3],[1,2],[1,6],[0,3],[-12,4],[-6,4],[-5,8],[26,8],[76,-3],[13,8],[-12,16],[-6,6],[-7,3],[-16,-2],[-14,3],[-17,-3],[-25,2],[-7,-4],[-6,-7],[-12,-18],[-13,-14],[-26,-19],[-11,-16],[-5,-12],[-5,-8],[-6,-6],[-10,-7],[-8,-2],[-8,1],[-7,6],[10,15],[4,9],[-1,4],[-6,1],[-1,-1],[-2,-2],[0,-2],[0,-3],[-1,-1],[-4,-6],[-3,-2],[-4,0],[3,8],[2,6],[-2,5],[-11,3],[-3,0],[-6,-8],[-8,-6],[0,-9],[1,-8],[0,-5],[-5,-2],[-6,1],[-4,5],[-2,9],[-1,11],[1,8],[1,3],[-2,0],[-12,-12],[-3,-1],[-4,7],[-2,2],[-2,-7],[2,-6],[6,-10],[2,-6],[0,-12],[-3,-5],[-12,1],[2,-5],[-11,-14],[-6,-5],[-2,5],[-3,9],[-6,-1],[-7,-4],[-5,-2],[3,14],[16,35],[-6,3],[-4,-6],[-5,-9],[-4,-4],[-3,4],[2,11],[5,11],[3,6],[-8,-1],[-5,-6],[-7,-19],[-4,-25],[-4,-11],[-5,3],[-1,43],[2,11],[2,8],[2,8],[-2,14],[3,3],[8,6],[2,2],[0,6],[-3,3],[-2,1],[-2,3],[-3,8],[-2,10],[1,8],[4,6],[-4,3],[-5,2],[-5,-1],[-4,-4],[-1,-8],[1,-5],[3,-4],[1,-5],[-2,-15],[-4,-16],[-6,-14],[-5,-5],[-5,-2],[-5,-3],[-2,-3],[4,-1],[8,1],[2,-1],[2,-5],[-1,-3],[-2,-2],[-1,-2],[-1,-3],[-2,-5],[-1,-2],[1,-5],[3,-1],[3,0],[2,-2],[1,-7],[-2,-15],[2,-9],[1,-14],[-1,-10],[-3,-4],[-15,-2],[-5,4],[5,21],[-6,-1],[-7,-5],[-5,-1],[-1,7],[2,10],[3,11],[3,5],[0,4],[-7,-2],[-11,-11],[-5,1],[0,-3],[-1,-1],[-1,-5],[7,-3],[-2,-7],[-10,-14],[10,-5],[1,-1],[2,-2],[2,-5],[2,-5],[-1,-2],[-3,-2],[-5,-5],[-3,-1],[-21,6],[-5,4],[-3,6],[-3,8],[-2,12],[-2,4],[-2,5],[-2,3],[-23,19],[-5,2],[-3,3],[4,7],[10,12],[0,3],[-1,2],[0,2],[1,3],[3,4],[6,1],[3,3],[3,9],[5,16],[3,8],[-4,3],[-1,0],[5,13],[9,14],[11,13],[8,5],[3,4],[9,16],[4,5],[12,6],[4,7],[-3,11],[-7,-10],[-4,-1],[-4,3],[12,22],[2,10],[-4,4],[-5,-2],[-4,-6],[-7,-16],[-13,-24],[-3,-4],[-8,-6],[-10,-12],[-15,-27],[-10,-31],[-6,-15],[-8,-6],[-6,-2],[-2,2],[-2,2],[-2,8],[-6,10],[-2,9],[-3,7],[-5,4],[3,11],[-2,3],[-4,-2],[-10,-8],[-17,-4],[-6,-4],[-7,-7],[-24,-5],[-5,-5],[3,-2],[7,-2],[4,-4],[-3,-3],[-6,-10],[-2,-5],[-3,-3],[-11,-7],[0,-4],[11,-3],[9,7],[18,25],[9,8],[15,10],[13,3],[8,-10],[-4,-2],[-1,-6],[0,-7],[-1,-6],[-10,-25],[-3,-6],[-9,-10],[-4,-2],[-4,1],[-9,10],[-6,1],[2,-6],[11,-16],[2,-8],[-2,-5],[-3,-3],[-2,-7],[-1,-9],[1,-9],[-1,-7],[-3,-3],[-5,1],[-10,5],[-6,2],[13,-17],[4,-8],[-6,-4],[-8,2],[-12,11],[-8,4],[-19,-1],[-17,-6],[-33,-22],[10,-4],[9,5],[10,7],[9,4],[2,-1],[3,-5],[1,-2],[2,1],[17,8],[5,-1],[3,-8],[-11,-5],[-25,-6],[-9,-11],[-3,-6],[-8,-9],[-3,-7],[-4,-15],[-4,-6],[-4,-3],[0,-5],[10,-1],[4,1],[3,3],[6,8],[7,3],[2,3],[2,4],[0,6],[1,8],[1,3],[3,0],[3,3],[7,7],[5,4],[6,1],[7,1],[3,1],[4,5],[2,1],[16,0],[0,-4],[-4,0],[0,-3],[3,-2],[2,-3],[1,-3],[2,-5],[-7,-3],[-3,-3],[-2,-6],[0,-6],[2,-15],[-1,-3],[-8,-3],[-2,-7],[1,-23],[3,4],[7,12],[4,3],[3,2],[3,2],[3,5],[2,16],[9,19],[12,15],[10,7],[0,-3],[-5,-8],[-2,-9],[0,-12],[3,-12],[2,-6],[5,-9],[2,-6],[1,-5],[1,-5],[0,-5],[2,-5],[-3,-5],[-3,-4],[-4,-2],[-4,-1],[-19,-35],[-6,-5],[-6,3],[0,4],[-1,6],[-15,-2],[-4,7],[-2,9],[-7,2],[-7,-5],[-10,-13],[-21,-18],[-15,-18],[-4,-6],[-4,-10],[-2,-9],[5,-4],[6,4],[10,17],[16,11],[12,15],[12,10],[11,-4],[1,-6],[5,-3],[7,-1],[5,-2],[-4,-8],[9,2],[2,-1],[-3,-7],[-2,-7],[3,-2],[5,2],[5,3],[10,4],[2,-13],[2,-13],[7,3],[3,7],[1,6],[-1,6],[-1,8],[-1,2],[-1,3],[0,3],[1,4],[1,2],[5,4],[0,2],[2,6],[2,5],[4,2],[2,-3],[1,-8],[-1,-8],[-2,-8],[-2,-4],[7,-2],[3,14],[2,19],[2,13],[2,4],[11,10],[3,1],[4,-11],[2,-5],[4,-2],[-6,-21],[3,1],[7,6],[2,1],[4,-3],[1,-4],[1,-5],[1,-4],[4,-3],[4,-1],[3,-4],[1,-8],[-2,-4],[-3,-4],[-4,-3],[-3,-1],[4,-10],[6,1],[5,3],[3,-4],[-2,-11],[-4,-4],[-12,0],[1,-9],[-5,-6],[-6,-4],[-6,-1],[-8,10],[-3,0],[3,-14],[-7,2],[-13,9],[-7,1],[3,-4],[10,-18],[2,-6],[-4,-8],[-7,-1],[-8,2],[-5,2],[0,11],[-5,3],[-6,-3],[-3,-8],[2,-10],[3,0],[4,3],[5,-4],[0,-15],[-7,-14],[-10,-11],[-9,-5],[-3,-6],[-3,-1],[-2,2],[-4,10],[-2,4],[-6,1],[-3,-6],[0,-8],[2,-3],[5,-3],[1,-7],[-2,-8],[-3,-7],[-5,-5],[-5,-2],[-4,-4],[-3,-9],[9,2],[10,4],[8,6],[9,8],[15,21],[9,5],[10,-6],[0,-3],[-11,-2],[-10,-6],[5,-3],[12,-4],[4,-5],[1,-9],[-1,-8],[-6,-16],[7,6],[7,28],[6,11],[2,1],[4,0],[3,-2],[2,-6],[-1,-7],[-1,-4],[-16,-31],[-7,-9],[-7,-3],[-18,-1],[-5,5],[3,16],[-4,1],[-6,5],[-3,-2],[-9,-30],[-2,-19],[-4,-17],[-7,-12],[-8,-3],[0,-4],[10,-5],[1,-1],[0,-5],[-1,-3],[0,-2],[1,-5],[-9,-19],[-5,-2],[-5,9],[-8,25],[-5,9],[-8,3],[3,-12],[0,-9],[-3,-7],[-6,-5],[6,-4],[-4,-8],[-24,-20],[-2,0],[-3,5],[0,5],[2,4],[2,3],[-4,2],[-4,0],[-4,-2],[-5,0],[-3,1],[-6,5],[-4,1],[-8,-3],[-16,-13],[-8,0],[-5,6],[-9,15],[-7,3],[-15,-6],[-5,0],[1,10],[-16,-9],[-9,0],[-4,13],[4,7],[15,21],[4,9],[-8,5],[-10,-2],[-8,-6],[-17,-20],[-2,-4],[-1,-6],[0,-6],[-1,-6],[-2,-4],[-1,-9],[-4,-9],[-3,-8],[4,-6],[-3,-8],[-5,-9],[-4,-6],[-3,-2],[-2,8],[0,22],[-2,13],[0,6],[0,10],[-2,2],[-3,1],[-3,3],[0,8],[2,2],[6,3],[2,4],[-2,6],[-5,1],[-7,-1],[-3,40],[-3,12],[-6,7],[-6,1],[-6,-5],[-2,-7],[-2,-12],[0,-12],[1,-8],[5,-16],[1,-3],[8,-12],[-8,-4],[-4,-3],[-3,-5],[-2,-5],[-1,-14],[-1,-5],[-4,-3],[-3,1],[-4,2],[-4,0],[-4,-3],[-8,-11],[-3,-2],[-3,-7],[-8,-31],[-6,-7],[0,-3],[2,-7],[3,-7],[3,-3],[3,-6],[2,-2],[2,-1],[9,1],[-2,-7],[0,-5],[0,-4],[0,-4],[5,-8],[2,-7],[-1,-6],[-3,0],[-4,4],[-6,8],[-4,3],[-14,1],[10,13],[2,4],[-2,6],[-5,1],[-5,0],[-3,1],[1,9],[-8,9],[2,8],[2,6],[4,20],[1,7],[-3,16],[-5,16],[-8,12],[-7,2],[-5,-9],[1,-34],[-3,-16],[-5,-14],[-3,-3],[-6,3],[-9,10],[-4,1],[-6,-6],[4,-3],[3,-5],[14,-21],[6,-8],[6,-48],[-1,-13],[2,-10],[-3,-3],[-5,2],[-4,5],[-6,8],[-1,4],[2,10],[0,4],[-4,5],[-10,5],[-4,4],[-11,20],[-3,3],[-11,2],[-16,9],[-4,1],[-1,-4],[-1,-10],[17,-14],[2,-4],[3,-11],[3,-2],[6,-2],[3,-2],[-11,-28],[-12,-16],[-3,-9],[-5,6],[-4,7],[-5,16],[-3,5],[-7,6],[-6,3],[-3,-4],[3,-7],[4,-6],[3,-6],[-1,-9],[-2,-10],[-1,-8],[2,-8],[4,-4],[-6,-9],[-4,-3],[-3,-1],[-4,2],[-5,9],[-3,2],[-6,-5],[0,-11],[3,-12],[3,-10],[-17,1],[-5,-4],[3,-17],[-9,-1],[-4,-2],[-9,-10],[-6,-3],[-6,-1],[-6,5],[2,1],[4,3],[2,0],[-4,7],[-2,1],[4,3],[3,1],[4,3],[2,5],[-4,1],[-2,4],[0,6],[1,6],[2,5],[9,5],[3,4],[2,7],[0,6],[0,5],[2,6],[5,10],[1,5],[-2,8],[7,11],[6,16],[1,12],[-8,-3],[-7,-11],[-21,-53],[-7,-9],[-4,-6],[-9,-27],[-11,-22],[-1,-9],[-3,-7],[-4,-1],[-3,7],[1,10],[-11,12],[-3,13],[2,8],[11,19],[3,11],[-10,1],[-24,-22],[-11,-7],[0,-4],[5,-3],[7,-8],[5,-9],[4,-9],[0,-9],[-4,-5],[-12,-6],[0,-4],[7,-4],[2,-3],[-1,-4],[-6,-5],[-6,-4],[-21,-1],[-2,-4],[-2,-10],[-3,-9],[-5,-5],[-5,-2],[-17,-16],[-2,-3],[-2,-2],[-15,-5],[0,-6],[3,-8],[6,-17],[-2,-10],[-10,-6],[-10,-8],[2,-18],[-11,13],[-4,9],[1,8],[3,8],[0,3],[-3,1],[-3,2],[-4,9],[-2,2],[-4,2],[-3,-2],[-3,-4],[-4,-3],[-8,5],[-16,5],[-14,9],[-4,1],[-4,-1],[-4,-2],[4,-9],[6,-1],[6,0],[5,-4],[4,-6],[14,-13],[6,-3],[3,-2],[1,-5],[-1,-5],[-1,-5],[-2,-3],[-10,-6],[-4,-1],[-6,6],[-8,4],[-3,0],[-15,-1],[-5,1],[-16,11],[-6,2],[-5,6],[-2,1],[-3,1],[-3,0],[-23,-15],[-5,-6],[3,-2],[7,-1],[3,-1],[-4,-10],[-8,-2],[-16,4],[-8,-1],[-3,-3],[-1,-5],[4,-4],[7,4],[3,-8],[-32,-7],[-17,2],[-7,16],[2,10],[1,5],[-2,3],[-21,-6],[-8,0],[-7,4],[-5,10],[5,0],[2,2],[0,4],[-3,6],[-2,2],[-11,2],[-5,4],[-4,5],[-3,8],[1,12],[2,7],[5,7],[10,10],[7,3],[23,-3],[-6,8],[-12,11],[-6,8],[2,8],[8,8],[16,10],[17,1],[8,3],[4,10],[4,8],[10,3],[51,-5],[8,-6],[5,-8],[6,-5],[5,0],[2,7],[-4,10],[-14,12],[-3,8],[3,15],[7,8],[15,8],[6,1],[13,-3],[6,2],[2,7],[0,8],[2,6],[6,3],[11,-2],[6,2],[0,6],[-7,12],[0,6],[4,9],[4,3],[8,5],[3,4],[3,6],[4,14],[2,6],[7,10],[22,25],[-8,9],[-12,1],[-12,-6],[-12,-16],[-17,-9],[-46,-41],[-10,-3],[-4,-2],[-5,-5],[-5,-7],[-2,-6],[2,-6],[5,-5],[5,-3],[1,-1],[4,-2],[-5,3],[-88,42],[-9,5],[-14,14],[-12,20],[-3,22],[2,6],[8,14],[2,7],[3,14],[25,79],[2,11],[2,10],[5,10],[67,87],[10,17],[7,21],[4,28],[-1,27],[1,8],[4,8],[4,3],[4,2],[8,1],[3,3],[2,6],[0,15],[5,38],[0,13],[0,17],[-2,8],[-9,14],[-3,10],[-6,28],[-6,11],[-5,13],[-5,13],[-1,10],[5,12],[21,0],[7,6],[6,11],[6,5],[51,6],[7,6],[5,8],[73,69],[45,31],[42,33],[18,8],[14,-9],[4,-11],[3,-14],[5,-14],[9,-7],[7,-9],[3,-1],[50,-13],[18,14],[13,3],[23,17],[7,3],[20,-3],[10,-3],[9,-6],[13,-11],[4,-1],[27,0],[5,-2],[11,-9],[95,-21],[6,-3],[4,-4],[3,-5],[6,-4],[5,-3],[4,2],[-10,25],[-14,18],[-16,11],[-15,3],[-31,-13],[-6,3],[-6,7],[-29,21],[-9,4],[-29,4],[-46,30],[-12,16],[-22,13],[-44,36],[2,10],[6,12],[6,8],[6,-3],[5,-2],[9,6],[8,8],[5,6],[2,5],[4,19],[2,6],[16,29],[4,5],[4,1],[4,-1],[4,1],[6,6],[7,19],[6,9],[8,6],[93,42],[11,1],[6,3],[4,7],[-9,5],[-39,-5],[4,4],[-7,5],[-61,-15],[-30,-21],[-11,-17],[-5,-6],[-13,-11],[-5,-6],[-5,-8],[-4,-11],[-2,-25],[-3,-13],[-3,-11],[-3,-7],[-9,-7],[-83,8],[-3,3],[-4,6],[-1,3],[-1,1],[-4,-6],[1,0],[0,-4],[0,-4],[-1,-4],[-2,-1],[-32,1],[-14,6],[-11,14],[-5,22],[5,27],[-6,-2],[-7,-8],[-4,-11],[5,-23],[-6,-2],[-8,5],[-6,9],[-10,-22],[-11,-14],[-44,-23],[-16,-2],[-3,-2],[-5,-8],[-3,-2],[-4,-1],[-7,-4],[-4,-3],[-5,-9],[-19,-40],[-4,-10],[-4,-8],[-6,-6],[-18,-9],[-19,-4],[-3,-2],[-8,-8],[-3,-2],[-21,5],[-11,-2],[-13,-5],[-12,-8],[-13,-18],[-9,-8],[-10,-13],[-12,-3],[-6,-5],[-1,-11],[-12,-17],[-4,-12],[1,-6],[1,-6],[23,-50],[2,-11],[-10,-4],[-9,3],[-17,16],[-8,5],[0,-3],[1,-6],[1,-3],[-13,-4],[-6,-4],[-9,-13],[-14,-13],[-5,-3],[-4,0],[-2,-2],[-2,-6],[-1,-1],[-10,-28],[-3,-3],[-3,-3],[-6,-4],[-8,-9],[-17,-13],[-23,-32],[-4,-8],[-3,-9],[-1,-12],[2,-12],[5,-9],[7,-5],[13,-6],[0,-4],[-34,-23],[-8,-14],[-1,-4],[0,-10],[-2,-4],[-2,-3],[-14,-9],[-13,-5],[-6,-5],[-17,-22],[-5,-3],[-5,4],[-5,5],[-6,4],[-37,-6],[-12,6],[2,6],[5,0],[5,-2],[5,-1],[0,5],[-15,5],[-6,-1],[-8,-9],[-2,15],[0,11],[-2,8],[-9,3],[-20,0],[-11,-2],[-9,-6],[-6,-8],[0,-5],[5,0],[6,7],[7,6],[12,1],[11,-4],[7,-9],[0,-5],[-1,-11],[1,-4],[2,-5],[7,-6],[10,-11],[27,-11],[6,-9],[3,-3],[3,0],[4,1],[3,-1],[4,-4],[2,-3],[-2,-1],[-1,-3],[1,-5],[1,-5],[3,-3],[3,-2],[19,-20],[3,-6],[0,-7],[-5,-16],[-4,-6],[-5,0],[0,-4],[1,-1],[2,-3],[-13,-15],[-4,-6],[-3,-10],[-4,-22],[-4,-8],[-5,-5],[-20,-7],[-6,-5],[-3,-2],[-4,-1],[-14,2],[-2,0],[-6,-4],[-24,6],[-7,-2],[-13,-5],[-38,-5],[-4,-4],[-5,-8],[-5,-10],[-2,-7],[9,1],[8,4],[8,2],[13,-7],[4,1],[3,2],[18,5],[13,-1],[2,-3],[2,-8],[0,-8],[-2,-4],[-1,-4],[-2,-14],[-7,-24],[-3,-7],[-7,-5],[-17,-9],[-3,-8],[-4,-5],[-10,-6],[-10,-4],[-7,1],[-1,4],[-3,12],[-3,4],[-5,-1],[-3,-6],[0,-6],[3,-3],[1,-2],[-1,-4],[-3,-4],[-3,-2],[-5,1],[-13,7],[-2,1],[-7,-1],[0,4],[4,4],[3,5],[11,29],[4,3],[6,-5],[-4,8],[-12,6],[-20,31],[1,-10],[-1,-9],[0,-8],[3,-12],[-1,-6],[-5,-25],[-2,-7],[-5,-8],[-7,-5],[-6,-2],[-6,-1],[-4,4],[-7,18],[-4,6],[2,2],[1,1],[1,1],[0,4],[-7,-1],[-1,-6],[1,-9],[0,-8],[-6,-5],[-14,-2],[-3,-7],[24,-3],[2,-1],[11,-10],[2,0],[-1,-8],[-5,-17],[-10,-7],[-47,-7],[-6,8],[-6,2],[-6,-3],[-6,-5],[11,-1],[8,-4],[6,-6],[13,-18],[4,-9],[1,-10],[-7,-9],[-1,-6],[-8,-4],[-17,-2],[-15,1],[-5,-1],[-2,-3],[-4,-10],[-3,-3],[-23,-9],[-2,1],[-3,3],[-2,1],[-2,-2],[-3,-5],[-1,-2],[-5,-1],[-14,1],[9,-12],[13,-7],[12,1],[8,14],[2,-2],[3,-2],[3,0],[3,0],[0,-4],[-20,-11],[-24,-22],[-4,-6],[-4,-8],[-1,-8],[-1,-19],[1,-7],[6,0],[-2,-9],[-4,-4],[-12,1],[2,-12],[-5,-6],[-7,-2],[-7,-1],[6,-3],[2,-1],[-3,-3],[-2,-3],[-3,-1],[-3,-1],[2,-10],[5,-2],[12,4],[4,-3],[1,-6],[-1,-7],[-4,-4],[2,-3],[1,-1],[0,-4],[-5,-6],[0,-13],[3,-12],[6,-6],[7,4],[6,8],[4,9],[6,8],[17,6],[35,-11],[17,1],[5,3],[2,1],[27,-2],[7,-4],[5,-6],[5,-9],[5,-12],[3,-4],[11,-6],[3,-4],[3,-2],[5,-1],[6,1],[3,2],[4,5],[3,0],[5,-7],[11,-6],[4,-4],[9,-20],[3,-2],[9,0],[2,-2],[0,-3],[-1,-4],[0,-4],[3,-12],[3,-3],[5,-1],[0,-4],[-4,-2],[-15,-2],[4,-4],[4,-1],[18,3],[3,-1],[-1,-7],[-7,-8],[-14,6],[-7,-4],[-4,-11],[-5,-28],[-3,-12],[-5,-10],[-4,-6],[-25,-22],[-9,-1],[-4,-3],[-2,-7],[-2,-12],[-5,-8],[-7,-6],[-16,-8],[-29,-4],[-19,3],[-10,-2],[-4,-9],[1,-5],[1,-3],[2,-1],[-1,-3],[-3,-7],[-1,-8],[-3,-9],[0,-1],[-1,-2],[-2,-2],[-2,1],[-2,1],[-3,1],[-2,-3],[3,-2],[8,-3],[2,-3],[-1,-4],[-4,-5],[-4,-5],[-3,-2],[-9,0],[-12,3],[-11,-1],[-8,-10],[4,-6],[5,-18],[3,-9],[1,-3],[-1,-2],[0,-2],[2,-1],[8,0],[3,-2],[4,-6],[2,-6],[-1,-2],[-3,-1],[-13,-9],[-7,-2],[-29,0],[-2,-4],[2,-1],[-1,-4],[-3,-4],[-3,-2],[-7,-1],[-16,-8],[-5,-6],[-2,-7],[-11,-8],[2,-3],[2,-5],[-1,-5],[-3,-3],[3,-2],[3,3],[2,4],[3,3],[5,1],[7,0],[4,3],[-1,10],[5,3],[13,-1],[1,2],[1,4],[1,4],[2,2],[5,2],[1,-2],[1,-3],[11,-20],[-8,-5],[-15,-2],[-12,-6],[17,-4],[6,-7],[0,-14],[-6,-11],[-9,-4],[-10,2],[-7,5],[-2,-1],[-4,-3],[4,-8],[15,-16],[2,-8],[-5,-9],[-10,4],[-15,17],[-4,-10],[1,-7],[3,-7],[2,-9],[-2,-12],[-5,-2],[-5,5],[-4,16],[-6,6],[-6,5],[-4,5],[-1,4],[-1,5],[-1,6],[0,5],[-1,5],[-4,4],[-6,5],[7,-33],[2,-19],[-2,-15],[-8,-1],[-22,23],[-10,-3],[2,-5],[14,-18],[1,-2],[2,-5],[-2,-11],[-4,-11],[-5,-5],[-13,4],[-4,2],[-1,6],[0,7],[-1,5],[-5,4],[-6,-2],[-7,-6],[-5,-8],[-1,-4],[-1,-8],[-1,-5],[-3,-2],[-3,-3],[-3,-2],[-3,-1],[-6,3],[-13,11],[-7,3],[-25,0],[-14,-4],[-5,-5],[3,-8],[-4,-16],[-5,-8],[-7,-3],[-10,-1],[13,-24],[2,-11],[-8,-10],[-11,-4],[-32,4],[8,-13],[1,-5],[-2,-4],[-4,-4],[-9,-2],[-9,4],[-5,0],[-3,-4],[0,-4],[7,-16],[-10,4],[-3,0],[0,-4],[6,-5],[7,-9],[3,-11],[-3,-10],[-3,-2],[-8,-3],[-7,-2],[-3,-1],[-2,0],[-3,2],[-8,10],[-16,10],[-4,1],[-7,4],[-6,10],[-6,6],[-9,-4],[-3,-7],[-3,-10],[-2,-12],[-1,-10],[3,-11],[11,-11],[-1,-8],[-6,-6],[-25,-10],[-16,0],[-3,-2],[3,-5],[7,-6],[1,-3],[-1,-3],[-1,-3],[-1,-2],[2,-8],[-1,-13],[1,-8],[-2,-4],[-14,-5],[-3,2],[-2,5],[0,5],[-1,5],[-3,4],[-2,0],[-4,-10],[-4,-2],[-12,-2],[-2,-4],[-3,-10],[-8,1],[-7,8],[-12,17],[-4,-3],[0,-9],[5,-10],[0,-4],[-18,3],[-6,-3],[3,-7],[11,-1],[3,-7],[0,-10],[0,-9],[2,-7],[3,-4],[-10,-15],[-15,10],[-15,15],[-13,2],[-2,-5],[-1,-7],[-1,-8],[-3,-3],[-8,-5],[-11,-2],[-9,-6],[-36,-45],[-7,-1],[-7,-3],[-7,-6],[-3,-10],[1,-14],[5,-2],[40,21],[10,-2],[3,1],[-1,-7],[2,-9],[-1,-9],[-1,0],[-1,1],[0,2],[0,1],[-2,-15],[-7,-7],[-18,-6],[0,-4],[5,0],[6,-3],[4,-4],[2,-7],[2,-3],[6,-2],[2,-2],[1,-6],[0,-2],[-2,-2],[-1,-4],[-5,-12],[-23,-11],[-8,-7],[5,-7],[5,-9],[-5,-4],[-3,4],[-2,6],[-2,2],[-2,-6],[0,-16],[-2,-6],[-4,-4],[-5,0],[-6,1],[-4,3],[-3,3],[-10,13],[-2,-4],[2,-8],[-6,0],[23,-32],[4,-13],[-7,0],[-23,9],[-3,0],[-3,1],[-2,2],[-1,3],[-4,13],[-1,2],[-2,2],[-3,3],[-14,6],[-2,-2],[-2,-4],[-1,-5],[0,-4],[2,-2],[3,-4],[2,-3],[2,-5],[0,-7],[-2,-3],[-2,-2],[-2,-4],[-1,-5],[0,-10],[-1,-6],[-2,-10],[-3,-10],[-4,-6],[-5,4],[-13,29],[-5,5],[-6,5],[-6,4],[-3,0],[2,-6],[2,-7],[-1,-7],[-2,-5],[2,-3],[1,-5],[1,-4],[-3,-2],[-12,-2],[-10,-10],[-2,-2],[-3,-5],[-8,-25],[-4,-6],[-5,3],[-16,14],[-6,-3],[2,-5],[6,-6],[4,-10],[-4,-14],[-8,-9],[-7,3],[-7,6],[-13,6],[-5,6],[-17,24],[-7,7],[-8,2],[-6,-6],[-5,-6],[-2,-4],[0,-6],[1,-8],[3,-3],[4,-1],[3,-2],[3,-5],[2,-7],[2,-7],[-1,-6],[-2,3],[-2,3],[-2,1],[-2,-1],[-1,-2],[-2,-3],[-1,-4],[1,-1],[-5,0],[-13,4],[-6,-7],[-6,-13],[-5,-8],[-7,8],[-2,-5],[3,-2],[2,-3],[2,-5],[0,-5],[2,4],[4,-10],[6,-5],[14,-2],[1,-2],[5,-12],[2,-2],[0,-2],[-2,-6],[-3,-5],[-2,-3],[-9,0],[-19,7],[-7,-5],[-7,-7],[-9,0],[-8,5],[-6,8],[-10,24],[-6,6],[-9,-4],[-9,-7],[-3,-5],[-3,-3],[-11,1],[-4,0],[-5,-7],[-9,-18],[-5,-3],[-14,-5],[-2,-1],[-1,-2],[-2,-3],[0,-4],[-1,-2],[-9,0],[-5,-3],[-4,-6],[-2,-8],[-2,-11],[16,4],[31,19],[23,1],[3,-1],[3,-3],[3,-5],[0,-6],[0,-5],[2,-6],[1,-6],[-1,-6],[-6,-8],[-4,-9],[-2,-1],[-4,-1],[-16,4],[-31,18],[-16,3],[-7,-2],[-4,-4],[-1,-6],[3,-5],[7,5],[2,-6],[-3,-13],[-8,-4],[-16,2],[-7,-2],[-4,0],[-3,5],[-2,2],[-10,3],[-6,0],[-5,-2],[-16,-15],[-5,-5],[-3,-6],[-3,-8],[-5,-8],[-10,-13],[-4,-8],[1,-3],[2,-9],[-8,-1],[-10,-8],[-9,-9],[-7,-10],[-4,-16],[8,-9],[23,-3],[-2,6],[-3,4],[-2,5],[-1,7],[1,7],[3,5],[22,21],[7,-2],[1,-17],[3,4],[2,2],[3,0],[2,-2],[-1,-3],[-1,-9],[12,12],[7,5],[3,-2],[4,-5],[2,-2],[15,-4],[9,-5],[5,-7],[-5,-9],[-6,-8],[-7,-5],[-10,-4],[-7,-5],[-4,-2],[-4,1],[-6,3],[-4,1],[1,-5],[-1,-5],[-2,-4],[-2,-7],[4,3],[4,4],[4,2],[12,-10],[1,-4],[-6,-7],[8,-4],[8,6],[8,10],[15,10],[8,10],[8,6],[8,-5],[-9,-4],[-3,-3],[-2,-3],[-1,-5],[-2,-4],[-5,-3],[-4,-8],[-3,-3],[-3,0],[-3,1],[-3,0],[-4,-5],[2,-4],[-7,-4],[-10,-1],[-8,-5],[-2,-14],[-6,5],[-2,10],[0,10],[-1,7],[-5,0],[-3,-9],[-1,-11],[3,-8],[-5,-1],[-3,1],[4,-12],[5,-11],[1,-10],[-6,-8],[-4,12],[-1,6],[1,7],[-3,1],[-13,-1],[-1,-3],[3,-7],[7,-11],[-5,-7],[0,-10],[5,-6],[4,5],[-1,1],[0,2],[-1,3],[7,-5],[4,-11],[-2,-10],[-5,-3],[-4,5],[-6,13],[-4,3],[-4,-2],[0,-7],[2,-8],[2,-7],[-4,-1],[-6,5],[-6,8],[-5,8],[17,12],[0,4],[-16,-6],[-5,-4],[-4,0],[-1,7],[2,8],[5,3],[0,4],[-6,5],[0,8],[4,8],[7,3],[1,3],[2,13],[2,5],[1,0],[3,-1],[3,1],[1,-1],[1,0],[0,3],[0,5],[0,1],[6,5],[3,5],[0,4],[-3,3],[-21,-1],[-21,4],[4,-9],[5,-5],[12,-6],[-7,-9],[-6,-10],[-6,-9],[-9,-5],[1,11],[-2,9],[-4,4],[-5,-3],[3,-7],[1,-6],[-1,-6],[-3,-5],[9,-5],[3,-4],[-2,-8],[0,-10],[-18,-9],[4,-9],[6,-1],[5,1],[5,-1],[3,-7],[0,-10],[-3,-6],[-8,-5],[0,-3],[1,-1],[3,-3],[2,0],[-5,-7],[-8,-3],[-8,1],[-6,4],[2,3],[2,3],[3,2],[3,1],[0,3],[-3,6],[-2,6],[-3,3],[-7,2],[-1,-2],[-2,-9],[-2,-1],[-4,1],[-3,3],[-3,10],[-7,-1],[-8,-17],[-11,-37],[-2,0],[-2,6],[-4,3],[-4,0],[-9,-3],[-3,-1],[-1,-3],[-1,-5],[1,-3],[1,-3],[1,1],[0,-4],[0,-2],[-1,-2],[-3,-1],[-3,1],[-1,2],[-1,3],[-8,11],[-3,3],[-4,1],[-4,-1],[-9,-6],[-4,-1],[-4,-2],[-4,-9],[-4,-2],[-18,-2],[-7,-6],[-7,-12],[-4,11],[-7,1],[-7,-4],[-5,-8],[-3,-10],[-1,-23],[-2,-7],[-5,-1],[-4,7],[-4,10],[-2,8],[-1,8],[0,11],[1,11],[2,11],[-6,0],[-8,-3],[-7,-4],[-4,-5],[1,-9],[8,-17],[2,-9],[1,-6],[1,-11],[0,-6],[1,-3],[1,-4],[0,-2],[0,-4],[-2,-2],[-1,-1],[-1,-2],[-3,-7],[-6,-11],[-4,-10],[6,-6],[-1,-7],[0,-5],[0,-6],[-2,-4],[-1,-2],[-1,-3],[-1,-2],[-1,-1],[-3,-1],[-1,-2],[-5,-7],[-5,-10],[-3,-10],[1,-9],[-26,-7],[-6,3],[3,5],[6,10],[4,5],[-9,-1],[-8,-3],[4,9],[9,3],[8,-1],[6,-7],[5,4],[0,5],[1,4],[1,2],[3,1],[2,2],[-2,3],[-9,7],[-10,5],[-5,4],[5,7],[16,13],[-4,6],[-3,4],[-1,10],[-2,1],[-2,0],[-1,3],[1,6],[8,20],[6,11],[1,5],[-5,7],[-4,4],[-13,7],[-35,5],[-5,0],[-2,-6],[-2,-14],[2,-8],[1,-6],[-2,-2],[-13,-5],[-5,4],[-9,16],[-6,1],[0,-4],[2,-3],[1,-3],[-1,-9],[-1,-5],[-3,0],[-7,5],[-2,3],[-3,3],[-3,1],[-2,-3],[-2,-10],[-2,-4],[8,-20],[-1,-5],[-9,-2],[-6,3],[-2,0],[-1,-6],[1,-3],[8,-7],[-8,-1],[-4,2],[-4,5],[-2,5],[-1,5],[-2,3],[-4,2],[2,-10],[2,-19],[2,-8],[-8,-10],[-21,4],[-5,-6],[0,-5],[-26,0],[-13,4],[-6,1],[-6,-5],[4,-7],[17,-13],[0,-4],[-7,-4],[-12,-13],[-6,1],[0,-9],[0,-3],[2,-5],[-3,-4],[-1,-8],[-2,-8],[0,-6],[-2,-7],[-5,-5],[-10,-6],[-5,8],[-9,31],[-3,14],[-1,14],[-1,10],[-4,0],[-4,-9],[-4,-12],[-4,-11],[-7,-4],[-17,2],[-7,-2],[1,-8],[7,-4],[9,0],[9,-1],[4,-10],[-2,-17],[-4,-7],[-28,-11],[-4,1],[-3,2],[-7,8],[-3,2],[-1,3],[1,6],[2,9],[1,7],[-2,5],[-7,3],[-16,-3],[-10,-15],[-8,-21],[-10,-18],[-13,-12],[-58,-31],[-9,-1],[-4,5],[-4,12],[-8,2],[-30,-15],[-8,2],[-3,12],[1,3],[7,23],[1,6],[1,25],[1,3],[7,17],[3,7],[6,7],[9,20],[6,4],[5,-5],[9,-16],[7,-3],[30,-8],[9,1],[1,5],[-4,6],[-24,8],[-4,2],[-3,6],[-2,6],[-3,6],[-7,5],[-14,6],[-12,15],[-8,2],[-51,-16],[2,-7],[-1,-4],[-2,-2],[-3,-3],[-4,-14],[-16,-20],[-2,-9],[1,-6],[1,-3],[2,-1],[1,-2],[0,-6],[-3,-28],[-1,-6],[1,-10],[-1,-4],[-1,-5],[-28,-45],[-5,-14],[-2,-2],[-15,-28],[-1,-5],[0,-6],[-1,-4],[-3,-1],[-6,-1],[-3,1],[-3,4],[2,-1],[7,1],[0,4],[-7,5],[-10,2],[-9,-1],[-8,-2],[0,-4],[7,-17],[2,-9],[-5,-6],[13,-10],[1,-6],[2,-6],[3,-4],[2,-3],[-4,-11],[-8,-8],[-9,-6],[-7,-3],[-7,1],[-6,5],[-7,8],[-3,10],[5,3],[2,1],[-2,4],[3,5],[1,5],[1,5],[1,6],[-26,-15],[-10,-18],[5,-13],[4,-16],[-1,-14],[-8,-6],[-4,-2],[-4,-3],[-4,-1],[-4,4],[-3,6],[-4,13],[-2,8],[-3,-3],[-2,-5],[-4,-11],[-3,-2],[-16,0],[-8,2],[-6,5],[-6,8],[-5,10],[-4,14],[2,7],[7,2],[8,-3],[13,-9],[7,0],[9,5],[-16,14],[-5,6],[-12,21],[-3,8],[-12,36],[-7,11],[-12,2],[8,6],[1,7],[-4,5],[-9,1],[-8,-2],[-7,-5],[-5,-8],[-5,-11],[-4,-12],[0,-12],[4,-10],[13,-7],[7,-6],[5,-8],[0,-7],[3,-7],[1,-3],[-1,-3],[-3,-4],[0,2],[-1,3],[-2,2],[-2,-1],[-1,-3],[0,-3],[1,-4],[-1,-4],[-1,-13],[-1,-11],[3,-5],[5,9],[1,-10],[14,-59],[-7,2],[-8,9],[-8,11],[-5,10],[10,-2],[2,2],[-1,8],[-3,9],[-4,5],[-5,-2],[-3,-8],[-2,-11],[-4,-9],[-7,-16],[1,-4],[1,-3],[-1,-1],[-1,-1],[-8,-9],[-4,-3],[-5,-2],[-18,-1],[-8,2],[-12,11],[-2,4],[0,5],[-2,3],[-9,9],[-2,10],[6,3],[8,0],[2,3],[-5,6],[-12,5],[-5,7],[-8,21],[-4,8],[-6,4],[-4,1],[-6,3],[-3,0],[-4,-1],[-7,-6],[-4,-1],[4,4],[7,7],[4,5],[-6,5],[-7,3],[-8,0],[-4,-4],[0,-7],[1,-7],[1,-7],[0,-3],[-3,-4],[-4,3],[-6,9],[0,-9],[2,-6],[3,-2],[4,1],[-3,-20],[3,-15],[9,-11],[17,-5],[6,-5],[6,-6],[4,-7],[1,-12],[-3,-8],[-20,-15],[-10,-12],[-8,-6],[-9,-16],[-6,-4],[-7,-3],[-12,-12],[-6,-1],[-4,3],[-3,8],[-2,9],[-4,8],[13,10],[4,6],[1,3],[0,7],[1,3],[3,2],[2,1],[3,1],[3,-1],[-4,9],[-14,-5],[0,12],[5,16],[6,-5],[7,-8],[7,4],[3,11],[-10,12],[-3,13],[-2,29],[-2,7],[-3,7],[-2,6],[3,6],[0,4],[-2,0],[-1,1],[-1,2],[-2,1],[52,37],[34,38],[10,-2],[-5,-3],[-6,-6],[-6,-8],[-4,-7],[-3,-13],[4,-2],[19,3],[2,0],[1,-1],[1,-3],[1,-3],[1,-1],[3,1],[18,12],[6,6],[11,17],[-4,10],[-11,1],[-2,11],[27,14],[1,6],[16,7],[7,6],[16,24],[4,11],[2,-11],[5,-6],[7,-4],[7,0],[4,2],[3,3],[6,11],[2,1],[2,0],[2,0],[2,4],[0,3],[0,4],[-1,3],[0,1],[-4,5],[1,10],[0,9],[-7,5],[-8,-1],[-7,-6],[-5,-8],[-6,-10],[5,14],[4,4],[4,6],[7,7],[90,142],[22,15],[5,6],[10,18],[5,3],[7,3],[38,34],[4,6],[20,23],[8,5],[7,4],[23,5],[14,8],[32,10],[19,11],[19,5],[3,2],[6,7],[56,24],[-20,-13],[-9,-6],[-4,-4],[-26,-14],[44,0],[10,-3],[5,0],[4,5],[4,2],[15,-12],[5,0],[4,3],[8,9],[14,9],[4,5],[4,3],[16,2],[0,-19],[2,-9],[1,-7],[-11,0],[-11,3],[-11,-1],[-9,-12],[-3,-9],[0,-7],[2,-6],[3,-4],[6,-4],[5,1],[5,4],[6,3],[-5,-18],[-1,-10],[1,-5],[4,-2],[4,-5],[27,-44],[6,-14],[4,21],[4,5],[6,-8],[8,-13],[5,-12],[3,-3],[4,2],[0,2],[3,15],[1,1],[-2,7],[-2,2],[-4,1],[-3,2],[-2,4],[-5,7],[-9,9],[-2,11],[-3,25],[-2,11],[-3,5],[-2,1],[1,2],[1,3],[1,2],[2,0],[2,-1],[3,-3],[13,-9],[8,-2],[49,5],[3,-7],[6,-5],[1,-7],[-1,-9],[1,-11],[5,-5],[5,3],[5,5],[6,1],[2,-2],[2,-8],[2,-2],[3,-3],[16,-4],[6,-3],[6,-1],[7,3],[-10,6],[-2,4],[-6,15],[-3,3],[23,8],[-4,8],[-6,4],[-13,4],[-56,41],[-6,0],[-7,-4],[-2,4],[6,9],[3,5],[1,7],[0,9],[-3,5],[-4,1],[-5,-3],[4,10],[10,20],[4,16],[11,17],[4,9],[0,23],[2,13],[5,5],[2,7],[7,28],[3,2],[7,20],[37,37],[13,28],[48,34],[24,26],[23,31],[28,23],[73,40],[-21,-16],[3,-4],[6,2],[7,4],[13,3],[36,27],[5,6],[5,5],[16,-1],[6,3],[-3,3],[-4,1],[-8,0],[0,3],[18,26],[7,7],[24,13],[13,17],[14,17],[13,16],[15,12],[6,2],[-7,-11],[-18,-13],[-11,-14],[-8,-8],[-1,-4],[1,-8],[4,-4],[5,-2],[5,-1],[-1,13],[2,13],[4,9],[4,0],[9,-15],[10,-12],[7,-5],[10,-5],[9,-2],[7,2],[3,3],[5,2],[8,1],[5,-2],[7,-12],[4,-2],[-4,25],[0,7],[1,5],[0,6],[-9,20],[-1,9],[0,32],[-2,18],[0,6],[2,16],[2,9],[8,22],[12,25],[82,126],[4,3],[4,2],[28,23],[35,3],[-2,6],[-2,3],[-4,0],[-3,-1],[5,10],[17,19],[6,10],[10,23],[6,8],[18,9],[24,25],[8,5],[6,-3],[4,3],[4,3],[8,2],[-3,-9],[2,-10],[8,-22],[-3,-8],[2,-4],[41,-4],[-1,-6],[-1,-2],[11,12],[9,0],[5,1],[4,3],[5,7],[0,7],[-3,5],[-6,6],[3,4],[3,4],[2,5],[2,7],[-4,-3],[-9,-2],[-5,-3],[4,-9],[6,-15],[2,-8],[-28,7],[-5,-2],[-3,-4],[-4,-3],[-3,-2],[-4,-1],[-4,2],[0,5],[2,10],[1,26],[-1,13],[-3,11],[-1,3],[1,3],[1,3],[-1,3],[-2,3],[-3,3],[-1,3],[-2,2],[-3,-1],[-1,-2],[0,-4],[5,-10],[-7,0],[-6,3],[-5,5],[-4,7],[-1,8],[0,13],[1,13],[1,8],[-2,12],[3,18],[9,35],[6,35],[2,18],[2,41],[4,37],[1,31],[2,7],[4,14],[3,7],[7,13],[3,8],[6,-5],[10,-1],[9,2],[7,4],[5,8],[3,6],[4,5],[8,1],[45,-9],[4,-3],[2,-4],[2,-4],[3,-4],[4,0],[-7,14],[-6,7],[-45,21],[-9,-1],[-15,-9],[-6,-1],[-7,6],[-13,15],[-5,10],[3,11],[-9,17],[2,25],[16,60],[13,26],[6,8],[15,9],[6,6],[26,43],[37,40],[5,7],[6,6],[27,9],[7,5],[8,3],[0,4],[-10,-3],[-13,-8],[-10,0],[-5,19],[3,12],[18,37],[-6,13],[1,4],[3,7],[6,8],[1,5],[0,4],[-1,3],[2,17],[1,6],[5,6],[10,7],[11,5],[7,6],[2,14],[0,35],[2,15],[6,12],[6,9],[5,10],[-20,-21],[-3,-5],[0,-5],[-3,-14],[-3,-6],[1,-8],[1,-8],[0,-5],[-3,-12],[-5,-9],[-7,-6],[-16,-3],[-7,-5],[-5,-9],[-4,-13],[-5,-22],[-5,-8],[-14,-5],[-33,-22],[-33,-9],[-4,-3],[-3,-3],[-3,-3],[-4,-4],[-14,-2],[-26,-31],[-25,-7],[-43,-29],[-46,-23],[-49,-20],[-13,-1],[-17,6],[-15,14],[-8,22],[3,11],[-3,13],[-5,12],[-5,8],[-7,7],[-39,17],[-3,5],[-2,7],[0,7],[2,6],[2,4],[4,5],[2,3],[3,4],[2,8],[4,18],[2,6],[-3,16],[6,9],[16,8],[-3,1],[-2,3],[-1,3],[0,5],[-2,0],[-3,-2],[-2,-2],[-2,-4],[-6,6],[2,4],[9,8],[4,6],[5,5],[6,2],[6,1],[58,-15],[10,-8],[9,-12],[7,-13],[3,-8],[-1,-11],[2,-10],[2,-5],[4,-7],[4,-5],[3,-3],[0,7],[1,6],[2,3],[3,0],[0,4],[-9,0],[-3,2],[-3,6],[5,12],[-5,17],[-14,26],[-11,13],[-26,2],[-23,13],[-24,7],[-11,8],[-8,10],[-5,8],[-2,8],[-1,8],[-1,1],[-3,-1],[-2,2],[-2,5],[0,4],[-1,4],[-3,3],[-1,-10],[0,-8],[3,-4],[6,-2],[0,-14],[16,-21],[-1,-13],[-5,-6],[-12,-4],[-4,-7],[-1,-2],[-1,-3],[0,-4],[0,-5],[-1,-5],[-2,-2],[-2,-2],[-4,-16],[-9,-15],[-10,-13],[-12,-10],[-6,-7],[-6,-6],[-4,3],[-2,7],[1,6],[3,7],[3,10],[-10,9],[-4,5],[-4,7],[11,5],[4,4],[-2,9],[-22,-10],[4,-7],[11,-27],[0,-5],[-6,-56],[2,-10],[1,-10],[-2,-8],[-2,-7],[-4,-8],[-5,-5],[-5,-2],[-7,-1],[-2,1],[-2,2],[-2,4],[0,5],[1,7],[2,3],[6,2],[11,7],[5,7],[-1,9],[-6,5],[-6,1],[-7,-4],[-3,-8],[7,0],[-4,-6],[-7,-7],[-4,-2],[0,-10],[2,-10],[5,-21],[10,-17],[9,-37],[8,-27],[0,1],[4,-5],[1,-2],[1,-6],[0,-14],[0,-4],[3,-6],[4,-2],[3,1],[3,-1],[4,-7],[-3,-5],[-5,-6],[-6,-16],[-6,-6],[-7,-4],[-5,-1],[0,-4],[8,0],[-9,-10],[-15,-3],[-16,-1],[-21,10],[-10,6],[-6,10],[4,-2],[3,0],[3,3],[2,7],[-7,0],[-5,2],[-3,6],[1,13],[-10,-1],[-10,17],[-16,41],[-25,50],[-24,50],[-27,35],[-7,4],[-3,2],[-7,11],[-2,2],[-8,-1],[-4,-8],[-11,1],[-7,3],[8,8],[8,19],[4,14],[-8,14],[-6,2],[-4,0],[-8,-2],[-8,-2],[-8,0],[3,-6],[1,-5],[-3,-10],[-6,-7],[-3,-9],[7,-7],[-3,-8],[-3,-6],[-4,11],[-6,0],[-2,-3],[0,-4],[2,-3],[1,-5],[3,-4],[-3,-10],[-6,-4],[-6,0],[-7,-8],[-11,-9],[-2,7],[-5,8],[-9,18],[-6,9],[-2,3],[2,5],[0,7],[-2,3],[-2,5],[-6,3],[-7,2],[-7,-2],[-4,-2],[-1,-4],[-1,-4],[-1,-3],[-5,2],[-5,3],[-6,-3],[-3,2],[4,10],[-2,11],[1,10],[-14,-5],[-5,-4],[-2,-6],[-5,-3],[-2,7],[-1,8],[1,14],[-1,6],[-3,3],[-5,-11],[-4,8],[-8,-2],[0,6],[3,3],[0,5],[5,4],[1,3],[8,0],[3,4],[1,4],[-1,3],[-2,3],[-1,6],[-3,4],[-4,3],[-2,3],[-2,3],[-3,3],[-1,2],[-3,7],[3,5],[-1,3],[-7,2],[-14,-13],[-36,-28],[-38,-32],[-7,-11],[-21,-19],[-18,-50],[2,15],[-1,9],[-4,9],[-7,7],[-5,3],[-6,-5],[-15,-2],[-5,-5],[-3,-10],[-12,-3],[-11,-15],[-10,-3],[-7,-8],[-10,-1],[-2,-8],[-18,0],[-8,2],[-5,4],[3,10],[2,1],[0,5],[-8,-3],[-1,-2],[-1,-4],[-1,-5],[0,-5],[3,-2],[3,-4],[8,-1],[-8,-4],[-6,-13],[-13,-13],[-2,-9],[-2,-7],[-1,-7],[1,-9],[3,-2],[10,6],[7,2],[-17,-13],[-35,-12],[-13,-10],[-4,-10],[-3,-2],[-7,3],[-3,0],[-4,-2],[-8,-5],[-7,-3],[-3,-3],[-3,-5],[-2,-5],[-4,-5],[-5,-1],[-11,0],[4,11],[9,13],[2,9],[-3,7],[-4,5],[-5,5],[-3,1],[1,-4],[0,-5],[-1,-7],[1,-16],[-5,13],[-5,6],[-10,2],[-22,3],[-6,-1],[-7,-4],[-6,3],[-8,-4],[-7,3],[-11,-3],[-17,7],[-11,7],[15,11],[15,2],[6,10],[5,-5],[11,2],[6,-2],[4,1],[1,-1],[0,-1],[0,-6],[0,-1],[2,-3],[1,-2],[1,-2],[3,-1],[9,3],[9,10],[5,13],[-7,7],[0,7],[12,11],[4,4],[4,8],[2,2],[8,0],[11,-2],[12,11],[6,20],[-9,7],[-7,-3],[-6,-3],[-5,-11],[-3,-10],[-3,-2],[3,21],[1,6],[0,6],[-1,6],[-2,8],[-2,5],[-2,12],[-2,13],[0,38],[-1,6],[-1,6],[-3,3],[-7,8],[-2,3],[-3,9],[-1,6],[1,3],[2,1],[3,3],[1,1],[2,-1],[1,-3],[-1,-2],[1,-2],[1,-2],[0,-2],[1,-3],[2,-2],[2,0],[7,4],[8,3],[5,3],[9,12],[22,15],[2,3],[1,6],[1,3],[2,1],[4,-1],[2,0],[1,8],[-3,4],[-9,0],[-1,2],[0,4],[-2,5],[-4,2],[-3,-2],[-7,-8],[-3,-3],[-11,-3],[-33,3],[-9,-6],[-4,-10],[2,-9],[9,-3],[0,-4],[-13,5],[-12,14],[-10,19],[-15,59],[-4,10],[-2,13],[3,12],[5,7],[6,7],[-10,-19],[-2,-9],[2,-9],[7,-8],[8,10],[4,16],[-1,15],[2,5],[0,8],[0,8],[-2,7],[3,12],[4,8],[5,4],[6,1],[6,15],[5,7],[4,-7],[1,0],[3,11],[5,14],[5,9],[9,-5],[4,1],[4,4],[3,3],[3,7],[1,3],[-40,75],[-2,17],[-3,7],[-1,7],[0,6],[0,4],[-2,6],[-6,7],[-23,55],[-25,39],[-3,10],[-2,13],[0,21],[-2,8],[-14,7],[-6,8],[-5,10],[-3,11],[-6,23],[-3,15],[2,6],[3,3],[2,6],[3,7],[0,7],[1,5],[-1,3],[-1,4],[-10,21],[-2,4],[8,0],[10,5],[7,4],[0,9],[1,7],[3,1],[-4,3],[-4,0],[-8,-3],[1,-2],[1,-2],[5,-4],[0,-5],[-9,-3],[-10,-2],[-8,5],[1,13],[-5,-2],[-2,-4],[0,-5],[0,-6],[0,-2],[2,-1],[1,-1],[1,1],[0,-9],[-2,0],[-2,-4],[0,-6],[3,-2],[8,-2],[6,-6],[2,-10],[-2,-6],[-7,-5],[-7,-3],[-3,-4],[-5,-2],[-6,10],[-1,6],[-7,14],[-2,4],[0,4],[3,3],[3,4],[1,1],[2,11],[0,6],[-2,6],[-4,8],[-14,18],[-5,2],[-4,4],[-3,7],[4,9],[14,12],[16,42],[4,13],[2,14],[3,14],[7,9],[8,7],[6,7],[1,6],[-1,8],[-1,6],[3,2],[0,4],[-1,15],[0,6],[4,0],[5,3],[22,22],[4,5],[10,7],[26,-3],[7,14],[-4,3],[-2,1],[5,5],[18,11],[-8,6],[-8,-3],[-7,-7],[-30,-18],[-6,2],[1,10],[-7,16],[-11,11],[-8,0],[15,-18],[2,-4],[0,-12],[0,-9],[-3,-7],[-14,-5],[-15,-8],[-7,-3],[-4,-4],[-2,-12],[-1,-13],[-2,-9],[-1,-3],[-2,-11],[-17,-33],[-2,-7],[-1,-4],[0,-9],[-1,-4],[-4,-2],[-9,2],[-4,-8],[2,-6],[3,-7],[2,-11],[-10,-7],[-3,1],[2,10],[-2,4],[-10,-8],[-3,-6],[4,-7],[-4,-3],[-7,-3],[-4,-3],[-2,-5],[-3,-2],[-2,2],[-1,6],[-2,-4],[-1,-3],[-2,-1],[-3,0],[0,-4],[9,-5],[3,-3],[-7,-4],[-3,0],[11,-7],[2,-5],[1,-6],[0,-5],[-3,-4],[-3,-1],[-36,4],[12,-8],[28,-9],[25,-19],[5,-8],[-1,-11],[-8,-13],[-3,-8],[-1,-11],[1,-12],[3,-7],[2,-8],[-1,-12],[-2,-11],[-3,-9],[-4,-7],[-4,-6],[-15,-8],[-17,-1],[-17,4],[-14,9],[0,-21],[-15,-15],[-78,-50],[-64,-17],[-83,-17],[-72,-1],[-62,20],[-8,5],[-9,13],[-8,16],[-4,15],[-3,23],[8,8],[25,5],[0,4],[-3,0],[-3,0],[-3,2],[-3,2],[2,2],[5,6],[-9,4],[-15,14],[-41,19],[-11,11],[-4,1],[-3,3],[-6,11],[-2,3],[-1,2],[-10,14],[-2,5],[-2,5],[0,6],[3,4],[0,4],[-8,4],[-14,17],[-14,8],[-8,10],[-5,10],[3,8],[-2,5],[-5,4],[-1,5],[1,5],[7,13],[-18,-19],[-11,-8],[-8,5],[-7,7],[-50,20],[-5,3],[-9,14],[-9,8],[-9,13],[-7,15],[-4,11],[6,0],[19,9],[5,1],[3,1],[1,4],[1,4],[1,6],[1,6],[2,2],[5,3],[3,6],[0,8],[-3,7],[-7,5],[-42,-19],[-4,-4],[-6,-8],[-7,-2],[-41,8],[-4,3],[-13,21],[5,9],[8,8],[8,4],[11,-4],[5,1],[4,3],[4,6],[3,6],[3,4],[12,6],[9,10],[15,10],[10,13],[16,9],[7,9],[2,11],[-1,9],[-10,18],[0,7],[4,2],[6,1],[4,2],[3,4],[13,10],[13,17],[-6,12],[-12,12],[-5,16],[6,12],[6,-7],[6,-13],[4,-8],[2,-2],[7,-8],[4,-2],[4,2],[11,14],[7,6],[12,7],[12,2],[8,-5],[-1,-8],[-12,-19],[-3,-7],[8,-17],[20,-4],[36,0],[10,-9],[4,-3],[11,0],[5,-3],[2,-1],[19,0],[3,-3],[1,-6],[0,-8],[0,-7],[2,-6],[2,-4],[3,-2],[5,0],[-3,-5],[0,-6],[2,-7],[3,-7],[-28,-16],[-3,-4],[-1,-2],[-1,-7],[-1,-3],[-1,-2],[1,-5],[0,-2],[-2,0],[-3,1],[-1,-1],[-2,-2],[-5,-2],[-3,-3],[-1,-3],[-1,-10],[-2,-4],[-1,-2],[-8,-5],[7,-8],[6,3],[12,20],[15,20],[5,7],[6,8],[9,3],[18,-1],[8,5],[4,10],[5,22],[5,10],[6,7],[12,12],[9,5],[9,2],[18,0],[7,-1],[7,-5],[6,-8],[3,-12],[-2,-12],[-4,-10],[-1,-9],[7,-8],[-3,-6],[-3,-5],[-2,-7],[0,-11],[3,-8],[4,-8],[5,-6],[4,-2],[13,2],[12,4],[12,7],[50,44],[8,13],[2,11],[-4,11],[-8,10],[4,1],[14,-1],[-5,7],[-33,27],[-88,27],[-14,-3],[-5,3],[21,17],[12,5],[12,-2],[14,-10],[5,-2],[33,9],[5,4],[2,6],[-2,7],[-5,4],[-40,8],[-9,7],[3,12],[6,-5],[6,5],[5,8],[4,8],[-9,5],[-18,-12],[-9,-1],[1,-12],[-4,-4],[-7,-1],[-6,-5],[-3,-4],[-5,-4],[-3,-3],[-1,-4],[-2,-10],[-2,-4],[-12,-14],[-14,-4],[-35,3],[-64,3],[-55,-10],[-3,1],[-5,9],[-3,2],[5,15],[0,5],[-5,8],[-7,6],[-24,3],[-3,-2],[-6,-6],[-6,-3],[-6,-8],[-2,-2],[-5,3],[-6,18],[-5,8],[-7,4],[-8,0],[-7,-1],[-7,-3],[-16,-18],[-6,-3],[-12,1],[-13,3],[-12,11],[-8,22],[23,21],[8,4],[32,3],[6,-3],[0,22],[0,6],[3,9],[4,2],[17,-4],[2,2],[4,5],[4,5],[12,3],[5,2],[-4,7],[-9,-1],[-17,-6],[-15,4],[-19,0],[-4,-5],[2,-11],[1,-12],[-9,-5],[-7,2],[-7,4],[-7,7],[-5,8],[0,7],[-13,9],[-4,9],[6,5],[6,2],[5,5],[4,20],[4,7],[11,9],[-23,24],[3,-10],[3,-7],[5,-4],[6,-3],[-6,-6],[-5,-1],[-4,-3],[-4,-10],[0,-4],[2,-6],[0,-5],[-4,-2],[-15,-4],[-38,28],[-6,3],[2,7],[10,11],[9,14],[6,2],[13,0],[4,4],[1,8],[1,10],[0,9],[-1,9],[-3,3],[-12,-2],[0,4],[10,8],[12,2],[3,2],[4,6],[-1,5],[-3,5],[-2,8],[6,14],[22,0],[8,11],[-3,5],[1,3],[14,8],[0,1],[0,3],[1,3],[1,2],[9,6],[27,5],[6,-1],[2,1],[0,2],[-1,8],[1,2],[3,4],[3,2],[9,3],[6,5],[5,7],[1,10],[-3,11],[18,7],[-5,9],[-5,5],[-5,2],[-7,0],[2,-1],[2,-3],[2,-4],[0,-4],[-2,-4],[-3,0],[-3,1],[-3,-1],[-4,-6],[-6,-14],[-15,-25],[-6,-4],[-19,-1],[-7,-3],[-5,-5],[-2,-4],[-1,-5],[-3,-8],[-2,-2],[-3,1],[-3,2],[-3,2],[-4,-2],[-1,-4],[2,-6],[0,-9],[1,-2],[0,-2],[-3,-4],[-3,-1],[-3,1],[-4,2],[-2,2],[-6,-3],[-9,-10],[-5,-3],[2,-12],[2,-4],[-5,-4],[-9,-5],[-4,-4],[-2,-4],[-3,-6],[-2,-4],[-4,-2],[4,-10],[5,0],[5,2],[4,-2],[1,-5],[-2,-6],[0,-7],[2,-9],[-12,-1],[-12,-6],[-12,-9],[-10,-12],[-2,-17],[8,-12],[6,-11],[-8,-17],[2,-4],[1,-8],[1,-18],[-3,-4],[-7,1],[-11,5],[-21,3],[-9,4],[-10,9],[-6,9],[-5,12],[-3,13],[-1,15],[0,-1],[2,1],[1,2],[1,4],[-1,2],[-2,2],[-2,4],[-1,4],[0,10],[0,6],[3,3],[6,-1],[-4,6],[-1,6],[1,5],[4,4],[-8,1],[-17,8],[-36,6],[-7,5],[-6,9],[-12,37],[1,9],[7,9],[16,9],[9,3],[3,2],[3,3],[2,5],[1,5],[1,6],[0,6],[-3,12],[-7,8],[-15,7],[-4,2],[-6,7],[-4,3],[-5,1],[-35,-11],[-10,-7],[-3,-8],[2,-3],[7,-2],[3,-3],[-15,-4],[-9,10],[-15,42],[-2,5],[1,4],[2,5],[1,3],[0,25],[2,10],[2,12],[3,12],[5,6],[-3,-35],[0,-5],[2,-2],[5,-8],[4,-3],[16,4],[4,2],[6,7],[66,16],[5,4],[-4,3],[-14,-3],[-3,1],[-5,5],[-3,2],[-4,1],[-7,-1],[-4,0],[-4,3],[-5,8],[-3,1],[-10,6],[-11,14],[-10,18],[-7,19],[36,8],[18,-4],[17,5],[5,-1],[10,-5],[4,1],[10,11],[5,1],[32,2],[6,6],[-6,2],[-9,18],[-13,9],[-6,10],[-8,22],[-3,12],[-2,12],[0,12],[8,30],[4,5],[1,6],[1,7],[1,6],[3,8],[7,11],[7,9],[13,9],[41,73],[29,38],[3,5],[5,17],[5,10],[7,10],[24,24],[15,22],[10,9],[11,5],[10,1],[25,-4],[12,3],[5,0],[6,-7],[-4,-4],[-2,-6],[1,-5],[3,-5],[2,-9],[10,-5],[21,-3],[3,-2],[6,-10],[4,-4],[5,-2],[17,2],[-11,-7],[-4,-4],[-9,-13],[-5,-6],[-5,-5],[7,1],[6,4],[10,17],[2,3],[3,2],[9,0],[5,1],[2,7],[-4,10],[-8,3],[-15,2],[-2,7],[4,9],[9,14],[-4,-1],[-3,-1],[-6,-6],[-4,-9],[-3,-3],[-3,1],[-8,9],[-19,-6],[-8,4],[11,18],[2,6],[-2,8],[-4,5],[-6,2],[-4,1],[-2,2],[1,3],[3,5],[3,4],[3,1],[8,1],[25,15],[62,79],[-7,2],[-10,-6],[-9,-12],[-11,-16],[-14,-8],[-21,-26],[-11,-9],[-9,0],[-5,20],[-1,17],[-3,14],[-5,11],[-6,9],[3,3],[2,3],[0,3],[-3,3],[1,2],[0,3],[1,2],[2,1],[-2,2],[-6,6],[5,3],[4,2],[4,0],[4,-1],[10,-4],[5,1],[2,7],[-18,5],[-8,6],[-6,13],[7,8],[2,1],[1,2],[0,12],[1,4],[3,7],[5,17],[17,38],[8,13],[10,8],[7,3],[38,2],[3,-3],[2,-3],[6,-5],[2,-1],[2,1],[1,4],[2,4],[3,2],[3,-1],[8,-7],[3,0],[5,3],[2,-1],[6,-5],[6,-3],[2,0],[3,3],[-4,16],[-6,11],[-7,6],[-41,10],[-5,9],[-2,8],[-4,4],[-9,4],[5,6],[15,13],[6,2],[4,3],[18,23],[16,12],[61,19],[42,-3],[46,-22],[17,3],[4,-1],[7,-3],[1,-3],[-2,-4],[2,-3],[6,-4],[2,-3],[3,-9],[2,-4],[9,-5],[2,-8],[-2,-8],[-5,-5],[0,-4],[8,2],[13,9],[6,1],[7,-5],[-7,-6],[-10,-7],[-6,-8],[-9,-19],[-38,-23],[-4,-21],[12,17],[31,18],[14,13],[12,22],[8,7],[11,-9],[14,-3],[12,-17],[8,-17],[5,-5],[17,11],[54,5],[6,2],[11,11],[6,3],[6,9],[2,4],[4,5],[13,5],[11,11],[6,6],[3,8],[1,6],[0,8],[1,6],[2,4],[8,8],[30,6],[28,28],[47,75],[5,13],[2,4],[11,9],[3,5],[6,7],[8,6],[6,7],[2,11],[-11,16],[1,7],[5,2],[11,-1],[4,-1],[8,-6],[9,-2],[12,-7],[9,-1],[5,-3],[6,-11],[4,-3],[4,-3],[4,0],[-5,-1],[-5,-6],[-5,-7],[-4,-6],[-6,-3],[-11,-2],[-6,-3],[0,-4],[71,11],[70,11],[11,-2],[9,-5],[4,-1],[5,1],[13,9],[4,1],[3,0],[4,-3],[4,-4],[4,-1],[5,3],[5,5],[5,3],[56,16],[36,40],[3,7],[3,14],[8,7],[9,4],[7,5],[16,29],[11,8],[7,9],[10,19],[6,46],[-10,48],[-34,85],[-5,28],[-2,66],[-6,26],[-6,9],[-19,18],[-7,3],[-7,5],[-17,24],[-8,8],[0,4],[3,0],[1,2],[4,6],[-5,5],[-12,3],[-6,4],[4,3],[5,1],[10,0],[0,4],[-39,0],[-28,9],[-7,-1],[-8,-4],[-4,-6],[-3,-7],[-3,-6],[-5,-1],[0,4],[4,19],[2,5],[4,6],[3,2],[2,3],[2,9],[1,10],[1,6],[1,6],[3,7],[4,5],[8,5],[7,2],[5,-2],[8,-8],[69,-13],[16,3],[8,12],[-17,10],[-5,5],[31,2],[4,1],[3,5],[3,5],[3,4],[26,21],[8,15],[4,39],[1,2],[0,4],[-1,4],[-3,7],[-7,7],[-3,5],[-13,31],[-5,8],[-4,3],[-13,4],[-11,12],[-12,4],[-28,33],[-2,4],[6,0],[13,-7],[5,1],[10,10],[6,3],[5,2],[-3,3],[-5,1],[-5,1],[-4,-2],[-1,-1],[-1,-5],[-1,-1],[-33,4],[-8,-4],[1,-14],[-6,-8],[-22,-14],[-2,-4],[-2,-12],[-2,-4],[-3,-4],[-6,-3],[-1,-5],[-1,-5],[-1,-4],[-6,-10],[-4,-4],[-4,-3],[-6,-2],[-12,0],[-6,-2],[-4,-3],[-3,-4],[-3,-3],[-4,2],[-1,10],[-22,8],[-8,4],[-8,12],[-9,5],[-20,2],[6,-4],[12,-11],[7,-2],[-50,-24],[-15,-17],[5,-4],[5,2],[9,11],[5,4],[18,8],[-4,-5],[-10,-9],[-4,-2],[-1,-2],[-5,-8],[-3,-3],[-8,0],[-16,-5],[-28,10],[-11,-4],[4,-2],[8,-3],[3,-3],[-21,-2],[-9,-5],[-9,-10],[-3,-4],[-8,-18],[-3,-5],[-3,-4],[-13,-4],[-54,-32],[-13,-15],[-7,-7],[-7,-8],[-4,-12],[0,-7],[2,-11],[0,-6],[-2,-6],[-4,-4],[-2,-6],[2,-7],[-2,-8],[-25,-16],[-6,-9],[-7,-5],[-6,2],[-5,14],[0,9],[1,7],[0,7],[-2,7],[-6,13],[-3,5],[-5,5],[4,16],[3,4],[6,-1],[0,5],[-12,7],[-7,3],[-7,8],[-3,2],[-2,2],[-6,8],[-3,3],[-5,1],[-18,-1],[0,3],[3,1],[5,4],[-9,13],[-14,10],[-11,11],[0,18],[-18,-2],[-8,-4],[-32,-26],[-9,-4],[0,-4],[6,-1],[15,-16],[6,-2],[23,-1],[4,-5],[9,-15],[6,-5],[6,0],[22,4],[-2,-3],[-2,-4],[1,-4],[1,-6],[-14,-10],[-5,-9],[-2,-15],[-3,-13],[-9,-1],[-9,5],[-7,7],[-15,32],[-6,4],[-9,2],[-7,6],[-14,13],[-36,22],[-39,13],[-39,2],[-43,-12],[-116,0],[34,3],[-21,9],[-85,-52],[-27,-6],[6,6],[19,11],[-10,6],[-32,-6],[-8,-4],[-14,-14],[-6,1],[2,11],[-2,8],[-4,5],[-4,1],[0,-4],[2,-2],[2,-2],[-3,-5],[-2,-3],[-3,-1],[-4,1],[3,-8],[6,-5],[5,-3],[5,-5],[-7,-7],[22,1],[12,3],[9,8],[-8,-10],[-11,-5],[-55,-4],[-114,38],[-120,21],[-35,14],[-52,8],[-50,31],[-21,32],[-10,23],[2,10],[0,14],[-1,11],[-1,7],[3,4],[9,1],[12,8],[3,2],[0,5],[-2,4],[-3,-4],[-2,11],[0,9],[5,18],[-4,3],[-7,10],[-11,5],[-9,13],[-7,1],[4,-9],[19,-23],[-6,5],[-16,17],[-15,10],[-29,17],[-5,7],[2,8],[2,9],[-7,13],[-10,10],[-22,13],[-14,11],[-23,31],[1,14],[5,25],[3,13],[5,13],[4,7],[4,4],[8,-3],[-3,-6],[-7,-17],[-5,-11],[-3,-11],[-4,-19],[4,-9],[4,-2],[4,0],[3,-1],[9,-8],[25,-12],[12,-1],[15,7],[13,-2],[9,5],[5,0],[4,4],[1,0],[1,-1],[1,1],[1,2],[-1,5],[0,1],[14,13],[5,10],[-2,12],[-4,14],[6,6],[18,6],[3,4],[3,4],[3,3],[4,2],[4,-5],[5,-7],[20,1],[35,-14],[10,-2],[9,2],[7,6],[-12,12],[-18,13],[-24,9],[-23,6],[-11,-1],[-7,-3],[-17,8],[-19,11],[-40,9],[-81,20],[4,-4],[3,-5],[12,-6],[16,-4],[24,-7],[21,-9],[-32,5],[-27,10],[-38,16],[-51,8],[-60,5],[-57,31],[-11,13],[-22,17],[-28,12],[-17,14],[-41,15],[-5,4],[-2,3],[-6,4],[-3,3],[-1,4],[-2,9],[-1,3],[-6,11],[-1,4],[0,2],[-2,7],[1,3],[2,2],[1,2],[2,6],[12,12],[26,16],[15,9],[12,4],[4,-4],[-3,-6],[-4,-3],[-5,-2],[-8,-8],[-14,-4],[-10,-8],[-8,-11],[-2,-16],[6,-9],[11,4],[21,13],[8,4],[11,7],[9,11],[1,11],[67,0],[14,4],[8,8],[1,15],[-8,5],[-9,3],[-5,8],[4,10],[10,2],[20,-2],[-4,4],[-5,3],[-5,1],[-5,0],[0,4],[49,41],[16,4],[2,-7],[6,-6],[13,-12],[8,-3],[9,1],[25,10],[21,19],[26,12],[4,10],[-26,17],[12,10],[9,2],[12,8],[5,4],[-4,-4],[-3,-2],[-3,-4],[-2,-6],[6,-1],[11,-3],[6,4],[-1,2],[-3,7],[-2,2],[4,3],[12,18],[9,11],[53,35],[21,5],[14,11],[15,6],[12,11],[7,2],[28,-3],[13,-4],[14,-9],[-5,0],[-10,3],[-6,-3],[20,-16],[94,-12],[71,28],[-5,8],[-7,5],[-19,5],[-28,18],[-15,4],[-23,0],[-7,3],[-5,10],[5,13],[10,15],[20,20],[77,47],[35,10],[7,6],[9,5],[55,5],[9,-3],[-1,-3],[0,-2],[0,-2],[-1,-2],[2,-6],[3,-5],[4,-3],[4,-2],[2,14],[6,5],[7,2],[6,4],[1,2],[1,9],[2,4],[4,3],[9,4],[46,32],[4,14],[54,16],[69,12],[80,5],[70,-5],[16,-6],[14,-14],[-78,9],[-6,1],[2,-8],[11,-2],[21,0],[6,-5],[4,-9],[2,-12],[1,-12],[-2,-12],[-5,-8],[-22,-21],[-1,-4],[-1,-5],[-2,-6],[-3,-4],[-2,-3],[3,-11],[-1,-8],[-1,-7],[-1,-10],[8,-17],[-1,-1],[1,-3],[1,-4],[3,-4],[-6,-14],[-12,-11],[-13,-8],[-9,-4],[-16,0],[-6,-2],[-6,-8],[-6,-3],[-15,2],[-5,-9],[44,0],[13,8],[-1,-10],[4,-3],[5,2],[2,5],[1,7],[4,3],[4,-1],[4,-3],[4,-23],[10,-20],[13,-16],[13,-10],[22,-7],[91,12],[4,-3],[10,-8],[5,-2],[45,-3],[23,5],[11,5],[10,8],[5,1],[23,-3],[22,4],[7,4],[-1,-5],[15,-11],[7,-9],[1,-10],[-1,-3],[-2,-4],[0,-5],[0,-6],[2,-8],[2,-1],[2,2],[2,3],[0,3],[0,6],[2,5],[5,2],[24,5],[12,6],[5,1],[2,1],[2,3],[2,1],[2,-3],[3,-6],[1,-3],[2,-1],[3,-1],[8,-5],[3,-2],[12,0],[11,4],[27,17],[8,3],[73,-20],[-5,-1],[-4,-4],[-8,-11],[5,-1],[10,7],[4,-2],[3,-6],[0,-5],[-3,-5],[-4,-4],[8,-5],[10,-2],[11,2],[8,5],[0,3],[-16,8],[4,10],[5,9],[5,8],[5,6],[9,5],[5,4],[1,5],[-3,1],[-13,-7],[0,4],[6,5],[21,28],[6,9],[2,5],[3,13],[2,6],[4,3],[2,3],[8,20],[1,7],[2,3],[2,2],[6,2],[12,10],[41,-2],[-1,-2],[-3,-6],[15,-17],[6,-4],[17,-2],[17,2],[13,11],[6,3],[6,-5],[0,-6],[-1,-8],[-3,-6],[-4,-1],[1,-5],[1,-5],[2,-5],[2,-5],[-3,-4],[-2,-5],[-1,-5],[2,-6],[-5,-4],[-5,-1],[-11,1],[0,-5],[6,-3],[6,-1],[7,2],[6,2],[4,4],[3,5],[4,12],[8,15],[2,5],[3,23],[3,6],[-5,12],[-12,14],[-5,8],[-5,12],[-6,8],[-6,6],[-35,15],[-13,3],[-10,6],[-4,1],[-18,-1],[-24,14],[-65,-1],[-4,-2],[-9,-10],[-6,-3],[-17,-2],[-8,-7],[-5,-12],[2,-11],[9,-2],[-3,-4],[1,-4],[4,-3],[2,-5],[-1,-9],[-3,-5],[-4,-1],[-5,5],[-2,5],[-1,6],[-1,7],[-1,6],[-1,5],[-3,2],[-2,3],[-1,8],[2,10],[14,25],[3,8],[3,10],[2,12],[1,13],[-6,25],[-12,19],[-41,40],[-23,35],[-13,15],[-16,9],[-48,5],[-9,4],[-4,3],[-3,2],[-2,2],[-3,5],[-2,5],[0,8],[-1,6],[-4,8],[-10,16],[-3,8],[-5,-2],[-6,12],[-4,15],[1,8],[12,9],[5,2],[16,1],[1,2],[0,2],[2,7],[1,5],[2,5],[3,3],[4,-2],[2,-5],[5,-11],[8,-5],[9,7],[9,11],[7,5],[6,-5],[6,-9],[20,-40],[25,-38],[8,-7],[17,-5],[4,-3],[1,-5],[-11,-22],[-6,-17],[-2,-11],[1,-13],[4,-7],[14,-12],[5,-7],[22,-38],[13,-15],[66,-44],[7,-2],[48,8],[13,8],[9,2],[5,2],[-1,4],[8,3],[14,17],[7,4],[9,2],[3,-2],[11,-19],[3,-3],[23,-7],[7,-7],[14,-20],[56,-39],[5,-3],[17,4],[24,-3],[46,13],[56,5],[6,6],[3,12],[1,10],[-2,26],[1,23],[-9,17],[-21,26],[1,1],[3,2],[2,1],[-4,13],[5,4],[9,0],[7,3],[-9,5],[-12,1],[-10,-6],[-3,-16],[-9,7],[-12,3],[-12,0],[-8,-8],[-2,-7],[-2,-6],[-2,-4],[-5,-1],[-23,4],[-17,9],[-32,29],[-19,6],[-50,-12],[-21,0],[-10,-5],[-9,-11],[0,-2],[1,-8],[-1,-2],[-2,-2],[-6,-1],[-1,-1],[-1,-6],[1,-5],[0,-5],[-1,-7],[-9,-10],[-11,-4],[-23,0],[-10,4],[-4,1],[-10,-6],[-4,2],[-6,8],[-13,9],[0,7],[5,12],[-14,2],[-15,7],[-60,55],[-10,17],[9,11],[1,3],[-1,6],[-3,13],[-1,11],[1,3],[8,3],[9,11],[5,9],[0,8],[-2,8],[1,12],[5,8],[15,5],[5,10],[-2,2],[-1,2],[0,2],[-1,3],[19,5],[9,1],[20,-4],[11,2],[5,6],[-7,12],[-6,2],[-12,-1],[-4,3],[-3,6],[-5,4],[-15,8],[-3,0],[-2,-1],[-1,-3],[-1,-3],[0,-1],[-4,0],[-4,1],[-4,4],[-4,6],[-7,9],[-11,4],[-43,-4],[-72,-20],[-3,3],[0,8],[1,7],[0,4],[-3,6],[-3,3],[-3,2],[-5,0],[2,-12],[-2,-6],[-2,-6],[6,-13],[-6,-3],[-15,3],[-19,-10],[-6,2],[-3,4],[0,5],[11,28],[1,4],[5,4],[6,12],[8,24],[5,8],[1,3],[-2,6],[-5,4],[-8,1],[-8,-2],[-5,-3],[10,0],[4,-4],[3,-9],[-5,-3],[-26,-43],[-20,-24],[-6,-3],[-23,1],[-4,1],[-4,2],[1,2],[0,2],[0,2],[1,3],[-14,7],[-43,-4],[-14,4],[-3,-3],[4,-9],[5,-5],[13,-3],[6,-4],[-7,-2],[-55,18],[-19,13],[-73,11],[-8,5],[-71,11],[-10,5],[-11,17],[-3,24],[0,27],[-3,26],[-2,11],[-5,28],[-4,11],[-38,85],[-24,39],[-29,33],[-81,53],[-24,25],[-19,14],[-26,29],[-9,6],[-12,2],[-1,0],[2,-8],[5,-4],[4,-3],[4,-5],[-8,4],[-15,17],[-15,6],[-55,50],[-50,38],[-57,37],[-51,19],[-41,9],[-44,17],[-18,18],[-10,16],[-11,14],[-3,5],[-7,8],[-28,14],[-26,22],[-96,26],[-41,-3],[-9,7],[-1,0],[4,5],[60,29],[25,9],[17,-2],[-19,-3],[-57,-25],[-8,-6],[23,-7],[33,5],[26,23],[7,-1],[14,-6],[-2,6],[-7,5],[-4,5],[24,-8],[6,4],[-5,4],[-5,14],[-5,2],[11,16],[4,8],[4,13],[-1,11],[5,10],[8,8],[5,7],[3,10],[-1,4],[-1,4],[-1,7],[1,6],[5,18],[-3,5],[0,4],[3,3],[2,4],[1,8],[1,6],[0,13],[1,13],[1,11],[1,12],[-1,14],[-8,27],[-3,15],[4,7],[38,3],[21,-11],[55,4],[41,-11],[95,9],[77,3],[71,20],[123,9],[25,10],[24,4],[22,15],[35,14],[8,6],[17,15],[15,6],[55,42],[94,114],[6,9],[19,52],[5,7],[6,-3],[-23,-55],[-10,-14],[0,-4],[9,4],[24,32],[-2,4],[6,6],[4,8],[2,10],[-4,9],[3,5],[1,5],[-1,4],[0,6],[2,7],[3,5],[0,5],[-3,7],[9,3],[4,12],[0,12],[0,6],[1,3],[-1,6],[-2,7],[-1,4],[-4,3],[-15,6],[0,3],[17,2],[9,4],[8,6],[-3,4],[-8,8],[9,9],[-2,1],[-7,7],[5,7],[18,-3],[7,4],[5,14],[-5,7],[-10,3],[-9,0],[2,10],[4,4],[4,3],[5,4],[-2,4],[8,12],[44,37],[10,11],[12,5],[12,15],[21,21],[16,9],[7,12],[6,15],[3,13],[-1,4],[-2,12],[8,5],[28,-1],[-1,3],[-2,10],[-1,3],[9,4],[-3,10],[9,11],[21,16],[11,4],[2,2],[1,4],[1,4],[1,2],[4,2],[13,11],[7,10],[13,14],[11,20],[3,2],[13,14],[14,10],[7,1],[8,-3],[-1,-2],[-1,-6],[5,0],[2,0],[0,-4],[-2,0],[-5,-4],[38,-10],[5,-6],[-8,-8],[-35,5],[-12,-1],[10,-9],[21,-1],[9,-6],[-8,-1],[-13,-3],[-7,-7],[5,-10],[-7,-9],[-9,-1],[-30,11],[-5,-1],[-4,-2],[-7,-7],[-4,-3],[-12,-8],[0,-4],[72,9],[4,3],[10,10],[7,5],[23,-3],[-4,4],[-3,0],[-2,0],[2,8],[5,5],[5,3],[5,1],[3,1],[0,4],[1,4],[2,3],[3,2],[3,1],[81,2],[36,11],[40,22],[12,2],[0,-3],[-2,0],[0,-5],[6,0],[17,-8],[-2,6],[-6,7],[-2,7],[7,5],[27,8],[67,49],[6,7],[-18,-4],[-12,-9],[-29,-19],[11,11],[23,17],[67,33],[64,53],[8,10],[5,5],[4,1],[-3,-6],[2,-5],[5,-4],[4,-1],[7,-1],[18,9],[25,2],[5,-2],[2,-7],[-2,-8],[-2,-6],[-3,-4],[0,-4],[2,1],[5,-1],[-6,-13],[-19,-1],[-8,-8],[-9,-11],[-11,-5],[-25,-2],[10,-6],[12,0],[49,17],[7,-3],[-4,-8],[-10,-12],[-5,-9],[-6,-18],[-5,-7],[-6,-3],[-1,-11],[-16,-19],[-6,-11],[11,-2],[24,24],[11,7],[6,-2],[4,-5],[3,-7],[2,-11],[0,-1],[-2,-1],[-1,-2],[-1,-4],[1,-2],[2,-1],[1,0],[1,-5],[2,-3],[0,-3],[-1,-6],[12,-4],[9,-15],[8,-19],[9,-15],[0,18],[-4,8],[-7,5],[-6,10],[-1,6],[-1,7],[0,13],[-1,3],[-2,3],[-1,4],[1,4],[2,2],[1,4],[-1,5],[-10,15],[-2,7],[0,7],[1,5],[2,5],[0,5],[3,12],[5,7],[5,9],[1,15],[4,2],[3,-1],[20,-15],[5,-2],[11,2],[21,11],[15,4],[13,10],[4,0],[8,-9],[5,-2],[4,2],[14,10],[12,2],[5,3],[4,7],[-36,-8],[-30,5],[-10,-1],[-1,-1],[0,-3],[-1,-3],[0,-1],[-2,0],[-14,0],[-3,-2],[-2,-4],[-4,-4],[-5,-2],[-10,0],[-4,2],[-3,2],[-6,8],[-17,16],[-5,6],[-2,5],[-1,5],[-1,5],[-1,6],[-1,5],[-3,3],[-3,1],[-17,19],[-16,2],[-17,-8],[-15,-12],[0,2],[-1,3],[-1,7],[9,10],[51,34],[7,3],[14,1],[7,4],[-10,0],[9,8],[29,30],[7,11],[5,4],[6,3],[14,3],[13,9],[8,4],[30,3],[8,3],[10,10],[52,14],[-13,-12],[-31,-3],[-15,-9],[55,4],[5,-4],[4,-12],[-11,-6],[-36,-2],[-28,-15],[-10,-2],[0,-4],[15,-6],[5,-4],[5,0],[5,4],[5,1],[5,-7],[-2,-2],[-2,-4],[-2,-2],[7,-10],[15,-12],[6,-10],[2,3],[-15,30],[-2,12],[12,3],[32,-4],[36,8],[-4,12],[-7,4],[-15,0],[6,7],[96,-15],[105,16],[-28,3],[-15,6],[-8,12],[12,0],[25,-10],[96,0],[50,18],[53,33],[13,5],[9,9],[4,2],[6,1],[91,71],[39,50],[18,28],[58,61],[37,28],[25,7],[19,15],[7,8],[8,5],[10,-3],[10,-8],[7,-8],[-8,-2],[-16,11],[-8,-1],[-18,-17],[-10,-4],[-4,-3],[9,-10],[4,-7],[2,-9],[4,-5],[28,-5],[-4,-9],[1,-5],[5,-2],[53,2],[26,-7],[13,-8],[-3,-10],[-1,-2],[14,-1],[5,-3],[-4,-7],[-15,-13],[0,-5],[11,2],[10,3],[10,7],[8,11],[3,3],[4,1],[4,-2],[1,-6],[3,-6],[6,1],[12,7],[14,0],[49,-15],[8,-8],[6,-12],[5,-14],[1,-15],[-4,-12],[-8,-7],[-12,-4],[-4,-3],[-7,-10],[-3,-1],[-6,0],[-2,-3],[-1,-3],[-2,-11],[-4,-3],[-6,-3],[-12,-2],[-1,-1],[-3,-6],[-2,-1],[-67,-6],[-7,-3],[-2,0],[7,-3],[7,0],[7,-2],[5,-10],[-11,-8],[-27,2],[-11,-6],[9,-2],[18,5],[9,-3],[-3,-3],[-8,-6],[8,-3],[17,4],[7,-9],[-4,-4],[4,-6],[8,-7],[3,-7],[-4,-4],[-4,-2],[-3,-4],[-2,-6],[1,-7],[3,-8],[2,-6],[-1,-7],[-2,-7],[0,-4],[15,4],[4,2],[3,8],[-4,4],[-3,5],[-1,7],[2,9],[8,6],[23,-3],[9,3],[7,5],[8,1],[8,-3],[9,-10],[3,2],[1,5],[-1,2],[-2,2],[-1,4],[-1,6],[-1,4],[6,1],[12,-13],[7,0],[10,12],[2,6],[0,5],[-1,11],[1,13],[1,9],[4,7],[13,4],[18,22],[4,4],[13,4],[3,3],[7,8],[3,2],[6,-4],[9,-17],[7,-4],[7,3],[3,7],[-1,10],[-3,10],[-6,9],[-14,10],[-6,8],[6,8],[16,14],[7,2],[6,-4],[11,-18],[7,-2],[-1,11],[0,9],[-1,7],[-5,5],[4,6],[5,3],[6,-1],[5,-6],[2,-8],[0,-5],[-2,-5],[-1,-8],[1,-7],[3,-15],[0,-4],[-4,-6],[-9,-9],[-3,-8],[9,-3],[8,3],[4,9],[3,19],[2,11],[1,6],[-1,8],[-2,4],[0,2],[7,2],[4,0],[15,-4],[3,-4],[4,-7],[4,-4],[5,5],[6,3],[9,-3],[9,-7],[14,-17],[26,-14],[6,-7],[2,-4],[1,-8],[-1,-5],[-3,-6],[-4,-5],[-5,-4],[-1,-5],[0,-5],[-1,-4],[-3,-10],[-1,-3],[-4,-4],[-9,-5],[-21,-6],[-6,-9],[31,4],[6,-6],[3,-3],[10,-11],[0,-3],[0,-7],[0,-2],[11,-4],[14,0],[29,8],[14,0],[21,-5],[11,-7],[6,-12],[-2,-6],[2,-4],[5,-2],[5,-1],[11,3],[12,5],[24,25],[16,8],[13,21],[6,7],[7,3],[105,-7],[18,7],[19,1],[7,1],[15,16],[13,2],[25,-3],[5,-2],[4,-8],[4,-2],[3,0],[6,-3],[3,-1],[2,1],[4,6],[3,1],[24,-4],[4,-2],[2,-7],[2,-7],[3,-6],[4,-4],[5,-3],[5,-1],[5,2],[2,5],[1,5],[1,5],[5,1],[2,-2],[3,-4],[4,-8],[3,-5],[7,-7],[9,-13],[5,0],[11,15],[-4,12],[-6,6],[-7,2],[-8,0],[10,6],[46,-2],[61,-18],[30,-23],[0,-3],[-15,-8],[-29,-30],[-15,-3],[0,-4],[4,-3],[1,-6],[-2,-5],[-4,-2],[-12,-2],[-6,-4],[-4,-6],[1,-15],[8,-13],[9,-10],[54,-15],[28,2],[14,-3],[8,-11],[-9,-3],[-17,5],[-69,2],[-11,-3],[-17,7],[-8,-2],[-10,-4],[-9,-6],[-4,-9],[3,-1],[9,1],[4,-1],[7,-5],[3,-2],[8,1],[14,6],[135,9],[34,-8],[24,5],[8,-5],[-5,-2],[-3,-4],[-6,-12],[-6,-5],[-12,2],[-6,-3],[6,-4],[16,-5],[-27,-5],[-16,-8],[-10,-19],[68,-7],[78,2],[13,-7],[16,-1],[5,-5],[5,-5],[10,-6],[10,-12],[6,-2],[12,3],[0,4],[-6,9],[-3,12],[2,11],[7,4],[55,5],[2,1],[4,5],[2,2],[25,0],[2,1],[4,5],[1,2],[7,-1],[13,-6],[5,3],[-8,5],[-3,4],[-2,7],[48,4],[3,0],[5,-3],[3,-1],[4,1],[7,4],[4,-1],[4,-4],[1,-6],[2,-5],[2,-5],[8,2],[13,7],[11,3],[5,-10],[-2,-8],[-14,-27],[0,-4],[10,1],[36,15],[37,1],[64,41],[6,0],[16,-9],[7,1],[17,7],[44,0],[14,7],[7,0],[7,-7],[-1,-4],[-2,-2],[-2,-2],[-2,0],[29,-5],[9,5],[-4,4],[6,4],[84,-25],[8,-5],[6,-7],[4,-5],[2,-4],[2,-2],[4,-1],[9,8],[4,0],[21,-14],[9,-2],[21,5],[10,-2],[8,-9],[4,-3],[15,-3],[10,-6],[9,-9],[4,-7],[1,-10],[-3,-13],[36,-3],[11,3],[23,22],[10,2],[20,-1],[9,-5],[15,-17],[3,-3],[4,-1],[4,0],[4,2],[5,1],[4,-3],[-2,-5],[6,-2],[21,7],[6,-1],[6,-2],[7,-4],[6,-6],[-3,-3],[-1,-2],[-2,-7],[2,-2],[3,-1],[2,-2],[2,-3],[-2,-7],[-1,-3],[-2,-2],[6,-5],[29,-10],[73,-6],[50,-12],[1,0],[3,4],[1,0],[2,-1],[3,-5],[1,-2],[20,-4],[68,4],[1,9],[8,2],[29,0],[86,-6],[56,2],[41,-18],[28,-1],[4,2],[8,5],[3,1],[11,-9],[5,0],[-2,13],[11,-4],[19,-20],[16,-6],[16,-15],[12,-6],[4,-4],[-4,-6],[4,0],[3,2],[4,6],[4,3],[3,1],[8,0],[5,-3],[8,-17],[5,-4],[8,-2],[16,-8],[8,-2],[34,8],[0,-4],[-5,-4],[-19,-19],[8,-3],[33,6],[59,-15],[16,10],[4,1],[13,-6],[33,-7],[32,5],[7,3],[15,19],[35,14],[55,0],[9,2],[4,8],[3,4],[7,-2],[7,-6],[4,-6],[-1,-5],[-1,-3],[1,-4],[1,-4],[-1,-4],[-1,-4],[0,-9],[4,6],[4,10],[5,21],[-6,8],[-3,5],[-2,7],[13,5],[4,-3],[6,-6],[2,0],[3,1],[2,-1],[7,-4],[3,0],[2,6],[2,4],[5,1],[10,-3],[8,3],[15,9],[7,0],[14,-8],[5,-1],[28,2],[3,3],[1,5],[-1,5],[0,5],[4,2],[1,-2],[6,-13],[4,-3],[42,6],[1,-1],[1,-2],[10,-27],[5,-8],[6,5],[-4,7],[-3,10],[-2,11],[2,11],[7,2],[11,-1],[19,-8],[4,-3],[2,-4],[4,-3],[4,-2],[23,4],[3,-1],[3,-4],[4,-9],[4,-3],[6,0],[6,2],[4,3],[-2,4],[15,-2],[64,-33],[14,-4],[1,-5],[-4,-17],[3,-2],[5,-1],[4,1],[4,5],[4,3],[6,-2],[10,-7],[-3,1],[-3,1],[-3,-1],[-3,-1],[7,-10],[17,-3],[7,-8],[-2,-2],[-1,-2],[0,-2],[-1,-2],[8,0],[4,-1],[3,-3],[-1,-6],[0,-3],[2,-2],[7,-4],[3,-1],[2,-1],[9,-13],[6,-5],[46,-4],[16,-8],[2,-18],[7,-5],[8,-2],[7,2],[5,7],[7,4],[8,-4],[15,-10],[51,-17],[22,-19],[13,-7],[7,-6],[5,-6],[12,-22],[8,-6],[33,-10],[7,6],[6,10],[7,8],[-8,4],[-5,0],[-7,3],[-7,1],[0,4],[84,-24],[2,-2],[1,0]],[[15808,79484],[15,0]],[[15823,79484],[-2,-5],[-12,-7],[-1,9],[0,3]],[[29463,74630],[-4,-11],[-7,-22],[0,-8],[-1,-8],[-7,-6],[-5,-3],[2,19],[2,15],[5,13],[13,45],[2,9],[1,5],[3,-2],[0,-6],[-3,-12],[-3,-9],[0,-9],[2,-10]],[[30190,75094],[-4,-3],[-2,4],[0,6],[2,11],[-2,9],[-6,3],[0,7],[1,10],[3,7],[2,-8],[2,-6],[3,-9],[4,-4],[0,-13],[-3,-14]],[[30649,76402],[-6,13],[-1,10],[4,15],[7,-9],[0,-11],[-1,-17],[-3,-1]],[[30647,76501],[0,-8],[-3,-5],[-3,-17],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,8],[-3,10],[2,10],[6,12],[2,11],[5,13],[2,-7]],[[30942,76580],[2,-11],[0,-14],[-2,-14],[-7,-3],[-6,-5],[-2,6],[0,7],[2,12],[1,8],[3,7],[4,8],[5,-1]],[[30885,76615],[-3,-2],[-5,-4],[-3,-8],[-3,-3],[-7,6],[-3,3],[-6,-6],[-5,-11],[-1,7],[1,4],[3,10],[11,13],[9,10],[10,-1],[2,-6],[0,-12]],[[31002,76624],[0,-10],[-3,-7],[-8,-4],[-3,10],[-3,4],[-3,-1],[-7,-6],[-4,5],[-1,7],[4,5],[5,-1],[1,6],[3,5],[4,-3],[2,-4],[3,1],[3,4],[4,-4],[3,-7]],[[30855,76667],[-4,0],[0,4],[2,14],[1,9],[-5,0],[0,5],[5,10],[7,2],[4,-6],[-4,-12],[-6,-26]],[[30975,76733],[1,-8],[3,-6],[-3,-6],[-3,4],[-4,1],[-3,0],[-2,5],[0,8],[1,9],[1,5],[3,7],[2,0],[2,-2],[1,-7],[1,-10]],[[30870,76753],[2,-14],[-2,-6],[-5,-10],[-5,-7],[-4,8],[0,7],[2,13],[3,7],[4,8],[5,-6]],[[31231,76800],[-5,-10],[-2,8],[-4,15],[-2,13],[0,6],[4,2],[5,-2],[1,-14],[3,-7],[0,-11]],[[31310,76894],[3,-4],[-1,-6],[-7,-4],[-6,4],[1,6],[4,7],[6,-3]],[[31376,77076],[0,10],[2,7],[2,-7],[8,-11],[4,-9],[-1,-7],[-6,1],[-1,5],[-8,11]],[[31416,77054],[-4,-7],[-4,-5],[3,-11],[0,-8],[-5,1],[-5,4],[-6,9],[-1,7],[6,3],[1,7],[0,6],[2,9],[2,6],[2,10],[3,4],[5,4],[0,-5],[0,-8],[4,-7],[-1,-9],[-2,-10]],[[31399,77096],[-4,-14],[-2,-7],[-6,14],[-2,9],[-1,9],[3,6],[4,7],[5,10],[5,6],[5,-2],[-1,-8],[-1,-7],[-1,-10],[-4,-13]],[[13153,82934],[3,-3],[3,-5],[3,-7],[1,-6],[-1,-14],[-5,-1],[-8,6],[-5,9],[-1,3],[-1,8],[-1,3],[-2,3],[-4,3],[-2,3],[-1,3],[-1,8],[-1,2],[-1,2],[-4,1],[-2,2],[-4,6],[-2,5],[0,4],[-3,7],[-1,7],[1,6],[2,4],[-1,6],[2,4],[1,-3],[5,-6],[2,7],[3,2],[4,1],[4,2],[-1,-4],[-2,-4],[-2,-2],[-2,-2],[3,-3],[3,0],[2,3],[3,5],[3,-4],[3,-3],[2,-3],[1,-5],[2,0],[4,1],[3,0],[3,-7],[1,-6],[0,-4],[-2,-1],[-3,3],[0,-7],[1,-7],[1,-5],[-3,-2],[-4,1],[-3,2],[-3,1],[-4,-4],[4,-4],[1,-5],[2,-5],[4,-1]],[[13543,83003],[9,-5],[4,-4],[1,-7],[-2,-4],[-10,-11],[-4,-2],[-9,1],[-4,-1],[-4,-6],[-5,-5],[-5,0],[-6,3],[-5,4],[0,7],[-10,13],[-5,8],[-7,-4],[-4,7],[1,12],[8,5],[5,1],[17,7],[5,5],[6,-8],[19,21],[7,-1],[-2,-4],[1,-9],[1,-8],[0,-6],[-2,-6],[0,-3]],[[13104,83074],[0,6],[3,6],[2,4],[2,2],[-3,3],[-5,3],[-8,2],[-1,4],[-1,7],[-1,8],[0,9],[0,5],[0,4],[1,0],[2,0],[2,1],[2,10],[3,4],[3,2],[3,-1],[5,-9],[14,-14],[5,-10],[16,-49],[-4,-9],[-19,-23],[-3,7],[-2,7],[-7,10],[0,-13],[-6,1],[-16,12],[3,5],[8,2],[2,4]],[[13138,82865],[9,-15],[-5,-2],[-10,2],[-9,-2],[-3,12],[-7,3],[-14,-3],[0,3],[-3,12],[-3,9],[0,4],[2,2],[5,-1],[-27,27],[-5,9],[3,2],[5,5],[4,7],[1,7],[-4,4],[-6,-2],[-10,-6],[-5,4],[-3,16],[-4,4],[-4,3],[-3,7],[-1,8],[4,6],[-4,3],[-5,1],[-9,0],[0,5],[7,2],[4,2],[1,3],[-2,4],[-3,1],[-8,0],[-7,-3],[-2,1],[-3,5],[1,1],[1,5],[0,6],[-4,5],[6,9],[-5,14],[-14,22],[1,4],[-1,6],[-2,7],[-2,7],[14,-1],[13,1],[-5,10],[-14,4],[-4,6],[6,0],[-10,13],[3,1],[7,-2],[4,1],[-3,6],[-3,4],[-3,2],[-5,0],[0,4],[17,8],[-9,11],[-1,5],[3,8],[4,4],[7,4],[6,1],[4,-1],[3,-9],[-2,-8],[-1,-5],[6,-2],[5,-5],[1,-10],[-1,-20],[3,-3],[12,-7],[4,-4],[1,-4],[0,-11],[1,-5],[10,-16],[-8,6],[-10,13],[-10,7],[-9,-10],[25,-16],[0,-4],[-10,-5],[-3,0],[0,-4],[9,-5],[8,-2],[7,-5],[4,-16],[1,-25],[-1,-3],[3,-2],[7,4],[4,-2],[-2,-5],[2,-1],[1,-1],[1,-1],[-2,-3],[-2,-10],[11,-8],[5,-6],[1,-10],[4,2],[3,-5],[0,-7],[-3,-7],[3,-2],[8,-2],[4,-3],[2,-4],[1,-4],[1,-4],[2,-5],[8,-16],[-1,-5],[-7,-7],[2,-4],[-2,-1],[-1,-1],[-1,-2],[14,-8],[5,-7],[-4,-9]],[[13478,83045],[-2,7],[0,5],[1,5],[0,5],[-3,8],[-6,10],[-5,8],[-4,1],[-1,-7],[4,-7],[3,-9],[-2,-12],[-2,-4],[-3,-5],[-6,-7],[-1,-1],[-1,-2],[-1,-1],[-3,0],[-1,1],[-2,3],[-1,3],[0,1],[-4,5],[1,10],[11,33],[-1,3],[-5,2],[5,16],[5,0],[6,-4],[6,0],[1,9],[-4,10],[-6,9],[-5,5],[1,2],[2,4],[1,2],[-4,5],[-3,6],[-1,7],[0,10],[2,11],[2,4],[3,2],[5,4],[-2,3],[5,-1],[8,-6],[7,-7],[8,-17],[15,-5],[6,-8],[-1,-11],[2,-12],[4,-11],[1,-13],[-1,-5],[-2,-5],[-1,-5],[1,-5],[4,-6],[1,-4],[0,-8],[-3,-15],[-6,-9],[-7,-4],[-19,-4],[-2,1]],[[12974,83197],[4,12],[5,-1],[7,-4],[7,-2],[-5,-11],[-2,-6],[-1,-13],[-3,-2],[-6,-1],[-10,-7],[-2,-1],[-4,1],[-1,2],[-2,2],[-2,3],[-6,4],[-4,1],[-1,-3],[-1,-6],[-3,-3],[-3,-2],[-3,1],[-4,6],[-2,10],[-2,13],[1,12],[3,-3],[3,-2],[4,1],[3,4],[-9,9],[-3,7],[3,10],[5,2],[7,-2],[4,1],[-2,9],[6,1],[6,2],[6,1],[5,-4],[4,-8],[-2,-10],[-7,-18],[7,-5]],[[13384,83287],[33,-42],[17,-26],[1,-22],[-1,8],[-3,6],[-3,5],[-3,1],[-2,-3],[2,-21],[-5,-15],[-7,4],[-7,8],[-7,-1],[7,-19],[5,-8],[5,-5],[-3,-10],[-4,-7],[-2,-6],[3,-10],[-5,2],[-8,15],[-10,8],[-3,10],[-10,60],[0,24],[-1,10],[-3,9],[5,1],[1,-1],[-2,13],[1,13],[3,6],[6,-7]],[[12931,83282],[0,-8],[0,-4],[2,-3],[-2,-4],[-3,-3],[-2,-1],[-9,-1],[-2,-1],[0,-2],[1,-3],[-1,-2],[-3,-4],[-1,-2],[-2,-2],[-3,0],[-3,1],[-5,3],[-4,0],[4,-9],[0,-6],[-4,-18],[-2,-19],[-2,-9],[-3,-4],[-4,3],[-4,7],[-6,14],[0,5],[0,9],[-1,5],[-1,1],[-5,0],[-2,1],[7,7],[1,1],[4,0],[1,2],[1,2],[5,13],[-1,4],[-9,7],[4,6],[8,4],[3,4],[3,13],[3,5],[3,-1],[8,-6],[19,1],[7,-6]],[[12906,83327],[4,10],[2,9],[3,5],[8,-3],[12,-12],[3,-5],[1,-8],[0,-9],[-2,-8],[-4,-3],[-5,-2],[-10,-5],[-5,-1],[-6,1],[-18,11],[3,9],[4,4],[5,2],[5,5]],[[12959,83307],[-4,7],[-9,25],[-8,9],[-3,6],[1,10],[5,5],[6,2],[18,0],[6,-2],[5,-5],[4,-8],[0,-11],[-1,-7],[-1,-5],[-4,-6],[-4,-4],[-5,-2],[-3,-4],[-3,-10]],[[12888,83331],[-4,-4],[-4,-16],[-6,-4],[-5,2],[-11,8],[-5,2],[-6,-3],[-8,-8],[-6,-1],[0,4],[7,5],[8,19],[13,7],[-1,6],[-2,5],[-3,4],[-1,-1],[-1,1],[0,5],[1,3],[2,3],[4,4],[7,-6],[9,-3],[9,-1],[7,2],[2,-10],[1,-11],[-2,-8],[-5,-4]],[[12971,83514],[-2,-9],[-16,-14],[-6,-8],[-8,-4],[-8,7],[-8,13],[-4,11],[-4,-15],[5,-19],[0,-16],[-15,-7],[-10,6],[-13,14],[-11,19],[-5,18],[9,-2],[2,2],[1,3],[0,12],[1,5],[6,5],[3,-5],[4,-8],[4,-4],[-1,12],[3,3],[17,-4],[3,-2],[2,-3],[1,-5],[1,-4],[1,-4],[3,-1],[32,-2],[3,2],[3,5],[2,6],[2,1],[3,-8]],[[12976,83579],[5,-3],[0,-6],[-1,-8],[2,-8],[3,-1],[7,4],[3,-3],[-1,-25],[-1,-7],[-3,-15],[-1,-4],[-3,-2],[-3,3],[-2,4],[-2,2],[-2,3],[-6,14],[-3,3],[-3,1],[-2,3],[-2,3],[0,5],[2,1],[11,3],[-7,5],[-3,5],[-1,7],[2,0],[9,13],[2,3]],[[6763,83567],[5,11],[10,5],[12,0],[0,-11],[-4,-16],[0,-10],[3,-20],[1,-10],[-4,-11],[-8,-13],[-9,1],[-9,7],[-9,-2],[-6,2],[-3,18],[-6,8],[2,8],[12,6],[10,8],[3,19]],[[12728,83583],[16,6],[5,-2],[-3,-12],[-11,-4],[-12,-12],[-10,-16],[-7,-17],[-5,6],[-12,3],[-2,9],[2,6],[15,9],[-4,5],[-15,8],[-4,9],[4,7],[10,2],[9,-1],[6,-2],[-4,-13],[6,0],[16,9]],[[12800,83587],[12,10],[6,3],[6,-25],[-3,-20],[-8,-12],[-11,9],[-3,7],[-2,12],[-1,11],[4,5]],[[13622,83388],[4,-1],[1,-6],[-3,-5],[-6,4],[0,-22],[-1,-11],[-1,-8],[1,-5],[0,-5],[-1,-5],[0,-7],[3,-13],[1,-5],[0,-7],[0,-16],[-1,-6],[-2,1],[-3,7],[-4,8],[-3,3],[-4,-5],[-1,-5],[1,-6],[2,-5],[1,-6],[0,-11],[-2,-7],[-3,-7],[-2,-11],[-3,-23],[-3,-7],[-6,-7],[-6,-6],[-2,-2],[-4,0],[-2,-2],[-1,-6],[-1,-7],[-1,-5],[-12,-10],[-12,9],[-11,15],[-11,6],[16,21],[6,12],[5,16],[1,3],[1,13],[1,3],[1,2],[1,3],[1,6],[0,11],[-1,7],[-3,4],[-6,0],[2,-8],[-6,1],[-7,-5],[-4,-9],[3,-13],[3,-12],[0,-11],[-4,-11],[-6,-9],[-7,-5],[-8,-3],[-14,0],[-7,3],[-6,6],[-4,9],[3,11],[6,5],[8,2],[6,4],[2,11],[1,7],[1,6],[3,4],[3,2],[4,0],[2,2],[3,9],[10,18],[2,10],[-3,11],[-1,4],[-3,25],[-1,7],[-9,25],[-2,7],[-1,30],[-2,9],[-4,-2],[-2,-14],[2,-19],[10,-50],[2,-16],[-1,-17],[-5,-17],[-2,-5],[-7,-10],[-2,-4],[-4,-12],[-4,-8],[-4,-5],[-10,-7],[2,7],[7,12],[2,7],[-2,10],[-3,8],[-4,6],[-2,7],[-2,18],[3,15],[10,28],[-5,0],[-7,-5],[-7,-6],[-5,-8],[-3,-11],[1,-12],[2,-12],[3,-11],[8,-19],[1,-10],[-4,-14],[-8,-22],[-5,-7],[-7,-2],[-6,5],[-12,17],[-13,6],[-6,6],[-11,16],[0,2],[-2,6],[-1,3],[-15,17],[-6,10],[-3,11],[3,8],[26,24],[3,6],[5,9],[3,4],[3,1],[4,-1],[2,4],[7,23],[-3,5],[-14,4],[-5,3],[-3,8],[0,10],[1,9],[3,8],[1,3],[1,2],[2,2],[3,1],[10,-1],[2,1],[0,3],[0,11],[1,4],[2,3],[2,-1],[3,-3],[1,-1],[16,5],[5,3],[0,5],[-4,0],[-13,-5],[-14,3],[-5,-3],[-12,-14],[-4,3],[-1,18],[4,7],[9,5],[9,4],[33,4],[8,5],[-2,6],[-6,4],[-2,5],[-1,7],[-2,3],[-3,0],[-1,-6],[-3,-9],[-7,-4],[-7,-2],[-6,-4],[-5,6],[-9,4],[-3,7],[0,12],[5,5],[55,-5],[10,8],[-6,4],[-21,0],[-4,4],[-4,10],[-3,10],[-2,9],[18,1],[5,3],[3,3],[4,7],[3,2],[4,0],[12,-4],[11,5],[11,11],[12,6],[12,-6],[8,-6],[8,-13],[38,-78],[-1,-15],[7,-14],[15,-24],[0,-4],[0,-10],[1,-4],[7,-12],[1,-5],[-1,-11],[-5,-14],[-1,-9]],[[12887,83680],[18,-2],[9,2],[7,8],[-8,3],[-23,2],[-7,7],[1,12],[10,0],[20,-8],[4,1],[4,2],[5,3],[6,8],[7,5],[3,4],[3,2],[14,-8],[11,2],[5,-2],[0,-8],[-6,-18],[-2,-7],[1,-7],[3,-9],[0,-6],[1,-13],[-1,-12],[-3,-9],[-8,0],[-5,5],[-5,9],[-5,3],[-13,-14],[-8,9],[-6,-4],[-5,-13],[-2,-4],[-12,-7],[-8,-9],[-11,3],[-4,-7],[1,-6],[6,-6],[-1,-4],[-3,-1],[-13,-3],[-4,-2],[-1,-4],[-2,-1],[-5,9],[-3,1],[-7,1],[-10,13],[6,22],[23,38],[1,5],[0,6],[1,4],[21,5]],[[13181,83814],[2,3],[1,6],[0,6],[2,6],[2,2],[26,5],[8,-1],[2,-6],[2,-5],[1,-6],[0,-7],[-1,-7],[2,-8],[0,-7],[-2,-6],[-4,-3],[4,-6],[-1,-7],[-3,-7],[-4,-4],[-16,-7],[-3,-6],[7,-5],[8,0],[7,4],[12,15],[6,-4],[6,-8],[7,-6],[19,-3],[9,-4],[8,-11],[4,-9],[16,-21],[-2,-4],[-1,-4],[-1,-3],[-2,-2],[-5,5],[-2,-3],[-1,-6],[-3,-4],[-3,2],[-7,8],[-4,2],[2,-8],[5,-9],[3,-7],[-2,-1],[-2,-3],[3,-5],[3,-5],[2,-7],[1,-8],[-1,-2],[0,-1],[-1,-4],[7,-12],[2,-15],[-3,-9],[-8,3],[-1,5],[-3,13],[-2,3],[-2,-3],[-6,-14],[-3,-4],[-4,-1],[-2,1],[-2,1],[-5,-7],[-4,-3],[-5,-2],[-4,-1],[-5,2],[-3,4],[-5,12],[-4,4],[-11,4],[-3,7],[5,17],[2,2],[3,2],[2,5],[1,5],[-1,5],[-8,2],[-8,-1],[-5,2],[3,17],[-30,4],[-3,2],[-3,4],[-4,3],[-3,-1],[-2,-5],[0,-6],[-1,-6],[-3,-3],[-5,4],[-9,23],[-4,6],[-4,6],[-2,13],[0,11],[5,-2],[1,13],[1,11],[0,10],[-4,6],[6,4],[22,5],[3,6],[7,28],[5,6]],[[13340,82942],[5,-2],[0,-7],[0,-8],[2,-8],[-4,-3],[-4,-1],[-9,0],[4,-4],[-1,-6],[0,-6],[1,-6],[0,-6],[-1,-8],[-1,-6],[-1,-5],[1,-6],[-18,3],[-4,4],[-3,4],[-5,3],[-2,-2],[4,-7],[-12,-2],[-15,16],[-12,10],[-9,-16],[-4,7],[-1,10],[0,11],[3,8],[5,5],[12,4],[2,7],[-1,4],[-2,3],[-2,1],[-3,1],[-4,-2],[-2,-4],[-1,-4],[-2,-2],[-6,-2],[-10,5],[-7,0],[7,7],[15,9],[5,8],[-3,6],[-10,4],[-4,3],[3,3],[3,1],[7,0],[0,4],[-11,2],[-5,3],[-4,5],[-1,5],[1,5],[0,3],[-3,1],[-3,1],[-2,1],[-2,3],[-2,4],[4,3],[3,1],[2,-1],[-2,6],[-5,8],[-2,7],[0,7],[1,8],[3,13],[-7,-4],[-2,-13],[-1,-13],[-1,-6],[1,-4],[-1,-7],[-1,-8],[-2,-6],[-2,-2],[-10,-5],[-4,0],[-2,1],[-2,2],[-1,6],[2,6],[4,1],[4,1],[3,2],[4,14],[-2,10],[-6,8],[-5,5],[-1,-22],[-7,-13],[-9,-2],[-8,8],[-4,9],[-1,4],[0,6],[1,2],[5,-7],[3,-1],[3,6],[1,9],[1,7],[5,2],[-5,2],[-5,1],[-4,3],[2,10],[5,6],[7,-2],[7,-3],[6,-1],[5,5],[-18,4],[-4,7],[1,8],[8,17],[-5,2],[-4,3],[-4,2],[-5,-5],[-7,-27],[-3,-3],[-4,12],[5,20],[8,19],[6,10],[-5,4],[-3,7],[-6,15],[-7,11],[-2,6],[0,9],[-4,-8],[0,-14],[4,-12],[5,-6],[2,-4],[0,-8],[-1,-9],[-3,-4],[-18,0],[-3,2],[-8,11],[-11,9],[-3,3],[-4,10],[-2,14],[-1,14],[3,11],[-7,3],[-4,-1],[-2,-5],[0,-5],[-1,-6],[-1,-4],[-2,-3],[-6,-6],[-13,-5],[-6,-5],[-22,3],[-1,7],[2,3],[12,3],[19,17],[3,4],[1,5],[-3,3],[-5,-1],[-8,-4],[-36,0],[1,-2],[1,-6],[-3,5],[-3,5],[-4,5],[-4,1],[-4,-1],[-8,-5],[-4,-2],[-7,2],[-1,5],[1,8],[-2,8],[-3,4],[-4,3],[-3,4],[-2,7],[4,1],[3,5],[1,5],[2,5],[3,5],[3,2],[4,1],[4,0],[1,0],[3,-4],[3,-4],[1,1],[0,2],[1,2],[24,-7],[2,-2],[5,-7],[1,-1],[3,-1],[41,5],[7,-4],[-6,7],[-24,5],[-15,9],[-6,8],[2,8],[-2,5],[-3,2],[-3,1],[-4,0],[5,5],[7,5],[7,2],[6,0],[-9,5],[-18,-3],[-9,6],[-6,13],[1,11],[3,10],[5,11],[2,5],[3,14],[1,5],[3,3],[11,9],[6,10],[4,4],[5,3],[13,0],[4,3],[-4,3],[-4,1],[-9,0],[-4,-1],[-9,-6],[-13,-2],[-39,-22],[-13,-1],[-30,18],[-6,8],[-2,13],[0,7],[1,4],[3,2],[9,3],[-1,4],[-5,10],[-2,1],[-3,1],[-2,3],[1,8],[4,6],[3,-2],[3,-5],[3,-6],[3,-1],[2,10],[1,13],[3,9],[3,-4],[8,-6],[8,-1],[3,9],[3,13],[6,9],[7,5],[5,7],[2,8],[1,14],[0,13],[-2,7],[-3,4],[-1,-3],[1,-6],[0,-2],[-1,-7],[-4,0],[-12,11],[-3,4],[-2,6],[-1,5],[-3,16],[-1,3],[-2,2],[3,5],[4,4],[2,-1],[-1,7],[-3,16],[-1,23],[-1,12],[-8,12],[0,15],[4,27],[-6,12],[-13,3],[-26,-3],[-5,1],[-4,3],[-9,10],[-5,0],[-15,-4],[-3,0],[-1,2],[-4,8],[-4,5],[-1,0],[-1,1],[0,6],[-1,5],[1,10],[0,6],[-2,2],[-2,2],[-2,3],[0,5],[4,7],[12,2],[3,7],[-2,6],[-4,8],[-7,10],[0,5],[7,0],[41,-12],[28,0],[7,-4],[0,-5],[-4,-6],[0,-11],[5,-7],[7,4],[-1,1],[-1,1],[-1,1],[-1,2],[2,13],[10,8],[12,3],[9,0],[4,-5],[4,-7],[4,-8],[1,-7],[0,-4],[-1,-5],[-1,-4],[2,-1],[2,-1],[6,-4],[3,-3],[7,-2],[3,-2],[1,-5],[1,-5],[-1,-5],[1,-6],[0,-1],[-1,-2],[-1,-2],[0,-3],[2,-2],[3,-2],[2,-2],[1,-3],[2,-4],[0,-5],[-3,-2],[-3,-4],[-6,-19],[-2,-6],[-5,-2],[-9,9],[-5,-3],[14,-29],[3,-7],[5,-3],[4,0],[8,3],[5,-1],[13,-7],[0,6],[1,4],[2,4],[2,2],[5,-3],[2,-5],[1,-6],[3,-9],[0,-3],[0,-1],[6,-1],[2,1],[1,2],[2,3],[4,3],[4,-4],[4,-6],[3,-3],[4,-2],[15,-10],[6,-10],[5,-12],[7,-11],[10,-6],[4,-4],[3,-6],[1,-6],[1,-6],[9,-7],[3,-5],[-2,-5],[9,-10],[7,-12],[13,-30],[-3,-8],[1,-8],[3,-8],[2,-8],[1,-10],[0,-8],[-4,-15],[4,-3],[2,-5],[2,-7],[-1,-9],[3,4],[9,20],[6,0],[2,-2],[4,-9],[1,-4],[0,-13],[1,-4],[1,-5],[12,-35],[2,-5],[15,-1],[6,-3],[15,-20],[4,-8],[1,-11],[-3,-9],[-6,2],[-12,13],[-9,16],[-13,7],[-11,11],[-19,5],[-9,5],[-15,32],[-9,13],[-8,-4],[2,-2],[1,-3],[3,-7],[-4,-1],[-2,-4],[-2,-5],[-2,-6],[4,0],[6,-3],[5,-4],[-1,-7],[-13,-25],[-8,-8],[-19,-10],[-6,-12],[4,-2],[3,-4],[2,-6],[-2,-8],[4,7],[3,8],[4,6],[17,7],[2,2],[1,6],[0,5],[1,3],[2,1],[4,6],[2,1],[3,0],[1,-1],[2,-1],[2,-2],[5,0],[6,1],[6,2],[6,6],[5,-10],[2,-9],[4,-7],[16,-6],[7,-6],[3,-7],[-7,-4],[-4,1],[-5,6],[-4,1],[-3,-3],[-2,-4],[-3,-4],[-4,-1],[-16,-1],[-8,-3],[-4,-9],[1,-9],[6,2],[13,12],[3,-2],[3,-3],[3,-5],[2,-10],[3,1],[4,6],[1,2],[3,5],[2,1],[21,5],[2,-3],[8,-20],[3,-4],[4,0],[4,0],[3,-2],[2,0],[-1,-6],[-1,-2],[3,-3],[2,-6],[0,-7],[3,-1],[3,-3],[1,-4],[-2,-5],[7,-9],[3,-7],[-1,-5],[-7,-7],[-8,-4],[-9,-2],[-9,1],[-8,5],[2,-6],[-2,-7],[-2,-7],[0,-8],[2,-7],[4,-1],[3,2],[-2,6],[6,12],[8,-2],[17,-14],[8,5],[9,29],[7,7],[6,1],[3,-3],[3,-7],[1,-6],[2,-8],[0,-8],[1,-8],[-2,-17],[-5,-11],[-5,-10],[-3,-13],[9,0],[-3,-9],[-5,-7],[-6,-6],[-5,-2],[-2,2],[-4,11],[-4,3],[-2,-3],[1,-5],[3,-5],[2,-3],[-2,-3],[-3,-2],[-3,0],[-3,1],[0,-4],[8,-5],[4,-5],[0,-5],[-3,-3],[-8,-1],[-10,-10],[-16,-8],[-4,-8],[13,0],[3,-1],[2,-3],[2,-2],[5,-5],[2,0],[5,9],[2,1],[1,-1],[2,-6],[6,15],[9,13],[11,7],[9,-3],[-3,-3],[-2,-5],[0,-5],[2,-7],[-6,-7],[-2,-4],[-2,-5],[10,1],[2,-1],[2,-7],[-1,-3],[-2,-3],[-1,-4],[0,-19],[-3,-1],[-7,1],[-6,-1],[-4,-5],[1,-6],[6,-9],[10,-7],[5,-4],[4,-9],[-2,-3],[-1,-1],[-2,0],[-1,0]],[[13163,83871],[-3,-8],[-10,-11],[-2,-9],[1,-7],[8,-22],[-4,-13],[-5,-5],[-7,-2],[-11,-11],[-24,-9],[-14,4],[-34,40],[-13,11],[-5,9],[2,11],[15,33],[7,9],[6,7],[6,3],[14,2],[5,-1],[9,-5],[5,-1],[3,1],[11,6],[15,4],[14,-8],[3,-3],[2,-7],[3,-13],[3,-5]],[[13332,83835],[3,-10],[4,-22],[11,-31],[3,-14],[0,-9],[-7,-5],[-6,3],[-6,-2],[-2,-18],[-2,-10],[-6,-7],[-7,-5],[-4,-1],[-3,8],[-2,10],[-2,8],[-6,3],[0,-7],[-3,1],[-4,6],[-4,6],[-5,7],[-18,7],[-8,7],[-10,13],[-9,13],[-4,12],[7,31],[-1,7],[-4,11],[0,6],[1,4],[2,4],[1,6],[0,8],[-2,9],[-3,9],[-4,8],[-3,12],[0,10],[4,4],[6,-7],[22,-15],[6,-8],[3,-9],[5,-20],[4,-9],[5,-8],[7,-9],[8,-5],[6,3],[6,8],[8,0],[7,-5],[6,-8]],[[7207,83948],[3,10],[6,5],[40,5],[0,-7],[-4,-10],[-10,-11],[-10,-7],[-7,1],[-5,3],[-5,-1],[-9,-4],[-12,-1],[-5,1],[-5,4],[5,8],[7,8],[7,2],[4,-6]],[[6372,83978],[4,-5],[10,-5],[5,-6],[4,-11],[-3,-3],[-5,2],[-5,9],[-7,2],[-25,0],[-2,-2],[-2,-9],[-2,-2],[-2,0],[-3,3],[-2,2],[-5,-5],[-29,0],[-6,-4],[1,6],[3,9],[3,6],[1,3],[4,2],[8,9],[4,2],[12,-3],[28,7],[11,-7]],[[7104,83985],[3,-3],[2,-5],[1,-6],[1,-7],[-3,-6],[-4,-4],[-4,-1],[-2,0],[3,2],[3,3],[2,6],[-3,-1],[-3,-1],[-3,-2],[-3,-4],[5,22],[-9,10],[-11,-5],[-4,-22],[9,-13],[3,-8],[-5,-4],[-7,-1],[-8,-4],[-15,-11],[-16,-25],[-8,-8],[-5,-10],[-6,-7],[-8,1],[-7,18],[6,24],[11,22],[9,13],[45,40],[10,4],[11,0],[10,-7]],[[7199,83961],[-2,-4],[-13,-8],[-1,-1],[-5,-3],[-9,-11],[-5,-2],[-20,2],[-11,5],[-4,2],[-2,5],[-2,10],[3,12],[8,11],[9,9],[8,5],[6,1],[17,-1],[12,3],[6,1],[5,-4],[2,-9],[2,-7],[3,-6],[3,-7],[-9,11],[-4,1],[-3,-2],[1,-5],[2,-5],[3,-3]],[[13067,84100],[-1,7],[3,7],[8,9],[11,-15],[3,-2],[11,1],[4,-1],[18,-23],[3,-7],[3,-12],[6,-10],[7,-7],[3,-3],[1,-5],[2,-3],[6,-3],[3,-3],[2,-2],[4,-11],[3,-8],[1,-4],[3,-5],[2,-3],[5,-4],[3,-2],[2,0],[2,-2],[1,-6],[-1,-6],[-2,-2],[-2,-1],[-2,-4],[-5,-5],[-13,-2],[-5,-5],[-3,-6],[-5,-5],[-5,-1],[-5,2],[-4,6],[-4,8],[-4,3],[-5,-9],[9,-14],[2,-6],[-5,-1],[-9,-6],[-5,-1],[-35,6],[-5,6],[-2,11],[-3,33],[1,6],[2,7],[4,4],[11,5],[2,7],[-1,6],[-10,23],[-1,8],[1,9],[1,9],[1,6],[-3,8],[-9,18]],[[12810,83924],[4,-2],[2,-5],[1,-7],[1,-7],[2,-2],[6,-5],[-5,-5],[-12,3],[-6,-3],[3,-6],[4,-4],[2,-4],[-1,-10],[-2,-1],[-3,1],[-3,-2],[-2,-10],[16,-9],[4,-6],[1,-6],[-4,-16],[2,-8],[-6,-8],[-8,13],[-9,20],[-7,12],[-5,0],[0,-5],[0,-9],[1,-11],[-2,-13],[-1,-7],[1,-3],[5,-1],[10,2],[4,-3],[5,-27],[-1,-6],[-14,-5],[0,-6],[5,-17],[2,-3],[1,-5],[-1,-5],[-5,-8],[-1,-4],[2,-7],[-2,-9],[-2,-7],[-4,-3],[-5,-1],[-4,2],[-10,10],[-2,4],[0,7],[8,36],[-2,7],[-4,6],[-2,6],[0,13],[2,21],[0,19],[-6,7],[-5,-9],[1,-17],[-1,-15],[-10,-3],[5,-30],[-9,-8],[-13,2],[-6,-3],[8,-22],[3,-2],[1,2],[1,2],[3,2],[8,-4],[1,-10],[0,-11],[4,-8],[-2,-5],[-2,-4],[-6,-7],[4,-7],[2,-12],[-1,-13],[-3,-8],[-4,1],[-6,8],[-2,9],[4,10],[-6,5],[-13,6],[-4,9],[4,5],[1,7],[-2,6],[-5,2],[-1,4],[3,7],[7,12],[1,7],[-4,3],[-6,1],[-1,-1],[-3,6],[-1,6],[0,17],[-1,7],[-2,11],[-1,8],[2,7],[9,-9],[2,6],[0,9],[1,5],[2,4],[5,4],[7,1],[1,4],[-2,12],[-4,-4],[-14,-9],[-3,-6],[-2,-2],[-3,-1],[-3,-1],[-3,0],[-3,2],[0,4],[9,7],[-1,8],[-5,10],[0,10],[4,1],[9,0],[1,3],[-2,20],[1,6],[2,4],[3,-3],[3,-3],[3,-2],[5,3],[0,4],[0,5],[-1,6],[1,2],[3,-4],[2,-7],[1,-7],[0,-27],[3,5],[9,12],[0,1],[-1,3],[1,3],[3,1],[6,-4],[3,-7],[3,-8],[3,-5],[3,4],[1,6],[0,15],[1,7],[-3,7],[-5,9],[-2,8],[0,10],[2,4],[3,-1],[5,-5],[-1,6],[-1,7],[-2,6],[-3,2],[-1,3],[-1,13],[-1,4],[-4,4],[-3,-9],[-3,-14],[-5,-9],[-5,1],[-5,8],[-4,11],[-5,8],[-8,7],[-8,4],[-8,1],[-8,-4],[0,4],[21,25],[13,5],[6,9],[5,2],[10,-3],[4,2],[2,9],[-9,4],[-7,-1],[-23,-17],[-6,-2],[-5,4],[-6,12],[6,5],[7,0],[4,4],[2,13],[-1,6],[-3,1],[-4,-1],[-1,-1],[-1,-10],[-2,-3],[-13,-3],[-7,1],[-7,5],[-2,10],[-7,16],[-2,6],[1,7],[2,9],[-1,14],[-4,23],[-1,14],[1,6],[2,4],[3,3],[3,1],[4,-2],[3,-5],[5,-14],[9,-17],[6,-6],[2,5],[-1,12],[-4,8],[-4,7],[-4,8],[-3,17],[7,5],[20,-2],[3,-2],[11,-18],[4,-4],[6,-3],[6,-1],[5,0],[0,4],[-4,5],[-6,14],[-4,5],[-11,4],[-5,4],[1,9],[-3,4],[-12,7],[7,0],[18,-11],[13,-3],[6,-3],[6,-7],[9,-3],[11,-6],[7,-12],[-1,-20],[6,3],[2,-3],[2,-20],[1,3],[3,3],[2,3],[1,-7],[3,-18],[2,-4],[2,-2],[0,-4],[-1,-4],[-4,-4],[0,-4],[1,-6],[-1,-4],[-1,-3],[-3,-3],[-2,-2],[-3,-15],[-1,-4],[-4,-6],[-4,-3],[-10,-1],[8,-9],[9,3],[7,9],[6,13],[0,4],[-1,4],[0,3],[2,2],[3,0],[4,3],[3,0],[2,4],[2,9],[1,9],[1,7],[-1,14],[-2,12],[1,5],[8,-7],[6,-10],[3,-2],[9,5],[5,-1],[5,-3],[4,-5],[-16,-42],[-1,-8],[2,-6],[3,-4],[8,-4],[1,-6],[0,-6],[0,-5],[6,-18],[-1,-5],[-7,-16],[-3,-4],[-3,-1],[-4,-1],[-2,3],[-4,15],[-2,6],[-6,6],[-23,7],[-5,-2],[4,-9],[14,-8],[3,-14],[-1,0],[-6,-17],[0,-3],[-4,-4],[-6,-2],[-3,-4],[0,-5],[3,-5],[4,-3],[3,-1]],[[12802,84275],[3,4],[4,0],[34,-8],[26,-9],[25,-6],[10,-8],[15,-4],[7,-4],[15,-12],[7,-4],[14,0],[6,-4],[4,-12],[3,-11],[3,-11],[4,-4],[8,5],[-11,19],[-5,13],[-2,13],[17,-8],[36,1],[16,-9],[2,-10],[5,-9],[7,-7],[6,-3],[3,-5],[4,-12],[5,-23],[0,-10],[-3,-9],[-5,-7],[-6,-3],[-1,-6],[3,-12],[7,-18],[1,-6],[1,-22],[-1,-5],[0,-3],[1,-3],[2,-2],[1,-2],[0,-4],[1,-21],[-2,-9],[-6,-8],[-3,-2],[-7,-3],[-4,1],[-3,4],[-7,13],[-4,3],[-6,3],[-7,9],[-21,36],[-4,9],[-2,20],[-3,10],[-4,9],[-5,6],[-2,-7],[-5,2],[-16,18],[-4,2],[-1,-3],[8,-20],[0,-7],[-1,-7],[0,-7],[2,-8],[4,-9],[5,-5],[5,4],[5,6],[4,-1],[4,-6],[1,-12],[0,-20],[-1,-4],[-5,-8],[-1,-6],[0,-8],[2,1],[2,4],[1,3],[3,-1],[6,-2],[8,-2],[9,-4],[7,-7],[3,-8],[-3,-5],[-4,4],[-4,3],[-5,2],[-4,0],[0,-4],[15,-8],[3,-4],[2,-8],[2,-17],[2,-8],[-15,0],[3,-12],[0,-11],[-2,-10],[-5,-8],[-3,-2],[-4,-1],[-7,-1],[-7,4],[-1,2],[-1,3],[-1,3],[-8,2],[-15,-4],[-8,2],[-3,5],[-1,6],[-2,4],[-5,2],[-14,0],[3,-3],[2,-4],[2,-4],[1,-6],[-6,0],[2,-7],[-5,-6],[-24,-8],[-26,2],[-11,13],[2,54],[-10,9],[3,8],[9,5],[3,8],[-5,-1],[-2,6],[1,8],[-1,7],[-4,5],[-3,2],[-3,4],[-2,9],[1,12],[2,10],[1,11],[-2,16],[4,2],[1,3],[0,4],[-2,5],[-2,7],[1,4],[3,-1],[5,-4],[-3,13],[-1,15],[-1,9],[-5,0],[0,-2],[0,-8],[0,-3],[-2,-1],[-3,-2],[-2,-2],[-2,-5],[-3,-3],[-4,-1],[-3,3],[4,3],[0,5],[-4,-1],[-5,1],[-3,3],[-4,5],[1,2],[1,6],[-3,0],[-2,1],[-1,4],[1,7],[-5,-1],[-4,-2],[-3,0],[-4,5],[-4,10],[1,5],[3,0],[4,-1],[18,-11],[9,-1],[8,8],[-5,4],[-24,11],[-13,22],[-36,36],[0,4],[1,3],[1,4],[-1,12],[2,5],[5,1],[9,0],[3,1],[3,2],[3,3],[3,4]],[[7526,84323],[2,0],[3,-3],[1,-5],[-7,-11],[-5,-4],[-22,-7],[-3,2],[-1,4],[-1,3],[-3,-1],[-6,-7],[-7,-10],[-8,-6],[-9,5],[-4,0],[-10,-8],[-4,-2],[-2,-4],[-1,-9],[0,-14],[-5,-14],[-10,-7],[-11,-1],[-8,4],[4,11],[1,1],[-1,5],[-2,2],[-2,1],[0,9],[3,4],[3,3],[1,5],[-3,4],[-9,-7],[-9,-4],[-5,11],[4,2],[9,8],[7,3],[0,3],[-2,3],[-2,1],[-3,-1],[-5,-3],[-3,0],[4,7],[10,13],[9,18],[3,2],[2,3],[6,11],[3,5],[4,3],[4,0],[2,-5],[-1,-9],[11,-2],[2,-5],[-9,-25],[16,18],[9,4],[6,5],[3,1],[3,-1],[3,-5],[3,-1],[22,4],[7,-1],[5,-7],[4,-3],[4,4]],[[12333,84328],[1,-11],[5,-3],[5,-2],[4,-3],[-5,-17],[-10,-45],[-8,-15],[-3,-1],[-9,2],[-4,-3],[-3,-3],[-3,-2],[-37,-5],[3,36],[2,17],[5,12],[4,4],[8,5],[10,16],[3,7],[1,9],[-19,-2],[-8,4],[-3,14],[1,7],[5,12],[0,5],[-4,1],[-8,-7],[-4,-2],[5,13],[0,6],[-3,6],[7,11],[-3,13],[-2,11],[5,5],[28,-2],[30,-27],[5,-7],[8,-18],[4,-7],[-5,-4],[-5,1],[-11,7],[4,-8],[2,-8],[2,-10],[0,-12]],[[12605,84074],[2,-9],[2,-78],[-1,-19],[-1,-4],[-3,-6],[-1,1],[-1,4],[-3,5],[0,4],[-2,7],[-2,3],[-2,-8],[-1,-22],[12,-30],[0,-8],[-3,-11],[1,-9],[2,-9],[1,-8],[0,-12],[-1,-11],[-3,-10],[-4,-9],[6,-6],[-1,-12],[-9,-31],[8,7],[3,-4],[-2,-13],[-5,-14],[2,-5],[-4,-20],[-3,-2],[-6,6],[5,14],[1,7],[-1,2],[-3,5],[-3,3],[-2,-2],[0,-3],[-2,-2],[-8,-2],[-4,-1],[-4,3],[4,9],[-6,0],[-4,5],[-3,7],[0,10],[-2,4],[-2,2],[-2,2],[-2,2],[-1,5],[0,6],[1,10],[-6,2],[-5,-3],[-4,3],[-2,16],[-1,3],[-6,9],[-2,2],[-1,3],[-2,6],[-2,11],[-1,4],[-16,31],[-1,10],[-4,11],[-5,10],[-5,7],[3,1],[2,2],[3,2],[1,4],[-3,4],[-2,5],[2,5],[3,6],[6,1],[15,-1],[2,6],[3,14],[6,15],[16,26],[-6,-1],[-4,-1],[-4,-5],[-4,-8],[-6,-14],[-3,-6],[-4,-2],[-5,3],[-2,8],[1,9],[3,19],[2,6],[3,4],[4,4],[-7,3],[-6,-4],[-4,-10],[-4,-28],[-4,-11],[-6,-9],[-5,-6],[-7,-5],[-5,2],[-2,9],[-1,16],[1,11],[2,10],[3,8],[6,9],[18,19],[5,8],[-1,5],[-4,5],[-5,3],[-2,-5],[-2,-5],[-25,-38],[-8,-6],[-3,-3],[-3,-2],[-4,5],[0,6],[2,5],[3,4],[2,4],[0,6],[-2,5],[-1,4],[9,2],[1,4],[-1,5],[-1,19],[0,5],[1,5],[3,4],[2,2],[2,2],[2,5],[-15,-3],[-26,-22],[-14,5],[3,14],[-5,3],[-7,-1],[-4,3],[0,26],[2,8],[5,-4],[5,6],[5,0],[3,1],[-1,9],[-4,8],[-6,6],[-6,4],[-5,2],[1,2],[2,1],[2,6],[2,8],[5,5],[6,2],[5,1],[2,1],[6,7],[1,2],[1,2],[7,1],[7,5],[11,0],[2,4],[-2,13],[-6,2],[-11,-5],[-12,2],[-11,4],[-11,10],[-7,17],[-1,21],[8,12],[11,6],[12,1],[0,5],[-7,3],[-5,2],[-6,-1],[-5,-4],[-8,-11],[-5,-2],[-5,6],[0,7],[4,8],[6,6],[4,2],[0,5],[8,27],[-22,-3],[-4,1],[-8,4],[-7,-3],[-7,-4],[-6,-3],[-4,4],[-10,26],[-17,18],[-2,7],[-7,12],[-1,5],[4,3],[4,2],[12,1],[33,-10],[3,2],[1,5],[-2,3],[-13,3],[-12,10],[-5,1],[-6,-3],[2,7],[3,4],[11,11],[1,2],[0,3],[2,6],[2,3],[4,4],[3,3],[1,4],[-1,4],[-1,3],[0,3],[-1,4],[-1,7],[0,3],[1,5],[2,2],[3,0],[2,1],[15,18],[15,2],[15,-9],[13,-16],[-8,-12],[-20,-12],[-8,-13],[4,-4],[4,2],[7,10],[11,9],[6,2],[3,-5],[2,-7],[5,3],[6,7],[5,3],[11,-1],[10,-7],[-3,-10],[-10,-6],[-4,-8],[6,5],[7,2],[8,0],[19,-11],[2,-2],[2,-4],[11,-5],[3,-4],[24,-34],[0,-4],[-12,6],[-13,2],[0,-4],[14,-8],[0,-4],[-6,-4],[-2,-3],[-2,-6],[5,1],[2,1],[3,3],[3,-4],[1,-5],[1,-6],[0,-8],[2,-5],[4,-1],[16,2],[4,-1],[1,-7],[0,-8],[0,-7],[-2,-4],[-4,1],[8,-11],[5,-10],[0,-10],[-7,-14],[6,-4],[7,-9],[3,-12],[-4,-11],[5,0],[3,-4],[3,-6],[2,-6],[0,-5],[-1,-7],[1,-5],[1,-2],[2,0],[1,-1],[2,-5],[0,-8],[-3,-12],[1,-8],[2,-6],[2,-4],[2,-5],[-3,-9],[7,-8],[2,-9],[-1,-26],[2,-8],[11,-23],[-2,-12],[1,-7],[4,-6],[3,-7]],[[7416,84719],[-5,1],[-2,1],[-2,2],[1,1],[1,2],[1,1],[2,0],[-2,7],[-5,3],[-11,-2],[-4,2],[-35,34],[-6,9],[4,10],[6,10],[7,5],[6,-5],[8,-3],[29,-22],[13,-14],[5,-9],[9,-20],[5,-14],[0,-11],[-3,0],[-16,4],[-1,1],[-1,3],[-1,3],[-3,1]],[[7733,84597],[4,-2],[-2,-6],[-7,-8],[-20,-34],[-5,-8],[-6,-5],[-5,-7],[-4,-11],[-1,-14],[-1,-12],[-2,-8],[-7,-2],[-15,4],[-3,1],[-2,2],[-2,1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,0],[-3,0],[3,5],[4,8],[2,8],[-3,3],[-7,1],[-4,-1],[-1,-6],[-1,-6],[-1,-3],[-2,-1],[-3,0],[-1,1],[-5,5],[-3,2],[-2,0],[-1,-1],[-1,-2],[-2,-1],[-1,1],[-1,3],[0,2],[-1,2],[-1,3],[-2,4],[-1,3],[-4,2],[-2,-1],[-6,-6],[-3,-1],[-3,0],[-2,1],[-3,2],[-8,12],[0,2],[-1,1],[-2,3],[-3,2],[-3,2],[-13,-5],[-4,1],[-5,6],[-2,2],[-4,0],[-10,-4],[-6,2],[-6,4],[-5,1],[-6,-3],[4,-4],[12,-6],[2,-7],[-5,-4],[-28,-4],[0,-4],[1,-1],[1,0],[2,-3],[-6,-9],[-3,-6],[1,-5],[4,0],[8,13],[3,3],[43,12],[9,-3],[21,-25],[26,-14],[4,-11],[1,1],[2,-1],[1,-3],[2,-5],[-3,-6],[-7,-8],[-3,-6],[0,-11],[-5,-13],[-9,-9],[-7,-4],[2,15],[-6,3],[-18,-9],[-5,-8],[-6,-5],[-7,4],[1,11],[-4,3],[-5,2],[-4,9],[7,11],[1,3],[-1,6],[-3,-2],[-6,-6],[-18,-4],[-8,4],[-5,2],[-9,-10],[-9,-4],[-9,-2],[-6,2],[-2,5],[-2,11],[-2,4],[-3,-1],[0,-6],[0,-8],[1,-5],[-3,-5],[3,-3],[21,-9],[6,-1],[12,9],[8,-5],[8,-12],[4,-11],[-28,-20],[-10,-3],[-27,7],[-2,-1],[-2,-2],[-2,-1],[-2,2],[-8,6],[-4,-2],[-5,-8],[-4,-2],[-2,-3],[-5,-11],[-3,-3],[-4,2],[-8,9],[-4,2],[4,-9],[1,-6],[0,-4],[-9,-17],[-5,-5],[-4,-9],[-5,-5],[-4,6],[-2,10],[0,11],[-2,8],[-6,3],[-7,-1],[-3,-2],[-1,-4],[1,-3],[8,4],[4,-1],[-7,-19],[0,-6],[2,-6],[3,-5],[2,-5],[1,-15],[-5,-3],[-12,6],[-43,-7],[-13,-9],[0,-5],[42,5],[5,-3],[0,-4],[-2,-6],[-4,-4],[-4,-2],[-5,1],[-4,-1],[-4,-6],[27,-4],[6,-3],[-2,-7],[-8,-14],[-1,0],[-2,0],[-1,0],[0,-2],[0,-5],[0,-1],[-4,-6],[-2,-2],[-4,-1],[-7,2],[-2,5],[1,7],[-3,11],[-9,-37],[-7,-15],[-8,7],[-3,-14],[6,-1],[15,7],[2,-2],[0,-6],[-2,-6],[-2,-2],[-16,-4],[-2,-2],[-1,-5],[-1,-1],[-2,1],[-2,3],[-8,0],[-4,-1],[-1,-5],[-2,-13],[-5,-8],[-10,-10],[-11,-15],[-5,-6],[-7,-3],[-8,3],[-6,5],[-5,3],[-8,-3],[-7,-7],[-4,-2],[-4,1],[-3,4],[0,4],[2,3],[1,7],[2,7],[18,37],[18,15],[7,11],[2,8],[3,3],[7,2],[12,10],[22,24],[10,15],[-2,4],[-15,-19],[-4,-1],[-2,4],[7,15],[-1,9],[-5,4],[-3,-8],[-2,-11],[-2,-9],[-5,-6],[-7,-3],[-14,1],[1,10],[2,9],[2,8],[7,16],[5,15],[3,7],[5,5],[13,9],[5,2],[2,1],[4,8],[2,3],[3,2],[3,2],[7,0],[0,4],[-12,10],[-6,2],[-3,-5],[-1,-7],[-3,-4],[-7,-4],[-33,-34],[-9,-14],[-12,-25],[-7,-13],[-7,-6],[-4,12],[-5,6],[-1,5],[1,3],[3,6],[2,3],[1,8],[9,17],[33,32],[-34,4],[-2,2],[-5,9],[-3,2],[-15,-2],[-19,6],[-16,-4],[-17,0],[-4,-2],[-6,-8],[-4,-3],[-16,-1],[-7,-7],[3,-14],[6,-11],[7,-8],[6,-4],[8,1],[7,4],[4,6],[8,16],[6,8],[6,4],[42,4],[5,-6],[0,-9],[-2,-13],[-5,-19],[-6,-14],[-2,-6],[0,-7],[0,-13],[0,-4],[-4,-10],[-6,-5],[-15,-2],[5,-5],[3,-4],[0,-6],[-3,-7],[-2,-3],[-2,1],[-2,3],[-3,1],[-5,-12],[1,6],[0,5],[-2,4],[-3,1],[-1,-24],[0,-4],[5,2],[7,7],[4,3],[0,-4],[-8,-10],[-3,-2],[-5,-3],[-2,0],[0,12],[0,16],[-2,10],[-4,6],[-17,20],[-6,6],[-10,3],[-7,6],[-3,1],[-9,0],[-4,1],[-1,3],[1,4],[1,17],[2,14],[1,13],[-5,20],[1,25],[-1,12],[-4,11],[-11,23],[-3,9],[-1,7],[-3,5],[-4,2],[-13,0],[-2,2],[-1,2],[0,3],[0,1],[-9,-1],[-10,-5],[-8,0],[-6,10],[4,1],[6,2],[3,4],[0,8],[-4,6],[-8,6],[-3,6],[6,7],[7,-2],[7,-6],[9,-3],[-1,5],[-2,3],[-2,3],[-3,1],[0,4],[6,7],[1,10],[-1,11],[-4,9],[12,14],[9,5],[2,3],[-4,6],[3,12],[4,10],[5,8],[9,4],[6,6],[4,0],[2,-3],[5,-12],[4,6],[-4,24],[2,6],[17,-2],[15,-6],[-3,4],[-10,8],[13,16],[10,8],[1,3],[1,8],[0,2],[5,1],[11,-3],[5,2],[4,4],[3,6],[5,5],[5,1],[5,-2],[9,-8],[5,-2],[27,0],[10,-5],[5,-10],[8,-34],[-8,-10],[-31,-7],[12,-4],[26,8],[11,-9],[4,-17],[4,-43],[5,-15],[4,-6],[9,-7],[5,-6],[13,-32],[8,-11],[33,-20],[-4,8],[-7,8],[-7,6],[-14,7],[-2,10],[-2,13],[-2,13],[-5,8],[-4,5],[-3,6],[-3,43],[1,13],[2,7],[-9,19],[-2,5],[0,11],[2,3],[3,-3],[4,-5],[7,-8],[12,-7],[12,-3],[7,3],[-3,6],[-4,2],[-10,1],[-4,2],[-31,39],[-5,12],[9,6],[12,0],[39,-10],[8,-7],[3,-18],[3,3],[8,-2],[2,4],[0,5],[-3,7],[-3,5],[-7,6],[-19,21],[-16,6],[-34,5],[-8,6],[-5,11],[-4,27],[4,21],[8,16],[15,19],[2,3],[1,0],[4,-1],[2,1],[4,2],[9,10],[11,4],[1,-1],[5,-5],[3,-3],[2,1],[3,3],[2,1],[6,-7],[2,-9],[3,-9],[8,-4],[6,-4],[3,-11],[1,-13],[0,-12],[1,-24],[3,-23],[5,-22],[6,-21],[3,9],[-7,32],[-2,16],[13,-12],[8,-5],[4,3],[-3,10],[-6,8],[-12,8],[4,11],[7,7],[8,2],[7,-6],[3,-9],[3,-10],[4,-10],[6,-5],[8,3],[4,10],[-2,11],[-5,5],[-4,2],[-5,8],[-4,3],[-1,3],[-1,3],[-1,1],[-8,0],[-8,6],[-4,11],[0,11],[7,4],[7,-2],[21,-18],[16,-8],[17,-4],[5,-4],[1,-9],[-2,-13],[1,-11],[2,-5],[2,-4],[2,-2],[3,-1],[-4,11],[-1,14],[2,32],[-2,30],[-2,7],[-7,12],[-3,8],[8,0],[7,-5],[12,-15],[19,-18],[4,-7],[3,4],[-3,5],[-7,7],[-3,4],[0,6],[-3,8],[-5,8],[-8,7],[-13,22],[-5,6],[-12,6],[-9,12],[-1,3],[-1,6],[2,4],[3,1],[4,-1],[2,-3],[9,-3],[18,-17],[13,-5],[10,-9],[10,-3],[9,-7],[6,0],[-3,12],[6,1],[33,-10],[9,-6],[6,-9],[-13,-8],[-6,-5],[-4,-7],[5,1],[5,2],[0,-3],[-10,-9],[-3,-13],[-1,-15],[-5,-26],[2,-8],[5,-5],[2,-8],[2,-3],[3,1],[3,3],[2,3],[-1,6],[-1,9],[0,5],[1,24],[4,18],[7,9],[11,-4],[4,-6],[3,-6],[4,-3],[4,3],[3,8],[5,18],[3,7],[5,-4],[9,-6],[3,-7],[3,9],[0,9],[-3,9],[-3,6],[3,10],[5,2],[5,-4],[4,-4],[1,-4],[2,-4],[1,-3],[2,1],[3,4],[3,1],[7,1],[6,-3],[3,-6],[4,-7],[4,-7],[5,-5],[1,-5],[-1,-7],[-3,-9],[5,-6],[5,1],[5,5],[6,8],[2,-5],[2,-4],[2,-2],[3,-1],[-8,-16],[-28,-18],[-10,-13],[-11,-16],[-4,-10],[2,-4],[6,4],[6,8],[7,6],[3,-2],[-1,-5],[0,-13],[-1,-8],[-2,-4],[-2,-4],[-2,-6],[7,1],[13,15],[6,4],[-5,-8],[-3,-12],[-2,-12],[-1,-11],[3,-2],[23,12],[51,-4]],[[12114,84797],[3,-17],[-4,-22],[-8,-20],[-8,-11],[-1,10],[-3,6],[-2,5],[2,8],[-2,2],[-3,2],[-3,1],[-3,-1],[1,5],[2,4],[2,4],[2,3],[0,4],[-5,2],[-4,-4],[-3,-4],[-5,-2],[-3,2],[0,5],[2,5],[3,4],[-4,8],[2,9],[3,9],[5,6],[-3,6],[-7,-1],[-4,3],[2,4],[1,5],[1,5],[0,12],[1,3],[8,12],[5,5],[6,2],[5,-3],[5,-12],[22,-24],[6,-10],[1,-5],[-10,-4],[-2,-6],[-3,-15]],[[7384,84857],[26,37],[-2,4],[5,4],[5,3],[5,0],[4,-3],[10,-17],[7,-8],[5,-4],[15,4],[3,0],[3,-3],[5,-11],[3,-2],[1,-3],[5,-15],[3,-3],[13,-3],[30,-20],[-3,-4],[-4,0],[-4,3],[-4,1],[-11,-7],[-4,-1],[-8,2],[-15,11],[-9,4],[-15,11],[-9,-1],[-4,3],[-8,22],[-5,8],[-7,0],[7,-16],[3,-4],[-25,-3],[-11,1],[-10,10]],[[7815,84971],[11,4],[5,-1],[4,-11],[-3,-19],[-3,-10],[-4,-8],[-5,-4],[-6,-1],[-5,3],[-3,8],[2,9],[7,30]],[[12264,84459],[2,12],[-3,7],[-12,6],[-11,10],[-4,5],[0,5],[-3,8],[-5,8],[-9,13],[8,3],[10,-4],[16,-16],[14,-21],[8,-9],[8,-2],[-6,18],[-10,13],[-56,53],[-9,18],[3,2],[4,1],[8,0],[-2,-7],[2,-4],[3,-2],[5,1],[-2,9],[3,3],[10,0],[0,5],[-5,1],[-10,5],[-4,1],[-9,-3],[-2,1],[-2,5],[-3,5],[-2,1],[-1,-6],[-3,-9],[-5,-1],[-5,5],[-3,9],[2,7],[4,8],[5,5],[5,2],[0,4],[-34,35],[-5,11],[1,11],[-4,4],[-6,-9],[-5,-1],[-4,6],[-5,10],[-3,3],[-6,5],[-2,4],[-1,7],[-3,3],[-3,1],[-4,-1],[-3,-11],[-2,-3],[-3,6],[0,5],[3,12],[3,18],[11,17],[2,9],[0,4],[-5,10],[-1,7],[2,7],[3,4],[4,3],[2,4],[5,0],[8,-8],[34,-47],[29,-30],[3,-2],[4,-1],[-7,13],[-24,24],[-21,36],[-4,4],[-5,4],[-12,16],[-8,17],[-24,24],[-6,16],[2,10],[6,6],[6,4],[7,1],[6,-4],[11,-12],[6,-5],[-2,7],[-3,5],[-2,5],[2,8],[-11,18],[-5,10],[-2,14],[16,-2],[7,3],[3,-2],[1,-11],[1,-5],[6,-11],[1,-8],[2,-6],[9,-8],[2,-8],[0,-2],[-4,-17],[1,-3],[8,-10],[18,-5],[-13,13],[-3,5],[-2,7],[0,11],[1,9],[1,4],[-3,3],[-2,8],[-1,10],[1,7],[3,5],[6,2],[3,4],[-1,5],[0,4],[10,-1],[8,-6],[25,-26],[5,-2],[2,5],[-1,15],[1,4],[4,7],[6,9],[30,26],[8,1],[7,-5],[12,-23],[7,-2],[8,2],[7,1],[4,-4],[6,-10],[3,-3],[9,-2],[3,-2],[-2,-4],[5,-5],[9,-4],[5,-7],[-3,-7],[-2,-7],[-1,-8],[-1,-7],[-4,-6],[-2,-2],[-4,-1],[-4,-3],[-6,-10],[-5,-13],[-7,-7],[-18,7],[-22,-4],[-4,-3],[9,-9],[16,8],[9,-5],[-2,-4],[3,-3],[5,-1],[4,-3],[1,-6],[-3,-3],[-5,-1],[-25,3],[-8,-2],[-6,-8],[23,-4],[13,-5],[2,-12],[4,2],[4,4],[1,5],[-4,5],[0,5],[6,0],[6,2],[6,4],[4,8],[12,30],[22,12],[3,9],[-2,6],[-4,5],[-3,9],[5,0],[9,6],[5,2],[5,-1],[7,-3],[10,-8],[-2,-2],[-5,-7],[5,-3],[4,0],[10,3],[5,-1],[11,-5],[6,-2],[19,4],[5,-2],[3,-4],[0,-4],[-5,-2],[0,-4],[35,-13],[16,-14],[6,-32],[-1,-2],[-2,0],[-2,-1],[-1,-4],[1,-4],[3,-7],[0,-4],[-2,-9],[-2,-4],[-7,-7],[-4,-9],[1,-9],[5,-8],[7,-7],[-8,3],[-28,30],[-17,10],[-6,2],[-4,2],[-15,14],[-2,-4],[6,-12],[6,-11],[8,-8],[7,-6],[14,-4],[5,-3],[7,-13],[4,-4],[4,4],[1,-10],[4,-5],[10,-5],[-3,-3],[-8,-3],[-4,-2],[-5,-6],[-3,-2],[-53,0],[-15,6],[-45,40],[-8,5],[-9,2],[-3,1],[-4,9],[-53,26],[-41,33],[-6,3],[-6,1],[0,-5],[13,-8],[7,-7],[3,-11],[4,-7],[49,-23],[8,-7],[3,-2],[8,-2],[7,-9],[2,-1],[0,-1],[0,-7],[1,-4],[3,-3],[27,-12],[4,-1],[4,-4],[12,-21],[3,-7],[-2,-4],[-7,-3],[-2,-6],[-1,-6],[2,-1],[8,3],[15,0],[6,-2],[8,-6],[2,-3],[0,-2],[2,-1],[3,2],[7,10],[3,2],[13,3],[4,1],[6,8],[1,1],[4,0],[2,2],[4,0],[4,-3],[4,-2],[8,9],[4,2],[9,0],[6,-5],[3,-13],[2,-14],[2,-13],[-1,-10],[2,-11],[9,-29],[2,-10],[1,-10],[0,-11],[-1,-11],[1,-7],[1,-2],[1,-2],[6,-10],[-2,-7],[-10,7],[-5,-5],[7,-12],[-6,-5],[-10,-2],[-34,2],[-8,3],[-35,31],[-38,39],[-38,29],[-15,9],[-12,14],[-3,2],[-5,3],[-13,15],[-39,32],[-12,3],[2,-7],[3,-6],[3,-5],[3,-3],[5,-1],[5,1],[4,-3],[2,-9],[-4,-4],[1,-5],[4,-5],[2,-6],[-16,-3],[-8,-6],[-4,-11],[20,6],[6,-2],[19,-18],[6,-3],[5,-4],[5,-8],[4,-8],[0,-4],[-14,2],[-6,-3],[-3,-11],[11,6],[5,1],[5,-5],[3,-6],[3,-7],[-1,-6],[-6,-3],[0,-4],[5,-2],[3,-6],[2,-8],[0,-11],[-3,-7],[-6,-3],[-12,0],[8,-12],[-2,-6],[-2,-1],[-2,-1],[-3,-2],[-2,0],[-3,2],[-4,0],[-1,-2],[0,-5],[1,-4],[2,-3],[2,-3],[-3,1],[-3,-1],[-4,-2],[-3,-10],[-5,0],[-32,12],[-7,4]],[[12612,84959],[-7,5],[-8,13],[-7,14],[-1,10],[5,6],[11,3],[5,3],[5,7],[6,2],[23,-6],[10,-11],[18,-26],[28,-30],[6,-15],[-59,18],[-12,-2],[-6,1],[-12,6],[-5,2]],[[12679,84281],[0,-4],[-14,-11],[-9,-4],[-9,-13],[-4,-5],[-5,-1],[-15,1],[-5,-1],[-11,-11],[4,23],[0,12],[-6,25],[2,9],[6,8],[4,9],[-10,12],[-3,5],[-2,7],[-1,9],[1,8],[3,3],[18,-8],[9,0],[5,12],[-9,2],[-5,3],[-4,5],[-3,7],[0,2],[4,9],[7,10],[7,5],[17,2],[-2,4],[-7,10],[-3,2],[-9,0],[-4,2],[-4,6],[2,6],[-2,14],[1,6],[4,4],[6,0],[3,-5],[-1,-9],[31,-12],[17,-15],[8,-1],[-3,7],[-4,6],[-8,7],[0,4],[4,1],[5,2],[4,4],[4,5],[-10,2],[-23,-7],[-11,5],[-3,4],[-7,17],[-10,17],[0,3],[-4,3],[-4,7],[-1,7],[2,4],[3,-1],[5,-3],[3,-1],[2,1],[5,6],[6,3],[9,8],[10,4],[14,10],[-6,5],[-31,-12],[-15,-12],[-7,0],[-3,7],[-7,24],[-4,5],[-6,4],[-4,11],[-3,14],[-1,12],[-1,18],[-1,6],[-7,15],[-1,3],[-3,20],[0,2],[2,4],[1,7],[2,14],[0,12],[-5,26],[-2,24],[-8,35],[-3,10],[0,4],[3,6],[-4,10],[-5,8],[-5,9],[-1,12],[2,10],[12,13],[3,11],[-1,7],[-1,7],[-1,5],[-1,2],[1,7],[3,4],[2,3],[2,4],[-2,6],[-3,-1],[-6,-7],[-2,-2],[0,-7],[1,-8],[0,-7],[-3,-14],[-4,1],[-9,23],[-4,12],[-2,4],[-6,4],[-5,4],[-4,5],[-3,5],[2,13],[6,9],[1,5],[-8,2],[-5,3],[-4,9],[-2,12],[-5,38],[0,13],[3,12],[3,3],[3,-3],[3,-5],[1,-7],[2,-7],[4,-1],[4,0],[4,-2],[5,-8],[6,-6],[7,-8],[3,-13],[1,-6],[2,-4],[3,-3],[2,-3],[9,-22],[3,-6],[2,-3],[2,-4],[2,-8],[2,-21],[1,-3],[25,1],[12,5],[1,1],[2,1],[21,0],[8,-3],[15,-13],[8,-4],[9,0],[40,12],[2,-3],[3,-7],[2,-8],[0,-6],[-3,-3],[-3,0],[-6,3],[4,-7],[4,-6],[2,-17],[22,-30],[1,-17],[15,-20],[8,-15],[6,-36],[8,-20],[9,-16],[9,-11],[-2,-6],[0,-5],[0,-7],[0,-6],[1,-7],[2,-10],[1,-6],[0,-16],[2,-11],[4,-9],[15,-29],[4,-12],[-4,-6],[-6,4],[-5,9],[-3,12],[-5,12],[-25,30],[-1,7],[-4,7],[-1,6],[0,7],[-1,5],[-2,4],[-1,7],[-3,25],[-4,8],[-12,6],[-6,9],[-4,10],[-3,10],[-5,34],[-3,11],[-5,12],[-6,11],[-14,18],[0,4],[6,-3],[6,-6],[9,-16],[-4,14],[-8,16],[-8,13],[-8,6],[-4,0],[-2,2],[-2,4],[-2,4],[-4,5],[0,-3],[0,-5],[2,-3],[3,-3],[4,-9],[2,-10],[1,-10],[-7,6],[-4,2],[-4,0],[0,-4],[16,-14],[7,-9],[3,-14],[-5,0],[-6,4],[-10,11],[-4,1],[1,-10],[5,-20],[1,-6],[5,-17],[0,-11],[-2,-11],[-2,-10],[-1,-10],[3,-6],[8,18],[12,-10],[42,-85],[3,-7],[-2,-7],[-8,-6],[4,-7],[16,2],[6,-5],[5,-7],[5,-3],[4,-6],[2,-15],[0,-22],[1,-7],[8,-22],[12,-18],[4,-8],[-6,-4],[-3,6],[-2,9],[-3,5],[-3,0],[-1,1],[-2,0],[-3,-1],[1,-2],[0,-6],[-1,-5],[-3,3],[-8,5],[-21,8],[-5,3],[-5,7],[-1,-2],[-2,-6],[5,-6],[3,-2],[3,-1],[0,-4],[-15,0],[9,-9],[15,-2],[10,-5],[-6,-20],[5,-1],[11,7],[6,2],[1,1],[3,3],[3,0],[2,-6],[0,-2],[2,-10],[1,-3],[2,-5],[1,-11],[0,-11],[-3,-5],[-7,-2],[-4,-5],[-6,-15],[-6,-3],[-6,3],[-20,18],[-2,4],[-1,4],[-1,2],[-4,-2],[1,-4],[1,-6],[-1,-6],[-4,0],[-2,2],[-1,9],[-1,5],[-4,6],[-4,7],[-6,6],[-5,1],[9,-22],[3,-13],[-5,-9],[2,-5],[2,-4],[5,5],[4,-3],[8,-14],[-3,-12],[-4,0],[-4,4],[-4,1],[-2,-7],[-3,-22],[-3,-8],[-3,-7],[-4,-4],[-5,-4],[-5,-2],[-2,1],[-3,3],[-3,1],[-2,-3],[-2,-3],[-7,-7],[5,-11],[-4,-4],[-8,0],[-4,-1],[1,-2],[1,-6],[-3,0],[-3,2],[-6,6],[-1,-6],[-1,-5],[-2,-3],[-3,-2],[2,-3],[2,-3],[3,-1],[2,-1]],[[7555,84989],[2,-1]],[[7557,84988],[8,-17],[4,9],[-1,7],[-2,8],[-1,10],[-1,10],[-2,3],[-2,2],[-5,8],[3,-1],[3,0],[3,2],[2,2],[-6,7],[-23,14],[-5,8],[6,3],[13,0],[12,2],[5,13],[2,8],[4,1],[4,-1],[2,-2],[3,-4],[1,-5],[1,-1],[3,4],[2,7],[1,8],[2,7],[4,5],[5,0],[4,-3],[3,-6],[1,-8],[6,6],[7,1],[16,-3],[-2,-8],[-4,-12],[-2,-8],[10,-1],[4,-2],[3,-5],[-4,-8],[-1,-9],[2,-7],[5,-1],[3,4],[1,4],[2,2],[4,-2],[2,-2],[3,-4],[1,-5],[-5,-19],[6,4],[7,9],[-2,6],[2,4],[3,11],[1,12],[-1,9],[4,4],[7,-5],[3,3],[4,5],[3,-1],[7,-6],[0,-3],[-1,-1],[0,-2],[0,-2],[5,-4],[-4,-4],[-1,0],[2,-10],[6,-7],[7,-4],[6,1],[11,19],[3,3],[6,6],[3,-7],[4,-5],[3,-5],[-4,-3],[-11,-38],[-5,-25],[3,-16],[3,2],[3,10],[2,13],[1,11],[3,10],[5,3],[4,-6],[0,-17],[4,6],[6,11],[5,11],[2,10],[1,5],[4,-2],[4,-5],[2,-4],[0,-7],[-1,-6],[-4,-11],[4,-5],[-3,-17],[2,-10],[-5,-8],[-11,-9],[-5,-8],[1,0],[-1,-4],[-1,-4],[-1,-4],[0,-1],[-17,-15],[-3,11],[-19,11],[-6,10],[-4,26],[-4,13],[-4,-6],[-2,3],[-2,1],[-2,-3],[-1,-5],[-5,4],[-3,-5],[-2,-10],[-2,-10],[6,-1],[3,-4],[1,-6],[-4,-5],[-4,1],[-9,9],[-4,-2],[2,-5],[2,-3],[4,0],[3,0],[-1,-9],[1,-5],[6,-6],[7,-10],[3,-2],[-4,-2],[-6,2],[-3,-2],[-5,-12],[-2,-3],[-1,2],[-3,9],[-3,2],[-8,-2],[-3,1],[-4,3],[-9,3],[-9,-5],[-9,-11],[-8,-14],[-2,9],[-1,6],[-1,40],[1,10],[2,8],[-6,-1],[-4,-6],[-1,-9],[-2,-22],[-1,-7],[-2,-8],[-4,-10],[-2,-5],[0,-4],[-1,-4],[-2,-5],[-3,-2],[-7,-1],[-8,-9],[-7,1],[-6,6],[-3,9],[-3,-9],[3,-24],[-3,-13],[-8,-6],[-34,14],[-24,18],[-6,8],[-6,12],[-3,11],[5,5],[-9,3],[-12,-2],[-12,2],[-4,12],[-13,22],[0,8],[12,22],[7,0],[37,-14],[1,-2],[3,-8],[1,-2],[2,2],[1,2],[0,3],[2,1],[6,-2],[12,-9],[6,-1],[0,4],[-28,22],[-2,6],[-4,4],[-4,3],[-8,3],[-4,5],[-7,14],[14,16],[5,4],[7,1],[8,-2],[8,-3],[5,-6],[11,-5],[16,5],[12,0]],[[7599,85125],[1,6],[-1,5],[-3,4],[-3,2],[20,5],[3,4],[3,11],[6,6],[12,6],[3,2],[6,10],[6,4],[5,0],[7,2],[5,3],[6,1],[6,-6],[-1,-4],[0,-5],[1,-4],[1,-3],[-7,-15],[-1,-7],[3,-7],[-26,-29],[-7,-13],[-6,-4],[-7,1],[-28,19],[-4,6]],[[5292,85255],[11,5],[14,1],[7,5],[7,5],[6,5],[5,2],[8,13],[8,3],[2,6],[4,3],[1,-5],[-4,-10],[-6,-16],[-14,-30],[-8,-21],[-6,-15],[-6,-12],[-5,-12],[-2,-13],[-8,-13],[-11,-7],[-8,-5],[-15,5],[-6,0],[-3,-5],[-6,-2],[-3,4],[2,11],[-1,5],[-2,5],[4,7],[-1,6],[0,11],[-9,13],[-8,10],[-9,13],[3,0],[23,-30],[4,22],[1,14],[5,1],[10,9],[9,8],[7,4]],[[7708,85364],[-23,-6],[-8,2],[0,4],[6,2],[4,6],[1,9],[-2,12],[6,0],[10,-7],[5,-1],[27,0],[0,-3],[-1,-2],[-1,-3],[-3,-3],[-7,3],[-3,0],[-3,-3],[-5,-8],[-3,-2]],[[8138,85645],[6,5],[8,1],[7,-4],[5,-11],[-13,-28],[-6,-8],[-6,-4],[-9,-1],[-8,3],[-5,10],[9,14],[6,5],[3,7],[3,11]],[[7354,85606],[-3,4],[-2,1],[-3,3],[0,8],[1,6],[3,6],[4,4],[2,2],[4,2],[7,8],[4,2],[18,0],[12,-18],[0,-7],[-6,-11],[-8,-5],[-26,-8],[-7,3]],[[8240,85681],[8,4],[3,0],[1,-4],[-3,-5],[0,-11],[-3,-5],[-2,0],[-1,3],[-1,4],[-1,2],[-2,-1],[-3,-3],[-1,0],[-7,1],[-2,-2],[-3,-4],[-5,-9],[-3,-3],[-5,1],[6,20],[3,6],[21,6]],[[9905,85993],[9,3],[18,11],[10,3],[-1,-6],[-2,-4],[-3,-2],[-3,-1],[-38,-35],[-7,-3],[-3,-4],[-1,-5],[-3,-5],[-35,-45],[-7,-5],[-7,-3],[14,35],[6,6],[6,4],[19,28],[14,12],[14,16]],[[8887,86030],[4,-1],[0,-3],[-1,-4],[-24,-36],[-9,-7],[-8,-8],[-4,-2],[-24,0],[4,4],[9,2],[4,6],[-2,0],[-4,0],[-2,0],[2,3],[0,2],[1,2],[3,1],[0,4],[-2,0],[-5,1],[-2,-1],[0,4],[5,3],[5,-2],[4,-4],[4,-7],[4,-1],[10,12],[8,5],[13,15],[2,3],[1,4],[2,4],[2,1]],[[8937,86034],[-5,-13],[-6,-13],[-8,-11],[-12,-11],[-12,-8],[-15,-4],[-3,3],[3,10],[8,13],[16,20],[16,23],[4,5],[4,2],[4,1],[5,-2],[3,-6],[-2,-9]],[[8899,86046],[-16,1],[-7,-3],[-4,-10],[3,1],[5,-1],[-17,-21],[-9,-8],[-4,5],[2,11],[6,15],[8,13],[10,8],[8,11],[4,3],[1,3],[7,16],[1,3],[1,2],[2,-7],[2,-9],[0,-4],[10,2],[5,-2],[5,-9],[-4,-7],[-7,-6],[-12,-7]],[[8845,86028],[-3,-3],[-25,-9],[-8,1],[-7,5],[7,6],[19,-2],[8,4],[-6,5],[-24,-1],[0,4],[7,4],[16,4],[7,8],[-20,1],[-7,3],[4,6],[37,26],[6,2],[1,-13],[4,4],[3,6],[3,8],[3,16],[2,5],[3,0],[2,-5],[-3,-10],[-8,-21],[-1,-9],[-1,-11],[-3,-10],[-4,-7],[-5,-3],[-1,-2],[-6,-12]],[[9137,86172],[7,-3],[44,19],[0,-4],[-2,-1],[-1,-2],[-1,-2],[-1,-3],[-8,-20],[-11,-15],[-62,-60],[-27,-37],[-12,-24],[-1,-8],[2,-5],[3,-5],[1,-5],[-3,-11],[-17,3],[-7,-6],[-9,-12],[-1,-2],[-1,-2],[4,-6],[6,-8],[1,-12],[-4,-11],[-7,-9],[-8,-5],[-22,8],[-12,-3],[-7,-25],[-4,-2],[-10,2],[-23,-10],[-11,-10],[-6,-2],[-5,0],[-10,6],[0,4],[5,6],[1,14],[2,14],[8,7],[9,1],[9,4],[8,7],[8,8],[-7,3],[-8,2],[-4,5],[7,14],[8,6],[15,5],[8,5],[-2,6],[-2,4],[-6,6],[6,7],[41,29],[6,7],[25,24],[12,17],[-2,14],[4,5],[9,5],[3,4],[7,24],[2,3],[3,-1],[6,-3],[3,0],[2,1],[5,5],[8,4],[1,5],[-2,11],[0,3],[-1,4],[0,3],[-1,0],[1,5],[1,2],[1,1],[1,4],[1,2],[2,2],[2,3],[1,5],[-1,3],[-6,4],[-1,2],[4,12],[9,8],[11,4],[8,-4],[-5,-7],[-2,-4],[-2,-6],[31,0],[-5,-10],[-22,-26]],[[8895,86225],[-1,-5],[-7,-13],[0,-6],[-2,-16],[-1,-5],[-7,-8],[-9,-1],[-8,5],[-7,8],[-2,-4],[3,21],[14,20],[17,11],[10,-7]],[[9674,86229],[15,16],[7,4],[0,-8],[-1,-8],[-5,-11],[-1,-9],[0,-18],[-1,-8],[-4,-3],[-2,1],[-5,6],[-5,1],[-6,-3],[-3,-1],[-6,2],[-8,10],[-6,0],[0,5],[31,24]],[[9392,86241],[26,5],[4,-5],[-1,0],[-2,-1],[-1,-2],[-1,-1],[-24,-7],[-1,-1],[-1,-3],[-1,-4],[0,-4],[0,-2],[-8,-5],[-8,-1],[-14,3],[-8,-2],[-45,-29],[-17,-25],[-6,-6],[-6,-3],[-6,2],[-8,5],[-6,8],[-3,9],[7,12],[46,32],[-4,6],[-17,-4],[-7,3],[4,4],[-6,0],[-5,-3],[-9,-9],[10,0],[-12,-9],[-12,9],[-6,18],[7,22],[10,4],[1,3],[1,4],[2,6],[3,8],[6,8],[7,3],[16,1],[0,-4],[-2,-2],[0,-2],[-1,-2],[-1,-2],[28,0],[6,2],[6,3],[6,1],[7,-2],[-2,-11],[0,-16],[-2,-10],[12,1],[24,12],[24,4],[6,-1],[3,-6],[-3,-2],[-12,-8],[-4,-4]],[[8952,86245],[-4,1],[-10,-7],[-5,-2],[8,30],[5,15],[6,8],[0,-19],[-1,-7],[-3,-6],[16,6],[5,7],[-3,13],[0,10],[4,9],[5,-2],[2,-19],[7,5],[3,2],[3,-1],[2,-4],[0,-5],[-2,-4],[-2,-2],[0,-4],[3,-1],[5,-7],[-4,-6],[-2,-2],[-7,-1],[-14,-12],[-7,-3],[6,-7],[6,0],[6,5],[6,2],[7,-4],[-2,-8],[-8,-17],[-9,-26],[-13,-26],[0,-5],[8,0],[-3,-17],[-5,-17],[-7,-11],[-9,-3],[0,11],[-4,1],[-5,-2],[-3,4],[13,27],[-1,4],[-7,-8],[-8,-2],[-8,1],[-8,5],[2,8],[2,5],[8,7],[-3,3],[-6,5],[-3,4],[11,0],[13,4],[12,9],[6,16],[-7,-2],[-14,-5],[-8,-2],[-3,1],[0,3],[1,3],[2,4],[4,1],[8,-2],[4,2],[-11,11],[-4,7],[3,3],[8,0],[5,2],[4,5],[4,9]],[[7814,86290],[-3,-5],[-3,-11],[-2,-5],[-3,-4],[-3,-1],[-3,-1],[-4,-2],[-5,-6],[-4,-11],[-1,-11],[4,-8],[-20,-15],[-6,-2],[-4,2],[-3,2],[-1,3],[1,1],[13,3],[3,2],[2,4],[0,6],[-1,5],[1,5],[2,3],[6,7],[2,4],[1,8],[3,7],[1,8],[-4,12],[8,14],[3,2],[6,0],[4,-1],[6,-3],[5,-5],[3,-7],[-4,0]],[[9512,86375],[2,-5],[-6,-6],[-2,-1],[5,-4],[3,0],[-2,-5],[-2,-4],[-3,-2],[-3,-2],[-24,-21],[-12,-5],[-13,-10],[-15,-6],[-13,-12],[-10,-5],[-54,-15],[-11,6],[4,17],[3,10],[6,4],[46,1],[7,4],[-1,2],[-6,6],[24,11],[24,6],[0,4],[-3,1],[-1,2],[-2,5],[31,4],[14,7],[14,13]],[[9028,86391],[3,3],[11,5],[0,7],[-2,4],[-3,2],[-3,-1],[3,5],[10,8],[3,-3],[2,-3],[2,-3],[6,-14],[3,-5],[2,1],[4,5],[3,3],[4,2],[4,1],[-4,-16],[-4,-7],[-5,-1],[-8,3],[-4,0],[-13,-7],[-8,-1],[5,7],[1,4],[2,5],[-7,-1],[-7,-3]],[[8909,86428],[1,8],[1,6],[3,2],[8,-8],[4,-7],[4,-8],[1,-7],[-3,-4],[-18,-2],[0,-2],[0,-4],[-1,-4],[-2,-3],[-2,1],[-7,9],[-13,27],[5,4],[5,-4],[4,-5],[4,-3],[-5,13],[-1,8],[3,3],[3,-2],[2,-5],[1,-7],[3,-6]],[[8842,86395],[-7,11],[-8,15],[-2,14],[9,9],[-4,6],[-1,2],[16,3],[5,-3],[4,-5],[4,-7],[0,-8],[-5,-4],[0,-4],[6,-1],[2,-8],[0,-10],[-2,-10],[-5,-7],[-4,-1],[-4,3],[-4,5]],[[8865,86476],[-8,-1],[-4,2],[-2,7],[0,8],[1,6],[1,6],[0,7],[5,11],[8,9],[3,7],[-10,7],[0,4],[5,0],[16,5],[18,-15],[7,-12],[0,-14],[6,-14],[2,-8],[-1,-7],[-4,-4],[-3,4],[-4,5],[-3,4],[-12,-19],[-4,-3],[-17,5]],[[4905,88136],[0,-3],[-1,-2],[-1,-2],[-2,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[5,-13],[0,-3],[-3,-5],[-4,2],[-3,5],[-1,2],[-30,-8],[-33,0],[-3,1],[-6,6],[-8,2],[-11,7],[11,21],[3,3],[9,4],[3,0],[3,-2],[3,-3],[2,-2],[4,3],[-1,7],[7,1],[21,-5],[6,2],[5,3],[2,6],[2,1],[5,-1],[10,-5],[-2,-5],[11,-12]],[[4671,91694],[4,28],[5,12],[4,3],[2,-1],[-6,-8],[-4,-17],[-2,-21],[1,-15],[-1,-9],[-1,-48],[-2,17],[-1,17],[-1,4],[2,38]],[[10716,91760],[4,-4],[3,-5],[3,-7],[-7,6],[-17,9],[-31,27],[-17,5],[-19,11],[-14,4],[-10,6],[-16,3],[-11,6],[24,-2],[78,-36],[30,-23]],[[4707,91809],[7,17],[8,13],[44,47],[-10,-20],[-37,-41],[-9,-18],[-14,-41],[-10,-18],[21,61]],[[4805,91938],[7,13],[10,13],[11,10],[11,5],[1,-1],[-13,-12],[-20,-24],[-6,-17],[-11,-13],[-19,-18],[22,30],[7,14]],[[4865,92027],[49,41],[41,17],[-51,-30],[-40,-39],[-6,-8],[-8,-16],[-6,-5],[16,33],[5,7]],[[5125,92118],[-80,10],[-21,-2],[-18,-16],[2,5],[8,11],[15,8],[94,-16]],[[8661,92203],[-1,-1],[-25,12],[-10,-1],[-8,-4],[-10,3],[-50,31],[-17,5],[-16,-1],[3,2],[7,3],[11,0],[68,-35],[6,0],[8,4],[5,1],[8,-3],[21,-16]],[[27292,65024],[2,-2],[1,-2],[1,-3],[0,-5],[-1,1],[-1,2],[-1,2],[-1,3],[0,-1],[0,-2],[-1,3],[-1,-4],[-1,-4],[-3,-3],[-4,-3],[-9,-2],[2,9],[2,2],[3,-2],[3,-1],[2,2],[6,10],[1,0]],[[27304,65037],[2,-4],[4,0],[7,4],[1,-3],[1,-10],[-21,-12],[1,2],[3,6],[0,4],[-1,3],[-1,3],[1,3],[1,4],[2,0]],[[27359,65061],[0,-4],[-7,-10],[-9,-8],[-20,-11],[0,4],[5,9],[4,3],[2,-3],[6,5],[2,3],[1,2],[1,1],[2,5],[-4,5],[-2,3],[-2,4],[8,-5],[4,-4],[2,-7],[1,0],[2,8],[-1,6],[-3,3],[-5,-1],[0,4],[1,4],[0,2],[-2,1],[-3,1],[2,12],[2,0],[0,-3],[1,0],[1,-1],[2,-6],[9,-22]],[[27475,65089],[-1,9],[-3,3],[-9,1],[6,5],[15,9],[6,2],[-1,-4],[0,-2],[-7,-5],[-2,-4],[-2,-6],[-2,-8]],[[27380,65130],[1,-2],[1,-1],[2,-1],[8,-12],[9,-25],[4,-23],[-6,-9],[0,17],[-19,56]],[[27521,65138],[-1,-2],[-1,-1],[-4,-1],[-4,-7],[-20,-17],[21,28],[9,4],[0,-4]],[[27555,65182],[0,-5],[0,-4],[0,-1],[2,3],[2,0],[0,-3],[-1,-2],[-1,-3],[-2,-5],[-5,-2],[-10,-1],[3,6],[12,17]],[[27688,65422],[-9,-25],[-3,-15],[1,-9],[0,-4],[-22,-43],[-3,-3],[-4,2],[-1,-7],[-3,-13],[-2,-7],[-9,-14],[-10,-26],[-6,-12],[-6,-1],[-1,7],[3,3],[4,2],[3,3],[3,20],[2,4],[4,1],[2,3],[4,12],[7,14],[2,7],[-1,8],[6,2],[3,3],[2,7],[-1,4],[0,2],[1,0],[2,-2],[1,7],[-1,6],[-4,2],[-4,-3],[2,11],[13,-6],[5,26],[10,22],[3,12],[-1,9],[-2,4],[-2,3],[-1,6],[2,4],[9,4],[3,5],[8,21],[5,6],[6,-5],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[-2,-4],[-2,-7],[-2,-7],[0,-5],[-1,-6],[-9,-20]],[[27725,65560],[-1,-13],[-3,-13],[-4,-13],[-4,-7],[0,1],[-1,0],[-1,0],[4,6],[3,10],[4,34],[1,3],[2,2],[1,-3],[-1,-4],[0,-3]],[[27732,65673],[-3,1],[-2,5],[0,6],[3,5],[-1,1],[0,1],[-1,1],[-1,1],[0,4],[2,2],[1,3],[1,3],[1,4],[2,0],[0,-33],[-2,-4]],[[27186,66140],[9,-4],[6,1],[2,7],[11,-12],[-5,-2],[-7,-11],[-5,-3],[-4,1],[-17,19],[-3,5],[-2,7],[-2,9],[-3,18],[-1,18],[2,-3],[2,-5],[1,-6],[1,-6],[2,-13],[3,-9],[5,-6],[5,-5]],[[27150,66283],[1,0],[1,-1],[2,-3],[0,-14],[4,-22],[1,-14],[-3,14],[-3,12],[-3,28]],[[27184,66213],[1,15],[-4,18],[-5,19],[-3,18],[3,0],[6,-4],[5,-11],[3,-13],[-2,-21],[3,-14],[4,-12],[2,-9],[2,-30],[0,-11],[-3,3],[-4,12],[-4,29],[-4,11]],[[27146,66343],[3,-14],[1,-13],[0,-12],[-2,-13],[-2,12],[-1,29],[-3,11],[2,4],[1,0],[1,-4]],[[23000,66031],[5,-27],[1,-15],[2,-15],[2,-29],[0,-10],[-1,-7],[-3,10],[-3,18],[-7,85],[-4,26],[-3,16],[-3,16],[-3,45],[-2,14],[-7,23],[-2,12],[-4,34],[-1,5],[-3,10],[-3,13],[-3,25],[-4,14],[2,5],[-1,3],[-2,4],[0,4],[-1,5],[1,2],[3,2],[0,2],[0,3],[-1,5],[-1,2],[-1,5],[-8,23],[3,21],[0,20],[-2,56],[-3,22],[0,12],[2,22],[0,11],[-2,11],[2,12],[2,28],[4,9],[-2,-12],[2,-152],[9,-104],[29,-184],[0,-7],[2,-7],[2,-13],[3,-35],[3,-25],[1,-13]],[[27039,66694],[-2,5],[-3,10],[-1,8],[4,-5],[3,-4],[7,-24],[10,-23],[1,-9],[-5,7],[-11,26],[-3,9]],[[23034,66942],[3,15],[4,2],[2,-5],[-3,-6],[-34,-102],[-23,-93],[-17,-82],[-7,-49],[-1,-23],[-4,-7],[-6,0],[-3,3],[2,10],[5,61],[9,36],[5,28],[3,13],[3,17],[5,20],[3,15],[4,16],[3,18],[1,5],[-2,7],[-1,9],[6,-5],[3,-4],[2,-7],[2,0],[15,64],[8,17],[12,21],[1,6]],[[27670,66885],[-1,5],[-5,17],[-8,44],[-4,13],[1,2],[1,1],[2,2],[0,-3],[1,-2],[0,-2],[1,-2],[2,-24],[6,-24],[11,-37],[4,-22],[1,-13],[1,-12],[1,-9],[47,-243],[1,-14],[-4,17],[-5,13],[-3,23],[-17,71],[-1,8],[-1,3],[-4,6],[-1,4],[0,7],[-4,19],[-11,89],[-3,10],[-2,8],[-2,8],[-1,18],[-3,12],[0,7]],[[23089,67129],[3,3],[4,-3],[2,-6],[1,-5],[-1,-5],[0,-14],[-1,-5],[-25,-52],[-11,-33],[-10,-22],[-4,-11],[-1,-12],[-3,11],[4,18],[10,28],[8,17],[2,4],[1,6],[0,4],[-5,3],[0,3],[16,52],[4,2],[2,4],[2,6],[2,7]],[[27601,67159],[-1,7],[0,7],[-3,11],[5,-20],[1,-5],[-2,0]],[[23214,67285],[3,1],[2,1],[1,-1],[1,-5],[0,-16],[0,-5],[-1,-4],[-2,-7],[-1,-3],[-20,-18],[-9,-5],[-9,-11],[-15,-24],[-26,-26],[-7,-15],[-15,-20],[-8,-14],[-3,-9],[-2,-10],[-2,0],[1,10],[2,11],[3,10],[3,6],[0,4],[-2,6],[-1,11],[2,11],[4,4],[6,2],[9,5],[4,1],[4,3],[10,12],[3,4],[2,10],[12,12],[3,6],[2,3],[13,11],[5,11],[4,4],[6,2],[11,-2],[3,3],[3,11],[1,5],[-1,12],[1,3]],[[23230,67293],[0,4],[16,26],[11,12],[12,7],[0,-4],[-3,-1],[-1,-1],[-1,-1],[1,-2],[-3,-2],[-6,-9],[-2,-5],[-7,-4],[-7,-13],[-4,-6],[-6,-1]],[[27589,67395],[6,8],[4,3],[4,0],[4,-17],[-1,-19],[-9,-37],[-2,-22],[-2,-73],[-1,-10],[-1,-6],[1,-7],[2,-12],[3,-9],[0,-9],[-4,16],[-10,57],[-4,13],[-1,11],[-3,47],[-2,10],[-1,19],[2,16],[6,0],[2,10],[1,4],[6,7]],[[24738,67680],[11,-2],[6,-4],[-9,0],[-8,6]],[[24903,67678],[8,12],[2,3],[3,1],[2,1],[3,0],[0,-5],[-18,-12]],[[25010,67804],[2,0],[-2,-4],[2,-4],[-6,-7],[-9,-9],[-4,-8],[-2,0],[2,13],[6,6],[7,5],[4,8]],[[23662,67853],[25,-12],[-46,-64],[-15,-18],[-36,-48],[-9,-15],[-2,1],[3,13],[6,14],[13,16],[19,27],[7,9],[4,8],[2,8],[1,3],[12,17],[2,10],[1,3],[6,3],[1,0],[3,4],[1,8],[0,7],[-5,2],[0,4],[1,0],[1,1],[0,1],[0,2],[1,0],[1,0],[0,-3],[3,-1]],[[25231,67942],[1,1],[1,-1],[0,-2],[0,-1],[-2,-9],[-4,-6],[-6,-2],[-5,0],[9,6],[4,6],[2,8]],[[24499,67934],[-10,-4],[-16,20],[-3,3],[-3,5],[-28,23],[-5,8],[0,8],[7,10],[5,3],[6,1],[6,4],[2,3],[3,7],[1,2],[3,1],[16,-7],[4,-5],[7,-13],[9,-7],[0,-1],[8,-4],[7,-1],[4,-2],[2,-4],[-3,-9],[-10,-11],[-4,-6],[-1,-10],[0,-8],[-1,-4],[-2,-2],[-4,0]],[[26349,68023],[-2,3],[-2,4],[-2,6],[-2,4],[-3,3],[-6,4],[-2,5],[11,-3],[5,0],[4,7],[7,-2],[4,-3],[3,0],[1,-1],[0,-6],[-1,-3],[-2,-5],[-2,-5],[0,-6],[-2,-6],[-3,0],[-6,4]],[[26462,68080],[3,2],[6,11],[3,4],[0,-5],[-2,-1],[-2,-4],[0,-3],[-6,-4],[-17,-24],[-27,-22],[-6,-10],[-17,-18],[-6,-3],[-16,0],[-6,3],[-7,9],[4,-2],[8,-8],[6,1],[12,5],[59,53],[1,3],[0,2],[1,2],[3,1],[2,2],[1,2],[1,3],[2,1]],[[25151,68113],[4,-4],[2,-8],[0,-8],[2,-9],[-4,3],[-2,6],[-1,5],[-2,3],[-2,-3],[-3,-14],[-4,-4],[-1,25],[1,9],[4,7],[4,-4],[1,-2],[1,-2]],[[25193,68121],[3,1],[3,2],[2,1],[0,-4],[-4,-20],[-13,21],[0,3],[9,-4]],[[26495,68121],[7,8],[2,2],[2,-2],[-2,-11],[-7,-7],[-15,-6],[2,5],[11,11]],[[25212,68206],[-1,-5],[0,-3],[1,-2],[-1,-2],[-4,0],[-6,-2],[-3,-1],[-2,-2],[-1,2],[5,8],[5,4],[7,3]],[[25202,68225],[-2,-9],[-5,-14],[-2,-6],[-5,-9],[-2,-1],[3,6],[3,7],[1,5],[3,10],[4,12],[2,-1]],[[25313,68271],[6,-7],[3,-13],[2,-14],[4,-11],[2,-40],[-3,-49],[-2,-13],[-7,-25],[0,4],[0,3],[0,3],[-1,4],[8,30],[1,11],[1,31],[-1,9],[2,4],[-4,16],[-1,9],[1,7],[-2,4],[-2,22],[-3,9],[-4,6]],[[25157,68322],[2,2],[0,-3],[-1,-6],[-3,2],[2,5]],[[25225,68283],[0,-9],[-1,-9],[-2,-4],[-4,2],[-2,-7],[-2,1],[-4,10],[-1,3],[-1,4],[-1,4],[-2,1],[-2,-1],[-1,-3],[-1,-3],[0,-1],[-2,0],[-2,2],[0,2],[-1,0],[-2,-1],[-2,-3],[-1,-3],[0,-1],[-6,-2],[-2,2],[-1,8],[3,1],[4,2],[3,3],[1,4],[2,1],[3,0],[3,3],[-2,11],[4,2],[4,4],[7,10],[5,12],[4,6],[4,2],[0,-4],[-3,-4],[-4,-5],[-8,-15],[-4,-11],[4,-6],[5,-4],[-1,-8],[1,-5],[1,-3],[2,3],[1,2],[2,3],[1,4],[1,0]],[[25294,68365],[4,0],[-5,-2],[-7,-2],[1,2],[7,2]],[[25416,68364],[0,5],[21,-5],[-2,-4],[-10,1],[-9,3]],[[25261,68389],[1,-3],[-2,-2],[-1,-2],[1,-6],[-1,-6],[-5,-18],[-1,1],[-1,0],[-1,1],[-1,2],[1,2],[2,4],[1,2],[-2,5],[-2,-5],[-2,7],[-4,2],[-9,-1],[0,4],[14,-1],[7,4],[4,10],[1,0]],[[25377,68379],[6,-6],[17,0],[6,-4],[-2,-2],[-3,-3],[-56,17],[0,3],[7,4],[9,1],[10,-3],[6,-7]],[[25536,68384],[-4,-2],[-2,-1],[-61,-5],[4,5],[25,8],[16,0],[4,1],[2,3],[3,4],[2,3],[11,-11],[0,-5]],[[25918,68478],[10,4],[11,-2],[27,-6],[-2,-3],[-3,-1],[-3,1],[-3,3],[-95,-23],[-94,-22],[-15,4],[5,3],[22,1],[33,10],[16,11],[19,0],[7,4],[3,2],[7,5],[5,1],[12,-1],[30,8],[6,5],[2,-4]],[[27367,68713],[0,16],[0,5],[-1,5],[-3,11],[0,4],[3,18],[14,20],[2,19],[2,0],[0,-12],[-1,-15],[-2,-19],[-1,-18],[-3,-21],[-4,-16],[0,-9],[2,-18],[-1,-12],[-3,-5],[-2,2],[-2,45]],[[17122,69911],[3,-6],[-4,-1],[-6,5],[-4,-3],[-1,-4],[-2,-2],[-4,-4],[-1,0],[-3,8],[-3,1],[-7,12],[-4,4],[-3,3],[-2,9],[0,7],[-3,5],[-4,11],[-1,1],[-3,8],[0,11],[-1,4],[-2,5],[-5,9],[-1,12],[-2,9],[-2,6],[-4,0],[0,10],[4,3],[1,-4],[4,2],[3,-5],[0,-3],[1,-8],[3,-2],[2,-10],[8,-16],[3,-10],[6,-12],[4,-4],[5,-10],[12,-20],[7,-9],[6,-12]],[[27961,70048],[-1,-8],[-5,-24],[-2,0],[0,11],[1,11],[3,9],[4,5],[1,-1],[0,-1],[0,-1],[-1,-1]],[[16809,70171],[1,-2],[6,-4],[5,-9],[3,-6],[0,-5],[-2,-2],[-2,0],[-3,-2],[-3,0],[-1,-1],[-4,2],[-1,0],[-1,-1],[-2,3],[-4,0],[-2,4],[-6,2],[-6,9],[0,3],[-2,4],[0,4],[-2,6],[1,2],[4,-4],[3,5],[2,0],[3,3],[6,-6],[4,-6],[3,1]],[[17079,70263],[-2,3],[-2,1],[-2,0],[-2,2],[-2,0],[-2,0],[-2,2],[-2,1],[0,2],[0,3],[-2,1],[-1,3],[-2,4],[-1,4],[-2,3],[-1,3],[2,0],[3,-1],[2,1],[3,-1],[2,-1],[4,1],[2,1],[1,0],[2,-4],[1,-2],[2,-4],[3,-3],[2,-2],[0,-2],[1,-3],[1,-1],[1,1],[1,1],[1,2],[2,0],[1,-4],[1,1],[1,-2],[2,-3],[2,-1],[1,-2],[3,0],[1,-1],[1,0],[2,0],[7,-7],[2,1],[2,-4],[1,0],[1,0],[1,-1],[1,-2],[0,-4],[-1,-2],[1,-4],[1,0],[2,-7],[4,-6],[3,-5],[1,-6],[0,-2],[1,-1],[2,0],[2,-4],[2,-10],[-1,0],[-1,-3],[2,-3],[-3,-2],[0,-3],[-4,-1],[-5,4],[-3,4],[-2,1],[-3,3],[-6,0],[-4,0],[-3,-2],[-6,2],[-6,2],[-2,6],[-3,8],[-2,7],[1,6],[0,2],[2,5],[1,1],[-1,3],[-2,9],[0,2],[0,2],[0,4],[-1,2],[-2,1],[-2,1],[-2,1],[-1,-1]],[[28341,70540],[2,2],[6,14],[-6,-36],[-2,-5],[-3,3],[-4,3],[-4,4],[-2,6],[2,10],[4,4],[5,0],[2,-5]],[[16654,70627],[1,-5],[-2,-8],[0,-7],[4,-8],[7,-6],[8,2],[0,-14],[3,-4],[0,-7],[-8,0],[-6,-4],[-8,-12],[-6,-1],[-3,-3],[-6,0],[-2,-4],[0,-4],[-4,1],[-3,4],[-5,6],[-6,6],[-3,9],[-1,4],[-3,5],[-3,12],[-2,2],[-2,7],[-3,2],[-4,6],[4,4],[5,1],[5,-3],[4,2],[4,-1],[3,5],[4,5],[3,1],[11,-4],[6,4],[4,7],[4,0]],[[16571,70632],[2,2],[2,-1],[3,-4],[2,-4],[1,-4],[0,-5],[-6,0],[-6,0],[-3,-2],[-3,1],[-3,4],[-3,1],[-3,4],[-3,0],[-2,-4],[-4,2],[-2,1],[-1,3],[3,2],[6,9],[3,-2],[3,2],[4,4],[3,6],[0,3],[2,-3],[1,-4],[1,-3],[-2,-4],[2,-3],[3,-1]],[[16797,70620],[-3,-3],[-1,-4],[-1,-6],[-3,-5],[-6,-1],[-2,-3],[-10,-1],[-6,0],[-3,0],[-3,-2],[-2,-3],[-2,-1],[-1,-2],[-4,-3],[-2,0],[-2,-4],[-2,-1],[-6,2],[-3,0],[-2,-3],[-3,1],[-5,0],[-3,2],[-5,-2],[-2,4],[-4,2],[-3,-1],[-4,6],[-3,1],[-2,7],[0,6],[-1,4],[3,9],[0,5],[-3,4],[-3,6],[-4,4],[-2,1],[-1,-2],[-2,1],[-1,3],[3,4],[0,3],[1,4],[4,-3],[5,0],[8,-2],[6,-4],[3,-5],[5,-2],[5,2],[3,0],[5,0],[2,-2],[3,0],[2,-4],[1,2],[6,-4],[2,-5],[3,-3],[2,-5],[2,0],[3,-2],[3,1],[6,-3],[5,4],[2,5],[0,6],[6,6],[3,1],[3,3],[9,-9],[3,-4],[-2,-5]],[[28368,70657],[3,15],[2,17],[3,15],[7,6],[0,-3],[-1,0],[-1,-1],[-5,-28],[-4,-14],[-4,-7]],[[28491,70901],[5,2],[11,12],[6,2],[0,-3],[-1,0],[-1,-1],[-7,-11],[-23,-21],[-9,-4],[-4,-3],[-29,-45],[-4,-9],[5,19],[10,18],[36,42],[5,2]],[[28732,71002],[2,-4],[4,-6],[1,-7],[-4,-3],[-1,2],[-10,14],[-14,9],[-3,3],[0,4],[5,0],[20,-12]],[[28639,71018],[46,12],[14,-7],[0,-5],[-33,5],[-7,-2],[-76,-31],[5,9],[8,6],[43,13]],[[28817,71146],[2,5],[5,6],[5,5],[3,2],[-5,-16],[-8,-8],[-14,-27],[-6,-5],[-5,-6],[-15,-31],[-35,-101],[-3,-16],[-2,11],[4,18],[32,92],[29,53],[12,14],[1,4]],[[28867,71240],[1,1],[4,-1],[6,-6],[-1,-3],[-1,0],[-1,-1],[-1,0],[-20,-26],[-5,-11],[-1,0],[2,6],[9,16],[2,9],[1,3],[2,3],[2,4],[1,6]],[[28891,71270],[7,-3],[7,5],[15,18],[24,16],[8,8],[-1,-4],[-2,-3],[-4,-4],[-6,-9],[-25,-16],[-30,-36],[3,6],[2,7],[2,15]],[[29034,71609],[1,-12],[5,-31],[1,-24],[-5,-46],[-6,-100],[-7,-45],[-3,-9],[-5,-7],[-2,0],[-9,0],[-11,-8],[-6,-2],[-10,-9],[-5,-2],[-1,-1],[-4,-5],[-2,-1],[-3,1],[1,4],[2,4],[3,3],[2,0],[1,3],[1,2],[1,3],[1,2],[0,3],[1,2],[1,1],[1,-1],[0,-2],[1,-1],[1,0],[17,16],[20,12],[7,11],[0,18],[1,7],[4,29],[1,22],[3,22],[0,13],[0,6],[-1,12],[0,7],[1,6],[3,13],[1,7],[0,14],[-2,24],[-7,44],[0,11],[-5,20],[-2,12],[3,3],[5,-8],[3,-14],[2,-16],[1,-13]],[[28968,71745],[-2,3],[-2,3],[0,3],[2,3],[2,1],[3,-1],[2,-2],[2,-2],[4,-3],[2,-2],[2,-3],[0,-6],[4,-9],[9,-22],[-2,-10],[0,-7],[-1,-2],[-5,-1],[-5,4],[-2,10],[-1,11],[-2,9],[-8,16],[-2,7]],[[28984,72655],[-1,-11],[-7,-17],[-9,-27],[-2,3],[5,15],[6,22],[2,11],[2,5],[4,-1]],[[28994,72720],[2,4],[4,-2],[-1,-7],[-11,-31],[-5,-16],[-3,-4],[-1,5],[3,11],[6,18],[2,14],[4,8]],[[28887,72990],[5,-5],[2,-15],[-3,-12],[-1,-17],[-3,3],[-1,7],[-3,0],[1,-7],[-1,-3],[0,-4],[1,-5],[-2,-1],[-1,-8],[-1,0],[0,9],[0,7],[1,6],[-2,2],[-1,-2],[-2,-1],[0,9],[0,9],[-2,8],[2,3],[4,1],[5,-5],[3,5],[-3,6],[-7,6],[-1,5],[4,3],[3,3],[2,-2],[1,-5]],[[28879,73062],[-8,6],[-6,1],[2,13],[4,7],[4,4],[4,-7],[3,-6],[-2,-8],[1,-7],[-2,-3]],[[29124,73096],[11,44],[4,13],[2,0],[-3,-17],[-10,-33],[-9,-41],[-5,-35],[-11,-25],[-2,-5],[-22,-71],[-3,-16],[-5,-10],[-2,-5],[-4,-2],[-4,-5],[-4,6],[-2,5],[3,3],[6,-5],[3,2],[2,9],[-4,4],[-3,1],[2,7],[5,2],[3,2],[3,4],[1,6],[2,5],[4,19],[2,7],[5,13],[7,14],[1,4],[6,19],[8,20],[1,6],[2,17],[3,15],[7,23]],[[29344,73831],[-2,10],[4,3],[14,-3],[-1,-3],[-2,-2],[-1,-1],[-4,-17],[-8,-14],[-9,-8],[-9,3],[-6,16],[4,3],[3,-5],[2,-7],[4,-3],[4,4],[4,18],[3,6]],[[29407,73989],[4,14],[3,7],[3,4],[-2,-16],[-7,-17],[-5,-21],[-10,-29],[-13,-37],[-7,-19],[0,5],[0,3],[0,7],[4,17],[23,65],[7,17]],[[29651,74537],[-18,-3],[-19,-10],[-52,-25],[3,9],[34,17],[12,6],[6,3],[6,3],[5,3],[6,1],[13,2],[6,-1],[-2,-5]],[[29409,74533],[5,3],[3,3],[4,4],[2,-1],[1,-2],[0,-4],[-1,-2],[1,-7],[3,-5],[2,-7],[-13,-28],[-9,-13],[-2,1],[-2,0],[-4,-4],[-5,-5],[-3,-5],[-5,-1],[-5,-4],[-4,-2],[-3,1],[0,4],[1,3],[3,2],[0,7],[-1,7],[2,5],[4,3],[4,4],[1,6],[1,9],[1,16],[1,9],[2,6],[4,3],[4,-3],[8,-3]],[[29755,74593],[13,8],[15,11],[6,2],[0,-6],[-13,-5],[-7,-6],[-23,-17],[-22,-14],[-13,-9],[-30,-17],[-27,-12],[-15,-1],[-2,4],[14,0],[10,6],[12,7],[20,9],[18,9],[7,5],[18,15],[10,5],[9,6]],[[30022,74789],[-3,8],[8,4],[7,-6],[5,-2],[-2,-6],[-5,-10],[-13,-4],[-22,-18],[-22,-14],[-20,-17],[-16,-13],[-27,-22],[-16,-12],[-9,-8],[-10,-4],[-5,-2],[3,9],[0,7],[-3,4],[-7,1],[-3,-2],[-1,-5],[0,-6],[2,-6],[0,-5],[-3,-5],[-11,-11],[-17,-11],[-28,-15],[-5,-3],[-3,-1],[-1,3],[1,2],[2,0],[13,8],[8,4],[-4,1],[-4,1],[-6,-1],[-7,5],[-5,-7],[-6,-8],[-10,0],[-7,4],[4,-5],[-2,-8],[-4,-5],[-5,-6],[-7,-2],[-3,12],[-6,-5],[-5,-1],[-5,-8],[-18,4],[-3,-1],[-3,-10],[-6,-1],[-8,-3],[-5,-2],[-4,4],[-4,2],[-3,-3],[-1,-6],[0,-6],[-4,-3],[-6,3],[-9,0],[-6,5],[-4,-4],[-4,-7],[-3,-5],[-12,-2],[-15,-12],[-9,-3],[-28,-8],[-16,-4],[-18,-14],[-5,-6],[-2,-2],[-4,2],[3,3],[0,5],[-4,5],[-7,-3],[-5,-6],[1,-9],[28,-1],[9,0],[-2,-6],[-35,-1],[-12,2],[-4,2],[-13,-3],[-23,-17],[-12,-8],[0,8],[25,15],[17,12],[3,6],[2,5],[0,2],[-3,4],[-5,5],[-5,5],[-4,1],[-6,-3],[-4,-2],[-3,-2],[-1,-3],[-3,-4],[0,-6],[3,-8],[1,-11],[-4,-3],[-1,4],[-4,0],[-4,0],[-2,-4],[-3,-1],[-13,-4],[-4,1],[-2,5],[3,3],[1,3],[-2,5],[-7,5],[-3,8],[1,12],[4,6],[3,9],[-1,8],[4,7],[1,3],[2,3],[3,3],[3,2],[2,9],[1,11],[8,18],[6,9],[6,-5],[4,2],[3,-4],[10,12],[13,-3],[6,-12],[2,12],[-4,11],[2,13],[4,1],[3,-6],[2,-7],[2,-4],[4,3],[1,7],[-1,7],[-9,6],[1,6],[3,7],[4,1],[9,-6],[2,-11],[3,-9],[2,4],[-2,22],[6,19],[19,9],[12,2],[3,-8],[-1,-3],[-4,-5],[-3,2],[-3,-2],[4,-7],[7,-1],[0,5],[1,4],[4,0],[0,-7],[4,-2],[2,3],[-1,5],[2,1],[0,5],[-5,10],[-2,5],[2,11],[7,-5],[8,-2],[-3,-11],[3,-4],[3,-5],[4,3],[5,1],[5,-4],[3,0],[1,9],[-1,6],[-5,0],[-6,0],[-3,9],[1,4],[1,4],[2,0],[4,-4],[2,-6],[6,-3],[7,-1],[9,-3],[9,-7],[5,-2],[3,-1],[3,0],[12,7],[6,6],[3,9],[-2,10],[5,4],[6,3],[4,-3],[-1,-12],[4,0],[2,2],[1,4],[-2,6],[3,2],[7,-5],[11,2],[31,-2],[19,3],[14,-2],[23,9],[19,2],[6,4],[18,20],[20,19],[5,11],[2,6],[9,3],[8,11],[7,13],[4,6],[15,12],[4,1],[4,-1],[4,-3],[2,-6],[-2,-6],[-4,-6],[-4,-5],[-4,-2],[-4,11],[-11,-11],[-19,-29],[-1,-6],[5,-2],[2,-3],[2,-1],[-2,-8],[-6,2],[-5,-3],[-2,-2],[0,-6],[1,-6],[0,-8],[-1,-5],[-2,4],[-3,8],[-3,0],[-2,-8],[-6,-1],[-1,0],[-3,-2],[-3,0],[-4,-6],[-2,-5],[0,-6],[-6,-8],[-4,-6],[-6,-2],[-4,-1],[-3,-12],[3,1],[3,-1],[3,-1],[2,-4],[6,8],[6,-2],[5,-4],[6,-3],[6,0],[7,7],[2,6],[1,7],[1,7],[3,2],[6,2],[6,13],[6,13],[7,3],[4,0],[2,4],[-4,15],[3,3],[5,0],[1,-9],[1,-9],[8,-2],[2,8],[4,1],[1,7],[1,5],[2,4],[5,-3],[8,-18],[1,11],[1,11],[3,6],[4,-1],[9,-22],[1,-6],[2,-4],[6,2],[11,8],[10,14],[6,5],[4,-4],[5,2],[0,14],[4,2],[3,-5],[4,-4],[0,4]],[[30122,74870],[-2,-5],[2,-6],[2,-4],[2,-8],[-1,-6],[-6,-2],[-8,-2],[-4,5],[0,8],[2,7],[3,5],[1,5],[3,4],[0,7],[1,6],[1,2],[2,-2],[4,-6],[-2,-8]],[[30000,74900],[-7,1],[-4,-3],[1,7],[2,4],[2,5],[3,0],[2,-5],[1,4],[1,5],[5,1],[7,1],[3,4],[6,-1],[-2,-6],[-5,-3],[-7,-1],[-5,-9],[-3,-4]],[[30540,74983],[1,2],[3,-1],[3,-5],[3,-9],[4,-17],[8,-24],[5,-15],[-3,-16],[-9,-6],[-12,3],[-15,-1],[-11,3],[-27,22],[-6,5],[-6,9],[2,2],[4,-1],[4,-5],[7,-2],[16,-3],[10,2],[5,-1],[2,-3],[2,0],[2,2],[3,5],[7,4],[5,6],[3,7],[1,9],[-5,-3],[-7,-14],[-5,-3],[9,23],[2,13],[-5,12]],[[30416,74984],[4,5],[5,10],[4,6],[2,-10],[1,-18],[-1,-9],[-2,-5],[-3,1],[-4,5],[-4,8],[-2,7]],[[30395,75004],[4,-6],[4,-2],[9,-1],[2,-30],[-5,-2],[-39,-1],[-8,-3],[-8,-6],[-6,-7],[-8,-15],[-3,0],[-5,5],[-3,4],[-5,12],[-4,4],[0,4],[18,0],[8,11],[3,7],[8,21],[3,5],[4,3],[8,14],[15,10],[4,-1],[-3,-14],[4,3],[2,7],[3,5],[4,-3],[3,-9],[0,-5],[-3,-5],[-6,-5]],[[30178,75081],[0,-13],[-1,-13],[-1,-11],[-2,-8],[-1,-3],[-2,-5],[-3,-3],[-1,-1],[-1,4],[2,13],[-1,7],[2,2],[0,2],[1,2],[1,3],[-3,5],[0,10],[5,21],[2,-1],[2,-3],[1,-3],[0,-5]],[[30563,75138],[2,-2],[1,-2],[0,-4],[1,-5],[-5,-12],[-7,-35],[-6,-1],[12,45],[2,16]],[[30198,75095],[2,7],[1,16],[2,7],[3,5],[7,7],[3,5],[0,-12],[-3,-21],[0,-44],[-1,-7],[-1,-6],[0,-5],[2,-7],[-9,4],[-6,-8],[-5,-9],[-5,1],[-4,-6],[-3,-2],[-2,2],[-1,8],[2,3],[9,7],[3,4],[-4,8],[-1,6],[1,7],[3,6],[1,3],[0,4],[0,9],[1,2],[4,4],[1,2]],[[15563,78003],[0,-4],[2,-3],[5,-10],[0,-9],[1,-18],[-6,-7],[-3,20],[-6,8],[2,12],[0,9],[3,5],[2,-3]],[[15990,78556],[4,-10],[4,-5],[5,-4],[6,-6],[-2,0],[-12,-8],[-9,-13],[-5,-7],[-2,8],[0,8],[2,6],[4,2],[3,3],[1,6],[-2,5],[-5,-2],[2,-4],[-5,-4],[-3,-2],[-1,-4],[0,-12],[-1,-5],[-1,-5],[-2,-3],[-2,0],[-2,4],[-3,5],[-1,6],[1,6],[2,4],[1,4],[2,45],[2,7],[4,9],[5,7],[4,3],[-1,-8],[1,-4],[2,-3],[2,-5],[1,-6],[0,-12],[1,-6]],[[15973,78663],[0,-3],[1,-4],[1,-3],[3,-2],[-3,-3],[-3,-6],[-6,2],[-6,12],[-4,2],[-4,-1],[-2,3],[3,10],[0,7],[-2,5],[-1,6],[0,8],[0,4],[5,10],[1,6],[0,6],[0,4],[3,2],[3,-1],[3,-3],[2,-4],[2,-4],[1,-19],[2,-9],[3,-4],[-2,-5],[-2,-2],[-2,-2],[3,-4],[0,-5],[1,-3]],[[15908,78953],[3,4],[3,0],[2,-3],[4,-15],[3,-14],[1,-15],[-2,-10],[-6,1],[-4,9],[-4,11],[-2,8],[-1,11],[1,5],[2,0],[2,-4],[1,-13],[1,-3],[4,0],[0,9],[-3,12],[-5,7]],[[16011,78882],[3,-9],[1,-6],[-1,-3],[-2,-2],[-5,-14],[-1,-3],[-1,-4],[-1,-1],[-2,0],[-1,3],[0,4],[-1,1],[-6,-4],[-4,-1],[-2,3],[0,13],[-2,13],[-3,11],[-4,5],[-4,-1],[-5,-8],[-3,-3],[-3,1],[-3,2],[-2,5],[-4,4],[-5,11],[-4,12],[0,10],[-4,11],[-2,8],[4,33],[-2,14],[-4,6],[-6,-1],[-7,-7],[-7,18],[-1,2],[-3,2],[-4,3],[-4,4],[-2,4],[-3,14],[1,12],[23,67],[4,13],[7,0],[4,3],[3,5],[2,2],[3,-7],[1,-4],[0,-2],[1,-2],[0,-12],[18,-20],[-1,-17],[-4,-6],[-4,-1],[-4,2],[-4,7],[-5,6],[-4,-5],[-3,-10],[-2,-9],[-4,13],[-2,-5],[0,-10],[-1,-8],[-4,-5],[-16,-5],[4,-7],[4,-1],[8,4],[4,-1],[6,-6],[4,-1],[6,-4],[4,-10],[2,-14],[4,-26],[1,-33],[2,-29],[3,-7],[4,4],[3,14],[-3,13],[-1,13],[3,7],[6,-7],[4,-8],[5,-7],[22,-23],[4,-9],[2,-14]],[[15872,79186],[0,-10],[3,-7],[4,-1],[4,8],[3,-9],[1,-9],[-2,-9],[-4,-6],[-17,4],[2,10],[-5,4],[-6,2],[-4,4],[-2,11],[2,10],[3,8],[4,4],[-2,6],[0,6],[1,5],[1,3],[7,10],[2,1],[5,-15],[0,-11],[0,-19]],[[15918,79243],[4,-8],[2,-2],[-2,-3],[-2,-4],[0,-6],[-2,-2],[-2,-1],[-3,0],[-3,4],[-4,17],[1,8],[2,6],[3,3],[4,-3],[2,-5],[0,-4]],[[15828,79192],[0,-2],[5,-14],[3,-3],[2,-2],[5,-4],[0,-4],[-4,3],[-3,0],[-3,-2],[-4,-1],[-4,2],[-3,3],[-1,4],[-3,4],[-3,3],[-1,1],[-6,0],[-3,0],[-4,3],[-4,3],[-3,4],[-2,5],[-2,5],[-3,18],[-2,18],[0,3],[-1,12],[5,9],[8,3],[8,-6],[2,-7],[5,-8],[5,-7],[9,-6],[6,-14],[7,-4],[0,-4],[-4,-7],[-2,-2],[-3,1],[-1,0],[-1,-7]],[[15904,79289],[-2,-5],[-1,-3],[-12,-12],[-2,-4],[0,-4],[-1,-3],[-3,-1],[-3,2],[-3,5],[-7,17],[-3,16],[-1,6],[-1,5],[-3,2],[-3,-1],[-1,-6],[1,-6],[0,-4],[0,-3],[-1,-5],[14,-33],[-4,-4],[-4,-3],[-8,0],[-4,2],[-3,6],[-1,7],[-1,5],[-5,7],[-3,2],[-2,-3],[0,-8],[-1,-9],[-2,-4],[-4,5],[-3,7],[-1,5],[0,6],[1,3],[7,11],[2,2],[3,2],[14,25],[3,1],[6,1],[11,-2],[31,-27]],[[15938,79292],[2,-6],[1,-6],[-2,-1],[-4,3],[-6,8],[-2,3],[-5,11],[-6,11],[-4,5],[-1,5],[1,9],[5,-3],[7,-18],[3,-4],[4,-4],[4,-4],[1,-4],[2,-5]],[[3863,82438],[1,-2],[3,-4],[-3,-5],[-6,-4],[-12,0],[-4,1],[-6,4],[-2,10],[2,5],[3,0],[6,2],[12,-2],[6,-5]],[[5688,82918],[2,-3],[1,-5],[-1,-5],[-3,-6],[-6,-3],[-6,0],[-5,3],[-2,4],[1,6],[0,6],[-2,6],[-1,5],[-1,4],[2,5],[4,2],[4,-1],[3,-4],[4,-5],[5,-7],[1,-2]],[[5185,83155],[1,-2],[0,-4],[0,-7],[-3,-4],[-5,0],[-3,1],[-15,12],[-4,7],[0,5],[3,5],[4,3],[11,0],[5,2],[4,-2],[1,-3],[-1,-4],[1,-5],[1,-4]],[[5122,83192],[3,-1],[2,-7],[-4,-15],[-2,-4],[-3,-1],[-5,0],[-12,-8],[-3,1],[-5,2],[-3,1],[-4,7],[2,11],[7,7],[13,2],[14,5]],[[5545,83235],[1,-2],[1,-6],[-3,-4],[-9,1],[-6,4],[-4,6],[0,5],[3,4],[4,2],[5,1],[1,-2],[1,-2],[2,-3],[4,-4]],[[5746,83522],[4,-11],[3,-8],[0,-7],[-4,-5],[-4,5],[-3,6],[-4,4],[-5,1],[0,7],[8,9],[5,-1]],[[6478,83657],[0,-1],[0,-2],[0,-2],[-1,-4],[0,-3],[1,-1],[-1,-3],[-3,-2],[-4,3],[-3,5],[-4,2],[-4,5],[1,4],[3,-1],[2,1],[2,2],[2,4],[1,6],[2,3],[3,-4],[3,-8],[0,-3],[0,-1]],[[6450,83746],[4,-7],[0,-6],[-3,-9],[-4,0],[-4,7],[-1,9],[0,6],[0,5],[2,2],[0,2],[1,4],[1,5],[4,4],[1,-2],[-1,-3],[-1,-6],[0,-6],[1,-5]],[[6163,83837],[2,-4],[0,-5],[-2,-3],[-2,-3],[-4,-3],[-4,4],[-5,6],[-5,2],[-4,3],[1,5],[11,9],[8,0],[4,-3],[0,-2],[0,-3],[0,-3]],[[7268,84523],[1,-10],[1,-20],[-4,-9],[-7,10],[-4,14],[-1,11],[-1,8],[2,4],[2,4],[0,7],[2,6],[6,-2],[4,-9],[0,-9],[-1,-5]],[[7682,84773],[2,-1],[3,-4],[-1,-5],[-7,-8],[-1,-3],[-3,-1],[-3,2],[-5,4],[-24,11],[-6,6],[4,9],[2,5],[-1,1],[0,2],[0,1],[-1,1],[-1,0],[1,2],[2,1],[3,-1],[3,-1],[9,6],[2,-3],[0,-7],[2,-5],[0,-3],[-2,-3],[2,-2],[8,-2],[7,0],[2,-1],[3,-1]],[[7571,84809],[4,-1],[0,-5],[-3,-3],[0,-4],[0,-7],[-2,-7],[-5,-5],[-6,-3],[-6,2],[-5,5],[-7,4],[-2,6],[2,8],[5,4],[22,4],[3,2]],[[7557,84988],[0,1],[-2,0]],[[7555,84989],[-3,1],[-10,7],[-15,3],[-5,5],[-3,8],[2,5],[5,3],[5,-1],[6,-3],[2,-1],[4,2],[1,-1],[0,-1],[0,-1],[-1,1],[1,-1],[4,-2],[1,-1],[1,-4],[2,-3],[4,1],[1,-3],[2,-8],[1,-6],[-3,-1]],[[5484,85220],[3,-4],[1,-5],[-3,-7],[-4,-8],[-2,-1],[1,9],[-2,8],[-4,4],[-6,7],[0,4],[0,5],[2,4],[2,2],[-3,4],[3,8],[6,-6],[1,-9],[-1,-8],[1,-7],[5,0]],[[5449,85251],[0,-3],[1,-3],[-1,-6],[-3,-7],[-3,-6],[-3,-4],[-3,-1],[-2,3],[0,3],[3,20],[2,8],[3,8],[4,-8],[2,-4]],[[8275,86697],[7,1],[2,-8],[-5,-12],[-9,-8],[-10,-2],[-4,2],[5,4],[4,7],[4,10],[2,5],[4,1]],[[4281,87817],[3,0],[4,-5],[-1,-5],[-5,-3],[-4,1],[-4,2],[1,5],[4,5],[2,0]],[[238,80836],[3,5],[4,3],[8,4],[2,-6],[3,-14],[3,-5],[0,-4],[-7,-3],[-5,-9],[-4,-7],[-5,7],[2,10],[-2,7],[-2,6],[0,6]],[[282,80900],[3,7],[5,0],[11,-11],[3,-14],[-2,-5],[-6,-1],[-4,-2],[-7,-16],[-4,-3],[-1,11],[0,5],[4,11],[-1,6],[-2,8],[1,4]],[[337,81164],[11,-7],[2,-20],[-6,-19],[-13,-3],[-4,5],[-6,10],[-4,10],[0,4],[4,6],[3,12],[6,8],[7,-6]],[[1038,81152],[-2,-2],[-1,-2],[-1,-4],[0,-5],[4,-3],[1,0],[0,-4],[-4,0],[-3,-4],[-2,-7],[0,-9],[-2,0],[-2,6],[-3,-1],[-4,-12],[-3,-3],[-3,9],[-2,-4],[-3,2],[-4,0],[-3,3],[-2,10],[-2,38],[2,-1],[3,-2],[1,-1],[-2,6],[-7,15],[8,7],[13,4],[12,-1],[7,-7],[-4,-8],[-6,-2],[-6,0],[-5,-2],[0,-4],[2,0],[5,0],[2,0],[-1,-9],[-1,-3],[8,7],[4,1],[6,-4],[0,-4]],[[1108,81164],[-2,-4],[5,-7],[3,-1],[-2,-4],[-8,12],[-2,4],[-5,-3],[-4,0],[-9,3],[-2,-2],[0,-5],[3,-13],[-4,2],[-4,4],[-2,6],[-2,8],[-3,-7],[-1,-8],[1,-8],[2,-9],[-2,0],[-1,2],[-2,7],[-1,3],[0,2],[0,5],[0,1],[-1,1],[-3,0],[-5,5],[-4,0],[-3,3],[-1,11],[6,-1],[1,4],[-3,11],[1,8],[4,4],[5,-1],[3,-5],[7,-5],[2,-3],[0,-2],[3,-8],[2,-5],[1,5],[4,7],[9,-2],[9,-7],[5,-8]],[[1114,81196],[1,2],[3,6],[1,1],[2,-6],[2,-8],[0,-9],[0,-5],[-6,0],[-36,19],[4,6],[6,6],[5,4],[9,1],[3,0],[3,-1],[3,-3],[-3,-1],[-5,-3],[0,-4],[8,-5]],[[611,81144],[1,-6],[1,-4],[3,-2],[3,0],[-7,-10],[-3,-8],[0,-10],[0,-15],[-1,-5],[-7,-11],[-3,-3],[-4,2],[-6,7],[-1,-7],[-2,-4],[-3,-2],[-3,1],[2,-4],[-2,-8],[1,-9],[4,-16],[-3,-3],[-3,-1],[-4,1],[-3,3],[-1,4],[-2,12],[-1,4],[-4,5],[-11,1],[-5,7],[-4,4],[-10,-2],[-6,2],[3,15],[3,5],[14,0],[3,2],[5,5],[8,2],[3,3],[2,5],[1,8],[-1,13],[-5,9],[-7,4],[-13,3],[-5,5],[-9,14],[-26,19],[-7,12],[10,18],[8,5],[55,6],[6,-3],[0,-4],[10,-14],[3,-3],[0,-4],[-3,-6],[13,-9],[2,-9],[36,0],[17,7],[7,5],[-1,-14],[-6,-7],[-7,-3],[-7,0],[-8,-2],[-13,-10],[-7,0]],[[799,81225],[7,-1],[7,-5],[5,-8],[2,-10],[-4,-3],[-1,-3],[0,-5],[0,-4],[-2,-5],[-14,-9],[-4,-12],[2,-23],[-3,-13],[4,-9],[-1,-10],[-7,-18],[-10,6],[-3,2],[0,-4],[0,-3],[0,-2],[0,-3],[-6,2],[-7,-5],[-8,-5],[-8,8],[-2,-3],[-1,-1],[-3,4],[0,1],[-3,7],[-5,7],[-4,3],[-4,2],[-14,-1],[-5,-1],[-4,-4],[-4,-6],[-4,-2],[-10,2],[-18,-2],[-9,-7],[-3,-13],[-2,-9],[-3,-1],[-3,4],[-2,6],[0,5],[-1,5],[-3,4],[-3,4],[0,4],[4,3],[8,11],[4,2],[5,-1],[11,-6],[5,-1],[13,0],[1,2],[0,4],[1,5],[2,2],[9,0],[1,1],[1,3],[1,2],[3,2],[19,4],[26,12],[21,22],[4,30],[1,5],[1,13],[1,7],[-1,10],[6,4],[14,-2]],[[1188,81249],[4,0],[8,-4],[5,0],[0,-4],[-12,-4],[-1,-2],[-2,-7],[-3,-3],[-4,1],[-3,3],[2,5],[6,15]],[[990,81139],[1,-6],[1,-5],[1,-5],[3,-3],[-4,-8],[-7,-7],[-5,-6],[-5,20],[-9,-7],[-18,-33],[-2,6],[-2,4],[-3,1],[-3,-3],[2,-4],[-4,-1],[-3,-3],[-3,-3],[-2,-2],[-3,2],[-4,3],[-3,1],[-4,-1],[-3,-10],[-1,-7],[1,-3],[3,-3],[1,-5],[0,-7],[-1,-6],[-12,12],[-5,-10],[-4,-4],[-4,-2],[-4,3],[-3,6],[0,5],[5,2],[0,5],[-4,8],[-2,9],[0,10],[2,13],[-2,4],[-19,-49],[-2,-6],[-2,-8],[-2,-7],[-2,-3],[-7,-3],[-5,1],[-3,4],[1,28],[3,13],[17,18],[4,6],[2,6],[1,7],[-1,9],[6,1],[2,-1],[-1,3],[-1,2],[11,8],[0,4],[-6,-1],[-7,-3],[-6,-1],[-5,5],[-2,10],[3,9],[5,7],[6,2],[3,-3],[2,-7],[4,-7],[6,-4],[23,-3],[6,3],[-4,5],[-10,6],[-4,4],[-3,10],[1,8],[3,6],[5,2],[12,2],[-15,14],[-5,15],[-1,16],[1,5],[5,5],[5,3],[5,1],[11,0],[7,-4],[3,-1],[3,3],[3,11],[1,3],[5,4],[6,2],[6,-1],[4,-5],[-2,-4],[-1,-8],[-1,-7],[2,-6],[4,-3],[-3,-11],[-4,-3],[-4,0],[-6,-2],[-3,-6],[-2,-8],[-2,-8],[-4,-3],[0,-4],[15,0],[-2,-4],[-1,-4],[0,-3],[1,-5],[7,6],[5,-3],[6,-4],[7,-3],[0,4],[-2,0],[2,5],[4,3],[7,5],[7,-6],[3,-4],[1,-5],[-2,-7],[1,-6],[1,-6],[-3,-4]],[[1148,81257],[5,1],[4,3],[4,0],[4,-4],[-20,-11],[-9,-1],[-11,4],[3,8],[5,2],[6,-2],[5,-4],[0,3],[1,2],[0,1],[1,2],[2,-4]],[[1073,81261],[-5,1],[-3,2],[-1,4],[-6,20],[-1,7],[0,5],[2,5],[3,13],[2,5],[7,5],[11,2],[10,-1],[6,-6],[12,-18],[2,-5],[0,-8],[0,-8],[3,-4],[6,6],[-3,-8],[-15,-6],[-5,-11],[5,1],[2,-3],[0,-5],[-2,-7],[-4,-4],[-4,2],[-6,8],[-12,7],[-4,1]],[[1910,81329],[3,-4],[3,-2],[41,-5],[-5,-3],[-12,-2],[-5,-5],[-5,-3],[-14,4],[-10,-9],[-7,-2],[-7,2],[-7,7],[-4,2],[-3,1],[-1,-2],[-1,-6],[-3,0],[-5,4],[-9,-4],[-19,-14],[-11,-2],[-9,5],[-4,-1],[-3,-3],[-3,-8],[-2,-1],[-3,0],[-4,6],[-2,2],[-4,-1],[-3,-1],[-3,-1],[-4,3],[4,5],[-3,3],[-31,0],[1,4],[1,4],[-4,4],[-7,-9],[-10,-4],[-24,-2],[-14,7],[-10,2],[-2,4],[2,10],[-2,3],[-7,1],[-3,2],[-4,5],[-3,2],[-2,0],[-5,-1],[-2,1],[-3,2],[-4,7],[-3,3],[0,2],[1,2],[0,2],[1,2],[2,-4],[6,-2],[4,-2],[14,-1],[5,1],[11,7],[4,1],[-2,-9],[0,-3],[-2,-4],[4,1],[8,6],[3,1],[2,-3],[10,-18],[4,15],[7,7],[9,2],[9,0],[4,2],[7,8],[4,3],[4,-1],[4,-2],[3,0],[4,3],[5,-5],[7,2],[5,-1],[-4,-16],[4,4],[3,-6],[3,-2],[22,0],[2,3],[2,1],[2,-2],[0,-2],[1,-3],[2,-1],[8,2],[2,-2],[2,-9],[7,6],[7,5],[8,2],[7,0],[0,-1],[1,-3],[1,-3],[2,-1],[2,0],[3,3],[2,1],[15,0],[4,3],[3,1],[2,-2]],[[2109,81493],[7,-10],[13,-6],[9,-8],[-2,-17],[-4,-4],[-17,-8],[-7,-10],[-4,-1],[-4,7],[-11,-14],[-14,-9],[-15,-1],[-14,8],[10,30],[5,14],[6,8],[17,13],[16,16],[1,-3],[2,-2],[6,-3]],[[1652,81407],[-10,-8],[-26,2],[-6,-10],[3,-7],[3,-6],[8,-11],[10,-12],[5,-7],[2,-7],[-2,-9],[-4,-1],[-9,10],[-3,0],[-2,-2],[-2,-3],[-2,-1],[-3,0],[-6,4],[-3,0],[2,-5],[0,-5],[0,-6],[0,-5],[-4,3],[-12,2],[-2,2],[-6,7],[-1,3],[-5,3],[-4,-2],[-5,-3],[-5,-2],[-11,1],[-5,-2],[-1,-7],[4,2],[4,2],[9,0],[0,-4],[-5,-3],[-2,-24],[-4,-6],[-6,1],[-3,4],[-1,7],[-4,12],[-3,-8],[-5,1],[-5,8],[-4,8],[0,-10],[7,-17],[2,-10],[-4,7],[-5,6],[-5,2],[-5,-3],[2,-2],[3,-4],[1,-2],[0,-4],[-3,1],[-6,3],[-3,0],[-3,-1],[-6,-6],[-4,-1],[-6,2],[-12,11],[-4,-1],[2,-4],[1,-4],[-2,-3],[-3,-1],[4,-5],[-4,-2],[-11,-1],[-2,1],[-6,5],[-29,10],[-3,-2],[-6,-5],[-2,-1],[-11,1],[-5,-2],[-4,-5],[-10,-9],[-80,2],[-5,5],[9,7],[27,5],[14,8],[6,0],[4,-1],[4,-2],[1,-3],[-4,-6],[5,1],[8,6],[4,1],[5,-2],[4,-4],[2,-1],[3,7],[-4,3],[-1,4],[1,7],[1,5],[3,0],[3,-2],[1,-1],[1,-2],[2,-3],[3,-2],[1,5],[1,8],[3,1],[5,-3],[2,6],[4,11],[3,6],[1,-8],[2,-8],[11,10],[4,-9],[5,5],[4,0],[4,-4],[2,-9],[9,11],[3,5],[0,9],[6,4],[7,-8],[13,-4],[14,0],[8,4],[-6,2],[-1,4],[2,5],[5,5],[5,0],[7,-1],[5,1],[3,8],[-8,-1],[-3,2],[-4,3],[2,4],[-1,2],[-1,1],[-2,5],[31,0],[7,-5],[3,0],[1,7],[-1,4],[-4,4],[-6,6],[0,4],[17,0],[7,-5],[6,-11],[3,10],[4,7],[5,3],[4,-4],[2,4],[1,7],[1,4],[3,1],[6,2],[2,3],[0,11],[-4,4],[-11,1],[-5,5],[-2,5],[-2,6],[-3,4],[-5,4],[-3,-3],[0,-7],[2,-10],[-8,1],[-11,6],[-7,8],[2,9],[18,1],[9,7],[-3,17],[4,3],[3,-1],[3,-3],[4,1],[3,4],[1,10],[11,5],[15,12],[8,1],[4,-6],[6,-5],[6,-3],[5,2],[4,-10],[5,-8],[5,-5],[7,-1],[0,-10],[3,-8],[2,-9],[-2,-12],[-2,-3],[-3,-3],[-2,-3],[-3,-1],[-3,-3],[-1,-6],[0,-6],[-1,-6]],[[2429,81578],[9,-11],[4,-7],[-1,-8],[-1,-5],[-1,-4],[-1,-4],[-15,-5],[-10,6],[0,14],[5,15],[11,9]],[[2610,81672],[3,-1],[3,-2],[2,-2],[3,-4],[-1,-6],[1,-4],[-1,-3],[-8,-23],[-7,-10],[-7,-4],[-7,1],[-8,5],[-14,-14],[-5,-7],[-5,-9],[-3,-4],[-3,1],[-6,9],[-2,-5],[-2,21],[7,19],[18,25],[2,5],[0,4],[1,3],[3,1],[5,0],[3,1],[3,3],[3,6],[4,2],[6,-1],[7,-3],[5,-4]],[[2749,81728],[5,-2],[5,-5],[3,-6],[-4,-7],[1,-2],[0,-2],[1,-4],[-18,-4],[-18,0],[4,23],[2,5],[-2,3],[-1,1],[-1,0],[5,5],[6,0],[6,-1],[6,-4]],[[2865,81781],[0,-3],[0,-2],[1,-1],[1,-2],[-1,-4],[-3,-12],[4,-4],[-4,-6],[-4,-5],[-2,-6],[2,-8],[-4,-5],[-4,3],[-7,10],[-6,5],[-23,10],[-3,-1],[-11,-12],[-2,-1],[-5,-1],[-4,-3],[-2,-1],[-2,2],[-2,5],[-6,5],[-3,9],[0,8],[10,11],[3,1],[11,-4],[7,0],[3,2],[5,12],[5,4],[13,0],[6,6],[4,-4],[4,0],[3,1],[4,-1],[4,-4],[2,-3],[2,-2],[4,1]],[[2758,81809],[16,-8],[5,0],[-4,-14],[-6,-10],[-7,-5],[-9,5],[-4,4],[-4,5],[-2,5],[0,6],[2,7],[4,3],[5,2],[4,0]],[[2863,81878],[3,-1],[3,-5],[1,-7],[0,-7],[-5,-7],[-4,-13],[-5,-10],[-8,-3],[1,8],[-5,6],[1,8],[2,9],[-1,16],[6,5],[6,2],[5,-1]],[[3373,82090],[2,-5],[-7,-8],[-17,-14],[-8,-2],[-6,-3],[-42,-39],[-10,-5],[-14,-3],[-9,-6],[-4,-1],[-5,-3],[-6,-14],[-5,-3],[1,-6],[1,-2],[-5,-7],[-3,-10],[-2,-7],[-6,3],[1,-15],[-4,-9],[-6,-7],[-6,-9],[-9,-24],[-7,-9],[-7,5],[-4,-9],[-15,-3],[-6,-7],[-6,-8],[-12,-13],[-4,-9],[1,-3],[1,-2],[-20,0],[-7,-2],[-1,-5],[2,-7],[5,-5],[-3,-8],[-4,0],[-5,5],[-3,7],[-3,-9],[-4,0],[-4,1],[-4,-3],[-7,-11],[-4,-5],[-9,-3],[-15,-11],[-10,-3],[-5,-4],[2,-5],[0,-4],[-21,-8],[4,6],[5,2],[5,2],[3,10],[-1,1],[0,1],[-1,2],[16,4],[5,4],[3,10],[0,19],[5,8],[6,2],[5,-2],[6,0],[5,8],[3,10],[0,21],[3,9],[6,-3],[6,7],[10,23],[1,8],[-7,20],[-1,14],[2,8],[4,11],[4,10],[9,7],[8,15],[4,2],[13,13],[2,5],[2,9],[5,1],[10,-8],[5,-5],[3,-2],[4,-1],[2,2],[5,8],[5,3],[3,2],[2,2],[3,-1],[2,-3],[2,-9],[2,-4],[8,6],[7,2],[5,6],[3,18],[-3,-3],[-3,1],[-1,4],[1,7],[-4,3],[-9,2],[-4,3],[0,4],[4,3],[3,6],[3,8],[1,7],[-1,11],[-2,4],[-1,4],[3,10],[7,20],[2,4],[4,4],[10,4],[12,19],[10,10],[10,6],[20,4],[6,3],[3,5],[5,2],[13,-2],[6,6],[13,-19],[7,-7],[10,-3],[17,2],[9,-3],[3,-11],[-3,-14],[-13,-18],[-5,-12],[3,-3],[2,-5],[1,-6],[-2,-6]],[[3851,82353],[3,2],[3,3],[2,1],[5,-2],[-3,-6],[-1,-2],[-3,0],[-2,-3],[-1,-3],[-1,-6],[3,-5],[0,-5],[-1,-6],[-2,-4],[-4,-2],[-9,2],[-4,0],[4,-11],[1,-6],[-1,-6],[-2,-2],[-12,-4],[1,-3],[3,-9],[-6,6],[-11,15],[-5,4],[-2,6],[0,13],[2,8],[7,-7],[0,8],[1,4],[3,2],[2,4],[2,1],[0,-6],[-1,-13],[2,0],[6,23],[4,9],[5,-4],[3,7],[2,1],[3,-3],[4,-1]],[[3807,82288],[5,-2],[0,-6],[0,-8],[1,-8],[-5,-4],[-11,-4],[-21,-1],[-5,-3],[4,-7],[2,-1],[-7,-1],[-6,-5],[-6,-3],[-6,5],[-15,-12],[-4,-5],[4,-2],[3,-3],[3,-6],[1,-9],[-8,10],[-7,-4],[-5,-15],[-1,-19],[-3,11],[-16,25],[0,-9],[6,-19],[2,-10],[-3,-3],[-18,13],[1,-8],[3,-4],[5,-2],[3,-4],[4,-10],[-1,-7],[-4,-2],[-7,10],[-3,2],[-6,0],[-1,2],[-2,8],[-1,3],[-7,11],[-7,13],[-4,-8],[3,-7],[5,-22],[8,-17],[2,-7],[-2,-10],[-4,-1],[-8,7],[-1,2],[-1,3],[-1,1],[-3,-2],[0,-2],[-2,-11],[-1,-3],[-11,21],[-3,3],[-4,-3],[-3,-17],[-4,-4],[-4,3],[-1,6],[-1,5],[-4,-2],[-2,-6],[-1,-7],[-1,-6],[-5,-1],[0,2],[2,10],[-8,3],[-17,-15],[-9,-5],[-5,0],[-5,-2],[-21,-16],[-8,-3],[-9,-6],[-5,-1],[-2,-3],[-4,-16],[-2,-5],[-20,8],[-4,-2],[-9,-9],[-5,-1],[1,-6],[0,-3],[-4,-3],[-3,-5],[-6,-12],[-1,-3],[0,-4],[-1,-2],[-5,7],[-3,2],[-6,0],[-9,3],[-4,0],[-4,-5],[-2,-4],[0,-1],[-1,-2],[-10,-11],[-2,12],[-7,5],[-15,3],[-8,3],[-6,5],[-2,3],[0,3],[-1,2],[-6,1],[-1,0],[-2,1],[-1,2],[37,43],[4,2],[9,0],[4,-1],[4,-5],[1,2],[12,0],[1,2],[-2,7],[8,2],[15,-9],[8,-2],[-3,4],[-5,13],[0,3],[3,1],[1,2],[2,3],[5,7],[5,0],[5,-2],[9,-7],[5,0],[-2,3],[-1,4],[-1,2],[7,-1],[10,-8],[6,-1],[-4,18],[6,-3],[3,2],[0,6],[0,9],[3,3],[18,-9],[4,1],[12,5],[3,4],[-1,3],[-1,9],[0,-2],[-2,9],[-1,4],[-2,3],[4,1],[17,-5],[18,2],[18,6],[5,5],[-6,5],[-6,-1],[-13,-4],[-13,1],[-6,4],[-7,7],[1,1],[1,2],[1,2],[1,3],[-7,6],[-2,13],[2,12],[6,5],[11,-2],[3,-1],[3,-4],[3,-10],[4,-3],[-1,2],[0,1],[-1,0],[0,1],[2,4],[-2,10],[5,0],[12,-6],[-4,11],[-10,10],[-5,8],[-1,9],[4,8],[6,5],[23,7],[8,0],[6,-7],[7,-18],[2,-10],[0,-15],[2,0],[1,6],[1,4],[2,7],[3,-4],[8,-13],[-7,35],[0,10],[11,-9],[6,-1],[6,6],[-4,-1],[-3,1],[-2,2],[-3,2],[5,4],[13,0],[5,4],[-8,3],[-21,2],[-21,15],[-4,1],[-11,8],[-8,2],[-6,-4],[-6,-4],[-8,-3],[-18,29],[1,1],[1,4],[1,4],[-1,3],[-1,1],[-5,-1],[-3,0],[-4,-1],[-2,1],[-1,3],[-1,8],[-1,3],[0,6],[3,3],[4,1],[2,2],[1,4],[6,19],[5,8],[10,13],[5,9],[3,2],[11,-4],[3,2],[9,10],[6,3],[6,1],[6,-2],[5,-6],[7,9],[14,12],[7,8],[4,-7],[-1,-6],[-2,-6],[2,-6],[4,0],[3,6],[3,8],[3,6],[8,3],[10,-5],[8,-11],[4,-15],[-6,-3],[-4,-3],[-1,-4],[-1,-3],[-1,-6],[0,-3],[1,-4],[1,-4],[1,-2],[1,0],[-4,-18],[1,-3],[4,2],[3,4],[3,2],[4,-3],[-7,-21],[-1,-8],[7,5],[27,36],[4,-1],[4,-8],[1,7],[5,18],[0,1],[0,8],[0,3],[4,2],[2,2],[2,16],[2,5],[9,11],[3,-9],[-3,-11],[-1,-10],[7,-6],[6,3],[7,8],[7,5],[4,-4],[2,-10],[1,-8],[-1,-8],[-3,-6],[3,0],[4,3],[6,9],[0,-9],[-2,-8],[-2,-6],[-4,-6],[-5,-6],[-5,-3],[-5,-1],[-6,2],[-1,3],[-1,4],[-2,3],[-2,-3],[-1,-4],[-1,-11],[-1,-4],[-5,-5],[-11,-3],[-5,-4],[4,-9],[2,-3],[-4,-3],[-27,-10],[-6,1],[7,-6],[3,-1],[4,-1],[0,-4],[-8,-3],[-5,-8],[-10,-22],[4,1],[3,-3],[0,-6],[-1,-8],[4,5],[5,15],[2,4],[4,-3],[3,-16],[4,1],[0,3],[1,4],[0,9],[0,6],[1,2],[2,2],[1,2],[5,6],[5,2],[4,-2],[1,-8],[2,0],[3,-3],[1,-4],[1,-5],[2,8],[1,14],[2,9],[4,6],[3,-1],[3,-4],[2,-8],[1,-8],[-2,-6],[1,-4],[6,-2]],[[4093,82503],[1,-3],[2,-5],[2,-5],[0,-7],[-4,4],[-3,1],[-2,-1],[-1,-2],[-3,-8],[0,-2],[-4,3],[-5,11],[-3,2],[-14,0],[-10,4],[-12,-2],[-5,2],[30,8],[31,0]],[[3961,82523],[19,3],[4,-3],[-2,-4],[-4,-11],[-6,-6],[-19,-11],[-3,0],[-4,0],[-10,7],[-2,2],[-4,-6],[-10,-23],[-4,-2],[-2,6],[-1,6],[-1,4],[-4,2],[-7,-2],[-3,1],[-2,5],[-4,-7],[-10,-8],[-4,-5],[-10,16],[3,8],[-4,9],[-12,15],[4,9],[-2,4],[2,6],[4,13],[3,5],[3,3],[10,5],[18,15],[7,2],[3,-1],[6,-3],[9,-1],[1,-3],[-1,-4],[-1,-7],[3,-9],[5,-4],[7,2],[4,9],[4,-8],[12,-6],[5,-6],[-5,-5],[-18,-3],[0,-4],[4,0],[8,-5],[11,0]],[[4032,82552],[3,-4],[-2,-2],[-7,-2],[-6,-7],[-3,-2],[-4,1],[3,-4],[-2,-10],[-5,-6],[-6,-1],[-6,4],[-4,9],[0,7],[4,8],[4,9],[-10,10],[2,6],[8,8],[6,12],[-7,5],[-23,-5],[1,9],[2,8],[2,6],[4,2],[4,0],[1,2],[1,10],[2,0],[2,-2],[4,-4],[1,-4],[0,-4],[0,-2],[3,-2],[0,1],[1,2],[2,3],[12,11],[5,1],[5,0],[1,-4],[-2,-4],[-6,0],[0,-8],[-3,-5],[-4,-5],[-4,-6],[2,-5],[1,3],[2,2],[-1,-9],[0,-3],[28,-13],[7,4],[4,-9],[-5,-5],[-9,-2],[-8,0],[0,-4]],[[5754,83006],[5,-6],[5,0],[6,2],[4,-1],[1,-8],[-3,-7],[-7,-10],[-11,-10],[-9,7],[-2,14],[7,7],[-2,6],[-3,2],[-3,1],[-3,0],[5,2],[4,5],[4,3],[4,-2],[-2,-5]],[[5725,83055],[3,-3],[4,-9],[7,-16],[-17,-15],[-9,-5],[-8,4],[3,5],[0,5],[-1,6],[0,4],[2,2],[7,-2],[4,0],[-1,6],[-4,22],[-4,-1],[-12,-7],[7,13],[1,7],[-2,5],[0,4],[5,-2],[22,-2],[3,-2],[2,-3],[-1,-5],[-1,-2],[-3,-1],[-3,0],[-2,-1],[-2,-3],[-1,-3],[1,-1]],[[5688,83084],[8,-5],[1,-3],[-1,-6],[-3,-3],[-3,0],[-3,2],[-7,16],[-3,7],[-4,4],[-1,-6],[-1,-7],[0,-6],[2,-6],[-5,1],[-7,3],[-4,1],[-1,-3],[-2,-4],[-1,-2],[-2,4],[-1,9],[2,5],[5,7],[2,1],[2,0],[1,0],[1,3],[0,4],[0,2],[-1,2],[-2,0],[-6,4],[-1,8],[2,5],[14,-14],[4,1],[0,6],[-6,6],[4,5],[9,1],[2,4],[-2,6],[-11,2],[-4,3],[6,5],[0,10],[-1,9],[3,4],[4,0],[2,1],[1,3],[2,4],[1,5],[0,6],[2,2],[4,-5],[0,-9],[-3,-6],[-3,-5],[-1,-6],[2,-9],[4,-4],[3,-2],[1,-1],[-1,-6],[-3,-25],[0,-24],[0,-4]],[[5583,83124],[4,6],[3,14],[5,10],[9,-5],[-2,-6],[-2,-16],[-2,-7],[0,1],[-8,-5],[0,-3],[0,-3],[0,-4],[-1,-2],[-5,0],[-3,5],[-3,8],[-4,3],[-4,-2],[-6,-13],[-4,-5],[8,-10],[2,-7],[-3,-3],[-15,4],[-5,0],[4,-11],[0,-5],[-8,-9],[-11,-20],[-13,-18],[-7,-15],[-7,-13],[-4,-8],[-3,-18],[-4,1],[-4,7],[-2,9],[1,14],[3,5],[4,2],[7,6],[12,34],[4,6],[5,5],[3,6],[3,9],[-23,5],[0,4],[4,2],[3,2],[8,0],[-1,6],[-3,6],[-3,3],[-8,4],[-4,5],[-2,5],[4,3],[8,-2],[15,-11],[7,-3],[-3,10],[-8,14],[-4,9],[5,4],[4,-3],[4,-5],[3,-7],[2,-4],[0,-3],[1,-2],[5,-1],[3,-2],[2,-3],[2,-3],[1,1],[1,3],[1,4],[-4,9],[-10,28],[-3,12],[24,-14],[7,-1],[-6,19],[3,1],[3,0],[3,0],[3,5],[1,4],[-2,6],[-2,5],[-1,5],[2,2],[12,17],[3,7],[3,-5],[0,-2],[3,-20],[-3,-7],[-6,-3],[-7,-7],[5,-9],[-3,-30],[4,-10]],[[4684,83280],[-4,-3],[-3,1],[-3,3],[-6,5],[2,7],[6,7],[7,3],[2,-5],[1,-6],[0,-6],[-2,-6]],[[6972,62058],[15,-14],[6,-10],[3,-12],[-1,-16],[-3,-9],[-13,-31],[-12,-9],[-18,-34],[-12,-7],[0,-7],[-10,-5],[-8,-13],[-17,-10],[-14,-8],[-12,6],[-6,0],[-6,-4],[-7,-8],[-9,-12],[-5,-13],[-5,-1],[-5,-5],[-6,-8],[-4,-6],[-14,-16],[-4,-3],[-12,-23],[-2,-10],[0,-21],[-5,-11],[-9,-18],[-4,-25],[-4,-9],[-6,-8],[-6,-12],[-2,3],[0,13],[-6,10],[-11,12],[-14,16],[-7,10],[-11,6],[-6,3],[-1,11],[-2,11],[-4,2],[-2,16],[-2,25],[3,30],[6,86],[0,15],[-4,13],[-3,19],[-5,28],[-2,12],[-3,7],[-2,12],[0,13],[-3,12],[-1,14],[-3,17],[-5,14],[-5,7],[-5,14],[-7,38],[3,17],[3,14],[6,10],[5,8],[3,6],[2,11],[3,7],[12,8],[6,20],[3,7],[6,22],[6,14],[4,1],[2,18],[1,8],[-1,11],[-5,9],[-10,30],[-4,26],[0,21],[0,19],[5,21],[3,7],[11,0],[18,-8],[7,-4],[2,-3],[1,-4],[0,-6],[5,-15],[10,-8],[7,-9],[5,-11],[7,-6],[5,-9],[7,3],[10,-1],[10,-8],[20,-14],[24,-25],[33,-42],[13,-18],[14,-29],[8,-22],[0,-23],[0,-31],[1,-24],[7,0],[11,10],[8,-11],[4,-12],[-1,-26],[4,-15],[4,-15],[14,-26]],[[6511,62668],[7,-16],[-4,-17],[4,-6],[-3,-11],[-8,0],[-7,2],[-5,-2],[-8,-3],[-9,-2],[-6,12],[3,9],[6,10],[8,11],[8,9],[8,5],[6,-1]],[[6431,62833],[4,-9],[5,-12],[3,-9],[0,-8],[-1,-10],[-6,-19],[-13,-11],[-10,-6],[-14,-1],[-5,16],[-2,14],[0,11],[0,14],[-1,12],[-5,6],[-11,9],[-4,11],[2,13],[7,6],[11,3],[28,-8],[12,-22]],[[6666,62788],[6,-26],[-1,-23],[-5,-19],[-7,-4],[-6,-17],[-7,0],[-15,-15],[-10,0],[-6,1],[-5,0],[-14,-13],[-9,-9],[-4,-5],[-7,4],[-3,0],[-4,3],[-4,-2],[-12,-1],[-7,14],[-1,6],[-4,8],[3,5],[0,10],[-3,39],[-2,11],[0,12],[-1,10],[-2,2],[-1,3],[-3,4],[-5,-1],[-4,-3],[-1,-8],[-4,-2],[-4,5],[-4,6],[-6,2],[-6,8],[-4,-1],[-3,10],[-7,14],[-8,20],[0,13],[-3,7],[1,12],[2,17],[3,14],[2,9],[4,1],[2,5],[0,5],[3,3],[3,0],[3,-1],[2,1],[1,3],[2,1],[2,-3],[2,-6],[3,-1],[4,-5],[4,-3],[1,-7],[4,-2],[0,-8],[0,-7],[4,-7],[3,-8],[2,-9],[3,-10],[5,0],[3,8],[5,-1],[4,2],[8,1],[3,1],[9,13],[5,3],[4,1],[5,0],[4,-1],[4,-3],[1,-1],[1,0],[1,-1],[1,-3],[3,3],[5,-6],[1,-7],[2,-3],[2,-5],[3,-7],[5,-7],[3,-7],[1,-5],[3,-1],[2,0],[0,3],[4,-5],[2,-8],[1,-5],[10,-3],[9,-9],[14,-9]],[[6459,63007],[2,1],[2,-2],[-1,-3],[2,-2],[4,1],[3,-3],[-6,-20],[-8,-16],[-11,-12],[-10,-9],[-11,-4],[-11,2],[-11,4],[-21,12],[-13,9],[-19,-3],[-13,-1],[-10,-3],[-8,1],[-6,-1],[-5,4],[-4,9],[0,11],[2,9],[4,8],[5,3],[4,11],[1,11],[-3,9],[0,5],[3,-1],[4,-1],[7,1],[3,-2],[2,-7],[5,0],[26,-8],[14,-4],[11,-2],[2,7],[0,6],[2,4],[2,2],[4,-10],[1,-11],[7,-4],[7,-4],[14,1],[7,2],[3,2],[3,2],[3,-1],[5,1],[4,-2],[3,-2]],[[6192,63115],[3,-10],[6,-8],[6,-6],[2,-3],[-3,-8],[-7,-12],[-3,-6],[-3,-2],[-1,3],[1,6],[-3,4],[-7,-4],[-6,-1],[-5,-5],[-4,-6],[-4,0],[-2,2],[-2,5],[-2,6],[-9,8],[-5,5],[-3,8],[-1,6],[0,6],[-2,-2],[-3,-7],[2,-7],[-11,-2],[0,3],[2,2],[-3,4],[-4,0],[0,5],[-1,5],[1,4],[-1,4],[3,3],[3,3],[3,3],[1,5],[-3,6],[-3,2],[-2,2],[-1,-2],[-1,-8],[-3,3],[-2,5],[-2,4],[1,-8],[1,-9],[-1,-2],[-6,10],[-3,4],[2,-9],[5,-10],[3,-6],[3,-4],[-2,-9],[-5,-4],[-6,-3],[-10,-4],[-6,-1],[-4,-3],[-1,1],[-2,2],[-3,4],[-2,20],[-3,16],[-4,9],[-3,8],[-5,5],[-1,16],[-2,8],[-5,9],[-3,4],[-3,10],[0,13],[-1,17],[-1,5],[-12,20],[1,2],[10,4],[12,1],[8,-1],[5,0],[3,2],[4,-2],[1,7],[2,4],[5,6],[6,9],[2,4],[-1,3],[2,7],[3,11],[4,7],[6,11],[9,5],[3,-1],[2,-2],[2,-4],[2,-5],[4,-7],[1,-7],[2,-2],[0,-5],[3,-6],[-2,-10],[4,-10],[4,-7],[1,-11],[3,-3],[1,-4],[1,-6],[2,1],[3,-2],[2,-5],[2,-9],[1,-9],[-1,-4],[-2,0],[-1,-4],[0,-9],[1,-7],[1,-10],[3,-1],[3,-3],[2,-7],[3,-8],[4,-3],[0,-4],[3,-2],[2,4],[3,8],[-4,5],[0,7],[3,3],[7,-2],[3,2],[1,-4],[-4,-9],[-1,-10],[1,-9],[4,-5],[4,-8],[1,-5],[-1,-7],[0,-6]],[[5524,63499],[5,4],[5,0],[5,-4],[2,-11],[-2,-5],[-4,-9],[-2,-12],[2,-16],[-3,-11],[-5,-4],[-4,-5],[-5,-3],[-7,-8],[-3,-6],[-2,-9],[-4,-17],[-2,-13],[-3,-2],[-4,6],[-3,2],[-3,21],[0,13],[3,14],[11,22],[9,14],[11,13],[2,7],[1,8],[0,11]],[[5750,63588],[2,-3],[0,-6],[-1,-17],[-2,-7],[-4,-23],[-4,-4],[-1,-17],[1,-10],[0,-12],[0,-11],[-1,-4],[-3,0],[-3,-4],[2,-4],[1,-5],[-2,-4],[-3,0],[-5,-8],[-2,-7],[-2,-4],[-5,-6],[0,-4],[-3,-1],[-2,-3],[-1,-3],[-13,8],[-7,2],[-6,0],[-10,4],[-4,1],[-3,4],[-1,-1],[0,-4],[-3,-1],[-1,5],[-4,3],[-3,5],[-2,6],[-1,5],[-1,5],[-4,1],[-1,5],[-3,3],[-5,2],[-4,3],[-4,4],[-5,2],[-5,3],[-2,10],[-1,5],[-2,3],[-2,6],[0,8],[0,7],[0,7],[0,5],[3,3],[7,16],[4,11],[0,5],[0,6],[1,4],[2,1],[0,2],[2,7],[6,3],[8,4],[8,9],[5,9],[6,6],[3,6],[3,3],[3,0],[2,4],[3,-1],[2,-3],[1,-4],[2,-1],[4,-2],[2,-3],[3,0],[-1,4],[1,5],[5,4],[5,-2],[6,0],[3,-4],[3,1],[3,4],[2,4],[3,-4],[4,-4],[5,0],[5,-5],[2,-9],[4,-8],[2,0],[1,-8],[1,-6],[1,-6]],[[99832,80914],[17,-16],[3,-6],[-5,0],[-9,-4],[-5,0],[1,3],[1,1],[-4,4],[-3,0],[-8,-4],[-2,-2],[-2,-5],[-2,-1],[-2,1],[-4,3],[-3,0],[-4,-2],[-4,-3],[-5,-3],[-3,2],[-2,6],[-1,5],[1,5],[3,6],[-47,37],[-6,9],[-4,5],[-1,4],[-1,4],[-2,6],[-4,5],[-7,8],[-8,12],[-5,5],[-19,12],[-10,3],[-10,-3],[-5,0],[-1,7],[-7,0],[-5,1],[-5,4],[-5,9],[-3,5],[-15,13],[9,11],[4,2],[11,-10],[13,-2],[5,-9],[4,7],[4,0],[4,-4],[3,-7],[4,2],[4,1],[5,-1],[9,-5],[2,-3],[1,-4],[1,-7],[2,-2],[3,-1],[3,-2],[1,-1],[5,0],[2,-1],[1,-2],[3,-9],[1,-1],[3,-4],[11,-21],[17,-20],[5,-2],[12,-2],[3,-2],[3,-4],[7,-14],[3,-14],[5,-1],[10,3],[-1,-3],[-1,-2],[0,-2],[-2,-2],[0,-3],[28,2],[5,3]],[[99514,81164],[5,-3],[12,-2],[5,-3],[5,-5],[12,-23],[-4,2],[-7,-3],[-4,1],[-3,3],[-5,11],[-2,2],[-5,2],[-7,6],[-7,8],[-3,8],[2,-3],[1,-1],[2,1],[3,-1]],[[99592,81257],[11,-7],[4,-4],[4,-9],[0,-9],[-2,-5],[-4,-4],[-4,-6],[2,-4],[-4,-3],[-6,-2],[-6,-1],[-4,4],[-9,14],[-2,4],[-1,7],[1,4],[2,6],[1,9],[1,5],[4,2],[4,1],[4,2],[1,-2],[1,-1],[2,-1]],[[99938,81245],[-1,-7],[-4,-5],[-2,-4],[-1,-2],[1,-8],[-2,-5],[-7,-7],[-6,-9],[-8,-6],[-8,-2],[-21,7],[-3,2],[-2,4],[-8,8],[-6,4],[-1,6],[2,6],[1,2],[-1,6],[-1,6],[-2,4],[-2,4],[3,3],[6,0],[3,1],[8,13],[5,1],[6,5],[7,6],[4,8],[2,-3],[2,-1],[4,0],[1,-5],[2,-3],[2,-2],[2,-2],[8,-13],[4,-5],[4,-3],[9,-4]],[[99344,81339],[8,-7],[4,-5],[1,-9],[-2,-4],[-5,-4],[-2,-4],[-1,-6],[-1,-9],[-2,-5],[-4,-6],[-17,-14],[3,-8],[-4,-6],[-2,-6],[5,-9],[10,0],[1,-2],[0,-8],[0,-5],[-2,-1],[-3,4],[-4,-5],[-2,-3],[-2,-4],[-3,5],[-5,4],[-5,3],[-4,0],[-3,-4],[-2,-6],[-3,-2],[-3,8],[2,8],[-16,-5],[-6,-6],[-8,-5],[-3,-10],[-5,-33],[-1,-4],[-2,-4],[-2,1],[-3,5],[-3,6],[-1,4],[-3,5],[-12,13],[-4,5],[19,18],[7,2],[3,2],[3,6],[5,14],[4,7],[4,2],[10,1],[6,4],[3,0],[6,0],[2,0],[7,5],[2,3],[3,20],[8,30],[0,12],[11,12],[6,3],[7,-3]],[[98855,81489],[10,0],[5,-4],[10,-4],[5,-4],[-7,-8],[-10,-3],[-8,5],[-5,18]],[[98274,81562],[-16,-18],[-5,-12],[3,-17],[2,-7],[2,-10],[1,-10],[0,-9],[-23,-7],[1,4],[0,1],[0,1],[1,3],[0,4],[-3,-1],[-3,1],[-3,1],[-2,3],[0,10],[-6,1],[-29,-6],[-28,6],[-3,4],[1,9],[4,7],[6,6],[7,4],[4,-1],[6,-2],[5,-1],[5,3],[5,5],[6,10],[2,1],[5,1],[2,1],[1,3],[2,6],[2,4],[2,1],[2,0],[29,6],[9,0],[6,-5]],[[98359,81688],[-4,2],[1,5],[3,6],[5,3],[14,-12],[5,-9],[-24,5]],[[98159,81757],[-11,-3],[-4,-3],[0,-6],[-7,11],[-4,5],[-5,4],[-6,1],[-6,-1],[-4,-6],[-3,-10],[-2,0],[0,4],[-2,0],[-2,-9],[4,-4],[0,-4],[-7,-1],[-5,-3],[-4,0],[-5,8],[-5,14],[-2,3],[-3,-2],[-5,-5],[-3,-1],[-9,-9],[-10,-18],[-10,-13],[-10,3],[1,3],[0,6],[0,6],[-1,5],[-4,4],[-4,0],[-6,-4],[-2,2],[-3,6],[-2,0],[-1,-2],[-2,-8],[-2,-2],[-3,1],[-7,5],[-4,2],[0,4],[4,5],[1,7],[2,17],[5,15],[1,7],[-4,2],[-2,-1],[-9,-7],[-3,-1],[-10,1],[-19,-6],[-4,2],[2,5],[7,20],[-2,6],[-3,2],[-10,0],[-16,-9],[-4,2],[-4,4],[-8,-1],[-4,4],[21,24],[2,-5],[5,11],[23,18],[20,-5],[4,3],[5,5],[5,1],[34,-8],[2,-2],[1,-3],[0,-4],[2,-3],[3,-1],[7,0],[3,-3],[11,9],[5,2],[28,1],[4,-3],[9,-11],[3,-2],[0,-4],[-4,-7],[-8,-13],[3,1],[2,-1],[2,-3],[0,-5],[15,14],[8,4],[2,-6],[12,-5],[6,-6],[0,-8],[-3,-5],[-4,-5],[-9,-8],[10,-7],[14,-4],[14,-1],[11,4],[-2,-12],[-4,-4],[-12,0]],[[4174,82523],[3,4],[2,1],[3,-1],[2,-4],[1,-6],[-2,-9],[-3,-8],[-4,-5],[-3,-1],[-21,1],[-10,-4],[-4,0],[-1,2],[-3,5],[-2,2],[-1,-1],[-4,-4],[-18,5],[-5,3],[2,6],[2,5],[2,3],[4,2],[2,0],[3,-3],[2,0],[3,2],[3,8],[3,2],[2,-2],[1,-2],[1,-3],[0,-2],[2,1],[4,3],[1,0],[4,-1],[4,-2],[3,-4],[3,-5],[4,4],[11,7],[2,5],[2,-4]],[[4886,82690],[1,-5],[0,-4],[1,-3],[2,0],[8,3],[0,-3],[-13,-9],[-6,1],[-5,6],[-7,11],[-2,3],[0,4],[1,4],[3,1],[4,-1],[13,-8]],[[4837,82710],[10,-12],[1,-3],[0,-7],[0,-7],[-1,-3],[-29,3],[2,-3],[3,-3],[3,-1],[3,0],[0,-4],[-5,-1],[-4,3],[-8,6],[-14,6],[-7,8],[-9,4],[-3,4],[-13,22],[6,1],[-1,7],[-1,9],[0,8],[4,1],[6,-2],[9,-8],[7,-2],[12,-8],[10,-2],[9,-7],[2,-1],[4,1],[2,0],[0,-1],[0,-3],[1,-3],[1,-2]],[[4896,83014],[8,10],[12,9],[11,2],[7,-12],[1,-7],[1,-11],[0,-11],[0,-7],[-2,-8],[-11,-25],[-9,-9],[-9,1],[-9,8],[-8,12],[-6,15],[-3,10],[0,8],[2,6],[15,9]],[[4702,82856],[1,-2],[4,-6],[1,-5],[-3,-3],[-26,4],[-4,4],[4,1],[11,7],[-3,5],[-4,3],[-4,1],[-4,0],[-4,-3],[-9,-8],[-3,-2],[-3,2],[-3,4],[-4,9],[-2,2],[-8,1],[-4,3],[-9,22],[-6,7],[-10,-10],[-4,-3],[-4,-4],[-1,-6],[2,-20],[0,-7],[-6,-10],[-16,-4],[-3,-12],[-4,0],[-25,-14],[-15,2],[-31,13],[-95,-9],[-14,-7],[-10,-8],[-31,-37],[-2,-5],[1,-6],[1,-4],[0,-4],[-2,-9],[-7,-17],[-12,-14],[-15,-8],[-13,-5],[-19,0],[-10,-3],[-6,-7],[-6,-3],[-41,8],[-7,4],[-5,7],[-8,20],[-5,8],[-5,3],[1,12],[-2,8],[-3,4],[-2,6],[-1,10],[-2,9],[-5,16],[6,8],[8,8],[8,6],[23,7],[16,11],[11,15],[36,94],[4,4],[2,23],[2,3],[18,18],[7,4],[14,2],[6,-3],[12,-14],[6,-4],[25,1],[3,3],[1,5],[-4,7],[9,13],[10,9],[10,5],[19,3],[7,5],[11,10],[14,20],[6,4],[25,4],[6,3],[6,5],[7,2],[21,-9],[30,7],[13,-8],[-4,0],[-1,-3],[0,-6],[1,-7],[3,-4],[6,-4],[8,-10],[5,-9],[5,-10],[4,-11],[2,-14],[0,-27],[3,-10],[11,-33],[5,-10],[7,-6],[7,-3],[19,1],[3,2],[2,3],[3,5],[2,2],[3,0],[3,-3],[3,-1],[6,-4],[4,-9],[6,-23],[2,-6],[3,-4],[2,-3],[3,-4]],[[5075,83137],[0,-3],[-1,-1],[-1,0],[7,-6],[14,-8],[6,-7],[-4,-8],[-9,-9],[-3,-11],[-4,4],[-4,-3],[-3,-5],[-4,-4],[-5,0],[-4,5],[-4,6],[-4,5],[2,6],[8,16],[1,7],[-3,6],[-8,10],[1,-10],[-1,-9],[-4,-18],[-4,8],[-8,5],[-6,8],[-2,0],[-2,0],[-1,5],[1,7],[2,2],[2,0],[13,8],[32,-6]],[[5465,83254],[-2,-4],[2,-23],[1,-11],[-1,-11],[-3,-16],[-3,1],[-4,3],[-4,3],[-7,15],[-27,9],[-9,14],[3,1],[3,3],[1,4],[-1,4],[6,5],[7,-2],[7,-3],[6,0],[13,13],[7,2],[5,-7]],[[5417,83157],[3,-1],[3,2],[2,1],[2,-6],[-7,-4],[-13,4],[-7,0],[11,-6],[3,-2],[-1,-6],[-7,-19],[-5,15],[-5,3],[-15,-5],[-3,0],[-8,5],[-2,3],[-3,7],[1,4],[2,3],[0,6],[-2,6],[-3,-2],[-3,-4],[-4,-4],[-4,-2],[-4,0],[-3,-2],[-4,-4],[-3,-9],[-6,-20],[-4,-8],[0,10],[2,18],[-1,7],[-7,12],[-2,5],[-2,9],[1,2],[1,10],[0,4],[0,4],[-3,6],[-1,4],[1,9],[2,9],[1,8],[-2,9],[9,19],[11,15],[11,10],[13,0],[9,-13],[2,-12],[-4,-12],[-9,-15],[4,-6],[3,-1],[6,3],[1,2],[1,4],[1,4],[2,2],[2,-1],[4,-2],[2,-1],[2,3],[0,18],[1,7],[3,7],[4,4],[4,1],[4,-4],[3,-13],[-5,-11],[-6,-12],[-3,-15],[1,-8],[2,-5],[3,-3],[3,-6],[2,-7],[-1,-3],[-9,-6],[5,-3],[10,-2],[5,-3],[0,-3],[2,-10],[1,-3]],[[5514,83270],[-3,-3],[-2,2],[-2,5],[-2,4],[-4,3],[-10,3],[-4,5],[-4,3],[-3,-4],[-7,-10],[-4,-1],[-5,0],[-3,4],[-2,8],[4,15],[8,9],[9,3],[8,-1],[1,-2],[1,-5],[1,-1],[2,0],[5,3],[2,1],[8,-1],[3,-2],[1,-5],[-1,-9],[0,-8],[1,-8],[2,-8]],[[5914,83534],[-28,16],[-13,3],[-8,-19],[3,-2],[4,-1],[3,-3],[1,-6],[-6,-3],[-4,-1],[-4,4],[-3,8],[0,10],[3,11],[-1,8],[13,10],[7,4],[10,-4],[4,-6],[5,-9],[4,-1],[4,-5],[4,-7],[2,-7]],[[2894,83995],[7,5],[9,-1],[9,-6],[5,-8],[-12,-9],[-9,-12],[-11,-10],[-12,2],[-6,6],[-7,13],[-4,6],[-20,12],[-7,8],[13,0],[38,-10],[7,4]],[[2711,84354],[26,11],[3,5],[4,4],[5,0],[-3,-6],[-6,-9],[-3,-9],[-1,-2],[-1,-4],[-1,-4],[-1,-11],[-2,-3],[-10,-9],[-14,-8],[0,-7],[-2,-6],[-4,-4],[-4,-3],[4,12],[1,6],[-1,7],[-2,-1],[-10,5],[-8,-5],[-5,1],[-5,3],[-4,4],[-2,6],[-2,8],[1,7],[4,4],[10,0],[3,1],[4,6],[3,1],[17,-1],[6,1]],[[4005,85974],[4,0],[2,-1],[2,-4],[-1,-5],[-1,-3],[-1,-3],[-2,-3],[-8,-6],[-26,-4],[-6,2],[-3,6],[-5,5],[-3,0],[-2,-7],[-3,-4],[-26,-14],[-5,-1],[-12,1],[-5,3],[-4,6],[-4,3],[-5,-4],[8,-5],[-4,-7],[-9,-5],[-5,-2],[-3,-4],[-23,-10],[-3,11],[-15,2],[-17,-5],[-5,-12],[2,-1],[12,-7],[16,4],[7,-3],[6,-6],[5,-10],[3,-9],[-6,-8],[-11,-5],[-11,-1],[-4,3],[-2,10],[-5,10],[-6,8],[-9,5],[-6,8],[-4,2],[-5,1],[-21,12],[-9,2],[-9,-1],[-8,-5],[-2,7],[-4,0],[-9,-4],[-17,1],[-4,3],[-11,15],[-4,2],[-12,2],[-6,3],[-11,14],[-65,41],[6,7],[2,1],[-5,5],[-5,-2],[-4,-4],[-5,-3],[0,4],[0,2],[0,3],[0,4],[-4,-5],[-1,-4],[-2,-3],[-5,-1],[-5,2],[-8,9],[-5,2],[-6,5],[-7,12],[-7,13],[-4,10],[-1,0],[-2,-10],[-5,-3],[-6,3],[-4,6],[0,3],[0,15],[-1,6],[-1,5],[-4,8],[-26,31],[-5,13],[5,-3],[4,0],[22,7],[3,3],[3,4],[4,2],[5,0],[4,-2],[4,-4],[3,0],[25,3],[79,-14],[15,4],[7,25],[-1,5],[-2,2],[-1,3],[2,6],[3,4],[9,7],[10,4],[15,10],[9,-1],[11,-7],[5,0],[3,9],[0,12],[3,5],[27,17],[11,-2],[8,-14],[-1,-1],[-1,-4],[-1,-3],[6,1],[20,20],[34,12],[-1,-10],[5,-4],[6,1],[4,5],[0,7],[-1,9],[-5,12],[7,-3],[4,-3],[3,-6],[-2,-4],[3,-10],[3,-11],[4,-9],[5,-7],[-2,-1],[-1,-2],[0,-2],[-1,-3],[6,-3],[18,-5],[19,4],[6,11],[3,1],[21,-1],[7,-2],[2,-3],[4,-7],[1,-2],[5,-2],[7,1],[4,-4],[-6,-4],[12,-4],[-1,-4],[-1,-2],[-1,-2],[4,-5],[-2,-6],[-4,-7],[-4,-3],[-1,-3],[4,-8],[7,-12],[-12,-18],[-3,-3],[2,-7],[4,-4],[5,-2],[4,1],[-1,-3],[-1,-3],[-2,-2],[0,-4],[3,-1],[1,-1],[1,-3],[1,-3],[-3,-9],[-3,-8],[-9,-16],[10,1],[4,-3],[3,-15],[3,-3],[9,-4],[-3,-7],[-1,-3],[-2,-3],[0,-4],[4,-3],[4,-10],[3,-3],[4,1],[9,7],[4,0],[-3,-4],[-4,-4],[-3,-5],[-1,-6]],[[2140,86211],[3,-6],[16,-11],[5,-6],[-4,0],[-11,-4],[-4,2],[-7,8],[-18,13],[-5,1],[-11,-3],[-14,5],[-9,-4],[-9,-7],[-9,-3],[-7,2],[-8,4],[-13,13],[-3,2],[-7,2],[-3,2],[-4,4],[-5,10],[-3,6],[-5,6],[-62,46],[-15,5],[4,3],[2,1],[-1,7],[0,6],[0,6],[1,5],[0,4],[0,4],[0,3],[2,2],[2,0],[3,1],[3,3],[14,15],[7,4],[3,-11],[-3,-9],[1,-14],[4,-13],[5,-5],[4,-3],[18,-21],[77,-52],[8,-1],[26,7],[9,-3],[23,-26]],[[2831,87817],[5,-7],[2,-5],[2,-5],[-22,32],[-7,12],[-14,18],[1,-1],[16,-19],[17,-25]],[[2933,87994],[-13,3],[-7,4],[-4,5],[5,-6],[19,-6]],[[2695,87921],[-20,30],[-22,21],[-72,41],[62,-30],[29,-25],[23,-37]],[[2507,88035],[-23,-1],[-4,4],[12,1],[68,-18],[-53,14]],[[2475,88137],[5,-1],[-1,0],[-4,1]],[[2475,88137],[-19,3]],[[2456,88140],[4,1],[15,-4]],[[2456,88140],[-2,-1],[-1,-2],[-1,-2],[0,-3],[13,0],[4,-1],[4,-6],[3,-1],[31,4],[-1,-2],[0,-1],[-1,-1],[12,-6],[14,8],[13,12],[19,9],[14,18],[17,12],[4,8],[6,-9],[8,0],[28,18],[7,2],[8,1],[4,-1],[7,-6],[4,-1],[14,4],[8,0],[3,-2],[6,-9],[3,-1],[3,-2],[4,-2],[14,-19],[6,-5],[16,-5],[8,-4],[4,-13],[4,-9],[1,-4],[-1,-7],[-1,-3],[1,-2],[3,-4],[1,-8],[-4,-9],[-6,-10],[-3,-8],[5,3],[5,2],[27,-3],[17,-13],[12,-6],[26,-3],[-6,-2],[-12,0],[-7,-2],[17,-6],[35,3],[17,-9],[4,-9],[4,-18],[5,-10],[8,-6],[11,-3],[11,0],[8,5],[-3,3],[-4,1],[31,0],[10,-2],[8,-6],[15,-25],[6,-3],[17,-1],[9,3],[6,9],[-9,7],[-11,4],[-22,2],[0,4],[42,-4],[17,4],[5,-1],[8,-6],[69,-15],[8,-6],[-4,-4],[-8,-5],[-3,-3],[6,-12],[-3,-16],[-13,-25],[-10,-13],[-11,-4],[-28,1],[-14,5],[-5,5],[-5,4],[-68,-6],[-13,-8],[12,9],[6,2],[22,2],[7,4],[4,7],[-39,-7],[-18,-10],[-17,-16],[4,-4],[0,-4],[-5,-4],[-8,-10],[-17,-7],[-6,-6],[-2,-7],[-2,-4],[-8,-12],[-2,-7],[0,-10],[2,-7],[8,-11],[-5,-4],[-10,-1],[-5,-5],[-6,-12],[-4,-4],[-5,-2],[-11,9],[-7,3],[-6,0],[2,8],[0,8],[-1,6],[-3,7],[7,1],[6,5],[3,9],[-3,12],[-2,3],[-6,1],[-2,3],[-7,14],[-12,18],[-13,11],[-30,12],[0,-5],[-14,8],[-4,7],[-3,2],[-6,-1],[-3,3],[-1,4],[0,3],[0,2],[-2,1],[-6,-2],[-9,-8],[-4,-2],[-6,0],[-15,7],[-7,1],[2,6],[3,2],[3,0],[3,4],[1,5],[1,16],[-1,3],[-1,3],[-2,6],[-2,5],[-2,3],[-5,0],[-19,10],[-23,20],[-9,12],[-42,24],[-18,2],[-1,2],[-1,3],[-1,2],[-1,2],[-28,1],[-5,3],[-3,3],[-5,9],[-2,4],[-4,4],[-3,1],[-63,-9],[0,-1],[0,-2],[1,-1],[-12,-4],[-5,-4],[-4,-6],[-8,-8],[-19,-3],[-9,-8],[-2,0],[-1,-12],[-8,-7],[-10,-3],[-6,-4],[-7,-10],[-9,-1],[-33,9],[0,1],[-4,5],[-2,2],[-2,1],[-7,-1],[-4,1],[-8,6],[-14,4],[-8,5],[-7,8],[-17,31],[-2,5],[0,10],[-4,11],[-1,7],[-1,7],[-1,7],[1,0],[1,1],[1,3],[1,4],[0,3],[-2,9],[1,13],[1,4],[3,5],[2,4],[3,3],[2,4],[1,5],[0,4],[-2,3],[-1,2],[1,3],[2,3],[5,2],[3,2],[5,7],[1,7],[0,7],[0,11],[6,17],[2,11],[-3,5],[-1,2],[-1,6],[-1,6],[1,4],[3,3],[3,-1],[3,-2],[3,0],[6,3],[6,-4],[4,-7],[3,-10],[-3,-4],[-2,-7],[-1,-9],[0,-9],[4,-7],[5,-4],[47,-21],[11,-8],[-6,0],[-11,6],[-6,2],[-4,-3],[-7,-13],[-4,-5],[0,-4],[4,3],[3,-1],[3,-3],[3,-3],[3,0],[40,4],[9,4],[-4,4],[-5,1],[-10,0],[0,3],[61,-16]],[[30875,76584],[6,-4],[12,-3],[3,-1],[0,-12],[-4,-6],[-4,-3],[-1,-6],[-3,-3],[-5,2],[-10,8],[3,10],[-2,8],[-6,6],[-6,4],[2,11],[5,0],[10,-11]],[[30932,76681],[6,-6],[2,-7],[0,-8],[2,-7],[-3,-2],[-7,-4],[-4,-2],[2,-5],[2,-4],[6,-4],[0,-3],[-11,-9],[-6,-3],[-9,9],[-1,3],[1,5],[1,6],[0,6],[-3,11],[2,-1],[5,1],[2,0],[-1,6],[-1,6],[1,6],[1,6],[3,6],[3,0],[7,-6]],[[31043,76779],[1,-12],[15,-28],[3,-17],[-6,-12],[-12,-8],[-12,-2],[-6,10],[-2,0],[-2,-14],[3,-8],[3,-6],[0,-7],[-3,-7],[-5,-7],[-4,-1],[-2,9],[-1,-1],[-3,-2],[-2,-1],[-3,8],[-9,7],[-3,10],[4,2],[1,4],[-2,4],[-4,2],[-2,3],[0,7],[2,8],[5,20],[2,7],[3,3],[4,2],[3,4],[1,5],[-4,5],[6,12],[11,8],[12,1],[8,-8]],[[5014,64113],[1,2],[0,2],[0,1],[2,0],[-1,-3],[-1,-1],[-1,-1]],[[4249,64434],[1,-6],[-2,2],[0,1],[0,1],[1,2]],[[3334,65276],[-1,8],[0,1],[2,-3],[0,-2],[-1,-2],[0,-2]],[[2299,65733],[-2,-13],[-2,3],[-1,7],[5,3]],[[1676,65910],[1,-3],[1,-2],[0,-2],[0,-3],[-2,2],[0,2],[0,2],[0,4]],[[475,67290],[1,-6],[-2,-1],[-1,-2],[-2,0],[2,2],[1,3],[0,1],[1,3]],[[15915,78412],[6,-1],[2,-3],[1,-7],[0,-5],[-1,-10],[-4,-6],[-3,-3],[-1,0],[-3,3],[-2,2],[-4,6],[-1,1],[-1,6],[2,2],[2,3],[2,6],[1,5],[4,1]],[[15870,78463],[0,-8],[-1,-7],[4,-7],[2,-7],[0,-7],[0,-9],[-3,-9],[-4,-6],[-1,3],[-1,5],[-2,7],[0,4],[-2,5],[-4,6],[-3,6],[0,5],[2,11],[1,8],[2,6],[4,0],[2,3],[5,3],[2,2],[3,3],[-2,-7],[-4,-4],[0,-6]],[[27189,65012],[1,1],[-1,-2],[-3,-2],[0,2],[3,1]],[[27189,65029],[-3,3],[-1,2],[-2,0],[-2,0],[1,2],[3,1],[4,-2],[3,-5],[0,-7],[-1,-5],[0,3],[-2,8]],[[27382,65071],[2,2],[2,-2],[-1,-5],[-2,3],[-1,2]],[[27426,65080],[1,1],[1,-3],[-2,-4],[-3,-3],[0,1],[3,8]],[[27375,65086],[2,-5],[1,-7],[-1,-6],[-1,0],[-1,3],[-3,5],[-1,4],[2,3],[1,1],[-1,0],[0,2],[2,0]],[[27366,65087],[0,-6],[1,-11],[-1,-2],[-1,4],[-2,3],[-1,1],[-2,-1],[-1,-1],[-1,0],[-1,2],[-1,1],[-1,5],[1,8],[1,6],[1,0],[1,-1],[2,0],[2,-2],[2,-4],[1,-2]],[[27408,65099],[3,-5],[1,-9],[-1,-2],[-2,5],[-2,3],[-1,2],[-1,4],[1,3],[2,-1]],[[27583,65205],[0,-3],[-3,-7],[-2,-3],[-4,-6],[-2,1],[1,4],[2,3],[2,2],[6,9]],[[27604,65237],[2,3],[0,-2],[0,-1],[-2,-7],[-6,-11],[-3,-3],[9,21]],[[27487,65458],[1,-1],[1,-6],[-3,-7],[-1,-4],[-2,-3],[-2,2],[-2,7],[-1,8],[1,5],[4,1],[4,-2]],[[27475,65476],[1,-5],[0,-2],[-1,-3],[0,-6],[-3,3],[-2,4],[-4,7],[1,4],[2,-1],[-1,-2],[2,0],[3,1],[2,0]],[[27394,65761],[2,-3],[1,-3],[-2,-2],[-3,-1],[-2,-2],[-1,-3],[0,-1],[0,-2],[-1,1],[-1,2],[-3,7],[-2,2],[-3,-4],[-1,-1],[0,13],[-1,4],[0,6],[3,5],[5,-5],[2,-3],[5,-8],[2,-2]],[[27374,65764],[-2,-2],[-2,4],[-1,4],[-1,3],[-1,4],[-5,1],[-1,2],[-1,2],[-1,-2],[0,-3],[-1,-2],[0,-4],[-1,-1],[0,3],[0,1],[-2,4],[1,6],[4,4],[2,1],[2,1],[4,2],[3,-4],[2,-9],[0,-5],[1,-2],[1,-4],[-1,-4]],[[27312,65809],[3,-3],[1,-6],[-3,-11],[-1,-4],[-4,1],[-2,2],[0,4],[-1,3],[-1,2],[-1,1],[-1,4],[1,5],[3,1],[2,0],[4,1]],[[27349,65802],[2,-3],[1,-4],[-1,-4],[-3,-10],[-1,2],[1,9],[0,5],[-2,2],[-1,3],[-1,3],[1,5],[3,-1],[2,-4],[-1,-1],[0,-2]],[[27037,67487],[0,-8],[-2,-4],[-1,0],[-1,1],[0,3],[-4,2],[0,2],[1,0],[1,0],[1,1],[-2,1],[1,2],[1,2],[2,-1],[1,0],[2,-1]],[[27029,67504],[1,3],[0,3],[-1,1],[-1,4],[1,3],[2,0],[2,-2],[2,-4],[0,-6],[-3,-4],[-2,0],[-2,1],[1,1]],[[24819,67684],[1,1],[1,2],[0,-1],[-4,-5],[-4,-3],[-21,-10],[-5,0],[0,4],[7,3],[2,3],[5,5],[2,0],[1,-3],[2,-1],[4,1],[2,2],[1,2],[4,-1],[2,1]],[[24884,67677],[1,-2],[0,-2],[-2,0],[-12,5],[-14,10],[1,3],[16,-6],[7,-5],[3,-3]],[[26934,67730],[1,-2],[1,-1],[-2,-2],[-4,-3],[-2,3],[0,8],[2,3],[2,-3],[2,-3]],[[24875,67783],[-1,-6],[0,8],[2,13],[3,3],[0,-6],[-2,-4],[-1,-4],[-1,-4]],[[25020,67815],[1,0],[3,1],[0,-3],[-5,-5],[-2,0],[1,4],[2,3]],[[25001,67914],[1,1],[0,-1],[0,-4],[-1,-3],[-2,1],[-4,-1],[-1,2],[-1,5],[-2,4],[-2,1],[-2,-2],[-1,0],[-1,1],[-1,2],[-1,4],[0,3],[-1,0],[-4,-1],[-4,-2],[-3,3],[-4,11],[-1,5],[2,3],[3,1],[2,-1],[4,1],[6,-4],[2,-3],[1,-2],[2,-2],[3,-1],[3,-3],[2,-5],[-1,-2],[-3,0],[0,-2],[3,-6],[2,-2],[2,1],[1,1],[0,3],[1,-1],[0,-3],[0,-2]],[[25262,67977],[0,1],[2,0],[-1,-3],[-9,-18],[-2,-3],[-2,-2],[12,25]],[[25283,68019],[3,4],[1,2],[-1,-3],[-2,-4],[-1,1]],[[25298,68048],[-3,-5],[17,44],[-4,-14],[-10,-25]],[[27430,69127],[4,13],[4,1],[5,4],[5,-3],[3,-5],[-3,-11],[-3,-12],[-5,-17],[-6,-12],[-7,-27],[-5,-1],[-3,5],[-3,10],[3,17],[5,13],[4,17],[2,8]],[[27455,69225],[3,17],[4,0],[1,-3],[0,-8],[0,-14],[1,-16],[-3,-10],[-3,-15],[-3,-12],[-4,2],[1,10],[1,8],[-3,7],[0,14],[2,10],[3,10]],[[17157,70465],[2,1],[1,-5],[-6,-4],[2,-13],[-3,-3],[1,-5],[-4,1],[-1,5],[1,3],[4,3],[-1,9],[-1,-2],[0,-6],[-2,-2],[-3,-3],[0,7],[1,4],[3,7],[2,-1],[1,2],[3,2]],[[28915,72458],[3,7],[0,12],[-2,9],[-1,11],[0,23],[3,11],[1,17],[5,6],[4,-5],[2,-7],[-1,-6],[-4,-4],[-2,-8],[-2,-13],[2,-8],[2,-4],[3,-2],[5,-1],[5,2],[1,6],[2,1],[0,-5],[-1,-8],[-4,-6],[-6,-8],[-6,-12],[-4,-11],[-3,-4],[-5,-3],[-4,0],[1,3],[3,1],[2,2],[1,4]],[[29905,74804],[0,8],[4,1],[1,-7],[5,-6],[3,-1],[4,-2],[-1,-6],[1,-6],[-1,-6],[2,-5],[0,-5],[-3,2],[-3,4],[-6,4],[-6,0],[-5,-1],[-3,5],[-1,8],[3,7],[6,6]],[[29963,74822],[6,-8],[5,-3],[4,-1],[0,-3],[-2,-2],[0,-5],[1,-5],[-1,-4],[-2,-4],[-2,-4],[0,7],[-1,9],[-1,5],[-4,2],[-4,-1],[-2,3],[2,3],[2,4],[-1,7]],[[30325,74905],[2,0],[2,1],[1,-2],[3,-1],[0,-6],[-3,0],[-3,2],[-3,3],[1,3]],[[30313,75010],[4,6],[0,-3],[3,-5],[-2,-3],[-6,-4],[-5,0],[-4,0],[-6,-3],[-2,-4],[-3,2],[2,4],[4,4],[4,1],[4,4],[7,1]],[[30354,75053],[4,5],[4,-1],[5,-4],[-6,-5],[-5,-6],[-7,-6],[-4,-4],[0,-4],[-3,-5],[-6,-7],[-5,-1],[-7,-2],[-2,4],[3,4],[4,-1],[3,5],[6,9],[11,13],[5,6]],[[15717,77833],[4,-2],[4,-7],[6,-6],[5,-8],[7,-7],[2,-3],[-6,-1],[-5,2],[-6,3],[-5,8],[-4,3],[-3,6],[0,2],[1,10]],[[15700,77863],[2,-1],[3,-4],[5,-7],[2,-9],[-1,-4],[-4,3],[-4,4],[-3,6],[-1,8],[1,4]],[[12911,82931],[0,-3],[1,-7],[0,-8],[-2,-10],[-2,1],[-4,7],[0,3],[0,6],[0,3],[0,1],[0,2],[0,7],[0,3],[0,6],[2,2],[2,-3],[3,-6],[0,-4]],[[13558,83103],[1,-17],[-1,-16],[-7,0],[-11,12],[3,14],[11,11],[4,-4]],[[12970,83297],[11,7],[9,-2],[-1,-15],[-10,-6],[-11,0],[-2,11],[4,5]],[[7698,84461],[7,-4],[2,-4],[-4,-5],[-8,-7],[-5,0],[4,6],[4,14]],[[12184,84975],[-2,12],[10,11],[18,9],[4,-14],[-9,-16],[-14,-6],[-7,4]],[[12300,85023],[1,15],[17,5],[24,-4],[7,-23],[-14,-4],[-21,2],[-14,9]],[[7768,85382],[6,-4],[0,-3],[-8,-6],[-2,-4],[-2,-5],[-2,-2],[-3,2],[0,3],[1,4],[2,3],[1,4],[-1,2],[1,1],[4,0],[0,2],[1,3],[2,0]],[[7864,85487],[5,-7],[8,-1],[-1,-7],[-5,-4],[-4,2],[-6,-2],[-4,5],[-2,10],[4,5],[5,-1]],[[7926,85492],[5,-1],[4,-1],[-1,-4],[3,-6],[-3,-6],[-6,1],[-6,5],[-8,6],[3,6],[9,0]],[[7817,85507],[12,4],[7,-10],[-3,-8],[-15,3],[-11,0],[2,7],[8,4]],[[9354,85678],[3,2],[2,-5],[-4,-12],[-5,-9],[-5,-1],[0,7],[9,18]],[[7621,86091],[2,-9],[0,-15],[-6,-1],[-9,14],[-5,11],[-2,5],[-1,6],[2,4],[3,3],[5,-1],[5,-4],[5,-7],[1,-6]],[[9066,86181],[4,0],[1,-2],[0,-8],[-1,-6],[-6,-7],[-29,-20],[-5,0],[-1,5],[1,9],[-3,4],[2,2],[8,2],[5,4],[1,0],[2,0],[20,16],[1,1]],[[1927,86383],[2,-7],[1,-4],[-2,-2],[-3,2],[-10,12],[-2,5],[0,7],[5,9],[7,4],[2,-5],[0,-5],[1,-6],[-1,-7],[0,-3]],[[9216,86501],[4,7],[9,2],[4,7],[0,6],[6,-5],[7,-10],[3,-8],[-4,-7],[-5,-8],[-8,-8],[-9,3],[-4,7],[-3,14]],[[9140,86534],[5,-3],[0,-3],[-2,-5],[-5,-8],[-10,-6],[-8,0],[-4,2],[-2,3],[1,3],[1,4],[-2,1],[-6,0],[-2,0],[-1,-1],[1,-2],[-3,-3],[-7,1],[-16,3],[-2,2],[0,1],[2,1],[2,1],[2,3],[2,1],[4,0],[3,0],[2,5],[3,3],[4,1],[2,2],[3,0],[0,-3],[-1,-5],[1,-1],[2,4],[4,3],[3,-1],[2,-1],[-1,-2],[0,-2],[3,-1],[7,10],[2,-1],[0,-4],[2,1],[2,2],[0,-5],[-3,-6],[-7,-7],[1,-1],[6,3],[3,2],[2,1],[2,2],[1,6],[2,1],[0,-1]],[[3903,87204],[1,-2],[0,-4],[-1,-2],[-2,3],[-2,1],[-1,-1],[-2,-1],[-2,-2],[-1,0],[-1,2],[-3,0],[-3,3],[0,8],[4,10],[4,7],[3,4],[1,-1],[-1,-7],[-2,-9],[4,-7],[4,-2]],[[3323,88955],[3,-3],[0,-7],[-6,-6],[-9,-1],[-5,5],[3,8],[6,4],[8,0]],[[3081,89419],[2,-4],[0,-9],[-2,-4],[-5,0],[-4,2],[-3,6],[2,6],[7,3],[3,0]],[[3395,89421],[7,3],[4,0],[-1,-3],[-5,-5],[-6,-3],[-3,-3],[-5,-5],[-5,-4],[-4,0],[-2,3],[5,5],[3,4],[12,8]],[[3425,89434],[29,13],[3,1],[-5,-5],[-21,-11],[-4,-5],[1,-6],[5,1],[-15,-20],[-6,-1],[-4,4],[2,8],[1,6],[0,5],[5,5],[9,5]],[[3650,89579],[6,3],[1,-1],[-8,-9],[-34,-26],[-11,-5],[-23,-16],[-5,-5],[1,0],[-2,-2],[-10,-3],[-13,-11],[-4,-2],[-3,0],[2,5],[100,70],[3,2]],[[3810,89675],[27,5],[-11,-5],[-7,-5],[-6,-4],[-11,-2],[-21,-13],[-22,-9],[-5,-3],[-5,-5],[-12,-5],[-14,-11],[-25,-12],[-13,-10],[-19,-10],[2,4],[9,8],[122,72],[11,5]],[[3864,89708],[10,3],[3,-1],[-1,-3],[-16,-10],[-7,-7],[-5,-4],[-3,4],[3,5],[5,5],[11,8]],[[3927,89743],[13,6],[1,-2],[-17,-13],[-7,-4],[-13,-14],[-5,-4],[-13,-4],[1,6],[7,8],[3,4],[30,17]],[[4031,89798],[-2,-1],[-11,-5],[-18,-13],[-7,0],[-3,-1],[-3,-4],[-9,-5],[-5,-2],[-2,3],[4,5],[56,23]],[[4031,89798],[1,1],[10,5],[7,1]],[[4049,89805],[-18,-7]],[[4071,89814],[-9,-4],[-1,-2],[-12,-3]],[[4049,89805],[22,9]],[[4071,89814],[5,3],[1,0],[-6,-3]],[[4232,89879],[4,0],[1,-3],[-3,-2],[-4,0],[-2,-2],[-1,-1],[-4,-2],[-10,0],[-3,-2],[-2,-5],[-2,-3],[-1,-2],[-1,-1],[-5,-1],[-13,0],[-37,-15],[-17,-1],[-5,-3],[-11,-9],[-22,-8],[-16,-2],[77,31],[77,31]],[[15902,79484],[-2,5],[-6,9],[-6,-4],[-6,-2],[-8,6],[-6,12],[0,11],[3,9],[-1,6],[-4,3],[-7,1],[-6,0],[-6,-3],[-23,-19],[-4,-9],[1,-11],[3,-13],[-1,-1]],[[15808,79484],[-1,7],[-2,10],[-2,7],[-4,8],[-4,4],[-2,4],[4,8],[15,19],[6,10],[4,17],[-11,-14],[-12,-7],[-12,0],[-13,8],[0,4],[4,7],[-2,25],[2,9],[5,2],[7,-2],[5,-6],[-2,7],[-9,10],[-9,7],[-7,8],[-3,15],[8,3],[11,-2],[9,2],[-5,12],[2,5],[5,0],[2,-2],[2,-6],[4,-4],[5,0],[5,4],[1,-5],[3,4],[5,1],[5,-1],[4,-4],[13,-3],[11,11],[8,20],[8,43],[2,10],[0,11],[-1,5],[-2,3],[-3,1],[-1,-5],[1,-19],[-1,-7],[-16,-47],[-23,-11],[-53,21],[-4,1],[-12,-5],[-2,9],[-2,7],[-2,4],[2,8],[8,8],[3,9],[1,9],[0,9],[-3,41],[0,7],[3,19],[4,17],[3,7],[-1,1],[-1,0],[-1,1],[0,3],[3,3],[3,7],[0,9],[-2,8],[12,15],[4,11],[-4,7],[-5,-8],[-4,-6],[-4,-2],[-3,-2],[-3,-5],[-3,-5],[-1,-5],[2,-14],[0,-8],[-1,-9],[-2,-3],[-3,-1],[-6,-6],[-8,1],[-3,0],[-2,-3],[-4,-10],[-2,-3],[-7,2],[-4,0],[-2,-4],[-2,-2],[-8,-7],[-2,-3],[-12,-10],[-3,-5],[4,-8],[-1,-12],[5,-22],[-3,-13],[-5,-8],[-4,-5],[-5,-2],[-6,1],[-63,45],[-7,3],[-16,1],[-6,3],[-5,5],[-2,5],[-1,4],[-1,4],[-3,3],[-5,3],[-2,0],[-3,2],[-3,6],[-5,11],[-9,32],[-2,4],[-5,7],[-3,5],[-1,8],[0,10],[1,10],[3,4],[2,4],[4,17],[3,7],[4,5],[4,2],[10,2],[4,-2],[2,-5],[1,-6],[2,-6],[15,-26],[8,-20],[1,-2],[2,-23],[0,-8],[2,-9],[5,-23],[3,-9],[4,-5],[3,5],[2,9],[2,7],[-3,10],[-2,11],[0,11],[3,9],[3,2],[9,2],[2,4],[2,4],[2,3],[16,4],[13,7],[11,13],[5,18],[-36,-29],[-37,-7],[-3,1],[-1,12],[-3,10],[-17,33],[-10,10],[-2,4],[-2,12],[3,10],[9,17],[2,11],[1,11],[-1,21],[-2,12],[-5,6],[-6,3],[-4,5],[-4,13],[1,13],[5,11],[11,6],[5,8],[4,2],[12,2],[4,2],[10,19],[5,12],[-1,5],[-6,6],[-10,22],[-4,5],[-16,14],[-12,5],[-11,14],[-7,4],[3,-9],[3,-7],[4,-7],[4,-6],[5,-4],[12,-7],[6,-5],[1,-3],[2,-8],[1,-3],[3,-3],[6,-5],[2,-3],[-2,-7],[-5,-9],[-10,-12],[-31,-20],[-4,-6],[-1,-11],[-1,-11],[1,-12],[2,-12],[3,-9],[5,-8],[10,-11],[4,-10],[-2,-5],[-3,-13],[-2,-6],[-7,-7],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-2,0],[-4,2],[-2,5],[-1,13],[0,3],[0,2],[0,2],[0,6],[-1,3],[-4,5],[-1,3],[2,7],[2,8],[-1,7],[-4,3],[-2,-5],[-8,-28],[3,-3],[3,-7],[1,-7],[-3,-3],[-4,0],[-3,-3],[-1,-5],[2,-8],[-6,-6],[-13,-8],[-6,-2],[-22,0],[-7,-4],[2,-14],[-4,-3],[-6,4],[-6,13],[-8,0],[-14,-4],[-7,2],[-13,11],[-10,4],[-2,5],[-2,6],[0,13],[-1,4],[-15,23],[-6,6],[-6,3],[-2,2],[-4,11],[-3,3],[-4,1],[-16,16],[-9,14],[-16,37],[-2,9],[3,10],[5,-6],[6,-10],[4,-6],[6,-4],[11,-18],[5,-7],[-5,22],[0,11],[4,4],[2,2],[1,6],[2,7],[0,5],[-2,4],[-8,8],[4,7],[5,3],[3,4],[-2,11],[6,5],[6,10],[3,11],[-2,10],[5,16],[1,5],[-1,6],[-6,9],[-1,7],[-2,9],[-7,7],[-7,5],[-5,5],[-2,6],[1,1],[2,1],[7,11],[1,4],[1,8],[3,11],[8,5],[9,2],[6,0],[9,-4],[3,0],[3,2],[5,9],[3,2],[5,1],[13,9],[5,5],[15,24],[3,7],[-3,7],[-7,-7],[-12,-18],[-22,-17],[-23,-8],[-23,4],[-4,-6],[-2,-11],[-11,-19],[-2,-6],[-3,-5],[-16,-18],[-6,-3],[-6,2],[-7,3],[-6,2],[-12,-2],[-3,2],[-3,7],[1,5],[3,6],[1,7],[-2,12],[-4,13],[-5,9],[-6,2],[2,-12],[2,-16],[-1,-14],[-12,-11],[-7,-9],[-5,-1],[-2,15],[1,8],[2,2],[2,1],[3,5],[-2,20],[1,2],[-1,6],[0,6],[1,6],[1,15],[1,4],[1,3],[3,3],[20,8],[3,6],[2,16],[4,5],[13,5],[1,3],[4,10],[1,4],[0,3],[-1,11],[0,4],[2,9],[0,25],[3,13],[7,16],[2,8],[-4,12],[-17,12],[-2,2],[-2,4],[0,5],[1,3],[6,12],[7,8],[3,5],[7,17],[5,6],[6,3],[-5,19],[-3,6],[-5,3],[-4,0],[-4,-2],[-2,-7],[0,-13],[-2,-6],[-12,-24],[-4,-5],[-10,-9],[-5,-7],[6,-3],[3,-3],[1,-4],[0,-15],[1,-3],[6,-2],[5,-5],[2,-8],[-3,-18],[-3,-21],[-1,-7],[2,-8],[3,-5],[0,-5],[-7,-15],[-2,-2],[-2,-1],[-1,1],[0,2],[-1,1],[-1,0],[-1,-3],[-1,-5],[-17,-19],[-4,-16],[-17,-19],[-6,-15],[3,-11],[-4,-11],[-7,-7],[-7,-3],[-5,0],[-3,4],[-5,15],[-5,9],[-1,4],[0,4],[1,5],[1,4],[-1,5],[-3,1],[-4,-5],[-4,-12],[-4,-6],[-2,0],[-2,2],[-4,2],[-4,9],[-2,18],[-2,14],[-8,-5],[0,-5],[0,-8],[-2,-9],[-2,-6],[-4,-8],[-5,-5],[-24,-6],[-8,0],[-5,2],[-4,7],[1,5],[4,4],[3,5],[2,7],[4,22],[0,7],[-1,6],[-2,9],[-1,5],[2,17],[2,11],[3,9],[3,7],[5,6],[7,4],[3,3],[2,4],[3,8],[3,5],[-9,4],[-7,-8],[-6,-11],[-8,-6],[-7,-7],[-3,-17],[-1,-18],[2,-11],[-2,-9],[-2,-13],[-2,-10],[-10,-7],[0,-7],[2,-7],[1,-3],[-1,-9],[-1,-5],[-4,-9],[-3,-4],[-4,-3],[-4,-2],[-9,-1],[-1,1],[-3,3],[-15,25],[-6,4],[2,7],[10,2],[3,6],[-13,7],[-8,1],[-6,-3],[-1,-3],[-4,-9],[-2,-4],[-26,-15],[-14,-2],[-14,4],[-9,13],[-6,-6],[-6,-1],[-30,7],[-6,4],[-5,7],[1,3],[5,3],[4,5],[5,4],[5,-4],[8,-11],[-2,17],[0,9],[2,7],[2,2],[10,3],[6,6],[3,2],[2,-1],[1,-2],[2,-2],[6,9],[24,6],[5,3],[6,7],[-6,9],[-7,-1],[-14,-8],[-7,-2],[-20,-14],[-8,-4],[-23,0],[-2,2],[-4,11],[-2,3],[-1,1],[2,3],[6,4],[7,3],[29,2],[19,11],[9,1],[22,-9],[7,2],[24,13],[21,5],[3,0],[4,-3],[3,-1],[3,2],[1,5],[5,21],[1,5],[2,4],[4,3],[7,3],[3,4],[4,14],[-4,11],[-5,10],[-3,12],[1,11],[5,4],[19,2],[3,5],[1,8],[3,14],[2,4],[2,2],[3,3],[1,8],[0,6],[-2,6],[-1,6],[-2,4],[-4,11],[-7,35],[-4,10],[-16,19],[0,-14],[1,-10],[6,-29],[8,-28],[2,-5],[7,-7],[2,-4],[-4,-12],[-5,-7],[-7,-4],[-8,-2],[-3,-1],[-4,-5],[-4,-5],[-3,-5],[-1,-6],[-1,-10],[0,-9],[1,-4],[9,-10],[2,-4],[-1,-9],[-3,-3],[-3,0],[-5,-2],[-6,-10],[-10,-24],[-7,-6],[0,4],[-31,-3],[-5,-7],[-2,-4],[-4,-3],[-5,-1],[-4,1],[-4,7],[-2,7],[-3,4],[-6,-1],[-4,-4],[-7,-11],[-4,-2],[-35,-8],[-7,2],[-4,11],[4,10],[12,5],[6,7],[6,11],[19,15],[7,9],[-1,3],[-12,0],[-7,-3],[-7,-6],[-6,-3],[-8,4],[-5,10],[1,10],[3,10],[1,13],[-1,8],[-4,-3],[-5,-8],[-5,-3],[-1,2],[-1,4],[0,4],[0,2],[-4,0],[-4,0],[-12,-4],[-14,-1],[-7,-2],[-20,-18],[-8,-3],[-6,5],[-3,4],[-7,3],[-3,4],[-1,6],[1,9],[-1,5],[3,7],[14,20],[3,-1],[3,-3],[3,-3],[30,-4],[11,6],[27,-6],[5,3],[6,8],[3,9],[-2,9],[-3,-2],[-10,-11],[-5,-2],[-45,7],[-15,7],[-6,8],[-7,27],[-2,31],[0,8],[-2,0],[-6,-27],[-3,-15],[2,-13],[6,-17],[-3,-8],[-5,-6],[-2,-10],[-4,-5],[-27,-17],[-7,0],[-6,3],[-8,5],[0,4],[-2,4],[-4,3],[-9,2],[-4,3],[-5,10],[-3,5],[-4,0],[-3,-3],[-2,-4],[-3,-7],[-1,-4],[-2,-4],[-35,0],[-7,5],[-4,4],[-4,3],[-9,3],[-7,0],[-4,1],[-4,4],[-2,-8],[5,-7],[7,-4],[13,-3],[14,-9],[7,-2],[15,0],[4,-2],[4,-2],[1,-3],[-4,-1],[-6,-4],[-12,-19],[-6,-6],[-6,1],[-7,4],[-17,21],[-23,7],[-3,2],[-7,10],[-2,12],[-2,0],[-4,-3],[-2,-1],[-7,1],[-5,2],[-28,16],[-5,6],[6,6],[2,4],[1,4],[-3,4],[-2,2],[-3,1],[-3,-1],[2,0],[-7,-2],[-10,4],[-6,8],[-1,8],[4,14],[2,18],[3,14],[5,5],[0,4],[-6,6],[-6,-2],[-8,-5],[-22,-7],[-8,0],[-7,8],[-1,11],[-24,23],[-1,11],[-3,7],[0,6],[1,7],[0,8],[5,4],[5,5],[5,5],[30,11],[5,6],[10,9],[44,-7],[2,-1],[5,-6],[3,-1],[44,8],[11,12],[10,6],[2,2],[3,9],[2,13],[1,13],[-1,10],[-4,-8],[-9,-24],[-3,-5],[-7,-3],[-15,-13],[-7,-4],[-65,8],[0,4],[6,5],[6,7],[2,6],[-6,2],[-8,-2],[-13,-12],[-8,-2],[-16,4],[-9,0],[-6,-6],[-5,-3],[-9,0],[-7,5],[-3,12],[3,9],[6,8],[8,5],[6,2],[7,1],[5,3],[12,27],[4,8],[6,5],[7,1],[2,2],[0,5],[-1,6],[1,5],[2,4],[3,3],[3,4],[2,7],[0,13],[-1,12],[-1,11],[3,11],[5,8],[7,5],[42,16],[76,8],[93,-15],[9,1],[6,6],[1,2],[0,3],[0,7],[1,2],[5,-1],[1,0],[2,5],[1,7],[1,6],[2,3],[-9,29],[0,7],[-3,6],[-3,5],[-2,6],[0,-5],[1,-2],[1,-2],[-3,-13],[2,-9],[3,-9],[2,-9],[-1,-8],[-3,-3],[-2,-2],[-4,-3],[-5,-16],[-110,23],[-46,-11],[-7,3],[-12,12],[-6,1],[-1,-15],[-9,-8],[-10,-2],[-7,9],[2,1],[1,2],[0,2],[-1,-1],[2,3],[1,2],[1,3],[-2,0],[-1,23],[1,6],[3,3],[10,4],[3,1],[3,7],[7,45],[-3,8],[-4,-8],[-3,-11],[-3,-13],[-2,-10],[0,-9],[-2,-4],[-12,-1],[-2,1],[-1,-2],[-2,-7],[-4,-29],[-5,-9],[-8,3],[-8,5],[-9,0],[-9,-2],[-8,-5],[0,-4],[7,-2],[13,-8],[6,-2],[14,2],[7,-1],[2,-7],[-3,-7],[-18,-10],[-4,-9],[-5,-18],[-4,-7],[0,-4],[5,-7],[2,-8],[-2,-10],[-14,-29],[-6,-8],[-6,-3],[-13,-1],[-4,1],[-8,17],[-1,3],[4,7],[18,0],[6,2],[0,3],[-3,3],[-5,6],[-3,3],[-5,1],[-21,-5],[-1,0],[-2,6],[1,4],[2,3],[1,4],[-1,7],[-2,6],[-1,6],[0,9],[-6,-3],[-2,6],[0,11],[-2,11],[-3,7],[-4,4],[-3,5],[-1,14],[0,11],[1,4],[2,5],[1,4],[-1,4],[-2,4],[-1,5],[0,16],[0,4],[-3,8],[-1,6],[1,3],[3,13],[0,1],[-1,7],[-1,2],[1,3],[1,2],[2,1],[1,11],[2,10],[3,9],[9,5],[10,12],[4,2],[15,-2],[8,0],[5,6],[-2,4],[4,15],[3,39],[3,15],[6,14],[9,13],[10,9],[9,5],[6,1],[5,-2],[2,-6],[0,-9],[-2,-11],[-4,-5],[-5,-1],[-16,2],[-3,-4],[-13,-38],[9,13],[8,16],[3,3],[24,0],[9,3],[7,10],[-9,27],[-1,5],[-2,2],[-1,6],[1,6],[3,2],[7,3],[4,3],[2,4],[3,10],[7,6],[20,5],[6,5],[5,7],[16,30],[4,4],[7,2],[15,-5],[14,-1],[7,-2],[6,-5],[11,-17],[4,-9],[2,-11],[-3,-13],[11,-20],[36,-48],[6,-13],[4,-4],[8,-13],[4,-7],[5,-21],[2,-8],[0,15],[1,11],[-1,10],[-4,9],[-3,3],[-3,2],[-2,3],[-2,11],[-5,14],[-3,6],[-11,15],[-26,24],[-8,19],[3,11],[0,8],[-2,6],[-5,15],[-3,7],[0,8],[4,10],[2,2],[9,3],[1,2],[1,5],[1,1],[5,-1],[12,7],[11,2],[11,0],[-5,13],[-9,2],[-36,-15],[-8,-5],[-7,-8],[-10,-6],[-10,-1],[-22,7],[-2,1],[-5,-1],[-2,0],[-2,3],[-1,4],[0,3],[-1,3],[-7,10],[-1,6],[4,8],[-5,16],[-3,4],[-3,2],[-1,4],[-3,31],[2,8],[10,19],[6,8],[6,7],[11,6],[9,15],[6,6],[14,5],[6,7],[2,14],[3,10],[9,16],[2,13],[-2,11],[-6,21],[-4,24],[-7,9],[-14,12],[-2,4],[-2,4],[-2,3],[-3,1],[4,-15],[12,-27],[5,-19],[0,-4],[0,-14],[1,-3],[4,-8],[1,-5],[-2,-8],[-19,-34],[-27,-25],[-17,-22],[-3,-5],[-5,-3],[-5,-5],[1,-10],[-4,-4],[-2,-4],[-1,-4],[0,-7],[2,-5],[2,-3],[1,-3],[-2,-9],[-4,-6],[-47,-28],[-5,-14],[-6,-18],[-14,-10],[-13,-6],[-6,-7],[-1,-12],[-4,-2],[-6,3],[-6,2],[-5,-5],[-5,-7],[-6,-5],[-7,4],[2,6],[0,12],[1,4],[3,6],[6,17],[-7,-2],[-5,-9],[-7,-21],[-3,-10],[-1,-7],[0,-6],[-1,-5],[-3,-4],[-3,-3],[-2,-3],[-5,-9],[-4,-5],[-3,2],[-4,12],[0,7],[0,8],[-1,7],[-7,5],[-2,5],[-2,6],[-1,7],[3,4],[1,5],[1,5],[1,5],[4,4],[7,0],[4,2],[3,8],[-3,8],[-10,16],[-6,17],[-1,5],[1,9],[3,5],[3,4],[2,5],[2,4],[2,5],[-1,5],[-4,2],[-2,-2],[-3,-9],[-3,-5],[1,-5],[-1,-5],[-1,-7],[-1,-8],[0,-8],[2,-3],[3,-4],[2,-9],[-1,-12],[-5,-14],[-13,-23],[-9,8],[-4,6],[-3,17],[-4,6],[-3,5],[-3,7],[2,4],[-3,22],[4,21],[8,16],[11,6],[3,-2],[3,-4],[3,-4],[1,-2],[4,2],[0,6],[-2,5],[0,3],[3,4],[6,2],[2,2],[2,5],[2,7],[2,13],[-5,-4],[-10,-10],[-27,-8],[-5,-5],[-4,-9],[-2,-4],[-3,-1],[-3,-1],[-2,-3],[-1,-4],[-1,-4],[-13,-37],[-1,-4],[-1,-7],[-2,-5],[-2,-3],[-4,-4],[-2,-3],[-11,-37],[-13,-25],[-4,-5],[-4,0],[-3,3],[-3,3],[-2,2],[-8,0],[-3,2],[-4,2],[4,8],[4,5],[10,7],[-3,11],[0,12],[3,11],[5,7],[3,2],[3,0],[2,-1],[3,-1],[3,2],[1,5],[0,6],[1,5],[4,8],[3,11],[2,11],[-4,15],[0,12],[0,2],[-2,18],[0,7],[3,10],[11,30],[0,5],[0,6],[1,6],[1,5],[8,12],[1,5],[0,6],[1,4],[1,3],[4,10],[1,3],[0,3],[1,7],[-1,12],[-3,22],[0,13],[2,17],[6,11],[9,6],[11,3],[2,2],[0,4],[-2,3],[-1,1],[-18,-7],[-4,1],[-3,8],[-2,0],[-1,-12],[-3,-13],[-4,-13],[-4,-7],[-9,-12],[-3,-6],[-2,-4],[-2,-4],[-3,-3],[-7,-2],[-9,2],[-18,11],[-17,2],[-3,2],[-2,14],[-2,4],[-3,2],[-2,4],[-6,16],[0,2],[1,6],[-1,12],[-3,21],[0,12],[-3,24],[-1,13],[0,3],[-3,10],[-1,7],[2,5],[3,2],[3,1],[4,2],[-5,6],[-6,-1],[-4,2],[-2,11],[2,5],[14,3],[5,2],[-5,3],[-17,-3],[-5,3],[-4,7],[-16,36],[-1,5],[-1,5],[-2,1],[-1,-1],[-2,-3],[1,-4],[1,-6],[2,-10],[-6,-5],[-5,3],[-28,35],[-4,3],[-5,3],[-5,7],[-7,16],[-2,12],[2,11],[4,10],[5,6],[-9,0],[-3,3],[1,7],[3,7],[-1,4],[-2,4],[-1,8],[2,12],[10,14],[3,10],[-8,1],[-4,-2],[-4,-5],[-3,-7],[-2,-4],[-3,0],[-4,5],[-4,11],[-4,28],[-3,14],[8,-2],[14,-10],[8,0],[5,6],[5,9],[5,6],[6,-1],[4,-9],[5,-27],[2,-9],[3,-2],[9,-6],[3,-4],[6,-12],[2,4],[-4,8],[-3,5],[0,3],[2,3],[5,-2],[8,-9],[21,-33],[12,-10],[3,-5],[1,-1],[2,-3],[1,-3],[-1,-2],[-1,-1],[0,-4],[0,-4],[0,-3],[2,-8],[2,1],[1,7],[1,17],[-1,7],[-2,4],[-5,1],[0,3],[3,3],[6,7],[2,3],[25,8],[4,7],[4,13],[12,-12],[15,-5],[29,1],[6,-2],[6,-5],[4,-7],[3,-11],[2,-5],[1,-3],[-1,-4],[-2,-5],[-1,-3],[-1,-5],[-5,-19],[10,16],[5,5],[5,-3],[5,-5],[11,-10],[4,-7],[1,-7],[1,-32],[3,-7],[20,-15],[-2,13],[-5,7],[-6,6],[-4,10],[0,8],[1,13],[-1,8],[-3,4],[-10,7],[-3,1],[-3,3],[-8,11],[-2,4],[-1,2],[-5,16],[-2,4],[-5,13],[-3,4],[-2,2],[-3,5],[-1,6],[1,7],[-6,-2],[-18,2],[-28,-4],[-13,10],[-8,3],[-3,-7],[-1,-10],[-4,-8],[-5,-5],[-5,-3],[-3,-1],[-11,1],[-3,-2],[-2,-3],[-2,-3],[-4,0],[-2,3],[-4,11],[-2,2],[-4,1],[-3,2],[-3,5],[-1,6],[-4,12],[-8,5],[-9,2],[-4,2],[-1,8],[-2,8],[-8,14],[-6,-5],[-4,8],[-4,11],[-4,6],[-2,2],[-2,4],[-2,6],[-1,6],[1,9],[1,5],[4,8],[6,19],[1,10],[-6,23],[1,13],[4,10],[5,7],[7,3],[6,0],[5,3],[1,12],[3,11],[6,2],[27,-12],[22,-3],[2,2],[-3,8],[-5,5],[-5,0],[-8,-3],[-7,2],[-12,9],[-8,3],[-2,4],[-3,2],[-3,-3],[-2,2],[-2,2],[-1,4],[0,4],[1,2],[2,1],[1,1],[2,10],[10,24],[1,4],[0,6],[0,10],[1,5],[3,4],[5,6],[-6,1],[-9,-7],[-8,-11],[-5,-12],[-5,-14],[-5,-14],[-1,-1],[-2,-4],[-1,-3],[-4,-4],[-2,0],[-3,4],[-2,-16],[-7,-9],[-7,-7],[-6,-21],[-20,-32],[1,11],[6,19],[1,10],[-3,8],[-3,-7],[-6,-21],[0,17],[1,8],[1,7],[-7,15],[-5,5],[-7,1],[0,-4],[9,-16],[3,-27],[-2,-25],[-8,-10],[-5,8],[-8,22],[-4,-1],[0,-11],[8,-25],[-3,-5],[-6,-1],[-6,-5],[-7,-5],[-4,-7],[-2,-5],[-1,-8],[-2,-7],[-3,-3],[-3,0],[-3,-3],[-3,-3],[-11,-17],[-3,-8],[-1,-15],[1,-25],[-1,-13],[-5,-5],[0,-3],[5,-3],[2,-12],[0,-14],[-2,-12],[-2,-10],[-4,-12],[-4,-10],[-3,-5],[-13,7],[-71,104],[-6,3],[-16,24],[-2,6],[-3,7],[-10,19],[-5,5],[0,4],[3,-1],[3,-2],[6,-6],[-4,14],[-5,6],[-6,3],[-6,6],[-2,5],[-6,15],[-2,1],[-6,-1],[-3,0],[-2,3],[-8,14],[-9,8],[-2,4],[-2,5],[-3,11],[-3,4],[-3,3],[-10,5],[6,9],[2,6],[1,8],[-2,1],[-10,-10],[-4,1],[-2,5],[-7,8],[-3,5],[-8,20],[-3,4],[5,14],[0,20],[-2,45],[2,12],[8,23],[2,10],[3,-1],[16,4],[5,3],[4,-4],[1,-6],[0,-6],[1,-4],[3,-4],[6,-5],[3,-3],[7,-16],[6,-17],[1,-5],[0,-4],[1,-3],[2,-4],[2,-3],[3,0],[2,0],[2,-1],[2,-3],[2,-7],[2,-2],[2,-1],[4,2],[1,-1],[1,-4],[1,-6],[0,-3],[4,-10],[2,-4],[4,-2],[-3,11],[-2,12],[-4,10],[-10,7],[-12,18],[-3,7],[-3,6],[-3,13],[-2,5],[-8,12],[-1,3],[-2,9],[-5,7],[-2,7],[1,11],[4,8],[7,7],[8,4],[6,2],[8,-1],[4,-2],[8,-8],[4,0],[8,2],[24,-15],[7,1],[8,8],[5,9],[3,2],[6,4],[8,6],[3,2],[4,-1],[-4,10],[-7,-2],[-14,-12],[-2,-2],[-4,-12],[-2,-2],[-8,1],[-40,20],[-17,4],[-16,-5],[-19,-14],[-6,-2],[-3,-2],[-6,-11],[-3,-3],[-12,1],[-4,-1],[-3,-3],[-3,-8],[-3,-1],[-4,1],[-4,2],[-4,5],[-2,6],[-4,7],[-28,7],[-1,4],[-1,10],[-1,2],[-2,2],[3,3],[15,10],[10,2],[-4,5],[-6,5],[-3,4],[0,6],[0,9],[-1,8],[-2,4],[-2,5],[3,28],[-1,11],[-2,-9],[-2,-11],[-2,-9],[-4,-3],[-6,-3],[-11,-8],[-7,-1],[-14,6],[-6,2],[-4,2],[-4,6],[-2,9],[2,10],[-2,7],[0,9],[2,9],[2,6],[6,6],[13,0],[5,4],[-11,15],[-4,10],[-2,14],[1,13],[0,6],[2,5],[4,2],[4,-3],[5,0],[1,7],[-3,5],[-8,11],[-5,12],[2,5],[7,-1],[6,-5],[6,-6],[5,-9],[7,-19],[9,-16],[1,-3],[2,-8],[62,-108],[6,-6],[7,-4],[8,-2],[4,1],[1,2],[-1,3],[-3,3],[-4,1],[-3,-1],[-4,1],[-4,4],[-13,22],[-3,8],[0,12],[6,21],[-2,8],[2,11],[3,4],[10,1],[5,4],[4,6],[1,7],[-4,4],[-3,-2],[-16,-10],[-4,-7],[-1,-7],[-1,-9],[0,-12],[-4,-10],[-10,9],[-15,24],[-6,6],[-22,46],[1,3],[1,6],[-11,11],[-10,17],[-4,19],[10,17],[14,8],[15,3],[14,-4],[17,-13],[7,-3],[3,-3],[2,-3],[5,-15],[6,-8],[8,-6],[24,-6],[5,0],[3,2],[4,5],[0,2],[-3,1],[-20,0],[-7,3],[-8,5],[-5,9],[-11,23],[-6,5],[-4,0],[-3,3],[-5,7],[-4,2],[-9,1],[-4,3],[2,16],[1,4],[3,6],[2,2],[3,13],[1,3],[0,8],[1,5],[2,2],[4,1],[2,1],[7,7],[4,6],[4,7],[3,8],[3,8],[-5,2],[-4,-4],[-6,-14],[-5,-4],[-9,-4],[-5,-5],[2,8],[4,10],[4,8],[9,8],[11,31],[5,7],[7,5],[7,2],[6,-3],[5,-9],[-2,-5],[-4,-6],[-3,-11],[4,1],[2,2],[3,3],[2,3],[3,6],[1,2],[1,-1],[8,1],[6,4],[10,19],[5,5],[4,-2],[8,-8],[4,-2],[4,1],[7,6],[3,1],[15,-3],[6,3],[5,12],[-14,-9],[-78,9],[-6,-2],[-3,0],[-3,4],[-1,6],[3,7],[5,14],[5,26],[4,10],[7,4],[7,19],[3,4],[3,3],[2,4],[3,7],[0,3],[0,6],[0,3],[2,5],[2,3],[3,12],[1,5],[2,5],[3,4],[6,5],[4,5],[3,1],[1,1],[1,4],[0,3],[0,4],[0,4],[8,22],[5,10],[6,4],[2,3],[0,7],[0,7],[1,3],[2,3],[5,13],[2,5],[8,3],[19,-5],[6,4],[9,9],[3,1],[0,1],[1,3],[-1,6],[0,3],[-2,-1],[-3,-4],[-3,-2],[-7,-8],[-3,-2],[-5,0],[-9,3],[-12,1],[-3,-2],[-3,-4],[-8,-19],[-2,-3],[-6,4],[0,26],[-8,11],[-3,11],[-10,57],[-5,15],[-5,-3],[3,-10],[1,-11],[0,-25],[7,-22],[3,-15],[-1,-6],[-3,-3],[0,-6],[0,-7],[0,-4],[-2,-5],[-5,-4],[-3,-3],[-2,-6],[-1,-5],[-1,-6],[1,-8],[1,-4],[2,1],[2,4],[-2,7],[3,4],[2,2],[2,2],[3,0],[-2,-7],[-2,-2],[-2,-2],[2,-5],[1,-3],[2,-1],[3,0],[-1,-5],[-1,-6],[-2,-3],[-6,-4],[-2,-4],[0,-16],[1,-3],[0,-4],[-1,-6],[-10,-14],[-4,-5],[-3,-11],[-3,-24],[-4,-12],[-23,-41],[-7,-18],[-5,-19],[-5,-16],[-2,-4],[-5,-3],[-7,0],[-5,5],[-2,8],[-1,10],[-9,29],[8,16],[5,21],[2,4],[2,2],[5,12],[1,4],[2,5],[17,21],[16,26],[3,12],[-3,10],[-10,17],[-2,11],[0,24],[-1,7],[-1,5],[-3,14],[-1,14],[-2,5],[-2,4],[-3,5],[-8,20],[-4,18],[-2,20],[2,27],[4,16],[0,7],[-1,8],[-2,4],[-3,2],[-3,4],[-4,8],[-2,13],[1,13],[4,12],[22,41],[14,34],[6,9],[-2,6],[-3,2],[-4,-1],[-4,-3],[-3,-12]],[[10832,91718],[4,-3],[25,-3],[0,-2],[0,-1],[-2,-2],[5,-3],[4,-1],[10,0],[0,3],[-1,1],[6,3],[49,-13],[66,-8],[51,-2],[20,12],[65,1],[85,-22],[3,-2],[-31,5],[-17,7],[7,-9],[13,-6],[94,-18],[14,-14],[5,-2],[42,-2],[9,-9],[18,-26],[4,-8],[10,-12],[11,-9],[53,-28],[11,-17],[17,-17],[8,-11],[8,-20],[1,-4],[4,-1],[3,3],[2,4],[3,2],[3,1],[12,-1],[0,-4],[-6,0],[3,-3],[9,-4],[9,-2],[2,1],[0,1],[0,3],[0,3],[1,1],[6,3],[3,8],[1,9],[2,9],[-4,0],[-4,-2],[-7,-7],[7,11],[10,4],[9,-2],[4,-11],[1,-16],[3,-10],[5,-8],[23,-27],[37,-26],[63,-28],[97,-45],[26,-1],[12,-7],[-13,0],[0,-4],[36,-12],[21,-15],[9,-1],[36,4],[19,-4],[2,-2],[4,-9],[3,-2],[16,-3],[29,-19],[15,-6],[23,-2],[5,2],[3,3],[2,4],[3,3],[4,2],[21,-4],[-3,3],[-1,1],[0,4],[11,6],[12,-2],[4,-2],[7,-3],[50,-11],[47,0],[52,-21],[8,-8],[20,-9],[2,-5],[4,-10],[7,-7],[9,-6],[18,-7],[33,-5],[8,-9],[3,-5],[5,-8],[5,-5],[4,-4],[2,0],[2,-2],[1,-4],[0,-4],[0,-2],[9,-5],[24,8],[10,-3],[19,-11],[10,-2],[-3,7],[-11,2],[-3,7],[2,1],[4,3],[-8,2],[-15,12],[-13,5],[-4,6],[-7,21],[-1,4],[-1,2],[-8,3],[-8,5],[-10,4],[-6,6],[-4,9],[-3,11],[46,-4],[-19,9],[-45,3],[-16,20],[4,4],[3,7],[-61,-5],[-12,2],[-38,25],[3,10],[6,2],[13,-4],[0,4],[-14,16],[-4,12],[2,15],[8,4],[10,-5],[19,-18],[22,-11],[25,0],[24,9],[21,14],[-49,-8],[-4,2],[-1,5],[-1,7],[-1,4],[-6,8],[-50,20],[-4,7],[-4,32],[-4,17],[-1,11],[0,9],[9,19],[11,-1],[23,-22],[7,-4],[3,-2],[7,-13],[46,-35],[32,-5],[15,-10],[-4,11],[-12,8],[-33,7],[-9,6],[-58,64],[-6,17],[5,12],[9,7],[11,4],[18,3],[5,-2],[5,-5],[1,-2],[3,-4],[2,-2],[0,-4],[0,-7],[0,-4],[4,-8],[13,-20],[4,-4],[3,6],[-3,13],[-9,22],[-2,8],[-1,6],[0,4],[3,4],[4,4],[5,2],[15,-4],[11,0],[11,-3],[17,-20],[10,-6],[45,-16],[3,0],[1,2],[0,4],[-1,3],[0,3],[-2,0],[-4,2],[-5,2],[-4,4],[-3,5],[-3,6],[0,4],[1,4],[0,6],[-2,11],[-1,3],[-2,4],[-6,19],[-2,2],[0,6],[0,7],[1,5],[4,4],[15,8],[16,15],[8,1],[5,-12],[2,6],[3,4],[4,1],[4,1],[-2,0],[9,4],[16,-6],[8,-2],[15,8],[9,3],[12,-7],[2,4],[2,8],[3,-2],[2,-3],[1,-4],[1,-3],[9,-2],[29,2],[30,-19],[16,-4],[14,13],[3,19],[-9,12],[-14,0],[-11,-13],[3,-6],[1,-2],[-5,-4],[-4,2],[-8,10],[2,7],[1,1],[-5,2],[-1,9],[3,9],[3,5],[4,-1],[6,-6],[4,-2],[4,1],[7,3],[4,1],[-6,12],[1,2],[6,8],[7,6],[4,8],[6,19],[-1,12],[-8,14],[-17,24],[5,3],[5,-2],[4,-3],[5,-2],[6,2],[9,5],[9,-2],[4,1],[3,-1],[0,-9],[-1,-7],[-2,-4],[-3,-3],[-4,-2],[6,-5],[22,6],[8,-1],[5,-7],[5,-8],[4,-7],[7,-2],[0,-5],[-13,-7],[-6,-7],[-5,-10],[-2,-9],[4,1],[6,5],[6,3],[2,-2],[1,-12],[3,-2],[3,-2],[6,-8],[3,-2],[8,2],[8,5],[8,3],[8,-2],[-2,-7],[-3,-4],[-8,-5],[15,0],[4,-2],[2,-2],[2,-2],[2,-2],[6,-3],[7,-1],[8,2],[7,5],[-1,2],[-3,5],[-1,1],[5,5],[12,0],[5,4],[-1,1],[-4,3],[-2,0],[2,7],[3,4],[4,1],[4,0],[-1,-3],[-1,-1],[2,-5],[2,-4],[3,-2],[3,-1],[-3,-7],[-7,-2],[-2,-5],[1,-4],[3,-8],[0,-3],[-1,-5],[0,-1],[-2,-1],[-8,-14],[-7,-9],[-52,-41],[-17,-22],[-2,-28],[-19,0],[-4,-2],[-6,-9],[-3,-2],[-2,-2],[-1,-6],[-1,-5],[-3,-3],[-4,-1],[-2,-4],[-3,-5],[-2,-6],[-1,-6],[1,-3],[1,-2],[-1,-5],[-1,-6],[-1,-2],[-5,-5],[-2,-11],[3,2],[7,0],[3,1],[5,6],[3,6],[3,17],[8,17],[9,11],[12,6],[34,4],[12,8],[14,3],[6,6],[3,9],[0,5],[1,4],[4,6],[4,2],[11,0],[4,1],[8,6],[4,1],[-1,-2],[-1,-7],[0,-3],[13,0],[6,3],[6,5],[-5,5],[-5,3],[7,13],[11,7],[47,11],[57,-2],[2,-2],[4,-5],[2,-1],[4,0],[1,2],[2,3],[2,3],[30,18],[1,0],[3,-3],[2,-2],[3,-1],[3,0],[-2,8],[-1,9],[2,8],[5,3],[6,3],[3,6],[3,6],[5,6],[-4,4],[1,7],[6,11],[1,8],[-2,6],[-8,8],[4,13],[8,12],[17,16],[32,0],[-2,-2],[-2,-3],[-2,-4],[-2,-3],[21,-2],[5,4],[5,6],[5,2],[18,-4],[15,-11],[6,0],[40,8],[10,8],[5,15],[-5,4],[-31,-18],[3,5],[3,3],[2,5],[1,7],[-2,6],[-4,2],[-5,-2],[-7,-8],[-5,-3],[-10,-3],[-2,-1],[-4,-6],[-3,-1],[-6,1],[-7,3],[2,4],[3,4],[3,3],[3,1],[6,12],[5,16],[43,6],[14,9],[9,3],[9,1],[6,-2],[-8,-1],[-21,-11],[-25,-4],[-9,-1],[0,-4],[53,0],[-1,-4],[-2,-4],[-2,-2],[-2,-2],[15,-4],[2,1],[4,3],[1,0],[2,-2],[2,-5],[16,-9],[8,0],[5,12],[-1,6],[6,5],[28,8],[8,4],[12,14],[25,0],[5,3],[13,13],[5,8],[-2,9],[4,6],[13,5],[23,18],[47,12],[8,11],[-2,0],[-4,0],[-2,0],[3,11],[4,10],[5,7],[5,-2],[9,-5],[19,0],[9,-5],[4,-5],[5,-9],[4,-10],[2,-10],[-1,-5],[-4,-8],[-1,-5],[1,-7],[3,-4],[6,-6],[8,18],[1,6],[-7,1],[-2,-1],[5,13],[6,3],[13,-3],[4,3],[3,8],[5,17],[8,17],[4,10],[1,11],[3,8],[15,5],[5,6],[-6,4],[-14,-6],[-7,2],[5,3],[18,25],[9,10],[5,6],[-1,-7],[-2,-4],[-4,-3],[0,-4],[4,-4],[4,4],[4,7],[4,3],[5,1],[10,7],[9,1],[4,2],[-1,6],[3,6],[4,2],[4,-1],[4,-3],[-8,-14],[-3,-8],[1,-7],[6,0],[9,5],[7,7],[2,7],[-2,9],[1,7],[4,3],[6,-3],[6,-1],[8,3],[5,6],[0,6],[4,8],[8,2],[15,-2],[-6,-4],[-8,-3],[-8,-6],[-3,-11],[2,-11],[6,-6],[7,0],[4,9],[-12,4],[6,7],[6,1],[13,-4],[4,1],[4,4],[2,5],[-2,6],[6,3],[9,-18],[8,3],[-2,-12],[1,-6],[4,-2],[6,-1],[-10,-7],[-3,-5],[5,-2],[19,2],[7,3],[12,9],[6,0],[-6,-12],[-2,-7],[-1,-7],[2,-5],[5,3],[5,8],[12,22],[2,3],[5,-2],[1,-5],[-2,-7],[-4,-7],[12,3],[23,11],[6,1],[5,-3],[-12,-9],[-4,-5],[3,-2],[14,3],[12,5],[-1,3],[0,1],[-1,4],[8,4],[2,0],[-2,17],[6,11],[15,17],[-2,4],[-3,2],[-3,2],[-3,0],[0,4],[4,0],[3,3],[2,5],[3,6],[3,3],[10,-3],[5,3],[-5,8],[3,7],[8,6],[7,3],[0,-4],[-1,0],[0,-4],[5,0],[3,-3],[1,-8],[-2,-10],[4,1],[3,-1],[4,-3],[2,-5],[3,-6],[1,-2],[-5,-11],[-3,-4],[-3,-1],[8,-3],[16,3],[8,-4],[-2,-4],[5,-4],[10,3],[4,-3],[-5,-8],[-5,-4],[-2,-6],[2,-9],[6,-7],[5,9],[4,12],[5,5],[4,-8],[-2,-12],[-4,-12],[-4,-7],[-6,-7],[-3,-2],[-4,-1],[-10,0],[-5,-1],[-4,-3],[13,-5],[4,-3],[-6,-6],[-13,-7],[-10,-11],[-31,-11],[-12,-9],[-99,-52],[-23,-5],[-21,-12],[-8,-1],[-1,7],[-5,-1],[-6,-4],[-5,-6],[-10,-14],[-5,-5],[-11,-2],[-3,-2],[-2,-3],[-2,-4],[-14,2],[-2,-2],[-5,-8],[-5,-5],[0,-5],[1,-4],[1,-1],[-2,-10],[-2,-6],[-3,-4],[-23,-10],[-27,-4],[-6,-4],[-4,-13],[-8,-14],[-3,-8],[2,-4],[-2,-4],[-8,-3],[-7,-8],[-5,-4],[-3,-6],[-4,-2],[-9,11],[-10,4],[-5,5],[-3,6],[0,4],[1,3],[0,6],[-3,7],[-3,-1],[-3,-3],[-5,-3],[-22,2],[-5,-4],[-10,-11],[-11,-4],[-24,1],[1,-3],[2,-10],[1,-3],[-17,0],[-3,1],[-3,5],[-2,2],[-6,-1],[-11,-8],[-6,-3],[-3,0],[-5,3],[-3,1],[-3,-1],[-5,-2],[-3,-1],[-24,4],[2,-4],[2,-5],[1,-5],[-1,-6],[-2,-5],[-3,2],[-6,11],[-9,6],[-9,1],[-18,-7],[-19,-13],[-7,-1],[-12,2],[-6,-1],[-8,-5],[-19,-27],[7,-5],[2,-5],[-2,-5],[-12,-4],[-2,-5],[0,-6],[4,-6],[-8,0],[-3,-1],[-3,-3],[14,-12],[3,-5],[-10,-14],[-61,-28],[-3,-4],[2,-7],[7,-17],[1,-7],[-4,-4],[-5,5],[-5,9],[-2,8],[0,5],[-2,4],[-2,4],[-1,2],[-14,-4],[-2,-7],[1,-6],[1,-7],[0,-11],[-3,-3],[-6,-3],[-5,-4],[3,-8],[-2,-9],[-1,-19],[-3,-9],[-2,19],[-1,23],[-2,22],[-8,13],[-5,2],[-6,0],[-10,-2],[-3,-3],[-7,-10],[-4,-3],[-14,0],[-14,-4],[0,-12],[-7,-4],[-9,-3],[-5,-9],[6,-3],[-2,-9],[-11,-22],[-3,-4],[-4,-4],[-3,-4],[0,-7],[4,-4],[6,-1],[11,1],[-4,-4],[-9,-7],[-4,-5],[-2,-5],[-2,-19],[3,-6],[2,-8],[2,-9],[0,-8],[-3,-6],[-6,2],[-4,9],[2,13],[-2,3],[-6,10],[6,11],[2,6],[-2,5],[-4,0],[-7,-11],[-4,-3],[-11,-2],[-4,2],[-13,8],[-5,0],[-1,-2],[0,-3],[-1,-3],[0,-3],[-3,-2],[-3,-1],[-7,1],[-4,0],[-5,-3],[-4,-4],[-2,-7],[0,-3],[-1,-5],[-1,-2],[1,-3],[2,-7],[1,-2],[-2,-6],[-3,-3],[-4,-1],[-4,-2],[3,-4],[8,-8],[-5,-16],[-2,-5],[-4,-4],[-9,-4],[-5,-4],[-6,-11],[-4,-4],[-5,-1],[-4,2],[-4,3],[-3,5],[-2,6],[7,1],[4,5],[0,5],[-7,1],[-23,-12],[2,-7],[2,-5],[3,-5],[4,-3],[-7,-5],[-7,-1],[-3,-4],[2,-15],[4,-9],[5,-6],[12,-9],[19,-8],[3,-3],[4,-4],[3,-4],[19,-4],[7,-5],[0,-8],[10,0],[30,-13],[30,3],[10,-3],[0,5],[-7,7],[-7,4],[-18,1],[9,-4],[0,-5],[-40,10],[-1,3],[0,4],[-3,4],[-4,3],[-4,3],[-4,2],[-5,0],[-9,5],[-1,9],[3,7],[5,-3],[5,-7],[6,-5],[7,-2],[7,0],[-4,8],[-24,14],[-8,3],[-16,-6],[-9,5],[0,5],[2,0],[4,3],[-3,6],[-3,4],[-7,7],[5,2],[15,2],[16,8],[6,0],[4,-1],[5,-3],[8,-8],[1,-3],[3,-6],[1,-3],[3,-2],[6,0],[3,-3],[-2,-3],[4,-4],[3,-1],[8,0],[-1,6],[-1,2],[10,5],[21,-13],[9,0],[-7,15],[-3,9],[1,9],[6,2],[11,-3],[10,-7],[12,-13],[14,-6],[13,-13],[4,3],[0,8],[-9,9],[0,4],[10,3],[53,-19],[9,0],[4,6],[0,9],[3,4],[4,1],[6,0],[2,2],[2,2],[2,6],[1,2],[1,4],[-28,24],[-16,8],[-8,-8],[27,-12],[-8,-5],[-7,2],[-13,7],[-5,1],[-5,-1],[-5,-3],[-5,-5],[3,-12],[-9,-6],[-12,-2],[-13,1],[-5,2],[-2,5],[4,8],[5,3],[5,-2],[5,0],[4,7],[-8,1],[-11,5],[-11,7],[-4,8],[6,9],[13,0],[25,-6],[-7,11],[-11,9],[-13,6],[-9,3],[-9,6],[-4,14],[2,14],[9,7],[-2,6],[-4,2],[-7,0],[3,9],[6,6],[13,5],[36,0],[5,3],[18,19],[8,5],[12,1],[7,5],[4,6],[4,8],[1,5],[0,4],[-1,4],[-1,1],[3,9],[4,11],[5,5],[2,-7],[-3,-30],[-2,-7],[-1,-1],[0,-2],[0,-4],[-1,-5],[-1,-1],[-2,0],[-2,-1],[-2,-4],[-2,-3],[-1,-3],[0,-6],[18,11],[9,11],[3,17],[1,6],[2,17],[2,5],[4,5],[6,1],[3,-3],[-1,-9],[1,-6],[-4,-4],[-5,-2],[-5,0],[13,-8],[4,-1],[2,2],[8,15],[2,3],[4,2],[4,2],[3,-1],[2,-4],[-1,-5],[-5,-9],[-5,-17],[0,-7],[5,4],[3,6],[11,30],[-2,6],[-1,5],[2,4],[2,3],[3,2],[2,1],[3,0],[2,-1],[1,-1],[1,-3],[-1,-3],[1,-1],[9,-1],[16,12],[8,1],[4,0],[6,2],[3,5],[0,9],[5,3],[9,15],[6,3],[-3,-8],[-5,-6],[-1,-4],[6,-3],[3,1],[3,2],[1,3],[2,3],[10,8],[5,5],[13,30],[12,18],[-4,2],[-6,-1],[-26,-15],[-3,-1],[-1,5],[2,6],[-2,4],[-2,1],[-7,5],[-6,1],[-11,-8],[-6,5],[18,12],[10,3],[8,-3],[-2,-4],[6,0],[12,6],[7,2],[32,-4],[-8,12],[1,9],[7,6],[10,1],[5,-1],[14,-7],[19,-3],[5,-3],[8,-10],[-3,-4],[-8,-4],[-6,-12],[0,-7],[2,-11],[0,-7],[-3,-4],[-4,-4],[-8,-4],[6,-2],[11,5],[10,9],[7,8],[3,15],[0,10],[3,5],[9,-1],[-6,20],[4,0],[3,-1],[4,-1],[3,-2],[0,4],[-2,4],[0,5],[1,5],[2,4],[3,5],[2,-3],[2,-5],[2,-3],[10,-32],[4,-8],[-1,13],[-6,33],[-1,8],[6,3],[5,-12],[4,-18],[3,-26],[-1,-7],[-3,-7],[-4,-3],[-23,-11],[-11,-16],[-9,-7],[-4,-5],[-2,-10],[6,5],[12,6],[7,5],[12,20],[5,4],[7,3],[5,0],[5,1],[6,8],[1,1],[1,0],[2,0],[1,4],[0,1],[-1,2],[-1,2],[0,3],[1,5],[0,3],[-1,4],[2,3],[3,6],[1,3],[-4,4],[-2,7],[1,9],[1,8],[-20,27],[-4,16],[-2,4],[0,4],[3,2],[4,-2],[2,-3],[4,-11],[3,-4],[8,-9],[1,-1],[1,-1],[0,-2],[0,-1],[1,-3],[1,0],[2,1],[2,-1],[3,-1],[2,-1],[2,-1],[1,-7],[-3,-27],[-1,-6],[0,-3],[1,-4],[2,-6],[1,-4],[-2,-7],[-6,-8],[-2,-6],[0,-8],[3,-2],[3,4],[3,4],[2,5],[5,14],[1,6],[1,8],[1,5],[1,4],[3,16],[1,5],[-2,15],[-2,7],[-2,5],[-4,1],[-3,3],[-6,11],[-3,3],[-4,1],[-5,3],[-4,5],[-2,7],[3,9],[7,6],[8,2],[6,-1],[4,-5],[2,-7],[-1,-8],[-5,-4],[8,-13],[7,-15],[5,-18],[2,-23],[-2,-11],[-2,-12],[-3,-10],[-4,-10],[-1,-4],[-1,-10],[-2,-6],[-8,-12],[-2,-6],[6,4],[8,10],[8,11],[3,9],[1,12],[14,41],[1,2],[0,2],[-1,6],[-4,11],[-2,6],[1,3],[1,4],[1,7],[2,6],[5,-2],[3,-5],[1,-5],[0,-5],[-1,-8],[1,-9],[3,-21],[0,-5],[0,-7],[-1,-8],[-3,-5],[-2,-3],[-1,-4],[-2,-2],[-8,-21],[-4,-2],[-4,-2],[-5,-4],[-2,-8],[1,-6],[3,-7],[4,-4],[1,3],[3,11],[6,15],[8,13],[6,8],[7,1],[3,-6],[0,-11],[-2,-13],[-3,-11],[-5,-10],[-16,-23],[0,-7],[0,-7],[-2,-9],[-5,-9],[-2,-7],[1,-2],[4,-3],[0,-4],[-2,-6],[-3,-3],[2,-14],[2,-4],[2,-3],[3,-1],[2,2],[3,2],[2,2],[3,-1],[5,-4],[3,0],[-7,15],[0,8],[4,12],[2,9],[-2,10],[-3,10],[-2,9],[3,8],[21,30],[14,7],[6,8],[-3,5],[-4,6],[-1,6],[4,3],[6,2],[7,8],[4,3],[18,6],[7,9],[4,17],[-7,0],[-22,-4],[60,52],[8,11],[4,4],[10,6],[2,4],[1,6],[-2,5],[-2,4],[2,7],[4,5],[9,6],[4,3],[3,7],[3,7],[3,5],[6,2],[0,4],[-3,-1],[-3,1],[-3,1],[-3,3],[12,4],[47,6],[59,25],[16,1],[55,20],[26,21],[7,1],[20,-1],[16,7],[91,11],[11,8],[11,12],[4,7],[3,6],[7,18],[8,14],[11,7],[11,0],[8,-13],[-9,9],[-2,-8],[-1,-15],[-3,-12],[-9,-5],[-4,-5],[0,-6],[4,-11],[2,-5],[1,-7],[-50,2],[-17,-10],[12,-32],[-1,-6],[0,-5],[-1,-7],[-6,-19],[2,-7],[4,-4],[5,-1],[22,-1],[13,-8],[7,0],[8,2],[6,3],[-11,11],[-4,7],[2,8],[7,6],[8,4],[23,2],[7,4],[7,5],[11,16],[12,9],[15,23],[12,12],[48,39],[25,9],[7,8],[-3,3],[-1,1],[1,2],[1,3],[1,4],[1,2],[-1,6],[0,10],[-1,5],[-2,3],[-3,3],[-3,3],[-1,5],[-2,9],[-2,10],[-2,10],[3,12],[7,8],[18,6],[8,6],[4,5],[6,3],[10,2],[4,2],[8,8],[4,2],[33,-4],[20,13],[10,3],[19,0],[64,17],[20,-9],[-8,11],[-11,6],[-44,7],[-36,6],[-45,13],[-8,7],[0,11],[-5,4],[-3,6],[-3,7],[-3,8],[8,0],[21,-6],[8,-4],[6,-1],[8,22],[6,5],[-10,5],[-33,-13],[-22,-3],[-10,3],[-6,12],[1,27],[9,29],[12,24],[12,13],[19,13],[0,1],[0,3],[0,2],[2,2],[3,0],[3,-1],[4,-3],[10,-11],[64,-40],[70,-56],[60,-57],[11,-16],[15,-18],[3,-7],[3,-9],[17,-26],[18,-42],[17,-27],[4,-12],[4,-12],[2,-4],[2,-4],[5,-5],[11,-5],[8,-6],[4,-2],[3,-3],[-6,0],[1,-15],[2,-5],[4,-4],[-8,-7],[-3,-7],[1,-7],[10,-23],[12,-35],[2,-9],[2,-5],[3,-6],[6,-8],[9,-14],[103,-108],[5,-8],[4,-5],[5,-5],[5,-3],[10,-3],[4,-4],[7,-11],[54,-40],[36,-17],[9,0],[17,5],[8,0],[3,-2],[1,-3],[2,-2],[2,-4],[3,-2],[10,0],[2,-2],[1,-4],[2,-4],[0,-2],[40,-20],[7,0],[3,3],[9,12],[3,5],[-3,2],[-5,6],[2,4],[-6,5],[-12,4],[-5,8],[2,4],[2,4],[8,-9],[75,-8],[4,2],[3,6],[2,7],[3,6],[-2,1],[-3,5],[-2,2],[3,5],[12,7],[-17,0],[0,4],[2,0],[3,0],[2,2],[2,2],[-30,0],[-8,-4],[2,-8],[-4,0],[-4,0],[-7,4],[1,2],[0,2],[1,2],[2,2],[-5,3],[-45,-11],[-21,-12],[-10,0],[-2,-2],[-2,-4],[-3,-2],[-3,-1],[-3,1],[3,6],[7,11],[4,7],[-1,2],[-1,2],[0,2],[0,2],[11,3],[12,-3],[0,4],[-3,3],[-1,3],[2,3],[6,10],[4,0],[10,-3],[35,-4],[0,4],[-2,2],[-4,5],[-2,1],[6,3],[6,-4],[13,-11],[18,-6],[18,-2],[-10,9],[-24,8],[-10,11],[2,5],[-5,4],[-2,0],[0,4],[3,0],[3,2],[2,3],[1,5],[12,6],[-8,6],[-47,5],[-6,5],[10,-1],[4,3],[3,6],[-5,1],[-1,1],[0,2],[-2,1],[-1,1],[-1,1],[-2,2],[11,26],[3,6],[9,5],[20,-5],[9,0],[25,20],[4,1],[7,-2],[4,1],[1,2],[0,3],[0,3],[0,3],[2,2],[3,0],[10,-2],[17,-8],[1,-5],[-1,-5],[1,-5],[3,-8],[2,-5],[1,-5],[0,-8],[2,-9],[6,2],[6,8],[4,7],[4,13],[1,8],[3,3],[8,-2],[-14,15],[-15,7],[-42,4],[-17,9],[-9,2],[-14,-6],[-5,2],[-6,12],[2,4],[-3,6],[-2,1],[-3,1],[18,20],[4,4],[6,3],[5,-1],[-2,-10],[2,-7],[-1,-15],[3,-2],[23,0],[3,1],[1,1],[-1,1],[1,1],[8,10],[2,6],[1,7],[0,8],[-2,5],[14,13],[13,22],[4,6],[5,4],[53,20],[3,3],[4,-4],[6,-2],[6,2],[2,8],[-1,7],[-4,7],[-5,6],[-5,2],[-5,-4],[-6,-18],[-4,-7],[-7,-2],[-10,2],[-9,3],[-6,5],[8,8],[9,5],[-6,3],[-24,0],[-3,-1],[-1,-3],[-1,-3],[-1,-3],[-2,-2],[-5,2],[-7,6],[-5,1],[-5,-1],[-4,-3],[-9,-9],[1,-2],[1,-6],[-5,1],[-7,0],[-6,-3],[-4,-5],[2,-1],[2,-2],[3,-6],[-5,-3],[-4,0],[-5,3],[-5,0],[-4,-3],[-3,-4],[-4,-1],[-2,8],[6,8],[3,7],[-1,8],[-5,10],[3,3],[9,5],[10,12],[20,9],[6,5],[2,4],[2,9],[2,1],[3,0],[3,-1],[2,-3],[1,-6],[-2,-13],[-5,-3],[-6,0],[-6,-6],[12,-6],[15,-2],[15,4],[12,8],[-29,-4],[0,4],[3,1],[5,5],[3,2],[16,4],[2,2],[3,3],[2,2],[4,1],[1,-1],[2,-6],[1,-1],[2,0],[5,3],[31,9],[6,-2],[5,-6],[10,-16],[-1,-9],[6,-5],[9,3],[5,11],[-10,0],[10,14],[10,-4],[11,-7],[9,5],[-8,17],[-5,4],[-6,-3],[-6,-5],[-7,-1],[-7,3],[-6,5],[5,3],[7,0],[5,2],[4,7],[-25,7],[-8,-2],[-24,-13],[-8,0],[0,4],[4,1],[4,1],[7,7],[-3,3],[-4,2],[-4,-1],[-6,-3],[-1,0],[-1,3],[0,4],[1,3],[2,1],[2,1],[2,1],[7,8],[9,1],[19,-3],[3,1],[7,6],[3,1],[5,-1],[5,-6],[4,-1],[18,5],[9,0],[7,-9],[-13,-11],[-4,-6],[3,-4],[6,-1],[6,-5],[5,-7],[3,-7],[0,-9],[-2,-9],[-3,-7],[-3,-5],[-7,-4],[-17,4],[-8,-6],[5,-5],[14,0],[5,-4],[-4,-2],[-11,1],[-2,-4],[-2,-6],[-5,-2],[-5,0],[-5,-2],[15,-7],[14,-2],[2,-2],[-1,-5],[-1,-6],[-1,-3],[-3,-5],[-3,-1],[-7,2],[-5,-3],[2,-5],[6,-6],[6,-2],[2,-2],[0,-4],[-1,-6],[2,-3],[3,-3],[4,-2],[4,0],[-6,-6],[-7,-9],[-6,-12],[0,-10],[-5,-1],[-2,-4],[2,-6],[2,-7],[1,-5],[-2,-5],[-5,-9],[7,-9],[18,2],[6,-3],[8,-9],[11,-3],[11,2],[8,6],[8,9],[7,3],[36,-2],[1,-2],[2,-4],[2,-4],[4,-2],[-1,-3],[-3,-9],[2,-1],[2,-2],[2,-1],[-11,-9],[-31,-20],[-7,-10],[-2,-12],[-1,-13],[-5,-13],[-8,-9],[-21,-12],[-13,-12],[-11,-13],[-3,-7],[0,-8],[2,-7],[4,-13],[-22,0],[-6,-4],[5,-7],[18,-16],[4,-1],[11,0],[10,-6],[6,-2],[46,-3],[18,6],[11,21],[-2,-9],[7,-13],[4,-6],[5,-1],[3,5],[-1,6],[-6,9],[3,10],[3,5],[4,0],[5,-2],[1,-2],[0,-3],[2,-3],[20,-8],[4,-1],[2,1],[3,5],[2,2],[4,1],[6,0],[3,-4],[-1,-9],[13,6],[7,1],[8,-3],[2,-1],[2,-3],[2,-3],[4,-1],[4,2],[9,5],[20,4],[45,22],[-11,3],[-4,4],[-2,7],[-1,15],[1,8],[4,3],[5,2],[15,10],[25,4],[-2,-4],[27,-4],[3,3],[1,6],[-1,8],[1,7],[1,4],[1,2],[1,1],[2,5],[2,3],[2,4],[0,4],[-1,8],[-7,11],[-1,5],[1,9],[4,5],[4,4],[4,5],[3,7],[1,5],[-1,29],[-2,12],[-5,9],[-8,7],[23,10],[6,6],[14,16],[7,6],[8,2],[32,-21],[17,-5],[8,18],[0,4],[4,-1],[8,-5],[5,-2],[10,2],[5,0],[13,-7],[15,2],[13,-7],[36,8],[50,-6],[38,8],[109,-17],[23,-12],[37,-1],[86,-43],[86,-42],[35,-40],[12,-13],[100,-75],[34,-11],[20,-15],[24,-10],[59,0],[17,-10],[69,-15],[61,-5],[108,-24],[56,-18],[4,-4],[6,-10],[43,-43],[71,-30],[50,-32],[57,-18],[41,-5],[88,-21],[19,-15],[38,-18],[11,-1],[15,7],[6,1],[13,-1],[6,1],[5,4],[-3,4],[-7,6],[-3,6],[10,4],[9,-5],[22,-27],[4,-3],[5,-1],[2,0],[7,6],[3,1],[3,-2],[3,-3],[2,-2],[81,-13],[12,2],[3,11],[7,0],[16,-5],[22,-15],[9,-11],[3,-1],[66,-13],[8,4],[-44,23],[-7,14],[11,0],[0,4],[-63,36],[-3,5],[1,8],[6,6],[8,4],[15,2],[15,-3],[70,-32],[8,-2],[4,2],[5,5],[3,1],[19,0],[-7,6],[-20,11],[-5,4],[-11,12],[-5,4],[7,4],[32,-11],[16,-11],[8,-2],[35,4],[6,-2],[19,-16],[5,-1],[10,-1],[4,-3],[2,-2],[12,-7],[47,-15],[27,-24],[14,-2],[0,4],[-1,1],[-3,3],[12,6],[13,-5],[44,-32],[8,-10],[7,-12],[9,-12],[61,-23],[23,-18],[-2,-2],[-2,-2],[-4,-8],[10,-9],[4,-6],[2,-7],[3,-7],[7,-6],[48,-21],[5,-5],[-1,-8],[2,-7],[3,-5],[4,-3],[4,-1],[4,-2],[6,-8],[3,-2],[4,-5],[3,-11],[2,-13],[1,-8],[-15,0],[-3,-5],[3,-11],[7,-7],[8,-2],[15,1],[0,4],[1,8],[3,9],[6,3],[4,-3],[13,-21],[-3,-2],[-5,-1],[-4,-1],[-1,-6],[-1,-6],[-2,-3],[-21,-27],[-5,-11],[3,-8],[7,-14],[2,-8],[-6,-7],[-12,0],[-35,10],[-4,-1],[-3,-3],[-7,-8],[-3,-1],[-20,0],[-3,2],[-8,8],[-3,2],[-4,1],[-9,6],[-4,1],[-48,-10],[-59,6],[-19,13],[-10,4],[-8,-5],[7,-5],[16,-16],[13,-7],[23,-25],[-6,-2],[-8,2],[-7,-2],[-3,-12],[-5,-8],[-10,-3],[-96,21],[5,-10],[7,-8],[6,-9],[-2,-11],[-3,-5],[-6,-7],[-3,-7],[-2,-6],[-2,-15],[-2,-7],[8,-8],[5,-3],[4,-1],[17,0],[4,-4],[-5,-5],[-10,-4],[-10,-11],[-7,-3],[-21,-3],[-46,-19],[-12,-1],[-6,-3],[-3,-6],[2,-12],[5,-5],[13,-1],[22,-8],[38,4],[-2,-1],[-2,-2],[-2,-2],[-1,-3],[5,-7],[10,-9],[5,-7],[6,-6],[17,-7],[3,-5],[33,-7],[58,15],[20,-3],[9,-5],[14,-13],[5,-3],[5,-1],[6,1],[9,4],[1,2],[0,4],[1,2],[39,-33],[19,-8],[18,0],[18,8],[7,1],[53,-11],[11,-8],[23,-9],[50,-1],[101,10],[34,-6],[31,-14],[11,-2],[58,8],[24,-6],[91,3],[18,7],[3,5],[-1,8],[-6,11],[12,7],[39,-11],[44,12],[8,-4],[3,-9],[0,-10],[2,-9],[3,-1],[12,1],[8,-5],[4,0],[4,5],[-4,7],[-4,4],[-5,4],[-4,2],[1,4],[1,3],[2,0],[3,0],[0,4],[-2,1],[-5,3],[14,10],[93,-26],[0,4],[-9,12],[5,2],[2,3],[2,5],[3,3],[5,1],[16,-1],[-3,-15],[5,-5],[7,2],[7,7],[10,21],[3,4],[7,7],[3,5],[7,7],[21,5],[14,7],[3,-2],[1,-7],[-3,-8],[-4,-4],[-6,-7],[-3,-5],[3,2],[4,2],[4,-1],[0,-7],[-2,-5],[-7,-2],[-2,-5],[7,0],[8,3],[19,13],[4,-1],[3,-4],[3,-5],[4,-4],[5,1],[32,19],[16,4],[7,6],[10,14],[1,2],[3,2],[6,9],[3,2],[4,1],[13,7],[28,5],[12,16],[31,20],[26,-1],[-1,3],[-3,10],[8,0],[10,-3],[16,-10],[11,-14],[6,-3],[8,5],[-16,16],[-4,12],[7,15],[6,5],[7,1],[14,0],[6,-3],[11,-11],[6,-3],[7,-8],[-1,-19],[-7,-29],[2,-20],[7,-11],[10,0],[6,14],[-3,3],[-8,10],[0,4],[22,-2],[11,-6],[13,-20],[8,-7],[16,-10],[-3,-7],[-8,-5],[-2,-8],[26,-13],[8,-8],[-8,-1],[-19,6],[-6,-3],[-1,-9],[8,-6],[49,-18],[6,1],[6,8],[2,8],[-6,6],[4,8],[13,2],[4,4],[4,7],[4,4],[4,-1],[3,-8],[-2,-1],[-4,-7],[14,-7],[5,-1],[3,-1],[3,-2],[3,-1],[5,4],[5,4],[2,0],[51,-7],[2,-1],[1,-3],[0,-3],[1,-2],[13,-17],[2,-3],[3,-10],[5,-39],[-2,0],[3,-9],[11,-17],[2,-9],[-5,-7],[-13,-9],[-5,-5],[-3,-5],[0,-6],[2,-10],[5,-7],[12,-4],[6,-5],[0,-10],[18,-1],[5,-12],[2,-16],[5,-6],[6,2],[6,11],[7,21],[3,23],[2,82],[2,14],[5,5],[20,3],[11,-3],[5,-10],[0,-7],[-1,-6],[0,-5],[17,-43],[1,-6],[1,-8],[-1,-5],[-1,-5],[0,-8],[1,-16],[3,-19],[5,-16],[6,-8],[6,-1],[4,4],[1,8],[0,9],[-2,4],[-1,5],[-1,4],[1,4],[0,3],[1,4],[-2,5],[4,0],[3,1],[3,2],[3,3],[3,3],[5,-1],[13,-7],[3,-8],[3,-10],[4,-8],[6,-6],[76,-59],[8,-19],[4,-5],[0,-4],[3,-10],[13,-29],[2,-8],[2,-10],[-11,0],[9,-27],[1,-11],[0,-12],[-1,-3],[-5,2],[-5,4],[-10,6],[-9,2],[-9,7],[-5,0],[-4,-3],[-4,-3],[-3,-2],[-5,0],[-12,5],[-5,-1],[0,-1],[0,-3],[-1,-3],[-1,-1],[-2,-2],[-7,-3],[2,-14],[-7,-3],[-24,8],[-19,12],[-15,15],[-17,9],[-7,6],[-14,20],[-8,8],[-9,1],[0,-4],[9,-11],[4,-7],[2,-7],[5,-25],[3,-8],[4,-8],[2,-3],[3,0],[5,3],[0,4],[-1,5],[0,4],[3,5],[2,2],[3,-1],[4,-2],[5,-6],[3,-5],[1,-3],[3,-6],[11,-12],[3,-7],[4,-9],[10,-4],[23,-2],[9,-6],[5,-1],[2,-2],[7,-11],[6,-4],[1,-9],[0,-12],[-2,-11],[2,-4],[-6,-11],[-9,-2],[-9,1],[-9,-4],[13,-7],[37,7],[16,-11],[3,-3],[1,-8],[4,-6],[5,-6],[3,-7],[-1,-5],[-2,-17],[0,-6],[1,-7],[7,-11],[2,-9],[3,-6],[4,-6],[3,-2],[2,4],[1,8],[-1,8],[-2,5],[5,9],[-1,8],[-4,7],[-3,8],[8,-1],[7,-7],[19,-34],[21,-27],[-3,1],[-3,-1],[-2,-3],[-2,-5],[7,-6],[18,-31],[11,-13],[3,-5],[5,-5],[5,1],[2,5],[-3,9],[9,-1],[6,-11],[15,-41],[3,-7],[5,-5],[14,-7],[25,-43],[9,-8],[9,7],[3,11],[-11,8],[-3,13],[-12,16],[-34,34],[-5,7],[-3,9],[-2,13],[-5,6],[-7,3],[-9,10],[-7,4],[-3,5],[-1,4],[-1,10],[-1,4],[-15,22],[-8,27],[-31,19],[-9,17],[16,-9],[8,0],[7,9],[-2,6],[-1,6],[0,4],[1,4],[-4,17],[-2,28],[-11,30],[-2,10],[-1,8],[0,11],[1,11],[2,7],[6,2],[14,-18],[14,-8],[4,-1],[4,5],[0,5],[-1,6],[-2,4],[-1,3],[-2,7],[-8,23],[-3,5],[0,1],[3,4],[4,3],[4,0],[3,-2],[15,-20],[6,-5],[5,-7],[3,-11],[-2,0],[10,-49],[-9,5],[-4,2],[-2,-4],[-3,-4],[-5,1],[-7,3],[-3,4],[-6,8],[-6,7],[-7,2],[-7,-3],[3,-9],[10,-12],[4,-14],[5,-6],[6,-2],[4,2],[-2,9],[4,-2],[9,-7],[3,-4],[-1,-6],[-3,-5],[-8,-9],[3,-3],[11,-8],[3,-2],[4,3],[3,9],[3,1],[4,-5],[4,-10],[5,-7],[6,6],[-12,18],[-5,11],[-4,11],[6,-1],[8,-3],[6,0],[5,8],[0,8],[-3,8],[-10,26],[1,4],[4,3],[6,0],[7,-3],[6,-5],[5,-7],[8,-9],[24,-19],[5,-8],[2,-5],[10,-15],[4,-9],[4,-5],[5,-4],[7,-1],[0,5],[-20,28],[7,8],[-37,58],[-12,15],[-16,11],[-9,4],[2,6],[9,10],[32,10],[-1,8],[3,5],[10,11],[-6,4],[-5,-1],[-6,-2],[-6,-1],[-5,2],[-9,8],[-15,4],[-9,6],[-29,32],[-5,10],[-4,23],[-8,25],[-19,37],[-10,8],[-6,11],[-2,9],[7,4],[4,-4],[5,-7],[4,-5],[4,4],[2,26],[12,16],[2,7],[-2,7],[-4,5],[-4,4],[-10,4],[-5,3],[-2,7],[-2,5],[-7,13],[-11,13],[-18,16],[-15,7],[-18,18],[-9,13],[-7,6],[-3,4],[-2,5],[-3,15],[1,15],[4,12],[11,24],[1,7],[2,7],[2,6],[3,2],[18,3],[34,19],[9,3],[3,2],[4,5],[5,11],[2,10],[-3,4],[-22,7],[-5,-1],[-5,-4],[-5,-1],[-3,4],[-2,6],[-3,5],[-5,3],[-11,1],[-5,4],[-3,7],[2,2],[3,2],[2,8],[0,14],[1,14],[3,11],[5,7],[4,2],[3,-2],[3,-4],[3,-4],[6,-1],[12,2],[5,-3],[10,-6],[-6,-10],[-9,-2],[-18,0],[4,-7],[5,-2],[13,1],[-7,-5],[-8,-2],[-8,-4],[-4,-9],[11,-10],[6,-2],[6,3],[1,4],[1,3],[1,3],[1,3],[12,17],[3,2],[10,2],[9,7],[9,2],[21,-3],[21,-11],[16,2],[28,18],[22,24],[13,8],[11,-3],[-5,-10],[-2,-5],[-1,-6],[30,8],[16,-3],[5,1],[-5,6],[12,9],[17,-2],[30,-11],[0,4],[3,17],[-5,17],[-7,14],[-7,9],[7,10],[10,3],[20,0],[-4,-13],[-1,-5],[6,-5],[5,-8],[4,-2],[5,7],[-1,15],[-2,16],[2,7],[9,-2],[28,-26],[6,-7],[4,-9],[5,-13],[3,3],[6,10],[3,3],[3,1],[8,0],[4,3],[-38,25],[-3,10],[4,6],[9,9],[3,7],[3,12],[-2,7],[-10,10],[7,11],[8,3],[17,-3],[7,5],[15,16],[7,4],[19,0],[3,-2],[2,-6],[2,-5],[2,-4],[7,1],[13,16],[7,4],[4,-1],[4,-2],[4,-1],[5,2],[2,4],[2,7],[1,5],[1,3],[7,-1],[10,-6],[9,-4],[9,8],[1,4],[1,8],[2,4],[3,3],[2,-5],[3,-11],[6,-4],[8,0],[6,3],[-1,8],[3,10],[4,9],[2,10],[-2,10],[-3,4],[-8,3],[-3,3],[-2,4],[-4,12],[4,8],[11,11],[5,7],[1,4],[1,9],[2,4],[3,3],[3,0],[3,1],[3,6],[-14,1],[-8,-2],[-5,-5],[-6,-7],[-7,-3],[-7,0],[-17,16],[-17,0],[-18,-5],[-13,-7],[-2,-11],[-8,-5],[-121,-39],[-8,-6],[36,0],[-9,-4],[-23,-1],[-6,-11],[8,-3],[5,-7],[1,-8],[-6,-7],[-5,1],[-3,4],[-2,5],[-1,3],[-13,2],[-5,-2],[2,-10],[4,-8],[6,-7],[5,-4],[16,-2],[8,-5],[0,-11],[-5,-7],[-8,-5],[-6,-6],[-3,-11],[3,-8],[6,-9],[2,-6],[-7,-3],[-8,0],[-3,2],[-3,4],[-5,13],[-1,2],[-2,1],[-3,9],[-3,1],[-18,0],[-1,3],[-1,5],[0,11],[-17,19],[-6,-2],[-1,-8],[5,-7],[-5,-9],[-8,0],[-16,9],[-5,0],[-11,-8],[-15,-1],[-5,-4],[1,-9],[-6,-7],[-14,-10],[-4,-4],[-3,-3],[-3,-5],[-1,-8],[-2,-9],[-4,-1],[-9,4],[-16,-5],[-8,0],[-7,23],[-10,7],[-10,3],[-27,-3],[-11,3],[-4,10],[-6,7],[-41,-6],[-10,-5],[-4,-1],[-6,1],[-11,7],[-6,-1],[-6,-6],[-4,-12],[-3,-13],[-4,-13],[3,-5],[4,-6],[6,-4],[5,-1],[8,0],[4,-1],[4,-3],[2,-3],[3,-8],[1,-2],[4,-4],[30,-14],[5,-5],[-3,-5],[-8,0],[-25,8],[-31,0],[-6,-2],[-3,-5],[-2,-5],[-3,-4],[-8,-3],[-24,4],[6,10],[-45,1],[-9,-2],[-17,-15],[-40,-20],[-9,7],[-4,8],[-1,6],[1,6],[5,5],[5,2],[6,-1],[4,-4],[-4,-7],[-1,-1],[0,-4],[7,0],[5,9],[2,14],[1,15],[-1,6],[-3,6],[-3,5],[-3,2],[-5,-3],[-2,-6],[-1,-6],[-1,-6],[-1,-3],[0,-3],[-1,-2],[-2,-4],[-11,4],[-2,0],[0,6],[2,8],[2,8],[7,15],[4,12],[1,10],[-5,10],[-10,5],[-9,-5],[-9,-8],[-12,-7],[-6,-11],[-5,-2],[-27,0],[-3,-3],[-3,-6],[-4,-4],[-5,3],[-12,9],[-3,5],[-3,7],[2,2],[8,3],[7,8],[3,6],[-1,2],[-1,3],[-1,7],[0,7],[2,3],[4,2],[39,31],[52,95],[16,24],[19,12],[132,19],[14,-4],[35,16],[40,7],[16,9],[37,1],[32,22],[3,4],[4,2],[22,5],[45,25],[15,4],[11,5],[5,1],[27,-3],[10,3],[28,21],[32,8],[20,12],[20,6],[10,6],[2,5],[6,15],[6,3],[6,0],[56,-27],[52,-8],[4,-2],[13,-10],[10,-14],[10,-6],[20,-25],[23,-21],[8,-12],[7,-7],[-3,-12],[-2,-6],[-2,-3],[-4,-1],[-4,-2],[-4,-4],[-2,-5],[1,-10],[5,-9],[11,-13],[5,-9],[15,-40],[7,-6],[7,-2],[10,0],[-1,-5],[1,-15],[0,-4],[-4,-4],[-4,3],[-8,9],[-6,3],[-5,0],[-4,-2],[-6,-5],[-4,-6],[-1,-2],[-3,-2],[-4,-1],[-3,-2],[-7,-6],[-3,-6],[-1,-7],[2,-9],[5,-2],[44,6],[10,-4],[-1,-5],[-1,-6],[-2,-4],[-2,-5],[8,-15],[64,-50],[15,-6],[12,10],[-19,13],[-6,7],[15,-1],[3,3],[3,5],[4,2],[4,-2],[3,-5],[5,-4],[8,5],[6,10],[3,11],[3,-6],[5,-4],[4,-4],[3,-10],[-1,-11],[-4,-6],[-25,-12],[-2,-6],[5,-9],[7,-5],[7,1],[13,12],[3,7],[2,2],[6,-7],[4,-2],[42,0],[9,-8],[-5,-20],[-16,-37],[16,0],[4,-7],[1,-20],[3,-6],[5,-3],[12,-1],[6,-4],[2,-2],[0,-4],[-3,-7],[0,-3],[7,-6],[34,2],[5,3],[4,5],[4,4],[5,-2],[19,-14],[23,-3],[44,14],[31,-15],[12,-1],[12,3],[10,6],[3,5],[6,11],[4,4],[6,1],[20,-9],[8,0],[4,1],[4,3],[4,5],[0,2],[-1,3],[0,12],[-1,3],[1,4],[2,8],[3,4],[24,20],[7,2],[8,-6],[5,-7],[3,-7],[6,-15],[-4,-5],[-3,-4],[-3,-4],[-2,-7],[1,-3],[2,-17],[1,-6],[0,-9],[1,-4],[2,-1],[10,-1],[4,-3],[10,-14],[4,-4],[3,-2],[6,0],[12,1],[7,-2],[5,-6],[7,-11],[8,-7],[9,-3],[9,-1],[14,5],[5,-1],[7,-14],[1,-4],[3,-7],[20,-24],[21,-17],[52,-12],[34,-8],[31,-18],[9,-17],[15,5],[3,-4],[1,-10],[2,-7],[4,-2],[5,5],[-3,3],[-3,5],[-2,6],[0,6],[3,4],[14,8],[7,10],[3,2],[8,-12],[5,-3],[6,-1],[10,1],[4,2],[3,4],[4,6],[-1,1],[-1,3],[0,4],[2,4],[2,1],[9,-1],[2,-3],[3,-5],[4,-11],[4,-5],[12,-2],[5,-3],[0,-5],[2,-5],[2,-4],[2,-2],[2,-1],[4,-3],[2,0],[1,2],[4,10],[8,0],[6,-7],[6,-8],[7,-5],[5,0],[9,4],[5,-2],[5,-4],[11,-5],[5,-1],[14,9],[2,1],[4,-5],[6,0],[6,1],[4,2],[-3,7],[-10,4],[-2,6],[2,7],[5,1],[5,-3],[8,-7],[4,1],[3,3],[5,1],[16,-4],[5,1],[6,8],[-1,11],[-2,9],[5,4],[5,-2],[7,-9],[5,-2],[5,2],[8,11],[4,4],[5,2],[0,-1],[-1,-4],[0,-5],[0,-9],[0,-3],[1,-1],[38,1],[11,3],[7,9],[-3,10],[-5,10],[0,10],[4,5],[4,-2],[4,-6],[3,-5],[5,-6],[5,-1],[5,4],[12,14],[5,1],[5,-6],[2,5],[3,13],[3,2],[5,-2],[7,-7],[5,-3],[9,8],[5,2],[3,-8],[-1,-6],[-2,-5],[0,-4],[1,-7],[13,6],[24,21],[12,5],[69,-4],[5,-2],[13,-12],[6,-2],[14,4],[4,-1],[9,-6],[4,-1],[3,1],[5,6],[3,1],[4,0],[12,-8],[15,-6],[7,3],[-1,11],[7,1],[23,-5],[7,-6],[4,-6],[4,-3],[4,1],[9,7],[5,1],[16,-3],[4,-3],[1,-2],[1,-3],[0,-2],[0,-1],[5,-1],[3,3],[2,4],[4,2],[4,-2],[4,-3],[5,-7],[5,-4],[4,-3],[12,-2],[6,-4],[12,-18],[7,-6],[3,0],[4,4],[2,1],[3,-1],[4,-4],[3,0],[9,7],[4,2],[15,-6],[11,2],[10,0],[12,-15],[4,2],[2,6],[2,17],[2,5],[3,3],[4,1],[27,-4],[13,4],[9,21],[-2,7],[3,5],[4,1],[5,-1],[5,-5],[4,-6],[5,-4],[7,-1],[50,4],[3,-1],[5,1],[5,3],[2,5],[-2,5],[-9,13],[-10,12],[-2,2],[-1,2],[-3,5],[-2,2],[-3,-1],[-6,-3],[-2,0],[-10,4],[-10,8],[-11,14],[-9,5],[-19,16],[-4,7],[-2,47],[-3,8],[0,6],[3,6],[4,3],[21,-3],[4,3],[9,11],[3,1],[5,-4],[2,-5],[2,-6],[2,-6],[6,-9],[49,-48],[9,-5],[16,-18],[5,-7],[1,-5],[3,-10],[2,-5],[3,-6],[6,-8],[3,-5],[23,-52],[3,-3],[2,1],[5,6],[2,2],[3,-1],[15,-11],[2,-3],[10,-24],[4,-4],[5,-2],[22,-1],[9,-5],[10,-10],[6,-9],[2,-2],[5,-2],[11,1],[5,-1],[4,-5],[6,-11],[8,-9],[9,-4],[18,7],[22,2],[8,6],[6,10],[8,9],[9,6],[8,2],[5,-7],[6,-12],[6,-6],[6,9],[-1,14],[12,7],[25,3],[-4,7],[-5,5],[-10,8],[-7,2],[-13,-4],[-7,2],[5,12],[25,27],[0,8],[-4,12],[-8,18],[-3,4],[-7,5],[-2,4],[-2,5],[-1,12],[-2,5],[-7,13],[-4,-2],[-3,-10],[-6,-11],[-9,-6],[-10,0],[-9,6],[-13,21],[-8,8],[-28,23],[-19,21],[-4,2],[-5,4],[-5,2],[-5,-6],[-1,-6],[0,-12],[-2,-4],[-2,-2],[-3,2],[-3,2],[-5,2],[-1,2],[-1,1],[-2,-2],[-3,-5],[-11,0],[-5,-1],[-5,-3],[-25,-24],[-5,1],[-4,14],[-3,3],[-4,-5],[-12,-20],[-2,-10],[1,-15],[2,-14],[2,-8],[-7,-4],[-6,3],[-10,13],[-11,11],[-2,3],[-5,9],[0,2],[-2,4],[-2,8],[-3,8],[-4,4],[-5,3],[-15,18],[-21,14],[-6,6],[-3,8],[-9,28],[-4,3],[-12,14],[-8,13],[-10,10],[-5,9],[3,2],[4,-3],[8,-7],[2,13],[6,12],[7,5],[7,-4],[2,-3],[3,-3],[2,-3],[1,-5],[0,-7],[-3,-11],[0,-7],[7,-21],[14,7],[10,20],[1,19],[2,4],[-7,8],[-8,6],[-33,15],[-15,12],[4,1],[4,-1],[4,2],[3,6],[-15,11],[-14,14],[-26,35],[-7,6],[-2,4],[1,7],[5,3],[7,1],[7,0],[4,-2],[24,-26],[9,-4],[-1,5],[-2,5],[-2,3],[-3,3],[0,3],[12,-6],[6,-1],[5,7],[-17,21],[-6,9],[0,5],[4,1],[7,-5],[13,-18],[5,-4],[2,-2],[31,-11],[18,-24],[11,-8],[6,2],[5,7],[4,7],[3,2],[5,-4],[7,-3],[7,1],[4,8],[-12,7],[-2,4],[2,5],[4,2],[53,-14],[-1,28],[16,-1],[19,-11],[10,-1],[-2,12],[-5,7],[-6,5],[-21,4],[-4,2],[-3,2],[-4,4],[-1,5],[4,5],[-25,21],[-6,10],[-1,5],[1,7],[2,7],[1,5],[5,4],[6,-2],[9,-8],[5,1],[10,6],[4,1],[17,-7],[25,-2],[5,-5],[2,-3],[4,-3],[2,-2],[1,-5],[0,-4],[0,-3],[0,-2],[6,-16],[6,-7],[8,-4],[10,-8],[5,-2],[5,4],[2,6],[0,2],[-1,2],[-1,2],[-2,3],[-2,1],[-13,-4],[-10,3],[-2,1],[-1,5],[0,1],[2,1],[1,2],[2,7],[3,7],[4,4],[4,2],[37,2],[47,-22],[3,-14],[39,-31],[-4,2],[-6,1],[-5,-2],[-2,-5],[2,-5],[6,-4],[37,-12],[4,-8],[-1,-6],[-1,-6],[1,-6],[1,-6],[-5,1],[-12,5],[-5,-4],[-3,-8],[-1,-7],[2,-5],[30,-7],[6,-6],[3,-1],[4,0],[65,26],[6,-2],[2,-11],[1,-3],[3,-1],[2,1],[2,0],[1,-6],[-14,-6],[-3,-7],[3,-10],[5,-7],[6,-6],[6,-2],[3,5],[-7,12],[3,12],[9,12],[29,29],[11,6],[12,2],[-18,-18],[-3,-8],[0,-18],[-1,-8],[-2,-7],[-10,-15],[-33,-31],[6,-9],[-4,-7],[-8,-4],[-7,-1],[1,-5],[1,-3],[-9,-4],[-11,-2],[-11,-5],[-5,-13],[3,-14],[11,-6],[20,0],[4,3],[2,7],[2,8],[1,6],[5,4],[7,3],[6,0],[3,-5],[6,-12],[12,-2],[13,3],[8,5],[-6,5],[-6,7],[2,12],[-6,2],[-13,-5],[6,18],[10,11],[26,22],[14,8],[6,1],[3,1],[6,6],[22,7],[17,11],[39,14],[6,4],[5,6],[6,10],[3,2],[9,3],[3,1],[-5,-13],[-7,-13],[-29,-38],[-6,-12],[-5,-13],[16,-18],[-6,-23],[-11,-23],[1,-17],[-2,-8],[-9,-16],[-2,-7],[-3,-14],[-2,-6],[-2,-4],[-2,-7],[-2,-7],[-2,-16],[-3,-7],[-4,-6],[-3,-8],[-1,-12],[0,-18],[2,-16],[4,-7],[1,-3],[-3,-7],[-6,-12],[0,-3],[2,-5],[1,-4],[2,-2],[10,12],[-3,-34],[-5,-10],[-9,-1],[-6,3],[-4,4],[-3,7],[-4,9],[-1,6],[-1,8],[-2,5],[-4,3],[-6,-7],[-1,-15],[3,-17],[0,-13],[-6,-18],[-10,-9],[-20,-11],[7,-3],[2,0],[-1,-6],[-4,-6],[-4,-7],[0,-20],[1,-2],[4,4],[6,8],[5,2],[4,-1],[5,-3],[3,-6],[-3,-11],[3,-4],[5,-3],[3,-4],[3,-2],[12,1],[6,-1],[7,-7],[2,-1],[5,-1],[6,4],[4,1],[6,5],[4,10],[5,7],[6,-2],[-1,-8],[1,-4],[4,-2],[4,-2],[-4,-8],[-5,-3],[-3,-4],[-1,-12],[-2,-7],[-4,-9],[-9,-14],[-11,-8],[-4,-5],[-2,-9],[-1,-10],[-4,-16],[-1,-9],[23,4],[2,2],[3,2],[3,1],[2,-3],[1,-4],[0,-5],[-2,-5],[7,-8],[10,3],[11,8],[8,9],[13,21],[5,3],[1,0],[1,-6],[2,-2],[3,1],[3,2],[32,37],[3,9],[5,4],[8,3],[5,0],[-1,-7],[6,-6],[3,-7],[3,-5],[6,2],[5,6],[1,6],[1,7],[2,6],[5,4],[6,-1],[6,-5],[7,-11],[1,0],[-1,-1],[-1,-7],[-4,-12],[-8,-14],[-64,-64],[-6,-16],[8,2],[14,9],[7,2],[7,4],[11,18],[6,2],[-2,-3],[-4,-9],[12,-3],[28,10],[10,-11],[-2,-2],[-2,-2],[2,-2],[2,-5],[2,-1],[-3,-8],[-1,-5],[0,-3],[2,-6],[1,-1],[2,1],[4,1],[5,4],[1,9],[-1,11],[1,9],[3,-7],[1,-3],[10,-14],[2,0],[0,-5],[-2,-5],[-1,-3],[-1,0],[4,-15],[0,-3],[-9,-16],[-1,-7],[4,-8],[6,-4],[7,-1],[5,-3],[3,-12],[-1,-7],[-5,-21],[-2,-6],[-3,-1],[-7,6],[-3,1],[-3,-4],[-1,-6],[-1,-5],[-15,3],[-36,-4],[-9,12],[3,1],[3,2],[2,4],[2,5],[-16,-3],[-30,-14],[-32,-7],[-9,0],[-7,8],[-2,11],[-1,11],[-3,6],[-9,0],[3,11],[4,12],[5,9],[5,5],[-7,2],[-6,-6],[-19,-28],[-1,-7],[3,-7],[4,-11],[-9,-6],[-10,-5],[-9,1],[-9,6],[4,1],[3,3],[2,3],[3,5],[-10,3],[-20,-6],[-10,5],[-6,12],[5,22],[-5,13],[-5,3],[-9,-4],[-5,1],[-3,4],[-5,6],[-4,3],[-17,-14],[0,-6],[10,-18],[4,-16],[2,-4],[26,-12],[6,-9],[5,-11],[5,-8],[8,-7],[18,-9],[7,-11],[2,-6],[1,-13],[1,-5],[4,-6],[5,-3],[6,-2],[54,-33],[3,-5],[2,-5],[2,-10],[2,-5],[9,-16],[4,-10],[1,-11],[-1,-14],[-2,-9],[-8,-19],[8,6],[14,28],[8,6],[10,1],[4,2],[5,3],[4,6],[0,6],[-4,11],[-3,14],[-3,6],[-3,0],[-2,-6],[3,-14],[0,-6],[-4,-6],[-4,-3],[-4,-1],[-5,-1],[-6,2],[-3,5],[-2,14],[-5,13],[-6,7],[-7,5],[-6,9],[-9,20],[-5,8],[-6,7],[-14,7],[-5,5],[-8,18],[-2,2],[-3,2],[-8,9],[-3,3],[-2,7],[1,4],[6,7],[11,7],[15,2],[14,-4],[11,-10],[4,-1],[12,9],[5,-1],[3,-1],[6,-2],[3,-3],[1,-3],[1,-9],[2,-4],[5,-1],[18,5],[26,0],[19,-6],[5,4],[4,7],[6,5],[6,2],[6,0],[1,-6],[5,-6],[7,-5],[6,-2],[7,0],[6,2],[5,6],[7,11],[0,8],[2,6],[7,11],[-4,9],[-6,4],[-7,2],[-6,5],[3,14],[-4,10],[-11,15],[-1,5],[2,6],[5,9],[0,5],[-2,6],[-3,6],[-2,5],[0,4],[1,4],[18,26],[1,3],[2,2],[2,6],[1,8],[0,6],[1,10],[3,4],[9,1],[11,5],[-1,7],[-35,23],[-8,8],[-3,15],[-1,7],[-4,9],[-1,4],[0,6],[-2,16],[-2,5],[-4,4],[-4,0],[-2,1],[1,7],[3,6],[5,7],[6,5],[4,2],[6,6],[0,11],[-4,13],[-5,9],[-23,22],[-4,6],[-3,15],[-7,4],[-10,0],[-7,6],[-6,9],[-6,7],[-7,4],[-12,3],[-5,4],[-4,5],[-3,7],[-1,6],[1,5],[5,10],[3,4],[13,7],[1,2],[-1,2],[0,3],[2,1],[10,0],[11,11],[6,24],[-3,22],[-13,8],[10,19],[6,7],[17,18],[3,9],[2,12],[2,0],[5,6],[-1,6],[-2,8],[0,8],[-7,0],[-3,1],[-3,3],[8,5],[49,3],[8,4],[3,0],[4,-4],[-4,-4],[-3,-8],[-3,-6],[-5,-2],[0,-4],[13,5],[24,24],[13,3],[4,-6],[11,-15],[7,-3],[16,6],[7,0],[7,-8],[12,-9],[18,4],[17,12],[10,13],[1,5],[1,4],[1,4],[2,3],[10,8],[24,25],[24,12],[2,3],[2,4],[2,3],[14,7],[5,4],[4,10],[0,-4],[8,9],[26,9],[10,6],[5,11],[-2,11],[-3,12],[2,14],[-2,8],[2,6],[9,9],[4,2],[3,1],[2,2],[1,7],[1,4],[3,3],[48,32],[53,18],[9,8],[12,3],[6,4],[11,11],[4,3],[13,2],[4,3],[-1,2],[-2,4],[-1,3],[4,0],[0,11],[6,6],[21,4],[20,15],[-6,-4],[-51,-12],[-18,8],[-7,0],[-16,-8],[-7,0],[0,4],[5,7],[2,4],[1,5],[0,-4],[4,9],[1,6],[1,13],[3,14],[4,13],[-2,3],[-2,2],[-1,5],[2,7],[10,2],[3,7],[-4,0],[5,7],[0,9],[5,7],[11,10],[3,7],[-2,11],[-4,5],[-13,10],[-3,7],[1,9],[2,8],[0,5],[-5,2],[2,7],[2,3],[2,3],[-7,6],[-7,0],[-8,-3],[-7,1],[3,2],[1,2],[-3,1],[-12,-1],[2,0],[-6,-5],[-9,-3],[-9,0],[-5,8],[2,6],[3,5],[4,3],[3,2],[0,4],[-6,0],[-5,-2],[-10,-6],[3,13],[9,12],[18,16],[-7,2],[-12,-4],[-11,-9],[-8,-10],[3,1],[7,-1],[0,-4],[-9,-10],[-3,-2],[2,0],[-2,-1],[-1,-1],[-1,-2],[2,-2],[4,-5],[2,-1],[-3,-4],[-7,-6],[-1,-4],[-2,-7],[-3,-3],[-7,-5],[-11,-10],[-4,-8],[-4,-10],[2,0],[-1,-7],[2,-4],[3,-2],[3,1],[-2,-3],[-9,-5],[3,-3],[7,-4],[3,-1],[3,1],[4,6],[9,5],[9,14],[6,2],[0,-4],[-1,-3],[-1,-2],[-1,-2],[-3,-1],[0,-4],[37,24],[-4,-12],[-9,-7],[-10,-4],[-7,-7],[-7,-11],[-9,-12],[-10,-8],[-13,-6],[-6,-10],[-4,-4],[-4,-2],[-48,-1],[-36,-21],[-9,9],[-6,4],[-4,-3],[-3,-5],[-2,-3],[-2,0],[-4,2],[-3,5],[-3,7],[-3,6],[-5,2],[-18,-4],[4,13],[5,28],[3,10],[9,12],[2,6],[1,11],[-2,2],[-4,1],[-4,4],[1,6],[4,13],[-1,3],[-4,2],[-4,3],[-1,6],[0,6],[9,8],[11,-3],[19,-13],[0,-8],[6,1],[7,6],[4,5],[2,6],[7,22],[7,10],[7,5],[8,2],[16,0],[8,2],[8,5],[7,9],[-8,8],[-2,4],[1,8],[3,5],[18,12],[8,1],[7,8],[13,10],[-9,-1],[-27,-15],[-33,-3],[-13,9],[-6,8],[0,9],[3,8],[5,17],[4,9],[-2,3],[-2,7],[-2,2],[6,7],[6,9],[-12,9],[-4,4],[9,14],[13,9],[34,6],[24,11],[27,0],[4,-2],[6,-8],[2,-2],[11,3],[10,5],[5,6],[9,17],[6,7],[35,18],[24,1],[-4,-7],[-15,-18],[-10,-5],[-3,-5],[-7,-12],[-3,-4],[-4,-2],[-3,-2],[-4,-2],[-19,-18],[-7,-2],[-20,-37],[6,1],[8,9],[6,2],[-9,-16],[-5,-6],[-6,-2],[4,-6],[5,-1],[5,2],[6,1],[0,-4],[-7,-10],[-4,-7],[-1,-7],[4,-4],[6,4],[6,7],[4,7],[6,7],[16,9],[11,14],[16,12],[-3,4],[-3,-1],[-2,-3],[-2,-4],[0,4],[6,5],[11,13],[26,11],[9,8],[1,8],[5,7],[20,9],[-7,4],[-25,-12],[-8,1],[-14,6],[-9,-3],[2,7],[15,27],[10,10],[4,9],[-1,1],[-1,3],[6,4],[3,3],[2,5],[-2,4],[-2,-3],[-3,-1],[-2,1],[-2,3],[0,8],[-6,8],[-8,6],[-7,3],[-36,-5],[1,0],[-21,-14],[-7,-8],[-5,-2],[-1,1],[-1,6],[0,1],[-4,0],[-13,-5],[-2,-5],[0,-7],[3,-7],[-8,-9],[-9,-3],[-19,4],[-42,-4],[-48,11],[-6,7],[-11,18],[-4,4],[-9,5],[-5,6],[-20,33],[-2,12],[-1,3],[-3,5],[-2,7],[-1,6],[-2,5],[-3,3],[-4,1],[-3,-1],[-2,-5],[-1,-3],[-3,3],[-3,6],[-2,4],[0,5],[0,5],[2,10],[-32,-12],[-6,-4],[1,-8],[5,-10],[5,-7],[-6,-15],[-11,-9],[-14,-5],[-10,1],[-22,10],[-3,4],[-2,8],[-4,2],[-4,-2],[-4,-2],[4,8],[-7,5],[-26,-5],[-4,1],[-9,6],[-5,8],[-4,2],[-8,-1],[-51,24],[-8,8],[-11,4],[-17,14],[-8,3],[-5,4],[-18,25],[-5,2],[-19,2],[-4,-3],[-3,-8],[-3,-9],[-4,-9],[-6,7],[-3,4],[-2,6],[4,10],[3,2],[4,0],[-5,7],[-7,3],[-5,-4],[-2,-12],[-4,-2],[-17,8],[-6,0],[3,-4],[-9,1],[-8,7],[-14,20],[-9,9],[-33,11],[5,1],[9,10],[3,0],[9,-10],[4,0],[4,7],[-6,6],[-5,7],[10,8],[0,4],[-6,-1],[0,4],[1,5],[1,6],[-2,7],[-6,2],[-5,1],[-4,3],[-3,3],[-5,-1],[-9,-4],[-5,1],[-4,3],[-64,75],[-8,14],[-3,4],[-2,5],[0,8],[0,9],[-1,6],[-8,22],[-2,14],[3,47],[4,15],[10,17],[19,23],[6,4],[5,-1],[5,-3],[6,0],[5,4],[2,6],[3,14],[-2,23],[9,19],[12,17],[7,14],[2,0],[2,-6],[2,-7],[2,-7],[5,-3],[5,1],[9,6],[-2,12],[5,9],[8,6],[6,2],[8,-3],[14,-14],[40,-15],[11,-1],[1,-1],[1,-2],[2,-1],[1,4],[0,4],[-1,2],[-1,2],[-32,7],[-11,5],[-13,11],[-11,4],[-3,6],[0,10],[0,12],[27,22],[4,1],[12,6],[9,7],[10,3],[5,3],[-25,-3],[-61,-32],[-5,-5],[-5,-8],[2,0],[-11,-5],[-21,8],[-22,16],[-14,14],[-5,10],[-3,10],[-4,9],[-7,7],[-30,14],[-8,10],[-4,21],[5,20],[17,34],[2,9],[6,30],[1,2],[-1,8],[1,2],[2,2],[1,2],[2,11],[-1,4],[-3,6],[9,0],[8,4],[7,7],[9,16],[1,1],[1,1],[0,5],[-8,7],[-2,3],[-2,-1],[-1,-1],[-1,-2],[4,-9],[-2,-5],[-6,-2],[-5,0],[-8,3],[-14,16],[-7,5],[1,8],[3,2],[6,2],[19,14],[5,-1],[7,-8],[7,-5],[4,8],[-20,15],[-3,6],[0,8],[2,12],[5,20],[-3,0],[-10,-4],[2,4],[-2,4],[-3,2],[-2,2],[-3,0],[7,9],[10,4],[33,0],[6,3],[7,5],[-2,4],[6,13],[7,14],[8,13],[8,9],[14,7],[41,1],[17,-7],[8,-6],[5,-12],[-1,0],[12,-13],[50,-35],[7,-2],[7,4],[6,1],[8,-2],[6,1],[-1,10],[1,2],[3,4],[2,2],[-5,6],[-11,6],[-4,8],[33,0],[-1,6],[-1,2],[11,0],[0,4],[-6,2],[-6,3],[-7,5],[-5,6],[-7,9],[1,3],[4,3],[3,13],[4,2],[5,1],[3,2],[4,4],[0,2],[0,5],[0,2],[6,5],[18,10],[-17,-2],[-10,-4],[-5,-8],[-38,4],[-9,4],[-7,6],[-33,0],[-5,4],[-11,13],[-5,3],[-12,2],[-5,3],[3,11],[12,5],[3,8],[-3,0],[-2,1],[-3,2],[-1,5],[8,7],[10,5],[19,5],[10,-2],[4,1],[13,11],[2,5],[-1,5],[3,3],[5,1],[8,0],[2,2],[6,8],[2,2],[7,3],[12,10],[6,3],[53,-1],[7,2],[5,8],[-6,2],[-2,6],[0,8],[2,8],[1,3],[5,5],[2,4],[4,12],[6,6],[22,2],[15,8],[5,1],[11,-4],[3,0],[8,4],[42,-3],[13,-6],[13,-2],[13,4],[12,8],[12,11],[-9,3],[-33,-20],[-5,1],[-11,6],[-79,6],[-14,-7],[-8,-1],[-10,3],[-9,6],[-2,10],[1,2],[3,1],[2,2],[0,3],[-2,1],[-5,4],[3,3],[10,13],[-1,3],[0,2],[-1,1],[-2,2],[0,4],[94,16],[94,15],[16,-7],[1,-3],[1,-7],[1,-7],[2,-3],[19,-6],[3,-4],[-2,-10],[-6,-7],[-8,-2],[-8,-1],[-7,-2],[5,-3],[6,-2],[4,-4],[0,-11],[-2,-6],[-5,-3],[-21,-1],[-9,-5],[-18,-14],[10,-14],[2,-7],[-4,-11],[2,0],[-1,-5],[1,-4],[2,-2],[3,-2],[12,11],[4,6],[8,25],[3,4],[2,3],[4,0],[3,-3],[2,-6],[-1,-7],[4,-5],[3,4],[2,6],[3,3],[9,0],[4,-3],[5,-5],[-2,-4],[-2,-2],[-2,-2],[-2,-1],[-1,-1],[-1,-6],[0,-2],[-2,-7],[0,-6],[1,-7],[2,-7],[-6,-24],[-2,-10],[4,0],[33,42],[5,8],[8,19],[7,6],[8,0],[6,-5],[-1,-11],[12,-3],[19,17],[11,-6],[7,-12],[4,-3],[6,-1],[15,1],[7,3],[7,6],[11,6],[13,0],[11,-8],[5,-19],[-1,-10],[-2,-7],[-30,-29],[5,-5],[19,-11],[28,-29],[25,-15],[35,-11],[7,-4],[4,-6],[3,-5],[3,-5],[28,-11],[12,-8],[1,-12],[3,-2],[1,-2],[1,-4],[1,-4],[0,-2],[0,-3],[0,-3],[2,-5],[4,-8],[5,-6],[6,-4],[22,-3],[8,-3],[8,-6],[3,-5],[0,-7],[-2,-5],[-3,-5],[11,-8],[3,-6],[2,-22],[2,-7],[1,-6],[-2,-8],[15,-20],[4,-9],[3,-9],[0,-5],[-2,-5],[-1,-9],[0,-5],[2,-4],[0,-3],[-1,-3],[-3,-5],[-2,-4],[-1,-9],[1,-5],[8,-10],[-7,-15],[-3,-8],[-1,-10],[-2,-28],[-2,-9],[2,-3],[-2,-12],[3,-11],[6,-8],[6,-6],[-4,-4],[-12,-4],[-7,0],[-2,0],[-16,15],[-7,5],[-7,0],[3,-11],[5,-7],[21,-19],[35,-5],[15,-7],[6,-6],[15,-8],[5,-5],[-6,-5],[1,-5],[2,-3],[3,-1],[3,1],[0,-4],[-15,-4],[0,-4],[12,1],[5,-2],[4,-7],[-4,-1],[-3,-3],[-7,-8],[10,0],[-6,-5],[4,-1],[14,6],[55,-13],[-1,-2],[0,-1],[-1,-1],[4,-3],[15,-5],[11,-7],[3,-1],[1,-4],[-1,-8],[-4,-7],[-6,-1],[3,-11],[7,-5],[7,5],[4,17],[4,9],[9,-5],[11,-12],[6,-10],[-6,-4],[-8,-1],[-8,2],[-4,3],[1,-5],[-3,-3],[-2,-5],[1,-5],[3,-7],[3,-2],[3,1],[3,-1],[4,-6],[3,-8],[-2,-2],[-4,2],[-5,0],[-3,-2],[-12,-10],[10,-2],[20,-8],[10,-2],[6,2],[2,0],[1,-6],[0,-5],[-1,-3],[-2,-1],[-1,0],[-2,-2],[-1,-2],[0,-4],[25,-8],[1,-2],[-2,-10],[1,-4],[2,-1],[7,2],[4,-1],[0,-4],[-2,-2],[-4,-6],[3,0],[3,-1],[3,-1],[3,-2],[-5,-5],[-2,-6],[0,-6],[3,-8],[-6,-4],[-7,-3],[-14,0],[0,-5],[16,1],[8,-2],[5,-7],[-2,-1],[-4,-3],[11,-8],[1,-2],[0,-3],[1,-3],[1,2],[1,2],[2,8],[2,4],[2,5],[2,4],[4,3],[3,1],[12,-1],[-11,13],[-4,8],[2,10],[6,5],[7,1],[7,-1],[6,-4],[2,-4],[2,-6],[2,-3],[3,3],[3,8],[2,2],[3,0],[6,-2],[4,-5],[3,-8],[3,-9],[-3,-3],[-6,-4],[-3,-1],[9,-29],[3,-16],[-3,-12],[0,-4],[4,2],[3,4],[4,4],[1,4],[1,6],[3,-1],[6,-7],[17,-14],[8,-10],[5,-12],[-1,-4],[-3,-3],[-5,-2],[-43,-7],[-32,4],[-6,-2],[-14,-5],[-31,-3],[-8,2],[-5,4],[-10,14],[-6,6],[-6,4],[-24,5],[-5,3],[-2,5],[1,7],[-9,19],[-5,6],[-5,4],[0,-10],[-6,-2],[-13,0],[20,-11],[6,-1],[2,-2],[0,-4],[0,-4],[-1,-3],[-3,-3],[-2,-1],[-7,0],[2,4],[-5,0],[-12,-6],[-7,-2],[-25,0],[0,-4],[8,0],[7,-2],[5,-5],[6,-9],[-4,-4],[-8,-2],[-4,-4],[-7,-19],[-17,-3],[-15,-9],[5,-2],[11,2],[3,-4],[7,-12],[4,-3],[5,3],[1,10],[41,16],[55,-4],[17,-7],[16,-12],[14,-19],[-4,-5],[-19,-12],[-2,0],[-9,0],[-3,-1],[-1,-4],[-1,-4],[-1,-3],[-38,-36],[-6,-3],[-7,-1],[0,-4],[2,-1],[5,-3],[-5,-11],[-22,-8],[-10,-10],[-3,0],[-3,0],[-2,0],[-3,-2],[-4,-5],[-1,-1],[-5,-1],[-10,-5],[-6,-2],[-7,1],[-3,-2],[-1,-5],[0,-4],[2,-7],[0,-3],[-3,-7],[-4,-5],[-4,-1],[-5,3],[-11,14],[-2,2],[-7,-8],[0,-4],[5,-2],[-8,-8],[-44,-28],[-7,-1],[0,-4],[92,8],[0,-4],[-24,-2],[-7,-3],[-18,-14],[-7,-1],[-21,3],[-11,6],[-19,-5],[0,-4],[16,-7],[9,-1],[17,5],[20,-9],[8,0],[6,4],[13,13],[36,9],[6,-6],[13,-2],[4,2],[1,2],[0,4],[1,4],[2,2],[2,0],[8,-4],[0,-4],[-3,-3],[-3,-4],[-2,-4],[-2,-5],[6,-4],[4,-1],[3,1],[-1,0],[-1,1],[0,3],[20,-1],[10,-4],[14,-15],[17,-1],[7,-4],[1,-4],[-44,9],[-4,1],[-1,-1],[-2,3],[-5,4],[-3,0],[0,-3],[17,-21],[16,-7],[3,-5],[0,3],[1,1],[0,-2],[1,-2],[-2,-4],[7,0],[3,-2],[3,-2],[0,-2],[-1,-6],[7,0],[37,-14],[9,-9],[17,-6],[15,-11],[6,-1],[-1,14],[8,8],[10,5],[8,6],[-8,4],[7,4],[18,0],[4,3],[10,11],[5,2],[-2,9],[-2,4],[-2,3],[4,4],[9,5],[3,6],[3,2],[6,-1],[3,3],[0,2],[1,8],[9,4],[11,0],[20,-4],[5,-4],[4,-1],[4,3],[4,1],[4,-3],[3,-5],[4,-3],[16,9],[7,0],[0,-14],[5,0],[16,5],[-4,-9],[-7,-4],[-15,0],[-9,-3],[-29,-30],[-10,-6],[-50,-11],[-9,-7],[4,-6],[5,0],[4,4],[6,2],[44,0],[2,2],[6,8],[3,3],[32,12],[4,-2],[3,-4],[5,-11],[10,-14],[7,-1],[22,10],[8,-7],[22,12],[4,-3],[1,-7],[0,-9],[-2,-9],[38,0],[0,18],[8,9],[11,3],[8,-2],[42,-16],[10,-7],[8,-2],[3,-5],[2,-5],[3,-5],[3,-2],[1,-2],[5,0],[2,-1],[0,-3],[0,-3],[0,-3],[2,0],[10,5],[4,1],[0,-4],[-11,-7],[-35,7],[-3,-1],[-8,-7],[-5,-3],[-7,-1],[-5,1],[-5,2],[-5,3],[0,2],[2,0],[2,4],[-6,3],[-22,1],[0,-4],[4,0],[6,-3],[9,-9],[2,-2],[7,0],[4,-2],[-3,-3],[-6,-2],[-2,-3],[-7,3],[-6,-3],[-7,-6],[-11,-4],[-17,-15],[1,-2],[1,-6],[-6,-3],[-1,-8],[2,-8],[1,-5],[-2,-3],[-1,-4],[1,-4],[2,-6],[-4,-4],[2,-3],[2,-9],[-36,-4],[0,4],[8,7],[3,1],[-4,1],[-11,-5],[2,0],[-2,0],[-2,0],[-2,2],[-2,2],[6,4],[2,0],[0,4],[-4,0],[0,4],[4,0],[3,0],[3,3],[2,6],[-7,-1],[-36,-21],[-5,1],[-2,9],[7,7],[16,9],[1,3],[1,9],[2,4],[2,3],[9,5],[0,4],[-8,0],[-7,-5],[-22,-23],[-18,-11],[-10,-2],[-18,5],[-54,36],[0,-4],[16,-16],[37,-25],[22,-5],[4,-5],[4,-5],[4,-7],[3,-4],[26,-12],[49,-44],[9,-4],[5,-3],[10,-14],[3,-2],[6,-1],[18,-9],[5,-6],[-2,-10],[-11,-13],[2,-6],[-4,-13],[6,-6],[18,-1],[-1,0],[4,-5],[9,-23],[-6,0],[0,-5],[2,-2],[2,-6],[-5,0],[-4,-3],[-1,-3],[25,-3],[24,-15],[3,-4],[-2,-5],[-9,-5],[-2,-6],[12,1],[5,-1],[0,-4],[-7,-3],[-15,2],[-7,-3],[-4,-1],[-6,-5],[-11,-15],[10,-3],[23,17],[11,2],[-2,-5],[-2,-2],[-2,-2],[-3,-4],[0,-7],[2,-3],[3,-1],[2,0],[-2,-8],[-5,-4],[-5,1],[-3,8],[-2,0],[-1,-9],[-4,-10],[-1,-6],[2,-5],[3,-6],[3,-4],[6,-4],[-1,-6],[-2,-7],[-2,-12],[-3,-4],[-6,-5],[2,-7],[-3,-3],[-8,-6],[5,-2],[6,-4],[5,-7],[5,-7],[-4,-5],[-8,-1],[-2,-2],[0,-4],[0,-4],[2,-3],[1,-2],[6,-2],[6,-6],[2,-5],[-4,-3],[-2,-3],[-5,-19],[-3,-2],[-20,-17],[-2,-1],[0,-5],[0,-4],[1,-2],[11,-4],[19,-12],[49,-20],[0,-4],[-11,0],[-32,-21],[24,8],[14,1],[7,-9],[-1,-2],[0,-2],[0,-1],[1,-3],[-3,-8],[1,-7],[9,-11],[2,-7],[0,-10],[3,-5],[9,-6],[12,2],[12,7],[8,9],[-2,3],[-2,5],[-1,5],[0,5],[-7,6],[-2,2],[2,5],[15,11],[3,2],[8,4],[13,17],[7,4],[1,2],[1,4],[1,10],[-4,4],[0,4],[6,5],[-6,3],[7,7],[15,4],[6,5],[-3,6],[1,5],[2,4],[4,0],[5,-2],[1,3],[1,7],[1,6],[2,8],[4,8],[4,5],[-12,0],[-8,3],[-7,8],[-5,14],[-2,10],[0,7],[4,5],[6,5],[3,7],[-1,9],[15,10],[4,6],[4,12],[3,3],[4,2],[8,-7],[3,-16],[0,-17],[-5,-13],[5,0],[4,2],[7,10],[0,3],[-1,4],[-1,6],[0,3],[-1,9],[0,11],[2,11],[2,8],[3,8],[1,7],[-2,7],[-3,8],[3,2],[2,4],[2,4],[0,6],[-1,7],[-3,2],[-9,-1],[3,9],[1,4],[0,6],[-3,17],[-4,15],[-1,19],[0,5],[2,7],[5,15],[6,15],[9,15],[35,28],[29,37],[0,5],[9,7],[2,6],[2,16],[-1,2],[4,3],[14,17],[6,3],[13,4],[18,10],[46,-6],[26,-20],[1,-4],[-1,-7],[2,-7],[3,-5],[4,-3],[2,-1],[4,-5],[7,-17],[4,-7],[33,-33],[47,-32],[10,-10],[21,-9],[55,-39],[63,-73],[12,-22],[9,-25],[6,-25],[2,-13],[0,-7],[-1,-6],[-7,-20],[2,-13],[4,-13],[5,-10],[4,-7],[1,-12],[3,-12],[6,-10],[7,-6],[-3,-9],[0,-7],[2,-6],[10,-16],[1,-11],[-1,-11],[-1,-14],[1,-4],[2,-1],[0,-3],[-2,-6],[-2,-5],[-1,-6],[-1,-5],[-2,-2],[-2,-2],[-3,-13],[-2,-5],[-2,-4],[-11,-8],[-5,-8],[-5,-9],[-4,-4],[-14,17],[-9,5],[-19,3],[-2,0],[-4,4],[-3,0],[-1,-1],[-3,-6],[-1,-1],[-4,0],[-3,2],[-3,4],[-2,6],[0,8],[2,53],[0,7],[-2,5],[-3,2],[-4,-1],[-1,-5],[2,-8],[-2,-3],[-11,-6],[-3,-3],[-8,-13],[-7,-5],[-21,-11],[0,-1],[-1,-4],[-2,-3],[6,-11],[12,-18],[5,-12],[0,-3],[0,-4],[0,-4],[1,-3],[5,-10],[6,-24],[0,-7],[-1,-5],[-12,-16],[-2,-1],[-2,-1],[0,-3],[1,-4],[0,-4],[1,0],[1,-3],[-1,-4],[-4,-2],[-7,-5],[-1,-2],[0,-5],[2,-4],[4,-7],[-4,-16],[2,-12],[5,-10],[4,-24],[8,-21],[2,-9],[1,-10],[3,-12],[5,-11],[4,-9],[18,-14],[6,-10],[-3,-17],[6,-16],[3,-6],[8,-8],[3,-4],[9,-11],[25,-8],[11,-8],[8,-12],[12,-12],[4,-6],[3,-8],[8,-12],[28,-23],[15,-28],[5,-4],[3,-2],[16,-18],[25,-18],[4,-6],[3,-11],[1,-36],[2,-6],[4,1],[9,6],[6,-1],[4,-4],[1,-6],[-3,-9],[-3,-2],[-9,-6],[-11,-12],[-11,-5],[-2,-3],[-3,-6],[0,-3],[1,-3],[0,-5],[-1,-7],[0,-5],[0,-6],[-1,-10],[5,2],[6,3],[4,5],[9,18],[4,6],[5,2],[7,1],[12,-4],[1,-2],[0,-9],[3,-12],[1,-10],[2,-9],[4,-3],[3,6],[6,43],[2,3],[4,5],[2,4],[-1,3],[-2,2],[-1,3],[0,4],[4,4],[9,-3],[4,3],[0,5],[5,0],[7,-4],[5,-9],[-2,-7],[1,-9],[2,-5],[4,3],[5,13],[2,7],[1,6],[-1,15],[1,6],[6,-3],[6,-4],[7,-3],[6,0],[6,5],[-10,11],[-3,8],[4,10],[-5,4],[-10,4],[-5,4],[-3,4],[-3,7],[-2,6],[4,3],[11,-2],[6,-3],[4,-5],[2,-6],[2,-4],[4,0],[4,4],[-2,7],[0,8],[2,7],[9,5],[9,14],[4,4],[20,6],[8,1],[11,-7],[15,-20],[9,-6],[8,5],[1,18],[2,7],[5,-4],[1,-6],[-1,-8],[-1,-7],[-1,-4],[6,-9],[8,2],[9,7],[5,9],[-2,7],[-5,15],[-2,6],[0,2],[0,6],[0,4],[11,3],[4,4],[2,11],[-1,7],[-3,6],[-1,7],[3,11],[-2,7],[1,6],[1,6],[0,7],[3,3],[4,8],[1,8],[-10,7],[-1,6],[0,8],[-1,7],[-2,5],[-5,9],[-2,6],[14,18],[24,55],[13,20],[15,14],[5,9],[6,7],[18,11],[2,4],[2,7],[2,3],[8,8],[2,4],[2,7],[-1,9],[-2,9],[-2,6],[3,4],[2,3],[4,0],[3,-3],[-4,-8],[1,-7],[3,-4],[5,-2],[3,2],[3,9],[2,2],[7,2],[4,2],[30,26],[1,4],[-1,5],[-3,10],[-1,7],[1,8],[2,6],[4,3],[7,2],[0,5],[-3,8],[-2,7],[-1,7],[-1,6],[1,4],[5,5],[5,1],[7,-1],[6,2],[4,11],[-7,1],[-5,4],[-3,8],[2,15],[3,4],[2,2],[2,2],[1,8],[-1,5],[-6,7],[-3,4],[7,3],[4,4],[24,37],[3,9],[-3,3],[-5,6],[-3,5],[2,2],[10,2],[6,2],[5,4],[-13,4],[-6,3],[-2,8],[1,3],[2,3],[2,4],[0,6],[0,14],[0,4],[0,2],[-1,1],[0,1],[1,4],[-3,4],[-2,5],[1,6],[3,6],[-5,16],[0,7],[3,9],[2,4],[6,7],[3,5],[1,5],[2,12],[1,5],[3,14],[7,9],[9,3],[14,-10],[10,2],[11,5],[7,8],[-7,6],[-22,11],[42,-6],[14,-7],[-4,-7],[-2,-3],[-2,-2],[9,-5],[37,-8],[2,7],[-4,7],[-8,3],[6,10],[11,-1],[21,-9],[46,8],[6,-2],[11,-8],[25,-7],[5,1],[2,3],[6,10],[2,3],[-2,9],[-4,4],[-4,2],[-2,3],[-3,12],[-9,6],[-18,1],[-5,-1],[-12,-6],[-6,-1],[-44,14],[-9,7],[-4,13],[6,5],[36,-7],[-3,2],[-1,2],[0,4],[8,0],[4,1],[3,3],[-4,4],[-11,4],[-4,4],[2,7],[14,-1],[3,5],[-40,14],[8,9],[10,0],[35,-8],[4,-4],[6,-3],[11,2],[21,-5],[2,2],[0,8],[-2,6],[-3,3],[-25,5],[-10,6],[-1,11],[-3,0],[-3,0],[-3,2],[-3,2],[10,5],[32,-5],[-1,6],[-1,2],[10,7],[23,-15],[15,3],[15,-6],[5,-3],[5,-1],[5,2],[6,5],[4,8],[-9,4],[-26,0],[-3,3],[-3,5],[-4,2],[-7,-7],[-4,1],[-4,3],[-3,5],[0,5],[1,4],[1,6],[-2,6],[-4,2],[-34,-6],[-9,1],[-8,7],[1,9],[-7,4],[-15,3],[13,8],[4,4],[-12,4],[-24,-15],[-12,3],[7,17],[12,5],[13,0],[10,7],[-7,3],[-43,-4],[-7,-4],[3,-8],[-1,-6],[-4,-4],[-5,-2],[-14,3],[-7,4],[-6,6],[7,7],[18,5],[5,8],[-13,5],[-26,2],[-12,9],[4,4],[-16,24],[-2,3],[-6,3],[-3,2],[-1,3],[-2,8],[-2,4],[-2,10],[3,5],[6,0],[12,-8],[9,-3],[8,1],[7,5],[-5,2],[-16,10],[-9,3],[-3,2],[-3,7],[3,4],[2,0],[2,0],[-4,7],[-6,3],[-6,4],[-3,11],[7,4],[20,0],[8,2],[1,5],[-3,6],[-6,7],[19,-4],[-4,7],[-5,5],[-6,3],[-6,1],[-5,-2],[-7,-11],[-5,-3],[-8,3],[-7,10],[-1,12],[7,11],[-5,14],[7,8],[9,6],[-2,9],[6,3],[21,-3],[-31,31],[-14,21],[9,17],[12,0],[6,5],[2,13],[-2,17],[-6,5],[-7,2],[-5,11],[23,10],[9,-1],[-4,-18],[6,0],[6,3],[6,5],[4,7],[0,6],[-3,9],[-4,8],[-3,3],[-61,4],[3,11],[4,5],[57,-3],[11,-4],[40,-31],[22,-9],[11,-1],[0,11],[7,6],[34,4],[8,3],[6,8],[-2,4],[-9,9],[10,5],[24,-14],[12,2],[10,7],[99,4],[2,-2],[4,-6],[3,-2],[3,-5],[2,-2],[12,4],[21,-8],[39,-36],[60,-18],[17,-13],[6,-2],[13,0],[53,-13],[12,5],[26,-8],[8,3],[13,11],[8,2],[64,-16],[33,8],[60,-8],[6,4],[-2,0],[-3,1],[-2,3],[-2,4],[19,1],[9,-3],[8,-6],[-1,-3],[-1,-5],[44,-17],[46,-3],[-43,-13],[-7,2],[-7,10],[-44,4],[1,-3],[2,-3],[1,-1],[3,-1],[-5,-3],[-10,1],[-4,-6],[29,-11],[-8,-6],[-47,-7],[37,-5],[6,-5],[5,-7],[28,-28],[-10,-5],[-103,19],[-102,19],[-6,-2],[-4,-5],[-1,-4],[5,-2],[23,0],[126,-34],[127,-35],[10,-7],[5,-8],[-11,-5],[-34,13],[0,-4],[8,-5],[15,-19],[18,-8],[11,-8],[10,-11],[6,-10],[-7,-4],[-16,4],[-7,-5],[6,-8],[-3,-6],[-15,-6],[7,-10],[9,-2],[58,8],[-2,3],[-1,3],[-2,6],[15,5],[67,-6],[31,-12],[40,-26],[8,-1],[13,4],[5,0],[12,-7],[4,-1],[2,-4],[4,-29],[6,-13],[4,-7],[4,-4],[0,-4],[-25,5],[-7,-3],[-7,-6],[-19,-12],[-2,-4],[-18,-33],[-7,-6],[-9,-2],[-7,0],[-9,3],[-4,0],[-2,-5],[-1,-5],[0,-5],[-2,-5],[-1,-3],[-7,-6],[-43,-9],[-34,-18],[-15,-12],[52,13],[11,6],[5,1],[3,-1],[3,-6],[2,-1],[4,1],[9,3],[11,1],[8,-3],[8,-6],[8,-8],[2,-2],[3,0],[2,-2],[2,-4],[0,-3],[0,-4],[-1,-4],[-1,-1],[4,-5],[4,-3],[4,0],[4,6],[4,8],[4,4],[4,2],[10,1],[4,3],[5,2],[7,-2],[5,-3],[3,-3],[20,-29],[2,1],[1,-7],[2,-4],[7,-6],[5,-7],[-1,-5],[-4,-3],[-2,-3],[-1,-10],[-1,-17],[1,-15],[2,-7],[1,-3],[-1,-7],[-3,-10],[-5,-4],[-16,-6],[-5,-12],[-11,-7],[-13,-4],[-9,-5],[-42,-37],[-6,-3],[-7,0],[-25,11],[-14,2],[5,-10],[0,-5],[-2,-7],[-6,-13],[-3,-3],[-5,-3],[-17,-4],[-10,-14],[-6,-1],[-12,3],[-4,7],[-9,31],[-7,7],[-13,3],[-25,11],[-13,2],[0,-4],[7,-9],[8,-7],[10,-4],[2,-5],[-3,-9],[-10,-8],[-12,0],[-45,10],[-12,5],[-28,25],[-11,2],[-7,-12],[0,-7],[4,-2],[9,1],[4,-5],[4,-5],[4,-4],[14,-5],[-5,-6],[-12,-6],[-11,-2],[-9,5],[-4,-1],[-2,-8],[1,-8],[4,-5],[4,-3],[5,0],[22,4],[5,-2],[4,-5],[3,-5],[4,-4],[26,-18],[6,-11],[-8,-11],[-25,3],[-11,-4],[9,-10],[9,-10],[10,-6],[10,-2],[19,12],[8,1],[4,-17],[-2,-12],[-5,-11],[-17,-29],[0,-3],[4,-8],[4,-6],[31,-13],[8,0],[9,5],[10,10],[1,2],[1,3],[0,7],[0,3],[2,2],[2,1],[2,2],[6,14],[4,6],[4,3],[10,-4],[1,-10],[-8,-40],[-8,-6],[-17,-6],[-4,0],[9,-10],[2,-7],[-8,-5],[-4,-5],[-3,-7],[-2,-6],[4,0],[-4,-6],[-2,-8],[-3,-5],[-4,-1],[2,-8],[9,-13],[4,-8],[-2,0],[1,-3],[0,-1],[-1,-4],[5,-14],[3,-8],[3,-6],[8,-8],[17,-8],[8,-7],[2,-3],[0,-4],[0,-3],[1,-4],[3,-3],[17,-12],[17,-3],[4,-6],[-3,0],[-2,-2],[-3,-2],[6,-10],[10,-9],[9,-7],[8,-3],[6,-3],[16,-29],[16,-14],[36,-21],[15,-18],[5,-12],[11,-18],[4,-4],[5,-12],[3,-5],[10,-10],[8,-20],[-5,-18],[-10,-17],[-7,-18],[2,0],[-3,-18],[-9,-34],[-3,-17],[-2,-31],[-2,-9],[-11,-33],[1,-5],[1,-3],[-2,-8],[2,-4],[-3,-2],[-1,-3],[-1,-3],[-1,-4],[-2,-4],[-2,-3],[-3,-1],[-4,0],[-6,-2],[-1,-5],[1,-20],[-3,-10],[-7,-3],[-29,7],[-2,-2],[-5,-10],[-2,-4],[-14,-5],[-29,16],[-16,-5],[-6,-4],[-16,-5],[-6,-5],[-2,-4],[-3,-11],[-1,-2],[-3,0],[-4,-3],[-3,-4],[-1,-5],[2,-1],[5,-7],[-22,-28],[0,-2],[2,-8],[1,-4],[-2,-3],[-11,-9],[-9,-12],[-4,-8],[-2,-7],[0,-12],[4,-7],[3,-6],[0,-7],[-60,8],[-2,-2],[0,-3],[1,-9],[-1,-5],[-23,-9],[-5,-6],[1,-11],[-16,-10],[-5,-6],[-2,-5],[-6,-15],[-2,-12],[-12,-5],[-61,5],[-16,-10],[-24,1],[-4,-3],[-1,-6],[0,-9],[-3,-18],[-9,-9],[-20,-12],[2,0],[-4,-5],[-35,-33],[-10,-5],[-4,-1],[-4,-3],[-11,-18],[-5,4],[-17,-1],[-15,6],[-17,-9],[-7,4],[1,2],[4,7],[-19,19],[-6,9],[2,0],[4,0],[2,0],[-2,10],[2,3],[5,-1],[5,-4],[0,-10],[5,-10],[7,-7],[5,-1],[1,7],[-3,9],[-6,9],[-8,6],[-15,22],[-2,7],[-5,18],[-2,5],[-15,7],[-32,5],[-12,14],[-4,15],[-3,1],[-7,-5],[-6,-3],[-5,6],[-2,8],[4,7],[-11,8],[2,8],[0,6],[-2,6],[0,8],[2,11],[6,6],[7,3],[7,-3],[5,-8],[0,-8],[-1,-8],[2,-9],[4,-3],[5,6],[4,10],[2,8],[-7,12],[-2,4],[-5,2],[-5,1],[-5,2],[-2,7],[1,4],[-1,1],[-2,3],[4,13],[12,12],[4,16],[1,13],[-2,11],[-4,9],[-4,7],[-2,-7],[-3,-20],[-2,-7],[-6,-10],[-15,-7],[-8,-5],[5,-4],[-5,-7],[-15,-14],[1,-17],[-11,-4],[-36,9],[-10,8],[-1,11],[11,13],[-10,11],[-30,4],[-8,14],[14,2],[42,-2],[0,4],[-37,18],[-11,10],[-1,13],[1,5],[6,2],[-5,10],[-8,3],[-16,-1],[-5,3],[-15,16],[-4,6],[14,-1],[31,-11],[13,8],[-121,32],[-9,5],[-19,15],[-8,-4],[5,-3],[4,-5],[-4,-3],[-3,-1],[-2,1],[5,-5],[21,-8],[-2,-6],[-2,-3],[-7,-3],[8,-4],[8,3],[8,6],[8,3],[9,0],[10,-3],[9,-6],[8,-7],[-102,-8],[-57,-29],[4,-3],[10,-2],[4,-3],[-5,-5],[-6,-7],[-5,-4],[-6,4],[3,-10],[8,-9],[9,-7],[7,-2],[8,4],[5,3],[2,3],[4,2],[23,1],[5,3],[5,5],[5,9],[3,8],[1,4],[-3,2],[-18,2],[-5,2],[8,6],[15,-8],[8,2],[2,5],[0,5],[1,4],[2,2],[29,6],[4,-1],[2,-3],[5,-8],[2,-2],[33,4],[-3,-10],[1,-7],[5,-3],[-43,-3],[14,-3],[22,-11],[20,-15],[10,-17],[-12,3],[-28,15],[-11,-5],[12,-12],[28,-4],[13,-5],[17,-14],[6,-2],[21,1],[6,-5],[-7,-10],[-21,-18],[-8,-4],[5,-4],[17,-4],[6,-4],[6,-10],[4,-3],[2,2],[9,9],[3,1],[3,0],[3,-2],[3,-1],[18,-1],[6,-3],[-1,-6],[1,-4],[0,-3],[0,-4],[-1,-6],[-5,-11],[-3,-11],[-3,-2],[-5,-1],[-3,-3],[2,-4],[37,-43],[11,-7],[8,-11],[3,-2],[5,-2],[5,-4],[8,-11],[11,-16],[4,-11],[2,-11],[0,-26],[1,-13],[2,-8],[7,-5],[8,0],[7,-4],[2,-17],[4,-10],[16,-16],[5,-9],[-2,-8],[-5,-5],[-14,-7],[-13,-10],[-7,-2],[-7,0],[3,8],[3,4],[4,4],[5,6],[1,1],[2,4],[2,4],[-2,1],[-10,0],[-26,-6],[-14,1],[-2,10],[-6,7],[-24,9],[-8,5],[-4,4],[-3,5],[-1,5],[-1,11],[-2,4],[-6,8],[-7,3],[-8,-1],[-6,-6],[-14,-6],[-5,-5],[4,-7],[-5,-3],[-6,0],[-7,4],[-4,5],[-3,7],[-1,6],[0,6],[-1,8],[-5,14],[-7,8],[-9,5],[-10,1],[4,8],[-10,4],[-8,-11],[-7,-14],[-12,-12],[3,-8],[6,-8],[5,-4],[5,-1],[4,-3],[3,-4],[9,-17],[23,-24],[7,-10],[5,-12],[1,-10],[-7,-4],[-21,0],[-3,2],[-12,14],[-20,13],[-41,4],[-8,3],[-9,9],[-11,13],[-4,3],[-6,0],[-10,-7],[-4,-1],[-12,-1],[-5,3],[-4,8],[-6,5],[-7,1],[-5,3],[-1,9],[-1,4],[-2,5],[-3,5],[-3,2],[-5,-2],[0,-5],[1,-7],[0,-6],[-2,-4],[-11,-12],[-5,-2],[-6,0],[-6,3],[-5,5],[-3,5],[-5,27],[2,16],[-9,7],[-1,10],[4,11],[-4,22],[-2,21],[-7,13],[-8,8],[-3,12],[-8,19],[-14,4],[-17,-5],[-43,-21],[-19,-8],[-9,-10],[-16,3],[-3,-2],[-15,8],[-65,-8],[-4,2],[-10,8],[-5,2],[-16,-2],[-5,2],[-4,5],[-8,13],[-5,2],[-5,-3],[-2,-8],[-3,-8],[-3,-5],[-7,0],[-30,20],[-13,4],[-7,0],[4,-10],[2,-2],[-13,-17],[-16,5],[-17,10],[-12,-6],[10,-15],[32,-33],[-9,-6],[-34,14],[-6,-5],[5,-10],[27,-38],[13,-23],[7,-7],[22,-1],[20,-10],[35,-4],[5,-2],[14,-10],[89,-41],[18,-4],[10,-18],[-12,-9],[-9,-14],[-12,-15],[0,-13],[-3,-7],[0,-6],[1,-6],[2,-5],[-25,-22],[-8,-3],[-19,-1],[-9,-5],[-2,-12],[1,-8],[-2,-6],[-6,-4],[-9,-2],[-9,0],[-5,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-4,-3],[-5,-1],[-9,0],[-5,-1],[-4,-3],[2,-10],[-5,-8],[-7,-8],[-3,-9],[1,-1],[1,-1],[0,-1],[0,-3],[-1,-2],[-5,-5],[-2,-1],[2,-7],[3,-5],[4,-3],[3,-5],[-3,-3],[0,-3],[1,-3],[0,-4],[0,-3],[0,-3],[-1,-4],[-3,-6],[-13,-17],[-4,-7],[-1,-3],[0,-3],[-1,-3],[-2,-3],[-2,-2],[-9,2],[-7,-2],[-14,-7],[-6,-5],[-4,-6],[-7,-13],[-4,-6],[-14,-13],[-4,-7],[-6,-7],[-6,-3],[-13,-1],[-21,-8],[-5,-3],[1,-2],[3,-6],[-2,-4],[-5,-3],[-2,-2],[-1,-2],[-1,-4],[0,-4],[0,-2],[-5,-2],[-10,3],[-4,-3],[-3,-3],[-3,-5],[-3,-6],[-1,-6],[3,-9],[10,-4],[2,-5],[-4,-10],[-21,-6],[-8,-7],[-3,-5],[-4,-3],[-14,-3],[-14,-11],[-20,-8],[-76,1],[-76,1],[-37,16],[-30,23],[-10,4],[-4,3],[-3,5],[-4,11],[-3,5],[-10,11],[-2,1],[-2,3],[-5,11],[-3,3],[-6,3],[-17,15],[-12,16],[-25,18],[-9,4],[-22,3],[-8,7],[-8,10],[-10,6],[-21,7],[69,0],[29,-10],[16,-2],[2,4],[-9,7],[-82,18],[-11,6],[-6,1],[-4,2],[-8,8],[-3,0],[-4,-2],[-27,-2],[-5,2],[-18,12],[-16,5],[-4,3],[-3,6],[-2,5],[0,5],[-1,5],[-4,5],[-19,13],[-12,5],[-5,1],[-6,2],[-3,5],[-2,6],[-2,5],[-20,16],[-11,5],[-8,-3],[2,-6],[-2,-2],[-5,0],[-4,2],[-3,5],[-2,11],[-3,7],[-4,4],[-24,10],[-9,11],[-5,3],[-4,0],[-16,-6],[-4,4],[-53,8],[-10,-6],[65,-32],[7,-8],[4,-12],[-1,-10],[-4,-8],[-7,-3],[-8,1],[-10,4],[-10,7],[-7,10],[-3,3],[-17,3],[-16,11],[-5,2],[-17,-1],[-9,-3],[-8,-6],[-17,-9],[-20,0],[-37,15],[9,7],[10,2],[21,-1],[19,4],[1,1],[1,2],[0,4],[-1,3],[-2,2],[-3,1],[-46,-13],[-89,10],[-90,11],[-11,6],[-6,1],[-21,-4],[-35,18],[-10,-4],[-10,-5],[-23,-2],[-9,-7],[104,-61],[17,-16],[8,-5],[8,5],[-17,24],[-8,16],[-4,8],[-5,5],[5,10],[10,3],[32,-4],[17,-10],[54,-7],[48,-6],[63,-25],[58,-11],[37,-16],[30,-25],[22,-8],[10,-6],[26,-33],[3,-3],[5,-11],[3,-2],[5,-2],[26,-16],[6,-6],[4,-10],[2,-17],[2,-9],[4,-10],[5,-9],[4,-7],[38,-26],[11,-3],[5,-3],[4,-4],[6,-9],[2,-3],[2,-2],[0,-4],[0,-7],[1,-3],[5,-9],[12,-14],[5,-8],[7,-7],[21,9],[9,0],[11,-10],[4,-2],[73,-5],[19,-9],[119,-11],[12,-8],[9,0],[19,10],[10,2],[30,-3],[15,-8],[7,-1],[5,9],[-4,3],[11,8],[14,0],[14,-6],[23,-14],[43,5],[90,-22],[3,-5],[-1,-7],[-5,-7],[7,-7],[15,-9],[7,-8],[4,-14],[-3,-7],[-7,-6],[-5,-10],[0,-12],[4,-8],[1,-7],[-8,-10],[-22,-15],[-8,-9],[3,-2],[3,-4],[2,-4],[2,-6],[-8,-13],[-4,-4],[-5,-1],[-4,-1],[-5,-1],[-4,-6],[-5,-11],[-12,-18],[-8,-18],[-8,-22],[-2,-9],[1,-6],[2,-10],[0,-4],[-5,-3],[-11,-1],[-4,-2],[-13,-20],[-7,-8],[-8,6],[0,5],[1,6],[0,5],[-5,2],[-3,-2],[-4,-6],[-3,-7],[-2,-5],[0,-8],[5,-22],[1,-9],[-2,-8],[-2,-5],[-7,-7],[-2,-7],[-4,-14],[-2,-5],[-7,-7],[-45,-21],[-12,-2],[-1,-2],[0,-4],[0,-7],[-1,-6],[-2,-4],[-5,-9],[-3,-8],[-2,-8],[-2,-10],[0,-12],[-3,-24],[-7,-16],[-33,-35],[-6,-10],[-3,-12],[15,-19],[4,-8],[-17,-4],[-5,-6],[-3,-7],[-6,-7],[-5,-6],[-5,-3],[-25,5],[-5,-3],[-9,-14],[-5,-4],[-5,-1],[-49,-34],[-5,-1],[-16,0],[-1,-4],[3,-8],[-11,-6],[-21,-4],[-2,-4],[0,-7],[-4,-8],[-5,-4],[-8,0],[-13,4],[-12,7],[-4,0],[-2,-3],[-3,-2],[-2,0],[-4,3],[1,6],[1,2],[-9,4],[-17,-11],[-10,3],[0,1],[1,6],[0,3],[-1,2],[-3,2],[-13,4],[-12,11],[-13,8],[-7,11],[-7,14],[-2,13],[-1,6],[-3,5],[-6,7],[-2,3],[-1,2],[-3,-1],[-7,-13],[4,-3],[12,-15],[4,-7],[11,-33],[5,-9],[15,-21],[2,-6],[1,-5],[2,-4],[4,-2],[7,1],[3,-1],[4,-4],[-7,-3],[-27,3],[1,2],[5,6],[-5,3],[-10,0],[-4,1],[-4,4],[-9,15],[-3,3],[-6,3],[-4,1],[0,-3],[3,-4],[4,-2],[3,-5],[-2,-8],[1,-4],[1,-1],[0,-3],[-11,12],[-12,20],[-13,13],[-16,-10],[-7,6],[-9,16],[-9,9],[-5,2],[-5,-3],[1,-11],[-1,-18],[2,-11],[4,-9],[16,-24],[-7,0],[-9,12],[-14,29],[-18,24],[-10,10],[-8,-2],[2,-2],[1,-5],[2,-5],[0,-6],[-1,-8],[-3,4],[-4,12],[-5,8],[-21,22],[2,7],[2,4],[3,3],[3,2],[8,0],[5,1],[2,6],[-1,5],[-2,8],[-1,5],[0,6],[0,17],[0,5],[-2,4],[-4,7],[-4,4],[-2,-3],[-3,-11],[-1,-6],[1,-6],[0,-3],[-4,-2],[-14,4],[-5,0],[5,-9],[7,-3],[5,-5],[2,-13],[-4,-8],[-8,3],[-14,11],[-8,2],[-8,0],[-8,-3],[-14,-11],[-22,-9],[16,-8],[5,-6],[3,-3],[5,0],[2,4],[-2,10],[17,-1],[9,-3],[5,-8],[-7,-5],[-3,-7],[1,-9],[5,-8],[0,1],[6,-1],[2,-1],[0,-3],[1,-2],[0,-2],[6,-5],[6,-3],[0,-4],[-10,1],[-5,-2],[-4,-3],[2,-4],[0,-1],[0,-1],[0,-2],[6,-5],[14,-3],[6,-9],[2,-7],[0,-9],[-2,-7],[-4,-5],[-5,-2],[-13,2],[-6,0],[-7,-4],[-4,0],[-2,1],[-8,7],[7,4],[4,6],[1,9],[-5,9],[-7,6],[-6,2],[-3,-4],[3,-12],[-6,0],[-7,3],[-5,0],[-3,-11],[-6,7],[-9,18],[-6,8],[-7,3],[-8,1],[-8,-1],[-7,-3],[0,-4],[15,-5],[24,-28],[14,-12],[-3,-3],[-2,-1],[-3,-1],[-4,1],[8,-8],[2,-11],[26,-27],[8,-11],[1,-5],[0,-4],[0,-4],[-1,-5],[-1,-8],[-3,-1],[-7,3],[-31,0],[4,-4],[11,-7],[2,-5],[0,-7],[-4,-6],[-4,-5],[-3,-3],[2,-8],[-3,-3],[-9,-1],[-1,-3],[-8,-21],[3,-8],[3,-8],[-9,-3],[-12,-8],[-10,-3],[-7,9],[4,3],[9,2],[4,3],[-6,5],[-7,4],[-8,0],[-6,-4],[2,-1],[4,-4],[-12,-9],[-15,-3],[-14,3],[-12,9],[9,9],[-19,3],[-6,5],[9,-1],[5,1],[4,4],[-11,8],[-24,11],[-11,1],[1,-13],[-4,-5],[-6,-2],[-6,-4],[4,-4],[5,-2],[5,0],[5,2],[4,4],[2,4],[2,3],[4,0],[5,-4],[5,-10],[3,-13],[-1,-13],[-3,-7],[-4,1],[-6,6],[-19,-4],[-14,-10],[-4,-5],[-5,-1],[-46,-4],[-18,6],[-18,14],[-4,6],[-2,1],[-11,4],[-9,7],[-5,3],[-12,-4],[-11,2],[-10,6],[-13,10],[-4,2],[-12,0],[-5,1],[-5,6],[5,9],[6,-2],[5,-5],[6,-2],[-4,9],[-7,6],[-38,17],[-8,1],[-3,-1],[-9,-7],[-3,0],[-23,2],[-3,2],[0,6],[2,3],[3,2],[3,1],[-3,9],[-4,8],[-6,3],[-5,-5],[-5,-10],[-3,-4],[-42,-1],[-13,6],[-12,15],[6,6],[22,6],[0,4],[-26,8],[-4,-2],[0,-7],[1,-3],[-1,-2],[-2,-6],[-3,-5],[-3,-4],[-4,-2],[-3,-1],[0,-4],[1,-6],[-5,-1],[-12,3],[-11,0],[-4,1],[-7,6],[-31,9],[-21,-1],[-6,3],[-20,20],[-10,7],[-68,19],[0,15],[-10,8],[-12,3],[-6,1],[-4,-3],[-14,1],[-5,2],[-2,6],[-2,6],[-3,6],[-8,2],[-23,-6],[-8,6],[-8,11],[-11,8],[-41,12],[-15,10],[-13,3],[-9,4],[-9,6],[-7,9],[-10,16],[-5,4],[-14,9],[-4,5],[-2,11],[4,18],[-5,6],[-5,1],[-12,-3],[-6,4],[-8,13],[-5,4],[-4,-3],[23,-24],[2,-4],[2,-4],[2,-4],[1,-4],[1,-5],[-1,-13],[1,-2],[6,-5],[11,-19],[5,-5],[4,0],[3,-1],[2,-4],[1,-5],[-13,-6],[3,-3],[4,-2],[8,1],[0,-4],[-14,-5],[-47,1],[1,-6],[0,-5],[-1,-5],[-2,-5],[4,0],[9,3],[4,-3],[3,-5],[3,-11],[2,-6],[5,-8],[2,-5],[0,-7],[3,-4],[31,-19],[6,-1],[13,1],[10,-4],[17,-15],[10,-1],[-3,5],[-8,4],[-3,3],[0,6],[5,1],[16,-9],[9,0],[16,6],[0,4],[-19,0],[-5,2],[-8,8],[-5,2],[-3,3],[-9,18],[-16,16],[4,3],[1,1],[3,0],[-5,7],[-5,5],[16,11],[18,-10],[33,-29],[19,-4],[5,-4],[8,-10],[4,-3],[21,-4],[29,-17],[39,-5],[37,-29],[6,-2],[7,4],[7,11],[8,9],[9,0],[10,-5],[8,-10],[5,-25],[2,-4],[30,-3],[11,4],[4,-1],[2,-2],[6,-7],[3,-3],[23,-9],[7,-7],[-6,-3],[-13,-1],[-5,-4],[-6,-11],[3,-5],[5,-3],[3,-5],[-9,-3],[-21,-11],[-8,6],[4,3],[-4,10],[-5,-1],[-5,-6],[-3,-6],[-5,-15],[-3,-6],[-6,-4],[-35,-15],[-4,-5],[21,-16],[3,-1],[2,1],[2,12],[5,2],[17,-2],[2,1],[2,1],[3,2],[0,2],[0,3],[0,4],[1,3],[9,0],[13,-20],[7,0],[4,6],[3,12],[0,12],[-1,10],[8,7],[16,0],[7,7],[5,7],[3,2],[9,-2],[4,2],[11,16],[8,5],[16,5],[17,11],[8,3],[8,-1],[32,-22],[10,-13],[2,-2],[1,-3],[1,-8],[-1,-6],[-1,-6],[0,-5],[3,-7],[3,-4],[3,-2],[13,-1],[3,-3],[7,-8],[29,-18],[5,-11],[-2,-1],[-6,-7],[5,-7],[6,-2],[5,3],[6,4],[4,3],[41,-5],[6,-3],[13,-17],[6,-4],[5,0],[4,4],[3,6],[5,1],[8,-3],[8,-5],[9,-15],[40,-20],[-6,-4],[-8,1],[-33,17],[-6,2],[3,-10],[5,-6],[6,-4],[14,-3],[15,-11],[8,-3],[23,1],[5,-5],[2,-11],[-5,-5],[-8,-2],[-6,-3],[4,-7],[-1,-8],[3,-5],[5,-3],[5,-4],[-7,-8],[0,-5],[4,-4],[4,-8],[1,-5],[-1,-6],[0,-5],[-1,-4],[-1,-4],[1,-2],[0,-2],[-2,0],[-5,2],[-2,1],[-1,-3],[2,-6],[10,-3],[3,-3],[1,-7],[-2,-3],[-3,-3],[-1,-4],[1,-7],[10,-21],[-3,-1],[-7,-3],[4,-7],[9,-1],[5,-5],[-5,-2],[-4,-14],[-9,5],[-3,-4],[-3,-6],[-3,-6],[9,0],[-3,-7],[-5,-2],[-10,0],[-1,-2],[3,-5],[4,-6],[3,-3],[-4,-3],[-4,-2],[-9,1],[3,-8],[-3,-4],[-12,-4],[-57,7],[-6,-3],[-12,-14],[-5,-2],[-7,-2],[-6,-2],[-10,-9],[-3,-12],[-3,-8],[-26,-19],[-3,-1],[-21,-1],[-6,-3],[4,-4],[10,-4],[5,-5],[-12,-8],[-13,0],[-60,14],[-14,9],[-8,2],[-26,0],[-41,11],[-29,15],[-14,2],[0,-3],[1,0],[1,-1],[-2,-12],[4,-7],[6,-5],[3,-6],[-3,-9],[-8,-2],[-9,3],[-19,14],[-15,7],[-14,2],[-27,-6],[-7,-5],[-2,-8],[2,-11],[6,-6],[7,-6],[4,-6],[10,-18],[11,-12],[26,-12],[0,-5],[-5,1],[-5,3],[-4,0],[-5,-4],[4,-3],[21,-7],[65,-7],[20,-9],[2,-6],[0,-6],[0,-12],[-2,-6],[-2,-6],[-3,-5],[-9,-7],[-2,-5],[3,-6],[-5,-4],[-6,-1],[-12,1],[-19,8],[-18,-2],[-5,2],[-3,9],[3,5],[10,7],[-3,7],[-4,7],[-5,4],[-9,-10],[-12,3],[-5,-3],[9,-13],[-4,-7],[-7,1],[-8,3],[-7,0],[1,-3],[3,-7],[1,-3],[-22,-5],[-8,1],[-8,4],[-5,5],[-1,7],[6,12],[-6,7],[-3,-4],[-2,-7],[-2,-4],[-4,1],[-2,2],[-1,3],[-13,13],[-3,5],[-5,4],[-4,1],[0,-8],[3,-7],[6,-5],[4,-6],[-2,-11],[4,-2],[3,-2],[3,-5],[2,-7],[-4,-4],[-2,-3],[-2,-4],[0,-7],[2,-6],[4,3],[5,6],[1,3],[5,2],[1,-2],[-1,-8],[-1,-6],[-3,-1],[-3,-1],[-4,-5],[2,-3],[1,-3],[0,-2],[-1,-3],[1,-4],[0,-2],[0,-3],[-4,2],[-13,10],[-5,2],[-17,-2],[-9,3],[-3,-3],[-2,-10],[0,-10],[1,-4],[3,-8],[-2,-8],[1,-5],[4,-3],[5,0],[0,-4],[-5,-1],[-9,-6],[-6,-1],[-10,0],[-6,-1],[-5,-3],[7,-4],[18,0],[22,-11],[7,-2],[4,-3],[5,-7],[3,-7],[0,-3],[-1,-2],[-1,-4],[0,-4],[-1,-4],[-9,-6],[3,-5],[6,-4],[2,-3],[2,-6],[2,-12],[1,-5],[7,-8],[15,-10],[6,-8],[1,-4],[-7,2],[-16,11],[-12,-7],[-4,7],[-3,12],[1,11],[-20,12],[1,3],[0,1],[1,2],[1,2],[-2,6],[-3,7],[-3,6],[-5,3],[-3,6],[-2,1],[-2,0],[-4,-4],[-3,0],[-4,1],[-6,4],[-5,4],[-3,5],[-5,4],[-13,-3],[-10,7],[-52,12],[-34,15],[19,-14],[10,-5],[20,-4],[26,-22],[8,-3],[10,-1],[1,-2],[0,-4],[0,-4],[0,-2],[2,-1],[8,1],[9,-2],[9,-5],[9,-9],[5,-13],[-6,-2],[-1,-7],[-1,-9],[-4,-6],[-7,1],[-4,1],[-4,2],[-2,3],[-1,3],[-2,4],[-3,2],[-3,0],[-12,-4],[-10,4],[-5,0],[-4,-4],[12,-8],[-6,-6],[-8,-1],[-15,3],[-3,-1],[-3,-6],[-4,-1],[-2,-2],[-1,-6],[-2,-12],[12,-7],[5,-1],[15,6],[8,1],[8,-3],[7,-4],[-3,-9],[-6,-9],[-6,-8],[-6,-3],[-11,7],[-6,1],[-4,-8],[3,-1],[2,-2],[0,-4],[-1,-5],[-3,-4],[-3,-1],[-7,1],[2,0],[-6,6],[-3,2],[-3,0],[-3,-4],[0,-3],[2,-4],[1,-5],[-1,-10],[-2,-9],[-3,-6],[-5,0],[-5,5],[-10,24],[-5,5],[-7,4],[-7,3],[-6,0],[3,-5],[3,-4],[3,-5],[2,-6],[-34,8],[0,-4],[55,-41],[0,-4],[-42,2],[-6,-2],[15,-11],[4,-1],[3,-3],[3,-6],[3,-6],[3,-5],[-9,-2],[-7,2],[-44,25],[-29,9],[-5,-1],[6,-11],[23,-19],[6,-8],[-26,-1],[-5,-4],[-3,-11],[4,-4],[27,1],[3,-6],[3,-5],[3,-2],[34,-8],[-6,-4],[-6,-1],[-13,1],[0,-4],[4,-2],[7,-8],[3,-2],[16,0],[12,4],[4,-1],[6,-3],[1,-2],[-3,-10],[-2,-13],[-2,-5],[-3,3],[-3,4],[-3,2],[-17,1],[-10,4],[-10,7],[-5,1],[-5,-4],[6,-6],[4,-8],[4,-7],[8,-4],[16,6],[6,-2],[-36,-24],[-5,-2],[-10,-1],[-6,-2],[-47,-40],[-7,-8],[-13,-20],[-7,-8],[-2,0],[-4,4],[-3,4],[-4,4],[-1,-8],[-11,-24],[-5,-9],[-3,-3],[-6,-3],[-3,-2],[-13,-20],[3,-2],[2,-3],[0,-4],[-1,-3],[1,-6],[2,-5],[3,-4],[3,-1],[-7,-4],[-2,-1],[12,-7],[5,-1],[4,1],[3,1],[4,0],[3,-4],[9,-13],[1,-8],[-5,-5],[1,-6],[1,-2],[-7,-6],[-18,-9],[-8,-1],[-11,3],[-23,12],[-11,1],[5,-10],[12,-11],[6,-8],[0,-4],[2,-13],[0,-3],[3,-1],[2,-3],[1,-4],[1,-4],[-2,0],[-6,-4],[3,-10],[-8,-7],[-10,-7],[-5,-9],[16,0],[-5,-11],[-2,-6],[0,-7],[3,-8],[5,1],[6,4],[5,-1],[3,-9],[-2,-6],[-6,-4],[-4,-1],[-11,0],[-5,-1],[-5,-4],[-3,0],[-3,-3],[0,-5],[-5,-6],[-4,-9],[-2,-11],[-1,-12],[-2,-7],[-11,-22],[-4,-9],[-1,-7],[-1,-5],[-1,-4],[-2,-5],[-4,-3],[-9,-3],[-6,-8],[-6,-4],[-3,-4],[-1,-3],[0,-3],[0,-6],[-1,-2],[-3,-3],[-2,-1],[-7,-25],[-2,-13],[1,-9],[2,-13],[-3,-10],[-17,-25],[-4,-6],[-2,-5],[-1,-7],[1,-4],[1,-4],[-2,-7],[-5,-10],[-2,-6],[1,-3],[3,-3],[0,-6],[-2,-7],[-2,-4],[-14,-11],[-33,15],[-13,-8],[6,-5],[14,-6],[6,-5],[-7,-11],[-26,7],[-11,-4],[27,-8],[7,-6],[14,-33],[0,-5],[3,-8],[1,-3],[-1,-7],[-4,-12],[-1,-5],[-2,-9],[-9,-17],[-3,-12],[-7,-13],[0,-7],[2,-3],[2,-3],[2,-3],[2,-13],[0,-12],[-1,-10],[-3,-10],[-2,-2],[-3,-3],[-1,-3],[0,-5],[0,-1],[1,-2],[2,-8],[1,-5],[0,-5],[0,-7],[-4,-9],[-11,-6],[-4,-9],[1,-1],[3,-3],[-2,-3],[-1,-3],[0,-3],[-1,-3],[4,-4],[-7,-1],[-5,-4],[-1,-6],[1,0],[4,-6],[-4,-6],[-4,-10],[-2,-9],[6,-3],[-2,-9],[-2,-3],[2,-2],[1,-4],[1,-2],[-1,-15],[7,-27],[-4,-11],[5,-13],[1,-5],[-1,-7],[-2,-12],[-1,-5],[-1,-4],[-3,-10],[-2,-5],[3,-29],[0,-5],[-4,-2],[-3,-4],[1,-6],[3,-13],[0,-4],[0,-3],[1,-4],[3,-7],[3,-3],[2,-1],[3,-2],[2,-6],[-6,-3],[-2,-7],[0,-8],[-2,-6],[2,-6],[2,-1],[2,-1],[3,-3],[1,-4],[1,-2],[0,-3],[1,-5],[-1,0],[-1,-5],[0,-5],[3,-2],[2,-2],[2,-2],[1,-4],[1,-4],[-2,-4],[0,-4],[1,-16],[1,-2],[1,-2],[1,-5],[1,-7],[-1,-6],[-2,-4],[-3,-7],[4,-3],[5,3],[6,6],[5,2],[1,-1],[-3,-3],[-4,-3],[-1,-1],[-5,-9],[-3,-3],[-4,0],[2,-6],[0,-2],[-10,-5],[-3,-4],[2,-8],[-3,-7],[-1,-3],[-2,-2],[3,-3],[1,-4],[-1,-4],[-3,-5],[2,-4],[1,-5],[-1,-11],[-2,-2],[-1,-3],[-1,-4],[1,-2],[4,-7],[1,-3],[-1,-4],[-2,-10],[-1,-6],[-1,-20],[-1,-4],[-13,-8],[-19,4],[-16,-1],[-9,-19],[9,5],[42,4],[3,-3],[0,-2],[-1,-9],[0,-4],[1,-3],[1,-2],[0,-2],[-2,-5],[12,-2],[12,-6],[8,-12],[3,-20],[-1,-11],[-2,-9],[-7,-17],[-3,-4],[-2,-2],[0,-3],[1,-4],[0,-3],[-1,-8],[-3,-9],[18,24],[9,7],[12,-2],[17,-15],[9,-10],[8,-11],[4,-14],[5,-32],[4,-11],[11,-7],[10,4],[19,15],[-1,4],[0,1],[-1,3],[4,4],[3,11],[3,5],[4,4],[9,4],[4,1],[-1,-5],[-2,-4],[-2,-2],[-3,-2],[2,-6],[0,-6],[-2,-8],[-2,-10],[2,-9],[3,-5],[3,-3],[2,-5],[-1,-8],[-3,-8],[-5,-6],[-8,-6],[-3,-9],[-6,-18],[-3,-17],[6,-32],[-4,-24],[4,-19],[0,-7],[-3,-10],[-8,-12],[-2,-11],[0,-3],[1,-10],[0,-5],[0,-8],[-3,-14],[-1,-16],[-5,-26],[-2,-7],[2,-5],[6,26],[5,13],[5,6],[0,3],[5,21],[3,4],[3,3],[2,3],[-2,7],[8,14],[1,6],[0,5],[0,16],[-1,3],[-1,5],[0,38],[1,12],[0,6],[-1,6],[-1,5],[-1,8],[0,8],[1,6],[4,13],[14,23],[4,13],[-1,6],[-1,9],[2,9],[3,4],[3,3],[-3,9],[-4,9],[-3,8],[9,-6],[8,-1],[17,2],[48,-8],[5,0],[3,2],[6,8],[4,3],[4,-1],[4,-3],[4,-1],[4,2],[8,8],[4,2],[8,-1],[32,-15],[5,-1],[6,5],[11,1],[3,-1],[3,-10],[0,-12],[2,-10],[8,-4],[4,-1],[4,-2],[3,0],[3,5],[8,17],[3,5],[6,5],[25,5],[7,-1],[6,-4],[5,-9],[4,0],[1,-11],[5,-25],[1,-7],[-2,-8],[-1,-11],[2,-23],[1,-6],[2,-10],[1,-7],[-2,-14],[0,-6],[1,-9],[7,-22],[13,-32],[3,-21],[2,-12],[3,-9],[11,-22],[3,-10],[1,-13],[2,-9],[8,-16],[-1,-6],[4,-11],[3,-5],[3,-4],[7,-6],[4,-4],[2,-6],[-4,-5],[1,-4],[2,-5],[3,-6],[2,-16],[1,-6],[3,-3],[5,-6],[1,-15],[-1,-31],[11,-52],[3,-26],[-8,-16],[4,-3],[8,-1],[3,-4],[2,-6],[3,-14],[5,-15],[7,-30],[7,-12],[8,-15],[2,-7],[2,-10],[12,-33],[0,-6],[-1,-13],[1,-6],[2,-3],[9,-7],[3,-4],[2,-4],[1,-6],[1,-6],[2,-11],[2,-5],[3,-4],[3,-6],[2,-10],[2,-27],[6,-19],[0,-12],[-2,-26],[-3,-22],[-5,-18],[-24,-69],[-15,-34],[-19,-29],[-6,-17],[-5,-10],[-4,-3],[-11,-4],[-23,-13],[-11,-4],[6,-4],[38,12],[13,8],[39,46],[13,11],[59,17],[10,5],[3,-1],[4,-6],[-2,-5],[-4,-4],[-4,-2],[-6,-4],[-18,-32],[-4,-4],[-5,-2],[-9,-2],[-6,-3],[-8,-10],[-5,-4],[0,-4],[15,9],[22,6],[7,6],[25,31],[31,13],[42,10],[54,32],[78,32],[77,36],[49,21],[50,-2],[45,-19],[22,2],[7,-2],[20,-17],[7,-3],[15,-2],[7,-3],[6,-8],[2,-12],[18,-6],[15,-17],[26,-13],[3,-7],[1,-1],[23,-11],[4,-3],[19,-25],[7,-6],[25,-4],[13,-12],[70,-19],[17,-10],[8,-3],[25,3],[8,-3],[14,-11],[14,-4],[21,-14],[23,-2],[5,-4],[4,-6],[5,-5],[5,-1],[5,4],[5,2],[15,0],[8,0],[5,4],[3,1],[3,-1],[2,-3],[1,-8],[2,-1],[5,-1],[6,-2],[1,-5],[-6,-8],[10,-13],[22,-21],[10,-15],[8,-15],[4,-7],[11,-4],[17,-15],[6,1],[8,-8],[8,-12],[8,-15],[7,-9],[2,-1],[5,-2],[2,-3],[2,-4],[2,-4],[15,-16],[58,-36],[16,-5],[15,-11],[3,-4],[1,-7],[1,-2],[5,-20],[4,-8],[25,-34],[37,-76],[0,-4],[1,-8],[1,-9],[3,-3],[7,-5],[6,-11],[8,-19],[4,-4],[4,-2],[1,-3],[0,-9],[-2,-4],[-8,-16],[1,-8],[1,-9],[4,9],[3,9],[4,8],[8,3],[7,-1],[7,-3],[4,-6],[-1,-10],[7,-4],[23,0],[7,-4],[2,-10],[-4,-23],[13,8],[72,-20],[22,3],[7,-3],[-1,-2],[0,-2],[-1,-2],[-2,-2],[4,-3],[16,3],[6,-2],[16,-14],[11,-6],[11,-2],[5,-3],[10,-10],[28,-21],[58,-32],[23,-22],[68,-25],[21,-5],[18,-7],[9,-10],[12,-5],[9,-7],[8,-5],[10,-5],[10,-3],[4,-10],[9,-11],[11,-10],[8,-10],[7,-16],[9,-11],[6,-9],[18,-27],[32,-23],[16,-9],[31,-8],[7,-6],[3,-13],[-3,-15],[-6,-5],[-7,-2],[-7,-4],[-2,-5],[-2,-11],[-2,-5],[-3,-4],[-7,-5],[-4,-5],[-4,-11],[-6,-22],[-4,-10],[-18,-24],[-3,-10],[1,-3],[2,-8],[1,-5],[-1,-4],[-5,-15],[-4,-16],[1,-6],[4,2],[6,10],[4,11],[8,40],[3,10],[35,71],[13,15],[13,10],[15,6],[30,0],[92,-29],[16,2],[21,11],[10,3],[6,5],[54,9],[10,-1],[17,-9],[9,-2],[5,1],[34,26],[8,3],[7,-3],[12,-10],[26,-14],[10,-13],[2,-9],[-2,-7],[-1,-5],[5,-1],[2,2],[2,11],[1,3],[4,0],[3,-4],[3,-4],[3,-4],[4,0],[4,2],[3,0],[4,-4],[1,-5],[1,-6],[2,-5],[3,-2],[2,-3],[-2,-5],[-4,-8],[0,-7],[1,-5],[3,-4],[3,-5],[2,4],[-5,9],[1,7],[3,6],[0,5],[-5,12],[-1,6],[-1,10],[-3,6],[-6,2],[-12,2],[-4,3],[-4,4],[-7,9],[7,5],[31,-10],[21,-15],[5,-2],[12,2],[4,-1],[7,-5],[33,-6],[12,1],[3,-1],[4,-3],[5,-8],[3,-1],[7,1],[19,15],[14,6],[18,0],[15,-11],[7,-27],[-2,-4],[-2,-2],[-3,-5],[-1,-8],[-1,-3],[-6,-15],[6,3],[9,19],[5,7],[4,-1],[9,-6],[5,-2],[14,-1],[5,1],[20,15],[8,2],[7,-4],[15,-12],[7,-1],[-1,3],[-1,7],[0,3],[5,0],[4,-5],[3,-5],[3,-3],[6,0],[4,-3],[3,-4],[3,-7],[2,-2],[3,-2],[2,-2],[0,-3],[-1,-3],[0,-2],[1,-4],[4,-5],[12,-2],[5,-1],[4,-4],[-1,6],[-5,14],[8,8],[-1,8],[-6,10],[-5,11],[7,-3],[9,-18],[13,-9],[1,-11],[-2,-12],[-6,-20],[-2,-10],[2,-10],[6,-17],[0,-4],[-1,-4],[0,-7],[-1,-1],[-1,-2],[-2,-1],[0,-3],[0,-4],[1,-3],[1,-3],[3,-21],[1,-4],[2,-2],[7,-1],[3,-3],[3,-12],[-1,-13],[-16,-70],[-16,-82],[-17,-58],[-5,-31],[-5,-16],[-1,-6],[-1,-3],[-5,-8],[-2,-3],[2,-17],[-1,-3],[4,-3],[0,-6],[-1,-12],[0,-41],[1,-9],[2,-8],[3,-7],[11,-22],[1,-7],[-4,-8],[3,-3],[3,1],[3,2],[4,0],[3,-1],[3,-3],[16,-23],[4,-8],[18,-87],[4,-11],[2,-7],[3,-31],[3,-7],[2,-7],[-1,-16],[-4,-24],[-2,-8],[-10,-30],[-4,-6],[-2,-13],[-1,-15],[-2,-11],[4,-9],[0,-9],[-1,-9],[-1,-9],[1,-10],[2,-11],[3,-10],[8,-22],[4,-16],[9,-70],[0,-12],[-1,-7],[-6,-11],[-13,-16],[-4,-2],[-5,-1],[-5,-3],[-4,-5],[2,-7],[-9,-35],[-4,-19],[-3,-46],[1,-8],[3,-7],[1,-9],[-1,-8],[-4,-6],[8,-6],[10,-19],[11,-5],[3,-4],[3,-4],[2,-3],[12,-4],[5,-4],[18,-25],[15,-26],[3,-10],[-2,-8],[7,-12],[12,-40],[9,-9],[9,-5],[10,-14],[29,-59],[9,-14],[9,-5],[23,-27],[2,-7],[-1,-8],[-4,-11],[2,-10],[4,-25],[3,-5],[3,-3],[12,-15],[3,-6],[-29,7],[-7,-1],[-32,-22],[-4,-1],[-2,-10],[-3,-4],[-4,4],[-6,3],[-8,-3],[-8,-6],[-6,-8],[6,2],[3,3],[3,3],[2,-5],[-9,-12],[-8,-16],[6,1],[7,3],[7,6],[10,16],[7,3],[65,-1],[14,-12],[7,-17],[13,-37],[10,-14],[24,-8],[10,-12],[21,-17],[8,1],[4,5],[4,1],[6,-9],[6,-7],[15,-7],[7,-8],[1,-5],[4,-16],[7,-16],[1,-6],[3,-12],[6,-7],[14,-8],[2,0],[4,1],[2,-1],[1,-2],[0,-2],[0,-2],[0,-2],[10,-10],[3,-4],[8,-13],[10,-13],[4,-7],[9,-21],[3,-5],[3,-1],[3,-3],[5,-10],[3,-7],[1,-4],[-1,-4],[0,-7],[3,-12],[7,-25],[3,-19],[8,-34],[3,-7],[5,-10],[5,-8],[5,-3],[4,-6],[1,-13],[0,-25],[3,-23],[-1,-10],[-5,-4],[-6,-1],[-32,-20],[-12,-11],[-11,-15],[-10,-18],[-2,-4],[-3,-13],[-2,-5],[-3,-6],[-2,-3],[-5,-6],[-21,-13],[-6,-7],[-3,-6],[-7,-20],[-3,-4],[-16,-11],[-5,-6],[-4,-8],[-4,-9],[10,2],[5,3],[5,7],[2,-3],[1,-4],[0,-5],[-1,-3],[-7,-10],[2,-4],[10,13],[11,39],[8,17],[7,4],[15,2],[7,4],[9,9],[3,1],[3,2],[2,5],[2,5],[1,5],[18,19],[3,7],[3,11],[5,10],[11,14],[21,15],[12,15],[7,1],[37,-16],[7,-5],[8,-4],[17,1],[7,-3],[4,-4],[4,-10],[4,-3],[16,-4],[6,-3],[18,-29],[12,-14],[26,-21],[11,-14],[11,-35],[4,-6],[5,-3],[29,-38],[14,-25],[27,-51],[2,-8],[4,-16],[2,-7],[10,-14],[1,-6],[0,-9],[0,-7],[2,-6],[3,-4],[0,24],[-1,14],[-5,6],[-3,6],[-11,35],[-10,20],[-6,9],[-4,4],[-5,5],[-6,18],[-3,7],[-4,10],[-35,38],[-9,19],[-6,19],[-5,21],[-1,22],[4,23],[11,28],[4,19],[-3,16],[-2,7],[-1,10],[0,10],[1,8],[2,0],[12,12],[5,3],[6,14],[4,3],[17,5],[3,3],[0,10],[-3,15],[-4,16],[-4,12],[12,2],[13,12],[34,49],[6,3],[13,-15],[6,-2],[3,-5],[-4,-16],[-6,-19],[-1,-11],[3,-13],[2,-2],[23,-1],[4,1],[3,3],[3,4],[2,2],[4,0],[5,-7],[4,-7],[3,-7],[15,-16],[5,-8],[1,-6],[0,-15],[1,-7],[2,-7],[5,-11],[2,-7],[5,-39],[4,-11],[1,-7],[-1,-5],[-6,-9],[-1,-6],[1,-9],[2,-8],[12,-21],[3,-4],[15,-7],[-3,7],[-4,10],[-3,8],[-9,7],[-1,9],[0,10],[2,23],[1,4],[1,5],[5,9],[7,14],[3,4],[6,0],[-3,8],[-11,6],[-3,8],[2,9],[4,7],[5,5],[5,6],[6,16],[5,9],[11,7],[2,0],[15,0],[-6,12],[-19,-2],[-9,6],[-2,14],[0,18],[4,16],[4,9],[-3,2],[-7,0],[-4,2],[-2,4],[-5,14],[-3,3],[-7,1],[-7,4],[-4,8],[2,15],[-8,7],[-4,4],[-3,5],[-5,16],[-3,6],[-6,3],[3,10],[4,6],[5,3],[6,1],[2,-1],[6,-3],[3,0],[3,1],[7,6],[7,4],[5,7],[5,9],[2,9],[-2,7],[-8,13],[-2,11],[-5,14],[0,8],[6,4],[12,3],[23,11],[4,6],[3,16],[3,1],[2,-1],[2,3],[0,6],[-1,6],[-1,5],[-2,5],[11,-1],[6,3],[4,6],[-2,2],[-2,4],[-2,2],[6,6],[6,3],[6,5],[5,11],[1,5],[2,13],[1,6],[2,5],[4,9],[1,6],[-6,22],[2,6],[8,5],[8,1],[23,-10],[0,5],[-5,4],[-3,6],[-4,4],[-5,2],[-12,1],[-7,-1],[-5,-4],[-1,12],[3,9],[10,15],[3,16],[-2,6],[-4,6],[-3,11],[2,3],[3,6],[1,6],[-2,3],[-5,3],[-2,5],[1,6],[7,5],[1,6],[-1,5],[-2,3],[-12,4],[2,5],[2,3],[2,2],[0,6],[-2,6],[-3,5],[-4,3],[-3,2],[-13,-6],[-5,0],[1,10],[-5,4],[-5,-2],[-4,-4],[-5,-2],[0,3],[1,6],[1,3],[-4,0],[-7,4],[-4,1],[0,4],[5,0],[10,10],[5,2],[-2,4],[-3,4],[-3,2],[-3,2],[0,4],[6,0],[-3,8],[-1,8],[-5,-3],[-4,0],[-4,2],[-4,5],[7,15],[-1,7],[-6,3],[-10,0],[0,3],[7,1],[5,4],[2,6],[-4,10],[-5,2],[-8,3],[-5,4],[1,11],[4,4],[21,0],[6,4],[2,5],[0,8],[-1,12],[-5,-6],[-3,-2],[-3,0],[-3,1],[2,4],[23,35],[-4,0],[-21,-8],[-4,0],[-9,2],[-4,2],[-4,3],[-3,5],[-4,12],[-2,6],[-3,3],[7,7],[2,6],[0,11],[4,-4],[9,4],[4,-5],[2,3],[2,3],[1,3],[1,4],[-8,0],[-3,1],[-3,5],[-2,6],[-2,6],[-2,3],[-5,-1],[1,-2],[0,-1],[1,-1],[-7,-4],[-9,2],[-10,6],[-6,8],[5,2],[5,4],[6,6],[3,9],[-4,5],[-4,0],[-5,-1],[-4,0],[17,56],[-7,9],[1,4],[4,2],[6,6],[-2,5],[-1,3],[-2,2],[-3,2],[3,2],[7,3],[1,1],[0,7],[-3,3],[-3,1],[-3,-1],[5,7],[2,1],[0,4],[-3,1],[-4,2],[-3,2],[-3,4],[-2,5],[-1,2],[4,6],[1,7],[-3,6],[-3,5],[-2,5],[1,8],[4,7],[1,7],[0,6],[-2,6],[-2,5],[-3,1],[-1,4],[-4,16],[-1,5],[-4,1],[-4,-1],[-4,-3],[-3,-3],[-3,-3],[-2,2],[-1,3],[4,4],[0,4],[-7,5],[-3,7],[-3,7],[-5,9],[6,8],[7,5],[8,3],[3,0],[-2,-1],[-3,-2],[2,-5],[-2,-3],[5,-10],[7,-1],[7,4],[6,7],[-3,3],[-7,3],[-2,4],[-4,9],[-2,3],[-3,2],[4,8],[5,-2],[6,-7],[5,-3],[8,3],[3,7],[-3,7],[-7,3],[0,4],[1,5],[-3,6],[-5,4],[-4,1],[-8,-8],[-3,-1],[-5,-1],[-3,-2],[1,7],[2,6],[2,6],[2,6],[5,-5],[3,4],[1,6],[0,3],[-4,0],[-3,1],[-2,3],[-2,7],[3,0],[4,0],[3,3],[0,6],[-2,4],[-4,1],[-7,-1],[-7,2],[-13,5],[-7,1],[3,7],[5,2],[19,-2],[3,4],[2,9],[-6,2],[0,7],[4,20],[-2,1],[-2,1],[-3,6],[15,12],[-4,4],[-3,0],[-2,0],[0,4],[11,5],[10,-6],[10,-8],[11,-3],[-8,16],[-12,6],[-26,2],[2,13],[-2,9],[-5,4],[-7,3],[8,6],[8,0],[8,-2],[9,0],[-9,13],[-21,8],[-10,7],[17,-7],[9,-1],[4,8],[-5,0],[-9,4],[10,0],[-2,7],[-5,2],[-10,-1],[3,3],[3,2],[3,0],[3,0],[-1,2],[-1,2],[-1,2],[-1,2],[7,4],[23,-4],[-4,10],[-12,8],[-3,8],[-3,-2],[-18,12],[2,1],[0,1],[2,2],[-12,7],[-37,1],[-6,4],[7,5],[27,-5],[-1,12],[5,1],[7,-3],[6,3],[-4,4],[-1,5],[1,3],[4,-5],[1,3],[1,1],[0,2],[0,3],[-2,2],[-3,1],[-3,1],[-3,0],[3,5],[4,2],[9,1],[3,1],[4,8],[3,3],[-6,4],[-9,0],[-17,-4],[-14,-10],[-7,-1],[0,11],[-6,-3],[-4,-1],[-3,0],[-2,9],[-8,5],[-10,1],[-7,-3],[3,7],[4,6],[8,7],[0,4],[-3,5],[1,4],[4,-3],[4,-2],[4,2],[2,7],[-2,3],[-32,6],[-10,7],[4,6],[1,2],[3,0],[-3,6],[-3,2],[-8,0],[2,12],[-1,14],[-5,9],[-7,2],[1,2],[0,2],[1,2],[2,2],[-1,2],[-1,7],[0,3],[3,0],[4,0],[6,4],[0,4],[-11,4],[-4,0],[3,13],[1,8],[-1,4],[-3,2],[-2,7],[-2,6],[0,5],[-3,-1],[-2,1],[-2,1],[-2,3],[6,4],[-3,11],[-8,10],[-9,3],[0,5],[14,3],[6,4],[1,8],[-3,8],[-6,3],[-6,-2],[-6,-5],[2,-2],[1,-1],[1,-1],[2,0],[-7,-6],[-4,-2],[-4,0],[3,10],[5,8],[4,8],[-1,7],[-27,0],[11,6],[1,4],[-1,7],[-2,5],[-3,2],[-3,0],[2,-9],[-7,-3],[-18,0],[0,4],[6,1],[18,19],[4,2],[3,1],[3,1],[0,9],[-1,6],[1,7],[4,3],[-3,-4],[-1,-4],[2,-5],[2,-3],[3,-1],[6,7],[6,3],[7,5],[9,3],[3,2],[2,3],[4,2],[20,4],[5,6],[3,1],[13,1],[3,2],[9,11],[90,32],[5,3],[15,25],[6,5],[28,11],[13,10],[14,5],[13,8],[7,2],[7,4],[14,17],[7,-1],[15,12],[16,3],[4,3],[4,5],[14,10],[12,14],[3,2],[6,4],[23,28],[30,25],[-1,0],[12,4],[37,36],[20,9],[6,5],[29,56],[5,3],[6,3],[111,127],[20,30],[7,9],[7,10],[6,16],[1,7],[-2,0],[-3,-5],[-9,-4],[-8,-9],[-6,-1],[7,16],[33,44],[40,70],[17,19],[5,11],[2,5],[1,10],[1,5],[3,5],[4,3],[9,2],[11,10],[8,14],[7,18],[10,39],[1,16],[1,6],[7,37],[3,10],[9,23],[3,14],[1,15],[0,16],[1,12],[3,14],[1,14],[-3,14],[2,5],[-2,7],[-1,7],[0,6],[1,4],[-1,13],[0,37],[6,69],[-1,11],[2,20],[0,12],[-2,8],[0,10],[-3,24],[-2,25],[-4,25],[-1,24],[-3,21],[0,9],[1,13],[6,21],[0,9],[0,7],[-2,6],[-3,4],[-2,5],[-2,8],[-1,6],[1,17],[-7,47],[-19,78],[-2,8],[-4,3],[-2,3],[-4,16],[-2,5],[2,0],[1,0],[0,2],[0,2],[-5,2],[-6,16],[-8,35],[-9,23],[-2,9],[-1,37],[-14,26],[-10,26],[-3,4],[-2,4],[-4,8],[-3,9],[-1,6],[-2,7],[-9,11],[0,4],[-4,3],[-3,5],[-13,38],[-4,7],[-1,4],[-1,4],[-1,3],[-3,2],[-3,0],[-2,1],[-1,2],[-3,4],[-2,5],[-3,13],[-2,6],[-15,23],[-18,18],[-5,3],[-11,2],[-5,3],[-4,7],[-9,16],[-4,6],[2,0],[-7,0],[-20,12],[6,4],[5,1],[2,4],[-3,11],[-4,6],[-17,11],[-19,24],[-6,4],[-21,4],[-5,4],[-15,16],[-52,24],[-15,15],[-6,2],[5,14],[0,7],[-4,3],[-4,2],[-7,11],[-3,3],[-9,-2],[-4,1],[-2,7],[-3,6],[-16,17],[-18,9],[-3,5],[-2,5],[-8,21],[-16,25],[-11,9],[-5,-5],[3,-12],[10,-14],[17,-18],[-7,-5],[-7,2],[-8,7],[-5,9],[-3,3],[-3,1],[-2,2],[-2,12],[-1,4],[-3,4],[-3,1],[-13,-4],[-6,1],[-5,7],[-2,10],[2,9],[2,7],[-4,6],[4,3],[6,1],[5,2],[0,7],[6,3],[3,-3],[3,1],[2,4],[-2,9],[-2,6],[-3,5],[-11,12],[-3,3],[0,5],[0,9],[2,4],[4,-2],[3,-5],[1,-2],[3,2],[2,6],[0,8],[0,8],[-2,7],[-2,5],[-5,10],[-4,14],[-2,12],[-1,9],[0,4],[2,4],[2,8],[-7,1],[-2,7],[4,7],[9,-3],[5,-8],[5,-11],[5,-8],[6,-2],[-2,15],[4,8],[8,5],[5,1],[9,-3],[1,-4],[-2,-8],[-2,-12],[2,-3],[3,2],[9,5],[1,4],[0,5],[0,4],[2,8],[6,8],[11,14],[-9,-2],[-5,-2],[-5,-4],[0,2],[-1,0],[-1,2],[4,6],[4,4],[3,5],[3,9],[-1,1],[-2,3],[-1,5],[0,4],[1,3],[3,3],[3,3],[1,1],[3,-4],[5,-5],[5,-1],[2,6],[-1,6],[-5,20],[6,3],[6,-12],[7,1],[7,8],[1,9],[-3,10],[-5,9],[5,4],[9,-4],[5,4],[-2,7],[-1,15],[-3,7],[9,10],[21,10],[9,10],[5,4],[12,1],[8,6],[16,8],[-5,6],[-10,3],[-6,3],[7,4],[17,0],[7,4],[5,8],[-1,6],[-10,10],[8,8],[28,13],[-3,2],[-7,2],[-3,4],[-1,-5],[-2,-3],[-2,-1],[-3,4],[-4,0],[-1,0],[0,2],[-1,6],[0,3],[-5,3],[-7,-3],[-10,-11],[-5,-2],[-6,-2],[-4,2],[-2,8],[2,10],[5,6],[6,3],[6,0],[0,4],[-10,17],[11,14],[29,18],[2,5],[-1,10],[2,7],[3,26],[-3,6],[-7,0],[-4,5],[-5,12],[-3,7],[-1,7],[4,-1],[4,1],[4,3],[3,5],[-5,5],[-4,3],[20,-4],[3,-2],[4,-11],[3,-3],[11,0],[7,2],[4,4],[3,5],[2,-1],[2,-5],[3,-5],[18,-17],[7,-14],[-2,-17],[8,-11],[12,-4],[24,-2],[0,4],[-20,6],[-11,7],[-7,11],[2,7],[-1,11],[-2,11],[-3,8],[-5,4],[-18,4],[0,3],[1,1],[1,0],[-2,0],[4,3],[4,1],[4,2],[3,6],[-4,1],[-4,5],[-3,6],[-4,4],[3,9],[4,-1],[4,-5],[4,-3],[7,2],[2,5],[1,6],[2,8],[5,6],[6,2],[24,-2],[6,1],[3,5],[-17,40],[-2,11],[-3,9],[-7,4],[-6,3],[-2,4],[4,4],[12,0],[4,2],[-2,4],[-2,3],[-3,2],[-3,-1],[6,8],[5,5],[7,2],[7,1],[-5,5],[-5,3],[6,5],[15,4],[6,-1],[0,4],[-5,0],[-7,2],[-6,4],[-3,7],[8,0],[11,4],[10,7],[5,9],[-7,-1],[-25,-13],[-7,0],[-5,4],[1,10],[-3,3],[-4,1],[-3,1],[-4,-1],[-2,-3],[-3,-7],[-1,-2],[-17,4],[-22,0],[-2,1],[-4,6],[-2,1],[-13,0],[3,5],[9,7],[3,4],[-2,3],[-2,3],[-2,7],[12,9],[7,2],[5,-5],[2,-1],[4,1],[3,2],[2,2],[3,0],[15,-2],[0,4],[-20,11],[-6,5],[-9,12],[-4,9],[-3,8],[13,-2],[7,1],[5,4],[-17,23],[-6,5],[-3,2],[1,3],[6,8],[-6,-1],[-10,-9],[-5,-2],[-2,4],[2,9],[6,20],[-4,7],[-2,3],[-5,3],[0,3],[0,4],[0,3],[-6,5],[-12,4],[-5,4],[-8,13],[1,13],[5,12],[7,11],[29,22],[8,10],[0,3],[1,7],[1,4],[3,3],[37,-1],[-6,7],[-7,5],[-23,5],[-8,0],[-3,-2],[-7,-6],[-3,-1],[-13,-2],[-6,1],[-23,20],[-5,8],[-12,22],[0,4],[5,3],[15,18],[11,9],[5,5],[8,14],[13,13],[5,3],[-6,9],[-11,1],[-21,-5],[7,8],[58,32],[0,4],[-14,-2],[-93,-51],[2,7],[2,6],[6,11],[-6,4],[-25,-4],[25,21],[-11,4],[-12,-3],[-23,-14],[-9,0],[-33,-8],[8,39],[1,6],[7,3],[5,7],[8,18],[20,21],[3,6],[2,6],[32,39],[5,8],[2,2],[4,0],[7,0],[4,2],[0,4],[-1,7],[0,7],[6,34],[1,6],[2,3],[4,11],[3,3],[15,4],[2,10],[-4,6],[-12,8],[2,6],[3,5],[2,5],[1,8],[-1,4],[-4,7],[-1,4],[0,31],[-1,15],[-2,15],[-8,32],[3,5],[7,-2],[3,-3],[4,-10],[7,-4],[6,5],[-2,15],[21,0],[10,3],[7,9],[-24,14],[-9,11],[3,16],[4,4],[5,2],[5,0],[10,-10],[25,-4],[-6,13],[-13,8],[-24,4],[3,6],[4,1],[5,-1],[5,1],[0,4],[-8,4],[-24,0],[-6,5],[-9,19],[-4,5],[-2,5],[-8,21],[-2,0],[-4,-6],[-35,2],[-8,4],[-6,8],[-4,10],[-1,6],[0,7],[1,8],[-2,7],[-1,2],[-1,2],[-2,4],[-1,5],[-2,11],[-1,5],[-2,6],[-5,11],[-4,10],[-2,9],[1,9],[3,12],[-2,8],[-2,12],[-2,11],[-9,10],[-3,12],[-1,15],[-1,41],[-1,12],[-3,11],[-2,12],[2,13],[3,14],[2,11],[-4,25],[0,14],[7,6],[3,1],[2,4],[1,6],[0,7],[2,6],[21,26],[4,3],[9,0],[12,6],[5,8],[3,2],[5,1],[29,25],[5,3],[14,0],[8,3],[3,7],[5,16],[12,9],[21,9],[4,6],[6,13],[3,5],[6,4],[18,-4],[2,-2],[2,-10],[1,-4],[3,-2],[2,0],[1,2],[3,0],[22,-4],[7,0],[2,-3],[21,-1],[2,-1],[3,-2],[2,-3],[1,-4],[1,-2],[2,1],[4,3],[10,1],[3,-1],[3,-3],[2,-3],[2,-3],[7,9],[6,4],[7,2],[6,-2],[4,-4],[3,-4],[3,-3],[43,-7],[6,-2],[5,-6],[4,-4],[11,-2],[5,-5],[-2,-3],[7,-7],[9,-2],[17,1],[20,-14],[17,-3],[27,-14],[24,-5],[8,-6],[11,-1],[5,-2],[2,-5],[2,-12],[1,-3],[4,-2],[4,1],[4,3],[4,2],[4,-2],[5,-5],[3,-2],[4,2],[9,6],[5,1],[3,-2],[6,-11],[17,-6],[7,-6],[47,-10],[19,-14],[0,-4],[-35,-17],[-10,-14],[-5,-5],[-11,-2],[-5,-5],[-3,-5],[-15,-13],[17,0],[5,3],[11,11],[11,5],[16,12],[3,4],[26,13],[22,30],[7,4],[39,9],[43,-14],[7,-5],[2,-8],[-1,-10],[-2,-14],[5,2],[9,16],[5,3],[-2,0],[11,4],[13,-3],[32,-20],[14,-18],[14,-13],[2,-3],[1,-2],[2,-10],[3,-3],[24,-17],[21,-7],[11,-1],[0,4],[-7,3],[-15,14],[-13,6],[-16,18],[-4,7],[0,9],[4,11],[5,9],[5,4],[80,0],[7,3],[4,4],[2,3],[2,5],[4,2],[9,3],[6,7],[5,15],[9,4],[4,2],[4,2],[7,-7],[5,-1],[5,1],[5,1],[14,15],[19,5],[6,4],[4,5],[7,17],[4,8],[10,6],[5,8],[3,9],[2,4],[34,5],[15,5],[7,0],[6,-5],[4,-8],[11,-27],[6,-11],[5,-3],[6,1],[8,-1],[4,-3],[2,-3],[2,-3],[2,-3],[5,-2],[4,2],[3,2],[5,2],[8,-4],[6,-8],[5,-10],[6,-7],[19,-4],[11,-5],[1,-9],[-2,-12],[4,-10],[32,-27],[2,-5],[2,-6],[2,-5],[4,-2],[10,-2],[12,-5],[10,-7],[9,-10],[-3,-6],[-3,-2],[-4,-2],[-3,-2],[34,-4],[11,-4],[0,4],[-11,11],[5,4],[14,5],[6,0],[4,-3],[9,-11],[16,-6],[2,-9],[-4,-11],[-8,-13],[11,1],[5,-2],[3,-7],[-4,-2],[-1,-4],[1,-5],[4,-5],[-2,-8],[0,-11],[-1,-10],[-4,-4],[-14,-4],[-4,-4],[-1,-3],[1,-11],[0,-10],[-1,-5],[-29,-40],[11,0],[7,7],[10,17],[8,5],[0,-20],[9,-17],[9,-5],[-1,17],[-4,15],[-4,17],[1,16],[7,13],[2,-1],[7,-6],[23,-5],[37,-21],[34,-4],[8,-10],[2,-6],[1,-5],[1,-5],[3,-6],[10,-11],[3,-5],[-5,0],[-16,-5],[4,-2],[2,-1],[0,-4],[-7,-1],[-4,-7],[1,-10],[4,-7],[4,-1],[3,1],[3,3],[6,8],[3,0],[18,-7],[5,-5],[4,-7],[1,-5],[0,-5],[1,-4],[5,-3],[3,-3],[2,-4],[1,-4],[-3,-10],[-5,-11],[-11,-16],[-6,-5],[-6,-2],[-6,1],[-20,7],[-12,1],[-9,-9],[-7,-21],[16,18],[6,2],[29,-7],[10,0],[3,1],[10,6],[3,1],[9,-1],[3,1],[2,4],[1,6],[1,7],[1,6],[2,3],[3,2],[1,4],[2,8],[-1,4],[-2,3],[-2,5],[-5,6],[-1,4],[5,2],[26,-8],[15,-9],[13,-3],[3,-2],[5,-5],[16,-6],[6,-3],[20,-22],[3,-7],[-6,0],[5,-3],[4,-5],[3,-8],[-2,-8],[-3,-1],[-11,5],[-5,-1],[-1,-4],[0,-4],[-3,-3],[-15,-5],[-31,2],[-15,-5],[3,-6],[5,-1],[10,3],[2,-3],[2,-5],[-1,-6],[-4,-3],[0,-4],[7,-5],[3,-2],[4,-1],[-6,-10],[-12,-8],[-22,-6],[0,-4],[10,-4],[16,-1],[17,-7],[33,4],[9,-4],[-12,-9],[-5,-1],[-3,-3],[-1,-4],[-3,-4],[-10,-4],[-32,4],[5,-3],[2,-1],[0,-4],[-5,-3],[-2,-1],[5,-4],[6,-1],[12,1],[5,-2],[10,-6],[6,0],[-3,-9],[-5,-7],[-10,-8],[0,-4],[9,-6],[28,-11],[-6,-14],[-2,-8],[-2,-10],[4,2],[6,8],[3,2],[3,-3],[2,-4],[2,-5],[1,-4],[-5,-15],[-2,-7],[2,-3],[6,1],[4,1],[5,3],[3,3],[-4,8],[-3,8],[0,9],[4,8],[6,4],[6,-3],[5,-8],[2,-11],[2,-6],[14,-21],[1,-4],[5,-8],[3,-1],[-3,13],[27,4],[12,7],[5,0],[-2,-11],[3,-6],[4,-8],[3,-2],[2,10],[3,1],[16,-9],[4,0],[7,4],[9,0],[23,-9],[5,-6],[3,-8],[-4,-12],[26,1],[7,-4],[2,-4],[3,-2],[4,-2],[4,0],[4,1],[0,4],[-3,4],[-3,2],[6,8],[10,-4],[18,-15],[0,-5],[-2,-1],[-5,-7],[5,-3],[18,3],[13,-11],[6,-1],[0,5],[-4,1],[-2,4],[-2,4],[-2,6],[3,0],[4,1],[3,-1],[-1,2],[-1,1],[0,2],[0,3],[4,3],[5,0],[6,-3],[4,-3],[0,-2],[1,-8],[1,-3],[2,-2],[9,-1],[-2,8],[-2,5],[-1,5],[3,6],[2,-3],[2,-1],[4,-1],[-3,8],[-1,2],[-2,3],[0,4],[7,-1],[10,-11],[6,0],[-1,9],[2,7],[4,3],[4,-1],[3,-2],[9,-4],[4,-7],[2,-2],[5,0],[3,3],[4,4],[4,2],[9,0],[3,-3],[-2,-6],[4,-2],[4,0],[3,-1],[1,-5],[-2,-2],[-7,-6],[-3,-3],[-2,-11],[3,-7],[6,0],[7,6],[2,-5],[-4,-4],[-1,-6],[3,-10],[1,-4],[1,-1],[1,-1],[0,-4],[0,-4],[-1,-3],[0,-3],[-2,-7],[-1,-4],[2,-2],[0,-1],[2,-4],[0,-4],[0,-3],[-3,-4],[-14,-4],[0,-4],[21,0],[6,-4],[-3,-10],[2,-5],[5,-1],[13,0],[2,0],[2,-3],[4,-8],[2,-1],[7,-8],[5,-3],[4,4],[3,6],[9,9],[2,8],[-6,-2],[-10,-8],[-6,-2],[-3,3],[5,7],[7,6],[3,2],[7,11],[11,12],[12,9],[10,2],[1,-22],[10,-7],[11,7],[3,18],[-3,7],[-5,9],[-3,9],[1,10],[1,4],[1,13],[0,5],[2,6],[4,6],[2,5],[0,4],[-1,5],[1,5],[5,2],[3,2],[6,8],[4,2],[8,-1],[6,-4],[4,-6],[4,-9],[10,-32],[3,-5],[3,-5],[5,-12],[2,-13],[0,-11],[4,0],[11,-4],[-1,-7],[-4,-13],[0,-8],[1,-8],[3,-14],[1,-4],[-3,-15],[-8,-9],[-9,-5],[-17,-3],[-19,-11],[-8,-8],[-12,-18],[-3,-3],[-4,-1],[-10,-6],[-4,-4],[3,-5],[5,-9],[2,-11],[-1,-10],[-3,-10],[4,-3],[5,-2],[2,-10],[-2,-10],[-6,-6],[-33,-12],[-6,-6],[2,-4],[7,-16],[10,-11],[3,-7],[-2,-9],[-4,-7],[-1,-6],[1,-4],[7,-1],[3,-3],[1,-15],[3,-6],[-2,-8],[-3,-9],[-4,-8],[-5,-6],[1,-4],[4,-6],[2,-1],[7,-1],[2,-2],[11,-22],[2,-4],[3,-8],[11,-4],[4,-6],[-3,-7],[-8,-11],[-3,-7],[15,0],[1,-3],[-2,-6],[-2,-11],[0,-11],[0,-10],[-1,-8],[-5,-4],[1,-10],[-6,-5],[-13,-1],[-3,-2],[-2,-8],[-3,-2],[-3,2],[-11,10],[-9,4],[-5,-1],[-4,-8],[-1,-17],[5,-4],[9,-5],[5,-6],[-6,-8],[-7,-1],[-22,9],[-110,13],[-11,4],[0,-4],[2,-2],[5,-6],[-5,-4],[-68,-6],[-7,1],[-5,4],[-10,10],[-95,33],[-11,-6],[31,-7],[11,-12],[6,-3],[15,-4],[10,-5],[14,-3],[40,-19],[27,-4],[20,11],[6,1],[5,-1],[8,-5],[5,-2],[26,6],[4,-2],[13,-12],[17,-6],[17,-1],[28,7],[24,-2],[24,6],[10,0],[4,-6],[0,-14],[-2,-9],[-4,-4],[-7,1],[12,-11],[37,-13],[8,-7],[-1,-2],[-8,-10],[-2,-6],[0,-5],[1,-5],[0,-4],[-3,-9],[-1,-6],[2,-3],[4,-1],[4,-2],[4,-2],[4,-4],[-5,-4],[-6,-13],[-10,-5],[-6,-11],[-4,-3],[3,-3],[3,-1],[6,0],[3,-1],[1,-2],[1,-3],[2,-2],[16,-2],[3,-2],[2,-16],[-6,-16],[-9,-12],[-7,-4],[-9,-3],[-9,-7],[-9,-10],[-16,-27],[-1,-5],[-1,-7],[-1,-2],[0,-1],[3,-4],[3,-1],[11,1],[-2,-7],[2,-3],[4,-3],[4,-3],[1,-4],[3,-6],[2,-7],[1,-7],[-3,-2],[-2,-3],[-2,-5],[0,-7],[8,0],[2,-2],[0,-4],[-3,-8],[-29,-13],[-2,-7],[0,-8],[4,-6],[5,-1],[27,1],[2,1],[1,3],[1,2],[2,2],[2,1],[6,6],[3,1],[11,0],[22,16],[7,0],[7,-2],[6,-6],[5,-8],[-4,-8],[3,-4],[6,1],[11,11],[7,1],[5,-6],[2,-13],[-1,-2],[-3,-7],[-1,-7],[5,-3],[1,-3],[2,-6],[1,-9],[-3,-8],[-6,-5],[-8,-2],[-5,3],[-8,12],[-2,2],[-4,0],[-2,-3],[0,-4],[0,-12],[1,-3],[0,-2],[-3,-4],[-3,-2],[-3,1],[-3,3],[-2,2],[-1,4],[0,5],[-1,4],[-4,3],[-3,-1],[-22,-26],[-4,-9],[3,-9],[-2,-2],[0,-2],[0,-3],[2,-5],[-2,-4],[2,-6],[5,-5],[4,-1],[2,6],[1,2],[1,2],[1,2],[2,2],[3,4],[2,-3],[3,-7],[2,-3],[1,-1],[0,-2],[3,-2],[1,2],[5,5],[2,1],[5,-1],[4,-2],[3,-5],[3,-8],[-14,-13],[-6,-10],[-4,-18],[-4,3],[-4,5],[-2,5],[-3,7],[-1,5],[-2,3],[-5,1],[11,-82],[4,-20],[0,-4],[-5,-9],[-3,-4],[-3,3],[-2,4],[-4,3],[-3,0],[-2,-7],[0,-11],[-2,-14],[-4,-12],[-4,-5],[-21,-9],[-7,0],[-5,8],[-10,37],[8,10],[4,6],[2,8],[-1,11],[-2,5],[-2,-3],[-1,-9],[-3,2],[-2,2],[-2,4],[-1,5],[4,15],[-7,12],[-8,3],[-2,-10],[-8,6],[-12,38],[-7,9],[-4,-5],[1,-9],[3,-19],[-1,-10],[-2,-7],[-3,-4],[-3,-3],[10,-2],[11,-9],[5,-16],[-4,-22],[2,-6],[2,-10],[1,-10],[-1,-7],[-4,0],[-5,5],[-6,12],[-3,6],[-3,4],[-4,2],[-5,0],[4,-17],[2,-3],[0,-5],[-19,-10],[-6,-2],[-11,2],[-4,-2],[-3,-2],[-5,-8],[-3,-2],[-18,-5],[-21,4],[-5,-3],[-6,-8],[15,4],[8,-1],[6,-9],[3,-3],[22,1],[1,-2],[2,-8],[2,-2],[5,1],[8,5],[7,6],[4,8],[3,2],[6,3],[1,-3],[-1,-7],[-3,-11],[0,-10],[1,-15],[3,-9],[5,4],[5,9],[6,4],[5,0],[12,-6],[1,-3],[-2,-6],[-2,-5],[-3,-4],[-4,-3],[-3,-1],[-2,-2],[-5,-9],[-2,-3],[1,-5],[3,-5],[4,-8],[4,-6],[6,-5],[5,2],[2,11],[2,7],[11,14],[3,10],[6,12],[1,1],[1,4],[1,2],[2,1],[4,-4],[2,0],[5,2],[3,8],[1,5],[0,10],[2,-1],[6,13],[12,9],[22,10],[19,22],[2,9],[4,8],[5,7],[5,3],[3,0],[5,3],[7,2],[7,7],[7,3],[19,-3],[17,4],[41,0],[-2,-3],[-1,-6],[-1,-3],[27,-2],[30,26],[4,0],[2,-2],[1,-3],[3,-3],[6,-3],[24,-3],[8,-4],[21,-18],[9,-14],[2,-3],[25,-5],[2,-3],[1,-6],[2,-5],[6,-6],[2,-4],[2,-7],[-1,-6],[-5,-10],[-2,-6],[0,-13],[1,-7],[2,-2],[10,-9],[2,-4],[0,-10],[-5,-22],[0,-12],[4,-7],[12,5],[5,-6],[0,-12],[-4,-11],[-1,-8],[5,-6],[6,2],[11,12],[6,-1],[-6,-23],[-2,-14],[1,-11],[2,-5],[1,-7],[0,-7],[-5,-5],[-1,-5],[0,-13],[-5,-25],[-20,-60],[-6,-39],[-2,-6],[-1,-3],[0,-7],[1,-6],[1,-2],[-1,-8],[-3,-5],[-6,-6],[-28,-41],[-12,-7],[-55,-11],[-36,-22],[-34,-9],[-3,-5],[-2,-5],[-3,-5],[-12,-10],[-1,-2],[-26,-10],[-23,-22],[-41,-54],[63,59],[5,8],[5,6],[19,9],[25,19],[54,19],[19,12],[22,3],[39,13],[14,11],[3,5],[1,5],[2,5],[1,5],[4,3],[8,4],[3,3],[5,12],[3,7],[1,7],[0,26],[1,14],[3,12],[4,6],[7,3],[3,9],[0,11],[0,9],[2,13],[4,13],[9,21],[0,3],[-1,7],[0,5],[1,3],[1,2],[2,5],[1,5],[0,4],[-1,36],[0,5],[3,3],[8,16],[4,5],[3,-4],[6,-3],[6,-1],[6,0],[5,2],[1,2],[-1,6],[0,10],[6,16],[9,-5],[6,-15],[-4,-12],[0,-4],[4,-3],[5,-1],[7,0],[5,-8],[-1,-8],[-4,-10],[-2,-9],[-2,-24],[0,-4],[1,-3],[0,-2],[2,-3],[1,-5],[0,-4],[0,-3],[0,-2],[2,-5],[10,-17],[1,-3],[0,-10],[-2,-11],[-4,-11],[-4,-9],[-24,-29],[-5,-3],[-22,-28],[-12,-34],[-1,-9],[2,-6],[6,6],[9,18],[4,5],[10,7],[5,5],[2,5],[5,23],[6,14],[7,8],[9,5],[9,2],[-1,13],[6,11],[12,12],[-5,12],[-1,10],[1,38],[0,5],[2,5],[7,15],[0,4],[0,9],[0,3],[4,4],[5,-1],[4,-3],[6,-6],[1,-1],[1,-3],[0,-4],[1,-1],[6,-3],[3,-9],[-5,-11],[-4,-13],[5,-14],[-11,-15],[-1,-8],[4,-13],[-1,-2],[-3,-6],[5,2],[6,-1],[5,-4],[4,-7],[3,-10],[1,-9],[-2,-9],[-11,-29],[-2,-18],[2,-19],[6,-22],[-5,-27],[-3,-7],[-4,-8],[-4,-11],[-3,-11],[0,-13],[2,-3],[2,-4],[3,-2],[3,1],[1,5],[-1,7],[-2,10],[1,15],[4,9],[10,15],[4,10],[1,10],[-2,9],[-4,9],[0,12],[4,13],[10,22],[4,15],[6,15],[2,3],[2,0],[4,0],[2,2],[10,17],[5,7],[5,6],[8,1],[11,-2],[10,2],[8,22],[11,6],[17,3],[4,3],[4,4],[6,12],[6,5],[5,-3],[5,-5],[3,-4],[4,1],[3,1],[3,4],[3,7],[1,7],[-1,4],[-2,5],[-2,8],[11,0],[5,3],[5,6],[10,24],[1,6],[5,6],[11,1],[7,-8],[-4,-22],[7,-3],[3,-2],[2,-5],[1,-4],[1,5],[2,7],[0,2],[8,9],[3,8],[-2,12],[27,0],[14,-4],[7,0],[5,4],[-12,16],[-3,9],[9,4],[4,3],[0,7],[-1,9],[0,8],[3,8],[4,7],[4,8],[-1,8],[-1,6],[-1,8],[1,5],[3,-3],[4,-1],[2,7],[3,17],[7,5],[9,0],[7,2],[5,13],[-7,3],[-2,3],[-2,6],[4,4],[4,9],[0,10],[-3,5],[3,7],[5,5],[6,3],[5,2],[0,1],[2,2],[2,3],[2,2],[2,-1],[4,-2],[4,-2],[0,-2],[-1,-3],[1,-3],[14,-17],[12,-5],[5,-7],[7,-15],[4,-5],[14,-9],[5,-2],[3,-3],[2,-6],[1,-10],[1,-9],[3,-7],[3,-8],[5,-5],[4,1],[6,4],[5,-1],[3,-4],[-2,-9],[4,-3],[9,-2],[4,-3],[2,-7],[-1,-8],[-3,-8],[-3,-8],[-1,-2],[-2,0],[-1,-1],[0,-5],[-1,-3],[-1,-5],[-2,-4],[-5,-5],[-2,-9],[-1,-8],[0,-4],[1,-7],[4,-13],[2,-16],[-1,-13],[-6,-8],[-15,-9],[-6,-12],[5,-14],[3,-4],[4,2],[2,7],[1,10],[2,9],[4,7],[6,3],[4,0],[4,2],[3,7],[1,4],[-1,6],[0,4],[1,3],[7,3],[2,0],[-1,10],[-6,4],[-7,2],[-4,5],[2,7],[5,9],[11,15],[3,1],[2,4],[0,6],[1,6],[0,5],[1,4],[2,4],[4,2],[9,-6],[4,4],[-8,7],[-1,2],[-1,1],[-3,15],[0,3],[-6,7],[-6,2],[-5,3],[-2,12],[0,4],[-5,8],[-15,1],[-7,4],[1,7],[0,13],[0,11],[-2,5],[-14,9],[-4,4],[5,5],[14,35],[4,7],[2,1],[2,-2],[11,-19],[8,9],[23,-5],[9,5],[5,4],[3,4],[1,5],[-2,3],[-23,2],[-14,6],[-8,6],[-5,8],[0,7],[11,5],[6,5],[14,4],[3,2],[2,10],[-4,10],[-5,9],[0,9],[5,0],[31,-19],[14,-16],[5,-10],[3,-2],[2,5],[0,7],[-1,7],[-2,4],[-2,4],[-3,3],[-26,15],[2,7],[4,2],[9,-1],[-3,3],[-8,5],[7,1],[7,3],[12,9],[0,-4],[8,0],[14,-20],[27,-15],[5,2],[-3,8],[-4,5],[-5,2],[-4,1],[-4,2],[-9,15],[4,3],[10,7],[4,2],[5,-1],[3,-1],[7,-6],[9,-5],[26,-3],[8,4],[0,4],[-8,7],[-21,-1],[-12,12],[-12,5],[-5,1],[-1,2],[-1,4],[-1,3],[-2,-3],[-2,-4],[0,-3],[-1,-3],[-2,-4],[-4,-3],[-6,-3],[-7,0],[-4,2],[-3,6],[-4,18],[-12,22],[-2,4],[0,10],[2,6],[3,4],[4,3],[-5,6],[-4,2],[-4,3],[-4,9],[3,6],[-3,7],[1,6],[0,3],[1,2],[3,0],[13,-4],[8,-12],[16,-33],[0,11],[-5,25],[3,5],[1,-1],[2,-3],[2,-3],[1,-1],[3,1],[1,2],[1,3],[2,4],[3,2],[9,-6],[6,2],[0,4],[-6,5],[-8,13],[-4,3],[-3,4],[-2,12],[-2,13],[0,9],[6,7],[13,-10],[39,-47],[4,1],[-13,35],[-6,1],[-4,6],[-2,9],[1,12],[3,9],[4,2],[10,-2],[-7,9],[-25,11],[0,4],[7,0],[0,4],[-6,5],[-7,4],[-7,5],[-4,10],[9,-1],[19,-10],[10,-1],[11,7],[5,1],[33,-7],[12,-5],[1,-1],[2,1],[2,0],[0,-2],[1,-5],[1,-4],[1,-4],[31,-30],[2,-4],[4,1],[10,-4],[6,3],[-14,6],[-14,12],[-12,15],[-15,23],[-6,4],[-14,5],[-17,11],[-22,2],[-5,3],[-5,8],[-17,56],[-8,45],[-3,10],[-5,7],[7,12],[10,6],[6,6],[-9,13],[2,4],[0,-1],[2,1],[6,-4],[2,-2],[2,-2],[2,4],[2,10],[4,3],[5,-3],[5,-4],[4,-2],[-2,6],[-1,6],[0,6],[3,2],[4,1],[5,6],[3,2],[4,-2],[27,-15],[5,-4],[8,-12],[14,-6],[9,-7],[9,-3],[19,-1],[0,5],[-20,4],[-3,2],[-8,8],[-13,6],[-15,17],[-8,3],[0,5],[1,0],[5,3],[-2,6],[-5,7],[-1,4],[0,6],[2,2],[2,-1],[2,-3],[4,-1],[8,-6],[7,-4],[3,9],[-2,8],[-6,5],[-14,5],[0,4],[8,-1],[3,1],[5,4],[2,0],[1,1],[0,2],[-1,3],[1,2],[0,2],[0,3],[0,2],[2,1],[4,-1],[3,-2],[3,-3],[5,-10],[2,8],[-3,8],[-13,12],[5,3],[4,0],[4,-2],[5,-1],[-3,7],[-4,4],[-4,3],[-4,4],[-1,7],[0,8],[-2,4],[0,4],[17,0],[6,5],[6,15],[-8,5],[-3,4],[1,5],[3,4],[4,3],[5,3],[2,-1],[1,-5],[2,3],[2,6],[1,2],[-1,1],[-1,4],[0,5],[1,4],[3,2],[3,-2],[2,1],[0,11],[4,12],[7,2],[9,-1],[5,5],[-2,9],[-21,24],[14,8],[6,6],[6,8],[5,10],[2,9],[0,9],[-6,7],[0,3],[3,3],[3,0],[2,-2],[3,-1],[12,0],[5,-2],[10,-8],[4,-1],[6,-4],[3,-1],[-2,6],[-1,1],[-3,1],[0,5],[6,-3],[14,-2],[4,-6],[4,-4],[14,-14],[4,-1],[19,-8],[5,-5],[4,-8],[4,-6],[10,-8],[-5,-3],[-7,1],[-8,5],[-12,13],[-25,12],[-14,0],[-12,-9],[-22,-23],[8,-2],[22,17],[9,5],[17,-2],[5,-2],[15,-15],[6,-1],[-5,-11],[-17,-16],[-6,-10],[14,0],[3,1],[5,6],[7,6],[6,9],[6,6],[6,-4],[-3,-2],[-2,-3],[-3,-4],[-1,-3],[5,0],[3,-4],[2,-6],[3,-6],[-5,-11],[-27,-21],[0,-5],[3,-1],[2,-2],[3,-3],[1,-6],[-8,-3],[-22,-1],[-17,-5],[-8,-6],[-4,-7],[-4,-4],[-34,-21],[-3,-4],[-1,-6],[1,-3],[4,-1],[1,0],[61,45],[9,-3],[14,1],[14,6],[7,10],[2,11],[6,11],[6,5],[3,-6],[-1,-13],[-1,-9],[-3,-3],[-5,6],[-3,-9],[11,-19],[-4,-8],[-1,-7],[-8,-4],[-33,2],[14,-4],[20,-11],[5,-6],[1,-11],[-2,-9],[-4,-5],[-6,-2],[-3,0],[-15,-11],[-4,-5],[6,-3],[6,2],[11,11],[3,2],[4,1],[8,-1],[3,3],[3,5],[0,6],[-1,3],[0,4],[4,9],[7,9],[5,5],[17,-1],[6,1],[0,4],[-11,-1],[-11,4],[-7,11],[0,19],[7,-5],[7,-2],[16,-1],[1,-1],[0,-5],[1,-2],[8,-1],[0,1],[3,-6],[4,-14],[3,-5],[0,-4],[-9,-5],[-26,-7],[-7,-12],[19,-1],[7,-5],[6,-10],[-3,-9],[-5,-7],[-6,-4],[-7,0],[0,-5],[11,0],[6,1],[4,4],[4,6],[2,6],[2,5],[5,3],[3,-5],[-3,-11],[-7,-17],[-2,-9],[-2,-9],[0,-20],[-5,-11],[-18,6],[-2,-14],[5,-13],[10,-16],[10,-13],[8,-6],[30,0],[21,7],[6,-3],[-4,-9],[-4,-7],[7,0],[4,-1],[3,-3],[-10,-6],[-11,1],[-10,-2],[-8,-14],[-2,-17],[-1,-10],[-6,-8],[-3,-9],[-3,-9],[-2,-8],[16,16],[7,10],[0,11],[2,0],[0,18],[7,8],[9,0],[8,-8],[16,4],[7,-4],[-4,-16],[-4,-4],[-10,-2],[-4,-4],[-11,-24],[0,-12],[4,4],[9,16],[4,6],[13,14],[30,-15],[8,-10],[3,-7],[-1,-6],[-2,-7],[-6,-12],[-6,-16],[0,-4],[-1,-2],[-1,-4],[0,-5],[-2,-2],[-57,-2],[-10,-5],[-8,-8],[1,-5],[2,-3],[3,-1],[3,0],[-2,0],[11,5],[11,1],[43,-10],[4,3],[3,3],[4,3],[4,-1],[-1,-7],[-1,-2],[-2,-3],[4,-3],[3,1],[4,2],[5,0],[-5,-10],[-5,-25],[-3,-11],[-6,-16],[-1,-1],[-1,-2],[-12,-3],[0,-5],[14,2],[7,4],[6,6],[3,10],[6,26],[3,5],[3,3],[4,14],[3,3],[2,-1],[4,-6],[1,-1],[20,0],[6,-4],[0,-5],[0,-2],[2,-2],[0,-5],[0,-4],[-1,-3],[-1,-3],[0,-16],[-1,-6],[-3,-7],[-2,-3],[-16,-15],[-4,-2],[-4,0],[1,-3],[2,-1],[4,0],[-2,0],[5,-2],[9,1],[8,2],[3,5],[14,26],[4,4],[14,8],[7,1],[3,-9],[-2,-6],[-5,-7],[-7,-5],[-5,-2],[3,-9],[-2,-7],[-3,-6],[-2,-8],[2,0],[9,8],[4,2],[0,3],[3,2],[4,0],[3,-1],[2,-5],[1,-6],[0,-6],[-4,-3],[-4,-5],[-10,-24],[-4,-8],[-7,-4],[-15,-4],[-6,-6],[-5,-9],[-6,-4],[-22,-3],[-16,-8],[-8,-2],[-8,1],[-13,8],[-39,7],[-3,-1],[-3,-3],[-2,-5],[-1,-5],[-2,-5],[-7,-6],[-3,-4],[0,-8],[5,1],[14,10],[4,11],[3,3],[14,0],[0,-4],[-6,-16],[3,-22],[7,-16],[6,1],[0,9],[-2,10],[-4,13],[3,9],[5,2],[6,1],[5,5],[9,-11],[5,-4],[5,-2],[6,1],[17,11],[12,2],[23,-3],[3,1],[2,3],[1,4],[2,3],[3,3],[10,6],[2,0],[4,-4],[5,1],[4,4],[1,7],[4,11],[10,1],[18,-6],[0,-3],[-1,-7],[0,-2],[11,2],[6,-2],[5,-6],[6,-2],[9,2],[7,-1],[1,-9],[-9,-10],[-50,1],[0,-4],[25,-7],[8,-5],[-13,-15],[-6,-9],[-4,-12],[6,4],[12,15],[7,5],[4,1],[5,-1],[4,-4],[0,-8],[-2,-4],[-5,-2],[-10,-2],[0,-4],[5,0],[6,-2],[5,-4],[3,-7],[-7,-4],[-14,-20],[-6,-4],[-19,-8],[3,-3],[1,0],[4,-2],[6,0],[13,5],[9,-1],[4,3],[4,10],[4,-4],[-7,-20],[0,-7],[7,-2],[4,5],[4,8],[2,9],[-1,7],[8,12],[11,4],[11,-2],[7,-10],[-11,-3],[-6,-3],[-1,-6],[3,-1],[32,-21],[3,-7],[2,-9],[-1,-7],[-1,-6],[0,-6],[0,-3],[0,-1],[-1,-1],[1,-3],[-33,-19],[-3,-5],[2,-1],[4,-4],[1,0],[21,0],[7,3],[7,4],[6,1],[5,-8],[3,-10],[-1,-10],[-3,-8],[-4,-6],[-4,-3],[-6,-1],[-2,-4],[-1,-5],[0,-4],[-1,-6],[-3,-6],[-40,-22],[-13,-16],[-8,-4],[-2,-3],[-1,-7],[-1,-2],[-2,-1],[-29,2],[-7,3],[-6,-9],[-12,1],[-12,6],[-8,10],[-2,-12],[-6,-9],[-8,-5],[-7,-2],[37,8],[5,0],[5,-2],[4,-5],[0,-10],[-2,-3],[-11,-17],[-6,-13],[-3,-4],[-4,-5],[-15,-8],[-13,-15],[-13,-21],[-3,-7],[7,0],[6,4],[16,19],[19,14],[43,60],[0,-4],[5,5],[29,4],[5,-1],[5,-4],[6,-8],[-4,-6],[-8,-18],[-8,-12],[-2,-7],[1,-9],[2,8],[4,1],[17,35],[4,6],[3,0],[6,-6],[1,-1],[0,-2],[1,-3],[2,-2],[2,0],[7,5],[2,6],[5,7],[6,5],[6,1],[17,5],[3,-1],[3,-3],[3,0],[1,8],[2,3],[2,3],[2,2],[4,0],[-3,-10],[0,-9],[2,-4],[4,2],[1,4],[2,9],[1,4],[4,3],[3,0],[3,-2],[4,-1],[24,9],[12,-1],[5,-16],[-13,-13],[1,-5],[1,-3],[-5,-2],[-4,-4],[-6,-10],[7,-17],[2,-9],[-3,-7],[1,-4],[2,-9],[0,-10],[-1,-7],[-3,-4],[-21,-10],[0,-2],[-1,-3],[-2,-2],[-3,-1],[-34,-2],[-5,-4],[-4,-14],[-3,-7],[-3,-7],[2,-7],[4,0],[3,8],[2,8],[2,5],[2,1],[6,8],[3,2],[7,-2],[28,0],[6,5],[2,6],[5,-2],[9,-6],[5,-2],[3,-5],[1,-7],[2,-7],[-10,-5],[-2,-5],[-1,-6],[-3,-5],[-4,-4],[-3,-3],[-26,-2],[-18,4],[-72,-14],[4,-4],[10,-2],[5,-2],[-7,-14],[-46,-29],[-2,-4],[2,-3],[14,3],[4,2],[-4,-13],[-5,-9],[-7,-5],[-17,-3],[-9,-4],[-8,-7],[-7,-7],[5,-1],[51,10],[5,3],[5,6],[1,4],[0,9],[0,5],[2,7],[7,9],[9,6],[13,6],[2,0],[3,2],[0,4],[0,4],[2,3],[4,6],[4,3],[2,2],[10,2],[11,6],[5,1],[0,-4],[-1,-1],[-5,-3],[4,-7],[6,1],[13,6],[2,-1],[2,-3],[2,-2],[4,2],[0,1],[0,2],[1,3],[1,2],[3,2],[1,0],[9,-6],[5,-4],[4,-3],[5,3],[5,7],[4,9],[5,6],[4,-2],[2,-8],[0,-9],[2,-2],[6,11],[1,5],[1,3],[1,4],[3,4],[11,4],[2,0],[3,-9],[-4,-9],[-16,-25],[-2,-4],[0,-6],[2,-3],[2,-3],[2,-5],[-2,-5],[0,-4],[6,1],[1,5],[0,8],[0,6],[3,5],[4,4],[4,2],[15,2],[6,-1],[3,-4],[-2,-6],[-5,-3],[-11,-3],[12,-8],[-2,-8],[1,-4],[3,0],[5,6],[5,5],[5,-4],[4,-9],[2,-10],[-6,-3],[-11,-13],[-6,-4],[-9,-1],[-17,8],[-8,1],[-7,-4],[-34,-33],[-5,-8],[9,1],[14,15],[8,4],[21,4],[5,-1],[9,-5],[4,-1],[-2,-9],[1,-11],[1,-9],[-1,-4],[0,-5],[0,-10],[2,-7],[5,2],[2,5],[2,10],[3,29],[2,7],[8,14],[3,-10],[1,-13],[-1,-12],[-5,-6],[6,-4],[6,7],[7,21],[3,-3],[7,-4],[3,-3],[1,-5],[2,-5],[1,-5],[2,-3],[3,16],[1,4],[11,18],[4,3],[6,-5],[5,-8],[4,-4],[2,-1],[1,-4],[1,-4],[1,-13],[1,-4],[0,-4],[-2,-6],[-4,-8],[-11,-14],[-4,-11],[2,-1],[1,-2],[2,-3],[1,-2],[0,-13],[11,-4],[13,-2],[7,-3],[13,-28],[3,-15],[-5,-8],[0,-4],[18,-10],[3,0],[0,-6],[2,-8],[0,-6],[-1,-8],[-2,-2],[-3,0],[-4,0],[-14,-9],[-18,-5],[-6,-6],[-3,-1],[-2,-2],[1,-6],[1,-7],[-1,-5],[-4,-7],[-8,-3],[-13,-2],[-22,8],[-8,-4],[-5,-9],[-11,-34],[-5,-5],[-7,3],[-14,12],[-26,15],[-8,2],[3,-9],[5,-8],[13,-12],[15,-8],[3,-4],[5,-7],[3,-1],[17,0],[4,2],[7,8],[3,2],[15,0],[2,2],[2,4],[4,3],[4,2],[2,1],[7,-5],[29,-3],[36,-24],[23,-23],[4,-6],[-6,-5],[-28,5],[0,-4],[11,-5],[4,-5],[-1,-8],[-1,-6],[2,-7],[0,-9],[-2,-9],[-4,-4],[-11,-7],[-3,-1],[-22,0],[1,-4],[2,-4],[3,-3],[2,-1],[8,0],[1,-1],[0,-6],[1,-1],[14,-2],[7,-6],[3,-10],[2,-13],[5,0],[10,10],[7,5],[3,-3],[-1,-9],[-2,-12],[38,46],[8,-2],[-3,-4],[-13,-23],[-4,-6],[-2,-1],[0,-5],[1,-4],[3,-1],[44,3],[15,-3],[14,-9],[11,-11],[5,-9],[1,-10],[0,-6],[-4,-7],[-1,-7],[1,-6],[4,-8],[2,-5],[0,-3],[0,-1],[-4,-3],[-1,-6],[3,-5],[4,-2],[-1,-5],[0,-5],[1,-3],[2,-3],[-2,-4],[-3,3],[-6,12],[-4,5],[-5,-5],[-5,-1],[-10,2],[-5,-1],[-5,-2],[-5,-3],[-5,-6],[-8,-25],[-3,-4],[-4,-1],[-6,-5],[-5,-6],[-4,-6],[-2,-9],[1,-8],[1,-8],[-1,-9],[-4,-10],[-6,0],[-7,2],[-5,-2],[-9,-10],[-14,-2],[-13,3],[-10,7],[-3,-7],[0,-10],[2,-10],[3,-6],[-3,-7],[-1,-9],[1,-8],[3,-4],[3,12],[3,11],[5,6],[8,3],[19,-3],[8,-5],[7,-8],[-4,-11],[-6,-5],[-7,1],[-16,5],[-2,-2],[9,-17],[5,4],[7,-5],[7,-7],[14,-7],[3,-8],[-1,-8],[-7,-5],[-4,1],[-11,7],[-35,2],[-9,4],[-7,6],[8,9],[-2,5],[-7,3],[-3,-3],[-4,-7],[-8,-1],[-15,6],[-24,18],[-32,7],[-7,3],[-23,19],[-38,13],[-5,5],[6,8],[49,12],[8,6],[4,0],[9,-6],[51,5],[-12,9],[-70,3],[-4,-1],[-8,-6],[-5,-2],[-6,2],[-15,11],[-5,1],[-5,-1],[-5,-3],[-4,-5],[-3,-7],[-1,-8],[-3,-6],[-4,-4],[5,-1],[42,-27],[16,-17],[5,-3],[15,-3],[5,-4],[6,-6],[22,-10],[19,-16],[25,-10],[14,1],[7,-1],[5,-4],[-7,-6],[-84,6],[1,-3],[0,-1],[-1,0],[61,-16],[6,-3],[23,-1],[14,4],[4,-2],[20,-14],[3,-1],[4,0],[3,3],[3,4],[3,2],[3,-3],[4,-8],[2,-3],[3,-5],[6,-5],[2,-4],[0,-9],[-4,-8],[-13,-1],[-12,-10],[-61,15],[-17,-1],[-13,-11],[0,-4],[6,0],[12,4],[10,-1],[4,-1],[4,-2],[2,-5],[0,-6],[-1,-1],[-3,0],[-13,-6],[-26,3],[-12,-2],[6,-7],[6,-5],[6,-3],[29,-4],[4,1],[2,11],[6,-4],[6,-8],[2,-5],[17,-3],[8,-3],[7,-6],[-7,-3],[-9,-1],[5,-6],[14,-10],[2,-3],[0,-3],[1,-4],[3,-2],[3,0],[5,3],[3,0],[0,-3],[-5,-4],[-2,0],[6,-5],[15,2],[8,-2],[4,-4],[5,-7],[2,-7],[-2,-6],[-6,0],[-39,17],[-8,0],[-6,-5],[5,-4],[39,-12],[0,-4],[-25,-9],[-13,1],[-10,8],[12,-1],[6,2],[3,7],[-5,4],[-15,4],[-22,-1],[-11,-5],[-5,-1],[-5,3],[-5,6],[-5,5],[-5,-1],[-11,-6],[3,-7],[6,-7],[11,-10],[-3,-5],[2,-5],[20,-14],[6,0],[9,10],[4,-1],[5,-3],[4,-3],[11,1],[9,3],[-2,-9],[-2,-3],[15,0],[4,2],[5,5],[4,1],[22,1],[2,-1],[1,-2],[1,-2],[1,-3],[0,-1],[6,-4],[3,-1],[32,8],[8,6],[9,3],[7,-4],[0,-3],[-2,-6],[3,-6],[2,-5],[0,-6],[-4,-2],[-6,-1],[-6,-2],[-2,-7],[-1,-10],[-1,-5],[0,-1],[6,2],[2,1],[2,3],[3,3],[3,1],[3,-2],[0,-3],[-2,-5],[-2,-2],[0,-5],[4,-5],[-3,-4],[-21,-13],[-5,-5],[-3,-9],[8,-5],[7,1],[15,8],[7,1],[8,-1],[9,-5],[7,-7],[-13,1],[-7,-1],[-5,-4],[3,-3],[4,-1],[8,0],[0,-4],[-35,5],[-20,-2],[-10,-11],[8,0],[7,-2],[3,-1],[16,-5],[1,-2],[0,-4],[0,-5],[-1,-1],[-3,0],[-2,1],[-4,2],[-1,4],[-3,4],[-2,2],[-3,2],[-2,1],[-2,-1],[0,-7],[4,-6],[8,-9],[4,-3],[16,6],[23,0],[6,-2],[3,-2],[8,-9],[7,17],[11,-3],[10,-12],[8,-14],[-1,-4],[-1,-5],[0,-6],[0,-6],[-6,4],[-10,1],[-10,-1],[-6,-4],[1,-8],[7,-6],[13,-6],[6,-6],[9,1],[33,12],[4,0],[4,-4],[6,-2],[32,0],[10,-6],[5,-15],[-2,-15],[-7,-11],[-16,-15],[-15,-2],[-6,-2],[-16,4],[-5,-4],[3,-2],[2,-2],[1,-2],[1,-5],[2,0],[4,4],[5,0],[11,3],[26,-4],[6,1],[6,6],[9,13],[7,15],[4,18],[4,2],[7,-2],[4,-3],[-1,-8],[-6,-14],[3,-5],[2,-12],[1,-12],[-2,-11],[2,0],[2,-3],[2,-1],[-3,-6],[-4,-5],[-4,-3],[-3,-2],[-4,-3],[-1,-7],[3,-7],[3,-4],[2,-3],[-2,-8],[-5,-13],[-6,-10],[-2,-6],[1,-8],[13,28],[5,4],[4,5],[3,12],[5,24],[7,22],[3,8],[2,4],[0,5],[0,8],[2,11],[4,11],[5,3],[4,-7],[3,2],[3,-4],[4,-7],[4,-3],[2,1],[3,6],[2,1],[2,-3],[3,-4],[3,-6],[4,3],[3,5],[3,0],[1,-13],[-15,-22],[4,-5],[-2,-3],[-1,-4],[-1,-1],[3,-6],[0,-4],[-3,-1],[-9,-2],[-10,-6],[-5,-1],[-6,-5],[-5,-11],[-4,-14],[-1,-15],[7,12],[9,11],[10,2],[10,-13],[1,-16],[-4,-18],[-12,-31],[7,5],[8,12],[12,26],[4,5],[4,0],[2,-4],[-5,-17],[1,-5],[4,-3],[5,-2],[-1,-7],[-1,-3],[0,-3],[-6,6],[-3,-2],[-3,-6],[-3,-10],[-6,-8],[-19,-16],[0,-4],[2,-3],[1,-4],[-1,-5],[-2,-4],[3,-7],[-2,-11],[-9,-19],[6,3],[5,7],[8,18],[-4,9],[3,8],[11,12],[8,20],[6,8],[7,-4],[-3,-1],[-5,-7],[0,-5],[-7,-12],[-2,-7],[3,0],[3,2],[2,4],[1,6],[4,-8],[3,-3],[3,-1],[3,3],[0,8],[-2,15],[3,13],[7,3],[9,-4],[6,-6],[-2,-9],[-2,-3],[2,-3],[1,-4],[0,-4],[-3,-5],[5,-3],[1,-1],[0,-4],[-1,-2],[-1,-2],[-8,4],[-11,-4],[-26,-18],[-3,-6],[-2,-21],[-3,-7],[-6,-13],[6,-4],[-3,-7],[-7,-6],[-4,2],[0,4],[-2,2],[-2,1],[-3,-1],[0,-2],[-8,-12],[-2,-1],[-1,-4],[0,-10],[-1,-5],[-5,-8],[-1,-5],[-1,-7],[-3,-4],[-18,-18],[12,8],[21,26],[10,6],[2,-2],[2,-4],[3,-3],[2,3],[5,14],[3,6],[4,2],[7,-2],[-1,-6],[-15,-21],[-11,-9],[-4,-6],[-4,-10],[-6,-22],[-3,-9],[-6,-7],[-19,-13],[-14,-17],[-5,-4],[0,-4],[3,-3],[-1,-7],[-6,-18],[5,8],[16,16],[10,22],[5,7],[6,4],[12,6],[5,6],[4,22],[1,3],[6,6],[2,2],[6,0],[3,-3],[2,-1],[5,4],[23,39],[5,5],[6,5],[5,3],[2,-1],[1,-3],[2,-1],[2,3],[3,6],[1,3],[5,4],[3,6],[2,3],[4,-3],[-9,-25],[1,-6],[-2,-7],[-5,-15],[7,5],[10,19],[13,8],[11,14],[7,2],[-2,-9],[-4,-4],[-4,-4],[-4,-7],[-1,-7],[-2,-14],[-2,-7],[-24,-38],[-3,-15],[-2,0],[-6,4],[-10,-11],[-9,-19],[-4,-19],[3,3],[24,35],[26,28],[3,3],[2,7],[4,13],[10,27],[2,3],[3,0],[1,2],[-1,5],[7,5],[16,-5],[7,4],[-2,7],[1,5],[2,3],[4,2],[3,1],[2,5],[2,5],[1,4],[5,8],[7,7],[7,5],[6,1],[1,-9],[4,-10],[-1,-6],[2,-3],[-2,0],[1,-2],[1,-1],[2,-2],[4,10],[4,-11],[1,-13],[-6,2],[-1,-6],[-4,-14],[3,-1],[2,-2],[1,-4],[-1,-5],[-1,-4],[-3,0],[-3,4],[-4,-3],[-1,-2],[-1,-3],[-5,-6],[-5,-5],[-8,-3],[-6,-5],[-6,-2],[-12,5],[-7,0],[-4,-3],[2,-6],[-2,-4],[3,-13],[4,2],[4,9],[4,6],[3,0],[3,-3],[4,-1],[5,5],[1,-4],[0,-7],[-1,-6],[19,-4],[3,3],[6,13],[3,4],[5,3],[17,-3],[1,-1],[3,-5],[3,-2],[2,1],[4,3],[6,2],[12,15],[7,5],[1,4],[0,9],[1,9],[4,0],[4,-5],[2,-6],[1,-9],[-2,-8],[0,-7],[1,-9],[8,7],[8,0],[2,-5],[-6,-14],[-9,-11],[-3,-5],[-5,-15],[-3,-5],[-5,-5],[0,1],[-2,1],[-2,-1],[-2,-1],[-18,-29],[-3,-3],[-2,0],[-2,1],[-2,2],[1,1],[-6,-8],[-12,-9],[-4,-3],[5,-8],[-4,-11],[-7,-10],[-12,-7],[-7,-9],[-6,-11],[-3,-9],[2,-8],[2,1],[3,4],[3,-1],[1,-7],[-2,-6],[-3,-6],[-2,-8],[-3,-10],[-25,-20],[7,-8],[6,3],[6,6],[9,5],[7,8],[8,4],[0,5],[-2,6],[-1,6],[0,22],[2,14],[8,8],[5,9],[3,2],[11,4],[2,1],[4,6],[14,13],[49,67],[6,3],[4,-5],[0,-17],[4,6],[9,35],[16,28],[0,2],[0,9],[4,8],[2,5],[1,4],[2,4],[2,5],[5,4],[5,3],[5,-1],[2,-6],[-3,-4],[-1,-5],[0,-7],[0,-8],[4,6],[5,10],[5,11],[3,15],[4,-4],[4,-11],[2,-11],[-5,-24],[-11,-14],[-13,-10],[-9,-13],[-2,-5],[-2,-11],[-2,-4],[-3,-3],[-7,-4],[-19,-25],[-1,-9],[3,-7],[4,7],[6,11],[5,5],[6,1],[6,2],[6,5],[5,10],[1,1],[0,1],[1,0],[-1,13],[4,7],[13,9],[3,-11],[4,-4],[2,4],[-2,11],[2,6],[2,6],[3,5],[5,-1],[3,-6],[0,-7],[-2,-7],[1,-8],[6,11],[2,7],[1,12],[2,11],[4,7],[6,1],[6,-5],[0,-4],[0,-6],[1,-5],[2,-5],[2,2],[5,8],[2,2],[2,-5],[-1,-12],[-4,-19],[-14,-35],[-5,-8],[-1,-4],[3,-2],[2,1],[3,8],[3,3],[2,2],[2,1],[1,-1],[2,-2],[0,-1],[2,-9],[0,-2],[3,-1],[2,-1],[4,-6],[9,-10],[5,-7],[-5,-6],[-11,-4],[-5,-5],[2,0],[-4,-6],[-12,-11],[0,-4],[12,-1],[4,1],[5,4],[1,3],[1,4],[0,3],[0,2],[8,2],[5,-7],[1,-8],[-6,-3],[1,-9],[-1,-4],[-3,-3],[-1,-6],[2,-4],[4,-2],[18,-2],[3,1],[2,4],[2,3],[3,1],[7,-6],[2,-3],[1,-4],[0,-8],[1,-8],[2,-3],[2,1],[3,22],[5,5],[5,-4],[-1,-7],[5,-8],[8,-5],[16,-4],[22,0],[-7,-7],[-4,-5],[-2,-8],[4,1],[7,6],[5,1],[19,-4],[-2,-9],[2,-7],[4,-3],[6,-1],[4,3],[-1,7],[-2,10],[0,8],[3,3],[51,2],[3,-2],[1,-3],[1,-2],[-1,-2],[-3,-3],[3,-8],[4,-9],[4,-4],[6,-2],[32,2],[5,-3],[-1,-9],[5,-3],[4,4],[4,7],[5,4],[22,1],[5,-3],[16,-27],[1,-2],[0,-2],[0,-2],[1,-2],[3,-1],[1,2],[2,2],[2,1],[3,1],[2,2],[2,-1],[2,-6],[-2,-10],[5,-9],[7,-6],[5,-3],[16,4],[8,0],[1,2],[1,3],[2,3],[2,3],[1,1],[19,-1],[10,-5],[1,-14],[3,0],[2,-1],[5,-3],[0,-4],[-2,-9],[5,-3],[13,-1],[1,-1],[0,-2],[0,-7],[-1,-4],[-2,-1],[-2,0],[-3,0],[-3,-3],[-8,-2],[-4,0],[0,-4],[8,-1],[6,-4],[2,-9],[-4,-14],[-6,-7],[-8,-2],[-61,1],[-13,-8],[6,-6],[56,1],[9,0],[9,-4],[-5,-7],[-4,3],[-3,5],[-6,0],[-5,1],[-8,-6],[-3,-4],[6,-7],[-3,-6],[-12,-9],[-4,-6],[-13,-10],[-5,-2],[-7,-1],[-24,6],[-6,2],[-3,0],[-3,-1],[-5,-5],[-3,-1],[-3,0],[-2,1],[-2,2],[-2,3],[-3,2],[-3,-1],[-4,-2],[-78,-17],[-1,-9],[-15,-11],[-5,-9],[11,1],[23,12],[11,0],[-5,-8],[-12,-8],[-5,-5],[-5,4],[-4,-1],[-10,-7],[1,-4],[4,-9],[0,-3],[-2,-4],[-4,-1],[-21,-1],[-39,-11],[-27,-16],[-33,-30],[-13,-6],[-42,0],[-34,-15],[-36,-8],[-6,-3],[-9,-9],[-13,-3],[-10,-9],[-36,-10],[-6,0],[-26,8],[-13,-4],[-5,-4],[-2,-4],[-2,0],[3,-3],[14,-7],[2,0],[1,-3],[0,-10],[3,-2],[19,9],[39,1],[50,22],[44,11],[40,24],[14,6],[6,1],[14,-1],[4,3],[8,11],[22,16],[9,11],[2,-1],[2,-1],[3,1],[2,1],[4,0],[5,1],[6,3],[5,4],[7,14],[5,3],[6,-5],[-5,-5],[-5,-6],[-5,-8],[-7,-19],[-3,-6],[-11,-8],[-6,-7],[-3,-7],[-3,-9],[-5,-10],[-11,-17],[-6,-7],[-8,-4],[-14,-2],[-43,10],[-51,-12],[0,-4],[34,-4],[-12,-23],[-3,-4],[-8,-4],[-2,-4],[-7,-3],[-19,0],[-2,-3],[-6,0],[-23,-10],[-15,-11],[-9,-10],[-12,-6],[-6,-3],[-17,-21],[-4,0],[-9,-10],[-16,-3],[-30,1],[-42,14],[-15,-2],[-6,-3],[-3,-4],[0,-5],[3,-4],[11,0],[4,-2],[2,-9],[-5,-3],[-21,1],[-28,-9],[-12,-8],[-6,-3],[-5,2],[-14,11],[1,-5],[1,-1],[0,1],[0,1],[5,-11],[8,-12],[10,-10],[7,-4],[0,-4],[-14,1],[-7,-5],[-3,-14],[-1,-15],[-1,-10],[0,-10],[4,-12],[4,-9],[3,-9],[-1,-8],[-7,-2],[-3,-2],[-5,-9],[-2,-1],[-1,1],[-1,2],[0,3],[-1,8],[0,1],[-2,0],[-1,1],[-7,5],[-13,6],[-12,14],[-18,16],[-5,8],[-4,10],[-5,7],[-14,5],[-18,18],[-52,18],[-13,12],[-18,8],[-5,5],[-7,24],[-4,9],[-5,-3],[4,-9],[1,-12],[-2,-12],[-4,-10],[-11,-11],[-4,-7],[4,-8],[6,-2],[18,10],[8,-1],[23,-11],[24,-2],[54,-34],[9,-15],[2,-2],[7,-2],[6,-4],[22,-27],[7,-5],[20,-8],[22,-23],[8,4],[2,0],[4,-6],[2,-11],[1,-12],[1,-11],[-6,6],[-7,5],[-6,2],[-8,-1],[-19,-12],[-9,-12],[-14,-14],[-5,-2],[-7,-2],[-5,-5],[-3,-7],[-2,-11],[-7,8],[-1,2],[-1,1],[-3,-2],[-2,-5],[1,-6],[4,-5],[4,-1],[34,4],[15,6],[5,-2],[2,-9],[-8,-10],[-19,-13],[-19,-9],[-21,-4],[0,-4],[33,2],[15,5],[15,10],[5,5],[2,0],[3,-2],[2,-3],[5,-11],[1,-2],[4,1],[3,4],[3,5],[1,8],[-14,6],[-4,5],[3,6],[4,1],[7,1],[12,7],[4,1],[5,4],[12,19],[4,8],[9,12],[0,2],[3,3],[5,13],[3,4],[2,-2],[3,-5],[2,-1],[1,6],[-2,6],[-1,5],[-1,4],[3,3],[5,-1],[7,-5],[6,-2],[7,4],[0,4],[-7,4],[-14,3],[-6,8],[-3,10],[3,5],[7,0],[28,-9],[41,6],[14,8],[7,2],[6,3],[6,8],[10,17],[18,17],[3,5],[0,8],[3,2],[6,1],[4,2],[1,6],[1,7],[2,5],[6,0],[7,-13],[5,7],[2,4],[3,3],[4,3],[3,0],[2,-2],[1,-4],[3,-5],[3,-2],[7,2],[3,2],[3,3],[3,2],[8,-2],[3,2],[1,4],[2,13],[0,3],[3,-1],[6,-2],[4,-1],[0,7],[0,7],[1,4],[0,3],[3,0],[-6,1],[-6,2],[1,9],[-1,7],[-3,5],[-3,4],[6,10],[13,9],[5,7],[5,8],[22,23],[2,2],[2,6],[2,6],[1,8],[3,7],[3,3],[26,4],[25,11],[36,25],[57,22],[4,5],[5,4],[14,-2],[5,0],[18,18],[8,2],[86,-19],[6,3],[0,8],[-6,6],[-9,5],[-7,1],[-21,-2],[-6,2],[-18,15],[-31,7],[-8,-1],[-13,-7],[-7,-5],[-4,-7],[-2,-4],[-3,-3],[-3,-2],[-4,-1],[-4,1],[-2,3],[-1,4],[-3,5],[-15,9],[-5,7],[2,14],[5,12],[4,9],[6,6],[7,3],[21,-3],[3,6],[4,10],[8,2],[25,-4],[3,-3],[7,5],[9,3],[8,-1],[6,-5],[6,-6],[10,-5],[9,-2],[7,3],[4,-7],[9,1],[17,6],[-4,-4],[3,-6],[7,-1],[13,3],[27,-8],[-2,-3],[-2,-9],[7,2],[6,7],[6,3],[5,-8],[18,16],[2,-6],[8,-7],[11,-15],[1,-4],[-3,-8],[6,1],[5,3],[0,-4],[-2,-14],[6,-25],[15,-38],[8,-15],[4,-6],[3,-4],[15,-2],[6,-4],[4,-10],[-5,1],[-5,2],[-5,1],[-5,-6],[-2,-9],[1,-11],[2,-10],[4,-5],[4,-2],[11,-14],[5,-2],[5,-1],[5,-2],[4,-7],[-8,0],[-4,1],[-3,3],[0,-3],[-1,0],[-1,-1],[5,-5],[3,-7],[1,-6],[-12,-5],[-2,-8],[3,-8],[6,-5],[0,-5],[-8,-1],[-14,-12],[-15,-6],[-22,-22],[-34,-14],[-16,-13],[-9,-21],[14,7],[14,14],[2,-5],[0,-4],[-2,-4],[-2,-4],[10,1],[5,2],[4,3],[3,0],[10,-10],[3,-4],[3,1],[-1,-8],[-6,-17],[6,0],[4,-5],[1,-10],[-2,-14],[-4,-12],[-10,-15],[-5,-9],[4,2],[6,5],[3,1],[4,-1],[6,-4],[4,1],[0,4],[-3,13],[7,12],[30,30],[3,2],[4,4],[0,8],[-3,4],[-6,-5],[9,12],[1,3],[-1,13],[0,7],[4,3],[6,1],[7,5],[3,8],[-2,10],[9,11],[7,14],[8,11],[10,5],[7,-2],[10,-8],[6,1],[9,7],[5,0],[5,-7],[1,6],[2,2],[2,-1],[3,-3],[3,0],[3,3],[1,5],[-3,5],[10,2],[20,-20],[14,-3],[0,4],[-3,3],[-5,7],[-2,2],[0,5],[6,0],[-2,9],[0,3],[2,0],[4,-8],[4,2],[5,6],[5,4],[5,0],[4,2],[9,6],[12,-13],[3,-9],[-4,-7],[2,-1],[6,-7],[-5,-4],[-18,0],[-14,-5],[-10,-9],[-3,-8],[-1,-2],[-3,-1],[-34,5],[5,-7],[21,-9],[10,-9],[46,-16],[9,0],[7,6],[7,5],[10,-4],[9,-8],[6,-7],[-6,-4],[-13,4],[-6,-4],[5,-4],[23,-4],[7,2],[11,7],[7,-1],[2,-2],[2,-2],[3,-3],[4,-1],[17,0],[6,-2],[16,-18],[0,-4],[-1,-2],[-2,-4],[-1,-2],[0,-2],[0,-1],[1,0],[1,-2],[-3,-6],[-3,-4],[-2,0],[-4,2],[1,3],[1,5],[-3,0],[-3,0],[-3,2],[-2,3],[1,0],[5,4],[-8,5],[-36,9],[-11,0],[-7,-4],[6,-10],[52,-35],[7,-10],[-2,-16],[5,-2],[15,-11],[0,-3],[-11,-7],[-6,-6],[-4,-8],[7,-3],[6,5],[6,8],[5,6],[8,2],[7,-4],[12,-14],[0,-4],[-5,-3],[-4,-5],[13,0],[3,-2],[4,-4],[3,-5],[-2,-1],[-23,-9],[-4,-4],[6,-3],[14,2],[5,-4],[3,-13],[-3,-7],[-7,-5],[-5,-6],[15,-9],[4,1],[4,6],[1,5],[1,4],[4,1],[4,-4],[-2,-8],[-7,-14],[-5,-7],[-4,0],[-4,4],[-5,1],[2,-6],[3,-7],[4,-5],[3,-2],[9,-2],[2,-2],[-4,-5],[7,-12],[-17,-24],[-5,-4],[-8,0],[-16,11],[-9,1],[0,-4],[6,-1],[6,-4],[5,-7],[2,-8],[-2,-14],[-6,-10],[-7,-7],[-7,-2],[-7,2],[-14,8],[-7,2],[-30,-4],[0,-4],[6,0],[17,-4],[-3,-8],[-3,-7],[-4,-5],[-5,0],[4,-9],[4,-1],[3,3],[9,14],[4,3],[31,-6],[10,-7],[5,-14],[-2,0],[-2,-1],[-1,-1],[-2,-1],[6,-7],[9,-4],[6,-7],[-2,-15],[8,-13],[2,-8],[1,-13],[-3,-6],[-6,-1],[-10,1],[-2,-3],[-4,-4],[-1,-1],[-3,-1],[-15,0],[-5,-2],[-4,-3],[-2,-7],[21,0],[-6,-7],[-8,-3],[-8,-1],[-7,3],[-9,10],[-21,11],[-7,0],[1,-8],[6,-10],[8,-7],[14,-6],[6,-6],[4,-12],[-2,0],[1,-3],[0,-1],[0,-1],[-1,-3],[7,-1],[4,-5],[3,-7],[4,-7],[5,-4],[5,0],[11,4],[25,0],[6,-4],[5,-15],[5,-2],[-1,-5],[-3,-3],[-4,-1],[-3,-3],[2,-1],[4,-2],[2,-1],[-4,-6],[-7,-6],[-3,-4],[-4,9],[-6,2],[-13,-3],[-3,1],[-2,2],[-3,3],[-5,10],[-2,1],[-2,-1],[-4,0],[-24,12],[-14,2],[-7,-10],[19,1],[10,-3],[8,-8],[3,-6],[1,-3],[-15,-11],[-3,-4],[-2,-6],[10,-1],[4,-3],[3,-8],[-4,-4],[-5,1],[-14,10],[-4,1],[-9,0],[-29,-18],[-7,3],[-6,9],[-9,7],[-18,7],[-18,-2],[-4,4],[-3,4],[-4,2],[-9,0],[5,-3],[9,-11],[6,-2],[21,-1],[7,-4],[11,-11],[6,-3],[29,-2],[3,2],[3,6],[7,0],[11,-4],[6,2],[4,0],[1,-4],[1,-4],[3,-4],[3,-4],[3,-2],[25,-5],[23,9],[-1,-3],[-3,-13],[20,2],[8,-3],[-5,-26],[9,-1],[13,1],[9,-4],[0,-7],[-4,-16],[5,-6],[0,-9],[-3,-8],[-5,-4],[-4,1],[-4,4],[-5,5],[-3,4],[-4,3],[-18,-1],[3,-6],[7,-8],[2,-7],[-1,-6],[-4,-1],[-17,7],[-20,14],[-17,5],[-53,37],[-8,1],[3,-9],[6,-8],[14,-11],[25,-4],[9,-9],[6,-2],[3,-3],[3,-10],[2,-3],[33,-10],[0,-4],[-5,-4],[-4,-4],[0,-3],[4,0],[3,2],[3,0],[3,-2],[-1,-2],[-1,-3],[8,1],[2,-1],[2,-2],[0,-5],[2,-1],[4,0],[8,7],[4,1],[1,-2],[-3,-6],[-4,-6],[-4,-2],[-4,-1],[-4,-3],[-4,-5],[-2,-8],[7,2],[12,6],[6,1],[5,-3],[20,-18],[-6,-4],[-7,0],[-12,4],[-7,-3],[-3,-1],[-2,2],[-1,5],[-3,-2],[-3,-4],[-2,-5],[6,-1],[12,-10],[7,-1],[-3,-15],[-1,-9],[1,-8],[5,-12],[-8,-12],[-8,-1],[-9,1],[-8,-5],[3,-5],[8,-11],[-6,-12],[-7,-8],[-15,-8],[-7,-1],[-13,8],[-8,1],[4,-8],[12,-15],[3,-8],[-2,-12],[-4,-9],[-5,-5],[-23,-15],[-5,-1],[-3,-3],[-9,-14],[-10,-4],[-2,-2],[-6,-10],[-7,-7],[-2,-3],[-4,-9],[-5,-8],[-7,-6],[-7,-3],[-22,0],[-3,-2],[-2,-10],[-5,-8],[-6,-6],[-4,-3],[-7,6],[-5,0],[-2,-12],[-1,-5],[-3,-5],[-29,-29],[-7,-3],[-18,0],[-3,-3],[-2,-5],[-1,-17],[-2,-14],[-2,-4],[-9,-3],[-3,-3],[-3,-5],[-2,-3],[0,-4],[-3,-7],[-5,-3],[-4,-3],[2,-8],[-6,-14],[-10,-9],[-10,1],[-8,14],[-8,-16],[4,-8],[0,-8],[-3,-7],[-4,-6],[-6,-1],[-12,1],[-5,-3],[-2,5],[-4,-1],[-4,-3],[-5,-1],[-10,3],[-7,0],[-2,-5],[-5,2],[-10,12],[-6,17],[5,15],[-6,9],[-9,-1],[-21,-9],[-11,-7],[-4,1],[-4,2],[-3,0],[-5,-3],[4,-7],[0,-7],[-3,-5],[-4,-1],[-2,2],[-1,8],[-2,2],[-2,-1],[-1,-2],[-1,-3],[-1,-2],[-28,-12],[1,6],[5,9],[1,5],[-5,-1],[-9,-12],[-12,-6],[-2,0],[-2,3],[-2,6],[0,6],[1,7],[1,5],[-8,-5],[-5,-1],[-5,-4],[-3,-14],[-2,-13],[-1,-6],[-2,-2],[-4,2],[-2,5],[0,7],[1,7],[-5,-4],[-8,-14],[-9,-5],[-14,-18],[-12,-21],[-2,-3],[-18,-10],[-2,4],[-3,-4],[-18,-10],[-3,0],[-3,3],[-2,1],[-3,-3],[-5,-8],[-14,-4],[-5,2],[-3,9],[0,12],[2,8],[-2,3],[-8,1],[5,-5],[-8,-22],[3,-10],[-12,2],[-22,18],[-11,5],[-33,-35],[-5,-4],[-2,11],[-4,5],[-3,0],[-3,-10],[1,-1],[2,-5],[1,-5],[0,-5],[-3,-2],[-4,1],[-3,3],[-2,4],[-1,8],[-2,-1],[-2,-7],[2,-10],[4,-9],[6,-7],[13,-8],[-4,-2],[-2,-5],[-2,-8],[-2,-6],[-4,-3],[-9,-2],[-3,-5],[-6,-12],[-3,-4],[-18,-8],[-3,2],[-2,-7],[-3,-4],[-4,0],[-2,7],[-3,-5],[-2,-6],[-1,-10],[2,0],[2,-1],[1,-2],[1,-5],[-5,-5],[-5,-7],[-6,-13],[-1,-3],[-6,3],[2,8],[6,17],[-3,8],[-5,0],[-6,-3],[-4,-5],[-2,-3],[-3,-6],[-2,-3],[-2,0],[-2,1],[-3,0],[-2,-5],[3,-6],[3,-1],[2,2],[4,1],[2,-3],[0,-6],[-3,-13],[0,-3],[-2,-4],[0,-3],[1,-3],[4,-3],[1,-2],[0,-7],[-1,-6],[-1,-6],[-2,-6],[3,0],[1,-2],[3,-6],[-7,-4],[-1,-10],[3,-11],[2,-7],[-2,-6],[-4,-2],[-3,-4],[-1,-7],[-1,-4],[-4,-3],[-6,-3],[1,-4],[1,-4],[1,-2],[3,-2],[-9,-5],[-8,6],[-6,13],[-2,16],[1,8],[6,15],[2,8],[0,7],[0,7],[-3,4],[-4,-4],[-3,-9],[-3,-27],[-4,-15],[-17,-26],[0,-6],[-5,-9],[-4,5],[-5,9],[-5,3],[-2,-4],[0,-5],[1,-5],[-1,-6],[-2,-5],[-2,-1],[-2,0],[-3,-2],[-6,-7],[-8,-16],[-6,-6],[-3,-1],[-9,2],[-3,-1],[-1,-4],[0,-3],[2,-3],[3,-2],[-3,-7],[-3,-1],[-3,0],[-3,-2],[-2,-6],[-3,-15],[4,-5],[8,0],[4,-7],[-1,-10],[-3,-9],[-8,-4],[-12,3],[-4,5],[-3,-2],[-1,-3],[-2,-4],[-3,-2],[-4,-5],[-2,-6],[-2,-8],[-3,-7],[-3,-3],[-16,-3],[-12,-8],[-9,-2],[-2,-3],[-3,-4],[-3,-4],[-4,4],[-6,-3],[-3,3],[-6,-9],[-11,-23],[-6,-8],[0,-4],[2,-1],[5,-3],[-1,-7],[0,-7],[2,-5],[4,-2],[0,4],[3,8],[2,5],[2,-6],[-3,-11],[-7,-9],[-13,-11],[-7,-4],[-3,-2],[-1,-4],[-2,-10],[-2,2],[-4,5],[-3,-1],[-5,-10],[-6,-6],[-6,-1],[-7,7],[-2,-5],[-2,-1],[-3,0],[-2,-2],[-1,-2],[-2,-5],[-1,-2],[-3,-4],[-3,-3],[-2,1],[2,10],[-11,0],[3,5],[2,6],[1,7],[0,13],[-1,2],[-6,0],[-6,-7],[-7,-14],[-6,-11],[-7,4],[3,3],[3,5],[2,5],[2,7],[-5,-3],[-3,1],[-3,5],[-1,9],[-2,-6],[0,-19],[-3,-4],[-10,4],[-5,0],[-4,-4],[2,-4],[1,-3],[-1,-3],[-2,-2],[-3,2],[-2,8],[-2,2],[-2,2],[-2,2],[-2,1],[-2,-2],[-2,-4],[-2,-2],[-2,1],[-2,2],[1,9],[-7,-3],[-9,-1],[-2,-3],[-6,-11],[-3,-3],[-17,-5],[-6,3],[1,19],[-6,-10],[-3,-4],[-4,-3],[-16,0],[1,3],[1,2],[0,2],[0,2],[-6,0],[-4,-4],[-4,-6],[-4,-9],[-4,-2],[-7,10],[-5,-1],[2,10],[4,7],[6,4],[5,3],[-7,4],[-9,-7],[-27,-31],[-1,-3],[-2,2],[-1,2],[0,4],[0,1],[-1,1],[0,2],[-1,1],[-2,0],[-4,-4],[-2,-1],[-4,3],[-4,3],[-4,3],[-5,-1],[-1,-2],[-1,-4],[0,-4],[0,-2],[-2,0],[-6,4],[-7,-4],[0,-1],[-1,-2],[-1,-3],[-2,-2],[-8,6],[-3,0],[2,-10],[-4,0],[-11,10],[-5,2],[-24,-4],[-33,-18],[-21,-6],[-22,-17],[-16,-5],[-15,-11],[-6,-1],[-19,1],[0,4],[6,1],[8,9],[4,3],[4,1],[26,14],[5,1],[4,3],[2,7],[-1,7],[-4,3],[-5,-10],[-8,-5],[-16,-5],[-14,-12],[-9,-2],[-7,6],[2,16],[-5,11],[-7,9],[-2,9],[-5,6],[-6,2],[-11,-1],[-3,2],[-3,2],[-4,1],[-3,-3],[-3,-3],[-4,-2],[-7,-1],[-31,9],[-22,1],[-6,2],[-12,10],[-6,7],[-4,6],[-3,3],[-4,-1],[-3,-3],[-5,-2],[-3,-2],[-1,1],[-1,4],[0,4],[-1,2],[-3,0],[-3,-3],[-2,-4],[-2,-6],[-2,-3],[-5,-1],[-2,3],[-2,4],[-4,2],[-32,-2],[-43,6],[0,4],[11,9],[0,3],[-12,-6],[-7,-1],[-3,4],[-2,-7],[-3,-2],[-7,-4],[-5,4],[-22,-4],[-8,0],[-3,2],[-3,4],[-3,9],[-3,2],[-4,-1],[-3,-3],[-5,-10],[-2,-3],[-4,-1],[-12,5],[-13,0],[-5,-3],[0,-6],[3,-7],[1,-4],[-5,-6],[-7,-3],[-13,-3],[-23,6],[-7,-3],[-3,-3],[-5,-10],[-2,-2],[-7,-1],[-4,1],[-2,1],[-2,12],[-4,8],[-6,4],[-7,3],[-7,-1],[-19,-7],[-2,2],[-4,8],[-3,2],[-4,-1],[-3,-1],[-3,-1],[-3,3],[-2,3],[-3,9],[-2,4],[-4,2],[-13,-2],[-3,1],[-5,6],[-3,1],[-50,-5],[-13,-6],[-17,-3],[-3,-2],[-7,-11],[-3,-1],[-29,2],[-28,10],[-6,6],[-5,7],[-8,5],[-8,3],[-7,-1],[-6,-4],[-11,-10],[-27,-8],[-66,-6],[-3,-1],[-1,0],[-2,1],[-4,5],[-1,2],[1,1],[-4,0],[-6,-3],[-26,1],[-23,8],[-10,0],[-6,-4],[-5,-2],[-7,6],[-12,14],[-2,-1],[-6,-5],[-3,-1],[-44,-5],[-21,-10],[-25,-5],[-32,-11],[-28,2],[-6,4],[-9,9],[-10,6],[-10,0],[-8,-9],[-11,-25],[-4,-6],[-4,-3],[-5,1],[-2,5],[2,9],[-6,-1],[-1,-10],[3,-12],[2,-9],[-6,3],[-15,-1],[-5,4],[-4,6],[-5,3],[-11,2],[-10,-3],[-9,-6],[-10,-2],[-13,10],[-1,2],[1,4],[0,4],[0,6],[-1,7],[-1,4],[-5,5],[-5,0],[-6,-3],[-8,-9],[-9,-13],[-4,-9],[-1,-10],[2,-8],[8,-12],[4,3],[7,3],[8,1],[4,-3],[0,-5],[-1,-3],[-5,-4],[-3,-4],[-1,-1],[-9,2],[-10,7],[-3,0],[-5,-1],[-3,1],[-5,4],[-7,9],[-5,3],[0,-6],[0,-5],[1,-5],[2,-4],[-6,-3],[-6,-7],[-9,-17],[-13,-31],[-5,-7],[-14,-8],[-27,-10],[-11,-15],[-4,-11],[-3,-7],[-1,-6],[1,-5],[2,-7],[1,-6],[-7,-7],[-4,-11],[-3,-14],[-3,-11],[-5,-8],[-3,2],[-3,6],[-7,4],[-6,-3],[-5,-8],[-4,-9],[-6,-16],[-2,-10],[-2,-10],[-1,-9],[1,-10],[3,-8],[1,-8],[-1,-10],[-2,-8],[-10,-16],[-3,-9],[-2,-7],[-4,-25],[4,-13],[0,-19],[-1,-20],[-3,-13],[-6,-15],[-30,-56],[-7,-6],[-41,1],[-9,-2],[-9,-7],[-4,3],[-5,0],[-8,-3],[-17,0],[-3,-1],[-8,-6],[-2,-3],[-3,-7],[-3,-3],[-3,-1],[-13,2],[-15,6],[-8,1],[-14,-5],[-9,0],[-7,5],[-1,-8],[-2,-5],[-5,-8],[-11,7],[-4,-9],[-2,-16],[-6,-14],[-2,-1],[-5,1],[-2,0],[-2,-2],[-4,-5],[-3,-1],[-15,1],[-5,3],[0,-4],[13,-15],[5,-2],[9,4],[4,-2],[2,-9],[0,-5],[1,-11],[-11,-7],[-30,-9],[-4,-4],[-10,-13],[-4,-3],[-5,-1],[-10,0],[18,22],[3,10],[-1,14],[-9,14],[1,12],[-9,7],[-3,2],[4,-9],[4,-15],[2,-14],[1,-7],[-3,-2],[-10,-14],[-10,-7],[-2,-3],[-5,-5],[-17,-6],[-5,-3],[-6,-9],[-5,-14],[-3,-15],[2,-15],[-17,-12],[3,-8],[9,-1],[3,-8],[-39,-4],[-3,-2],[-2,-4],[-2,-6],[-2,-4],[-19,-21],[-6,-5],[-5,-5],[-7,-3],[-1,-4],[-1,-5],[-1,-6],[-4,-7],[-5,-4],[-12,-1],[-5,-4],[-4,-10],[-14,-75],[-7,-17],[-13,-7],[-3,1],[-2,2],[-3,1],[-3,-2],[-10,-29],[-4,-19],[-2,-7],[0,-21],[-10,-23],[-22,-37],[-7,-27],[-5,-13],[-6,-5],[-7,-3],[-5,-7],[-5,-8],[-5,-7],[-2,0],[-4,1],[-2,-1],[-1,-3],[0,-3],[0,-3],[-1,-2],[-20,-38],[-6,-7],[-6,-4],[-4,1],[-10,7],[-4,1],[-10,-1],[-6,3],[-4,8],[-8,17],[-5,10],[-6,7],[-12,15],[-11,12],[-14,0],[-16,-4],[-14,1],[-6,6],[-12,19],[-7,3],[-7,2],[-7,5],[-23,25],[-7,1],[-6,-6],[-6,-2],[-55,20],[-12,-3],[-4,1],[-6,6],[-9,14],[-6,5],[-7,1],[-3,-1],[-3,-2],[-3,0],[-3,1],[-12,9],[-30,9],[-7,-1],[-10,-8],[-6,-3],[20,5],[7,-1],[24,-17],[15,-4],[7,-5],[5,-7],[-1,-9],[-5,-6],[-8,-3],[-14,-1],[3,-9],[2,-8],[2,-6],[6,-2],[5,3],[12,13],[10,4],[40,1],[16,4],[19,-4],[4,-3],[5,-5],[14,-3],[9,-6],[4,-1],[3,-3],[3,-12],[4,-1],[4,2],[2,3],[16,-20],[19,-17],[20,-6],[18,11],[6,-7],[15,-6],[7,-6],[5,-8],[10,-30],[7,-8],[8,-5],[16,-3],[7,-4],[-2,-11],[-9,-18],[-2,-10],[-3,-30],[-1,-11],[-2,-3],[-3,-3],[-3,-5],[0,-5],[0,-5],[-1,-8],[-2,-13],[-3,-10],[-13,-29],[-4,-10],[-3,-25],[-4,-11],[-3,-5],[-7,-6],[-3,-5],[-10,-23],[-5,-6],[-12,-10],[-3,-4],[-3,-4],[-5,1],[-4,-1],[-4,-7],[2,-8],[-5,-9],[-7,-10],[-5,-9],[-2,-9],[0,-8],[0,-8],[0,-7],[-1,-7],[-2,-7],[-6,-13],[-3,-3],[-8,-5],[-7,-7],[-4,-2],[-16,-3],[-9,-5],[-8,-6],[-6,-7],[-2,2],[-4,3],[-2,3],[-3,-9],[-3,-29],[-2,-7],[-5,-5],[-4,-13],[-6,-27],[-8,-26],[-5,-13],[-5,-5],[-14,-41],[-8,-19],[-10,-15],[-12,-11],[-35,-21],[-11,-10],[-65,-96],[-2,-6],[-6,-20],[-2,-3],[-1,-7],[-4,-5],[-16,-18],[-4,-1],[-6,-9],[-4,-2],[-30,-2],[-15,-6],[-21,-14],[-14,-5],[-14,-11],[-8,-3],[-14,0],[-3,2],[-6,5],[-2,1],[-8,2],[-6,3],[-5,0],[-26,-37],[-11,-13],[-12,-7],[-24,-9],[-19,-11],[-5,-5],[-2,-10],[-4,-32],[-2,-7],[-11,-11],[-11,-5],[-6,-4],[-9,-10],[-14,-5],[-6,-5],[-39,-60],[-11,-9],[-7,-1],[-19,1],[-10,-3],[-20,-10],[-19,-13],[-23,-19],[3,-9],[-5,-32],[-5,-19],[-14,-11],[-10,-2],[-14,-7],[-6,-13],[-1,-11],[-1,-10],[-5,-20],[-16,-48],[-8,-16],[-12,-13],[-6,-7],[-5,-18],[-13,-28],[-21,-22],[-50,-11],[-22,-19],[-30,-50],[-8,-20],[-3,-10],[-2,-4],[-7,-3],[-3,-3],[-3,-5],[-2,-5],[-4,-5],[-6,-5],[-12,-4],[-17,1],[-6,2],[-3,1],[-3,2],[-7,14],[-5,6],[-2,2],[-5,1],[-25,-4],[-4,1],[-4,5],[-7,14],[-5,1],[4,-5],[3,-9],[3,-9],[4,-8],[6,-3],[8,-1],[42,-22],[7,-1],[7,-4],[5,-7],[6,-4],[6,7],[2,-8],[-2,-10],[4,-14],[5,-15],[6,-10],[-2,-1],[-1,-1],[-1,-2],[-11,-11],[-26,-1],[-12,-4],[-5,-7],[-8,-21],[-4,-5],[-6,-1],[-20,-18],[-2,-3],[-2,-1],[-4,-1],[-3,-2],[-5,-9],[-3,-2],[-1,-1],[-7,-8],[-3,-3],[-8,-2],[-3,-2],[-5,-6],[-6,-11],[-5,-13],[-1,-12],[-3,-8],[-6,-6],[-29,-22],[-17,-26]],[[29246,77119],[22,9],[45,31],[10,11],[8,17],[1,6],[0,6],[1,6],[3,2],[3,1],[3,3],[3,3],[8,11],[6,3],[24,8],[6,4],[9,15],[6,3],[27,-1],[12,8],[11,13],[21,41],[2,2],[7,0],[2,2],[5,7],[15,15],[3,4],[6,14],[3,4],[6,2],[2,3],[5,3],[23,-5],[6,3],[4,0],[1,-5],[2,-3],[4,1],[4,3],[3,3],[4,13],[0,9],[-5,24],[-1,6],[0,8],[1,7],[9,26],[6,9],[2,5],[1,6],[1,11],[2,4],[-3,18],[2,19],[5,16],[5,11],[43,61],[12,27],[3,10],[0,10],[-1,10],[0,12],[2,7],[6,13],[2,6],[0,7],[1,6],[2,4],[2,4],[4,5],[28,9],[2,5],[5,7],[4,6],[6,7],[6,9],[7,8],[6,-5],[9,0],[9,4],[24,18],[8,2],[17,23],[0,9],[-1,10],[6,7],[11,10],[15,18],[17,32],[5,5],[6,2],[16,14],[35,15],[9,13],[7,22],[3,12],[1,9],[3,6],[24,20],[13,4],[7,0],[7,3],[4,7],[4,10],[5,9],[15,15],[11,15],[6,1],[6,-4],[5,-7],[12,-9],[13,-1],[114,67],[6,5],[11,13],[5,2],[6,5],[8,22],[5,9],[11,8],[27,-1],[13,6],[15,21],[5,3],[3,0],[6,-3],[3,-1],[4,2],[5,7],[3,3],[3,1],[6,-2],[2,1],[3,4],[6,14],[4,6],[36,24],[12,3],[6,5],[40,62],[29,56],[16,45],[9,17],[33,32],[7,19],[6,41],[8,17],[3,3],[6,3],[3,2],[2,5],[2,5],[3,5],[9,5],[27,45],[31,63],[28,51],[8,8],[2,4],[1,5],[0,4],[-1,4],[0,9],[2,11],[28,60],[5,4],[6,2],[13,7],[5,4],[5,6],[20,37],[28,32],[27,51],[25,32],[33,33],[6,14],[5,4],[16,0],[6,2],[18,21],[3,5],[3,7],[22,11],[10,12],[17,34],[11,11],[13,2],[7,3],[11,19],[30,32],[6,4],[14,2],[5,5],[9,15],[6,5],[7,2],[15,1],[5,1],[68,56],[2,3],[11,10],[7,5],[12,4],[16,18],[33,6],[18,18],[19,12],[49,23],[66,50],[72,45],[26,6],[85,44],[46,10],[48,0],[55,11],[19,10],[14,4],[47,-3],[33,-10],[24,-4],[63,-11],[24,-14],[15,-4],[6,-4],[12,-15],[13,-11],[7,-3],[21,-6],[2,-2],[7,-8],[7,-5],[16,-21],[3,-3],[2,-1],[2,-1],[6,-11],[3,-4],[12,-10],[4,-6],[9,-15],[2,-3],[9,-4],[3,-3],[1,-3],[2,-8],[2,-4],[16,-23],[5,-15],[-3,-25],[7,-16],[4,-9],[6,-7],[-4,-7],[-6,7],[-6,11],[-4,5],[-7,3],[-14,15],[-63,31],[-8,0],[6,-4],[16,-20],[0,-4],[-17,-3],[0,-6],[5,-2],[17,6],[12,-1],[6,-3],[2,-6],[1,-1],[2,-5],[1,-5],[-3,-2],[-6,2],[-3,0],[-3,-7],[3,-3],[3,0],[2,3],[3,0],[3,-2],[7,-8],[7,-4],[14,-18],[12,-28],[4,-5],[4,-2],[4,-6],[4,-7],[4,-9],[-9,-4],[-9,1],[-9,-3],[-5,-18],[-1,-12],[0,-5],[8,-6],[8,-10],[5,-3],[4,-1],[-3,-4],[-1,-4],[-2,-5],[-2,-5],[-3,-3],[-10,-3],[-6,-4],[-5,-6],[-4,-8],[-2,-11],[4,-3],[-5,-8],[-8,-3],[-24,-4],[-14,-8],[-14,-4],[-32,-22],[-6,-5],[-8,-1],[-3,-2],[3,-4],[2,-3],[1,-4],[-1,-6],[-1,-3],[-1,-4],[-2,-4],[-2,-1],[-1,-2],[-2,-9],[-5,-17],[-3,-12],[-4,-9],[-36,-16],[-4,-1],[-4,1],[-3,2],[-3,4],[-1,-1],[0,-6],[1,-9],[3,-6],[-11,-14],[-17,-15],[-36,-35],[-29,-18],[-28,-2],[-5,-4],[-8,1],[-7,4],[-5,6],[-2,3],[-1,9],[-1,4],[-4,3],[-9,4],[-11,3],[-25,19],[-33,11],[-10,9],[-10,17],[-9,7],[-1,10],[1,12],[-2,11],[-2,-10],[-2,-5],[-4,-2],[-4,0],[-4,-1],[-3,-5],[-22,-43],[-6,-8],[-8,-2],[-25,10],[-24,1],[-4,-1],[-4,-4],[2,-2],[2,-1],[6,-1],[-3,-17],[-1,-3],[-3,-1],[-2,2],[-1,4],[-2,3],[-1,1],[-2,-1],[-2,0],[-1,2],[0,3],[-1,3],[-1,3],[-1,1],[-10,8],[-27,3],[-12,-7],[-5,-22],[-2,-7],[-12,1],[-4,-10],[-4,2],[-5,4],[-4,-1],[-1,-4],[-2,-4],[-2,-3],[-10,-6],[-14,-3],[-6,-6],[-4,-2],[-9,1],[-4,-1],[-4,-4],[1,-1],[3,-2],[4,-1],[9,0],[10,-3],[5,0],[13,12],[20,2],[8,8],[7,9],[48,21],[9,-3],[-2,-17],[4,-11],[8,-6],[8,-3],[8,-1],[2,-2],[2,-6],[2,-4],[6,5],[4,-2],[7,-6],[57,-33],[30,-4],[13,-6],[13,-14],[8,-21],[15,-73],[3,-10],[4,-7],[9,-15],[-9,-8],[-2,-1],[1,-6],[2,-5],[4,-4],[3,-5],[8,21],[4,7],[7,5],[19,1],[6,3],[11,13],[20,33],[22,12],[21,22],[51,18],[13,-5],[-21,-23],[-5,-13],[3,0],[6,3],[14,3],[23,12],[14,3],[8,0],[8,-4],[4,-9],[-1,-13],[-6,-6],[-14,-2],[0,-4],[5,-2],[11,-1],[5,-5],[0,-3],[1,-10],[1,-3],[4,-2],[1,4],[1,5],[-1,1],[1,4],[-1,8],[0,4],[2,3],[5,4],[1,1],[3,-2],[11,-12],[3,-6],[-4,-5],[-15,-13],[-4,0],[-2,-9],[-4,-2],[-5,0],[-6,-3],[1,-2],[3,-6],[-3,-3],[-1,-3],[1,-4],[3,-3],[-4,-12],[-4,-9],[-11,-19],[-2,-2],[-3,-2],[-2,-4],[-1,-6],[0,-5],[0,-3],[-4,-10],[10,0],[-4,-12],[-10,-19],[-1,-10],[4,8],[3,4],[4,3],[6,5],[-7,-37],[-5,-40],[-1,6],[1,6],[1,6],[0,5],[-1,5],[-5,-5],[-3,-9],[-2,-10],[-4,-10],[0,-8],[1,-11],[-1,-11],[-4,-5],[-12,-2],[-7,-4],[-5,-14],[-10,-9],[-3,-9],[-4,-11],[-58,-61],[-10,-3],[0,-4],[23,-4],[11,0],[12,8],[-1,-9],[-1,-9],[-1,-7],[2,-4],[16,5],[24,21],[8,3],[5,-4],[5,-14],[3,-3],[6,2],[3,5],[2,5],[3,5],[8,3],[23,-2],[7,-5],[-7,-11],[1,-13],[4,-15],[0,-18],[-3,-5],[-10,-8],[-12,-28],[-3,-17],[1,-17],[2,-16],[4,-15],[5,-14],[5,-12],[15,-22],[-8,0],[-5,-5],[-4,-9],[0,-15],[2,0],[4,14],[8,-3],[14,-15],[-2,12],[3,6],[5,-1],[5,-7],[2,-8],[0,-12],[-1,-22],[-3,-23],[1,-12],[4,-5],[3,-5],[3,-12],[1,-11],[-5,-5],[-2,-1],[-2,-3],[-1,-3],[1,-1],[2,-1],[2,-6],[1,-2],[2,0],[2,2],[1,2],[1,0],[4,-4],[5,-7],[5,-10],[2,-9],[-1,-22],[-1,-9],[-2,-8],[-5,-8],[-5,-2],[-6,-1],[-6,-5],[6,1],[3,-1],[2,-2],[2,-1],[3,2],[6,5],[10,1],[4,2],[-1,6],[6,12],[6,-10],[4,-18],[-2,-9],[-7,-5],[-3,-11],[2,-33],[6,7],[6,2],[30,0],[2,-2],[3,-5],[2,-2],[3,0],[2,1],[2,2],[2,1],[27,2],[4,-2],[14,-12],[7,-9],[-2,-7],[2,-8],[3,-2],[7,2],[0,3],[2,4],[2,3],[2,-7],[2,-4],[4,-5],[1,2],[8,10],[3,2],[5,1],[13,-1],[8,-3],[14,-13],[23,-9],[6,-6],[5,-9],[-5,-10],[-6,-3],[-13,-4],[-2,-2],[-5,-11],[-3,-3],[-3,-1],[-44,2],[-2,-1],[-1,-4],[0,-5],[-1,-5],[-4,-2],[3,-6],[8,-13],[3,-5],[0,-1],[3,3],[2,4],[2,2],[3,0],[28,-15],[10,-11],[1,-15],[6,-1],[6,-6],[3,-9],[2,-12],[5,1],[8,-3],[7,-6],[5,-5],[-3,-3],[-6,-5],[-3,-4],[6,-3],[13,7],[6,-4],[-2,-6],[0,-6],[2,-2],[2,2],[2,6],[0,3],[-1,5],[-1,8],[1,6],[1,0],[3,-2],[2,-4],[2,-1],[10,8],[28,4],[15,-4],[8,-13],[-5,0],[-10,4],[-6,0],[4,-5],[9,-8],[3,-7],[-6,-3],[-10,3],[-5,0],[-6,-4],[2,-5],[6,-3],[5,4],[2,-3],[3,-1],[2,-1],[3,1],[1,-1],[2,-2],[1,-1],[1,1],[1,6],[1,1],[5,-1],[8,-5],[4,-2],[9,2],[9,5],[9,3],[8,-6],[-8,-9],[-12,-9],[-13,-6],[-9,3],[2,-8],[5,-6],[12,-6],[2,-3],[3,-4],[2,-1],[0,6],[1,4],[3,4],[4,7],[0,-3],[0,-7],[0,-3],[13,13],[4,3],[0,2],[1,3],[0,3],[1,1],[2,-2],[0,-3],[0,-3],[-1,-2],[-4,-6],[-1,-4],[0,-5],[4,-1],[15,14],[5,2],[5,1],[5,-1],[5,-2],[-2,11],[-4,7],[-10,10],[6,3],[33,-9],[16,-8],[41,-11],[7,1],[14,4],[7,-1],[-6,-6],[-6,0],[-6,1],[-5,-2],[5,-6],[3,-3],[8,0],[5,-1],[5,-4],[5,-5],[4,-6],[-20,-18],[-13,-3],[-6,-4],[-3,-8],[-2,-11],[3,6],[4,5],[4,2],[4,-6],[-3,-16],[-1,-9],[3,3],[5,17],[4,6],[4,-2],[7,-13],[3,-2],[3,9],[-5,3],[-2,5],[0,7],[2,7],[2,1],[5,0],[4,0],[3,5],[4,-2],[6,-1],[3,-1],[3,-3],[2,-7],[1,-2],[5,-3],[5,1],[4,1],[5,1],[-7,-19],[-2,-9],[4,-5],[7,4],[10,17],[4,4],[5,2],[7,5],[4,7],[-3,6],[-3,-2],[-6,-3],[-10,-12],[7,14],[40,15],[59,62],[20,32],[11,12],[6,4],[4,0],[3,-4],[1,-6],[-2,-4],[-3,-3],[-2,-6],[1,-12],[3,-26],[6,-29],[0,-10],[-2,-10],[5,-6],[11,-7],[4,-5],[4,-8],[3,-4],[20,-15],[5,-3],[6,0],[5,2],[3,6],[4,3],[4,-3],[-2,0],[-4,-1],[0,-4],[2,-4],[6,-4],[0,5],[1,5],[2,5],[2,2],[4,2],[1,4],[1,6],[1,6],[5,6],[6,3],[12,1],[7,-4],[9,-20],[5,-4],[5,-6],[4,-13],[5,-18],[3,-2],[2,-4],[3,-10],[4,-7],[17,-18],[5,-2],[2,0],[0,-1],[1,-9],[-1,-14],[-3,-8],[-5,-6],[-24,-18],[-5,-3],[-1,8],[-4,-2],[-4,-6],[-4,-6],[-3,-4],[-15,-10],[6,-12],[3,-3],[87,3],[5,-1],[11,-6],[23,-5],[4,-4],[3,-8],[0,-7],[0,-8],[1,-10],[-4,0],[-1,3],[-1,5],[-2,4],[-3,2],[-3,-1],[-2,1],[-3,3],[2,-9],[2,-4],[2,-4],[-2,-5],[-2,-1],[-3,-1],[-2,-3],[-2,-6],[-1,-5],[-1,-2],[-5,3],[2,-8],[-13,-6],[-5,2],[-4,12],[3,4],[2,5],[2,5],[2,6],[-13,-5],[-2,-3],[-2,-9],[3,-16],[-1,-8],[-3,4],[-1,4],[-1,4],[-1,8],[-3,6],[-2,4],[-1,-3],[-8,-5],[-5,0],[0,7],[-4,2],[-6,-4],[-9,-10],[-5,-8],[-4,-9],[0,-7],[7,0],[-4,-7],[-5,-6],[-5,-3],[-50,-10],[-11,3],[-8,14],[-3,-11],[-5,4],[-6,7],[-4,-3],[5,-5],[5,-7],[5,-9],[3,-8],[-3,0],[-3,0],[-4,-4],[10,-12],[0,-4],[-11,1],[-5,1],[-2,4],[0,6],[-2,0],[-2,-4],[-11,0],[1,-4],[-1,-3],[0,-3],[0,-2],[-7,7],[-8,5],[-4,-1],[4,-11],[-3,-2],[-7,2],[-3,0],[0,-4],[2,-2],[2,-3],[2,-5],[-1,-6],[-2,-1],[-9,5],[-2,-4],[1,-7],[-4,-3],[-6,4],[-5,10],[-1,-12],[0,-5],[-5,7],[-5,0],[-4,-6],[-4,-9],[0,3],[-1,3],[0,2],[0,4],[-3,-3],[-3,-4],[-2,-4],[-4,-1],[5,-4],[16,-8],[-3,-4],[-5,-1],[-4,1],[-3,4],[-3,-5],[-5,-4],[-4,-2],[-3,3],[-4,-2],[-6,-3],[-5,0],[-2,3],[-2,1],[-6,-9],[-3,-3],[-13,2],[-6,-4],[-5,-14],[-2,5],[-3,-6],[-5,-4],[-4,-2],[-3,3],[-2,0],[0,-2],[-1,-2],[0,-2],[-1,-2],[1,-2],[0,-1],[1,-5],[-6,4],[-4,5],[-5,0],[-6,-9],[1,-2],[2,-3],[1,-3],[-5,-2],[-5,-6],[-3,-9],[0,-11],[-5,4],[-2,11],[0,13],[-1,12],[-4,-12],[-4,-11],[-6,-4],[-7,7],[-4,-16],[3,-5],[3,-4],[4,-11],[-6,-4],[-7,20],[-6,-4],[-2,6],[-5,-4],[-10,-14],[2,-9],[-9,6],[-33,-10],[2,-8],[-1,-6],[-3,-4],[-4,-2],[1,-4],[2,-4],[2,-3],[3,-2],[-6,-5],[-3,-2],[-4,0],[-2,3],[-2,7],[-2,2],[-2,-8],[-4,4],[-6,4],[-6,1],[-4,-3],[-8,-10],[-4,-4],[-3,2],[0,5],[0,3],[-1,2],[0,4],[0,16],[0,4],[-4,4],[-8,-7],[-4,7],[0,-9],[3,-7],[8,-15],[2,-9],[-3,-8],[-10,-13],[-1,8],[1,9],[-1,8],[-3,4],[-6,3],[-2,8],[1,19],[-1,5],[-2,4],[-2,0],[-3,-3],[1,-2],[1,-18],[-1,-10],[-3,-16],[-1,-11],[-4,4],[-2,6],[0,7],[2,7],[-5,-5],[-3,-17],[-6,-6],[-3,0],[0,1],[1,4],[-1,8],[-5,13],[-1,7],[-4,-7],[-1,-9],[2,-8],[3,-5],[-4,-10],[-8,-17],[-2,-9],[-8,5],[-20,4],[-8,7],[4,6],[2,1],[2,1],[-3,8],[-5,1],[-11,-9],[6,-5],[4,-7],[1,-9],[-1,-11],[-5,-11],[-5,3],[-6,7],[-9,7],[-8,14],[-10,10],[-16,28],[-3,3],[-5,0],[3,-18],[3,-6],[3,-5],[2,-1],[7,1],[2,-3],[4,-10],[2,-3],[1,-4],[4,-19],[1,-6],[0,-11],[-1,-7],[1,-7],[6,-19],[0,-9],[-2,-8],[-5,-10],[-1,-1],[-6,-4],[-1,0],[-2,3],[0,3],[2,4],[0,2],[-5,2],[-2,-6],[-2,-9],[-3,-6],[-1,-4],[-2,-3],[-2,1],[-1,4],[1,6],[2,4],[1,2],[-4,4],[-4,0],[-10,-4],[-2,-1],[-1,-3],[0,-3],[-3,-1],[-2,3],[0,5],[-2,3],[-2,-3],[-3,3],[-3,4],[-1,6],[-1,8],[-2,-7],[-3,-9],[-3,-5],[-3,4],[-1,8],[1,8],[6,17],[-3,-3],[-3,-7],[-2,-2],[-2,1],[-2,4],[-2,3],[-4,-4],[1,-2],[1,-6],[-3,0],[-6,-4],[-4,-1],[-3,1],[-4,2],[-2,2],[-2,4],[-4,13],[0,12],[6,23],[-2,4],[-4,13],[5,5],[2,3],[0,4],[-1,1],[-2,3],[7,11],[3,8],[1,10],[-5,-8],[-6,-5],[-17,-11],[-3,-1],[-16,-10],[-2,-2],[1,-8],[0,-20],[2,-5],[5,-5],[3,-12],[4,-23],[-9,7],[-4,-9],[-2,-12],[-3,-7],[-6,-1],[-3,2],[-3,6],[-1,16],[-1,4],[2,9],[-3,11],[-4,9],[-5,5],[-5,2],[-5,-1],[-4,-6],[0,-11],[-4,-9],[-7,4],[-8,9],[-7,4],[1,-3],[3,-9],[-4,-2],[0,-3],[1,-6],[1,-7],[-1,-7],[-2,-6],[-2,-5],[-3,-5],[3,0],[5,-4],[-3,-3],[-12,-5],[0,-6],[2,-5],[3,-5],[-1,-8],[11,1],[6,-1],[5,-4],[-4,-1],[-4,-3],[-3,-5],[-4,-4],[0,-3],[14,-1],[7,-2],[7,-5],[-4,-4],[-5,0],[-10,4],[-19,0],[0,-4],[3,-3],[1,-4],[0,-4],[-1,-6],[3,-1],[3,-4],[3,-2],[4,3],[-2,2],[-2,5],[-2,1],[3,2],[3,-1],[7,-5],[-7,-17],[1,-3],[14,0],[-9,-19],[-5,-5],[-5,8],[-2,-4],[-5,7],[-2,4],[-3,5],[3,3],[1,1],[-21,18],[-5,6],[3,-8],[4,-8],[6,-5],[5,-3],[1,-2],[1,-5],[-1,-5],[0,-4],[-2,-4],[-16,-18],[-2,-5],[-1,-11],[-1,-5],[-3,-4],[-5,-3],[-3,-3],[-1,-5],[-4,-20],[-5,6],[-2,1],[-3,2],[-1,0],[-2,3],[-2,1],[0,-1],[-1,-6],[-1,-1],[-10,6],[-3,0],[1,-6],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[6,-3],[7,-1],[6,-2],[2,-7],[-1,-11],[-3,-12],[-4,-6],[-5,6],[-8,-9],[-7,-3],[-19,0],[3,-8],[5,-2],[5,-4],[2,-12],[-1,-10],[-4,-3],[-5,-2],[-4,-6],[-5,-10],[-4,-3],[-17,0],[-3,-2],[-1,-5],[0,-5],[-2,-4],[-3,-1],[-2,0],[3,-9],[10,-11],[4,-12],[-5,1],[-3,-1],[-2,-5],[2,-8],[-5,-5],[-1,-6],[-1,-3],[-4,6],[-2,4],[-2,9],[-2,3],[-2,4],[-3,2],[-3,2],[-3,0],[1,-5],[4,-9],[2,-6],[1,-4],[0,-10],[1,-6],[-7,-4],[-5,10],[-4,16],[-3,10],[-5,4],[1,-8],[8,-28],[1,-4],[-1,-4],[-4,-14],[-2,-6],[-4,-4],[-3,0],[-4,7],[-7,28],[-5,9],[1,-10],[5,-27],[1,-7],[0,-9],[0,-9],[-3,-7],[-2,-2],[-1,2],[0,3],[-2,1],[-3,-1],[-1,-5],[-1,-4],[1,-2],[-5,5],[1,20],[-4,8],[-3,-13],[-7,-23],[-2,-14],[-6,9],[1,10],[3,13],[-1,14],[-6,-21],[-2,-4],[-2,0],[-3,4],[-2,5],[-2,16],[-3,12],[-3,12],[-4,8],[-1,-4],[0,-2],[0,-2],[1,-5],[-5,-5],[2,-12],[7,-21],[-5,-15],[-2,-12],[-4,-2],[-7,2],[-11,13],[0,8],[3,14],[1,6],[-1,10],[-2,3],[-2,-1],[-3,-3],[-1,-4],[0,-6],[-2,-3],[-4,4],[4,-16],[3,-13],[2,-14],[-2,-17],[0,-4],[1,-6],[0,-5],[-1,-2],[-3,-1],[-1,-5],[0,-4],[2,-2],[1,-3],[1,-25],[-6,17],[-2,3],[-3,-2],[-3,-6],[-2,0],[-4,3],[-8,13],[-4,4],[0,-4],[12,-32],[1,-6],[1,-6],[2,-9],[-4,-2],[-2,7],[-2,20],[-3,7],[-3,2],[-1,-3],[1,-6],[-1,-6],[-2,-5],[-3,-2],[-3,1],[2,-13],[1,-6],[0,-8],[-1,-5],[-2,0],[-3,5],[-1,8],[-2,6],[-11,15],[-1,2],[-1,3],[0,3],[2,8],[-2,3],[-1,3],[-1,2],[-2,3],[-4,-5],[-9,-18],[-10,-11],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[1,2],[-2,3],[-4,3],[-9,-1],[-3,3],[-2,11],[2,9],[0,9],[-2,8],[-4,6],[0,-6],[0,-4],[1,-3],[1,-3],[-1,-3],[0,-1],[-1,0],[-2,-1],[-5,10],[-1,12],[3,32],[0,16],[-1,7],[-1,5],[-3,1],[-2,-5],[-1,-8],[-2,-8],[3,-5],[1,-8],[0,-8],[-2,-8],[-4,15],[-1,15],[1,15],[-2,16],[-1,5],[-4,12],[-2,8],[-2,7],[-2,25],[-2,0],[0,-11],[1,-5],[1,-5],[-5,0],[-3,8],[-3,12],[-2,9],[-5,5],[-3,-1],[-1,-4],[3,-4],[0,-4],[-8,-12],[-4,-3],[-1,9],[-1,4],[-1,10],[-1,12],[-1,6],[-2,3],[0,-3],[-2,-11],[0,-3],[0,-6],[0,-4],[1,-3],[7,-32],[4,-7],[-3,-14],[-2,-5],[-3,-2],[2,10],[0,6],[-2,1],[-4,-5],[-1,-4],[1,-5],[0,-5],[-3,-2],[-2,1],[-1,3],[-1,4],[1,4],[-2,0],[1,12],[-3,6],[-4,-3],[-1,-15],[-4,8],[-1,6],[1,17],[-2,2],[-4,-3],[-3,-7],[-3,-7],[-1,0],[-4,39],[4,9],[2,7],[0,7],[-2,3],[-2,-2],[-2,-4],[-2,-6],[-2,-4],[0,8],[0,8],[-2,4],[-4,0],[1,6],[0,6],[-1,4],[0,5],[1,5],[4,12],[1,5],[-1,9],[-2,8],[-1,9],[4,16],[0,4],[-2,7],[0,1],[-8,36],[-3,5],[-4,-4],[0,12],[4,22],[1,13],[1,4],[8,17],[2,5],[3,13],[8,66],[5,19],[9,11],[4,8],[2,11],[2,7],[19,31],[10,10],[11,15],[6,7],[6,8],[2,10],[-3,8],[-5,0],[-13,-5],[-2,1],[-3,2],[-3,0],[-24,-38],[-44,-74],[-2,-2],[1,15],[3,10],[51,86],[30,31],[4,7],[25,32],[3,-7],[3,-8],[2,-9],[1,-9],[0,-6],[-1,-6],[0,-6],[2,-2],[5,1],[6,3],[5,4],[3,4],[7,12],[9,11],[3,7],[3,11],[2,-5],[16,28],[4,5],[8,2],[12,13],[6,5],[-5,2],[-13,-14],[-12,-7],[-22,-22],[-11,-6],[-6,-1],[-11,-13],[-7,-4],[-5,8],[10,27],[29,30],[45,45],[17,24],[5,4],[6,2],[35,30],[5,7],[9,15],[44,40],[44,47],[42,31],[19,5],[19,11],[18,6],[10,7],[9,9],[8,9],[5,18],[-6,11],[-12,5],[-10,3],[5,4],[6,-1],[12,-7],[18,-4],[5,-6],[3,-9],[0,-7],[-3,-6],[-3,-7],[-3,-8],[-2,-20],[-2,-10],[4,-7],[-1,-9],[-4,-8],[-5,-5],[6,-13],[1,-6],[-1,-5],[3,-2],[3,1],[2,4],[1,7],[1,7],[1,3],[3,3],[3,1],[23,-23],[20,-35],[0,-7],[-1,-32],[2,8],[3,3],[4,0],[4,-3],[-2,8],[-1,11],[1,10],[4,4],[0,3],[-5,2],[-5,6],[-13,25],[-4,11],[0,9],[9,7],[0,5],[0,6],[0,4],[2,4],[5,5],[3,4],[4,5],[25,15],[17,6],[16,15],[6,2],[11,-2],[5,2],[5,5],[1,6],[0,5],[1,3],[4,0],[7,0],[4,-3],[3,-4],[2,3],[3,10],[1,3],[2,0],[9,-4],[27,1],[10,6],[5,1],[6,-3],[3,-7],[3,-8],[3,-7],[3,20],[7,12],[11,6],[10,3],[-9,6],[-32,2],[-6,2],[-12,8],[-6,2],[-62,0],[-5,-1],[-4,-5],[-7,-10],[-2,-3],[-1,-4],[-2,-2],[-3,1],[-2,3],[-1,4],[0,4],[1,5],[-7,10],[-22,-4],[-11,2],[3,4],[1,0],[-7,7],[-11,1],[-22,-4],[-17,-8],[-9,-1],[-10,5],[0,-11],[-3,-2],[-3,4],[-4,2],[-3,-2],[-3,-3],[-3,-4],[-2,-4],[-3,3],[-10,5],[-3,4],[-1,4],[-3,3],[-32,9],[-12,-4],[-15,-11],[-9,-17],[2,-20],[-5,-1],[-5,-5],[-3,-6],[-4,-4],[-2,-2],[-1,1],[1,3],[-1,5],[-1,4],[2,4],[0,3],[-2,2],[-4,-1],[-1,1],[-9,8],[-10,3],[-10,-3],[-9,-12],[-2,14],[2,19],[4,18],[3,10],[14,16],[4,1],[7,5],[4,2],[-10,8],[36,31],[7,4],[5,8],[4,1],[1,17],[8,9],[12,8],[8,9],[8,15],[8,12],[2,1],[4,2],[2,1],[2,4],[3,8],[3,4],[-2,9],[-1,8],[2,5],[5,2],[4,3],[4,7],[2,8],[-1,7],[21,20],[4,-7],[-1,-6],[-5,-11],[-2,-3],[-2,-1],[-1,-1],[-1,-6],[1,-3],[1,-2],[0,-3],[-2,-6],[5,7],[4,4],[4,1],[6,0],[-1,6],[-3,2],[-3,1],[-4,0],[3,3],[3,5],[3,7],[1,5],[0,10],[-2,7],[-12,21],[-4,5],[-4,2],[-4,-3],[-1,-5],[2,-5],[6,0],[0,-4],[-9,-8],[-14,-33],[-7,-7],[-5,-4],[-2,-9],[-1,-9],[-2,-9],[-4,-4],[-5,0],[-5,3],[-4,4],[6,6],[5,14],[3,16],[2,14],[-2,5],[-7,9],[-3,4],[-1,9],[0,7],[1,17],[-4,-11],[-4,-3],[-3,4],[-16,41],[-5,9],[-6,8],[-3,4],[-1,6],[0,15],[0,6],[-2,6],[-4,9],[-6,10],[-6,7],[-5,-2],[16,-22],[3,-10],[-2,-9],[-1,-6],[1,-5],[3,-6],[7,-11],[1,-3],[3,-7],[1,-2],[4,-3],[3,-8],[4,-17],[3,-7],[6,-11],[2,-7],[-4,-21],[-7,-15],[-10,-13],[-8,-16],[3,-3],[4,-9],[3,-4],[-4,-2],[-6,3],[-4,-1],[-2,-5],[-3,-16],[-1,-3],[-5,-6],[-7,-27],[-4,-8],[-4,-1],[-2,4],[-1,5],[-3,5],[-3,1],[-18,-2],[-6,-4],[-6,-5],[-5,-7],[-14,-29],[-6,-3],[-6,-2],[-41,-23],[-36,-31],[-49,-52],[-8,-4],[-3,-4],[-2,-6],[-1,-6],[-1,-4],[-4,-3],[-17,-6],[-3,-2],[-8,-10],[-11,-6],[-9,-19],[-6,-5],[-2,2],[-6,8],[-3,2],[-3,-3],[-6,-11],[-8,-5],[-10,-11],[-5,-2],[-6,1],[-9,6],[-5,1],[-4,4],[-3,8],[-4,16],[-6,8],[-26,16],[28,35],[9,16],[1,5],[0,7],[0,13],[-1,6],[-1,5],[-1,3],[-1,-2],[-2,-7],[-11,-15],[-3,-14],[-5,-15],[0,-3],[0,-3],[-1,-3],[-1,-3],[-2,0],[-3,4],[-2,0],[-12,-5],[-6,-5],[-3,-6],[1,-2],[4,-14],[3,-6],[3,-4],[4,-4],[4,-2],[6,-1],[5,0],[5,-2],[3,-10],[-7,-3],[-9,-9],[-7,-12],[0,-9],[-13,-14],[-2,-4],[-2,-7],[-3,6],[-5,16],[-5,5],[-8,2],[-9,-2],[-5,-9],[7,-2],[9,2],[6,-3],[-3,-14],[-6,-7],[-17,-3],[-3,-8],[-1,-9],[-3,-1],[-3,1],[-4,-3],[-6,-11],[-4,-5],[-3,-2],[-4,-2],[-2,0],[-1,4],[0,8],[0,4],[1,2],[0,4],[-8,24],[-4,-4],[-4,-2],[-7,-2],[-1,-1],[-31,-33],[-9,-5],[-7,3],[2,4],[-2,2],[-2,2],[-2,-11],[-4,-6],[-6,-3],[-6,-1],[-2,4],[3,9],[1,10],[-5,6],[-1,-8],[-3,-3],[-3,0],[-4,-1],[-9,-13],[-5,-3],[-5,23],[-1,9],[4,4],[3,1],[7,3],[4,0],[-2,6],[-4,4],[-5,2],[-3,0],[-5,4],[-3,8],[-3,8],[-2,5],[-3,-1],[-4,-4],[-3,-6],[-1,-8],[-2,2],[-4,3],[-4,1],[-6,-15],[1,-5],[-2,-10],[-1,-13],[2,-12],[-7,4],[-5,9],[-11,27],[-2,6],[-1,7],[0,19],[-1,5],[-3,0],[-4,-4],[0,8],[-1,6],[-3,4],[-3,2],[0,-9],[0,-9],[2,-8],[2,-6]],[[34478,78461],[-3,-3],[-4,2],[-3,4],[-4,2],[-3,-1],[-3,-2],[0,5],[8,7],[9,3],[7,-1],[0,-5],[1,-4],[2,-2],[3,0],[-8,-13],[-2,8]],[[34966,78684],[-8,-32],[-3,-19],[1,-13],[-6,-16],[-18,-59],[-4,-5],[-4,-2],[-22,4],[-3,5],[3,7],[26,37],[11,32],[1,12],[-9,-3],[2,6],[16,30],[3,4],[-2,-12],[-2,-4],[4,-4],[2,11],[8,34],[3,4],[1,-4],[0,-13]],[[34465,78705],[-4,-12],[4,-11],[7,-8],[6,-5],[-7,-6],[-7,-1],[-8,1],[-23,8],[-7,6],[-9,0],[-3,4],[0,10],[7,7],[32,12],[8,0],[4,-5]],[[34973,78670],[1,7],[1,5],[1,4],[1,3],[1,11],[-1,13],[3,-4],[1,-5],[2,-12],[-1,-8],[0,-8],[-2,-7],[-3,-4],[0,-5],[1,-6],[0,-15],[2,-3],[1,-3],[1,-7],[-1,-7],[-4,-3],[3,-5],[-1,-6],[-2,-8],[0,-10],[-5,8],[0,9],[2,11],[1,12],[-1,-1],[-3,-2],[0,12],[2,34]],[[35120,79009],[6,10],[7,-4],[2,-8],[-6,-6],[4,-11],[-1,-8],[-4,-9],[-4,-13],[4,0],[1,0],[-9,-15],[-14,0],[-28,11],[-26,-4],[-3,1],[-15,6],[-2,7],[0,8],[-2,7],[-4,11],[-4,5],[-2,8],[-1,14],[3,5],[6,-7],[10,-16],[6,-4],[20,4],[6,-3],[12,-12],[7,-1],[8,4],[23,20]],[[34817,79764],[-3,0],[-3,-2],[-2,-3],[1,-5],[1,-6],[-1,-7],[-3,-6],[-1,-5],[-3,-1],[-6,3],[-6,7],[-1,13],[4,8],[11,8],[3,6],[3,6],[6,-3],[4,-7],[-4,-6]],[[34520,79821],[4,2],[15,-2],[0,-12],[-6,-12],[-8,-8],[-7,3],[-1,5],[0,9],[1,9],[2,6]],[[34561,79849],[2,-1],[0,-3],[0,-3],[-2,-1],[-5,-1],[-12,-5],[-8,-9],[-7,-1],[-6,2],[-3,6],[1,3],[4,9],[2,12],[2,3],[6,5],[6,0],[-1,-5],[-1,-3],[4,1],[3,-1],[2,-4],[-1,-7],[7,0],[2,0],[2,0],[2,3],[1,0]],[[34754,79817],[0,3],[-1,7],[-1,6],[-2,0],[4,8],[9,-3],[5,8],[4,-2],[7,0],[4,-3],[-3,-10],[-1,-9],[5,-4],[7,-2],[5,1],[11,7],[6,7],[2,8],[1,11],[3,8],[5,6],[5,1],[-3,-6],[-1,-2],[4,-4],[8,9],[8,13],[5,5],[-1,-6],[1,-1],[1,-3],[2,-12],[-1,-5],[-2,-6],[-2,-6],[0,-7],[-7,-7],[-10,-7],[-26,-11],[-5,-4],[-3,-4],[-2,-2],[-1,-5],[0,-8],[-1,-5],[-3,0],[-7,3],[-13,-6],[-7,-2],[-7,4],[5,7],[4,3],[4,2],[5,0],[2,2],[-2,2],[-3,3],[-5,3],[-2,4],[-3,9],[-1,1],[-4,-1],[-2,2]],[[34923,79829],[-4,7],[-2,16],[-1,19],[-2,15],[4,3],[7,-2],[4,3],[-2,1],[-2,3],[-2,3],[-1,5],[1,2],[1,2],[1,2],[1,2],[-2,0],[-3,0],[-1,0],[5,9],[7,-1],[7,-6],[6,-6],[-2,-4],[3,-12],[3,8],[0,8],[-1,7],[0,5],[4,5],[3,-1],[3,-2],[4,2],[-2,3],[-2,10],[11,0],[5,-2],[5,-10],[3,-5],[3,-4],[1,-1],[2,0],[2,-1],[0,-4],[0,-3],[-1,-2],[-1,-2],[0,-3],[3,-9],[4,-5],[5,-2],[6,0],[-3,-8],[-3,-1],[-9,5],[-2,-2],[-2,-4],[-3,-5],[-8,-3],[-3,-3],[-2,-4],[-3,-4],[-5,-2],[-11,-2],[-11,-7],[-3,-1],[-2,-1],[-8,-13],[-1,-1],[-2,2],[-2,1]],[[33513,80438],[-3,0],[-1,1],[0,3],[-3,6],[-2,11],[2,8],[5,2],[6,-7],[6,-24],[3,-4],[3,-15],[-1,-5],[-1,-1],[-2,-2],[-2,-2],[-3,-5],[-4,-5],[-3,0],[-2,8],[2,8],[8,27],[-3,3],[-2,-2],[-2,-3],[-1,-2]],[[34580,80557],[5,2],[7,-2],[4,-5],[-3,-5],[-2,-1],[0,-2],[-1,-1],[-1,0],[0,-2],[1,-3],[1,-2],[2,-1],[-9,-9],[-4,-6],[1,-5],[-5,-8],[-16,-13],[-2,6],[-2,5],[-3,1],[-2,-3],[-8,6],[-1,5],[7,17],[0,3],[-1,4],[0,5],[2,6],[2,3],[2,-3],[2,-5],[0,-5],[6,3],[13,9],[5,6]],[[34575,80656],[-2,-8],[-2,-4],[-3,-4],[-3,-6],[-2,-7],[1,-5],[3,-5],[3,-9],[-6,0],[-5,3],[-10,9],[3,7],[-1,5],[-5,11],[-2,7],[3,2],[7,1],[12,11],[5,1],[4,-9]],[[33778,80823],[-3,-4],[-13,-13],[-5,-3],[-25,8],[3,7],[5,7],[9,11],[6,1],[13,-1],[6,4],[0,-9],[1,-2],[0,-3],[1,-2],[2,-1]],[[35381,78616],[3,-3],[0,-6],[-3,-16],[-4,1],[-5,-3],[-9,-10],[9,-11],[1,-5],[-2,-8],[-3,-7],[-8,-12],[-2,-5],[-2,-9],[-4,-21],[-2,-7],[-4,-4],[-9,-2],[-4,-2],[2,-3],[3,-2],[3,0],[3,0],[-2,-6],[-4,-4],[-9,-5],[3,-9],[-1,-5],[-2,-4],[-2,-14],[-3,-10],[-1,-11],[-1,-4],[-2,-2],[0,-5],[-2,-19],[-2,-11],[-2,-8],[-4,-3],[-10,-2],[-5,-3],[14,-8],[5,0],[5,-3],[1,-5],[-3,-3],[-5,2],[1,-5],[1,-5],[2,-3],[2,-3],[0,-4],[-10,-11],[-1,-7],[3,-10],[-4,-3],[0,-4],[1,-4],[2,-1],[1,-4],[-8,-23],[-1,-13],[-3,-13],[-2,-13],[1,-12],[-2,-6],[0,-8],[-1,-7],[-6,-5],[-3,-10],[-2,-4],[-8,-3],[0,-1],[-6,-10],[-10,-41],[-7,-10],[-14,-12],[-10,-2],[-4,1],[-5,5],[-6,11],[-6,17],[-4,19],[1,14],[-5,-3],[-5,-8],[-7,-15],[-2,-1],[-1,5],[-2,6],[-1,3],[-3,-2],[-4,-5],[-5,-13],[2,9],[8,24],[-5,-2],[-5,-7],[-7,-15],[-5,-6],[-2,-4],[-2,-10],[-3,-3],[-4,-2],[-2,-2],[-11,-14],[-10,-6],[-9,4],[-10,18],[-1,4],[-2,14],[0,5],[0,10],[5,17],[3,9],[1,5],[0,7],[-1,6],[-1,7],[3,9],[10,20],[3,11],[2,8],[13,5],[4,9],[-4,-2],[-9,-3],[-4,-5],[-18,-42],[-7,-9],[-2,-2],[-1,3],[2,16],[1,6],[2,6],[2,6],[2,6],[2,16],[2,6],[14,13],[8,10],[0,12],[-3,-7],[-3,-5],[-4,-2],[-3,1],[1,6],[0,5],[0,5],[-1,5],[-2,0],[-1,-4],[-3,-11],[-1,-2],[-2,1],[-3,1],[-1,3],[0,6],[4,11],[-3,3],[-9,-4],[5,17],[5,13],[8,14],[2,8],[-3,5],[5,10],[14,15],[4,7],[-5,0],[-2,5],[-1,7],[2,8],[-4,-1],[-6,-6],[-4,-1],[-1,4],[3,18],[1,7],[-10,-35],[-6,-16],[-9,-6],[4,22],[2,6],[-4,-2],[-2,-3],[-2,-5],[-2,-6],[-4,-22],[-1,-1],[-4,-3],[-2,-4],[2,-5],[-2,-5],[-6,-9],[-3,-1],[-6,-1],[-3,-2],[-2,-4],[-12,-41],[-2,-3],[-10,-6],[-2,-3],[-1,-3],[-1,-12],[-2,-5],[-2,-3],[-6,-7],[-6,-4],[-2,-4],[0,-6],[-2,-6],[-2,-3],[-10,-3],[-3,-3],[-7,-13],[-4,-5],[-2,-3],[-3,-1],[-4,0],[-2,0],[-3,-3],[-2,0],[-1,1],[-3,5],[-1,1],[-15,5],[-4,3],[-1,1],[0,3],[-2,18],[0,13],[1,13],[2,12],[6,22],[1,5],[1,13],[2,6],[10,22],[4,10],[16,71],[5,13],[1,5],[1,8],[2,6],[2,3],[14,-4],[6,2],[-4,4],[-7,5],[-5,7],[-2,6],[-1,5],[0,14],[1,8],[2,1],[5,-3],[0,-1],[-1,-2],[-1,-1],[4,-3],[7,1],[4,5],[0,9],[8,7],[3,5],[2,8],[-7,0],[-4,1],[1,6],[5,11],[5,8],[6,5],[13,6],[0,4],[-6,-1],[-2,1],[-3,4],[-1,3],[1,1],[-15,-8],[-2,2],[-1,5],[-2,3],[-1,4],[1,4],[3,7],[1,4],[0,5],[2,9],[3,8],[0,6],[-5,4],[4,26],[-1,12],[-3,11],[-1,0],[-3,-5],[-1,1],[-1,2],[-1,4],[-1,3],[-2,6],[-1,8],[0,9],[1,6],[-2,4],[-6,37],[0,3],[1,2],[0,3],[-1,3],[-1,2],[-2,-2],[-2,-2],[-1,0],[-3,7],[-2,14],[-1,8],[2,8],[-10,-11],[-5,-1],[-4,8],[0,4],[1,3],[2,1],[1,0],[-1,3],[-1,5],[-1,6],[-2,3],[-1,4],[0,7],[-3,-7],[-2,-15],[-3,-6],[-4,0],[-5,5],[-6,11],[-1,3],[0,7],[-1,2],[-2,2],[-7,3],[-17,12],[3,-10],[6,-3],[6,-2],[4,-5],[1,-10],[-1,-12],[-8,-36],[-7,-25],[-8,-19],[-9,2],[-4,5],[-1,-8],[2,-17],[-1,-12],[-7,-17],[-1,-8],[-2,-8],[-9,-19],[-5,-17],[-4,-8],[-9,-10],[1,-4],[0,-1],[1,-2],[2,-2],[2,9],[2,-8],[2,-9],[2,-7],[4,-5],[-10,-13],[-4,-3],[2,8],[0,7],[-2,3],[-4,-2],[-3,-5],[-5,-16],[-3,-8],[2,-2],[2,0],[2,2],[1,5],[2,-5],[-9,-12],[-5,-3],[-1,4],[-14,-14],[-8,-5],[-2,10],[1,5],[10,11],[38,95],[7,27],[0,2],[-1,3],[-5,-10],[-11,-26],[-8,-11],[-11,-37],[-17,-34],[-15,-15],[-2,-6],[-2,3],[-1,3],[-1,4],[0,6],[-3,-2],[-2,-4],[-2,-4],[-2,-6],[2,-1],[0,-2],[1,-2],[1,-3],[-4,-3],[-3,0],[-2,3],[-1,8],[-4,-5],[-3,-2],[-3,2],[-1,10],[-7,-6],[-3,-2],[-4,-1],[8,15],[3,10],[-1,8],[-4,-1],[-3,-9],[-4,-19],[-4,5],[0,8],[2,8],[3,8],[-4,-3],[-3,-7],[-5,-16],[-4,-8],[-8,-12],[-4,-7],[-1,-5],[0,-4],[0,-5],[-3,-4],[-8,-10],[-2,-1],[-4,-3],[-4,-9],[-7,-16],[-3,-12],[1,-4],[4,-2],[2,-8],[-1,-6],[-3,-7],[-3,-6],[-4,-4],[-6,1],[0,6],[2,10],[-1,10],[-5,3],[-5,-5],[-5,-9],[-3,-8],[11,1],[2,-1],[2,-6],[-1,-6],[-1,-6],[0,-6],[5,-20],[-1,-8],[-8,0],[1,-3],[1,-7],[0,-3],[-11,-7],[-3,-6],[-1,-13],[-1,-2],[-3,2],[-2,4],[-2,2],[0,7],[2,14],[0,4],[-2,4],[-3,0],[-2,-3],[-1,-4],[0,-4],[2,-14],[1,-6],[-1,-13],[-2,-12],[-3,-9],[-6,-4],[1,-13],[-6,-10],[-9,-7],[-8,-3],[-13,4],[-3,0],[0,-8],[3,-7],[0,-5],[-7,-4],[-9,-1],[-10,5],[-6,13],[3,20],[-13,-7],[-4,1],[-1,13],[-2,-5],[0,-5],[-1,-6],[-1,-4],[-2,-5],[-1,1],[-1,3],[-1,1],[-4,-1],[-2,-1],[-2,-2],[-2,-3],[-5,-9],[-10,-8],[-5,-3],[-4,-1],[-9,5],[-4,-1],[-3,-8],[-3,5],[-7,3],[-13,0],[-8,1],[-15,10],[-12,10],[-5,8],[-4,9],[-1,8],[2,14],[4,11],[11,18],[10,24],[5,9],[7,4],[7,2],[10,10],[6,4],[7,-1],[15,-7],[4,2],[5,5],[19,5],[16,11],[8,1],[3,3],[2,6],[3,8],[1,5],[1,5],[2,2],[3,1],[3,3],[10,16],[7,6],[8,11],[6,5],[5,7],[4,11],[0,6],[0,13],[0,6],[1,7],[4,13],[1,6],[0,14],[3,9],[20,29],[5,5],[10,3],[6,6],[3,1],[10,0],[4,0],[4,3],[8,7],[5,3],[8,0],[2,2],[-1,11],[3,3],[10,0],[4,1],[11,14],[2,7],[1,10],[-6,-9],[-2,-1],[-2,6],[3,4],[4,11],[3,6],[3,3],[14,11],[8,3],[3,3],[5,7],[3,3],[4,2],[-6,3],[-10,-3],[-5,0],[2,8],[-17,-24],[-18,-15],[-20,-8],[-30,-4],[-5,2],[3,10],[9,14],[4,9],[1,10],[2,7],[19,39],[3,10],[1,11],[-13,-22],[-20,-54],[-13,-22],[3,-13],[-4,-9],[-7,-1],[-5,11],[0,7],[2,11],[4,19],[-5,-8],[-6,-6],[-7,-2],[-11,11],[-7,3],[-14,2],[-1,1],[-1,1],[-2,2],[-2,0],[0,-1],[0,-3],[-1,-3],[-2,-2],[-6,-1],[0,2],[0,6],[-1,3],[-1,2],[-1,1],[-1,2],[0,3],[1,2],[1,1],[0,2],[2,3],[3,4],[1,3],[-4,4],[1,3],[1,5],[-3,0],[-2,-1],[-3,-3],[-2,-4],[2,-2],[1,-3],[1,-3],[-1,-2],[-3,-2],[-2,-1],[-1,3],[-2,6],[-2,4],[-3,1],[-1,-3],[1,-19],[-1,-6],[-3,-7],[-6,-12],[-2,-8],[3,-6],[4,1],[3,7],[5,2],[6,-10],[-9,-13],[-1,-4],[2,-2],[9,6],[0,-4],[-3,-3],[0,-3],[1,-3],[1,-3],[-6,-20],[4,-8],[-1,-11],[-4,-11],[-5,-7],[-6,-4],[-17,0],[-1,-2],[-8,-10],[-2,-6],[-4,-15],[-2,-4],[-4,-2],[-1,4],[1,11],[-1,9],[1,4],[2,3],[0,4],[-6,-2],[-9,-9],[-6,-1],[2,4],[4,4],[2,4],[7,25],[2,4],[4,3],[-3,9],[-5,9],[-5,2],[-4,-11],[2,1],[2,0],[1,-1],[3,0],[-2,-5],[-3,-7],[-4,-6],[-3,-3],[-3,2],[-3,3],[-3,4],[-4,0],[2,-8],[0,-2],[2,-3],[-5,-5],[-5,-5],[-6,-4],[-5,-2],[3,11],[0,6],[-1,3],[-1,7],[1,7],[2,7],[2,8],[-5,-6],[-5,-10],[-2,-12],[2,-9],[-5,-10],[-4,2],[-5,5],[-5,3],[-4,-3],[-6,-7],[-4,-8],[-3,-6],[0,12],[7,12],[16,20],[18,36],[6,9],[-3,-1],[-6,-6],[-3,-1],[-2,-3],[-3,-6],[-2,-2],[0,7],[-5,-1],[-4,-5],[-8,-14],[-4,4],[-6,-5],[-6,-8],[-4,-4],[-6,-1],[-13,-6],[-24,-20],[-4,1],[-12,14],[-2,7],[5,10],[5,3],[24,6],[30,19],[3,0],[3,-1],[2,1],[1,2],[1,2],[1,3],[5,3],[5,8],[3,2],[6,1],[6,4],[6,5],[13,16],[5,3],[7,2],[19,14],[-6,3],[-8,-2],[-15,-9],[-22,-23],[-8,-2],[-7,4],[-8,7],[-5,11],[-1,15],[4,9],[21,23],[-2,3],[-1,3],[-1,2],[1,4],[5,8],[1,3],[0,11],[1,2],[3,1],[0,4],[-6,8],[2,11],[6,11],[6,7],[-6,5],[3,10],[7,10],[5,7],[-4,13],[-3,5],[-4,2],[2,-15],[-3,-6],[-6,-5],[-6,-10],[3,-5],[-1,-5],[-4,-10],[-3,-16],[-1,-15],[-3,-12],[-7,-8],[-23,-10],[-6,-5],[-5,-7],[-12,-21],[-2,-3],[-4,-1],[-8,1],[-3,3],[4,4],[0,4],[-2,5],[3,10],[6,11],[5,11],[-10,-14],[-3,2],[-4,12],[-6,27],[-4,9],[-1,-9],[2,-9],[3,-10],[2,-10],[-1,-13],[-2,-8],[-9,-14],[4,0],[2,-3],[2,-4],[2,-5],[-3,-6],[-4,-2],[-4,-1],[-4,-3],[4,-3],[1,-1],[-1,-3],[0,-2],[-1,-2],[-1,-2],[7,-8],[-2,-3],[-4,-4],[-4,0],[-1,6],[-1,5],[-3,4],[-2,0],[-2,-5],[-2,-9],[-6,-3],[-13,1],[1,10],[0,12],[0,12],[3,7],[-4,5],[-1,8],[-1,19],[-1,-8],[-1,-10],[-1,-8],[-4,-2],[0,-4],[6,-7],[1,-15],[-3,-16],[-4,-10],[-7,-5],[-8,-1],[-21,3],[-9,5],[-5,1],[-14,-3],[-30,6],[-7,-3],[4,-6],[9,-7],[4,-7],[-7,-4],[-2,-2],[-2,0],[-9,6],[-3,4],[-7,18],[-2,7],[-2,-4],[-2,-5],[4,-6],[2,-9],[4,-9],[7,-4],[0,-4],[-5,-4],[-15,-16],[-4,-2],[-3,5],[-2,0],[-2,-2],[-2,-1],[-7,-1],[-2,3],[2,10],[-6,-5],[-6,1],[-7,6],[-5,8],[-6,7],[-7,2],[-38,-11],[-4,1],[-3,2],[-4,3],[-3,4],[1,3],[5,6],[1,6],[-5,13],[-2,3],[-7,-23],[-3,-2],[-4,1],[-6,3],[-4,-1],[-9,-7],[-7,-3],[-3,2],[-3,5],[-2,8],[1,6],[2,4],[1,5],[-1,5],[-2,1],[-3,-3],[-5,-2],[-2,-3],[-2,-1],[-2,1],[-5,3],[-3,1],[-24,-3],[-8,3],[0,4],[1,2],[0,2],[-4,-2],[-3,-3],[-3,-4],[-4,-6],[-13,-14],[-5,1],[-3,4],[-3,14],[-4,4],[-11,8],[-4,1],[-4,-3],[-2,-7],[0,-8],[-3,-5],[-5,9],[-1,3],[-2,-1],[-3,-4],[-2,0],[-4,5],[-2,5],[-3,4],[-5,2],[-4,0],[-11,-3],[4,17],[3,7],[3,4],[-9,0],[-3,-2],[-1,-3],[-1,-4],[-2,-3],[-4,-3],[-14,3],[-1,3],[-5,7],[-4,2],[-5,-13],[-4,-1],[-3,4],[4,6],[0,4],[-8,-2],[-25,-13],[-7,-7],[-4,-3],[-4,2],[-10,10],[-4,-1],[-2,-5],[-8,-11],[-3,-3],[-4,4],[0,9],[2,8],[2,4],[1,3],[6,23],[3,5],[4,4],[4,4],[4,1],[-17,-1],[-8,-6],[-6,-13],[-4,-25],[-4,-13],[-7,-10],[-2,0],[-5,5],[-5,4],[-5,0],[-6,-6],[-2,7],[-2,5],[-2,2],[-3,-1],[4,-8],[-2,-3],[-10,-2],[-2,-4],[-7,-9],[-7,-5],[-3,8],[-2,1],[-16,-15],[-18,-3],[-42,3],[-9,-6],[-3,-6],[-2,0],[-2,3],[-3,1],[-3,-2],[-6,-5],[-3,-1],[-22,-8],[-10,0],[-5,2],[-7,8],[-4,0],[-3,-2],[-3,0],[-4,5],[-2,7],[-2,6],[-5,3],[-4,0],[-4,2],[-2,5],[2,9],[-3,15],[1,22],[4,21],[3,14],[-8,2],[-4,7],[-1,12],[0,14],[-2,3],[-6,6],[-2,3],[0,6],[-1,4],[-8,15],[-1,4],[-1,6],[1,7],[2,4],[3,3],[2,4],[3,2],[3,1],[6,-1],[4,2],[2,5],[1,7],[2,6],[17,30],[20,26],[46,38],[9,11],[17,34],[15,10],[4,7],[7,15],[5,7],[16,17],[5,7],[11,23],[1,5],[1,12],[2,6],[3,2],[6,2],[2,2],[8,16],[8,12],[10,8],[11,2],[0,-4],[-8,-6],[-8,-4],[-7,-6],[-7,-12],[5,1],[14,11],[13,6],[4,2],[4,7],[7,18],[4,8],[4,2],[18,8],[9,1],[5,1],[5,4],[-1,4],[-4,3],[-6,1],[-18,-5],[-10,-6],[-6,-9],[-4,8],[-6,1],[-14,-5],[-6,3],[-9,15],[-6,6],[-30,4],[-6,-1],[-31,-16],[-28,-5],[-26,2],[-13,-3],[-44,-25],[-7,0],[1,4],[3,7],[2,5],[2,8],[-1,6],[3,10],[5,9],[26,32],[40,39],[46,57],[10,5],[-6,-12],[-7,-14],[-7,-10],[-8,-4],[-5,-6],[-9,-14],[-8,-16],[-3,-13],[0,-8],[2,-5],[7,-7],[8,-6],[0,-4],[0,-13],[2,-2],[4,6],[6,13],[2,6],[0,7],[-1,17],[2,0],[1,-17],[0,-6],[1,-6],[4,-5],[3,-5],[5,-3],[8,-2],[9,1],[5,2],[8,20],[2,25],[0,25],[3,24],[12,29],[4,21],[5,10],[10,17],[2,5],[1,4],[3,11],[2,15],[2,7],[2,2],[3,45],[13,21],[3,9],[7,35],[6,12],[8,8],[2,1],[4,-4],[0,-8],[-2,-9],[-5,-4],[8,0],[0,-4],[-4,-5],[-2,-6],[-1,-7],[3,-6],[4,-1],[10,7],[4,1],[22,0],[11,-4],[8,-12],[13,-30],[8,-10],[42,-10],[10,6],[-7,6],[-28,0],[-10,8],[-4,7],[-10,11],[-3,6],[-5,22],[-2,8],[-1,4],[-1,7],[1,12],[2,5],[5,0],[14,-4],[16,5],[19,-6],[6,2],[3,5],[14,27],[-2,5],[-10,-16],[-6,-6],[-7,-2],[-8,2],[0,6],[5,7],[7,4],[0,5],[-27,-21],[-16,-6],[-8,14],[3,7],[23,-2],[7,5],[7,10],[11,25],[-6,-3],[-11,-9],[-6,-4],[-7,-1],[-29,6],[-15,9],[-6,6],[-4,9],[-2,10],[0,11],[2,40],[5,23],[7,19],[13,25],[13,18],[9,7],[10,16],[6,5],[10,-1],[7,-7],[6,-10],[2,-13],[0,-15],[1,-15],[3,-12],[7,-5],[-7,26],[0,11],[7,8],[8,0],[7,-7],[8,-9],[8,-8],[7,-3],[9,-1],[1,2],[-4,6],[-23,22],[-6,12],[-1,19],[-3,-6],[-3,-8],[-3,-6],[-5,-1],[-1,3],[-2,6],[-2,6],[0,4],[-1,5],[-3,5],[-6,8],[1,2],[0,3],[1,1],[0,3],[-7,6],[-2,18],[1,21],[2,15],[8,28],[4,9],[2,3],[5,6],[2,3],[1,4],[0,6],[1,5],[2,5],[0,7],[7,17],[4,20],[10,19],[4,10],[8,36],[9,22],[11,39],[14,34],[2,9],[0,13],[2,12],[7,26],[9,24],[3,13],[1,14],[0,1],[-1,1],[0,2],[-1,4],[1,2],[1,1],[2,1],[1,9],[5,21],[7,14],[1,6],[1,10],[1,4],[4,6],[11,16],[5,18],[3,18],[6,16],[10,6],[22,-10],[11,-2],[10,10],[2,7],[-3,2],[-20,-7],[-5,0],[-5,4],[0,4],[2,0],[3,0],[2,2],[3,2],[-4,8],[-13,-1],[-3,11],[-3,11],[-8,3],[-9,0],[-4,4],[0,6],[3,4],[8,4],[2,2],[2,1],[2,-1],[0,-6],[2,-1],[12,4],[13,8],[7,10],[2,2],[3,0],[8,-1],[3,3],[5,8],[13,10],[6,8],[2,5],[3,11],[3,5],[7,9],[6,9],[2,4],[3,4],[1,8],[0,11],[2,1],[3,-3],[4,1],[4,4],[-2,6],[-2,3],[-6,4],[-3,-5],[-2,2],[-2,4],[-2,5],[3,4],[6,6],[-4,4],[-11,-1],[-5,5],[-1,3],[-2,10],[-1,3],[-3,4],[-2,3],[-3,1],[-4,0],[6,4],[16,-4],[2,-5],[3,-9],[4,-6],[6,6],[11,7],[5,5],[-1,11],[-5,4],[-11,2],[-5,5],[11,0],[10,4],[8,10],[3,21],[3,3],[12,7],[4,4],[2,7],[0,7],[-6,19],[8,8],[2,-3],[2,-1],[6,0],[-3,7],[-3,6],[-8,11],[3,5],[5,7],[2,4],[4,17],[2,6],[5,8],[15,18],[48,37],[14,5],[14,2],[4,4],[12,16],[5,5],[22,9],[3,5],[3,7],[7,5],[24,11],[5,4],[7,10],[12,12],[4,2],[31,30],[2,-6],[5,-3],[4,2],[4,4],[4,1],[-15,-31],[-1,-11],[11,2],[-6,-17],[-7,-16],[4,-3],[5,0],[9,3],[20,0],[9,-4],[11,-8],[10,-4],[10,4],[-5,4],[-10,3],[-5,5],[-1,8],[0,8],[-1,6],[-14,10],[2,13],[5,5],[-4,-17],[7,6],[12,20],[7,6],[-3,-7],[-1,-3],[0,-3],[2,-2],[1,-3],[2,-5],[5,-3],[6,0],[4,2],[-1,2],[-1,1],[-1,0],[-1,1],[16,14],[5,2],[10,-6],[0,-9],[2,1],[1,4],[1,2],[10,-2],[5,-4],[2,-10],[-4,-7],[-6,2],[-5,4],[-4,1],[2,-5],[7,-9],[2,0],[0,-7],[-2,-7],[-2,-6],[-3,-3],[-8,5],[-14,0],[4,-7],[8,-8],[3,-5],[8,3],[-1,-10],[-4,-14],[0,-9],[-3,-7],[-3,-14],[-2,-7],[-4,-5],[-3,2],[-2,5],[-7,6],[-2,0],[-1,-6],[-1,-8],[1,-4],[3,-2],[1,-1],[-1,-3],[-2,-3],[-2,-1],[-6,0],[-2,1],[-2,3],[-1,-6],[1,-7],[1,-7],[2,-4],[-6,-3],[-6,6],[-6,9],[-7,4],[-33,9],[-17,-5],[-6,0],[-2,2],[-2,2],[-6,8],[-3,3],[-5,1],[2,-3],[2,-9],[-8,-2],[-6,7],[-6,9],[-7,6],[0,-5],[0,-3],[-1,-4],[0,-4],[-3,6],[-3,2],[-4,1],[-4,-1],[0,-4],[1,-3],[-2,-14],[-1,-7],[5,-1],[13,-4],[3,-3],[2,-18],[0,-2],[-1,-4],[-3,-1],[-2,-1],[-3,1],[2,-4],[7,-8],[-4,-2],[-9,-2],[-4,-4],[10,-7],[6,-2],[1,-3],[1,-4],[1,-4],[7,-18],[5,-6],[5,-1],[-2,10],[-2,2],[1,1],[0,3],[0,4],[-1,5],[14,1],[6,5],[6,8],[5,4],[21,-6],[3,-2],[3,-4],[6,-8],[3,-7],[0,-3],[-2,-1],[-2,-4],[-1,-3],[-1,-7],[1,-7],[4,-3],[1,-3],[-1,-8],[-3,-8],[-2,-5],[2,-8],[-3,-8],[-5,-6],[-5,-3],[-2,3],[-2,4],[-3,2],[-1,-6],[1,-6],[3,-4],[3,-3],[3,-1],[-10,-17],[-2,-6],[-1,-6],[-2,-5],[-2,-4],[0,-3],[2,-4],[1,-5],[2,-12],[-4,-3],[-2,5],[-1,7],[-2,4],[-3,-3],[-2,-9],[-2,-9],[1,-8],[2,3],[2,1],[1,-1],[3,-3],[-4,-3],[-3,-5],[-2,-7],[-1,-9],[-4,20],[-3,0],[-6,-8],[-4,-8],[-6,-21],[-13,-28],[-6,-10],[-1,-2],[-5,-6],[-4,-13],[-4,-9],[-7,4],[2,4],[1,5],[1,5],[0,6],[-5,-6],[-3,2],[-5,12],[3,13],[1,3],[-3,17],[2,15],[4,15],[2,14],[-7,-1],[-5,-6],[-4,-8],[-3,-13],[6,-1],[2,-8],[0,-12],[-2,-12],[-1,-3],[-5,-11],[1,-3],[3,-5],[0,-2],[0,-3],[-2,-6],[0,-3],[1,-12],[1,-8],[3,-7],[5,-6],[7,-1],[3,-2],[-2,-7],[-7,-15],[-3,-3],[-1,-2],[-13,-21],[-9,-9],[-4,-8],[-2,-22],[-2,-3],[-20,0],[0,-5],[7,-3],[6,-1],[2,-4],[-4,-11],[-9,-17],[-10,-12],[-5,-8],[-8,-22],[-4,-6],[-5,-1],[-2,4],[-2,5],[-3,4],[-13,-4],[5,-10],[9,-2],[6,-5],[-1,-20],[-3,-14],[-5,-16],[-6,-14],[-7,-8],[1,-13],[-5,-13],[-23,-36],[-3,-3],[-4,0],[-4,2],[-4,1],[-4,-3],[7,-7],[2,-6],[-1,-6],[-6,-10],[-13,-18],[-4,-6],[-3,-9],[-10,-45],[-2,-9],[0,-10],[4,8],[5,10],[6,6],[2,-6],[-1,-10],[-5,-22],[0,-7],[0,-3],[-4,-3],[-2,-3],[-1,-2],[-1,-6],[1,-3],[1,-2],[1,-2],[-2,-7],[-3,-7],[-4,-6],[-3,-4],[-22,-18],[-6,-10],[5,-3],[16,-2],[4,-2],[1,-5],[3,-1],[4,0],[1,-2],[0,-19],[-1,-3],[0,-6],[-8,-35],[-3,-18],[-1,-6],[-8,-20],[5,5],[5,8],[7,20],[15,31],[5,20],[35,72],[7,9],[1,3],[1,5],[2,4],[3,4],[8,6],[9,17],[5,3],[12,-31],[2,4],[-1,11],[-2,9],[1,10],[6,9],[2,-4],[9,-8],[-2,13],[-3,8],[-1,8],[13,42],[6,13],[7,5],[6,7],[8,28],[18,20],[4,5],[4,4],[4,1],[5,0],[-1,-3],[-1,-6],[0,-3],[4,0],[4,-3],[0,-3],[-4,-2],[3,-7],[4,-4],[5,-6],[1,-8],[-2,-7],[-8,-14],[-3,-7],[-6,-27],[-2,-9],[-3,-8],[-12,-21],[10,5],[9,13],[14,33],[4,4],[13,8],[4,0],[1,-9],[-3,-9],[-9,-13],[9,-4],[6,13],[3,19],[3,9],[10,-2],[9,-4],[8,-9],[6,-14],[-2,0],[2,-6],[11,-15],[1,-1],[2,1],[2,1],[2,-2],[1,-4],[1,-4],[1,-2],[6,-4],[6,0],[3,2],[3,4],[3,6],[2,4],[-2,5],[7,5],[15,-2],[8,1],[3,2],[22,22],[0,-4],[6,-17],[2,-10],[0,-10],[-4,-9],[-5,-6],[-6,-4],[-6,-1],[-10,-6],[-20,-25],[-12,-6],[-7,-16],[-26,-12],[-42,-36],[-3,-1],[-3,3],[-3,4],[-2,1],[-4,-8],[3,-8],[-5,-7],[-13,-9],[2,-9],[-8,-12],[-17,-19],[-2,-5],[-2,-5],[-1,-8],[-1,-9],[2,-7],[4,7],[8,18],[7,13],[16,21],[20,17],[3,2],[5,0],[4,2],[4,3],[4,3],[1,-4],[0,-1],[1,-3],[-5,-3],[-10,-7],[-5,-2],[0,-4],[5,0],[5,3],[4,3],[4,6],[1,-6],[5,0],[11,2],[-1,-4],[-2,-4],[-2,-3],[-2,-1],[-2,-2],[-1,-5],[-1,-5],[-1,-5],[-3,-5],[-14,-15],[3,-6],[4,-3],[10,1],[-6,-20],[-11,-15],[-12,-10],[-12,-4],[-3,-2],[-5,-8],[-2,-2],[-4,-1],[-1,-2],[0,-5],[-2,-6],[-9,-16],[-3,-8],[2,0],[6,6],[11,4],[19,23],[11,9],[25,12],[12,1],[13,-5],[-2,-9],[-2,-3],[6,1],[2,-1],[2,-2],[2,-1],[4,-3],[3,-4],[-3,-2],[-3,1],[-2,1],[-2,0],[-3,-2],[0,-1],[-1,-4],[-3,-4],[-2,-3],[6,-2],[9,3],[15,11],[-1,-8],[-3,-11],[-1,-9],[5,-1],[2,1],[0,-5],[-2,-5],[0,-7],[2,-6],[4,-2],[4,4],[2,8],[1,8],[2,7],[12,26],[8,10],[9,2],[-8,-25],[-4,-15],[1,-8],[-2,-7],[-1,-7],[0,-8],[1,-7],[7,12],[3,8],[1,7],[1,9],[1,7],[3,5],[5,1],[-1,2],[0,2],[0,2],[-1,2],[2,6],[2,6],[3,-11],[3,3],[3,9],[2,7],[5,4],[16,4],[-2,-8],[4,2],[2,2],[2,-4],[-17,-30],[-6,-7],[0,-3],[9,4],[16,16],[7,-4],[-4,-5],[-18,-34],[-10,-10],[-4,-8],[7,5],[8,3],[5,-4],[-3,-16],[5,10],[5,17],[5,13],[4,1],[-4,-9],[5,-1],[7,8],[0,-7],[-2,-11],[-4,-3],[-4,-2],[-5,-4],[2,-4],[2,-6],[2,-7],[1,-7],[2,1],[1,1],[1,2],[-2,8],[1,6],[2,4],[9,5],[4,7],[2,7],[2,3],[0,3],[-8,18],[-2,7],[0,9],[0,10],[2,6],[-14,33],[8,0],[4,3],[4,5],[8,-7],[3,-4],[-4,-5],[2,-4],[2,-3],[3,-1],[3,-1],[-1,4],[-2,9],[-1,4],[5,3],[5,4],[6,1],[5,-5],[-4,0],[0,-3],[3,-5],[3,-8],[1,-8],[1,-10],[-2,-10],[-3,-6],[-5,-6],[-4,-9],[3,-7],[-3,-10],[-4,-6],[-3,8],[-4,-9],[-4,-13],[-1,-14],[3,-16],[0,-24],[-1,-7],[-3,-6],[-3,-3],[-6,-3],[-8,-7],[-3,-5],[-3,-7],[-1,-6],[-3,-6],[-10,-12],[-1,-5],[2,-2],[8,0],[3,-2],[-5,-20],[6,0],[2,-5],[0,-8],[-3,-8],[-4,-7],[-8,-9],[-5,-8],[4,2],[10,11],[4,3],[4,1],[8,-1],[5,4],[21,25],[0,4],[-7,-2],[-14,-13],[-5,1],[-3,12],[1,14],[4,13],[4,7],[0,5],[-8,-4],[-1,-1],[0,6],[2,6],[2,4],[3,1],[4,2],[5,4],[9,10],[40,33],[-2,4],[2,4],[-6,15],[-1,8],[-1,9],[5,-7],[6,-9],[4,-4],[4,12],[5,-30],[1,-9],[-2,-9],[-4,-8],[-9,-13],[3,-1],[5,3],[5,7],[4,7],[7,21],[4,3],[7,1],[1,-2],[0,-5],[1,-4],[4,-2],[2,2],[3,3],[2,5],[1,5],[2,19],[-1,3],[-5,2],[-1,3],[0,7],[1,8],[2,6],[3,6],[3,6],[2,3],[4,-1],[1,-4],[-1,-12],[0,-35],[1,-5],[-1,-6],[1,-11],[4,-7],[7,9],[2,6],[1,4],[0,11],[0,7],[2,6],[2,4],[3,1],[-1,-5],[0,-5],[0,-6],[1,-4],[3,-1],[2,4],[1,9],[2,5],[2,7],[2,4],[2,3],[5,3],[2,2],[2,3],[1,4],[3,10],[1,1],[1,0],[1,1],[1,4],[-1,4],[0,3],[-1,-2],[4,10],[14,25],[7,16],[4,8],[4,3],[6,1],[11,6],[5,1],[2,-3],[-14,-20],[-1,-3],[-2,-17],[-1,-3],[-7,-15],[6,8],[8,7],[9,4],[6,-3],[-4,-7],[-3,-7],[-1,-8],[4,-6],[-8,-12],[-2,-3],[-1,-12],[-1,-7],[2,-3],[6,-4],[1,-10],[-2,-12],[-6,-24],[0,-6],[2,1],[1,8],[3,10],[6,8],[7,6],[5,7],[-5,9],[2,12],[5,12],[5,18],[7,4],[13,1],[-1,-9],[4,-1],[9,7],[0,-10],[3,-1],[8,6],[-2,-8],[-3,-7],[-1,-8],[2,-9],[3,8],[1,8],[2,7],[4,6],[4,-11],[1,-6],[1,0],[4,10],[3,11],[1,11],[2,9],[15,7],[1,-1],[1,-4],[3,3],[2,5],[0,2],[3,3],[1,2],[1,0],[3,-7],[3,-3],[7,-1],[3,-2],[-4,-1],[-12,-11],[7,-4],[18,10],[8,2],[4,-4],[10,-14],[4,-3],[4,-1],[11,-7],[3,-4],[6,2],[5,-4],[8,-10],[13,-6],[4,-4],[-4,-6],[6,-10],[9,-3],[8,-2],[4,-3],[0,-5],[1,-2],[1,-1],[2,-2],[1,-1],[3,1],[1,0],[1,-2],[-1,-5],[0,-2],[4,-2],[3,-2],[5,0],[4,4],[4,-11],[2,-3],[3,-2],[0,-4],[1,-6],[-10,-14],[0,-12],[-3,-1],[-5,-2],[-3,-1],[-3,-3],[0,-5],[2,-9],[-1,-4],[-5,-10],[-1,-4],[-2,-4],[-3,1],[-8,5],[-1,-2],[-2,-4],[-1,-5],[-1,-5],[2,-2],[4,-2],[3,-2],[3,-7],[0,-12],[-2,-9],[-6,-5],[-51,-10],[-12,4],[-1,-2],[2,-4],[3,-4],[3,-2],[19,2],[5,-2],[-6,-9],[-9,-6],[-8,-4],[-8,-1],[-4,1],[-7,7],[-2,0],[-4,-7],[3,-6],[9,-7],[12,-14],[0,-3],[-4,-1],[-7,-9],[-3,-2],[-17,4],[-4,-3],[-3,-5],[-4,-4],[-4,0],[4,-6],[7,0],[15,6],[0,-4],[-21,-12],[-5,-8],[3,-8],[-3,-4],[-5,-1],[-9,1],[-4,-1],[-10,-8],[-16,0],[-3,-2],[-7,-7],[-4,-3],[2,-5],[-1,-5],[-1,-3],[-3,-3],[0,-4],[9,3],[40,26],[4,-1],[4,-5],[0,-6],[-2,-6],[-4,-7],[6,-3],[6,3],[2,5],[-4,4],[9,21],[14,10],[14,-1],[12,-15],[-8,-7],[-8,-2],[-16,1],[4,-6],[0,-7],[0,-7],[3,-4],[4,2],[2,6],[3,4],[5,-4],[-10,-15],[-6,-5],[-7,0],[-13,7],[-7,1],[-7,-4],[0,-4],[15,-2],[6,-5],[0,-9],[3,-5],[-1,-6],[-3,-6],[-1,-8],[3,-6],[4,-2],[5,-2],[4,-2],[0,-4],[-5,-3],[-5,-5],[10,1],[28,28],[0,4],[-22,-7],[-12,-1],[-1,9],[4,8],[10,13],[9,16],[0,-4],[-5,-23],[29,5],[1,-8],[6,-1],[3,-1],[3,-3],[-2,-4],[-1,-2],[-2,-1],[-2,-3],[-1,-5],[2,-3],[3,-1],[3,1],[14,14],[4,6],[2,3],[4,0],[3,-2],[1,-5],[0,-6],[-2,-2],[-2,-1],[-2,-3],[-5,-7],[-5,-5],[-5,-2],[-11,-1],[-19,-11],[-12,-16],[-5,-3],[-10,0],[-6,-1],[-5,-5],[-3,-6],[-3,-7],[-4,-7],[4,-3],[4,4],[4,7],[3,4],[54,-4],[-6,-4],[-12,-2],[-5,-6],[2,-2],[3,0],[2,1],[0,1],[5,-6],[2,-4],[-2,-2],[-2,-2],[-8,-8],[-5,-2],[-9,-1],[-8,-3],[-8,-5],[-8,-7],[-16,-19],[-8,-7],[-9,-3],[-10,3],[-4,1],[-5,-4],[-10,-15],[-5,-5],[3,-3],[3,-4],[2,-6],[0,-8],[13,28],[6,5],[6,0],[12,-3],[7,3],[21,28],[13,10],[11,-6],[-4,-9],[-13,-23],[-1,-13],[2,-9],[5,-3],[5,5],[-4,4],[2,7],[8,13],[1,4],[2,5],[1,5],[2,2],[4,2],[1,4],[0,6],[2,7],[7,14],[12,17],[12,11],[9,-4],[-3,-5],[-5,-5],[-3,-6],[4,1],[4,-1],[3,-3],[2,-5],[-23,-26],[-4,-6],[-3,-8],[2,-5],[6,7],[6,5],[6,3],[6,1],[2,7],[10,38],[2,0],[1,-8],[0,-6],[-3,-14],[5,5],[3,2],[3,1],[-19,-49],[6,6],[10,16],[5,10],[3,-4],[3,3],[4,14],[1,3],[0,10],[1,3],[2,1],[3,-2],[1,0],[2,12],[1,3],[2,2],[0,2],[0,5],[-1,7],[-1,4],[0,9],[1,4],[5,3],[1,4],[0,4],[1,3],[4,4],[2,0],[9,-4],[8,-1],[3,-1],[10,-14],[2,-6],[-5,-16],[2,-2],[5,2],[4,5],[0,-6],[1,-6],[2,-5],[2,-3],[5,0],[1,4],[1,6],[1,6],[5,8],[10,13],[4,7],[-2,5],[3,9],[2,4],[3,3],[3,2],[6,0],[3,4],[0,2],[4,29],[2,3],[2,-2],[-1,-6],[2,-6],[3,-2],[3,-1],[3,-3],[2,-6],[2,-12],[2,-6],[8,-15],[1,-8],[-7,-9],[1,-3],[3,-7],[2,-3],[-4,-4],[-5,-3],[-3,-4],[-2,-7],[0,-4],[-3,-10],[-1,-4],[0,-5],[0,-14],[-3,-15],[-7,-11],[-16,-12],[-4,-5],[-7,-16],[-2,-4],[-9,0],[-5,3],[-9,13],[-4,2],[-8,-1],[-3,-4],[-2,-1],[-1,3],[-1,4],[-2,1],[-2,-1],[-2,-2],[2,-14],[-9,-32],[5,-7],[-5,-5],[-16,0],[-4,-5],[-3,-12],[-6,-5],[-14,-5],[-2,-3],[-7,-14],[-10,-13],[-3,-5],[-5,-7],[-7,-1],[-7,2],[-18,13],[-6,3],[-8,0],[-11,-4],[-3,3],[-3,7],[-2,7],[-1,4],[-8,6],[-6,0],[-4,-6],[-1,-15],[1,-14],[2,-11],[2,-10],[3,-11],[1,-17],[2,-6],[28,-6],[22,5],[11,-1],[6,-12],[-17,-12],[-17,-8],[-19,0],[-15,7],[-4,-3],[4,-8],[6,-3],[13,-2],[6,-2],[6,-4],[6,-1],[10,10],[15,2],[6,5],[10,12],[5,3],[-2,-9],[-2,-3],[1,-17],[-7,-23],[-14,-41],[-7,3],[-18,1],[0,-4],[9,-1],[8,-3],[-1,-12],[-1,-16],[-2,-15],[-7,-6],[-2,-4],[-2,-9],[-3,-7],[-4,2],[-5,8],[-2,5],[-2,7],[-2,8],[-7,11],[-7,9],[-6,3],[-4,-6],[15,-15],[0,-12],[5,-4],[1,-9],[0,-11],[3,-5],[3,-4],[1,-10],[-1,-8],[-6,-2],[2,-7],[11,-17],[4,-8],[8,-23],[7,-3],[5,14],[4,19],[6,9],[5,-4],[0,-9],[-4,-9],[-2,-7],[-4,-13],[-1,-2],[-1,-4],[0,-7],[2,-6],[3,2],[2,4],[1,0],[3,-2],[0,-3],[1,-7],[2,-5],[1,5],[0,1],[1,-2],[1,-4],[0,-5],[-1,-5],[-5,-15],[4,4],[7,13],[2,3],[2,-1],[1,-2],[1,-4],[0,-3],[1,-3],[3,1],[2,2],[2,1],[8,-4],[1,3],[0,10],[0,7],[-1,5],[0,4],[5,4],[-5,10],[-2,7],[1,3],[4,0],[2,-1],[6,-6],[-1,9],[1,7],[1,7],[-3,9],[5,1],[4,6],[2,6],[0,3],[-3,3],[-2,8],[-1,9],[1,9],[3,8],[3,3],[2,4],[1,11],[2,9],[5,9],[-1,4],[4,13],[3,7],[3,5],[4,3],[3,1],[8,-4],[0,3],[-3,7],[1,8],[3,8],[3,8],[3,8],[4,20],[3,8],[8,17],[2,2],[5,-1],[3,1],[3,3],[2,4],[2,4],[8,2],[1,3],[1,4],[2,4],[6,2],[5,-5],[4,-6],[5,-3],[5,2],[5,5],[6,6],[3,5],[11,21],[11,28],[4,8],[4,2],[6,-6],[10,-22],[8,-6],[0,-5],[-3,-4],[-3,-2],[-13,0],[-3,-3],[-2,-4],[-1,-5],[-1,-4],[-5,-8],[-2,-5],[-1,-5],[0,-12],[-2,-9],[-4,-9],[-5,-9],[-11,-14],[-4,-9],[-3,-11],[1,-16],[-1,-10],[-2,-10],[-5,-11],[-10,-16],[-5,-10],[-2,-13],[-1,-3],[-3,-4],[-2,-4],[-3,-2],[-1,-1],[-3,-3],[-2,-1],[-1,-1],[1,-4],[3,-3],[8,-4],[-3,-8],[-3,-8],[3,3],[2,1],[2,-3],[1,-5],[-4,-6],[-7,-18],[-5,-4],[-5,-2],[-6,-5],[-2,-7],[2,-7],[3,4],[4,3],[3,1],[4,1],[-4,-7],[-7,-7],[-3,-7],[6,1],[6,4],[11,12],[-3,-10],[-7,-9],[-8,-7],[-6,-3],[-1,-1],[2,-3],[4,-3],[3,-2],[3,1],[9,8],[1,-22],[-1,-7],[-1,-6],[-2,-5],[-2,-5],[0,-8],[4,5],[4,7],[3,5],[4,0],[-1,-6],[0,-2],[1,-5],[-9,-16],[-4,-8],[2,-4],[6,2],[3,4],[3,2],[7,-4],[-2,-10],[-1,-2],[5,8],[10,23],[11,9],[18,25],[17,17],[5,9],[5,10],[4,12],[3,13],[2,12],[7,55],[5,27],[8,7],[2,-3],[2,-10],[1,-3],[12,-7],[2,-4],[1,-24],[0,-7],[-5,-19],[2,-5],[5,-1],[7,2],[3,-2],[0,-5],[0,-29],[-2,-10],[-8,-19],[4,4],[2,-8],[3,-6],[4,-5],[5,-1]],[[14467,80982],[4,-5],[4,-11],[4,-13],[1,-10],[-2,-9],[-5,-7],[-6,-5],[-4,-1],[-3,2],[-2,3],[-1,3],[-2,4],[-6,7],[-7,10],[-2,-2],[-3,-4],[-7,1],[-5,6],[-5,10],[-3,13],[-2,13],[-1,8],[-10,27],[-3,22],[5,18],[9,14],[22,23],[5,2],[5,-14],[4,-10],[1,-11],[-3,-7],[9,-14],[8,-19],[5,-22],[-4,-22]],[[34624,81196],[-16,-1],[-5,5],[3,17],[9,24],[3,2],[8,5],[4,1],[5,6],[7,10],[5,3],[-1,-15],[-4,-12],[-12,-37],[-6,-8]],[[14406,81184],[-1,0],[-4,-3],[-2,-1],[-12,-1],[-7,1],[-5,4],[0,7],[1,10],[4,8],[10,6],[-1,6],[-5,10],[-1,7],[0,5],[4,6],[8,25],[5,11],[5,5],[3,1],[7,6],[3,1],[8,0],[19,6],[8,-2],[4,-8],[-2,-19],[0,-9],[2,-9],[-3,-10],[-4,-24],[-2,-10],[-14,-41],[2,-4],[-2,-4],[3,-7],[3,-7],[2,-6],[0,-8],[-3,-6],[-4,-5],[-8,-5],[-4,6],[-4,-3],[-6,-5],[-6,-3],[-2,3],[1,7],[1,6],[1,3],[0,4],[2,4],[2,5],[-1,9],[-1,5],[-4,11],[0,2],[1,3],[0,3],[-1,4]],[[13612,81331],[10,-4],[3,-6],[-2,-11],[-3,-5],[-5,-1],[-9,2],[-7,-5],[-3,3],[-3,10],[-2,-13],[5,-9],[12,-10],[5,-9],[-2,-1],[-7,4],[-5,6],[1,-9],[6,-11],[2,-9],[-9,-4],[2,-3],[1,-4],[2,-9],[-7,4],[-7,10],[-10,19],[3,5],[3,6],[1,6],[-4,3],[-3,4],[-2,9],[0,10],[-3,14],[1,8],[3,20],[2,5],[3,1],[5,-2],[3,-1],[2,-2],[0,-4],[-1,-6],[7,-6],[3,-2],[3,-5],[2,-1],[1,1],[1,2],[2,0]],[[14459,81363],[3,-1],[5,-2],[2,-1],[3,1],[1,3],[2,3],[3,1],[-3,-16],[-2,-6],[-6,-10],[-3,-6],[-1,-5],[-2,-6],[-6,-4],[-15,5],[-7,-7],[-3,-2],[-5,2],[-5,5],[-3,6],[-2,7],[-2,11],[-2,8],[-1,6],[5,0],[8,-4],[3,2],[5,8],[3,2],[25,0]],[[14375,81278],[-1,3],[0,4],[0,4],[-1,5],[-6,25],[-5,9],[2,11],[3,11],[4,5],[0,2],[3,10],[1,4],[2,3],[2,2],[4,3],[5,3],[6,1],[6,-1],[4,-3],[-2,-4],[-1,-54],[-2,-13],[-2,-3],[-4,-4],[-2,-3],[-2,-5],[-1,-11],[-1,-4],[-3,-3],[-3,0],[-3,0],[-3,3]],[[14381,81391],[-6,-4],[-5,-5],[-3,-8],[-1,-9],[-1,-3],[-5,-20],[-3,1],[-4,9],[-2,-18],[4,-16],[-5,-6],[-7,5],[-5,6],[4,14],[3,13],[-4,3],[-6,4],[-3,-8],[-5,-9],[-5,-2],[-4,4],[4,7],[3,7],[-13,-2],[-8,1],[-5,3],[1,10],[10,7],[3,10],[4,5],[1,8],[2,8],[11,-1],[12,-1],[6,3],[18,-2],[9,-5],[5,-9]],[[14417,81407],[-5,0],[-6,1],[-5,3],[-5,5],[20,14],[6,8],[7,7],[10,1],[9,-2],[7,-4],[7,-27],[1,-7],[2,-7],[3,-7],[2,-8],[-2,-11],[-5,-4],[-6,1],[-11,5],[-14,-3],[-7,1],[-6,6],[-1,7],[2,7],[4,4],[11,5],[4,6],[-1,5],[-5,3],[-4,-1],[-6,-5],[-6,-3]],[[14655,81517],[2,-13],[-2,-12],[1,-10],[9,-10],[-9,-22],[-11,-14],[-24,-16],[-1,-2],[-2,-5],[-1,-1],[-3,0],[-4,3],[-3,1],[-11,-10],[-3,-9],[-5,-8],[-13,-10],[-3,-1],[-7,-1],[-3,-2],[-2,-5],[-3,-13],[-2,-2],[-7,-2],[-4,-6],[-14,-42],[-4,-14],[1,-11],[1,-13],[-5,-9],[-8,-6],[-7,-3],[-14,-1],[-5,-3],[-9,-7],[-5,-1],[-4,9],[1,20],[6,48],[1,6],[3,7],[1,2],[2,1],[2,1],[1,4],[-1,0],[-1,18],[2,11],[6,17],[7,13],[6,1],[6,18],[11,3],[12,0],[14,15],[12,6],[7,9],[2,1],[6,1],[3,2],[4,8],[6,6],[3,8],[3,10],[2,7],[4,5],[5,3],[28,13],[5,3],[7,10],[3,0],[5,-6]],[[14273,81534],[0,-11],[-1,-5],[-1,-5],[3,-25],[-3,-28],[-7,-24],[-8,-12],[-2,10],[-9,13],[-3,9],[0,6],[0,13],[0,6],[-6,4],[0,2],[1,7],[-1,3],[-2,10],[-2,12],[0,12],[2,11],[4,4],[7,4],[12,4],[0,-4],[-1,-2],[-3,-6],[3,1],[2,1],[3,3],[2,3],[6,-7],[2,-4],[2,-5]],[[14288,81627],[-1,11],[1,13],[3,7],[4,-7],[3,-32],[15,-65],[-3,-27],[-4,-4],[-5,-1],[-5,1],[-4,4],[-3,6],[-9,5],[-8,10],[-8,8],[-4,2],[-4,3],[-3,7],[-3,4],[-4,-6],[3,-6],[-1,-4],[-4,-2],[-4,4],[-6,-3],[-6,6],[-5,8],[-6,5],[2,11],[3,4],[4,-2],[5,-5],[2,-3],[2,-4],[2,-3],[3,-2],[2,2],[2,4],[2,2],[4,-4],[2,4],[-3,2],[-5,6],[2,2],[2,2],[-2,2],[-5,2],[-2,2],[0,5],[1,8],[-1,2],[-1,1],[1,3],[2,3],[2,1],[39,1],[6,7]],[[13454,81696],[-7,-4],[-18,0],[-5,-9],[4,4],[4,1],[3,-4],[2,-9],[5,3],[15,1],[3,3],[3,8],[6,7],[7,4],[5,-1],[4,-10],[2,-9],[0,-11],[-4,-15],[2,-8],[-4,-5],[-6,-3],[-6,0],[-6,5],[-11,13],[-6,2],[1,-3],[1,-1],[-2,-12],[11,-14],[-7,-10],[-6,-2],[-5,7],[-10,23],[2,11],[-13,21],[-2,13],[6,8],[12,1],[20,-5]],[[14358,81519],[-19,-30],[-6,-3],[-11,1],[-7,4],[0,12],[5,7],[6,7],[4,8],[2,13],[2,4],[-8,12],[-3,23],[-1,50],[-1,4],[-2,3],[0,4],[2,7],[2,6],[-1,12],[1,7],[3,9],[0,9],[-2,8],[-4,8],[3,12],[6,12],[7,9],[5,-1],[3,-22],[3,-24],[5,-12],[4,-6],[0,-7],[-1,-7],[-1,-3],[3,-42],[2,-6],[1,-3],[1,-5],[1,-6],[0,-12],[2,-7],[2,-8],[0,-6],[0,-6],[-1,-6],[-1,-6],[-5,-16],[-1,-7]],[[14186,81629],[1,-8],[0,-9],[0,-10],[0,-25],[-2,-17],[-4,-15],[-9,-11],[-1,8],[-1,7],[-1,4],[-5,1],[2,9],[0,10],[-3,6],[-4,-3],[-5,-5],[-4,4],[-4,9],[-1,11],[-7,-2],[-5,7],[-1,13],[1,14],[-9,-4],[-9,13],[-12,32],[2,2],[3,0],[2,0],[3,-2],[-4,8],[-14,12],[-5,8],[2,4],[-5,9],[-2,7],[2,7],[5,9],[-4,13],[2,8],[5,2],[21,-23],[8,-15],[5,-6],[9,-6],[5,-7],[8,-15],[31,-46],[4,-8]],[[14358,81696],[-3,9],[-1,4],[0,15],[1,2],[1,0],[11,5],[12,0],[6,5],[2,7],[2,8],[3,5],[4,-3],[0,-6],[-1,-11],[-1,-6],[0,-6],[-4,-9],[-1,-5],[-2,-14],[0,-6],[-1,-7],[-4,-10],[-1,-3],[0,-3],[-3,-11],[-3,-22],[-2,-3],[-5,-9],[-4,3],[-1,9],[3,9],[0,4],[-1,2],[-3,10],[2,11],[-1,9],[-5,17]],[[14296,81696],[1,3],[-2,20],[1,7],[3,14],[4,36],[2,5],[5,-4],[3,-7],[2,-8],[2,-18],[1,-12],[-2,-8],[-5,4],[1,-45],[-2,-9],[-5,-13],[-2,-9],[-2,0],[-4,16],[2,4],[-2,4],[-3,8],[0,8],[2,4]],[[14012,81858],[2,-7],[4,-8],[1,-7],[-3,-3],[-5,3],[-5,10],[-4,0],[-5,-12],[-3,-2],[-2,20],[-5,11],[-2,7],[15,2],[8,-3],[4,-11]],[[14010,81890],[5,-9],[4,-3],[4,0],[-1,-5],[-2,-5],[-2,-3],[-2,-3],[-2,5],[-2,5],[-2,4],[-2,2],[-3,2],[-2,-2],[-1,-3],[-3,-1],[-2,1],[-5,7],[-2,3],[-3,3],[-8,3],[-3,4],[4,0],[15,-5],[12,2],[3,-2]],[[13985,81935],[7,-8],[8,-15],[3,-12],[-8,-5],[-12,3],[-9,8],[-7,13],[-7,16],[6,3],[8,1],[7,-1],[4,-3]],[[14082,81878],[3,-21],[1,-10],[-3,-5],[-7,-2],[-3,1],[-10,12],[-1,1],[-5,3],[-4,8],[-5,17],[-5,10],[-4,7],[-3,7],[-2,11],[-1,6],[-2,-1],[-5,-7],[-3,1],[0,4],[2,5],[2,2],[-4,7],[-5,3],[-5,5],[1,13],[4,11],[7,5],[7,-1],[6,-2],[2,-11],[3,-7],[9,-11],[14,-34],[4,-8],[5,-4],[4,-4],[3,-11]],[[13580,81367],[-3,7],[0,8],[-2,7],[-5,2],[2,-21],[-3,-21],[-7,-10],[-7,8],[-2,9],[-1,19],[-1,8],[-3,7],[-5,7],[-9,10],[10,-41],[1,-21],[-7,-6],[-5,4],[-3,9],[-3,10],[-1,7],[-1,8],[-8,16],[-2,11],[-2,0],[-1,-21],[-7,2],[-8,12],[-6,13],[-3,8],[-2,8],[-2,7],[-9,6],[-3,7],[-2,8],[-3,6],[-2,-3],[-3,-1],[-3,1],[-3,3],[3,8],[3,9],[-6,-4],[-3,0],[-2,2],[1,1],[-3,17],[-1,2],[3,9],[7,0],[8,-4],[5,-3],[-2,10],[-5,7],[-6,5],[-5,2],[-3,-2],[-4,-3],[-3,-1],[-3,4],[-8,15],[-1,2],[-3,12],[-7,7],[-14,7],[-7,6],[-34,38],[-4,7],[-1,5],[0,8],[-1,6],[-2,3],[-4,1],[-1,2],[0,11],[-3,1],[-20,18],[-21,32],[7,15],[5,3],[6,-2],[3,-3],[12,-17],[1,4],[-10,19],[-5,5],[4,4],[11,-16],[5,-9],[3,-5],[4,-2],[-1,4],[-1,4],[-2,2],[-1,2],[0,4],[0,11],[-6,8],[-16,9],[-5,9],[-8,19],[-6,5],[6,-22],[1,-10],[-2,-5],[-6,-5],[-5,-18],[-7,-1],[-2,2],[-10,14],[0,2],[-1,5],[0,1],[-2,2],[-5,2],[-2,2],[-4,7],[-3,10],[-1,10],[5,8],[-18,11],[-5,7],[-6,11],[-2,5],[-2,12],[1,0],[3,5],[3,2],[8,-3],[2,1],[3,3],[3,1],[3,-1],[3,-1],[11,-13],[5,-3],[4,8],[-4,1],[-2,4],[-3,4],[-1,7],[17,-20],[0,5],[-1,5],[-2,3],[-3,2],[0,5],[4,2],[5,5],[4,7],[1,6],[-5,3],[-14,-5],[-5,4],[-9,13],[-11,2],[-21,-1],[1,6],[1,2],[-5,-2],[-10,-2],[-4,-4],[-4,8],[-4,-1],[-5,-4],[-4,-3],[-6,2],[-4,5],[-1,8],[3,10],[-5,2],[-6,7],[-4,8],[1,3],[4,3],[-2,7],[-7,14],[7,4],[7,-3],[8,-6],[8,-3],[24,1],[7,3],[2,2],[5,8],[3,2],[4,2],[14,-6],[50,6],[4,5],[3,7],[18,19],[1,1],[3,-1],[2,0],[1,2],[3,6],[10,8],[18,0],[3,2],[2,4],[3,3],[3,-1],[1,-2],[8,-31],[1,-10],[-6,-5],[0,-5],[18,-7],[5,-5],[1,-2],[3,-10],[2,-4],[3,-1],[5,0],[3,-3],[2,-6],[6,-27],[2,-4],[2,-2],[1,-2],[-3,-4],[-4,-1],[-3,1],[-3,2],[-3,5],[-5,5],[-14,0],[-6,3],[-6,5],[-6,3],[-12,2],[-5,-2],[-11,-5],[-5,-1],[-28,0],[4,-6],[11,-4],[3,-5],[0,-10],[1,-8],[1,-6],[3,-6],[4,16],[2,4],[3,4],[7,7],[2,4],[6,2],[24,-17],[19,-6],[8,-5],[4,-1],[3,-2],[5,-8],[2,-2],[2,-3],[-2,-6],[-4,-6],[-1,-1],[-2,-8],[1,0],[1,-2],[1,-3],[1,-3],[-2,-4],[-6,-7],[-9,-15],[-6,-4],[-29,-1],[-6,2],[-6,10],[-5,12],[-5,9],[-5,5],[-7,1],[-4,-1],[-2,-1],[-2,-2],[3,-4],[4,-3],[4,-2],[5,0],[0,-3],[-25,-17],[0,-4],[8,1],[8,6],[7,3],[7,-6],[4,-4],[1,-2],[1,-5],[-1,-2],[-3,-3],[-1,-4],[-1,-3],[-1,-2],[-1,-1],[1,-6],[2,0],[2,2],[2,0],[6,-16],[2,-3],[35,0],[8,3],[3,-1],[2,-6],[-9,-3],[-12,-1],[-11,-3],[-8,-13],[-3,5],[-4,2],[-4,-1],[-4,-2],[4,0],[3,-2],[6,-6],[-8,-17],[-1,-7],[16,2],[7,-2],[7,-8],[5,-12],[6,-16],[1,-13],[-6,-4],[5,-7],[9,-18],[5,-3],[6,-3],[-2,-5],[-5,-6],[-5,-3],[0,-4],[3,-2],[2,-1],[6,-1],[2,-2],[1,-4],[2,-4],[3,-2],[4,3],[3,6],[4,4],[5,-5],[-1,-9],[6,-3],[14,0],[-4,-14],[5,-7],[8,-5],[6,-6],[-8,-28],[-2,-9],[7,1],[7,-2],[3,-7],[-5,-12],[4,1],[4,4],[3,2],[4,-3],[0,12],[-1,9],[0,7],[3,8],[4,5],[12,2],[11,6],[2,-7],[-2,-10],[-10,-7],[-3,-8],[-2,-10],[-1,-11],[3,5],[4,2],[9,1],[-2,-10],[-2,-2],[-3,0],[-3,-1],[-6,-4],[-3,-3],[-2,-5],[-2,9],[-3,6],[-2,1],[-3,-7],[4,-6],[4,-22],[4,-9],[4,7],[17,-19],[7,0],[-9,10],[-3,6],[1,9],[2,1],[2,-2],[4,-4],[8,10],[4,3],[6,1],[5,-2],[3,-6],[1,-6],[9,-5],[3,-7],[-4,-12],[-7,-3],[-8,-1],[-7,-5],[0,-3],[15,0],[7,-3],[6,-6],[10,8],[5,1],[4,-5],[1,-8],[-2,-11],[-4,-8],[-2,-5],[-5,-2],[-12,0],[-4,2]],[[14221,81680],[-6,-17],[-9,-8],[-9,1],[-10,7],[-25,26],[-8,11],[-3,4],[1,2],[1,2],[2,2],[1,2],[0,4],[-7,4],[-4,6],[-7,16],[-2,9],[-3,14],[-1,14],[2,6],[7,-2],[17,-10],[4,1],[-3,5],[-12,14],[9,8],[9,13],[5,4],[6,19],[5,5],[0,14],[9,11],[22,11],[-4,10],[-7,12],[-8,10],[-8,6],[-8,11],[-15,16],[1,-7],[0,-5],[1,-4],[2,-4],[1,-3],[1,-4],[1,-2],[3,5],[3,1],[2,-1],[1,-2],[3,-5],[7,-7],[4,-4],[5,-12],[2,-4],[5,-3],[0,-4],[-11,-1],[-5,-2],[-5,-5],[-2,-3],[-5,-8],[-2,-5],[-1,-3],[-2,-9],[-1,-4],[-7,-13],[-12,-17],[-12,-8],[-6,11],[-1,6],[-10,-1],[-5,4],[-2,7],[-1,12],[-1,21],[1,11],[5,14],[1,8],[2,8],[5,5],[4,-1],[2,-6],[8,10],[4,14],[0,15],[0,15],[-1,15],[0,8],[4,8],[1,10],[-1,11],[-1,7],[-2,7],[-3,5],[0,5],[3,7],[4,3],[6,2],[6,0],[12,-9],[20,-1],[10,-13],[20,-31],[26,-27],[7,-5],[12,-1],[4,-5],[9,-25],[1,-3],[1,-4],[12,-48],[3,-23],[1,-28],[0,-25],[-3,-27],[-9,-61],[-1,-3],[-4,2],[2,-24],[-2,-9],[-6,-12],[2,1],[2,-1],[2,-1],[2,-3],[-1,-6],[-2,-15],[-2,-5],[-3,-2],[-27,0],[-6,-2],[-7,-6],[-2,3],[3,11],[2,10],[1,10],[0,10],[0,11],[-3,21],[-1,11],[2,11],[7,19],[1,10],[1,14],[2,7],[4,4],[4,6],[6,26],[1,4],[1,11],[0,12],[0,3],[-2,4],[-3,3],[-3,0],[-1,-4],[2,-22],[0,-11],[-4,-6],[-5,3],[-4,5],[-4,4],[-5,-3],[4,-8],[2,-14],[0,-13],[-5,-6],[-3,-6],[-2,-13],[-1,-26],[-3,-23],[0,-9],[5,-16],[1,-6],[-1,-5],[-3,-2],[-3,3],[-2,5],[-2,7],[-2,6]],[[14085,81921],[-2,3],[-6,7],[-3,4],[-1,13],[-1,15],[2,14],[3,11],[17,26],[3,11],[0,7],[-1,5],[-5,10],[-1,6],[4,2],[5,0],[8,-4],[5,-3],[3,-5],[3,-7],[1,-6],[-1,-10],[0,-8],[2,-6],[3,-7],[1,-7],[0,-5],[-1,-11],[-1,-8],[2,-14],[5,-26],[-1,-9],[-7,-3],[-21,1],[-6,2],[-2,-7],[-2,0],[-3,3],[-2,6]],[[14191,82098],[2,-9],[0,-6],[-2,-6],[-4,-8],[2,-5],[0,-7],[-2,-6],[-4,-2],[-5,1],[-10,7],[-5,2],[-13,-2],[-4,-2],[-8,-9],[-4,1],[-9,25],[10,27],[13,26],[1,21],[4,12],[7,14],[7,7],[3,-8],[0,-17],[3,-13],[18,-43]],[[13960,81996],[2,-11],[0,-15],[-3,-12],[-6,-7],[-5,2],[-3,6],[-2,5],[-4,4],[-3,-2],[-3,-5],[-3,-6],[-2,-4],[-8,-1],[-7,1],[-4,3],[-3,3],[-16,27],[-3,10],[-1,10],[-12,7],[-6,5],[-3,6],[0,12],[0,8],[-2,6],[-5,5],[-9,0],[-3,4],[-2,10],[-1,5],[-3,2],[-6,-1],[-1,2],[-1,4],[-3,4],[-2,2],[-26,5],[-3,4],[-11,28],[-8,13],[-3,9],[-2,8],[2,7],[7,3],[12,1],[-8,6],[-5,0],[-6,-4],[-8,-2],[-4,0],[-3,2],[-3,3],[-9,15],[-2,0],[-2,0],[-3,1],[-1,5],[1,13],[1,16],[3,12],[5,6],[14,-3],[9,-4],[6,-6],[7,-3],[14,-14],[15,-5],[7,-6],[14,-16],[20,-14],[11,-16],[28,-21],[13,-15],[7,-14],[3,-3],[2,-3],[2,-12],[2,-6],[29,-61],[6,-18]],[[14120,82085],[-1,14],[-1,25],[1,25],[3,23],[-2,35],[1,14],[1,7],[7,14],[4,3],[11,7],[3,6],[3,4],[6,5],[12,5],[26,0],[5,2],[6,5],[5,2],[6,-5],[-10,-15],[-3,-9],[1,-8],[-5,-19],[1,-17],[-1,-10],[-20,9],[-7,-4],[-25,-38],[-3,-2],[-4,-5],[1,-9],[2,-15],[-2,-10],[-3,-5],[-3,-2],[-4,-5],[-6,-13],[-5,-14]],[[13776,82264],[11,15],[17,20],[4,5],[-2,11],[-1,10],[1,6],[6,2],[4,-3],[8,-8],[3,-5],[-2,-7],[-2,-7],[1,-7],[1,-8],[4,-6],[4,-1],[5,0],[12,-8],[4,-4],[2,-7],[-1,-7],[-1,-5],[-1,-6],[3,-8],[-2,-5],[3,-8],[2,-8],[4,-20],[-7,0],[-15,12],[-22,4],[-12,13],[-10,3],[-5,6],[-5,14],[-2,5],[-2,3],[-5,5],[-2,4]],[[13819,82386],[5,3],[10,11],[4,-2],[7,-9],[14,-11],[7,-11],[3,-3],[9,-3],[2,-2],[1,-5],[3,-4],[6,-5],[17,-25],[9,-5],[3,-4],[4,-9],[3,-3],[7,-4],[3,-2],[15,-28],[2,-7],[2,-4],[24,-46],[39,-50],[3,-5],[2,-7],[-5,-3],[-4,0],[-5,1],[-14,9],[-3,-2],[-3,-9],[6,2],[2,2],[6,-8],[8,-2],[17,2],[6,-4],[7,-9],[7,-10],[4,-10],[3,-12],[9,-9],[9,-13],[-3,-20],[6,-19],[-1,-19],[-9,-11],[-5,21],[-5,7],[2,10],[-4,14],[-7,2],[-3,-12],[-5,-12],[-4,1],[-8,12],[-3,-4],[1,-8],[2,-9],[0,-8],[6,-14],[-1,-12],[-4,-5],[-7,7],[-6,-6],[-6,-1],[-5,5],[-2,12],[-3,7],[-12,23],[-4,8],[2,1],[3,3],[1,1],[-10,8],[0,4],[4,4],[-3,3],[-4,-3],[-4,-3],[-4,-1],[-3,2],[-10,14],[-1,3],[1,4],[0,4],[-1,1],[-9,-4],[-3,4],[-4,12],[-2,4],[2,17],[1,11],[-1,7],[-3,1],[-5,-3],[-7,-1],[-6,7],[1,6],[5,19],[1,10],[-1,10],[-3,5],[-5,1],[-6,-1],[2,6],[3,3],[6,4],[-7,7],[-4,0],[-4,-3],[0,4],[2,2],[6,6],[-7,5],[-5,-6],[-3,-10],[-5,-5],[-13,-2],[-5,4],[-2,12],[6,14],[16,7],[17,0],[10,-7],[2,5],[-8,11],[-12,3],[-13,-2],[-11,-4],[-7,-8],[-5,-1],[-5,5],[-1,9],[1,18],[-2,9],[-19,12],[-9,2],[-3,3],[-1,11],[1,10],[2,8],[0,10],[-3,9],[-4,5],[-17,7],[4,20],[2,9],[5,4]],[[13764,82438],[-2,-11],[-2,-16],[-2,-15],[-5,-6],[-9,1],[-6,5],[-11,20],[-6,9],[-4,4],[-3,-1],[-3,-5],[-3,-4],[-2,1],[-1,10],[-4,-4],[-2,-8],[-2,-9],[-3,-7],[3,-9],[4,-4],[5,-3],[5,-5],[3,-7],[2,-10],[-2,-8],[-6,-3],[-2,1],[-6,7],[-5,0],[-3,1],[-2,3],[0,8],[2,11],[0,9],[-3,5],[-1,4],[1,10],[4,10],[4,4],[1,3],[2,10],[2,4],[2,1],[3,0],[2,0],[0,-1],[4,6],[4,8],[4,7],[5,3],[5,2],[14,14],[0,7],[18,4],[5,3],[4,12],[8,-3],[15,-15],[13,-24],[3,-4],[4,-5],[5,-11],[4,-13],[1,-12],[-3,-10],[-12,-13],[-5,-7],[-7,-16],[-2,-7],[-1,-6],[-1,-5],[-3,-5],[-3,-1],[-9,0],[-3,1],[-2,4],[-3,14],[0,2],[-5,-5],[-6,-8],[-4,-3],[-3,12],[-1,8],[1,1],[2,0],[3,3],[3,4],[2,4],[12,33],[4,5],[8,3],[10,0],[0,4],[-4,2],[-2,3],[1,3],[3,5],[-3,2],[-4,-1],[-7,-5],[-12,-1],[-5,-4]],[[13172,81980],[5,7],[2,4],[1,5],[-5,0],[-16,12],[-11,4],[-12,0],[3,10],[7,6],[15,8],[0,2],[1,2],[0,3],[1,2],[9,4],[4,-3],[4,-4],[2,0],[2,9],[-9,6],[-52,-12],[2,8],[10,23],[3,5],[3,0],[9,-6],[3,-2],[33,0],[3,-2],[5,-8],[5,-4],[5,-8],[7,-4],[3,-3],[2,-5],[2,-6],[4,20],[-7,12],[-20,16],[-2,5],[-2,12],[-2,3],[-3,3],[-6,1],[-25,8],[-6,5],[2,13],[-1,12],[-3,5],[-4,-20],[-6,-4],[-8,2],[-6,4],[0,4],[4,5],[4,8],[1,9],[-3,7],[-4,0],[-1,-5],[-1,-5],[-1,-3],[-3,-1],[-20,-14],[-5,-1],[-3,4],[0,8],[10,13],[3,7],[-29,0],[3,5],[4,12],[3,4],[-4,6],[-6,-1],[-7,-4],[-6,-1],[1,11],[-5,8],[6,5],[6,0],[13,-5],[5,3],[-2,15],[-26,28],[-8,12],[4,-4],[3,0],[3,2],[2,6],[4,-4],[4,-1],[3,3],[-2,6],[-4,4],[-6,2],[-3,4],[2,11],[-2,5],[2,11],[-2,4],[-3,0],[-2,-2],[-2,-4],[-3,-3],[-3,0],[-3,4],[-6,2],[-10,8],[-3,5],[-1,7],[4,5],[9,6],[-3,10],[-12,16],[-5,9],[-2,12],[3,11],[3,9],[1,6],[5,8],[1,10],[-2,10],[1,9],[2,1],[4,-2],[2,1],[1,2],[1,2],[0,2],[0,2],[4,6],[2,5],[2,5],[-3,4],[-1,4],[-1,6],[-3,16],[-2,4],[-4,2],[12,26],[1,10],[-9,1],[6,10],[7,-4],[8,-8],[5,0],[3,3],[5,0],[4,-3],[3,-4],[3,-5],[2,-2],[20,-10],[16,-2],[7,2],[14,9],[8,2],[7,-3],[13,-11],[7,-3],[3,-6],[1,-13],[0,-15],[-1,-10],[-4,-12],[-6,-5],[-6,-3],[-6,-6],[-8,-18],[-2,-11],[5,-6],[2,2],[7,12],[3,4],[3,2],[6,0],[5,4],[4,10],[2,13],[1,12],[3,4],[21,10],[5,7],[4,8],[5,6],[31,8],[3,-3],[3,-7],[10,-14],[2,-11],[0,-8],[-1,-3],[1,-3],[4,-4],[4,-3],[8,-2],[3,-4],[4,-9],[1,-11],[-1,-12],[-2,-12],[3,-6],[5,-13],[3,-12],[0,-6],[-8,-18],[-3,-3],[-8,-1],[-3,-2],[-5,-9],[-3,-12],[-5,-11],[-7,-4],[-30,-5],[-6,-5],[-10,-16],[-6,-3],[-6,-2],[-14,-8],[-7,-2],[-16,2],[-8,-2],[-6,-6],[-2,-8],[3,-1],[7,3],[4,0],[3,-2],[2,-4],[1,-6],[0,-4],[-3,-13],[5,3],[6,14],[4,4],[3,-1],[8,-9],[4,-2],[10,3],[20,11],[10,1],[-8,-14],[-11,-8],[-10,-11],[-7,-23],[4,0],[3,4],[3,6],[3,6],[8,5],[8,3],[17,0],[8,3],[5,10],[-5,-1],[-6,2],[-5,4],[-1,7],[4,7],[6,1],[12,-4],[10,-7],[4,0],[2,9],[2,6],[8,12],[1,8],[-2,7],[-7,9],[-2,8],[0,11],[3,8],[3,7],[2,5],[1,4],[13,16],[8,22],[2,9],[-2,5],[-6,13],[-1,4],[-1,7],[-3,19],[0,15],[-1,7],[-2,3],[-3,1],[-3,5],[-6,10],[4,1],[10,-7],[23,-6],[15,2],[21,8],[15,16],[19,8],[11,13],[9,6],[4,3],[4,7],[4,7],[5,15],[0,-5],[0,-1],[-2,-2],[2,-5],[1,-5],[-1,-4],[-2,-3],[0,-27],[-3,-27],[-4,-25],[-6,-22],[-9,-22],[-20,-37],[-9,-22],[-3,-10],[-2,-10],[-1,-12],[0,-15],[-1,-12],[-2,-12],[-3,-11],[-7,-23],[-3,-13],[-1,-13],[3,-13],[1,-6],[-1,-7],[-2,-7],[-2,-4],[-1,-7],[1,-7],[3,-13],[4,-21],[0,-9],[-1,-29],[0,-8],[3,-10],[-5,-9],[-11,-35],[-5,-13],[-7,-5],[-24,1],[-20,-5],[-8,-7],[-4,0],[-4,-2],[-2,-8],[-1,-6],[-4,0],[-8,4],[5,-8],[4,-3],[10,3],[23,0],[-3,-7],[-5,-8],[-6,-6],[-5,-4],[-9,-1],[-8,3],[-7,6],[-6,11],[-3,4],[-2,-4],[0,-8],[1,-4],[-2,-3],[-4,-2],[-10,-3],[-7,-5],[-4,-2],[-8,0],[-4,2],[-3,2],[2,7],[1,4],[0,4],[0,4],[-2,2],[-2,0],[-1,-2],[-2,-10],[-6,0],[-9,8],[0,4],[5,4],[-4,3],[-9,2],[-4,3]],[[13825,82519],[-4,3],[-3,6],[-2,7],[-2,5],[3,17],[2,5],[3,3],[3,1],[4,-2],[0,-4],[8,-4],[7,-11],[1,-12],[-16,-12],[-4,-2]],[[13707,82519],[-5,-3],[-7,1],[-6,5],[-3,8],[-3,0],[-14,15],[-4,7],[3,8],[2,9],[3,7],[6,0],[21,-25],[8,-16],[-1,-16]],[[13791,82608],[-1,-2],[-2,-4],[-1,-1],[-1,-2],[0,-3],[1,-3],[-8,7],[-14,22],[-7,7],[2,8],[3,6],[4,3],[5,0],[9,-13],[2,-4],[5,-15],[2,-4]],[[13790,82610],[1,-1],[0,-1]],[[13790,82610],[0,15],[6,14],[8,8],[8,-1],[6,-12],[-3,-20],[-9,-15],[-11,2],[-3,3],[0,2],[-1,2]],[[13678,82664],[-3,11],[4,8],[6,5],[5,6],[2,-4],[2,4],[1,-2],[0,-3],[1,-3],[2,0],[-1,-4],[0,-2],[-1,-2],[1,-11],[-6,-5],[-9,-1],[-4,3]],[[13682,82808],[-3,-18],[-2,-7],[-4,-8],[-15,-17],[-2,-5],[-34,-34],[-2,4],[0,4],[1,5],[1,5],[0,32],[0,6],[4,6],[2,8],[2,6],[1,4],[0,4],[-1,5],[-1,5],[1,5],[4,4],[5,3],[5,-2],[2,-7],[5,6],[4,-2],[4,-5],[5,-3],[5,3],[5,7],[4,3],[2,-9],[1,-5],[0,-1],[1,-2]],[[13724,82889],[-1,2],[-4,6],[-1,5],[3,3],[4,1],[3,2],[19,18],[7,3],[7,-4],[2,-6],[5,-14],[-2,-5],[-3,-15],[-1,-6],[-2,-8],[-4,0],[-9,6],[-1,-3],[-2,-4],[-4,-3],[-3,4],[-3,4],[-7,9],[-3,5]],[[13831,82930],[-1,-5],[0,-4],[-2,-2],[-1,-2],[1,0],[5,0],[-1,-4],[-1,-8],[0,-4],[-4,-11],[-5,-8],[-12,-9],[-4,-2],[-7,-1],[-4,-1],[-7,-5],[-4,-1],[0,4],[10,19],[6,8],[13,8],[11,23],[7,5]],[[33924,82934],[-1,7],[2,2],[3,-1],[4,-4],[-4,-13],[-7,-4],[-14,1],[-6,-4],[-13,-15],[-6,-6],[-8,-2],[-29,7],[-3,2],[-2,4],[-1,7],[0,9],[-1,3],[-2,1],[-3,6],[-4,8],[-3,12],[-1,11],[5,5],[3,-2],[4,-8],[3,-2],[3,1],[6,8],[3,3],[3,1],[7,-2],[3,1],[3,3],[5,8],[3,1],[6,2],[11,9],[7,1],[2,2],[2,2],[1,-1],[1,-18],[-3,-5],[-3,-1],[-4,-3],[-2,-5],[-2,-13],[-2,-6],[0,-4],[3,-3],[1,-4],[-1,-4],[-1,-6],[5,2],[8,12],[3,1],[3,-6],[5,-6],[4,-1],[4,7]],[[13769,82917],[-2,3],[-3,7],[-2,8],[-1,7],[11,11],[46,71],[14,30],[6,6],[4,-9],[4,-15],[1,-13],[-2,-12],[-6,-15],[-3,-5],[-7,-9],[-3,-6],[-9,-27],[-3,-7],[-4,-4],[-11,-8],[-13,-18],[-8,-7],[-3,-1],[-1,3],[-5,10]],[[33125,83595],[-1,-10],[5,1],[7,4],[6,1],[-6,-14],[-10,-10],[-33,-13],[-7,0],[-3,7],[3,5],[7,2],[13,-1],[0,3],[-10,4],[-5,5],[-2,8],[0,8],[1,8],[3,5],[3,3],[7,-7],[7,-2],[17,1],[-1,-6],[-1,-2]],[[33053,83660],[0,-4],[14,-7],[5,-4],[-4,-5],[-4,-1],[-10,1],[-47,13],[-8,7],[-4,8],[-4,13],[0,12],[6,4],[0,-5],[-2,0],[0,-4],[4,-5],[5,0],[10,5],[-1,7],[-3,1],[-2,-3],[-3,-5],[-2,10],[4,4],[11,2],[1,5],[-1,7],[0,6],[3,3],[3,0],[2,2],[2,3],[0,7],[4,-3],[1,-1],[10,-4],[0,-4],[-6,-5],[0,-6],[3,-6],[5,-4],[21,-8],[6,-8],[-4,-1],[-1,-4],[-1,-5],[-2,-6],[-2,-4],[-3,-3],[-3,-3],[-3,-2]],[[32940,83855],[-2,-6],[-9,-4],[-2,-7],[3,-1],[7,-5],[3,-1],[0,-4],[-13,-5],[-4,0],[-6,3],[-28,6],[-31,18],[-5,6],[-5,12],[-3,4],[-3,2],[-6,3],[-2,3],[0,4],[61,-17],[9,1],[-2,0],[6,2],[7,4],[6,3],[6,-5],[0,4],[3,-5],[9,-10],[1,-5]],[[32992,83903],[5,-2],[6,2],[6,0],[5,-7],[-64,5],[-25,11],[-6,0],[1,-2],[2,-5],[1,-2],[-3,-6],[-4,-2],[-3,2],[-3,6],[2,0],[-7,9],[-9,1],[-9,-2],[-8,1],[0,3],[4,0],[0,5],[-2,1],[-1,3],[-2,4],[52,-11],[6,3],[1,5],[-8,4],[-50,7],[3,8],[5,0],[5,-3],[5,3],[-3,3],[-3,5],[-4,9],[0,3],[3,2],[10,-2],[5,-2],[22,-3],[4,-3],[9,-8],[8,-4],[8,-1],[8,-4],[5,-11],[-11,-7],[-5,-1],[0,-5],[3,0],[6,-3],[3,0],[4,2],[3,5],[20,3],[10,-1],[7,-6],[-5,-2],[-5,-1],[-4,-3],[-3,-6]],[[32995,83981],[-1,2],[-3,10],[-1,4],[0,3],[1,1],[-1,4],[10,10],[1,4],[2,7],[5,1],[10,-2],[0,4],[-5,3],[-3,2],[-1,3],[0,6],[3,2],[3,-1],[3,-2],[5,-1],[6,-2],[3,-4],[-1,-6],[0,-4],[4,0],[-2,-6],[-5,-7],[-2,-7],[10,4],[3,0],[0,-4],[-4,-1],[-9,-7],[-13,-2],[-4,-2],[-6,-10],[-4,-3],[-4,1]],[[32880,84135],[-1,4],[2,8],[6,12],[10,8],[8,4],[4,4],[1,8],[0,9],[1,4],[4,1],[4,2],[3,2],[5,-1],[4,-5],[5,-7],[5,-4],[5,1],[4,4],[4,1],[4,0],[3,-3],[-8,-17],[-7,-9],[-4,-6],[5,-1],[3,-2],[4,-4],[3,-5],[-5,-8],[-8,-9],[-9,-5],[-6,2],[3,4],[-1,4],[-2,3],[-4,1],[-4,-2],[-3,-4],[-2,-4],[2,-5],[-2,-6],[-3,-5],[-2,-3],[-3,0],[-9,-5],[-2,-3],[-3,-3],[-1,-4],[0,-5],[1,-4],[4,-2],[4,3],[4,5],[6,4],[5,8],[3,2],[4,0],[20,-6],[4,-5],[3,-9],[1,-14],[0,-24],[-2,-9],[-3,-2],[-3,0],[-2,-4],[1,-6],[6,-7],[1,-7],[-3,-6],[-4,-2],[-9,0],[-5,3],[-15,25],[-6,5],[-3,2],[-3,1],[-3,3],[-4,11],[-7,6],[-3,7],[-4,5],[-6,1],[0,4],[4,11],[3,21],[1,20],[-3,9]],[[32885,84472],[-10,-9],[-9,0],[-47,9],[-11,7],[-3,13],[3,3],[16,9],[10,8],[4,6],[3,6],[5,15],[3,4],[5,2],[13,-1],[5,-2],[3,-6],[2,-1],[1,-1],[1,-2],[0,-3],[-4,-1],[-5,-2],[-8,-5],[3,-3],[3,-2],[4,0],[3,0],[0,-4],[-2,-2],[-4,-7],[-3,-3],[-4,-1],[-21,1],[-5,-2],[-5,-5],[-5,-9],[3,-3],[5,-1],[4,1],[1,5],[3,3],[5,0],[23,-5],[15,-8],[0,-4]],[[32818,84573],[17,-17],[4,-13],[-4,-17],[-7,-7],[-27,-21],[-4,-2],[-9,11],[-10,14],[-5,12],[-1,17],[6,15],[9,10],[8,2],[-4,-13],[-1,-7],[4,-4],[4,2],[5,17],[4,5],[2,-3],[3,-1],[6,0]],[[32805,84679],[5,13],[23,34],[4,1],[10,-4],[4,-7],[2,-2],[2,6],[3,1],[2,0],[2,-2],[-1,-8],[-5,-13],[-2,-7],[13,3],[7,0],[-2,-7],[2,0],[-2,-5],[-2,-4],[-6,-8],[1,1],[5,-1],[-3,-13],[-4,-3],[-5,1],[-10,-7],[-6,4],[-5,9],[-4,7],[-6,7],[-1,2],[0,5],[0,4],[-1,4],[-3,1],[-4,-5],[-3,-8],[-4,-5],[-6,6]],[[32797,84697],[-8,-4],[-9,9],[-10,12],[-8,5],[-3,-2],[-6,-8],[-1,0],[-1,8],[-3,3],[0,3],[4,8],[14,24],[8,9],[8,4],[15,0],[2,-4],[-1,-7],[-4,-13],[15,0],[4,-16],[0,-5],[-2,-8],[-3,-6],[-8,-7],[-3,-5]],[[30805,85488],[5,-11],[5,-11],[1,-10],[-11,-6],[5,-3],[-11,-9],[-7,-5],[-2,-7],[-6,-5],[0,-4],[-11,-10],[-4,-8],[3,-10],[-5,-6],[-5,4],[-11,14],[-2,-12],[-5,-8],[-6,-1],[-6,9],[3,6],[6,11],[2,7],[1,3],[-1,11],[1,3],[2,2],[3,3],[2,11],[2,3],[1,3],[-4,8],[-10,18],[-5,16],[4,3],[8,-1],[4,4],[17,1],[10,-3],[9,-2],[4,-6],[10,5],[4,-7]],[[32200,85884],[6,-9],[20,-8],[6,-11],[-3,-4],[-5,-11],[-2,-2],[-15,0],[-4,-3],[-11,-9],[-5,-2],[-4,0],[-8,6],[5,6],[3,2],[-5,4],[-5,0],[-4,2],[-4,6],[2,10],[2,4],[2,3],[4,0],[4,-2],[4,-4],[4,-2],[-2,5],[-1,5],[-3,4],[-2,2],[7,33],[2,7],[6,5],[6,2],[5,-1],[4,-6],[-1,-2],[-3,-6],[2,-6],[6,-15],[-13,-3]],[[20034,90114],[3,16],[7,18],[8,9],[5,-12],[-1,-13],[-6,-32],[-3,-10],[-7,-9],[-9,-12],[-10,-7],[-7,2],[13,20],[5,13],[2,17]],[[19987,90137],[15,-15],[7,-4],[8,3],[-8,-11],[-2,-3],[-1,-2],[-2,-1],[-3,1],[-1,-1],[0,-3],[0,-3],[0,-2],[-6,-5],[-4,-1],[-4,5],[-1,12],[-12,26],[0,5],[0,11],[-2,12],[-3,9],[4,-7],[6,-7],[4,-7],[1,-8],[4,-4]],[[20162,90218],[20,-4],[7,-4],[-7,-9],[-11,-3],[-37,-1],[-7,3],[-7,10],[-13,36],[-3,14],[0,9],[4,3],[8,-5],[6,-9],[40,-40]],[[19998,90368],[-9,1],[-13,6],[-12,8],[-6,10],[4,5],[2,0],[3,-3],[8,-4],[14,-11],[-1,3],[0,2],[0,3],[3,5],[-14,8],[8,11],[22,7],[7,10],[-6,4],[8,1],[6,3],[5,-1],[6,-11],[-2,-9],[0,-18],[0,-9],[-3,-11],[-8,-10],[-3,-8],[5,-6],[3,-10],[1,-8],[-7,-4],[-6,3],[-17,25],[1,2],[0,2],[0,2],[1,2]],[[19920,90465],[-4,-5],[0,-6],[1,-7],[-1,-6],[-3,-4],[-19,-12],[-11,2],[-9,11],[-7,13],[-6,14],[3,0],[2,1],[2,3],[1,4],[-2,2],[-4,7],[10,6],[9,-5],[8,-7],[9,-3],[4,3],[2,3],[3,3],[5,0],[3,-2],[2,-3],[2,-5],[0,-7]],[[19964,90530],[2,13],[3,5],[4,1],[20,-6],[6,-4],[5,-9],[6,-28],[3,-4],[2,-4],[3,-7],[2,-9],[1,-5],[-3,-7],[-5,-1],[-5,4],[-2,7],[-4,-3],[-16,-2],[-6,-3],[0,-5],[3,-3],[5,-4],[2,-6],[0,-3],[-1,-2],[-6,-12],[-7,-7],[-6,-1],[-2,10],[-1,10],[-3,6],[-2,4],[-2,7],[2,12],[5,4],[7,1],[5,3],[-9,6],[-3,5],[-3,9],[-1,9],[0,7],[1,12]],[[22935,90567],[5,9],[6,7],[7,2],[9,-6],[1,-20],[-1,-8],[-3,-4],[-6,-3],[-18,-17],[-24,-9],[-5,2],[-4,10],[0,7],[2,7],[5,7],[-5,5],[-5,3],[9,3],[19,-2],[8,7]],[[19663,90616],[26,12],[13,0],[9,-12],[-2,0],[-1,-1],[-1,-2],[0,-1],[-23,-9],[-12,1],[-9,12]],[[18295,90674],[14,-3],[31,5],[14,-7],[-12,1],[-6,-1],[-5,-4],[-64,4],[-4,1],[-8,6],[-4,1],[0,4],[11,4],[11,0],[22,-11]],[[18487,90697],[29,7],[16,0],[10,-11],[-6,-5],[-7,-3],[-65,-7],[-21,7],[6,4],[7,2],[38,-6],[6,4],[-3,3],[-3,1],[-4,0],[-3,0],[0,4]],[[19142,90661],[6,8],[33,20],[29,25],[10,3],[0,-2],[-1,-2],[-1,-4],[-5,-6],[-7,-20],[-6,-6],[-20,-4],[-22,-14],[-12,-4],[-4,6]],[[19985,90713],[-1,-18],[-3,-14],[-7,-9],[-8,-3],[-19,4],[-11,-3],[-5,1],[-3,6],[5,3],[1,5],[-1,7],[1,7],[4,7],[4,4],[9,7],[20,11],[10,-2],[4,-13]],[[19747,90693],[8,-1],[2,-11],[-3,-11],[-7,-5],[-9,2],[-55,33],[-12,15],[-4,22],[10,-8],[32,-16],[-6,10],[-2,3],[5,0],[12,-4],[2,1],[3,5],[1,1],[3,0],[13,-6],[9,-8],[5,-2],[0,-2],[-7,-18]],[[22509,90782],[0,-17],[-1,-8],[-1,-7],[3,-1],[9,-7],[-6,-11],[-8,-1],[-8,5],[-6,9],[-2,5],[-2,7],[-2,4],[-7,10],[-1,4],[8,-3],[17,15],[7,-4]],[[19623,90774],[6,-6],[5,-10],[2,-13],[-2,-14],[-7,-2],[-11,5],[-40,32],[-6,8],[5,-2],[6,-4],[6,-2],[4,4],[0,7],[-3,6],[-4,5],[-3,3],[3,6],[4,2],[9,-1],[7,-4],[3,-4],[1,-6],[2,-6],[4,-3],[9,-1]],[[19427,90798],[13,6],[13,11],[13,8],[13,-4],[0,-3],[-1,-2],[-10,-21],[-13,-6],[-14,-1],[-18,-11],[-8,-2],[-15,1],[-6,-3],[-7,-5],[-7,-3],[-8,3],[12,12],[14,11],[16,7],[13,2]],[[19484,90835],[20,12],[39,37],[21,4],[-2,-4],[-2,-4],[-3,-10],[-7,-1],[-6,1],[-6,-3],[-3,-7],[-1,-6],[-1,-5],[-5,-6],[-23,-18],[-13,-3],[-8,13]],[[18984,90920],[36,6],[8,-6],[-2,-3],[-2,-1],[-10,0],[-14,-4],[-5,-4],[-3,-8],[-2,-13],[-3,-7],[-9,-6],[-13,-3],[-12,5],[-4,16],[3,7],[6,4],[9,5],[0,3],[0,4],[-1,4],[2,1],[16,0]],[[22197,90961],[3,-6],[0,-5],[-2,-4],[-1,-6],[0,-22],[0,-6],[-9,-7],[-11,6],[-20,21],[9,2],[13,6],[9,10],[1,15],[2,1],[2,-1],[2,-2],[2,-2]],[[19212,91066],[10,-1],[12,-7],[11,-13],[5,-15],[-7,-1],[-2,1],[-47,-11],[-50,3],[-4,3],[5,6],[12,11],[55,24]],[[19265,91066],[35,0],[-9,-13],[-17,-3],[-19,2],[-12,6],[-4,4],[-4,7],[-2,7],[3,2],[17,-2],[9,1],[7,6],[2,-5],[-2,-4],[-1,-1],[-1,-2],[0,-1],[-2,0],[0,-4]],[[20975,91046],[3,-2],[3,-3],[4,-9],[7,-28],[-10,-17],[-18,-8],[-35,-3],[-17,10],[-16,5],[-9,8],[-16,6],[-10,6],[-29,31],[-10,17],[-6,7],[-7,0],[27,17],[28,5],[58,-5],[8,-7],[21,-7],[15,-17],[9,-6]],[[18342,91103],[4,3],[3,2],[30,-4],[20,-10],[-9,-9],[-48,9],[2,5],[-2,4]],[[18293,91139],[20,-17],[7,-10],[-6,-5],[-11,5],[-15,25],[-8,7],[3,3],[4,0],[3,-3],[3,-5]],[[21751,91196],[0,-8],[-1,-15],[-1,-5],[1,-7],[1,-7],[4,-15],[-4,-12],[-2,-5],[-3,-3],[-7,-1],[-24,9],[5,-5],[2,-5],[0,-5],[-5,-15],[-1,-8],[-2,-6],[-4,-5],[-6,1],[-11,12],[-5,3],[-7,2],[-13,10],[-8,1],[-8,-4],[-3,0],[-4,1],[-6,6],[-4,2],[-4,5],[-1,2],[-5,1],[-11,-1],[-6,2],[-12,8],[-10,4],[-17,14],[11,1],[14,6],[14,10],[14,15],[24,12],[3,2],[1,3],[1,6],[0,4],[0,4],[-1,2],[10,16],[12,1],[56,-22],[6,0],[7,1],[7,-1],[3,-11]],[[18201,91269],[4,3],[3,1],[3,0],[24,-3],[6,-5],[-5,-8],[-9,-2],[-10,3],[-9,5],[-7,6]],[[22165,91216],[-4,-6],[0,-4],[1,-4],[-1,-6],[-5,-2],[-14,4],[-6,-2],[-6,-9],[-4,-10],[-5,-9],[-8,-4],[-7,2],[-8,7],[-13,19],[13,8],[-3,10],[-4,4],[-5,0],[-5,-2],[-10,-6],[-5,-5],[1,-5],[-6,-10],[-7,2],[-5,10],[-2,14],[0,46],[2,27],[2,2],[4,-1],[3,3],[3,13],[-3,10],[-11,18],[14,10],[3,4],[2,11],[7,2],[37,-7],[12,-6],[10,-10],[-1,-14],[5,-8],[8,-6],[14,-16],[21,-3],[8,-10],[-15,-8],[4,-9],[-2,-8],[-4,-5],[-5,-2],[1,-7],[5,-9],[1,-5],[1,-8],[-2,0],[-3,1],[-3,-1]],[[22210,91383],[3,-7],[8,-12],[3,-5],[2,-9],[0,-7],[-4,-34],[-2,-7],[-4,-5],[-4,0],[-36,17],[-9,8],[-8,10],[-6,14],[-2,16],[2,11],[3,10],[4,7],[5,5],[9,6],[3,4],[3,9],[1,3],[3,3],[1,-7],[3,-4],[7,-6],[6,-2],[7,-5],[4,-7],[-2,-6]],[[21797,91444],[7,-7],[0,-13],[-6,-13],[-7,-12],[-4,-3],[-6,-3],[-11,-2],[-5,-2],[-5,-4],[-5,-1],[-6,7],[6,11],[17,9],[4,11],[-4,8],[-20,1],[-8,8],[9,19],[17,7],[18,-3],[11,-10],[0,-2],[-1,-2],[0,-2],[-1,-2]],[[12342,91561],[5,13],[8,0],[17,-8],[20,3],[10,-1],[9,-11],[-6,-9],[-2,-3],[6,-2],[13,4],[2,-8],[-1,-10],[-4,-9],[-5,-4],[-10,14],[-8,6],[-54,25]],[[21949,91618],[5,-3],[2,-3],[-3,-4],[-2,-3],[-2,-4],[-2,-2],[-3,-1],[-6,2],[-5,4],[-6,1],[-6,-7],[-3,-6],[-2,-6],[0,-7],[1,-5],[-5,0],[-8,-6],[-4,-2],[-4,2],[-4,4],[-3,1],[-3,-7],[2,-4],[-1,-4],[-3,-3],[-3,-2],[-4,1],[-11,7],[5,2],[5,3],[2,6],[-1,10],[-4,7],[-10,2],[-3,7],[11,-4],[8,1],[7,8],[6,15],[-17,12],[-6,0],[2,-5],[0,-3],[-5,0],[-3,3],[-9,12],[-14,14],[-2,0],[1,2],[5,16],[2,3],[3,3],[9,3],[9,1],[5,-3],[1,-3],[0,-3],[0,-3],[4,-9],[1,-1],[5,2],[3,2],[7,8],[3,2],[-2,-4],[3,-8],[3,-3],[22,-5],[5,-4],[-4,-5],[0,-4],[1,-2],[4,-2],[5,-5],[11,-6],[5,-5]],[[23179,91616],[-16,15],[-11,17],[-25,27],[0,4],[11,1],[3,-1],[2,-2],[5,-5],[3,-2],[3,-6],[2,-1],[26,5],[44,-2],[5,-2],[4,-4],[4,-7],[5,-6],[4,1],[9,7],[18,4],[6,12],[5,-1],[6,-4],[3,-7],[0,-9],[3,-9],[4,-9],[3,-10],[0,-13],[-2,-10],[-5,-8],[-7,-5],[4,-9],[2,-5],[0,-6],[-1,-7],[-3,-5],[-2,-5],[2,-8],[-24,6],[-12,7],[-11,12],[-15,26],[-5,7],[-25,11],[-15,2],[-7,4]],[[12797,91675],[12,-4],[-12,-4],[-5,0],[-19,8],[0,2],[0,2],[1,4],[4,1],[6,6],[21,14],[4,-1],[7,-4],[0,-1],[1,-3],[1,-3],[1,-1],[11,0],[-5,-7],[-28,-5],[0,-4]],[[23349,91582],[-11,9],[-5,7],[-2,10],[0,6],[-1,2],[0,2],[1,4],[4,6],[8,5],[3,6],[-1,6],[1,7],[8,31],[4,5],[6,3],[13,0],[4,2],[2,3],[5,11],[7,2],[21,-3],[7,-3],[-4,-8],[3,-2],[3,0],[4,2],[3,2],[4,3],[3,-2],[3,-3],[24,-20],[8,-4],[31,-29],[3,-5],[0,-11],[-1,-6],[-5,-15],[-1,-7],[-2,-13],[0,-17],[-3,-7],[-13,-4],[-6,-6],[-6,-14],[-3,-6],[-5,-2],[-50,-6],[-9,10],[2,1],[7,3],[-4,14],[2,10],[6,6],[10,3],[2,5],[-8,28],[-2,11],[1,4],[2,3],[2,4],[1,7],[-1,5],[-2,6],[-4,10],[-8,9],[-11,5],[-12,0],[-8,-4],[6,-30],[4,-13],[5,-10],[-21,-40],[-6,-17],[2,0],[0,-3],[0,-1],[0,-2],[2,-2],[-6,-9],[-10,0],[-12,4],[-8,5],[1,6],[-1,10],[0,5],[3,4],[11,12]],[[11357,91720],[9,-3],[19,-11],[17,-4],[9,-4],[8,-6],[6,-9],[-10,-8],[-23,5],[-11,-1],[-6,-5],[-11,-17],[-6,-7],[-8,-1],[-9,4],[-10,7],[-7,7],[-3,4],[-2,5],[-3,3],[-3,-2],[-4,-4],[-5,-2],[-4,0],[-4,0],[5,8],[27,28],[15,9],[14,4]],[[12340,91675],[-5,9],[3,9],[13,17],[7,6],[10,3],[20,1],[-2,-7],[-15,-30],[-7,-7],[-8,-5],[-8,0],[-8,4]],[[21631,91756],[2,-26],[-11,-10],[-14,4],[-7,14],[0,12],[0,8],[3,4],[19,6],[5,-2],[3,-10]],[[23551,91251],[2,-5],[-1,-3],[-2,-1],[-2,-1],[-3,-9],[-5,-10],[-5,-8],[-27,-24],[-7,-2],[-12,-10],[-25,-36],[-11,2],[4,16],[2,12],[-4,9],[-9,7],[-38,-14],[-6,0],[-2,5],[-5,0],[-5,-2],[-3,-5],[3,-11],[1,-7],[-4,-3],[-8,-4],[-5,-11],[-1,-14],[4,-15],[-11,-5],[-21,11],[-12,-2],[-3,-4],[-10,-16],[-5,-6],[-5,-4],[-5,-2],[-6,-1],[-8,-3],[-40,-50],[-8,-5],[-54,-15],[-11,3],[-21,11],[-22,5],[-46,23],[-18,5],[-11,8],[-10,4],[-5,4],[-4,6],[-4,7],[-4,6],[-6,3],[-12,1],[10,-20],[4,-11],[-3,-6],[-5,-1],[-10,-6],[-5,-1],[-6,1],[-17,7],[-17,2],[-19,10],[-5,0],[-5,-2],[-5,-4],[-6,-3],[-27,17],[-25,26],[-9,3],[-7,4],[-14,19],[-8,5],[-13,-1],[-44,23],[-13,3],[-5,-3],[-8,-10],[-4,-4],[-5,1],[-3,3],[-5,8],[-4,4],[-15,9],[-14,15],[-6,10],[0,9],[6,13],[5,10],[-1,8],[-10,8],[-20,11],[-12,2],[-6,-7],[2,-13],[4,-10],[1,-11],[-3,-13],[-7,-9],[-12,-4],[-12,2],[-8,9],[-5,13],[-4,4],[-16,5],[-3,-1],[-5,-5],[-2,-2],[-11,1],[-40,25],[-3,6],[-1,9],[1,9],[3,8],[4,5],[7,3],[1,3],[1,4],[0,5],[-1,4],[-2,1],[-13,6],[-17,2],[-10,7],[-3,0],[-3,-1],[-3,-3],[-1,-5],[1,-5],[1,-3],[-1,-3],[-4,-7],[-5,0],[-5,4],[-6,3],[-12,2],[-2,-3],[4,-8],[14,-16],[5,-8],[-8,-5],[-16,-3],[-8,-4],[-7,-8],[-3,-1],[-4,3],[-10,12],[-6,3],[-8,5],[-34,13],[-7,5],[-4,7],[3,9],[-5,14],[-6,11],[-16,16],[-9,6],[-4,5],[-2,7],[1,9],[4,7],[9,13],[15,27],[9,8],[11,3],[17,-4],[3,0],[3,4],[8,11],[4,2],[5,-8],[5,4],[5,-2],[5,-4],[4,-3],[6,0],[15,5],[35,-5],[11,7],[8,11],[4,5],[5,1],[25,-3],[8,2],[11,5],[10,9],[1,12],[2,0],[-3,10],[0,10],[3,10],[6,8],[7,9],[4,2],[4,-2],[9,-11],[5,-4],[5,0],[3,3],[5,10],[4,4],[5,1],[16,-1],[8,2],[4,6],[0,9],[-5,11],[-12,14],[-27,18],[-15,22],[-1,3],[1,6],[3,5],[2,5],[3,3],[4,1],[20,-8],[11,-2],[9,6],[-32,14],[-15,13],[-2,22],[6,11],[7,5],[24,-1],[26,-9],[5,-8],[3,-6],[12,-12],[6,-15],[26,-19],[16,1],[4,-2],[1,-4],[-1,-12],[4,-7],[10,0],[10,5],[6,8],[-43,31],[-11,16],[-12,22],[-3,4],[-3,2],[-8,8],[-4,2],[-10,2],[-4,3],[-4,3],[7,13],[2,6],[2,10],[1,8],[-1,14],[0,6],[5,17],[8,16],[18,24],[7,4],[14,1],[7,3],[5,5],[10,24],[12,15],[13,6],[13,0],[14,-5],[4,-5],[10,-6],[27,-6],[6,-3],[3,-5],[0,-5],[0,-5],[1,-6],[4,-6],[12,-5],[5,-3],[39,-10],[7,-6],[3,-15],[9,-9],[18,-11],[-10,-10],[-22,-1],[-10,-9],[18,-32],[11,-12],[4,-2],[1,7],[1,7],[11,31],[4,9],[5,6],[3,-1],[4,-3],[13,-5],[29,-33],[5,-9],[3,-12],[2,-6],[3,-2],[8,-3],[42,-45],[10,-6],[18,5],[7,-7],[15,-17],[9,-4],[17,-2],[24,-10],[8,-10],[2,-2],[5,-2],[19,-18],[25,-11],[28,-25],[10,-13],[4,-17],[-2,-7],[-8,-12],[-2,-11],[-1,-11],[-2,-8],[-3,-6],[-5,-6],[8,-11],[2,-13],[-2,-14],[-4,-14],[3,-10],[7,-8],[8,-5],[6,-2],[8,2],[1,5],[-8,16],[-2,10],[1,7],[3,8],[1,9],[-1,11],[-3,6],[-1,6],[3,9],[10,11],[2,4],[1,5],[2,6],[4,5],[2,2],[6,-3],[3,-8],[5,-19],[5,-8],[9,-11],[4,-8],[1,-3],[1,-8],[1,-5],[5,-16],[-4,-2],[-5,-5],[-4,-7],[-2,-7],[1,-6],[7,-9],[2,-7],[1,-4],[4,-5],[5,-4],[8,-3],[3,-3],[3,-7],[2,-8],[1,-14],[-1,-13],[1,-11],[5,-9],[5,-1],[4,4],[3,5],[5,2],[17,-5],[4,-3],[4,-6],[0,-4],[0,-5],[2,-5],[3,-6],[4,-2],[4,-1],[16,3],[49,37],[12,4],[11,-5],[9,-9],[4,-4],[8,-2],[5,-3],[1,-2]],[[22926,91866],[-6,8],[-2,10],[2,11],[6,8],[9,2],[12,-3],[12,-6],[5,-10],[-2,-3],[-2,-4],[-4,-9],[9,-9],[20,1],[7,-9],[-6,-11],[-7,-1],[-7,5],[-6,7],[-10,8],[-20,1],[-10,4]],[[15289,92024],[-3,-1],[-2,-3],[-3,-3],[-1,-5],[1,0],[-6,-7],[-16,7],[-8,-4],[13,-8],[-5,-4],[-5,0],[-6,1],[-5,3],[1,10],[4,8],[6,4],[30,4],[5,-2]],[[18565,92110],[30,-1],[22,-6],[9,-6],[-4,-3],[-5,-1],[-51,0],[-13,8],[4,0],[3,3],[2,4],[3,2]],[[22016,92110],[-3,-3],[-3,-5],[-2,-4],[-2,-5],[1,-6],[2,-4],[1,-3],[-2,-3],[-7,-1],[-8,8],[-13,17],[3,2],[3,3],[1,5],[-1,6],[6,3],[10,-1],[9,-3],[5,-6]],[[18902,92117],[20,-4],[58,-3],[-121,-7],[-57,27],[-3,6],[3,6],[7,1],[53,-9],[40,-17]],[[17593,92219],[15,-2],[7,-5],[4,-9],[-10,5],[-41,0],[-9,3],[-8,6],[-4,10],[11,0],[35,-8]],[[17704,92251],[30,-1],[9,-7],[-29,0],[-5,-2],[-10,-8],[-5,-2],[-15,1],[-27,-4],[-7,1],[-5,6],[7,8],[7,3],[9,0],[8,-5],[9,0],[15,12],[9,-2]],[[17577,92255],[12,6],[19,2],[19,-3],[9,-9],[-9,-4],[-56,-1],[-9,5],[7,4],[4,1],[4,-1]],[[17809,92269],[6,2],[8,-2],[6,-5],[-3,-7],[-15,-9],[-17,-2],[-34,5],[16,5],[5,4],[22,5],[6,4]],[[17484,92263],[39,-3],[10,-9],[-8,-5],[-26,5],[-61,-5],[-15,5],[-8,12],[18,13],[7,0],[44,-13]],[[14379,92316],[9,0],[13,-7],[12,-11],[8,-10],[-3,-5],[-2,-2],[-3,0],[-3,3],[1,-13],[-5,-6],[-8,0],[-6,3],[-9,10],[-6,2],[-4,-9],[2,-1],[1,-4],[1,-3],[-7,-3],[-21,-13],[7,16],[17,45],[6,8]],[[22124,92215],[-30,4],[-54,32],[-7,14],[1,11],[2,13],[1,9],[-2,9],[-3,8],[-8,13],[7,2],[30,-14],[8,4],[9,7],[9,1],[7,-12],[13,-12],[15,-5],[4,-3],[-4,-3],[-1,-1],[5,-6],[20,-2],[11,-7],[11,-9],[-5,-7],[-7,0],[-8,3],[-13,10],[-8,2],[-7,-1],[-7,-4],[7,-9],[15,-9],[7,-10],[0,-11],[9,-17],[7,-15],[-9,-5],[-6,3],[-12,12],[-7,5]],[[15014,93087],[-5,2],[-6,3],[-2,4],[4,3],[5,0],[15,-11],[-11,-1]],[[19303,93461],[4,-1],[2,-2],[3,-4],[1,-5],[-19,-1],[-10,4],[-5,13],[12,1],[7,-1],[5,-4]],[[19334,93477],[4,0],[4,0],[3,-3],[2,-5],[-40,8],[7,2],[20,-2]],[[19357,93497],[10,-4],[-7,-9],[-10,-1],[-20,6],[6,4],[7,3],[14,1]],[[21980,91811],[-2,-15],[-5,-13],[-6,-8],[-8,-3],[0,-4],[7,-9],[-1,-12],[-11,-21],[-4,-1],[-20,3],[-7,-4],[-4,0],[-6,4],[-7,8],[-4,6],[-2,-1],[-1,-3],[-1,-2],[-25,-8],[-11,2],[-9,5],[-8,10],[-6,15],[0,6],[-14,21],[-10,34],[-2,4],[4,10],[9,18],[0,13],[-4,5],[-5,-2],[-5,-7],[-21,-57],[-4,-18],[-1,-13],[-4,-9],[-15,-21],[-4,-8],[-6,-21],[-3,6],[-1,5],[0,5],[-2,5],[-3,6],[-40,33],[-4,2],[-4,-3],[-6,-6],[-5,-2],[-5,4],[-12,21],[-6,8],[-3,4],[-3,6],[0,2],[0,8],[-2,15],[-5,5],[-6,-2],[-11,-10],[-4,-2],[-9,0],[-2,3],[-3,5],[-1,6],[0,4],[3,13],[-3,11],[-7,8],[-6,3],[-8,-5],[0,-11],[5,-24],[-17,0],[-8,-4],[-6,-9],[8,-8],[3,-6],[3,-6],[-3,-6],[-4,-7],[-4,-5],[-3,-2],[-7,0],[-1,2],[2,5],[1,9],[-2,7],[-3,6],[-3,3],[-2,-6],[0,-9],[-1,-5],[-2,-3],[-4,-1],[-2,1],[-5,5],[-3,2],[-3,0],[-3,-1],[-2,-1],[-9,-16],[-4,-4],[-12,-6],[-3,-1],[-3,2],[-5,5],[-6,4],[-5,4],[-3,1],[-3,-8],[19,-25],[10,-9],[25,-5],[-1,-13],[-5,-19],[4,-21],[-2,-3],[-1,-2],[-1,-2],[-2,-2],[0,-3],[1,-7],[1,-2],[-8,-6],[-9,-4],[-18,-2],[-16,4],[-6,0],[-19,-9],[-10,2],[-15,12],[-38,13],[-4,6],[-18,2],[-19,13],[-18,18],[-13,20],[-8,8],[-7,-3],[-7,-5],[-9,0],[-2,3],[-2,5],[-3,5],[-4,3],[-5,0],[-14,-8],[3,-11],[-2,-10],[-7,-24],[17,-3],[34,-24],[29,-11],[9,-13],[7,-18],[8,-31],[3,-6],[3,1],[5,10],[1,9],[-1,13],[-1,12],[4,4],[7,-1],[5,-3],[4,-8],[3,-12],[1,-5],[0,-10],[1,-5],[1,-4],[3,-7],[2,-5],[-3,-7],[-7,-19],[-4,-7],[5,-13],[1,-10],[-2,-28],[-4,-13],[-10,-10],[-33,-18],[-4,-5],[-2,-6],[0,-3],[1,-4],[1,-5],[-1,-7],[-2,-6],[0,-5],[2,-7],[4,-5],[4,-3],[4,1],[4,5],[1,5],[2,13],[3,6],[3,5],[10,10],[11,6],[7,11],[20,46],[5,5],[9,7],[4,6],[1,6],[0,7],[1,7],[3,2],[1,1],[2,2],[2,2],[1,1],[0,5],[2,2],[37,2],[10,8],[11,5],[22,0],[9,9],[9,25],[6,6],[22,2],[10,3],[12,8],[6,1],[18,-8],[37,-1],[8,-3],[24,-25],[8,-12],[-2,-9],[-25,-29],[-23,6],[-11,-5],[-4,-4],[2,-4],[-2,0],[1,-11],[-1,-5],[4,0],[6,6],[3,2],[5,1],[1,-1],[1,-4],[2,-6],[7,-7],[6,-4],[3,-5],[-5,-13],[-6,-11],[-4,-4],[-4,3],[-7,10],[-7,8],[-7,4],[-8,-2],[-7,-10],[3,-3],[2,-5],[1,-5],[-2,-7],[3,-3],[8,-4],[4,-1],[3,-2],[5,-10],[6,-5],[7,-2],[7,3],[2,14],[3,10],[7,8],[8,5],[13,6],[6,0],[5,-4],[5,-9],[10,-12],[12,-6],[11,-9],[4,-20],[-3,-22],[-8,-17],[-19,-29],[3,-6],[5,-4],[5,-5],[2,-8],[-3,-6],[-7,-4],[-33,-12],[-7,3],[-5,5],[-4,5],[-4,5],[-5,2],[-6,-2],[-5,-5],[-9,-13],[-6,-7],[-5,-2],[-13,1],[-27,-9],[-7,3],[-13,7],[-7,-1],[3,-9],[3,-8],[-2,-6],[-4,-5],[-4,-4],[-8,-3],[-3,-4],[-3,-6],[-4,-4],[-10,-4],[-31,0],[-2,2],[-15,13],[-9,4],[-6,1],[-4,-4],[4,-10],[7,-10],[6,-4],[-3,-7],[-6,-4],[-26,-2],[-5,-2],[-19,-13],[-14,-4],[-13,2],[-16,10],[-11,4],[-3,2],[-3,4],[-2,2],[-7,2],[-46,-6],[-5,-5],[-4,-6],[-1,-7],[4,-7],[-9,-4],[-9,0],[-9,4],[-14,10],[-13,12],[-6,3],[-4,-2],[-7,-5],[-3,-2],[-28,6],[-13,7],[-5,1],[-13,-1],[-10,2],[-17,12],[-10,2],[-28,-6],[-10,2],[-27,13],[-7,7],[-3,5],[-1,3],[0,3],[-3,10],[0,4],[-2,4],[-2,4],[-12,-5],[2,-6],[6,-7],[2,-7],[-10,1],[-17,13],[-22,7],[-4,-3],[-1,-4],[-1,-8],[-2,-4],[-15,-21],[-18,-6],[-74,10],[-73,9],[-9,4],[-12,16],[-7,7],[-9,6],[-6,2],[8,1],[7,4],[7,6],[5,11],[9,6],[23,-9],[9,9],[-4,7],[-1,1],[24,8],[13,11],[0,16],[-6,6],[-9,5],[-30,7],[-6,0],[-7,-8],[6,0],[8,-3],[6,-5],[4,-8],[-48,9],[-12,8],[-56,4],[-3,3],[-6,12],[-4,6],[-8,9],[-4,2],[-94,13],[-12,-6],[-11,-10],[-4,-1],[-6,0],[-19,7],[-36,-6],[-35,17],[-23,6],[-1,3],[0,7],[2,12],[2,7],[4,5],[26,15],[5,10],[-2,16],[-2,3],[-3,3],[-3,3],[-1,7],[-2,26],[0,7],[1,2],[0,2],[-4,6],[-5,5],[-6,3],[-6,3],[-6,1],[-7,4],[-20,28],[-9,7],[-11,2],[-10,-4],[-12,-16],[-9,-7],[-3,-4],[-2,-2],[-5,0],[-3,-2],[0,-3],[0,-4],[0,-4],[-1,-9],[0,-7],[0,-6],[-1,-6],[-5,-2],[-43,-3],[-11,-5],[-8,-10],[0,-11],[9,-18],[3,-19],[2,-6],[4,-9],[0,-7],[-3,-7],[-4,-6],[-3,-2],[-18,-2],[-3,-6],[1,-6],[2,-9],[0,-6],[-5,2],[-17,4],[-17,-15],[-29,-47],[-17,-19],[-39,-20],[-113,-22],[-17,-8],[-81,-5],[-26,11],[-59,-3],[-8,-7],[6,-8],[3,-4],[1,-5],[-2,-6],[-3,-7],[-4,-5],[-11,-5],[-18,-18],[-37,-26],[-18,-5],[-15,-18],[-9,-7],[-21,-9],[-88,-17],[-77,-34],[-45,-5],[-33,4],[-23,-8],[-48,4],[-19,-3],[-18,-13],[-15,-15],[-8,-2],[-7,7],[-6,9],[-6,4],[-35,5],[-10,-1],[-15,-17],[-9,-2],[-19,0],[-61,-22],[-17,9],[4,5],[6,4],[44,10],[-1,4],[-5,4],[-6,2],[-36,-6],[-17,-10],[-8,-3],[-70,4],[-16,-5],[13,-10],[32,-2],[14,-5],[-12,-18],[-27,1],[-51,13],[-100,-8],[-99,-8],[-5,1],[-4,3],[-5,1],[-10,-8],[-5,-2],[-11,-3],[-53,4],[-6,-1],[-3,-3],[-10,-14],[-2,-2],[-3,-2],[-7,1],[-15,-6],[-42,7],[-96,-13],[-11,4],[-5,9],[1,9],[10,7],[14,1],[41,-9],[7,3],[-3,9],[-15,16],[-10,7],[-23,8],[-16,12],[-19,6],[-4,3],[-7,11],[-2,2],[-7,5],[-6,11],[-3,13],[4,11],[-4,9],[-5,7],[-22,18],[-4,5],[-4,8],[-5,7],[-11,7],[-5,6],[-4,9],[-1,7],[3,5],[8,2],[4,4],[-4,9],[-10,13],[-3,9],[2,7],[10,10],[7,11],[5,3],[4,5],[2,4],[0,2],[-3,5],[0,11],[2,13],[2,7],[-19,0],[3,8],[7,2],[14,-1],[-5,7],[-19,12],[-4,7],[-1,4],[-2,9],[-1,5],[0,1],[-1,1],[-1,2],[0,4],[1,0],[9,4],[-15,10],[-3,4],[1,6],[2,2],[1,4],[-2,7],[6,0],[11,-7],[35,-5],[-9,9],[-12,7],[-84,17],[-3,4],[-7,9],[-6,4],[-22,-6],[-31,1],[-20,9],[-9,9],[-5,1],[-39,3],[-128,-21],[-12,6],[-7,9],[-4,2],[-18,2],[-7,-2],[-5,-5],[-8,-11],[-10,-5],[-21,-2],[-109,17],[-109,17],[-4,4],[-4,4],[-3,5],[-5,5],[-6,3],[-26,3],[-79,38],[-27,6],[-29,28],[3,9],[6,5],[12,6],[-4,6],[-5,5],[-4,5],[-2,8],[7,5],[1,6],[-4,5],[-7,5],[-39,4],[3,-6],[12,-10],[-7,-4],[-8,3],[-14,15],[-26,10],[-6,8],[16,9],[6,7],[-2,9],[-1,4],[-4,4],[-13,4],[-13,10],[-25,6],[-11,6],[-13,16],[-19,12],[-7,2],[-4,5],[-4,11],[-2,12],[-1,7],[-2,9],[-12,23],[-11,28],[-4,21],[-5,9],[-12,13],[8,16],[7,11],[8,7],[17,6],[29,21],[64,22],[61,10],[65,10],[133,34],[109,17],[113,9],[50,10],[80,6],[71,14],[90,1],[40,-21],[110,-11],[46,13],[72,-14],[63,-17],[7,3],[-4,6],[-2,2],[7,2],[28,-6],[9,-7],[68,-19],[10,0],[8,5],[-4,4],[-13,4],[7,10],[8,4],[18,-1],[4,-1],[9,-6],[4,-1],[12,4],[4,0],[0,4],[-13,4],[5,7],[9,3],[48,0],[8,6],[-37,4],[-10,8],[13,7],[90,-27],[28,6],[33,-7],[22,11],[25,-6],[7,0],[15,7],[7,5],[-9,5],[-23,-3],[-8,11],[7,3],[14,3],[7,5],[-8,12],[-14,5],[-67,-5],[-19,9],[-24,5],[-5,2],[-9,9],[-12,8],[-4,4],[-1,4],[-2,10],[-1,4],[-10,21],[-6,8],[-8,6],[-7,1],[-18,-1],[-5,1],[-14,11],[-6,0],[-11,-7],[-6,-1],[-3,4],[-2,6],[-2,4],[-5,2],[-4,-2],[-8,-8],[-5,-2],[-6,1],[-13,5],[-15,14],[-12,7],[-12,4],[-26,3],[-7,-3],[-6,-16],[-6,3],[-10,11],[-36,14],[-9,12],[-6,5],[-6,-1],[-14,-6],[-4,2],[-3,6],[-2,6],[1,6],[0,4],[-43,0],[-14,4],[-21,16],[-4,2],[-3,-2],[-2,-3],[0,-3],[0,-4],[-1,-4],[-10,-8],[-11,4],[-10,9],[-14,7],[-9,8],[-75,15],[-13,-4],[-30,-22],[-11,-3],[-45,11],[-14,-4],[-30,-21],[-102,-9],[-48,-15],[-55,5],[-70,-7],[-5,-2],[-9,-9],[-4,-1],[-6,0],[-41,16],[-86,-16],[-41,11],[-6,5],[1,6],[10,2],[-6,8],[-12,4],[-97,-4],[-19,-12],[-9,-3],[-85,-4],[-69,11],[-26,-10],[-6,6],[2,4],[-8,5],[-39,-5],[-1,-1],[0,-3],[0,-3],[0,-1],[-5,-2],[-4,-1],[-10,3],[-31,17],[-11,16],[8,19],[-7,11],[-10,9],[-11,7],[-18,5],[-87,54],[-24,23],[-13,17],[-25,40],[-3,9],[10,19],[81,44],[82,44],[90,9],[105,34],[55,-2],[13,5],[9,9],[-1,1],[-3,3],[-1,0],[9,12],[137,36],[12,7],[46,8],[7,-6],[-27,-8],[6,-4],[7,0],[8,2],[14,8],[79,3],[10,11],[-16,4],[-33,0],[-45,16],[-39,3],[-2,6],[7,5],[39,0],[85,39],[-5,-8],[3,-7],[6,-1],[32,9],[8,-5],[-4,-3],[9,-8],[22,-2],[19,-10],[9,5],[9,7],[8,3],[33,4],[17,13],[25,12],[-15,6],[-52,-23],[-37,-4],[-19,3],[-16,9],[0,4],[28,8],[0,5],[-43,10],[-59,-4],[-18,-11],[-26,-2],[-18,-7],[-25,-4],[-14,-5],[-102,-12],[-23,-15],[-27,0],[-24,-13],[-29,-3],[-35,6],[-6,-3],[-5,-4],[-12,-5],[-10,-3],[-10,-5],[-6,-1],[-18,2],[-21,-10],[-7,-1],[-6,1],[-1,4],[2,5],[2,15],[5,9],[1,5],[-3,4],[-23,-2],[3,5],[2,2],[2,1],[-5,9],[-9,6],[-10,4],[-8,1],[1,-2],[0,-2],[1,-2],[2,-2],[-9,-5],[-8,-3],[-5,-2],[-1,-6],[3,-6],[4,-2],[20,0],[10,-5],[5,-12],[-3,-8],[-5,-9],[-7,-7],[-4,-4],[-44,8],[2,4],[-4,6],[-3,0],[-4,-3],[-8,-11],[-4,-3],[-4,-1],[-12,2],[-11,5],[-5,1],[-73,-5],[-22,9],[-19,23],[0,22],[16,19],[35,22],[54,4],[41,-10],[7,6],[-17,8],[-5,4],[21,1],[20,-4],[5,3],[5,8],[-10,6],[-23,2],[-11,4],[-3,6],[-2,2],[-18,6],[-3,-1],[-4,-1],[-2,-2],[0,-3],[-1,-2],[-3,-1],[-4,2],[-3,5],[0,6],[2,8],[5,5],[21,-1],[48,16],[-8,5],[-98,-7],[-16,-9],[-13,-14],[2,-11],[-9,-6],[-26,-4],[-16,1],[-5,-1],[-10,-7],[-5,0],[2,7],[6,7],[2,6],[-2,7],[-4,4],[-12,6],[-1,7],[-8,3],[-15,2],[-13,5],[-4,-1],[-3,-3],[-5,-8],[-3,-1],[-4,1],[-5,5],[-3,2],[-40,0],[-9,-2],[3,-6],[-3,-6],[-4,-5],[-4,-3],[-4,-3],[2,-6],[2,-4],[7,-6],[-6,-6],[-10,4],[-20,16],[-4,2],[-6,1],[-5,3],[-2,7],[-10,18],[-2,12],[-5,28],[-3,11],[-2,11],[2,14],[6,25],[2,25],[3,10],[4,12],[6,10],[30,33],[34,28],[21,9],[9,11],[2,5],[1,6],[-1,6],[-4,4],[5,11],[8,9],[28,22],[37,2],[88,27],[6,12],[-6,36],[-13,18],[-19,4],[-52,0],[-19,11],[-6,2],[-6,3],[-7,9],[-6,12],[-2,12],[7,29],[16,19],[63,47],[10,3],[3,2],[3,5],[6,11],[4,6],[6,4],[12,4],[24,14],[10,1],[38,17],[16,21],[59,36],[14,19],[18,13],[7,9],[16,23],[8,7],[45,3],[27,13],[60,13],[70,40],[14,15],[27,1],[11,5],[5,3],[33,11],[33,15],[53,13],[68,27],[54,9],[48,19],[4,4],[4,5],[5,5],[5,3],[4,1],[24,0],[7,3],[22,15],[61,15],[47,27],[17,7],[26,4],[49,-22],[40,-7],[19,-16],[48,-57],[11,-21],[5,-12],[2,-10],[-1,-10],[-12,-30],[-1,-5],[0,-7],[1,-5],[0,-5],[-1,-5],[-2,-5],[-6,-7],[-2,-5],[1,0],[-1,-8],[-1,-7],[-1,-1],[3,-9],[3,-6],[1,-6],[-1,-11],[-1,-3],[-3,-3],[-3,-4],[-1,-7],[1,-6],[1,-4],[4,-6],[13,-13],[6,-9],[-4,-9],[-11,-6],[-61,-4],[-3,-2],[-8,-14],[-15,-5],[-6,-6],[3,-11],[1,-5],[1,-11],[1,-4],[6,-5],[13,6],[5,-4],[-6,-1],[-12,-8],[-25,-10],[-6,-5],[-9,-10],[-4,-4],[-37,-10],[2,0],[4,-2],[3,-3],[6,-7],[-2,-10],[3,-2],[10,4],[29,-9],[13,0],[6,3],[5,17],[6,3],[12,2],[36,21],[67,15],[-4,-8],[12,-7],[15,2],[68,35],[14,2],[-14,-18],[-34,-20],[-15,-14],[6,-4],[8,0],[7,3],[6,5],[2,3],[1,4],[2,4],[2,1],[7,2],[30,13],[11,11],[0,15],[3,7],[2,3],[2,2],[-8,12],[-32,2],[-13,4],[0,10],[9,12],[25,25],[25,42],[55,48],[50,14],[20,-7],[23,0],[5,-2],[10,-8],[4,-2],[71,-14],[45,-27],[26,-7],[56,-3],[19,-10],[24,-6],[12,-9],[46,-15],[19,-12],[26,-2],[13,-7],[6,-7],[5,-7],[0,-2],[0,-7],[0,-3],[3,-1],[8,-1],[10,-4],[23,-2],[24,-8],[-1,-9],[-1,-4],[-1,-3],[5,-7],[1,-7],[-2,-8],[-8,-19],[-2,-8],[-2,-16],[-2,-5],[-6,-8],[-57,-32],[4,-3],[6,-1],[4,-2],[2,-6],[-3,-4],[-32,-26],[-81,-35],[-9,-8],[-5,-13],[4,0],[5,-2],[8,-8],[6,-3],[8,0],[13,5],[16,14],[8,2],[4,-11],[-4,-10],[-17,-13],[0,-8],[0,-10],[-6,-10],[-8,-10],[-4,-9],[4,-7],[5,-2],[5,3],[7,11],[1,5],[0,4],[1,4],[6,9],[5,14],[4,2],[9,-2],[4,0],[3,2],[8,8],[23,9],[17,13],[-5,5],[-7,-2],[-12,-6],[-14,-1],[-6,3],[-5,6],[-3,5],[-1,3],[2,3],[4,5],[4,4],[12,7],[15,3],[10,4],[9,9],[8,12],[9,9],[14,5],[15,0],[10,-4],[-2,-5],[-2,-3],[-5,-5],[-29,-11],[-7,-9],[5,-1],[13,1],[6,-4],[-21,-18],[-5,-10],[7,-4],[5,3],[4,7],[7,6],[4,0],[11,-2],[4,-2],[1,-4],[5,-10],[0,-2],[17,-1],[7,-4],[8,-8],[7,-11],[4,-6],[6,-3],[-1,17],[-6,12],[-6,12],[-4,12],[1,20],[9,8],[11,5],[9,12],[-6,8],[2,5],[7,4],[8,2],[42,-3],[-7,13],[-4,6],[-2,9],[30,27],[7,5],[7,0],[15,-12],[9,-3],[18,-1],[11,4],[2,-2],[-1,-6],[-2,-4],[-28,-15],[-3,-5],[2,-6],[7,-7],[7,-5],[5,-2],[4,-1],[16,-5],[7,-5],[11,-5],[7,-6],[8,-4],[8,5],[-50,27],[-13,14],[5,7],[8,5],[8,2],[6,-1],[2,1],[2,3],[4,9],[4,5],[4,1],[8,0],[7,-2],[11,-11],[13,-5],[21,-29],[15,-11],[7,-2],[1,-2],[6,-9],[2,0],[11,11],[2,0],[7,3],[32,-10],[8,-6],[8,-3],[7,3],[-6,9],[-51,23],[-5,4],[-10,9],[-61,28],[7,7],[10,1],[28,-7],[26,-22],[1,-1],[32,-18],[10,-1],[9,2],[8,7],[-3,4],[-8,13],[-3,3],[-5,1],[-5,3],[-10,8],[-6,10],[-3,10],[-4,9],[-13,12],[-16,14],[-11,7],[-10,-3],[-10,-6],[-13,-1],[-13,5],[-7,12],[27,3],[7,5],[-7,10],[-3,7],[2,6],[22,1],[21,-5],[11,-6],[36,-21],[10,-2],[5,0],[1,4],[-2,4],[-6,6],[-3,4],[5,7],[6,2],[12,0],[-7,8],[-31,2],[-11,4],[-12,8],[-3,0],[-13,5],[-15,0],[-12,-5],[-11,-7],[-11,-3],[-7,1],[-4,2],[1,4],[7,5],[10,3],[6,3],[3,6],[-1,8],[-7,4],[-2,6],[-7,9],[-70,9],[-13,6],[-11,11],[-11,20],[-6,8],[-14,8],[-10,10],[-8,12],[-2,11],[5,10],[9,5],[87,-4],[87,-4],[20,-7],[28,-8],[4,-4],[2,-5],[0,-5],[-1,-3],[1,-3],[8,-9],[8,1],[18,8],[20,-4],[18,-8],[-6,-10],[-23,-2],[-7,-9],[105,-65],[-3,-3],[-5,-9],[61,9],[6,-3],[9,-8],[4,-2],[-4,-2],[-4,-2],[-3,-2],[-3,-6],[30,-21],[31,-9],[1,-5],[-4,-4],[-21,-6],[3,-8],[-1,-6],[-4,-6],[-4,-4],[5,-7],[3,-1],[-2,-3],[-3,-7],[-1,-2],[7,-3],[24,6],[19,-5],[7,2],[-3,5],[-3,3],[-7,4],[6,7],[54,-17],[11,-7],[5,-10],[1,-11],[4,-8],[2,-8],[-1,-11],[-3,-4],[-4,-3],[-3,-4],[-2,-7],[0,-6],[-3,-12],[-2,-18],[-1,-9],[-1,-10],[1,-12],[4,-9],[10,-14],[5,-8],[15,-51],[1,-4],[-1,-16],[0,-6],[-1,-6],[6,-4],[9,-2],[7,3],[1,11],[4,1],[4,-2],[4,-3],[3,-4],[-2,-4],[-2,-3],[-3,-1],[-3,0],[0,-4],[7,-1],[2,-6],[1,-10],[2,-8],[-1,-11],[-1,-5],[2,-8],[-1,-11],[-5,-22],[18,2],[9,-2],[7,-8],[-9,-20],[-4,-4],[7,0],[17,17],[9,3],[9,-4],[0,-8],[-9,-22],[-7,-8],[-8,-5],[-5,-5],[4,-12],[3,-3],[4,-3],[2,-3],[0,-8],[-1,-6],[-10,-14],[6,-9],[7,-6],[9,-4],[7,-1],[2,-2],[1,-5],[0,-5],[-1,-4],[-4,-3],[-16,-6],[14,-10],[28,10],[14,-4],[8,-8],[7,-11],[4,-14],[-2,-15],[19,-2],[17,-13],[6,-1],[5,3],[3,0],[4,2],[7,-1],[7,2],[4,10],[-17,17],[-4,3],[-5,1],[-4,5],[-1,8],[1,10],[9,15],[13,-4],[13,-10],[11,-2],[10,12],[9,15],[10,13],[12,5],[75,13],[-8,8],[-9,5],[-18,3],[-6,3],[-12,14],[-9,5],[2,4],[7,6],[3,0],[24,-9],[10,2],[10,6],[6,10],[-6,4],[-17,4],[-17,8],[-6,0],[1,9],[0,10],[-3,10],[-5,3],[-11,3],[-23,11],[-11,3],[-4,4],[-5,11],[-4,13],[-2,8],[3,6],[7,2],[2,7],[-2,3],[-8,7],[-4,4],[3,0],[5,4],[-40,8],[2,8],[-1,5],[-2,5],[-1,4],[0,29],[-2,14],[-6,8],[-7,8],[-7,10],[1,6],[7,1],[8,-2],[10,-9],[6,-3],[7,3],[2,8],[-4,15],[-11,7],[-12,6],[-9,7],[9,4],[3,4],[0,8],[-4,5],[-9,4],[-4,5],[-2,14],[18,4],[6,13],[-15,1],[-15,5],[-13,9],[-12,17],[30,4],[-2,7],[-2,6],[1,7],[3,9],[-7,12],[-9,8],[-22,8],[3,6],[4,2],[4,1],[4,3],[-15,13],[-3,10],[5,13],[-3,6],[-6,7],[-3,6],[-7,9],[-2,6],[3,3],[4,7],[-3,14],[-9,24],[-8,12],[-3,6],[-1,10],[5,5],[5,3],[1,6],[-4,6],[-10,9],[-3,4],[-1,9],[2,7],[3,5],[4,3],[-9,13],[-16,17],[-2,5],[2,2],[10,-1],[5,1],[4,3],[-30,30],[-9,19],[11,25],[26,17],[27,1],[55,-10],[-10,13],[-41,15],[-5,4],[-9,9],[-4,6],[-1,3],[0,8],[0,3],[-2,2],[-5,3],[-3,3],[9,5],[31,-1],[-5,8],[-10,9],[-6,7],[21,0],[61,-16],[37,1],[39,-20],[18,-4],[33,-23],[12,-5],[7,-8],[11,-5],[16,-14],[27,-10],[10,0],[7,11],[-6,8],[-26,20],[9,9],[3,7],[-1,9],[7,1],[10,8],[6,3],[3,-1],[10,-4],[3,1],[9,8],[12,1],[14,-3],[13,-8],[9,-10],[11,-21],[8,-9],[31,-9],[6,4],[1,4],[0,3],[0,3],[3,0],[3,0],[3,-2],[3,-3],[3,-3],[2,-6],[0,-10],[2,-4],[3,-3],[10,-6],[5,-12],[6,-4],[12,-4],[16,-14],[4,-2],[2,-2],[4,-11],[3,-3],[15,-3],[37,-17],[11,-3],[13,2],[3,3],[3,3],[3,2],[8,-4],[14,1],[6,-5],[0,-12],[-1,-11],[4,-5],[5,-3],[13,-14],[41,-15],[-10,-8],[5,-6],[12,-7],[4,-4],[2,-4],[3,-5],[2,-4],[4,-3],[-2,-4],[-2,-3],[-2,-1],[-3,0],[0,-4],[8,0],[10,-3],[8,-6],[8,-7],[13,-21],[6,-4],[-2,-4],[-2,-3],[-5,-5],[13,-7],[6,-5],[4,-8],[-9,-5],[-5,-1],[-4,2],[-2,2],[-6,9],[-7,6],[-6,10],[-7,6],[-8,-5],[23,-28],[-3,-4],[-2,-3],[-1,-4],[-2,-6],[28,-17],[12,-4],[4,-3],[3,-4],[1,-6],[-2,-4],[-15,-10],[5,-7],[3,-7],[2,-10],[-2,-13],[19,-4],[5,-4],[-1,-2],[-3,-6],[2,-2],[3,-4],[1,-2],[-7,-10],[3,-6],[12,-4],[-3,-14],[-1,-4],[-4,-2],[-6,2],[-5,4],[-6,1],[-6,-3],[8,-10],[12,-24],[7,-11],[15,-15],[5,-7],[1,-5],[1,-9],[1,-5],[1,-4],[9,-16],[9,-10],[4,-6],[5,-15],[3,-7],[10,-5],[3,-7],[2,-9],[0,-10],[-5,-8],[-13,-9],[-4,-11],[5,-4],[3,-7],[0,-7],[-4,-7],[5,-2],[12,-2],[4,-4],[3,-5],[3,-13],[1,-2],[5,-4],[6,-10],[12,-33],[3,-8],[1,-10],[0,-14],[4,-18],[7,-10],[10,-5],[18,-4],[5,-3],[4,-7],[1,-5],[1,-7],[2,-6],[3,-2],[6,-3],[7,-8],[11,-18],[1,-5],[2,-10],[2,-5],[4,-6],[8,-7],[28,-44],[4,-13],[-1,-12],[-10,-28],[4,-10],[6,-7],[14,-7],[-6,-19],[-1,-9],[2,-11],[11,-14],[4,-10],[1,-8],[-7,-2],[-28,12],[-8,0],[-8,-4],[-6,-7],[-3,-13],[4,-16],[7,-14],[5,-16],[-6,-21],[-5,-9],[-18,-22],[-16,-7],[-7,-6],[-6,-11],[3,-4],[4,-6],[5,-12],[4,-6],[79,-59],[20,-5],[9,-6],[15,-16],[12,-17],[22,-68],[7,-13],[8,-7],[9,-1],[17,1],[5,-1],[4,-3],[19,-18],[7,-4],[10,-9],[6,-8],[9,-6],[4,-4],[13,-24],[8,-9],[9,-3],[64,-1],[10,-4],[7,-10],[5,-8],[13,-11],[12,-19],[48,-10],[11,3],[2,11],[-7,9],[-24,3],[-8,6],[-6,7],[-7,4],[-5,6],[-2,12],[-1,9],[-2,12],[-2,10],[-3,7],[8,13],[13,-3],[27,-16],[8,-9],[4,-9],[6,-4],[10,-4],[8,-6],[5,-9],[0,-13],[-4,-15],[1,-11],[36,-13],[6,-4],[12,-2],[10,-11],[17,-5],[20,-13],[22,-5],[44,-31],[16,-24],[2,-1],[4,0],[5,3],[4,4],[3,1],[5,-6],[4,-6],[4,-3],[10,-4],[26,-26],[9,-3],[18,-1],[9,6],[3,17],[6,3],[27,2],[8,-5],[4,-5],[5,-5],[6,-3],[4,-1],[3,-3],[-3,-7],[-9,-10],[-5,-11],[-1,-12],[3,-12],[4,-12],[11,-19],[8,-9],[7,-2],[3,1],[3,5],[2,2],[3,1],[19,-1],[6,4],[2,10],[5,15],[12,-3],[21,-18],[5,-2],[3,1],[5,5],[14,4],[4,4],[5,6],[2,8],[-2,6],[8,3],[10,-2],[11,-6],[7,-7],[5,-8],[1,-8],[-1,-9],[-4,-20],[-1,-6],[2,-6],[12,-21],[6,-15],[-2,-1],[-4,-3],[4,-10],[1,-5],[1,-6],[-2,-8],[-7,-7],[-1,-7],[1,-8],[1,-4],[3,-2],[5,0],[4,-2],[3,-4],[2,-5],[2,-5],[-1,-10],[5,-37]],[[29736,89991],[-7,15],[-9,11],[0,23],[12,29],[14,25],[10,11],[-2,0],[0,1],[0,2],[6,12],[10,39],[7,14],[18,15],[18,8],[54,4],[18,7],[17,12],[17,25],[3,4],[1,7],[0,5],[-2,12],[0,7],[4,14],[6,9],[15,9],[-34,18],[-15,15],[3,20],[-3,5],[-8,24],[-8,16],[-2,9],[0,11],[-20,16],[5,8],[15,10],[2,7],[-1,6],[-3,2],[-4,1],[-3,3],[-2,5],[-4,11],[-2,4],[4,12],[-4,7],[-8,5],[-19,1],[-1,2],[-1,4],[-1,5],[-2,3],[-9,5],[-5,8],[-3,10],[2,12],[5,5],[14,8],[1,6],[-1,7],[-1,6],[-2,6],[-3,5],[-4,5],[-4,3],[-4,1],[-4,2],[-4,4],[-7,10],[-6,7],[-1,4],[2,6],[-8,8],[-7,-4],[-7,-9],[-7,-4],[-5,6],[-9,21],[-7,6],[3,6],[7,10],[-6,1],[-7,-2],[-6,0],[2,9],[8,7],[1,1],[0,6],[0,5],[-1,5],[-1,4],[1,6],[2,5],[1,6],[-1,2],[-2,2],[-2,2],[-1,4],[1,2],[1,3],[0,2],[0,3],[-3,8],[-7,16],[-3,8],[-4,17],[-4,20],[0,10],[-1,21],[-1,6],[-3,4],[-3,1],[-4,-2],[-3,-3],[-1,-4],[2,-5],[1,-5],[-4,-6],[-6,3],[-6,9],[-7,6],[-7,-9],[-2,0],[-4,12],[-3,3],[-4,-2],[-3,-1],[-4,-1],[-3,4],[3,0],[3,2],[2,5],[1,7],[-2,5],[-4,2],[-4,0],[-3,1],[-4,3],[-9,3],[-4,0],[-3,-2],[-4,-4],[-3,-4],[1,-2],[3,-2],[-1,-4],[-4,-4],[-3,-2],[-3,-1],[-3,1],[-3,2],[-9,11],[-7,3],[-15,0],[5,6],[5,3],[5,2],[5,1],[1,2],[2,8],[0,2],[2,2],[8,2],[10,-2],[4,1],[6,5],[2,1],[2,2],[-1,6],[-2,5],[-4,3],[5,9],[8,4],[16,-1],[-12,9],[-7,3],[-10,0],[4,-7],[2,-1],[-5,-3],[-6,0],[-5,-3],[-2,-8],[2,-11],[-1,-5],[-4,-2],[-17,2],[-9,-1],[-5,-6],[1,0],[3,-4],[-19,-17],[-10,-6],[-11,-1],[0,-4],[2,-2],[1,-2],[3,-4],[-8,-4],[-2,2],[-2,2],[-1,3],[-1,1],[-13,8],[10,10],[3,2],[5,-1],[4,-2],[3,1],[4,6],[-16,4],[-17,0],[-7,2],[-29,18],[-4,3],[-6,16],[-5,8],[-6,6],[-11,8],[4,7],[6,5],[5,8],[4,22],[5,8],[6,5],[6,2],[15,1],[7,5],[2,12],[-3,4],[-21,14],[16,7],[4,4],[6,15],[1,1],[-4,6],[-9,0],[-16,-4],[0,4],[25,12],[7,8],[-18,4],[-6,0],[2,5],[3,3],[6,4],[-23,5],[-14,11],[-17,-5],[-9,1],[-2,5],[-2,5],[-3,4],[-8,-6],[-14,1],[-3,1],[-7,6],[-5,1],[-8,-4],[-5,0],[6,-13],[2,-3],[3,-3],[14,-2],[4,-2],[11,-14],[0,-1],[-1,-3],[1,-3],[4,-2],[1,-2],[3,-5],[-2,-2],[0,-2],[7,-3],[5,-7],[11,-18],[12,-9],[3,-4],[0,-5],[-1,-4],[-2,-2],[-4,-13],[-8,-9],[-13,-7],[-9,1],[-2,6],[3,7],[3,10],[-40,-4],[-14,-7],[-6,-1],[0,8],[-10,6],[-32,2],[-4,3],[-2,5],[-2,6],[-1,2],[-3,2],[-6,8],[-3,3],[-16,4],[-5,7],[-2,15],[-1,10],[-1,7],[-4,4],[-6,1],[-6,4],[-20,21],[-12,6],[-3,6],[0,12],[0,8],[1,3],[27,6],[7,4],[4,6],[8,14],[-6,10],[-11,5],[-12,0],[-9,-3],[1,-6],[1,-2],[-5,0],[-5,-1],[-5,-3],[-4,-5],[9,0],[8,2],[8,-1],[7,-9],[-4,-7],[-49,-9],[-3,2],[0,4],[0,4],[-2,2],[-14,0],[-18,9],[-7,0],[8,6],[21,2],[9,4],[-2,4],[18,9],[19,3],[6,3],[4,9],[1,10],[-6,6],[4,6],[1,2],[3,1],[-8,9],[-15,2],[-39,-15],[-41,-5],[6,5],[42,11],[7,4],[-13,4],[-30,-11],[-12,4],[51,20],[-20,-4],[-13,-7],[-7,-2],[-5,5],[3,7],[20,18],[4,2],[55,13],[-16,-11],[-5,-5],[5,0],[11,6],[6,2],[12,-1],[7,2],[4,7],[-3,11],[-4,4],[-12,1],[-5,3],[-15,14],[-8,3],[-5,-2],[-6,-3],[-11,-3],[-13,-8],[-3,-4],[-4,0],[-2,-3],[-5,-11],[-3,-3],[-11,-4],[-4,-3],[3,-8],[0,-6],[-4,-4],[-4,-2],[3,-12],[-4,-12],[-9,-15],[-3,-10],[-6,-2],[-14,2],[-4,2],[-11,15],[-15,8],[-19,22],[-4,2],[-5,5],[-8,14],[-4,5],[-6,4],[-7,0],[-6,-3],[-6,-5],[-11,-14],[2,-9],[18,-21],[-14,-17],[-16,-12],[-35,-14],[-21,-15],[-35,-7],[-6,-4],[-13,-18],[-6,-7],[-84,-46],[-59,-14],[-24,4],[-16,28],[3,22],[27,32],[10,19],[1,17],[-6,3],[-10,-1],[-9,7],[-5,12],[-3,9],[2,9],[5,13],[-3,7],[-1,11],[1,10],[4,4],[4,1],[13,8],[39,13],[73,-9],[8,-4],[13,-14],[7,-3],[19,1],[3,2],[5,5],[20,14],[18,6],[4,16],[8,3],[19,2],[18,-4],[8,2],[7,8],[0,4],[-2,12],[-1,4],[1,5],[7,4],[2,3],[-8,37],[1,6],[-2,4],[-24,30],[-17,11],[-16,13],[-19,10],[-9,1],[-2,2],[-8,9],[-2,3],[-3,3],[-25,6],[-32,18],[-14,2],[-39,-10],[-9,3],[-4,7],[-2,10],[-4,12],[-7,8],[-42,36],[-7,10],[-2,15],[5,12],[9,7],[9,6],[23,26],[5,2],[19,-9],[14,-2],[29,-14],[5,0],[0,4],[-5,7],[3,7],[10,11],[-50,2],[-7,3],[-4,7],[1,5],[-1,3],[-4,0],[-9,-5],[-38,1],[-10,-4],[-5,-8],[27,1],[3,-2],[4,-3],[-5,-12],[-5,-9],[-6,-5],[-9,-3],[-2,1],[-3,3],[-3,1],[-2,-3],[-1,-2],[1,-3],[1,-3],[-1,-4],[-11,-18],[-6,-4],[-36,7],[-13,8],[-1,4],[3,9],[3,4],[9,4],[3,4],[-7,-5],[-17,-1],[-13,-13],[-9,-2],[-8,2],[-7,3],[-2,5],[0,5],[-1,5],[-3,1],[-15,-4],[-6,2],[-19,10],[7,17],[12,7],[25,1],[3,2],[5,8],[3,2],[3,-1],[3,-6],[3,-1],[6,2],[9,10],[5,0],[-2,-6],[-3,-5],[-6,-9],[19,3],[11,5],[11,16],[0,2],[0,5],[1,5],[2,5],[-9,5],[-10,-3],[-9,1],[-5,13],[4,14],[11,4],[15,0],[10,6],[-5,11],[-8,-2],[-9,-5],[-10,-4],[-55,0],[0,4],[11,8],[5,5],[5,8],[-15,-2],[-8,-2],[-6,-5],[-9,-12],[-5,-4],[-13,9],[-27,2],[-5,3],[6,15],[48,24],[29,7],[10,13],[-25,-3],[-41,-18],[-6,-5],[-6,-3],[-13,0],[-5,-5],[-9,-6],[-38,-7],[-5,-10],[-34,-12],[8,-3],[4,0],[15,7],[5,0],[4,-4],[-4,-4],[5,-5],[11,-5],[5,-6],[-5,0],[-16,4],[0,-15],[-8,-11],[-10,-6],[-9,-1],[-7,9],[-3,13],[-3,15],[-6,12],[4,18],[-1,26],[-3,26],[-2,16],[-2,14],[2,14],[4,13],[2,13],[0,17],[-2,13],[-6,25],[4,17],[-6,11],[-10,8],[-9,11],[-5,9],[-2,1],[-2,-1],[-6,-3],[-6,1],[-8,9],[-4,2],[-11,-4],[-24,-17],[-10,-4],[-4,2],[-15,15],[-10,3],[-11,1],[0,-4],[5,-3],[8,-8],[4,-1],[1,-3],[-2,-5],[-2,-6],[-1,-3],[-18,2],[-7,5],[3,10],[-19,-5],[-3,-2],[-3,-8],[-3,-2],[-5,2],[-11,7],[-5,0],[1,1],[2,7],[-9,16],[-9,13],[-22,20],[3,1],[6,2],[3,0],[2,1],[3,6],[2,1],[12,-1],[6,1],[5,4],[-27,10],[-14,1],[-12,-7],[-2,-4],[2,-2],[6,-10],[-7,-2],[-22,23],[2,4],[4,8],[2,4],[-14,-1],[-4,2],[-12,27],[-2,8],[1,9],[-8,-1],[-16,-5],[-8,6],[-3,11],[-3,4],[-3,-1],[-1,-4],[-2,-10],[-1,-5],[4,-3],[2,-5],[2,-6],[3,-6],[-8,2],[-6,7],[-6,9],[-7,7],[-5,2],[-12,-2],[-2,1],[-11,11],[7,8],[-4,-1],[-4,1],[-4,3],[-3,5],[5,-1],[4,2],[5,3],[3,4],[-2,5],[-3,3],[-3,1],[-3,-1],[0,4],[43,1],[12,7],[-6,4],[-15,-2],[-4,2],[-1,-1],[-2,-1],[-2,1],[-2,1],[0,5],[11,2],[21,18],[11,0],[4,-4],[3,-5],[2,-5],[3,-6],[5,-6],[6,-2],[12,-1],[-13,8],[-6,7],[-4,20],[-5,8],[-6,7],[-5,3],[-2,-1],[-1,-3],[-2,-3],[-3,-1],[-14,0],[-6,2],[-6,5],[-4,7],[-3,10],[2,4],[-5,5],[-5,-1],[-25,-20],[-4,-6],[-3,-2],[-2,-1],[-1,-2],[1,-5],[8,-4],[29,10],[3,0],[2,-2],[0,-5],[-1,-2],[-2,-2],[-2,-1],[-3,-9],[-2,-4],[-3,-5],[-13,-13],[-4,-6],[-1,-3],[-2,-9],[-1,-2],[-4,-2],[-6,1],[-4,-3],[10,-4],[-1,-2],[-1,-2],[0,-2],[-2,-2],[2,-13],[1,-6],[-1,-5],[-3,-8],[-4,-4],[-4,-2],[-3,-5],[-4,-2],[-5,2],[-9,8],[-6,3],[-12,0],[-5,3],[3,4],[3,-1],[2,-3],[3,0],[4,4],[-1,3],[-1,3],[-2,5],[3,12],[6,7],[8,6],[6,9],[-1,2],[-2,4],[-1,2],[1,3],[1,5],[-6,0],[-17,-8],[3,-2],[2,-2],[3,-4],[2,-4],[-5,-6],[-3,-9],[-3,-9],[-7,-4],[-4,2],[-9,8],[-5,2],[-5,-3],[2,-6],[4,-7],[4,-4],[-5,-14],[-2,-1],[-6,2],[-12,9],[-7,3],[-9,-10],[-10,-5],[-4,-5],[-1,-10],[3,-7],[4,-5],[27,-12],[3,-4],[2,-6],[4,1],[4,4],[2,3],[11,4],[12,-3],[12,-8],[8,-10],[10,-10],[13,-6],[14,-1],[11,5],[1,14],[10,1],[21,-11],[7,-6],[6,-7],[16,-28],[28,-38],[3,-5],[1,-7],[0,-17],[0,-5],[2,-4],[3,-5],[1,-3],[0,-4],[-2,-9],[0,-6],[0,-2],[2,-3],[6,-7],[4,-3],[1,-3],[1,-2],[0,-2],[1,-2],[0,-2],[4,-9],[1,-5],[0,-9],[1,-13],[-1,-6],[-9,-21],[-5,-6],[-6,-4],[-6,-3],[-5,-1],[-2,-2],[-3,-11],[-1,-4],[-8,0],[-4,1],[-8,6],[-5,2],[-75,-3],[-76,-3],[-69,-21],[-9,8],[-4,6],[-8,5],[-4,4],[-4,6],[-3,15],[-3,7],[-3,6],[-5,5],[-5,4],[-4,2],[-4,2],[-3,6],[-3,4],[-5,-2],[-16,-17],[-9,-4],[-8,6],[-1,7],[-2,2],[2,7],[3,8],[-9,5],[-38,4],[-12,-2],[-5,-2],[-7,-8],[-2,-1],[-19,3],[-51,32],[-77,5],[-20,10],[-11,-1],[-8,-3],[-12,-2],[-10,4],[-4,15],[-3,2],[-18,-8],[-6,1],[-13,6],[-100,7],[-12,7],[-26,8],[-9,0],[-6,-2],[-2,-5],[2,-6],[5,-10],[14,-12],[31,-4],[12,-10],[20,-16],[2,-4],[1,-4],[1,-3],[4,-1],[9,4],[17,16],[8,-2],[32,-20],[8,-10],[2,-6],[3,-14],[2,-7],[4,-5],[11,-6],[9,-10],[19,-9],[44,-50],[13,-6],[3,-6],[-1,-8],[-2,-8],[-4,-5],[-11,-8],[-27,-11],[-6,0],[-4,2],[-1,4],[1,3],[4,3],[-36,19],[-11,14],[-10,17],[-5,5],[-14,3],[-14,7],[-7,5],[-11,13],[-4,3],[-6,3],[-18,17],[-13,7],[-18,1],[-7,3],[-4,6],[0,8],[7,8],[-9,4],[-35,-4],[-7,2],[-44,38],[-7,2],[-3,2],[-1,2],[-1,2],[-1,2],[-1,2],[-44,35],[-14,3],[-6,3],[-12,11],[-5,1],[-10,-3],[-5,0],[-8,10],[-6,3],[-24,5],[-7,4],[-5,3],[-6,3],[-13,-2],[-5,3],[-9,11],[-67,28],[-21,20],[-12,7],[-11,4],[-12,2],[51,-45],[6,-3],[2,-1],[1,-3],[3,-8],[2,-2],[6,-2],[14,3],[6,-1],[16,-10],[116,-46],[32,-26],[20,-6],[24,-29],[1,-3],[-1,-3],[1,-2],[3,-1],[4,0],[2,0],[11,-12],[5,-3],[28,-4],[11,-7],[7,-10],[-15,-16],[0,-4],[2,-2],[5,-6],[0,-5],[-5,-2],[-14,10],[-6,-3],[-7,0],[0,-5],[0,-8],[-30,-12],[-3,14],[-6,5],[-8,-2],[-6,-5],[-8,-14],[-2,-2],[-9,-2],[-4,-2],[-4,-4],[4,-1],[1,-3],[-2,-17],[-1,-2],[-33,12],[-13,-1],[0,4],[3,1],[3,1],[3,3],[3,3],[-5,3],[-5,1],[-5,-1],[-4,-3],[0,4],[9,3],[17,-5],[8,2],[-34,16],[-19,3],[-8,-9],[-5,-3],[-56,30],[-5,9],[-10,8],[-9,2],[-2,-7],[-11,3],[-19,14],[-18,6],[-25,21],[-2,1],[-3,-1],[-3,0],[-2,2],[-1,3],[-1,4],[0,3],[-2,1],[-24,-4],[-2,1],[-3,5],[-3,2],[-2,-1],[-17,-7],[-4,0],[-1,6],[-4,1],[-23,-19],[-38,-6],[-24,-12],[-28,-4],[-98,19],[-8,6],[-6,-1],[-81,0],[-46,14],[-45,-2],[-12,8],[-22,6],[-4,3],[-4,8],[-7,17],[16,6],[7,7],[0,8],[-6,3],[-8,-5],[-14,-17],[-17,-9],[-54,11],[-2,1],[-5,6],[-2,1],[-4,0],[-9,-4],[-13,1],[-19,9],[-8,0],[-21,-7],[-20,5],[-79,-3],[-15,-6],[-5,-11],[6,-13],[7,0],[9,6],[51,11],[20,-10],[14,-2],[23,-11],[16,-4],[31,-22],[-5,-4],[-94,17],[-39,-13],[-14,0],[-67,35],[-68,35],[-70,69],[-8,4],[-1,6],[0,15],[-1,17],[-5,10],[5,6],[1,9],[-3,7],[-7,2],[0,5],[4,4],[16,26],[6,7],[37,14],[10,6],[8,8],[2,10],[-6,8],[-8,8],[-8,4],[-6,-2],[11,-13],[4,-7],[-9,-8],[-5,-3],[-5,-1],[0,-3],[-1,-1],[-17,-8],[-9,-7],[-15,-5],[-7,-1],[-14,-20],[0,-2],[-1,-3],[-1,-2],[-7,-1],[-2,-5],[2,-9],[4,-11],[3,-8],[-61,0],[-7,6],[-4,14],[11,6],[23,4],[10,7],[-14,5],[-31,-6],[-10,13],[19,0],[-6,9],[-21,0],[-7,7],[5,4],[11,5],[4,4],[0,4],[-15,6],[-16,-3],[-29,-16],[1,-15],[-10,-7],[-22,-6],[2,-7],[4,-1],[7,4],[43,-2],[10,-6],[10,-12],[-2,-7],[-1,-6],[1,-6],[4,-2],[-2,-2],[-4,-10],[2,-1],[1,-2],[1,-1],[-8,-5],[-117,19],[-18,8],[-81,2],[-2,-2],[-2,-4],[-1,-4],[2,-1],[42,-8],[8,-5],[0,-4],[-43,-21],[-24,-6],[-22,7],[0,1],[1,2],[1,3],[1,2],[-5,2],[-25,16],[-33,3],[-13,10],[-13,5],[-6,4],[10,11],[3,2],[6,0],[0,-2],[0,-5],[0,-2],[8,-2],[23,2],[6,-2],[17,-18],[8,-2],[9,1],[17,9],[-7,6],[-15,4],[-51,36],[-54,18],[-19,15],[-4,-1],[-3,-3],[-4,-2],[-69,14],[-21,11],[-39,36],[-6,10],[-20,43],[0,5],[-1,5],[-1,6],[-4,4],[-11,8],[-2,3],[0,4],[-2,4],[-2,2],[-2,0],[-11,9],[-11,5],[-35,30],[-10,13],[-9,12],[-14,35],[-9,17],[6,9],[7,2],[7,0],[15,8],[32,2],[0,4],[-2,0],[0,4],[5,3],[2,1],[-4,7],[-6,5],[-29,12],[-38,31],[-6,2],[-5,3],[-9,13],[-5,4],[91,-9],[6,-7],[-2,-2],[-1,-3],[-1,-3],[13,-9],[6,-2],[7,-1],[58,12],[5,-1],[9,-5],[8,-3],[9,1],[16,6],[30,3],[6,-1],[13,-8],[32,-2],[13,-5],[11,-10],[2,-5],[1,-12],[2,-5],[3,-6],[5,-3],[120,-13],[22,10],[8,2],[17,-1],[4,3],[6,1],[17,-2],[11,-6],[16,5],[47,-4],[-5,0],[5,0],[4,5],[5,17],[6,9],[7,4],[15,1],[47,-12],[8,0],[7,4],[-13,8],[-78,17],[0,3],[0,3],[-2,2],[-2,-1],[-6,-3],[-1,0],[-6,2],[-3,4],[-3,5],[-3,5],[-22,4],[-3,2],[-7,7],[-31,14],[-8,1],[-3,4],[-16,8],[-25,27],[-3,5],[-1,5],[7,11],[1,6],[-2,5],[-4,2],[6,7],[2,1],[-13,11],[-16,-3],[-28,-20],[-12,-14],[-4,-2],[-7,2],[-21,10],[-92,10],[-29,-6],[-111,18],[-111,19],[-110,18],[-11,6],[-8,7],[-5,7],[-4,9],[-3,13],[-2,4],[-6,2],[-3,3],[-1,2],[0,4],[-4,12],[-2,3],[-4,3],[2,6],[1,1],[3,1],[-2,15],[-1,7],[-5,6],[10,1],[5,3],[-1,7],[-8,18],[-1,6],[-12,6],[-3,6],[2,5],[12,3],[2,4],[-1,4],[-3,4],[0,3],[7,14],[21,13],[8,13],[-2,4],[13,8],[4,6],[-4,6],[0,5],[3,0],[7,4],[0,4],[-9,1],[-8,5],[-15,14],[2,1],[7,7],[-5,4],[-11,-1],[-4,3],[-2,6],[1,5],[0,4],[0,3],[-3,4],[-10,5],[-2,6],[-1,7],[-3,2],[-4,1],[-18,13],[-4,7],[5,10],[3,2],[3,1],[6,-1],[1,1],[1,2],[0,3],[1,2],[10,13],[4,3],[-3,10],[-1,3],[4,4],[-2,4],[9,8],[-8,16],[2,4],[64,31],[7,2],[6,-3],[6,-5],[6,-1],[5,9],[-1,7],[16,7],[6,6],[-2,10],[-9,4],[-18,-2],[2,0],[-27,-12],[-6,1],[-11,9],[-19,6],[0,4],[1,9],[-1,4],[-3,8],[-4,6],[-10,10],[7,4],[1,3],[-5,22],[-1,3],[1,13],[4,8],[9,14],[4,4],[11,5],[4,5],[1,5],[0,1],[-2,0],[-16,7],[-4,5],[3,10],[1,-2],[3,-6],[2,-1],[9,-2],[17,0],[1,3],[-24,1],[-4,1],[-1,5],[0,5],[4,3],[16,3],[4,4],[3,5],[2,6],[2,14],[1,8],[0,4],[-3,6],[-1,7],[0,7],[1,7],[8,22],[5,6],[7,5],[8,2],[6,1],[13,-8],[7,-3],[6,5],[5,9],[0,5],[-4,8],[5,4],[15,-3],[6,3],[-8,10],[-19,9],[-5,14],[2,5],[2,7],[2,7],[3,5],[-5,12],[-2,4],[5,-2],[16,-2],[5,-2],[16,-10],[5,-1],[12,2],[6,-1],[9,-6],[5,-1],[5,3],[-2,3],[-2,9],[3,1],[3,2],[2,2],[3,3],[-6,1],[-17,7],[-11,1],[-6,3],[-5,7],[0,4],[1,4],[2,2],[2,4],[4,7],[0,1],[12,7],[4,6],[-3,7],[8,9],[2,6],[0,10],[-3,6],[-9,7],[-4,5],[-2,8],[2,7],[4,7],[4,4],[7,4],[6,3],[7,0],[7,-2],[-1,-3],[-1,-1],[-2,-1],[5,-1],[3,2],[-1,4],[-5,5],[-21,11],[2,0],[-2,3],[3,6],[7,6],[3,5],[2,4],[2,11],[2,5],[7,10],[8,5],[18,5],[-4,0],[-12,4],[2,7],[4,7],[4,5],[9,3],[2,3],[1,4],[3,4],[14,5],[29,-6],[14,5],[-6,5],[-14,-2],[-6,2],[-15,9],[-5,6],[25,23],[13,7],[15,3],[3,-2],[5,-5],[3,-1],[20,0],[28,-7],[8,3],[-8,6],[-51,16],[-7,6],[4,8],[17,11],[6,7],[10,15],[10,12],[28,18],[19,4],[6,4],[3,4],[0,4],[2,5],[2,4],[5,4],[11,14],[117,77],[39,16],[25,20],[49,12],[42,17],[38,3],[46,19],[71,9],[45,17],[44,5],[51,-5],[99,5],[75,-14],[132,-8],[9,5],[6,-4],[31,-5],[62,-38],[13,-1],[-4,-4],[-7,-17],[-3,-3],[-7,-6],[-11,-16],[-72,-42],[-73,-42],[-22,-4],[-7,-4],[-24,-33],[-21,-8],[-81,-84],[-27,-41],[-25,-50],[-8,-11],[-12,-8],[-1,-7],[2,-7],[1,-3],[-2,-6],[-3,-4],[-8,-6],[0,-9],[-15,-15],[-6,-9],[-18,-27],[-39,-39],[-17,-27],[-6,-13],[-1,-6],[-3,-27],[-1,-5],[-5,-11],[-2,-7],[1,-8],[15,-20],[-7,-9],[7,-13],[98,-85],[17,-22],[7,-26],[-4,-16],[-7,-10],[-8,-7],[-7,-9],[-6,-10],[-13,-17],[-6,-10],[-2,-7],[-1,-5],[-1,-14],[-6,-24],[1,-7],[5,-9],[1,-5],[-3,-24],[2,-9],[1,-8],[0,-16],[1,-8],[3,-16],[0,-6],[3,-9],[8,-5],[8,-2],[5,-5],[1,-6],[0,-7],[1,-8],[5,-9],[15,-18],[4,-7],[14,-31],[17,-28],[5,-6],[6,-3],[13,-3],[4,-5],[5,-8],[13,-7],[6,-8],[4,-8],[22,-25],[7,-5],[8,-3],[7,-1],[3,-2],[9,-8],[0,-8],[0,-4],[1,-3],[13,-13],[28,-15],[13,-12],[3,-6],[3,-7],[3,-5],[4,-3],[15,4],[3,-1],[1,-4],[-1,-4],[1,-3],[6,-5],[5,0],[12,1],[3,-2],[5,-8],[4,-2],[11,0],[6,-1],[5,-3],[1,-2],[0,-2],[0,-2],[1,-2],[4,-3],[45,-2],[18,-7],[3,-3],[4,-6],[3,-6],[1,-8],[-1,-6],[-5,-7],[-1,-7],[0,-7],[2,-1],[4,1],[5,1],[5,-2],[4,-4],[5,-12],[5,-17],[-6,-7],[-93,14],[-23,-8],[6,-9],[7,0],[16,4],[0,-4],[-9,-3],[-17,-10],[-9,-3],[-33,6],[-10,-6],[-5,-8],[5,-1],[10,1],[6,-2],[1,-11],[-4,-6],[-6,-2],[-2,5],[-6,5],[-4,-1],[-4,-5],[-4,-9],[-5,-4],[-7,1],[-44,17],[-7,-1],[-19,-11],[-12,0],[-12,-7],[-9,3],[-9,-1],[-8,-3],[-4,-7],[-8,-11],[-41,-23],[-14,-4],[1,-3],[1,-7],[0,-3],[-28,-13],[-10,-2],[-11,1],[-4,-1],[-1,-2],[-3,-5],[-2,-2],[-21,0],[-85,-22],[-4,-6],[-2,0],[45,-8],[105,18],[8,5],[9,3],[7,8],[9,4],[12,9],[66,29],[18,22],[14,4],[62,4],[5,2],[7,7],[5,3],[81,-13],[-1,-2],[0,-1],[-1,-1],[5,-4],[4,2],[3,4],[3,2],[16,0],[-6,7],[-3,4],[-1,6],[31,-12],[7,3],[-7,7],[-4,2],[-4,0],[0,4],[19,4],[6,-2],[7,-10],[4,-1],[4,3],[3,-1],[5,-4],[3,-7],[2,-5],[-1,-6],[-3,-11],[-2,-5],[-1,-21],[0,-3],[-5,1],[-18,17],[-6,3],[-46,-9],[0,-4],[52,-5],[-2,-7],[-2,-6],[-3,-2],[-3,4],[-2,-2],[-2,-2],[1,-6],[-1,-6],[10,-1],[8,-7],[4,-11],[-2,-14],[-4,-5],[-4,-4],[-3,-6],[-1,-9],[4,-7],[6,-1],[11,3],[29,0],[1,3],[1,7],[2,8],[2,3],[5,2],[2,6],[0,14],[-2,7],[-5,4],[-2,3],[3,8],[-10,11],[-3,6],[-2,12],[1,8],[5,17],[1,7],[1,20],[1,6],[4,7],[8,5],[17,5],[8,6],[-26,21],[-11,17],[2,19],[9,29],[5,7],[-6,16],[6,10],[11,5],[30,4],[12,6],[6,14],[-2,12],[-6,25],[-2,12],[-4,4],[-10,4],[-9,9],[-3,17],[3,6],[12,15],[-5,10],[-3,4],[-4,2],[-19,4],[-44,-4],[2,-5],[1,-4],[2,-2],[3,-1],[-3,-9],[-4,-4],[-6,0],[-102,21],[-19,10],[-36,43],[-20,8],[2,4],[-5,3],[-8,1],[-4,4],[36,6],[3,2],[1,5],[-3,9],[-4,6],[-8,7],[-16,21],[-4,4],[2,5],[-5,3],[-21,8],[-27,17],[-76,21],[-6,6],[-2,7],[0,5],[1,2],[4,-1],[2,-1],[1,-4],[2,-6],[5,-5],[5,-3],[5,-1],[-2,7],[-4,5],[-2,1],[1,7],[0,3],[-1,6],[5,-1],[5,-1],[4,-1],[5,3],[-2,0],[15,0],[42,-12],[-4,6],[-10,3],[-3,7],[12,8],[35,4],[12,-1],[4,2],[13,10],[3,1],[1,4],[-4,8],[-9,13],[0,4],[21,0],[9,5],[5,1],[5,-2],[-4,9],[-9,8],[-9,6],[-9,1],[3,13],[-1,10],[-3,8],[-8,5],[8,2],[17,-11],[9,-2],[-4,10],[-5,6],[-7,3],[-7,1],[7,9],[11,-1],[21,-8],[5,0],[13,8],[6,-1],[10,-4],[5,1],[-5,-4],[2,-8],[4,-1],[5,2],[4,3],[0,4],[-2,0],[3,5],[6,1],[13,-2],[4,-2],[2,-4],[-1,-4],[-4,-3],[0,-3],[11,0],[4,4],[0,8],[6,2],[5,-2],[5,-3],[12,-3],[12,-9],[6,-2],[4,0],[4,-2],[4,-4],[1,-8],[2,-3],[43,-29],[21,-4],[8,-6],[5,-2],[10,-2],[4,-2],[12,-13],[3,-2],[2,-2],[6,-12],[2,-4],[4,-2],[11,0],[3,-1],[4,-6],[6,-3],[9,-8],[4,-2],[4,-6],[3,-13],[2,-15],[2,-9],[7,-8],[6,0],[4,7],[-2,15],[2,1],[1,1],[1,1],[1,1],[-2,4],[-4,10],[-3,3],[8,8],[-5,2],[-18,16],[-19,6],[-5,3],[-3,4],[-12,20],[-3,4],[-4,2],[5,3],[5,5],[-30,4],[-30,12],[-5,4],[-38,37],[10,-1],[6,1],[5,3],[-5,5],[-6,1],[-12,-1],[-5,1],[-12,11],[-27,9],[-7,7],[3,4],[11,7],[3,3],[1,4],[16,21],[9,3],[59,-5],[11,2],[27,14],[-6,3],[-22,-11],[-81,7],[-11,-7],[-2,3],[-1,5],[0,12],[6,2],[8,1],[6,2],[4,7],[-4,0],[8,15],[2,8],[-3,1],[-14,-10],[-17,-5],[-36,-21],[1,-3],[1,-10],[1,-3],[-19,1],[-5,-3],[-7,-9],[-3,-1],[-4,4],[1,6],[2,4],[2,2],[3,0],[0,4],[-63,15],[-30,22],[-17,8],[-9,12],[-2,4],[-2,8],[-3,8],[-4,4],[-2,1],[-3,4],[-3,4],[-1,3],[1,6],[3,2],[30,4],[6,5],[0,3],[-29,2],[-15,7],[-20,24],[-1,2],[1,5],[2,7],[1,4],[1,16],[0,7],[-3,8],[2,0],[-2,3],[-4,9],[3,5],[1,5],[1,5],[-1,5],[2,0],[0,8],[2,8],[3,8],[3,9],[-3,9],[2,6],[3,5],[1,6],[-2,8],[-3,3],[-3,2],[3,9],[4,5],[12,12],[3,6],[3,9],[6,6],[8,2],[62,-8],[44,-8],[67,-30],[128,-34],[24,-17],[18,-5],[14,-9],[35,-6],[39,-17],[10,5],[-34,18],[-45,8],[-106,61],[-27,4],[-55,30],[-8,1],[-40,12],[1,1],[6,3],[-5,15],[-10,10],[-11,1],[-8,-9],[4,-5],[-101,9],[2,9],[18,42],[6,10],[7,7],[6,-1],[5,-4],[2,-4],[6,-13],[4,-6],[35,-21],[23,-4],[-7,12],[-18,23],[-3,12],[14,11],[40,-8],[42,-20],[41,-9],[76,-15],[73,-9],[54,-5],[39,-1],[43,-24],[14,-2],[5,-5],[-7,11],[-33,18],[2,4],[-6,4],[-34,10],[-68,4],[-22,11],[-69,16],[-22,-1],[-125,53],[-26,0],[-12,3],[-10,13],[5,6],[4,8],[3,9],[1,12],[3,12],[6,7],[77,40],[11,1],[10,-5],[7,-7],[14,-26],[7,-10],[8,-6],[8,-3],[9,-1],[15,-9],[17,-18],[16,-14],[15,4],[-11,16],[-53,38],[-7,8],[0,9],[0,8],[-5,7],[-7,6],[-4,5],[15,12],[100,35],[17,2],[111,-24],[6,-5],[7,-8],[4,-8],[-5,-4],[6,-16],[5,-14],[6,-13],[9,-10],[6,-3],[5,1],[3,5],[0,10],[-5,10],[-5,5],[-3,5],[-1,12],[2,10],[2,7],[0,8],[-3,10],[-7,9],[-95,29],[7,11],[95,43],[26,2],[53,26],[54,14],[9,0],[20,-10],[8,6],[7,11],[30,17],[8,12],[3,3],[7,3],[108,-4],[109,4],[48,-9],[97,-4],[15,-6],[6,-11],[0,-12],[1,-4],[3,-6],[4,-7],[4,-4],[18,-12],[24,-26],[3,-5],[5,-11],[4,-13],[1,-14],[0,-3],[2,-2],[1,-1],[1,-2],[0,-2],[-2,-7],[0,-1],[3,-17],[2,-5],[1,-7],[0,-27],[-1,-9],[-6,-14],[-2,-2],[-1,-3],[0,-17],[9,-17],[15,-10],[136,-46],[6,-6],[13,-21],[7,-18],[-6,-15],[-7,-13],[4,-12],[-5,-8],[-12,-10],[-4,-11],[3,-4],[2,-5],[1,-7],[-1,-6],[0,-7],[4,-6],[8,-6],[9,-10],[9,-21],[7,-9],[13,-8],[26,-5],[12,-8],[4,-4],[8,-16],[2,-6],[1,-7],[2,-5],[4,-2],[-6,-7],[-9,-6],[-18,-3],[-3,-2],[-9,-11],[-12,-7],[-3,-3],[-4,-7],[-5,-7],[-6,-6],[-5,-2],[-7,-4],[2,-10],[7,-19],[-64,-32],[-40,-36],[-14,-4],[-9,-8],[-18,-34],[-11,-7],[-1,-2],[-3,-8],[-4,-5],[-4,-1],[-5,0],[-4,-1],[-4,-3],[-3,-5],[0,-7],[1,-9],[-5,-8],[-7,-4],[-16,-4],[-27,-20],[20,0],[20,10],[98,103],[6,4],[13,0],[6,3],[15,12],[52,28],[5,0],[5,-3],[4,-7],[1,-5],[1,-13],[1,-4],[0,-6],[-2,-7],[-6,-12],[-1,-5],[1,-6],[2,-6],[1,-5],[-18,-4],[-17,-10],[-31,-29],[-23,-29],[-6,-17],[6,-13],[-9,-6],[-29,3],[59,-37],[6,0],[6,-3],[10,-9],[17,-7],[13,-11],[1,-5],[-4,-8],[-6,-3],[-23,7],[-20,17],[-75,-7],[3,-1],[3,-3],[2,-3],[2,-5],[-6,-4],[-21,-8],[10,-7],[14,-2],[13,0],[32,10],[9,-4],[2,-17],[-1,-2],[-3,0],[-3,-2],[-1,-6],[1,-4],[1,-6],[0,-3],[0,-7],[-1,-6],[-5,-11],[-9,-9],[-24,-9],[-6,-12],[42,12],[19,17],[2,27],[26,14],[27,4],[6,3],[8,7],[16,3],[17,9],[12,14],[-3,22],[-6,7],[-15,10],[-7,9],[-5,15],[3,7],[6,2],[9,0],[4,-2],[7,-8],[4,-2],[4,1],[3,2],[7,5],[2,4],[1,4],[2,3],[3,1],[4,-1],[3,-2],[3,0],[3,3],[-9,13],[-10,16],[7,18],[10,7],[12,-3],[11,-8],[26,-41],[11,-7],[5,-8],[2,-3],[3,-1],[7,-3],[9,-6],[72,-22],[-5,11],[-10,6],[-30,6],[-25,17],[-29,30],[-3,5],[-6,14],[-25,19],[-4,9],[3,8],[31,35],[34,7],[14,11],[4,11],[0,9],[-2,8],[0,9],[5,7],[9,2],[8,-2],[7,-3],[-4,-7],[-2,-1],[3,-4],[4,-1],[3,2],[2,5],[3,1],[4,-3],[4,-4],[3,-4],[-5,-8],[-9,-6],[-7,-7],[-1,-12],[5,-8],[27,-16],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[6,-1],[5,-3],[5,-5],[5,-3],[-4,-6],[-4,-13],[-3,-5],[-6,-7],[-23,-13],[-5,-5],[-5,-6],[-1,-7],[3,-8],[7,-3],[8,0],[5,3],[-4,8],[4,5],[13,8],[7,7],[5,3],[5,2],[12,-2],[6,-3],[4,-5],[1,-5],[2,-11],[1,-4],[5,-15],[3,-5],[4,1],[1,5],[-1,7],[-1,7],[-2,4],[-2,4],[-4,13],[-2,5],[-4,3],[-8,5],[-3,4],[9,4],[6,1],[0,2],[-1,2],[1,3],[0,2],[1,4],[1,2],[2,2],[6,2],[8,9],[10,6],[7,9],[-1,13],[10,4],[14,-4],[43,-31],[10,-11],[13,-21],[5,-3],[15,1],[4,-1],[2,-5],[-3,-8],[-3,-4],[-2,-3],[-2,-3],[1,-8],[1,-6],[10,-15],[-11,-15],[-6,-9],[-2,-10],[-1,-9],[-4,-22],[-3,-8],[-5,-6],[-16,-16],[-7,-17],[-19,-10],[-6,-8],[16,-11],[6,-1],[6,2],[11,8],[7,2],[96,-31],[36,-32],[13,-5],[11,8],[-6,6],[-12,5],[-6,7],[-2,4],[0,3],[1,4],[0,5],[-2,6],[-5,3],[-39,7],[-16,8],[-12,10],[-10,8],[-5,6],[0,11],[2,6],[2,3],[3,2],[2,5],[1,5],[1,5],[0,5],[0,5],[1,3],[2,3],[1,2],[-4,14],[-1,12],[0,5],[1,6],[5,3],[7,-1],[91,-42],[10,-14],[8,-19],[14,-45],[1,-17],[49,-69],[24,-7],[21,-15],[26,-8],[12,-1],[0,4],[-9,2],[-18,12],[-16,4],[-30,25],[-15,24],[-6,6],[-14,9],[-4,7],[1,12],[8,5],[29,9],[6,0],[5,-4],[0,-2],[0,-4],[0,-4],[1,-4],[11,-11],[16,-12],[13,-14],[3,-19],[13,-14],[31,-12],[14,-15],[4,-13],[2,-3],[2,18],[3,8],[4,7],[5,3],[-4,4],[-6,1],[-10,-1],[-5,2],[-8,5],[-12,3],[-8,5],[-8,6],[-7,8],[-21,30],[-20,14],[-5,8],[3,7],[-8,5],[-17,4],[-20,-4],[-10,0],[-9,8],[-3,9],[-4,28],[-3,9],[-3,10],[-4,8],[-4,6],[-7,7],[-9,5],[-27,6],[-17,12],[-18,4],[-46,31],[-7,8],[20,11],[10,9],[4,12],[-2,8],[-5,3],[-6,2],[-4,3],[-1,6],[1,6],[3,3],[4,2],[14,-5],[6,0],[23,13],[8,2],[10,-1],[9,-6],[7,-12],[-3,-1],[-2,-3],[-3,-8],[4,-9],[-1,-6],[-1,-7],[0,-10],[4,-10],[5,-4],[6,-2],[6,-4],[0,-14],[8,-9],[9,-1],[1,5],[-2,3],[-4,4],[-2,4],[0,1],[1,3],[1,4],[0,3],[-4,5],[-13,8],[5,23],[0,8],[-4,13],[17,6],[108,-29],[4,-6],[-5,-11],[22,7],[9,1],[36,-12],[26,-17],[10,-13],[-4,-15],[4,-5],[4,-3],[4,-4],[1,-6],[-1,-5],[-7,-10],[-3,-3],[0,-4],[6,1],[6,6],[5,7],[4,10],[-5,8],[-3,5],[-2,7],[9,5],[81,3],[11,-3],[22,-14],[51,-15],[-38,22],[-39,14],[-76,2],[-22,17],[-17,5],[-39,25],[-32,8],[-16,11],[-63,16],[-85,52],[-6,12],[1,12],[2,12],[-4,15],[6,2],[22,24],[2,4],[0,10],[2,5],[4,4],[5,0],[5,-1],[5,1],[52,35],[45,13],[3,2],[7,9],[3,3],[50,3],[21,14],[19,6],[15,11],[99,-4],[99,-4],[29,-8],[26,-19],[4,-5],[3,-6],[2,-7],[-1,-5],[-6,-2],[8,-10],[127,-23],[8,-5],[4,-7],[0,-7],[-2,-7],[-2,-5],[0,-5],[2,-6],[9,-22],[7,-7],[6,0],[12,7],[-1,5],[-8,28],[0,5],[9,4],[9,11],[4,4],[14,3],[57,-6],[26,-11],[21,-4],[6,-3],[20,-13],[76,-19],[2,-3],[0,-7],[-1,-8],[0,-6],[1,-1],[7,-12],[3,-9],[1,-3],[23,-34],[3,-12],[5,-9],[21,-27],[7,-11],[-16,-14],[-6,-9],[-2,-1],[-1,-1],[0,-3],[0,-2],[0,-2],[-9,-10],[-51,-35],[-10,-2],[-54,13],[-45,-1],[-108,-33],[-11,-8],[-5,-12],[-3,-12],[-7,-15],[-9,-12],[-6,-8],[-30,-18],[-9,-12],[-12,-22],[-12,-10],[-4,-6],[9,-6],[7,3],[7,8],[14,25],[8,11],[18,15],[20,11],[9,9],[7,13],[7,19],[3,5],[5,4],[97,39],[40,0],[75,-24],[6,-9],[-7,-11],[-14,-6],[-67,-12],[-13,-9],[-6,-9],[-5,-10],[-2,-13],[-1,-15],[-1,-9],[-3,-4],[-4,-2],[-3,-4],[-3,-5],[-2,-9],[-3,-5],[3,-11],[-4,-8],[-12,-14],[-4,-6],[-11,-22],[-19,-19],[-42,-5],[-21,-9],[0,-4],[11,1],[18,7],[18,-4],[18,3],[9,4],[8,7],[5,8],[20,33],[12,13],[5,9],[1,6],[1,10],[1,5],[2,5],[12,17],[5,8],[2,10],[-2,10],[0,9],[6,9],[14,12],[11,4],[38,-3],[9,0],[14,4],[13,7],[9,11],[2,5],[3,14],[2,5],[3,5],[6,8],[3,4],[9,10],[12,3],[12,-1],[23,-12],[80,-7],[80,-6],[11,-5],[7,0],[3,-1],[1,-2],[3,-7],[2,-3],[13,-16],[10,-23],[5,-15],[-1,-7],[-20,-16],[-4,-8],[1,-3],[3,-3],[4,-7],[1,-4],[1,-6],[0,-7],[-6,-5],[-6,-11],[-10,-9],[-3,-2],[-15,0],[-27,-8],[-15,2],[-6,2],[-8,4],[-1,2],[-1,3],[-2,2],[-3,1],[-2,0],[-5,-3],[-2,-1],[1,-5],[4,-6],[2,-5],[-6,-4],[-15,-5],[-7,-5],[-4,-6],[-7,-11],[-5,-4],[-9,-4],[-19,1],[-10,-3],[-16,-10],[-6,-2],[-35,8],[-83,-13],[-8,-5],[-4,-10],[86,16],[21,-2],[11,-5],[8,-9],[0,-8],[-5,-6],[-59,-30],[-26,-23],[-42,-22],[6,-4],[23,16],[30,5],[44,31],[33,8],[8,3],[4,4],[2,4],[5,12],[4,4],[12,11],[23,10],[6,1],[4,-2],[5,-5],[4,-7],[2,-6],[2,-5],[0,-3],[-8,-18],[-4,-9],[-4,-4],[-8,-7],[-3,-5],[-4,-3],[-12,-4],[-2,-5],[-3,-5],[-7,-3],[-52,-4],[-10,-8],[-7,-9],[-15,-12],[-5,-14],[7,1],[6,7],[5,9],[6,7],[11,6],[51,2],[6,-6],[-1,-14],[-5,-7],[-17,-11],[-7,-2],[33,-2],[18,-7],[8,-13],[2,-9],[1,-5],[0,-5],[-4,-6],[-4,-2],[-8,-3],[-4,-1],[-2,-1],[-2,-4],[-1,-5],[-1,-4],[-10,-13],[-7,-7],[-4,-2],[-4,-4],[-8,-17],[-5,-4],[-4,-1],[-8,-6],[-6,-6],[-1,-2],[-1,-3],[-1,-4],[-6,-7],[-12,-6],[-6,-5],[6,-7],[9,2],[42,35],[10,12],[9,15],[20,18],[9,13],[14,12],[11,15],[0,17],[-9,13],[-11,10],[-8,12],[-3,21],[4,18],[9,5],[12,1],[9,3],[5,7],[18,44],[1,6],[3,4],[5,4],[24,1],[28,23],[6,11],[4,4],[40,5],[3,0],[2,-1],[3,-2],[2,-3],[0,-3],[-1,-3],[-1,-2],[-1,-4],[-2,-15],[-6,-10],[-8,-8],[-17,-12],[-4,-7],[-1,-10],[0,-15],[4,-10],[8,-9],[10,-5],[7,-2],[-15,30],[-5,19],[8,8],[12,3],[9,7],[7,13],[6,17],[19,31],[25,12],[52,2],[5,-3],[4,-9],[2,-10],[-2,-7],[0,-4],[2,0],[6,21],[10,8],[7,-5],[-3,-18],[-5,-8],[-6,-6],[-34,-26],[-6,-2],[-3,-2],[0,-5],[1,-5],[1,-4],[-3,-4],[-3,-2],[-17,-5],[-2,-4],[-1,-7],[-3,-11],[-4,-5],[-12,-8],[-5,-7],[-2,-9],[-2,-9],[-3,-8],[-4,-7],[2,-3],[2,-3],[3,-1],[2,-1],[-4,-9],[-7,0],[-15,5],[-7,-2],[-16,-9],[-8,-1],[-1,-4],[-19,-7],[-16,-9],[7,-4],[11,4],[20,12],[42,4],[0,-4],[-5,-6],[-4,-7],[-2,-10],[1,-10],[-1,-10],[1,-9],[-2,-6],[-13,-4],[-17,-11],[0,-4],[14,1],[8,-1],[3,-6],[-2,-8],[-3,-5],[-5,-3],[-8,-14],[-17,-16],[-7,-5],[0,-4],[15,10],[51,63],[2,4],[1,6],[-3,10],[-1,6],[15,37],[4,3],[5,2],[3,2],[3,7],[0,5],[0,5],[-1,6],[2,6],[6,9],[2,6],[0,6],[0,4],[5,4],[9,6],[16,16],[9,6],[11,2],[10,-1],[8,-5],[16,-14],[-4,-9],[-6,-7],[-5,-9],[2,-18],[-3,-10],[-9,-16],[6,-4],[8,-17],[5,-3],[0,-4],[-15,-21],[9,2],[15,8],[8,2],[2,3],[2,18],[2,8],[5,4],[7,4],[6,1],[3,-3],[2,-11],[3,-7],[5,-6],[4,-7],[-12,-6],[-7,-1],[-6,-1],[-4,0],[-3,-1],[-3,-3],[-1,-4],[0,-3],[1,-4],[-1,-3],[-4,-7],[-14,-9],[-17,-18],[-8,-11],[-7,-14],[2,-3],[0,-4],[-1,-4],[-1,-5],[2,-4],[-2,-5],[-5,-9],[-3,-7],[0,-7],[1,-16],[-1,-9],[-9,-18],[-30,-8],[-12,-10],[5,-4],[4,2],[4,4],[4,2],[21,2],[10,3],[9,7],[8,12],[0,14],[-1,14],[3,17],[1,4],[5,10],[1,4],[2,8],[1,4],[4,5],[16,17],[2,5],[1,4],[2,3],[9,2],[9,4],[4,3],[4,5],[3,5],[0,6],[-4,8],[35,-4],[17,-6],[22,-13],[2,-2],[0,-5],[2,-3],[12,4],[10,-5],[5,-4],[4,-7],[-49,-14],[-14,-14],[4,-7],[4,-10],[2,-12],[0,-12],[-8,-16],[-6,-16],[-10,-10],[-28,-17],[-7,-13],[5,-4],[14,-21],[2,-4],[2,11],[-9,14],[1,12],[7,7],[24,8],[5,11],[2,9],[6,8],[11,13],[5,9],[4,9],[-1,4],[-3,11],[-1,6],[5,13],[11,3],[21,-2],[6,2],[6,5],[4,7],[4,10],[3,10],[2,10],[1,9],[0,10],[-1,13],[-3,10],[-3,8],[-3,11],[17,7],[34,0],[16,10],[-4,15],[-2,6],[-4,3],[-3,2],[-5,5],[-3,6],[-2,7],[4,3],[15,2],[36,16],[6,16],[1,9],[1,13],[1,7],[2,9],[3,8],[1,3],[10,6],[11,-4],[10,-7],[77,-21],[77,-22],[38,-23],[56,-12],[10,-6],[5,-9],[4,-1],[26,-19],[-2,-9],[-2,-3],[13,-13],[28,-17],[39,-54],[8,-14],[-10,-16],[-24,-17],[-15,-18],[-10,-6],[-4,-4],[-11,-20],[-11,-24],[-6,-12],[-7,-4],[-42,4],[-25,14],[-42,10],[-8,-1],[-28,-13],[-15,-3],[-7,-4],[-8,-6],[-3,-6],[-2,-5],[1,-5],[3,-6],[1,-6],[-2,-2],[-3,-2],[-4,-4],[-11,-21],[-3,-3],[-24,-6],[-8,-5],[-7,-12],[3,-10],[-2,-8],[-5,-7],[-5,-4],[-109,-30],[-8,-6],[83,12],[48,21],[8,-1],[12,-9],[13,-5],[4,-2],[2,-3],[0,-6],[-1,-2],[-2,-1],[-2,-2],[-4,-6],[-21,-21],[-12,-9],[-6,-2],[2,-8],[2,-4],[2,-4],[-14,-24],[-5,-5],[-29,-18],[-26,-3],[-12,-7],[5,-3],[4,1],[5,2],[5,0],[-1,-3],[-3,-9],[6,0],[5,2],[5,5],[4,7],[6,6],[24,4],[9,5],[9,7],[7,9],[7,12],[12,23],[6,10],[72,15],[36,22],[26,6],[38,21],[75,8],[6,-1],[24,-18],[5,-1],[6,2],[-2,6],[-20,20],[-5,3],[-5,1],[2,9],[2,6],[8,8],[3,5],[2,5],[1,5],[1,7],[5,14],[7,11],[8,7],[46,20],[34,22],[21,4],[20,-7],[21,-15],[5,-5],[9,-21],[2,-5],[1,-14],[1,-5],[12,-20],[4,-13],[-2,-14],[-6,-10],[-47,-34],[-3,-6],[-4,-12],[-2,-6],[-1,-26],[-16,-18],[-72,-29],[-10,-9],[-5,-11],[-3,-12],[-3,-10],[-6,-8],[-13,-6],[-15,1],[-73,22],[-14,-4],[-3,-3],[-2,-3],[0,-5],[2,-8],[3,-7],[-2,-7],[-2,-6],[-3,-4],[-35,-26],[-2,-5],[-2,-4],[1,-13],[-2,-6],[-5,-4],[-35,0],[-12,-4],[-9,-9],[8,-4],[35,12],[20,-4],[3,-1],[0,-4],[-4,-37],[-7,-17],[-10,-11],[-13,-7],[8,-2],[10,4],[9,8],[23,35],[-1,10],[3,14],[7,25],[-1,2],[-3,4],[-2,2],[28,27],[14,18],[-2,20],[9,3],[9,1],[9,-2],[8,-7],[-14,-8],[6,-3],[21,8],[8,-2],[17,-9],[8,-2],[6,0],[6,-1],[4,-4],[1,-11],[-22,-59],[-5,-18],[-4,-26],[-4,-4],[-6,-3],[-3,-8],[1,-8],[4,-7],[8,-13],[-10,-27],[-4,-5],[-13,-13],[1,-8],[-2,-7],[-5,-4],[-5,-1],[-2,-2],[-4,-13],[-2,-5],[3,3],[2,1],[5,0],[-4,-10],[-23,-19],[-3,-7],[-6,-20],[-2,-9],[5,2],[4,6],[8,16],[7,10],[28,25],[4,5],[2,8],[3,13],[3,12],[5,9],[13,11],[0,7],[8,16],[2,6],[-2,4],[-3,3],[-1,7],[1,6],[10,16],[-1,0],[0,5],[1,8],[4,8],[3,12],[3,6],[2,2],[2,3],[2,14],[2,5],[14,31],[4,12],[-2,4],[5,4],[13,0],[5,4],[-4,4],[-15,8],[4,11],[4,6],[4,7],[1,15],[7,10],[39,8],[42,33],[13,5],[4,4],[3,4],[1,3],[17,7],[12,0],[5,3],[13,13],[14,9],[45,10],[89,47],[11,2],[16,-4],[5,-2],[5,-4],[2,-6],[-1,-5],[-4,-5],[-1,-6],[-3,-9],[-17,-22],[-25,-25],[-69,-46],[-21,-9],[-35,0],[-11,-4],[-9,-13],[3,-7],[2,-3],[2,-2],[1,-12],[13,-19],[1,-8],[-6,-9],[-20,-13],[0,-4],[5,-3],[6,0],[26,13],[14,2],[-5,21],[-7,12],[-8,12],[-8,16],[5,5],[5,1],[13,-2],[38,4],[25,-5],[7,1],[4,11],[3,2],[1,-11],[2,-12],[5,8],[12,26],[6,4],[16,4],[12,13],[15,-4],[8,4],[-3,1],[-7,7],[8,10],[7,-3],[12,-15],[9,-2],[4,4],[2,9],[2,13],[4,11],[6,9],[7,6],[33,10],[19,0],[-1,-6],[-1,-2],[38,6],[20,-5],[21,-27],[8,-6],[102,-41],[102,-41],[7,-8],[11,-8],[2,-2],[2,-7],[1,-8],[0,-7],[-2,-6],[-3,-6],[-13,-16],[-4,-3],[-4,-1],[-3,-3],[-2,-14],[-3,-4],[-9,-3],[-3,-9],[0,-10],[-4,-10],[-8,-3],[-11,6],[-10,9],[-5,10],[1,6],[7,8],[2,4],[-2,12],[-4,4],[-6,-1],[-5,-2],[-6,-5],[-7,-8],[-5,-11],[1,-11],[4,-13],[0,-12],[-3,-10],[-5,-8],[-10,-5],[-33,-5],[-19,-10],[-30,4],[-23,-13],[-11,-2],[-21,3],[-5,-1],[-12,-6],[-11,-3],[-14,-6],[-30,-5],[-4,-5],[-5,-9],[-11,-4],[-20,-1],[-30,-21],[-24,-9],[-3,-3],[-3,-5],[-1,-5],[-1,-5],[-1,-5],[-7,-12],[-9,-8],[-10,-6],[-42,-9],[-8,-8],[-11,-5],[-6,-8],[-1,-7],[8,-2],[10,5],[15,19],[10,4],[21,-3],[20,-9],[6,-7],[8,-12],[4,-12],[-5,-5],[-47,7],[-10,-3],[-21,-12],[-9,0],[-13,-7],[-5,-6],[-2,0],[-2,-2],[-1,-4],[1,-2],[1,-3],[1,-3],[-1,-2],[-6,-8],[-7,-4],[-15,-4],[-6,-3],[-7,-10],[-5,-4],[-3,-1],[-11,1],[-3,-1],[-7,-11],[28,-1],[10,6],[68,60],[10,5],[34,3],[6,-2],[10,-8],[6,1],[11,6],[8,1],[7,5],[5,7],[0,11],[-3,7],[-3,4],[-4,2],[-4,5],[-3,6],[0,3],[0,11],[3,10],[6,10],[14,15],[10,7],[132,32],[14,-3],[22,-11],[12,-1],[6,12],[-27,8],[-5,9],[8,2],[28,-11],[12,-1],[70,6],[7,-5],[1,-3],[1,-5],[1,-5],[4,-4],[1,-5],[2,-10],[-32,-25],[3,-8],[4,-8],[-16,-22],[-20,-13],[-62,-20],[-10,-6],[-10,-13],[-10,-9],[-7,-4],[-8,-12],[-10,-5],[-7,-7],[-18,-28],[-9,-8],[-10,-5],[-10,-2],[-64,16],[-11,-2],[-11,-6],[-15,-15],[-5,-7],[-2,-8],[-4,-18],[-2,-9],[-6,-8],[-13,-11],[-5,-7],[-4,-8],[-2,-4],[-1,-6],[0,-6],[-1,-9],[-1,-6],[7,-5],[5,11],[4,15],[4,8],[9,4],[11,10],[9,13],[6,13],[0,5],[-1,7],[0,6],[6,5],[8,11],[5,3],[40,4],[13,-4],[14,-11],[6,-1],[26,0],[6,3],[43,58],[14,6],[16,14],[25,8],[18,11],[6,1],[41,-2],[21,-10],[3,1],[1,7],[4,-2],[4,-2],[3,1],[4,3],[-2,1],[-1,2],[-2,1],[-3,0],[2,6],[0,5],[-1,4],[-3,2],[6,4],[5,0],[6,1],[9,14],[9,6],[4,7],[-6,0],[-3,4],[0,5],[5,3],[3,-1],[5,-2],[14,-2],[2,1],[0,2],[1,6],[0,2],[4,3],[5,-1],[9,-4],[15,2],[15,10],[26,25],[-7,4],[-30,5],[-2,3],[3,4],[7,4],[0,4],[-11,-1],[-4,4],[0,9],[3,4],[3,-1],[5,-2],[4,-1],[-6,13],[-2,8],[4,4],[5,2],[14,16],[18,13],[7,10],[-2,11],[22,5],[7,-1],[1,-2],[3,-7],[2,-3],[3,-3],[4,-3],[39,-9],[16,-9],[12,-12],[7,-9],[43,-41],[11,-7],[15,-19],[4,-8],[10,-13],[3,-5],[2,2],[2,0],[1,-2],[2,-4],[-3,0],[7,-7],[4,-5],[3,-6],[1,-3],[0,-3],[0,-6],[1,-2],[2,-1],[2,-1],[1,-5],[25,-21],[7,-9],[2,-13],[0,-27],[3,-11],[12,-22],[3,-12],[-5,-8],[9,-17],[4,-10],[3,-10],[-65,-7],[-58,14],[-17,10],[-13,2],[-11,8],[-12,5],[-74,-4],[-12,-4],[-5,-3],[-4,-4],[-6,-9],[-4,-4],[-19,-8],[-9,-7],[-4,-15],[-4,-10],[-9,-10],[-10,-8],[-7,-3],[-55,0],[-33,9],[-11,-1],[-6,0],[1,-2],[-2,-1],[-7,-1],[-14,-9],[-44,-14],[-14,-12],[-4,-1],[-21,-3],[-11,-4],[-20,-15],[-12,-4],[-124,22],[-23,-3],[-44,-18],[-17,4],[-4,-4],[1,-6],[9,-3],[9,0],[19,-8],[11,7],[12,10],[11,5],[29,4],[102,-25],[15,2],[16,7],[10,-1],[3,2],[6,5],[4,1],[15,-1],[9,1],[16,18],[52,15],[50,-1],[36,-14],[16,-11],[109,-51],[25,-4],[12,2],[23,13],[55,0],[13,-6],[88,-4],[122,-73],[4,-4],[10,-19],[4,-5],[4,-2],[5,-4],[6,-11],[4,-13],[2,-12],[-1,-13],[-4,-9],[-21,-28],[-11,-3],[-54,26],[-51,5],[-12,-6],[0,-5],[2,-2],[3,-5],[-7,-4],[-11,5],[-20,17],[-9,5],[-11,-3],[-20,-13],[-12,-3],[-47,9],[-62,34],[-9,7],[-18,6],[-13,11],[-14,4],[-28,18],[-11,1],[-30,-9],[-93,18],[-93,18],[-54,-34],[-14,-15],[7,-7],[9,6],[18,18],[38,18],[13,2],[51,-10],[19,-10],[79,-17],[55,5],[13,-5],[4,-4],[8,-13],[7,-5],[4,-6],[2,-5],[-1,-3],[-4,-1],[-11,-6],[-5,-1],[-6,1],[-12,6],[-112,14],[-19,-8],[-25,-5],[-50,5],[1,-1],[21,-11],[39,0],[19,6],[40,-2],[7,-5],[-10,-8],[-30,-13],[-11,-13],[-4,-3],[-7,-2],[-20,2],[-33,-11],[-32,1],[-9,-5],[-8,-13],[13,0],[2,1],[2,6],[2,1],[29,0],[-1,-5],[0,-3],[0,-1],[1,-3],[-3,-7],[-5,-21],[-3,-5],[1,-3],[-2,-8],[-4,-8],[-10,-17],[11,3],[13,13],[0,16],[1,2],[3,3],[5,9],[1,2],[0,3],[1,7],[0,3],[4,8],[4,4],[27,11],[25,2],[12,15],[47,21],[25,3],[48,-18],[12,-1],[3,-1],[9,-8],[105,-55],[9,-10],[-10,-6],[-59,-4],[-7,-6],[3,-8],[-9,-6],[-12,0],[-55,20],[-43,1],[-10,-6],[-10,-1],[-1,-2],[-1,-1],[-3,-4],[0,-1],[-4,-1],[-9,5],[-5,-3],[-1,-6],[2,-6],[3,1],[5,4],[60,8],[2,-6],[7,-7],[18,-3],[12,-7],[34,1],[-3,-9],[-1,-4],[1,-4],[-2,-5],[-5,-2],[-4,-1],[5,-4],[11,-1],[5,-3],[3,-4],[8,-12],[-7,-6],[-36,8],[-15,8],[-86,10],[10,-9],[50,-5],[5,-3],[5,-5],[5,-3],[11,-2],[14,-10],[57,-15],[10,1],[6,-1],[4,-5],[-4,-4],[7,-4],[13,0],[7,-3],[-13,-7],[-16,-1],[-96,32],[-15,-1],[-34,13],[-21,-2],[-15,4],[-15,1],[-7,-3],[0,-4],[18,-7],[9,-6],[5,-12],[-31,4],[0,-4],[1,-5],[-5,-1],[-8,1],[-5,3],[-6,6],[-8,5],[-8,1],[-13,-7],[-13,9],[-6,-1],[-8,-2],[-21,3],[-7,5],[-14,13],[-6,3],[-28,1],[-39,17],[-17,-1],[-9,-13],[35,1],[19,-5],[14,-12],[-55,2],[-9,-11],[109,-8],[8,-4],[4,-6],[-1,-4],[-3,-4],[0,-6],[-2,-3],[-3,-1],[-3,-1],[-3,1],[0,-4],[7,-4],[7,2],[13,10],[7,3],[35,-4],[24,-11],[33,6],[9,-6],[5,-5],[26,1],[53,-12],[19,-8],[3,-3],[1,-3],[2,-2],[3,-1],[18,0],[0,-3],[-14,-9],[0,4],[-4,-1],[-17,1],[7,-5],[14,-3],[6,-8],[-9,-10],[-11,5],[-12,8],[-10,5],[-15,-5],[-22,-13],[-9,1],[-70,20],[-23,-7],[-6,0],[-5,0],[-5,-6],[-1,-2],[-4,-4],[0,-2],[0,-4],[0,-2],[-7,-4],[-15,0],[-6,-4],[5,-2],[11,-5],[5,-1],[8,0],[9,3],[8,8],[5,3],[6,8],[4,2],[15,4],[40,-10],[2,-2],[1,-4],[-1,-4],[-1,-3],[-2,-2],[-5,-1],[-11,-5],[-47,-2],[-12,-8],[83,-4],[5,3],[2,4],[2,6],[2,5],[4,4],[8,0],[7,-1],[5,-3],[33,-3],[5,-8],[2,-3],[13,5],[4,-4],[0,-4],[-1,-4],[1,-5],[3,-5],[2,-1],[3,1],[4,1],[17,0],[1,-1],[1,-5],[1,-2],[3,0],[3,0],[5,4],[7,11],[4,3],[5,-6],[0,-4],[-3,-4],[-1,-5],[4,-14],[1,-14],[2,-5],[-1,-10],[-10,-23],[-4,-10],[5,3],[5,5],[4,5],[4,7],[1,7],[3,16],[4,15],[0,7],[-1,7],[0,9],[3,8],[3,-1],[4,-4],[5,-3],[32,10],[10,7],[6,-1],[6,-3],[2,-3],[2,-4],[4,-2],[12,4],[4,0],[4,-1],[4,-3],[4,-8],[-13,-11],[-16,-3],[-9,-8],[7,-23],[0,-9],[-2,-8],[-2,-7],[-1,-8],[1,-8],[3,-1],[3,2],[10,17],[3,7],[1,9],[-1,8],[-5,11],[-2,8],[7,2],[25,-2],[7,4],[4,1],[4,-3],[3,-8],[2,-2],[3,0],[0,10],[6,5],[7,0],[6,-3],[2,-6],[2,-8],[2,-8],[4,-3],[3,6],[2,10],[3,6],[6,-7],[2,-9],[1,-7],[1,-5],[5,-6],[0,-3],[-23,3],[-12,-2],[-7,-10],[60,0],[4,4],[2,5],[1,11],[1,4],[-5,8],[-3,4],[-1,5],[18,-4],[15,-11],[6,-8],[5,-1],[11,7],[19,8],[19,-1],[36,-15],[0,-4],[-18,-3],[-10,2],[-7,0],[-4,-5],[1,-10],[-8,1],[-9,6],[-9,2],[-8,-5],[1,-12],[-6,-8],[-8,-6],[-15,-5],[-8,1],[-17,6],[-20,12],[-41,5],[-11,-5],[-8,2],[-4,-2],[1,-1],[0,-1],[1,-2],[-9,-6],[-98,-23],[-12,-8],[-5,-5],[-4,-7],[-2,-12],[2,-9],[5,-4],[7,5],[0,3],[2,11],[0,2],[3,1],[16,11],[7,2],[22,-1],[22,11],[5,4],[3,0],[3,0],[-2,-7],[-4,-2],[-4,-2],[-3,-5],[-2,-8],[1,-5],[1,-5],[0,-6],[-6,-7],[-28,-9],[1,0],[0,-2],[-1,-2],[4,-1],[13,5],[16,2],[5,2],[3,3],[2,5],[2,12],[-2,1],[0,3],[0,4],[2,3],[32,22],[4,6],[14,1],[7,-5],[-2,-15],[6,1],[4,4],[8,11],[4,4],[5,1],[6,1],[6,-1],[46,-19],[5,-6],[-15,-6],[-48,-6],[1,-1],[3,-3],[0,-3],[-1,-1],[-1,0],[-2,0],[-11,-5],[-10,-12],[-6,-17],[3,-23],[-8,-14],[-8,-5],[-19,-1],[-10,3],[-11,6],[-10,4],[-11,-5],[11,-8],[46,-15],[5,1],[4,4],[4,6],[10,6],[4,6],[-2,4],[3,4],[3,4],[3,5],[0,5],[-2,5],[-1,5],[-1,6],[-1,7],[44,24],[4,4],[15,4],[11,0],[7,-2],[3,-2],[1,-1],[2,-3],[1,-3],[9,-3],[13,-8],[30,-6],[7,-4],[-3,-5],[0,-4],[0,-4],[-1,-4],[-3,-4],[-6,-4],[-3,-4],[-4,-9],[-2,-10],[0,-10],[5,-7],[-6,-8],[-31,-26],[-3,-9],[0,-14],[3,-6],[2,-4],[2,-2],[4,2],[0,5],[1,7],[1,6],[5,9],[23,22],[8,5],[5,0],[3,2],[4,10],[3,5],[7,5],[6,-2],[4,-7],[2,-13],[0,1],[-2,-2],[-1,-2],[-1,-3],[1,-1],[0,-1],[1,-2],[0,-4],[0,-22],[-3,-11],[-4,-10],[-5,-9],[-5,-6],[11,2],[9,9],[6,14],[4,45],[6,16],[8,8],[11,3],[54,-10],[9,-4],[-5,-20],[-14,-5],[-26,-1],[0,-5],[24,-4],[25,12],[4,0],[10,-3],[3,-2],[0,-5],[0,-5],[0,-5],[3,-10],[3,-4],[9,-6],[0,-4],[-8,-7],[-22,-6],[-10,-11],[-7,-21],[-2,-4],[-4,-2],[-3,-6],[-6,-12],[3,-6],[-1,-7],[-4,-5],[-4,-2],[-20,-2],[-38,14],[-16,2],[-14,-6],[7,-5],[14,-2],[12,-7],[15,-2],[7,-7],[10,-7],[25,4],[7,-11],[-2,-12],[4,-9],[6,0],[4,17],[0,5],[-1,3],[-1,3],[-1,3],[-1,5],[1,3],[2,3],[1,3],[2,8],[3,6],[0,6],[-2,9],[6,5],[7,19],[5,8],[4,3],[8,-2],[3,1],[6,7],[3,2],[17,4],[5,4],[13,11],[13,9],[14,4],[4,5],[1,9],[0,16],[2,12],[0,4],[-1,5],[-3,5],[-1,5],[0,6],[4,11],[5,0],[6,-6],[4,-7],[6,-13],[1,-6],[-3,-6],[-7,-9],[3,-1],[3,0],[2,2],[2,2],[4,-6],[-2,-6],[-9,-10],[-5,-13],[-3,-6],[-3,-3],[-28,-33],[0,-4],[2,0],[3,-6],[15,-17],[5,-9],[-1,-16],[-5,-11],[-7,-11],[-4,-11],[0,-6],[2,-11],[0,-7],[-2,-8],[-6,-13],[-2,-8],[1,-11],[3,-11],[2,-11],[-4,-11],[4,-10],[5,0],[2,7],[-3,11],[6,9],[4,12],[3,15],[3,30],[-1,5],[-3,8],[-1,10],[3,7],[15,11],[23,10],[3,3],[1,3],[1,5],[1,4],[5,5],[1,7],[-1,8],[-2,6],[-4,6],[-6,8],[-4,7],[5,3],[5,0],[5,-3],[4,0],[5,2],[12,10],[12,5],[38,-2],[4,1],[7,3],[2,1],[6,-3],[1,-2],[-2,-27],[-3,-13],[-15,-41],[-3,-11],[-2,-6],[-4,-3],[-3,-2],[-7,-8],[-7,-4],[-1,-6],[2,-7],[2,-5],[6,-8],[18,-14],[14,-6],[6,-8],[6,-10],[3,-11],[11,-39],[3,-6],[8,2],[2,5],[-11,48],[-1,8],[-4,9],[-38,28],[-7,8],[-2,8],[4,5],[7,5],[4,4],[2,4],[3,12],[15,35],[2,6],[9,10],[3,2],[23,4],[31,16],[8,13],[-9,16],[4,9],[6,-1],[6,-3],[5,-1],[3,2],[2,3],[1,4],[2,3],[7,5],[8,3],[17,-3],[32,-20],[19,-6],[9,-4],[8,-10],[-11,-11],[-36,-15],[-35,5],[-14,-9],[8,-5],[18,0],[8,-7],[-18,-26],[-11,-11],[-10,-4],[0,2],[-4,9],[-3,2],[-1,-5],[0,-7],[1,-1],[-9,-20],[-2,-8],[3,0],[3,2],[14,15],[4,2],[6,1],[3,-2],[3,-5],[1,-8],[1,-7],[-2,-6],[-5,-2],[-3,-2],[2,-8],[-11,-7],[-12,-3],[-11,-6],[-9,-17],[-2,-6],[0,-8],[0,-16],[2,-8],[5,-2],[3,3],[-1,9],[5,8],[1,10],[3,10],[6,9],[5,2],[9,0],[5,1],[3,2],[2,2],[2,2],[1,2],[1,4],[-1,4],[0,2],[0,3],[4,4],[15,4],[4,4],[3,3],[3,3],[5,2],[6,-1],[11,-6],[5,-1],[1,-3],[1,-14],[1,-4],[-3,-11],[-2,-9],[-3,-7],[-7,-1],[0,-4],[9,0],[9,2],[6,8],[2,16],[1,14],[2,12],[1,12],[-2,13],[5,4],[5,-3],[4,-3],[5,-2],[3,1],[4,5],[3,2],[9,2],[4,-1],[29,-15],[13,-11],[0,-15],[15,5],[7,0],[3,-8],[-1,-4],[-7,-14],[0,-2],[0,-3],[0,-2],[-1,-1],[-25,-2],[-15,-5],[-15,-9],[-12,-12],[5,0],[49,17],[14,1],[6,2],[5,5],[7,12],[5,3],[6,-3],[8,-9],[8,-11],[5,-9],[2,-16],[-4,-10],[-8,-6],[-9,-1],[8,-5],[8,-1],[33,4],[9,-2],[1,-8],[-2,-9],[-5,-12],[-2,-11],[8,-4],[6,-1],[3,-3],[-1,-4],[-5,-4],[-3,-1],[-7,1],[-2,-2],[0,-9],[-3,-2],[-36,-19],[-5,-1],[-49,8],[15,-11],[17,-5],[34,0],[30,8],[14,0],[14,-8],[9,-20],[4,-11],[0,-10],[2,-14],[-3,-11],[-7,-6],[-7,-1],[23,-7],[3,-7],[-4,-7],[-9,2],[-17,7],[-104,15],[-103,16],[-10,-7],[122,-28],[28,1],[8,-6],[-16,-14],[-17,-10],[-12,-3],[-37,7],[-73,-24],[-9,-8],[13,-6],[13,3],[25,15],[17,5],[77,1],[80,26],[7,0],[6,-4],[-10,-27],[-6,-10],[-9,-3],[-10,1],[-16,8],[-5,-2],[-11,-7],[-112,-40],[-16,-14],[-9,-19],[1,-38],[-2,-7],[8,-2],[4,1],[4,3],[3,6],[1,3],[5,30],[1,4],[3,6],[7,7],[3,5],[7,9],[11,5],[41,4],[16,7],[14,4],[28,14],[49,0],[5,2],[4,3],[4,5],[5,18],[3,4],[2,0],[9,-4],[18,4],[2,-2],[3,-8],[2,-4],[4,0],[15,10],[34,6],[17,-2],[16,-8],[-1,-7],[-1,-9],[0,-14],[-2,-5],[-21,-34],[-36,-29],[-19,-9],[-9,-13],[-9,-19],[2,-7],[6,-12],[1,14],[1,11],[2,8],[6,7],[17,14],[35,11],[16,12],[15,18],[11,21],[0,7],[-4,7],[-2,10],[2,12],[22,38],[10,14],[3,3],[6,1],[15,-5],[2,-3],[-1,-6],[-4,-5],[-3,-3],[-4,-1],[-12,-11],[0,-4],[9,0],[10,5],[10,10],[5,13],[-6,6],[-6,7],[13,12],[13,-4],[13,-11],[12,-5],[7,-9],[6,-20],[1,-20],[-9,-12],[-9,-16],[-5,-5],[-53,-20],[-5,-5],[-3,-7],[-1,-7],[2,-5],[1,-3],[12,-29],[2,-12],[0,-10],[-2,-8],[-2,-7],[-13,-16],[-18,-7],[-34,-5],[-15,-6],[-7,-6],[-4,-9],[0,-3],[3,-8],[0,-3],[-1,-7],[-2,-5],[-6,-6],[-8,-5],[-26,-4],[-18,6],[-9,-1],[-4,-8],[69,-5],[12,5],[7,5],[4,5],[2,3],[1,4],[0,4],[-5,11],[0,4],[1,4],[0,6],[1,6],[3,3],[3,1],[3,0],[4,-1],[2,-2],[3,-16],[2,-25],[0,-20],[-2,-19],[-9,-38],[8,0],[4,2],[3,6],[5,10],[3,9],[7,22],[3,9],[2,19],[-4,18],[-1,13],[14,6],[18,2],[8,3],[21,17],[36,7],[2,3],[2,5],[2,3],[9,3],[11,0],[11,-2],[7,-5],[-1,-10],[0,-16],[2,-18],[3,-13],[1,-22],[0,-16],[-2,-6],[-1,-3],[-7,-18],[-2,-10],[0,-5],[0,-6],[0,-7],[2,0],[-5,-10],[-6,-11],[-4,-10],[3,-10],[4,8],[12,10],[6,8],[0,5],[-2,12],[-1,6],[2,4],[6,7],[2,5],[-2,0],[5,12],[5,5],[5,7],[2,15],[-1,3],[-8,13],[0,6],[5,10],[2,6],[-1,5],[-4,9],[-1,6],[1,5],[1,5],[5,8],[5,5],[9,-2],[4,1],[5,3],[16,0],[7,-3],[7,-6],[6,-8],[6,-10],[2,-9],[1,-22],[1,-7],[8,-8],[9,-2],[7,-6],[3,-19],[20,-29],[5,-5],[2,3],[2,7],[1,8],[0,6],[-2,5],[-11,12],[-3,5],[-5,13],[-3,6],[-10,3],[-3,4],[1,9],[-5,21],[2,1],[2,4],[1,2],[-1,10],[5,3],[13,-1],[11,3],[11,5],[3,9],[-1,12],[-6,24],[2,7],[2,5],[3,3],[4,2],[2,-1],[5,-3],[3,-1],[3,1],[2,1],[6,4],[11,5],[14,-1],[14,-5],[10,-8],[-8,-14],[-4,-9],[-3,-10],[0,-5],[-1,-12],[-1,-4],[-2,-4],[-6,-7],[-3,-5],[6,-4],[7,-2],[7,0],[5,2],[17,30],[3,4],[5,3],[5,1],[19,-1],[-1,-5],[-6,-12],[5,-5],[6,2],[7,5],[6,3],[7,-2],[4,-4],[1,-7],[-3,-10],[-14,-13],[-37,7],[-17,-6],[-5,-9],[3,-5],[5,1],[12,11],[37,-2],[7,-3],[6,-1],[16,7],[26,-13],[-6,-15],[-9,-7],[-19,-2],[18,-12],[44,-3],[16,-22],[-6,-4],[5,-6],[12,-2],[5,-6],[8,-15],[17,-21],[6,-14],[3,-13],[-6,-8],[1,-2],[3,-4],[1,-2],[-3,-3],[-10,-5],[-8,-7],[-4,-2],[-4,1],[-3,1],[-3,1],[-5,-3],[-1,-2],[-3,-7],[-1,-3],[-2,-6],[-38,3],[-6,3],[-5,6],[-2,5],[-1,7],[-2,7],[-3,6],[-25,23],[-11,5],[-25,2],[-11,6],[-14,11],[-12,7],[-9,-7],[4,-9],[-3,-8],[-6,-6],[-39,-10],[0,-4],[18,-9],[10,0],[7,7],[8,11],[8,5],[9,0],[42,-12],[8,-8],[5,-9],[30,-44],[7,-7],[10,-5],[4,-4],[3,-6],[0,-6],[-4,-5],[-5,-3],[-10,-3],[-16,2],[-5,-2],[-3,-3],[-8,-11],[-4,-2],[-5,1],[-8,6],[-4,1],[-10,0],[-2,-1],[-3,-5],[-2,-2],[-25,-8],[0,-4],[9,-5],[9,1],[17,8],[83,0],[5,-2],[2,-4],[2,-5],[3,-5],[13,-7],[4,-5],[-9,-3],[-13,-10],[-7,-3],[-3,0],[-8,4],[-4,-1],[-3,-2],[-5,-7],[-3,-3],[-8,0],[-18,7],[-9,-2],[-6,-8],[-6,-10],[-6,-7],[-7,-4],[-16,0],[-5,2],[-8,5],[-10,4],[-12,11],[-6,2],[-4,-1],[-5,-5],[-4,-2],[-19,0],[-4,5],[-3,9],[-1,11],[-3,8],[4,15],[-8,6],[-20,1],[-4,4],[-11,2],[-11,4],[-21,0],[-32,10],[-6,-1],[2,-8],[3,-7],[1,-4],[-6,-2],[-6,2],[-6,4],[-6,1],[-6,-3],[6,-7],[11,-6],[11,-2],[7,5],[6,7],[10,2],[9,-1],[6,-6],[2,-17],[14,-16],[18,-13],[10,-11],[-6,-2],[-17,-14],[-22,-5],[-26,-18],[-12,-4],[-6,-4],[-7,-2],[-7,4],[-1,6],[-14,6],[-6,5],[1,2],[1,6],[-3,1],[-2,3],[-1,4],[-1,4],[0,4],[1,2],[0,3],[-3,7],[-7,7],[-7,4],[-15,2],[0,-5],[7,-6],[6,-7],[10,-19],[-2,-4],[5,-14],[7,-7],[7,-5],[7,-9],[7,-7],[11,1],[34,16],[4,-1],[6,-9],[2,-2],[12,-6],[20,-6],[6,0],[0,-10],[9,-5],[52,-4],[9,-5],[-13,-8],[-5,-7],[5,-10],[7,-3],[17,4],[8,-1],[0,-3],[-3,-1],[-3,-2],[-3,-2],[-2,-4],[10,1],[4,-1],[5,-4],[-8,-4],[-15,-2],[-6,-6],[4,-3],[4,-2],[25,2],[4,-3],[6,-9],[1,-6],[-3,-3],[-16,4],[-9,-2],[-16,-11],[-8,3],[-8,4],[-8,-1],[-29,-17],[-4,0],[-4,2],[-7,8],[-3,2],[-4,3],[-4,5],[-4,4],[-8,-6],[-6,2],[-10,8],[-8,4],[-27,-4],[-4,1],[-10,5],[-4,4],[-5,3],[-6,-3],[-5,-4],[-5,-2],[-6,1],[-6,4],[-5,6],[-5,7],[-3,10],[-3,20],[-4,9],[-12,11],[-14,0],[-26,-16],[5,-4],[7,0],[20,7],[3,0],[4,-3],[2,-3],[6,-12],[3,-17],[4,-11],[7,-7],[4,-8],[3,-2],[81,-9],[5,-4],[5,-10],[5,-6],[8,3],[5,0],[6,-6],[4,-10],[2,-11],[-19,-4],[3,-4],[3,-4],[4,-3],[5,-1],[6,4],[3,1],[3,-1],[0,-5],[-2,-4],[-1,-3],[-1,0],[0,-10],[1,-4],[2,-4],[15,-19],[4,-4],[-2,-7],[-5,0],[-10,3],[-4,-1],[-9,-6],[-30,-7],[-8,6],[4,8],[-4,1],[-3,-1],[-2,-2],[-3,-2],[-4,-1],[-18,2],[-18,10],[-2,2],[-4,9],[-3,4],[-3,4],[-4,2],[-3,0],[-4,2],[-1,4],[0,5],[-2,6],[-6,5],[-7,4],[-5,0],[1,-5],[-2,-4],[0,-2],[0,-2],[12,-10],[5,-3],[-1,-2],[-1,-2],[0,-2],[-2,-2],[0,-4],[5,-2],[18,-16],[4,0],[8,2],[7,-5],[18,-19],[8,-4],[3,-4],[-1,-8],[-2,-9],[-2,-6],[-4,0],[-14,6],[-10,7],[-38,13],[-6,1],[8,-22],[10,-7],[26,-4],[5,-4],[8,-13],[12,-6],[1,-6],[-2,-8],[-3,-7],[-1,-10],[-5,-13],[-6,-7],[-5,9],[6,16],[-6,5],[-10,-3],[-5,-8],[1,-12],[-2,-4],[-4,-2],[-6,1],[-5,2],[-4,4],[-5,5],[-2,4],[0,7],[-2,2],[-3,0],[-2,1],[-1,2],[-1,5],[-1,5],[-1,25],[-3,16],[-7,14],[-8,8],[-9,-3],[8,-8],[4,-5],[1,-6],[1,-15],[1,-15],[3,-13],[0,-6],[-2,-8],[-15,-22],[-9,-1],[-3,3],[-2,10],[0,5],[0,5],[-1,5],[-41,8],[-2,-2],[2,-8],[-10,1],[-5,9],[-5,13],[-5,13],[-15,18],[-7,11],[-3,14],[-3,10],[-22,38],[-5,16],[-3,20],[-5,15],[-7,4],[-1,-1],[-1,-1],[-1,-2],[-1,-4],[2,0],[-2,-4],[2,-7],[-1,-6],[-5,-11],[13,-17],[20,-52],[13,-17],[-2,-3],[-4,-9],[3,-4],[3,-6],[3,-7],[2,-7],[-8,0],[-24,8],[-32,-4],[-4,-6],[-3,-2],[-5,5],[-25,5],[-3,-2],[2,-6],[7,-8],[7,-4],[22,6],[7,-3],[11,-11],[6,-2],[32,4],[5,-3],[5,-7],[8,-15],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[2,-6],[0,-2],[-5,-18],[-4,-5],[-32,-5],[-4,3],[-5,6],[-11,23],[-4,5],[-4,2],[-7,1],[0,-4],[2,-1],[4,-3],[0,-4],[-1,-4],[1,-4],[4,-8],[-7,2],[-3,0],[-4,-2],[6,-10],[16,-6],[5,-13],[-2,-9],[4,-2],[8,3],[10,0],[4,-1],[41,-27],[0,-4],[-6,0],[-11,4],[-6,0],[-7,-4],[-3,0],[-4,0],[-41,24],[-16,4],[-7,-8],[53,-36],[16,-2],[5,-3],[-38,-3],[0,-4],[17,0],[0,-5],[-3,1],[-2,-1],[-5,-4],[8,-6],[0,-2],[7,-2],[20,-14],[-3,-10],[-1,-3],[7,1],[3,-2],[3,-2],[-7,-4],[-14,3],[-7,-3],[-4,-7],[3,-3],[5,-3],[5,-4],[3,3],[3,2],[7,0],[3,-2],[2,-5],[1,-4],[-3,-2],[-15,0],[-8,-2],[-6,-6],[6,-5],[24,-3],[7,-3],[3,-7],[-2,-7],[-6,-3],[-2,1],[-4,5],[-3,2],[-2,-1],[-8,-3],[-24,1],[-6,-5],[23,-12],[-3,-3],[-4,-1],[-3,-1],[-4,1],[10,-5],[21,-2],[9,-6],[-4,-10],[-7,-5],[-8,-4],[-7,-5],[3,-2],[2,-4],[1,-4],[2,-2],[3,-1],[5,-6],[3,-1],[-6,-5],[-7,-1],[-14,2],[0,-5],[21,-3],[0,-5],[-5,-5],[-5,0],[-5,2],[-8,-1],[3,-11],[1,-5],[-5,-6],[-16,-14],[2,-2],[4,-5],[2,-1],[-6,-7],[-3,-5],[-1,-4],[1,-5],[2,-7],[1,-6],[-3,-2],[-15,2],[-18,9],[4,4],[1,4],[-2,4],[-5,4],[11,7],[5,5],[-1,9],[1,8],[-3,5],[-4,1],[-4,-4],[-4,-5],[-12,-5],[-10,-7],[-5,-2],[-3,7],[-2,1],[-15,5],[0,4],[2,2],[1,2],[0,2],[1,2],[-1,0],[-3,0],[0,4],[17,0],[-1,3],[-1,1],[8,6],[25,6],[-8,6],[-10,3],[-10,-2],[-7,-9],[-8,-5],[-10,1],[-7,8],[1,15],[-5,10],[1,10],[5,11],[17,25],[3,9],[-5,4],[-6,0],[-7,-2],[-5,-5],[-3,-19],[-2,-1],[-2,1],[-1,1],[-13,-20],[-5,-5],[-7,-2],[-7,3],[-11,10],[-4,0],[-2,-12],[-1,-14],[-3,-9],[-5,-5],[-7,-2],[-5,3],[-16,25],[3,3],[1,1],[0,4],[-6,-1],[-6,-4],[-5,-3],[-5,4],[6,9],[13,26],[8,8],[19,8],[9,6],[0,4],[-10,1],[-31,-5],[-3,-2],[-4,-9],[-3,-2],[-4,-1],[-5,-3],[-7,-7],[0,-4],[-2,-1],[-2,2],[-3,13],[-8,2],[-2,6],[0,4],[-3,12],[-1,6],[0,6],[0,6],[1,4],[1,4],[3,3],[7,9],[4,9],[-3,4],[-5,-4],[-5,-7],[-4,-3],[-1,5],[-2,0],[5,10],[15,17],[3,8],[21,27],[0,3],[-4,5],[3,3],[2,3],[2,4],[1,6],[-13,-1],[-4,-5],[2,-10],[-4,-3],[-8,-5],[-4,-4],[-1,-9],[0,-6],[-1,-4],[-5,-6],[-13,-4],[-4,-4],[-3,-6],[-6,-17],[-3,-5],[0,-4],[6,-20],[-1,-21],[-12,-37],[-9,-21],[-6,-9],[-2,4],[-2,15],[-5,3],[-7,-3],[-7,-1],[0,4],[2,1],[3,2],[2,1],[-2,6],[-3,3],[-2,3],[6,15],[1,6],[-3,1],[-4,-1],[-2,-3],[-1,-4],[-2,-4],[-8,-3],[-7,-5],[-5,-1],[3,10],[2,8],[3,6],[5,4],[-8,8],[-1,4],[4,6],[3,3],[8,3],[4,0],[0,4],[-12,-1],[-4,3],[-1,8],[-2,2],[-2,1],[-4,0],[-2,0],[-2,-3],[-4,-10],[-9,-8],[-9,2],[-10,9],[-10,14],[14,0],[-3,6],[-4,3],[-4,0],[-5,3],[0,3],[4,0],[5,5],[12,3],[4,5],[3,-2],[9,-6],[5,0],[11,7],[10,9],[-30,4],[-28,-8],[-6,4],[7,7],[20,8],[18,14],[21,5],[10,6],[6,9],[3,3],[28,1],[5,-2],[4,-3],[5,-2],[4,3],[3,7],[6,25],[-3,4],[-5,0],[-3,-5],[-2,-9],[-2,-8],[-6,-5],[-6,0],[-5,3],[2,1],[6,3],[0,4],[-34,-4],[-5,6],[-1,4],[-5,-4],[-4,-7],[-1,-3],[-5,-5],[-4,-2],[-10,-1],[-14,-7],[-5,-1],[-16,5],[-4,-3],[-19,-9],[-10,-8],[2,-10],[-8,-5],[-9,3],[-8,9],[-4,5],[-12,16],[-4,7],[-1,7],[1,8],[0,7],[-7,8],[7,7],[8,3],[25,4],[27,11],[-2,5],[0,2],[1,3],[6,5],[2,1],[2,-1],[1,0],[1,3],[0,3],[0,1],[2,2],[5,8],[3,2],[3,2],[3,-1],[7,-3],[4,0],[-2,5],[-10,9],[0,3],[-1,6],[0,7],[2,3],[27,4],[7,3],[0,5],[-34,3],[-6,-2],[-5,-6],[-27,-54],[-6,-7],[-10,-1],[-19,2],[-16,-3],[-8,1],[-8,5],[-4,7],[3,4],[6,6],[2,10],[-3,2],[-27,-25],[-6,-3],[-4,3],[-4,13],[5,2],[4,3],[3,5],[-2,6],[1,11],[10,6],[12,0],[13,-5],[16,5],[3,3],[1,17],[4,4],[11,3],[20,13],[12,4],[21,-1],[10,2],[9,8],[-9,5],[-49,-7],[-18,-7],[-7,-5],[-14,-16],[-5,-9],[-7,-3],[-75,13],[1,6],[14,35],[4,9],[2,6],[1,5],[-3,3],[-4,-1],[-4,-4],[-8,-12],[-6,-8],[-7,-3],[-4,9],[0,7],[3,7],[4,10],[6,22],[2,6],[21,28],[4,7],[2,7],[5,4],[14,4],[8,6],[12,3],[16,11],[7,3],[-1,0],[7,1],[13,9],[28,10],[6,4],[8,-1],[29,-18],[-2,0],[6,-1],[5,-2],[5,-1],[5,4],[-3,5],[-4,5],[-5,4],[-9,4],[-7,11],[-4,3],[0,4],[7,9],[8,14],[6,17],[3,17],[3,20],[4,20],[7,15],[21,11],[22,25],[12,6],[12,2],[12,7],[12,10],[10,13],[-5,2],[-3,-2],[-2,-4],[-2,-3],[-3,-3],[-2,-1],[-2,-1],[-2,2],[-2,5],[-1,2],[-4,-1],[-4,-1],[-17,-13],[-4,-1],[-5,-1],[-5,-2],[-10,-8],[-26,-10],[-16,-16],[-8,-12],[-5,-13],[2,0],[-2,-3],[-2,-2],[-2,-1],[-2,-2],[0,-2],[-1,-4],[-4,-15],[-2,-8],[1,-5],[2,-13],[-6,-8],[-14,-5],[-8,-11],[-4,-2],[-16,1],[-4,-3],[-6,-7],[-40,-19],[-10,-3],[-4,5],[-1,3],[-3,2],[-6,1],[-1,-3],[-2,-13],[-2,-5],[-3,-2],[-12,-6],[-6,-5],[-3,-2],[-100,-6],[-20,-9],[-10,-2],[-11,0],[-7,4],[-4,10],[-1,21],[-1,6],[-3,6],[-2,5],[1,7],[4,4],[5,3],[3,6],[-1,9],[5,4],[12,2],[6,2],[46,39],[10,2],[2,10],[3,7],[8,6],[9,14],[2,6],[2,6],[2,13],[2,5],[4,7],[12,11],[-4,3],[-10,-2],[-5,3],[15,10],[5,8],[-3,11],[0,3],[2,3],[0,2],[-2,4],[-4,-2],[-3,-7],[-3,-9],[-1,-9],[-1,-2],[-2,-2],[-2,-1],[-4,-2],[-1,-3],[-4,-28],[-2,-6],[-4,-9],[-25,-39],[-4,-3],[-11,-2],[-12,-6],[-15,-13],[-3,-5],[-5,-4],[-14,-7],[-7,-4],[-6,-1],[-15,1],[-38,14],[-1,3],[0,4],[-1,4],[-11,9],[-2,3],[0,1],[0,3],[-1,5],[-2,5],[-12,12],[-1,2],[1,0],[0,-1],[1,-2],[2,6],[4,7],[5,4],[5,-5],[1,0],[5,14],[7,14],[-24,-21],[-13,-7],[-9,12],[1,7],[-4,-3],[-10,-8],[-6,4],[-5,8],[-6,3],[-6,-7],[8,-7],[8,-9],[4,-10],[-5,-11],[-10,-3],[-14,2],[-12,8],[-6,16],[-2,13],[0,9],[3,4],[15,-7],[2,1],[-1,6],[-1,8],[-2,6],[-3,2],[-4,3],[3,4],[9,10],[0,3],[-19,-2],[-8,3],[-1,12],[5,6],[31,12],[2,3],[-2,4],[-4,3],[-4,0],[-8,-6],[-4,-2],[-5,-1],[-9,-4],[-7,-6],[-9,-9],[2,0],[-21,-1],[-11,2],[-9,7],[9,3],[7,8],[4,14],[4,19],[-7,-1],[-3,-5],[-1,-7],[-6,-3],[-6,2],[-7,4],[-6,6],[-4,8],[8,5],[0,14],[-3,16],[-6,10],[0,-3],[-3,-1],[-4,1],[-3,3],[32,18],[6,11],[-11,5],[-23,-6],[-12,5],[-22,19],[-12,7],[-13,2],[0,-4],[49,-41],[-9,-9],[-13,-8],[-12,-3],[-8,4],[-1,-4],[-1,-3],[-1,-2],[-1,-3],[-7,7],[-8,3],[-9,-1],[-8,-5],[0,-4],[20,-2],[3,-4],[-4,-11],[-9,-4],[-11,1],[-6,4],[-3,9],[2,9],[-1,7],[-24,9],[-8,6],[-7,8],[2,10],[-6,3],[-16,-4],[-7,-8],[-4,-2],[-4,4],[-13,22],[-2,2],[-3,2],[-4,0],[-4,-2],[2,-5],[6,-9],[2,-13],[-5,-3],[-8,3],[-6,5],[-3,4],[-4,3],[-5,1],[-5,0],[1,-3],[1,-6],[2,-4],[-16,4],[-8,0],[-7,-8],[12,-6],[90,-6],[5,-4],[16,-6],[5,-4],[4,-6],[1,-10],[5,-13],[21,-13],[9,-8],[-5,-5],[0,-5],[3,-11],[1,-8],[0,-8],[-3,-6],[-6,-2],[-6,4],[-9,16],[-6,4],[-30,4],[0,4],[3,0],[1,1],[3,3],[-4,4],[-5,1],[-11,-1],[4,-12],[9,-11],[11,-7],[6,-3],[5,-4],[15,-7],[7,-1],[4,-3],[13,-14],[4,-7],[-5,-8],[-8,0],[-16,4],[-7,-4],[-6,-8],[-7,-5],[-9,5],[-9,15],[-4,2],[-2,-11],[-2,-2],[-6,6],[-6,8],[-3,6],[2,2],[1,2],[0,2],[1,3],[-12,5],[-3,2],[-1,6],[0,6],[-1,5],[-4,4],[-4,-3],[-5,5],[-8,14],[-2,-4],[-3,4],[-10,5],[-4,3],[3,6],[1,2],[-7,0],[-13,-5],[-28,12],[-6,5],[-3,9],[-3,20],[-4,4],[-2,-2],[-1,-6],[-2,-6],[-4,-2],[-3,2],[-6,10],[-4,4],[-13,-5],[-2,-3],[2,-5],[5,0],[4,-1],[2,-8],[2,-3],[9,-6],[8,-3],[2,-5],[1,-7],[1,-7],[1,-6],[1,-3],[1,-2],[3,-5],[11,-9],[5,-8],[6,-7],[1,-2],[0,-8],[0,-7],[2,-5],[3,-3],[0,-4],[8,-7],[2,-7],[-2,-9],[-3,-6],[-9,-7],[6,-6],[13,-3],[4,-4],[0,-1],[-2,-3],[10,-2],[23,-22],[22,-7],[-1,-5],[0,-4],[1,-2],[1,-1],[2,-1],[10,-8],[34,-12],[5,-4],[2,-8],[2,-11],[3,-10],[3,-4],[3,-1],[5,-6],[3,-1],[15,0],[0,-4],[-19,-14],[-11,-5],[-12,-1],[4,-3],[8,-3],[4,-2],[2,-4],[2,-9],[1,-4],[4,-5],[5,-5],[5,-4],[5,-2],[-4,-10],[-6,-1],[-17,9],[-13,-2],[-5,-3],[-3,-1],[-2,2],[-3,4],[-3,3],[-4,2],[-3,1],[-1,1],[-1,2],[0,1],[-1,0],[-2,-1],[0,-2],[0,-2],[0,-3],[-9,-18],[-7,-5],[-12,10],[-8,0],[-16,-3],[-3,0],[-3,2],[-3,3],[-3,5],[-3,3],[-9,1],[-4,2],[-7,16],[-5,4],[-2,-10],[2,-7],[4,-8],[8,-11],[0,-4],[-13,-1],[-6,-3],[-5,-6],[-5,-2],[-32,15],[-3,7],[-1,9],[-2,9],[-4,6],[-5,5],[-3,5],[1,9],[-11,4],[-2,4],[0,5],[4,14],[1,7],[-1,2],[-1,1],[-1,2],[-1,3],[1,4],[0,2],[1,1],[0,1],[13,6],[-5,7],[-24,15],[-17,4],[-21,11],[-7,8],[-1,10],[-2,13],[-2,12],[-4,5],[-9,0],[-7,-2],[-3,-8],[3,-14],[-4,-2],[-8,0],[-7,2],[-3,6],[-1,10],[-6,24],[-3,9],[-3,6],[-5,7],[-6,5],[-5,2],[-3,-3],[2,-9],[7,-16],[4,-7],[2,-4],[0,-6],[-3,-4],[-4,-4],[-5,-3],[-3,-1],[-84,-3],[-6,-5],[34,-7],[4,-5],[6,1],[4,2],[2,3],[5,3],[5,-2],[6,-5],[4,-2],[4,1],[2,1],[2,3],[3,5],[4,3],[16,-1],[-2,0],[9,-3],[5,-2],[4,-5],[7,-16],[4,-8],[15,-8],[20,-24],[12,-3],[-1,1],[1,3],[-6,10],[-5,7],[2,2],[3,1],[3,-1],[3,-2],[0,3],[-1,7],[6,0],[14,-7],[5,-5],[8,-13],[2,-2],[4,-3],[10,3],[5,-4],[-3,-2],[-3,-4],[-5,-10],[4,-15],[0,-10],[-3,-7],[-5,-8],[-4,2],[-1,4],[0,5],[1,4],[-8,12],[-9,4],[-9,-4],[-6,-12],[15,-6],[8,-6],[4,-12],[-9,0],[-8,4],[-29,26],[-7,8],[-6,9],[-2,2],[-3,-2],[-1,-4],[1,-4],[11,-21],[7,-9],[17,-9],[8,-8],[-7,-3],[-5,2],[-11,9],[-6,0],[-6,-3],[-4,-7],[-1,-10],[6,-12],[12,0],[22,8],[-1,-3],[1,-3],[1,-3],[3,-3],[1,3],[4,11],[3,2],[3,-4],[0,-8],[-3,-8],[-3,-4],[1,-7],[-2,-5],[-4,-3],[-4,-2],[17,-16],[10,0],[3,-2],[-4,-6],[-3,-2],[-14,-2],[-13,-8],[0,-4],[22,1],[8,-1],[16,-8],[9,-1],[7,7],[6,3],[16,-3],[4,4],[2,12],[5,4],[7,-1],[6,-5],[-4,-4],[-1,-6],[1,-6],[4,-4],[-8,-12],[-22,-3],[-10,-10],[2,-9],[-6,-9],[2,-6],[5,-2],[6,1],[6,2],[5,3],[1,-3],[2,-2],[1,-4],[1,-3],[-4,-4],[-1,-7],[2,-8],[3,-5],[-1,-6],[-3,-5],[-4,-4],[-3,-1],[-5,1],[-11,11],[-7,-3],[6,-7],[15,-11],[-8,-7],[-3,-1],[-3,1],[-1,3],[-1,3],[-1,1],[-5,-2],[-18,-18],[5,-3],[5,-1],[4,1],[4,5],[3,3],[4,0],[4,-3],[1,-6],[-3,-8],[-14,-26],[-5,-6],[0,-5],[4,0],[4,4],[4,6],[4,8],[19,22],[7,13],[3,4],[5,2],[12,0],[4,2],[0,6],[5,10],[6,9],[5,4],[53,14],[8,-2],[6,-6],[2,-2],[2,5],[1,7],[2,4],[4,4],[6,1],[11,-1],[-3,0],[10,-3],[27,-17],[0,-8],[5,-14],[-3,-3],[-5,-1],[-16,-11],[0,-4],[3,-3],[9,-5],[4,0],[2,-2],[1,-5],[2,-5],[2,-4],[-23,5],[-10,-1],[-11,-8],[4,-4],[3,-1],[14,1],[3,-3],[1,-6],[-6,-3],[-24,1],[-7,2],[0,-4],[22,-13],[7,-7],[3,-5],[1,-3],[1,-2],[4,2],[4,3],[2,5],[3,3],[5,1],[3,-1],[6,-5],[4,-2],[5,0],[19,6],[7,0],[8,-1],[7,-5],[0,-4],[-13,-5],[-2,-3],[3,-2],[9,0],[3,-2],[0,-5],[-5,-11],[-1,-6],[-3,-9],[-7,-6],[-8,-3],[-47,1],[-3,-7],[-25,-3],[3,-8],[5,-5],[6,-3],[6,0],[3,0],[2,1],[2,1],[1,2],[2,4],[2,6],[2,4],[3,2],[11,-4],[22,-18],[12,-2],[-9,-18],[-4,-10],[2,-5],[3,2],[7,7],[1,-2],[2,-5],[1,-2],[3,0],[5,-4],[0,-4],[-15,0],[-6,-4],[-4,-8],[5,2],[4,1],[3,-2],[4,-5],[-2,-6],[2,-4],[4,0],[8,9],[6,3],[6,0],[4,-2],[-1,-6],[-1,-2],[7,-3],[6,5],[10,18],[0,-14],[-4,-52],[-3,-11],[-19,2],[-6,-2],[-5,-6],[-6,-15],[-5,-3],[0,-4],[7,1],[18,11],[7,2],[8,0],[4,-4],[-4,-10],[2,0],[15,5],[5,6],[-3,13],[17,25],[3,3],[7,4],[14,14],[7,3],[0,-5],[-3,-5],[-3,-8],[-2,-8],[-2,-7],[1,-9],[-14,-8],[-5,-7],[9,0],[-5,-16],[-22,2],[-7,-10],[14,-5],[4,-3],[6,3],[19,17],[-3,-11],[-2,-5],[-2,-5],[2,0],[1,-2],[1,-1],[2,-1],[-3,-2],[-1,-5],[0,-5],[2,-4],[3,-1],[2,3],[2,2],[2,-8],[-1,-15],[-8,-7],[-17,-7],[23,-8],[7,-8],[-2,-9],[-2,-6],[-3,-5],[-4,-4],[0,-4],[5,-3],[3,-7],[0,-10],[-1,-8],[3,-2],[2,-4],[1,-5],[-2,-6],[5,-3],[3,-1],[-2,-2],[-1,-4],[-1,-2],[1,-2],[0,-1],[3,-1],[4,0],[13,8],[-4,7],[-5,4],[-5,6],[-2,10],[1,12],[1,10],[9,41],[1,10],[0,12],[-2,10],[-10,18],[-1,10],[4,6],[24,-11],[6,-6],[3,-1],[4,0],[3,0],[1,-4],[0,-8],[-2,-17],[1,-4],[9,15],[3,2],[3,-1],[2,-5],[-1,-5],[-5,-14],[5,-5],[7,-4],[23,-6],[3,3],[-2,12],[6,0],[3,-6],[3,-8],[5,-5],[-2,-5],[2,0],[-3,-6],[-1,-6],[1,-6],[3,-2],[4,3],[2,5],[1,7],[3,5],[7,1],[10,-5],[17,-16],[-4,-5],[-3,-7],[-3,-9],[-3,-7],[4,-6],[0,-10],[-2,-9],[-5,-4],[-38,0],[6,-8],[11,-2],[20,2],[-3,-7],[1,-5],[1,-4],[1,-5],[0,-7],[-1,-5],[-1,-8],[13,-5],[4,15],[2,21],[7,15],[6,23],[3,5],[5,3],[15,21],[3,-15],[-1,-15],[-2,-14],[-5,-11],[-3,-13],[2,-14],[5,-7],[7,4],[-2,5],[-2,10],[0,9],[3,4],[3,1],[3,3],[3,1],[3,-1],[2,-5],[0,-5],[-1,-5],[0,-3],[13,-35],[12,-9],[4,-5],[3,-5],[5,-5],[4,0],[2,8],[-2,4],[-13,16],[-7,14],[-5,14],[1,11],[11,2],[0,4],[-6,4],[-7,7],[-7,9],[-3,9],[4,-1],[4,1],[4,4],[1,8],[-12,18],[-5,14],[2,5],[7,-3],[8,-6],[5,-5],[1,0],[4,1],[0,1],[0,3],[2,2],[2,2],[2,0],[2,-1],[2,-2],[2,-3],[4,-5],[2,0],[2,-2],[1,-9],[-4,-22],[5,-3],[3,7],[4,10],[3,8],[6,-2],[8,-8],[5,-11],[0,-8],[-11,-11],[-5,-7],[-3,-12],[0,-8],[2,-7],[6,-18],[2,0],[0,37],[16,11],[17,-9],[7,-26],[-2,-2],[-5,-3],[-1,-3],[0,-5],[1,-4],[2,-3],[1,-1],[-2,-11],[-2,-6],[-8,-9],[-10,-16],[-5,-2],[-12,0],[-6,-2],[-5,-6],[5,-4],[3,-5],[2,-8],[0,-12],[-2,-10],[-1,-5],[1,-6],[5,-9],[4,-2],[21,8],[31,0],[-1,-3],[-2,-6],[-1,-3],[7,-3],[10,7],[10,12],[6,10],[3,2],[11,1],[2,-1],[1,-9],[-3,-7],[-14,-17],[-3,-6],[-1,-8],[2,-2],[5,5],[7,11],[2,2],[5,5],[1,2],[3,-1],[5,-6],[2,-2],[3,-1],[4,1],[1,2],[-2,7],[1,10],[1,5],[1,5],[3,4],[7,3],[3,3],[2,2],[2,-3],[1,-6],[-1,-5],[-7,-13],[-2,-5],[9,3],[17,14],[8,-1],[-3,-6],[-11,-10],[-3,-4],[4,-4],[17,4],[3,3],[3,-4],[1,-8],[1,-10],[-2,-11],[-4,-6],[-17,-8],[-23,0],[-3,-4],[-5,-9],[19,-11],[6,-11],[-5,-19],[-9,-9],[-12,-3],[-71,20],[-5,0],[-5,-2],[-9,-6],[-18,-3],[1,-1],[0,-2],[0,-2],[51,4],[10,-2],[6,-10],[-7,4],[-3,1],[-4,-1],[2,-3],[1,-4],[3,-3],[2,-2],[-9,-5],[-19,-2],[-8,-5],[5,-5],[6,-1],[47,6],[4,-1],[1,-3],[-2,-5],[-4,-3],[0,-4],[18,0],[9,-5],[5,-12],[-12,-1],[-5,-2],[-20,-18],[-5,-3],[0,-4],[13,0],[4,2],[10,12],[2,2],[8,2],[3,-2],[16,-16],[-1,-6],[3,-2],[7,4],[0,-5],[-2,-1],[-4,-6],[5,-3],[10,-3],[4,-3],[-22,-20],[21,5],[12,0],[6,-9],[-5,-1],[-16,-11],[-13,-3],[-13,-1],[3,-8],[5,-4],[32,-4],[3,0],[8,4],[33,-4],[-2,-9],[-3,-6],[-7,-10],[12,4],[6,3],[5,6],[8,13],[5,4],[11,5],[3,0],[4,-2],[2,-4],[0,-4],[0,-3],[3,-1],[5,5],[5,11],[6,7],[6,-5],[2,-3],[1,-3],[0,-4],[0,-6],[1,-6],[5,-6],[1,-5],[-3,-4],[-42,-23],[-5,-5],[-5,-7],[-17,-11],[3,-10],[-2,-8],[-5,-4],[-5,-3],[-11,-2],[-3,-4],[-3,-10],[4,-14],[6,-10],[7,-6],[46,-17],[16,8],[2,-3],[3,-5],[3,-5],[37,-32],[6,-11],[5,-14],[-4,-12],[-2,-6],[-3,-3],[-8,4],[-4,-1],[-2,-7],[6,-4],[6,-8],[1,-7],[-5,-5],[3,-4],[3,-6],[2,-7],[1,-9],[0,-10],[-1,-6],[-2,-5],[-5,-6],[9,-6],[5,-11],[-1,-13],[-7,-11],[-8,-2],[-13,13],[-8,-2],[9,-20],[23,-5],[5,-18],[0,-6],[-1,-7],[-1,-6],[-4,-3],[-7,1],[-7,7],[-7,4],[-7,-5],[9,-8],[21,-5],[9,-6],[-2,-3],[-6,-3],[-3,-2],[-2,-4],[0,-5],[-1,-3],[-5,-1],[-3,1],[-4,3],[-3,2],[-5,-2],[-2,-3],[-2,-4],[-2,-3],[-3,-2],[-3,2],[-2,4],[-2,5],[-1,3],[-2,5],[-8,3],[-3,3],[-1,4],[0,5],[0,4],[-3,5],[-11,10],[1,9],[-2,7],[0,7],[4,9],[-9,6],[-2,3],[-1,3],[-1,10],[-10,39],[1,2],[1,2],[0,3],[-1,4],[-1,2],[-1,1],[-2,5],[-5,12],[-6,8],[-11,12],[-3,10],[0,6],[2,8],[0,6],[-2,6],[-2,3],[-14,11],[-15,8],[-7,9],[-3,7],[-8,23],[-5,8],[-14,9],[-6,10],[4,0],[13,-4],[-7,11],[-7,6],[-8,3],[-9,0],[-8,3],[-4,-1],[0,-4],[3,-5],[23,-25],[5,-11],[4,-4],[4,-2],[7,-5],[4,-11],[4,-14],[4,-10],[13,-15],[13,-10],[2,-2],[2,-6],[1,-5],[-1,-3],[-19,-8],[-12,-15],[3,-20],[8,-20],[0,-18],[-6,-4],[-15,-1],[-4,-7],[13,0],[15,4],[-3,-8],[-6,-5],[-12,-8],[11,-2],[10,2],[10,-1],[11,-17],[5,-5],[2,-3],[1,-4],[0,-8],[1,-4],[2,-7],[5,-14],[1,-5],[-1,-2],[-1,-4],[-1,-2],[5,-21],[-8,2],[-6,7],[-10,20],[-6,6],[-7,7],[-7,4],[-3,-5],[5,-4],[14,-16],[-7,-15],[-12,8],[-12,13],[-9,2],[11,-25],[3,-4],[26,0],[7,-7],[1,-9],[-4,-7],[-6,1],[-5,5],[-7,5],[-6,0],[-3,-8],[3,-1],[8,-7],[-2,-3],[-1,-1],[0,-4],[35,3],[12,-6],[8,-1],[-3,-6],[-3,-2],[-4,-1],[-2,-2],[2,-5],[4,-2],[17,0],[4,-2],[4,-5],[2,-6],[2,-7],[2,-4],[5,1],[-8,-5],[-17,4],[-7,-3],[7,-8],[18,-5],[3,-11],[-1,-8],[-2,0],[-4,5],[-3,3],[-3,-3],[2,-5],[4,-6],[4,-3],[0,-4],[-3,-3],[0,-5],[2,-4],[3,-4],[0,-4],[-5,-3],[-11,-2],[-6,-3],[6,-4],[13,-4],[6,-5],[7,-13],[4,-4],[3,8],[-2,9],[1,3],[3,2],[2,-1],[19,-27],[-4,-9],[-6,0],[-11,4],[-6,-2],[-2,-6],[-3,-6],[-3,-6],[-9,-3],[-29,3],[-8,6],[-8,9],[-19,10],[-12,14],[-8,7],[-4,7],[-1,6],[-1,7],[-2,7],[-4,4],[-5,-11],[1,-9],[3,-10],[3,-14],[-6,4],[-11,13],[-14,6],[-4,9],[-2,10],[-4,6],[-4,-13],[9,-15],[13,-13],[6,-9],[-1,-7],[-3,-4],[-1,-5],[3,-11],[4,-6],[15,-18],[9,-21],[4,-4],[3,-4],[11,-21],[2,-5],[1,-5],[2,-2],[3,-1],[2,-2],[1,-6],[0,-6],[0,-5],[1,-3],[2,-9],[4,-9],[4,-7],[5,-4],[-3,-7],[-4,1],[-5,4],[-5,2],[0,-9],[-5,-8],[-20,-18],[-8,-5],[-8,-3],[-9,-1],[-11,6],[-10,16],[-15,43],[9,11],[-10,1],[-4,-1],[-5,-3],[2,-9],[-2,-3],[-3,2],[-2,5],[-1,8],[2,6],[9,22],[6,9],[14,12],[-8,5],[-19,-8],[-9,7],[3,9],[1,8],[1,6],[5,2],[12,-2],[6,1],[6,5],[-7,2],[-7,1],[-6,2],[-5,7],[0,7],[0,12],[2,11],[2,7],[-5,4],[-6,-19],[-9,-38],[-2,-1],[-2,-2],[-3,-2],[-3,1],[-1,3],[0,6],[-1,5],[-4,2],[-1,-3],[-3,-10],[-2,-3],[-14,4],[-9,-5],[-12,3],[-10,10],[-4,18],[-2,11],[0,5],[-1,7],[-2,-1],[-4,-8],[-5,2],[-4,4],[-9,11],[3,10],[5,10],[10,16],[-3,4],[2,2],[1,0],[1,2],[-2,4],[-4,6],[-1,2],[-1,6],[1,7],[-1,6],[-3,2],[-4,-4],[-4,-9],[-1,-11],[2,-11],[2,-12],[-7,-8],[-14,-8],[-3,-12],[5,-8],[6,-7],[3,-10],[-3,-8],[-5,6],[-9,17],[-10,10],[-3,2],[-12,-5],[-4,1],[-6,7],[3,8],[12,13],[7,18],[2,2],[3,1],[7,8],[2,3],[0,4],[-9,-1],[-8,-5],[-17,-14],[0,-4],[1,-1],[2,-4],[1,-3],[-16,1],[-8,3],[-6,8],[-3,4],[-1,5],[-2,4],[0,5],[2,1],[2,5],[2,6],[-2,3],[-6,-4],[-5,-6],[-5,-2],[-7,7],[-2,8],[-2,11],[-2,9],[-5,5],[-7,3],[-14,14],[-7,3],[-2,-4],[7,-11],[13,-13],[1,-5],[1,-6],[0,-11],[1,-7],[3,-4],[3,-2],[9,-11],[13,-9],[5,-10],[-2,-1],[-2,-2],[-2,-1],[1,-12],[-7,-5],[-9,0],[-8,4],[-5,10],[-3,5],[-5,2],[-2,-1],[-4,-2],[-2,-1],[-2,2],[-1,4],[0,4],[0,2],[-8,3],[-17,-1],[-8,2],[-6,5],[-12,16],[-4,7],[1,8],[-8,2],[-5,8],[1,7],[7,0],[-3,5],[-7,15],[-11,17],[-2,8],[6,13],[1,7],[-4,10],[-5,7],[-10,11],[-4,6],[-5,5],[-6,4],[-5,6],[-1,12],[3,6],[9,17],[4,9],[-2,0],[1,5],[0,4],[-1,2],[-3,1],[-3,-2],[-1,-3],[0,-6],[-1,-5],[-5,-9],[-11,-15],[-3,-9],[2,-9],[4,-8],[17,-16],[7,-3],[2,-2],[4,-8],[2,-2],[-4,-19],[-2,-9],[5,-6],[4,-9],[2,-2],[1,-2],[-2,-13],[0,-5],[2,-3],[3,-1],[3,-2],[0,-6],[-2,-3],[-10,-6],[-6,4],[-10,14],[-7,3],[3,-9],[4,-8],[4,-7],[5,-6],[16,-13],[5,-6],[2,-9],[-2,-5],[-4,1],[-9,13],[-16,12],[0,-4],[2,0],[0,-4],[-7,1],[-6,6],[-17,26],[-3,5],[-1,5],[1,12],[1,7],[-1,3],[-3,3],[0,6],[2,6],[2,2],[0,11],[-1,4],[-10,27],[-2,11],[1,12],[-7,-2],[-4,-12],[0,-13],[3,-6],[6,-5],[3,-13],[-2,-14],[-6,-9],[-8,1],[-7,6],[-6,10],[-5,10],[-6,8],[-15,11],[-5,7],[0,13],[7,6],[8,4],[4,7],[-3,8],[-6,4],[-6,6],[0,13],[7,21],[2,11],[-6,4],[-5,0],[-1,-3],[0,-4],[-3,-12],[-3,-17],[0,-4],[0,-7],[7,-21],[-7,-3],[-21,3],[-5,2],[-9,14],[-6,3],[0,-3],[6,-5],[3,-7],[0,-6],[-7,-2],[-6,4],[-11,19],[-28,32],[-5,8],[-4,10],[-3,12],[-1,16],[-1,4],[-3,4],[-4,1],[-2,-1],[1,-6],[1,-11],[0,-7],[2,0],[-3,-7],[-1,1],[-2,3],[-6,4],[-7,6],[-3,1],[-4,2],[0,6],[0,7],[-1,5],[-9,12],[-3,8],[4,9],[-7,9],[-9,5],[-7,8],[-3,16],[-4,10],[-8,9],[-5,9],[5,15],[-7,-2],[-13,-9],[-6,-2],[-6,5],[-1,11],[-1,13],[-4,8],[-3,-3],[-2,-1],[-2,2],[-2,6],[0,11],[-7,10],[-16,16],[2,-14],[13,-18],[1,-7],[-1,-9],[5,-9],[10,-12],[3,-13],[-4,-22],[2,-12],[2,-6],[4,-12],[2,-6],[18,-35],[9,-23],[4,-23],[-7,-15],[-10,0],[-15,16],[-9,4],[-2,3],[-2,5],[-3,11],[-5,12],[-2,5],[-21,26],[-16,11],[-4,7],[-5,5],[-11,1],[-5,6],[-3,9],[-2,9],[-3,8],[-4,4],[2,-13],[-4,-3],[-5,2],[-3,4],[-3,8],[-13,-5],[-5,7],[6,5],[1,8],[-3,10],[-7,18],[-3,7],[-5,5],[-8,0],[0,-4],[7,-17],[3,-11],[-2,-5],[-7,2],[-14,9],[-7,2],[-3,3],[-4,9],[-4,10],[-1,8],[-3,4],[-12,12],[-3,3],[-3,0],[-6,3],[-3,0],[-1,-1],[1,-3],[0,-3],[-1,-1],[-9,0],[-43,26],[-5,2],[1,-7],[2,-3],[6,-6],[1,-4],[-1,-6],[-3,-2],[-3,1],[-2,4],[-8,-6],[-31,11],[-8,5],[-4,2],[-18,0],[-1,-7],[2,-5],[19,-21],[10,-17],[16,-15],[3,-9],[1,-7],[-9,-2],[-5,-7],[4,-3],[5,-3],[9,-2],[3,-3],[3,-7],[2,-8],[3,-6],[12,-17],[8,-8],[12,-7],[17,-17],[9,-14],[10,-3],[19,1],[-2,-7],[-4,-2],[-9,1],[2,-6],[12,-18],[13,-9],[6,-9],[12,-23],[10,-6],[3,-5],[3,-5],[2,-4],[-1,-2],[-2,-3],[-1,-4],[0,-4],[2,-3],[5,-1],[5,-4],[8,-7],[3,-5],[-1,-8],[-3,-4],[-4,-1],[-4,1],[5,-8],[11,-5],[4,-5],[5,-8],[3,-5],[4,-1],[6,-1],[14,6],[13,-9],[19,-5],[8,0],[-3,-5],[-3,-3],[-2,-3],[-3,-12],[-8,-17],[4,-5],[6,1],[6,5],[5,7],[-2,10],[6,7],[9,1],[18,-18],[11,0],[22,8],[13,0],[6,-3],[2,-9],[-2,-9],[-6,-4],[-23,0],[-5,-3],[-2,-7],[-2,-5],[-11,-7],[-4,-5],[10,0],[-2,-8],[2,-6],[3,-3],[4,0],[0,-4],[-3,-1],[-3,-2],[-2,-3],[-1,-6],[8,-1],[5,0],[3,3],[0,5],[-1,7],[-3,6],[-3,4],[18,17],[3,7],[7,0],[7,-3],[6,1],[6,9],[4,1],[5,-5],[6,-8],[3,-7],[-1,-7],[-5,-5],[-8,-3],[-6,-1],[-6,-2],[-8,-5],[-6,-7],[2,-6],[-6,-4],[-2,-3],[-2,-5],[1,-6],[2,-2],[2,-1],[1,1],[0,-4],[4,9],[15,14],[6,9],[5,-5],[6,3],[14,10],[4,0],[6,-1],[5,-3],[7,-7],[1,-2],[-1,-5],[-4,-7],[-1,-2],[-2,-1],[1,-1],[1,0],[0,-1],[0,-2],[7,4],[5,1],[5,-2],[17,-22],[6,-4],[7,-2],[0,-4],[-34,-12],[0,-4],[13,-1],[6,1],[6,4],[-2,-4],[10,11],[8,4],[7,-3],[6,-13],[-5,-9],[-8,-7],[-7,-7],[5,0],[10,6],[2,0],[3,-6],[5,1],[10,7],[5,-8],[3,-6],[1,-5],[-1,-6],[-7,-11],[-1,-5],[4,1],[8,7],[11,0],[0,-3],[-1,0],[-1,0],[-1,-1],[2,0],[0,-1],[-2,-3],[7,-9],[2,-4],[0,-5],[-3,-6],[-9,-13],[2,-3],[10,5],[10,1],[20,-3],[-3,-2],[-11,-6],[-4,-3],[-3,-4],[-6,-9],[7,0],[61,16],[10,-8],[-4,-2],[-4,-4],[-3,-6],[-2,-8],[23,8],[5,-4],[-3,-3],[-10,-5],[3,-5],[3,-3],[4,-1],[7,5],[5,-1],[4,-3],[4,0],[-1,-2],[0,-2],[-1,-2],[-2,-2],[5,-12],[15,-13],[3,-14],[4,-11],[8,-3],[5,-5],[-5,-16],[1,-9],[-6,-15],[1,-8],[4,-2],[6,5],[6,6],[4,3],[23,4],[1,-2],[-3,-6],[-9,-8],[19,-20],[-2,-6],[-3,-1],[-3,0],[-9,-4],[-2,-2],[-3,-5],[-2,-3],[-8,1],[-5,-1],[-2,1],[-2,0],[0,-2],[0,-4],[0,-3],[1,-3],[12,-9],[24,-30],[10,2],[-11,21],[-5,14],[6,5],[11,6],[5,-1],[3,-4],[5,-8],[3,-5],[2,12],[2,5],[2,0],[4,-5],[1,-2],[0,-4],[1,-4],[5,-3],[5,-5],[3,-2],[-1,-2],[-1,-3],[-1,-3],[-1,-4],[4,-8],[0,-2],[0,-3],[1,-6],[-1,-4],[-3,5],[-5,5],[-8,2],[-14,-1],[23,-15],[34,-8],[5,7],[-2,0],[8,6],[9,-5],[16,-22],[0,-4],[-23,-14],[-7,-8],[-3,-6],[-1,-3],[-1,-4],[1,-7],[1,-4],[5,-13],[0,-4],[-2,-6],[-1,-3],[-1,-1],[-4,0],[-7,6],[-1,0],[-1,3],[-8,-1],[-2,0],[-9,22],[-5,6],[-7,-11],[1,-2],[2,-2],[2,0],[3,5],[1,-3],[1,-4],[1,-2],[15,-31],[2,-5],[0,-7],[-1,-4],[-8,-4],[-2,-2],[6,-4],[9,-3],[6,-3],[2,-7],[4,-13],[1,-3],[4,0],[7,5],[4,-3],[0,-5],[0,-6],[0,-5],[6,-4],[3,-5],[2,-6],[-1,-7],[-6,-6],[-17,1],[-4,-5],[-4,-3],[-30,1],[-29,-11],[-17,10],[-19,1],[-9,4],[-14,9],[-6,2],[-9,1],[-4,2],[-7,11],[-3,3],[-3,-2],[-4,-2],[-3,-2],[-4,2],[-6,8],[2,6],[11,10],[-5,4],[-12,-4],[-5,0],[-2,3],[-2,4],[-3,7],[-2,2],[-6,5],[0,2],[1,6],[-8,2],[-22,2],[-18,14],[-7,2],[6,-6],[2,-2],[-6,-11],[-9,5],[-15,18],[-4,-2],[-9,-8],[-5,-2],[-5,2],[-5,4],[-28,32],[-3,2],[-3,1],[0,-3],[-2,-8],[-1,-2],[-17,-5],[-2,3],[-1,5],[-1,8],[-2,8],[-2,6],[5,1],[0,5],[-2,4],[-18,6],[-25,-3],[-9,3],[-7,10],[-9,8],[-9,-3],[-8,-7],[-9,-4],[-22,4],[-22,8],[1,5],[1,4],[3,2],[2,1],[0,4],[-3,3],[-3,0],[-5,-3],[0,-1],[-3,-5],[-1,-2],[-3,0],[-4,3],[-26,9],[-7,0],[-7,-2],[-4,0],[-4,2],[-1,2],[-1,4],[-2,4],[-2,2],[-2,-1],[-4,-5],[-2,-2],[-123,19],[-16,9],[-5,6],[-8,6],[-6,2],[-10,8],[-3,3],[0,4],[4,4],[2,0],[0,4],[-31,8],[-2,5],[-1,10],[-3,8],[-7,2],[-5,-10],[-3,-2],[-3,0],[-4,3],[-4,3],[-3,4],[-5,4],[-12,-6],[-7,2],[-47,38],[-25,29],[-6,28],[-2,0],[11,46],[-1,3],[-3,3],[-4,1],[-2,-18],[-2,-4],[-2,-5],[-4,-6],[-2,-3],[-2,-7],[-1,-5],[-1,-5],[-4,-4],[-2,4],[-1,3],[1,4],[-1,5],[-2,3],[-2,2],[-1,4],[-1,6],[0,6],[1,3],[0,2],[-2,5],[-3,3],[-10,7],[2,-7],[2,-4],[2,-4],[2,-5],[0,-7],[-1,-5],[0,-5],[3,-4],[-6,-4],[-4,6],[-3,10],[-3,4],[-5,3],[-6,7],[-8,17],[-10,14],[-1,6],[6,7],[7,2],[20,-2],[0,3],[-2,2],[-2,6],[9,0],[4,2],[2,7],[-17,0],[-11,-3],[-5,1],[-5,6],[9,12],[10,4],[23,0],[4,1],[3,2],[2,4],[-1,5],[-5,2],[-15,-6],[-5,2],[-4,4],[-4,3],[-11,-6],[-5,1],[-13,11],[-2,2],[-2,1],[-3,-2],[0,-3],[0,-11],[-1,-2],[-4,-2],[-7,-6],[-5,0],[5,20],[-11,2],[-12,6],[-10,9],[-10,12],[-2,-3],[-2,-1],[2,-5],[6,-14],[4,-5],[4,-2],[4,-4],[3,-7],[-1,-1],[-3,-3],[1,-2],[3,-7],[2,-3],[-6,-1],[-3,3],[-6,12],[-4,5],[-4,0],[-10,-3],[-5,2],[-4,6],[-8,16],[-10,-15],[-6,-5],[-20,-11],[-4,-1],[-5,1],[-12,6],[-5,1],[-22,-3],[-7,3],[-20,18],[-8,2],[-4,4],[-12,17],[-9,5],[-4,4],[-3,5],[-1,4],[-2,4],[-4,2],[-7,0],[-42,12],[-32,2],[-8,6],[0,-4],[-15,9],[-4,4],[8,6],[19,-1],[9,3],[-10,1],[-20,8],[-10,2],[-12,-4],[-20,6],[-4,3],[0,4],[6,2],[18,-3],[4,5],[-1,9],[-3,6],[-1,6],[7,7],[-4,8],[-5,1],[-7,-3],[-5,-6],[0,-4],[0,-5],[0,-5],[-4,-2],[-2,0],[-6,-3],[-17,-3],[-8,1],[-4,5],[0,7],[3,8],[4,6],[3,3],[25,-4],[2,2],[4,11],[2,4],[3,2],[6,3],[3,2],[1,4],[0,6],[1,5],[3,4],[7,2],[6,4],[8,4],[8,7],[4,1],[0,3],[-1,2],[-1,3],[-10,-2],[-7,-6],[-6,-6],[-3,-2],[-3,0],[0,3],[-1,5],[-2,5],[-2,3],[4,3],[8,5],[3,5],[-8,4],[-11,-5],[-9,-12],[0,-14],[2,-8],[-4,-6],[-4,-6],[-3,-4],[-22,-2],[-6,3],[-2,5],[-2,5],[-2,3],[-2,-3],[-10,-20],[-1,-5],[-2,-23],[-3,-5],[-5,-1],[-7,2],[-4,3],[0,3],[6,4],[-2,5],[-7,5],[-6,2],[-18,1],[-8,4],[-7,12],[5,5],[4,10],[1,9],[-5,4],[-2,-1],[-7,-6],[-2,-3],[-3,-1],[-11,11],[-17,3],[-16,9],[-20,18],[-7,3],[2,6],[4,2],[9,0],[0,4],[-13,12],[-12,5],[-3,3],[3,6],[4,3],[19,0],[5,3],[0,6],[-6,5],[-27,-7],[0,4],[2,1],[6,4],[-7,5],[-1,6],[2,7],[-2,9],[-8,10],[-7,7],[14,-1],[7,1],[5,4],[-1,1],[-4,3],[0,11],[-4,13],[-5,7],[-5,-7],[-1,-7],[-7,-2],[-31,4],[-7,5],[-4,15],[-3,2],[-3,-2],[-1,-4],[0,-11],[-1,-3],[-3,0],[-18,3],[-1,2],[1,3],[2,3],[3,1],[0,4],[-8,1],[-9,6],[-5,7],[5,2],[7,-1],[4,-2],[2,-3],[2,-6],[4,3],[6,9],[4,1],[15,-5],[26,0],[52,-12],[20,1],[9,5],[5,10],[-3,7],[6,5],[37,9],[6,7],[-1,2],[-2,4],[-1,2],[8,9],[18,7],[11,15],[1,4],[-1,3],[-3,4],[0,3],[3,6],[5,2],[9,0],[-7,8],[-10,2],[-9,-6],[-4,-14],[1,-5],[0,-3],[-1,-2],[-14,-1],[-5,1],[-4,4],[13,14],[2,6],[-1,10],[-3,4],[-6,2],[-5,0],[3,-9],[1,-3],[-4,-2],[-3,-1],[-8,-1],[1,-6],[2,-1],[2,-1],[0,-4],[-7,-3],[-13,-2],[-14,1],[-6,6],[3,17],[7,4],[9,-1],[8,3],[-5,7],[-18,0],[-4,7],[1,4],[3,6],[0,6],[1,5],[3,5],[3,3],[3,1],[0,4],[-4,0],[-6,-6],[-4,-2],[-3,2],[0,4],[2,4],[1,2],[-6,3],[-6,0],[-5,-2],[-4,-7],[0,-6],[9,-14],[3,-6],[0,-8],[-2,-1],[-9,5],[0,1],[-6,10],[-12,9],[0,4],[6,1],[2,8],[1,9],[3,7],[-5,7],[-7,-10],[-9,-26],[-2,3],[-1,2],[-2,3],[-1,4],[3,10],[-3,10],[-14,20],[-3,2],[-4,3],[-12,1],[-3,3],[1,2],[3,5],[2,1],[-11,7],[-10,-8],[-8,-15],[-6,-16],[2,-2],[2,-3],[6,5],[7,11],[6,1],[-1,-4],[-1,-4],[6,-2],[13,5],[6,-3],[-3,-5],[-4,-16],[-1,-4],[-5,-2],[-1,-6],[1,-7],[4,-5],[-7,-6],[-4,-7],[-4,-5],[-6,2],[-4,-2],[-2,0],[0,6],[1,3],[2,2],[2,1],[3,4],[4,3],[1,4],[-3,9],[-4,8],[-3,2],[-17,-29],[-5,-4],[-4,9],[2,7],[-1,8],[-1,8],[-2,5],[-3,5],[-2,-4],[-3,-5],[-6,-4],[-5,3],[-4,6],[-8,14],[-4,10],[-3,3],[-3,-1],[-1,-5],[0,-7],[1,-6],[1,-4],[-3,-11],[-1,-6],[1,-7],[1,-14],[-5,-1],[-24,2],[-1,4],[0,35],[-4,6],[-8,0],[0,4],[6,7],[4,4],[3,1],[5,-2],[11,-8],[4,2],[-4,7],[-3,9],[0,8],[4,4],[2,5],[8,27],[5,5],[5,3],[10,1],[5,1],[12,15],[-20,-8],[-7,0],[-6,2],[-5,4],[-2,7],[3,7],[-5,16],[-7,-11],[-1,-5],[-1,-1],[0,-1],[-1,-2],[0,-4],[1,-4],[4,-6],[1,-2],[-1,-8],[-4,0],[-5,5],[-5,7],[-5,-18],[-7,-10],[-8,-7],[-7,-10],[7,-6],[3,-5],[1,-7],[-1,-8],[-2,-1],[-8,3],[-19,-1],[-11,2],[-6,7],[4,3],[13,2],[4,7],[-8,3],[-24,15],[-6,9],[-7,-3],[-6,-5],[-6,1],[7,15],[0,8],[-4,9],[-3,13],[10,5],[5,6],[2,7],[-1,6],[-1,5],[-1,5],[1,7],[5,16],[-5,2],[-12,-10],[-4,2],[-3,9],[2,7],[2,8],[2,12],[-2,3],[-2,3],[-3,0],[-1,-6],[-1,-11],[-1,-11],[-1,-5],[-2,-5],[0,-5],[0,-3],[4,-4],[3,-1],[3,-3],[3,-6],[-4,-5],[-4,-4],[-4,-3],[-4,-1],[-5,3],[-2,4],[0,7],[-2,7],[-9,9],[-21,4],[-8,7],[3,3],[2,1],[2,0],[0,4],[-4,2],[-13,-1],[-4,3],[-2,8],[2,5],[4,5],[4,3],[3,0],[3,0],[3,2],[0,7],[-1,6],[-2,1],[-2,1],[-2,3],[-1,10],[0,8],[-1,6],[-4,8],[-5,5],[-7,3],[-14,0],[-12,-6],[-6,1],[-2,9],[3,6],[4,5],[2,7],[-3,11],[-13,5],[-3,5],[-3,2],[2,5],[1,2],[2,1],[3,0],[-7,6],[-24,5],[-3,15],[-2,5],[-3,1],[-3,-4],[2,-4],[-3,-5],[-4,0],[-10,1],[0,-4],[5,-2],[5,-8],[1,-10],[-4,-8],[-7,-3],[-9,2],[-8,5],[-4,8],[-1,5],[1,12],[-3,12],[1,3],[4,5],[2,1],[3,1],[3,2],[1,6],[1,3],[1,5],[1,4],[2,2],[2,-2],[4,-7],[3,-3],[3,-1],[3,1],[2,3],[0,1],[-3,3],[-12,14],[-6,3],[-5,-3],[-4,-14],[-5,-3],[-7,2],[-18,18],[9,22],[6,7],[5,-3],[7,-6],[9,2],[7,8],[7,10],[-6,4],[-6,-3],[-6,-5],[-6,-3],[-8,3],[0,7],[5,8],[30,20],[5,2],[1,2],[3,12],[1,4],[2,4],[13,3],[6,3],[2,4],[1,5],[1,4],[-1,7],[-2,4],[-2,-1],[-5,-8],[-6,-5],[-7,-2],[-6,5],[-2,4],[0,3],[1,3],[-1,6],[-2,10],[-1,4],[-2,3],[-1,6],[-1,2],[-2,0],[-1,-2],[-1,-2],[-1,-1],[-3,-1],[-2,-3],[-2,-4],[-2,-4],[6,-11],[6,-15],[2,-17],[-3,-16],[-5,-4],[-26,-8],[-6,-4],[-5,-2],[-5,4],[4,9],[0,10],[-2,8],[-4,6],[0,3],[4,0],[4,-2],[3,-3],[8,-9],[2,1],[3,3],[2,2],[0,2],[-13,10],[-3,6],[0,4],[2,2],[5,1],[-6,7],[-7,-1],[-11,-10],[-6,-3],[-8,0],[-5,3],[1,8],[-2,9],[-5,10],[-5,10],[-7,4],[-6,-1],[-1,-5],[2,-7],[2,-10],[-1,-8],[-2,-6],[-3,-6],[-2,-7],[6,-1],[5,-3],[-5,-7],[-23,-4],[0,-2],[0,-3],[0,-3],[-1,-1],[-2,1],[-4,3],[-2,0],[-3,2],[-5,9],[-8,5],[-9,17],[-6,4],[-8,-1],[-3,-3],[-1,-8],[3,-4],[11,-5],[-2,-12],[4,-8],[5,-6],[2,-8],[2,-8],[5,-3],[5,-1],[4,-3],[-2,5],[2,-3],[1,-2],[1,-3],[1,-4],[-3,-5],[-3,-3],[-3,1],[-7,11],[-4,5],[-5,2],[-3,-4],[1,-4],[2,-7],[0,-6],[-6,-2],[-5,1],[-8,9],[-5,2],[1,-14],[-2,-9],[-1,-8],[8,-10],[-3,-4],[-4,-4],[-7,-4],[0,-4],[0,-5],[0,-11],[0,-10],[-2,-7],[-5,-1],[-6,5],[-6,3],[-5,-7],[1,5],[-3,-2],[-5,1],[-4,3],[1,6],[-5,3],[-5,0],[-4,2],[-3,7],[11,-1],[5,1],[5,4],[-2,4],[-1,5],[-1,7],[9,9],[-6,10],[-13,9],[-7,8],[22,-3],[6,-12],[5,-3],[3,7],[-2,13],[-21,43],[12,-3],[23,-12],[13,-1],[0,4],[-6,8],[-6,5],[-26,15],[-3,1],[-14,-3],[-4,3],[0,3],[10,9],[35,-5],[-4,11],[-15,12],[-3,12],[1,4],[3,12],[2,14],[2,14],[1,6],[-4,7],[-5,7],[-5,2],[-5,-3],[-2,-9],[5,-16],[-3,-12],[-3,-2],[-6,3],[-4,-1],[-6,-10],[-4,-2],[-4,8],[-3,-6],[-1,-7],[0,-7],[5,-15],[-1,-6],[-7,-16],[-10,15],[-4,9],[0,7],[6,6],[2,4],[-1,6],[-2,5],[-4,4],[-3,4],[-3,1],[-4,-4],[0,-21],[-4,-7],[-6,2],[-11,15],[-6,4],[4,-11],[5,-12],[7,-11],[5,-7],[-6,-12],[-7,0],[-7,8],[-5,12],[4,2],[2,4],[0,4],[-4,2],[-4,-1],[-9,-6],[-6,-1],[-8,2],[-4,3],[-3,3],[-1,4],[-1,12],[-2,5],[-4,4],[-13,7],[-4,7],[-5,7],[-14,19],[4,4],[2,3],[0,3],[1,3],[2,0],[3,-1],[2,0],[2,6],[1,6],[2,6],[10,7],[10,23],[4,4],[12,-7],[7,0],[1,8],[-5,7],[-17,1],[-4,8],[3,2],[2,2],[3,3],[1,6],[-7,-1],[-21,4],[-4,-3],[1,-6],[3,-7],[1,-8],[-6,3],[-17,-3],[-5,-4],[1,-7],[5,-13],[3,-12],[0,-7],[-2,-8],[-4,-3],[-4,2],[-13,15],[-4,3],[-4,2],[-1,-3],[-1,-5],[-3,-6],[-4,-3],[-4,1],[-10,9],[-5,3],[-14,1],[-5,-1],[7,-17],[11,-5],[12,-2],[9,-7],[2,-4],[0,-7],[1,-4],[2,-3],[3,-4],[2,-2],[5,-6],[13,-3],[6,-4],[38,-34],[34,-41],[-10,-9],[-5,-3],[-6,0],[-15,5],[-8,-1],[-5,-8],[17,-1],[8,-5],[5,-10],[-6,-4],[-4,4],[-4,5],[-5,3],[-4,-3],[1,-6],[2,-7],[3,-4],[6,-5],[12,-2],[6,-4],[2,-4],[-5,-3],[-4,-5],[0,-10],[-6,-2],[-9,1],[-6,-2],[0,-9],[-13,-4],[-7,-4],[1,-8],[0,-4],[-9,3],[-12,11],[-10,2],[1,-3],[1,-6],[1,-3],[-9,1],[-10,6],[-10,9],[-7,10],[-4,4],[-5,-3],[-4,-4],[-4,-3],[-5,3],[-8,11],[-26,14],[-8,12],[-4,5],[-5,-1],[-4,-6],[2,-4],[5,-3],[3,-3],[1,-8],[-3,-2],[-5,1],[-5,-2],[2,-5],[-3,-3],[-3,-1],[-3,1],[-2,3],[-3,10],[-1,3],[-2,1],[-4,1],[-13,10],[-4,4],[-9,14],[-3,2],[-9,3],[-15,11],[-9,2],[-15,0],[-7,6],[-1,14],[-13,-5],[-13,1],[-12,6],[-24,23],[-7,3],[-7,-5],[1,-7],[5,-8],[6,-5],[5,-3],[0,-3],[-9,0],[-3,-1],[-4,-4],[3,-1],[1,-4],[1,-6],[2,-7],[4,-4],[6,-3],[11,-3],[12,-16],[10,-6],[4,-4],[3,-6],[-1,-3],[-2,-2],[-2,0],[-2,0],[2,0],[-7,2],[-12,10],[-6,-4],[6,-6],[7,-5],[-4,-3],[-4,2],[-7,9],[-32,17],[-8,2],[-8,-3],[3,-3],[4,0],[3,-1],[8,-8],[2,-1],[3,-2],[8,-10],[4,-4],[-2,-2],[-2,-1],[-2,-1],[-2,0],[2,0],[3,-6],[26,-22],[-6,-7],[-10,1],[-17,6],[-1,-3],[-1,-4],[-2,-3],[-4,6],[-12,6],[-4,1],[-4,-2],[-4,-5],[-1,18],[-7,-1],[-14,-13],[-5,-3],[-3,-4],[-4,-4],[-6,3],[-2,4],[-1,5],[-2,3],[-5,0],[2,0],[-15,-8],[3,0],[2,-1],[2,-1],[2,-2],[-7,-9],[-18,8],[-15,-11],[-18,7],[-8,-3],[7,-6],[9,-15],[7,-4],[17,4],[8,-2],[5,-10],[-36,-12],[-9,6],[-8,10],[-11,7],[-12,2],[-7,-5],[4,-3],[8,0],[5,-1],[3,-3],[6,-7],[4,-2],[-7,-8],[-14,-3],[-11,5],[-2,14],[-15,4],[-3,-4],[-2,-1],[-2,5],[-1,2],[-2,1],[-1,1],[-3,-2],[-6,-14],[-3,-3],[-14,-1],[2,6],[0,2],[-8,6],[-5,-5],[0,-12],[4,-13],[-1,-8],[3,-5],[5,-2],[5,-1],[4,-4],[0,-7],[-3,-7],[-6,-3],[-5,1],[-10,6],[-6,1],[-23,0],[5,5],[5,3],[-3,4],[-1,0],[-2,1],[2,4],[-10,1],[-10,5],[-18,18],[-5,-10],[-10,1],[-19,13],[-8,9],[-5,3],[-2,-6],[-3,-4],[-20,-6],[-36,-20],[-8,4],[0,4],[4,13],[-1,3],[-2,1],[-4,6],[-3,1],[-3,0],[-3,-2],[-3,-1],[-4,3],[5,4],[10,3],[4,5],[-7,7],[-2,1],[-2,-1],[-2,-3],[-2,-4],[-31,0],[0,4],[8,7],[7,10],[-5,4],[-13,0],[-23,18],[-4,2],[-2,-8],[3,-14],[1,-13],[-9,-6],[-1,2],[-2,6],[-1,1],[-8,4],[-3,-1],[-2,0],[-2,-1],[-3,2],[-1,2],[-2,8],[-1,2],[-22,4],[-5,4],[-11,16],[4,2],[7,-2],[3,0],[2,2],[4,4],[2,4],[-2,2],[-12,0],[-13,-4],[-7,-4],[-3,0],[-2,2],[-5,5],[-3,1],[-3,2],[-2,4],[0,5],[2,2],[2,0],[9,8],[0,3],[-21,18],[-8,13],[3,10],[0,4],[-6,5],[-16,4],[-7,8],[-1,1],[-3,5],[0,4],[3,2],[12,0],[0,4],[-5,3],[-4,4],[-2,7],[2,10],[-2,5],[-2,2],[-3,2],[-3,-1],[2,12],[2,6],[8,11],[-9,5],[-31,-1],[8,5],[24,6],[-1,2],[-1,1],[1,1],[1,1],[-1,11],[4,9],[6,6],[6,2],[2,2],[2,4],[0,5],[-1,2],[-1,1],[1,3],[1,2],[2,2],[10,0],[-1,7],[1,6],[2,7],[-2,5],[-4,6],[-4,3],[-5,2],[-2,5],[-2,11],[-3,25],[0,3],[0,3],[3,6],[4,4],[8,5],[6,8],[6,5],[7,8],[9,3],[3,3],[1,2],[0,4],[0,4],[1,3],[2,1],[20,10],[4,1],[17,13],[16,3],[15,8],[8,6],[5,8],[8,9],[10,1],[21,-4],[9,2],[15,9],[15,3],[7,5],[6,6],[5,8],[-19,28],[-16,16],[-8,13],[-9,11],[-4,7],[2,6],[10,23],[4,6],[40,-14],[6,11],[-6,10],[-26,24],[-8,13],[12,8],[43,0],[-2,-2],[-2,-1],[-3,-1],[-3,0],[0,-4],[22,-3],[20,-9],[1,-9],[8,-5],[34,-3],[3,3],[2,7],[5,3],[28,-1],[5,-3],[9,-11],[3,-1],[26,3],[77,-36],[77,-37],[7,-1],[15,0],[7,-2],[7,-11],[2,-2],[14,0],[6,-2],[12,-8],[13,-3],[7,-4],[6,-5],[5,-6],[-1,-3],[-3,-9],[5,-3],[2,-7],[1,-7],[1,-3],[24,-9],[15,-11],[10,-2],[11,-7],[20,-19],[3,-7],[2,-11],[4,-10],[1,-9],[-7,-5],[2,-4],[5,-12],[-3,-5],[-4,-4],[-4,-2],[-8,-3],[-5,-7],[-4,-3],[-11,0],[-21,8],[-10,-5],[4,-5],[4,-5],[9,-6],[-2,0],[2,-6],[1,-15],[1,-7],[5,-8],[6,-2],[19,2],[3,-2],[3,-2],[3,-4],[0,-2],[-1,-2],[0,-6],[-2,-8],[-4,-3],[-11,1],[0,-3],[0,-1],[1,0],[1,0],[-3,-3],[-2,-2],[-1,-4],[2,0],[-2,-4],[8,-3],[8,0],[8,-3],[7,-10],[-2,0],[0,-4],[4,0],[5,-3],[2,-5],[-4,-5],[8,-2],[13,1],[10,6],[1,10],[-4,5],[-8,8],[-3,5],[-2,7],[-1,7],[0,11],[1,4],[-4,3],[-1,0],[1,10],[2,8],[3,7],[3,4],[-3,5],[-2,5],[1,7],[2,7],[-6,0],[-5,-3],[-16,-22],[-4,-3],[-3,0],[-7,3],[-4,1],[-9,-3],[-4,0],[-4,3],[6,6],[18,6],[0,8],[4,12],[7,8],[8,4],[8,1],[-2,13],[6,2],[14,-7],[11,-9],[5,-1],[-2,10],[-3,5],[-3,5],[1,6],[4,5],[4,0],[4,3],[1,14],[2,11],[5,4],[4,2],[2,4],[0,13],[-1,6],[-4,3],[-11,-1],[-2,-6],[-1,-9],[0,-10],[-2,-10],[-4,-9],[-6,-5],[-9,-5],[-3,-4],[-3,-2],[-5,4],[-2,5],[-4,18],[-2,6],[-8,14],[-17,23],[-8,13],[-10,13],[-23,9],[-10,9],[-3,-5],[-4,-2],[-3,2],[-3,5],[2,2],[1,1],[1,3],[1,2],[-11,14],[-14,8],[-30,6],[3,6],[0,5],[-3,4],[-7,3],[-2,5],[0,7],[-2,7],[65,-9],[3,2],[7,7],[4,1],[2,4],[3,4],[1,3],[6,0],[5,-5],[1,-8],[-4,-8],[8,-13],[10,-5],[68,-6],[25,-8],[6,1],[12,6],[5,1],[7,7],[6,14],[3,15],[-3,9],[-4,20],[-2,7],[-1,3],[1,1],[6,1],[5,0],[24,-11],[3,-1],[2,2],[4,5],[3,2],[18,3],[5,-1],[9,-5],[6,-1],[4,1],[4,2],[4,4],[2,7],[1,10],[3,4],[5,4],[2,-4],[7,0],[3,-1],[0,-3],[0,-4],[-3,-2],[-7,-6],[8,-3],[4,-3],[2,-6],[-3,0],[-3,-1],[-2,-1],[-2,-3],[9,-16],[15,-8],[16,-2],[13,6],[20,22],[6,6],[13,7],[5,5],[6,24],[5,12],[5,5],[31,4],[7,5],[-6,6],[-3,5],[-1,5],[2,4],[10,0],[3,2],[4,3],[4,0],[8,-1],[7,0],[2,0],[1,-2],[3,-6],[13,-9],[7,0],[12,15],[9,2],[29,-7],[11,-4],[-1,-3],[0,-8],[2,-7],[5,-7],[7,-6],[5,-3],[7,1],[15,9],[5,-4],[6,-6],[8,-4],[8,0],[6,4],[-8,12],[2,5],[0,3],[-1,3],[-3,1],[2,0],[-9,17],[-15,35],[-12,13],[0,5],[3,2],[3,4],[1,6],[-1,7],[-4,7],[-5,1],[-5,-1],[-5,1],[-2,3],[-2,5],[-2,7],[0,6],[2,9],[2,3],[9,0],[-4,6],[-5,4],[-4,6],[-2,11],[-2,5],[-19,13],[-11,11],[-6,4],[-15,3],[-14,8],[-7,2],[-10,7],[-19,31],[-14,10],[-14,17],[-7,16],[-4,7],[-6,1],[2,0],[-52,53],[-10,17],[-4,12],[0,10],[4,8],[10,15],[21,23],[73,44],[9,11],[4,3],[3,3],[4,0],[3,3],[7,10],[4,3],[4,1],[11,-1],[-1,6],[-1,3],[4,5],[4,3],[8,4],[12,11],[9,5],[18,24],[72,54],[7,8],[6,26],[6,13],[7,10],[5,7],[4,3],[16,8],[10,8],[13,4],[17,14],[9,4],[24,-1],[17,5]],[[17965,94003],[2,-13],[-1,-4],[-3,-2],[-5,0],[-14,-6],[-4,-4],[-10,-15],[-2,-3],[-22,-3],[-5,-3],[-10,-9],[-45,-28],[-63,-19],[-66,-24],[-67,-14],[-12,-14],[-58,-21],[-16,-14],[-6,-3],[-17,-4],[-15,-15],[-22,-13],[-45,-15],[-15,-14],[-4,-3],[-49,-6],[-82,-44],[-21,-5],[-31,-25],[-32,-15],[-15,-11],[-54,-17],[-54,-29],[-8,-8],[-7,-12],[-10,-10],[-14,-4],[-40,-1],[-14,-6],[-38,-30],[-61,-31],[-6,-1],[-5,-3],[-3,-7],[-1,-9],[-2,-7],[-1,-7],[2,-16],[0,-8],[-4,-5],[-11,-9],[-4,-6],[1,-11],[-5,-8],[-6,-6],[-6,-7],[-2,-10],[-3,-15],[-1,-14],[4,-6],[3,-3],[-3,-5],[-4,-6],[-3,-3],[-13,-6],[-14,-10],[-60,-27],[-33,-26],[-10,-4],[-6,0],[-20,5],[-7,0],[-14,-4],[-55,7],[-6,5],[16,6],[3,6],[-7,4],[-11,1],[-10,-1],[-7,-6],[-2,-12],[5,-6],[13,-8],[4,-8],[1,-8],[1,-7],[6,-16],[0,-7],[-1,-7],[-3,-8],[-8,-18],[-31,-39],[-11,-11],[-13,-9],[-11,-12],[-7,-21],[13,-17],[7,-11],[-1,-4],[-4,-7],[0,-14],[-1,-16],[0,-12],[-3,-16],[-1,-9],[3,-8],[6,-14],[2,-7],[0,-5],[-1,-6],[-5,-11],[-5,-17],[-26,-54],[-33,-31],[-36,-11],[-63,-26],[-59,-11],[-61,-18],[-51,13],[17,11],[2,6],[-8,13],[-10,7],[-13,3],[-14,-1],[-10,-5],[-33,-31],[-21,-28],[-14,-8],[-22,-28],[-17,-17],[-9,-5],[-22,-5],[-24,-12],[-23,-4],[-63,-30],[-12,-16],[-7,-6],[-8,-15],[-7,-8],[-13,-7],[-84,-2],[-13,5],[-30,22],[-27,31],[-23,39],[-33,89],[-19,38],[-13,19],[-13,16],[-5,3],[-17,7],[-3,2],[-3,6],[-5,12],[-29,48],[-35,28],[-82,31],[-83,30],[-59,31],[-27,20],[-73,30],[-6,9],[63,4],[4,-2],[9,-8],[4,-2],[5,1],[2,3],[-1,5],[-4,5],[-13,8],[-74,1],[-82,-4],[-62,-15],[-24,9],[19,7],[7,7],[6,9],[6,13],[3,20],[1,6],[2,6],[0,8],[-4,10],[-5,4],[-12,-1],[12,20],[17,12],[18,5],[15,-1],[0,4],[-16,2],[-8,5],[0,9],[-2,2],[-2,3],[-2,8],[2,4],[3,10],[3,2],[22,-6],[6,4],[13,12],[3,2],[3,4],[0,9],[-2,6],[-4,-5],[-4,-5],[-3,-1],[-1,4],[1,8],[2,6],[3,6],[6,8],[4,4],[10,5],[4,4],[2,4],[7,16],[-3,3],[-7,2],[-3,3],[6,4],[20,0],[-5,10],[2,6],[13,9],[-1,9],[4,6],[11,6],[10,3],[13,8],[32,28],[8,2],[16,-2],[6,2],[-7,14],[3,9],[-20,1],[-9,5],[-9,10],[6,3],[6,0],[6,2],[3,7],[-2,1],[-4,3],[-2,0],[3,7],[5,-1],[6,-2],[5,0],[4,4],[3,4],[5,12],[-4,4],[-17,-4],[3,9],[6,8],[4,8],[-1,10],[-3,5],[-5,6],[-3,5],[-1,5],[-1,12],[-1,6],[-3,3],[-12,5],[-7,8],[-3,5],[1,3],[4,2],[4,5],[5,3],[9,-7],[12,-2],[4,-3],[7,-4],[49,22],[19,-4],[36,12],[15,9],[9,1],[4,5],[-1,4],[-13,10],[2,3],[6,7],[1,2],[-2,4],[-4,1],[-8,-1],[-6,2],[-8,4],[-7,7],[-5,8],[4,4],[-26,0],[4,-7],[1,-2],[-7,-1],[-8,5],[-27,27],[-4,7],[2,9],[2,3],[8,6],[2,3],[1,6],[2,5],[2,5],[3,2],[33,8],[7,9],[-2,1],[-3,2],[-2,2],[-1,3],[0,6],[1,2],[3,1],[2,3],[14,21],[4,3],[3,4],[9,28],[14,27],[6,5],[14,7],[4,6],[0,9],[-9,10],[-2,8],[3,5],[7,6],[28,13],[4,4],[-6,6],[10,4],[27,0],[7,12],[-4,0],[5,9],[17,4],[7,8],[-1,3],[-1,15],[1,5],[6,5],[2,4],[-3,4],[-4,6],[-3,7],[-1,8],[2,10],[5,5],[12,4],[26,17],[15,0],[6,3],[4,9],[-6,7],[6,9],[15,13],[-5,9],[-8,20],[-6,7],[-11,7],[-73,7],[-11,8],[-8,9],[-3,7],[1,7],[7,12],[-4,2],[-8,8],[-2,4],[-4,9],[-2,1],[-3,1],[-8,6],[-13,5],[-2,3],[5,2],[-3,9],[-10,14],[2,5],[-6,8],[-11,7],[-6,5],[4,4],[-3,8],[-3,9],[6,-1],[3,2],[2,5],[-2,10],[-2,7],[-4,4],[-4,3],[-4,4],[-2,7],[0,6],[-1,6],[-3,5],[-5,6],[0,3],[2,3],[1,7],[-7,16],[-10,3],[-23,-3],[-8,6],[6,8],[19,14],[-13,7],[-28,-5],[-10,10],[8,9],[21,2],[76,13],[49,6],[31,-5],[5,4],[-1,10],[5,3],[99,5],[13,8],[58,0],[48,14],[88,1],[101,7],[63,9],[78,11],[91,27],[57,8],[42,-15],[43,1],[5,-1],[13,-11],[22,-1],[34,-24],[7,-11],[1,-4],[1,-13],[2,-1],[10,1],[108,-42],[108,-43],[49,-5],[11,-5],[23,-15],[81,1],[13,-5],[-10,-4],[-20,5],[-10,-4],[4,-18],[-10,-17],[-37,-37],[-3,-7],[-1,-13],[3,-9],[7,-7],[9,-5],[8,-1],[1,8],[-2,6],[-3,6],[-2,6],[3,12],[7,8],[28,14],[11,13],[11,16],[9,18],[8,7],[10,0],[19,-5],[38,6],[26,-11],[6,-4],[4,-10],[3,-12],[-1,-7],[-9,-14],[11,-2],[5,-3],[3,-7],[-1,-11],[-4,-5],[-10,-5],[-6,-3],[-2,-5],[-4,-16],[-2,-6],[-2,-5],[-2,-6],[-1,-7],[11,2],[22,14],[12,0],[8,-6],[4,-1],[5,3],[4,3],[6,10],[6,11],[8,14],[5,5],[11,3],[4,7],[3,15],[-6,7],[-9,5],[-7,9],[-2,6],[0,3],[2,3],[4,4],[6,3],[13,3],[19,12],[27,4],[20,9],[27,3],[15,6],[94,14],[90,-14],[90,-15],[76,-43],[77,-43],[67,-55],[66,-55],[7,-9],[9,-10],[23,-5],[18,-20],[57,-36],[15,-21],[52,-28],[25,-4],[7,-5],[3,-3],[7,-13],[4,-4],[10,-5],[11,-14],[26,-21],[12,-15],[7,-10],[2,-9]],[[15753,79259],[2,-1],[0,-6],[-2,-6],[-4,4],[-3,6],[-3,7],[-3,7],[-1,2],[2,-3],[0,3],[-2,7],[0,1],[3,-5],[3,-7],[3,-6],[3,-2],[2,-1]],[[15731,79354],[-4,-10],[-7,-1],[-14,7],[2,-4],[6,-13],[0,-5],[-3,-4],[-6,-4],[-6,-2],[-4,2],[-3,5],[-3,2],[-3,4],[-3,7],[-2,6],[-1,8],[1,8],[4,6],[0,4],[-6,8],[-4,11],[-1,10],[7,8],[-7,11],[-4,10],[-2,12],[0,20],[1,-3],[1,-3],[2,-7],[21,-23],[20,-29],[-3,-1],[-4,2],[-4,4],[-3,5],[-2,2],[-1,-1],[-1,-3],[-1,-4],[1,-2],[7,-11],[29,-32]],[[15652,79508],[-2,5],[-11,24],[-1,10],[1,6],[3,-1],[8,-21],[25,-48],[6,-9],[21,-22],[4,-3],[8,-2],[11,-6],[7,-8],[8,-2],[4,-4],[2,-9],[-1,-7],[-3,-3],[-4,3],[-7,-5],[-7,7],[-12,18],[-26,23],[-29,49],[-5,5]],[[15633,79583],[5,-2],[2,-5],[0,-7],[-3,-2],[-2,0],[-1,0],[-4,-2],[-5,-1],[-8,3],[-18,11],[-5,7],[-2,6],[1,3],[-1,3],[-1,1],[1,3],[1,3],[9,3],[2,-1],[2,-5],[2,-4],[12,-9],[13,-5]],[[15014,79607],[1,-2],[2,-4],[0,-3],[-2,-1],[-2,-1],[-2,-6],[-1,-11],[-2,-3],[-2,1],[-9,5],[-2,6],[0,8],[-4,5],[-1,7],[3,6],[5,1],[6,-2],[7,-3],[3,-3]],[[14977,79675],[2,-7],[1,-8],[2,-7],[4,-7],[-5,-6],[-6,-1],[-13,6],[-6,5],[-10,-1],[-8,3],[-5,15],[4,3],[-1,8],[-1,7],[-2,6],[3,9],[-1,5],[1,7],[1,3],[6,0],[15,8],[5,0],[7,-7],[6,-13],[3,-14],[-2,-14]],[[15741,79709],[-1,-5],[-2,-5],[-5,-8],[-4,-3],[-3,-1],[-8,1],[-3,2],[-1,4],[1,5],[0,7],[2,8],[9,13],[4,5],[6,3],[7,2],[3,-4],[-1,-8],[-2,-6],[-2,-3],[0,-2],[1,0],[-1,-5]],[[15491,79784],[17,-21],[0,-6],[-4,-4],[-13,7],[-5,0],[-2,-2],[-3,0],[-8,1],[-6,3],[-9,7],[-3,3],[1,3],[1,4],[-3,4],[-3,1],[-1,5],[2,4],[2,4],[3,1],[7,-6],[2,-1],[7,1],[4,-2],[4,-2],[5,-1],[5,-3]],[[15708,79752],[0,8],[-1,6],[-1,5],[4,5],[0,4],[-3,9],[4,8],[6,6],[7,3],[3,2],[3,1],[3,-1],[1,-3],[4,-17],[6,-12],[-1,-14],[-5,-12],[-9,-2],[2,9],[-2,6],[-4,2],[-4,-1],[-3,-4],[-2,-5],[-3,-3],[-5,0]],[[15387,79803],[2,-2],[1,-4],[-3,0],[-5,1],[-3,-3],[-2,-8],[-3,-5],[-3,-1],[-2,2],[-6,7],[-3,7],[0,10],[5,6],[8,-1],[14,-9]],[[15359,79783],[4,-4],[1,-5],[-4,-2],[-2,0],[-3,2],[-7,3],[-22,31],[-4,10],[0,12],[1,12],[3,3],[6,-10],[3,-3],[21,-48],[3,-1]],[[15525,79890],[-7,-13],[-8,2],[-7,11],[-5,16],[17,25],[3,4],[4,0],[5,-4],[0,8],[1,3],[2,2],[12,6],[8,1],[0,-3],[0,-1],[-1,0],[-1,0],[-13,-20],[-2,-7],[-1,-3],[-7,-27]],[[15371,79931],[2,4],[1,4],[0,4],[-1,4],[0,4],[1,4],[0,2],[-1,6],[3,0],[4,0],[3,-1],[3,-3],[4,-6],[5,-14],[4,-4],[12,-4],[9,-8],[27,-8],[12,-10],[5,-13],[2,-7],[8,-12],[1,-6],[2,-7],[3,-7],[27,-37],[8,-14],[6,-18],[-5,-6],[-6,4],[-9,15],[-51,48],[-16,6],[-1,3],[1,4],[-1,4],[-6,13],[-3,10],[0,1],[-2,1],[-1,0],[-3,-1],[-6,7],[0,1],[-5,3],[-11,11],[-11,5],[-5,5],[-9,13]],[[14817,79955],[3,-9],[1,-8],[1,-11],[2,-29],[4,-23],[0,-13],[-6,-21],[-11,-2],[-35,21],[-5,5],[-5,10],[-4,7],[-16,16],[-17,26],[1,11],[3,2],[3,-3],[5,-8],[1,6],[2,6],[3,3],[8,3],[5,2],[2,4],[-2,5],[-3,0],[-3,-1],[-2,-2],[-2,-1],[-2,1],[-3,6],[-1,1],[-2,1],[-4,6],[-3,1],[-2,0],[-7,4],[2,8],[3,3],[6,1],[23,12],[17,15],[9,1],[3,-7],[5,-9],[5,-4],[6,7],[3,-2],[4,-14],[5,-27]],[[14655,80093],[3,-5],[0,-2],[-1,-2],[-2,-2],[-3,-2],[-6,-13],[-3,1],[-3,5],[-3,3],[-3,4],[-1,5],[2,3],[0,4],[1,4],[2,4],[5,2],[6,-1],[6,-8]],[[15270,80166],[12,20],[1,6],[-1,7],[-5,13],[-1,6],[1,1],[2,-1],[2,-4],[16,-33],[3,-11],[1,-3],[0,-4],[-1,-4],[-1,-1],[-1,-2],[1,-4],[2,-3],[1,-1],[1,-9],[1,-7],[1,-5],[3,-6],[-8,-5],[-8,-3],[-4,-4],[-4,-16],[-3,-4],[-5,2],[-1,7],[0,8],[1,5],[0,7],[0,5],[-2,5],[-11,15],[-2,6],[3,6],[6,11]],[[15222,80105],[-5,11],[-2,5],[1,1],[3,3],[-5,8],[-15,17],[-3,6],[-2,2],[-3,3],[-3,4],[-2,7],[0,6],[-1,17],[-4,16],[0,13],[1,11],[2,8],[5,5],[8,5],[8,2],[4,-4],[3,-13],[2,-3],[4,-3],[4,-11],[6,-5],[2,-6],[2,-8],[0,-8],[-2,-8],[-4,-6],[-2,-6],[2,-8],[-7,-4],[-4,-4],[-1,-6],[5,-11],[2,-3],[3,-1],[2,-2],[2,-6],[1,-5],[1,-19],[3,-23],[-1,-6],[-4,4],[-2,6],[-2,13],[-2,6]],[[15308,80194],[-6,1],[-4,4],[-9,20],[-2,9],[1,8],[4,3],[3,5],[3,10],[3,6],[9,-8],[13,-5],[6,-4],[1,-3],[-1,-4],[-2,-10],[2,-20],[6,-8],[8,-6],[3,-12],[-3,-7],[-6,-10],[-7,-9],[-6,-4],[-3,3],[-2,6],[-4,13],[-1,7],[3,4],[5,3],[3,4],[-3,8],[-4,1],[-10,-5]],[[15332,80216],[-1,2],[-1,4],[5,14],[2,9],[4,7],[4,4],[2,4],[7,1],[10,-8],[8,-17],[3,-23],[-4,-19],[-8,-12],[-6,-6],[-3,1],[-2,3],[0,4],[-1,7],[-2,10],[1,10],[3,13],[6,11],[0,8],[-2,7],[-3,4],[-1,-1],[1,-6],[0,-5],[0,-4],[-2,-7],[-7,-21],[-3,-3],[-4,3],[-6,6]],[[15184,80259],[-6,-4],[-7,1],[-4,7],[-2,14],[3,10],[6,1],[12,-5],[4,4],[1,9],[-1,10],[0,10],[1,8],[3,10],[4,5],[14,-13],[4,-2],[2,-1],[3,-8],[1,-3],[2,0],[4,1],[2,-1],[1,-4],[2,-13],[1,-5],[1,-6],[7,-13],[4,-15],[10,-20],[3,-7],[1,-5],[2,-7],[2,-7],[0,-8],[-2,-6],[-3,-1],[-2,3],[-2,4],[-4,-24],[-3,-12],[-6,-6],[-2,-4],[-2,-1],[-3,5],[0,3],[4,19],[2,12],[0,13],[-1,11],[-9,9],[-3,9],[-9,33],[0,2],[-4,0],[-3,-3],[-3,-1],[-3,2],[-3,5],[-2,0],[-3,-2],[-7,-2],[-3,-4],[-1,-4],[-3,-3]],[[15138,80325],[0,-5],[-25,-10],[-5,2],[-3,-1],[-4,-4],[-30,-3],[-6,1],[-1,1],[-3,3],[-1,2],[0,2],[0,3],[1,2],[2,2],[10,4],[14,-1],[8,5],[6,4],[6,3],[2,3],[4,2],[13,3],[6,-1],[5,-6],[1,-11]],[[15175,80353],[8,-5],[4,-11],[-3,-13],[-3,-5],[-2,-3],[-8,-3],[1,-2],[1,-4],[-1,-4],[-3,-5],[-7,-5],[-9,-3],[-11,2],[-7,6],[-5,3],[-4,3],[2,4],[5,4],[6,6],[2,7],[0,5],[4,5],[19,11],[3,2],[3,4],[5,1]],[[15070,80330],[-3,-1],[-7,-5],[-6,-2],[-5,1],[-14,4],[-9,0],[-12,5],[-5,8],[4,3],[4,1],[14,10],[10,4],[13,4],[3,-2],[7,-8],[1,-3],[0,-3],[3,-3],[3,-4],[1,-5],[-2,-4]],[[14850,80426],[4,-2],[2,-3],[0,-3],[-3,-3],[-4,-1],[-11,-4],[-9,-2],[-10,3],[-2,3],[3,4],[-2,5],[-4,4],[-1,3],[3,0],[10,0],[4,1],[4,1],[3,1],[1,-3],[2,-1],[10,-3]],[[14906,80438],[4,1],[10,-1],[7,-14],[5,-5],[5,-1],[-2,-8],[-3,-1],[-3,0],[-4,0],[-3,-3],[-5,-7],[-2,-2],[-30,-4],[-2,-2],[-8,-3],[-49,9],[12,8],[60,21],[1,1],[5,8],[2,3]],[[14888,80453],[5,0],[6,-6],[-3,-8],[-14,-10],[-4,-1],[-4,1],[-9,-6],[-4,0],[-3,2],[-1,2],[2,0],[-1,2],[-5,2],[-3,2],[1,2],[-3,0],[-3,3],[3,6],[21,8],[19,1]],[[14761,80463],[6,-7],[1,-5],[-1,-2],[-2,2],[-2,2],[-3,0],[-2,-3],[-7,-2],[-30,3],[-9,8],[-9,-3],[-15,-3],[-8,6],[3,9],[5,7],[4,3],[10,-1],[10,-4],[28,-2],[11,4],[4,-4],[6,-8]],[[14828,80479],[5,1],[3,3],[1,5],[0,8],[10,18],[6,7],[6,-2],[8,10],[14,22],[8,8],[5,2],[11,1],[5,1],[9,8],[5,1],[8,-8],[3,-6],[3,-7],[1,-6],[2,-8],[7,-7],[2,-5],[-2,-5],[-13,-9],[-3,-6],[-7,-19],[1,-12],[-6,-6],[-17,-2],[-24,11],[-7,-3],[3,-5],[0,-3],[-2,-3],[-4,-1],[-4,1],[-6,5],[-4,2],[-15,-3],[-8,1],[-4,11]],[[14783,80539],[-4,0],[-17,7],[-8,15],[-6,6],[0,5],[4,0],[4,2],[4,2],[10,0],[3,-5],[3,-9],[3,-3],[4,8],[-1,6],[4,3],[24,-1],[5,1],[2,4],[2,2],[3,2],[2,-1],[1,-3],[2,-2],[1,-2],[8,-9],[4,-5],[4,-7],[-4,0],[-5,3],[-3,1],[-3,-1],[-6,-5],[-10,-3],[-19,-11],[-1,1],[-4,6],[-3,1],[0,-1],[-1,-3],[-1,-2],[-1,-2]],[[15744,79190],[5,-7],[4,-10],[2,-11],[-2,-15],[-4,-6],[-8,-5],[-7,-3],[-22,26],[-5,-6],[-7,-25],[-5,-5],[-4,-2],[-1,-4],[0,-5],[-1,-6],[-2,-4],[-5,-7],[-3,-5],[1,-9],[-6,-4],[-6,3],[0,10],[-5,0],[-8,-6],[-3,-2],[-4,2],[-5,9],[-6,3],[-8,8],[-13,7],[-16,-1],[-14,3],[-67,40],[-72,50],[-7,1],[-6,3],[2,8],[6,8],[5,5],[-3,3],[-9,2],[-3,-1],[-4,-3],[-2,-4],[-6,-9],[-2,1],[-5,3],[-42,15],[-19,14],[-10,11],[-9,15],[-4,4],[-77,49],[-5,5],[-9,22],[-5,7],[-7,8],[4,9],[17,16],[1,3],[3,9],[2,4],[3,4],[3,2],[2,1],[7,1],[4,2],[2,3],[2,5],[-1,8],[-1,5],[0,4],[3,7],[5,9],[6,4],[12,6],[10,11],[10,17],[8,23],[3,24],[2,10],[4,10],[2,11],[-5,22],[-3,34],[-2,-2],[-2,-3],[-1,-3],[-1,-4],[0,-5],[2,-21],[0,-25],[-2,-12],[-3,-9],[-5,-9],[-3,-9],[-3,-25],[-2,-11],[-6,-4],[-4,-2],[-12,-9],[-7,-1],[-15,4],[-3,-1],[-5,-6],[-3,-1],[-7,3],[-5,5],[-5,3],[-7,-3],[-8,-16],[-6,-7],[-5,1],[-7,4],[-14,2],[-6,4],[10,18],[5,7],[6,3],[0,4],[-10,0],[-3,0],[-2,3],[-3,3],[-2,3],[-3,0],[-3,-9],[-1,-12],[-2,-11],[-10,-9],[-8,-17],[-5,-4],[-1,-2],[-1,-4],[-1,-4],[-3,-2],[-5,1],[-3,1],[0,2],[-4,2],[-5,3],[-4,5],[-4,5],[-4,4],[-9,4],[-4,4],[-1,4],[-2,7],[-1,3],[-10,15],[-7,6],[-3,5],[-8,10],[-28,9],[-3,3],[-4,4],[-3,6],[1,7],[2,4],[9,3],[4,5],[4,-6],[5,-5],[4,-1],[6,4],[2,3],[11,12],[2,-1],[3,9],[10,9],[3,7],[1,7],[3,5],[2,6],[1,12],[-24,-27],[-7,-12],[-7,-7],[-2,12],[0,32],[3,17],[1,10],[-3,-3],[-3,-6],[-4,-3],[-4,-1],[-3,4],[0,6],[0,22],[1,7],[2,6],[3,10],[1,10],[0,8],[-1,0],[-4,-6],[-3,-9],[-4,-12],[-1,-17],[-2,-7],[-2,-6],[-2,-4],[-2,0],[-4,6],[-3,2],[-7,-3],[-10,-20],[-5,-5],[-6,1],[-5,5],[-4,7],[-5,11],[5,11],[9,7],[7,10],[7,31],[5,15],[3,14],[-4,10],[-2,-11],[-11,-16],[-2,-8],[-1,-13],[-2,-9],[-5,-7],[-5,-5],[-3,4],[-6,5],[-4,5],[-4,22],[1,8],[4,9],[0,6],[1,10],[0,4],[-3,-1],[-16,-10],[-5,-2],[-5,-3],[-4,-2],[-1,-2],[-1,-3],[-2,-1],[-3,0],[-4,1],[-4,4],[-2,5],[-1,8],[-2,6],[-3,3],[-4,-3],[3,-8],[1,-10],[-2,-9],[-4,-11],[-2,-9],[-1,-2],[-3,0],[-1,3],[-1,3],[-1,2],[-8,6],[-3,3],[-3,5],[-4,4],[-6,4],[-3,5],[4,5],[-4,7],[-4,14],[-3,4],[-5,-1],[-4,-6],[-4,-8],[-3,-5],[4,-12],[3,-8],[0,-6],[-7,-7],[-6,-3],[-5,1],[-4,4],[-4,6],[-4,11],[-1,6],[2,8],[2,12],[0,1],[0,15],[0,6],[1,4],[0,4],[-1,7],[1,0],[0,3],[-2,3],[-1,2],[-2,8],[1,3],[0,4],[0,4],[1,5],[1,5],[1,2],[3,5],[5,4],[9,5],[13,15],[10,1],[22,-4],[33,9],[6,5],[3,2],[4,0],[6,-4],[4,-1],[13,7],[-1,5],[-2,5],[-2,3],[-3,1],[-21,-2],[-29,-12],[-7,-8],[-4,1],[-32,15],[-7,5],[-3,7],[3,10],[18,35],[1,4],[-4,2],[-8,5],[-4,1],[-2,-4],[1,-21],[-2,-9],[-4,-9],[-7,-6],[-8,-3],[-7,2],[-6,5],[-3,10],[-9,50],[-1,10],[-1,23],[-2,15],[-4,-1],[-5,-7],[-6,-4],[-6,3],[-6,8],[-5,10],[-5,17],[-5,7],[-11,12],[0,-8],[9,-10],[2,-9],[-2,-8],[-4,-9],[-4,-7],[-4,-3],[-5,0],[-4,0],[-2,5],[-5,39],[-3,10],[0,-3],[-1,-6],[0,-4],[-1,-11],[0,-30],[-2,-10],[-3,-1],[-35,-1],[-7,-3],[-7,0],[-5,5],[-25,48],[-2,9],[2,8],[9,19],[1,2],[2,0],[1,1],[1,5],[0,3],[-2,2],[0,3],[3,11],[3,11],[5,7],[12,7],[4,9],[2,12],[-4,12],[-2,-5],[-1,-5],[-1,-5],[-2,-5],[-2,-2],[-6,-2],[-4,-8],[-8,-1],[-7,2],[-3,5],[-2,6],[-5,9],[-5,7],[-4,4],[-2,-4],[1,-10],[2,-11],[2,-10],[-1,-9],[-2,-9],[-3,-6],[-6,-6],[-6,-4],[-7,-1],[-6,1],[-6,4],[-9,11],[-5,8],[-3,9],[0,11],[3,5],[11,9],[-19,0],[2,7],[4,8],[11,13],[-11,5],[-9,-11],[-8,-15],[-7,-7],[-12,-7],[-6,0],[-4,7],[-1,9],[1,8],[3,8],[2,7],[-10,-4],[-11,-11],[-10,-14],[-14,-26],[-3,-4],[-3,-2],[-2,2],[-5,9],[-2,1],[-13,2],[-6,5],[-3,10],[3,7],[16,19],[18,34],[5,3],[3,3],[-1,7],[-2,3],[-2,0],[-6,-3],[-5,-1],[-2,2],[-4,8],[-2,3],[-5,4],[2,6],[8,2],[3,4],[1,8],[-3,4],[-3,1],[-3,-3],[-3,0],[-7,11],[-3,3],[-2,-1],[-6,-9],[-3,-2],[-7,4],[-7,8],[-3,9],[4,4],[3,17],[3,13],[5,6],[0,4],[-2,6],[0,6],[2,6],[3,3],[9,-5],[5,1],[2,8],[9,-4],[7,3],[7,6],[8,3],[43,-1],[6,-4],[5,-9],[15,-37],[6,-10],[8,-4],[-10,34],[-7,18],[-14,16],[-1,17],[3,13],[8,-1],[6,15],[21,9],[2,13],[-26,-9],[-6,-6],[-4,-5],[-2,1],[-3,4],[-2,3],[-4,6],[-4,4],[-4,2],[-57,4],[-16,12],[4,-8],[6,-8],[7,-6],[5,-3],[31,0],[15,-5],[6,-6],[5,-7],[0,-9],[-6,-4],[-13,-1],[-49,-26],[-2,9],[-5,-1],[-12,-10],[-12,-6],[-13,-2],[-5,4],[-5,7],[-5,2],[-3,-10],[2,0],[1,-1],[1,-6],[2,-4],[-1,-3],[-4,-2],[-2,1],[-3,3],[-3,3],[-5,8],[-7,3],[-4,3],[-2,3],[-3,9],[-3,4],[-4,5],[-3,2],[-3,1],[-2,1],[-2,4],[-1,5],[-3,11],[-1,13],[-2,7],[-11,8],[-6,-2],[-3,2],[-1,6],[-3,10],[-1,6],[3,2],[7,2],[5,4],[2,5],[-5,2],[-3,-1],[-6,-3],[-3,-1],[-3,2],[-3,4],[-3,4],[-2,4],[-1,12],[-6,21],[0,10],[-4,7],[3,5],[6,3],[5,1],[0,2],[6,8],[2,1],[10,-3],[10,6],[11,12],[11,8],[10,-5],[15,17],[6,3],[6,-1],[10,-4],[28,5],[10,-2],[87,-43],[9,-8],[5,-1],[4,-4],[2,-6],[3,-9],[-1,-1],[-1,-3],[0,-6],[1,-4],[2,-6],[1,-4],[2,-5],[4,11],[3,12],[5,9],[6,-3],[-4,-11],[5,-12],[8,-11],[7,-7],[24,-13],[8,-7],[4,-6],[3,-4],[3,-4],[5,-2],[15,2],[4,-2],[2,-3],[1,-4],[1,-4],[0,-1],[3,-2],[2,1],[2,0],[3,1],[14,-5],[5,0],[-2,0],[2,0],[2,-1],[2,-1],[1,-1],[-1,-2],[-3,-5],[-1,-1],[4,-4],[29,-1],[5,-1],[2,-5],[-2,-5],[-2,-4],[0,-4],[4,-1],[1,1],[2,8],[2,3],[2,1],[10,-1],[6,-2],[24,-16],[7,-2],[6,-4],[10,-16],[8,-1],[1,3],[1,8],[2,2],[2,-1],[3,-3],[1,0],[3,-1],[8,-3],[3,-3],[6,-4],[27,7],[6,-2],[13,-9],[6,-1],[22,2],[21,-9],[26,-18],[19,-18],[6,-2],[27,-2],[13,-6],[11,-11],[3,-2],[42,9],[7,-3],[11,-11],[13,-5],[6,-6],[5,-9],[4,-11],[-2,-4],[3,-9],[3,-9],[6,-35],[11,-32],[-6,-4],[5,-8],[9,-8],[5,-2],[2,-10],[10,-15],[-1,-10],[11,-18],[1,-5],[0,-11],[1,-5],[3,-8],[4,-18],[3,-8],[82,-119],[3,-7],[1,-10],[-2,-11],[-4,-3],[-23,8],[-2,-2],[1,-8],[3,-3],[2,-2],[3,-4],[2,-4],[6,-9],[3,-6],[20,-61],[5,-4],[3,-3],[1,-4],[1,-11],[2,-5],[6,-7],[13,3],[6,-6],[3,-4],[7,-3],[3,-3],[4,-13],[1,-3],[12,-12],[14,-8],[28,-9],[16,-1],[7,-3],[6,-6],[3,-4],[3,-2],[30,-16],[3,0],[4,3],[3,1],[4,-3],[14,-18],[-5,-3],[-10,-2],[-4,-7],[4,-3],[3,0],[8,3],[4,-1],[7,-6],[4,-1],[17,0],[9,-3],[6,-7],[1,-4],[1,-4],[0,-4],[-5,-4],[1,-3],[3,-8],[6,-24],[3,-5],[4,-1],[6,2],[11,-5],[4,1],[4,-7],[3,-8],[2,-10],[2,-11],[9,-16],[1,-8],[-6,-5],[3,-7],[1,-7],[-1,-5],[-4,-1],[-4,4],[-3,7],[-3,5],[-6,-4],[0,-4],[13,-20],[14,-14],[2,-5],[4,-7],[34,-50],[4,-9],[-3,-5],[-1,-1],[-2,-5],[0,-4],[1,-2],[2,1],[2,1],[2,1],[2,-3],[1,-8],[0,-12],[-2,-8],[-3,2],[-4,5],[-5,3],[-6,0],[-4,-2],[0,-4],[6,-7],[19,-17],[3,-4],[6,-12],[1,-4],[-1,-8],[-2,-5],[-1,-4],[0,-8],[2,-5],[2,-4],[3,-6],[0,-9],[-1,-9],[-2,-5],[-2,-4],[-2,-7],[1,-8],[7,4],[11,17],[-2,9],[1,18],[-1,9],[12,8],[-7,8],[-3,5],[0,8],[3,2],[4,2],[5,0],[3,-1],[4,-3],[1,-2],[1,-5],[0,-8],[1,-2],[1,-6],[0,-7],[-1,-3],[1,-6],[9,-35],[3,-22],[3,-9],[4,-7]],[[14487,80627],[1,-2],[1,-5],[0,-5],[-3,-4],[-4,-2],[-3,-1],[-3,1],[-3,3],[-7,-1],[-4,5],[-5,-1],[-7,3],[-1,5],[12,5],[3,3],[2,4],[2,2],[15,-2],[4,-4],[0,-4]],[[14571,80726],[5,-4],[0,-10],[-4,-9],[-4,-1],[-3,1],[-3,-1],[-4,1],[-3,5],[-2,6],[-1,3],[4,3],[11,5],[4,1]],[[13422,81764],[4,-1],[3,-2],[0,-4],[-4,-4],[-3,-1],[-6,-3],[-12,-4],[-10,0],[-7,2],[-7,7],[-2,9],[6,3],[16,6],[7,-2],[1,-5],[-4,-2],[0,-1],[7,0],[11,2]],[[13269,81854],[3,-2],[5,-4],[-4,-6],[-24,-5],[-6,2],[-16,20],[2,2],[3,0],[37,-7]],[[13061,82595],[3,-4],[1,-3],[-3,-10],[-1,-8],[1,-4],[-2,-2],[-5,-2],[-3,2],[-1,7],[-1,6],[-4,1],[-3,1],[-2,2],[-7,1],[-1,5],[1,8],[4,6],[6,2],[10,-3],[3,-1],[4,-4]],[[32089,86200],[8,-11],[4,-8],[2,-9],[-12,9],[-13,11],[-21,16],[-7,5],[-8,2],[-15,1],[-7,3],[-7,5],[-20,25],[-8,14],[-2,15],[9,12],[6,1],[22,-5],[12,1],[7,2],[5,5],[4,-5],[4,-4],[3,-5],[-2,-7],[6,2],[5,-1],[2,-5],[-1,-11],[7,-3],[3,-7],[0,-10],[-1,-13],[2,0],[8,13],[3,3],[15,0],[3,-3],[-1,-6],[-2,-7],[0,-2],[-1,-2],[-2,-3],[-6,-5],[-1,-2],[0,-2],[-1,-2],[-2,-2],[0,-5]],[[31144,86297],[11,-5],[4,-14],[-6,-29],[-11,-22],[-6,-1],[-7,-18],[-7,-9],[1,-18],[-5,-7],[-4,0],[-5,4],[-15,-1],[-4,-4],[-4,-6],[-6,-5],[-8,-2],[-9,-5],[-3,-11],[-6,-7],[-10,-5],[-12,-1],[-10,-12],[-15,0],[-13,8],[-5,29],[6,29],[10,40],[13,33],[7,23],[5,21],[14,47],[31,7],[8,-2],[6,-2],[14,-4],[8,2],[5,-14],[10,-19],[11,-13],[7,-7]],[[32052,86411],[4,-1],[1,-3],[0,-3],[0,-5],[-1,-11],[-3,-12],[-5,-10],[-9,-5],[-9,-10],[-3,1],[-3,4],[-1,5],[7,6],[15,28],[5,14],[2,2]],[[28265,86497],[2,-1],[1,-1],[1,0],[2,2],[0,-5],[0,-8],[-2,0],[-31,-24],[13,4],[5,0],[0,-4],[-16,-8],[-47,-12],[-23,-14],[-26,-2],[-4,1],[1,4],[15,15],[3,4],[1,5],[0,5],[2,4],[3,2],[98,29],[2,4]],[[31988,86803],[-3,-11],[-6,-1],[-7,5],[-4,13],[-5,-5],[-6,-3],[-6,1],[-2,9],[1,8],[5,5],[6,3],[5,6],[-14,8],[-29,2],[-13,11],[0,4],[4,-1],[3,1],[2,3],[1,5],[-14,-1],[-7,2],[-5,5],[-1,5],[-1,10],[-2,5],[-2,3],[-5,0],[-8,-1],[-4,2],[-3,5],[-2,6],[-3,4],[-4,2],[-13,2],[-6,4],[-12,14],[-3,2],[-5,7],[-7,2],[-4,6],[1,13],[3,13],[6,8],[6,3],[106,21],[7,-2],[13,-8],[72,-10],[-5,-8],[-11,-9],[-5,-8],[4,-2],[4,3],[6,4],[5,3],[0,-4],[-4,-4],[0,-4],[15,2],[4,-2],[3,-3],[2,-3],[0,-3],[-3,-3],[-2,-4],[-9,-13],[-3,-3],[-2,-2],[-1,-4],[0,-5],[1,-1],[5,-1],[3,-1],[2,-2],[-9,-12],[8,0],[3,-3],[-1,-8],[-1,-5],[-2,-11],[-2,-6],[-6,-11],[-17,-9],[-5,-8],[3,-9],[-4,-11],[-11,-15]],[[31749,87064],[7,-14],[0,-5],[-4,-6],[-8,4],[-9,9],[-5,9],[-4,-13],[-8,-3],[-17,4],[-7,3],[-8,9],[-5,8],[16,13],[14,18],[13,11],[11,-9],[-2,-3],[-9,-4],[0,-4],[2,-4],[2,-2],[3,2],[3,6],[5,4],[4,-2],[2,-10],[1,-6],[3,-13],[0,-2]],[[24159,87138],[0,-3],[-2,-5],[14,-8],[5,-1],[-5,-12],[-10,-14],[-11,-9],[-8,3],[-4,7],[-8,17],[-5,5],[-13,-4],[-6,3],[-2,15],[3,8],[5,2],[26,-1],[5,2],[5,7],[6,-7],[5,-5]],[[31877,87140],[3,2],[3,0],[3,1],[2,5],[1,7],[3,3],[7,0],[14,-4],[13,-8],[10,-25],[3,-19],[4,6],[4,12],[3,6],[5,-8],[1,-15],[0,-15],[2,-7],[3,1],[6,6],[3,1],[4,-1],[2,-4],[3,-11],[9,-15],[2,-5],[2,-7],[-1,-3],[-2,-1],[-10,-12],[-8,-4],[-7,-1],[-8,3],[-22,22],[-31,9],[-2,5],[-1,7],[-3,6],[-3,3],[-7,1],[-3,4],[-2,4],[-7,26],[-2,7],[1,8],[3,10]],[[24369,87428],[8,-5],[28,3],[0,-4],[-6,0],[-18,-20],[-4,-2],[-6,3],[-17,-4],[-8,3],[9,12],[6,4],[6,0],[-6,8],[-7,-1],[-7,-5],[-7,-2],[0,4],[4,2],[1,4],[2,3],[3,3],[4,2],[5,-2],[5,-2],[5,-4]],[[27977,87347],[4,-12],[1,-9],[-1,-8],[-1,-10],[1,-24],[-1,-11],[-3,-11],[-9,-21],[-4,-12],[-2,-14],[1,-7],[1,-12],[1,-16],[-1,1],[-4,1],[-2,2],[-5,6],[-3,1],[-2,-3],[-1,-6],[-1,-12],[-3,-8],[-2,-4],[-5,-8],[-3,-6],[-2,-5],[-3,-13],[-4,-10],[-13,-19],[0,-8],[-1,-6],[-1,-6],[-2,-5],[-1,-11],[-1,8],[0,-14],[-2,-10],[-4,-11],[-6,-12],[-9,-10],[-6,-26],[-4,-4],[-10,-17],[-10,-8],[-3,-4],[-4,-11],[-3,-2],[-14,-5],[-6,-1],[-6,6],[-1,2],[0,6],[-1,3],[-2,3],[-4,3],[-2,2],[-9,21],[-8,19],[-2,4],[-3,2],[-10,11],[-10,4],[-5,10],[0,7],[-15,8],[-7,5],[-12,3],[-6,10],[-4,6],[-1,5],[1,7],[-7,6],[-5,15],[1,19],[-5,10],[-2,7],[-1,8],[7,30],[1,20],[2,21],[9,24],[1,27],[16,37],[9,12],[14,16],[11,19],[12,18],[4,19],[7,14],[5,8],[5,5],[13,8],[10,6],[4,-2],[4,-4],[4,-3],[9,6],[5,0],[4,-1],[4,-4],[-3,-3],[0,-4],[1,-3],[4,-2],[4,2],[6,8],[6,4],[7,8],[3,2],[14,2],[5,-2],[-1,0],[3,-2],[5,-7],[3,-3],[5,-2],[4,-1],[5,-2],[4,-5],[1,-5],[3,-15],[2,-3],[3,-1],[11,-11],[2,-4],[3,-12],[3,-4],[4,-3],[8,-3],[4,-4]],[[24284,87426],[5,4],[4,8],[4,5],[10,-9],[18,-1],[7,-3],[-2,-5],[-2,-3],[-4,-1],[-3,1],[-26,-8],[-8,1],[-7,4],[-2,5],[6,2]],[[32116,87499],[-1,-4],[1,-4],[3,-3],[3,-2],[0,-3],[-35,-8],[0,-5],[6,-3],[13,-2],[6,-3],[-8,-12],[-6,-4],[-4,2],[-2,3],[-4,1],[-4,1],[-2,-3],[1,-3],[8,-13],[-12,-13],[-8,-5],[-7,-2],[-2,-1],[-4,-6],[-1,-1],[-3,0],[-6,3],[-8,2],[-11,6],[-24,3],[-39,15],[-9,10],[3,14],[-4,3],[-2,0],[9,15],[13,4],[26,-2],[-4,6],[-13,7],[-4,7],[7,17],[11,8],[13,-1],[11,-8],[6,-11],[2,-1],[3,1],[5,6],[3,1],[26,-4],[1,11],[7,1],[17,-8],[-1,-12],[18,5],[6,-5]],[[28374,87535],[5,-15],[-7,-7],[-20,-2],[-43,8],[-5,3],[-2,5],[1,6],[5,2],[56,7],[10,-7]],[[28410,87535],[23,3],[5,-3],[-7,-11],[-5,-5],[-8,4],[-5,-5],[-5,-6],[-4,-5],[-5,0],[-6,1],[-6,4],[-2,5],[0,8],[-2,6],[-2,6],[-2,7],[2,-1],[2,0],[2,-2],[2,-1],[3,0],[6,3],[2,1],[4,-2],[5,-5],[3,-2]],[[31953,87503],[-26,-1],[-15,4],[-7,9],[16,3],[4,3],[2,6],[3,5],[4,4],[3,4],[9,4],[11,3],[11,-1],[7,-6],[13,-8],[-7,-12],[-5,-3],[-5,-2],[-5,1],[-3,-1],[-2,-2],[-4,-6],[-2,-3],[-2,-1]],[[24557,87572],[3,-4],[2,-7],[0,-4],[-3,1],[-23,16],[-5,10],[2,1],[3,-1],[2,-1],[2,-3],[14,-4],[3,-4]],[[24685,87592],[25,-1],[16,-11],[-1,-3],[-1,0],[-3,3],[-40,0],[-15,8],[-5,1],[-10,-1],[-4,2],[0,7],[6,4],[32,-9]],[[29440,87584],[4,-7],[9,-24],[1,-5],[-43,-4],[-71,19],[-9,5],[-7,8],[-3,3],[-25,4],[-4,3],[-5,8],[-24,19],[5,6],[19,6],[7,7],[3,1],[3,0],[7,-4],[3,0],[2,-4],[2,-3],[3,-3],[3,-2],[2,-1],[5,2],[2,-1],[5,-7],[1,-3],[-2,-4],[2,-4],[2,-5],[3,-2],[62,5],[4,-1],[9,-6],[20,-3],[5,-3]],[[30488,87552],[12,-4],[6,-12],[-5,-13],[-10,-10],[-12,-5],[-24,-9],[-22,4],[-34,4],[-6,3],[-11,11],[-6,3],[-2,-2],[-5,-9],[-3,-2],[-13,4],[-3,2],[4,7],[-1,7],[-1,9],[-16,4],[-9,14],[1,28],[-8,15],[-5,12],[-17,16],[5,4],[5,1],[5,-1],[4,-4],[2,4],[4,-3],[6,-2],[6,0],[4,3],[2,7],[-1,6],[-3,4],[-5,1],[-19,-4],[-10,1],[-14,17],[-11,5],[-10,1],[-11,-8],[-6,-1],[-17,3],[-3,2],[-3,5],[9,6],[21,-3],[10,5],[-30,6],[-15,6],[-11,14],[0,8],[8,1],[116,-28],[50,-25],[15,-12],[17,-7],[6,-10],[8,-4],[9,-7],[4,-7],[-6,0],[-2,0],[0,-4],[11,-10],[17,-5],[-7,-7],[-6,-5],[5,-2],[9,-1],[6,1],[7,-4],[5,-12],[4,-12]],[[27169,87771],[23,-10],[48,-8],[10,-6],[10,-12],[-5,-8],[-5,-9],[-3,-11],[2,-13],[-7,-4],[-4,-3],[-3,-5],[5,-5],[-1,-6],[-7,-10],[6,-13],[3,-10],[2,-9],[-1,-10],[-3,-11],[-5,-8],[-11,-6],[-12,-15],[-10,-6],[-17,-21],[-7,-5],[-37,-13],[-5,-9],[-9,-4],[-5,-6],[-8,-14],[-3,-8],[-6,-26],[-55,-45],[-34,-51],[-42,-37],[-47,-36],[-19,-6],[-4,2],[-2,6],[-3,11],[-3,5],[-6,7],[-16,11],[-7,3],[-38,-8],[-71,-56],[-9,-1],[-4,10],[2,47],[-3,27],[-8,15],[-44,50],[-8,17],[0,21],[9,19],[54,46],[12,23],[3,14],[1,3],[4,1],[16,18],[5,8],[4,10],[1,14],[-1,6],[-2,5],[0,6],[4,13],[3,20],[4,11],[11,12],[10,19],[7,8],[34,23],[2,1],[2,-4],[2,-3],[3,-1],[9,-2],[6,-4],[5,-8],[6,-11],[14,-17],[16,-3],[17,6],[73,51],[12,4],[25,0],[51,-10],[12,6],[-1,5],[0,4],[1,4],[2,3],[-2,0],[7,0],[7,3],[7,5],[6,6],[7,4],[13,-6],[7,0],[-2,0]],[[24827,88063],[2,-2],[1,-3],[1,-2],[2,-1],[-4,-10],[-8,-3],[-16,1],[-5,3],[-4,9],[-6,20],[9,0],[20,-5],[8,-7]],[[28461,87950],[4,-2],[5,-2],[3,-3],[-2,-10],[-13,-19],[-5,-12],[2,-9],[0,-4],[-23,-25],[-18,-10],[-14,-9],[-18,-5],[-18,-8],[-14,-1],[-6,7],[-24,18],[1,9],[-6,3],[-7,2],[-6,5],[-4,8],[-7,8],[-6,7],[-10,6],[-11,13],[-19,29],[-7,6],[-32,38],[-11,8],[-3,3],[-7,9],[6,12],[-6,5],[2,8],[-5,10],[7,21],[9,16],[13,5],[7,-16],[10,-22],[28,16],[25,6],[8,-2],[14,-9],[8,-1],[6,7],[2,1],[17,-4],[26,0],[14,-4],[7,-12],[-2,-1],[-2,-1],[-3,-6],[5,-4],[7,-3],[12,-1],[5,1],[10,7],[6,0],[0,-3],[-1,-6],[-1,-3],[5,0],[4,-2],[3,-3],[4,-4],[-2,0],[-4,-3],[2,-1],[3,-3],[3,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[3,-12],[7,-8],[7,-6],[6,-8],[2,-5],[2,-10],[1,-3]],[[24812,88088],[-4,-7],[-4,0],[-11,2],[-5,-1],[-9,-5],[-5,-2],[-11,4],[-22,19],[-11,6],[0,4],[58,-16],[-5,4],[-3,4],[-2,4],[5,3],[5,0],[11,-3],[10,-11],[3,-5]],[[24593,88144],[5,-4],[13,-7],[11,-3],[17,-15],[-32,0],[4,-7],[-5,-1],[-5,1],[-5,2],[-4,4],[-1,5],[-1,6],[-2,5],[-4,2],[-3,1],[-5,2],[-4,4],[0,5],[4,2],[17,-2]],[[32198,87978],[-4,-8],[3,-8],[5,-9],[3,-11],[-9,3],[-18,24],[-7,0],[3,-3],[1,-4],[-1,-3],[-4,-1],[-4,2],[-6,8],[-10,5],[-6,8],[-9,17],[-1,3],[-2,4],[-2,4],[-3,1],[-3,3],[-1,6],[-1,8],[-1,5],[-1,2],[-2,1],[-1,1],[-1,3],[-2,7],[0,1],[-3,8],[-3,3],[-3,1],[4,5],[5,3],[-1,1],[-3,2],[-2,1],[1,11],[-3,12],[-5,10],[-5,4],[-3,4],[-6,24],[-3,8],[3,6],[2,7],[4,5],[5,3],[5,0],[6,2],[3,5],[0,8],[6,0],[5,-5],[5,-7],[3,-7],[1,-30],[2,-12],[3,-11],[4,-12],[3,-11],[-1,-10],[-6,-8],[6,-4],[3,-5],[6,-15],[-6,0],[-3,-2],[-2,-2],[3,-5],[2,-1],[3,-1],[3,-1],[2,-4],[4,-9],[0,-2],[2,-3],[2,-3],[2,0],[4,4],[1,1],[2,-3],[4,-10],[0,-2],[0,-4],[0,-2],[1,-1],[3,-1],[10,-11],[4,-3],[5,0]],[[28697,88067],[9,-5],[21,-1],[10,-6],[-1,-2],[-1,-2],[-5,0],[-11,-14],[-5,-3],[-7,5],[0,-4],[4,-7],[-4,-12],[-7,-12],[-6,-6],[-7,0],[-12,6],[-17,4],[-6,2],[-4,5],[0,6],[-7,2],[-15,0],[-7,-3],[-3,0],[-6,8],[-10,7],[-8,12],[-7,7],[-18,22],[-1,4],[-5,0],[-4,1],[-4,3],[-4,4],[-1,1],[-3,1],[-2,2],[0,1],[0,5],[0,2],[-2,4],[-2,2],[-2,-2],[-6,7],[-24,13],[1,2],[1,1],[2,1],[-16,1],[-5,3],[2,2],[2,1],[3,1],[2,0],[-5,1],[-5,5],[-1,4],[5,2],[25,0],[0,5],[-22,1],[-10,5],[1,12],[6,10],[8,9],[8,5],[9,-2],[13,-8],[25,0],[5,-2],[8,-8],[4,-2],[7,1],[1,2],[-4,4],[0,5],[115,-70],[-3,-2],[-1,-1],[4,-10],[8,-6],[9,-3],[6,-1],[2,-4],[-20,-21]],[[29868,88197],[4,-10],[-3,-8],[-6,-2],[-3,6],[-3,7],[-7,0],[-9,-4],[-6,-6],[4,-2],[7,-3],[3,-2],[-16,-11],[-8,0],[-14,15],[-9,0],[-20,-4],[0,4],[79,24],[7,-4]],[[24173,88315],[3,-9],[1,-6],[-3,-3],[-22,7],[-8,6],[-4,9],[27,1],[6,-5]],[[31975,88250],[-8,17],[7,14],[22,22],[7,-18],[4,-8],[6,-7],[1,6],[-2,6],[-3,5],[-3,3],[2,7],[3,2],[4,-1],[4,-4],[0,20],[12,9],[12,-2],[2,-10],[6,-7],[15,13],[2,-6],[-3,-8],[-9,-16],[-3,-9],[15,6],[7,-1],[7,-5],[-17,-23],[-9,-5],[-4,-4],[5,0],[11,-5],[4,-3],[7,-11],[4,-3],[4,2],[4,6],[3,7],[5,5],[6,-2],[2,-5],[7,-24],[-6,0],[3,-10],[2,-9],[-3,-7],[-7,-7],[-4,0],[-4,0],[-4,2],[-4,3],[-2,4],[-6,14],[-2,2],[-15,4],[-2,2],[-2,4],[-2,4],[-13,6],[-11,16],[-5,4],[-7,-1],[-12,-9],[-6,-1],[-14,6],[-13,10]],[[28340,88351],[-2,4],[2,9],[4,10],[3,6],[6,3],[6,3],[13,2],[19,-4],[6,4],[-2,4],[50,4],[14,-8],[0,-4],[-12,-1],[-5,-3],[-5,-8],[-5,-11],[-18,-24],[-8,-6],[-5,0],[-9,7],[-37,7],[-10,5],[-5,1]],[[27369,88485],[-13,3],[-6,6],[1,10],[10,8],[16,0],[13,-5],[3,-9],[-4,-6],[-7,-4],[-13,-3]],[[29645,88501],[7,-4],[15,1],[7,-5],[-6,-5],[-7,-4],[-14,-3],[1,-2],[1,-2],[1,-2],[1,-2],[-6,-12],[-3,-2],[-3,4],[-4,3],[-5,-1],[-5,-3],[-4,-1],[0,4],[2,0],[2,2],[2,2],[1,4],[-5,0],[-12,-4],[2,9],[2,3],[-2,7],[5,0],[12,-3],[4,5],[1,8],[-2,7],[-5,5],[0,3],[21,0],[0,-3],[-1,0],[-1,-1],[1,-1],[-1,-2],[-2,-5]],[[29575,88670],[1,-7],[4,-3],[3,-2],[1,-4],[0,-17],[-2,-9],[-5,-6],[-8,-7],[2,-11],[-1,-8],[2,-5],[7,0],[-5,-6],[-6,-4],[-6,-5],[-2,-10],[3,1],[2,-1],[1,-3],[1,-5],[-14,-1],[-11,3],[-2,3],[0,41],[-2,12],[-3,11],[5,8],[4,3],[4,1],[3,-1],[7,-3],[3,1],[0,3],[-3,7],[-4,9],[0,6],[7,-1],[0,3],[-22,6],[-4,3],[-3,10],[4,6],[9,6],[8,9],[10,5],[11,-1],[7,-6],[0,-7],[0,-3],[1,-3],[-1,0],[1,-4],[-4,-5],[-2,-5],[-1,-4]],[[31792,88696],[6,-7],[7,-2],[14,1],[-6,-7],[-8,-2],[-16,1],[-28,-7],[-7,3],[-1,20],[9,19],[14,16],[15,9],[15,26],[11,8],[4,6],[4,23],[5,7],[5,-1],[3,-8],[0,-8],[-8,-32],[5,-3],[3,7],[6,21],[4,7],[10,13],[5,4],[-2,-11],[3,-4],[5,-2],[5,1],[-4,-8],[-13,-20],[10,1],[3,-1],[4,-5],[0,-2],[0,-6],[1,-4],[4,4],[2,0],[5,0],[-2,-8],[-3,-3],[-13,-2],[-3,-2],[-6,-5],[-9,-4],[-19,-2],[-8,-6],[5,-4],[5,-1],[11,0],[-8,-12],[-15,-6],[-29,-2]],[[32706,89407],[2,0],[0,-5],[-2,-1],[-1,-2],[0,-1],[-10,-12],[9,-3],[18,3],[9,-4],[-5,-5],[-5,-3],[0,-4],[6,4],[5,0],[5,-3],[5,-5],[-4,-4],[2,-11],[-5,-3],[-8,-1],[-6,-1],[3,-5],[1,-4],[-1,-5],[-2,-5],[-3,-2],[-2,2],[-3,4],[-3,2],[-3,6],[-2,11],[-3,7],[-4,-5],[-6,-18],[-4,-6],[-6,2],[-2,7],[2,8],[5,7],[3,5],[-3,-1],[-5,-5],[-3,-2],[-3,0],[-6,2],[-3,-2],[1,3],[0,7],[1,3],[-6,-3],[-17,-2],[1,5],[2,4],[2,3],[3,1],[0,4],[-4,4],[-5,6],[-3,8],[0,10],[4,5],[5,0],[10,-5],[2,1],[2,2],[1,2],[2,-2],[0,-2],[1,-7],[0,-1],[4,0],[3,1],[6,6],[6,4],[5,1],[12,0]],[[26804,89443],[-9,6],[-10,12],[-3,13],[11,5],[49,0],[11,-4],[6,-4],[4,-6],[1,-7],[-6,-1],[-11,2],[-18,-1],[-5,-3],[-2,-3],[-4,-7],[-2,-2],[-12,0]],[[27727,88234],[0,-7],[-4,-2],[-10,1],[-14,-7],[-51,-9],[-4,-3],[-3,-6],[-3,-11],[-3,-7],[-3,-3],[-2,-1],[-9,-9],[-6,-10],[-4,-4],[-8,-3],[-28,-25],[-13,-7],[-7,-11],[-4,-2],[-2,-1],[-1,-3],[-3,-6],[-2,-2],[-2,-1],[-3,1],[-11,-1],[-5,-2],[-3,-5],[-1,-6],[0,-9],[0,-7],[0,-3],[-14,-14],[-4,-3],[-6,0],[-29,8],[-27,22],[-65,29],[-12,15],[-9,3],[-29,-3],[-7,4],[-5,8],[-6,10],[-8,11],[-9,6],[-10,2],[-10,0],[-13,-5],[-4,0],[-5,3],[-8,8],[-13,4],[-15,14],[-9,4],[-46,-3],[-6,-5],[1,-8],[-8,12],[-9,-15],[-10,0],[-35,15],[-2,2],[-1,4],[1,11],[-1,3],[-11,8],[-5,6],[0,9],[5,16],[4,7],[5,3],[6,2],[12,8],[7,2],[5,0],[2,1],[2,3],[0,1],[2,6],[3,7],[1,0],[0,9],[-1,7],[-1,6],[2,5],[-4,9],[-6,6],[-24,16],[-4,1],[-4,2],[-5,9],[-2,1],[-57,0],[-29,9],[-7,0],[-24,-6],[-11,-7],[-10,0],[-8,-7],[-7,3],[-13,12],[0,2],[1,4],[1,3],[-5,3],[1,4],[8,9],[9,17],[8,8],[19,32],[2,6],[2,6],[0,5],[-2,7],[-11,17],[-1,3],[-19,-1],[-10,-4],[-9,-7],[-5,-10],[-4,-12],[-5,-7],[-9,3],[-10,6],[-9,2],[-9,-4],[-9,-6],[-6,-7],[-3,-2],[-5,0],[-2,2],[-4,5],[-2,2],[-3,1],[-15,-3],[-8,-6],[-6,-9],[-6,-12],[-3,-12],[-2,-6],[-4,-2],[-6,-1],[-4,-4],[-9,-11],[2,-9],[3,-7],[13,-21],[1,-2],[0,-2],[1,-2],[2,-4],[0,-3],[-1,-2],[-1,-2],[-1,-4],[-3,-13],[-4,-7],[-2,-4],[-1,-4],[3,-8],[9,-13],[4,-7],[-4,0],[-2,-1],[-1,-3],[1,-4],[-3,-17],[-2,-5],[-4,-4],[-5,2],[-9,8],[-8,0],[-8,-2],[-8,-6],[-31,-30],[-3,-5],[-4,-9],[-3,-3],[-4,-2],[-13,-5],[-4,-3],[-15,-30],[-7,-7],[-9,1],[-18,11],[-12,-4],[-9,4],[-4,1],[-3,-3],[-1,-2],[-1,-4],[-2,-6],[-3,-5],[-11,-9],[-11,-13],[-4,-3],[0,-17],[-13,-28],[2,-12],[-10,-39],[-4,-6],[-7,-5],[-20,-35],[-8,-5],[-17,-4],[-11,-14],[-10,-3],[-8,-10],[-47,-36],[-39,-22],[-49,-20],[-51,0],[-15,4],[-21,26],[-2,7],[-3,16],[-9,18],[-1,5],[-1,10],[-1,4],[1,11],[-1,30],[-2,7],[1,10],[-1,27],[0,12],[4,11],[5,13],[4,13],[-1,12],[2,0],[-3,8],[-3,12],[-1,11],[2,5],[2,3],[5,12],[2,3],[-1,7],[-3,12],[0,6],[-4,12],[-8,5],[-10,4],[-7,5],[-2,10],[0,11],[1,11],[-1,9],[0,4],[-14,-25],[-8,-11],[-7,-5],[-37,-4],[-73,-28],[-19,-3],[-59,15],[-38,-4],[-8,-4],[-8,-10],[-14,-23],[-17,-16],[-18,-8],[-55,-4],[-16,5],[-15,13],[-11,22],[-2,22],[4,22],[9,20],[62,99],[16,19],[83,40],[10,11],[19,4],[21,18],[19,12],[27,3],[9,5],[7,10],[3,12],[-1,12],[-3,12],[-4,10],[-6,7],[-18,15],[-5,9],[0,5],[2,5],[2,5],[2,5],[-7,3],[-5,5],[-4,7],[-3,9],[0,8],[-1,7],[-2,7],[-1,7],[1,10],[2,6],[3,6],[3,10],[-9,7],[-8,9],[4,10],[1,12],[1,42],[-1,8],[-9,22],[10,14],[9,18],[30,91],[2,5],[3,2],[8,-1],[4,3],[3,6],[-6,4],[-2,3],[-2,5],[7,3],[-1,7],[-8,14],[7,5],[6,5],[3,7],[0,12],[-4,9],[-12,10],[-3,9],[0,10],[2,12],[2,11],[3,7],[5,9],[6,7],[4,8],[2,11],[0,41],[0,10],[-3,14],[0,8],[-2,10],[-3,9],[-1,10],[3,12],[13,24],[5,6],[-3,7],[-9,4],[-3,6],[0,6],[2,8],[2,7],[2,5],[3,9],[4,41],[6,28],[5,15],[10,12],[1,12],[-1,22],[11,28],[14,31],[59,59],[32,28],[19,6],[15,2],[7,-26],[-8,-13],[-4,-12],[5,-11],[0,-14],[9,-1],[8,5],[3,4],[5,12],[4,4],[4,2],[12,-1],[35,-17],[8,-12],[2,-7],[-1,-4],[-1,-1],[0,-5],[2,-5],[2,-5],[1,-4],[-3,-2],[-5,-4],[4,-10],[26,-36],[6,-11],[0,-10],[-8,-12],[-8,-7],[-39,-16],[-10,3],[-4,-2],[-4,-9],[15,-20],[9,-8],[19,-6],[23,-16],[16,-18],[4,-6],[1,-6],[0,-6],[-3,-19],[-2,-7],[6,-15],[19,-37],[1,-6],[0,-7],[-1,-8],[0,-6],[3,-3],[20,0],[9,5],[7,11],[2,6],[4,19],[2,2],[3,3],[1,3],[0,4],[-1,2],[-1,2],[0,2],[0,13],[2,10],[5,9],[6,11],[15,31],[8,8],[3,6],[6,13],[4,3],[6,-2],[11,-7],[18,-7],[7,-7],[-3,-12],[-2,-6],[1,-3],[4,-1],[4,-1],[3,-2],[7,-10],[3,-3],[19,-5],[21,-14],[17,-4],[3,-4],[-1,-5],[-1,-1],[-2,-1],[-2,-1],[-2,-3],[-1,-3],[0,-2],[-1,-3],[-11,-12],[-2,-3],[0,-9],[5,-5],[10,-5],[22,-24],[8,-6],[7,-1],[20,1],[27,-4],[-12,-9],[5,-5],[5,-2],[11,0],[19,8],[14,-10],[49,0],[22,-9],[11,-2],[9,-4],[5,-12],[5,-14],[7,-10],[-1,-24],[9,-16],[23,-23],[2,-6],[1,-4],[1,-3],[28,-8],[16,-9],[10,-1],[4,-1],[3,-3],[5,-7],[4,-5],[4,-2],[16,-5],[6,-4],[5,-7],[14,-28],[6,-8],[8,-7],[8,-4],[26,0],[6,-4],[14,-16],[4,-2],[2,2],[16,5],[13,7],[8,1],[8,-1],[8,-4],[8,-6],[9,-13],[3,-2],[13,-1],[4,-2],[-3,-13],[-1,-4],[27,0],[7,-3],[5,-7],[2,-3],[2,-8],[1,-3],[59,-69],[6,-2],[8,-4],[7,-7],[4,-9],[0,-3],[1,-2],[1,-4],[0,-6],[-1,-4],[-4,-7],[-1,-4],[0,-9],[1,-9],[5,-19],[-2,-4],[2,-10],[-3,-6],[-3,-6],[-2,-9],[2,-9],[3,-10],[14,-23],[6,-8],[7,-6],[12,-5],[4,-7],[5,-15],[-4,-16],[-1,-4],[0,-10],[-5,-6],[-23,-7],[-16,-11],[-25,-5],[-7,-4],[-8,-6],[-5,-7],[-3,-3],[-2,4],[-1,6],[-3,-3],[-3,-6],[-2,-3],[1,-8],[-2,-5],[-3,-4],[-2,-5],[2,-7],[6,-3],[26,6],[27,-1],[36,15],[17,4],[24,-1],[13,3],[7,10],[-1,3],[-4,13],[3,6],[5,4],[6,2],[4,-3],[-5,-7],[-2,-2],[10,-5],[21,4],[15,-14],[51,-18],[24,-19],[12,0],[7,10],[-5,11],[-9,12],[-6,11],[8,10],[3,5],[2,6],[-4,11],[-2,4],[18,-4],[18,-12],[17,-17],[13,-21],[2,-5],[1,-4],[2,-4],[23,-5],[19,-14],[7,-9],[-5,-6],[-3,-15],[14,-9],[-10,-8],[-12,-4],[-11,2],[-24,10],[8,-14],[9,-8],[73,-18],[28,-25],[5,0],[11,5],[5,-1],[3,-4],[2,-7],[4,-13],[-3,-4]],[[26388,89560],[13,5],[7,0],[9,-15],[11,-14],[-2,-2],[-3,-2],[-2,-4],[-2,-4],[17,-19],[5,-7],[5,-6],[6,-4],[4,-5],[-1,-8],[9,-11],[4,-6],[-1,-7],[1,-9],[3,-7],[12,-28],[2,-7],[3,-8],[2,-8],[2,-4],[3,-3],[5,-3],[2,-4],[0,-2],[-3,-5],[0,-1],[1,-2],[2,-4],[0,-2],[4,-9],[1,-5],[-4,-6],[-17,-19],[-7,-15],[-4,-5],[-7,-3],[-10,1],[-14,6],[-11,13],[-3,18],[-1,3],[-1,4],[0,11],[-1,7],[-4,6],[-13,11],[-34,16],[-4,4],[-5,10],[-5,6],[-5,7],[-3,12],[-4,34],[-4,10],[5,14],[-3,15],[-6,15],[-5,9],[2,6],[1,6],[0,6],[-1,7],[6,13],[7,8],[8,3],[11,0],[3,-1],[2,-2],[2,-3],[4,-4],[1,-1],[2,-1],[3,-1]],[[26535,89609],[1,8],[0,8],[-1,8],[0,5],[4,4],[7,0],[7,-3],[17,-13],[45,-18],[12,-1],[5,-2],[4,-3],[3,-4],[3,-4],[5,-1],[4,4],[5,7],[4,4],[5,-5],[2,-6],[0,-8],[0,-7],[-1,-5],[5,-4],[11,-4],[31,-26],[16,-5],[9,-7],[8,-9],[6,-10],[3,-26],[-9,-17],[-25,-18],[5,-6],[16,-6],[1,-2],[2,-2],[1,-3],[3,-1],[7,0],[3,-2],[9,-11],[20,-7],[6,-4],[2,-3],[2,-4],[-2,-7],[-1,-5],[2,-2],[4,2],[7,5],[5,2],[50,0],[15,-4],[7,-9],[-6,-4],[-7,-6],[-2,-7],[6,-8],[-3,-4],[-3,-3],[-6,-4],[2,0],[-5,-7],[-10,-6],[-9,-3],[-5,1],[-6,9],[-6,6],[-7,5],[-7,3],[-32,0],[-8,3],[2,8],[9,17],[-9,-2],[-9,-8],[-2,-10],[9,-8],[0,-5],[-10,3],[-19,9],[-9,1],[-15,-12],[-7,0],[-3,14],[2,4],[4,1],[4,0],[3,1],[2,5],[0,4],[-1,4],[-1,5],[5,7],[10,6],[18,6],[0,4],[-11,5],[-29,-5],[11,12],[2,4],[-1,6],[-5,1],[-18,-7],[-25,-25],[-6,0],[-4,3],[-3,5],[-4,4],[-5,1],[-10,-4],[-15,4],[-4,3],[0,7],[4,6],[3,3],[2,5],[2,8],[-2,12],[-4,12],[-2,12],[2,18],[-3,5],[-5,4],[-10,4],[0,4],[1,7],[0,7],[-3,7],[-3,3],[-7,3],[-16,13],[-5,2],[-18,0],[-7,3],[-8,10],[-7,14],[-6,14],[2,0],[-2,4],[2,4],[-2,0]],[[26868,89739],[-4,0],[-2,2],[0,4],[2,6],[4,8],[3,2],[8,-1],[3,-2],[7,-13],[4,-2],[9,-2],[4,-2],[-6,-4],[-3,-3],[-2,-5],[5,-2],[16,2],[3,-2],[7,-11],[5,-3],[33,11],[7,-7],[-10,-8],[-5,-7],[-9,-20],[-5,-6],[-9,-3],[-10,2],[-10,6],[-8,10],[-13,10],[-18,5],[-11,10],[5,25]],[[32664,90259],[10,-13],[-10,-4],[-51,-37],[-8,-11],[-8,-15],[-6,-4],[-14,5],[-5,-4],[-1,-7],[0,-6],[-1,-4],[-7,-2],[-10,3],[-26,26],[22,-3],[5,3],[0,3],[0,15],[1,5],[4,1],[13,1],[6,2],[4,6],[2,9],[3,4],[15,0],[5,2],[-3,6],[-6,5],[-2,6],[4,3],[4,1],[10,0],[4,1],[9,6],[5,1],[26,-1],[6,-3]],[[32356,90340],[5,8],[3,2],[3,0],[25,-17],[8,-10],[-14,-12],[-14,-3],[-86,3],[-18,9],[3,2],[11,9],[9,6],[18,16],[5,3],[10,3],[9,-1],[4,-7],[-2,-19],[11,1],[5,3],[5,4]],[[32289,90458],[-9,-7],[-53,-3],[-10,4],[-6,10],[2,15],[1,6],[10,23],[3,8],[1,9],[-1,6],[2,5],[5,2],[4,-6],[4,-3],[9,-22],[28,-28],[10,-19]],[[29622,90644],[0,-8],[-3,-12],[-5,-11],[-6,-5],[-138,0],[-138,1],[-41,19],[-13,12],[-12,15],[-31,54],[-5,10],[-2,12],[1,27],[2,11],[3,9],[7,6],[21,6],[50,-8],[4,0],[4,3],[3,6],[-1,4],[1,4],[0,3],[2,2],[5,6],[2,0],[5,6],[7,25],[6,6],[8,-3],[16,-17],[9,-4],[2,-3],[-1,-5],[-1,-6],[-7,-5],[-4,-5],[-3,-6],[-2,-7],[6,-8],[26,4],[10,-2],[10,-7],[47,-13],[18,-13],[8,-3],[7,-5],[4,-2],[3,2],[8,8],[4,3],[5,0],[16,-4],[15,4],[23,-4],[21,-10],[9,-14],[-5,-16],[0,-5],[0,-6],[3,-7],[2,-5],[3,-2],[1,-3],[0,-7],[-2,-12],[2,-4],[9,-7],[2,-4]],[[31584,90900],[18,4],[9,0],[4,-8],[-1,-5],[-8,-3],[0,-4],[-7,-3],[-6,-9],[-2,-13],[3,-14],[-3,-9],[-13,-1],[-73,16],[-11,-1],[-5,2],[-4,5],[-2,7],[0,4],[4,3],[5,1],[9,-2],[7,-4],[6,1],[7,11],[7,7],[11,1],[32,-7],[4,1],[3,4],[3,7],[3,6],[0,3]],[[25951,90912],[20,-16],[20,-26],[4,-3],[3,-4],[-2,-8],[-6,-16],[0,-9],[0,-32],[1,-10],[5,-10],[3,-12],[3,-12],[5,-38],[0,-13],[-2,-6],[-9,-49],[-14,-31],[-4,-5],[-9,-5],[-16,-22],[-8,-6],[-12,1],[-11,3],[-4,4],[-4,10],[-3,5],[-11,7],[-22,8],[-9,11],[-4,7],[-10,23],[-2,9],[-1,7],[-3,11],[-1,6],[-1,2],[-1,1],[0,2],[1,3],[2,4],[3,-1],[2,-1],[3,0],[2,3],[2,7],[2,2],[3,1],[4,1],[2,2],[3,3],[1,6],[2,9],[0,1],[-3,17],[-7,7],[-18,6],[-8,7],[-5,7],[0,10],[4,14],[3,4],[14,11],[3,3],[0,8],[-4,13],[5,13],[19,19],[8,11],[6,13],[8,11],[9,9],[8,5],[8,0],[23,-12]],[[29157,90843],[1,-3],[6,-13],[1,-6],[0,-8],[-1,-7],[-7,-7],[-2,-8],[-3,-17],[-5,-14],[-20,-33],[-5,-15],[2,-8],[5,-9],[5,-34],[6,-11],[8,-9],[6,-9],[-5,-24],[-1,-27],[2,-27],[4,-24],[2,-5],[2,-1],[0,-2],[0,-8],[-1,-6],[-6,-14],[-3,-19],[-5,-11],[-15,-28],[-13,-15],[-6,-10],[-6,-7],[-19,-6],[-8,-5],[0,-2],[0,-4],[-1,-4],[-1,-3],[-2,-1],[-3,-1],[-2,-2],[-3,-3],[-5,-11],[-1,-2],[-33,2],[-10,-6],[-2,-5],[-4,-11],[-3,-4],[-5,-4],[-26,-2],[-56,-29],[-8,-2],[-47,4],[-16,-4],[-27,9],[-9,-3],[-17,-11],[-8,-3],[-48,4],[-17,-10],[-9,-2],[-97,9],[-11,9],[-3,4],[-8,6],[-4,7],[-11,22],[-15,49],[2,0],[-5,11],[-6,6],[-7,5],[-7,6],[3,12],[1,9],[-1,9],[-5,11],[6,3],[3,4],[1,5],[-1,5],[-6,16],[-4,9],[-16,55],[-1,12],[2,10],[4,10],[16,56],[9,21],[64,114],[20,28],[8,19],[1,6],[2,3],[6,5],[33,45],[11,12],[109,43],[7,0],[6,-2],[-2,-9],[8,-8],[13,-3],[28,0],[9,4],[16,14],[22,9],[87,-18],[28,-18],[100,-28],[6,-8],[5,-11],[5,-10],[3,-2],[7,-5],[3,-1]],[[28081,90932],[21,-14],[6,-9],[-5,-19],[-12,-13],[-27,-16],[-11,-16],[-10,-6],[-15,6],[-14,13],[-10,14],[2,4],[-3,10],[-1,13],[1,13],[2,16],[-1,1],[1,2],[1,6],[6,7],[3,2],[57,4],[3,-2],[0,-2],[4,-10],[2,-4]],[[27199,90922],[-19,16],[-30,6],[-25,12],[6,8],[20,-9],[8,1],[-1,3],[-3,4],[-1,2],[0,4],[19,0],[10,-4],[7,-9],[-1,-5],[2,-2],[4,-1],[21,2],[6,-2],[0,-3],[-1,-2],[-12,-15],[-5,-5],[-5,-1]],[[29342,90971],[-7,12],[-2,8],[0,10],[3,8],[4,5],[4,3],[11,1],[6,-3],[14,-12],[22,-26],[14,-24],[10,-9],[1,-7],[-4,-11],[-4,-5],[-5,-4],[-4,-6],[-4,-19],[-5,-5],[-7,-1],[-6,2],[-10,12],[-4,15],[3,12],[12,1],[0,4],[-22,13],[-11,9],[-9,17]],[[28162,91040],[-2,-8],[-7,-6],[-25,-18],[-13,-4],[-13,1],[-14,4],[4,7],[2,2],[-7,4],[-24,0],[4,4],[3,5],[1,6],[-2,5],[4,7],[4,0],[5,-2],[4,-1],[5,4],[8,13],[4,3],[24,1],[11,6],[9,14],[-6,8],[-8,4],[-8,1],[-8,3],[2,4],[-36,20],[2,2],[2,1],[5,1],[7,4],[47,-5],[7,-3],[17,-14],[6,-2],[21,1],[7,-5],[0,-5],[0,-1],[0,-2],[0,-5],[-2,-3],[-1,-6],[0,-7],[-2,-8],[-6,-7],[-7,0],[-35,11],[-4,-6],[-2,-8],[-4,-5],[-5,-3],[-4,-2],[7,-3],[19,-2],[4,-5]],[[29209,91083],[-3,6],[-10,22],[18,21],[10,8],[30,-7],[11,-9],[-1,-15],[0,-7],[7,-4],[14,-4],[3,-2],[13,-18],[-6,-5],[-70,4],[-8,3],[-8,7]],[[29211,90989],[12,1],[3,-2],[-2,-7],[-4,-5],[-5,-4],[-7,-3],[-4,0],[0,-4],[4,-1],[6,-2],[6,-5],[1,-9],[-3,-4],[-9,3],[-3,-3],[7,-3],[3,-3],[3,-6],[-9,-1],[-3,1],[-3,4],[-3,5],[-2,3],[-26,-5],[-6,1],[-2,5],[-1,14],[-2,10],[-5,6],[-62,31],[-34,30],[-9,14],[5,16],[-2,0],[2,9],[0,8],[-2,18],[2,10],[17,20],[2,7],[4,15],[3,3],[5,4],[6,7],[6,2],[5,-10],[5,-3],[9,-7],[42,-5],[8,-8],[4,-16],[4,-18],[6,-11],[2,-12],[8,-11],[10,-10],[12,-16],[10,-8],[4,-6],[1,-7],[-3,-8],[-4,-5],[-4,-3],[-14,2],[-7,-2],[-4,-8],[1,-7],[5,-2],[11,1]],[[31109,91196],[86,-30],[9,-7],[0,-3],[-69,5],[-76,33],[-71,11],[-5,5],[2,10],[3,4],[4,1],[3,-1],[6,-4],[21,-8],[32,0],[55,-16]],[[24949,91403],[3,-1],[3,-2],[2,-2],[2,-3],[1,-9],[4,-15],[0,-4],[-3,-5],[-4,1],[-3,5],[1,11],[-14,-5],[-6,0],[-6,7],[-4,10],[-2,9],[0,9],[3,11],[3,-5],[0,-5],[1,-5],[5,-2],[6,3],[4,7],[5,4],[7,-2],[-2,-4],[-1,-2],[-2,-1],[-3,-1],[0,-4]],[[24862,91476],[2,3],[3,1],[2,-1],[2,-3],[2,-5],[-1,-3],[-2,-1],[-6,-7],[-5,-2],[-9,-2],[-9,-4],[-5,-1],[-4,3],[-2,6],[-1,6],[-2,6],[-3,4],[2,3],[1,1],[0,4],[-5,-1],[-5,-6],[-3,-6],[-5,-3],[-1,3],[3,7],[4,7],[5,3],[0,4],[-9,-1],[-3,2],[-1,7],[1,4],[10,13],[-8,0],[0,4],[6,8],[2,11],[-4,4],[-7,-9],[-10,-22],[-6,-9],[-7,-8],[0,31],[2,10],[4,7],[5,5],[22,9],[11,-3],[11,-8],[8,-12],[3,-6],[4,-12],[3,-6],[4,-5],[4,-4],[4,-4],[2,-10],[-3,-1],[-3,-2],[-2,-4],[-1,-5]],[[28033,91261],[-18,-6],[-5,-4],[-14,-16],[-4,-2],[-11,0],[-6,2],[-16,10],[-11,4],[-3,2],[-1,7],[1,7],[1,6],[1,6],[-2,4],[-5,3],[-2,5],[15,9],[12,17],[23,54],[5,8],[6,6],[7,4],[5,1],[11,-1],[6,1],[10,6],[5,1],[19,-1],[5,3],[10,12],[3,3],[10,5],[3,3],[3,7],[0,7],[-1,11],[1,7],[4,8],[21,24],[10,8],[19,-7],[10,3],[-7,11],[-17,13],[-6,13],[2,7],[4,3],[9,2],[5,3],[14,13],[6,3],[17,1],[13,8],[6,1],[13,-4],[27,0],[11,-11],[9,-24],[8,-15],[-1,-5],[-6,-3],[-7,-4],[-9,-12],[-7,-14],[-3,-12],[-3,-7],[-5,-5],[-5,0],[-3,4],[-2,7],[-6,3],[-6,2],[-5,2],[-4,-6],[-1,-8],[1,-20],[-3,-6],[-17,-11],[-6,-6],[4,-18],[-15,-20],[-31,-31],[-1,-5],[0,-13],[-1,-6],[-4,-7],[-17,-7],[-3,-5],[-2,-4],[-1,-5],[-2,-6],[-5,-6],[-7,-3],[-17,-3],[-9,-6],[-32,-5]],[[24930,91509],[0,-12],[-6,-10],[-7,-4],[-4,5],[-2,0],[-2,-14],[-8,4],[-15,18],[0,4],[4,7],[-2,3],[-6,2],[-5,1],[-5,3],[-8,11],[-6,2],[1,8],[-1,6],[1,7],[5,7],[27,14],[5,5],[1,6],[3,3],[9,1],[3,1],[2,2],[2,1],[3,0],[3,-2],[8,-10],[0,-4],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[7,0],[4,5],[-1,7],[-6,8],[3,2],[7,8],[4,2],[-2,-8],[0,-3],[1,-2],[1,-2],[5,-5],[1,-5],[-1,-7],[-4,-5],[4,1],[4,-1],[3,-2],[3,-6],[-2,-7],[-2,-7],[-4,-4],[-10,-4],[-4,-6],[-3,-8],[-4,-8]],[[28696,91576],[11,-11],[2,-6],[-1,-7],[-1,-6],[0,-6],[2,-7],[-7,-5],[-2,-4],[1,-7],[-9,-3],[-16,-14],[-8,-4],[-6,-3],[-12,-17],[-7,-4],[-7,-2],[-6,-6],[-4,-8],[1,-12],[4,-10],[7,-4],[6,-2],[6,-4],[-4,-6],[-4,-4],[-9,-7],[3,-6],[2,-2],[0,-4],[-8,3],[-4,4],[-3,5],[0,9],[-10,2],[-22,-3],[-18,-11],[-6,-2],[-30,17],[-15,21],[-13,25],[-6,25],[2,11],[8,15],[3,9],[1,12],[-2,10],[-3,8],[-1,8],[9,16],[21,11],[38,8],[9,-10],[10,-7],[19,-7],[54,0],[7,3],[6,6],[5,1],[7,-8]],[[31265,91683],[13,0],[6,-3],[8,-11],[7,-3],[4,-3],[-13,-16],[-39,2],[-16,-7],[5,0],[9,-6],[4,-2],[1,-1],[-2,-3],[-4,-4],[-20,9],[-14,-5],[-13,6],[-15,2],[-7,4],[3,3],[0,4],[1,3],[0,3],[4,3],[3,0],[3,-2],[4,-1],[7,2],[14,8],[15,3],[4,2],[2,3],[2,4],[2,11],[1,3],[3,1],[3,0],[2,-2],[2,-5],[1,-2],[12,0],[-2,0]],[[31136,91649],[-16,-3],[-95,37],[6,4],[19,4],[-2,0],[5,3],[9,11],[10,5],[18,20],[17,4],[35,-17],[17,7],[-34,11],[-7,9],[1,7],[4,2],[11,-1],[7,2],[3,-1],[3,-5],[7,-7],[8,-6],[7,-2],[9,-1],[-1,-5],[4,-2],[5,-2],[1,-8],[-3,-6],[-20,-12],[-16,-19],[-9,-15],[-3,-14]],[[28223,91715],[3,8],[-1,7],[-2,6],[0,8],[5,6],[7,-2],[13,-8],[-5,-8],[7,-7],[11,-2],[8,9],[-1,8],[-8,18],[-2,10],[16,1],[5,10],[5,1],[6,-1],[4,-2],[4,-7],[4,-1],[9,-1],[15,-10],[10,-12],[5,-8],[8,-23],[-4,-8],[-6,-3],[-11,-5],[-9,-7],[-4,-4],[-3,-7],[-5,-6],[-4,-2],[-10,2],[-40,-12],[-22,-17],[-21,-8],[-21,-18],[-8,0],[-10,10],[-10,5],[-10,-2],[-33,-26],[-14,-7],[-9,4],[-6,8],[-1,5],[3,7],[5,7],[45,34],[5,5],[16,30],[10,10],[4,5],[4,-1],[19,6],[19,-7],[5,2]],[[27786,91707],[-15,8],[-8,2],[-7,-7],[4,-11],[26,-39],[9,-10],[-7,-17],[-10,-4],[-28,7],[-14,8],[-18,4],[-5,5],[-2,10],[3,12],[4,13],[1,11],[-8,4],[-6,-6],[-13,-28],[-7,-6],[-1,9],[-1,10],[-1,9],[-2,6],[-3,4],[-11,2],[-4,3],[-6,9],[-17,13],[-18,3],[-55,-3],[-10,5],[-5,11],[3,6],[14,10],[5,6],[1,5],[1,3],[1,3],[2,3],[19,-3],[17,-13],[15,-1],[4,-3],[3,3],[4,0],[5,-2],[3,-5],[2,-4],[1,-11],[1,-5],[7,-8],[7,1],[1,8],[-7,11],[3,3],[7,2],[3,3],[-9,1],[-8,4],[-7,6],[-6,10],[-3,6],[-3,9],[1,7],[7,2],[8,5],[11,2],[19,-3],[1,-9],[9,2],[20,11],[7,-2],[10,-6],[10,-9],[3,-10],[-1,-4],[-6,-7],[-2,-5],[2,-5],[3,1],[16,16],[4,1],[26,-14],[30,9],[9,9],[5,2],[8,-5],[5,-1],[4,3],[0,3],[-1,6],[0,4],[0,3],[1,2],[2,1],[1,2],[2,1],[6,0],[3,1],[1,2],[1,8],[1,2],[5,1],[39,-13],[6,6],[16,-4],[13,-13],[-2,-22],[8,0],[6,-3],[5,-6],[5,-11],[-5,-8],[-52,-37],[-22,-7],[-67,-5],[-12,-4],[-6,0],[-5,2],[-7,13],[-2,1]],[[26712,91777],[-9,5],[-9,9],[-5,11],[6,15],[12,8],[79,-16],[12,-8],[-3,-3],[-4,-2],[-11,1],[-13,-8],[-12,0],[-5,-1],[-4,-8],[9,-5],[4,-4],[2,-7],[-12,-3],[-12,3],[-25,13]],[[24485,91842],[14,11],[15,2],[15,-4],[15,-9],[-8,-6],[-28,-7],[-15,-7],[-4,-1],[-2,2],[-6,10],[1,3],[2,3],[1,3]],[[24593,91793],[-3,-9],[-5,-8],[-11,-11],[-7,-1],[-14,10],[-7,3],[-3,1],[-9,13],[-4,3],[-13,7],[0,4],[35,14],[11,8],[5,2],[9,-3],[5,3],[2,6],[1,7],[1,7],[3,4],[5,1],[5,2],[5,1],[4,-4],[-2,-4],[-4,-3],[-7,-4],[4,-5],[-3,-9],[-7,-8],[-7,-3],[9,-11],[2,-6],[0,-7]],[[25810,91918],[-10,3],[-19,15],[-17,5],[-5,2],[-3,4],[0,3],[0,11],[0,4],[-7,7],[-17,8],[-4,7],[7,5],[10,3],[10,0],[7,-3],[17,-2],[27,10],[-10,7],[-3,1],[8,12],[12,-6],[20,-18],[55,-17],[42,17],[15,-4],[4,-5],[9,-16],[7,-9],[4,-7],[2,-8],[-1,-6],[3,-3],[10,-3],[-5,-13],[-7,-6],[-76,-8],[-39,12],[-18,13],[-7,1],[-14,-12],[-7,-4]],[[30136,92527],[40,-1],[6,-5],[-1,-13],[-4,-8],[-10,-13],[3,-12],[-5,-8],[-9,-3],[-52,-6],[-76,-28],[-6,-5],[-8,-11],[-5,-5],[-10,-3],[-13,-2],[-11,2],[-8,8],[0,1],[1,5],[-1,6],[-1,6],[-3,4],[-3,3],[-6,3],[-6,5],[-4,6],[-8,18],[1,3],[-1,2],[0,3],[14,4],[6,-1],[7,-3],[-5,-5],[7,-4],[8,1],[8,5],[6,9],[2,9],[3,22],[3,9],[1,5],[-1,5],[-1,5],[0,4],[2,4],[43,15],[8,-3],[-2,-4],[3,-3],[2,-1],[6,0],[80,-25]],[[29735,92823],[5,-4],[3,-6],[3,-7],[4,-7],[5,-5],[13,-5],[5,-6],[-11,-8],[-23,-1],[-20,-9],[-4,-4],[-1,-9],[1,-4],[4,-12],[0,-6],[0,-2],[-1,-2],[-1,-2],[1,-2],[1,-1],[4,-3],[3,-7],[2,-1],[-1,-2],[-3,-8],[-3,-4],[-7,-2],[-7,-2],[-5,2],[-4,6],[0,5],[2,4],[4,1],[-16,8],[-24,3],[-16,12],[3,33],[-9,4],[-2,4],[1,9],[-4,8],[-18,16],[1,7],[-1,4],[-2,3],[0,2],[3,7],[4,3],[50,23],[10,-3],[10,-8],[6,-9],[-2,-7],[-6,-13],[-1,-7],[-3,-8],[-13,-9],[-3,-7],[2,-10],[5,-7],[4,-2],[2,7],[1,10],[2,4],[4,2],[19,16],[5,6],[8,13],[4,2],[7,-3]],[[29795,92909],[8,-3],[5,-8],[9,-26],[-19,-31],[-11,-11],[-64,17],[-13,17],[7,14],[8,10],[17,17],[53,4]],[[23520,93019],[10,0],[5,-3],[4,-6],[-14,-32],[-3,-12],[0,-9],[-6,-3],[-8,-1],[-11,-4],[-8,2],[-15,6],[6,11],[22,7],[8,11],[-5,2],[-12,-2],[-6,4],[1,2],[1,6],[-1,2],[-1,2],[-1,2],[-1,2],[8,5],[19,8],[8,0]],[[23398,93627],[9,-9],[4,-6],[2,-9],[-2,-9],[-4,-7],[-4,-2],[-7,1],[-7,6],[-16,27],[18,12],[3,0],[4,-4]],[[23078,93546],[-9,2],[-6,6],[-12,16],[19,7],[7,8],[-5,14],[7,9],[18,10],[17,16],[8,6],[9,1],[10,-6],[1,-8],[-3,-9],[-8,-15],[16,-12],[6,-8],[-1,-13],[-15,-16],[-9,-14],[-4,-2],[-5,0],[-14,8],[-7,1],[-20,-1]],[[23035,93783],[8,10],[20,8],[19,13],[13,2],[13,-1],[10,-5],[4,0],[3,-3],[6,-10],[-3,-10],[-9,-13],[3,-5],[8,-1],[8,6],[7,7],[7,4],[3,-9],[17,-25],[3,-19],[-2,-9],[-5,-6],[-4,-6],[-4,-7],[-1,-4],[-2,-9],[-1,-3],[-2,-5],[-3,-3],[-15,-13],[-21,-7],[-41,-3],[-11,3],[-24,20],[-12,17],[-2,16],[-6,14],[-3,9],[-1,11],[3,11],[5,9],[7,8],[5,8]],[[19975,94051],[21,19],[46,6],[48,-4],[26,-15],[-3,-8],[-4,-5],[-6,-3],[-13,0],[-16,-6],[-73,-10],[-8,4],[-2,2],[-6,10],[-8,7],[-2,3]],[[20922,94074],[33,-20],[17,-17],[3,-20],[-2,-3],[-2,-2],[-4,-7],[0,-12],[-6,-8],[-6,-8],[-5,-9],[7,-10],[1,-4],[-2,-8],[-6,-11],[-2,-6],[2,-13],[2,-9],[0,-9],[-6,-11],[-22,-24],[-21,-33],[-3,-10],[6,-6],[-7,-10],[-21,-11],[-8,-8],[-16,-21],[-18,-15],[2,-27],[-9,-12],[-29,-16],[-23,-26],[-8,-4],[-9,2],[-9,7],[-9,5],[-9,-6],[9,-5],[7,-6],[1,-6],[-9,-3],[15,-17],[16,-7],[5,-5],[-15,-4],[-3,-2],[-3,-2],[-2,-2],[-4,1],[-1,6],[-2,5],[-2,2],[-5,1],[-15,-5],[1,3],[1,7],[0,2],[-12,5],[-6,5],[-3,8],[-1,9],[-3,7],[-4,6],[-67,53],[-16,21],[-7,13],[-4,5],[-11,4],[-5,4],[-9,10],[2,7],[1,3],[3,2],[-4,3],[-4,-1],[-3,-1],[-5,-1],[-44,21],[5,3],[9,2],[4,3],[-4,4],[4,4],[-14,13],[-18,9],[-5,5],[-5,10],[5,3],[11,-2],[5,3],[-63,32],[-1,8],[-5,5],[-7,2],[-5,1],[-4,2],[-6,11],[-2,4],[-15,7],[-31,3],[-14,8],[-10,9],[-23,11],[-55,2],[-14,8],[4,13],[8,13],[9,11],[7,4],[10,3],[11,7],[10,10],[25,41],[18,20],[20,12],[122,8],[122,7],[40,15],[54,6],[60,-9],[12,-5],[5,-1],[8,-4],[26,-25],[33,-15],[5,-7],[6,-13],[40,-5]],[[27527,94061],[17,10],[11,28],[-1,29],[-16,15],[0,3],[22,1],[7,4],[3,-1],[21,1],[31,8],[32,0],[31,-8],[58,-36],[6,-1],[6,3],[3,4],[3,9],[4,5],[6,1],[7,-4],[13,-10],[85,-18],[12,-8],[42,-18],[132,0],[6,1],[13,12],[17,5],[9,0],[13,-7],[88,4],[87,4],[6,-1],[14,-9],[18,-4],[38,-21],[121,-29],[6,-4],[17,-19],[7,-4],[30,-2],[1,-2],[2,-3],[2,-3],[9,-8],[4,-4],[-2,-1],[-1,-4],[-1,-3],[18,-20],[18,-16],[-5,-5],[-2,-3],[-3,-5],[8,-13],[37,-20],[16,5],[13,-2],[12,-6],[0,3],[1,1],[2,0],[6,-1],[3,-2],[2,-3],[2,-6],[-14,-5],[7,-12],[9,-10],[20,-14],[10,-11],[0,-9],[-14,-20],[6,-2],[26,-22],[8,-4],[13,-2],[16,-6],[32,-4],[8,-5],[-5,-7],[-12,-6],[-4,-7],[3,-3],[2,-1],[3,-1],[4,0],[-3,-5],[-3,-3],[-8,-3],[4,-7],[9,-7],[4,-7],[-14,-10],[-5,-6],[19,-16],[41,-1],[16,-24],[-5,-3],[-6,-4],[-2,-6],[6,-7],[-11,-12],[-27,-6],[-27,-12],[-96,6],[-19,9],[-11,0],[-13,-5],[-69,6],[-70,7],[-29,16],[-85,4],[-86,3],[-21,-3],[-15,5],[-131,-27],[-19,-13],[-44,-12],[-21,-11],[-64,-22],[-60,-8],[-50,11],[-72,44],[-33,8],[-9,6],[-6,8],[-7,26],[-3,4],[-2,2],[-4,10],[-2,3],[-12,14],[-3,7],[-10,26],[-4,7],[-1,4],[1,6],[9,23],[4,16],[-3,3],[-9,5],[-3,4],[0,5],[-1,6],[1,4],[2,2],[9,2],[6,7],[0,10],[-7,13],[-6,6],[-19,9],[-11,2],[-27,-8],[-20,11],[-31,0],[-44,13],[-17,0],[-6,3],[-7,11],[-3,3],[-8,6],[-3,5],[-1,7],[2,4],[2,4],[3,5],[-13,12],[6,8],[1,2],[0,6],[-1,11],[-2,6],[1,5],[7,18],[4,6],[5,3],[7,0],[21,-7],[6,3],[-5,6],[-18,6],[-4,3],[-17,21],[-2,4],[-4,13],[1,1],[-2,9],[-1,0],[0,2],[-5,8]],[[23244,93386],[1,-11],[3,-7],[1,-6],[-5,-7],[-5,-2],[-11,1],[-6,-2],[-2,-3],[-2,-4],[-1,-3],[-2,-3],[-4,-6],[-6,-5],[-2,-1],[-8,0],[-2,-1],[-2,-2],[-1,-3],[-1,-2],[-40,-21],[-7,-1],[-15,5],[-37,0],[9,-8],[35,-7],[20,-13],[11,-4],[6,8],[3,-2],[2,-2],[2,-4],[1,-4],[-4,-4],[-13,-4],[7,-6],[5,-2],[4,1],[7,3],[0,-12],[2,-16],[3,-16],[4,-9],[-2,0],[5,-6],[1,-10],[-1,-11],[-3,-10],[-8,-7],[-94,-21],[7,-4],[5,-1],[13,1],[8,-2],[15,-8],[9,-2],[41,14],[6,-8],[-1,-19],[-5,-15],[-7,-10],[-10,-3],[-3,2],[-7,5],[-4,1],[-4,-1],[-7,-6],[-9,-3],[-19,-14],[0,-4],[14,-7],[14,6],[14,8],[15,5],[12,1],[5,-3],[2,-10],[-18,-45],[-8,-11],[-10,-7],[-26,-7],[-6,1],[-2,10],[2,8],[5,3],[12,3],[-9,9],[-8,-1],[-9,-7],[-7,-9],[-9,-8],[-10,-2],[-20,2],[-7,-3],[-5,-8],[-10,-21],[-12,-15],[-6,-9],[-1,-9],[-36,-21],[-24,-6],[-38,-22],[-7,-1],[-62,0],[-6,3],[-5,6],[-11,7],[-39,3],[-12,5],[-6,2],[-36,-8],[-13,0],[-21,6],[-9,7],[-23,25],[-4,6],[-2,7],[1,3],[2,3],[3,27],[5,13],[27,36],[2,5],[0,7],[-4,1],[-5,0],[-4,4],[1,1],[0,1],[1,2],[-11,-4],[7,-14],[2,-6],[-6,-1],[-11,0],[-6,-3],[2,0],[-28,-34],[-12,-22],[-5,-26],[1,-2],[1,-1],[1,0],[6,4],[3,-1],[2,-2],[9,-3],[5,-4],[1,-4],[-5,-3],[5,-10],[2,-9],[3,-7],[7,-2],[8,-1],[4,-3],[2,-6],[1,-8],[3,-3],[3,0],[4,-2],[8,-10],[3,-1],[9,-1],[3,-2],[5,-15],[3,-5],[2,-3],[2,-2],[3,-1],[4,2],[2,-3],[12,-2],[5,-4],[-5,-5],[-11,-16],[-9,-17],[-11,-16],[-5,-8],[-7,-10],[-28,-13],[-24,-24],[-3,-4],[-8,-3],[-19,-19],[-9,-6],[-34,4],[-10,-4],[1,-2],[1,-5],[0,-2],[-7,-3],[-3,0],[-3,3],[-13,4],[-11,10],[-33,43],[-6,6],[-8,2],[-7,-2],[-20,-17],[-7,-3],[-26,-2],[-7,2],[-1,5],[-1,6],[-2,9],[-2,3],[-7,8],[-1,3],[-1,8],[-1,5],[-6,12],[-2,7],[2,9],[-14,19],[-13,22],[5,0],[3,3],[3,6],[1,9],[-4,6],[-36,11],[-13,9],[-11,13],[-1,16],[-2,6],[-1,6],[-1,6],[-4,6],[-3,3],[-6,3],[-3,4],[-1,4],[0,4],[1,2],[1,0],[-3,9],[-3,5],[-4,4],[-11,5],[-6,1],[-3,2],[-7,9],[-4,2],[-2,4],[-6,22],[-4,6],[-48,5],[-6,3],[-11,9],[-6,3],[-7,19],[-12,10],[-25,14],[-8,12],[-13,23],[-9,8],[2,0],[-5,2],[-14,10],[4,3],[2,5],[0,6],[1,6],[-6,4],[-8,-2],[-7,0],[-5,15],[2,0],[5,4],[-16,5],[-5,3],[-4,5],[-3,6],[-4,5],[-6,0],[-3,11],[-45,14],[-6,-2],[-6,-5],[-5,-2],[-2,1],[-3,6],[-2,1],[-3,0],[-8,-3],[1,-3],[2,-6],[-4,1],[-3,-3],[-3,-4],[-5,-2],[-3,2],[-14,15],[0,4],[-1,5],[-3,5],[-4,5],[7,8],[3,1],[0,4],[-5,1],[-8,-1],[-4,4],[6,5],[4,2],[3,1],[-8,6],[-19,4],[-9,6],[-10,14],[-4,3],[-3,1],[-18,-6],[-18,-12],[-13,-15],[1,-17],[-6,-4],[-7,-1],[-8,0],[-5,5],[3,0],[2,1],[1,3],[1,6],[-1,3],[-10,7],[2,0],[-8,6],[-20,9],[-8,1],[-6,-3],[-6,-6],[-6,-3],[-5,5],[2,3],[-3,4],[-2,-1],[-2,-2],[-3,-1],[-8,1],[-3,1],[-16,10],[-3,4],[-3,6],[-3,5],[-2,4],[-4,2],[0,2],[0,1],[2,1],[-2,0],[4,3],[2,5],[-1,5],[-5,3],[8,3],[20,-4],[5,1],[-5,10],[-13,2],[-22,-4],[1,2],[2,4],[0,2],[-3,8],[-9,13],[-3,8],[15,0],[-7,9],[-9,6],[-10,4],[-9,1],[-9,5],[-20,17],[-8,-2],[3,-4],[-2,-2],[-9,2],[0,2],[-1,2],[-2,3],[-2,1],[-8,0],[-4,1],[-2,5],[-22,14],[-10,-1],[-4,1],[-2,3],[-2,4],[-1,4],[0,2],[-56,36],[-12,11],[-9,15],[-11,7],[-4,8],[2,2],[2,3],[4,7],[-5,4],[-3,1],[-2,3],[-2,8],[0,7],[1,5],[1,4],[-2,4],[7,12],[18,17],[18,30],[2,7],[0,8],[0,6],[0,4],[2,6],[3,12],[3,6],[3,5],[7,7],[3,5],[10,11],[25,3],[12,8],[-9,1],[-3,2],[9,3],[18,-3],[8,5],[-4,8],[21,-5],[26,6],[9,0],[10,-5],[27,8],[0,-4],[-3,-2],[-6,-11],[5,-7],[6,0],[9,4],[2,-11],[4,-7],[5,-4],[7,-2],[6,-1],[5,1],[6,3],[2,0],[3,-3],[-1,-5],[-2,-6],[-1,-5],[-3,-5],[8,0],[4,-2],[3,-6],[-18,4],[-5,-4],[22,-25],[14,-8],[8,-8],[9,-5],[4,5],[-1,6],[5,6],[8,3],[7,-3],[-4,0],[-4,-1],[-3,-3],[-4,-4],[4,-4],[13,-8],[4,-4],[8,-17],[8,-13],[3,-8],[-4,-7],[8,-6],[12,-7],[12,-3],[8,4],[-3,4],[-6,5],[-2,3],[7,1],[6,-4],[6,-5],[5,-8],[-4,-7],[-2,-6],[-3,-5],[-6,-2],[-2,1],[-5,6],[-3,1],[-13,-4],[4,-1],[19,-15],[10,-3],[45,-4],[17,-11],[5,-2],[4,2],[5,4],[5,2],[6,-2],[5,-4],[5,-3],[10,1],[10,3],[10,7],[8,10],[-4,3],[-13,5],[0,4],[3,0],[1,1],[0,3],[0,4],[3,3],[3,1],[2,-2],[3,-2],[-4,0],[21,-4],[46,4],[22,-3],[2,0],[2,0],[1,-2],[1,-3],[2,4],[2,-3],[2,-2],[3,-2],[2,-1],[5,2],[4,3],[7,9],[12,9],[6,6],[3,11],[-3,22],[-2,5],[-6,6],[-12,3],[-6,5],[8,10],[-1,7],[-14,11],[3,6],[12,11],[-7,3],[-19,-1],[-5,6],[16,24],[-2,2],[-2,5],[-2,2],[9,8],[4,2],[4,-2],[-4,4],[2,0],[6,-7],[0,-1],[2,1],[2,2],[1,3],[1,3],[1,3],[2,2],[2,1],[3,0],[3,-3],[4,-4],[2,-4],[-4,-6],[-4,-4],[-6,-3],[-5,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-3,3],[3,-3],[1,-1],[1,-1],[2,0],[0,-1],[-9,-13],[-1,-5],[5,-9],[7,-7],[9,-6],[8,-2],[9,-1],[-7,8],[3,7],[7,-1],[4,-16],[-3,-6],[-13,-3],[-5,-6],[0,-8],[1,-6],[3,-4],[3,-2],[29,4],[18,9],[14,-5],[4,0],[2,4],[0,4],[-1,3],[-2,2],[0,-1],[-1,4],[-2,1],[-1,1],[4,7],[2,1],[9,3],[0,4],[-6,4],[1,2],[1,2],[0,4],[-36,16],[3,8],[5,0],[11,-4],[-3,6],[-2,4],[2,5],[3,6],[-11,0],[1,1],[4,7],[-6,3],[-14,-3],[-6,3],[7,10],[8,7],[-10,10],[-22,-3],[-10,5],[4,3],[9,2],[4,3],[-9,4],[4,4],[10,1],[5,3],[-10,4],[-14,0],[-14,-4],[-12,-13],[-5,-3],[-4,-3],[-2,-7],[-3,-3],[-8,1],[-12,4],[3,13],[-8,9],[-18,10],[3,4],[4,10],[3,5],[3,2],[12,0],[0,5],[4,3],[11,4],[-5,5],[-7,4],[-6,3],[-7,0],[0,4],[23,4],[8,4],[-1,2],[0,4],[-1,2],[7,5],[13,14],[8,2],[-3,-4],[2,-7],[4,-1],[9,7],[5,0],[5,-3],[9,-9],[8,-11],[4,-3],[5,-2],[21,4],[-5,-5],[-4,-7],[27,-18],[13,-2],[50,3],[12,9],[-14,4],[-29,-2],[-20,13],[-16,6],[-10,12],[-19,16],[-4,5],[-7,15],[-2,4],[-16,11],[-8,12],[-15,13],[-5,3],[-6,0],[-2,-3],[4,-8],[-6,-6],[-2,-2],[5,-14],[0,-2],[4,-1],[7,-4],[3,-3],[-39,-2],[-50,-25],[-55,-11],[-33,11],[-16,12],[-3,6],[4,5],[0,4],[-10,-1],[-62,21],[-8,8],[1,15],[-10,8],[-22,1],[-5,3],[-7,11],[-4,3],[-21,4],[-6,4],[3,2],[2,1],[2,-1],[2,-2],[-3,7],[-6,6],[-12,7],[6,3],[10,-3],[5,0],[6,3],[1,3],[1,4],[15,20],[4,4],[5,3],[5,2],[11,2],[21,-5],[9,5],[4,18],[7,9],[70,-7],[17,5],[5,-1],[4,-4],[11,-16],[6,-4],[15,-8],[14,-20],[2,-5],[3,-11],[2,-5],[11,-9],[27,-5],[10,-10],[1,-8],[10,-7],[12,-2],[5,7],[-5,12],[-12,11],[-30,15],[-4,9],[0,11],[6,11],[3,4],[6,9],[2,5],[0,6],[-2,4],[-1,3],[1,7],[-18,-2],[-9,2],[-8,10],[-4,4],[-6,0],[-5,-3],[-4,-5],[-4,-3],[-6,1],[-6,3],[-5,1],[-15,3],[-7,4],[-4,6],[6,1],[4,3],[4,6],[2,9],[-6,1],[-16,4],[-22,0],[-9,4],[-3,8],[3,7],[9,1],[0,4],[-4,1],[-6,6],[-3,2],[-12,-5],[-4,0],[7,11],[23,7],[8,11],[-7,0],[-3,1],[-3,2],[7,15],[10,5],[23,1],[0,11],[6,0],[13,-7],[-2,0],[18,-3],[10,1],[7,8],[7,10],[9,4],[63,-6],[31,-20],[36,-6],[29,-16],[1,-2],[1,-5],[2,-4],[3,-5],[6,-5],[2,4],[0,6],[-4,7],[2,4],[6,6],[4,5],[2,2],[1,1],[1,3],[1,3],[-1,2],[1,2],[7,6],[17,7],[6,5],[2,7],[2,10],[0,9],[-4,5],[-6,0],[-2,0],[3,-17],[-10,12],[-11,-5],[-21,-22],[-16,-6],[-49,6],[1,2],[1,2],[1,2],[1,2],[-4,2],[-3,1],[-8,0],[7,17],[8,12],[10,6],[16,4],[11,8],[6,2],[19,1],[7,3],[55,-8],[-2,-4],[-4,-4],[-3,-6],[-1,-6],[2,-4],[8,-11],[4,-6],[4,6],[4,-3],[8,-11],[8,-4],[52,-8],[5,-4],[9,-11],[5,-5],[5,-1],[5,1],[5,0],[10,-14],[38,-22],[3,-4],[0,-8],[-4,-5],[-4,-4],[-3,-4],[5,0],[11,-4],[3,0],[4,3],[2,8],[0,10],[3,9],[5,7],[7,1],[14,-2],[38,8],[22,-2],[11,-14],[2,0],[4,10],[8,6],[9,4],[7,1],[1,0],[2,3],[21,2],[19,8],[122,14],[14,11],[19,7],[7,10],[6,12],[9,10],[-2,0],[36,10],[12,-6],[-7,-7],[-15,-10],[-7,-8],[9,-5],[10,3],[19,11],[24,8],[12,-1],[30,-17],[56,-3],[19,-8],[9,-7],[25,-38],[8,-7],[16,-6],[7,-7],[4,-14],[1,-11],[0,-5],[-9,-14],[1,-13],[-7,-9],[-49,-22],[-2,-9],[-12,-10],[-16,-1],[-41,18],[-6,0],[-3,-5],[1,-7],[5,-13],[1,-6],[-14,-7],[-30,13],[-15,-2],[4,-8],[-1,-6],[-4,-5],[-2,-6],[-2,-4],[-1,-3],[0,-2],[2,-5],[3,-5],[5,-3],[4,-2],[5,0],[13,6],[15,13],[15,8],[13,-7],[-2,-4],[7,-6],[9,-3],[35,5],[10,-3],[6,-13],[-6,-4],[-19,-4],[6,-5],[13,-4],[6,-8],[-2,0],[2,-1],[4,-7],[-3,-2],[-2,-3],[-3,-7],[1,-9],[-5,-5],[-9,0],[-11,10],[-9,-1],[-81,-27],[-21,0],[2,-5],[-6,-2],[-15,-1],[-27,-17],[-6,-8],[-1,-4],[0,-4],[-1,-5],[-3,-4],[-89,-71],[-12,-16],[-32,-27],[-17,-4],[-24,-11],[-5,-8],[11,-2],[5,-3],[3,-7],[-1,-3],[-7,-9],[9,-7],[3,-5],[-2,-6],[-3,-6],[-1,-7],[0,-16],[2,-7],[4,-6],[4,-1],[1,6],[1,8],[1,7],[3,5],[3,4],[19,19],[13,20],[13,9],[26,12],[10,12],[5,-5],[5,1],[12,8],[8,2],[30,3],[11,-4],[49,-3],[112,-44],[8,-15],[-4,1],[-2,-2],[-1,-5],[2,-6],[-5,-17],[-3,-5],[-5,-3],[-35,-4],[0,-4],[42,-4],[13,-8],[4,-4],[8,-13],[2,-6],[2,-10],[4,-2],[11,2],[5,-1],[4,-4],[12,-21],[2,-7],[-1,-3],[-23,-14],[-4,-6],[-16,-13],[2,-9],[2,-3],[-2,0],[-3,-3],[-1,-1],[1,-1],[3,-3],[-5,-12],[10,-4],[15,0],[10,4],[38,36],[62,23],[14,0],[6,4],[10,10],[1,5],[-5,3],[22,0],[2,-7],[2,-6],[2,-3],[-4,-5],[-11,-7],[-5,-4],[4,-5],[33,-28],[-1,-13],[2,-14],[6,-11],[7,-7],[-3,-5],[-5,-5],[-2,-6],[4,1],[7,3],[3,0],[3,-3],[1,-4],[2,-4],[1,-5],[8,-12],[3,-7],[1,-11]],[[22431,94208],[-30,6],[-15,10],[-9,16],[15,8],[81,20],[27,-4],[7,4],[-4,2],[-3,4],[-3,5],[-3,6],[11,6],[38,7],[21,14],[5,1],[62,0],[98,38],[125,15],[10,-4],[9,-8],[4,-18],[-14,-23],[-32,-33],[-26,-13],[-26,-7],[-3,-2],[-8,-8],[-2,-2],[-3,-1],[-1,-2],[-3,-7],[-2,-4],[-3,-2],[-2,0],[-9,-7],[-5,-3],[-71,-13],[-70,-13],[-19,18],[-7,-7],[-1,-10],[7,-6],[-5,-5],[-6,-1],[-21,3],[-17,-2],[-15,-7],[-53,9],[-8,7],[7,4],[89,-5],[2,3],[-7,9],[-9,3],[-103,-1]],[[24919,94248],[6,-1],[8,-3],[12,-8],[-12,-26],[-7,-8],[-7,1],[-3,5],[-2,5],[-1,4],[-4,3],[-4,-1],[-6,-4],[-4,-5],[-3,-7],[5,-4],[2,-8],[0,-10],[-3,-10],[-19,-28],[-9,-9],[-10,-19],[-22,-24],[-12,-10],[-43,-50],[-16,-6],[-26,0],[-3,1],[-6,5],[-3,2],[-4,-5],[6,-12],[15,-20],[-4,-8],[-27,-24],[-2,-2],[0,-6],[0,-4],[-1,-2],[-3,-3],[3,0],[-5,-1],[-4,-3],[-4,-6],[-1,-8],[-3,-4],[-20,-14],[-7,-11],[-10,-27],[-6,-10],[-5,-6],[-8,-4],[-7,-2],[-13,3],[-23,-8],[-37,0],[-11,-8],[71,-10],[0,-6],[-27,-41],[0,-3],[-6,-17],[-9,-11],[-17,-16],[-11,-15],[-2,-2],[-2,-2],[-1,-9],[0,-9],[-1,-5],[-2,-3],[-31,-33],[-7,-11],[-11,-24],[-6,-10],[-43,-29],[-6,-7],[-11,-19],[-6,-5],[-21,-9],[-60,-12],[-23,7],[-32,2],[-12,9],[-117,17],[-12,8],[-6,1],[-27,0],[-6,2],[-13,14],[-6,4],[-5,-1],[-10,-8],[-14,-5],[-27,2],[-27,-8],[-77,-4],[-78,-4],[-24,6],[-12,-1],[-9,-9],[-3,-5],[-1,-6],[0,-7],[1,-6],[4,-4],[5,1],[9,7],[11,4],[11,-1],[46,-14],[40,-1],[1,1],[7,7],[2,2],[2,0],[1,1],[2,3],[3,4],[3,2],[4,-2],[2,-6],[-5,-2],[-1,-6],[2,-14],[-2,-9],[-4,-6],[-2,-6],[2,-8],[9,-9],[33,-9],[10,-8],[19,-21],[16,-29],[10,-31],[-2,0],[2,-4],[-3,-9],[-4,-5],[-6,-2],[-5,-1],[-5,-2],[-3,-5],[-4,-13],[-7,-13],[-7,-9],[-17,-13],[-12,-6],[-12,-1],[-11,-5],[-10,-14],[-5,-12],[-3,-4],[-3,-4],[-8,-8],[-3,-4],[-1,-6],[-4,-11],[-23,-32],[-2,-5],[-1,-4],[-2,-11],[0,-3],[0,-7],[0,-2],[-2,-4],[-2,-4],[-1,-2],[-1,-1],[-6,-11],[-36,-7],[-4,-12],[7,-5],[12,-1],[10,2],[7,6],[6,9],[7,7],[8,2],[-13,-24],[12,-12],[-5,-3],[-5,-1],[0,-2],[1,-4],[1,-3],[-8,-2],[-10,3],[-18,12],[-28,-1],[-15,13],[-65,-3],[-7,-5],[0,4],[-4,-2],[-37,0],[-109,-29],[-8,4],[3,5],[15,5],[0,5],[-25,-3],[-4,1],[1,8],[4,12],[1,8],[-1,4],[0,6],[2,6],[10,4],[17,15],[-29,-1],[-2,7],[4,3],[16,-1],[5,2],[9,7],[80,18],[-14,4],[-76,-17],[-17,10],[4,3],[-2,4],[-7,7],[-5,11],[-1,4],[1,8],[2,7],[2,6],[1,7],[1,10],[1,4],[4,4],[1,4],[-1,4],[-1,8],[0,9],[3,12],[0,6],[-2,9],[-3,5],[-4,4],[-4,6],[-5,14],[-2,7],[1,5],[4,3],[21,-5],[-4,4],[-11,9],[9,-1],[4,1],[4,4],[-9,10],[-4,7],[-4,18],[-5,5],[-6,3],[-14,1],[-4,1],[-3,3],[-2,4],[-2,11],[-1,2],[-1,1],[-2,3],[-2,4],[0,4],[1,3],[3,2],[6,3],[-6,6],[-8,13],[-5,5],[-15,5],[-3,4],[-1,4],[0,5],[-1,3],[-26,4],[-13,5],[1,15],[-1,0],[-4,4],[5,7],[7,1],[14,-4],[-4,4],[-13,16],[5,6],[-2,3],[-16,0],[-7,3],[-6,6],[-2,13],[1,17],[3,19],[4,17],[7,10],[-4,4],[-4,6],[-3,7],[-1,9],[-3,5],[-6,4],[-5,5],[-1,8],[4,4],[5,0],[6,3],[4,10],[1,10],[-3,6],[-4,5],[-5,7],[11,19],[5,4],[9,3],[19,-3],[5,5],[-2,2],[-2,3],[-2,5],[-3,3],[-7,1],[-3,2],[1,13],[-3,16],[0,12],[8,0],[0,4],[-4,1],[-4,4],[-1,7],[1,9],[-2,4],[0,5],[2,5],[0,4],[-5,5],[-9,6],[-3,7],[3,0],[3,1],[2,3],[2,4],[-2,7],[1,6],[5,12],[-7,2],[-5,7],[-8,21],[-3,14],[2,11],[7,8],[6,5],[-3,3],[-2,1],[-2,1],[5,9],[-4,8],[-15,11],[9,0],[4,1],[4,3],[-2,3],[-2,3],[-3,6],[10,4],[6,2],[4,-4],[3,-5],[5,-4],[4,0],[4,3],[-4,8],[-13,13],[-12,9],[-23,6],[12,16],[-2,5],[-8,8],[5,3],[9,2],[4,3],[-3,2],[-5,6],[6,8],[7,3],[15,1],[38,22],[4,1],[6,0],[5,-1],[3,-3],[3,-5],[2,-4],[3,-1],[12,9],[9,0],[9,-5],[43,-41],[19,-12],[60,-12],[51,4],[-18,17],[-43,4],[-19,11],[-5,5],[-16,14],[-6,8],[-3,3],[-16,10],[-7,9],[-4,12],[44,12],[0,5],[-7,2],[-12,8],[-6,1],[-9,-2],[-8,-6],[-2,-3],[-3,-7],[-1,-2],[-7,0],[-13,13],[-13,6],[-7,5],[-7,7],[-5,8],[-4,15],[1,17],[4,16],[5,11],[13,10],[57,10],[27,13],[24,5],[12,6],[21,18],[5,3],[19,-5],[53,2],[7,3],[3,3],[5,9],[4,4],[6,2],[126,5],[10,-7],[16,-24],[9,-6],[10,-1],[9,7],[-7,4],[-1,7],[0,9],[-3,8],[10,15],[17,7],[57,3],[53,0],[71,-22],[60,-5],[8,-5],[6,-9],[-4,-9],[5,-5],[6,-1],[2,3],[14,8],[7,1],[35,-20],[24,-4],[16,-9],[15,-14],[13,-19],[-4,-8],[-14,-17],[2,0],[-2,-4],[57,4],[4,4],[-2,0],[2,5],[1,11],[1,5],[3,1],[11,-1],[4,1],[7,5],[57,16],[10,-8],[57,10],[56,-10],[105,-6],[99,-32],[80,-21],[3,6],[1,2],[12,-4]],[[22851,94573],[-9,2],[-5,4],[-2,6],[10,16],[34,16],[4,6],[1,11],[21,9],[8,7],[-6,0],[9,13],[12,4],[24,-1],[27,-14],[4,-4],[-3,-10],[-6,-10],[-23,-31],[-6,-2],[-15,2],[-10,-4],[-41,-27],[-12,-2],[-4,2],[-9,5],[-3,2]],[[23510,94643],[27,-28],[3,-14],[-16,-13],[-10,-1],[-102,22],[-17,12],[-18,7],[-8,10],[15,9],[6,1],[11,-6],[6,-1],[-5,16],[11,11],[15,5],[26,1],[20,-5],[19,-11],[17,-15]],[[21211,95004],[11,-11],[4,-2],[-5,-13],[-11,-12],[-33,-27],[-29,-15],[-83,-16],[-18,-11],[-8,0],[-22,8],[-36,2],[-15,5],[-21,3],[-30,12],[-23,17],[-33,15],[-6,10],[5,11],[11,7],[16,7],[4,7],[6,18],[2,2],[5,3],[1,1],[0,6],[0,2],[1,2],[4,3],[8,3],[4,3],[-6,-1],[-6,2],[-6,3],[-5,3],[0,5],[5,1],[7,4],[3,5],[-2,6],[6,11],[7,8],[54,40],[22,11],[76,2],[16,-11],[29,-5],[5,-3],[15,-17],[21,-5],[4,-7],[-2,-11],[19,-29],[-1,-29],[7,-6],[15,-6],[0,-1],[0,-5],[0,-2],[2,-1],[6,-2]],[[24045,94853],[5,-16],[2,-8],[1,-9],[-1,-9],[-2,-14],[1,-6],[-7,-30],[-1,-12],[-4,-11],[-10,-4],[-20,1],[17,-3],[9,-4],[4,-9],[-2,-9],[-6,-8],[-13,-11],[-20,-10],[-82,-5],[-82,-6],[-10,4],[-10,7],[-5,2],[-38,-10],[-8,-7],[-76,2],[-13,12],[-5,13],[-11,6],[-11,0],[-14,-12],[-7,1],[-14,6],[-13,1],[-7,2],[-6,5],[3,7],[5,10],[2,8],[-70,44],[-4,1],[-4,-2],[-3,-4],[-3,-4],[-2,-3],[-6,-4],[-8,-3],[-8,-1],[-6,4],[23,12],[0,5],[-14,0],[-8,-2],[-5,-7],[-1,-7],[2,-8],[6,-13],[-16,-1],[-8,4],[-2,13],[15,16],[-3,6],[-3,3],[-33,-1],[-12,4],[-10,12],[2,0],[-4,4],[-4,-2],[-3,-4],[2,-5],[0,-4],[-44,3],[-8,5],[5,-1],[4,2],[4,3],[2,8],[-13,0],[-12,5],[-12,8],[-10,11],[2,0],[-17,6],[-7,7],[-5,11],[7,5],[22,3],[-2,9],[-2,3],[-2,2],[-4,-1],[-2,-1],[-6,-5],[-3,-2],[-10,0],[4,10],[7,10],[7,8],[7,4],[-3,7],[-7,0],[-17,-3],[2,-6],[-3,-7],[1,-7],[-12,-13],[-1,-3],[-2,-4],[0,-3],[1,-4],[-1,-5],[-3,-7],[-4,-3],[-10,-3],[-23,0],[-11,6],[-4,10],[4,6],[1,8],[0,8],[-3,7],[11,-5],[7,1],[3,6],[-2,9],[-6,3],[-47,-2],[-7,-3],[-6,-6],[-7,-3],[-7,4],[3,6],[2,6],[3,12],[-3,11],[-2,8],[2,6],[6,4],[-1,6],[-1,2],[15,17],[6,9],[9,19],[0,4],[1,2],[0,4],[1,4],[2,2],[6,-1],[6,-3],[8,-7],[3,2],[2,9],[-2,1],[-3,2],[-2,2],[-2,3],[14,8],[61,12],[15,-5],[26,9],[-6,4],[-6,0],[-12,-4],[-4,2],[-2,3],[1,5],[4,4],[12,4],[24,1],[12,5],[-8,6],[-66,-9],[3,7],[-1,1],[-2,4],[10,1],[30,11],[18,29],[11,8],[9,-13],[-4,-1],[-10,-7],[0,-4],[38,13],[6,7],[-72,13],[-6,-1],[-4,1],[-2,-1],[0,-1],[0,-5],[0,-2],[-13,-6],[-7,-1],[-6,3],[6,15],[11,7],[23,3],[4,-4],[2,0],[1,6],[2,5],[4,1],[22,-2],[7,-4],[5,-6],[0,-8],[6,-2],[17,-2],[4,0],[6,3],[11,0],[7,7],[-2,5],[-7,3],[-16,2],[-8,3],[-7,6],[-5,11],[14,21],[56,29],[19,3],[20,11],[5,0],[6,-3],[6,-7],[4,-1],[4,6],[4,10],[1,4],[4,4],[4,4],[4,1],[4,0],[14,-6],[12,-1],[11,1],[12,5],[3,3],[6,8],[4,2],[22,0],[4,1],[12,10],[7,2],[70,-12],[70,-12],[95,-77],[9,-14],[9,-7],[28,-13],[28,-26],[27,-5],[4,-2],[2,-4],[3,-12],[2,-4],[-8,-6],[-12,-3],[-22,1],[0,-4],[37,-3],[47,-21],[0,-5],[-3,-10],[-4,-7],[-16,-15],[6,-9],[21,-21],[6,-11],[-1,-9],[-6,-8],[-7,-7],[2,-3],[4,-9],[-6,-1],[-10,-6],[-16,-4],[-6,-4],[-4,-6],[6,-3],[19,7],[5,-1],[3,-3],[7,-12],[14,-18],[5,-13],[-2,-13]],[[23173,95145],[-28,-1],[-8,-7],[5,-7],[6,-2],[6,-1],[6,-3],[-9,-8],[-35,-8],[-17,-10],[-8,-1],[1,11],[-8,4],[-17,2],[-8,7],[3,0],[3,0],[2,2],[3,3],[0,5],[-3,3],[-6,3],[-7,13],[-4,5],[-4,2],[0,4],[5,4],[-1,6],[-10,10],[97,41],[10,-8],[39,16],[26,4],[5,4],[1,5],[-3,13],[0,6],[14,15],[24,-6],[44,-24],[16,3],[8,-2],[5,-6],[0,4],[8,-7],[17,-10],[7,-11],[-7,-8],[-4,-3],[-22,-6],[-5,-3],[4,-4],[-4,-7],[-6,-4],[-11,-5],[-4,-3],[-8,-10],[-4,-4],[-11,-4],[-8,5],[-8,9],[-9,7],[-20,9],[-11,8],[-5,11],[3,6],[5,3],[5,2],[3,3],[1,7],[-5,3],[-12,0],[2,-6],[0,-2],[-18,-5],[-9,-5],[-7,-10],[-3,-10],[1,-7],[8,-16],[1,-2],[3,-4],[0,-4],[-7,-3],[-9,-8],[-4,-3]],[[16389,95437],[9,4],[13,2],[10,-3],[4,-11],[-1,-4],[-1,-5],[1,-6],[1,-5],[-2,-6],[-6,-21],[-1,-8],[-3,-8],[-22,-28],[-19,-14],[-9,-3],[-21,-1],[-25,7],[-10,9],[12,10],[37,15],[9,6],[4,1],[5,0],[5,2],[3,3],[1,6],[-3,5],[3,4],[6,13],[-3,5],[-10,11],[1,7],[3,6],[9,7]],[[21424,95339],[2,-3],[-8,-6],[-120,0],[-17,9],[32,16],[6,9],[-17,0],[16,13],[19,4],[37,-1],[-7,4],[-10,2],[-6,4],[1,11],[6,10],[9,7],[9,4],[77,19],[77,19],[24,0],[53,14],[40,-12],[-5,-6],[0,-2],[24,-2],[6,-3],[-1,-2],[-1,-2],[0,-2],[0,-2],[-29,-13],[-83,-15],[-14,-12],[-3,-7],[-7,-22],[-4,-8],[-4,-5],[-28,-16],[-17,-4],[-12,8],[-6,0],[1,-11],[-11,-1],[-5,1],[-5,3],[2,5],[-21,-5]],[[23754,95465],[8,-7],[1,-8],[0,-9],[0,-12],[8,-17],[0,-2],[0,-7],[1,-2],[7,-5],[21,-25],[5,-11],[2,-15],[-6,-7],[-95,-10],[-24,9],[-14,12],[-8,17],[-3,21],[2,25],[-7,3],[-7,6],[-6,8],[-3,12],[16,9],[52,7],[35,15],[2,5],[5,-2],[8,-10]],[[21508,95474],[-104,-21],[-104,-20],[-103,-21],[-31,9],[-24,-3],[-7,3],[-5,14],[-3,3],[-6,3],[-3,4],[43,2],[26,18],[63,3],[50,24],[24,-2],[7,2],[19,14],[7,2],[23,-2],[82,13],[81,12],[26,-8],[6,-6],[3,-13],[-2,-13],[-8,-5],[-60,-12]],[[17282,95417],[-13,-18],[-2,-7],[2,0],[1,-2],[1,-2],[2,-4],[-6,-4],[-11,-4],[-5,-4],[2,-4],[-3,-6],[-8,-5],[-4,-5],[-2,-8],[0,-3],[1,-3],[1,-7],[1,-3],[2,-4],[-1,-3],[-11,-3],[-4,-3],[-6,-8],[-72,-56],[14,-5],[5,-4],[-14,-3],[-100,-55],[-14,-1],[-13,4],[-24,13],[-41,2],[4,7],[5,2],[5,0],[5,3],[-17,5],[-8,-1],[-9,-3],[-4,0],[-13,7],[-10,3],[-29,-5],[-58,22],[0,3],[0,2],[2,4],[-2,0],[21,26],[78,54],[16,6],[6,5],[14,20],[22,18],[12,6],[12,2],[4,15],[15,16],[18,13],[84,30],[31,-3],[10,3],[5,3],[4,6],[7,17],[8,11],[9,2],[10,0],[36,17],[0,2],[-2,6],[27,18],[39,9],[9,-7],[11,0],[12,-3],[22,-13],[-5,-4],[-3,-5],[-3,-15],[-4,-9],[-5,-6],[-12,-9],[1,-10],[-2,-7],[-5,-5],[-5,-4],[-5,-5],[-8,-13],[-4,-5],[-22,-9],[-7,-7]],[[28084,95551],[6,-7],[17,-7],[4,-9],[-2,-6],[-5,-7],[-10,-9],[-79,-40],[-6,-6],[-3,-7],[2,-12],[6,-7],[38,-24],[17,-3],[21,-15],[-6,-7],[-7,-1],[-14,4],[-22,-4],[-6,4],[6,8],[7,5],[-6,4],[-18,-4],[-46,4],[-14,-3],[-28,-14],[5,-7],[7,-2],[6,0],[7,-2],[-24,-20],[-3,0],[-6,3],[0,1],[1,6],[-1,1],[-2,2],[-3,2],[-33,0],[2,5],[3,2],[2,2],[1,5],[-2,6],[-4,4],[-8,4],[-10,1],[-10,-4],[-10,-1],[-8,13],[10,-1],[23,7],[9,6],[5,7],[0,5],[-2,4],[-1,4],[3,6],[5,4],[18,4],[20,22],[5,4],[25,6],[10,8],[6,3],[-1,6],[-1,2],[5,7],[19,6],[11,8],[4,5],[5,9],[12,11],[16,2],[31,-3],[1,0]],[[27409,95567],[-9,-1],[-21,4],[-8,5],[3,3],[23,12],[16,4],[16,0],[14,-7],[-7,-7],[-9,-7],[-18,-6]],[[21163,95498],[-37,4],[17,5],[3,3],[-53,8],[-6,-4],[2,-4],[-80,13],[-8,3],[-4,5],[-12,22],[-7,8],[0,4],[3,8],[6,7],[8,3],[16,0],[5,3],[4,15],[4,3],[31,7],[20,-3],[5,1],[8,5],[47,9],[16,7],[17,-1],[24,4],[33,-2],[18,8],[8,-1],[3,1],[11,4],[100,11],[100,11],[20,-13],[3,-13],[5,-8],[23,-16],[0,-7],[-12,-21],[12,-11],[3,-5],[-26,0],[1,-2],[2,-6],[-19,-16],[-43,-21],[-113,-20],[2,0],[-80,-4],[-80,-4]],[[25172,95742],[-8,-5],[-52,4],[-9,4],[18,13],[11,4],[6,-5],[2,4],[7,-7],[25,-12]],[[26669,95730],[-18,10],[-19,5],[5,14],[1,5],[-2,4],[-6,8],[-2,6],[12,0],[7,-4],[16,-2],[7,-4],[5,-5],[16,-10],[-11,-17],[-6,-8],[-5,-2]],[[21000,95756],[-4,6],[-7,7],[-7,4],[-4,-1],[-6,-6],[-7,-2],[-8,2],[-5,4],[2,4],[-3,2],[-2,3],[-3,7],[3,0],[1,1],[2,2],[2,1],[-7,7],[-15,5],[-7,5],[8,15],[-7,5],[-2,3],[-2,5],[8,0],[83,36],[91,4],[16,-5],[12,-13],[-3,-11],[-34,-32],[9,-3],[22,9],[17,0],[9,19],[7,8],[9,0],[8,-4],[24,-23],[11,-4],[23,-2],[-7,-7],[-2,-5],[-1,-8],[4,-4],[53,-18],[23,2],[12,5],[3,-1],[2,-3],[0,-3],[0,-3],[-2,1],[1,-3],[0,-3],[1,-3],[3,-3],[4,-1],[41,-4],[14,-8],[3,-16],[-4,-5],[-87,-50],[-75,-4],[-76,-4],[-19,5],[-119,-1],[-8,7],[5,5],[12,8],[3,7],[-4,7],[-2,3],[-3,2],[-7,2],[-13,-2],[-6,4],[7,5],[9,9],[5,13],[-4,16]],[[22937,95194],[5,-29],[10,-18],[25,-23],[-6,-4],[-8,1],[-39,16],[-6,8],[-1,5],[0,5],[1,6],[-1,6],[0,5],[2,3],[3,2],[-68,48],[-10,1],[3,-16],[-9,0],[-13,4],[-8,-4],[2,-6],[15,-8],[7,-9],[3,-5],[3,-7],[1,-8],[-3,-5],[-5,-4],[-4,-1],[-6,1],[-3,3],[-3,5],[-3,7],[-1,3],[0,8],[-1,2],[-3,3],[-17,4],[-6,-1],[-3,-6],[3,-9],[-21,0],[-6,-4],[7,-4],[13,0],[7,-4],[-8,-5],[-15,-1],[-8,-2],[10,-5],[22,3],[38,-12],[8,-6],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-3,-2],[-2,0],[-2,1],[-60,0],[-8,-8],[10,-5],[39,-8],[2,-4],[-3,-4],[-6,-3],[-23,-4],[1,2],[0,1],[1,1],[0,4],[-7,-1],[-13,-6],[-6,-1],[5,12],[-9,-1],[-8,-3],[-6,-7],[-5,-13],[3,-3],[3,-1],[7,0],[-6,4],[4,4],[5,1],[5,-3],[3,-6],[-3,-4],[-4,-3],[-4,-2],[-4,1],[4,-10],[8,-5],[9,-1],[6,3],[-2,0],[8,13],[11,11],[12,4],[11,-7],[-17,-8],[2,-4],[-5,-3],[-11,-14],[19,-7],[6,0],[0,4],[-4,8],[3,8],[5,3],[6,-8],[-2,-3],[9,-13],[25,-16],[8,-16],[-12,1],[-5,-2],[-3,-7],[10,-4],[20,1],[11,-6],[-4,1],[-2,-1],[-2,-7],[20,-10],[5,2],[-6,4],[0,4],[4,0],[4,-3],[3,-4],[2,-6],[-20,-13],[-24,-8],[-23,0],[-56,27],[-6,11],[0,5],[4,9],[0,6],[-4,5],[-7,3],[-12,0],[6,-10],[-3,-6],[-16,-9],[2,0],[5,-3],[-5,-4],[-2,0],[5,-10],[8,-8],[21,-12],[10,-2],[5,-3],[2,-4],[2,-9],[2,-3],[2,-7],[0,-12],[-2,-12],[-2,-8],[-5,-3],[-16,7],[-100,-11],[-99,-11],[-11,6],[12,8],[-7,4],[-16,-5],[-7,5],[3,4],[-1,2],[-3,5],[-1,1],[3,7],[2,1],[2,1],[-6,6],[-12,1],[-11,-3],[-7,-9],[7,-9],[1,-8],[-4,-5],[-117,-12],[-9,6],[2,2],[6,6],[-4,10],[4,11],[23,29],[4,8],[-1,7],[-6,6],[-7,-6],[-12,-22],[-4,-5],[-16,-9],[-12,-15],[-3,-2],[3,-10],[13,-6],[4,-8],[-14,3],[-5,-2],[-9,-6],[-33,-4],[-95,11],[-95,11],[-10,5],[-7,10],[-2,12],[1,9],[2,8],[1,10],[-1,9],[-2,6],[-10,11],[4,4],[3,1],[2,0],[0,4],[-15,10],[-17,4],[-6,3],[-4,7],[17,13],[20,5],[111,-3],[9,5],[-7,5],[-14,-1],[-15,5],[-16,0],[-22,6],[-28,-4],[-15,10],[12,3],[12,1],[11,5],[9,15],[-71,-13],[-9,3],[-39,23],[-20,5],[-9,6],[5,5],[32,12],[6,-1],[6,-4],[-6,0],[-15,-4],[-6,-4],[9,-5],[13,-2],[10,2],[3,9],[21,-1],[11,2],[10,7],[-8,4],[-17,3],[-6,9],[4,0],[-13,11],[-14,3],[-28,-1],[0,4],[94,6],[95,6],[9,8],[-84,4],[24,7],[51,-6],[24,11],[-91,13],[0,4],[125,12],[-7,4],[-22,-4],[-23,4],[-7,0],[0,4],[14,0],[54,16],[13,1],[13,3],[11,13],[-55,0],[0,4],[4,1],[11,6],[-3,9],[-1,3],[120,9],[120,8],[13,4],[5,5],[-3,6],[-7,3],[-102,-11],[-102,-11],[7,6],[23,6],[-92,-9],[-93,-9],[-14,-9],[-8,-1],[-14,3],[-35,-8],[-21,5],[-70,-11],[-71,-10],[-11,-7],[-4,-1],[-10,0],[-22,-8],[-16,2],[-20,-8],[-9,6],[6,4],[-10,7],[-12,1],[-85,-18],[-85,-18],[-40,4],[-54,-8],[-64,-25],[-10,3],[0,14],[-5,6],[-7,2],[-14,0],[-4,3],[3,6],[10,11],[-8,7],[-25,8],[-7,6],[-2,5],[3,4],[7,5],[6,2],[6,-2],[9,-6],[9,-4],[29,0],[-4,6],[-11,2],[-5,3],[3,3],[2,3],[3,2],[2,1],[-6,16],[5,1],[9,6],[5,1],[13,-1],[7,1],[5,4],[-3,5],[-4,2],[-4,1],[-4,0],[6,8],[11,3],[77,-3],[39,-16],[9,0],[18,4],[0,4],[-8,-1],[-8,-3],[-7,-1],[-8,5],[6,4],[2,1],[-7,11],[-25,-1],[-8,5],[4,8],[36,17],[-8,7],[-57,-9],[-6,2],[-5,8],[-2,6],[3,5],[5,11],[2,2],[5,3],[10,11],[6,3],[119,21],[4,-1],[4,-5],[6,-13],[4,-2],[4,-1],[13,-8],[20,-5],[16,-11],[23,-8],[11,0],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[1,-5],[1,-3],[-1,-4],[-3,-4],[8,-6],[9,-4],[39,-7],[4,2],[3,3],[3,4],[3,3],[21,11],[46,4],[20,14],[-38,-4],[6,-4],[-10,-6],[-23,0],[-22,-7],[-36,1],[1,6],[7,12],[0,4],[-6,11],[-6,9],[-12,6],[-26,-3],[-12,8],[2,9],[-2,7],[-5,6],[-4,4],[-2,6],[6,7],[23,14],[17,4],[7,5],[9,13],[4,1],[4,1],[3,3],[4,4],[3,5],[-11,1],[-20,-11],[-82,-8],[-19,8],[-18,14],[-15,22],[-3,14],[1,11],[5,9],[6,7],[5,3],[11,6],[5,5],[9,13],[4,3],[55,16],[44,25],[-111,-21],[-6,2],[-12,5],[-70,-5],[-18,11],[8,5],[11,2],[9,4],[2,13],[-5,8],[-11,2],[-22,-2],[7,4],[24,7],[9,6],[1,4],[-14,12],[10,4],[21,0],[9,8],[-7,4],[-15,5],[-7,7],[7,9],[8,4],[10,1],[7,3],[27,17],[10,3],[110,-13],[4,-3],[8,-7],[14,-4],[4,-2],[25,-24],[36,-16],[8,-9],[-3,-1],[-4,-4],[-2,-5],[-2,-6],[2,0],[-10,-24],[-1,-9],[7,-3],[40,-5],[32,-12],[26,-18],[10,-4],[3,-5],[3,-5],[2,-4],[10,-5],[5,-3],[2,-8],[-25,-10],[-7,-6],[89,16],[-10,-13],[-47,-8],[0,-4],[76,-9],[12,-13],[4,-5],[25,-24],[3,-4],[4,-10],[3,-5],[7,-3],[20,-4],[-3,-9],[-6,-4],[-7,-2],[-6,-5],[6,-4],[8,-1],[9,2],[15,8],[4,1],[4,-2],[1,-2],[2,-5],[1,-4],[-3,-3],[0,-4],[1,-4],[1,-2],[4,-5],[4,0],[7,5],[15,14],[40,6],[3,1],[8,10],[4,1],[8,0],[10,3],[3,2],[1,5],[1,5],[4,2],[5,-1],[9,-4],[8,1],[14,8],[-14,6],[-91,-19],[-12,-8],[-1,7],[-3,1],[-3,0],[-4,2],[0,6],[2,4],[4,3],[3,1],[-6,7],[-6,0],[-7,-1],[-7,2],[-1,2],[0,3],[-1,3],[-2,3],[-4,2],[-12,0],[4,2],[3,3],[3,5],[2,6],[-19,1],[-6,6],[-6,14],[-1,6],[-1,6],[-1,4],[-4,4],[-19,10],[-6,6],[28,0],[-1,5],[-1,3],[12,6],[12,-1],[24,-9],[40,-3],[24,-8],[11,-1],[35,13],[27,3],[12,8],[-79,-13],[-7,2],[-10,8],[-4,2],[-29,6],[-25,18],[-6,1],[-49,-8],[-86,25],[-9,10],[4,12],[15,8],[102,-6],[0,4],[-4,0],[-12,4],[2,4],[-19,4],[-6,4],[11,6],[10,-5],[11,-9],[10,-4],[47,-6],[14,6],[-42,7],[-7,5],[6,1],[14,4],[6,4],[-8,4],[-20,-2],[-10,1],[-32,21],[3,4],[9,8],[-8,-1],[-16,-7],[-7,0],[-20,11],[-99,-4],[-80,58],[-6,16],[71,15],[8,5],[-2,2],[-2,2],[-2,4],[-1,4],[5,2],[16,10],[20,4],[43,25],[11,0],[15,9],[17,3],[116,-24],[6,1],[18,13],[7,2],[28,0],[14,-5],[11,-11],[-8,-5],[-20,3],[-10,-2],[45,-7],[65,-52],[10,-2],[0,4],[-2,0],[0,4],[18,2],[9,-2],[7,-8],[-23,-10],[-10,-8],[5,-13],[23,-19],[11,-5],[13,-2],[0,4],[-11,11],[-5,8],[-3,7],[5,6],[21,-5],[7,2],[-4,0],[0,4],[6,3],[10,1],[7,-3],[0,-10],[6,-7],[7,-2],[15,1],[0,5],[-3,-1],[-3,1],[-5,3],[10,9],[-6,8],[-8,8],[-8,6],[-7,2],[-4,2],[-2,5],[-2,5],[-2,4],[-4,2],[-9,0],[-4,2],[4,7],[1,6],[-1,6],[-4,5],[3,0],[3,0],[3,2],[3,3],[-1,1],[-2,5],[-1,2],[15,8],[19,5],[20,-1],[14,-8],[1,-12],[8,-4],[7,4],[-2,16],[33,-3],[18,2],[11,13],[-6,4],[-3,0],[3,3],[4,2],[8,-1],[0,4],[-21,5],[-32,-9],[-27,0],[-15,5],[-7,11],[111,3],[8,-3],[5,-6],[0,-5],[-6,-10],[-1,-7],[3,-3],[25,-11],[29,-4],[14,-5],[8,-1],[-36,-5],[-4,2],[-14,7],[-17,0],[10,-15],[13,-4],[14,0],[12,-3],[9,-6],[3,-1],[2,2],[1,2],[1,3],[4,1],[6,-2],[10,-12],[7,-2],[74,-10],[40,-18],[-5,-7],[-5,-5],[3,-6],[4,-6],[3,-8],[-1,-7],[-5,-5],[-8,-4],[-5,-6],[0,-7],[-1,-3],[-3,-10],[0,-5],[-2,-5],[-7,-9],[-3,-4],[5,-3],[10,-2],[4,-4],[-1,-3],[-1,-6],[-1,-3],[6,-10],[43,-26],[8,-9],[6,-12],[-2,0],[3,-20],[0,-8],[-4,-10],[-4,-6],[-11,-10],[-3,-6],[-2,-6],[-1,-16],[0,-5],[-1,-6],[-2,-4],[-3,-4],[-2,-4],[-2,-12],[-2,-2],[-3,-1],[-2,-4],[-1,-4],[2,-5],[1,-4],[-2,-5],[2,-6],[2,-5],[5,-11],[13,-18],[1,-11],[-5,-9],[-16,-15],[-2,-4],[-2,-5],[-2,-4],[-20,-12],[-17,-3],[-27,-10],[-12,-9],[12,-5],[63,-6],[4,-3],[10,-8],[5,-2],[49,-4],[13,-11],[2,-3],[0,-9],[-2,-3],[-2,-1],[-3,-5],[-3,-10],[0,-10],[-1,-21],[0,1],[1,-2],[1,-3],[0,-2],[-1,-3],[-1,-2],[-2,-1],[-2,-15],[0,-5]],[[21900,95822],[-50,-12],[-97,17],[6,4],[19,4],[19,15],[27,8],[53,3],[14,5],[15,17],[13,1],[9,3],[2,0],[2,2],[0,5],[1,4],[2,3],[3,3],[14,10],[95,14],[106,-12],[-24,-15],[-114,-39],[-115,-40]],[[25090,95912],[-4,-3],[-1,-4],[1,-3],[4,-2],[-5,-12],[-9,-7],[-25,-8],[-6,-6],[-4,-10],[-2,-14],[0,-10],[3,-10],[7,-19],[9,-10],[22,-8],[10,-8],[-10,-1],[-21,-11],[-11,0],[-17,14],[-9,3],[-8,-5],[3,-14],[-11,-3],[-24,5],[-26,12],[-13,10],[-17,30],[-84,84],[-6,10],[-1,11],[6,13],[12,11],[55,19],[37,7],[60,4],[12,-8],[25,-9],[42,-36],[6,-12]],[[20723,95285],[1,-5],[1,-4],[0,-3],[-2,-6],[-4,-7],[-10,-5],[-5,-4],[-3,-11],[-2,-10],[-3,-9],[-7,-7],[-6,-2],[-14,0],[-27,-14],[0,-4],[2,-1],[2,-2],[3,-5],[-6,-1],[-13,-3],[-5,-5],[9,-5],[27,-1],[7,-10],[-4,-2],[-10,-12],[-5,-5],[-13,-8],[0,-5],[8,-10],[4,-5],[3,-5],[1,-5],[-3,-8],[-5,-5],[-7,-2],[-4,-3],[1,-6],[-5,-8],[-21,-9],[-16,-17],[-5,-2],[-3,-5],[-12,-26],[3,-5],[25,-14],[-10,-4],[-4,-5],[1,-8],[-2,-5],[-33,-7],[-10,-6],[-3,-4],[-4,-7],[-2,-7],[4,-3],[12,-4],[5,-5],[2,-7],[-3,-3],[-104,-16],[-105,-15],[-3,-3],[-2,-2],[-1,-3],[0,-2],[-1,-1],[-61,-36],[-63,-3],[-23,9],[-55,5],[-48,23],[-1,10],[-9,10],[-1,4],[2,6],[8,4],[2,7],[-3,15],[-6,9],[-8,5],[-8,1],[-4,-4],[2,-1],[4,-3],[-2,-8],[5,-6],[3,-7],[-8,-11],[-23,-12],[-23,-5],[3,1],[2,1],[1,2],[-4,3],[-7,2],[-6,0],[-4,-5],[-1,-7],[1,-3],[8,-4],[4,-10],[-5,-6],[-14,-7],[5,-2],[10,-2],[5,-4],[-7,-4],[-24,4],[-100,-11],[-22,10],[-7,1],[-5,3],[-8,11],[-66,15],[0,4],[82,-8],[-10,20],[-14,16],[-15,9],[-48,10],[-28,-10],[-5,-5],[-2,-3],[-6,-13],[3,0],[2,-1],[2,-3],[2,-4],[-26,0],[11,-8],[-23,-2],[-78,-25],[-7,-6],[-5,-8],[-3,-8],[2,0],[4,-3],[-11,-3],[-29,-19],[-14,-5],[-83,7],[-32,-10],[-2,-1],[-4,-2],[-10,-11],[-4,-4],[-5,3],[2,4],[-2,3],[-19,-7],[-42,14],[-19,-7],[2,-1],[2,-1],[1,-1],[-4,0],[-3,-1],[-8,-3],[0,-4],[20,-8],[7,0],[-8,-7],[-72,-6],[-12,5],[-6,-2],[-1,-11],[3,-8],[7,-8],[13,-12],[-8,-12],[-44,-13],[-17,-16],[-6,-3],[-26,-3],[-2,-4],[-2,-5],[-4,-5],[-6,-3],[-20,-1],[-23,-13],[-20,0],[-7,-4],[-14,-14],[-5,-1],[-25,5],[-45,-22],[-23,-19],[-81,-15],[-81,-16],[-19,-11],[-22,-3],[-14,-7],[-55,0],[-108,-10],[-54,5],[-65,9],[-67,15],[-20,16],[-113,56],[0,3],[0,1],[1,0],[1,1],[-7,1],[-56,37],[-11,11],[-2,7],[0,8],[5,12],[7,7],[24,10],[21,16],[73,29],[40,4],[21,12],[35,5],[36,-2],[21,10],[24,3],[21,-8],[11,-2],[7,10],[-18,9],[-20,3],[7,4],[3,0],[3,0],[21,1],[6,3],[2,3],[4,10],[15,14],[27,7],[15,8],[45,11],[28,-3],[41,11],[77,0],[58,5],[43,-6],[37,-7],[29,11],[24,2],[8,3],[15,16],[6,4],[-7,8],[-14,-7],[-6,8],[10,7],[9,-1],[19,-6],[11,1],[31,15],[-4,6],[-5,4],[-6,2],[-6,0],[7,4],[13,-5],[7,1],[2,2],[0,2],[0,3],[0,1],[19,8],[8,0],[3,2],[6,5],[9,3],[20,15],[-12,8],[5,3],[8,4],[5,5],[-2,4],[6,4],[15,-1],[5,5],[-1,7],[-8,5],[-42,13],[-39,-4],[-2,-4],[-7,-16],[-4,-7],[-6,-7],[-17,-13],[-16,-5],[-16,-9],[-9,0],[-15,4],[-7,0],[-7,-4],[14,-5],[3,-4],[-32,0],[-6,6],[-9,15],[-6,4],[-3,-1],[-2,-2],[-2,-3],[-33,-24],[-7,-2],[-38,7],[-43,-12],[-36,-4],[-20,4],[-16,12],[6,6],[6,3],[19,6],[14,12],[5,6],[-7,4],[-20,0],[0,4],[8,0],[3,1],[4,3],[-15,11],[-4,1],[-4,-2],[-6,-5],[-5,-6],[-2,-7],[2,-1],[3,-1],[3,-2],[2,-4],[-2,-6],[-3,-3],[-39,0],[-8,5],[-4,5],[-2,5],[2,7],[4,3],[4,3],[3,3],[-1,9],[-7,8],[-9,7],[-7,2],[2,-2],[2,-1],[0,-4],[-10,-3],[-4,-8],[-3,-11],[-4,-15],[9,-10],[3,-4],[1,-5],[-2,-11],[0,-7],[-8,0],[-35,-19],[-46,-9],[-9,1],[-8,7],[-11,20],[-4,4],[-7,-22],[-5,-10],[-7,-4],[-40,-4],[-27,2],[-49,-10],[-7,2],[-1,-2],[-1,-2],[-3,-2],[-61,-2],[-20,10],[1,28],[4,10],[3,3],[4,3],[75,25],[-10,4],[-10,-1],[-42,-16],[-11,0],[-9,8],[18,40],[11,30],[6,14],[8,9],[29,12],[22,3],[20,13],[43,17],[14,1],[0,4],[-6,-4],[-21,4],[-11,-3],[-4,2],[0,9],[-12,-11],[-99,-27],[-7,1],[-6,8],[-13,24],[-19,22],[-9,5],[-6,-10],[4,-2],[0,-6],[-3,-6],[-1,-6],[1,-9],[2,-4],[3,-3],[4,-7],[2,-11],[-3,-12],[-9,-19],[-8,-24],[-2,-5],[-8,-14],[-11,-10],[-16,1],[-16,8],[-11,12],[-1,2],[1,7],[0,2],[-3,3],[-37,12],[-5,7],[-10,-2],[-12,-9],[-7,-8],[0,-7],[4,-2],[6,-1],[9,4],[28,-6],[6,-3],[4,-6],[7,-18],[8,-9],[9,-5],[6,-8],[-2,-14],[-6,-12],[-14,-17],[-6,-10],[-10,-14],[-72,-29],[-72,-29],[-28,-2],[-27,10],[-7,5],[-4,6],[-3,9],[-2,13],[-3,13],[0,4],[3,8],[4,4],[4,3],[3,4],[-2,5],[-1,10],[-5,15],[-8,14],[-9,5],[3,-10],[-6,-10],[-36,-27],[-12,-2],[-21,15],[-36,15],[-4,-1],[0,-5],[4,-7],[4,-3],[9,-1],[4,-4],[-4,-6],[5,-12],[9,-14],[5,-13],[-2,0],[-1,-14],[-10,-12],[-12,-9],[-9,-5],[-15,-1],[-59,16],[-27,17],[-40,9],[-24,12],[0,4],[31,9],[16,9],[11,18],[-10,-1],[-52,-16],[-11,2],[-8,7],[15,16],[9,12],[1,11],[-1,5],[1,6],[1,5],[-4,2],[-58,-16],[-15,3],[-7,-3],[-14,-8],[-4,-4],[-16,-22],[-5,-3],[-23,0],[-35,12],[-16,12],[-4,-1],[-6,-7],[-8,0],[-137,31],[-23,15],[-15,6],[-7,5],[-4,9],[5,4],[2,4],[2,3],[-1,2],[-5,6],[7,8],[9,4],[17,1],[-5,13],[6,13],[69,59],[29,13],[104,0],[105,-1],[22,6],[61,-7],[30,5],[126,61],[90,8],[-6,11],[1,4],[3,8],[5,5],[39,23],[25,4],[6,2],[-14,7],[-89,-29],[-90,-9],[-22,-11],[-58,-9],[-33,-15],[-4,-5],[-100,-1],[-100,0],[-100,0],[-12,4],[-2,15],[5,15],[73,76],[23,16],[100,9],[101,9],[100,9],[4,4],[3,7],[4,5],[5,-2],[4,-2],[42,-12],[97,10],[98,9],[13,8],[6,7],[-2,6],[-6,4],[-6,1],[-117,-7],[-116,-7],[-18,5],[-123,-16],[-4,1],[-1,4],[-6,-4],[-129,17],[-4,6],[-3,7],[-1,10],[2,10],[4,4],[27,9],[17,1],[20,-4],[6,4],[-4,8],[-11,6],[-4,7],[3,1],[7,7],[-13,5],[-32,-9],[-12,12],[-2,6],[1,4],[5,11],[11,15],[0,4],[5,7],[5,2],[6,1],[5,2],[5,7],[3,6],[4,6],[101,26],[60,-1],[30,-10],[47,-3],[61,4],[81,-12],[32,-2],[1,-3],[25,3],[34,-9],[33,3],[12,6],[-11,6],[-25,-4],[-23,6],[-27,0],[-18,18],[-66,17],[-70,0],[-69,1],[-27,9],[-5,4],[-6,13],[-3,3],[5,7],[16,14],[-3,6],[-10,6],[-4,4],[10,8],[101,55],[136,14],[11,4],[22,18],[9,2],[48,0],[-4,-6],[-9,-6],[-5,-4],[87,5],[68,-18],[13,-7],[7,-8],[5,-9],[7,-24],[-8,-12],[4,-4],[-5,-4],[-5,-1],[-11,1],[3,-7],[5,-3],[11,1],[-2,-2],[-5,-9],[0,-3],[1,-1],[2,-1],[-2,0],[14,-12],[21,-12],[6,-10],[-4,-8],[-9,-6],[-9,-9],[11,-3],[9,-8],[8,-5],[25,9],[45,-1],[40,18],[14,3],[14,-1],[7,2],[12,10],[12,5],[38,-1],[11,-6],[6,-1],[46,12],[23,-6],[11,-8],[6,-13],[5,-5],[21,1],[0,-5],[0,-5],[38,1],[21,-11],[22,-4],[9,-6],[1,0],[-6,-5],[-9,-4],[-6,-6],[1,-13],[-7,-1],[3,-7],[18,-18],[3,-6],[2,-5],[3,-6],[15,-10],[69,-13],[73,-35],[24,-3],[6,-6],[6,-12],[-16,-10],[-81,-15],[-31,-16],[7,-5],[6,-3],[-19,-7],[-5,-5],[8,-4],[10,0],[20,8],[3,4],[4,4],[3,3],[5,1],[4,-1],[7,-3],[4,0],[-4,-2],[-8,-3],[-3,-3],[24,-8],[6,2],[11,9],[6,2],[113,7],[3,-2],[-2,-6],[-6,-5],[-5,-3],[-22,3],[-6,-3],[38,-15],[7,-14],[-2,-1],[-2,-3],[-1,-5],[1,-5],[4,-3],[13,2],[5,-4],[2,-11],[-4,-6],[-6,-6],[-4,-10],[3,-1],[3,-4],[3,-4],[1,-5],[-1,-6],[-9,-16],[4,-1],[4,-4],[9,-17],[4,-3],[12,0],[0,-4],[-2,-2],[-2,-3],[-4,-7],[7,-1],[4,-3],[1,-2],[0,-2],[0,-2],[1,-2],[7,-3],[6,0],[5,2],[55,3],[43,16],[96,9],[23,-8],[1,-2],[0,-3],[0,-4],[2,-3],[56,-2],[16,7],[12,-4],[13,4],[18,-2],[136,-13],[136,-14],[24,-12],[8,0],[4,8],[-2,2],[-7,21],[-6,7],[-17,3],[-6,4],[11,8],[13,1],[25,-5],[0,4],[-3,1],[-3,2],[-3,4],[-2,5],[4,7],[10,7],[3,7],[-20,25],[-9,7],[1,2],[1,1],[2,1],[14,-2],[7,1],[6,5],[-8,5],[-28,3],[-7,7],[-3,2],[-5,1],[-16,-1],[1,2],[0,7],[1,2],[-11,7],[-85,17],[-16,9],[4,0],[13,4],[-80,4],[3,6],[10,5],[4,5],[-5,4],[-11,0],[-5,4],[6,7],[7,6],[-4,3],[-8,3],[-7,1],[-5,-1],[-12,-9],[-4,-1],[-10,5],[-15,-12],[-16,5],[-15,11],[-14,11],[14,9],[8,4],[81,17],[9,5],[18,16],[13,6],[30,6],[12,10],[-10,7],[-4,1],[11,4],[28,-1],[7,9],[-8,1],[-16,7],[-8,0],[1,7],[1,2],[0,3],[15,6],[5,3],[-4,7],[-6,4],[-6,3],[-15,9],[-19,6],[-8,7],[-1,2],[1,3],[0,3],[-2,4],[-5,3],[-43,3],[-7,6],[3,0],[4,1],[3,3],[1,4],[-3,4],[-38,10],[-11,-1],[-9,-5],[1,-4],[4,-10],[1,-2],[-3,-4],[-5,-1],[-4,2],[-22,16],[-40,30],[-65,14],[2,8],[9,9],[4,7],[-4,3],[-4,2],[-3,2],[-2,6],[3,5],[-1,5],[-4,4],[-4,6],[3,3],[1,5],[1,6],[-1,6],[5,1],[2,-1],[-1,0],[11,-1],[58,15],[18,13],[11,6],[1,0],[24,0],[11,6],[5,1],[15,-4],[10,5],[18,16],[-8,5],[-32,-1],[0,4],[6,2],[7,5],[7,6],[5,7],[-2,3],[-2,3],[-2,7],[36,-4],[-1,3],[-1,9],[-1,4],[23,8],[7,0],[-2,15],[3,12],[5,8],[7,6],[4,14],[15,10],[29,12],[-1,2],[-2,4],[-1,2],[7,9],[6,4],[14,4],[14,11],[7,1],[-2,0],[49,4],[20,-7],[9,-1],[23,11],[2,3],[1,8],[4,5],[5,2],[5,-1],[3,-2],[6,-10],[16,-11],[5,-6],[-5,-8],[-5,-10],[-1,-7],[6,-3],[38,0],[13,-6],[10,-14],[1,-18],[-6,-10],[-20,-13],[-10,-10],[-6,-2],[-14,6],[-8,0],[-16,-6],[12,-21],[1,-3],[7,-3],[9,-11],[6,-3],[13,-2],[6,-5],[2,-9],[-5,-5],[-16,-5],[-6,-6],[7,-3],[16,3],[6,-4],[-12,-6],[-5,-6],[-1,-6],[6,-7],[16,-1],[7,-6],[-9,-6],[-19,-4],[-8,-11],[7,-8],[8,0],[9,3],[7,-1],[9,-4],[36,-3],[6,-3],[16,-15],[5,-7],[2,-2],[4,-1],[9,0],[4,-3],[-4,-1],[-3,-1],[-4,-2],[-2,-4],[39,-29],[0,-4],[-13,0],[0,-4],[4,0],[-7,-9],[-20,5],[-6,-8],[5,-8],[35,-9],[-9,-9],[-60,-14],[-11,-7],[-9,-14],[4,-11],[-5,-7],[-7,-5],[-5,-5],[5,-3],[10,-1],[6,-5],[-8,-3],[-11,-7],[-9,-9],[-5,-9],[40,8],[54,-4],[34,12],[42,0],[8,-1],[36,-16],[3,-3],[5,-7],[3,-4],[11,-6],[3,-9],[-3,-10],[-7,-5],[-8,-2],[-25,-18],[4,-3],[8,-2],[4,-3],[-14,-9],[-31,-1],[-13,-14],[1,-3],[1,-2],[0,-1],[0,-3],[-9,-1],[-8,-9],[-13,-22],[2,-2],[6,-6],[-2,-4],[13,-4],[16,6],[15,12],[13,14],[13,21],[5,5],[9,4],[99,20],[19,-4],[23,2],[18,-10],[20,0],[9,-6],[-10,-7],[-4,-4],[-1,-4],[-1,-9],[-1,-4],[8,-15],[11,-5],[12,-1],[11,-7],[-5,0],[-8,-2],[-6,-4],[-3,-6],[3,-4],[20,-9],[-4,-10],[1,-15],[5,-14],[4,-9],[4,-6],[5,-6],[5,-1],[1,9],[-1,5],[-4,3],[-3,4],[1,8],[-2,0],[3,10],[2,10],[3,9],[5,8],[-6,3],[18,12],[18,6],[39,3],[-14,8],[-55,7],[-7,7],[-1,12],[5,16],[1,10],[-4,11],[-2,12],[4,14],[10,10],[34,20],[5,5],[12,16],[7,5],[7,1],[74,0],[80,-21],[81,-21],[43,-31],[26,-28],[13,-19],[6,-22],[-6,-12],[2,-11],[10,-22],[-12,-7],[6,-4],[7,-9],[4,-10],[2,-12]],[[18101,95928],[-2,3],[-7,-1],[-3,2],[6,21],[5,4],[58,31],[54,13],[55,-2],[13,7],[96,4],[31,-9],[41,-22],[14,-2],[7,-4],[7,-9],[6,-13],[3,-15],[-10,-3],[-19,-17],[-13,-6],[-9,-11],[-4,-3],[-6,-1],[-44,13],[-82,1],[-82,1],[-25,9],[-85,9],[-5,0]],[[27900,94881],[6,-9],[14,-12],[13,-20],[29,-11],[-6,-11],[-10,-6],[-117,-24],[-17,-10],[-9,-2],[-11,2],[-58,25],[-3,2],[-1,3],[0,4],[3,9],[4,9],[0,9],[-7,9],[-7,4],[-3,-5],[1,-11],[4,-12],[-14,-11],[-6,1],[-7,10],[2,0],[-4,12],[-2,11],[-3,4],[-24,-16],[-4,-7],[7,-12],[9,-7],[70,-25],[0,-4],[-2,-1],[-1,-1],[-3,-2],[2,-3],[3,-7],[1,-3],[-9,-6],[-22,-4],[-9,-10],[26,-15],[7,-9],[-7,-7],[-8,-2],[-6,-3],[-2,-13],[7,-6],[2,-2],[-1,-2],[-4,-10],[11,-3],[-1,-8],[-9,-8],[-11,-5],[4,-9],[-13,-5],[-44,5],[-7,0],[-6,-3],[-12,-8],[-8,-3],[-80,5],[-79,4],[-57,-10],[-33,-21],[-20,-5],[-14,-10],[-17,0],[-32,-20],[-14,-5],[-17,4],[-10,-1],[-24,8],[-27,0],[-35,14],[-9,6],[-54,5],[0,1],[5,3],[4,5],[2,7],[-4,11],[-7,5],[-8,-1],[-6,-6],[1,-1],[3,-4],[-2,-3],[-2,-3],[-2,-2],[-27,-14],[-8,-2],[-11,2],[-10,5],[-5,1],[-12,-2],[-50,17],[-8,8],[-37,44],[-9,18],[-4,23],[1,7],[2,10],[4,9],[3,4],[10,3],[6,7],[-1,7],[-12,3],[1,14],[-5,7],[-8,2],[-17,-4],[-47,19],[-19,18],[-18,13],[-18,-6],[-2,-4],[1,-3],[1,-4],[9,-21],[6,-9],[8,-8],[17,-10],[15,-5],[7,-5],[3,-12],[-3,-9],[-16,-25],[2,-4],[-4,-8],[-9,-6],[-5,-7],[2,-4],[-5,-14],[-2,-12],[-2,-10],[-6,-10],[-6,-4],[-13,-4],[-11,-9],[-5,-2],[-6,0],[-12,5],[-100,-7],[-28,-15],[-31,-6],[-68,3],[-31,-6],[-7,4],[-5,5],[-5,4],[-6,1],[-13,-2],[-28,-11],[-20,5],[-1,2],[-3,6],[-2,6],[-2,12],[-4,3],[-5,3],[-3,5],[0,6],[3,10],[1,6],[-1,6],[-5,16],[9,8],[2,11],[-5,9],[-10,5],[2,-13],[-5,-8],[-9,-7],[-7,-9],[6,-7],[2,-6],[-1,-8],[-3,-12],[2,-2],[2,-2],[2,-8],[-1,0],[-3,-3],[2,-3],[2,-7],[2,-3],[-10,-16],[-15,-8],[-17,-3],[-41,1],[-7,6],[-2,7],[0,4],[1,5],[0,8],[-4,8],[-10,11],[-4,5],[-12,45],[-3,7],[-4,5],[-5,3],[-6,1],[-3,-3],[3,-8],[-2,-1],[-2,-3],[-2,-1],[6,-3],[1,-7],[0,-8],[1,-10],[1,-8],[11,-28],[1,-5],[-2,-5],[-12,-13],[-6,-5],[-14,-6],[-72,-4],[-73,-4],[12,32],[1,7],[-7,9],[-14,10],[-7,7],[5,4],[2,5],[-2,5],[-5,3],[-6,-1],[-6,-4],[-4,-7],[2,-10],[2,-18],[-8,-16],[-11,-12],[-7,-6],[-18,-6],[-17,2],[-61,28],[-14,12],[-2,14],[-6,0],[-4,3],[-2,7],[4,10],[-4,2],[-4,2],[-3,0],[-4,0],[0,-4],[3,-10],[-2,-15],[-1,-14],[6,-6],[12,-6],[24,-26],[13,-4],[0,-4],[-85,-4],[-7,2],[-19,17],[-1,4],[0,4],[-2,2],[-4,-3],[-3,-4],[-1,-4],[1,-3],[3,-4],[-6,-4],[-6,-2],[-13,-1],[2,0],[-41,-2],[-21,9],[-10,25],[11,2],[5,4],[5,6],[-20,-1],[-10,-4],[-8,-11],[-2,-5],[-2,-7],[-2,-6],[-3,-3],[-24,-7],[2,0],[-28,-8],[-15,1],[-11,9],[-3,5],[-1,3],[1,12],[-2,6],[-4,0],[-20,-17],[-10,-5],[-50,-3],[-15,5],[-11,12],[2,2],[-1,2],[-6,-4],[-11,-11],[-9,-3],[-77,11],[-4,5],[-4,7],[-3,11],[-2,9],[0,6],[1,5],[5,25],[3,9],[5,3],[3,4],[8,16],[8,12],[4,7],[1,7],[-1,7],[3,1],[2,3],[1,3],[-1,5],[2,4],[-1,4],[-6,4],[38,4],[0,4],[-7,4],[-32,0],[-4,1],[-7,3],[-3,0],[1,9],[2,7],[4,6],[4,3],[-3,7],[-19,31],[-4,3],[-9,0],[-1,-5],[3,-9],[6,-15],[-3,-8],[-6,-7],[-12,-5],[2,5],[0,6],[-1,5],[-3,4],[-5,2],[-4,-4],[-7,-17],[0,-3],[-1,-3],[-2,-3],[-3,-3],[-5,-3],[-3,-3],[-3,-4],[-2,-6],[-1,-6],[1,-6],[2,-12],[-5,-12],[-11,-15],[-4,-6],[-4,-5],[-4,-4],[-6,-1],[-4,2],[-2,5],[1,6],[2,3],[-2,5],[-5,7],[-3,5],[-1,5],[0,3],[1,2],[0,2],[1,10],[1,6],[-1,6],[-2,6],[-6,5],[-21,12],[-17,13],[-6,2],[4,-12],[6,-10],[7,-7],[8,-3],[-8,-27],[-6,-11],[-7,-1],[-6,4],[-14,4],[-24,14],[-8,1],[6,-5],[12,-17],[26,-15],[4,-6],[-1,-11],[-4,-15],[-5,-13],[-3,-7],[-14,-12],[-14,-3],[-38,3],[-3,-2],[-3,-4],[-3,-10],[-2,-3],[-3,-2],[-40,-4],[2,4],[-7,3],[-6,-2],[-14,-8],[-9,-3],[-30,2],[-31,-7],[-8,3],[-3,7],[-4,18],[-2,6],[-8,3],[-6,-2],[-9,-12],[-7,-5],[-6,-2],[-73,28],[14,10],[3,6],[-45,-14],[-25,2],[-38,22],[-8,10],[-2,8],[-2,9],[-2,9],[-3,7],[7,3],[3,3],[1,6],[-3,-1],[-2,-1],[-4,2],[-5,-4],[-14,-1],[-6,-3],[-3,-4],[-2,-4],[-1,-5],[-2,-3],[-9,-7],[-11,1],[-22,10],[9,20],[27,13],[13,13],[9,21],[4,3],[9,3],[4,4],[2,9],[-1,8],[-2,6],[1,5],[-5,3],[-4,1],[-9,0],[2,0],[-8,-4],[-6,-7],[-11,-18],[-55,-52],[-5,-2],[-5,2],[-4,2],[-5,2],[-4,-1],[-10,-7],[-3,-4],[1,-8],[4,-5],[5,-3],[3,-4],[1,-10],[17,-23],[5,-12],[-51,4],[2,4],[-8,12],[7,9],[-4,16],[-10,9],[-12,-9],[7,-4],[3,-6],[0,-7],[-2,-8],[-6,-8],[-8,-4],[-33,1],[-33,12],[-15,11],[4,4],[11,6],[4,7],[-13,9],[-14,3],[-27,-4],[4,-11],[-6,-3],[-9,2],[-8,4],[5,7],[16,9],[-15,8],[0,-4],[-14,8],[-30,11],[-12,15],[-1,8],[3,7],[6,12],[2,2],[2,0],[1,2],[1,6],[0,5],[0,3],[2,6],[-2,5],[-1,3],[0,2],[1,2],[-4,7],[-5,4],[-10,5],[9,7],[-4,9],[-37,36],[-8,5],[0,4],[4,1],[2,3],[0,6],[0,7],[-4,0],[-3,0],[-1,4],[2,4],[3,0],[3,0],[13,9],[28,-5],[12,8],[-22,12],[-7,8],[16,7],[1,4],[-5,3],[-46,-11],[-12,0],[-13,5],[1,10],[-5,3],[-7,1],[-6,3],[1,2],[1,6],[-8,2],[-17,12],[-9,2],[3,7],[8,7],[2,6],[0,7],[-1,8],[-3,9],[9,22],[3,7],[6,7],[15,7],[7,6],[-9,3],[-20,-5],[-8,2],[22,48],[23,33],[12,8],[5,5],[8,10],[4,3],[30,9],[12,6],[11,12],[-6,5],[-13,5],[-2,6],[3,7],[16,14],[-5,3],[-4,5],[-4,9],[-26,22],[-7,13],[2,4],[14,20],[2,6],[2,7],[1,9],[-4,19],[-3,7],[-6,7],[-10,6],[-23,2],[-40,16],[-8,9],[-3,10],[-3,3],[-4,1],[-10,1],[-5,2],[-4,5],[1,7],[-4,7],[-5,5],[-6,2],[-7,1],[-3,3],[-1,20],[-1,4],[-2,9],[-1,3],[1,3],[2,7],[1,3],[-3,10],[-6,9],[-6,6],[-13,5],[-7,7],[-5,9],[-2,12],[-4,8],[-10,6],[-25,7],[-22,26],[-12,9],[-6,6],[-3,10],[2,1],[6,7],[-1,3],[-1,2],[-1,1],[-1,2],[2,0],[-19,12],[-22,3],[-23,-3],[-84,-42],[-22,1],[4,3],[7,3],[3,2],[-4,8],[-12,0],[-5,-3],[-6,-5],[-10,-14],[-3,-2],[8,-8],[20,-2],[8,-6],[-19,-5],[-39,11],[-27,-5],[-19,2],[-16,-3],[-33,14],[-116,-6],[-17,8],[5,3],[1,1],[-5,7],[-2,1],[1,4],[-23,0],[-3,-2],[-12,-16],[-13,-9],[-42,-9],[-5,-5],[-7,-9],[-5,-3],[-7,1],[-22,8],[-63,0],[2,5],[0,3],[0,3],[-2,5],[2,10],[3,9],[4,4],[19,-10],[53,11],[7,4],[1,3],[-1,2],[0,3],[12,4],[42,0],[11,-7],[-2,-2],[-2,-2],[-2,-5],[5,0],[5,1],[4,4],[3,7],[-11,7],[-79,17],[-9,-7],[-5,-4],[-6,3],[-11,10],[-4,2],[-5,2],[-9,-1],[-3,-1],[-8,-7],[-16,-3],[-9,1],[-6,6],[2,7],[7,4],[8,2],[4,3],[-12,2],[-37,-10],[-75,9],[-6,3],[-14,11],[-22,8],[-18,16],[-19,22],[7,11],[7,3],[73,-1],[10,3],[10,7],[33,33],[4,9],[-9,-1],[-7,-3],[-29,-26],[-9,-3],[-5,4],[0,4],[-7,1],[-25,-8],[-30,0],[1,6],[2,4],[3,3],[3,2],[-10,5],[-21,-6],[-10,3],[-7,5],[-2,3],[-2,5],[-4,5],[-14,5],[2,2],[3,6],[-40,1],[-13,6],[-8,7],[-4,5],[-1,7],[-3,6],[-7,3],[-50,9],[-24,-7],[-29,2],[-15,8],[-11,14],[8,0],[10,4],[9,7],[7,9],[-5,0],[-6,3],[-5,5],[-1,9],[4,6],[6,1],[14,-4],[6,-6],[2,-2],[4,0],[6,1],[3,-1],[18,-12],[-4,-6],[3,-4],[5,-1],[5,-1],[20,8],[10,2],[8,-6],[0,4],[28,-12],[16,0],[11,8],[-4,2],[-14,-2],[-5,2],[-9,5],[-19,5],[-6,0],[-14,-4],[-5,0],[0,4],[6,2],[15,2],[0,4],[-5,5],[2,2],[2,2],[5,0],[4,-2],[6,-6],[3,-1],[29,3],[8,6],[-79,19],[-5,5],[-19,10],[-8,2],[-20,-2],[-10,3],[-8,12],[-4,15],[4,8],[22,7],[16,-2],[15,8],[-11,7],[-12,4],[-24,1],[3,6],[4,2],[10,0],[-2,0],[82,-8],[-2,-8],[4,0],[2,2],[1,4],[2,2],[16,5],[5,5],[8,2],[12,-4],[11,1],[6,11],[-18,0],[0,4],[2,0],[-5,7],[-13,2],[-6,3],[108,10],[30,12],[34,4],[29,-9],[67,0],[6,-3],[13,-8],[13,-3],[20,-15],[13,-5],[52,-5],[13,-8],[7,-2],[118,-5],[2,-3],[1,-4],[0,-3],[-1,-3],[0,-2],[3,-5],[4,-5],[5,-5],[4,-1],[37,2],[12,-6],[2,-3],[0,-3],[1,-3],[3,-2],[3,-2],[33,-1],[21,10],[9,12],[6,4],[6,3],[12,1],[27,-10],[34,-1],[8,-3],[8,-8],[7,-13],[9,-11],[22,-7],[12,-13],[9,-2],[4,-1],[2,-3],[4,-8],[1,-1],[15,-4],[14,-9],[-4,-4],[0,-4],[8,-8],[4,-3],[4,-1],[10,4],[3,0],[3,-8],[2,-12],[0,-23],[-3,-8],[-20,-24],[0,-3],[0,-11],[-1,-4],[-5,-5],[-5,-5],[-3,-6],[3,-8],[-10,-11],[-24,-13],[-12,-9],[-3,-6],[-2,-2],[-5,-3],[-36,-15],[-7,-6],[12,-18],[15,-12],[15,-3],[13,12],[-19,0],[-9,2],[-6,10],[21,14],[35,8],[5,2],[3,4],[5,9],[4,4],[15,10],[5,4],[3,5],[3,11],[2,3],[9,2],[9,5],[16,17],[-1,2],[-4,10],[9,7],[36,1],[9,-5],[29,-3],[25,-11],[9,-1],[47,15],[17,-3],[17,-9],[9,-1],[9,2],[28,12],[22,-2],[40,22],[2,4],[78,9],[78,9],[84,-13],[13,-7],[23,-2],[25,-8],[12,-9],[10,-13],[10,-11],[65,-14],[11,-8],[10,-14],[-3,-4],[-2,-3],[-2,-3],[-3,-2],[4,-7],[4,-2],[9,-3],[-6,-11],[-45,-7],[-75,18],[-7,6],[-8,10],[-7,4],[-6,-12],[1,-1],[3,-3],[-17,-7],[-20,0],[-57,21],[-60,-6],[0,-4],[13,-2],[13,-6],[5,-4],[10,-9],[5,-3],[114,-5],[8,-7],[2,-1],[41,-2],[21,-8],[25,-2],[17,-15],[6,1],[13,8],[17,3],[107,-22],[106,-22],[107,-22],[1,-1],[1,-5],[2,-2],[18,-12],[7,-11],[-4,-14],[-4,-1],[-8,2],[-4,-1],[-2,-2],[-3,-7],[-2,-3],[-6,-4],[-19,-8],[-100,-1],[-99,-1],[-100,-2],[8,-9],[92,-7],[13,-8],[-12,-7],[-14,2],[-26,9],[-128,16],[-129,16],[-21,16],[-104,25],[7,-6],[16,-2],[8,-1],[9,-6],[54,-18],[4,-6],[-3,-7],[-23,-7],[-1,-4],[-15,-8],[0,-4],[12,-3],[34,11],[127,-19],[13,-5],[14,0],[6,-5],[-4,-2],[-9,0],[-4,-2],[-2,-3],[-1,-3],[0,-4],[-1,-2],[-8,-6],[-8,-2],[-18,1],[0,-5],[41,-7],[9,5],[8,8],[10,6],[19,5],[101,-17],[-11,-15],[-17,-6],[-113,1],[-113,0],[-16,-8],[14,-5],[34,5],[13,-8],[-9,-6],[-18,2],[-9,-4],[6,-5],[14,-6],[6,-1],[6,-4],[3,-7],[0,-7],[-6,-3],[-12,-1],[-26,-10],[-12,-9],[2,-6],[4,-7],[1,-7],[-2,-15],[0,-5],[6,7],[0,-4],[6,5],[5,15],[4,5],[-2,6],[-1,2],[6,4],[31,12],[22,18],[5,7],[7,15],[3,4],[7,2],[11,-2],[10,-5],[6,-7],[-9,0],[-4,-2],[-4,-6],[10,-5],[11,2],[30,16],[12,0],[12,-2],[11,-6],[-8,-7],[-9,-5],[-8,-7],[-4,-14],[4,-11],[7,4],[16,18],[21,8],[3,3],[3,9],[6,3],[20,-3],[4,-4],[9,-11],[6,-3],[17,-1],[1,10],[8,15],[1,8],[8,10],[12,5],[12,-2],[10,-5],[-5,-4],[-4,-7],[0,-7],[5,-2],[26,-3],[5,-4],[3,-7],[3,-6],[3,-4],[6,-4],[24,-13],[-6,-13],[-16,-23],[-4,-13],[2,-1],[5,-7],[-1,-2],[-4,-6],[3,-2],[5,-1],[5,1],[4,2],[2,4],[7,12],[4,1],[14,10],[5,1],[6,-1],[5,2],[2,7],[-19,0],[2,3],[2,1],[2,1],[3,-1],[21,-1],[20,-7],[34,-24],[34,-7],[7,-7],[2,-11],[-1,-9],[-7,-14],[-4,-9],[-8,-28],[-6,-15],[0,-2],[-4,-2],[-10,3],[-27,-12],[-67,3],[-5,-9],[-9,-8],[-10,-5],[-8,-2],[14,-5],[31,12],[15,-11],[-10,-6],[-24,3],[-11,-5],[9,-7],[37,3],[9,3],[17,14],[9,3],[58,-1],[5,-5],[5,-9],[7,-21],[2,-3],[8,-3],[1,-5],[0,-6],[1,-6],[7,-4],[23,-5],[4,-3],[-2,-11],[5,-7],[8,-3],[6,-1],[43,4],[0,6],[4,14],[-1,6],[-10,27],[-7,14],[-24,34],[27,12],[13,10],[0,19],[10,5],[10,-2],[20,-11],[9,-3],[27,-30],[42,-28],[30,-9],[6,-7],[1,-9],[-3,-3],[-9,-1],[-13,-7],[-4,-1],[0,-4],[16,-8],[5,-4],[0,4],[4,-3],[3,3],[3,4],[3,4],[52,25],[-2,0],[2,3],[3,3],[4,2],[4,0],[-2,0],[59,20],[22,-7],[10,-8],[1,-11],[4,-8],[25,-16],[8,-3],[-4,-10],[-9,-6],[-9,-3],[-8,-1],[0,-4],[25,-1],[13,4],[10,9],[2,17],[-8,10],[-10,7],[-5,9],[0,10],[2,3],[11,1],[4,3],[9,8],[3,1],[1,3],[2,5],[3,6],[5,3],[27,4],[43,-17],[4,-4],[2,-5],[1,-5],[3,-6],[4,-6],[79,-44],[55,1],[17,-6],[34,-22],[9,0],[-8,-10],[-8,-5],[-55,-22],[60,5],[57,23],[57,4],[49,-8],[82,-4],[0,4],[-6,3],[-2,0],[-2,-3],[-7,6],[-58,7],[-12,5],[-21,16],[-56,11],[-4,3],[-5,6],[-2,5],[3,2],[12,3],[24,11],[82,13],[34,23],[18,3],[-10,-11],[-1,-6],[6,-3],[24,-4],[20,7],[45,-7],[0,4],[-20,4],[-7,0],[1,3],[0,1],[5,4],[2,0],[3,0],[-2,3],[-2,1],[0,4],[23,0],[4,2],[2,4],[1,5],[3,5],[5,2],[18,-2],[6,2],[11,5],[6,2],[0,4],[-5,2],[-4,1],[67,0],[63,-19],[21,7],[-10,5],[-23,0],[-10,4],[5,6],[-1,6],[-6,12],[104,13],[22,24],[9,6],[44,5],[24,18],[4,7],[-18,4],[-5,5],[45,-9],[29,7],[10,-3],[-4,-3],[-11,-5],[20,-9],[45,4],[25,-26],[9,-4],[36,-3],[19,7],[7,0],[15,-9],[8,0],[129,48],[24,0],[10,5],[24,0],[24,8],[113,-12],[113,-13],[112,-13],[4,-3],[1,-8],[-3,-3],[-5,-8],[-3,-2],[-5,-1],[-4,-3],[-20,-22],[-13,-18],[10,-6],[21,2],[10,-2],[11,-6],[23,-4],[72,7],[71,8],[10,-4],[2,-1],[2,-5],[2,-1],[8,-4],[22,1],[32,-12],[12,-10],[19,-4],[9,-5],[5,-11],[-3,-1],[-2,-2],[-2,-4],[-1,-5],[10,-2],[20,3],[8,-5],[-12,-10],[-96,-24],[-10,-11],[101,2],[101,1],[15,-6],[6,-5],[-16,1],[-8,-2],[-6,-7],[15,-16],[9,-5],[10,-3],[11,-1],[5,-2],[3,-6],[-1,-8],[-3,-4],[-4,-1],[-4,-3],[2,-1],[3,-2],[1,-1],[-6,-12],[-18,-5],[-5,-9],[7,-9],[41,-1],[-2,-7],[-1,-2],[-12,-8],[-4,-4],[-1,-13],[-25,-19],[-6,-10],[-34,-6],[-14,3],[-4,1],[-3,-1],[-2,-2],[-1,-2],[0,-3],[-3,-5],[-5,-2],[-11,-2],[-5,-1],[-4,-4],[-3,-4],[-3,-7],[-1,-6],[0,-5],[-2,-4],[-88,-20],[-10,-11],[-6,-3],[-28,0],[26,-15],[8,-7],[10,-5],[21,0],[9,-5],[-22,-5],[-5,-5],[0,-7],[7,-2],[15,3],[16,7],[9,2],[7,-3],[6,-4],[4,1],[4,6],[3,7],[-2,0],[69,28],[10,0],[28,-8],[14,1],[24,-13],[-8,0],[-4,-1],[-3,-3]],[[16856,95596],[-5,5],[-8,11],[-4,4],[-18,11],[-4,7],[-3,9],[-3,45],[-2,4],[-4,1],[-6,-1],[-2,-3],[0,-4],[-1,-7],[-12,-10],[-26,11],[-13,-2],[0,-5],[5,0],[6,-2],[4,-6],[2,-10],[-1,-12],[-4,-4],[-10,-2],[4,-6],[27,-32],[6,-4],[1,-3],[0,-3],[1,-3],[1,-5],[-2,-3],[-13,-3],[-15,2],[-8,-1],[8,-13],[11,-5],[13,-1],[10,-5],[-7,-7],[-64,2],[6,-5],[7,-4],[21,-4],[45,-24],[9,-9],[4,-18],[-3,-19],[-7,-4],[-9,4],[-14,12],[-6,2],[-5,-2],[-6,-5],[-13,-25],[15,-4],[8,-5],[4,-7],[-6,0],[-15,4],[-6,-1],[-3,-4],[-7,-9],[-10,-10],[-24,-14],[-51,-10],[-10,7],[-1,5],[-1,7],[-2,6],[-4,2],[-6,2],[-4,4],[-4,0],[-5,-8],[-7,-12],[-7,-10],[-9,-9],[-9,-7],[-12,-5],[-14,-3],[-14,2],[-11,11],[-3,10],[1,10],[6,20],[0,6],[0,5],[1,5],[1,6],[5,6],[10,10],[4,7],[-15,3],[-2,2],[0,5],[3,6],[0,4],[-6,5],[-34,-5],[2,-2],[3,-5],[1,-1],[-10,-4],[-12,3],[-12,9],[-10,12],[-4,17],[5,11],[18,17],[-6,2],[-18,-8],[-4,6],[2,12],[7,6],[10,3],[6,3],[-9,10],[-28,9],[-15,13],[-5,2],[-4,-1],[-19,-11],[-11,-10],[-6,-15],[3,-21],[-4,-3],[-2,-6],[-1,-8],[0,-8],[10,-17],[5,-5],[2,-6],[1,-11],[2,-9],[3,-4],[1,-3],[-4,-6],[-6,-5],[-5,-3],[-6,4],[-1,8],[3,8],[6,5],[-14,10],[-23,-2],[-24,-9],[-15,-12],[-3,-7],[-4,-19],[-5,-6],[-3,1],[-12,12],[-17,3],[-6,4],[2,2],[4,6],[-10,5],[-4,4],[-4,5],[-4,4],[-16,3],[-37,15],[-37,7],[-8,9],[-55,-7],[-14,4],[-8,0],[-7,-4],[2,-1],[3,-2],[1,-1],[-4,-12],[-1,-6],[2,-2],[2,-1],[1,-2],[-1,-3],[-1,-3],[-2,-1],[-13,1],[-51,-24],[-14,-3],[-54,6],[-31,21],[12,2],[13,4],[12,9],[10,14],[-5,-1],[-8,-6],[-5,-1],[-20,4],[7,4],[20,4],[21,16],[-2,4],[8,10],[6,11],[0,8],[-10,4],[-52,-5],[5,5],[54,12],[-5,3],[-6,1],[-12,0],[0,10],[-8,4],[-18,2],[-28,-14],[-9,-2],[-7,2],[-3,-1],[-1,-7],[-2,-4],[-11,-15],[-10,-7],[-11,-3],[-21,-2],[4,3],[9,4],[4,5],[-6,7],[-2,2],[14,5],[2,5],[1,7],[3,3],[3,1],[4,-1],[-2,5],[-2,3],[-3,3],[-2,1],[5,7],[9,-4],[9,0],[8,33],[11,0],[12,-5],[10,1],[-4,0],[4,9],[7,5],[13,6],[2,4],[-1,7],[-1,6],[-3,4],[5,16],[4,9],[7,7],[40,16],[13,13],[6,3],[116,17],[51,-7],[63,7],[12,6],[1,4],[1,3],[0,3],[-1,1],[2,2],[21,18],[4,8],[-1,24],[12,9],[13,5],[3,11],[16,8],[7,7],[3,11],[1,13],[3,10],[5,6],[7,2],[4,-2],[11,-10],[5,-1],[14,8],[33,7],[29,22],[73,16],[8,5],[3,9],[40,18],[-1,2],[-3,5],[-1,2],[1,2],[3,4],[1,2],[-4,2],[-5,3],[-4,5],[-4,6],[17,14],[39,6],[17,17],[-4,1],[-2,4],[0,4],[4,4],[17,7],[5,0],[-2,14],[3,10],[7,6],[8,2],[20,-2],[10,2],[6,12],[-4,4],[6,3],[13,2],[5,6],[1,7],[0,7],[2,6],[28,10],[21,0],[6,4],[0,12],[8,5],[48,17],[11,7],[4,7],[8,21],[4,4],[1,3],[10,22],[6,5],[10,5],[10,7],[9,5],[9,2],[46,-6],[25,11],[4,3],[8,9],[3,2],[11,-4],[6,0],[17,6],[72,-1],[72,-1],[22,11],[69,6],[0,-4],[-8,0],[-15,-7],[-7,-1],[7,-5],[38,7],[4,-2],[3,-3],[6,-10],[2,-3],[4,-1],[13,1],[5,-1],[14,-7],[39,4],[1,-1],[3,-8],[1,-3],[5,-1],[16,1],[17,-5],[16,-11],[9,-2],[27,10],[26,-5],[8,5],[-15,19],[-9,6],[-12,-5],[-5,1],[-5,2],[-2,5],[3,6],[5,3],[34,-7],[48,-20],[13,-1],[10,7],[-3,1],[-7,7],[12,8],[24,9],[10,11],[-8,5],[-20,2],[-8,-3],[-14,-8],[-7,1],[0,12],[-25,-4],[-15,1],[-6,9],[-5,10],[-33,16],[6,5],[6,4],[13,3],[-2,-8],[4,-2],[5,0],[10,5],[6,1],[13,-1],[6,2],[43,23],[-4,4],[-43,5],[7,5],[138,15],[-2,-2],[-4,-6],[25,-5],[-5,-6],[-1,-1],[31,-1],[9,-3],[32,-18],[10,-3],[-13,-5],[-4,-3],[11,-7],[54,-11],[11,-8],[14,2],[7,-1],[33,-24],[23,-7],[23,-14],[12,-3],[-1,-2],[0,-2],[-1,-2],[-2,-2],[5,-4],[11,-6],[3,-6],[-18,0],[-3,-2],[-7,-5],[-3,-2],[-1,-1],[-2,-8],[-2,-2],[-4,-3],[-40,-5],[-13,-5],[-13,0],[-11,-7],[-10,-4],[-14,-11],[-7,-2],[-89,-10],[-8,-3],[0,-7],[-2,-5],[2,-3],[-7,-10],[-20,-2],[-8,-5],[6,-5],[21,-6],[4,-4],[1,-4],[0,-6],[1,-7],[7,-16],[10,-8],[108,-41],[15,-1],[7,-4],[6,-9],[-5,-9],[-44,-22],[-32,1],[-65,25],[-19,3],[-11,-8],[2,-15],[12,-10],[15,-7],[24,-22],[37,-7],[13,-21],[-1,-6],[0,-5],[1,-5],[9,-9],[16,-23],[3,-8],[-5,-3],[-18,-3],[-6,-4],[-3,-3],[-1,-2],[0,-4],[-1,-2],[-9,-12],[-9,-8],[-68,-29],[-35,-1],[-12,-5],[-7,-2],[-67,3],[-6,-2],[-6,-5],[-7,-10],[-4,-2],[-32,9],[-13,-2],[-19,-15],[-1,-4],[2,-8],[4,-7],[5,-3],[5,-3],[5,-4],[-2,-4],[7,-5],[-1,-7],[-3,-8],[2,-10],[10,-11],[4,-7],[-2,-8],[1,-3],[2,-6],[1,-3],[-4,-6],[-5,-4],[-6,-2],[-5,0],[-5,-2],[-31,-25],[-39,-6],[-15,-11],[-6,-1],[-61,7],[-19,11],[-6,2],[3,14],[-7,5],[-40,0],[-11,3],[-6,11],[4,0],[-39,31],[-14,5],[1,3],[2,3],[4,6],[-1,2],[-4,7],[17,12],[-6,7],[-3,3],[-3,2],[6,11],[29,17],[-3,7],[-11,13],[4,3],[7,3],[3,2],[-15,7],[-4,6],[10,10],[11,14],[-3,3],[-2,5],[-2,6],[-1,6],[3,10],[5,4],[11,5],[27,28],[7,14],[-10,18],[-13,8],[-13,0],[-11,-9],[-14,-16],[-7,-5],[-8,-4],[-10,-1],[-81,4],[0,-4],[6,-6],[3,-7],[0,-13],[-2,-6],[-4,-1],[-47,6],[2,-4],[3,-4],[2,-3],[3,-1],[-1,-2],[-2,-5],[-1,-2],[12,-9],[13,-5],[10,-9],[6,-33],[7,-13],[-1,-7],[-6,-3],[-30,3],[-12,-6],[-3,-3],[-2,-4],[1,-3],[-1,-4],[-2,-5],[-9,-6],[-38,4],[-6,6],[-10,14],[-7,5],[-10,3],[-10,1],[-7,-2],[4,-5],[6,-4],[11,-4],[-13,-3],[-18,1],[-16,-4],[-8,-18],[9,-4],[29,-5],[2,-2],[2,-4],[1,-4],[1,-1],[5,-2],[18,2],[8,-2],[9,-6],[7,-8],[14,-26],[1,-7],[-5,-4],[11,-11],[1,-4],[-3,-5],[-7,-9],[-3,-6],[-10,-12],[-11,-4],[-47,1],[-11,-6],[-8,-13],[-2,-14],[1,-14],[5,-10],[7,-3],[-3,-7],[-12,-1],[-6,-4],[-1,-7],[2,-5],[-1,-5],[-7,-4],[-13,0],[-6,-1],[-6,-7],[0,-2],[0,-5],[1,-3],[1,-1],[-3,-4],[-3,-1],[-7,3],[-11,9],[-6,2],[-11,-1],[-7,2],[-6,4],[-5,5],[-5,12],[0,23],[-4,7]],[[26344,96342],[-5,3],[2,8],[9,13],[-4,8],[-6,2],[-7,1],[-12,9],[-83,4],[5,5],[16,4],[5,3],[9,7],[10,3],[10,6],[6,1],[85,-3],[7,-7],[13,-22],[3,-4],[9,-4],[8,-1],[8,-2],[8,-10],[-15,-10],[-50,-14],[-31,0]],[[25094,96281],[4,-7],[0,-7],[-3,-5],[-37,-31],[-84,-40],[-20,5],[-10,-1],[-10,-3],[-35,-4],[-12,3],[-3,3],[0,3],[6,6],[2,5],[-74,22],[-75,22],[-36,27],[-13,6],[-5,6],[-4,7],[-13,6],[-5,8],[-1,7],[2,7],[4,7],[3,5],[-7,34],[-4,6],[3,8],[2,3],[2,1],[-1,7],[-6,14],[2,3],[2,5],[2,6],[1,6],[4,5],[13,3],[9,-4],[10,3],[27,18],[21,4],[80,-9],[80,-8],[22,-11],[2,-3],[2,-2],[0,-3],[2,-3],[5,-3],[11,-2],[103,-58],[17,-16],[-3,-9],[2,-11],[3,-12],[4,-9],[-3,0],[-2,-2],[-2,-4],[1,-6],[3,-6],[4,-1],[4,1],[4,-2]],[[21001,96184],[-15,-24],[-18,-6],[-37,-3],[-30,-15],[-10,-1],[-9,4],[-9,6],[-16,16],[-12,9],[-13,4],[-27,2],[-23,-8],[-11,0],[-11,8],[4,12],[1,4],[-9,6],[-22,-2],[-11,4],[0,4],[5,-4],[6,-1],[6,1],[5,4],[-10,12],[-10,8],[-22,9],[3,3],[5,1],[9,-1],[0,4],[-23,5],[-13,5],[-8,11],[-2,6],[0,4],[2,10],[4,6],[2,3],[-2,-1],[-6,7],[-8,2],[-17,-1],[2,6],[2,3],[6,4],[-4,4],[-13,8],[8,9],[-6,8],[-23,7],[2,8],[4,4],[5,1],[4,3],[6,9],[2,5],[-3,2],[-6,2],[-12,5],[-24,6],[-5,4],[10,7],[1,5],[-5,4],[4,12],[-5,15],[-9,13],[-8,8],[-41,23],[-11,12],[-1,8],[5,6],[47,17],[72,-8],[13,-9],[27,-11],[71,-54],[70,-55],[9,-12],[3,-17],[-6,-9],[-9,-7],[0,-11],[0,-6],[-2,-6],[0,-4],[4,-2],[58,6],[12,-2],[5,-15],[7,-6],[45,-23],[11,-11],[4,-2],[14,-4],[5,-4],[-4,-3],[-5,-1],[-3,-2],[-3,-7],[8,-5],[7,-1],[7,-2],[4,-12],[3,-11],[-1,-2],[-6,-23]],[[24096,96452],[-23,0],[-11,-6],[-9,-15],[2,-2],[3,-2],[2,-4],[2,-4],[-28,-18],[-1,-4],[-2,-2],[-1,-3],[3,-9],[-1,-5],[-3,-4],[-3,-3],[8,-12],[-7,-14],[-12,-11],[-10,-3],[-18,7],[-9,0],[-9,-3],[-9,-1],[-18,7],[-9,1],[4,-4],[12,-4],[5,0],[-5,-5],[-7,1],[-13,4],[-29,-4],[1,2],[0,2],[0,2],[1,2],[-7,5],[-8,0],[-23,-6],[-39,4],[-28,12],[-115,0],[-115,0],[-115,1],[-115,0],[-25,11],[-4,4],[-9,14],[-50,39],[-7,9],[6,1],[6,3],[3,4],[-6,4],[3,5],[1,3],[-1,4],[-1,5],[9,0],[1,5],[-2,8],[0,7],[7,8],[29,5],[25,14],[17,3],[23,11],[48,6],[9,5],[4,0],[10,-4],[5,2],[32,20],[17,1],[12,-18],[-3,-13],[3,-8],[6,-3],[7,-1],[6,5],[6,8],[5,5],[15,-14],[11,0],[32,7],[28,18],[10,2],[83,-5],[82,-5],[-4,-8],[19,0],[-3,6],[-1,2],[38,-8],[11,0],[21,7],[10,-5],[5,-4],[10,-5],[9,-7],[3,1],[3,3],[3,1],[17,-5],[6,1],[2,4],[3,6],[3,5],[5,2],[48,8],[10,-2],[31,-14],[10,2],[4,0],[11,-9],[6,-2],[21,0],[9,-4],[9,-6],[8,-10],[5,-8],[16,-16],[-30,-12],[-12,0]],[[28452,96578],[-4,-7],[-2,-2],[0,-4],[3,-6],[-4,-5],[-21,-12],[-25,-1],[-25,-9],[-8,3],[-11,14],[-10,16],[19,10],[66,11],[15,-4],[7,-4]],[[21542,96508],[3,0],[3,2],[2,4],[2,7],[-7,1],[-9,5],[-8,7],[-5,7],[5,8],[-1,6],[-8,10],[10,17],[13,10],[14,5],[82,2],[83,1],[22,7],[7,-1],[15,-9],[120,-29],[71,-48],[7,-9],[-8,-9],[-7,-2],[-16,3],[-29,-7],[-54,7],[-16,-6],[-13,0],[-15,5],[-16,1],[-17,-18],[-47,-12],[-108,9],[-31,14],[-44,8],[0,4]],[[18420,96583],[4,-12],[20,-8],[7,-10],[-8,-3],[-33,-24],[-122,-37],[-38,4],[-50,22],[-39,3],[-9,7],[8,4],[30,-8],[-6,13],[-12,8],[-24,7],[-37,25],[-16,5],[-72,60],[5,3],[8,2],[8,0],[14,-6],[6,-1],[6,2],[13,8],[29,5],[8,5],[7,5],[17,21],[50,8],[31,17],[17,2],[13,-11],[-3,-6],[-16,-10],[5,-4],[17,-8],[-13,0],[17,-15],[39,7],[14,-17],[-1,0],[23,-21],[3,-5],[7,-6],[59,-10],[10,-7],[4,-14]],[[19554,96706],[6,-12],[-5,-13],[-16,-20],[-5,-12],[-3,-4],[-28,-12],[-60,-11],[-33,-6],[-28,-14],[-86,-8],[-85,-9],[-18,-10],[7,-18],[28,-11],[7,-11],[9,-11],[87,4],[18,7],[59,-2],[6,-3],[6,-7],[2,-7],[-4,-4],[1,-5],[1,-3],[-7,-15],[-1,-1],[1,-8],[4,-5],[8,-7],[-1,-2],[-1,-4],[-1,-2],[2,-4],[3,-2],[3,-2],[3,0],[-4,-8],[-6,-4],[-13,-4],[-7,-5],[-4,-5],[1,-5],[14,-3],[5,-3],[1,-6],[-2,-10],[-5,-7],[-14,-7],[-20,-16],[-94,-29],[-38,-2],[-10,-4],[-12,0],[-3,-1],[-8,-11],[-14,-8],[-87,6],[-16,6],[-9,0],[-33,-17],[-134,-30],[-30,-14],[-33,-2],[-100,27],[-7,5],[-3,5],[-8,14],[-18,25],[-10,6],[-12,-2],[-14,-6],[-13,-1],[-42,9],[-8,4],[-3,7],[-2,11],[-5,6],[-12,4],[-36,-2],[-10,8],[-2,9],[-1,11],[-2,8],[-6,4],[7,11],[26,8],[9,5],[-6,6],[-19,10],[2,0],[-5,5],[-12,3],[-6,5],[5,2],[5,4],[3,7],[0,9],[-6,8],[-1,3],[2,4],[4,2],[7,1],[-22,12],[-11,10],[-5,19],[3,18],[9,14],[19,17],[-8,8],[28,11],[15,0],[11,-9],[5,-5],[6,-2],[7,1],[7,3],[3,5],[3,6],[3,5],[5,1],[-2,0],[89,25],[89,24],[13,-3],[16,-1],[31,10],[29,-2],[36,19],[6,-1],[4,-8],[3,-5],[9,-1],[9,1],[6,2],[14,9],[31,11],[38,3],[31,11],[20,-5],[55,9],[2,-1],[0,-3],[0,-3],[1,-4],[5,-3],[33,-3],[11,3],[31,18],[98,-1],[98,-2],[85,-1],[26,-14]],[[21416,96825],[19,-5],[9,-6],[5,-11],[0,-6],[1,-4],[0,-3],[-1,-5],[-5,-4],[-19,-7],[-49,-36],[-11,-3],[-41,3],[-10,7],[-4,13],[3,11],[7,9],[51,39],[11,5],[34,3]],[[25539,96930],[3,-17],[-9,-14],[-22,-21],[2,-14],[-3,-14],[-7,-12],[-6,-9],[-10,-12],[-12,-8],[-12,-4],[-13,3],[-7,8],[-2,12],[3,13],[6,10],[11,11],[13,7],[25,5],[-1,4],[-2,2],[-2,1],[-3,0],[-4,2],[0,4],[3,7],[0,8],[0,7],[1,5],[3,5],[4,3],[4,1],[9,-1],[3,2],[5,5],[12,5],[4,0],[4,-4]],[[19650,96934],[-16,-10],[-5,-8],[6,-10],[-9,-9],[-3,-3],[9,-10],[-4,-12],[-18,-18],[-1,-3],[0,-3],[0,-2],[-5,-1],[-23,5],[-88,-13],[-13,5],[-25,15],[-12,0],[-2,0],[-89,-25],[-71,8],[-70,9],[-6,5],[0,9],[-7,4],[-17,3],[-22,14],[-35,10],[-18,-6],[-20,-1],[-7,-6],[4,-6],[6,-6],[6,-5],[5,-2],[-11,-9],[-37,5],[-6,-13],[2,-3],[5,-2],[1,-5],[-1,-6],[-3,-3],[-4,-1],[-96,-3],[-16,9],[-9,10],[-2,4],[-4,12],[-6,4],[-16,6],[-3,3],[-13,1],[-41,15],[-81,-15],[-80,-15],[-6,-5],[-3,-6],[5,-8],[-10,8],[-10,-1],[-61,-19],[-35,-1],[-17,7],[-13,18],[4,5],[-15,8],[32,16],[-1,6],[0,6],[0,5],[-3,3],[5,5],[18,2],[5,3],[9,8],[89,27],[27,14],[53,9],[38,16],[57,10],[32,-3],[30,5],[31,-7],[110,35],[12,10],[-17,12],[34,2],[6,8],[5,5],[31,17],[9,-4],[42,17],[38,6],[14,8],[9,3],[5,5],[3,0],[2,-2],[3,-1],[80,8],[8,-7],[8,-6],[36,-10],[28,-17],[30,-3],[7,-4],[12,-5],[21,-1],[8,-7],[0,-11],[5,-6],[7,-3],[15,-2],[27,-14],[-2,-4],[10,-6],[36,2],[3,-2],[4,-9],[4,-2],[5,0],[11,-6],[17,-14],[3,-4],[2,-6],[-1,-5],[0,-4],[3,-4],[5,-1],[5,1],[5,-1],[2,-6],[-2,-4],[-3,-3],[0,-4],[5,-4]],[[29289,97125],[13,-6],[54,-9],[42,-17],[-7,-13],[-14,-9],[-25,-7],[-100,26],[-3,3],[-1,5],[3,7],[2,1],[6,1],[2,2],[1,3],[2,8],[2,3],[4,4],[19,-2]],[[23080,96541],[-36,8],[-14,-2],[-3,2],[-1,4],[1,5],[1,3],[1,0],[0,3],[1,2],[1,3],[0,4],[-3,5],[-2,2],[-3,3],[-2,7],[8,2],[12,7],[10,10],[6,9],[-97,20],[-25,21],[-66,20],[-15,-1],[-8,1],[-6,8],[9,0],[17,8],[8,0],[-2,3],[-4,7],[-3,2],[8,13],[100,-5],[100,-5],[11,6],[11,11],[-4,-1],[-4,1],[-3,3],[-2,6],[3,0],[2,1],[3,3],[2,4],[-8,5],[-22,6],[-17,-2],[-38,14],[-15,11],[-46,10],[-39,-3],[-82,12],[-17,-5],[-8,1],[-2,8],[1,6],[9,0],[19,-6],[0,4],[2,-4],[2,4],[8,1],[3,3],[-20,16],[-20,10],[-43,10],[2,8],[4,4],[4,2],[5,3],[-5,6],[-11,11],[-6,2],[3,9],[4,3],[5,2],[4,3],[-10,4],[-41,6],[-39,22],[-4,3],[-3,5],[-7,14],[-1,3],[3,11],[6,5],[16,0],[-9,8],[4,5],[5,0],[9,-5],[60,0],[6,2],[6,4],[2,5],[-7,1],[0,4],[2,1],[4,3],[-8,7],[-23,13],[-7,1],[-16,-1],[-7,5],[4,8],[-6,5],[-17,8],[-4,5],[0,17],[1,7],[3,7],[-12,7],[-3,5],[4,2],[7,7],[4,3],[-9,6],[-4,5],[2,5],[57,26],[97,-6],[97,-7],[29,-14],[108,-23],[18,-18],[52,-10],[30,4],[15,-5],[57,-35],[7,-3],[7,1],[14,5],[5,0],[15,-4],[2,-3],[-2,-5],[-5,-6],[-8,-4],[0,-6],[0,-7],[-2,-6],[-4,-4],[-4,-2],[-4,-3],[-3,-7],[102,-28],[11,2],[34,18],[12,3],[67,-9],[55,-25],[40,-8],[51,-31],[17,-5],[4,-5],[9,-13],[-6,-11],[-9,-6],[-136,-52],[-9,-8],[19,-10],[42,-6],[21,-9],[4,-16],[57,-33],[-10,-13],[2,-5],[8,-6],[0,-4],[-5,0],[-5,-2],[-4,-4],[-3,-6],[3,0],[-14,-13],[-11,-18],[-4,-5],[-5,-5],[-15,-7],[-13,0],[-29,7],[-31,0],[-6,-2],[-15,-14],[-6,0],[-14,2],[-12,-8],[-38,-5],[-29,-14],[-77,-12],[-77,-12],[-7,3],[-6,6],[0,2],[1,3],[0,3],[-1,4],[-3,2],[-21,3],[-9,-2],[-18,-12],[-11,-3],[-21,2],[-9,-6],[15,-11],[19,0],[20,6],[15,9],[0,-4],[-23,-8],[17,0],[-3,-7],[-5,-2],[-6,0],[-11,3],[-34,-6],[-20,-14],[-12,-3],[2,0],[2,-1],[2,-1],[2,-2],[-7,-6],[-6,-2],[-14,4]],[[20665,97316],[1,4],[-1,5],[-5,20],[-1,7],[3,9],[10,15],[5,18],[8,8],[23,12],[4,4],[3,5],[0,7],[-5,3],[-11,1],[7,16],[14,3],[70,-21],[132,13],[133,12],[133,13],[18,-13],[79,-24],[23,5],[47,-11],[14,-10],[15,-16],[6,-4],[8,-1],[16,1],[8,-4],[-4,-1],[-3,-3],[-3,-3],[-3,-5],[3,-6],[3,-13],[3,-6],[4,-2],[11,0],[4,-2],[9,-10],[7,-3],[1,-3],[2,-4],[2,-4],[4,-2],[5,-2],[3,-2],[6,-3],[16,-4],[3,-3],[3,-12],[-3,-10],[-6,-11],[-2,-14],[-5,-19],[-24,-10],[-7,-13],[13,-4],[4,2],[3,2],[11,4],[21,-2],[5,-2],[0,-3],[-1,-1],[-1,0],[2,-5],[-15,-16],[1,-4],[3,-4],[2,-2],[3,-1],[-2,-5],[17,0],[3,2],[9,10],[26,22],[6,11],[0,3],[-1,1],[1,1],[0,3],[-3,5],[-6,14],[-4,5],[5,4],[-3,0],[34,4],[4,2],[0,7],[45,4],[45,26],[13,3],[73,-6],[3,-2],[1,-2],[1,-3],[1,-3],[2,-1],[12,-3],[52,-33],[12,-4],[11,-11],[39,-11],[3,1],[2,2],[1,3],[0,4],[1,2],[2,0],[33,-17],[8,-11],[-9,-6],[-26,-29],[-14,-20],[-13,-10],[7,-8],[7,-4],[34,1],[9,-3],[1,-10],[26,-4],[19,10],[21,6],[47,0],[20,13],[34,4],[14,-4],[6,-5],[0,-9],[3,-9],[12,-7],[79,-22],[27,-22],[-10,-12],[-30,-13],[-8,-11],[18,-7],[18,-1],[29,9],[10,-5],[3,-5],[2,-5],[2,-4],[3,-2],[17,-1],[14,4],[13,-1],[12,-5],[8,-9],[-8,-10],[-19,-5],[-7,-9],[8,0],[3,-1],[4,-4],[-4,-5],[-9,-7],[-4,-4],[-3,-5],[-1,-5],[-2,-4],[-4,-3],[-39,-13],[-10,-11],[20,-10],[10,-10],[4,-14],[-2,-10],[-9,-26],[-4,-7],[9,-8],[55,0],[10,-4],[9,-10],[9,-18],[11,-17],[8,-5],[30,-11],[69,-61],[15,-7],[13,-1],[-5,-14],[-1,-4],[0,-11],[0,-5],[-1,-4],[-8,-9],[-20,-7],[-9,-7],[9,-16],[-3,-5],[3,-5],[8,-10],[5,-4],[2,-2],[0,-4],[-3,-3],[-14,-3],[-11,-7],[-11,-10],[-7,-3],[-85,-7],[-86,-8],[-7,-2],[-5,-4],[-7,-10],[-5,-3],[-15,-2],[-48,19],[-47,2],[-30,15],[-61,12],[-5,4],[6,8],[-3,10],[-7,9],[-39,33],[-9,15],[-5,10],[-1,6],[-1,8],[3,10],[6,2],[7,-1],[5,3],[0,13],[-12,7],[-45,17],[-9,8],[-6,12],[0,7],[1,5],[-1,5],[-4,7],[-6,4],[-9,0],[-48,-12],[-7,2],[-58,29],[-92,15],[-92,15],[-106,-27],[-14,1],[-48,18],[-10,8],[-5,14],[6,10],[36,21],[-21,10],[-82,-10],[-82,-9],[-13,-7],[-17,-2],[-16,-5],[-44,-2],[-24,-7],[-38,-20],[-9,-1],[2,-13],[-11,-6],[-72,10],[-72,9],[-59,29],[-15,14],[-6,2],[-6,0],[-7,2],[-6,5],[-13,20],[-34,25],[-3,5],[-12,29],[-1,5],[2,5],[6,7],[12,9],[26,10],[17,13],[50,3],[84,-19],[83,-18],[88,2],[39,-13],[12,-1],[12,3],[8,11],[4,9],[0,5],[-3,2],[-5,3],[-4,6],[5,4],[14,6],[2,-3],[4,0],[7,7],[-3,4],[-4,3],[-4,1],[-4,0],[5,3],[5,5],[-11,5],[-80,-2],[-79,-1],[-9,6],[17,14],[20,8],[119,2],[-11,15],[-3,6],[10,6],[10,2],[31,1],[6,3],[2,6],[-2,6],[-9,1],[-7,15],[-11,6],[-21,2],[-7,-5],[-8,-12],[-8,-7],[-8,4],[1,2],[4,6],[-6,3],[-8,-1],[-31,-14],[-18,-4],[7,10],[9,10],[19,13],[-8,6],[-8,-2],[-9,-4],[-8,0],[-14,8],[-7,0],[-5,-8],[1,-2],[1,-4],[1,-3],[-12,-9],[-15,-5],[-15,0],[-13,6],[4,0],[-6,6],[-24,-1],[-10,7],[21,22],[81,34],[7,5],[0,8],[-7,6],[-47,18],[-5,5],[-2,5],[0,5],[-2,6],[-6,3],[-47,7],[-6,-4],[-3,-7],[-2,-7],[-3,-5],[-20,6],[-13,0],[-11,-7],[-8,-13],[-12,-25],[-7,-10],[-7,-7],[-30,-12],[-27,-21],[-14,-5],[-33,-1],[-14,5],[-8,12],[6,11],[38,27],[3,4],[2,4],[3,3],[4,1],[4,17],[15,20],[23,22],[-8,12],[-10,5],[-58,9],[-125,-25],[-44,8],[-8,7],[-4,10],[3,13],[-1,5],[0,4],[0,4],[-2,3]],[[22180,97846],[-3,7],[-6,6],[-3,7],[4,8],[4,2],[7,3],[4,3],[2,3],[4,8],[2,3],[-2,-4],[12,12],[78,32],[58,-5],[34,-18],[7,0],[85,13],[15,-5],[29,-18],[24,-7],[6,-8],[-2,-1],[-3,-5],[-2,-2],[6,-6],[19,-14],[2,-6],[0,-9],[7,-7],[13,-11],[-5,-3],[-5,-6],[-4,-7],[-3,-8],[-2,-13],[2,-5],[12,-6],[8,-10],[7,-15],[4,-15],[2,-15],[-3,-7],[-5,-7],[-6,-6],[-5,-2],[-2,-4],[-3,-9],[-4,-8],[-6,-4],[-2,-3],[-4,-14],[-2,-5],[-6,-4],[-5,0],[-10,6],[1,11],[-3,7],[-21,11],[-95,18],[-8,6],[5,9],[3,3],[-3,2],[-5,6],[-2,4],[6,1],[6,3],[-2,10],[-1,6],[-2,3],[-75,30],[-9,0],[-25,-8],[-102,-4],[-7,4],[-16,13],[-7,3],[2,6],[8,11],[2,5],[0,5],[0,2],[0,3],[0,5],[-1,3],[-2,3],[-1,3],[0,5]],[[23374,98233],[-83,8],[11,12],[16,5],[93,0],[-2,3],[54,0],[15,5],[15,-6],[72,1],[27,-7],[3,-3],[4,-3],[3,-5],[2,-4],[12,-8],[3,-6],[-60,-15],[-82,10],[-41,16],[-62,-3]],[[23160,97873],[-12,0],[-15,6],[-15,11],[-8,14],[6,2],[3,8],[3,9],[3,7],[11,5],[96,-4],[96,-42],[87,-8],[10,-5],[-2,0],[58,-1],[83,-8],[58,7],[32,0],[117,-38],[11,4],[-11,11],[-7,3],[-15,4],[-16,12],[-24,7],[-29,21],[-16,2],[0,4],[73,36],[127,13],[-5,5],[-107,12],[-3,7],[-11,3],[-12,1],[-9,-2],[-21,-21],[-74,-27],[-123,-9],[-70,30],[-12,1],[6,8],[33,10],[61,0],[16,6],[13,13],[-8,5],[-11,-3],[-21,-10],[-51,0],[-4,2],[-6,8],[-4,2],[-75,-29],[-24,1],[-98,36],[-69,8],[2,4],[22,17],[5,7],[-7,4],[-24,0],[-30,8],[14,13],[17,-3],[16,-7],[16,-3],[1,8],[9,0],[26,-10],[22,-2],[8,4],[-12,10],[-5,3],[7,5],[25,7],[7,-2],[11,5],[42,1],[39,-13],[39,1],[29,-11],[35,-6],[-2,6],[-5,7],[-2,4],[1,1],[4,3],[-9,7],[-22,0],[-34,8],[-12,7],[-17,21],[-74,18],[-12,8],[38,9],[3,2],[4,5],[2,8],[3,4],[5,0],[-19,6],[-10,7],[-5,12],[111,4],[92,-2],[67,9],[20,0],[61,-20],[52,-8],[80,6],[71,-10],[4,2],[4,3],[4,0],[5,-1],[3,-4],[-3,-4],[10,-12],[14,-1],[27,5],[0,5],[-61,32],[-103,15],[-40,-7],[-6,2],[-5,4],[-5,8],[-6,8],[-16,6],[-5,8],[6,11],[9,5],[76,5],[76,4],[-15,12],[-35,-3],[-17,3],[0,4],[1,7],[-6,2],[-15,-1],[-24,-10],[-5,2],[-6,-5],[-50,5],[-92,22],[-4,6],[39,8],[12,8],[-9,6],[-11,0],[-59,-13],[-100,6],[-9,10],[4,4],[-2,4],[12,7],[80,13],[12,8],[-79,2],[-14,10],[52,25],[8,8],[10,32],[18,8],[36,4],[38,17],[11,0],[88,-18],[5,-5],[5,-2],[10,0],[5,-4],[-14,-11],[-2,-5],[3,-6],[5,-3],[10,-3],[11,1],[11,3],[10,6],[9,10],[0,7],[6,3],[8,-1],[10,-7],[9,0],[9,3],[6,3],[6,9],[47,-4],[0,3],[-38,8],[10,6],[36,-6],[-17,9],[-56,4],[-3,1],[-6,6],[-9,2],[-10,6],[-20,5],[-4,4],[5,4],[11,7],[40,-15],[93,4],[92,-21],[0,5],[-3,1],[-1,1],[-4,6],[57,-3],[44,7],[-4,1],[-2,2],[-1,1],[4,3],[8,3],[5,2],[-4,6],[-4,2],[-5,1],[-4,0],[6,7],[10,3],[7,4],[-3,12],[-10,8],[-20,0],[-10,6],[8,7],[2,1],[-100,6],[-55,-10],[-40,1],[-69,8],[-46,12],[-17,11],[4,11],[6,8],[30,17],[2,4],[-3,4],[-4,4],[-3,1],[10,10],[15,3],[73,-5],[73,-11],[19,-13],[10,-4],[-2,-4],[4,3],[8,4],[4,1],[3,2],[3,4],[1,4],[-3,2],[-5,2],[-6,6],[-5,8],[-4,9],[5,3],[6,1],[75,-8],[45,-15],[89,-18],[19,-9],[61,-10],[32,-13],[37,-4],[114,-56],[8,-2],[-3,-5],[-7,-8],[-3,-7],[9,-7],[4,-6],[4,-7],[-8,-5],[-28,1],[0,-4],[57,-23],[51,-36],[0,-9],[-1,-5],[1,-5],[4,-5],[7,-7],[15,-10],[20,-5],[10,-10],[18,-25],[6,-4],[13,-3],[6,-3],[6,-7],[0,-3],[-1,-4],[-1,-6],[7,-15],[11,-10],[106,-27],[26,-28],[2,-1],[4,-1],[-7,-12],[-37,-22],[-4,-11],[10,-6],[14,-1],[11,3],[18,-3],[3,6],[3,3],[17,-10],[135,-12],[17,-16],[6,-3],[5,-1],[36,-26],[10,4],[-2,7],[-18,19],[-6,8],[33,5],[16,-4],[7,1],[1,6],[84,-3],[74,-41],[-10,-12],[-4,-3],[-33,-16],[-8,-10],[12,-3],[26,9],[12,-6],[-12,-17],[-3,-9],[7,-7],[-6,-8],[-10,-6],[-27,-9],[1,-9],[6,-9],[21,-24],[33,-23],[122,-45],[9,-7],[9,-4],[12,-1],[13,3],[9,5],[-16,14],[-3,6],[25,-2],[33,-12],[8,-9],[28,-6],[0,4],[-9,4],[-39,29],[-23,10],[-7,10],[13,0],[13,-4],[11,-7],[5,0],[5,7],[-15,15],[-55,6],[-24,10],[-7,6],[-2,3],[-3,6],[-2,3],[-9,7],[-9,5],[15,19],[2,11],[-9,13],[0,9],[10,12],[14,9],[15,6],[13,8],[7,2],[107,-8],[106,-8],[8,-5],[5,-9],[9,-25],[3,-11],[-2,-22],[2,-13],[5,-11],[4,-6],[2,-7],[-1,-17],[0,-1],[2,-2],[1,-2],[-1,-5],[-2,-2],[-3,0],[-6,0],[-6,-2],[-11,-8],[-99,-14],[-10,-8],[5,-3],[10,-2],[5,-3],[-1,-8],[2,-2],[4,-1],[3,-2],[1,-2],[1,-3],[2,-4],[3,-4],[10,-5],[10,0],[42,12],[132,-5],[10,-19],[3,-9],[6,-9],[12,-12],[25,-13],[8,-8],[-8,-8],[-18,-2],[-17,-7],[-10,0],[-9,-3],[-15,-21],[-8,-6],[-35,-7],[-9,-5],[-5,-10],[14,0],[26,4],[87,41],[12,2],[8,-4],[-3,-16],[-22,-39],[-4,-13],[0,-9],[1,-10],[1,-14],[-3,-8],[-17,-31],[-1,-2],[1,-8],[-2,-4],[-6,-6],[-8,-7],[-62,-22],[-10,-12],[1,-5],[0,-5],[-2,-5],[-3,-5],[16,-11],[17,-5],[17,2],[17,12],[4,6],[9,15],[4,5],[9,5],[38,11],[40,-6],[7,-5],[-2,-11],[-3,-10],[5,-2],[7,3],[5,3],[0,1],[0,5],[0,2],[2,0],[21,0],[-5,13],[-10,7],[-19,8],[27,15],[28,6],[86,-3],[15,-5],[25,-20],[23,-13],[11,-8],[-4,-4],[-2,0],[2,-4],[2,-3],[2,-2],[-5,-4],[-8,-4],[-14,-3],[0,-4],[5,-1],[11,-5],[4,-3],[0,-1],[0,-3],[0,-3],[1,-3],[3,-2],[2,-2],[2,-1],[3,-1],[-9,-3],[-21,-2],[-8,-7],[11,-9],[16,-5],[16,2],[11,10],[7,15],[4,5],[10,5],[1,7],[-2,15],[10,34],[21,14],[25,1],[20,-9],[17,-14],[4,-6],[2,-7],[1,-6],[1,-4],[4,-5],[19,-16],[9,-10],[4,-15],[3,-6],[19,-9],[6,-6],[11,-13],[5,-5],[40,-15],[13,-9],[15,-16],[18,-14],[5,-6],[2,-15],[-10,-6],[-69,-16],[-14,-8],[-13,-14],[-6,-2],[-25,-1],[-14,-10],[-15,-5],[-34,-2],[-12,-8],[-115,-24],[-115,-24],[-16,-11],[3,-6],[-3,-7],[-7,-12],[0,-3],[-2,-10],[-1,-3],[-5,-4],[-37,-9],[-8,2],[-9,7],[-28,27],[-4,7],[-5,17],[-3,2],[-4,1],[-4,-2],[-2,-6],[0,-14],[-3,-16],[0,-6],[4,-13],[0,-5],[0,-3],[0,-3],[3,-5],[7,-8],[3,-6],[-27,-26],[-52,-31],[-24,-7],[-8,-10],[-15,-23],[-29,-26],[-9,-10],[0,-3],[0,-3],[-1,-4],[-1,-3],[-5,-4],[-19,-11],[-7,-2],[-7,2],[-51,28],[-9,8],[-7,12],[-19,39],[-4,11],[-1,12],[3,15],[10,29],[-1,14],[-9,18],[2,2],[1,2],[1,0],[5,3],[20,6],[25,15],[-3,5],[-3,3],[-3,3],[-3,1],[8,7],[10,6],[8,7],[5,13],[-10,3],[-12,-6],[-20,-20],[-4,-6],[-2,-6],[-2,-5],[-6,-4],[-55,-2],[-13,-6],[-10,-13],[-2,-12],[2,-9],[4,-9],[2,-11],[-1,-12],[-7,-21],[-3,-11],[0,-15],[2,-13],[4,-11],[17,-34],[2,-12],[-6,-5],[-45,-3],[-10,-9],[4,-2],[3,0],[2,2],[0,-4],[13,8],[59,-1],[12,-5],[12,-9],[13,-13],[7,-13],[2,-13],[-3,-12],[-27,-35],[-9,-9],[-52,-9],[-14,8],[-74,67],[-1,2],[-1,7],[-2,3],[-3,1],[-12,-1],[-43,4],[-5,-1],[-5,-3],[11,-7],[2,-6],[-6,-7],[4,-2],[3,-3],[1,-5],[-2,-7],[44,-53],[6,-7],[7,-8],[3,-10],[-5,-15],[-3,-6],[-29,-34],[-1,-4],[-1,-11],[-2,-6],[-2,-4],[-3,-4],[-2,-4],[-2,-18],[-4,-13],[-10,-18],[-11,-12],[-12,-3],[-40,6],[-14,7],[-55,48],[-11,19],[-8,8],[-4,6],[-3,8],[-3,4],[-8,7],[-31,15],[-4,4],[-8,12],[-5,5],[-19,11],[-7,2],[-3,1],[-41,41],[-3,5],[-6,15],[-3,5],[-15,9],[-15,21],[2,4],[-7,5],[-9,1],[-9,-2],[-8,-3],[-5,-7],[1,-15],[-5,-4],[2,-7],[4,-5],[8,-8],[-4,-6],[1,-5],[9,-13],[5,-3],[2,-1],[1,-4],[0,-3],[1,-2],[4,0],[-2,-10],[3,-5],[53,-25],[52,-67],[3,-5],[6,-23],[7,-10],[19,-20],[5,-13],[-11,-5],[-11,-2],[-11,1],[-11,5],[-3,3],[-3,4],[-2,5],[-1,7],[-2,8],[-3,5],[-9,4],[-5,1],[-52,-3],[-10,5],[-6,9],[1,14],[-25,22],[-26,12],[-53,7],[-58,-8],[-46,7],[-13,-7],[13,-11],[31,-8],[61,-2],[13,-8],[-8,-6],[-4,-5],[-1,-9],[3,-8],[6,-6],[11,-7],[7,-11],[-3,-11],[-9,-10],[-9,-4],[-70,6],[-78,-6],[-83,18],[-117,9],[-45,24],[-15,3],[-11,5],[-30,-8],[-7,-8],[-3,-3],[-6,-1],[-11,3],[-14,7],[-22,20],[2,9],[-4,4],[-29,0],[-6,3],[9,10],[23,2],[10,4],[-12,10],[-16,-2],[-31,-12],[-32,3],[-30,14],[2,9],[1,3],[-6,5],[-15,2],[-40,19],[-14,2],[-22,19],[-11,17],[6,14],[9,5],[17,-1],[-1,2],[-1,5],[71,-8],[-2,0],[21,0],[11,3],[8,9],[-21,4],[6,4],[7,0],[13,-4],[88,8],[87,9],[32,-6],[8,-4],[12,-2],[5,10],[-3,11],[-10,1],[-15,-4],[-127,15],[-128,16],[-21,10],[-22,5],[-11,-1],[-16,-6],[-6,-1],[-2,-1],[0,-2],[0,-3],[-2,-2],[-9,-4],[-67,-8],[-18,3],[-18,8],[-35,25],[0,4],[8,0],[20,7],[7,5],[-7,6],[-42,-7],[-4,1],[-4,3],[-8,8],[-20,7],[-30,27],[-14,8],[9,9],[59,2],[112,-27],[27,1],[4,2],[3,4],[-1,5],[2,4],[-12,6],[-63,16],[-17,9],[-50,11],[-62,-4],[-29,1],[-8,8],[-7,12],[-8,9],[-9,7],[-20,5],[-58,39],[-6,11],[23,12],[53,11],[25,10],[34,3],[34,7],[11,-3],[5,0],[5,1],[4,4],[5,12],[30,22],[1,11],[9,10],[14,6],[15,3],[28,0],[40,-11],[23,4],[45,-8],[6,2],[12,7],[7,2],[62,2],[66,-9],[113,6],[85,10],[56,9],[37,-1],[75,7],[75,8],[48,1],[39,11],[6,5],[-2,0],[-12,8],[-96,-7],[-78,2],[-87,-13],[-108,-8],[-39,2],[-56,-8],[-75,11],[-75,12],[-12,5],[-7,8],[7,4],[19,18],[10,3],[120,-4],[0,4],[-7,3],[-3,1],[-4,0],[5,2],[7,1],[6,-2],[10,-9],[6,-1],[41,1],[18,7],[6,1],[-1,0],[48,11],[45,0],[91,11],[6,6],[0,-4],[0,1],[1,2],[1,2],[2,-1],[-1,2],[-2,4],[-1,2],[6,7],[1,2],[-11,2],[-47,-10],[-36,0],[-79,-9],[-17,-11],[-7,-1],[-61,6],[-33,-1],[-64,11],[-26,-3],[-15,2],[-9,9],[5,4],[18,5],[21,11],[6,1],[14,-1],[19,7],[14,2],[-5,10],[-11,5],[-88,-5],[-67,-22],[-21,2],[-10,5],[-26,33],[-4,3],[-6,1],[-8,-1],[-5,-1],[-3,-4],[0,-6],[3,-5],[7,-5],[7,-9],[16,-16],[6,-9],[-24,-13],[-83,-16],[5,7],[16,13],[14,18],[8,6],[-1,8],[-5,7],[-4,5],[-7,2],[-7,-2],[-6,-4],[-9,-9],[-10,-6],[-4,-6],[-3,-8],[-3,-5],[-13,-16],[-3,-2],[-5,-1],[-14,1],[-15,5],[-7,1],[-6,-6],[3,-4],[-1,-1],[-5,-3],[4,-3],[4,-1],[4,-3],[4,-5],[-9,-7],[-17,-5],[-18,-13],[-40,-13],[-32,1],[-25,11],[-5,1],[-16,-4],[4,5],[6,4],[4,5],[-2,9],[1,7],[6,7],[37,21],[38,12],[9,0],[0,4],[-70,-4],[-108,20],[-9,-4],[4,-4],[2,-5],[1,-5],[-3,-7],[4,-3],[3,2],[4,4],[3,2],[5,-2],[4,-2],[8,-9],[-13,-3],[-27,-14],[-119,-30],[-6,-11],[-6,-3],[-32,8],[-26,0],[-7,4],[2,5],[4,4],[3,3],[4,1],[0,4],[-9,-1],[-10,2],[-9,4],[-8,7],[6,3],[6,0],[7,-2],[6,-4],[5,-1],[4,3],[9,9],[-4,4],[-28,1],[-3,2],[3,5],[-1,6],[-2,3],[-2,3],[-3,1],[3,1],[5,7],[-20,0],[-9,-4],[-2,-13],[-48,8],[-23,2],[-6,5],[-8,3],[-16,-1],[-7,8],[2,1],[6,3],[-6,3],[-2,1],[8,3],[15,1],[8,4],[-11,11],[-3,1],[-4,1],[-9,4],[-4,3],[6,1],[6,2],[5,5],[4,8],[-5,9],[-3,5],[-1,7],[11,1],[24,9],[123,15],[123,15],[25,15],[82,30],[3,6],[-1,6],[-6,11],[-2,5],[15,8],[4,7],[-2,10],[-5,5],[-7,2],[-7,-2],[-5,-5],[1,-1],[4,-3],[-13,-10],[-44,-5],[-4,-4],[-4,-11],[-3,-4],[-22,-3],[-7,-3],[-14,-11],[-104,-16],[-14,-5],[-92,2],[-91,1],[-78,50],[-13,3],[-11,-1],[-5,2],[-4,7],[0,8],[1,6],[-1,6],[-4,6],[-5,4],[-34,15],[-24,3],[7,7],[15,4],[7,6],[-13,3],[-30,-13],[-12,5],[1,5],[-2,4],[-2,3],[-3,3],[-2,2],[5,6],[5,4],[5,2],[15,1],[8,3],[20,0],[8,-4],[-3,-12],[7,1],[15,9],[8,2],[31,-1],[9,5],[-20,13],[-97,8],[-10,7],[-6,8],[-10,17],[-7,8],[9,7],[71,13],[-49,2],[-16,-5]],[[33031,99227],[0,-14],[-3,-16],[-6,-13],[-6,-5],[-5,-2],[-43,-29],[-99,-17],[-100,-17],[10,-6],[23,-3],[11,-7],[-12,-9],[-24,-6],[-23,-16],[-48,-22],[-37,-4],[-24,4],[-6,-2],[-4,-4],[0,-4],[6,-2],[-7,-9],[-73,-22],[-74,-22],[2,0],[-22,-1],[-111,-34],[-112,-33],[-56,3],[-46,16],[-11,0],[5,-7],[52,-29],[-7,-10],[-11,-5],[-32,-4],[-20,-8],[-113,4],[-28,13],[-11,3],[-35,-5],[-91,8],[3,-2],[2,-3],[2,-3],[2,-5],[-5,-4],[-95,-12],[-96,-12],[12,-6],[38,6],[45,-8],[101,8],[-9,-8],[-134,-31],[-20,7],[-5,8],[-15,1],[-42,-16],[-66,-5],[-65,2],[-125,-7],[-83,-5],[-83,-6],[-75,-8],[-75,-9],[-102,31],[-101,31],[-102,31],[16,-12],[120,-40],[120,-39],[9,-14],[-139,4],[0,-4],[77,-16],[121,11],[121,11],[122,10],[85,-11],[84,-12],[14,-9],[-12,-10],[-82,-14],[-46,-7],[-47,-13],[-106,-20],[-106,-21],[-27,-13],[-31,-4],[-52,-20],[-37,-4],[2,0],[-15,-6],[-31,-1],[-23,-9],[-17,1],[-16,-6],[-24,-4],[-112,9],[-13,-9],[10,-6],[23,0],[10,-6],[-14,-1],[-59,-16],[-33,0],[-63,-15],[-67,4],[-13,-8],[40,-11],[120,11],[-7,-5],[-22,-7],[-21,-11],[-51,-15],[-5,-6],[107,19],[28,21],[14,6],[118,20],[118,20],[117,19],[118,20],[2,2],[80,16],[80,16],[102,13],[86,15],[86,14],[72,11],[62,17],[136,11],[86,14],[108,9],[4,-2],[3,-5],[3,-6],[4,-5],[10,-8],[4,-6],[3,-9],[-4,-6],[-5,-6],[-62,-42],[-118,-34],[-79,-37],[-49,-11],[-26,3],[-56,-16],[-33,-1],[-32,-18],[-39,-11],[-7,-10],[-7,-6],[-47,-18],[-4,-5],[-9,-13],[-5,-5],[-39,-25],[-56,-16],[-101,-43],[-91,3],[-13,-7],[5,-7],[16,-14],[-9,-9],[-11,-7],[-21,-8],[-27,0],[-15,-2],[-8,-10],[5,-5],[-3,-4],[-20,-6],[-16,-9],[-82,-22],[-34,-23],[-20,-6],[-31,-17],[-19,-4],[-33,-22],[-55,-12],[5,-6],[5,-2],[12,0],[-9,-13],[-58,-28],[-10,-8],[-13,-20],[-14,-10],[-4,-6],[-1,-6],[-2,-7],[-2,-5],[-9,-13],[-12,-7],[-81,-25],[-89,1],[-90,1],[4,10],[16,17],[5,9],[-14,20],[-18,14],[-126,56],[-5,0],[-5,-2],[-1,-7],[3,-4],[12,-6],[15,-3],[11,-5],[28,-23],[19,-8],[9,-7],[7,-15],[2,-2],[5,-1],[16,-11],[-19,-9],[-5,-7],[-3,-8],[-1,-8],[2,-6],[5,-3],[-2,0],[122,-35],[16,-13],[-11,-11],[-24,-8],[-21,-22],[-14,-3],[-75,6],[-74,6],[-98,-13],[-71,-20],[-41,-18],[-65,-2],[-29,12],[-4,2],[-14,18],[-8,5],[-18,6],[-46,2],[-47,21],[-13,-1],[-11,-9],[110,-37],[26,-17],[9,-2],[0,-4],[-58,-15],[-79,2],[0,-4],[19,0],[-5,-5],[-2,-2],[-3,-1],[5,-4],[48,-4],[91,4],[35,7],[53,-4],[55,14],[89,18],[99,12],[12,-8],[5,-6],[7,-5],[7,-3],[6,-1],[3,-3],[2,-15],[3,-6],[-12,-11],[-29,-2],[-12,-15],[2,-4],[-10,-10],[-93,-15],[-93,-14],[-11,-7],[-9,-9],[-3,-10],[8,-7],[70,17],[74,-14],[-6,-7],[-16,-15],[-3,-9],[-5,-10],[-19,-4],[-1,-9],[-14,-7],[-67,-16],[-28,-14],[-127,-22],[-22,-10],[-30,-2],[-29,-11],[-44,14],[-66,-4],[-81,18],[-8,7],[1,12],[-4,6],[-11,6],[-4,4],[-4,6],[-2,6],[-3,5],[-5,2],[0,5],[34,-1],[10,5],[-7,4],[-72,0],[-54,9],[-119,-9],[-14,8],[7,6],[9,2],[18,0],[-8,9],[-127,18],[-27,-13],[-72,-7],[-73,-7],[15,-3],[7,-4],[-1,-9],[21,-15],[7,-1],[88,8],[107,-14],[107,-15],[28,0],[27,9],[9,-4],[-7,-7],[-2,-1],[1,-5],[5,-7],[1,-5],[0,-6],[6,-4],[13,-5],[-1,-5],[8,-6],[18,-7],[8,-7],[2,-9],[1,-11],[-2,-10],[-5,-7],[11,-7],[4,-3],[2,-3],[0,-5],[-1,-4],[-2,-2],[-3,-2],[-7,-8],[-4,-2],[-5,-1],[-31,-15],[-41,-5],[-36,4],[-39,-7],[-17,9],[-30,26],[-17,5],[-11,-12],[5,-7],[4,-7],[6,-19],[-3,-9],[-9,-8],[-10,-5],[-70,-6],[-31,7],[-84,-1],[-26,15],[-35,8],[-9,8],[2,0],[3,3],[-8,5],[-11,-1],[-10,-5],[-9,-7],[3,-5],[11,-6],[2,-2],[0,-3],[0,-3],[4,-2],[7,-7],[13,-6],[4,-4],[5,-5],[0,-3],[-5,-6],[-15,-15],[-18,-4],[-135,13],[-31,14],[-7,6],[-7,3],[-8,-9],[2,-4],[-17,1],[-8,3],[-5,8],[2,4],[-1,3],[-2,3],[-3,2],[-7,0],[-20,-13],[-13,-2],[-13,5],[-52,34],[-118,8],[-118,9],[-6,2],[-12,11],[-6,3],[-5,-2],[-4,-3],[-4,-6],[-4,-7],[1,-6],[6,-5],[12,-4],[50,0],[25,-7],[27,7],[50,-11],[36,5],[71,-8],[14,-14],[-13,-6],[-5,-4],[4,-5],[5,-5],[3,-6],[3,-4],[40,-15],[28,-3],[8,-5],[-10,-6],[-66,-6],[-23,7],[-83,2],[-83,2],[-8,-3],[-3,0],[-4,2],[-7,5],[-10,3],[-38,23],[-5,6],[-1,5],[-1,7],[-1,12],[-3,7],[-7,0],[-11,-8],[-15,-3],[-30,9],[-14,-7],[6,-10],[18,-22],[10,-6],[4,-5],[7,-12],[5,-6],[12,-5],[5,-7],[-6,0],[-12,-3],[-78,9],[-78,8],[-26,10],[-12,0],[-18,-2],[-19,-6],[0,-4],[62,-19],[56,2],[74,-24],[11,-8],[-11,-4],[-25,0],[-11,-8],[113,12],[85,7],[75,-11],[58,2],[27,8],[15,-1],[57,-23],[84,-1],[85,-1],[80,-2],[70,8],[92,-10],[-7,-9],[-28,-10],[-52,-1],[-12,-8],[13,-12],[33,4],[13,-9],[-4,-2],[-3,-2],[-8,1],[3,-7],[7,-4],[18,-4],[4,-4],[3,-6],[4,-5],[13,-6],[7,-5],[4,-8],[-2,-8],[-6,-5],[-7,-3],[-83,7],[-82,-10],[-116,26],[-70,5],[-2,2],[-1,6],[-2,3],[-3,1],[-30,0],[10,8],[-2,2],[-4,4],[-2,2],[2,4],[2,2],[3,2],[2,1],[0,4],[-1,1],[0,-2],[-10,11],[-54,21],[-71,-1],[-71,0],[-107,-7],[-62,5],[-135,-1],[-136,-2],[-11,-4],[-9,-10],[12,-7],[15,2],[28,10],[98,-6],[97,-6],[98,-6],[73,0],[68,-9],[101,-6],[-1,-2],[-1,-2],[0,-2],[-1,-2],[12,-4],[4,0],[-8,-11],[-15,-5],[-61,0],[-89,8],[-72,-10],[-53,-1],[-104,-28],[-23,6],[-23,1],[-6,4],[-14,13],[-6,3],[-85,9],[-65,0],[-78,-5],[-79,-4],[8,-5],[123,-1],[71,-1],[71,-1],[41,-12],[9,-7],[9,-10],[-10,-1],[-61,-27],[-6,-11],[-45,-38],[-21,-28],[-18,-14],[-5,-6],[8,-13],[12,-1],[13,6],[8,10],[7,13],[18,21],[67,53],[28,14],[137,20],[137,19],[132,-16],[133,-16],[16,-9],[-6,-3],[-15,-18],[-9,-3],[-122,-13],[-48,-20],[-5,-6],[0,-7],[7,-1],[11,2],[38,17],[114,1],[29,10],[53,-6],[69,-2],[64,-13],[44,-5],[10,-10],[-1,-2],[-1,-7],[20,7],[11,1],[5,-9],[-6,-9],[-27,-6],[-9,-4],[10,-3],[24,0],[6,-9],[-14,-10],[-5,-2],[6,-7],[18,-12],[7,-2],[-9,-7],[-17,2],[-9,-3],[-5,-6],[0,-7],[3,-5],[6,-6],[-3,-3],[-2,-3],[-3,-1],[-3,-1],[8,-7],[10,-3],[9,-1],[9,2],[7,-1],[9,-6],[14,-16],[-47,-1],[-57,-30],[-6,-2],[-43,4],[-59,-15],[-102,6],[-102,6],[-102,7],[-23,-9],[-15,-1],[-7,-2],[-7,-5],[-1,-4],[4,-2],[109,6],[37,-7],[6,-4],[4,-6],[2,-6],[3,-6],[5,-3],[135,-26],[134,-27],[6,-7],[4,-8],[5,-6],[7,-2],[-11,-13],[-14,-6],[-27,-2],[-27,6],[-15,-3],[-12,-23],[-10,-12],[-19,-17],[-15,-7],[-16,-4],[-78,14],[-79,14],[-46,-9],[-68,14],[-9,-1],[-15,-7],[-55,-11],[-8,-10],[11,-9],[15,-4],[28,0],[2,-1],[5,-5],[2,-2],[12,1],[10,-5],[88,-7],[29,-12],[72,1],[73,2],[14,-4],[10,-11],[-2,-10],[-28,-23],[2,-5],[-44,-28],[-17,-20],[-9,-5],[-10,4],[-1,8],[-4,3],[-31,7],[-8,7],[-14,6],[-15,2],[-64,-18],[-4,-4],[-6,-13],[-11,-10],[-58,-7],[-37,-17],[-51,6],[-25,20],[-101,-2],[-101,-2],[-93,36],[-15,-9],[0,-4],[13,0],[6,-2],[5,-7],[-54,-17],[-8,-6],[-6,-9],[4,-6],[15,-6],[4,-5],[3,-4],[4,-3],[6,0],[-2,0],[7,-4],[35,0],[5,-3],[-1,-10],[44,-15],[9,-13],[-4,0],[2,-5],[4,-15],[-6,-4],[-2,0],[2,0],[-12,-5],[-12,-8],[5,-1],[6,-4],[6,-6],[1,-7],[-6,-6],[-14,-2],[-6,-6],[15,-6],[31,4],[15,-10],[1,-2],[1,-2],[0,-6],[1,-5],[5,-2],[21,-1],[5,-4],[6,-7],[-6,-5],[-48,-19],[-13,-2],[-5,-3],[-3,-7],[2,-4],[10,-17],[-21,-24],[-50,-12],[-22,-12],[13,-16],[-6,-11],[-10,-5],[-59,-8],[-53,-27],[-21,-5],[-21,3],[25,26],[8,10],[-6,4],[-7,1],[-14,-1],[-6,-3],[-14,-10],[-10,-5],[-13,-16],[-7,-5],[-15,-3],[-22,-12],[-71,9],[-71,9],[-55,-6],[-29,-17],[-7,-2],[-62,4],[-29,9],[-25,-4],[-20,7],[-25,2],[-24,9],[-39,6],[-54,26],[-11,2],[-1,2],[-4,8],[-2,3],[2,0],[-51,8],[-23,11],[-3,3],[-5,10],[-10,10],[-10,8],[-11,5],[-16,2],[-13,6],[-6,1],[-5,2],[-1,5],[2,6],[3,3],[-6,9],[-23,8],[0,4],[9,0],[5,1],[4,3],[-9,10],[-51,15],[-7,7],[4,13],[-6,9],[-8,7],[-9,3],[-6,-3],[1,-5],[-1,-2],[-1,-1],[-1,-4],[0,-6],[1,-1],[4,-14],[5,-7],[4,-5],[5,-3],[20,-4],[6,-7],[3,-5],[8,-10],[14,-12],[6,-10],[-1,-11],[-8,-13],[-7,-8],[-3,-5],[-2,-7],[3,-8],[6,-4],[12,-4],[26,-17],[27,-10],[76,-1],[7,-7],[3,-18],[-8,-5],[-90,-10],[-90,-10],[-84,15],[-13,-8],[49,-21],[22,-3],[7,-5],[3,-5],[3,-11],[3,-4],[-3,-6],[-2,-1],[-2,-1],[5,-14],[9,-7],[11,-3],[19,1],[36,21],[27,4],[13,8],[104,38],[101,-16],[101,-17],[14,-7],[2,-1],[48,-4],[9,-3],[-9,-10],[-26,-12],[-11,-26],[-27,-14],[-9,-11],[10,-5],[14,4],[82,64],[86,32],[79,-3],[25,-11],[26,-2],[13,-5],[27,-19],[14,-4],[6,-7],[-2,-4],[-2,-4],[-2,-2],[-3,-1],[13,-12],[3,-8],[-5,-8],[-19,-9],[-70,-57],[-9,-13],[-2,-1],[-2,-2],[0,-6],[1,-7],[4,-3],[71,3],[5,-2],[6,-1],[17,8],[11,1],[21,-4],[10,-6],[-2,-3],[-2,-4],[-2,-3],[-5,-3],[0,-4],[0,-4],[0,-3],[-10,-10],[-3,-5],[-3,-9],[68,-9],[7,9],[-5,12],[-3,12],[27,0],[9,3],[8,5],[0,4],[-1,5],[1,12],[9,13],[29,5],[11,6],[-2,2],[-4,4],[-1,2],[4,7],[4,4],[5,1],[6,0],[4,4],[55,7],[12,-1],[49,-34],[7,-10],[0,-7],[-3,-6],[-1,-5],[2,-4],[12,-7],[5,-5],[-17,-13],[7,-6],[20,-6],[23,-16],[-11,-8],[-5,-5],[-3,-8],[-2,-6],[1,-5],[1,-5],[2,-8],[3,-7],[0,-4],[-4,-2],[-2,-1],[-3,-3],[-2,-4],[-2,-3],[0,-11],[3,-6],[9,-8],[-16,-13],[-17,-5],[-34,2],[-6,-2],[-15,-11],[-5,-5],[-5,-9],[-13,-9],[-6,-9],[9,-6],[3,-5],[2,-9],[-60,-17],[-7,-7],[4,-12],[-37,-4],[-18,7],[-16,17],[6,5],[2,3],[2,4],[-2,4],[-2,5],[-2,5],[-2,7],[14,3],[0,4],[-33,0],[-16,6],[-9,0],[-7,-6],[2,0],[-6,-9],[-12,-13],[-5,-10],[-12,-28],[-5,-9],[-9,-9],[-11,-7],[-39,-5],[-6,-3],[-3,-4],[-4,-5],[0,-3],[5,0],[0,-4],[-8,-3],[-11,-10],[-6,-12],[4,-11],[-11,-12],[-15,-3],[-43,12],[-14,0],[-75,-27],[-76,-26],[-26,11],[-14,-1],[-39,-16],[-12,-10],[-6,-2],[-40,2],[-6,-2],[-4,-5],[-7,-12],[-5,-3],[-34,0],[-18,5],[-9,0],[-14,-15],[-37,-11],[-3,5],[0,8],[4,8],[7,7],[23,9],[0,4],[-9,4],[-20,2],[-9,6],[12,7],[3,4],[0,4],[-1,5],[2,5],[3,3],[19,6],[2,4],[16,32],[4,3],[7,3],[8,7],[8,8],[6,9],[1,20],[-15,9],[-19,7],[-13,9],[-8,10],[-8,4],[-8,1],[-19,8],[-34,-1],[3,6],[9,14],[-9,18],[-11,-8],[-12,-17],[-8,-9],[-8,-3],[-15,-11],[-38,-6],[-110,13],[-34,13],[-7,6],[11,12],[8,16],[3,3],[3,1],[2,2],[-2,7],[-19,12],[11,2],[33,18],[13,1],[7,2],[5,7],[2,2],[3,1],[3,1],[1,4],[-1,5],[-2,1],[-2,0],[-26,-13],[-79,-23],[-28,3],[-13,5],[-34,29],[-4,5],[-9,19],[-4,4],[-13,10],[-3,5],[-3,6],[-4,5],[-16,7],[-11,9],[-12,6],[-12,-4],[9,-3],[12,-7],[11,-10],[6,-12],[-4,-4],[7,-5],[13,-6],[7,-6],[-2,-19],[14,-18],[36,-25],[24,-3],[59,-28],[-35,-15],[-5,-13],[4,-11],[22,-27],[-1,-10],[-10,-9],[-30,-14],[-72,-3],[-73,-3],[-4,4],[-10,10],[-41,13],[-28,18],[1,7],[3,5],[7,8],[-4,4],[-2,5],[-1,6],[3,5],[-8,26],[-3,7],[-3,3],[-18,7],[-2,2],[0,1],[0,5],[0,2],[-7,6],[-41,21],[-5,5],[1,5],[-5,13],[0,7],[2,6],[4,6],[7,8],[-7,5],[-5,0],[-6,-4],[-7,-7],[-19,-12],[-3,-8],[2,-10],[5,-7],[27,-16],[2,-3],[3,-9],[3,-4],[7,-7],[16,-9],[7,-6],[4,-7],[2,-6],[0,-18],[2,-11],[6,-4],[6,-3],[3,-6],[-3,-4],[-11,-12],[-3,-6],[2,-3],[1,-1],[3,-1],[3,-2],[8,-10],[-11,-11],[-15,-3],[-116,14],[-5,3],[-2,1],[-1,4],[-1,3],[-1,4],[-1,2],[-12,10],[-26,6],[-7,12],[-29,15],[-14,13],[1,12],[-9,27],[-6,9],[-38,15],[-15,2],[-10,-8],[7,-6],[9,-5],[16,-5],[5,-3],[0,-7],[-2,-8],[-12,-28],[-1,-5],[5,-7],[12,-14],[3,-9],[-3,-3],[-1,-5],[-1,-5],[-1,-3],[-5,-5],[-5,-2],[-87,-8],[-24,3],[-23,9],[-22,14],[-1,15],[-12,19],[-16,16],[-24,14],[-7,1],[-6,-8],[-2,-6],[-1,-18],[-3,-8],[6,-5],[4,-7],[1,-8],[-3,-9],[3,-7],[4,-4],[4,-2],[3,-5],[5,-7],[5,-4],[75,-24],[75,-25],[5,-6],[-1,-8],[-7,-4],[-110,-7],[-110,-8],[-7,4],[-1,3],[0,3],[0,3],[-1,3],[-4,3],[-51,-5],[-8,4],[-16,10],[-8,3],[-10,0],[-38,11],[-39,1],[-38,12],[-21,-4],[-40,3],[-18,7],[-18,1],[-8,5],[2,0],[-10,6],[-2,2],[-1,4],[1,3],[0,4],[0,5],[-2,13],[1,7],[3,7],[47,15],[8,11],[-7,13],[-47,21],[-32,25],[-17,9],[-15,-3],[90,-60],[2,-5],[-5,-4],[-76,-23],[-7,-1],[-7,-1],[-4,-7],[7,-3],[-1,-7],[-13,-24],[-8,-27],[-1,-4],[-1,-3],[-1,-2],[-8,4],[-11,1],[-16,8],[-68,7],[-10,5],[-7,8],[3,5],[6,5],[0,8],[-8,9],[-69,4],[-9,6],[8,11],[3,7],[-1,8],[-7,7],[-18,7],[-4,8],[5,2],[2,7],[2,9],[2,7],[-7,7],[-11,8],[-10,3],[-6,-6],[0,-4],[1,-3],[2,-3],[1,-2],[-2,-13],[-2,-7],[-3,-6],[0,-5],[5,-5],[19,-9],[3,-6],[-2,-5],[-12,-15],[0,-12],[10,-8],[22,-7],[0,-3],[-1,-2],[-1,-3],[2,-4],[-5,-4],[-14,-8],[6,-2],[8,-4],[12,-10],[-6,-4],[-6,1],[-25,12],[-6,0],[-6,-1],[1,-3],[1,-6],[2,-3],[-17,-8],[-21,2],[-20,13],[-11,25],[4,0],[-4,7],[-5,1],[-12,-4],[2,-6],[2,-2],[-4,-3],[-4,-10],[-2,-3],[-5,-3],[-135,17],[-8,6],[4,9],[5,4],[6,2],[6,5],[-4,0],[-2,3],[-3,8],[-3,3],[-4,1],[-7,2],[16,8],[7,6],[-2,6],[3,11],[-5,6],[-8,5],[-6,6],[0,4],[-1,12],[0,5],[-4,6],[-4,3],[-4,2],[-11,8],[-3,4],[-1,7],[2,3],[8,7],[1,6],[-3,13],[-13,15],[-3,9],[0,10],[18,17],[1,5],[0,15],[-2,9],[-5,4],[-8,-4],[-5,-5],[-4,-7],[-9,-16],[-8,-9],[-16,-13],[-6,-12],[10,-7],[25,-38],[-2,0],[-1,-7],[-18,-13],[11,-9],[12,0],[13,-4],[9,-20],[-4,-5],[0,-6],[2,-7],[5,-6],[-27,-23],[-10,-18],[6,-16],[-5,-4],[-7,-1],[-7,0],[-6,3],[-2,5],[1,5],[3,8],[3,13],[4,9],[4,5],[8,2],[-4,5],[-15,17],[1,9],[3,6],[4,5],[4,2],[-6,11],[-7,8],[-7,5],[-7,-3],[-1,-3],[-1,-4],[0,-8],[-2,-4],[-13,-5],[5,-12],[-3,-8],[-12,-13],[10,-9],[3,-6],[-1,-9],[-5,-7],[-22,-10],[-2,-3],[0,-4],[-1,-3],[-4,-2],[-23,1],[-7,3],[-4,5],[1,7],[-4,8],[-6,-2],[-10,-11],[-9,-3],[-10,0],[-10,3],[-8,5],[-5,11],[-2,2],[-43,19],[-5,5],[1,6],[4,5],[3,6],[-2,9],[-3,8],[-5,7],[-6,4],[-6,-3],[-10,-13],[-7,-4],[-15,11],[-16,3],[-7,5],[5,3],[9,2],[3,4],[2,5],[-1,4],[-1,4],[0,3],[6,7],[42,18],[6,7],[2,10],[-2,6],[-5,6],[-3,10],[5,1],[9,4],[5,0],[-1,2],[-2,1],[-3,1],[2,0],[-6,2],[-8,4],[-5,8],[0,10],[-4,11],[-2,5],[-3,4],[0,8],[-2,6],[-8,11],[18,15],[132,44],[6,10],[-5,3],[1,2],[75,20],[22,18],[30,17],[9,1],[12,-1],[11,3],[7,14],[-10,-2],[-32,2],[14,7],[28,3],[28,10],[44,-4],[0,-4],[-2,0],[-3,0],[-4,-4],[10,-4],[74,17],[25,-6],[27,6],[9,-3],[7,-10],[1,-9],[8,-2],[31,8],[26,-3],[12,6],[-34,8],[0,5],[19,18],[9,5],[77,7],[17,-6],[-2,-5],[6,-1],[8,0],[6,-2],[1,-8],[9,-7],[14,-5],[13,-1],[9,5],[-21,14],[-7,2],[0,3],[80,5],[-20,9],[-42,-8],[-20,6],[-8,4],[-57,10],[-7,-5],[4,-4],[-10,1],[-5,2],[-5,5],[4,1],[16,15],[5,3],[33,10],[20,-1],[6,4],[-11,6],[-11,3],[-49,-4],[-13,4],[-9,16],[15,3],[28,17],[14,4],[31,-4],[28,8],[-5,5],[-76,3],[-63,-21],[-92,11],[-11,10],[5,16],[-6,2],[-8,5],[-6,8],[-2,10],[7,11],[24,6],[6,11],[-1,6],[-4,4],[-6,6],[-1,5],[-1,8],[-2,3],[-4,4],[-18,1],[-11,2],[-4,4],[-5,6],[3,0],[3,0],[3,2],[3,2],[-4,4],[-6,1],[-10,-1],[-6,1],[-30,18],[-49,15],[-6,6],[-3,9],[2,9],[5,9],[12,14],[-2,5],[2,4],[0,5],[-2,5],[-2,6],[-5,2],[-6,-2],[-5,0],[-3,8],[14,0],[4,5],[-3,11],[16,5],[5,3],[-3,3],[-29,22],[0,3],[6,-3],[18,0],[0,-3],[-1,-1],[-2,-1],[8,-8],[10,-5],[11,-3],[118,25],[118,24],[96,-9],[50,-21],[59,-10],[66,-26],[40,-35],[27,-12],[5,-14],[11,-20],[7,-9],[3,-6],[1,-6],[1,-7],[2,-6],[2,-3],[4,-3],[2,-4],[-2,-4],[10,-28],[4,-9],[3,-5],[11,-8],[7,-10],[-5,-10],[-16,-19],[12,0],[43,21],[13,1],[6,2],[0,2],[0,3],[0,2],[3,1],[2,0],[3,-2],[3,-2],[2,-4],[-3,-4],[-4,-3],[-4,-1],[-4,0],[2,-5],[4,-4],[4,-2],[4,-1],[4,-2],[10,-11],[9,-5],[111,-11],[18,-5],[49,-31],[82,-12],[-5,11],[-18,10],[-8,7],[3,8],[-3,6],[-6,5],[-5,1],[12,14],[21,0],[39,-10],[82,9],[83,-17],[83,-16],[-2,8],[-4,13],[1,4],[-88,22],[-10,18],[9,8],[50,0],[14,5],[19,13],[22,3],[10,4],[4,3],[5,5],[11,18],[4,2],[12,3],[65,62],[11,4],[4,3],[2,7],[2,7],[1,4],[5,1],[15,7],[28,40],[-2,1],[-6,3],[11,8],[24,11],[9,14],[2,7],[0,10],[1,5],[6,7],[22,11],[-12,12],[5,3],[10,2],[4,4],[-4,3],[-7,8],[-2,5],[2,0],[1,1],[1,2],[-11,11],[-3,6],[15,10],[16,4],[32,-2],[0,8],[4,5],[6,4],[4,7],[-52,-1],[-42,-11],[-30,-20],[-5,-6],[-2,-17],[7,-13],[8,-12],[1,-11],[-7,-7],[-49,-21],[-6,-6],[0,-5],[-2,-4],[-4,-5],[-4,-7],[2,0],[-4,-6],[-20,-9],[-10,-8],[-4,-5],[-17,-39],[-5,-8],[-10,-8],[-25,-14],[-17,-29],[-9,-9],[-71,-43],[-67,-25],[-2,2],[1,4],[3,4],[2,2],[-50,-2],[-69,14],[-119,-8],[-7,3],[-16,11],[-6,7],[2,4],[-3,7],[3,5],[6,5],[51,19],[6,4],[11,14],[24,14],[9,9],[11,20],[0,2],[-3,4],[-2,5],[-4,3],[-4,2],[-4,1],[-1,0],[-1,0],[-1,0],[-1,0],[4,-1],[1,0],[3,-6],[2,-2],[-4,-12],[-1,-3],[-5,-7],[-2,-4],[-8,-9],[-21,-6],[-26,-18],[-64,-22],[-5,3],[-11,9],[-78,22],[-7,7],[2,7],[5,8],[4,10],[-19,10],[-4,5],[39,12],[3,6],[1,9],[2,8],[7,5],[30,-3],[24,10],[7,6],[-7,9],[-11,0],[-11,-5],[-12,-9],[-15,1],[-32,-11],[-18,0],[-15,6],[-5,4],[-1,7],[5,8],[18,16],[19,8],[20,1],[40,-6],[21,3],[17,8],[8,1],[9,-4],[-2,0],[-12,-19],[-6,-11],[5,-2],[59,42],[89,-12],[12,6],[-65,18],[-96,-6],[-95,-5],[-32,-15],[-34,-7],[-5,0],[-5,6],[-1,7],[1,5],[2,4],[4,1],[-46,4],[-7,10],[5,9],[83,33],[83,34],[13,-2],[25,-11],[61,-4],[5,2],[26,16],[16,6],[55,-3],[14,7],[-83,-1],[-42,-13],[-31,0],[-68,26],[15,15],[13,18],[-1,4],[-2,3],[-4,2],[-4,-1],[0,4],[53,-6],[61,21],[64,-8],[51,-18],[51,11],[0,4],[-55,0],[-56,17],[-91,3],[-32,-12],[-22,2],[-6,7],[6,18],[4,6],[14,14],[3,5],[6,13],[12,11],[61,10],[3,6],[-2,8],[-4,3],[-6,-1],[-5,-2],[-8,-7],[-8,-5],[-9,-2],[-9,0],[-8,3],[-15,10],[-8,3],[2,3],[2,2],[2,2],[0,1],[3,6],[4,10],[2,12],[1,10],[3,11],[7,6],[3,6],[-6,12],[20,15],[16,24],[6,6],[6,4],[-8,5],[-9,-5],[-17,-19],[-26,-22],[-7,-8],[0,-6],[-1,-10],[-3,-9],[-4,-4],[-3,-1],[-6,-10],[-3,-3],[-8,-4],[-4,-4],[-2,-6],[3,-1],[1,-2],[4,-5],[-3,-5],[-3,-9],[0,-8],[4,-6],[-5,-7],[-14,-12],[-6,-2],[1,-6],[1,-3],[1,-2],[3,-1],[0,-4],[-9,-2],[-7,-4],[-31,-30],[-11,-15],[-35,-25],[-6,-7],[-2,-6],[-28,-19],[-10,-2],[0,4],[3,0],[3,1],[5,4],[-103,-17],[-102,-16],[-5,2],[-7,4],[-6,7],[1,10],[6,14],[4,6],[5,2],[0,4],[-2,2],[-3,4],[-1,2],[9,5],[29,3],[6,3],[21,22],[23,14],[3,8],[2,10],[4,5],[4,4],[4,7],[-3,0],[-2,1],[-3,3],[8,11],[8,5],[3,8],[-4,17],[2,0],[4,4],[-4,4],[-4,1],[-5,-2],[-4,-3],[2,0],[-2,-4],[-1,-4],[0,-3],[1,-5],[-5,-5],[-11,-7],[-8,-2],[-3,-2],[-2,-3],[-1,-2],[-13,-5],[-3,-3],[-1,-5],[-1,-13],[-1,-6],[-4,-5],[-17,-8],[-26,-20],[-14,-6],[-19,8],[-23,-1],[-13,5],[-6,0],[-6,-5],[-11,-16],[-44,-30],[-12,-5],[-100,2],[-99,2],[-8,3],[-6,7],[12,15],[16,10],[96,12],[0,4],[-31,3],[-21,10],[-19,-9],[-20,-3],[-20,2],[-9,9],[0,6],[6,13],[1,7],[-1,9],[-3,13],[-1,6],[2,16],[3,13],[-1,11],[-8,11],[5,14],[8,10],[90,58],[83,-1],[0,5],[0,7],[-12,9],[-42,-9],[-13,4],[-6,5],[1,6],[36,32],[6,12],[2,17],[6,10],[91,57],[8,1],[8,0],[13,-6],[136,22],[72,-4],[74,26],[30,5],[38,19],[7,2],[16,-5],[37,6],[90,-30],[134,-9],[133,-10],[55,-27],[63,-12],[17,-15],[27,-14],[104,-18],[9,-7],[14,-7],[4,-3],[-4,-4],[4,-5],[13,-4],[4,-3],[2,-4],[1,-4],[3,-4],[8,-6],[20,-9],[18,-3],[18,-9],[10,-2],[22,11],[7,2],[0,2],[-1,2],[-1,4],[-75,38],[-23,23],[28,6],[7,6],[-2,4],[64,-8],[8,4],[-12,14],[-21,5],[-121,-15],[-9,2],[-23,18],[-10,3],[-21,1],[-10,3],[-12,12],[-5,2],[-31,0],[-5,2],[-2,3],[-4,11],[-3,4],[14,8],[63,3],[93,-12],[68,-4],[13,5],[9,6],[85,12],[68,-1],[9,-5],[-19,-6],[15,-2],[12,3],[2,13],[4,0],[3,3],[6,9],[-6,7],[-22,9],[3,7],[10,12],[4,17],[4,6],[4,4],[3,-1],[5,6],[45,27],[-5,5],[-11,3],[-3,4],[-4,-5],[-89,-25],[-17,-9],[-8,-14],[3,0],[-4,-6],[-16,-10],[-19,-19],[-6,-3],[-115,-18],[-7,2],[-14,8],[-99,23],[-101,-6],[-94,1],[-81,17],[-88,-4],[-64,36],[-68,14],[-8,8],[0,14],[5,6],[18,6],[12,9],[42,21],[15,0],[31,-9],[49,-1],[31,-15],[1,-1],[-3,-3],[-3,-9],[6,0],[5,-2],[5,-3],[3,-3],[1,-2],[0,-2],[0,-3],[1,-2],[3,-2],[75,-7],[74,-6],[13,4],[10,11],[-12,7],[-25,-12],[-12,0],[-42,14],[-6,4],[4,3],[2,1],[-10,8],[-42,15],[-23,3],[-9,7],[2,1],[0,2],[1,2],[1,2],[-3,0],[-4,0],[-3,2],[-3,3],[5,7],[7,5],[14,8],[-8,16],[-11,2],[-23,-17],[-16,-7],[-52,6],[3,6],[-1,9],[-4,9],[-4,8],[4,0],[-3,9],[-6,5],[-6,3],[-7,9],[-2,1],[-2,3],[-1,10],[-1,2],[-1,2],[-1,5],[-1,19],[-1,5],[-3,3],[-3,1],[-3,1],[-1,6],[0,12],[0,2],[-5,5],[-23,11],[-28,5],[-53,23],[-4,6],[3,10],[-5,3],[-8,3],[-11,8],[-1,3],[0,2],[0,3],[2,3],[-5,7],[-5,6],[-13,8],[3,7],[5,8],[-43,20],[-41,17],[-85,18],[-65,-7],[-82,21],[-81,12],[-7,4],[-4,5],[-2,5],[0,5],[2,16],[2,5],[4,1],[25,0],[-5,4],[-11,5],[-5,7],[-2,6],[-2,13],[-2,6],[3,9],[2,9],[2,9],[5,7],[10,8],[23,6],[96,-10],[24,-9],[96,-3],[32,-18],[24,-3],[13,4],[9,11],[-47,5],[-27,18],[-98,8],[-22,8],[-136,9],[-26,14],[-12,10],[-1,2],[-1,3],[0,3],[0,3],[-4,8],[-9,11],[-3,8],[-3,15],[3,10],[15,21],[9,9],[2,3],[1,6],[2,6],[2,4],[3,3],[-2,4],[2,6],[2,6],[2,12],[-1,0],[-1,2],[-1,3],[1,3],[3,4],[8,1],[10,5],[76,6],[75,5],[47,-14],[114,-27],[96,3],[95,3],[82,-3],[82,-3],[69,-11],[124,-62],[64,-42],[121,-49],[70,-36],[70,-37],[19,-16],[8,-11],[17,-28],[9,-11],[5,-6],[-2,-2],[-2,-2],[-2,-8],[21,-14],[22,-6],[44,0],[-4,-16],[3,-10],[17,-15],[-6,-4],[-6,-3],[-7,-1],[-6,3],[-6,4],[-7,3],[-6,-2],[-4,-7],[38,-10],[18,4],[37,24],[21,0],[110,-21],[109,-22],[-3,5],[-4,3],[-4,2],[-4,3],[6,7],[75,14],[74,14],[37,-3],[9,2],[46,34],[-90,-5],[-90,-5],[-12,-9],[-121,-12],[-123,39],[-50,-3],[-6,2],[-2,2],[6,14],[1,6],[-17,6],[-17,2],[12,12],[6,10],[-2,12],[-9,21],[-6,10],[-9,6],[-2,6],[1,5],[3,3],[23,8],[35,0],[11,8],[-15,9],[-76,11],[-75,11],[-20,11],[-27,5],[-97,57],[-118,77],[-16,20],[-57,23],[0,3],[13,7],[86,12],[87,12],[76,8],[76,9],[105,4],[116,12],[117,13],[117,12],[16,9],[-5,3],[-10,3],[-4,6],[86,11],[75,3],[76,3],[22,9],[108,-2],[31,9],[32,-5],[32,9],[82,-2],[82,-2],[16,3],[5,5],[-1,1],[-1,3],[2,0],[1,1],[1,2],[1,1],[1,0],[0,3],[-106,6],[-107,6],[-136,-4],[-96,0],[-96,1],[0,4],[15,8],[95,19],[49,20],[87,8],[64,20],[59,5],[29,16],[54,2],[29,6],[12,7],[128,7],[62,10],[103,-1],[79,4],[79,4],[14,6],[9,13],[-29,14],[-52,0],[-69,-9],[-101,10],[-85,1],[-84,0],[-33,-10],[-102,-9],[-101,-9],[-8,1],[-5,3],[-12,8],[7,12],[8,7],[6,9],[-5,19],[-6,8],[-5,4],[-2,5],[5,9],[6,6],[116,55],[12,10],[8,15],[-22,3],[9,11],[17,5],[33,1],[29,7],[28,16],[19,17],[41,21],[49,14],[11,8],[72,12],[47,21],[35,-1],[29,19],[58,16],[4,4],[-13,7],[-18,2],[-128,-29],[-129,-29],[-26,-13],[-88,-18],[-81,-47],[-31,-8],[-25,-12],[-7,-8],[-7,-10],[-6,-14],[9,-6],[4,-2],[5,0],[-13,-7],[-57,-3],[-78,27],[-78,28],[12,-15],[86,-43],[16,-2],[8,-5],[-11,-12],[-30,0],[-13,-4],[-18,-23],[-2,-4],[-4,-10],[9,-6],[9,-2],[10,0],[18,5],[4,-5],[-1,-9],[-7,-8],[-23,-18],[-9,-1],[-19,1],[-9,-4],[-7,-10],[-2,-12],[-11,-11],[-36,-23],[-87,-18],[-36,-20],[-38,-7],[-46,-7],[-77,-21],[-67,-25],[-95,-20],[-93,-4],[-72,-14],[-73,-9],[-73,-9],[-11,-7],[-3,1],[-93,-2],[-53,-9],[-57,5],[-13,8],[-1,16],[7,14],[7,12],[9,9],[10,3],[29,0],[16,4],[15,15],[95,13],[95,12],[34,17],[24,4],[51,33],[-6,5],[-23,-1],[-30,8],[-15,-3],[-29,-14],[-68,-14],[-13,-7],[-17,1],[-7,-2],[-5,-5],[-4,-6],[-5,-5],[-6,-2],[-117,-11],[-84,-15],[-54,2],[-8,3],[-6,5],[6,4],[-3,4],[-9,8],[12,10],[47,7],[58,28],[7,8],[-42,9],[-13,-5],[-13,-13],[-4,-4],[-42,-15],[-13,-1],[-6,-2],[-16,-14],[-13,-4],[-43,8],[5,-4],[19,-8],[-10,-2],[-5,-7],[1,-10],[8,-10],[6,-6],[7,-9],[5,-10],[3,-11],[-6,-8],[-10,-24],[-7,-11],[-12,-9],[-14,-4],[-51,-1],[-88,-15],[-82,13],[-65,-1],[-54,-16],[-119,13],[-28,9],[-41,-6],[-19,7],[20,19],[44,16],[20,14],[-62,-14],[-73,-38],[-19,0],[-88,20],[-87,20],[17,27],[38,39],[104,68],[105,68],[49,20],[32,3],[15,6],[25,0],[36,9],[6,6],[4,2],[54,3],[-4,5],[5,3],[6,2],[6,-1],[12,-8],[8,-1],[92,9],[92,8],[22,9],[129,12],[128,13],[129,12],[15,8],[66,7],[27,12],[-6,3],[-126,-13],[-127,-14],[-126,-13],[-126,-13],[-15,2],[-128,-9],[-128,-9],[-28,-11],[-32,6],[-27,-6],[-80,-10],[-92,-24],[-71,-39],[-21,-19],[-5,-4],[-29,-8],[-17,-18],[2,-4],[-124,-62],[-5,-7],[-4,-18],[-19,-16],[-31,-19],[-52,1],[-67,7],[-53,18],[-57,3],[-77,24],[-68,28],[-85,18],[-71,31],[-56,16],[-18,17],[-3,5],[1,3],[7,5],[24,4],[21,10],[68,3],[46,14],[125,10],[80,0],[81,0],[59,-10],[134,5],[30,10],[92,-1],[67,14],[49,24],[73,9],[44,-5],[8,5],[-13,5],[-7,4],[-5,7],[8,8],[9,5],[30,6],[21,11],[20,5],[20,11],[96,27],[96,16],[20,10],[10,3],[-5,7],[-7,2],[-7,-1],[-7,-3],[-6,-1],[-25,12],[-20,-4],[-65,-3],[-88,-17],[-87,-18],[-91,-30],[-26,-22],[-63,-16],[2,0],[-117,-8],[-126,-25],[-131,6],[-136,-10],[-137,-9],[-136,-10],[-137,-10],[-33,7],[-15,8],[-23,5],[-28,14],[-6,6],[-12,18],[-20,18],[-6,8],[-3,11],[4,2],[11,10],[87,33],[6,-1],[13,-5],[20,5],[14,-1],[53,-21],[12,-1],[87,11],[87,12],[-17,11],[-109,-9],[-52,20],[-71,11],[-35,16],[9,7],[87,13],[44,25],[58,2],[70,35],[29,-8],[10,-1],[9,4],[-8,1],[-16,9],[-8,2],[6,8],[6,3],[110,14],[52,-1],[102,9],[0,-4],[-3,0],[-3,0],[-2,-2],[-2,-3],[10,-5],[13,-1],[29,7],[19,-4],[54,0],[67,-18],[10,5],[-3,1],[-3,1],[-3,3],[-2,3],[-7,6],[-102,15],[-102,16],[-24,-8],[-32,4],[4,4],[-13,9],[-17,3],[-17,-3],[-28,-13],[-30,-6],[-102,-8],[-91,-21],[-57,-10],[-76,-25],[-131,-28],[-26,-13],[-19,-5],[-20,2],[-17,8],[20,8],[-105,29],[7,10],[103,31],[104,32],[31,-2],[6,2],[3,3],[4,9],[4,3],[76,3],[16,19],[-70,0],[-71,-4],[4,6],[5,2],[5,1],[5,3],[-7,4],[-16,1],[-7,3],[-29,21],[-17,5],[-10,-1],[-6,-7],[0,-7],[6,-8],[12,-11],[-7,0],[-22,8],[-26,-1],[-54,11],[-9,-2],[-18,-19],[-14,-5],[-27,0],[-12,-4],[-6,-4],[-4,-7],[1,-6],[11,-20],[-6,0],[-8,-2],[-8,-3],[-11,-8],[-5,-1],[-3,1],[3,5],[-12,6],[-91,-18],[15,8],[2,4],[-1,2],[-8,19],[-11,6],[-75,5],[-17,10],[-19,-2],[-19,9],[4,6],[6,3],[13,-1],[-5,4],[-7,3],[-13,1],[12,6],[26,-4],[14,2],[-12,8],[5,4],[11,2],[5,2],[-4,4],[8,8],[2,4],[-4,4],[6,4],[25,1],[13,10],[24,11],[24,3],[54,-8],[24,4],[19,-3],[5,3],[-26,12],[-8,8],[18,16],[21,7],[78,-2],[10,5],[2,2],[0,2],[0,2],[1,3],[3,2],[5,0],[13,6],[102,14],[86,-9],[-6,7],[-8,4],[26,-1],[35,12],[12,1],[11,-6],[-4,-4],[-9,-1],[-4,-3],[10,-6],[17,-15],[31,-12],[11,1],[5,-1],[4,-4],[-1,-2],[-5,-6],[9,1],[23,-4],[9,-6],[-4,6],[0,1],[3,6],[20,7],[25,21],[9,4],[-8,9],[-57,4],[-7,2],[-4,6],[2,6],[6,4],[13,6],[25,1],[49,-21],[25,8],[-4,8],[2,2],[2,2],[-20,25],[14,10],[91,31],[124,13],[19,7],[10,0],[4,1],[4,5],[3,2],[6,1],[20,-1],[57,-17],[57,9],[60,-9],[49,-28],[6,-8],[-40,-24],[8,-7],[78,-21],[78,-21],[-8,13],[-16,10],[-77,14],[-11,12],[79,8],[0,4],[-7,1],[-34,16],[-2,4],[3,7],[7,5],[93,4],[103,-7],[27,-1],[14,-8],[37,-9],[76,-46],[76,-47],[9,-1],[8,4],[-10,14],[-65,36],[-26,24],[14,11],[115,0],[19,-6],[50,-46],[30,-15],[32,-6],[-40,27],[-36,35],[11,6],[46,-4],[8,-4],[4,-10],[-2,-17],[15,-13],[15,-9],[33,-6],[-5,6],[-18,12],[-2,5],[-3,15],[-3,6],[-11,14],[-137,22],[-137,21],[-137,22],[-137,22],[-37,31],[-5,11],[8,7],[81,12],[55,-6],[96,4],[95,4],[30,18],[15,3],[30,-2],[14,8],[-30,13],[-10,7],[5,5],[11,7],[5,5],[-27,0],[-5,8],[9,20],[-13,9],[-44,-1],[-22,8],[-30,0],[-7,4],[5,7],[6,2],[7,0],[26,11],[98,3],[97,3],[98,3],[13,-5],[10,-13],[-6,-5],[-71,-3],[-12,-7],[118,-16],[38,-16],[-2,-4],[12,-8],[41,12],[73,-7],[73,-7],[69,-27],[12,-12],[3,-7],[0,-3],[0,-3],[1,-7],[3,-8],[6,-5],[84,-33],[5,-5],[13,-18],[5,-4],[-8,-16],[-14,-9],[-28,-4],[0,-4],[95,-2],[95,-2],[96,-2],[43,-15],[11,0],[8,5],[-5,3],[-14,13],[-46,17],[-131,-3],[-12,6],[-59,49],[-47,26],[-3,3],[-1,5],[0,11],[-1,13],[2,3],[5,3],[9,2],[110,-30],[48,0],[75,-34],[76,-21],[76,-21],[-2,0],[136,-31],[135,-30],[1,-8],[12,-4],[14,0],[21,7],[117,-24],[112,-64],[13,-16],[11,-5],[83,-4],[-125,70],[-8,11],[2,4],[-15,8],[-31,1],[-15,8],[6,5],[13,6],[5,5],[-8,6],[-99,15],[-99,16],[-99,15],[-9,9],[-2,6],[0,3],[2,2],[22,9],[5,4],[-117,2],[-132,43],[-131,43],[-132,43],[-4,7],[-1,7],[0,3],[14,17],[51,42],[138,-4],[139,-3],[6,3],[-7,4],[-21,-4],[-93,13],[-3,3],[-103,32],[-28,21],[7,16],[12,8],[72,9],[90,-13],[91,-13],[74,-28],[73,-29],[85,5],[-5,9],[-69,34],[-69,34],[-9,9],[2,3],[-11,14],[-30,6],[-27,17],[-31,6],[-27,15],[-3,5],[5,9],[8,5],[18,4],[107,-9],[108,-8],[107,-9],[10,-10],[-1,-2],[-2,-4],[-1,-2],[32,-12],[10,-8],[-5,-8],[-3,-3],[-3,-2],[8,-12],[14,-6],[50,-8],[13,-6],[8,-1],[7,1],[6,4],[-39,15],[-12,9],[9,10],[14,4],[108,-14],[107,-14],[25,7],[27,-7],[109,4],[12,7],[-129,15],[-129,15],[-128,15],[-10,9],[2,11],[-21,3],[21,11],[68,2],[0,4],[-93,9],[-94,10],[-14,9],[-8,12],[11,4],[22,1],[15,7],[10,0],[4,2],[14,10],[113,10],[114,11],[4,-3],[10,-7],[5,-3],[22,0],[-2,-1],[-3,-2],[-1,-4],[-1,-4],[11,-2],[15,-6],[12,-10],[2,-15],[18,-3],[5,2],[55,39],[25,3],[27,-3],[22,-9],[5,-4],[1,-8],[-2,-6],[-13,-19],[11,-12],[13,6],[14,10],[13,0],[2,-9],[10,-3],[20,-1],[23,-11],[19,0],[0,4],[-8,0],[-12,3],[-11,5],[-7,8],[12,7],[40,-11],[9,1],[2,3],[-4,6],[-5,4],[-18,6],[9,7],[64,13],[99,-18],[99,-17],[53,-36],[6,-10],[-7,-6],[-3,-2],[10,-5],[38,-6],[17,-8],[48,-41],[34,-6],[11,-5],[4,-4],[5,-2],[9,0],[14,-7],[31,-1],[57,-19],[19,-1],[-6,-7],[-8,-5],[-14,-5],[-24,-17],[-19,-6],[-12,-9],[-11,-13],[-9,-15],[4,0],[9,-10],[12,2],[71,41],[70,41],[57,4],[17,11],[-11,7],[-92,17],[-93,17],[2,2],[1,2],[1,3],[-15,0],[-18,5],[-17,10],[-11,18],[23,11],[48,-3],[22,12],[-110,0],[-46,20],[-36,33],[-100,33],[-100,32],[7,9],[8,5],[56,14],[-3,-4],[-3,-3],[-3,-1],[-3,0],[13,-7],[124,7],[124,7],[28,11],[98,-4],[98,-4],[12,-5],[23,0],[3,-1],[1,-4],[28,0],[10,5],[-2,0],[29,6],[119,-11],[119,-12],[40,-23],[11,-1],[-2,-7],[2,-5],[3,-1],[2,-3],[6,0],[5,-2],[15,-11],[4,-4],[7,-12],[10,-12],[114,-33],[115,-32],[114,-33],[-3,4],[-2,1],[0,4],[30,4],[0,4],[-85,19],[-85,18],[-59,31],[-13,2],[4,7],[-17,19],[-9,7],[-33,5],[-23,9],[10,12],[13,7],[38,8],[52,29],[88,14],[13,8],[-35,0],[11,9],[51,5],[24,9],[30,3],[6,-2],[14,-11],[5,-1],[64,18],[89,-2],[90,-1],[12,-7],[-12,-5],[-38,-24],[-9,-14],[9,-11],[54,-23],[0,-2],[-1,-2],[-1,-2],[-2,-2],[104,-19],[104,-18],[-9,11],[-122,50],[-41,6],[-13,6],[6,8],[59,22],[43,6],[6,5],[-3,1],[-3,3],[-2,3],[-1,5],[31,2],[19,-10],[10,-2],[10,1],[10,5],[-4,2],[-8,3],[-3,-1],[20,7],[105,1],[104,1],[105,1],[8,-6],[-5,0],[-5,-2],[-11,-6],[5,-4],[9,-2],[5,-2],[-7,-5],[-18,-4],[-5,-7],[21,0],[-1,-2],[7,-2],[54,1],[9,-6],[-15,-2],[-28,-16],[-15,-2],[12,-7],[111,13],[49,20],[11,-2],[7,-10],[-3,-18],[9,-8],[76,0],[14,4],[-2,0],[29,12],[100,-6],[8,-6],[-7,-11],[-6,-13],[16,-9],[18,4],[19,8],[112,10],[116,-22],[18,9],[-1,7],[5,2],[45,-6],[-9,-8],[-3,-3],[24,-6],[12,1],[18,19],[13,-2],[23,-8],[70,1],[12,-6],[11,2],[6,-1],[-5,-5],[-20,-3],[3,-4],[4,-2],[7,-2],[-6,-8],[-124,-37],[2,-4],[-13,-8],[-84,-11],[-27,-14],[-67,-6],[-14,-5],[-17,1],[-22,-8],[-30,-1],[-23,-10],[-77,-10],[-78,-11],[-16,-9],[-42,-10],[-10,-8],[15,-5],[109,5],[109,6],[109,5],[50,21],[32,3],[12,7],[67,8],[54,-7],[9,6],[-3,3],[-3,1],[-3,1],[-3,-1],[5,11],[9,6],[108,25],[108,25],[99,1],[10,-7],[-4,-6],[-15,-11],[9,-11],[14,-4],[80,-5],[-13,8],[-29,3],[-13,9],[9,3],[35,23],[8,2],[18,1],[-12,9],[-31,-2],[-14,5],[8,4],[21,1],[19,11],[121,6],[12,-6],[-7,-8],[-10,-4],[-52,2],[-9,-6],[14,-7],[49,-1],[-3,-5],[-9,-11],[12,-10],[37,-12],[24,-16],[13,-4],[11,5],[-1,2],[-3,5],[-1,1],[8,5],[18,0],[53,27],[96,-3],[95,-3],[11,-5],[8,-9],[-3,-4],[0,-5],[1,-6],[2,-5],[-15,-11],[-15,-6],[-101,-11],[56,-3],[20,-9],[11,-1],[-1,-2],[-3,-7],[-2,-3],[6,-3],[15,3],[6,-1],[9,-5],[30,-5],[26,-9],[-9,-10],[-11,-3],[-22,1],[3,-8],[113,-11],[10,-14],[-9,0],[-12,-4],[-10,-7],[-8,-9],[0,-4],[1,-4],[1,-4],[-6,-11],[-2,-5],[-3,-4],[-6,0],[0,-4],[8,0],[0,-4],[-60,-5],[-11,-3],[-7,-9],[94,10],[13,7],[24,25],[9,3],[8,1],[2,-1],[2,-2],[0,-7],[2,-3],[6,-3],[19,-1],[-2,5],[-2,3],[-3,3],[-3,1],[7,8],[79,2],[78,2],[0,-4],[-35,-1],[-9,-7],[2,-4],[-3,-3],[-1,-2],[-3,-7],[26,4],[6,8],[-2,1],[-4,3],[44,0],[-1,-2],[-1,-6],[73,-2],[73,-2],[3,-2],[63,-21],[57,-40],[9,-13],[5,-18]],[[27822,81943],[10,-11],[1,-3],[1,-6],[1,-2],[-1,-2],[-3,-4],[-3,-4],[-4,-2],[-5,-2],[-10,5],[-7,-2],[-5,3],[-2,18],[2,15],[4,12],[6,6],[11,-7],[1,-4],[1,-5],[2,-5]],[[27791,82065],[-1,-17],[10,-15],[-1,-13],[-7,-5],[-10,-1],[-10,5],[-7,21],[-7,6],[-4,7],[4,14],[8,7],[19,-1],[8,4],[-1,-3],[0,-3],[0,-2],[-1,-4]],[[27816,82398],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-9,7],[-3,5],[-3,8],[5,-1],[14,-11],[0,-4]],[[27784,83753],[-16,-7],[-8,-1],[-7,2],[-4,4],[-1,1],[1,4],[1,16],[0,4],[11,19],[2,7],[-2,8],[0,4],[8,9],[8,4],[31,2],[5,3],[3,6],[-1,6],[-4,8],[-1,5],[2,2],[2,3],[2,0],[8,-4],[16,-7],[8,-1],[5,2],[8,6],[3,1],[4,2],[6,12],[6,7],[4,11],[5,12],[1,11],[2,12],[3,10],[4,7],[5,5],[0,-5],[-1,-4],[-1,-4],[-2,-3],[-3,-20],[-6,-24],[-14,-38],[-10,-20],[-11,-13],[-72,-64]],[[27890,84090],[4,4],[2,0],[0,4],[-3,3],[-1,4],[0,4],[2,6],[2,3],[1,-1],[1,-3],[2,-3],[0,-2],[2,-9],[0,-2],[2,0],[2,1],[3,-1],[2,1],[2,-1],[2,-8],[0,3],[1,-1],[1,-2],[4,-18],[1,-10],[-3,-4],[3,-7],[0,-6],[-2,-18],[-2,-2],[-6,4],[-4,-7],[-5,-13],[-5,-8],[-4,8],[-1,9],[2,5],[2,4],[2,7],[2,15],[0,2],[2,14],[-3,11],[-10,14]],[[27804,84163],[2,6],[6,11],[5,7],[2,3],[2,-1],[5,-6],[2,8],[3,6],[3,0],[3,-6],[6,-9],[2,-6],[1,-7],[1,-7],[5,-23],[2,-19],[-2,-11],[-5,-6],[-9,-1],[-2,3],[0,7],[1,11],[-1,6],[-2,17],[-1,7],[-3,12],[-19,-7],[-7,5]],[[27835,84480],[-4,3],[-6,11],[-5,12],[-1,8],[3,2],[4,-3],[4,0],[2,16],[3,4],[2,2],[2,3],[-2,6],[-3,-1],[-6,-7],[-3,3],[1,6],[3,10],[2,8],[5,10],[5,9],[5,4],[1,2],[2,4],[2,2],[2,-3],[2,-5],[2,-11],[3,-10],[2,-12],[0,-14],[-2,-10],[-5,-6],[-11,11],[-5,-5],[-2,-11],[0,-29],[-2,-9]],[[27647,85701],[-2,-5],[0,-2],[1,-2],[2,-3],[0,-3],[-1,-3],[-1,-1],[-1,-1],[-3,-9],[-7,-19],[-2,-11],[-2,-9],[-4,-3],[-3,6],[4,16],[-2,0],[6,16],[1,5],[-2,0],[-3,1],[-4,3],[17,20],[6,4]],[[27715,85843],[4,-5],[12,-4],[5,-3],[-2,-5],[-1,-3],[0,-3],[1,-5],[-1,0],[-1,-1],[-2,-3],[-10,-5],[-4,-3],[-4,-6],[-1,-3],[-3,-9],[-2,-4],[-2,-1],[-6,-2],[-6,-3],[-3,-1],[-2,0],[-5,3],[0,2],[2,3],[1,7],[2,5],[5,4],[3,5],[-1,8],[4,3],[3,0],[4,-2],[4,-1],[0,4],[-1,1],[-1,4],[-1,3],[2,3],[3,5],[1,6],[1,6],[1,-3],[1,1],[0,2]],[[27747,85863],[3,7],[5,8],[2,7],[-6,7],[-1,-7],[-2,-3],[-3,-3],[-2,-5],[-2,-2],[-2,-1],[-2,-1],[-1,-5],[0,-5],[0,-4],[-1,-3],[-3,-2],[-4,3],[0,5],[14,41],[5,10],[3,4],[9,5],[7,11],[3,3],[2,0],[3,3],[2,1],[1,-2],[3,-8],[2,-2],[3,2],[3,4],[4,2],[5,-5],[3,-4],[3,-3],[3,-1],[4,0],[-3,-9],[-3,-7],[-9,-12],[-6,-6],[-3,-1],[-3,-1],[-3,-2],[-8,-14],[-13,-8],[-8,-1],[-4,4]],[[31775,76221],[-2,15],[3,3],[13,-2],[-3,-9],[-1,-11],[-4,-8],[-3,-11],[-3,-10],[-6,-3],[3,8],[-2,6],[-2,4],[-3,4],[-3,2],[3,5],[3,3],[7,4]],[[33390,76506],[15,19],[9,11],[-14,-29],[-14,-15],[-14,-10],[-13,-5],[-16,-1],[-15,0],[-16,8],[-11,9],[-4,11],[3,-1],[4,-3],[4,-3],[4,-4],[22,-3],[35,3],[8,4],[6,3],[7,6]],[[31602,76756],[5,6],[3,-3],[0,-6],[-4,-8],[-6,-18],[-16,-32],[-5,-19],[-4,4],[12,39],[8,18],[4,14],[3,5]],[[31427,76958],[3,16],[7,20],[10,6],[6,-2],[3,-10],[4,2],[3,-8],[-1,-5],[-5,2],[-2,-5],[2,-8],[4,-18],[3,-16],[2,-12],[4,-7],[4,-5],[1,-8],[0,-6],[-6,-3],[-5,5],[-1,11],[-3,7],[-3,2],[-4,-2],[-4,5],[-4,-1],[-4,-5],[-8,-1],[-5,-7],[-2,-5],[-3,-14],[-4,-2],[-4,2],[1,14],[3,15],[2,20],[5,13],[1,10]],[[29445,77309],[3,3],[1,1],[17,4],[0,-4],[-1,-3],[-1,-3],[-2,-2],[-1,-2],[-2,-5],[-6,-7],[-4,-8],[-3,-3],[-3,-2],[-7,-2],[-5,-4],[-9,-3],[-17,-1],[-2,1],[-1,2],[-2,2],[-2,6],[0,6],[1,5],[2,4],[4,4],[3,3],[3,1],[21,-2],[3,1],[9,6],[1,2]],[[29475,77354],[4,-1],[3,-3],[2,0],[0,-2],[0,-3],[-4,0],[-2,-1],[-6,-6],[-2,-1],[-2,-1],[-5,1],[-5,1],[0,1],[-1,1],[-2,4],[-4,7],[-2,4],[-1,5],[1,4],[1,1],[1,0],[16,-3],[3,-2],[1,-1],[3,-4],[1,-1]],[[29463,77409],[-1,0],[-1,1],[-1,2],[-1,2],[0,3],[1,3],[1,2],[2,1],[10,7],[1,0],[2,-1],[0,-6],[-4,-7],[-5,-5],[-4,-2]],[[33079,77455],[2,6],[2,1],[3,-3],[3,-4],[-2,-5],[-2,-3],[-3,-1],[-3,1],[-11,-13],[-2,-8],[4,-12],[-6,-6],[-5,-10],[-5,-6],[-5,6],[3,4],[2,5],[1,5],[-3,2],[-8,1],[-3,1],[-4,2],[-3,4],[-4,7],[-4,2],[0,3],[0,3],[-2,7],[2,2],[4,1],[4,6],[6,5],[7,3],[6,2],[14,1],[7,-3],[5,-6]],[[29484,77445],[-2,3],[-1,3],[1,5],[4,9],[6,10],[6,7],[13,24],[5,7],[7,7],[11,8],[3,1],[2,0],[4,-2],[2,0],[14,7],[3,1],[3,-2],[0,-4],[-2,-3],[-6,-5],[-5,-6],[-7,-11],[-1,-4],[-1,-2],[-1,-5],[-10,-26],[-6,-10],[-4,-5],[-3,-3],[-5,-3],[-9,-3],[-17,0],[-4,2]],[[29583,77540],[6,2],[2,0],[1,-5],[-2,-9],[-1,-7],[-6,-30],[0,-11],[-1,-5],[-1,-3],[-5,-11],[-2,-5],[-1,-6],[-1,-6],[-1,-7],[0,-6],[1,-20],[0,-3],[0,-3],[-1,-2],[-2,-1],[-5,-5],[-1,-1],[-1,-2],[-3,-7],[-1,-2],[-2,-3],[-3,-1],[-3,0],[-27,13],[-22,2],[-1,0],[-4,-2],[-10,-9],[-21,-11],[-5,1],[-3,-1],[-1,1],[-3,3],[-1,1],[0,1],[0,2],[-1,1],[4,2],[18,21],[6,5],[1,2],[4,12],[2,3],[2,1],[5,0],[6,2],[2,0],[3,-1],[1,0],[4,2],[14,10],[6,6],[7,12],[6,14],[1,6],[5,13],[2,4],[3,5],[19,23],[4,9],[2,2],[3,2],[2,2]],[[30321,78323],[4,-1],[4,-4],[1,-6],[-1,-9],[-4,-7],[-9,-24],[-4,-6],[-4,-3],[-17,-21],[-22,-19],[-11,-3],[-12,1],[-3,10],[11,17],[25,26],[20,32],[10,13],[12,4]],[[33311,77589],[-4,-1],[-23,-15],[-6,-6],[-3,-9],[-2,-13],[-5,-7],[-7,-4],[-7,-2],[-11,-8],[-20,-24],[-13,-4],[-6,0],[-2,2],[-1,6],[-7,-10],[-3,-4],[-33,-18],[-9,-11],[-3,-2],[-9,0],[-2,-1],[-2,-2],[-2,-2],[-2,1],[-2,4],[0,5],[-1,5],[-2,2],[-21,4],[-5,2],[-1,6],[0,8],[-2,7],[-4,4],[-4,-5],[-3,-8],[-3,-6],[-2,4],[-3,3],[-3,1],[-3,0],[0,-9],[-6,-3],[-15,4],[4,-4],[-2,-7],[-3,-2],[-6,1],[-3,-1],[-8,-11],[-12,-8],[-7,-2],[-5,1],[5,4],[1,4],[-1,4],[-3,5],[-4,2],[-4,-1],[-3,2],[-1,9],[-2,-4],[-1,-7],[-1,-4],[-2,1],[-3,1],[-3,-3],[-4,-5],[-3,-3],[2,-11],[-4,0],[-10,6],[-4,5],[-8,26],[-15,27],[-7,15],[-3,17],[-3,39],[-3,21],[-5,9],[-1,5],[2,32],[-3,10],[-4,8],[-2,8],[2,10],[-2,6],[0,12],[0,7],[-2,2],[-2,4],[-3,5],[-1,6],[3,12],[7,7],[7,6],[4,6],[2,11],[1,17],[2,15],[4,6],[3,4],[13,19],[27,28],[2,2],[1,6],[18,45],[6,21],[4,11],[23,40],[2,8],[2,8],[1,19],[3,9],[7,13],[3,11],[-2,8],[-4,6],[-2,6],[1,6],[3,8],[4,7],[4,3],[-4,-18],[0,-6],[2,-5],[1,4],[2,8],[1,7],[1,5],[9,11],[2,6],[5,21],[13,42],[9,18],[10,13],[12,8],[5,5],[19,36],[14,46],[3,13],[2,4],[3,4],[5,10],[3,0],[6,-5],[11,-2],[3,-2],[2,-4],[2,-3],[2,-4],[4,-1],[7,3],[11,11],[7,2],[4,-5],[-5,-13],[-10,-18],[-8,-22],[-7,-13],[-2,-6],[6,1],[6,-3],[3,-5],[-3,-5],[0,-4],[6,-3],[11,0],[9,1],[6,6],[2,-2],[2,-3],[2,-3],[2,-4],[1,-13],[-1,-18],[-4,-34],[-5,-22],[-1,-8],[-2,-5],[-13,-10],[2,-5],[3,-3],[3,-1],[4,1],[0,-4],[-2,-1],[-4,-2],[-2,-1],[3,-8],[4,-3],[3,-5],[-1,-8],[-1,-4],[-6,-9],[-12,-33],[-11,-60],[-3,-9],[-10,-23],[-2,-8],[-4,-19],[-14,-35],[-7,-31],[1,-6],[1,-3],[13,39],[3,6],[4,3],[14,25],[9,7],[2,1],[5,-2],[1,-4],[-1,-5],[-1,-7],[-2,-11],[-4,-8],[-9,-11],[-38,-74],[-6,-6],[-12,-9],[-4,-7],[-3,-1],[-4,11],[-3,-1],[-6,-12],[-2,-3],[-5,-4],[-12,-7],[-16,-5],[-1,5],[1,4],[3,2],[3,1],[-6,3],[-10,-16],[-18,-35],[-5,-6],[-6,-4],[-24,-10],[-5,-5],[-2,-12],[26,4],[6,3],[5,7],[3,10],[4,9],[18,15],[5,14],[6,2],[13,1],[12,12],[7,4],[4,-6],[-2,-11],[-5,-9],[-6,-9],[-5,-9],[-1,-10],[-1,-13],[-2,-10],[-6,-4],[-3,-1],[-3,-2],[-3,-3],[-2,-4],[-3,-3],[-4,1],[-6,4],[-11,-1],[-6,-3],[-2,-6],[-3,-1],[-15,0],[-5,-1],[6,-4],[2,0],[-4,-6],[-4,-3],[-4,-3],[-3,-9],[4,0],[6,2],[6,4],[3,5],[3,2],[6,0],[4,1],[-2,7],[6,-2],[15,-19],[-3,-4],[-3,2],[-4,4],[-4,2],[-1,-2],[7,-13],[2,-5],[-5,0],[-2,1],[-2,3],[-4,-8],[-3,0],[-3,2],[-2,0],[-4,-6],[-21,-20],[-6,-9],[-3,-12],[1,2],[5,2],[0,-4],[0,-5],[0,-5],[-1,-2],[-3,-1],[-2,-3],[-2,-3],[-2,-2],[2,-3],[2,-3],[14,-5],[9,5],[29,31],[9,3],[11,-2],[11,-7],[8,-12],[2,-10],[-2,-8],[-5,-7],[-6,-14],[-1,-2],[0,-2],[3,-3],[3,-1],[1,2],[-1,3],[-1,3],[6,5],[-2,3],[9,0],[2,3],[3,12],[2,0],[4,-5],[4,0],[0,4],[-3,7],[3,6],[-1,6],[-2,7],[-2,5],[1,10],[2,8],[3,6],[3,5],[5,4],[8,6],[4,6],[3,6],[3,8],[3,7],[4,3],[3,3],[8,14],[8,7],[5,14],[12,7],[9,10],[8,13],[5,13],[-6,-3],[-12,-9],[-9,-12],[-19,-8],[-16,-14],[-6,-4],[-6,-8],[-9,-5],[-3,0],[-4,3],[-2,5],[-3,11],[-2,4],[-4,1],[-3,-1],[-4,0],[-1,6],[3,8],[18,19],[9,13],[5,4],[7,2],[5,4],[16,25],[16,14],[5,7],[16,28],[4,4],[3,5],[9,19],[5,5],[6,0],[6,2],[3,6],[1,12],[-5,-5],[-6,-3],[-12,-1],[-5,-3],[-13,-25],[-45,-59],[-6,-5],[-3,-1],[-3,3],[-1,6],[1,5],[3,3],[5,3],[6,9],[8,20],[19,30],[3,11],[5,9],[35,46],[18,10],[1,-7],[6,-22],[15,-22],[-2,-11],[-22,-40],[4,2],[2,4],[2,4],[2,2],[3,0],[3,-2],[3,-6],[3,-10],[2,-2],[3,8],[1,6],[-1,5],[-1,5],[-1,6],[2,11],[6,11],[6,9],[4,4],[8,-1],[7,-3],[7,-5],[6,-8],[-15,-8],[27,-2],[14,-6],[-1,-20],[3,-3],[9,9],[6,2],[20,-4],[-8,-8],[-7,-12],[-5,-15],[-1,-18],[4,8],[5,6],[6,5],[6,2],[0,-5],[-17,-20],[-7,-14],[-4,-5],[-12,-3],[-1,-5],[2,-7],[3,-8],[5,-5],[6,2],[11,5],[6,0],[2,-2],[2,-3],[-2,1],[0,-4],[0,-8],[2,-5],[5,-6],[1,-2],[0,-7],[-1,-6],[-2,-3],[-3,2],[-11,1],[-21,-18],[-8,3],[-2,-2],[-2,-3],[-1,-3],[-1,-4],[1,-2],[1,-4],[2,-2],[-42,-4],[-8,-13],[0,-5],[0,-1],[2,1],[4,-3],[6,-6],[3,-1],[4,-1],[3,-3],[1,-5],[-1,-6],[-1,-2]],[[32776,77986],[8,-5],[0,-4],[-5,-5],[-10,-15],[-38,-33],[-13,-7],[-4,-1],[-3,3],[-3,6],[-9,13],[3,-17],[-1,-5],[-4,-2],[-5,2],[-9,8],[-5,1],[0,-4],[3,-5],[0,-12],[4,-7],[-10,-4],[-4,0],[-5,4],[9,-17],[1,-8],[-7,-3],[-22,9],[-8,-5],[14,-8],[7,-8],[0,-13],[-4,-4],[-8,-1],[-13,1],[-12,10],[-6,3],[-2,-7],[12,-7],[8,-8],[4,-11],[-7,2],[-14,12],[-7,2],[1,-4],[2,-3],[2,-1],[3,0],[0,-4],[-3,0],[-3,0],[-4,-4],[5,-3],[12,-2],[4,-3],[-2,-6],[-1,-8],[0,-7],[0,-4],[14,-1],[4,-3],[-1,9],[-3,3],[-7,5],[8,2],[7,-10],[3,-17],[-1,-16],[-1,0],[-4,-10],[-2,-2],[-2,0],[-5,0],[-6,-2],[-8,-7],[-4,-3],[0,-4],[4,-1],[13,-8],[4,1],[7,3],[4,0],[-8,-20],[-17,-11],[-39,-4],[-8,3],[-4,0],[-2,-2],[-3,-8],[-1,-2],[-2,1],[-4,6],[-1,1],[-15,5],[-5,4],[-13,16],[4,3],[2,0],[0,4],[-5,2],[-4,3],[-4,4],[-3,6],[-1,6],[4,1],[9,-1],[-6,11],[-24,-6],[-10,3],[6,3],[6,1],[4,2],[6,9],[10,6],[8,16],[6,4],[-4,12],[-4,1],[-6,-6],[-4,-9],[-5,-3],[-2,10],[1,13],[7,6],[-2,6],[-4,4],[-8,7],[-3,-5],[1,-3],[0,-2],[1,-1],[1,-2],[-6,-2],[-7,4],[-8,6],[-15,8],[-3,3],[2,5],[5,9],[1,1],[3,2],[1,1],[2,3],[0,3],[0,4],[1,2],[1,1],[3,-1],[1,0],[1,3],[0,3],[0,4],[1,2],[16,11],[5,9],[-5,0],[-9,-7],[-8,-4],[-8,-11],[-3,-2],[-4,-4],[-7,-17],[-4,-3],[-1,1],[-6,11],[-10,8],[6,-20],[0,-7],[-7,-2],[-2,-2],[-5,-8],[-2,-1],[-11,0],[0,-5],[16,-3],[7,2],[4,13],[8,-6],[1,-5],[-1,-9],[-9,-7],[-8,-4],[-7,-11],[-7,-2],[-7,3],[-15,11],[-10,3],[-7,6],[-4,1],[-2,1],[-1,6],[-1,1],[-6,0],[-2,0],[-3,5],[-4,9],[-3,2],[-2,-1],[-6,-5],[-4,-2],[-3,2],[-3,3],[-3,3],[-2,-2],[-3,-2],[-5,0],[-7,4],[-13,11],[-5,8],[-2,12],[-3,8],[-7,8],[-13,10],[-5,7],[-1,7],[1,3],[5,-4],[-6,19],[18,-10],[7,-2],[-14,17],[4,3],[2,1],[2,0],[0,4],[-8,2],[-21,-1],[-8,7],[-3,-1],[-2,-2],[0,-1],[-2,2],[-3,4],[-1,2],[-5,3],[-2,1],[-6,-8],[-9,-6],[-26,6],[-8,-1],[-4,1],[-2,4],[-1,8],[1,8],[2,4],[3,-4],[1,18],[-1,23],[2,19],[10,5],[-1,6],[-1,2],[5,2],[-1,5],[-2,7],[-2,5],[0,12],[0,6],[2,8],[-16,-26],[-4,0],[-3,3],[-3,4],[-4,2],[-3,1],[-2,1],[-6,8],[-3,3],[-26,0],[-11,-5],[-6,0],[-5,9],[-4,24],[4,24],[9,21],[10,16],[12,14],[5,9],[2,12],[2,13],[3,11],[5,10],[19,32],[30,38],[16,28],[2,-8],[1,-4],[1,-5],[-4,-17],[0,-23],[2,-23],[4,-16],[0,-7],[-14,-27],[-1,-4],[-2,-9],[-1,-3],[-1,0],[-2,0],[-2,-1],[-1,-8],[-1,1],[-3,2],[-1,1],[0,-6],[-1,-5],[-1,-5],[-2,-4],[6,-13],[4,-5],[6,-2],[6,2],[4,3],[4,0],[4,-5],[-1,-4],[-2,-13],[6,-5],[6,-8],[5,-9],[5,-10],[4,-7],[2,-5],[0,-8],[-1,-7],[-3,-1],[-3,3],[-3,5],[1,-7],[2,-5],[2,-3],[4,-1],[4,1],[1,3],[0,4],[2,4],[-1,1],[0,3],[2,2],[3,-4],[2,-4],[1,-4],[-1,-3],[-3,-3],[1,-3],[1,-2],[1,-2],[1,-1],[0,-5],[-3,-1],[-2,-3],[-8,-30],[-4,-3],[-7,-4],[-6,-6],[2,-13],[4,8],[5,4],[12,4],[4,6],[3,2],[2,0],[2,-4],[2,-7],[0,-7],[-3,-2],[-3,-2],[0,-4],[1,-4],[2,-5],[3,-2],[23,-8],[6,1],[3,7],[-4,12],[-6,11],[0,9],[9,5],[0,4],[-6,3],[-2,1],[5,15],[10,6],[10,-1],[29,-13],[4,-5],[1,-1],[1,-1],[3,0],[2,-1],[1,-2],[-1,-3],[0,-2],[0,-4],[-1,-4],[0,-4],[1,-4],[4,0],[7,-15],[3,0],[4,10],[1,8],[-3,5],[-7,0],[7,4],[11,0],[10,-3],[8,-5],[4,-6],[2,-6],[0,-8],[2,-8],[1,0],[6,-7],[4,-8],[2,-2],[2,4],[2,-10],[2,-3],[2,1],[4,4],[0,1],[1,2],[1,3],[1,2],[3,1],[31,-6],[36,2],[28,8],[3,-4],[2,-7],[3,-3],[3,9],[-2,5],[15,6],[50,-11],[0,5],[-26,6],[-7,5],[8,5],[18,1],[7,7],[5,-5],[7,1],[7,2],[44,2],[26,-3],[22,8],[24,-2],[26,-12]],[[32869,78627],[-6,-7],[-2,-4],[-12,-26],[-7,-7],[-6,-4],[-13,-19],[-6,-5],[10,-5],[10,11],[32,61],[9,12],[13,2],[-9,-7],[-9,-11],[-15,-27],[-15,-44],[-4,-3],[-12,3],[-4,-6],[-3,-11],[-3,-11],[-1,-5],[-11,-1],[-4,-3],[-4,-6],[-3,-7],[-4,-18],[-3,-8],[2,-5],[5,-7],[6,-1],[3,11],[3,-8],[4,-6],[4,-3],[12,-5],[4,1],[3,5],[4,8],[-2,-15],[-6,-7],[-9,-2],[-7,0],[-1,7],[-5,-2],[-12,-9],[-14,-1],[-6,5],[-2,12],[7,17],[6,20],[3,6],[2,11],[1,27],[2,12],[4,6],[7,6],[7,3],[5,2],[5,3],[39,57],[2,3],[36,53],[7,6],[9,3],[33,1],[1,-4],[-2,-7],[-3,-5],[-9,-5],[-4,-5],[-2,-9],[-4,-9],[-9,-8],[-9,-2],[-5,5],[7,5],[7,8],[6,11],[3,12],[-8,1],[-8,-1],[-8,-4],[-7,-8],[-11,-20],[-7,-9],[-7,-4]],[[32082,78831],[-2,7],[2,9],[7,16],[0,-4],[0,-3],[-4,-13],[-2,-11],[-1,-11],[0,-9],[-1,-8],[-3,-9],[-6,-13],[-15,-25],[-15,-20],[-2,9],[-3,4],[-4,1],[-5,2],[12,14],[2,5],[-2,7],[-3,0],[-4,-3],[-3,-2],[1,5],[1,4],[2,4],[2,3],[-5,-1],[-3,1],[-1,4],[1,8],[2,5],[3,7],[3,6],[3,2],[17,6],[8,-1],[-3,-12],[6,4],[5,0],[5,2],[5,10]],[[32070,78879],[6,29],[4,8],[7,-8],[2,-13],[2,-10],[0,-11],[-4,-13],[-6,-7],[-17,-13],[-6,-2],[-1,6],[5,15],[8,19]],[[32133,79957],[-4,14],[-9,6],[-6,-4],[4,-14],[-7,2],[-7,6],[-6,9],[-3,9],[-4,8],[-7,4],[-4,5],[6,14],[11,11],[27,10],[16,3],[7,-1],[3,1],[4,3],[2,5],[2,3],[5,1],[22,-1],[29,-17],[8,-2],[2,-1],[13,-12],[69,-17],[26,-10],[25,-3],[39,-10],[46,-23],[23,-4],[22,-17],[23,-8],[7,-7],[9,-16],[3,-3],[13,1],[20,-18],[5,-2],[7,-1],[7,-2],[5,-4],[20,-19],[8,-5],[15,-5],[6,-7],[10,-18],[2,-1],[4,-1],[2,-2],[1,-3],[0,-7],[1,-2],[12,-23],[3,-3],[3,-1],[6,2],[4,-1],[8,-11],[3,-2],[7,-1],[3,-1],[3,-4],[8,-17],[1,-1],[2,-4],[3,-5],[3,-1],[4,-1],[12,-8],[32,-5],[4,-2],[9,-11],[6,-8],[3,-2],[10,3],[6,0],[5,-10],[13,-17],[-2,-8],[2,-5],[8,-8],[1,-3],[1,-9],[1,-4],[2,-2],[6,-6],[3,-7],[8,-22],[7,-11],[7,-8],[-3,-6],[-6,-7],[-3,-4],[-1,-7],[0,-5],[0,-3],[-6,-1],[-5,1],[-3,0],[-15,-17],[-4,1],[-11,7],[-5,1],[-47,-6],[-22,5],[-32,-9],[-8,3],[-8,4],[-5,8],[-6,6],[-20,6],[-25,15],[-49,6],[-56,29],[-58,21],[-20,18],[-13,6],[-18,25],[-16,5],[-8,10],[-6,4],[-5,4],[-17,3],[-34,18],[3,9],[-3,8],[-5,9],[-3,9],[0,11],[-1,10],[-2,8],[-4,9],[-10,17],[-25,36],[-44,43],[-37,23],[-34,16],[-34,23],[-5,7]],[[32254,80198],[-8,4],[-4,10],[1,10],[6,9],[1,-3],[1,-1],[2,-1],[8,-17],[1,-7],[-8,-4]],[[27946,81314],[7,9],[5,4],[6,0],[8,-4],[4,-1],[4,-3],[5,-9],[-12,-12],[-4,-6],[-3,-7],[-1,-8],[-1,-7],[1,-16],[-1,-6],[-2,-5],[-5,-6],[-5,-5],[-6,-3],[-6,-1],[-28,5],[-19,-8],[-2,-1],[-4,-6],[-1,-1],[-3,1],[0,2],[0,4],[0,5],[-10,28],[5,17],[1,4],[4,2],[3,-2],[3,-3],[4,-1],[7,2],[7,6],[6,9],[5,9],[3,3],[8,-1],[3,2],[14,10]],[[27567,81809],[9,-33],[2,-9],[11,-40],[3,-23],[-10,-12],[1,-13],[-5,-3],[-7,3],[-11,14],[-68,18],[-34,29],[-38,25],[-51,10],[-50,25],[-39,23],[-45,19],[-17,21],[-13,8],[2,10],[11,18],[2,3],[6,18],[11,22],[18,22],[6,3],[22,-3],[6,1],[26,15],[14,4],[33,-1],[20,10],[69,-10],[15,-6],[32,-46],[6,-6],[2,-3],[3,-5],[5,-19],[4,-5],[15,-17],[28,-49],[3,-9],[3,-9]],[[27845,82166],[-3,6],[0,2],[0,2],[1,5],[17,-18],[-1,-3],[-2,-1],[-3,-1],[-2,3],[-5,3],[-2,2]],[[27976,82990],[74,16],[-2,-5],[-3,-3],[-32,-14],[-25,-3],[-7,-3],[-7,-8],[-6,2],[-24,-18],[-56,-14],[-43,-29],[-6,2],[4,7],[8,6],[8,3],[7,1],[0,4],[-14,0],[10,13],[12,8],[51,21],[28,2],[6,2],[11,8],[6,2]],[[28524,83408],[19,15],[9,6],[1,-9],[-4,-1],[-4,-3],[-23,-30],[-9,-9],[-7,-4],[-41,-56],[-17,-17],[-17,-5],[8,6],[47,57],[10,16],[9,6],[4,4],[6,14],[4,7],[5,3]],[[28054,83644],[9,6],[5,2],[5,-4],[-9,-11],[-8,-14],[-7,-17],[-3,-23],[-4,-21],[-8,-26],[-10,-21],[-8,-1],[5,7],[5,13],[4,15],[9,43],[7,31],[1,6],[1,19],[2,15],[2,6],[3,3],[4,0],[6,11],[4,-3],[-1,-6],[0,-6],[0,-5],[1,-3],[0,-4],[-4,-1],[-4,-2],[-7,-9]],[[28123,83733],[-6,3],[-5,-7],[-5,-9],[-5,-7],[-15,-7],[-14,-2],[1,8],[2,17],[2,6],[22,46],[3,12],[-5,5],[3,7],[4,7],[2,5],[-4,5],[2,4],[2,12],[-5,0],[2,8],[7,12],[3,13],[3,8],[6,12],[6,6],[10,3],[8,-4],[2,-13],[0,-40],[1,-20],[3,-17],[-3,-6],[0,-8],[1,-9],[0,-9],[-2,-9],[-3,-7],[-2,-8],[1,-9],[-3,-3],[-3,-1],[-4,1],[-3,3],[-5,-9],[-3,-3],[-3,0],[2,4]],[[27904,83660],[4,10],[15,25],[1,10],[-6,7],[-8,2],[-6,-1],[-11,-14],[-38,-78],[-30,-47],[-8,-16],[-1,-6],[-2,-11],[-3,-4],[-4,-1],[-4,-6],[-1,11],[-3,8],[-3,6],[-1,4],[-3,9],[-6,5],[-16,2],[7,23],[4,9],[11,8],[59,114],[51,62],[7,17],[6,23],[10,57],[2,30],[-5,26],[2,1],[0,1],[1,1],[1,1],[0,3],[-1,7],[-1,3],[5,4],[2,-3],[5,-26],[1,-4],[3,-4],[-2,-10],[-2,-10],[0,-19],[-2,-10],[-6,-20],[-2,-6],[0,-4],[-2,-4],[-2,-6],[-1,-6],[1,-15],[0,-6],[-1,-9],[-6,-24],[-3,-7],[-16,-31],[-6,-7],[-2,-5],[-1,-8],[0,-8],[0,-3],[2,0],[3,3],[2,3],[3,12],[3,5],[4,6],[4,4],[9,6],[13,5],[6,4],[6,7],[0,7],[13,68],[10,28],[5,23],[2,27],[3,63],[1,12],[0,32],[8,12],[15,2],[10,-15],[9,-15],[0,-11],[-5,-6],[-7,10],[-3,12],[-10,4],[-7,-10],[-2,-22],[3,-19],[3,-7],[12,1],[9,-5],[6,2],[2,-2],[4,-32],[6,-19],[10,-13],[13,-5],[15,4],[6,-3],[4,-13],[0,-6],[-2,-12],[0,-7],[1,-3],[3,-5],[2,-4],[-7,0],[-1,0],[-3,-8],[-1,-5],[1,-3],[18,5],[-3,-9],[-4,-5],[-5,-3],[-5,-4],[-4,-8],[-4,-18],[-2,-8],[-23,-56],[-10,-52],[-27,-87],[-2,-27],[-4,3],[0,5],[1,7],[3,5],[-2,0],[2,8],[5,25],[9,28],[2,16],[7,19],[2,19],[34,104],[5,25],[1,23],[-8,6],[4,10],[2,8],[-1,5],[-7,-3],[0,-1],[-1,-3],[0,-2],[-1,-2],[-4,-3],[-2,-1],[-3,-1],[-1,-3],[-2,-7],[-13,-68],[0,-7],[1,-3],[4,0],[3,2],[2,2],[2,3],[2,0],[-3,-7],[-1,-3],[-2,-2],[3,-3],[1,-1],[-4,-12],[-11,-24],[-2,-15],[-1,-3],[-6,-14],[-1,-7],[-20,-73],[-18,-51],[1,13],[24,73],[19,89],[0,11],[-1,15],[-3,13],[-4,6],[-5,-5],[-4,-9],[-17,-40],[-29,-99],[-3,-5],[-5,-5],[-24,-49],[-11,-8],[-13,2],[-14,11],[-5,7],[-3,2],[-3,-4],[-26,-50],[-5,-4],[0,-3],[-2,-3],[-3,-2],[-3,0],[5,16],[38,73],[24,61]],[[27804,84147],[9,0],[4,-1],[9,-10],[2,-10],[-1,-11],[-4,-11],[-2,-2],[-4,-1],[-1,-3],[-1,-2],[0,-7],[-1,-3],[-3,-7],[-2,-2],[-7,1],[-8,6],[-3,15],[0,17],[2,15],[2,3],[6,11],[3,2]],[[28355,85015],[29,-14],[33,-32],[8,-2],[0,-4],[-8,-2],[-11,5],[-59,46],[0,3],[7,1],[3,-1],[-2,0]],[[28155,85190],[5,-7],[39,-38],[7,-3],[0,-5],[-48,34],[-15,15],[2,4],[1,2],[2,2],[3,0],[0,4],[-5,4],[-4,7],[-2,10],[0,12],[2,-5],[2,-3],[2,-3],[3,-2],[3,-7],[9,-11],[3,-6],[-2,-3],[-2,0],[-3,0],[-2,3],[0,-4]],[[15753,79377],[6,-7],[4,-6],[1,-8],[0,-6],[2,-3],[6,0],[5,-2],[4,-1],[1,-8],[-1,-4],[-3,-2],[-7,1],[-5,1],[-4,2],[-7,7],[-3,3],[-4,5],[-1,4],[0,10],[0,5],[-3,5],[0,4],[2,3],[4,-1],[3,-2]],[[15808,79351],[-3,-4],[-5,2],[-5,0],[-6,-1],[-3,3],[-4,4],[-5,6],[0,5],[0,5],[0,4],[-2,4],[-2,3],[-2,1],[0,6],[6,-2],[6,-8],[11,-8],[14,-2],[10,-2],[3,-4],[0,-2],[-3,-1],[-4,-3],[-2,-1],[-4,-5]],[[32626,77609],[3,1],[5,-1],[3,1],[-2,-3],[0,-5],[-4,-3],[-6,-4],[-2,-2],[-3,1],[-3,2],[-5,-1],[-2,1],[0,3],[2,3],[6,5],[3,0],[3,0],[2,2]],[[33414,77708],[-2,2],[-3,2],[-9,0],[-6,2],[1,5],[15,10],[8,3],[1,-3],[-3,-4],[-1,-7],[0,-7],[-1,-3]],[[34779,78469],[5,-3],[-4,-9],[-2,-10],[-4,-6],[-4,7],[-1,14],[10,7]],[[34945,78537],[5,14],[6,-2],[3,-8],[-2,-19],[-7,-5],[-9,0],[-3,5],[1,8],[4,2],[2,5]],[[30453,78557],[8,0],[4,0],[-1,-5],[-13,-21],[-5,-6],[-5,-2],[-5,1],[-2,3],[0,6],[1,5],[2,6],[4,5],[6,5],[6,3]],[[35290,78692],[10,-2],[1,-11],[-9,-9],[-8,-13],[-8,-2],[-7,4],[3,11],[18,22]],[[30871,79137],[2,4],[4,1],[1,-1],[-1,-2],[0,-3],[-1,-6],[-5,-4],[-4,0],[-4,0],[0,2],[1,3],[2,4],[5,2]],[[15038,79629],[9,0],[9,-6],[3,-11],[-2,-17],[-2,-22],[-11,-6],[-11,8],[0,9],[-2,7],[-8,2],[-2,12],[2,9],[4,8],[11,7]],[[34485,80202],[1,5],[2,1],[3,-2],[2,-5],[-3,-5],[-3,-3],[-6,2],[-5,2],[1,4],[8,1]],[[34510,80218],[3,0],[6,-1],[5,-6],[3,-10],[2,-6],[-4,-2],[-6,5],[-7,1],[-9,4],[-4,8],[1,6],[10,1]],[[14267,80557],[3,4],[6,0],[1,5],[3,-4],[5,-3],[0,-3],[0,-5],[-4,0],[-4,-1],[0,-5],[-4,-1],[-5,4],[-1,6],[0,3]],[[33649,80574],[3,-12],[1,-14],[-4,-6],[-5,3],[-1,6],[6,23]],[[14249,80576],[1,-3],[5,-2],[2,0],[3,-2],[-2,-4],[1,-3],[3,-3],[-2,-2],[-5,-1],[-3,-1],[-3,3],[-4,5],[1,5],[1,5],[2,3]],[[34097,80578],[5,0],[1,-2],[2,2],[3,0],[2,-3],[3,-4],[2,-3],[-3,-2],[-3,-3],[-5,-3],[0,-4],[-4,-4],[-4,0],[-2,2],[2,2],[4,2],[-2,2],[-4,-1],[-3,1],[-2,4],[1,6],[3,6],[4,2]],[[14506,80614],[9,7],[9,0],[7,-7],[5,-12],[2,-12],[2,-13],[-5,-1],[-15,5],[-7,8],[-8,2],[-10,4],[-5,6],[0,6],[16,7]],[[33760,80777],[10,-5],[-8,-16],[-11,-12],[-21,-12],[-3,-12],[-11,7],[9,16],[12,19],[23,15]],[[33803,80822],[0,-10],[-5,-9],[-10,-11],[-14,0],[0,12],[7,10],[22,8]],[[14323,81253],[1,9],[4,5],[1,-12],[-2,-18],[0,-16],[-3,-14],[-3,-3],[-3,12],[-7,-6],[-4,11],[2,16],[14,16]],[[28048,81332],[2,-1],[5,-2],[-2,-6],[-7,-3],[-15,3],[2,5],[10,4],[5,0]],[[27943,81419],[5,-3],[2,-2],[-1,-4],[-5,-3],[-21,-2],[-7,-2],[0,2],[2,5],[3,5],[10,5],[12,-1]],[[28129,81528],[4,1],[4,1],[-1,-2],[-4,-6],[-4,-4],[-5,-3],[1,-2],[7,-1],[0,-3],[-6,-4],[-3,1],[0,2],[-1,2],[-1,-1],[-2,0],[-2,1],[-1,0],[0,-1],[-2,-1],[-1,1],[1,1],[-1,0],[-1,-1],[-1,3],[1,7],[-1,3],[-1,-3],[-4,-3],[-2,2],[4,5],[5,2],[8,5],[4,0],[5,-2]],[[27893,81594],[3,-5],[2,-1],[-2,-2],[-2,-1],[-8,-3],[-8,-2],[0,3],[5,11],[1,10],[1,3],[3,0],[3,-1],[1,-3],[0,-4],[1,-5]],[[14046,81669],[6,3],[3,-5],[0,-9],[0,-10],[-5,-1],[-4,-5],[-4,4],[3,9],[3,9],[-2,5]],[[34485,81722],[6,-1],[5,0],[1,-5],[0,-11],[0,-7],[-6,-3],[-8,2],[-2,8],[-5,5],[-3,7],[2,7],[10,-2]],[[14068,81776],[7,-8],[5,-6],[-3,-11],[-2,-13],[-5,1],[-5,8],[-1,18],[4,11]],[[34497,81861],[2,5],[4,1],[3,-4],[-2,-5],[-1,-4],[5,1],[1,-5],[-4,-7],[-2,-8],[0,-9],[-4,-2],[-5,9],[-4,10],[-4,9],[0,7],[11,2]],[[34492,81904],[10,9],[6,-3],[4,-8],[1,-10],[-5,-6],[3,-9],[-4,-3],[-8,2],[-4,-5],[-8,0],[-7,2],[-1,7],[0,11],[3,8],[4,6],[6,-1]],[[34464,82149],[4,0],[3,2],[4,1],[2,-8],[10,-2],[6,-2],[3,6],[3,-2],[5,-4],[5,-1],[4,-7],[1,-6],[2,-5],[-1,-3],[-5,5],[-5,4],[-6,0],[-1,-7],[-2,-7],[4,-5],[5,-3],[3,-4],[0,-6],[-5,5],[-6,4],[-2,-4],[6,-6],[3,-4],[-4,0],[-9,8],[-9,4],[-12,3],[-5,6],[-11,2],[-5,6],[-1,10],[-1,7],[4,8],[13,5]],[[13724,82151],[2,-11],[0,-7],[-5,3],[-6,6],[-3,10],[5,5],[7,-6]],[[34124,82268],[6,6],[8,0],[6,0],[4,3],[6,4],[4,-2],[-6,-7],[-4,-9],[-4,-3],[-1,-8],[0,-6],[-2,-4],[-6,-4],[-12,2],[-4,8],[1,11],[4,9]],[[34188,82329],[9,6],[15,0],[5,-10],[-9,-8],[-9,-8],[-10,0],[-8,-7],[-10,5],[-7,17],[2,13],[10,1],[12,-9]],[[13720,82329],[-3,16],[14,8],[16,-7],[17,-17],[8,-8],[-5,-16],[-16,5],[-5,17],[-11,-5],[-15,7]],[[34075,82620],[10,-3],[-4,-4],[-4,-4],[3,-6],[3,-6],[-4,-6],[-7,5],[-8,7],[0,6],[5,4],[6,7]],[[27470,82646],[0,6],[-1,7],[1,7],[1,5],[3,-3],[1,-6],[1,-7],[-1,-6],[-2,-3],[-1,-1],[-2,1]],[[34098,82736],[5,5],[2,-7],[3,-6],[3,-13],[-7,2],[-6,9],[-7,-4],[-6,5],[2,8],[11,1]],[[13662,82737],[7,5],[7,-15],[10,-18],[0,-11],[-15,-5],[-11,5],[-1,11],[-12,-2],[2,12],[13,18]],[[34082,82790],[8,3],[1,-8],[-3,-6],[3,-7],[5,-4],[0,-7],[-4,-14],[-7,0],[-13,-1],[-6,4],[-1,9],[4,11],[1,8],[12,12]],[[13584,82821],[11,-1],[2,-12],[-5,-11],[-6,-3],[-3,8],[1,19]],[[28686,83729],[1,-4],[3,-10],[-2,-7],[-3,-4],[-12,-9],[-1,3],[2,9],[1,9],[-1,8],[0,8],[2,6],[2,2],[4,-8],[2,-2],[2,-1]],[[28375,83820],[-10,-7],[-8,-3],[-4,1],[-12,-8],[-2,0],[2,6],[2,6],[1,2],[1,1],[2,1],[3,-1],[25,7],[2,0],[0,-2],[-2,-3]],[[28476,83896],[1,-1],[1,-3],[0,-3],[-2,-2],[-1,-6],[-4,-18],[-5,-7],[-4,2],[0,6],[0,5],[2,4],[4,4],[2,4],[1,3],[0,4],[1,4],[2,3],[2,1]],[[28108,84023],[-3,2],[-3,5],[-2,0],[-3,2],[3,2],[17,0],[4,1],[4,-1],[3,-5],[-4,-6],[-8,-1],[-8,1]],[[28715,84037],[0,-1],[-1,-2],[1,-2],[1,-10],[0,-4],[-1,-3],[0,-6],[1,-10],[1,-18],[-2,-10],[-6,-11],[-2,-1],[1,7],[0,8],[-1,8],[0,10],[2,13],[3,18],[0,34],[3,-3],[2,-8],[-1,-7],[-1,-2]],[[28707,84268],[0,-2],[-2,-1],[-4,0],[-5,4],[-2,6],[-2,11],[0,5],[-3,13],[-1,6],[1,3],[-3,6],[-1,11],[0,6],[2,3],[4,3],[4,-2],[4,-13],[1,-11],[3,-4],[3,-3],[1,-7],[-2,-5],[-3,-2],[-1,-5],[1,-6],[5,-6],[0,-3],[-1,-3],[0,-2],[1,-2]],[[28259,84344],[1,-1],[2,-2],[-2,-2],[-2,0],[-2,0],[-2,-1],[-1,1],[-1,1],[-1,-1],[-1,-3],[-3,-5],[-4,-3],[-2,-1],[-3,0],[-4,0],[-7,2],[0,2],[2,5],[2,2],[2,-1],[0,2],[1,3],[1,1],[8,6],[3,1],[4,-2],[9,-4]],[[28240,84407],[-12,-10],[-10,-6],[-4,0],[-11,5],[-3,0],[0,2],[1,4],[5,4],[21,15],[10,-1],[5,-6],[-2,-7]],[[28669,84425],[0,5],[-5,12],[-2,9],[-1,6],[-1,6],[-3,5],[-2,6],[2,4],[2,-2],[2,-4],[3,-2],[2,-4],[8,-9],[4,-6],[1,-3],[1,-3],[2,-6],[0,-6],[-1,-5],[-1,-4],[0,-5],[2,-6],[1,-6],[2,-7],[-2,-6],[-4,-2],[-3,3],[-1,11],[-2,4],[-2,6],[-2,9]],[[31233,85062],[9,-38],[-1,-30],[-14,-11],[-15,7],[-7,22],[1,22],[6,22],[12,12],[9,-6]],[[28158,85280],[1,-1],[0,-3],[-1,-1],[-2,1],[-3,-1],[-1,1],[-1,3],[0,1],[-8,0],[-3,-1],[-3,1],[-1,4],[2,3],[1,1],[2,-1],[2,-1],[1,-1],[2,2],[-2,2],[-3,2],[2,2],[9,0],[4,-3],[-2,-1],[3,-2],[1,-4],[0,-3]],[[28083,85311],[1,-6],[3,-7],[0,-1],[-4,3],[-1,2],[0,2],[-1,2],[-2,1],[-4,2],[-3,3],[-1,2],[1,3],[1,3],[0,10],[3,1],[3,-7],[4,-13]],[[30834,85420],[3,-7],[3,-9],[-11,-10],[-16,-6],[-13,-3],[2,8],[8,15],[6,9],[18,3]],[[27624,85476],[4,-3],[1,-3],[-1,-4],[-3,-2],[-8,1],[-1,4],[3,4],[5,3]],[[27633,85822],[2,1],[1,-3],[0,-5],[-4,-5],[-8,-15],[-4,-2],[-2,4],[-1,3],[-3,2],[2,5],[11,8],[1,3],[5,4]],[[27670,85832],[2,0],[3,-2],[-1,-2],[-3,-3],[-1,-4],[-1,-5],[-2,-1],[-3,1],[0,-2],[0,-4],[-2,-4],[-2,-4],[-2,-5],[-4,-3],[-1,6],[3,12],[4,10],[7,7],[3,3]],[[30577,86603],[3,-8],[-11,-9],[0,-12],[-6,-7],[-2,-14],[-7,3],[1,20],[-3,17],[7,13],[8,9],[10,-2],[0,-10]],[[30122,86792],[20,2],[1,-10],[-1,-10],[-7,-2],[-12,-2],[-8,4],[0,13],[7,5]],[[29974,87125],[20,-11],[7,-4],[6,-7],[-12,-3],[-12,-2],[-13,12],[-7,11],[5,9],[6,-5]],[[24222,87156],[8,-7],[-5,-4],[-8,4],[-5,-6],[-8,3],[-3,5],[7,5],[14,0]],[[29885,87210],[8,-4],[16,-10],[-7,-9],[-12,8],[-13,8],[-6,6],[14,1]],[[24266,87223],[1,-12],[-4,-8],[-10,9],[-2,9],[-1,10],[16,-8]],[[31545,87717],[20,-14],[6,-13],[-19,-1],[-23,18],[-21,22],[2,9],[35,-21]],[[31409,87818],[33,-47],[10,-24],[-6,-12],[-11,16],[-17,17],[-22,31],[-18,22],[-10,16],[22,-3],[19,-16]],[[31070,87941],[25,-30],[2,-18],[-22,17],[-16,17],[-8,16],[19,-2]],[[31104,87957],[26,-40],[10,-26],[-18,18],[-20,31],[-17,29],[19,-12]],[[31152,87984],[2,-12],[7,-20],[-13,0],[-13,27],[-11,26],[-3,17],[14,-10],[17,-28]],[[32210,88113],[-6,-18],[-7,-28],[-16,32],[-6,38],[9,8],[26,-32]],[[32162,88278],[12,-22],[-9,-9],[-14,-17],[-2,-22],[-15,9],[-7,18],[0,30],[2,15],[33,-2]],[[28754,88479],[-11,9],[-12,5],[-1,17],[11,7],[9,-2],[1,-11],[7,-11],[-4,-14]],[[28704,88515],[-7,6],[0,7],[10,-1],[11,5],[14,-10],[-9,-9],[-3,-11],[-6,1],[-10,12]],[[31954,88555],[-6,-12],[11,-8],[17,-7],[-15,-12],[17,-9],[-18,-13],[-13,-8],[-14,30],[-7,21],[-3,16],[8,13],[23,-11]],[[31407,89151],[-9,-20],[-9,9],[-5,13],[13,16],[13,11],[6,-12],[-9,-17]],[[25265,89204],[6,5],[3,-4],[1,-4],[6,-5],[5,-3],[-3,-3],[-6,2],[-8,3],[-7,6],[-5,-3],[-4,-2],[-4,3],[0,7],[1,4],[3,-3],[3,-2],[5,1],[4,-2]],[[25436,89252],[13,-9],[3,-6],[-5,-2],[-9,-1],[-10,-1],[-7,6],[-2,5],[1,5],[10,0],[6,3]],[[31268,89403],[12,-3],[-9,-6],[-15,-11],[-14,3],[-26,-7],[-17,-7],[-5,7],[-1,9],[8,6],[14,4],[18,3],[35,2]],[[31726,89379],[-4,-11],[-10,-3],[-7,16],[1,26],[-2,19],[16,-2],[10,-8],[-4,-37]],[[31408,89526],[-9,1],[-7,13],[-19,6],[-9,-6],[-5,-9],[-6,12],[-6,10],[8,7],[19,1],[25,-7],[11,-13],[-2,-15]],[[26383,89605],[5,-5],[-2,-5],[3,-5],[-9,-4],[-9,-1],[-8,1],[-3,5],[1,9],[5,4],[17,1]],[[26779,89580],[-3,-2],[-4,2],[-1,5],[3,3],[2,4],[0,3],[1,2],[2,4],[5,4],[2,0],[-1,-3],[1,-4],[1,-7],[2,-5],[0,-3],[-3,-1],[-1,1],[-1,1],[-2,-1],[-2,-2],[-1,-1]],[[26774,89606],[-2,0],[-1,-2],[-2,-3],[-5,-3],[1,3],[1,5],[-3,4],[-2,5],[1,8],[2,6],[5,-1],[5,-5],[3,1],[1,2],[2,0],[5,-5],[0,-2],[-1,-3],[-4,-2],[0,-3],[-2,-3],[-4,-2]],[[26123,89830],[13,-1],[4,-4],[-1,-7],[-8,-1],[-10,-1],[-3,7],[-2,8],[7,-1]],[[18609,90709],[17,2],[17,6],[19,5],[15,-3],[-15,-8],[-14,-2],[-8,-11],[-12,-5],[-32,0],[-19,-3],[-9,4],[4,9],[37,6]],[[18656,90841],[25,-1],[8,-7],[-12,-7],[-8,-9],[-10,7],[-15,0],[-9,2],[3,9],[3,8],[10,1],[5,-3]],[[12163,91439],[19,-11],[22,-19],[12,-12],[4,-11],[-9,-2],[-13,2],[-9,-7],[-13,5],[-16,11],[0,9],[13,-3],[-1,11],[-12,13],[-7,9],[10,5]],[[27737,91570],[6,-5],[15,-5],[-5,-11],[-12,-2],[-14,10],[-7,17],[2,12],[15,-16]],[[27321,91578],[26,1],[12,-6],[2,-20],[4,-15],[-23,-2],[-29,6],[-8,9],[3,9],[-25,2],[4,-13],[-18,-13],[-14,12],[-6,18],[2,13],[16,10],[35,-3],[19,-8]],[[12304,91634],[32,-25],[-1,-11],[-12,2],[-20,13],[-16,5],[-21,0],[0,8],[15,6],[23,2]],[[27081,91801],[4,-17],[-18,-11],[-38,10],[-34,13],[-10,7],[3,8],[26,7],[28,4],[39,-21]],[[23017,65847],[-8,-81],[3,-23],[-2,-12],[-1,-28],[-2,-11],[-3,-10],[-4,-24],[-7,-37],[-10,-50],[-16,-65],[-39,-125],[-27,-196],[-27,-197],[-15,-256],[-1,-20],[-2,-24],[-2,-120],[-2,-10],[-5,-4],[-20,4],[0,-4],[8,0],[6,-1],[4,-7],[1,-15],[-2,-54],[2,0],[2,16],[1,39],[3,17],[3,-21],[-6,-120],[-4,-57],[-3,-106],[7,-171],[-3,-73],[0,35],[0,9],[-3,-7],[-8,-61],[-3,-9],[-9,-19],[-1,-4],[0,-9],[-1,-3],[-2,-1],[-7,4],[5,-12],[1,-12],[-10,-43],[-1,-9],[1,-9],[2,-4],[4,-1],[3,4],[2,5],[0,7],[-1,18],[1,8],[3,7],[2,0],[0,-6],[1,-9],[0,-17],[-6,-48],[9,-60],[-1,-17],[1,-8],[3,-30],[1,-7],[1,-6],[7,-38],[1,-73],[3,-21],[42,-154],[28,-67],[5,-6],[15,-28],[3,-2],[3,-9],[20,-26],[7,-25],[0,-24],[-4,-25],[-3,-25],[-1,-10],[-8,-27],[-3,-8],[-3,-11],[-2,-13],[-2,-27],[-2,0],[-4,41],[-6,29],[-3,19],[-2,4],[0,4],[5,11],[4,7],[6,6],[5,2],[3,-5],[3,10],[1,9],[1,9],[0,10],[-2,10],[-6,10],[-10,15],[-14,24],[-4,14],[-15,31],[-13,38],[-6,11],[-2,6],[0,7],[-5,40],[-3,14],[-7,10],[-23,82],[-4,19],[1,-13],[5,-22],[3,-6],[2,-12],[6,-32],[2,-24],[2,-50],[5,-39],[4,-51],[5,-23],[22,-80],[4,-9],[5,-5],[4,-1],[4,4],[4,6],[3,-7],[0,-11],[-3,-24],[1,-13],[19,-76],[0,-7],[5,-3],[2,-8],[2,-21],[16,-89],[20,-76],[20,-69],[2,-20],[3,-10],[-2,-2],[-1,-3],[-3,-7],[14,-55],[32,-78],[9,-17],[11,-13],[6,-9],[4,-23],[4,-10],[8,-15],[19,-46],[17,-29],[5,-12],[4,-17],[2,-6],[3,-5],[2,-2],[3,-2],[2,-6],[10,-34],[18,-43],[18,-58],[15,-36],[5,-18],[10,-57],[3,-52],[9,-69],[3,-11],[9,-22],[2,-11],[-3,-14],[0,-9],[4,-19],[2,-23],[2,-12],[4,-11],[6,-8],[23,-40],[4,-5],[7,6],[3,-8],[1,-14],[2,-11],[3,-8],[4,-30],[3,-11],[4,-11],[6,-7],[6,-3],[8,0],[3,-2],[2,-7],[4,-42],[4,-21],[5,-19],[6,-15],[10,-20],[6,-9],[6,-4],[4,-1],[7,-4],[5,-5],[4,-6],[0,-4],[0,-16],[-7,8],[-13,20],[-15,9],[-10,20],[-7,4],[-5,-7],[6,-11],[10,-9],[5,-4],[2,-10],[7,-12],[12,-16],[0,-4],[-5,0],[-8,6],[-4,2],[-3,-4],[1,-8],[3,-9],[3,-4],[5,1],[3,1],[6,6],[1,3],[0,2],[1,3],[3,1],[3,-1],[29,-17],[6,-3],[5,-6],[6,-11],[6,-7],[5,8],[-11,15],[-18,12],[-15,17],[-2,25],[19,-29],[23,-17],[24,-9],[37,-2],[24,4],[19,-1],[5,-2],[5,-5],[10,-17],[24,-33],[3,-8],[2,-13],[2,-7],[6,-6],[36,-11],[5,-5],[13,-2],[6,-7],[5,-17],[8,-46],[6,-18],[18,-37],[7,-16],[13,-57],[2,-1],[9,-13],[3,-3],[9,-2],[9,-8],[8,2],[8,3],[6,2],[9,7],[41,13],[20,11],[7,7],[7,7],[21,10],[5,8],[5,6],[31,20],[-2,-6],[-2,-6],[-3,-6],[0,-8],[2,-3],[23,6],[4,3],[4,5],[3,7],[0,5],[-2,4],[-1,4],[2,5],[1,4],[4,4],[1,2],[4,-2],[4,2],[4,4],[3,5],[2,-11],[6,-2],[18,7],[3,7],[4,19],[-3,13],[-1,3],[-2,0],[-4,-3],[-4,-4],[-1,-3],[-3,-5],[-20,-13],[-2,-3],[-2,-7],[-2,-3],[-12,-4],[-10,-14],[-3,-3],[-3,0],[-3,-1],[-3,-6],[2,11],[5,6],[6,3],[2,6],[3,6],[52,39],[12,6],[30,7],[39,-2],[41,3],[0,-4],[-3,-9],[-2,-5],[-2,-2],[1,-5],[0,-14],[2,-5],[3,0],[4,3],[4,5],[3,4],[-1,-9],[-3,-11],[0,-9],[2,0],[4,13],[2,4],[-2,4],[5,1],[2,9],[-2,10],[-6,4],[-6,2],[0,6],[5,5],[5,3],[45,2],[23,12],[14,16],[13,25],[6,17],[2,7],[1,7],[3,2],[3,-1],[1,-3],[3,-19],[3,-57],[3,-16],[2,16],[-2,10],[0,12],[2,25],[-1,12],[-7,27],[-1,8],[4,4],[7,1],[13,-1],[6,2],[28,14],[23,13],[31,3],[29,6],[35,9],[23,-2],[9,-4],[7,-17],[15,-20],[2,-4],[0,-7],[-2,-7],[-3,-5],[-3,-1],[2,3],[0,5],[-3,-3],[-3,-1],[-8,-1],[-3,3],[1,6],[1,7],[-2,5],[-2,0],[-2,-1],[-5,-9],[-1,0],[-2,1],[-2,1],[-4,-1],[-1,-4],[2,-3],[4,0],[0,-5],[-4,-2],[-3,0],[-4,2],[-3,5],[1,-4],[0,-2],[0,-3],[1,-4],[-2,-3],[-2,-5],[-1,-5],[0,-7],[1,3],[4,5],[5,-8],[3,-3],[4,-1],[6,4],[4,1],[1,-3],[2,-8],[5,-7],[5,-5],[5,-2],[-7,12],[-8,9],[-6,13],[-2,18],[6,-5],[3,-6],[4,-2],[6,5],[-3,-12],[4,-2],[3,-5],[3,-6],[1,-7],[-4,4],[0,-2],[0,-1],[0,-1],[-2,0],[5,-7],[11,-6],[3,-7],[0,-9],[-7,-17],[-2,-9],[2,-8],[5,-10],[6,-8],[3,-2],[3,9],[-1,9],[-3,9],[-2,11],[3,-5],[2,-2],[3,-1],[4,0],[-3,8],[-4,8],[-3,7],[2,10],[7,-8],[17,-9],[8,-8],[6,4],[12,-7],[7,-1],[14,4],[6,3],[5,5],[0,-8],[2,-6],[3,-2],[2,4],[1,7],[-2,18],[0,8],[-2,0],[-1,-4],[-1,-4],[0,-5],[-3,0],[-7,-7],[-2,3],[2,6],[6,15],[2,4],[7,7],[15,12],[8,9],[5,-3],[5,2],[4,4],[4,5],[2,7],[5,18],[1,4],[9,-2],[5,1],[2,3],[2,6],[11,6],[4,6],[-4,4],[-4,-1],[-7,-7],[-13,-7],[-4,-5],[9,45],[0,18],[-5,18],[-5,9],[-2,2],[-4,1],[-2,-2],[-2,-4],[0,-4],[-2,-2],[-6,3],[-8,21],[-5,4],[4,14],[5,14],[7,9],[13,9],[8,13],[8,14],[4,13],[-6,-3],[-19,-30],[-18,-18],[-7,-13],[1,-14],[-3,-3],[-1,3],[-7,-9],[-3,-2],[-5,0],[-6,1],[0,4],[6,16],[14,22],[18,20],[24,30],[33,30],[23,42],[6,6],[12,10],[22,29],[22,57],[6,8],[9,6],[9,16],[8,20],[3,19],[4,115],[3,25],[1,12],[-1,14],[-1,9],[0,10],[2,14],[5,25],[5,17],[16,23],[25,36],[11,24],[3,25],[1,8],[0,10],[-1,11],[-8,32],[-1,7],[0,5],[1,12],[0,45],[2,30],[0,33],[0,13],[4,33],[0,24],[-4,48],[0,26],[6,50],[2,58],[3,15],[16,37],[3,14],[4,32],[7,34],[1,20],[-3,0],[-3,-33],[-5,-21],[-1,-5],[-1,-14],[-4,-17],[-5,-14],[-7,-6],[0,4],[5,15],[18,107],[3,10],[4,9],[32,39],[5,10],[19,13],[9,16],[6,6],[3,2],[9,2],[15,11],[17,25],[4,3],[5,2],[28,21],[30,10],[22,0],[39,14],[53,10],[23,14],[11,2],[6,-4],[3,0],[3,2],[6,5],[2,1],[24,8],[18,11],[12,3],[6,3],[9,8],[34,16],[10,13],[17,31],[6,5],[17,4],[5,3],[10,10],[6,3],[22,0],[4,-2],[10,-9],[5,-1],[5,1],[9,5],[15,4],[5,3],[4,5],[4,3],[18,-1],[-6,4],[-6,3],[-7,0],[-10,-10],[-11,-5],[-2,-1],[1,5],[6,7],[6,4],[8,2],[6,6],[2,1],[4,-1],[13,-7],[23,0],[7,-1],[17,-15],[12,-7],[24,-7],[17,-9],[1,-2],[-2,-4],[-3,-2],[-4,0],[-3,1],[-3,3],[-4,4],[-20,7],[-5,4],[6,-11],[9,-9],[9,-6],[9,-3],[19,0],[9,-4],[5,0],[4,4],[-12,1],[-5,3],[-5,6],[2,3],[18,-5],[16,-11],[6,-1],[8,1],[3,-1],[1,-3],[1,-4],[2,-4],[3,0],[-2,-3],[-1,-1],[-2,0],[-1,4],[-1,0],[2,-7],[5,-1],[13,3],[6,-1],[16,-11],[17,1],[4,-3],[5,-5],[5,2],[20,17],[3,5],[4,12],[2,5],[1,6],[-1,5],[-1,5],[0,5],[0,4],[1,4],[-1,3],[-4,3],[-7,0],[-6,-4],[-7,-7],[-4,-8],[-5,-5],[-7,0],[-7,3],[-5,5],[-2,-5],[-1,9],[-1,4],[-4,-5],[-7,-12],[-6,-4],[1,-2],[0,-1],[1,-1],[-3,-2],[-2,2],[-1,5],[0,7],[9,15],[3,6],[2,3],[2,1],[6,-1],[9,-3],[3,-2],[5,-3],[8,5],[31,30],[6,2],[19,-12],[5,-6],[8,-16],[14,-43],[2,-6],[2,-5],[1,-5],[1,-12],[2,-3],[2,-3],[3,-2],[1,7],[3,1],[6,-4],[7,0],[3,-3],[4,-30],[1,-8],[-1,-9],[-2,-14],[-1,-7],[0,-29],[2,-39],[7,-27],[14,3],[-1,-5],[-1,-4],[-1,-3],[-6,-26],[-1,-4],[-4,-16],[1,-4],[1,-6],[0,-3],[0,-5],[-1,0],[-1,1],[-1,-2],[-2,-2],[-4,-3],[-2,-3],[-1,-4],[-1,-5],[0,-13],[-1,-7],[-4,-32],[-7,-31],[0,-6],[-19,-55],[-26,-58],[-6,-20],[-3,-6],[-15,-20],[-4,-8],[-12,-15],[-15,-32],[-33,-98],[-3,-20],[-4,-2],[-2,-4],[0,-5],[2,-5],[-9,-12],[-6,-15],[-3,-18],[-6,-47],[-2,-25],[1,-50],[2,-13],[6,-25],[2,-12],[-1,-7],[-2,-21],[-1,-2],[-2,-2],[-2,-3],[-4,-26],[-1,-8],[-1,25],[0,6],[1,3],[3,1],[2,4],[2,1],[2,6],[0,8],[1,23],[-5,9],[-1,5],[-1,10],[-1,5],[-2,1],[-2,-1],[-1,-5],[1,-5],[2,-5],[1,-4],[1,-19],[0,-8],[-1,-6],[2,3],[1,2],[3,3],[-12,-35],[-2,-5],[-2,-2],[-2,-5],[-2,-4],[-2,1],[-2,5],[-3,3],[-2,-2],[-2,-8],[-4,-1],[-6,-16],[-5,-21],[-3,-17],[-5,-18],[-3,-19],[-2,-7],[-4,1],[3,4],[3,8],[1,9],[-1,8],[-3,-1],[-15,0],[-3,1],[-2,-7],[-1,-12],[0,-13],[1,-9],[3,-9],[8,-10],[0,-5],[3,-3],[2,-1],[3,-1],[4,1],[-2,-9],[-1,-17],[-1,-11],[5,1],[4,7],[3,8],[3,8],[3,4],[8,5],[4,4],[8,-4],[6,-8],[2,-1],[1,2],[1,4],[0,4],[1,3],[3,0],[2,-3],[1,-1],[2,4],[1,-2],[1,-1],[1,-1],[1,0],[-4,-4],[0,-5],[7,5],[5,11],[0,11],[-4,2],[1,-6],[1,-4],[-3,-2],[-9,0],[-7,2],[-4,2],[-4,4],[6,0],[17,-4],[0,4],[-1,3],[2,15],[1,10],[5,-21],[2,-13],[-1,-6],[-1,-6],[-3,-39],[-3,-11],[-4,-11],[-5,-7],[-5,-3],[-1,-2],[-8,-17],[-2,-2],[-10,-3],[5,3],[2,5],[0,8],[2,8],[-10,-6],[-12,-13],[-11,-19],[-3,-23],[2,0],[2,12],[1,0],[-2,-9],[-4,-10],[-2,-7],[5,-2],[-6,-25],[-2,-14],[3,-6],[5,-3],[3,-4],[3,1],[5,10],[7,18],[3,10],[2,10],[3,9],[6,4],[13,2],[-5,-25],[3,6],[3,8],[3,6],[6,1],[0,-4],[-5,-6],[-5,-9],[-7,-22],[-3,-14],[-3,-32],[-4,-11],[3,-13],[-4,-19],[-6,-29],[-6,-19],[-6,-78],[-10,-72],[-5,-17],[-6,-16],[-6,-18],[-4,-22],[-1,-25],[1,-27],[0,-12],[-4,-12],[-1,-10],[-2,-41],[-2,-14],[-14,-40],[-1,-9],[-1,-8],[-4,-19],[-1,-9],[0,-39],[-2,0],[0,16],[-1,13],[-5,-12],[-3,3],[-1,8],[2,4],[2,7],[2,15],[1,16],[0,8],[-1,-7],[-2,-5],[-1,-6],[-2,-3],[-2,7],[1,5],[2,7],[1,9],[-1,1],[-4,10],[0,2],[0,5],[0,6],[-1,5],[-8,3],[0,1],[-2,2],[1,5],[1,5],[1,0],[-1,10],[-2,6],[-2,3],[-6,1],[-7,4],[-15,17],[-6,4],[-3,4],[-1,9],[0,9],[1,4],[9,22],[-2,13],[3,13],[5,11],[2,10],[0,5],[3,10],[1,7],[-1,1],[-1,3],[-2,3],[0,3],[0,4],[1,4],[0,2],[1,0],[1,25],[0,13],[-2,9],[-3,9],[-2,10],[-2,24],[-6,-11],[-7,-15],[-6,-17],[-2,-16],[0,-8],[-2,-11],[-2,-8],[-3,-4],[-1,5],[0,10],[2,12],[-1,-4],[-3,-7],[-5,-3],[-7,0],[-2,-3],[-12,-22],[-2,-4],[-1,-5],[-1,-7],[6,5],[5,9],[5,11],[3,12],[2,-10],[-1,-8],[-2,-8],[-1,-11],[2,5],[2,5],[3,5],[3,1],[2,-3],[-1,-4],[-3,-4],[-2,-1],[-7,-28],[-6,-18],[-8,-29],[-1,-9],[-6,-19],[-2,-10],[-4,-2],[-1,-1],[-1,-2],[0,-1]],[[25471,61415],[-2,0],[-17,0],[-2,-1],[-2,-2],[-1,-1],[-2,3],[-3,5],[-1,1],[-2,-1],[-3,-3],[-6,-4],[-2,-1],[-3,2],[-3,3],[-3,0],[-8,-13],[-2,-5],[-2,-6],[-1,-18],[-3,-14],[-1,-15],[-1,-7],[-3,-11],[-9,-20],[-3,-10],[-1,-10],[0,-9],[0,-2],[-1,-7],[-3,-9],[-3,-5],[-8,-8],[-8,-12],[1,-2],[1,-8],[-1,-7],[-7,-23],[-1,-6],[-1,-14],[-1,-6],[-2,-9],[-4,-5],[-3,-4],[-4,-7],[-2,-6],[-4,-23],[-2,-6],[-15,-22],[-1,-4],[-1,-13],[-2,-5],[-2,-2],[-11,14],[-4,5],[-4,17],[-2,1],[-4,-1],[-3,1],[-5,7],[-4,9],[-4,9],[-6,4],[-23,-17],[-6,-17],[-2,-24],[0,-51]],[[24376,59084],[-1,3],[-16,38],[-21,41],[-35,73],[-53,113],[-35,81],[-4,15],[0,13],[4,-6],[12,-8],[3,-5],[0,-11],[2,-11],[3,-9],[4,-3],[-3,12],[-2,24],[-3,10],[-4,5],[-6,5],[-6,3],[-4,-2],[-1,10],[-3,1],[-2,-4],[4,-7],[-5,1],[-16,27],[-12,10],[-5,7],[-4,17],[-22,32],[-26,60],[-5,17],[-3,8],[-8,6],[-67,118],[-5,5],[-47,77],[-28,40],[-52,61],[4,4],[6,-1],[4,1],[1,-6],[4,-1],[3,4],[3,8],[-5,14],[-3,13],[-4,11],[-7,6],[-33,15],[-9,10],[-3,4],[-5,9],[-4,9],[-1,8],[-2,17],[-4,3],[-5,-4],[-6,-6],[-12,-3],[-11,7],[-12,13],[-9,15],[-6,14],[-4,5],[-6,2],[-5,-4],[-1,-8],[1,-11],[0,-9],[-2,0],[-2,2],[-2,-1],[1,-4],[2,-2],[4,-1],[0,-4],[-3,-2],[-4,-1],[26,-35],[14,-13],[8,4],[-21,16],[0,4],[7,-1],[11,-9],[6,-2],[7,1],[3,-1],[4,-4],[9,-12],[0,-5],[-3,0],[0,-4],[19,-8],[9,-7],[7,-11],[7,-21],[3,-5],[10,-8],[4,-5],[2,-7],[-106,89],[-4,6],[-9,11],[-13,6],[-26,1],[1,0],[-14,1],[-8,2],[-4,5],[-5,-4],[-6,-1],[-11,1],[-6,2],[-2,6],[1,7],[4,5],[24,16],[11,15],[1,26],[-3,7],[-10,6],[-5,5],[-2,4],[-2,1],[-2,0],[-2,-2],[-1,-10],[-1,-2],[-2,-2],[-3,-2],[-1,-1],[-3,-6],[-2,-4],[0,-2],[-7,-8],[-4,-3],[-5,-15],[-4,-6],[-3,10],[-1,7],[0,7],[3,6],[5,5],[2,6],[-3,9],[-4,9],[-1,7],[0,6],[-2,9],[-2,5],[-3,7],[-4,6],[-3,2],[-7,-2],[-7,-7],[-5,-11],[-12,-37],[-3,-4],[-16,0],[1,-10],[-2,-4],[-3,-1],[-2,-3],[-3,-10],[0,-6],[6,-4],[12,-6],[10,-2],[9,1],[8,1],[4,1],[5,3],[3,4],[5,11],[2,1],[2,-9],[-9,-8],[-12,-6],[-8,-1],[10,-6],[25,2],[8,-7],[4,-13],[-1,-3],[-15,9],[-21,-2],[-15,-5],[-12,-4],[-7,-3],[-13,-4],[-11,0],[-5,3],[-4,0],[-4,-1],[-1,-3],[0,-4],[1,-4],[-3,-3],[-7,2],[-3,-5],[-5,0],[-5,0],[-4,-7],[0,-7],[-6,-4],[-3,-5],[0,-7],[-1,-2],[-4,-2],[-2,-5],[-9,-2],[-4,-6],[-7,-19],[1,-12],[-3,-3],[-4,-8],[-7,-5],[-1,-9],[-2,-5],[-16,-1],[-1,-5],[-21,-5],[-3,-7],[-7,-2],[-2,-8],[-13,-10],[-12,-2],[-8,-3],[-6,-3],[-4,-5],[-2,-3],[0,-7],[-7,-2],[-6,-3],[-7,-4],[-8,-4],[-3,-5],[-20,-9],[-2,-6],[-10,-5],[-8,-10],[-5,-3],[-8,-10],[-3,-1],[-2,-4],[-2,-3],[-3,3],[-3,-5],[0,-9],[-22,-20],[-9,-12],[-14,1],[-20,-1],[-11,5],[-9,2],[-4,-8],[-7,-6],[-4,-7],[-5,-1],[-6,1],[-6,2],[-2,-3],[-16,13],[-19,17],[-34,13],[-12,1],[-23,29],[-17,11],[-9,4],[-7,13],[1,2],[-5,16],[-4,-2],[-7,8],[-16,20],[-13,10],[-17,9],[-5,0],[-17,6],[-6,-7],[-25,7],[-20,13],[-8,-3],[-16,8],[-12,0],[-4,-4],[-2,-4],[-10,4],[-15,6],[-6,5],[-5,9],[-7,4],[-3,5],[-2,4],[-2,2],[-4,7],[-19,28],[-10,13],[-29,33],[-10,6],[-9,9],[-5,11],[16,-10],[9,-2],[4,8],[-5,-1],[-3,6],[-4,5],[-4,-6],[-5,5],[-6,3],[0,1],[-1,3],[-1,3],[-2,1],[0,-1],[-1,-3],[-2,-3],[-2,-1],[-5,1],[-28,19],[-36,13],[-18,13],[-6,5],[-4,2],[-2,2],[0,2],[-4,3],[-1,2],[1,0],[1,2],[-1,6],[-4,12],[-10,18],[-22,42],[-11,30],[-8,18],[-1,4],[-2,3],[-4,-1],[-4,2],[-3,-2],[-2,0],[-2,-2],[-5,-2],[-1,-4],[-1,-5],[0,-2],[-9,4],[-5,0],[-11,9],[-55,36],[-46,25],[-18,9],[-34,10],[-17,1],[-13,-3],[-9,5],[-7,5],[-8,5],[-8,7],[-6,7],[-15,24],[-7,11],[-2,-1],[-2,-4],[-3,3],[-1,3],[-3,3],[3,2],[3,-3],[1,4],[-2,4],[-2,1],[-1,-2],[-3,1],[-2,0],[-2,4],[2,1],[1,5],[1,5],[1,0],[2,1],[0,4],[-2,5],[-2,3],[-4,2],[-5,-4],[-2,-4],[0,-4],[3,1],[1,-2],[-2,-5],[-4,-1],[-2,4],[-1,13],[-2,3],[-7,13],[-1,6],[-9,10],[-20,15],[-14,8],[-14,11],[-19,14],[-24,19],[-68,49],[-24,17],[-17,10],[-19,17],[-15,11],[-18,11],[-15,12],[-15,9],[-10,10],[-4,-3],[-2,7],[3,4],[0,12],[-5,10],[-9,18],[-19,23],[-2,14],[-23,25],[-23,18],[-13,12],[-17,12],[-1,7],[4,1],[1,10],[-2,8],[-3,8],[-11,18],[-8,3],[-7,-5],[-2,9],[-3,0],[-3,6],[-4,0],[-1,10],[-5,4],[-8,5],[-1,22],[-6,21],[-8,10],[-13,20],[-3,15],[-4,7],[-1,12],[-10,25],[-13,11],[-4,3],[-17,21],[-16,15],[-13,9],[-17,-5],[-3,-10],[-6,-8],[-4,-10],[-5,-6],[-3,-5],[-5,0],[-10,10],[-17,17],[-36,21],[-16,12],[-10,2],[-23,17],[-27,4],[-14,6],[-38,33],[-26,26],[-14,12],[-10,1],[-15,2],[-3,9],[-4,-3],[-23,19],[-5,-1],[-14,10],[-5,6],[-10,7],[-5,-2],[-5,7],[-12,14],[-21,18],[-7,25],[-14,69],[-10,23],[-2,4],[-3,6],[-4,7],[-5,7],[-9,10],[-4,2],[-1,6],[7,16],[-4,15],[-9,17],[-17,35],[-44,63],[-8,16],[-30,31],[-25,26],[-17,12],[-9,6],[-6,5],[-6,4],[-4,3],[1,18],[6,2],[2,6],[-2,9],[-6,11],[-4,1],[-3,-6],[-1,2],[0,10],[-3,3],[-5,-1],[-2,-4],[1,-9],[-3,-1],[-2,5],[-3,3],[-3,-8],[-3,-6],[-4,14],[-9,8],[-5,7],[-25,11],[-12,6],[-10,10],[-3,4],[-1,7],[-1,8],[-3,1],[-3,0],[-3,1],[-2,4],[0,3],[-1,3],[-3,2],[-2,0],[-7,-4],[-6,0],[-2,2],[0,16],[2,16],[-1,7],[-4,3],[-2,-1],[-5,-5],[-2,-2],[-3,1],[-2,1],[-1,0],[-3,-6],[-21,23],[-10,14],[-7,16],[-3,27],[-3,13],[-8,7],[0,5],[1,11],[-1,6],[-1,5],[-2,4],[-2,3],[0,33],[-8,15],[-4,0],[-4,-2],[-2,1],[-5,10],[-6,8],[-17,30],[-13,31],[-15,51],[-8,18],[-2,11],[-3,7],[-8,14],[-4,11],[-7,26],[-16,48],[-2,11],[0,7],[-3,11],[0,6],[0,26],[-3,39],[-1,10],[-2,6],[-5,6],[-3,4],[-4,17],[-5,16],[-8,7],[-5,24],[-5,19],[-2,13],[4,10],[30,38],[13,3],[19,0],[4,2],[5,6],[19,3],[9,1],[8,11],[3,11],[6,4],[3,8],[3,8],[2,11],[1,20],[-5,12],[-9,8],[-7,34],[-9,16],[-5,5],[-3,-5],[-5,-9],[-6,-3],[-9,8],[-10,2],[-10,11],[-5,-8],[-3,7],[2,6],[4,7],[2,-1],[3,-2],[5,6],[3,15],[3,8],[1,13],[2,6],[1,4],[3,-1],[4,11],[6,23],[9,15],[4,2],[2,8],[4,8],[3,11],[2,8],[2,8],[3,2],[2,-4],[3,0],[3,-1],[6,11],[4,10],[1,18],[0,15],[-2,9],[2,14],[-1,17],[5,12],[-3,47],[-4,35],[3,27],[3,12],[5,16],[5,5],[-1,6],[-2,11],[-1,12],[-3,8],[-2,6],[-4,5],[-4,1],[-1,-7],[-4,-1],[-5,9],[-11,10],[-20,26],[-6,7],[-9,18],[-4,24],[-24,94],[-24,74],[-4,22],[-2,32],[2,85],[-2,39],[-7,54],[-7,44],[-4,30],[-3,19],[4,6],[-2,8],[-2,8],[-3,3],[-2,-7],[-2,0],[-3,33],[-9,28],[-23,45],[-12,31],[-5,9],[-11,15],[-2,3],[-1,2],[-1,2],[-1,3],[-1,4],[6,16],[-4,-2],[-3,-3],[-4,-5],[-3,-6],[-52,131],[-2,4],[-5,4],[-3,2],[-6,9],[-26,60],[-4,5],[-4,-2],[-3,-4],[-2,-2],[-3,3],[-1,5],[1,22],[-2,8],[-9,30],[-5,8],[-1,4],[4,4],[-1,4],[0,3],[-1,3],[-1,1],[-10,40],[-3,6],[-5,3],[-5,7],[-12,20],[-1,3],[-1,4],[-3,15],[-3,7],[-7,7],[-4,10],[-6,18],[-8,18],[-5,7],[-12,8],[-3,12],[-3,28],[-3,11],[-5,10],[-5,12],[-3,25],[-8,29],[-37,79],[-14,21],[-5,4],[-4,4],[-15,28],[-39,53],[-18,24],[-3,7],[-2,14],[-3,6],[-11,10],[-10,15],[-17,31],[-65,78],[-5,9],[-2,11],[1,6],[2,1],[2,-3],[2,-4],[1,-3],[0,-3],[0,-6],[1,-1],[22,-24],[3,-1],[38,-49],[4,-4],[4,-4],[4,-4],[-3,5],[-8,10],[-4,5],[1,6],[5,-5],[9,-13],[1,2],[1,3],[0,2],[-1,0],[-2,0],[-1,0],[3,7],[3,5],[2,6],[0,11],[-1,8],[-11,47],[-3,6],[-4,4],[-5,1],[-4,-2],[-4,-4],[-3,-7],[4,-2],[8,6],[2,-4],[-1,-5],[-8,-15],[-2,-4],[-9,-6],[-5,7],[-4,11],[-5,8],[-6,-7],[-2,-1],[-2,1],[-2,1],[-6,9],[-1,5],[-1,4],[0,8],[-1,4],[-2,3],[-4,3],[-2,2],[-11,23],[-4,2],[-4,-5],[-5,11],[-6,9],[-7,7],[-7,2],[2,-6],[2,-4],[4,-6],[9,-19],[4,-7],[12,-14],[4,-9],[-8,4],[-21,25],[-24,42],[-3,8],[-1,9],[-1,22],[-1,10],[-3,10],[-3,9],[-3,3],[-1,2],[-2,4],[0,5],[1,1],[3,0],[3,-2],[5,-6],[2,-4],[4,-6],[5,-1],[2,13],[-2,11],[-3,10],[-4,9],[-3,4],[4,7],[0,9],[-2,21],[1,9],[1,8],[4,15],[-3,9],[-11,18],[-4,2],[0,-11],[4,-32],[0,-3],[1,-4],[0,-7],[-2,-19],[-1,-21],[0,-6],[-2,-3],[-2,1],[-1,1],[-1,2],[-2,3],[-2,2],[-1,-3],[0,-4],[-2,-2],[-10,13],[-8,23],[-22,86],[-7,16],[-10,17],[-5,5],[-3,4],[-1,7],[6,0],[6,-3],[5,-6],[2,-9],[17,-39],[3,-17],[1,-3],[2,0],[1,1],[2,2],[0,1],[6,-7],[1,-1],[3,1],[0,5],[0,12],[-1,8],[-3,0],[-3,-1],[-3,3],[1,4],[2,10],[1,3],[3,4],[1,2],[1,-3],[2,-5],[5,-12],[5,-4],[12,-3],[9,-8],[2,5],[1,6],[0,7],[-29,50],[-3,4],[-5,1],[2,-5],[0,-3],[-2,-3],[-4,-1],[-3,1],[-3,4],[-5,11],[-6,21],[-2,4],[-4,-1],[-2,-4],[-3,-3],[-4,3],[-4,-4],[-7,-1],[-8,2],[-5,5],[-1,19],[0,3],[2,-1],[7,-8],[3,-3],[-1,8],[0,17],[-1,8],[-3,6],[-6,6],[-3,5],[-6,-64],[-4,-10],[-1,5],[2,27],[0,9],[-3,12],[-4,9],[-4,6],[-4,6],[-29,22],[-17,21],[-11,7],[-12,2],[-10,0],[7,9],[11,-1],[21,-12],[-7,6],[-11,18],[-8,4],[-15,-9],[-7,-1],[-4,10],[12,0],[2,4],[-3,11],[-1,4],[0,5],[-1,3],[-2,2],[-1,-1],[-4,-6],[-2,-1],[3,18],[1,9],[0,27],[-1,9],[-1,1],[-3,-3],[-3,0],[-9,7],[-1,2],[0,3],[-1,3],[-1,1],[-2,-1],[-2,-3],[-2,0],[-5,1],[-3,3],[-2,-2],[0,-10],[1,-7],[1,-3],[1,-4],[1,-7],[-1,-7],[-1,-4],[-1,-3],[-2,-4],[-5,-6],[-3,-1],[-4,4],[-3,9],[2,-1],[2,2],[0,3],[-1,4],[-3,1],[-13,-2],[-4,-4],[-1,-6],[3,-9],[-8,-1],[-8,11],[-14,31],[6,5],[2,2],[1,6],[2,7],[1,6],[4,2],[9,-7],[3,1],[3,2],[2,-5],[1,-12],[3,-3],[0,1],[1,3],[2,8],[0,3],[0,7],[0,2],[1,3],[2,1],[15,28],[3,9],[0,3],[0,2],[-1,3],[1,3],[1,2],[1,2],[1,0],[1,4],[0,19],[2,11],[11,19],[2,13],[-3,9],[-3,-8],[-6,-23],[-4,-12],[-4,-19],[-5,-8],[-7,-6],[-13,-8],[-6,-8],[-9,-27],[-5,-8],[-7,4],[-8,-8],[-4,0],[-4,6],[-3,14],[-3,12],[-2,6],[-2,3],[-4,1],[-8,8],[-7,10],[-2,-2],[1,-7],[2,-7],[2,-5],[19,-31],[5,-13],[-1,-11],[-7,11],[-6,17],[-7,14],[-10,7],[-31,-2],[-10,6],[6,8],[8,5],[9,0],[8,-6],[-1,11],[1,10],[0,2],[3,5],[0,3],[0,3],[-1,2],[0,1],[-1,2],[-2,7],[-5,7],[-6,6],[-5,3],[-5,-1],[-3,-3],[-2,-8],[0,-34],[-1,-4],[-3,9],[1,10],[1,15],[-1,14],[-2,5],[-6,5],[-1,10],[1,12],[3,23],[1,5],[1,1],[0,11],[0,9],[-1,5],[-3,9],[-2,13],[0,11],[0,27],[2,9],[10,33],[10,22],[5,12],[3,24],[12,41],[5,20],[1,9],[1,6],[2,-1],[1,-7],[-3,-13],[-2,-3],[-1,-5],[-2,-4],[-1,-4],[0,-1],[-1,-8],[0,-13],[0,-6],[-2,-6],[0,-7],[1,-5],[3,-2],[2,5],[2,7],[1,18],[9,31],[1,11],[0,31],[3,6],[5,0],[6,-3],[3,-5],[3,-11],[-1,-11],[-2,-10],[-3,-5],[0,-3],[6,-5],[13,-23],[4,-1],[0,7],[-4,14],[0,8],[2,3],[3,2],[2,3],[-1,8],[-8,-1],[-7,26],[-5,19],[-7,8],[1,-2],[1,-2],[1,-3],[1,-4],[-6,3],[-3,1],[-3,-1],[-8,-17],[-2,-1],[-1,9],[4,42],[-2,23],[-3,23],[-6,14],[-10,28],[-12,17],[-8,24],[-9,14],[-8,6],[-8,2],[-2,4],[3,2],[6,-3],[6,-5],[-1,11],[-3,2],[2,6],[-2,6],[-5,1],[-3,1],[-2,7],[-1,8],[-3,-3],[-4,-5],[-1,11],[-5,2],[-3,-7],[-3,-7],[-1,-6],[3,-3],[3,-1],[3,-1],[1,-4],[-1,-4],[0,-4],[5,-6],[3,-1],[0,-4],[-10,8],[-21,8],[-12,-2],[-4,-6],[0,-6],[-9,3],[-8,8],[-12,9],[-5,7],[-13,28],[-7,21],[-2,20],[-2,21],[-4,13],[-4,18],[-1,9],[-2,8],[-10,27],[1,6],[3,-8],[8,-24],[6,-8],[-7,33],[-1,13],[-2,25],[-9,23],[-4,6],[-5,4],[-5,1],[-4,1],[-2,-1],[-2,-2],[-2,-4],[-2,-3],[-2,-7],[-3,-5],[-8,12],[-16,10],[-12,5],[-7,4],[-7,2],[-6,3],[-7,3],[-9,10],[-4,4],[-10,22],[-9,22],[-12,17],[-5,5],[-10,5],[-6,-1],[0,6],[8,-1],[8,-1],[7,-2],[4,5],[-5,10],[-8,16],[-2,8],[1,2],[1,5],[0,4],[-4,2],[-1,2],[-3,5],[-5,-8],[-3,-4],[-3,0],[-3,3],[-1,4],[0,15],[-1,15],[-8,9],[0,37],[-3,18],[-8,39],[0,19],[3,10],[5,4],[5,2],[3,8],[0,9],[-3,2],[-4,-4],[-2,-7],[2,20],[2,4],[3,4],[4,0],[3,2],[1,6],[-9,2],[-5,4],[-1,9],[4,14],[-4,1],[-3,5],[-1,6],[2,8],[1,-6],[2,-1],[2,3],[1,11],[2,1],[3,0],[14,4],[3,5],[-1,12],[-6,-5],[-16,13],[-7,-1],[3,-6],[-1,-3],[-4,1],[-9,12],[-4,3],[-20,10],[-10,1],[-9,-1],[-11,-5],[0,5],[3,1],[9,7],[-2,8],[-2,5],[0,6],[0,7],[-2,7],[-3,3],[-3,0],[-2,-6],[0,-16],[-1,-10],[-3,-8],[-5,-13],[4,2],[2,-2],[1,-6],[1,-8],[-2,-7],[-2,-10],[-3,-5],[-1,6],[-1,1],[-7,17],[-1,1],[-5,2],[-2,1],[-1,3],[-1,4],[-1,3],[-2,2],[3,6],[2,2],[3,1],[-5,9],[-6,9],[-6,7],[-6,-1],[-6,-3],[-5,-12],[-8,0],[-5,-1],[1,6],[2,4],[-2,6],[-4,5],[-3,-1],[-4,9],[-8,4],[-3,9],[-5,10],[-6,13],[-8,4],[-4,13],[-5,11],[-5,22],[-9,19],[-2,26],[-3,6],[0,1],[-4,-1],[-2,2],[-1,2],[0,4],[-2,8],[-1,13],[-2,6],[-12,20],[-4,11],[-2,12],[2,7],[3,6],[1,11],[-10,-4],[-12,8],[-19,13],[-18,17],[-7,5],[-6,3],[-3,1],[-5,24],[-5,23],[-5,27],[-44,80],[-6,16],[-2,6],[1,4],[3,0],[4,2],[4,7],[3,1],[2,-6],[1,-6],[2,-4],[3,-2],[1,2],[1,5],[1,7],[-1,6],[-3,11],[-4,0],[-5,-2],[-6,1],[-8,14],[-4,10],[-11,8],[-7,4],[-1,11],[-4,3],[1,6],[-4,8],[-7,9],[-2,9],[-2,7],[-2,4],[-2,2],[-4,2],[-6,-1],[-5,2],[-1,4],[3,4],[2,4],[0,6],[-1,5],[-4,25],[0,14],[-4,2],[1,6],[2,8],[3,7],[0,6],[-4,12],[-4,10],[1,6],[-5,8],[-5,4],[3,24],[1,15],[-4,16],[-4,21],[-6,8],[-15,1],[-2,-3],[-2,-3],[-1,-3],[1,-5],[-1,-6],[-2,2],[-4,11],[-11,8],[-5,7],[-2,19],[4,16],[6,23],[2,12],[0,14],[-3,7],[-6,3],[-3,4],[-3,6],[1,13],[-1,11],[-10,15],[-11,18],[-7,35],[-1,7],[-2,6],[-5,-1],[-5,13],[-2,9],[-3,23],[-4,12],[-4,11],[-4,9],[-5,34],[-3,8],[-5,6],[-2,-2],[-4,4],[-6,-4],[-5,4],[-1,8],[3,10],[-1,11],[2,17],[2,15],[-2,9],[-3,8],[-3,10],[0,10],[2,32],[-1,33],[-3,15],[-4,11],[-4,10],[-4,7],[-6,7],[-2,0],[-2,1],[-3,-5],[-1,3],[3,12],[1,18],[-1,25],[-2,23],[-4,17],[-13,27],[-19,34],[-16,45],[-10,37],[-10,66],[-4,18],[5,19],[3,37],[1,23],[-1,20],[-8,42],[0,9],[2,1],[2,-6],[1,-7],[2,-12],[4,-19],[2,-2],[2,5],[5,20],[1,28],[0,26],[1,20],[-5,9],[-7,18],[-7,9],[-7,1],[0,-5],[4,-4],[4,-4],[-2,-4],[-5,3],[-4,6],[-12,12],[-3,13],[-4,8],[-3,16],[-3,-1],[-5,-4],[-4,-1],[4,-9],[3,-4],[4,-3],[2,-4],[-3,-2],[-10,6],[-44,15],[-13,6],[-19,5],[-2,12],[-8,5],[-10,1],[-6,10],[2,3],[5,-1],[3,4],[-3,17],[-5,32],[1,18],[-7,19],[-15,20],[-13,11],[-4,8],[-8,1],[-13,11],[-7,8],[-3,10],[-8,-6],[-3,-1],[-4,-1],[-5,9],[-1,23],[-5,5],[0,-8],[0,-32],[-1,-5],[2,-5],[2,-1],[2,1],[0,1],[3,-7],[-1,-2],[-3,-1],[-4,-11],[-1,-7],[-3,-4],[-3,0],[-2,-6],[-1,-3],[-1,-4],[-3,-8],[-12,1],[-13,0],[-11,1],[-14,11],[-6,10],[-8,5],[-8,8],[-3,6],[-4,8],[-3,4],[-1,7],[-9,9],[-14,16],[-6,6],[-4,2],[-4,10],[-9,6],[-13,24],[-12,26],[-6,3],[-20,-1],[-3,1],[-2,3],[-5,10],[-1,2],[-3,2],[-5,9],[-4,2],[-9,2],[-3,2],[-4,6],[-7,19],[-3,3],[-6,3],[-16,22],[-6,5],[-4,2],[-3,1],[-3,1],[-4,6],[-2,1],[-1,3],[0,7],[-1,7],[-3,3],[-1,-3],[0,-6],[1,-8],[4,-13],[1,-3],[3,-3],[2,-2],[7,-2],[5,-5],[4,-6],[4,-6],[2,-8],[7,-3],[5,-9],[4,-11],[2,-9],[4,-3],[2,-7],[3,-42],[3,-12],[4,-11],[3,-14],[-2,-12],[-10,-21],[-4,-20],[-4,-24],[0,-81],[-6,-36],[1,-33],[-3,-54],[-2,-11],[2,-25],[5,-19],[7,-13],[7,-10],[0,-4],[-5,-9],[0,-13],[3,-10],[5,-8],[19,-16],[4,-5],[1,-3],[1,-4],[1,-6],[0,-20],[1,-6],[0,-10],[-1,-8],[2,-5],[2,-9],[-1,-27],[1,-8],[2,-10],[-2,-5],[-3,-14],[3,-15],[1,-10],[-2,-20],[4,-18],[6,-19],[4,-11],[0,-7],[1,-5],[0,-7],[1,-6],[3,-11],[0,-8],[-2,-11],[0,-12],[2,-10],[-1,-17],[-2,-13],[2,-6],[-3,-30],[-2,-10],[0,-5],[0,-7],[3,-8],[-1,-8],[-2,-13],[-1,-9],[-3,-8],[2,-9],[2,-5],[3,-12],[3,-6],[0,-7],[2,-9],[5,-4],[2,-13],[5,-10],[0,-13],[6,-19],[4,-16],[3,-14],[14,-12],[3,-17],[4,-5],[8,-2],[3,-9],[3,-6],[-2,-16],[3,-13],[2,-3],[-2,0],[-1,-4],[-1,-3],[4,-4],[0,-2],[0,-6],[1,-7],[3,-5],[3,-3],[2,1],[3,-2],[2,-6],[0,-4],[2,-4],[5,-2],[5,0],[2,1],[2,3],[0,3],[1,2],[-2,0],[-1,3],[1,3],[2,-1],[1,3],[0,1],[1,-1],[1,0],[1,1],[1,-2],[1,-2],[1,0],[1,-3],[1,1],[3,1],[2,-3],[2,-5],[2,-1],[0,-1],[3,-1],[2,-3],[1,-7],[1,-4],[1,-1],[1,-3],[1,-1],[1,-2],[0,-1],[1,-2],[2,-1],[1,-1],[2,-5],[0,-1],[2,1],[0,1],[3,-2],[0,-5],[2,-3],[0,-4],[2,0],[2,-4],[2,-5],[0,-1],[4,-3],[2,-4],[2,-1],[6,-6],[1,-8],[0,-3],[2,-4],[1,-5],[4,-1],[1,-1],[0,-3],[2,-2],[0,-2],[2,-2],[3,-1],[3,1],[3,-6],[2,-6],[3,-6],[2,-4],[1,-1],[3,-8],[3,-3],[3,-5],[3,-7],[4,-8],[4,-6],[5,-8],[4,-2],[3,-2],[2,-4],[0,-8],[2,-4],[3,-1],[3,-2],[2,-4],[2,-1],[5,-5],[25,-54],[9,-13],[3,-7],[1,-11],[2,-3],[1,-3],[-4,-8],[-3,-7],[-2,-6],[0,-6],[2,-3],[3,-2],[-1,-9],[2,-6],[1,1],[1,-3],[0,-5],[3,0],[2,1],[0,-6],[2,-8],[3,-7],[3,-1],[2,-7],[2,-14],[5,-15],[3,-9],[-1,-7],[-3,0],[-2,-7],[-1,-2],[-1,-6],[1,-8],[3,-4],[2,-11],[-1,-9],[-2,-3],[-1,-4],[3,-9],[2,-7],[2,-8],[2,-4],[0,-5],[6,-2],[6,3],[1,3],[0,2],[2,8],[-3,4],[-2,5],[2,1],[0,4],[1,4],[1,1],[4,-1],[3,-2],[3,5],[1,5],[3,-6],[-1,-9],[4,-7],[2,3],[0,3],[5,4],[2,-2],[-2,-3],[-1,-1],[-1,-10],[8,-3],[0,-3],[-3,-1],[-1,-4],[2,-4],[2,-6],[2,-2],[-2,-3],[0,-6],[0,-8],[-1,-5],[1,-7],[4,-4],[-1,-10],[7,0],[6,1],[2,4],[3,6],[2,4],[4,4],[3,4],[7,-2],[4,-7],[1,-4],[1,-9],[3,-2],[1,-4],[-1,-8],[3,-4],[0,-8],[-1,-9],[3,-16],[2,-2],[2,-13],[4,-20],[6,-10],[2,-7],[-2,-14],[3,-15],[2,-8],[1,-12],[-1,-11],[3,-14],[6,-6],[1,-4],[4,-4],[7,-2],[1,-6],[9,-7],[9,1],[11,6],[8,5],[5,-7],[-1,-4],[3,-4],[1,-3],[-2,-4],[0,-2],[4,-1],[1,1],[1,4],[4,0],[-1,-6],[1,-5],[-2,-3],[-2,-8],[1,-4],[2,-9],[-2,-8],[-4,-22],[-1,-14],[1,-5],[-1,-9],[2,-7],[4,-7],[4,-5],[0,-5],[9,-20],[1,-4],[3,-1],[1,-3],[-2,-4],[0,-3],[-1,-10],[-2,-3],[-1,-7],[-1,-18],[3,-21],[1,-2],[2,-2],[0,-6],[-2,-6],[-2,-7],[0,-8],[2,-9],[3,-9],[5,0],[2,-3],[0,-8],[2,-9],[-1,-3],[-2,-15],[1,-11],[0,-7],[0,-4],[0,-4],[-1,-2],[-1,-6],[-1,-10],[4,-10],[4,-6],[2,-4],[3,-4],[1,2],[1,0],[0,-4],[2,-8],[-1,-3],[0,-10],[3,-4],[-1,-6],[1,-7],[3,-8],[4,-8],[2,-6],[2,-2],[2,-4],[2,1],[2,0],[2,-4],[1,-5],[3,-5],[0,-5],[6,-7],[1,-7],[8,-8],[7,0],[4,-2],[3,-5],[5,-3],[4,-2],[2,-4],[3,-5],[3,-4],[10,-5],[5,-6],[8,-9],[5,-10],[1,-8],[5,-11],[3,-13],[1,-21],[0,-9],[3,-12],[3,-11],[-1,-7],[1,-7],[3,-9],[4,-5],[2,-9],[2,-7],[5,-2],[1,-7],[2,-14],[3,-5],[3,-13],[3,-6],[-2,-12],[-1,-3],[-1,-4],[0,-5],[5,-7],[3,-7],[4,-7],[1,-5],[3,-3],[5,-1],[6,-10],[7,-7],[6,2],[1,-3],[3,-3],[12,-4],[4,-13],[10,0],[2,-1],[0,-5],[2,-4],[0,-5],[-4,-3],[-3,2],[-5,-7],[-4,-12],[-3,-13],[0,-9],[-1,-12],[4,-16],[5,-7],[3,-2],[1,-5],[4,-10],[1,-11],[3,-4],[7,-5],[2,-11],[11,-18],[2,-14],[0,-9],[0,-4],[-3,-4],[-1,-6],[0,-6],[-4,4],[-4,-17],[1,-12],[4,-2],[7,-10],[3,-10],[1,-8],[0,-5],[1,-6],[5,-3],[4,-6],[4,-10],[4,-24],[6,-11],[7,-8],[6,7],[10,18],[0,7],[-4,5],[-6,16],[-8,14],[-4,4],[-3,10],[-7,8],[-4,15],[-2,-1],[0,5],[0,5],[0,5],[0,16],[-2,7],[0,8],[-2,10],[2,7],[-3,5],[-1,4],[0,5],[-1,3],[-2,5],[1,6],[-2,4],[0,4],[5,1],[2,5],[2,3],[7,-7],[0,-5],[7,-8],[6,-11],[5,-13],[2,-9],[12,-17],[3,2],[1,-8],[2,-5],[2,-4],[1,-4],[6,-4],[0,-4],[5,-4],[-1,-3],[7,-5],[4,-3],[0,-4],[3,-3],[-1,-14],[-1,-13],[1,-14],[-2,-29],[2,-11],[4,-6],[7,-5],[6,-4],[5,-3],[3,2],[0,3],[4,1],[-1,-5],[2,-3],[4,-4],[-2,-2],[-2,-5],[0,-12],[-4,-12],[1,-15],[-1,-12],[2,-12],[7,-8],[2,-2],[2,-3],[0,-4],[-3,-2],[0,-4],[3,-6],[5,-4],[3,-8],[2,-10],[1,-8],[0,-14],[-3,1],[-1,-15],[3,-6],[0,-5],[3,-13],[-1,-7],[1,-10],[3,-4],[2,-8],[0,-12],[2,-10],[3,-9],[5,-8],[0,-7],[1,-7],[0,-6],[-2,-3],[-1,-6],[-3,-6],[-1,-6],[2,-9],[0,-15],[-3,-8],[-4,-6],[2,-11],[1,-12],[3,-10],[1,-5],[1,-9],[-2,-7],[2,-4],[1,-17],[2,-3],[1,1],[1,1],[2,-3],[2,-6],[1,-2],[1,-3],[-1,-3],[-1,0],[-1,3],[-1,3],[-2,2],[0,-3],[1,-9],[1,-7],[0,-6],[1,-4],[4,-4],[3,-8],[4,-3],[2,-3],[3,-6],[1,-5],[2,-2],[1,3],[2,0],[3,-13],[0,-4],[1,-8],[1,-8],[2,-9],[0,-8],[1,-6],[1,-9],[3,-7],[3,-5],[2,-12],[4,-2],[1,-3],[0,-4],[2,-9],[3,-3],[1,-5],[3,-3],[3,0],[1,3],[1,-2],[5,-1],[2,4],[1,-1],[-2,-5],[0,-3],[3,-1],[1,3],[1,1],[2,-3],[2,0],[1,2],[1,0],[1,-1],[3,-2],[1,-5],[-2,-5],[2,-8],[0,-4],[-1,-3],[0,-7],[-2,-1],[0,-7],[2,-4],[2,-10],[2,-4],[1,-14],[1,-6],[4,-14],[1,-10],[2,-4],[5,-4],[0,-4],[2,-4],[1,-5],[-1,-1],[0,-4],[2,-3],[2,-2],[-1,-1],[0,-3],[1,-3],[-1,-3],[-2,0],[-1,-7],[0,-4],[3,-5],[-1,-7],[2,-11],[3,-3],[2,-11],[2,-3],[1,-3],[-2,-3],[0,-10],[2,-10],[3,-7],[4,-3],[0,-2],[1,-2],[0,-3],[1,-3],[1,-3],[0,-3],[1,-4],[1,-8],[4,-3],[0,-3],[5,-3],[1,-3],[0,-7],[1,-4],[2,-4],[3,-1],[3,-1],[0,2],[1,2],[2,-3],[1,-3],[6,-9],[-1,-3],[1,-2],[0,-4],[2,-2],[0,-4],[0,-7],[1,-6],[3,-7],[2,-7],[3,-6],[-1,-4],[3,-2],[1,0],[1,-2],[1,-2],[0,-1],[-2,0],[-1,-2],[2,-1],[0,-3],[3,-6],[0,-3],[2,-2],[-1,-2],[0,-3],[1,-4],[1,-2],[-1,-5],[2,-4],[1,-4],[0,-4],[0,-4],[2,-4],[0,-4],[1,-3],[0,-1],[1,0],[1,-1],[-1,-5],[-1,-4],[1,-2],[-1,-8],[0,-6],[-4,-10],[-3,-10],[-1,-7],[1,-6],[-2,-6],[-4,-1],[-4,-10],[-1,-11],[-1,-14],[-2,-10],[0,-12],[0,-8],[1,-10],[1,-6],[-2,-4],[1,-6],[2,-13],[0,-4],[2,-6],[9,-23],[1,-7],[0,-6],[-2,-5],[0,-7],[1,-5],[-1,-5],[2,-5],[1,-5],[-1,-5],[2,-5],[-1,-8],[7,-18],[1,-4],[4,-5],[-1,-3],[4,-15],[3,-9],[2,-9],[3,-4],[5,-4],[1,-9],[3,-3],[1,-4],[6,-5],[8,-5],[7,-4],[9,-4],[15,-4],[14,0],[6,1],[1,-1],[-1,-4],[-3,-5],[-4,-3],[-4,-4],[-3,3],[-7,8],[-8,4],[0,-4],[2,-4],[-1,-9],[2,-5],[1,-5],[-1,-5],[1,-7],[7,-1],[6,4],[3,-1],[3,2],[0,4],[0,6],[1,4],[1,3],[5,8],[5,11],[2,24],[-3,1],[0,6],[0,5],[-2,3],[-2,2],[1,2],[0,5],[0,5],[-2,1],[0,-6],[-2,-1],[-1,12],[1,3],[-1,4],[1,5],[-1,3],[1,6],[-1,3],[4,0],[1,3],[-2,1],[-1,4],[2,3],[4,2],[3,3],[1,5],[6,0],[7,-3],[1,2],[4,-4],[1,-4],[-2,-2],[0,-8],[1,-4],[3,-1],[3,-6],[3,-2],[2,-4],[2,-7],[0,-6],[2,-5],[1,-4],[8,-5],[2,-4],[3,-6],[3,-1],[4,-6],[4,0],[1,-2],[2,-3],[1,-4],[3,-2],[1,-4],[3,-3],[4,-5],[4,-5],[3,-6],[2,-13],[1,-5],[0,-8],[1,-3],[1,-26],[1,-12],[3,-4],[6,-1],[6,-5],[12,5],[10,8],[5,5],[2,2],[0,-3],[1,-6],[1,-6],[3,-3],[2,-6],[-1,-5],[-1,-2],[0,-5],[-4,-8],[-2,0],[0,-2],[0,-4],[-1,-10],[-1,-6],[0,-8],[2,-11],[2,-5],[3,-3],[1,-2],[1,-3],[3,-3],[1,-2],[2,-4],[3,-3],[9,-20],[5,-10],[3,-11],[4,-6],[-3,-13],[-1,-16],[2,-14],[3,-21],[0,-14],[4,-11],[6,-4],[5,-4],[1,-5],[4,-2],[4,-1],[7,-7],[2,-4],[3,-3],[7,-3],[4,-2],[2,-3],[1,-8],[4,-3],[7,-3],[2,-3],[0,-4],[-2,-5],[-1,-8],[3,-13],[7,-17],[5,-10],[0,-11],[-1,-10],[0,-8],[4,-2],[0,-8],[-1,-7],[-3,-4],[1,-6],[-1,-11],[1,-6],[0,-13],[0,-9],[-2,-8],[-2,-2],[0,-6],[1,-12],[-1,-6],[-1,-6],[-2,-10],[-1,-7],[-3,-4],[-3,-10],[-5,-16],[-3,-4],[-3,-11],[-3,-2],[-2,-8],[-9,-8],[-3,-8],[-9,0],[-5,-6],[-13,-9],[-6,-9],[-5,-6],[-1,-8],[1,-6],[-5,-12],[-8,-2],[-12,-16],[-1,-12],[-5,-10],[-3,-6],[-4,-6],[-3,-1],[-7,0],[-4,-5],[-1,-4],[2,-5],[-11,-1],[-5,0],[-3,3],[-4,3],[-6,7],[-7,13],[-5,9],[-4,11],[-6,18],[0,6],[-3,12],[-2,4],[-2,18],[-1,16],[-12,90],[-2,39],[-2,17],[-3,5],[-2,6],[-7,23],[-2,9],[-3,8],[-2,11],[-9,31],[-3,6],[-8,31],[-13,24],[-14,16],[-33,30],[-15,13],[-20,31],[-29,63],[-17,41],[-10,19],[-5,6],[-3,1],[-1,8],[-3,6],[-11,23],[-6,9],[-9,16],[-6,8],[-2,8],[-7,12],[-12,15],[-6,10],[-9,10],[-10,10],[-15,22],[-15,15],[-45,48],[-1,3],[3,-1],[22,-22],[-5,9],[-10,11],[-9,9],[-4,2],[-5,7],[-3,11],[-10,18],[-5,7],[-7,2],[-8,14],[-7,18],[-2,21],[-6,20],[-1,6],[2,-3],[3,0],[-3,9],[-6,8],[-3,6],[-5,1],[0,-10],[3,-8],[-4,-13],[-7,2],[-3,5],[-4,-3],[-4,-2],[-6,2],[-5,2],[6,-11],[6,-7],[-6,-2],[-2,3],[-3,-2],[-3,-5],[-2,7],[-1,10],[1,7],[1,14],[-5,31],[-4,19],[-5,9],[-6,12],[-5,14],[-7,10],[-3,9],[1,2],[6,-9],[1,2],[0,4],[-6,8],[-5,11],[-4,11],[-2,9],[-1,10],[-2,13],[-3,11],[-4,5],[3,-17],[1,-16],[2,-13],[6,-11],[-2,-2],[-4,-6],[1,-3],[3,-7],[2,-2],[-3,-2],[-2,1],[-2,3],[-1,6],[-5,-11],[-3,9],[-5,30],[2,4],[2,5],[-1,5],[-1,7],[-5,-7],[0,-7],[1,-19],[0,-12],[2,-7],[-6,-1],[-4,6],[-3,7],[-1,8],[-1,11],[0,18],[0,6],[-2,4],[-2,1],[-2,1],[-2,10],[3,3],[5,9],[2,5],[-2,13],[-1,2],[-1,3],[0,5],[1,2],[4,5],[1,5],[-1,3],[-2,8],[-1,7],[0,5],[-2,5],[-2,-3],[-3,-9],[0,-10],[-2,-7],[-2,-8],[1,-11],[3,-11],[-3,-11],[-4,-10],[-3,1],[-1,11],[1,8],[1,15],[-2,4],[-1,2],[0,7],[1,3],[4,1],[1,5],[-2,6],[2,6],[3,12],[2,17],[-1,5],[2,9],[0,7],[-3,0],[0,3],[-3,4],[1,9],[1,6],[-1,9],[0,11],[2,16],[4,16],[5,15],[4,11],[2,9],[0,19],[1,32],[0,17],[-3,3],[0,7],[1,10],[3,6],[0,10],[0,4],[-3,2],[2,7],[7,6],[5,5],[-3,2],[-7,-1],[-3,-3],[-2,6],[3,3],[3,5],[0,11],[-1,22],[-1,12],[2,12],[0,20],[-2,35],[-1,18],[-2,4],[-2,-3],[0,-10],[1,-63],[-2,-26],[-1,-23],[-2,-3],[-1,6],[1,14],[1,34],[-1,78],[-1,33],[-7,20],[-2,24],[-6,19],[-5,39],[-5,23],[-6,12],[-6,15],[-7,8],[-8,-2],[-4,12],[-1,19],[-3,17],[-6,28],[-10,25],[-6,12],[-11,12],[-3,1],[-4,-3],[-2,-6],[-2,-6],[-5,-2],[-16,23],[0,2],[1,9],[-2,6],[-4,-5],[-4,-3],[-4,6],[-3,11],[-1,2],[-4,0],[-12,-1],[-4,2],[-11,29],[-7,9],[-9,11],[-5,8],[-7,10],[-9,17],[-11,17],[-14,15],[-1,7],[0,1],[0,2],[-1,3],[-1,2],[-1,1],[-5,-1],[-5,4],[-4,8],[-7,13],[-5,8],[1,8],[-1,10],[1,6],[0,6],[-2,4],[-3,11],[-3,9],[-5,11],[-3,5],[-3,8],[-3,10],[-2,6],[0,7],[1,7],[4,5],[2,3],[-3,2],[-2,0],[-4,-2],[-4,-3],[0,-7],[-1,-8],[-5,-1],[-3,-2],[2,-5],[-1,-4],[-3,-3],[-3,3],[-2,6],[-2,7],[0,9],[-2,3],[2,3],[5,1],[2,4],[4,5],[3,4],[3,7],[2,7],[4,5],[3,6],[1,11],[2,6],[0,31],[-2,10],[-4,9],[-5,3],[-4,-5],[-4,-13],[-1,-37],[-2,-17],[-8,-15],[-3,5],[-4,-7],[-1,-8],[0,-6],[-1,-4],[1,-5],[0,-7],[-1,-9],[-1,-4],[-4,-2],[-11,16],[-11,11],[-10,5],[-6,1],[-8,0],[-6,0],[-9,-7],[-4,-14],[-2,-9],[-5,-7],[0,-14],[-3,0],[-6,-8],[-6,2],[-11,10],[-8,26],[-17,18],[-2,8],[-1,9],[-5,19],[-10,35],[-7,17],[-10,11],[-7,10],[-9,5],[-14,3],[-4,-2],[1,-8],[-3,-3],[-3,-2],[-3,3],[-13,24],[-4,20],[-5,14],[-9,18],[-9,11],[-9,9],[-8,2],[-8,6],[-10,-2],[-4,-2],[-2,-12],[-7,12],[-8,12],[-13,10],[-7,-10],[-4,6],[2,7],[0,6],[0,6],[-4,3],[-6,5],[-3,-3],[-3,12],[0,26],[1,26],[-2,22],[-5,26],[-6,12],[-2,4],[-7,9],[-5,1],[-5,16],[-9,7],[-14,11],[-10,9],[-5,-1],[-4,16],[-1,3],[-4,10],[-1,3],[-3,16],[-7,11],[-7,6],[-2,-1],[-2,-8],[-3,4],[-1,5],[-4,8],[1,3],[4,-6],[2,1],[2,11],[-1,7],[-2,6],[-2,5],[-3,3],[-4,0],[-2,-4],[-1,-6],[-1,-8],[-3,3],[-6,4],[-2,14],[-3,10],[-6,4],[-4,2],[-4,-7],[-3,8],[-3,7],[-3,11],[0,12],[-3,9],[-1,8],[-1,8],[-1,2],[-8,15],[8,6],[4,-2],[5,-7],[2,-9],[14,-2],[12,6],[11,-4],[4,0],[6,-3],[2,-7],[6,-2],[9,3],[6,-2],[7,-3],[4,0],[1,-6],[3,-3],[5,-2],[6,0],[9,-5],[9,-3],[9,5],[12,3],[9,-8],[9,9],[9,6],[8,11],[3,6],[3,5],[5,8],[5,8],[3,4],[3,2],[2,0],[4,-1],[1,-2],[1,-5],[0,-5],[1,-11],[-1,-9],[-2,-10],[-1,-7],[-2,-6],[2,-9],[7,-17],[5,-5],[6,-12],[5,-6],[8,-3],[5,-7],[7,-6],[4,-7],[3,-9],[2,-4],[0,-6],[2,-3],[3,0],[-1,-6],[1,-5],[2,3],[3,4],[2,5],[1,4],[4,7],[3,7],[1,9],[-2,4],[-2,-3],[-1,4],[0,2],[-1,2],[-2,-2],[-2,0],[0,4],[1,2],[3,1],[3,2],[2,-2],[0,-4],[1,-3],[4,2],[2,-2],[1,-5],[2,-3],[5,-4],[7,-3],[4,1],[1,2],[2,6],[2,5],[1,6],[4,5],[1,8],[-1,5],[-3,5],[-3,1],[-1,3],[-4,4],[-3,1],[-2,2],[0,4],[-2,3],[-1,-1],[-2,-3],[-3,0],[-3,-1],[-2,0],[-1,1],[-3,10],[-2,10],[-2,5],[-2,5],[-2,1],[-1,-2],[1,-5],[2,-9],[0,-7],[2,-3],[2,-5],[1,-7],[0,-4],[-3,0],[0,-3],[0,-4],[-1,0],[-2,3],[-3,0],[-2,-4],[-3,-4],[-4,-2],[-3,1],[-3,2],[-2,6],[-2,4],[0,7],[-1,8],[-2,6],[-3,5],[-3,9],[0,8],[0,8],[0,6],[2,4],[1,7],[5,11],[3,8],[1,7],[-1,2],[-3,1],[-1,1],[-1,2],[2,2],[2,2],[1,4],[-2,1],[-2,2],[-2,3],[-1,4],[1,4],[1,5],[-3,3],[-2,1],[-2,-3],[0,-5],[-2,-4],[-2,-2],[-2,-3],[-3,-3],[-3,1],[-5,-4],[-3,-7],[-2,-5],[-3,-3],[-3,8],[1,9],[1,8],[2,9],[3,5],[5,9],[2,7],[4,9],[2,3],[6,13],[8,24],[6,12],[4,2],[2,-16],[-1,-10],[-5,-7],[-3,-5],[-1,-5],[-1,-6],[4,-9],[2,-10],[0,-6],[7,-20],[3,18],[1,11],[-1,11],[-4,11],[-3,-2],[-1,3],[0,4],[4,5],[4,-4],[5,-9],[2,-8],[4,7],[4,12],[1,6],[-3,0],[-3,3],[-3,7],[-5,1],[-4,-1],[0,10],[0,16],[-1,8],[-2,5],[0,3],[2,5],[4,13],[3,12],[3,10],[3,8],[-1,3],[-1,7],[-1,9],[-3,5],[-3,0],[-2,-5],[-3,2],[-2,5],[-3,3],[2,8],[2,10],[4,13],[5,21],[5,36],[3,17],[2,15],[-2,9],[-4,4],[-2,4],[1,10],[0,8],[-2,4],[-2,5],[-1,5],[-3,7],[-4,5],[-4,1],[-6,-1],[-3,3],[0,9],[1,12],[-1,14],[-2,13],[-2,6],[-3,3],[-7,-1],[-7,0],[-3,-4],[-7,3],[-1,8],[1,1],[0,6],[-1,7],[-7,4],[-4,14],[-9,2],[0,11],[-1,9],[-3,8],[0,11],[-3,10],[-6,-4],[-4,20],[1,12],[-4,11],[-5,-1],[-1,10],[-5,10],[-5,11],[-7,2],[-4,-2],[-2,-2],[-2,0],[-4,5],[-1,10],[-2,11],[-2,6],[-4,0],[-4,-9],[-4,19],[1,20],[-2,9],[-3,10],[-1,11],[-2,8],[-8,5],[-8,6],[-5,-10],[-4,12],[-2,15],[-2,6],[-1,14],[-1,7],[-3,3],[-9,1],[-12,22],[-6,16],[-8,17],[-13,26],[-13,28],[-37,24],[-23,6],[-12,36],[-15,24],[-24,16],[-14,23],[-8,14],[-7,4],[-6,-9],[-6,9],[-5,5],[-3,11],[-7,9],[-6,14],[-7,2],[-21,36],[0,12],[2,15],[1,17],[-1,12],[-2,11],[-1,17],[-6,13],[-2,9],[-4,7],[-5,4],[-13,1],[-1,7],[6,42],[2,32],[-2,18],[-1,4],[-2,8],[-1,5],[0,7],[2,19],[0,26],[-3,26],[-5,20],[-3,17],[-8,13],[-9,11],[-10,8],[-12,1],[8,13],[3,7],[1,8],[-2,9],[-4,9],[-5,8],[-4,3],[2,-9],[3,-7],[2,-7],[0,-10],[-3,-5],[-3,-1],[-1,5],[-4,5],[-2,-3],[-2,-6],[1,-5],[2,-2],[3,-7],[1,-13],[3,-17],[-7,0],[-2,19],[-4,29],[-6,23],[5,88],[-2,61],[-5,31],[0,11],[-3,7],[-11,3],[-13,23],[-6,1],[-7,19],[-5,13],[-2,8],[-7,18],[-5,4],[-11,-6],[-8,1],[-1,20],[4,23],[2,36],[3,35],[-9,42],[-32,71],[-12,40],[-3,8],[-1,2],[-5,10],[-2,4],[-4,3],[-5,9],[-4,2],[-3,4],[-1,4],[-1,4],[-2,6],[-10,16],[-2,6],[-6,9],[-2,8],[1,6],[-1,0],[4,2],[7,0],[-6,12],[1,9],[1,10],[3,16],[-2,11],[-4,11],[-2,3],[-4,4],[-7,1],[-7,17],[-3,8],[12,-5],[8,-10],[5,-2],[5,6],[3,11],[3,11],[2,18],[1,12],[0,12],[-3,9],[-10,4],[-5,3],[-5,12],[-7,7],[-5,1],[-5,4],[0,15],[-1,18],[-3,7],[-10,1],[-10,5],[-7,15],[-3,13],[0,21],[-3,37],[-5,27],[-5,24],[-3,9],[-4,8],[-5,5],[-12,6],[-4,7],[-14,54],[-4,21],[-5,20],[-3,10],[-1,10],[0,11],[-1,13],[0,7],[0,4]],[[18118,61340],[14,0],[1,-2],[0,-4],[-1,-4],[-1,-3],[-2,-2],[-2,-1],[-1,0],[-10,-2],[-5,3],[0,7],[7,8]],[[19181,61603],[4,-3],[4,-8],[2,-11],[0,-10],[-3,-11],[-5,-1],[-6,1],[-5,-6],[-4,9],[-4,6],[-4,5],[-12,11],[0,4],[1,10],[3,14],[4,11],[10,20],[6,-5],[7,-10],[4,-13],[-2,-13]],[[19218,61928],[2,-4],[2,-5],[3,-11],[-7,-11],[-3,-6],[-1,-6],[0,-1],[-1,1],[-1,5],[0,6],[1,5],[4,13],[1,6],[0,8]],[[20493,63101],[0,-12],[-1,-10],[-2,2],[-3,-3],[-7,6],[-2,9],[5,11],[5,-1],[3,2],[1,-2],[1,-2]],[[20443,63193],[5,-1],[4,0],[0,-6],[3,-5],[0,-5],[-5,-5],[-1,-9],[-1,-7],[-4,2],[-8,7],[-4,1],[-4,7],[-6,2],[-3,10],[5,9],[4,6],[3,-1],[3,2],[3,-5],[6,-2]],[[20413,63260],[-1,-5],[1,-6],[0,-4],[-2,-2],[0,-4],[-2,-3],[-1,-4],[-1,-5],[-1,2],[-1,-1],[0,3],[1,4],[-2,4],[-2,1],[-11,8],[-11,14],[0,2],[1,3],[0,4],[-2,6],[-2,8],[-3,7],[-1,4],[2,3],[0,6],[0,6],[-3,6],[5,2],[6,-4],[6,1],[3,-4],[11,-10],[4,-6],[-1,-6],[0,-7],[3,-7],[2,-4],[2,-5],[1,-2],[1,-2],[-2,-3]],[[20371,63366],[0,-4],[2,-2],[0,-7],[-2,-4],[2,-5],[-6,-7],[-3,11],[1,9],[2,8],[2,-2],[2,3]],[[19490,64816],[3,-9],[4,-16],[1,-7],[2,-9],[-1,-11],[-3,2],[-5,2],[-9,2],[-3,3],[1,4],[-4,10],[-4,14],[-4,21],[-3,19],[1,5],[1,5],[-5,24],[1,21],[0,9],[2,-1],[2,-7],[0,-8],[3,-8],[2,-5],[2,-6],[3,-13],[3,-13],[4,-8],[4,-17],[2,-3]],[[19010,64907],[7,-3],[8,-6],[12,-16],[1,-4],[-20,17],[-7,2],[-10,2],[-12,-6],[-7,-2],[-3,4],[3,6],[2,4],[3,-2],[5,1],[8,2],[5,-1],[5,2]],[[18957,64948],[8,-31],[5,-9],[3,1],[1,-5],[-2,-9],[2,-6],[-2,-10],[-3,-8],[1,-11],[-9,23],[-5,11],[-14,19],[-10,17],[-8,13],[-10,11],[-2,4],[-3,2],[-4,9],[-10,9],[-7,5],[-1,4],[5,8],[5,-5],[3,0],[15,0],[7,-1],[4,2],[4,-6],[4,1],[0,-7],[2,-8],[2,-4],[1,-7],[6,-2],[6,-2],[6,-8]],[[19354,64988],[3,-6],[3,-1],[0,-9],[2,-7],[2,-4],[-1,-7],[-4,-1],[-2,-6],[2,-8],[-3,-4],[-1,-5],[-1,-10],[-6,1],[-1,5],[-1,4],[1,7],[-1,3],[-3,1],[-2,-4],[0,6],[-1,4],[5,4],[-1,3],[-2,1],[0,3],[-3,2],[-2,3],[-1,5],[-1,10],[2,4],[-3,4],[0,4],[4,3],[2,4],[-3,-1],[-3,4],[1,6],[-3,-1],[-1,4],[1,5],[-2,2],[-1,4],[4,7],[1,6],[3,-3],[2,-7],[1,-4],[3,-6],[1,-6],[-1,-9],[5,-1],[6,-9]],[[19247,65331],[0,5],[1,1],[1,-1],[2,-5],[3,-17],[5,-8],[7,-2],[8,-4],[6,-5],[0,-4],[2,-3],[3,-4],[-1,-5],[2,-5],[1,-10],[-1,-15],[3,-12],[2,-6],[1,-8],[4,-13],[2,-6],[-2,-2],[-5,-2],[-3,0],[-3,-1],[-2,-5],[-1,2],[1,3],[2,5],[0,4],[-3,3],[-3,5],[-4,4],[0,2],[-3,4],[-3,-1],[-3,-1],[0,4],[1,4],[-2,9],[-3,2],[-1,10],[0,5],[-2,5],[-2,5],[0,5],[0,9],[-2,5],[-4,0],[-3,6],[-2,-1],[-1,7],[0,8],[1,5],[0,7],[1,12]],[[18860,65048],[2,-6],[5,-13],[2,0],[0,-6],[2,-4],[2,-8],[-1,-8],[-2,1],[-7,5],[-3,5],[1,3],[-2,12],[-2,9],[-4,7],[-2,4],[-3,0],[-4,15],[-3,2],[-1,4],[2,4],[0,6],[2,1],[2,-1],[2,0],[2,6],[1,10],[-1,10],[-2,10],[-3,7],[-3,7],[-2,5],[-4,6],[-5,5],[-2,2],[-3,2],[-3,0],[-3,0],[-1,-1],[-2,-2],[-1,-4],[0,-4],[1,-11],[0,-1],[-3,5],[-1,9],[-9,11],[1,6],[0,3],[0,1],[3,2],[4,16],[5,27],[14,78],[5,27],[7,56],[6,42],[0,16],[1,6],[4,0],[1,-26],[-2,-12],[-4,-23],[-4,-13],[-3,-39],[-3,-17],[2,-9],[1,-6],[0,-8],[1,-6],[1,-5],[0,-8],[-3,-3],[-2,3],[-2,-8],[-1,-5],[1,-18],[-3,-4],[2,-15],[2,-6],[2,-5],[-2,-3],[-4,0],[-2,0],[-1,-3],[0,-4],[-2,-4],[1,-5],[1,-9],[0,-4],[3,-4],[3,-3],[1,-4],[1,-2],[2,-1],[0,-1],[-2,-1],[1,-1],[3,-8],[1,-9],[6,-13],[2,-6],[0,-7],[0,-4],[1,-2],[1,1],[3,-11],[-3,-9],[-2,-4],[-2,-5],[-1,-5],[1,-4],[1,-6],[9,-10]],[[19769,65528],[3,-4],[6,-16],[3,-5],[-5,-6],[-9,8],[-10,12],[-7,7],[-2,0],[-3,2],[-2,2],[-2,0],[-17,0],[-4,3],[-2,9],[32,-1],[5,-2],[14,-9]],[[19232,65627],[-6,6],[-6,24],[1,18],[3,12],[3,9],[2,1],[1,-10],[3,-1],[-2,-11],[2,-16],[2,-30],[-3,-2]],[[19144,65866],[3,-1],[0,-6],[1,-2],[0,-6],[0,-4],[-2,3],[-2,1],[-2,6],[-2,1],[-2,7],[-3,0],[-2,-2],[0,-4],[0,-6],[-3,-8],[-3,-6],[-3,-11],[-6,-12],[-2,-6],[1,-3],[-1,-10],[0,-9],[-2,-5],[-2,-1],[-2,-6],[0,-12],[1,-9],[-1,-4],[-3,7],[-2,1],[-3,4],[1,4],[-1,7],[0,5],[4,12],[0,8],[2,19],[0,7],[3,8],[1,7],[2,9],[4,5],[1,6],[0,9],[1,12],[-2,7],[0,5],[4,1],[7,5],[0,6],[2,3],[2,-5],[5,-4],[6,4],[2,5],[5,2],[-4,-11],[-3,-15],[0,-18]],[[19432,66511],[2,1],[5,-3],[9,-8],[8,-11],[5,-18],[-2,0],[-6,17],[-6,8],[-8,8],[-5,2],[-2,4]],[[19276,66648],[0,24],[0,14],[2,14],[2,6],[-2,-23],[1,-27],[5,-11],[13,-8],[-1,-9],[-15,11],[-5,9]],[[18001,67254],[3,-16],[3,-3],[0,-6],[2,-8],[1,-15],[-3,-15],[1,-13],[3,-12],[1,-13],[-1,-12],[1,-6],[-2,-7],[-3,-3],[-1,-4],[-2,-6],[1,-7],[-2,-5],[2,-10],[-2,-8],[3,-9],[-1,-4],[0,-4],[-2,2],[-2,2],[-3,2],[-3,-4],[-3,-2],[-2,5],[-3,-1],[-2,4],[-2,17],[-5,10],[-7,5],[-5,-5],[-4,-1],[-3,-8],[-3,7],[2,20],[5,5],[16,38],[10,26],[-5,18],[-2,21],[2,17],[2,18],[4,7],[6,5],[6,-11],[-1,-11]],[[18640,67453],[10,-3],[15,-21],[4,-8],[2,-4],[1,-4],[5,-4],[1,-5],[2,-2],[-3,-6],[-3,-3],[-2,3],[-1,3],[-2,0],[-2,14],[-3,5],[-6,4],[-3,9],[-7,2],[0,4],[-1,3],[-2,5],[-2,4],[-3,4]],[[18718,67481],[4,2],[2,2],[6,-2],[4,3],[2,-3],[1,-6],[1,-4],[-1,-6],[0,-9],[-2,-8],[-5,-2],[-6,2],[-3,-2],[1,5],[-3,16],[-1,12]],[[18812,67507],[-4,-3],[-5,-10],[-5,9],[-5,2],[-4,-4],[-2,8],[-4,1],[-5,11],[-4,5],[-4,-2],[-2,3],[-6,-1],[-3,3],[0,8],[-7,2],[-1,6],[-7,7],[-8,8],[-3,6],[-3,0],[-3,4],[7,10],[9,10],[4,11],[2,3],[1,5],[1,6],[1,5],[2,7],[-1,6],[-3,5],[-1,25],[1,26],[2,25],[3,22],[2,8],[3,8],[3,7],[4,5],[4,-8],[6,0],[6,9],[5,8],[5,2],[8,-1],[4,2],[4,6],[2,5],[4,3],[-1,-5],[-4,-8],[2,-9],[3,-7],[0,-3],[-1,-5],[0,-5],[-1,-6],[1,-8],[-1,-9],[10,-24],[11,-44],[-5,-21],[0,-19],[-4,-30],[-4,-9],[2,-7],[-5,-12],[-1,-11],[-4,-9],[-1,-10],[1,-13],[3,-2],[2,-7],[-2,-3],[-4,3]],[[18573,67682],[3,-2],[2,-3],[5,-2],[-4,-16],[0,-7],[0,-17],[-2,1],[-4,8],[-3,2],[-3,8],[-9,7],[-2,11],[-5,5],[-4,2],[-4,6],[-2,7],[-2,4],[-1,9],[-4,8],[-4,10],[-3,7],[-3,1],[-2,5],[-4,3],[-5,6],[-3,10],[-7,6],[-5,8],[-7,19],[1,5],[-2,9],[-4,8],[-4,-1],[-5,0],[-4,4],[-2,7],[0,11],[-2,6],[-4,5],[-2,9],[-2,3],[-1,7],[-4,7],[-1,5],[-3,6],[-5,7],[-1,15],[1,13],[5,13],[2,18],[-1,9],[-1,10],[3,2],[1,-3],[2,-3],[4,3],[3,3],[0,4],[4,-1],[0,-7],[3,-1],[6,-2],[4,-8],[9,-15],[3,-16],[7,-4],[0,-5],[3,-5],[0,-4],[3,-8],[4,-12],[-1,-5],[4,-6],[-3,-6],[-4,-7],[-1,-10],[1,-6],[1,-15],[7,-8],[11,-3],[2,-6],[4,0],[2,5],[4,0],[2,-2],[5,2],[5,0],[4,-2],[6,2],[4,-8],[-3,-9],[1,-13],[1,-7],[0,-12],[0,-7],[2,-3],[-2,-6],[0,-13],[0,-17],[1,-5],[3,-12],[1,-4],[-1,-6],[3,-10],[3,-1]],[[18115,69304],[8,-3],[13,-20],[11,-26],[5,-18],[-4,0],[-3,3],[-3,4],[-2,5],[-6,-9],[-13,12],[-10,24],[4,28]],[[25741,61445],[1,5],[1,5],[2,5],[2,5],[-5,-20],[2,-26],[-4,-20],[-11,-31],[-1,0],[1,4],[4,12],[3,8],[2,5],[1,15],[2,33]],[[25758,61567],[4,-9],[2,-28],[0,-15],[-4,-13],[1,17],[-3,48]],[[24555,61587],[13,11],[4,1],[2,-4],[1,-5],[1,-6],[0,-9],[-1,2],[-1,2],[-6,-8],[-3,-3],[-4,-1],[1,4],[2,4],[2,2],[3,2],[-6,-1],[-9,-8],[-4,1],[-11,-31],[-8,-14],[-10,-4],[6,21],[-15,-18],[-8,-8],[-9,-3],[-5,0],[-2,1],[1,4],[4,9],[3,4],[13,11],[7,3],[15,17],[11,14],[13,10]],[[25903,62665],[0,2],[2,0],[1,-2],[1,-4],[-1,-2],[-3,-9],[-10,-34],[-4,-19],[-4,-10],[-9,-14],[-3,-10],[-7,-26],[-1,-11],[-1,-3],[-3,-3],[-3,-4],[-1,-6],[-1,-4],[-3,-6],[-14,-27],[-5,-5],[-2,6],[0,12],[-4,25],[-1,13],[1,25],[3,23],[11,42],[9,24],[2,2],[4,8],[2,2],[3,0],[1,-1],[2,-2],[1,-1],[3,-1],[7,-6],[2,-1],[4,2],[6,7],[4,-1],[5,3],[4,7],[2,9]],[[25916,63024],[-5,8],[-6,18],[-2,18],[2,9],[1,-13],[3,-14],[7,-26]],[[22874,63373],[11,-14],[3,-8],[-2,-6],[-8,2],[-7,20],[-4,27],[-2,23],[4,-8],[2,-12],[1,-13],[2,-11]],[[22829,63925],[5,25],[2,7],[1,-11],[-3,-19],[-6,-17],[-7,-6],[2,7],[4,9],[2,5]],[[17152,67697],[6,-17],[3,-27],[-3,-11],[3,-22],[-2,-26],[-7,-18],[-5,0],[-3,-4],[-2,0],[0,-6],[-3,5],[1,7],[3,2],[-2,14],[-2,9],[1,10],[-1,12],[-5,8],[4,10],[-3,16],[-3,9],[-3,6],[-6,10],[0,9],[-2,9],[-1,10],[1,10],[2,10],[6,9],[7,4],[4,9],[6,2],[5,-5],[-4,-9],[-4,-8],[0,-9],[2,-12],[3,-11],[4,-5]],[[18543,66296],[4,5],[3,-1],[2,-2],[3,-3],[-1,-3],[3,-2],[1,2],[1,2],[2,1],[1,-1],[4,-9],[4,-13],[2,-6],[1,-5],[-3,0],[-2,4],[-3,3],[-7,6],[-9,5],[-7,4],[-3,2],[-2,2],[2,5],[4,4]],[[25093,63718],[-6,6],[-2,4],[1,7],[-2,11],[1,4],[4,3],[6,10],[1,15],[-5,12],[-4,9],[-1,12],[-7,8],[-7,5],[-5,-4],[-1,-8],[-3,2],[1,8],[3,8],[3,10],[5,4],[10,-10],[10,-15],[9,-26],[4,-22],[-3,-30],[-4,-18],[-4,-7],[-4,2]],[[19281,65176],[4,4],[1,3],[1,-2],[0,-7],[0,-2],[1,-3],[0,-4],[-2,1],[0,4],[-1,0],[-2,-1],[-2,5],[0,2]],[[17846,65248],[0,-1],[0,1]],[[19246,65456],[2,0],[3,1],[1,3],[1,-2],[-2,-4],[-2,-8],[-1,-10],[-2,-4],[-2,-3],[-2,0],[0,4],[-2,7],[1,6],[5,10]],[[18859,65562],[1,3],[1,-2],[0,-8],[1,-10],[-1,-15],[0,-11],[-2,-12],[-1,-17],[2,-12],[-1,-10],[-2,-7],[-1,-8],[0,-10],[-1,-1],[-3,4],[-2,5],[1,9],[3,9],[2,20],[1,25],[2,23],[1,11],[-1,14]],[[19150,65690],[0,4],[4,0],[0,3],[2,1],[2,-6],[2,-4],[1,-2],[2,-9],[-1,-6],[-2,-5],[-1,-5],[-2,1],[-3,7],[-1,3],[1,5],[-2,9],[-2,4]],[[19095,65756],[1,-1],[0,-5],[2,-2],[-1,-2],[1,-3],[1,-2],[-1,-2],[0,-4],[1,-3],[0,-3],[-1,-1],[-2,5],[-1,5],[0,6],[0,6],[-1,5],[1,1]],[[19087,65942],[3,6],[2,0],[1,-1],[1,-5],[-1,-5],[-1,-2],[2,-2],[-1,-4],[-3,0],[-2,0],[-1,-1],[1,2],[1,3],[0,2],[-2,3],[0,4]],[[18862,66592],[-4,8],[6,13],[7,-11],[5,-14],[-2,-14],[-4,-9],[-6,3],[-1,12],[-1,12]],[[18919,66714],[-4,5],[1,7],[6,2],[5,-4],[2,-5],[-1,-5],[-6,-1],[-3,1]],[[17999,66988],[2,-1],[3,-5],[4,-5],[2,-3],[1,-5],[-1,-5],[-3,-2],[-1,1],[-1,11],[-3,7],[-5,2],[-3,3],[1,4],[4,-2]],[[19059,67033],[-2,6],[2,6],[4,-12],[2,-9],[-5,2],[-1,7]],[[17890,67240],[2,-5],[2,3],[4,-1],[1,-3],[-3,0],[-1,-4],[-4,-2],[-3,4],[0,3],[0,4],[2,1]],[[18467,67700],[2,0],[2,-2],[0,-2],[-1,-3],[0,-2],[1,-3],[-1,-2],[0,-5],[2,-4],[0,-3],[1,-1],[0,-4],[1,-2],[0,-2],[-2,0],[-2,2],[1,3],[-1,3],[-2,2],[1,3],[0,2],[-1,1],[0,4],[0,4],[-2,2],[0,4],[-2,4],[3,1]],[[18217,68228],[5,0],[0,-10],[1,-5],[-3,-1],[-4,4],[2,6],[-1,6]],[[17746,68530],[1,-1],[2,-4],[0,-3],[-3,0],[-3,1],[0,4],[3,3]],[[17429,69670],[2,-2],[1,-2],[1,-6],[0,-4],[0,-5],[-1,0],[-1,6],[0,5],[-1,2],[-1,6]],[[25471,61415],[0,-3],[5,-8],[-6,-15],[-21,-31],[-2,-9],[3,-9],[4,-1],[13,13],[-1,-9],[-3,-9],[-6,-17],[-2,-5],[1,-3],[2,1],[2,3],[5,11],[9,13],[5,5],[4,1],[7,-1],[8,-8],[3,-3],[6,2],[9,12],[9,6],[3,1],[2,-2],[-1,-9],[-1,-5],[-6,-9],[-6,-5],[-1,-3],[0,-6],[2,-2],[2,2],[2,7],[2,4],[3,2],[3,1],[1,-3],[2,-70],[-2,-54],[-1,-10],[-4,-14],[-1,-9],[-10,-54],[-5,-7],[-12,-46],[2,-16],[-3,-49],[-7,-49],[-2,-10],[-7,-17],[-3,-11],[-2,-13],[2,-14],[3,-7],[10,-11],[2,-8],[3,-5],[11,-5],[3,-4],[-4,-12],[-7,0],[-7,2],[-3,-5],[-1,-9],[-4,-29],[-7,-50],[-3,-60],[0,-12],[-1,-23],[2,-13],[1,-11],[0,-1],[0,-6],[2,-13],[1,-8],[2,-3],[6,-4],[4,-9],[2,-11],[1,-13],[1,-19],[2,-14],[-1,-7],[-2,-2],[-2,1],[-3,-2],[-3,-6],[-4,-9],[-3,-11],[-1,-9],[1,-11],[5,-17],[1,-11],[1,0],[1,-1],[1,-3],[-1,-3],[-1,-1],[-3,1],[-2,0],[-3,-6],[-2,-4],[0,-5],[-1,-3],[-1,-3],[-1,-4],[-1,-6],[0,-7],[1,-9],[1,-6],[-3,-42],[-1,-7],[-3,-5],[-3,-7],[-3,-25],[-1,-7],[-1,-10],[2,-15],[-2,-6],[-2,-5],[-1,0],[-1,9],[8,67],[5,10],[2,6],[-7,-7],[-8,-39],[-6,-15],[2,0],[4,-4],[-2,-2],[-2,-1],[-1,1],[-3,2],[1,-5],[0,-3],[2,0],[3,0],[0,-4],[-3,-4],[-2,-6],[-1,-7],[1,-3],[1,-4],[-5,-9],[-6,-23],[-5,-5],[-1,-3],[0,-14],[0,-3],[-2,-2],[-1,0],[-1,1],[0,1],[-2,-3],[0,-1],[-1,-1],[-1,-3],[-3,-18],[-2,-3],[-2,-2],[-7,-20],[-1,-3],[-1,-8],[-1,-3],[0,-2],[0,-5],[0,-1],[-1,-1],[-2,1],[-1,0],[-1,-2],[-3,-1],[-1,-2],[-1,-2],[-1,-9],[0,24],[-2,0],[-2,-13],[-4,-2],[-4,5],[-2,8],[-1,3],[-2,1],[-2,-1],[-1,-1],[-1,-2],[0,-10],[0,-4],[-2,-2],[-10,-2],[-1,-3],[-2,-2],[-2,-3],[-3,-1],[-4,-4],[-1,-9],[0,-23],[-1,-12],[-2,-9],[-4,-6],[-5,-2],[-2,-1],[-1,-4],[-2,-4],[-1,-11],[-2,-3],[-2,-2],[-3,-3],[-3,-5],[-1,-3],[-1,-4],[-1,-7],[0,-6],[-1,-5],[-7,-5],[-5,-5],[-4,-8],[-3,-8],[-1,-15],[5,-25],[-1,-14]],[[25600,60767],[4,7],[3,-11],[5,-28],[-2,-5],[0,-6],[0,-14],[-2,0],[0,7],[0,2],[-2,-1],[-1,-2],[0,-2],[-1,-4],[0,36],[-1,15],[-3,6]],[[25603,60860],[3,0],[4,-2],[4,-6],[2,-11],[-2,-9],[-5,-24],[-4,-10],[-3,-10],[-4,-5],[-5,9],[-3,-10],[-4,-6],[-3,-7],[-2,-14],[-2,-27],[0,-4],[-2,-6],[-1,-7],[0,-9],[-4,8],[1,2],[0,2],[0,2],[1,3],[0,12],[3,21],[1,28],[2,10],[4,7],[5,7],[6,12],[2,0],[4,-3],[4,-1],[3,5],[2,12],[0,12],[-2,8],[-3,-6],[-3,-3],[-2,1],[0,3],[3,16]],[[25534,60917],[4,-6],[2,-15],[3,-31],[-2,0],[-1,6],[-3,14],[-3,32]],[[25511,60942],[6,5],[15,22],[4,3],[-3,-19],[-6,-12],[-9,-6],[-9,-1],[0,2],[0,2],[2,4]],[[25579,61145],[2,0],[-2,-26],[-6,-23],[-8,-18],[-12,-6],[0,4],[3,0],[1,0],[10,15],[3,10],[2,15],[-5,0],[2,18],[5,37],[0,3],[2,2],[1,3],[0,4],[1,6],[4,31],[2,6],[5,-4],[6,8],[3,-8],[-1,-13],[-3,-7],[-2,-7],[-6,-32],[-3,-10],[-2,2],[-2,2],[0,-6],[-1,-5],[-2,-3],[-2,-2],[0,-4],[2,-9],[2,8],[1,4],[0,5]],[[25529,60844],[5,-8],[2,-8],[0,-6],[-1,-3],[0,-3],[-1,-6],[-2,1],[-1,5],[0,12],[0,3],[-3,-1],[-2,2],[-2,4],[0,3],[-1,2],[0,4],[2,2],[4,-3]],[[25564,61183],[1,2],[1,-2],[0,-6],[-3,-4],[-3,-1],[0,3],[2,6],[1,2],[1,0]],[[25572,61200],[1,-3],[0,-6],[-2,-6],[-2,-4],[-1,1],[0,3],[-1,2],[1,2],[1,2],[2,2],[0,4],[1,2],[0,1]],[[25589,61253],[1,-1],[0,-3],[0,-3],[-1,-6],[-3,-6],[-1,2],[1,10],[1,4],[1,-1],[0,1],[-1,2],[0,1],[1,0],[1,0]],[[27063,56141],[3,-4],[27,-45],[16,-35],[10,-12],[8,11],[-1,-10],[-1,-8],[-8,-28],[0,-7],[0,-8],[3,-5],[3,-5],[2,-4],[0,-7],[-4,-6],[-7,1],[0,-7],[-2,-4],[1,-3],[1,-1],[2,0],[2,-4],[3,-7],[1,-8],[1,-7],[2,-6],[10,-13],[1,0],[2,7],[4,1],[1,2],[-3,11],[4,-2],[1,-6],[1,-7],[2,-6],[3,-1],[2,2],[1,7],[0,9],[2,0],[0,-8],[2,-4],[2,0],[1,2],[0,7],[1,5],[1,2],[2,-4],[0,2],[0,1],[1,1],[1,0],[0,-5],[1,-5],[1,-3],[2,-3],[2,0],[0,4],[2,0],[-1,-9],[0,-16],[-1,-7],[-9,11],[-4,3],[-7,1],[-3,-4],[-1,-11],[1,-11],[2,-6],[0,-4],[-2,1],[-4,3],[1,-9],[7,-7],[2,-6],[-2,-39],[-2,1],[-1,1],[-1,2],[4,-10],[7,-6],[7,-2],[5,6],[10,-7],[3,-4],[0,-5],[4,-14],[2,-3],[0,-2],[1,-4],[1,-2],[1,0],[3,0],[5,0],[13,8],[7,1],[3,-3],[3,-4],[4,-2],[5,2],[4,5],[2,7],[-1,7],[3,2],[3,1],[4,-3],[0,-3],[3,-4],[3,-3],[1,3],[3,2],[16,-16],[5,5],[2,10],[-1,24],[-19,23],[-10,30],[-2,6],[-4,3],[-5,8],[-5,8],[-1,6],[5,-1],[7,-3],[6,-2],[3,8],[-9,9],[-4,6],[2,7],[6,0],[4,-8],[7,-16],[6,-11],[1,-2],[0,-5],[-2,-2],[-3,1],[-2,2],[0,-4],[2,-6],[2,-5],[2,-9],[2,-1],[3,0],[7,-2],[4,-1],[7,-16],[4,-2],[4,-20],[2,-3],[4,-6],[16,-50],[12,-25],[5,-8],[2,-5],[3,-7],[3,-6],[2,-3],[3,-1],[5,-3],[3,0],[5,3],[15,-6],[3,2],[8,0],[6,-9],[15,-2],[11,5],[15,1],[10,3],[13,3],[11,4],[3,-2],[2,1],[3,4],[2,5],[22,16],[21,18],[5,4],[10,-1],[6,4],[3,7],[2,6],[6,16],[3,8],[3,4],[1,2],[1,4],[1,4],[2,2],[5,10],[6,6],[10,13],[4,4],[5,9],[16,17],[20,18],[27,19],[32,5],[4,3],[10,11],[2,3],[10,2],[10,6],[9,8],[8,9],[10,24],[11,20],[7,14],[1,7],[5,19],[7,6],[2,-1],[1,-5],[0,-22],[0,-6],[2,-4],[2,-3],[3,-1],[3,3],[2,11],[0,12],[2,6],[5,-8],[0,5],[-1,10],[-1,5],[1,-1],[1,-3],[2,4],[-3,10],[2,6],[3,-3],[6,1],[6,-6],[5,-18],[2,-7],[-1,13],[-2,10],[0,8],[3,10],[4,8],[8,7],[5,6],[1,2],[0,4],[1,2],[1,1],[2,7],[2,3],[4,6],[2,15],[2,15],[5,4],[2,4],[-1,3],[-3,-2],[-3,-2],[-1,4],[2,2],[1,3],[2,6],[4,4],[3,5],[2,6],[5,3],[5,-1],[5,3],[7,7],[5,-3],[2,-7],[1,-5],[0,-5],[-3,-3],[0,-4],[3,-2],[0,-2],[1,-4],[1,2],[1,1],[1,2],[1,3],[2,0],[2,-3],[2,-2],[5,-3],[1,5],[1,11],[2,-6],[2,-2],[2,1],[2,3],[10,-6],[16,-3],[18,-11],[9,-6],[12,-4],[6,6],[5,3],[6,-1],[5,-1],[5,3],[5,3],[9,2],[10,3],[11,2],[4,-5],[0,-6],[-5,-6],[-3,2],[-3,-5],[-3,0],[-8,-2],[-5,-2],[-3,-11],[1,-14],[1,-19],[5,-4],[5,3],[2,-3],[4,1],[4,1],[3,1],[3,-1],[3,0],[5,-4],[3,-2],[3,-5],[2,-3],[1,-5],[2,1],[4,0],[2,0],[3,-1],[3,1],[2,5],[3,1],[5,-2],[8,3],[2,6],[5,-2],[3,1],[3,2],[4,4],[3,-8],[4,-4],[4,1],[9,-6],[6,2],[4,-6],[4,-2],[4,4],[3,5],[5,4],[4,-2],[6,-8],[4,-3],[9,0],[4,-7],[3,3],[4,-3],[3,-6],[4,-6],[7,-7],[3,-4],[4,-2],[7,-4],[6,-6],[4,-7],[4,-4],[3,-3],[3,0],[3,-2],[4,-5],[4,-5],[5,-6],[5,-2],[4,1],[3,-2],[3,-4],[4,-1],[5,-7],[2,-7],[8,-4],[8,-2],[6,-4],[3,-6],[1,-8],[6,-13],[4,-2],[5,-4],[9,-23],[5,-15],[3,-11],[5,-13],[9,-13],[-1,8],[-2,7],[-3,14],[0,9],[5,-5],[3,-14],[3,-6],[7,-11],[1,-13],[3,-7],[4,-4],[4,-8],[1,-7],[2,-6],[3,-6],[1,-5],[-3,-11],[6,-13],[4,-18],[3,-7],[2,5],[1,-1],[1,-8],[5,-7],[6,-11],[6,-16],[5,-5],[-1,5],[-2,4],[-2,4],[0,6],[1,2],[3,-5],[3,-8],[1,-4],[8,-13],[-1,-11],[5,-9],[2,10],[3,-1],[2,-10],[-1,-10],[0,-9],[-1,-6],[3,-7],[9,-13],[6,-7],[9,-3],[9,1],[5,7],[1,-3],[2,-2],[1,-2],[2,-1]],[[28362,54754],[0,1],[-6,3],[-8,16],[-12,31],[-5,7],[-2,5],[-1,7],[1,6],[1,6],[0,6],[-1,6],[-2,3],[0,-1],[-1,-3],[-1,-1],[-2,2],[-1,4],[1,3],[1,-1],[-3,11],[-2,2],[-2,-4],[-2,0],[-7,16],[-4,8],[-4,4],[0,2],[-1,6],[-1,6],[-3,2],[-2,3],[-1,6],[-2,12],[-2,0],[-1,-9],[-1,6],[0,20],[-1,11],[-3,2],[-3,-4],[-1,-11],[-1,8],[0,5],[1,6],[0,6],[-1,6],[-1,4],[-3,6],[-6,16],[-4,7],[-5,1],[0,7],[-1,5],[-2,3],[-3,2],[3,11],[1,8],[0,8],[-2,10],[-9,27],[-1,7],[-2,19],[-6,16],[-7,14],[-6,13],[-3,19],[-2,19],[-1,7],[1,7],[0,5],[-5,20],[-1,7],[1,11],[4,11],[3,4],[3,-19],[4,-4],[5,1],[3,6],[8,-9],[10,12],[10,22],[4,22],[0,12],[-2,7],[-2,5],[-4,6],[-8,20],[-3,4],[0,5],[8,-2],[2,1],[4,4],[0,5],[-2,1],[-1,2],[0,2],[-1,3],[2,2],[2,6],[2,-3],[3,-7],[2,-2],[2,-2],[3,1],[4,1],[0,2],[3,10],[1,2],[0,16],[0,6],[1,1],[5,11],[1,6],[1,5],[0,12],[1,3],[3,3],[2,0],[1,-2],[2,-22],[0,-5],[3,-5],[5,-5],[5,-4],[4,-2],[3,-4],[2,-9],[5,-28],[3,-8],[3,-5],[5,-2],[1,1],[3,2],[3,-1],[2,-8],[2,-3],[2,-3],[3,-1],[4,0],[0,4],[-5,2],[-4,5],[-3,6],[-2,8],[14,-6],[8,-6],[4,-11],[7,-8],[2,-4],[0,-9],[1,-6],[1,-4],[3,-3],[3,3],[3,-3],[3,-8],[1,-10],[2,-7],[4,-2],[4,2],[3,9],[-8,-1],[-10,27],[-5,-2],[-14,38],[-3,4],[-4,5],[-25,10],[-6,5],[-4,8],[-4,12],[-1,13],[-6,26],[-2,16],[5,9],[-3,4],[-4,6],[-3,7],[-2,7],[-1,10],[1,6],[1,4],[1,5],[0,7],[-2,2],[-3,1],[-3,6],[-1,6],[0,6],[-1,5],[-3,3],[1,-5],[0,-15],[1,-6],[4,-5],[2,-1],[0,-2],[-1,-19],[1,-5],[4,-19],[0,-7],[-1,-5],[-2,0],[-5,18],[-3,10],[-3,4],[-5,0],[-3,-5],[-3,-9],[-1,-12],[-1,-9],[-5,-7],[-5,-5],[-5,-1],[-2,2],[-1,4],[0,6],[0,4],[2,4],[8,8],[1,-2],[1,-1],[2,-1],[0,19],[-1,18],[-5,32],[-2,0],[-2,-8],[1,-6],[3,-4],[2,-6],[0,-11],[-3,-8],[-1,-7],[2,-7],[0,-4],[-1,-1],[-1,-1],[-2,-2],[-1,5],[-2,3],[-1,2],[-1,2],[-1,5],[0,1],[1,0],[1,2],[3,12],[0,5],[-4,4],[1,-8],[-1,-3],[-1,-2],[-2,-4],[-3,-16],[-5,-1],[-2,6],[-3,20],[-2,-5],[0,-7],[-4,-12],[-5,-11],[-4,-2],[-3,10],[-2,35],[-3,12],[2,4],[0,4],[-2,0],[0,-4],[-2,0],[0,12],[-1,0],[-1,-15],[5,-29],[2,-28],[6,-9],[1,-10],[-8,-35],[-1,5],[-2,3],[-2,2],[-1,0],[-1,2],[-7,17],[-3,4],[2,7],[-1,11],[-1,10],[-2,8],[-2,-3],[-1,-4],[0,-4],[-1,-5],[-1,5],[-3,9],[-1,6],[0,9],[2,20],[-2,10],[-8,23],[-4,7],[5,0],[3,-2],[2,-1],[4,3],[-5,8],[-1,6],[0,21],[-17,10],[1,9],[1,3],[-2,0],[-1,-1],[-1,-3],[-2,3],[-3,0],[-2,-2],[-2,-1],[-2,3],[-2,7],[-2,14],[4,7],[1,11],[0,12],[-2,11],[-2,0],[0,-9],[1,-13],[0,-8],[-4,1],[-5,-10],[-8,23],[-8,0],[-6,7],[-5,25],[-4,8],[0,4],[2,0],[0,4],[-5,3],[-2,6],[-2,6],[-3,6],[2,-10],[1,-8],[-2,-6],[-5,-5],[-4,-1],[-3,2],[-5,14],[-2,9],[-1,12],[-2,9],[-36,41],[-15,6],[-7,11],[-1,3],[0,6],[0,3],[2,4],[0,5],[0,12],[0,11],[-2,6],[-6,1],[0,5],[6,1],[5,5],[3,8],[2,10],[1,0],[3,-8],[3,0],[4,8],[6,4],[2,3],[2,6],[-2,-2],[-4,-1],[-2,-1],[-2,-4],[-4,-8],[-1,-1],[-2,1],[-1,4],[-1,3],[-2,0],[-2,-3],[-3,-11],[-2,-2],[-1,-1],[-1,-3],[-1,-3],[-3,-1],[-2,0],[-2,-2],[-2,-2],[0,-5],[1,-4],[4,-2],[3,-5],[1,-12],[-1,-8],[-3,-10],[-4,-7],[-4,2],[-2,2],[-7,4],[0,3],[-1,4],[-2,2],[-1,-7],[-4,-3],[-23,8],[-7,-3],[-2,0],[0,4],[-6,-4],[-16,3],[-6,-7],[-3,4],[-2,0],[-3,-3],[-5,-2],[-3,-2],[-3,-1],[-2,-1],[0,-3],[0,-3],[-1,-1],[-1,-2],[-8,-10],[-1,-6],[1,-5],[-1,-4],[-3,-1],[5,-18],[1,-7],[-4,6],[-4,9],[-4,11],[-1,11],[-2,0],[0,-4],[1,-2],[1,-3],[0,-3],[-2,0],[2,-15],[-1,-13],[-4,-6],[-7,5],[-12,-5],[-4,-4],[1,-7],[0,-4],[-3,2],[-2,3],[-2,1],[-3,-2],[0,2],[-1,1],[-2,1],[0,-4],[1,-2],[0,-3],[1,-3],[-5,1],[-5,-5],[-3,-8],[-3,-9],[-1,-11],[1,-35],[1,-4],[1,-1],[2,-2],[0,-2],[0,-3],[-1,-3],[-1,-4],[0,-4],[-1,-5],[-2,-5],[-1,-4],[-1,-2],[-4,-3],[-3,-2],[-1,-2],[1,-3],[-1,-2],[-5,-3],[-4,-4],[3,-8],[10,-4],[9,7],[8,9],[3,4],[1,3],[2,0],[0,-5],[-1,-5],[-10,-15],[-11,-21],[-5,-5],[-9,-6],[-11,-5],[-2,-6],[1,-7],[-1,-4],[-1,-2],[-1,-1],[-3,-2],[-1,-1],[-5,-8],[-2,-3],[-2,-1],[-2,-3],[-2,-11],[-2,-3],[0,-2],[-6,-11],[-20,-27],[-11,-15],[-12,-14],[-20,-21],[-8,-7],[-13,-4],[-3,1],[-3,2],[-2,1],[-2,-2],[-5,-5],[-2,-1],[-8,4],[-4,5],[-1,4],[1,3],[-3,-2],[0,-3],[1,-3],[-1,-4],[-6,-7],[-17,-37],[-2,-11],[1,-57],[-1,-6],[0,-2],[-2,-6],[4,-4],[2,-12],[2,-11],[2,-5],[4,-2],[11,-10],[3,-5],[10,-6],[5,-21],[4,-25],[4,-17],[27,-45],[17,-32],[25,-69],[13,-50],[3,-17],[0,-12],[-4,-22],[-2,-5],[-4,-2],[-7,-1],[-3,-1],[-19,-15],[-18,0],[-3,-4],[-3,3],[-8,4],[-2,5],[-2,0],[-3,-3],[-9,-5],[0,-4],[4,0],[3,2],[2,2],[3,3],[2,-3],[-20,-14],[-8,-12],[-1,-15],[5,-17],[-1,-5],[-7,-2],[-2,-2],[-2,-2],[-2,-4],[-1,-3],[0,-6],[-2,-2],[-3,-2],[-2,-4],[-2,-5],[1,-4],[-1,-3],[-2,-4],[-2,0],[-5,3],[-3,1],[-34,-9],[-2,-1],[-31,-12],[-22,-1],[-6,3],[-1,0],[-2,-3],[-1,-2],[-2,2],[-1,3],[-2,0],[-4,-8],[-3,4],[-4,16],[-2,2],[-2,3],[-2,2],[-3,1],[-3,2],[0,4],[1,4],[2,2],[1,3],[0,13],[0,5],[1,4],[4,5],[1,3],[1,8],[0,10],[-1,10],[-7,9],[0,11],[3,19],[-2,7],[-10,23],[-1,2],[-2,4],[-1,4],[3,4],[1,5],[0,6],[1,5],[1,7],[-3,9],[-4,7],[-2,4],[0,4],[2,0],[0,4],[-14,28],[-3,4],[-2,1],[-1,2],[1,6],[1,5],[2,4],[3,1],[3,-2],[-1,5],[-3,5],[-4,4],[-2,2],[-1,3],[5,17],[-3,0],[-2,1],[-3,1],[-1,3],[1,0],[1,0],[0,1],[0,2],[-7,3],[-2,9],[0,9],[2,4],[2,1],[1,3],[2,3],[3,1],[3,0],[3,1],[2,3],[0,8],[-2,0],[-6,-8],[-2,16],[1,37],[-6,-24],[-4,-8],[-4,12],[-1,0],[0,-7],[1,-4],[2,-4],[2,-2],[0,-4],[-12,0],[-3,1],[-3,6],[-4,1],[-7,4],[-1,10],[-1,8],[-5,3],[3,-3],[1,-2],[0,-4],[-4,-2],[1,-5],[5,-9],[5,-5],[1,-1],[-1,-5],[-1,-4],[0,-4],[5,-21],[-3,-15],[-6,-13],[-6,-9],[-1,5],[0,3],[0,2],[1,2],[0,5],[-4,0],[-4,0],[0,-5],[3,-1],[2,-4],[3,-11],[-4,-3],[-1,1],[-3,2],[2,-7],[2,-5],[2,0],[4,4],[4,4],[1,-7],[-1,-26],[0,-6],[1,-4],[-1,-6],[-1,-3],[-4,-5],[-1,-4],[-2,0],[-2,4],[-9,10],[-2,0],[-2,8],[-3,3],[-7,-1],[-23,14],[-7,-1],[-1,6],[-2,6],[-2,5],[-2,3],[-7,-4],[-8,2],[-6,6],[-1,8],[3,2],[5,6],[3,6],[-11,7],[-3,-2],[0,-11],[-7,10],[-3,2],[0,5],[2,5],[-2,5],[-2,5],[-2,7],[1,9],[1,7],[4,10],[0,4],[-2,3],[-2,1],[-2,-1],[-2,-3],[-1,0],[-2,4],[0,5],[2,4],[0,4],[-2,3],[-4,0],[1,9],[0,10],[1,6],[5,-4],[0,5],[-2,4],[-3,7],[1,4],[-1,9],[2,7],[-4,-3],[-1,1],[-1,0],[0,-8],[1,-8],[1,-4],[-1,-2],[-2,0],[-2,2],[0,4],[-1,4],[-1,6],[-5,15],[-2,5],[-3,23],[-2,6],[-2,-9],[0,-5],[0,-6],[-3,6],[0,9],[-1,8],[-4,5],[0,4],[2,-3],[3,-1],[1,1],[2,3],[2,0],[1,-2],[3,-2],[-10,37],[-6,16],[-3,9],[-1,11],[-1,0],[-2,-7],[-1,-6],[1,-5],[3,-2],[-1,-5],[-4,-10],[-2,-5],[-2,0],[-5,8],[-22,18],[-2,3],[-12,6],[-4,1],[-3,4],[1,9],[5,16],[-3,-3],[-4,-5],[-3,-7],[-1,-8],[-2,-2],[-4,5],[-6,11],[-4,-6],[-9,1],[-9,6],[-4,8],[-2,0],[-1,-11],[-7,-33],[0,1],[-1,2],[-1,0],[0,-4],[-2,0],[3,14],[0,4],[-3,-2],[1,5],[0,3],[1,3],[2,1],[0,4],[-4,0],[-4,-6],[-4,-2],[-3,2],[-3,8],[-3,2],[0,4],[1,1],[2,2],[1,2],[-3,18],[0,8],[1,6],[0,4],[-2,3],[0,3],[1,3],[1,3],[0,-1],[0,-2],[1,-1],[1,0],[-1,8],[0,6],[2,4],[5,3],[-7,0],[-3,-1],[-2,-2],[-4,-19],[0,-3],[-6,1],[-4,4],[-2,7],[1,13],[-4,-5],[-5,-3],[-5,0],[-5,3],[1,-4],[0,-8],[1,-4],[-5,-1],[-8,-9],[-3,-2],[-5,3],[-4,7],[-1,7],[5,4],[0,3],[-2,2],[-2,4],[0,4],[0,6],[-3,-4],[0,-7],[-1,-8],[-5,-5],[0,-4],[1,-3],[1,-4],[1,-5],[0,-4],[-5,-2],[-2,0],[-2,2],[-7,-3],[-12,7],[-19,16],[-10,5],[-11,0],[-11,-4],[-20,-13],[-8,-10],[-7,-14],[-4,-21],[0,-24],[1,-25],[7,-40],[0,-4],[-4,-8],[-1,-9],[-3,-5],[-5,6]],[[27275,54785],[3,3],[2,-1],[3,-1],[4,-1],[-4,-5],[-3,-16],[-3,-7],[1,-3],[1,-5],[-2,0],[-4,27],[0,5],[-1,3],[0,2],[1,3],[2,0],[1,-1],[-1,-3]],[[27458,54948],[4,4],[5,3],[8,5],[4,-3],[4,-1],[8,0],[-4,-13],[-2,-5],[-3,-3],[-3,-3],[-2,-1],[-3,3],[-1,2],[-2,2],[-2,1],[-2,0],[-3,-1],[-2,-3],[-1,-4],[-1,-3],[-8,-9],[-4,-10],[-1,-2],[-3,0],[-2,2],[-2,1],[-1,1],[-8,-6],[-1,1],[2,7],[3,6],[3,5],[3,3],[10,3],[3,5],[2,7],[2,6]],[[27315,54850],[3,-3],[9,1],[2,-4],[7,-30],[-5,-5],[-6,-3],[-6,0],[-9,11],[-12,2],[-6,3],[-2,5],[-7,16],[-6,6],[-11,21],[-6,29],[-3,4],[0,3],[-2,15],[1,1],[5,0],[3,1],[0,3],[3,13],[1,0],[1,7],[0,6],[0,4],[2,6],[2,3],[5,2],[8,12],[3,3],[0,-2],[2,0],[-1,5],[-1,7],[0,5],[2,0],[0,-5],[1,0],[0,3],[1,1],[1,1],[7,-39],[0,-6],[1,-2],[2,-7],[0,-1],[0,-5],[0,-2],[1,0],[2,1],[1,-1],[2,-3],[2,-2],[1,-3],[0,-10],[-1,-2],[-9,-8],[0,-4],[-2,-17],[-1,-3],[2,-7],[5,-10],[1,-6],[0,-6],[2,-5],[1,-2],[2,3],[2,0]],[[27163,55325],[-6,4],[-4,1],[-1,-3],[0,-5],[0,-3],[2,-10],[-8,12],[-2,1],[-6,2],[-2,1],[-2,10],[3,5],[9,6],[4,-4],[6,-4],[5,-5],[2,-8]],[[27127,55361],[8,-11],[-6,-3],[-10,-11],[-4,-3],[-4,4],[-4,7],[-3,9],[-2,8],[2,0],[6,-1],[15,21],[6,-3],[3,-6],[0,-6],[-3,-3],[-4,3],[0,-5]],[[28029,55390],[2,-7],[1,-13],[2,-5],[2,-1],[1,-2],[-1,-2],[-3,-2],[-3,3],[-4,-4],[0,-5],[2,-3],[0,-5],[-2,-1],[-1,-3],[0,-8],[-4,-1],[-5,21],[1,8],[2,-1],[0,5],[1,8],[-1,5],[2,10],[3,8],[2,1],[1,-1],[2,-3],[0,-2]],[[27121,55259],[1,7],[2,8],[3,6],[3,4],[3,1],[1,-4],[-1,-7],[1,-7],[-6,-5],[-3,-2],[-4,-1]],[[28032,55434],[-3,-3],[-5,8],[-5,8],[3,15],[4,-7],[3,-7],[1,2],[1,6],[1,-2],[-1,-8],[2,-3],[0,-4],[-1,-5]],[[27188,55991],[7,-7],[3,-5],[3,-9],[-5,2],[-6,-5],[-4,-9],[-3,-13],[-1,1],[-3,7],[1,1],[0,2],[0,14],[-1,5],[-3,4],[0,3],[4,-3],[-2,12],[-4,4],[-6,2],[-5,6],[0,3],[2,3],[1,2],[1,-1],[2,-4],[2,-2],[3,-1],[2,1],[2,2],[3,-2],[7,-13]],[[27131,56044],[7,12],[5,4],[5,0],[8,-24],[2,-15],[-4,-10],[0,-5],[1,-2],[0,-2],[0,-2],[-1,-5],[-4,14],[-6,13],[-13,22]],[[28085,55479],[0,6],[1,3],[3,-3],[3,-4],[1,-5],[2,-6],[0,-7],[1,-6],[0,-5],[3,-1],[2,-8],[-1,-7],[-2,-3],[0,-7],[3,-16],[-2,-13],[-3,-5],[0,-5],[-1,-4],[-4,0],[-1,3],[-2,-1],[-2,0],[-2,-1],[-1,3],[0,3],[-1,-3],[-2,-6],[-3,-6],[0,-5],[0,-5],[2,-7],[1,-12],[2,-3],[2,0],[0,-3],[-2,-3],[-4,5],[-3,5],[1,8],[-2,14],[-2,6],[-5,4],[-2,3],[-1,6],[1,9],[2,5],[1,11],[-1,3],[-3,6],[0,4],[1,5],[1,4],[0,4],[-1,10],[0,6],[-3,16],[1,8],[4,0],[2,-3],[12,10],[2,-5],[1,-3],[0,-3],[1,4]],[[27897,55680],[2,4],[2,-1],[1,-2],[-1,-1],[1,-4],[1,-1],[2,-2],[0,-3],[-1,-3],[-1,-1],[-1,3],[-1,2],[-2,-1],[-2,1],[-1,4],[1,5]],[[27342,55864],[1,-2],[1,-1],[1,1],[1,0],[2,-2],[1,-2],[1,-2],[1,-2],[0,-2],[0,-2],[-1,0],[-1,2],[-3,1],[-2,0],[-2,0],[-1,0],[0,3],[-1,3],[-1,3],[1,1],[2,1]],[[27209,55902],[-2,3],[1,2],[1,-1],[1,-4],[2,-2],[2,0],[1,-5],[1,-4],[1,-2],[3,-2],[-1,-4],[-3,-2],[-2,-3],[-1,1],[-3,4],[-2,3],[-1,5],[0,4],[2,7]],[[30187,57487],[-4,-14],[-1,-11],[2,-11],[-8,-1],[-2,-2],[-1,-5],[0,-5],[-1,-5],[-2,-2],[-6,-2],[-16,-18],[-11,-7],[-47,-14],[-52,-34],[-11,-4],[-7,-5],[-6,-7],[-3,-6],[-3,-21],[0,-26],[9,-77],[22,-97],[17,-51],[8,-15],[32,-39],[4,-7],[3,-8],[1,-8],[-2,-2],[-13,-6],[1,9],[-2,8],[-4,5],[-8,3],[-3,2],[-2,1],[-1,-2],[-1,-3],[-2,-3],[-3,-4],[2,-7],[10,-19],[3,-8],[0,-7],[-1,-8],[-1,-8],[3,-24],[5,-24],[5,-21],[7,-19],[9,-16],[11,-13],[-2,-13],[-3,-24],[-4,-12],[1,-5],[1,-6],[-1,-7],[-1,-6],[1,-10],[-2,-12],[-3,-13],[-2,-12],[1,-33],[0,-3],[0,-2],[-3,-5],[-2,-2],[-7,-6],[-6,-14],[-1,-2],[-5,-3],[-4,-5],[-7,-12],[-7,-18],[-16,-63],[-15,-43],[-2,-14],[-4,-6],[-11,-6],[-5,-8],[-3,-10],[-3,-12],[-2,-25],[-7,-24],[-5,-33],[-19,-43],[-4,-18],[1,-8],[5,-24],[4,-10],[19,-41],[6,-19],[14,-67],[-5,6],[-2,11],[-1,13],[-3,11],[-2,-4],[1,-2],[0,-2],[1,-4],[-2,-1],[-2,-2],[0,-2],[-2,-3],[5,-4],[4,-8],[3,-11],[2,-12],[-2,-11],[-5,-1],[-5,6],[-4,8],[-1,-11],[3,-11],[4,-14],[4,6],[7,12],[5,6],[3,-12],[2,0],[0,12],[3,-4],[8,-18],[2,-4],[3,-2],[3,-2],[2,-6],[-9,3],[-7,-6],[-3,-13],[2,-17],[3,21],[1,4],[16,0],[7,-9],[6,-17],[7,-10],[7,11],[-1,-9],[0,-3],[3,-5],[0,-4],[-1,-3],[-4,0],[0,-4],[3,-7],[0,-10],[-1,-11],[-2,-9],[-3,5],[-6,-8],[-10,-21],[2,-5],[3,5],[3,4],[3,-8],[2,2],[2,2],[1,3],[1,5],[3,-6],[-1,-6],[-1,-6],[4,-6],[-5,-1],[1,-8],[4,-16],[-6,-15],[-1,-5],[1,-6],[2,-3],[2,-1],[1,-4],[1,0],[4,-4],[2,-4],[-1,-2],[0,-3],[3,-5],[6,-9],[11,-7],[12,-4],[13,-1],[11,5],[40,26],[27,25],[10,12],[5,14],[4,31],[5,9],[8,19],[2,5],[3,2],[7,2],[2,2],[2,3],[2,2],[2,1],[4,3],[3,8],[2,11],[0,11],[-5,33],[-2,49],[-1,11],[-1,8],[-1,6],[0,7],[2,4],[5,16],[0,7],[5,42],[0,28],[2,4],[1,4],[1,4],[0,2],[-2,10],[-4,9],[-4,10],[-4,11],[-2,15],[3,1],[2,2],[1,5],[-1,5],[-5,11],[-5,17],[-15,39],[-6,8],[-6,-3],[-6,53],[-5,27],[-6,22],[-11,23],[-6,9],[-10,8],[-2,10],[-3,23],[-3,8],[-6,14],[-2,18],[-3,10],[-5,15],[-4,6],[-1,4],[-1,6],[0,5],[1,10],[2,30],[-1,8],[-4,8],[-13,17],[-4,12],[0,15],[1,5],[10,17],[1,1],[-2,1],[-8,27],[0,6],[0,8],[2,16],[0,9],[-1,7],[-2,4],[-5,9],[-3,10],[-2,4],[-3,2],[0,4],[21,2],[9,-2],[9,-8],[3,14],[-2,12],[-2,10],[-1,9],[1,9],[7,9],[3,10],[-7,0],[-3,1],[-3,3],[-3,5],[-5,12],[-4,3],[12,9],[11,3],[23,1],[12,3],[3,3],[30,25],[12,16],[3,5],[16,13],[54,62],[43,24],[8,7],[6,-6],[9,1],[32,8],[5,6],[5,15],[-3,-2],[-2,-4],[-2,-4],[-1,-6],[-1,15],[7,5],[15,-5],[9,6],[21,21],[10,14],[6,0],[10,-3],[14,15],[6,15],[4,16],[0,11],[0,4],[-2,4],[-3,1],[2,4],[4,0],[4,-4],[2,-8],[3,-6],[3,-6],[3,3],[1,6],[1,8],[3,0],[3,-4],[3,-2],[2,-4],[1,0],[1,6],[0,5],[-1,4],[-1,3],[-2,2],[0,2],[0,2],[2,4],[-4,3],[0,8],[-12,8],[-6,1],[-1,2],[1,3],[2,0],[4,1],[-2,4],[-3,3],[-4,2],[-3,4],[-6,9],[11,-6],[8,-9],[7,-8],[5,-5],[3,-2],[4,-3],[5,1],[5,-2],[4,-5],[5,4],[3,6],[6,-4],[1,-9],[3,-3],[3,2],[2,-11],[5,-5],[5,-6],[3,-14],[9,-6],[5,7],[2,8],[8,10],[3,8],[1,13],[-5,20],[1,12],[-3,7],[-4,28],[-2,17],[-7,29],[-1,0],[-1,-11],[-2,1],[-3,6],[-2,4],[-4,-2],[-2,-4],[-1,-4],[-1,-2],[-14,-9],[-6,-1],[1,10],[-11,-11],[-3,-1],[-8,-1],[-4,-2],[-3,-4],[-6,-6],[-18,-3],[-14,-14],[-7,4],[-5,11],[-1,15],[2,4],[3,7],[1,5],[0,4],[0,3],[-1,2],[-1,3],[0,16],[0,1],[-3,7],[-1,4],[2,-2],[4,-4],[2,-2],[0,17],[-1,7],[-1,5],[-3,3],[-1,-4],[-1,-7],[-3,-5],[-1,11],[-6,22],[-1,3],[-2,2],[0,3],[-1,12],[-1,4],[-2,1],[-3,-1],[2,8],[2,22],[0,9],[1,10],[6,18],[1,12],[2,9],[8,21],[3,9],[1,10],[0,17],[1,6],[12,0],[5,3],[5,7],[17,31],[7,7],[6,3],[4,-3],[4,-5],[13,-6],[5,-9],[25,-86],[4,-24],[1,-25],[0,-51],[2,-25],[17,-102],[13,-54],[10,-25],[12,-18],[10,-3],[7,9],[7,12],[10,6],[24,-7],[10,-1],[12,8],[8,11],[4,4],[6,1],[3,-1],[5,-9],[3,-2],[10,1],[3,-1],[17,-15],[4,1],[1,-6],[4,-7],[4,-6],[4,-3],[11,-5],[44,4],[5,-3],[5,-7],[9,-21],[5,-8],[6,-7],[10,-8],[4,-2],[4,-1],[2,3],[1,-2],[7,-6],[1,-4],[3,-11],[7,-11],[21,-23],[6,-9],[5,-10],[2,-9],[2,-6],[19,-17],[1,6],[1,3],[0,4],[2,0],[1,-4],[2,-9],[0,-4],[-2,-11],[3,-15],[11,-33],[17,-71],[2,-16],[-2,-8],[-2,3],[-3,6],[-4,5],[-4,2],[-4,-1],[-3,-3],[-3,-4],[-2,-4],[9,-5],[23,-4],[6,-11],[-3,-11],[-4,-5],[-13,0],[-4,-5],[-1,-12],[0,-13],[3,-37],[9,-52],[4,-14],[6,-23],[2,-10],[10,-24],[10,-20],[12,-9],[34,0],[5,-2],[6,-6],[7,-5],[5,2],[4,4],[5,3],[3,-1],[2,-2],[1,-4],[0,-5],[0,-3],[1,-2],[2,4],[2,6],[1,3],[8,8],[12,5],[36,5],[24,14],[23,3],[24,5],[18,5],[23,-2],[20,5],[16,18],[11,4],[11,9],[6,2],[35,-1],[31,5],[65,9],[32,-2],[3,-1],[3,-5],[15,-5],[5,0],[3,5],[3,8],[4,8],[6,3],[6,-2],[17,-19],[19,-9],[5,-10],[13,-3],[3,-2],[-2,-8],[-6,-8],[-7,-5],[-5,1],[0,-7],[-1,-14],[1,-5],[9,-19],[21,-34],[2,-6],[9,-12],[5,-16],[20,-25],[-4,0],[-4,1],[-3,3],[-2,4],[-2,-3],[-2,-5],[6,-16],[7,3],[7,-9],[12,-22],[7,-6],[8,-2],[16,-1],[-8,11],[-28,25],[-6,17],[80,-73],[34,-22],[9,-3],[32,-12],[39,-16],[11,-12],[11,-6],[3,-2],[0,-4],[-21,14],[-6,2],[3,-8],[5,-7],[6,-4],[12,-2],[3,1],[2,2],[5,5],[8,4],[10,13],[5,4],[6,2],[15,-6],[21,-3],[10,3],[8,10],[3,8],[3,9],[3,22],[0,9],[-2,16],[2,8],[2,-6],[3,-3],[3,-1],[3,1],[-2,-6],[-1,-1],[-3,-1],[4,-8],[4,1],[3,5],[-3,6],[3,5],[8,20],[4,1],[7,6],[5,1],[-1,-4],[0,-2],[-1,-2],[1,1],[3,1],[2,1],[2,-7],[1,1],[2,4],[1,1],[1,1],[3,-1],[6,-6],[3,-1],[6,5],[8,16],[8,5],[5,6],[2,1],[2,3],[0,6],[-1,4],[-8,-8],[-6,1],[-6,4],[-5,6],[2,6],[3,-1],[3,-3],[4,-2],[3,2],[6,8],[4,2],[-1,8],[0,3],[1,6],[-6,0],[0,4],[6,5],[3,-3],[1,-7],[0,-10],[1,-9],[2,0],[2,7],[3,9],[0,15],[11,10],[14,7],[10,12],[3,10],[1,7],[3,6],[6,2],[6,-1],[4,-1],[4,-3],[12,-12],[6,-3],[6,-1],[7,1],[17,7],[5,0],[11,-6],[6,-2],[12,1],[38,19],[8,9],[-7,1],[-7,-1],[-7,1],[-7,9],[-5,8],[-14,14],[-7,4],[-14,1],[-7,2],[-6,7],[-6,5],[-7,0],[-15,-6],[2,2],[2,9],[-4,0],[-3,-4],[-2,-4],[-2,-3],[-4,-2],[-19,3],[-4,-1],[-9,-11],[-2,-2],[-2,-3],[-2,-14],[-3,-3],[-4,3],[-2,8],[-1,8],[0,7],[-2,12],[-5,12],[-4,12],[2,11],[3,3],[2,4],[1,6],[0,7],[1,0],[3,-10],[4,-6],[12,-4],[4,-3],[7,-8],[4,-2],[3,2],[17,17],[3,1],[3,1],[2,-1],[1,-3],[1,-3],[1,-1],[26,0],[6,-4],[5,4],[10,5],[4,3],[3,6],[3,9],[1,10],[1,11],[2,0],[4,-13],[5,-9],[6,-6],[29,-14],[28,-8],[6,2],[12,15],[6,6],[5,-5],[2,0],[1,7],[2,1],[4,-2],[3,-2],[2,3],[1,12],[2,5],[2,-4],[2,-2],[2,0],[2,2],[1,-4],[-1,-3],[5,-5],[3,8],[3,-1],[5,-4],[4,-3],[1,2],[1,5],[2,2],[3,-3],[3,-1],[3,3],[19,27],[3,2],[1,-3],[0,-6],[2,-5],[3,-3],[4,0],[2,1],[3,3],[2,5],[5,-3],[19,3],[6,-2],[11,-9],[7,-2],[6,2],[12,9],[10,3],[30,22],[3,1],[7,-7],[3,-1],[3,-1],[6,-2],[27,-1],[40,-15],[22,-7],[12,-3],[20,-2],[9,-6],[5,0],[3,4],[7,10],[4,2],[18,1],[8,3],[7,9],[3,-7],[8,5],[2,-6],[5,6],[7,5],[8,3],[5,-2],[-4,-5],[-4,-6],[-3,-9],[2,-13],[-2,-3],[-3,6],[-3,-4],[-3,-7],[-5,-4],[-1,-1],[-4,-5],[-2,-2],[-3,0],[-3,1],[-3,-1],[-3,-4],[-17,-4],[-6,-4],[-24,6],[-18,-2],[-4,-4],[-3,-7],[-14,-43],[-6,-10],[-5,1],[-7,8],[-5,-1],[-6,-3],[-6,-2],[-3,1],[-6,5],[-3,2],[-2,0],[-5,-3],[-3,-1],[-6,2],[-18,10],[-16,3],[-64,-18],[-8,-4],[-3,-7],[-3,-10],[-7,-11],[-7,-9],[-4,-5],[0,-4],[8,8],[15,27],[9,10],[10,2],[5,-12],[1,-17],[-1,-16],[2,-18],[1,-11],[-2,-5],[-2,-1],[-4,-3],[-2,0],[-3,2],[-4,8],[-2,2],[-18,2],[-9,-5],[-2,-13],[1,3],[6,5],[2,-15],[1,-6],[3,-4],[-3,-4],[-5,-11],[-4,-5],[6,-7],[-1,-6],[-3,-7],[-3,-8],[16,2],[4,4],[1,10],[-6,24],[2,13],[-3,4],[-1,7],[1,8],[3,5],[5,0],[4,-5],[8,-15],[3,4],[2,1],[3,1],[3,2],[9,10],[2,2],[5,-2],[5,-4],[5,-5],[3,-5],[1,-5],[0,-10],[1,-6],[2,-4],[6,-10],[4,-8],[3,-7],[2,-10],[0,-14],[-2,-17],[0,-7],[3,-13],[1,-5],[1,-2],[2,-2],[2,-3],[1,-10],[3,-10],[0,-4],[-1,-9],[-3,-11],[-4,-9],[-4,-3],[-3,-1],[-6,-2],[-2,-1],[-4,1],[-2,3],[-1,2],[-2,2],[-5,2],[-5,0],[-4,-4],[-1,-8],[-1,-5],[-1,-5],[-3,-3],[-2,-1],[-1,2],[-2,12],[-1,4],[-4,4],[-8,-8],[-4,2],[-1,4],[1,6],[0,6],[-2,4],[-3,0],[-2,-3],[-3,-4],[-1,-5],[-1,7],[-2,4],[-2,3],[-3,2],[-4,-7],[-3,-1],[-8,4],[1,-4],[1,-2],[4,-9],[4,-5],[1,2],[2,6],[2,3],[3,0],[1,-5],[1,-30],[2,-12],[5,0],[-4,8],[1,7],[1,7],[-1,8],[0,3],[1,6],[1,5],[2,0],[2,-3],[-2,-10],[1,-5],[5,-5],[4,2],[3,4],[4,1],[4,-4],[3,-6],[3,-5],[6,-1],[-3,-15],[2,-5],[4,4],[3,10],[-3,19],[0,11],[6,4],[2,-3],[5,-10],[3,-3],[3,-1],[15,8],[7,8],[6,10],[3,11],[0,14],[-4,25],[-2,12],[2,17],[5,4],[6,-4],[6,-7],[12,-17],[6,-19],[7,-49],[2,-10],[3,-9],[3,-10],[0,-12],[3,-12],[1,-7],[-1,-8],[-3,-13],[5,0],[4,-5],[3,-8],[6,-15],[14,-59],[2,-10],[0,-10],[-2,-9],[0,-9],[0,-2],[2,-7],[8,16],[5,20],[8,45],[1,19],[-5,37],[0,22],[5,-8],[5,-14],[10,-42],[2,-12],[1,-84],[-4,-25],[-7,-15],[9,7],[5,20],[3,26],[-2,73],[-2,14],[-6,23],[-2,12],[16,-4],[5,-3],[2,-6],[1,-8],[3,-8],[3,-3],[9,-4],[5,-1],[2,0],[1,2],[-3,6],[-2,2],[-9,5],[-3,1],[-1,4],[-8,17],[-4,5],[-4,2],[-16,1],[-4,3],[-4,9],[3,12],[2,10],[3,6],[3,3],[24,-13],[13,-11],[10,-12],[28,-46],[5,-10],[9,-24],[8,-11],[4,-7],[0,-8],[1,-5],[4,-8],[1,-5],[0,-6],[-3,-18],[-6,-21],[-1,-13],[2,0],[8,33],[4,32],[5,-1],[4,-12],[3,-15],[3,-8],[-2,-12],[2,-49],[2,12],[1,13],[1,26],[-1,7],[-1,5],[-1,4],[-2,4],[-2,6],[-1,14],[-2,6],[-2,3],[-5,2],[-2,3],[-1,4],[-4,13],[-2,6],[-1,5],[-1,3],[3,2],[8,1],[10,-5],[22,-14],[3,-1],[20,-9],[5,7],[-1,9],[-4,8],[-3,8],[-2,2],[-2,3],[-5,6],[0,4],[-1,5],[-4,2],[-3,7],[-2,7],[1,2],[8,-1],[3,-3],[4,-4],[8,-9],[11,-15],[10,-12],[9,-15],[4,-10],[11,-28],[-1,16],[-7,18],[-2,11],[-8,6],[-5,10],[1,1],[5,-7],[3,-2],[6,-1],[3,-4],[3,-6],[8,-18],[4,-10],[4,-8],[5,-9],[4,-12],[4,-6],[5,-9],[13,-22],[7,-10],[2,-18],[6,-14],[4,3],[-5,12],[7,0],[15,-18],[5,6],[2,-2],[10,2],[4,-1],[11,-11],[11,-8],[4,-6],[2,-11],[-2,1],[-1,2],[-1,5],[-1,-19],[1,-5],[2,-4],[2,1],[2,2],[3,1],[4,-2],[6,-5],[6,-8],[4,-7],[3,-6],[4,-13],[4,-8],[1,-3],[1,-3],[0,-4],[1,-1],[3,-2],[1,-3],[3,-12],[1,-15],[0,-15],[-4,-11],[0,5],[-1,3],[-2,5],[-2,-9],[0,-9],[-1,-8],[-4,-3],[-4,-2],[-7,-8],[-2,-2],[-4,-1],[-3,-2],[-3,-2],[-3,-3],[-1,-7],[-2,-3],[-1,-2],[-1,-1],[-6,-3],[-15,-32],[-7,-4],[-5,-8],[-6,-18],[-7,-36],[4,4],[4,7],[2,8],[1,8],[2,5],[23,43],[7,9],[1,-11],[-2,-6],[-4,-9],[-2,-5],[-1,-5],[-1,-13],[-1,-4],[-2,-5],[0,-5],[0,-11],[-2,-6],[-2,-3],[-4,-2],[-2,-2],[-10,-23],[-2,0],[-1,-5],[-4,-17],[-2,-9],[-3,-24],[-1,-10],[2,-12],[0,-6],[-4,-25],[-15,-47],[-4,-25],[-1,-29],[-3,-21],[-7,-12],[-12,0],[-16,11],[-4,2],[-48,-8],[-12,6],[-11,14],[-5,0],[-6,-2],[-4,-7],[0,-11],[2,-7],[15,-18],[10,-4],[3,-2],[2,-4],[1,-4],[1,-2],[3,0],[5,3],[2,1],[1,-2],[3,-8],[4,-8],[2,-2],[4,0],[1,-2],[3,-8],[1,-3],[5,-1],[11,5],[4,1],[3,-5],[2,-8],[1,-9],[2,-7],[3,-6],[7,-9],[3,-9],[9,12],[4,8],[1,10],[2,7],[4,8],[5,7],[4,5],[6,2],[18,-2],[13,5],[6,-1],[1,-8],[-5,-9],[-10,-3],[-3,-11],[0,-13],[0,-6],[1,-5],[3,-3],[1,6],[-1,15],[2,11],[1,2],[3,3],[3,2],[3,-1],[3,1],[1,4],[0,6],[2,6],[1,5],[3,5],[1,7],[0,14],[1,6],[0,4],[0,3],[3,3],[5,-4],[6,2],[5,4],[28,7],[35,8],[5,-7],[1,-6],[4,-6],[5,-6],[3,-4],[6,-2],[17,-2],[18,-9],[5,1],[1,3],[3,13],[5,13],[7,23],[9,8],[48,-7],[11,-6],[11,-10],[10,-14],[5,-5],[12,-4]],[[33051,55569],[1,-2],[1,-1],[1,-1],[2,-1],[1,-15],[-3,-14],[-6,-6],[-7,7],[0,-8],[2,-8],[1,-6],[-24,-6],[-29,5],[-11,-1],[3,13],[4,12],[5,9],[7,2],[6,-3],[9,-16],[6,-5],[-3,10],[-1,0],[1,5],[1,3],[2,3],[0,1],[8,18],[3,3],[18,2],[2,0]],[[33077,55816],[7,3],[6,-3],[5,-7],[5,-9],[-6,-4],[-1,0],[4,-14],[-4,-17],[-8,-16],[-11,-18],[-38,-33],[-6,-4],[15,25],[6,10],[9,29],[3,20],[3,6],[3,4],[4,6],[1,6],[-1,5],[1,6],[3,5]],[[33031,55735],[-3,6],[1,11],[3,14],[1,12],[3,9],[6,5],[7,3],[6,5],[5,11],[10,28],[4,5],[7,2],[15,11],[0,-6],[0,-5],[-1,-5],[-1,-5],[0,5],[-2,-11],[-2,-5],[-4,-1],[-6,0],[-5,-3],[-4,-6],[-23,-46],[-2,-5],[-1,-12],[-2,-5],[-9,-11],[-3,-1]],[[33090,55869],[-4,-11],[-14,-10],[-6,-7],[5,20],[0,20],[2,16],[8,12],[10,6],[5,0],[2,-7],[0,-12],[-2,-11],[-3,-11],[-3,-9],[0,4]],[[33106,55922],[4,6],[6,7],[6,1],[5,-10],[1,-3],[1,-6],[2,-3],[-3,-3],[-4,0],[-5,1],[-8,-11],[-2,-8],[-2,-12],[-3,-9],[-6,-3],[3,15],[2,27],[3,11]],[[32228,56871],[6,-5],[8,-6],[7,-8],[2,-13],[-4,-12],[-7,-1],[-6,6],[0,11],[-7,1],[-4,3],[-2,4],[-1,8],[2,6],[3,5],[3,1]],[[31881,56957],[2,0],[2,0],[1,-3],[-2,-6],[4,-12],[-1,-9],[-4,-5],[-7,-6],[1,6],[1,2],[-6,-4],[-5,-1],[-11,1],[-5,2],[-5,6],[-5,3],[-5,-3],[-6,11],[2,14],[7,11],[7,1],[6,6],[7,-1],[14,-12],[3,-1],[5,0]],[[32264,57064],[1,-12],[4,-22],[1,-10],[9,-35],[2,-16],[-9,4],[0,-4],[0,-8],[0,-4],[-4,6],[-2,2],[-2,-2],[0,-4],[-6,-12],[-8,-31],[-16,5],[-6,-1],[-18,-14],[-5,-6],[1,17],[-5,2],[-6,0],[-5,23],[-6,9],[-7,7],[-4,7],[-7,-14],[-6,-3],[-21,5],[-1,1],[-1,2],[-2,1],[-7,-1],[-3,1],[-11,7],[-6,1],[7,31],[1,7],[1,13],[2,5],[4,1],[6,0],[3,1],[2,2],[4,7],[3,2],[6,-4],[7,6],[7,2],[6,-2],[2,-8],[0,-8],[1,-9],[1,-7],[10,-6],[10,-14],[6,-3],[11,-2],[5,3],[4,11],[1,6],[-1,18],[2,6],[4,6],[1,5],[2,6],[-1,5],[1,4],[2,5],[3,2],[6,1],[3,1],[4,8],[7,18],[4,6],[1,-11],[3,-5],[4,-4],[1,-6]],[[31497,57448],[5,-1],[1,1],[-5,-10],[-10,-3],[-10,3],[-7,10],[8,-4],[7,2],[5,9],[4,17],[3,-4],[1,-6],[0,-7],[-2,-7]],[[31630,57472],[6,1],[2,-4],[0,-11],[-3,-12],[-8,1],[-9,9],[-6,12],[4,4],[5,0],[9,0]],[[32053,57516],[4,-3],[9,-15],[1,-6],[2,-11],[-1,-9],[-2,-4],[-12,0],[-7,3],[-5,5],[0,4],[1,2],[0,1],[-1,5],[3,6],[5,17],[3,5]],[[31458,57445],[4,3],[2,0],[0,-1],[-13,-11],[-1,-3],[-8,-4],[-3,-1],[-3,-2],[-6,0],[-1,3],[6,-1],[4,1],[1,1],[1,0],[17,15]],[[31463,57499],[4,1],[2,-2],[-7,-2],[-1,1],[-4,-2],[-5,2],[-2,0],[-2,1],[-9,2],[1,1],[23,-2]],[[31206,57567],[2,0],[3,-3],[-2,0],[-5,2],[-3,2],[0,2],[1,2],[1,-1],[2,-2],[1,-2]],[[31200,57593],[0,-2],[-1,1],[1,1]],[[31200,57593],[0,1],[1,-1],[0,-1],[-1,1]],[[31200,57606],[1,-1],[0,-2],[0,1],[-1,2]],[[31199,57614],[0,-1],[-1,1],[1,0]],[[31198,57615],[-1,2],[1,-1],[0,-1]],[[32322,59765],[-1,3],[1,1],[1,-1],[1,-3],[-1,-1],[-1,1]],[[32947,55551],[5,-5],[8,1],[8,-1],[2,-11],[1,-10],[0,-13],[3,-7],[4,-4],[5,-6],[0,-8],[-1,-10],[-4,-3],[-4,4],[-7,11],[-2,11],[-4,9],[-7,0],[-10,-1],[-9,4],[-6,10],[-4,6],[-6,6],[-5,1],[-9,7],[1,6],[6,-1],[11,-4],[10,1],[7,8],[7,-1]],[[33126,55633],[5,2],[4,7],[4,6],[4,8],[2,3],[1,-2],[-1,-6],[-3,-11],[0,-12],[2,-10],[4,-4],[8,0],[7,-2],[2,-7],[-1,-10],[-3,-11],[-4,-2],[-5,1],[-6,5],[-6,0],[-5,-3],[-6,0],[-6,0],[-4,-4],[-6,0],[-4,1],[-1,6],[3,8],[3,11],[4,13],[4,12],[4,1]],[[33069,55698],[13,3],[6,4],[3,10],[3,8],[8,0],[15,0],[6,7],[7,6],[1,-8],[-3,-7],[2,-5],[4,-3],[1,-11],[1,-7],[3,-7],[3,-13],[-3,-7],[-7,-9],[-7,-1],[-6,-11],[-4,-16],[-4,-13],[-2,-12],[-6,-13],[-5,-8],[-11,-1],[-10,2],[-7,-3],[-6,-3],[-10,6],[-14,0],[-11,-3],[-5,-6],[-5,-8],[-3,-5],[-3,-4],[-5,0],[-2,5],[1,12],[1,8],[0,15],[1,22],[3,13],[8,20],[9,14],[10,11],[7,6],[10,8],[7,2],[6,2]],[[32685,56345],[3,-6],[2,-15],[-1,-14],[-2,-10],[-4,0],[-3,16],[0,15],[1,10],[1,6],[2,0],[1,-2]],[[32665,56396],[2,-2],[2,-6],[-2,-9],[-3,-3],[-3,6],[-2,10],[-3,19],[0,8],[3,2],[3,-8],[3,-17]],[[32711,56422],[1,-4],[1,-10],[-1,-8],[-3,-6],[-3,-6],[-5,-2],[-4,-1],[-2,-3],[0,8],[3,16],[5,12],[5,5],[3,-1]],[[32593,56609],[2,-4],[2,-9],[0,-11],[-3,-10],[-1,0],[-1,7],[-1,6],[-4,9],[-2,5],[-5,10],[-8,14],[-8,10],[-5,11],[-2,10],[1,11],[0,4],[1,7],[1,5],[2,0],[8,-20],[7,-19],[16,-36]],[[32175,56882],[3,-2],[1,-7],[-6,-8],[-7,-1],[-5,5],[0,9],[4,4],[4,0],[5,-1],[1,1]],[[89159,48930],[3,0],[6,-5],[10,11],[10,-3],[12,-8],[11,-4],[8,0],[4,-3],[2,-3],[2,-3],[2,-3],[3,-1],[7,-1],[3,-2],[2,-4],[3,-12],[1,-4],[4,3],[8,-18],[6,-6],[6,-1],[54,-48],[62,-63],[9,-3],[1,-5],[0,-6],[1,-5],[13,-19],[5,-2],[11,5],[16,2],[2,-3],[16,-28],[1,-6],[-1,-5],[-1,-7],[-1,-7],[1,-6],[2,-1],[7,-1],[3,-2],[9,7],[6,-6],[6,-8],[6,-5],[6,-1],[5,-3],[7,-8],[35,-22],[30,-30],[32,-21],[54,-35],[6,-2],[4,-1],[9,-11],[3,-1],[4,0],[4,-1],[8,-10],[22,-13],[7,0],[9,2],[5,1],[4,-3],[2,5],[5,-4],[19,-4],[3,-2],[5,-8],[3,-2],[4,-1],[59,-22],[13,-9],[4,-7],[16,-34],[3,-17],[1,-4],[2,-3],[5,-4],[2,-3],[2,-2],[8,-6],[1,-2],[3,2],[4,7],[2,-1],[1,-1],[1,-4],[-2,-7],[2,-7],[3,-6],[4,-3],[10,-1],[5,-3],[5,-4],[10,-35],[3,-5],[12,-11],[4,-2],[6,-7],[14,-42],[7,-6],[9,-1],[18,3],[3,-1],[4,1],[6,0],[-2,-5],[-2,-3],[-4,-1],[-3,1],[2,-7],[3,-4],[2,-2],[3,-5],[5,-4],[7,8],[4,-4],[2,-9],[1,-4],[2,-2],[3,1],[1,2],[0,2],[1,4],[3,6],[2,8],[2,8],[-1,6],[9,5],[13,0],[12,-3],[10,-6],[3,1],[15,-1],[4,-2],[3,-8],[4,-9],[2,-10],[1,-12],[0,-50],[2,-7],[4,-7],[3,-3],[2,-3],[4,-3],[35,-12],[11,-8],[7,-14],[5,-7],[8,-5],[7,-9],[2,-3],[0,-2],[0,-1],[1,-2],[0,-4],[0,-3],[-4,-4],[-1,-3],[0,-7],[1,-8],[4,-6],[12,-5],[5,-5],[8,-18],[6,-8],[2,-4],[0,-21],[1,-3],[4,-5],[10,-32],[7,-8],[29,-20],[11,0],[12,6],[12,3],[11,-9],[11,-31],[17,-30],[10,-25],[3,-9],[6,-17],[2,-3],[3,0],[1,1],[2,0],[4,-10],[6,-28],[31,-72],[4,-8],[5,-5],[4,-6],[1,-3],[10,-5],[2,-6],[4,-11],[3,-11],[0,-5],[-4,-5],[-2,-13],[-1,-27],[0,-14],[3,-24],[1,-12],[0,-4],[3,-8],[0,-5],[0,-5],[-2,-7],[-1,-6],[0,-2],[-1,-21],[-1,-13],[0,-6],[0,-25],[0,-11],[-2,-11],[-10,-30],[-2,-13],[1,-5],[1,-9],[0,-6],[0,-8],[-5,-19],[-1,-19],[3,-18],[6,-14],[8,-5],[17,6],[6,-4],[4,-19],[2,0],[1,5],[1,7],[0,5],[2,-2],[1,-1],[1,-1],[3,8],[4,2],[5,0],[3,6],[5,-10],[5,-4],[5,-3],[6,-8],[2,4],[2,1],[1,-2],[1,-3],[3,1],[9,-9],[5,-4],[7,1],[3,-2],[1,-5],[2,-7],[3,-2],[7,-1],[5,-5],[3,-2],[5,3],[3,-4],[2,-5],[3,-3],[3,-1],[5,4],[4,1],[3,0],[3,-1],[5,-7],[2,-3],[2,-4],[3,-2],[4,1],[-2,0],[6,0],[6,2],[5,0],[5,-8],[1,-6],[1,-6],[2,-5],[7,-3],[3,-3],[35,-58],[18,-11],[10,-12],[6,-3],[3,-3],[1,-11],[1,-10],[4,-3],[5,3],[5,3],[6,2],[5,-2],[4,-3],[5,-1],[4,-4],[2,-9],[2,-11],[2,-9],[15,-20],[2,0],[3,-2],[2,-2],[2,-4],[3,2],[4,6],[3,0],[1,-1],[3,-7],[4,-12],[3,-6],[1,4],[3,2],[26,-6],[3,0],[2,1],[3,6],[3,7],[3,5],[4,3],[2,-1],[7,-7],[2,0],[1,1],[0,2],[1,3],[2,2],[1,-1],[2,-3],[13,-10],[13,-4],[5,-5],[4,-6],[3,-7],[1,-2],[3,-1],[1,-2],[1,-3],[1,-6],[0,-3],[2,-4],[8,-8],[19,-39],[8,-28],[2,-6],[5,-6],[3,-13],[2,-16],[3,-9],[6,-20],[21,-22],[7,-15],[1,-8],[0,-6],[-1,-5],[0,-6],[2,-8],[2,-6],[3,-7],[1,-16],[3,-14],[0,-8],[-1,-5],[-1,-4],[-1,-5],[2,-8],[-3,-8],[0,-8],[2,-10],[1,-13],[-1,-2],[-4,-6],[-1,-2],[0,-7],[2,-4],[2,0],[2,3],[-2,-48],[-22,-16],[-49,-5],[-3,-4],[-4,-9],[-3,-3],[-3,0],[-3,3],[-3,2],[-3,-3],[-5,-3],[-18,13],[-7,0],[-11,-6],[-6,-2],[-43,5],[-4,-1],[-1,6],[-3,5],[-2,3],[-4,2],[-4,1],[-14,-1],[-3,-2],[-7,-11],[-5,-3],[-9,1],[-5,-1],[-4,-4],[0,-14],[-5,-25],[-1,-14],[1,-28],[1,-28],[2,-14],[9,-24],[6,-11],[3,-8],[2,-3],[3,-2],[2,1],[4,8],[4,4],[-1,-8],[-1,-6],[-2,-6],[0,-4],[0,-8],[3,-9],[1,-8],[-1,-7],[-2,-14],[1,-8],[1,0],[14,-24],[3,-7],[3,-9],[1,-12],[-1,-28],[1,-9],[2,-6],[-1,-3],[-2,-2],[0,-5],[1,-6],[2,-10],[2,-18],[0,-6],[5,-15],[1,-6],[2,-2],[1,-3],[1,-2],[0,-4],[-2,-2],[-2,-1],[0,-2],[2,-6],[1,0],[2,1],[3,-3],[1,-4],[0,-4],[0,-3],[4,-1],[2,1],[4,11],[2,0],[2,-3],[1,-3],[0,-3],[-1,-3],[17,-9],[8,-8],[3,-14],[2,-6],[2,-3],[3,-1],[2,0],[4,-1],[3,-4],[2,-5],[3,-6],[-2,-5],[2,-2],[3,0],[3,-1],[7,-12],[3,-7],[1,-7],[0,-23],[3,-5],[15,-5],[4,-5],[1,-8],[0,-15],[2,-13],[4,-9],[2,-10],[-2,-11],[13,4],[0,4],[-2,3],[-2,4],[-1,5],[0,8],[7,-12],[6,-13],[4,-17],[2,-38],[3,-10],[3,-7],[5,-4],[5,-1],[8,4],[6,1],[2,-2],[2,-3],[2,-2],[3,5],[2,2],[4,0],[3,-3],[13,-20],[6,-7],[6,-2],[2,-6],[1,-4],[3,-23],[3,-8],[5,-1],[6,3],[5,1],[3,-7],[3,3],[3,1],[7,0],[1,2],[5,4],[3,0],[-2,-8],[-1,-10],[6,-54],[4,-13],[2,-17],[5,-22],[2,-13],[2,-17],[0,-17],[-2,-14],[7,-36],[2,-14],[-1,-10],[-3,-21],[0,-11],[1,-13],[1,-12],[2,-8],[5,-7],[10,-10],[2,-8],[7,5],[5,-4],[5,-6],[3,-3],[2,-1],[3,-3],[1,-5],[1,-5],[2,-4],[10,-7],[2,-5],[3,-15],[3,-9],[4,-9],[1,-10],[0,-40],[3,-40],[2,-5],[2,-1],[2,-2],[2,-4],[1,-3],[-1,-4],[-1,-6],[-1,-3],[1,-3],[2,-7],[1,-4],[3,-24],[5,-22],[7,-19],[10,-12],[24,-9],[10,1],[4,-4],[2,2],[12,6],[5,1],[3,2],[3,2],[6,7],[3,5],[3,7],[1,6],[2,-2],[5,0],[6,0],[4,4],[6,-9],[7,1],[18,9],[2,1],[1,2],[0,2],[1,6],[2,2],[1,1],[2,2],[5,10],[2,6],[4,4],[4,-17],[25,3],[6,-10],[3,3],[2,1],[2,-3],[0,-6],[2,0],[3,4],[2,-4],[2,-6],[1,-8],[-1,-8],[-1,-7],[-4,-11],[2,-1],[1,-2],[1,-1],[2,0],[-5,-3],[-2,-1],[-3,0],[4,-8],[5,-1],[4,-3],[-1,-12],[-3,-9],[-5,-7],[-5,-4],[-4,4],[-3,-6],[-4,-18],[-1,-7],[-1,-13],[-2,-20],[-1,-12],[-2,-9],[-9,-17],[-2,-14],[1,-14],[5,-23],[2,-12],[4,-22],[10,-9],[20,-8],[7,-8],[2,-3],[3,-7],[1,-2],[1,0],[4,1],[1,-1],[3,-7],[1,-1],[9,-8],[-2,-8],[4,-2],[1,0],[22,0],[6,-2],[16,-14],[5,1],[4,7],[3,2],[3,-1],[4,-3],[3,1],[6,6],[3,1],[6,-2],[11,-8],[13,-4],[14,-11],[6,0],[18,5],[7,-2],[3,-5],[4,-18],[2,-3],[2,-1],[2,-3],[2,-9],[0,-9],[0,-1],[-2,0],[-4,-2],[-15,-16],[-6,-5],[-19,-8],[-11,-7],[-6,-1],[-6,5],[-4,-8],[-13,-8],[-4,-5],[-3,-12],[1,-10],[8,-19],[20,-35],[9,-22],[-1,-23],[7,-1],[5,-4],[8,-18],[4,-5],[5,-5],[5,-3],[5,-1],[16,1],[6,-1],[6,-4],[9,-12],[3,-1],[3,0],[3,2],[5,5],[3,1],[2,-2],[2,-5],[3,-11],[9,-5],[2,-3],[5,-12],[5,-9],[3,-5],[11,-4],[12,-9],[6,-3],[5,4],[2,-1],[3,-1],[4,1],[1,3],[11,-6],[7,-6],[3,1],[5,7],[2,1],[12,-3],[-2,-4],[-3,-9],[-1,-3],[2,-6],[6,-9],[2,-8],[3,-3],[7,2],[18,9],[18,2],[5,3],[8,14],[5,4],[8,-3],[-1,-7],[-5,-7],[-12,-6],[-34,-39],[-10,-8],[-10,-3],[-5,0],[-2,1],[-1,3],[-5,-2],[-13,11],[-6,3],[-11,2],[-6,3],[-4,5],[-7,0],[-9,-16],[-6,-23],[4,-20],[2,0],[0,4],[4,-4],[13,-2],[5,-4],[2,-3],[3,-2],[10,-3],[2,-3],[5,-7],[34,-22],[6,-11],[2,-20],[3,-10],[1,-6],[-1,-7],[-5,-5],[-33,-26],[-3,3],[-1,2],[-8,-4],[-4,0],[-2,-2],[-4,-6],[-1,-3],[-3,-7],[-3,-5],[-1,0],[-1,-2],[-1,-3],[-2,-5],[0,-8],[-4,4],[-5,0],[-4,-1],[-4,-3],[-3,14],[-5,4],[-6,-3],[-12,-14],[0,-1],[-2,1],[-3,3],[-2,3],[1,1],[-3,-2],[-3,-4],[-6,-10],[-1,5],[-7,9],[-1,4],[1,4],[2,4],[1,5],[-3,4],[-7,-3],[-7,-5],[-4,-6],[-5,12],[-1,4],[-3,2],[-1,-1],[-1,-2],[-3,1],[-3,9],[-2,3],[-2,0],[-2,0],[-3,0],[-3,4],[5,7],[0,7],[-3,6],[-2,6],[-1,3],[-2,-6],[-2,-11],[-3,0],[-2,2],[-5,6],[1,3],[1,10],[-3,-6],[-1,-3],[-2,0],[-2,6],[-3,5],[-8,6],[2,-8],[-1,-1],[-1,0],[0,-1],[0,-3],[-3,4],[-3,2],[-2,2],[-4,1],[4,6],[4,3],[3,4],[1,11],[-2,-1],[-4,-3],[1,5],[2,3],[2,2],[3,2],[2,-7],[3,0],[7,3],[13,-7],[12,9],[3,2],[0,3],[1,10],[1,3],[1,2],[6,2],[-3,4],[-4,0],[-4,0],[-4,0],[-3,3],[-6,8],[-5,2],[-4,3],[-2,1],[-1,-1],[-2,-6],[-1,-1],[0,-4],[-1,-9],[-1,-10],[-3,-6],[-2,4],[-1,4],[0,5],[0,5],[-1,5],[-1,2],[-1,1],[-1,3],[-3,14],[-1,6],[-3,6],[-7,9],[-15,11],[-6,8],[-6,6],[-9,2],[-19,-1],[-9,-5],[-5,-1],[-7,6],[-3,-4],[-3,-4],[-5,4],[-2,-5],[4,-4],[0,-4],[-9,0],[-2,3],[-1,10],[-2,4],[-3,-2],[-2,-4],[-3,-3],[-5,5],[3,4],[0,4],[-2,2],[-7,3],[-1,5],[0,6],[-1,6],[-13,10],[-3,-3],[-5,-12],[-3,-5],[-4,5],[-5,3],[-6,3],[-5,1],[-4,2],[-20,22],[-4,3],[-7,2],[-5,3],[-3,1],[-5,-2],[-3,0],[-1,2],[-7,-6],[-3,-2],[-3,0],[-4,-3],[-3,-5],[-3,-6],[-2,-3],[-6,-1],[-5,4],[-19,19],[-3,2],[-4,1],[-15,-5],[-3,0],[-5,4],[-4,1],[-3,2],[1,13],[-3,5],[1,2],[1,4],[0,2],[-3,0],[-1,0],[2,7],[2,3],[3,2],[4,0],[1,5],[-2,9],[-4,4],[-2,-8],[-1,-4],[-3,0],[-4,3],[-1,3],[-2,5],[-2,19],[-2,0],[-2,-24],[-2,-11],[-5,-5],[-3,-6],[0,-3],[-2,1],[-3,4],[-13,0],[-7,3],[-3,1],[-2,-2],[-1,-5],[-4,-3],[-4,-2],[-22,0],[-5,-4],[-18,15],[-3,7],[-2,12],[-6,9],[-5,2],[-2,-9],[-4,6],[-4,7],[-4,7],[-5,4],[-3,1],[-5,-1],[-2,0],[-2,4],[-1,8],[-3,5],[-3,-21],[-11,-13],[-13,-5],[-11,7],[-4,-14],[-3,-7],[-4,-4],[-5,7],[-3,11],[-3,12],[-3,10],[-4,6],[-4,-1],[-6,-4],[-6,-1],[0,4],[5,4],[2,10],[0,10],[-4,5],[-2,-1],[-2,-3],[-1,-5],[-1,-12],[-1,1],[-4,8],[-11,5],[-7,-3],[-11,-23],[-1,0],[-5,50],[-3,1],[-3,2],[-3,3],[-2,3],[-1,4],[-3,2],[-4,-1],[-3,1],[-4,5],[-9,21],[-3,9],[-1,9],[-4,8],[-4,6],[-4,7],[-2,9],[-1,9],[-1,25],[-1,12],[-2,11],[-25,69],[-8,16],[-2,7],[-3,10],[-3,9],[-5,6],[-2,-4],[0,13],[-2,10],[-4,7],[-5,6],[-5,4],[-3,1],[-1,-5],[3,-12],[-6,-1],[-9,6],[-9,9],[-6,9],[-1,6],[-2,20],[-1,8],[-4,5],[-3,2],[-4,-1],[-5,-2],[2,-5],[4,-3],[2,-4],[1,-7],[-1,-5],[-1,-4],[-1,-1],[-3,1],[-5,4],[-5,8],[-4,19],[-7,23],[-2,11],[-4,28],[-2,13],[-5,13],[-5,4],[-12,-5],[-3,8],[4,1],[2,4],[1,4],[-1,7],[-3,3],[-2,15],[-1,17],[4,14],[-2,2],[-1,4],[-1,5],[-2,5],[2,2],[6,2],[6,9],[1,1],[2,6],[8,13],[2,7],[0,6],[-1,7],[-1,5],[-2,2],[-4,-1],[-1,-6],[-1,-6],[1,-3],[0,-4],[-9,-19],[-3,-5],[-10,-1],[-8,8],[-9,11],[-9,10],[-3,2],[-6,-2],[-3,0],[-2,2],[-4,5],[-19,9],[-5,4],[-7,10],[-5,13],[-3,14],[-4,12],[1,8],[-1,9],[-1,8],[-2,4],[2,5],[0,11],[2,8],[5,-4],[4,7],[3,7],[1,8],[-1,11],[-4,-8],[-4,-4],[-3,2],[2,10],[-2,2],[-1,3],[-1,4],[0,5],[-2,7],[-3,2],[-4,-1],[-2,0],[-1,5],[0,6],[0,6],[0,5],[-1,8],[-1,5],[-14,32],[-3,10],[-2,8],[-1,6],[-14,17],[-7,13],[-23,74],[-4,18],[0,24],[-1,5],[-2,7],[-1,2],[0,19],[-1,10],[-3,10],[-4,9],[-9,7],[-8,17],[-2,3],[-7,3],[-3,5],[-5,21],[4,7],[-1,9],[-3,10],[-4,6],[3,3],[2,4],[1,4],[-2,6],[-5,-3],[-9,7],[-14,16],[-16,8],[-9,1],[-7,-5],[-6,8],[-17,13],[-4,10],[-1,2],[-1,2],[-1,3],[-1,5],[1,2],[4,1],[1,3],[-1,3],[-1,3],[-1,2],[-1,2],[0,4],[4,14],[-2,0],[-4,-9],[-4,0],[-4,2],[-5,-5],[4,-12],[-5,-5],[-17,1],[-4,2],[-5,11],[-4,3],[-4,-1],[-4,-2],[-4,-1],[-5,4],[0,-4],[-5,4],[-19,-8],[-6,1],[-6,3],[-4,4],[-16,33],[-8,9],[-10,2],[-3,-1],[-2,-2],[-3,-1],[-4,0],[-2,4],[-6,11],[-2,7],[-4,5],[-2,8],[-3,-6],[-2,-9],[1,-3],[-6,-1],[-7,4],[-6,8],[-2,11],[-1,6],[-2,6],[-2,2],[-1,-6],[0,-12],[-1,-4],[-3,-2],[-17,0],[-3,4],[-9,20],[-3,-10],[-3,1],[-3,6],[-5,3],[-2,-1],[-3,-3],[-2,0],[0,2],[-2,5],[0,1],[-3,2],[-3,4],[-2,5],[0,4],[5,11],[2,11],[0,58],[-1,13],[-3,10],[-2,-11],[-1,-29],[-3,-13],[2,-9],[-4,-5],[-5,-2],[-5,0],[-5,3],[-4,7],[-6,15],[-10,16],[-2,13],[-3,7],[-7,13],[-2,-11],[1,-11],[2,-11],[1,-10],[-3,-9],[-6,-5],[-7,0],[-5,3],[-3,6],[-3,10],[-3,11],[-1,8],[0,7],[0,5],[-1,4],[-2,4],[-1,6],[1,14],[-1,7],[-4,10],[-1,-7],[0,-42],[-3,-19],[1,-7],[1,-5],[6,-12],[-1,-6],[-3,-4],[-2,-2],[-1,2],[-2,8],[-7,12],[-3,7],[0,4],[-1,10],[-1,4],[0,3],[-2,3],[-2,2],[-1,2],[-3,10],[-3,19],[-2,8],[-2,0],[1,-11],[1,-22],[1,-9],[4,-16],[1,-9],[0,-20],[2,-15],[1,-6],[3,-7],[2,-8],[1,-9],[3,-7],[6,-15],[2,-14],[-7,-3],[-1,4],[-5,16],[-1,2],[-2,6],[-3,9],[-4,7],[-3,5],[-3,-14],[-5,-5],[-5,5],[-2,16],[-1,17],[-3,17],[-9,29],[1,-16],[3,-17],[2,-14],[-3,-7],[-4,5],[-7,27],[-4,10],[-2,-7],[-3,-5],[-3,-3],[-3,-2],[0,-4],[7,-1],[2,-10],[-2,-13],[-4,-12],[3,-3],[4,-6],[2,-8],[1,-8],[-3,-4],[-10,-8],[-4,-4],[-5,11],[-3,3],[-4,2],[-3,-1],[-3,-2],[-3,-2],[-3,3],[-5,8],[-52,38],[-20,25],[-7,12],[-3,11],[-1,11],[-10,40],[-2,10],[-1,2],[-3,4],[-2,2],[-7,2],[-3,0],[-4,3],[-10,16],[-2,5],[-1,2],[-1,7],[-2,-9],[3,-9],[9,-20],[2,-4],[3,-1],[6,-5],[6,-3],[1,-3],[-1,-4],[0,-4],[4,-24],[23,-81],[2,-12],[1,-13],[0,-14],[1,-14],[3,-10],[7,-19],[14,-43],[4,-25],[-4,-11],[0,-1],[-5,3],[-4,9],[-4,12],[-4,8],[-5,2],[-16,2],[1,-3],[2,-6],[2,-3],[3,-2],[4,-1],[3,-1],[5,-6],[10,-23],[-4,-12],[-5,-5],[-6,-2],[-26,0],[-5,3],[-2,4],[-5,9],[-2,3],[-10,7],[-3,4],[-5,5],[-6,0],[-18,-10],[-16,3],[-5,2],[-3,8],[-5,22],[-3,12],[-4,6],[-5,2],[-8,0],[-1,1],[-2,3],[-4,1],[-1,-3],[1,-5],[1,-4],[3,-3],[2,-2],[12,-2],[3,-6],[1,-14],[2,-11],[5,-9],[23,-21],[3,-8],[3,-23],[16,-60],[2,-15],[-2,-11],[-5,-6],[-5,-1],[-71,-4],[-3,-2],[-7,-10],[-24,-4],[-65,-36],[-6,-1],[-5,3],[-28,26],[-35,12],[-1,1],[-3,3],[-5,-4],[-13,-7],[-6,-1],[-6,-3],[-16,-22],[-6,-5],[-5,0],[-12,2],[-6,3],[-4,8],[-3,11],[-7,58],[-5,16],[-12,5],[-16,-7],[-10,-2],[-2,-1],[-2,-3],[-2,-5],[-3,-5],[-3,-2],[-3,-1],[-3,-3],[-4,-6],[-1,-5],[1,-5],[4,-4],[6,13],[4,5],[4,2],[2,2],[2,4],[2,2],[4,-4],[4,1],[12,7],[7,2],[7,-3],[3,-13],[1,-13],[8,-56],[6,-17],[9,-10],[12,-3],[10,8],[18,26],[10,7],[22,-8],[5,3],[11,-7],[10,-18],[3,-3],[6,-3],[17,-26],[11,-8],[35,-15],[11,-9],[8,-11],[36,-63],[16,-39],[8,-29],[11,-27],[2,-9],[1,-8],[0,-77],[2,-19],[0,-11],[-3,-9],[-6,-13],[-3,-5],[-5,-4],[-8,-5],[-16,0],[-8,-4],[2,-4],[-3,-2],[-6,0],[-4,-2],[-3,1],[-2,-1],[0,-2],[-1,-4],[-1,-4],[-2,-2],[-4,-1],[-25,-17],[-5,-4],[-7,-12],[-6,-9],[-3,-1],[-3,-3],[-2,-7],[-3,-8],[-2,-6],[-6,-7],[-13,-11],[-10,-16],[-29,-25],[-5,-6],[-2,-7],[-15,-18],[-11,-2],[-10,6],[-8,12],[-14,24],[-9,13],[-10,9],[-9,-1],[-7,8],[-4,3],[-7,1],[-4,2],[-12,15],[-14,10],[-4,2],[-3,-2],[-5,-9],[-3,-1],[-10,0],[-39,-6],[-6,-2],[-17,-13],[-5,-3],[-7,-1],[-6,2],[-11,8],[-7,2],[-23,-9],[-7,1],[-3,-4],[-3,-4],[-5,-3],[-4,-1],[-4,3],[-4,6],[-3,4],[-5,-5],[-3,1],[-6,1],[-6,1],[-4,13],[-11,17],[-9,9],[-10,5],[-11,0],[-10,-6],[-22,-36],[-9,-9],[-13,-3],[-10,8],[-30,56],[-9,11]],[[92711,43608],[1,-1],[2,-2],[1,-1],[1,-3],[-1,-6],[-1,-2],[-2,1],[-1,3],[-3,-3],[-1,-1],[-2,1],[-2,3],[-3,-5],[-4,-3],[-3,0],[-4,4],[-1,-8],[-1,0],[-2,2],[-2,1],[-13,0],[-1,1],[-1,4],[-1,0],[-2,-2],[-2,-5],[-1,-2],[-3,-2],[-3,-4],[-3,1],[-1,9],[2,0],[2,1],[2,3],[-1,5],[-1,3],[-2,0],[-3,-2],[-2,-1],[-3,2],[-1,4],[-1,4],[-1,1],[-3,-1],[-2,-1],[-3,-1],[-3,3],[1,3],[1,6],[-2,1],[-1,2],[-1,3],[0,6],[-2,-4],[-3,-6],[-2,-4],[-3,-2],[-10,12],[-5,-5],[-2,4],[-1,9],[0,8],[2,5],[2,5],[2,5],[-2,6],[-3,3],[-2,-2],[0,-4],[-2,-2],[-2,2],[-1,2],[-2,5],[-4,-3],[-4,-6],[-7,-11],[-1,12],[11,10],[0,10],[-3,3],[-6,0],[-3,1],[-2,5],[-4,11],[-2,6],[-2,1],[-3,-2],[-1,0],[-1,5],[1,13],[0,4],[-4,2],[-2,1],[-2,5],[-2,4],[-1,4],[1,7],[1,7],[2,13],[15,-22],[5,-3],[5,3],[3,0],[2,-10],[2,-2],[3,-1],[3,-2],[7,-10],[3,-2],[6,-3],[3,-2],[8,-14],[17,-14],[13,-18],[3,-2],[6,-1],[32,-18],[3,-4],[1,-6],[2,-6],[3,-4],[6,-4],[1,-4],[3,-11]],[[92855,43749],[1,-6],[1,-7],[2,-6],[2,-3],[-2,-7],[-2,-6],[-2,-4],[-4,-4],[-2,9],[-5,5],[-6,1],[-6,-2],[-10,-11],[-4,1],[-1,14],[-2,0],[-1,-15],[-5,-7],[-5,0],[-8,5],[-4,0],[-2,2],[-1,9],[-1,3],[-3,4],[-3,2],[-3,1],[1,4],[2,4],[2,2],[3,2],[-2,3],[-2,9],[2,0],[2,-4],[4,-5],[13,-2],[5,-5],[3,4],[3,-3],[2,1],[0,5],[-2,5],[-2,0],[0,-4],[-1,0],[-3,2],[-1,3],[-1,3],[1,4],[-3,2],[-2,4],[-1,4],[0,6],[5,-3],[8,-1],[11,4],[4,-3],[2,0],[2,2],[3,1],[2,-2],[2,-5],[1,-4],[3,3],[6,-5],[3,-4],[1,-5]],[[92550,43791],[3,4],[1,0],[0,4],[-7,13],[-2,-4],[-2,1],[-1,3],[-1,4],[-10,12],[-4,10],[1,7],[4,3],[3,-4],[4,-6],[13,-6],[13,-18],[5,-2],[-1,-6],[-2,-7],[-3,-4],[-3,2],[-1,-2],[-2,-3],[-4,-2],[-4,1]],[[92446,44173],[2,0],[10,-8],[3,-4],[2,-8],[0,-5],[-2,-4],[-4,-4],[-3,-2],[-12,-2],[-3,-1],[-6,-5],[-2,-2],[-7,1],[-7,5],[-17,14],[-17,8],[-11,17],[0,4],[1,0],[1,1],[1,1],[0,2],[18,-11],[4,1],[3,0],[8,-12],[4,-3],[8,6],[10,10],[9,7],[7,-6]],[[91964,44189],[-7,-13],[-1,-6],[6,-1],[-1,-3],[-3,-7],[-1,-3],[-1,-5],[-4,-1],[-4,5],[-3,12],[-2,4],[-12,0],[-5,2],[-1,-9],[0,-8],[0,-7],[-2,-4],[-3,16],[-1,9],[1,11],[2,6],[3,5],[4,4],[5,1],[15,0],[3,-1],[2,-6],[3,-1],[2,1],[1,4],[0,2],[2,-3],[1,-2],[0,-2],[1,0]],[[91909,44230],[3,-4],[4,-5],[0,-7],[-3,-9],[2,-4],[-1,-6],[0,-8],[-1,-6],[2,-6],[0,-6],[-1,-5],[-3,-3],[-6,5],[-6,5],[-7,1],[-6,-3],[-3,11],[-2,6],[-2,3],[2,4],[4,-6],[4,-5],[5,-3],[5,-2],[6,0],[1,1],[-1,4],[-19,35],[-1,5],[0,6],[3,3],[2,-1],[3,-4],[1,-4],[4,1],[4,0],[3,1],[4,6]],[[91993,44574],[7,11],[12,9],[10,-4],[5,-23],[-1,-13],[-5,-25],[-3,-26],[-8,-34],[-2,-4],[1,-6],[-2,-19],[1,-11],[-6,8],[-10,18],[-5,6],[-28,16],[-14,4],[-5,0],[-5,1],[-3,3],[-1,9],[-1,18],[0,15],[4,3],[2,6],[4,8],[1,7],[-2,3],[-2,3],[-3,6],[-4,11],[-2,0],[1,-15],[-5,-10],[-6,0],[-3,12],[-1,4],[-1,2],[-1,2],[-1,2],[0,5],[0,29],[-1,4],[-6,16],[-1,5],[-1,7],[-2,6],[-2,4],[-6,2],[-1,4],[0,5],[-1,2],[-2,1],[-4,2],[-2,1],[-3,6],[-2,6],[-1,8],[-1,10],[0,10],[1,12],[2,8],[8,-9],[6,-9],[4,-11],[2,-13],[2,-13],[7,-8],[7,-6],[6,-7],[19,-43],[4,-6],[7,-6],[7,-7],[4,-12],[-7,4],[-2,-9],[1,-12],[3,-7],[3,-3],[9,-16],[6,-5],[5,-3],[2,0],[2,3],[2,6],[0,6],[-1,6],[-2,2],[0,5],[4,9],[7,14]],[[91888,44753],[1,-10],[-5,1],[-12,9],[-18,-4],[-6,0],[-9,6],[-10,9],[-11,7],[-12,-1],[-11,-4],[-9,0],[-1,4],[4,9],[10,15],[6,7],[3,7],[0,8],[0,12],[-2,6],[-13,17],[-9,41],[-1,17],[3,14],[6,10],[7,6],[7,1],[16,-18],[10,-6],[3,-7],[5,-14],[8,-11],[5,-4],[4,1],[5,6],[6,1],[5,4],[4,11],[11,-15],[8,-18],[2,-3],[0,-4],[-1,-9],[1,-3],[2,-6],[4,-5],[4,-4],[4,-2],[1,-3],[-2,-23],[-1,-4],[-3,-2],[-1,-2],[1,-6],[3,-5],[3,0],[3,-1],[2,-15],[2,-4],[3,-2],[1,-6],[0,-8],[-1,-7],[-3,-5],[-4,-4],[-2,7],[-5,-7],[-10,-20],[1,10],[2,14],[1,6],[-2,5],[-4,2],[-9,-1]],[[91768,44920],[1,0],[2,-6],[0,-3],[0,-3],[-2,-2],[-1,-3],[-1,-9],[-5,-22],[-2,-7],[-1,-4],[2,-2],[5,0],[0,-6],[0,-4],[-2,-6],[-4,-11],[-8,0],[-7,6],[-7,8],[-1,-1],[0,-1],[-1,-1],[0,9],[0,9],[-2,7],[-3,3],[-4,1],[-11,7],[-3,3],[-1,6],[-2,7],[-2,6],[-11,20],[-1,5],[0,19],[1,17],[3,16],[5,15],[7,12],[7,9],[6,4],[7,-5],[15,-16],[6,-11],[6,-14],[5,-26],[1,-14],[2,-8],[1,-4]],[[92498,45056],[4,-5],[-4,-7],[-2,-6],[1,-4],[-1,-3],[-1,-5],[-3,-2],[-3,3],[-2,5],[-3,4],[-2,-3],[-3,-7],[1,-4],[5,-9],[6,-9],[1,-10],[-2,-6],[-2,-1],[-1,9],[-4,9],[-6,-1],[-7,-12],[-11,-3],[-6,-3],[-2,4],[-4,-1],[-3,9],[-4,10],[-4,4],[-4,7],[-2,8],[-2,5],[-2,-7],[-3,-6],[1,-9],[7,-3],[-1,-11],[-4,-10],[-5,16],[-5,5],[-8,6],[-5,6],[-3,13],[2,8],[6,-10],[7,-1],[-2,9],[1,6],[2,2],[2,1],[2,1],[-3,6],[-2,3],[-3,3],[-6,6],[-8,14],[-6,10],[-5,9],[-7,-6],[-2,4],[-3,7],[-5,6],[-8,7],[-10,-4],[-2,5],[10,8],[0,5],[-1,9],[-6,14],[-6,6],[-7,-10],[-1,-10],[1,-11],[0,-23],[0,-8],[-2,-8],[-2,30],[-7,25],[5,12],[13,15],[5,-2],[13,-28],[23,4],[12,-2],[7,-4],[10,-4],[9,4],[5,-1],[6,0],[5,-1],[4,-4],[2,-8],[4,-3],[5,-18],[5,-7],[9,-5],[5,5],[7,-8],[3,-6],[-1,-15],[7,-5],[6,-8]],[[91975,45277],[4,-5],[3,-11],[2,-12],[-1,-9],[-3,7],[-8,30],[-16,21],[0,3],[1,5],[13,39],[7,31],[1,11],[-1,2],[-5,10],[-4,5],[-2,2],[-16,3],[-5,5],[-2,11],[5,15],[1,5],[1,8],[1,5],[5,11],[4,9],[6,4],[13,2],[1,-3],[-1,-1],[-1,0],[-1,-29],[-1,-12],[-2,-12],[8,-19],[0,-26],[-9,-83],[-1,-15],[3,-7]],[[89890,45354],[6,-4],[4,-10],[3,-13],[0,-13],[-3,-12],[-4,-3],[-3,5],[-2,11],[-1,9],[-5,6],[-32,32],[-6,10],[-4,3],[-4,2],[-3,2],[-2,6],[-1,7],[-18,31],[-15,9],[-8,7],[-3,5],[-6,20],[-3,5],[-6,8],[-3,7],[4,1],[4,2],[3,-1],[10,-25],[5,-7],[24,-11],[23,-18],[7,-2],[2,-2],[2,-6],[3,-10],[27,-47],[5,-4]],[[89827,45480],[-6,6],[-8,13],[-4,13],[6,8],[4,0],[2,-2],[2,-4],[2,-2],[3,0],[9,4],[19,1],[25,-6],[3,-5],[0,-15],[1,-8],[4,-16],[2,-9],[0,-7],[-3,-5],[-5,-2],[-14,0],[-6,3],[-13,14],[-5,11],[-6,4],[-12,4]],[[91124,47150],[6,-15],[2,-16],[-3,-53],[-6,-29],[-2,-15],[-3,2],[-1,2],[0,-4],[0,-8],[0,-4],[-3,1],[-2,-1],[-2,-3],[-2,-5],[-2,7],[0,20],[-2,9],[-2,5],[-4,3],[-8,4],[-9,2],[-4,4],[-4,11],[0,4],[-1,12],[-2,5],[-11,19],[-3,9],[-6,19],[-4,11],[-1,6],[0,4],[2,16],[-1,28],[1,8],[3,7],[7,3],[3,7],[1,-3],[1,-1],[1,-1],[1,-3],[1,2],[1,1],[1,0],[1,1],[3,-7],[6,-15],[4,-7],[4,-4],[11,-4],[7,-6],[7,-8],[14,-20]],[[93314,46537],[2,-13],[6,-23],[1,-15],[-1,-14],[-4,-14],[-5,-12],[-5,-9],[3,27],[0,15],[-2,7],[-2,-6],[-8,-38],[-7,16],[-11,-5],[-10,-15],[-7,-13],[-7,-19],[-3,-7],[-6,-2],[-3,1],[-5,6],[-3,1],[-13,0],[-12,6],[-12,8],[-21,23],[-12,20],[-3,4],[-4,2],[-5,7],[-9,15],[-2,7],[-4,13],[-33,78],[-4,16],[5,0],[2,-2],[2,-2],[5,20],[3,27],[1,29],[-1,25],[-6,28],[-9,15],[-28,17],[-10,12],[-6,11],[-6,5],[-3,4],[-2,5],[-1,4],[-1,13],[-5,24],[-4,11],[-1,3],[-2,6],[-13,12],[-8,20],[-7,10],[-4,6],[-3,8],[-1,8],[-3,8],[-10,16],[-3,12],[0,7],[-1,11],[0,6],[1,6],[2,6],[0,7],[-1,12],[-3,10],[-7,14],[-2,8],[-1,4],[-1,4],[1,6],[5,24],[3,51],[2,12],[1,11],[-4,10],[0,4],[1,1],[0,1],[0,1],[1,1],[5,-10],[2,-2],[2,4],[1,10],[-2,9],[-2,8],[-1,7],[-3,14],[-12,25],[0,12],[10,3],[11,-14],[10,-20],[5,-18],[5,2],[5,-5],[5,-10],[3,-11],[1,6],[2,2],[3,-1],[3,5],[3,-3],[4,-1],[19,0],[3,-2],[-2,-6],[0,-4],[3,-4],[1,4],[1,5],[2,3],[5,0],[1,-2],[0,-5],[0,-5],[-2,-6],[0,-4],[1,-2],[6,-4],[1,0],[1,-8],[1,-13],[8,-18],[5,-27],[5,-13],[1,-2],[2,-2],[1,-2],[3,-8],[1,-2],[0,-6],[-1,-21],[2,-10],[2,-21],[3,-10],[4,3],[5,-3],[4,-5],[5,-3],[14,-32],[1,-2],[1,-3],[2,-3],[1,-1],[3,1],[2,0],[2,-3],[3,-11],[4,-10],[2,-8],[3,-31],[1,-6],[9,-41],[14,-31],[2,-1],[3,1],[3,4],[2,7],[4,-5],[2,-9],[3,-10],[6,-5],[7,2],[1,7],[1,8],[4,8],[0,-5],[-1,-2],[0,-2],[1,-3],[2,-4],[-1,-7],[7,-14],[2,-14],[3,-3],[2,-2],[3,-1],[3,-3],[2,-7],[4,-14],[3,-9],[3,-8],[5,-6],[5,-1],[6,-6],[4,-12],[6,-27],[6,-18],[7,-16],[5,-17],[3,-22],[0,-7],[-2,-11],[0,-7],[1,-7],[2,-13],[1,-6]],[[91138,47286],[7,-9],[6,-17],[0,-17],[-7,-10],[-8,5],[-5,17],[1,19],[6,12]],[[91001,47339],[5,-2],[2,-5],[2,-8],[2,-6],[-2,-10],[-3,-5],[-8,-9],[-6,16],[0,1],[-3,-1],[-1,0],[0,3],[0,2],[0,3],[0,2],[0,6],[3,7],[5,4],[4,2]],[[90891,47349],[0,-14],[2,-14],[3,-12],[4,-7],[0,-4],[-4,-9],[-1,-12],[1,-11],[-2,-9],[-2,-3],[-1,1],[-2,2],[-2,0],[-3,-2],[-7,-10],[-9,1],[-8,12],[-11,28],[-11,16],[-3,8],[-1,9],[0,11],[1,21],[2,13],[3,5],[11,6],[4,6],[4,8],[5,6],[6,1],[9,-23],[4,-6],[7,-7],[0,-3],[1,-8]],[[92979,47383],[0,-18],[-8,-55],[0,-38],[-3,-16],[-6,-7],[2,12],[-5,-3],[-2,-7],[-1,-8],[-4,-6],[-5,41],[-11,58],[-1,17],[-2,14],[0,8],[3,4],[2,4],[1,10],[0,33],[-2,12],[-4,2],[-7,-13],[1,20],[7,22],[8,19],[8,13],[9,-4],[6,-16],[4,-20],[0,-17],[-1,-18],[0,-9],[1,-9],[3,-6],[3,-3],[2,-5],[2,-11]],[[91422,47578],[2,3],[11,9],[3,-10],[-1,-9],[-6,-17],[-3,3],[-4,6],[-3,6],[1,9]],[[90611,47612],[1,10],[2,8],[3,5],[5,0],[4,-13],[2,-7],[0,-9],[-2,2],[-2,3],[0,-3],[0,-1],[0,-1],[-2,0],[1,-10],[-4,-1],[-5,7],[-3,10]],[[91532,47720],[4,-4],[4,-6],[4,-8],[1,-8],[0,-10],[0,-5],[-1,-3],[-3,-2],[-1,3],[0,5],[-1,4],[-2,6],[-1,7],[-2,6],[-4,3],[-4,-2],[-1,-6],[1,-6],[4,-3],[-1,-4],[-3,-3],[-5,-5],[-7,12],[3,13],[8,11],[7,5]],[[90554,47784],[4,-7],[10,-23],[1,-9],[1,-14],[0,-21],[-1,-5],[-1,-6],[-1,-13],[-1,-7],[-3,-5],[-11,-14],[-7,-6],[-7,-4],[-4,4],[-9,17],[-2,5],[-2,9],[-1,9],[0,10],[2,12],[4,25],[3,10],[13,31],[6,6],[6,-4]],[[92337,47896],[-1,-9],[-13,-66],[-1,-20],[2,-20],[8,-37],[3,-23],[1,-25],[-5,-38],[-2,-26],[-18,-59],[-3,-4],[-1,-2],[-5,-20],[-2,-4],[-5,-6],[-5,-14],[-4,-4],[-12,-4],[-9,-6],[-6,0],[-14,7],[-4,1],[-6,3],[-3,1],[-3,-5],[-4,3],[-6,6],[-5,-7],[-1,-12],[0,-70],[2,-15],[3,-10],[14,-24],[2,-4],[0,-6],[2,-4],[3,-3],[5,-3],[11,-31],[2,-10],[5,-22],[1,-14],[-8,-33],[-2,-1],[-1,-4],[-2,-5],[0,-4],[-1,-4],[-3,-1],[-3,0],[-3,-1],[-13,-15],[-2,-3],[-12,-27],[-2,-1],[-9,-3],[-9,-7],[-3,-1],[-5,-4],[-4,-10],[-6,-9],[-7,-1],[-6,6],[-8,22],[-5,8],[-5,3],[-7,1],[-7,-1],[-5,-5],[-6,-19],[-3,-3],[-4,2],[-1,4],[0,6],[-1,6],[-5,6],[-19,0],[-9,3],[-5,-3],[-3,-8],[-2,-13],[2,-10],[2,-8],[2,-7],[1,-2],[7,-1],[2,-2],[8,-16],[0,-10],[-4,-10],[-8,-5],[-6,3],[-5,-5],[-5,-8],[-4,-9],[-2,-8],[0,-12],[-1,-11],[-3,-10],[-2,-8],[-9,-17],[-3,-5],[-9,-8],[-4,-2],[-3,2],[-4,-11],[-10,-16],[-5,-10],[-1,-6],[-1,-5],[-1,-4],[-7,-12],[-2,0],[-1,7],[-15,-12],[-8,-8],[-4,-11],[-4,-15],[-8,-2],[-16,7],[-20,-9],[-3,-5],[-3,-6],[-5,7],[-9,17],[-2,0],[-1,-6],[-2,-7],[-1,-7],[3,-14],[-2,-7],[-2,-7],[-2,-15],[-3,-4],[-5,-2],[-10,-8],[-10,-4],[-2,-2],[-3,-5],[-2,0],[-1,4],[-2,5],[-4,0],[-6,-6],[-5,-9],[-3,-8],[-1,2],[-1,3],[-10,-21],[-6,-9],[-6,-3],[-2,-3],[-7,-16],[-3,-5],[-12,-7],[-7,-2],[-5,3],[-3,3],[-3,-2],[-3,-5],[-2,-2],[-1,1],[-1,3],[-1,3],[-1,1],[-1,-1],[-2,-2],[-11,-5],[-8,-1],[-5,3],[-2,9],[-2,4],[-6,2],[-2,3],[-2,2],[-4,-1],[-5,-7],[-5,-11],[-7,-8],[-5,3],[0,3],[-1,3],[0,6],[0,3],[-2,2],[-1,1],[-4,6],[-2,-3],[-2,-11],[-1,-1],[-3,-3],[3,-6],[0,-6],[-3,-5],[-4,-3],[1,9],[-1,9],[-3,7],[-3,3],[-4,-1],[-5,-4],[-5,-7],[-5,-8],[-3,8],[-3,2],[-2,-2],[-3,0],[-7,1],[-2,-1],[-7,3],[-27,1],[-2,-2],[-5,-8],[-3,-2],[-7,3],[-4,0],[-5,-3],[-1,5],[-11,17],[-3,6],[-1,7],[-4,13],[-4,18],[-16,45],[-7,11],[-27,15],[-5,8],[-3,3],[-5,2],[-5,-2],[-7,-12],[-2,-2],[-3,-2],[-6,-5],[-5,-1],[-8,0],[-4,3],[-2,5],[-2,0],[1,-9],[-1,-11],[-3,-11],[-3,-6],[-3,-3],[-12,-1],[-2,-2],[-4,-4],[-3,0],[0,10],[2,3],[3,-1],[2,1],[-2,9],[2,8],[-2,12],[-4,9],[-7,4],[3,10],[3,8],[2,8],[-2,11],[-2,-12],[-3,-1],[-3,2],[-4,-2],[-21,18],[-11,7],[-8,-4],[-2,3],[-2,4],[2,6],[1,4],[3,4],[2,3],[-2,5],[-1,1],[-2,0],[-3,2],[-1,4],[0,4],[0,3],[-3,1],[-9,2],[-4,-2],[-3,-8],[-2,4],[2,9],[-1,7],[-1,8],[0,6],[-2,7],[-5,0],[-5,-1],[-2,3],[-1,7],[-4,1],[-8,-2],[-5,5],[-6,14],[-4,5],[-7,-12],[-4,-6],[-3,-2],[-6,3],[-8,15],[-4,6],[-6,3],[-13,2],[-5,5],[-3,3],[-3,0],[-4,3],[-1,6],[-9,23],[-5,25],[-2,22],[5,67],[5,21],[8,17],[10,10],[1,1],[0,1],[1,2],[4,-3],[3,-4],[7,-11],[2,-3],[5,-2],[2,-3],[2,-5],[1,-11],[1,-5],[8,-9],[8,3],[8,12],[7,15],[3,5],[4,-1],[9,-6],[9,1],[4,-1],[3,-5],[2,-6],[4,-6],[4,-4],[12,-4],[4,-4],[0,8],[2,3],[5,5],[5,8],[1,1],[5,0],[3,2],[15,18],[21,-20],[4,-7],[5,-1],[20,-20],[4,-5],[2,0],[2,-1],[2,-2],[2,-3],[3,-11],[0,1],[2,-7],[1,-3],[35,8],[7,6],[4,-7],[4,2],[3,7],[5,6],[1,-6],[3,-6],[3,0],[2,8],[8,-11],[2,-1],[2,5],[3,16],[3,3],[5,3],[19,17],[1,-3],[1,-1],[1,-2],[1,-2],[1,5],[3,3],[2,0],[3,-4],[3,6],[1,6],[0,7],[-2,6],[1,0],[1,-1],[0,-1],[0,-2],[2,-2],[2,-8],[0,-12],[-2,-17],[3,-6],[4,-3],[3,-1],[3,3],[3,4],[3,4],[5,1],[2,2],[3,6],[1,8],[0,8],[2,0],[10,-11],[10,-1],[11,8],[9,13],[3,7],[7,25],[2,10],[-1,8],[-3,2],[-3,1],[-3,3],[-2,6],[-5,16],[-2,7],[1,6],[3,12],[1,6],[2,4],[3,6],[2,5],[4,6],[6,7],[5,8],[3,13],[0,7],[0,6],[-2,11],[0,1],[-4,4],[0,4],[2,6],[1,11],[2,10],[1,7],[-1,3],[-2,6],[-1,3],[0,4],[1,2],[1,1],[4,27],[10,13],[12,3],[12,-7],[6,-7],[4,-4],[2,-6],[1,-8],[-1,-5],[-1,-4],[-1,-5],[-3,-10],[-6,-6],[-12,-6],[-5,-8],[-6,-14],[-4,-13],[5,-12],[1,-14],[0,-15],[-1,-9],[-2,-4],[-5,-2],[-2,-2],[-4,-7],[0,-2],[5,-10],[1,-5],[1,-13],[7,-24],[8,-35],[1,-8],[0,-11],[1,-13],[3,-12],[3,-11],[6,-7],[5,-4],[20,-3],[5,-3],[5,-2],[5,3],[2,6],[2,10],[3,9],[3,3],[4,4],[9,14],[3,3],[3,9],[2,3],[1,1],[14,5],[6,1],[5,-2],[17,-14],[5,-8],[3,-9],[1,-12],[3,-12],[5,-8],[5,3],[5,5],[9,2],[4,3],[8,13],[3,9],[3,11],[-2,7],[1,6],[2,2],[2,-3],[9,9],[7,-6],[7,-12],[4,-11],[8,1],[3,3],[3,3],[4,13],[6,3],[5,8],[5,9],[4,8],[3,12],[0,13],[-1,26],[1,13],[3,26],[7,35],[7,22],[7,18],[7,14],[2,2],[4,4],[2,2],[5,14],[4,6],[8,25],[4,8],[1,0],[2,-1],[1,1],[0,1],[0,5],[0,2],[2,2],[8,5],[2,3],[3,5],[3,4],[4,4],[4,1],[3,3],[1,8],[2,18],[2,0],[3,-7],[18,-10],[6,-5],[5,-1],[6,4],[6,11],[11,-12],[11,-17],[5,3],[4,7],[4,9],[5,20],[2,10],[1,12],[1,14],[0,2],[0,1],[1,2],[0,3],[0,4],[-2,2],[-1,1],[0,2],[-1,6],[-4,13],[-1,7],[-1,23],[2,48],[-3,23],[-6,17],[-2,10],[-1,15],[0,25],[-1,12],[-3,13],[-4,10],[-8,14],[-4,9],[-1,5],[0,6],[0,11],[-1,8],[-5,9],[-2,6],[0,6],[0,5],[1,4],[1,3],[-1,6],[-3,16],[-2,14],[1,10],[3,9],[6,12],[4,-3],[15,-6],[11,1],[4,-2],[5,-5],[3,-1],[3,1],[4,2],[2,-1],[0,-11],[5,7],[5,1],[12,-3],[4,-2],[9,-10],[3,-5],[2,-11],[1,-15],[3,-13],[5,-5],[6,-3],[11,-7],[6,1],[4,6],[9,25],[1,12],[-3,10],[-5,9],[-2,8],[3,11],[4,-1],[6,-6],[5,-4],[3,0],[2,2],[3,1],[1,3],[1,1],[7,-3],[3,0],[4,9],[1,13],[2,11],[7,3],[4,-10],[5,-8],[4,-10],[4,-26],[-1,-5],[-4,-2],[-2,0],[-5,3],[-1,1],[-1,5],[-1,7],[-1,5],[-3,0],[-2,-6],[0,-8],[2,-15],[0,-22],[2,-7],[5,-3],[2,1],[2,3],[2,2],[4,-2],[2,-4],[2,-5],[2,-5],[4,-3],[17,-4],[5,0],[12,8],[4,0],[1,-10]],[[90299,48073],[5,-5],[2,-7],[1,-9],[-1,-11],[-1,-9],[-3,-5],[-4,-2],[-6,0],[-4,3],[-3,9],[-1,11],[-1,11],[1,7],[3,2],[2,-2],[0,-1],[5,8],[2,2],[3,-2]],[[92552,48414],[9,14],[3,2],[5,-14],[2,-9],[0,-9],[-2,2],[-1,-1],[0,-1],[-4,6],[-8,6],[-4,4]],[[92583,48475],[7,0],[4,-6],[2,-10],[-2,-12],[-3,10],[-5,1],[-7,-3],[-6,-1],[2,7],[2,6],[6,8]],[[92955,48538],[7,-28],[14,-50],[6,-29],[-2,-11],[-8,34],[-5,32],[-11,31],[-9,33],[-16,21],[11,-3],[9,-9],[4,-21]],[[92402,48625],[1,-3],[4,-2],[1,-3],[0,-6],[-1,-5],[-1,-9],[-4,-20],[1,-11],[-3,-6],[-3,3],[-8,15],[-2,4],[-15,34],[-2,7],[-2,12],[1,13],[6,11],[6,10],[10,3],[11,-7],[0,-32],[0,-8]],[[91941,48718],[3,-1],[3,1],[2,-1],[2,-7],[-5,-2],[-5,-6],[-1,9],[-3,2],[-7,-3],[-12,0],[-14,7],[-6,0],[-4,-11],[-4,4],[-3,-2],[-2,-4],[-4,-2],[-1,3],[2,7],[6,10],[5,-1],[6,9],[12,20],[17,-12],[6,-7],[5,-10],[2,-3]],[[92241,48742],[2,-7],[0,-16],[-4,-10],[-3,-13],[-8,-1],[-5,17],[-4,14],[1,21],[-2,7],[-3,2],[-3,4],[-2,7],[2,0],[-1,8],[3,8],[3,3],[2,-7],[4,-13],[5,-12],[6,-8],[7,-4]],[[92225,48807],[-2,-8],[-5,-6],[-6,-4],[-11,-8],[-3,4],[0,19],[-1,14],[-1,21],[1,28],[6,0],[12,-9],[2,-2],[6,-10],[1,-2],[0,-5],[0,-12],[0,-11],[-5,-5],[1,-1],[1,-7],[3,4],[1,0]],[[92216,48893],[-6,6],[0,15],[5,14],[6,5],[5,-5],[3,-9],[3,-10],[0,-4],[-1,-2],[-1,-4],[-1,-4],[-3,-2],[-10,0]],[[92537,47941],[-2,-33],[-1,-15],[3,-15],[-7,-16],[-16,-29],[-4,-20],[1,-11],[3,-7],[3,-6],[3,-8],[1,-9],[0,-9],[0,-9],[-1,-10],[-2,-5],[-7,-9],[-2,-6],[0,-15],[0,-5],[-2,-6],[-4,-6],[-2,-5],[-2,-7],[-3,-20],[-2,-9],[-3,-5],[-3,-5],[-2,-5],[-2,-9],[-6,4],[-3,-9],[-1,-13],[-3,-11],[-3,18],[-4,18],[-7,14],[-9,11],[1,15],[-8,15],[-10,14],[-6,13],[-2,10],[0,32],[-1,4],[-6,6],[-2,4],[-1,4],[-2,30],[-3,19],[0,8],[5,28],[0,5],[4,63],[-3,14],[1,7],[0,8],[-1,7],[-2,6],[2,12],[0,10],[-2,11],[-7,20],[-14,58],[-1,17],[-2,10],[-5,17],[-6,12],[-2,8],[-1,10],[-1,3],[-4,6],[-1,3],[-1,7],[0,6],[-2,6],[-1,4],[-2,2],[-5,0],[-3,2],[-1,5],[-3,12],[-5,8],[-24,62],[-1,6],[1,14],[0,4],[-2,5],[-5,6],[-6,14],[-3,9],[-4,16],[-4,4],[-5,2],[-4,3],[-1,3],[-2,10],[-1,4],[-3,4],[-5,5],[-7,12],[-5,1],[-6,0],[-41,17],[-11,9],[-38,49],[-54,116],[-5,6],[-17,8],[-17,14],[-2,4],[-1,3],[-1,3],[-1,4],[-2,12],[-1,4],[-4,8],[-18,22],[-5,9],[-2,2],[-13,11],[-6,13],[-3,4],[-5,4],[-5,1],[-4,4],[-2,9],[-6,15],[-6,0],[-2,0],[0,3],[0,2],[-1,3],[-4,5],[-3,7],[-1,1],[-1,5],[0,2],[-4,4],[-1,2],[-2,3],[-3,2],[-10,3],[-2,3],[-3,7],[-4,7],[-1,3],[-3,3],[-3,1],[-7,2],[-7,8],[-6,1],[-22,-8],[-11,0],[-10,6],[-6,14],[0,7],[2,9],[4,4],[4,-6],[6,-5],[5,5],[11,14],[6,-9],[5,9],[0,13],[-7,4],[4,9],[0,6],[-4,4],[-3,1],[-5,1],[-4,2],[-9,9],[6,24],[-1,2],[0,5],[0,4],[6,-6],[3,-6],[2,-7],[2,-6],[9,-11],[2,-1],[1,-7],[3,-5],[7,-6],[7,-19],[3,-5],[2,-2],[12,-4],[2,-3],[2,-2],[2,-2],[1,-2],[2,-13],[2,-5],[3,-3],[3,0],[3,-2],[4,-3],[17,-16],[6,-13],[2,-22],[5,-15],[11,-4],[21,1],[3,-1],[2,-4],[1,-5],[1,-5],[3,-2],[3,1],[2,2],[3,2],[6,-3],[5,-5],[5,-7],[5,-9],[8,-23],[2,-1],[6,0],[3,-1],[16,-25],[3,1],[21,-29],[5,-12],[3,-10],[5,-13],[6,-9],[7,4],[2,-15],[3,-10],[5,-6],[4,-2],[10,1],[3,-1],[6,-6],[3,-2],[4,4],[3,-3],[5,-9],[5,-8],[1,0],[9,0],[2,-2],[4,-6],[1,-1],[4,1],[2,-1],[0,-2],[0,-2],[0,-4],[1,-2],[-1,-7],[0,-3],[1,-1],[2,-2],[1,0],[2,-5],[10,-22],[14,-42],[7,-18],[9,-15],[10,-12],[19,-20],[5,-9],[5,-6],[1,-4],[2,-22],[1,-2],[2,-2],[2,-2],[1,-3],[2,-7],[3,-8],[2,-14],[2,-7],[6,-7],[5,0],[5,6],[3,9],[4,-8],[4,-11],[2,-12],[2,-11],[1,-6],[5,-12],[1,-6],[0,-8],[-1,-5],[-1,-6],[1,-7],[3,-6],[2,-5],[0,-2],[3,-2],[3,-2],[6,0],[7,-3],[5,-7],[5,-10],[5,-9],[6,-5],[5,-4],[5,-3],[6,0],[6,5],[4,8],[3,2],[4,-15],[0,-6],[1,-12],[0,-6],[2,-6],[3,-11],[1,-6],[2,-9],[6,-4],[6,-1],[5,0],[0,1],[4,7],[3,-7],[0,-8],[0,-8],[1,-9],[3,-9],[8,-15],[4,-8],[7,-33],[5,-14],[3,-10],[-1,-4],[5,-5],[7,-11],[6,-14],[2,-13]],[[91795,48970],[2,-9],[-2,-8],[-3,-8],[-1,-10],[0,-10],[1,-8],[1,-6],[2,-6],[-2,-7],[-2,-3],[-6,-2],[-10,-8],[-3,-2],[-3,-2],[-2,0],[-1,6],[-2,6],[-4,-1],[-4,-6],[-3,-5],[-2,2],[-2,3],[-2,3],[-4,-3],[-21,-2],[-2,-1],[-2,0],[-3,2],[-2,4],[-9,20],[-6,7],[-3,4],[-4,30],[-12,29],[-4,7],[-7,-4],[-8,8],[-6,12],[0,9],[2,2],[2,-2],[2,-3],[2,-1],[2,2],[20,30],[5,1],[4,0],[3,1],[3,4],[11,8],[0,2],[4,1],[5,6],[4,1],[7,-5],[15,-19],[6,0],[2,-3],[8,-7],[2,-2],[1,-1],[3,-6],[1,-2],[8,-3],[7,-6],[7,-11],[3,-14],[-2,-18],[3,3],[1,1]],[[91062,49145],[6,-17],[4,-8],[5,-4],[-6,-23],[-5,-10],[-7,-4],[-11,0],[-4,1],[-3,3],[-6,9],[1,4],[0,2],[1,2],[7,-5],[7,6],[4,12],[-2,15],[2,3],[2,5],[1,4],[0,5],[4,0]],[[90953,49295],[2,-4],[1,-9],[-1,-18],[-3,-15],[-8,-3],[-10,1],[-9,-1],[1,3],[3,9],[-6,0],[-3,-3],[-1,-7],[-2,-10],[-1,0],[-3,9],[-2,-10],[-2,-16],[0,-8],[-3,-5],[-9,-24],[-4,-7],[-3,-2],[-3,0],[-2,0],[-4,2],[-10,10],[-2,2],[-6,-3],[-11,-12],[-7,-1],[0,2],[0,2],[2,4],[-9,-6],[-9,-4],[-9,-1],[-32,11],[-1,1],[-2,6],[-2,1],[-2,-1],[-2,-2],[-1,-1],[-2,2],[-2,4],[-2,4],[-2,2],[-2,2],[-2,8],[-1,3],[-2,2],[-1,1],[-5,0],[-7,5],[-2,-1],[-1,-5],[0,-5],[1,-4],[3,-2],[4,-4],[2,-8],[0,-8],[-4,-4],[-11,-4],[-5,2],[-2,10],[-6,-5],[-5,-2],[-3,-5],[-3,-21],[-5,-2],[-5,5],[-4,10],[-2,8],[-3,24],[0,6],[5,11],[2,4],[5,-4],[3,0],[9,5],[2,0],[1,3],[1,8],[-1,6],[-1,7],[-7,18],[-1,6],[-1,6],[0,7],[0,8],[1,2],[4,-4],[1,-2],[2,-4],[2,-3],[3,1],[1,5],[2,16],[2,4],[1,1],[0,1],[1,1],[1,1],[2,-1],[3,-6],[1,-2],[3,1],[5,3],[3,1],[3,-2],[7,-5],[4,-1],[3,2],[11,14],[8,5],[6,1],[7,-3],[6,-7],[7,5],[47,-5],[3,-3],[3,-7],[3,-8],[1,-7],[2,0],[2,10],[3,5],[3,0],[2,-4],[2,-7],[4,-1],[7,1],[12,-10],[2,0],[2,-2],[11,-8],[4,2],[8,0],[7,-3],[4,-7],[2,0],[0,16],[-1,5],[-3,10],[0,4],[-2,5],[-4,6],[-2,4],[4,3],[3,-4],[5,-10],[3,-2]],[[91592,49597],[1,-4],[4,-18],[3,-12],[6,-17],[2,-12],[-4,-1],[-7,-7],[-4,0],[-2,2],[-1,2],[-1,3],[-1,5],[-5,7],[-2,3],[-3,2],[0,-17],[-5,3],[-9,18],[-3,2],[-3,4],[-6,13],[-1,5],[-1,3],[-1,1],[-4,0],[-1,1],[-4,9],[-2,10],[0,23],[9,40],[2,7],[2,-3],[2,-1],[7,0],[2,-2],[6,-14],[17,-20],[4,-9],[1,-7],[0,-6],[0,-7],[2,-6]],[[92830,47826],[8,-7],[6,-14],[3,-16],[0,-17],[-6,-15],[-7,5],[-6,15],[0,16],[2,-6],[2,-13],[2,-5],[3,-5],[2,1],[4,9],[1,14],[-4,15],[-7,11],[-5,7],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,4],[1,2],[2,3]],[[92819,47841],[-1,13],[-3,13],[-1,10],[3,5],[2,-6],[1,-11],[1,-24],[-2,0]],[[92356,48020],[5,-10],[1,-11],[-1,-11],[-3,-12],[-2,0],[-1,1],[-7,4],[-1,1],[0,8],[-1,6],[-2,5],[-3,3],[7,10],[2,6],[3,8],[3,-5],[0,-3]],[[92684,48077],[-2,-4],[3,-26],[-3,-19],[-8,-4],[-7,17],[-1,1],[-1,-1],[-1,0],[-1,4],[0,4],[1,2],[0,3],[2,9],[4,9],[0,3],[3,6],[5,6],[5,1],[1,-11]],[[92699,48101],[5,-1],[3,-8],[-1,-9],[-3,-6],[-4,1],[-3,5],[-3,4],[-5,-2],[2,6],[6,6],[3,4]],[[92248,44309],[1,7],[3,0],[-1,-6],[-3,-1]],[[92185,44343],[0,4],[2,3],[-2,-7]],[[92180,44394],[3,5],[1,-2],[-3,-6],[-1,3]],[[90166,48397],[3,-2],[2,-3],[0,-5],[-1,-2],[-2,1],[-2,0],[-1,1],[-1,2],[0,4],[2,4]],[[90016,48566],[4,10],[6,5],[7,-15],[3,-9],[-5,-11],[-9,5],[-6,15]],[[89671,49443],[0,13],[4,9],[5,2],[4,-6],[-2,-1],[-4,-5],[-4,-6],[-3,-6]],[[91950,44761],[2,-2],[1,-4],[-1,-7],[-3,-4],[-2,2],[0,7],[-2,4],[-1,2],[-1,5],[-8,8],[-4,8],[1,9],[5,6],[6,1],[4,-3],[3,-3],[0,-6],[1,-1],[0,-3],[-1,-10],[-1,-1],[-1,-1],[0,-4],[1,-2],[1,-1]],[[89948,45439],[2,-3],[0,-6],[-3,-12],[-5,-5],[-3,7],[-1,8],[3,5],[3,2],[2,3],[2,1]],[[89909,45501],[0,-6],[2,-7],[-1,-6],[-3,-4],[-6,2],[-6,8],[-10,24],[-13,13],[2,8],[14,2],[11,-5],[5,-8],[3,-11],[2,-10]],[[89905,45667],[5,-7],[3,-9],[0,-10],[-6,-8],[-10,1],[-5,16],[-4,16],[4,10],[7,-3],[4,-3],[2,-3]],[[89909,45700],[3,-7],[3,-15],[-2,-5],[-4,4],[-8,5],[-11,2],[-7,7],[-2,11],[-3,12],[4,7],[9,-1],[13,-12],[5,-8]],[[91996,47573],[5,-6],[5,-10],[0,-9],[-5,-8],[-3,-3],[-7,-2],[-5,1],[-2,4],[-4,5],[-3,8],[0,6],[4,8],[2,3],[5,5],[4,0],[4,-2]],[[89884,48469],[-5,0],[-8,6],[-1,1],[-3,3],[-5,8],[1,6],[1,4],[1,6],[2,4],[5,-2],[7,-8],[7,-10],[2,-12],[-4,-6]],[[91667,49479],[4,1],[1,-2],[-1,-4],[-5,-3],[-7,1],[-4,4],[-1,1],[-3,2],[-2,-2],[-1,-1],[0,-3],[-2,-1],[-3,5],[-2,7],[0,6],[3,2],[6,-4],[3,4],[1,10],[2,2],[3,-7],[2,-9],[2,-6],[4,-3]],[[59690,67934],[-3,-3],[-2,-3],[-2,-4],[-2,-6],[-2,-7],[-1,-6],[-1,-5],[-4,-2],[1,-1],[1,0],[0,-1],[0,-3],[-2,-2],[-2,-3],[-1,-3],[1,-4],[-2,-1],[-1,-1],[0,-3],[1,-3],[-3,-5],[-6,-19],[-2,-3],[-2,-3],[-2,-2],[-1,-3],[-1,-4],[-1,-3],[-3,-3],[0,-3],[3,-9],[-1,-8],[-2,-8],[-2,-8],[0,-30],[-1,-8],[-3,-5],[-4,-4],[-1,-4],[0,-8],[-1,-9],[-2,-10],[-3,-7],[1,-7],[-1,-36],[1,-5],[3,-8],[0,-7],[-1,-7],[-2,-3],[-2,-2],[-7,-7],[0,-4],[-1,-7],[0,-4],[1,-12],[1,-35],[-8,-10],[0,-4],[1,-5],[1,-9],[0,-8],[-2,-7],[1,-2],[1,-3],[2,-7],[-3,-3],[0,-3],[0,-4],[1,-4],[-1,-6],[-1,-4],[-1,-3],[-1,-3],[-1,-11],[-7,-17],[-4,-27],[-11,-32],[-3,-17],[-1,-2],[0,-1],[0,-1],[-1,0],[3,-18],[-3,-11],[-6,-9],[-6,-11],[1,-1],[1,-3],[-4,-4],[-2,-7],[-3,-27],[-1,-6],[-3,-10],[-1,-7],[-4,-15],[-1,-7],[0,-10],[1,-8],[1,-6],[2,-7],[0,-3],[-2,-10],[2,-9],[3,-8],[3,-10],[3,-5],[0,-3],[0,-4],[0,-3],[-1,-1],[-1,-2],[0,-8],[-2,-20],[-4,-17],[5,-17],[-4,-41],[2,-5],[-8,-2],[-2,-2],[-1,-3],[-1,-6],[-1,-5],[-3,-4],[-2,-9],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[0,-3],[1,0],[1,-2],[-2,-9],[-3,-17],[-3,-6],[-2,0],[0,3],[-3,2],[-2,2],[-2,-3],[-1,-13],[-3,-7],[2,-7],[-3,-7],[-6,-4],[-3,-2],[-3,0],[-1,0],[1,-9],[1,-4],[10,0],[0,-3],[-2,0],[0,-5],[2,-2],[1,-3],[1,-7],[-3,3],[-1,1],[1,-2],[0,-1],[1,-1],[0,-4],[-2,0],[-1,5],[-5,12],[-5,11],[-3,4],[-2,2],[-5,3],[-26,6],[-7,8],[-19,43],[-1,2],[-2,-1],[-16,28],[-4,3],[-3,1],[-4,-5],[-3,16],[-2,-4],[-3,6],[-10,15],[-2,2],[-1,1],[-1,3],[-1,5],[0,2],[-2,3],[-2,2],[-5,2],[0,15],[-13,15],[0,11],[-4,6],[-5,12],[-3,13],[0,9],[-1,2],[-1,1],[-1,2],[-1,3],[-1,0],[0,-4],[-2,0],[-1,3],[-3,5],[0,2],[-4,29],[-2,4],[-2,-2],[-2,8],[-6,18],[-3,10],[-36,41],[-2,6],[-1,1],[-7,21],[-5,9],[-3,8],[0,3],[-18,25],[-3,5],[-1,5],[-1,5],[-2,7],[-4,7],[-3,3],[2,4],[0,-4],[2,0],[-2,19],[-5,2],[-2,-8],[5,-9],[-4,3],[-3,8],[-2,11],[-1,24],[-2,10],[-5,17],[3,12],[4,28],[2,13],[-3,8],[-2,5],[-1,12],[-2,2],[-3,2],[-2,3],[-1,11],[-1,27],[-1,7],[0,4],[2,5],[0,6],[-1,13],[0,3],[-1,9],[-1,9],[1,4],[2,4],[-1,8],[-4,6],[-1,0],[-1,6],[-2,5],[-2,1],[-3,-2],[-3,7],[-7,8],[-3,5],[-4,15],[0,4],[-1,3],[-4,6],[-1,3],[-1,1],[-4,13],[-1,1],[-3,2],[0,1],[-1,2],[-1,5],[0,1],[-13,25],[-4,2],[-6,7],[-6,8],[-4,7],[-1,9],[-2,12],[-1,11],[-4,5],[-3,1],[-2,5],[-5,26],[-1,0],[1,22],[-1,10],[-7,7],[-14,18],[2,0],[-1,4],[-1,2],[-1,1],[-2,1],[0,1],[1,2],[1,2],[-1,3],[-1,0],[-2,-5],[0,-4],[0,-4],[2,-3],[-4,0],[2,22],[0,27],[-3,25],[-9,11],[0,4],[2,7],[0,8],[-1,9],[-1,9],[1,8],[2,12],[1,6],[0,10],[-1,6],[-1,5],[-2,6],[-6,15],[-1,7],[-2,3],[-6,13],[-6,5],[2,6],[3,5],[1,2],[0,17],[-4,11],[-11,21],[3,3],[1,3],[-1,3],[-1,3],[1,1],[1,1],[-1,1],[-1,1],[-1,4],[-2,3],[-1,3],[-1,2],[1,2],[1,1],[1,1],[2,0],[0,4],[-1,4],[0,4],[1,5],[-2,0],[-4,-15],[0,-6],[1,-5],[1,-3],[2,-4],[0,-8],[-2,0],[-1,8],[-2,4],[-3,0],[-3,-4],[-5,3],[-6,-6],[-4,-11],[-3,-10],[0,-11],[2,-9],[4,-6],[6,-3],[-5,-7],[-23,-61],[-2,-5],[-3,-5],[-8,-28],[-1,-9],[0,-25],[-2,-10],[-4,-8],[0,-4],[3,-5],[3,-8],[3,-8],[2,-13],[3,-6],[14,-17],[4,-6],[12,-27],[9,-10],[8,-15],[7,-18],[3,-11],[1,-15],[2,-19],[4,-18],[4,-11],[0,-4],[-1,-10],[8,-59],[0,-5],[1,-13],[-2,-5],[-3,-5],[-1,-7],[-3,-2],[-1,-6],[2,-6],[-1,-17],[-1,-21],[2,-7],[8,-16],[3,-8],[1,-6],[0,-12],[1,-6],[7,-13],[1,-1],[11,-31],[10,-3],[6,-12],[4,-18],[13,-88],[1,-12],[3,-3],[13,-14],[7,-12],[3,-8],[3,-10],[2,-2],[3,-2],[3,-2],[1,-4],[2,-12],[8,-29],[2,-4],[0,-3],[0,-1],[-1,0],[-1,0],[12,-19],[6,-13],[-1,-12],[2,-4],[2,-6],[2,-8],[0,-5],[1,-2],[7,-17],[13,-26],[3,-13],[3,-3],[3,-3],[2,-3],[2,-8],[-1,-6],[1,-5],[5,-1],[5,-5],[9,-21],[6,-7],[0,-3],[0,-5],[0,-4],[-1,-5],[3,-3],[3,-2],[3,2],[2,-9],[6,-5],[13,-7],[19,-34],[7,-25],[3,-6],[2,-6],[6,-27],[1,-7],[0,-4],[1,-4],[1,-12],[2,-4],[0,-4],[-2,0],[-4,0],[-3,13],[-7,8],[-7,5],[-6,6],[-2,0],[-2,-8],[0,-5],[0,-4],[2,-7],[5,-10],[3,-8],[1,-9],[2,-4],[4,2],[4,4],[2,-2],[0,-8],[-1,-8],[-2,-8],[-3,-6],[1,-2],[2,-4],[1,-2],[5,-7],[2,-1],[1,-2],[2,-11],[2,-4],[0,-4],[-3,5],[-7,16],[-2,0],[0,-4],[1,-4],[1,-5],[-2,0],[-2,12],[-5,-1],[-5,-8],[-3,-11],[6,-6],[5,-12],[8,-26],[-1,-4],[-1,-5],[0,-5],[0,-7],[5,-6],[12,-11],[4,-7],[1,-5],[0,-13],[1,-6],[2,-5],[5,-10],[2,-6],[1,-12],[2,-26],[2,-8],[9,-17],[11,-14],[12,-10],[5,-8],[4,-10],[1,-6],[-1,-23],[-1,-2],[-2,-3],[-1,-3],[0,-3],[2,-5],[0,-4],[0,-13],[2,-10],[2,-8],[6,-7],[4,-9],[5,-13],[2,-10],[-4,1],[0,-9],[2,-8],[6,-15],[2,-9],[4,-17],[2,-8],[4,-6],[4,-4],[3,-4],[2,-7],[2,-19],[0,-9],[-2,-7],[-5,0],[-3,5],[-2,3],[-4,-12],[0,-7],[0,-11],[0,-10],[1,-8],[0,-16],[-5,-36],[3,-17],[3,-6],[9,-5],[5,-5],[3,-9],[2,-18],[10,-23],[3,-16],[10,-52],[4,-16],[6,-16],[3,-15],[7,-19],[24,-104],[10,-31],[11,-51],[22,-58],[2,-8],[3,-17],[18,-53],[10,-21],[3,-7],[24,-92],[4,-28],[6,-25],[3,-30],[5,-16],[12,-30],[2,-7],[3,-18],[1,-8],[9,-24],[3,-26],[13,-43],[24,-80],[1,-19],[3,-16],[4,-11],[6,-12],[1,-11],[0,-22],[1,-11],[1,-9],[2,-7],[4,-5],[4,-6],[7,-13],[5,-17],[7,-46],[1,-8],[5,-15],[5,-19],[4,-7],[0,-9],[-4,-19],[0,-16],[11,-9],[14,-50],[38,-56],[5,-14],[11,-57],[7,-16],[11,-30],[4,2],[-2,8],[-2,8],[3,1],[5,-11],[8,-7],[10,-20],[4,-17],[1,-17],[8,-10],[9,3],[7,-4],[7,-4],[6,-6],[4,-9],[6,-26],[5,-13],[-2,-6],[-4,12],[-6,12],[-4,0],[-10,-9],[-4,-4],[-6,5],[-5,4],[-5,2],[-4,-1],[-4,1],[-5,4],[-2,5],[-3,7],[-3,2],[0,3],[-5,4],[-6,3],[-2,-3],[-4,-14],[-2,-18],[2,-28],[-3,-25],[-1,-18],[2,-15],[5,-2],[2,-7],[0,-9],[-1,-4],[1,-10],[0,-7],[0,-13],[-1,-25],[0,-51],[-1,-10],[-3,-16],[0,-9],[1,-9],[2,-9],[6,-16],[5,-18],[2,-9],[1,-10],[-1,-28],[3,-28],[2,-22],[2,-20],[13,-43],[4,-17],[5,-22],[4,-54],[2,-9],[6,-21],[11,-28],[8,-8],[-4,9],[-7,27],[5,0],[4,-5],[2,-9],[2,-10],[3,-29],[1,-5],[4,-6],[3,-7],[1,-7],[4,-9],[5,-13],[11,-16],[10,-8],[5,-3],[1,-2],[3,-5],[4,-4],[4,-3],[16,-2],[22,-8],[21,-15],[8,-9],[14,-26],[4,-14],[2,-27],[4,-18],[9,-15],[8,-13],[5,-4],[4,-3],[-1,9],[1,0],[6,-13],[-1,-17],[5,-25],[18,-16],[10,-11],[6,-8],[17,-28],[25,-47],[5,-6],[4,1],[1,3],[1,4],[1,2],[2,-1],[5,-6],[2,-4],[1,-4],[4,-18],[3,-7],[4,-8],[11,-13],[6,-4],[1,-22],[0,-7],[-2,-7],[-2,-6]],[[56986,69217],[-1,-4],[4,-39],[3,-19],[5,-12],[6,-3],[14,-2],[11,-10],[6,0],[12,4],[3,-2],[3,-3],[4,-1],[5,6],[6,3],[9,2],[45,23],[52,32],[12,4],[27,-3],[110,-56],[80,-19],[5,-5],[4,-3],[14,2],[6,-1],[20,-17],[11,-7],[13,0],[10,7],[5,1],[5,-6],[3,-7],[3,-2],[3,0],[3,-2],[8,-8],[17,-10],[19,-4],[7,-4],[4,-6],[2,3],[3,3],[1,2],[3,-1],[17,1],[2,-1],[2,-3],[3,-4],[-1,-2],[0,-2],[1,-4],[2,-8],[1,-3],[1,-1],[1,-2],[0,-9],[1,-3],[2,-7],[3,-18],[3,-8],[6,-10],[8,-8],[9,-6],[18,-5],[6,-5],[7,-2],[6,6],[14,-14],[16,5],[33,29],[4,2],[3,-4],[2,-9],[0,-11],[1,-5],[5,-22],[1,-19],[1,-5],[8,-9],[13,-4],[50,1],[3,-2],[3,-3],[2,-4],[2,-3],[4,-2],[8,2],[6,-1],[12,-6],[6,-1],[5,2],[12,11],[7,3],[5,-2],[5,-4],[4,-6],[4,-6],[2,-3],[10,0],[4,-1],[3,-2],[4,-5],[50,-32],[10,-10],[5,-5],[7,-1],[1,-4],[2,-15],[1,-6],[2,-3],[6,-2],[48,-47],[45,4],[8,2],[38,34],[41,37],[15,20],[11,11],[2,1],[2,6],[2,5],[41,54],[4,16],[8,-3],[8,7],[13,21],[-3,6],[-1,0],[-2,-2],[1,6],[3,4],[2,0],[1,-6],[2,0],[4,6],[13,21],[3,5],[4,3],[6,14],[2,4],[4,1],[2,3],[2,4],[2,4],[-1,0],[-1,1],[0,3],[8,8],[-1,-17],[8,-12],[1,0],[11,-6],[10,-2],[-3,-3],[-3,-6],[-2,-3],[0,-3],[0,-1],[1,0],[1,0],[-3,-4],[1,-5],[3,-4],[3,-3],[11,12],[-1,-7],[1,-3],[3,-1],[1,1],[1,4],[8,14],[1,-3],[1,-1],[1,3],[1,2],[0,3],[0,4],[2,0],[0,-6],[1,-5],[1,-3],[2,-2],[1,4],[3,16],[-4,4],[-4,-2],[-4,-3],[-5,-3],[0,4],[1,0],[2,0],[0,4],[-4,-2],[-16,-2],[0,4],[10,5],[10,10],[17,28],[6,18],[4,24],[1,25],[-3,20],[2,0],[2,-11],[2,-11],[4,-8],[5,-2],[-7,11],[-4,17],[1,11],[10,-11],[8,-10],[9,-7],[10,-2],[12,3],[39,19],[82,54],[0,-4],[-4,-1],[-26,-18],[-21,-22],[-15,-13],[-12,-15],[-1,-1],[-4,-1],[-2,-2],[-11,-13],[-5,-4],[-11,-1],[-2,-3],[-1,0],[-5,-11],[0,-5],[6,-3],[2,0],[2,3],[2,0],[4,-4],[8,0],[7,5],[4,5],[2,10],[6,-3],[6,-9],[3,-8],[2,0],[2,10],[4,11],[5,8],[4,4],[3,2],[3,-3],[3,-4],[4,-4],[3,1],[4,2],[3,1],[4,-4],[-1,0],[-1,0],[0,-1],[0,-3],[4,-1],[4,2],[5,6],[4,6],[-1,1],[-1,-1],[0,1],[0,3],[1,1],[0,1],[1,2],[9,-8],[2,-4],[3,4],[2,4],[3,12],[-2,5],[1,4],[5,7],[0,4],[0,3],[0,3],[2,2],[1,1],[10,-1],[3,-2],[5,-6],[0,-2],[0,-3],[1,-2],[2,-1],[3,1],[1,3],[1,4],[-5,5],[2,2],[2,1],[2,-1],[-6,14],[-11,15],[-13,11],[-13,0],[3,3],[7,5],[24,6],[8,-1],[26,-15],[36,-30],[8,-7],[11,-16],[29,-24],[9,-4],[4,0],[7,1],[42,22],[25,25],[10,7],[11,-1],[9,-8],[4,-16],[1,-7],[9,-22],[4,-17],[4,-10],[9,-15],[3,-2],[7,-3],[3,-3],[7,-14],[2,-2],[4,-4],[11,-16],[3,-3],[-9,3],[-27,32],[1,0],[2,0],[0,-1],[2,-3],[0,4],[-2,3],[-1,1],[-6,1],[-1,2],[-1,3],[-1,2],[-8,8],[-3,4],[-1,0],[-2,0],[-1,8],[-2,7],[-2,6],[-3,4],[4,0],[3,1],[-13,31],[-3,10],[-4,10],[-4,3],[0,-3],[-4,4],[-2,-2],[-1,-6],[-4,4],[0,-1],[0,-4],[0,-2],[-1,1],[-2,1],[-1,1],[0,-4],[-1,-4],[-1,-4],[6,0],[-2,-6],[5,-14],[-1,-8],[2,0],[0,-4],[-2,0],[0,-3],[1,-3],[1,-3],[-2,0],[-1,8],[-2,5],[-3,3],[-4,1],[1,4],[-1,1],[-2,-4],[-2,-9],[2,-1],[1,1],[1,4],[2,-3],[2,-1],[2,0],[0,-4],[-2,0],[0,-5],[1,-3],[2,-3],[2,-1],[3,0],[-2,-4],[-3,-1],[-3,1],[-2,4],[-2,0],[0,-3],[0,-1],[-1,0],[-1,-1],[1,-1],[1,-2],[2,-5],[-4,-9],[-1,-7],[3,-3],[6,-1],[0,-4],[-4,1],[-3,2],[-2,1],[-3,-4],[-1,0],[-2,4],[-2,-1],[-1,-3],[-1,-6],[1,-3],[2,-2],[1,-2],[-4,-3],[0,-4],[2,-6],[-2,-2],[-4,-1],[-2,-4],[0,-8],[1,-5],[3,-2],[3,3],[1,0],[-1,1],[-1,1],[0,2],[4,-3],[2,-1],[2,0],[3,-2],[0,-6],[0,-5],[1,-3],[3,-1],[5,-4],[4,-6],[3,-5],[2,9],[1,4],[2,3],[-1,-5],[0,-4],[0,-3],[1,-4],[-4,0],[0,-4],[4,0],[-1,-2],[0,-1],[-1,-1],[0,-4],[2,0],[0,1],[1,2],[1,1],[0,-1],[0,-1],[1,-2],[1,0],[0,4],[2,0],[-1,-8],[1,-6],[2,0],[2,10],[3,0],[4,9],[6,7],[6,-4],[-4,0],[0,-4],[4,-4],[1,3],[1,2],[2,3],[4,-4],[0,-4],[-2,-3],[0,-2],[0,-7],[3,2],[1,2],[-1,-5],[0,-4],[-1,-2],[-2,-2],[0,-3],[1,-5],[1,-7],[-6,-9],[0,-4],[3,0],[2,1],[2,3],[1,4],[1,0],[1,-6],[0,-1],[0,-4],[2,-3],[3,-2],[0,-4],[-3,-2],[-2,-2],[-1,-3],[-1,-5],[1,-2],[2,-3],[3,4],[2,0],[3,-1],[1,-3],[0,-3],[-1,0],[0,-5],[2,-4],[4,-3],[4,0],[3,4],[0,3],[-4,1],[-3,3],[-2,6],[0,7],[4,-2],[5,-5],[3,-1],[1,-1],[-2,9],[4,0],[2,0],[0,4],[-2,1],[0,1],[0,1],[0,1],[3,4],[1,-4],[2,0],[1,0],[-1,6],[2,4],[3,1],[3,-10],[4,-2],[4,-1],[4,2],[7,7],[3,10],[-1,11],[-5,9],[7,0],[1,0],[1,17],[0,9],[-1,10],[-5,11],[-1,5],[4,4],[-4,5],[-6,4],[-6,1],[-3,-2],[-2,10],[3,-1],[4,0],[7,-3],[12,-4],[3,-5],[2,0],[3,-1],[1,-10],[3,-7],[4,-5],[9,-5],[3,-5],[5,-12],[12,-21],[5,-8],[8,-24],[7,-12],[8,-10],[10,-5],[0,-1],[13,0],[11,2],[21,10],[25,23],[4,6],[12,11],[3,4],[2,0],[0,-4],[-9,-6],[-15,-22],[-9,-4],[-16,-13],[-24,-12],[14,0],[0,-4],[-4,-4],[8,0],[4,3],[1,5],[2,0],[0,-3],[1,-1],[1,1],[2,-1],[17,20],[15,9],[2,4],[2,0],[1,-3],[4,-2],[-1,-3],[-2,0],[0,-5],[3,2],[7,7],[0,4],[-8,0],[0,4],[4,3],[5,-3],[4,-5],[2,-7],[1,-4],[1,-6],[0,-3],[-4,0],[10,-6],[4,1],[4,5],[0,5],[-3,3],[-1,0],[0,5],[10,5],[3,3],[-1,4],[0,5],[2,5],[1,6],[-2,0],[-2,-4],[-6,-8],[0,-2],[-1,-2],[0,-2],[1,-2],[-3,-2],[-7,1],[-6,1],[-5,4],[9,1],[5,9],[3,12],[4,10],[4,3],[7,3],[3,2],[5,10],[3,3],[5,0],[0,-4],[-8,0],[0,-4],[4,-5],[10,-24],[3,-10],[-1,-3],[-4,-2],[-4,-5],[0,1],[0,2],[0,1],[-2,0],[0,-4],[5,-6],[2,-8],[0,-9],[-3,-10],[10,8],[5,2],[4,-1],[2,0],[1,0],[3,0],[0,3],[-4,5],[-2,0],[0,-5],[-2,0],[0,5],[15,10],[4,6],[2,0],[-2,-4],[2,-4],[2,3],[2,0],[2,-2],[1,-6],[3,0],[0,6],[0,5],[-1,1],[4,1],[-2,3],[-3,-1],[-3,0],[-3,2],[30,4],[-2,11],[4,2],[4,1],[0,10],[3,-2],[1,-2],[2,0],[4,2],[11,-11],[5,-3],[20,-4],[6,-4],[0,4],[6,-3],[9,1],[57,27],[54,39],[42,50]],[[59431,66335],[5,0],[1,0],[6,-23],[2,-11],[0,-14],[-4,7],[-2,8],[-8,33]],[[59446,66761],[6,-4],[2,-10],[1,-11],[3,-7],[0,-4],[-2,1],[-4,1],[-5,11],[-1,3],[-6,4],[-3,3],[-2,6],[-3,4],[-7,-6],[-2,4],[-2,7],[-1,7],[1,3],[2,3],[2,1],[3,0],[6,-1],[2,-3],[2,-3],[3,-4],[1,-2],[4,-3]],[[59606,67025],[5,-7],[5,-9],[0,-4],[-10,-2],[-10,1],[-8,6],[-6,14],[0,1],[0,8],[-1,12],[-1,4],[1,3],[0,1],[1,-4],[1,5],[1,4],[2,2],[2,1],[4,-4],[2,-3],[1,-5],[-7,-2],[-3,-3],[-1,-7],[1,-2],[1,-3],[5,-1],[8,3],[3,2],[1,-1],[1,0],[1,-4],[1,-4],[0,-2]],[[59160,68877],[-1,3],[-1,0],[2,2],[1,0],[1,-4],[1,-6],[-3,5]],[[59271,68941],[8,-3],[7,-8],[12,-18],[-6,8],[-43,34],[-8,3],[9,-1],[14,-12],[7,-3]],[[59188,68963],[7,8],[44,-10],[-2,-3],[-3,0],[-9,3],[-8,2],[-8,3],[-10,-5],[-4,2],[-8,-5],[-33,-33],[-6,-9],[3,9],[7,6],[5,5],[3,4],[4,5],[15,12],[3,6]],[[59647,67026],[0,-22],[-7,-7],[-7,4],[-5,9],[5,17],[14,-1]],[[64747,60326],[0,-1],[-6,-6],[-13,-7],[-11,5],[-3,-6],[-3,-1],[-3,0],[-3,-4],[-5,-11],[-3,-5],[-7,-4],[-10,-12],[-11,-4],[-6,-5],[-10,-13],[-5,-4],[-38,-21],[-18,-17],[-31,-45],[-29,-47],[-7,-17],[-4,-11],[-5,-21],[-9,-22],[-2,-7],[-1,-7],[0,-6],[1,-7],[1,-6],[0,-2],[-2,-11],[-6,-14],[-3,-24],[-7,-17],[-1,-10],[2,-12],[4,-13],[3,-14],[-3,-24],[4,-9],[9,-10],[0,-8],[-2,-43],[1,-26],[3,-25],[2,-3],[1,-3],[1,-4],[0,-3],[-2,-6],[0,-3],[0,-4],[-1,-5],[-2,-3],[-2,-2],[-6,-1],[-42,-25],[-2,-4],[-2,-4],[-2,-3],[-2,-1],[-5,-1],[-3,-1],[-21,-18],[-11,-14],[0,-13],[0,-3],[-1,0],[-1,-1],[0,-7],[-1,-1],[-1,2],[-2,2],[-2,2],[-2,4],[-3,1],[-3,-5],[-2,-2],[-14,-6],[-22,-25],[-4,-7],[-1,-9],[2,-11],[2,-7],[0,-4],[-6,-4],[-29,-6],[-6,-3],[-4,-6],[-5,-6],[-6,-16],[-6,0],[-2,-2],[-1,-4],[-3,0],[-14,-13],[-4,-5],[-7,5],[-8,-7],[-7,-10],[-5,-5],[-56,-30],[-60,-24],[-53,-30],[-30,-6],[-26,-23],[-8,-9],[-20,-37],[-4,-5],[-12,-4],[-16,-18],[-18,-26],[-4,0],[-5,4],[-7,-3],[-12,-11],[-5,-4],[-2,0],[-3,-1],[-2,13],[-1,6],[-3,0],[-4,-3],[-18,-4],[-40,-27],[-61,-33],[-33,-37],[-11,-10],[-13,-5],[-6,-5],[-11,-16],[-23,-23],[-11,-15],[-2,-19],[-3,1],[-4,4],[-5,4],[-7,-1],[-6,-7],[-4,-8],[-14,-41],[-5,-21],[-2,-24],[2,-3],[0,-7],[-1,-7],[-1,-4],[-3,-5],[-11,-9],[-3,-4],[-1,-14],[-4,-5],[-5,-2],[-5,-5],[-1,-4],[-1,-5],[0,-14],[-1,-3],[-2,-3],[-2,-4],[-2,-16],[-5,-7],[-11,-9],[-16,-43],[-5,-6],[-2,-2],[-3,-5],[-2,-2],[-2,0],[-2,0],[-32,2],[-5,-3],[-12,-23],[-3,-2],[-2,0],[-3,-1],[-2,-5],[-5,13],[-10,4],[-21,-1],[0,-2],[2,-6],[-12,0],[-32,-20],[1,15],[-4,9],[-6,7],[-4,6],[-2,-5],[-8,8],[-25,13],[-4,-5],[-15,-10],[-4,-1],[-4,-6],[-14,-35],[-13,-14],[-43,-30],[-6,-8],[-22,-50],[-36,-66],[-10,-14],[-65,-41],[-71,-31],[-24,-33],[-34,-28],[-5,-2],[-5,2],[-10,7],[-7,0],[-6,-4],[-12,-11],[-5,-2],[-58,0],[-12,4],[-6,7],[-4,3],[-1,-3],[-2,-2],[-7,-5],[-24,-8],[-47,-4],[-5,-2],[-9,-8],[-4,-2],[-12,1],[-5,-1],[-3,-4],[-39,-18],[-9,-10],[-27,-57],[-7,-12],[-4,-8],[-4,-22],[-13,-35],[-9,-17],[-10,-10],[-48,-24],[-11,-12],[-10,-18],[-4,-10],[-1,-5],[-2,-6],[0,-1],[-2,-10],[0,-11],[-1,-2],[-6,-35],[-1,-6],[2,-24],[-1,-8],[-6,-4],[-6,2],[-6,6],[-4,8],[0,8],[5,4],[5,-1],[5,1],[2,10],[-1,1],[-4,11],[-1,3],[0,2],[0,3],[0,2],[-1,1],[-2,-1],[0,-3],[0,-3],[0,-1],[-2,-7],[-1,-1],[-2,0],[-2,3],[-2,1],[-6,-1],[-3,-2],[-1,-3],[-2,-9],[-5,-8],[-5,-2],[-4,8],[-3,-4],[-1,-5],[1,-15],[2,4],[2,1],[8,-2],[1,-2],[0,-7],[-2,-7],[-4,-6],[-5,-5],[-3,2],[-8,7],[-3,3],[-1,5],[0,2],[-1,2],[-3,3],[-7,2],[-6,-4],[-10,-14],[-1,2],[-1,4],[0,2],[1,6],[-2,8],[-3,8],[-4,6],[-11,9],[-12,1],[-10,-5],[-9,-9],[-14,-26],[-16,-35],[-1,-3],[-2,-7],[-2,-4],[-1,8],[-1,1],[-7,-5],[-8,-4],[-18,-18],[-6,-2],[-6,2],[-5,-1],[-10,-11],[-6,-1],[-6,4],[-3,9],[4,-1],[7,-3],[3,0],[3,4],[0,8],[-2,4],[-3,-4],[-8,2],[-9,-8],[-16,-18],[-8,-5],[-5,0],[-7,5],[-8,-8],[-4,-1],[-6,8],[-5,20],[-4,5],[-5,1],[-5,5],[-8,10],[-4,5],[-5,4],[-6,2],[-6,1],[-4,3],[-11,13],[-5,5],[-10,-1],[-3,3],[-4,6],[-3,3],[-2,1],[-4,-3],[-16,-33],[-1,-3],[-4,-4],[-6,-2],[-6,2],[-2,6],[5,47],[1,23],[-3,21],[-5,19],[-9,16],[-1,6],[-1,7],[-2,5],[-2,4],[-1,5],[0,11],[-1,11],[-2,11],[-2,9],[-10,24],[-2,7],[0,4],[-4,14],[-2,15],[-1,5],[-17,43],[-6,43],[3,18],[3,20],[1,105],[6,19],[1,5],[1,4],[1,4],[3,3],[-4,19],[1,41],[-1,21],[-9,37],[-2,6],[-2,48],[-2,6],[-18,40],[-7,32],[-5,27],[-7,18],[-3,45],[-2,21],[-3,18],[-5,30],[-8,55],[-2,12],[-1,18],[-4,17],[-1,19],[-1,5],[-1,4],[-5,7],[-1,4],[0,7],[1,3],[2,-1],[3,-5],[3,-12],[4,-27],[4,-8],[0,18],[-1,8],[-1,7],[4,24],[-3,20],[-6,18],[-3,19],[1,4],[2,6],[1,4],[0,3],[-1,2],[-1,1],[-1,7],[-2,3],[-2,2],[0,2],[-1,3],[-1,3],[-2,4],[-2,20],[0,7],[-3,21],[-13,35],[-3,21],[-1,12],[0,7],[3,-1],[1,-5],[-1,-4],[0,-4],[0,-7],[2,-11],[3,-12],[4,-11],[6,-7],[0,9],[2,20],[0,12],[-3,21],[-2,19],[-1,8],[-2,6],[-7,14],[-4,8],[-1,10],[-1,14],[1,32],[-1,10],[-4,10],[-10,9],[-9,16],[-5,7],[-6,6],[-6,5],[-6,3],[-6,0],[-4,-5],[-1,-12],[-4,-2],[-6,5],[-5,10],[-1,13],[-1,8],[3,1],[9,-5],[5,2],[3,4],[1,6],[1,8],[0,6],[-3,9],[-1,7],[8,28],[2,7],[1,-8],[0,-10],[-2,-9],[-3,-6],[6,-5],[4,-5],[11,-20],[1,-4],[1,-8],[-1,-11],[1,-4],[4,-3],[0,5],[0,3],[-1,2],[-1,2],[4,9],[2,13],[-1,46],[-2,21],[-5,16],[-1,9],[0,6],[1,6],[0,8],[0,7],[-1,7],[-1,7],[-4,15],[-11,31],[0,5],[4,9],[-3,6],[-2,6],[-2,9],[-1,9],[3,21],[-1,9],[-6,5],[2,9],[3,5],[3,4],[4,6],[2,6],[1,5],[1,6],[0,10],[1,16],[4,12],[5,8],[5,6],[5,9],[3,10],[1,14],[2,81],[-1,27],[-7,83],[-1,44],[-1,4],[-1,13],[0,-1],[0,2],[0,3],[0,3],[-1,3],[-2,6],[-1,2]],[[64791,57648],[5,5],[5,-1],[3,-4],[3,-2],[1,-4],[-9,2],[-4,0],[-4,4]],[[64736,57680],[5,0],[4,-6],[1,-10],[0,-8],[-4,-3],[-5,-1],[-8,7],[-6,10],[-6,4],[1,5],[5,3],[3,-1],[3,3],[3,0],[4,-3]],[[64524,57695],[9,-7],[15,7],[4,-2],[1,-6],[-3,-3],[-3,-6],[2,-4],[3,-10],[-8,3],[-4,-1],[-4,-3],[-13,5],[-12,1],[-2,5],[-3,9],[-2,0],[-1,0],[-6,-3],[-3,-1],[-1,2],[-3,9],[-1,3],[-2,-1],[-5,5],[-4,-1],[-3,-2],[-2,3],[-1,2],[-9,9],[-1,8],[4,2],[4,1],[7,0],[8,-4],[8,-12],[6,-4],[5,0],[8,-3],[12,-1]],[[62063,57975],[4,-4],[0,-2],[2,-6],[-1,-9],[-3,-3],[-2,1],[-3,7],[-2,4],[-3,-2],[-2,2],[-1,8],[2,3],[3,1],[6,0]],[[65130,57898],[7,2],[6,7],[3,-1],[3,-4],[-3,-7],[-8,-5],[-6,-4],[-6,-2],[-3,-5],[0,-16],[-12,-10],[-9,-5],[-11,-9],[-13,2],[-10,-8],[-3,-5],[-5,-15],[-2,-4],[-8,-6],[-8,-14],[-4,-5],[-8,2],[-13,-2],[-4,1],[-5,-2],[-6,-11],[-7,4],[-4,3],[-9,-5],[-11,-4],[-34,-13],[-12,-3],[-17,4],[-15,9],[-12,7],[-6,12],[-5,12],[-4,11],[-4,14],[-7,5],[-12,16],[-29,38],[-6,13],[-1,3],[2,4],[8,-4],[5,1],[6,7],[2,2],[0,6],[3,10],[1,6],[-2,35],[4,3],[4,2],[12,4],[3,9],[3,9],[2,6],[6,1],[15,-6],[9,-2],[7,1],[6,2],[11,-21],[19,-30],[13,-7],[11,-5],[5,14],[3,15],[8,3],[5,-1],[5,-5],[9,2],[10,0],[10,12],[4,3],[6,9],[3,7],[8,1],[3,-7],[4,-6],[6,-8],[4,2],[4,4],[1,-1],[3,-7],[2,-5],[5,-1],[7,-2],[2,-9],[4,-4],[10,-9],[11,-5],[12,-13],[6,-4],[13,-18]],[[61866,58608],[12,18],[5,4],[4,-6],[-1,-11],[-8,-19],[-2,-12],[-3,-6],[-16,-14],[0,7],[0,1],[2,13],[7,25]],[[61877,58799],[2,4],[8,-20],[2,-9],[0,-6],[-4,-22],[0,-18],[0,-11],[-2,-4],[-7,1],[3,16],[-6,5],[-7,8],[-2,4],[-3,7],[-1,2],[-2,12],[3,9],[5,11],[7,8],[4,3]],[[61843,59617],[-7,-10],[-1,-4],[1,-1],[0,-2],[-1,-4],[-3,-4],[-4,-4],[0,-3],[3,-1],[3,2],[4,4],[3,-1],[0,-7],[-4,-23],[-1,-8],[1,-5],[-1,-4],[-1,-3],[0,-1],[2,1],[0,-4],[-6,-17],[-3,-6],[-4,0],[-3,5],[-3,10],[0,14],[3,14],[0,31],[4,10],[3,7],[3,5],[1,5],[1,4],[6,7],[2,-2],[2,-5]],[[45404,59832],[5,100],[-1,52],[-3,119],[3,39],[2,11],[8,30],[2,30],[2,8],[3,16],[0,64],[3,25],[22,117],[6,20],[4,40],[5,20],[13,38],[24,106],[1,15],[4,11],[26,167],[8,72],[3,79],[4,95],[-3,107],[-9,203],[-3,21],[-15,65],[-6,73],[-5,24],[3,14],[-1,16],[-11,83],[-1,7],[-8,39],[-12,41],[-17,39],[-5,10],[-1,1],[-1,4],[-3,1],[-2,1],[-3,2],[-4,6],[-11,7],[-5,5],[-2,7],[-4,25],[-1,11],[-3,11],[-5,9],[-4,9],[4,10],[16,-9],[16,4],[13,16],[10,25],[7,23],[1,11],[3,8],[1,4],[-1,4],[-2,2],[-2,1],[-1,-3],[-1,1],[-16,-35],[-8,-12],[12,48],[-4,-4],[-11,-19],[-4,-9],[-2,-6],[-2,-6],[-1,-7],[2,-7],[0,-4],[-2,-11],[-1,-6],[-1,-1],[-1,-1],[-2,0],[-2,0],[-1,2],[0,1],[0,2],[-1,3],[0,5],[0,15],[0,5],[3,9],[7,15],[2,10],[1,13],[2,6],[4,4],[4,8],[27,81],[1,3],[2,2],[2,4],[0,5],[1,12],[1,5],[1,1],[1,2],[5,11],[1,4],[0,6],[0,5],[-2,5],[-2,4],[2,4],[2,5],[0,5],[0,6],[-4,-5],[-2,-3],[-1,10],[4,14],[-1,8],[-5,7],[-3,-5],[-2,-9],[-1,-5],[-5,-5],[-2,2],[0,8],[1,7],[2,7],[1,5],[17,34],[4,14],[3,18],[-2,14],[-8,30],[-3,16],[2,0],[2,0],[2,2],[1,3],[6,19],[3,12],[1,11],[-1,11],[-2,9],[-8,25],[-2,2],[-4,0],[-2,3],[-1,5],[-1,6],[-1,2],[-5,6],[-8,39],[-2,5],[-3,4],[-2,3],[0,6],[1,2],[1,1],[1,2],[0,3],[-1,3],[-2,7],[-1,11],[-11,55],[-2,8],[-4,4],[-3,7],[0,15],[-1,10],[-5,-4],[-6,8],[0,4],[13,7],[4,4],[-6,1],[-10,-3],[-4,2],[-4,9],[2,4],[-4,17],[-2,3],[-6,5],[-2,-26],[2,-58],[-4,-22],[-2,9],[-4,7],[-7,9],[-2,5],[-4,14],[-2,7],[-4,5],[-9,9],[-2,4],[0,7],[1,3],[2,1],[1,1],[0,5],[-2,5],[0,5],[-1,8],[-3,8],[-8,12],[-1,4],[0,11],[-1,5],[-5,10],[-3,28],[-2,7],[-3,7],[-1,9],[-2,9],[0,9],[-1,-3],[-2,-2],[-1,-3],[-4,8],[-2,9],[0,10],[-2,10],[-2,4],[-2,4],[-2,6],[-1,8],[-2,6],[-6,18],[-2,9],[-1,8],[-1,9],[-3,17],[-6,13],[-4,-4],[-7,-27],[-12,-33],[-2,-4],[-2,-7],[2,-11],[3,3],[0,-10],[-1,-22],[-1,-19],[-1,-5],[-3,-3],[-6,-4],[-2,-5],[-1,-5],[2,-5],[2,-6],[2,-9],[1,-4],[-1,-7],[-2,-25],[-3,-13],[-2,-7]],[[45450,62204],[6,23],[3,9],[3,-7],[-9,-80],[-7,-37],[-11,-34],[-5,13],[-1,3],[0,5],[1,6],[0,6],[-2,6],[-2,10],[2,11],[8,25],[1,2],[-1,17],[1,6],[2,11],[3,9],[5,3],[3,-7]],[[45466,62153],[3,2],[2,-5],[-3,-11],[-5,-9],[-3,-8],[-5,-17],[-9,-28],[-1,0],[1,10],[10,36],[10,30]],[[45423,62155],[2,-1],[0,-6],[-1,-12],[-2,-8],[-1,-5],[-3,4],[-1,13],[2,11],[4,4]],[[45428,62678],[2,-1],[1,-3],[0,-20],[-2,-2],[-4,3],[-2,11],[2,9],[3,3]],[[52723,51061],[0,3],[0,10],[-2,15],[0,7],[3,4],[3,3],[4,1],[4,1],[-2,3],[-3,2],[-4,2],[-4,1],[-2,1],[-7,9],[-4,2],[-11,-6],[-3,2],[-1,6],[1,6],[2,5],[2,3],[-5,-5],[-7,-12],[-5,-13],[-2,-8],[-2,-5],[-9,-4],[-7,-7],[-3,7],[-4,29],[-2,7],[-3,6],[-5,5],[-5,2],[-3,-1],[-4,-4],[-9,-3],[-8,-8],[-4,-2],[-2,3],[-7,15],[-3,6],[0,6],[-1,5],[-3,9],[4,4],[3,7],[3,9],[4,30],[3,11],[3,5],[4,4],[4,12],[3,13],[1,11],[0,23],[1,9],[7,8],[11,21],[5,13],[1,1],[1,3],[1,3],[1,4],[1,6],[3,17],[5,18],[5,9],[4,-2],[3,-7],[6,-4],[7,2],[5,5],[5,7],[6,6],[-5,0],[-12,-17],[-5,3],[-12,24],[-4,17],[3,16],[16,34],[1,2],[2,7],[1,3],[6,8],[2,5],[1,4],[3,12],[1,4],[1,2],[1,4],[1,14],[1,4],[1,3],[1,3],[2,6],[9,21],[3,20],[-1,24],[-7,49],[-3,11],[-1,5],[0,6],[0,6],[2,4],[1,3],[1,4],[2,73],[-1,13],[-2,11],[-2,13],[3,10],[6,8]],[[51562,49607],[-1,7],[-1,7],[1,6],[3,4],[4,-13],[-1,-15],[-4,-7],[-5,7],[2,1],[1,2],[1,1]],[[52478,52691],[7,-20],[3,-10],[1,-12],[0,-12],[-1,-10],[-2,-9],[-2,-8],[-10,-19],[-3,-16],[-9,-24],[-1,-2],[-6,-31],[-5,-9],[-1,-13],[-1,-4],[0,-2],[-8,-10],[-1,-9],[0,-28],[-2,-9],[-13,-31],[-9,-33],[-3,-7],[-2,4],[-7,6],[-1,4],[-2,-2],[-4,3],[-8,9],[-2,-1],[-6,-3],[-3,0],[-3,3],[-6,8],[-3,1],[-6,1],[-7,3],[-5,9],[-2,17],[-2,7],[-2,8],[-2,7],[1,7],[1,5],[2,25],[2,12],[3,15],[5,10],[7,-4],[3,4],[5,0],[10,-4],[5,4],[1,9],[-1,11],[-2,8],[3,4],[5,7],[4,8],[1,7],[2,55],[4,21],[7,25],[10,21],[11,7],[0,-2],[-2,-7],[9,-4],[4,0],[3,4],[6,-4],[9,-3],[9,1],[8,6],[1,-2],[1,-1],[2,-1]],[[45346,58207],[-4,8],[-5,3],[0,4],[1,5],[2,8],[-1,9],[-5,29],[0,7],[0,28],[0,8],[-2,8],[-5,11],[-1,8],[2,9],[-1,3],[-2,14],[2,6],[3,18],[3,4],[3,2],[4,4],[3,5],[16,42],[8,12],[0,-6],[2,-4],[2,-3],[3,-3],[5,5],[5,1],[4,-4],[3,-6],[2,-11],[-4,-2],[-4,0],[-3,-8],[4,-8],[4,-16],[2,-18],[-1,-10],[10,-25],[2,-4],[15,-1],[4,-2],[3,-5],[2,-4],[3,-3],[6,-1],[3,-4],[1,-9],[0,-11],[-1,-8],[5,9],[3,1],[3,-6],[-1,6],[-6,11],[-1,1],[0,8],[-2,5],[-3,2],[-4,-1],[0,4],[8,0],[4,1],[3,4],[3,-12],[3,2],[4,9],[4,4],[6,3],[10,15],[5,3],[8,-5],[1,-12],[-1,-13],[1,-11],[5,-3],[7,4],[9,11],[0,5],[-3,-1],[-3,-2],[-2,-3],[-3,-5],[-2,-4],[-1,3],[-2,17],[0,6],[0,6],[-2,2],[-2,2],[0,3],[-1,5],[0,5],[1,11],[2,7],[11,20],[2,4],[1,6],[1,3],[3,-1],[5,-4],[39,-4],[14,7],[6,1],[3,0],[1,0],[2,-1],[2,1],[2,2],[2,3],[1,2],[1,2],[6,0],[18,-4],[6,1],[16,11],[2,3],[6,8],[2,1],[3,-2],[4,-8],[3,-2],[3,0],[3,1],[3,2],[3,5],[3,6],[4,14],[3,4],[3,0],[3,-2],[4,-4],[2,-4],[3,-2],[3,1],[3,2],[2,1],[6,-3],[3,-7],[3,-8],[3,-6],[9,-7],[12,-1],[10,8],[3,24],[-1,0],[-1,0],[-1,-9],[-2,-7],[-3,-6],[-3,-2],[-5,1],[-9,6],[-5,1],[-4,3],[-4,7],[-7,12],[-2,3],[-3,-1],[-2,-2],[-2,-2],[-3,2],[-2,2],[-2,3],[-1,1],[-4,2],[-3,4],[-4,1],[-5,-3],[-3,-5],[-4,-11],[-3,-4],[-5,0],[-7,7],[-5,1],[-5,-2],[-12,-14],[-10,-6],[-89,-15],[-9,7],[-5,2],[-5,-3],[-5,-5],[-8,-13],[-12,-24],[-3,-4],[-2,-2],[-2,-4],[-2,-1],[-2,3],[0,4],[0,7],[1,7],[-1,6],[-5,-9],[0,-5],[1,-6],[-3,-3],[-1,-1],[0,-4],[2,-1],[1,-2],[1,-1],[-5,-6],[-10,-2],[-9,-1],[-6,1],[-22,11],[-9,1],[2,5],[3,15],[1,6],[-1,8],[-3,12],[0,5],[-1,4],[-5,8],[-2,6],[-3,4],[0,2],[0,12],[2,25],[0,9],[-2,8],[-2,6]],[[81730,63828],[1,0],[-2,-6],[-1,-3],[-2,-4],[-2,0],[0,-6],[2,1],[1,2],[3,2],[1,2],[2,8],[1,1],[1,-2],[2,2],[0,-2],[-1,-5],[2,1],[2,-4],[0,-4],[1,-1],[2,2],[1,-2],[0,-4],[-1,-5],[2,0],[1,-3],[3,-3],[8,5],[1,2],[1,-4],[-5,-8],[-3,-6],[-4,-2],[-3,-4],[-4,-4],[-1,-4],[-3,-4],[-2,0],[-4,11],[-4,-2],[-1,2],[-1,-3],[0,-5],[2,-1],[0,-4],[-2,1],[0,2],[-2,3],[-3,-1],[-1,-3],[-6,-2],[3,-3],[3,-4],[3,-5],[4,-5],[-1,-4],[2,-2],[-2,-7],[2,1],[2,9],[3,6],[1,6],[2,0],[2,-3],[4,0],[1,-3],[-1,-5],[2,-4],[1,6],[3,4],[-3,10],[3,6],[4,2],[-1,5],[7,9],[0,-3],[2,-1],[-2,-6],[3,-1],[1,-9],[-2,-4],[2,-5],[1,4],[1,-9],[2,0],[0,11],[2,12],[2,-4],[0,-5],[1,-4],[4,0],[4,-2],[-1,-5],[1,-9],[-3,3],[-2,1],[-3,-13],[1,2],[3,-8],[1,-13],[-1,0],[0,3],[-3,0],[1,-5],[-1,-5],[-1,-3],[-3,-2],[-1,-8],[-1,4],[0,8],[-3,-4],[-1,4],[-2,4],[1,10],[-4,3],[-1,5],[-2,-3],[-3,-2],[-4,6],[-2,0],[-3,-7],[2,-9],[2,-5],[-1,-4],[-3,4],[0,6],[-2,-2],[-1,-4],[3,-6],[2,-15],[1,-1],[4,-1],[0,-7],[1,0],[2,1],[2,-6],[-1,-3],[-2,-3],[-2,1],[-1,-1],[0,-3],[0,-4],[3,1],[1,-4],[0,-4],[-2,-3],[-2,4],[-3,4],[1,5],[-2,10],[-3,3],[1,5],[0,4],[-3,3],[-1,-10],[0,-5],[-4,-9],[-3,6],[-4,11],[1,-5],[-1,0],[-5,10],[-2,-6],[1,-4],[0,-2],[-2,2],[-1,-4],[-1,-2],[-1,-2],[-2,4],[1,6],[-1,3],[0,3],[-2,0],[0,4],[-2,4],[-4,4],[-4,4],[0,-3],[-3,9],[0,8],[-2,2],[-2,-4],[-5,2],[0,-2],[-3,0],[0,-2],[-3,1],[-2,-1],[-3,-2],[-5,-3],[-2,2],[0,3],[-5,0],[-1,3],[-3,2],[-2,7],[-1,0],[0,5],[-2,-4],[3,-5],[-6,-2],[-2,-4],[-4,4],[-2,0],[-3,4],[1,7],[-2,6],[-4,6],[4,6],[6,1],[2,4],[4,14],[7,5],[5,18],[2,0],[2,-2],[0,-3],[0,-5],[1,2],[3,2],[1,0],[1,2],[-1,3],[0,5],[4,3],[4,2],[1,3],[1,4],[2,1],[2,1],[2,2],[-1,4]],[[81704,63604],[-7,-1],[1,5],[0,18],[-3,0],[0,4],[0,8],[2,-1],[1,-7],[3,-5],[2,1],[0,-3],[-2,-3],[3,0],[3,0],[2,-1],[-3,-4],[-2,-3],[2,-8],[-2,0]],[[81726,63668],[1,-4],[2,1],[2,-2],[3,-8],[2,-3],[0,-6],[-2,-4],[1,-6],[1,-5],[-1,-1],[2,-11],[-3,-1],[-1,2],[-2,4],[-1,6],[0,7],[-2,3],[-2,-3],[2,-1],[0,-5],[-1,0],[-2,-5],[2,-6],[-1,-4],[1,-4],[-3,-1],[-1,9],[1,1],[-1,3],[-3,-3],[-1,2],[1,3],[-2,2],[2,4],[-1,3],[-2,1],[0,5],[-4,-4],[-1,-4],[-1,4],[0,4],[-3,2],[-4,1],[-2,2],[-1,4],[-1,3],[-1,5],[-2,1],[0,4],[1,1],[1,1],[3,3],[2,1],[3,-1],[2,-3],[3,-1],[4,0],[2,4],[3,3],[2,-2],[3,-1]],[[81623,63615],[-2,5],[0,7],[0,7],[0,3],[3,0],[0,6],[2,1],[0,4],[-2,2],[0,1],[3,3],[2,4],[0,1],[3,1],[2,4],[2,8],[5,0],[3,-1],[2,-4],[3,2],[6,8],[4,-2],[2,6],[3,1],[2,7],[5,8],[1,-4],[6,10],[2,-2],[1,-3],[-1,-5],[0,-5],[-1,2],[-2,1],[-2,0],[-1,-10],[-5,2],[0,-8],[3,2],[-1,-7],[0,-15],[-4,0],[-2,2],[3,-9],[-4,-7],[6,-8],[-4,-7],[-5,-4],[-1,4],[0,13],[-3,0],[-2,0],[-4,0],[-5,-8],[-2,0],[-1,-3],[3,-1],[0,-4],[-3,-3],[-3,-1],[-4,7],[0,4],[-2,-1],[-3,-4],[-4,-7],[-4,-3]],[[59355,71217],[-3,-2],[-4,1],[-1,-1],[-4,0],[-6,10],[-4,-3],[-3,-5],[-3,1],[-4,5],[-1,9],[-2,5],[-2,3],[-2,0],[-1,-3],[0,-6],[-2,-1],[-3,3],[-3,0],[-2,0],[-2,-2],[-2,-11],[-1,-4],[-1,-8],[0,-6],[0,-3],[-3,1],[-1,6],[2,14],[2,11],[0,12],[0,10],[-2,6],[-6,16],[-3,10],[-3,12],[-1,8],[-1,7],[-2,3],[-4,-1],[-3,-5],[-2,-6],[-2,-3],[-8,-4],[-5,0],[-3,-3],[-5,1],[-8,3],[-8,2],[-5,4],[-9,7],[-9,-3],[-4,-3],[-7,-12],[-3,-1],[-3,7],[-5,-3],[-6,-6],[-7,-3],[-5,-5],[-7,-6],[-5,-11],[-7,-6],[-3,-1],[-3,-1],[-3,1],[-7,1],[-3,-1],[-2,-2],[-3,-6],[-1,-5],[-5,1],[-2,12],[-5,9],[-5,6],[-10,4],[-4,3],[-4,3],[-3,6],[-2,6],[0,7],[0,4]],[[59086,71305],[9,-2],[9,-5],[7,-8],[7,-5],[11,5],[7,11],[6,15],[4,19],[2,22],[0,40],[-1,17],[-3,19],[7,-2],[11,-12],[6,-3],[17,-6],[20,2],[34,-8],[5,-4],[41,-8],[64,18],[23,23],[12,11],[14,-4],[15,8],[41,28],[11,14],[15,10],[14,25],[8,3],[16,8],[15,8],[11,13],[51,42],[10,7],[3,1],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-17],[-1,-4],[-2,-1],[-7,-2],[-1,-2],[-27,-30],[-24,-37],[-60,-63],[-8,-12],[-6,-15],[-5,-19],[-3,-8],[-4,-5],[-7,-1],[-7,3],[-6,1],[-6,-5],[-7,-20],[-4,-11],[-1,-10],[-2,-46],[4,-5],[11,-20],[2,-6],[2,-8],[3,-7],[9,-14]],[[59447,71235],[-1,-2],[-12,5],[-7,-5],[-4,1],[-3,2],[-2,2]],[[59066,71308],[0,-2],[-1,-6],[-3,-5],[-3,-1],[-3,6],[-1,3]],[[59055,71303],[5,4],[6,1]],[[59447,71235],[3,-4]],[[59080,71306],[6,-1]],[[59066,71308],[3,1],[3,-1]],[[59051,71299],[4,4]],[[59170,70981],[-1,-6],[0,-16],[5,-14],[0,-3],[-24,0],[0,3],[1,12],[-8,27],[-1,10],[-16,7],[-6,1],[-6,-1],[-14,-9]],[[0,515],[9,-2],[116,7],[116,7],[116,7],[116,7],[32,-8],[3,-1],[-3,-4],[-3,-2],[-3,-1],[-3,0],[51,-12],[8,-6],[1,-12],[82,-19],[45,11],[60,-4],[61,14],[96,-3],[97,-2],[96,-3],[-14,-7],[-95,-7],[-15,-9],[71,-16],[71,-15],[-6,-3],[-6,-1],[8,-3],[14,-11],[14,-15],[9,-3],[88,15],[88,15],[16,7],[13,20],[-5,4],[-6,2],[-12,1],[5,12],[8,3],[138,-10],[137,-10],[138,-10],[137,-9],[137,-10],[138,-10],[137,-10],[137,-10],[138,-10],[137,-10],[137,-10],[138,-9],[137,-10],[138,-10],[12,-5],[18,-20],[6,-3],[-11,-16],[30,-29],[10,-6],[71,-9],[71,-9],[8,-15],[-21,-7],[31,-11],[74,14],[74,14],[132,-6],[133,-5],[132,-6],[133,-5],[133,-6],[132,-5],[32,-11],[130,-6],[131,-6],[10,3],[30,16],[138,-15],[138,-14],[138,-14],[139,-15],[138,-14],[138,-14],[138,-14],[138,-15],[55,-33],[58,-13],[-6,12],[-7,9],[-15,12],[19,4],[20,0],[20,-7],[43,-33],[10,-3],[119,-7],[120,-7],[120,-6],[120,-7],[119,-7],[-13,11],[-121,2],[-121,3],[130,2],[130,3],[14,4],[11,13],[-12,8],[-43,1],[8,5],[79,2],[78,3],[-132,23],[-133,24],[-133,23],[-6,4],[-14,19],[-10,7],[-82,18],[-82,17],[15,9],[125,-3],[124,-4],[125,-3],[124,-3],[9,2],[2,0],[-11,6],[-89,3],[113,4],[-10,8],[-36,3],[78,12],[-15,7],[-127,4],[-127,4],[-127,4],[-127,4],[-127,3],[-127,4],[30,5],[8,8],[-130,11],[-130,11],[-130,10],[-130,11],[-130,11],[-130,11],[-130,10],[-130,11],[-130,11],[-130,11],[-130,10],[-130,11],[-8,3],[-5,9],[1,1],[1,4],[1,2],[-3,3],[-51,19],[115,-3],[115,-4],[-14,9],[-95,29],[-136,1],[-137,2],[-136,2],[-12,-8],[-5,-1],[-114,13],[-114,13],[-114,12],[128,-8],[127,-8],[-2,10],[29,10],[134,0],[133,0],[134,0],[134,1],[134,0],[-5,2],[-7,8],[-4,3],[-102,10],[-101,9],[-102,10],[-4,2],[-3,3],[5,7],[13,0],[5,5],[-3,-1],[-32,8],[-13,7],[11,3],[12,5],[-121,24],[-32,17],[-115,11],[7,12],[10,3],[20,-4],[-11,10],[-5,8],[-4,10],[23,9],[121,1],[121,2],[121,1],[-11,11],[-82,24],[2,1],[9,7],[7,2],[15,1],[5,1],[3,4],[-4,4],[-12,3],[-13,8],[-127,34],[-128,34],[-14,13],[-5,3],[-122,18],[-18,10],[-8,2],[-117,-23],[-5,-3],[-10,-8],[-22,-9],[-112,8],[-112,7],[-112,7],[-112,7],[15,-12],[104,-12],[16,-9],[-29,-7],[-109,17],[-109,17],[26,8],[-18,8],[-57,6],[81,-1],[81,0],[-16,13],[-134,6],[-33,12],[-33,22],[-43,19],[-7,11],[21,15],[7,4],[-4,18],[-10,7],[-120,9],[-9,4],[-7,11],[19,9],[63,-1],[-79,10],[-78,10],[-5,2],[-16,15],[-4,2],[-128,22],[-128,22],[-128,21],[-129,22],[-128,21],[13,6],[103,-13],[102,-13],[-122,29],[-122,29],[-122,30],[-121,29],[-122,29],[-122,30],[-122,29],[-86,61],[-9,20],[8,12],[20,1],[101,-31],[100,-32],[101,-32],[122,-1],[64,29],[102,-17],[102,-16],[103,-17],[125,-60],[7,-5],[27,-38],[11,-24],[7,-8],[14,-9],[104,-22],[103,-23],[104,-22],[18,5],[-56,34],[115,-2],[114,-1],[115,-2],[114,-1],[7,5],[9,18],[6,5],[78,-6],[79,-5],[4,1],[20,14],[7,2],[124,-1],[125,0],[125,-1],[125,0],[125,-1],[64,-28],[-5,-9],[-6,-3],[-6,0],[-6,-4],[-2,-1],[-1,-2],[-1,-2],[0,-3],[0,-2],[1,-4],[0,-3],[-2,-7],[-8,-14],[0,-9],[9,1],[36,-13],[12,-9],[21,-28],[8,-5],[2,-3],[-2,-3],[-4,-4],[-2,-2],[1,-10],[10,-8],[11,-5],[122,-12],[18,12],[-13,15],[-4,7],[-6,13],[-2,9],[0,9],[4,8],[6,4],[79,9],[79,8],[37,18],[50,-1],[42,14],[73,-4],[12,-7],[7,-19],[-2,-1],[-3,-2],[-2,-1],[7,-11],[9,-4],[111,-15],[31,-16],[-14,-7],[-41,-7],[14,-13],[66,-17],[117,6],[116,5],[117,5],[116,6],[117,5],[81,-20],[82,-19],[81,0],[25,7],[3,4],[6,16],[7,14],[12,11],[134,13],[134,14],[134,13],[7,3],[13,19],[8,6],[74,34],[75,33],[-30,14],[-133,8],[-133,7],[-134,8],[-16,5],[-10,15],[17,9],[134,7],[135,7],[134,7],[135,7],[134,7],[135,8],[43,22],[-17,31],[101,46],[7,9],[8,27],[6,9],[117,25],[116,25],[116,25],[117,25],[116,25],[117,25],[-4,13],[-6,8],[-15,10],[-6,7],[-12,17],[-7,8],[-25,17],[-23,24],[-122,49],[-122,49],[-123,49],[-11,14],[40,18],[-96,31],[-96,31],[-10,13],[18,13],[67,26],[30,24],[20,9],[73,9],[72,9],[20,9],[19,18],[-8,6],[-20,27],[-7,6],[-8,2],[-38,0],[-6,5],[-8,9],[-9,6],[-65,21],[-4,4],[-8,11],[-4,5],[-15,7],[-113,17],[-50,27],[-114,16],[-115,16],[-114,17],[-114,16],[-115,16],[-25,19],[1,6],[1,6],[5,9],[7,11],[9,6],[85,32],[86,31],[136,8],[136,7],[136,8],[136,7],[136,8],[136,7],[137,8],[136,7],[136,8],[136,7],[136,8],[136,7],[136,8],[137,7],[136,8],[136,8],[136,7],[136,8],[12,7],[10,12],[-9,16],[-12,8],[-87,7],[-87,7],[-13,6],[58,4],[-25,9],[-76,5],[6,4],[6,2],[12,1],[-11,15],[-98,5],[-98,5],[-97,6],[80,5],[80,6],[-78,5],[-78,5],[7,0],[12,9],[6,3],[89,1],[-59,11],[16,9],[130,-2],[129,-3],[-24,6],[-75,2],[-76,1],[-28,15],[-8,2],[-92,1],[-92,0],[-13,5],[62,8],[-20,6],[-61,3],[48,9],[-12,6],[-79,0],[-79,0],[-24,8],[14,11],[52,0],[-101,23],[3,6],[5,4],[4,2],[5,0],[-10,4],[-82,0],[-82,0],[19,11],[61,-1],[-46,9],[128,1],[128,1],[-13,9],[-55,14],[-24,15],[-27,8],[-91,-2],[42,8],[-10,22],[-18,9],[-36,5],[22,17],[22,3],[47,-6],[95,22],[-6,13],[-7,11],[-7,8],[-29,13],[-10,8],[-6,12],[106,-8],[107,-8],[106,-9],[107,-8],[2,1],[1,3],[2,7],[1,3],[3,2],[39,6],[32,13],[138,6],[137,6],[-15,7],[-117,4],[-118,5],[-15,10],[88,1],[87,2],[-15,10],[-94,3],[-94,2],[-94,3],[12,5],[99,-2],[99,-2],[-15,5],[-111,5],[19,2],[18,8],[-6,5],[-20,3],[7,4],[23,2],[-97,7],[5,4],[5,1],[9,1],[-28,11],[-25,1],[-8,6],[82,-2],[52,-13],[132,-2],[-10,-10],[-36,0],[14,-7],[45,1],[-9,-8],[14,-5],[114,-2],[114,-2],[-7,16],[32,6],[-14,5],[-14,2],[-29,-3],[-19,-12],[-8,-2],[-6,0],[-50,15],[-91,-1],[10,7],[77,9],[-132,23],[-22,15],[35,-3],[9,2],[17,8],[9,-1],[-16,8],[48,4],[-114,19],[-114,18],[-113,18],[-20,12],[9,10],[-15,11],[-125,14],[-125,15],[-126,14],[-24,14],[-136,38],[-136,38],[-136,38],[38,17],[30,21],[6,2],[11,1],[12,3],[-12,10],[-14,3],[-130,-38],[-14,1],[-14,6],[-27,20],[28,17],[90,19],[-33,1],[37,19],[-2,2],[-4,7],[-2,2],[78,40],[-18,2],[-80,-16],[-9,1],[-32,18],[-10,-1],[7,-13],[0,-7],[-29,-19],[-63,-19],[-8,2],[-6,9],[-25,25],[-64,-33],[-29,11],[-11,7],[-131,16],[-132,15],[-131,16],[-131,15],[-11,8],[-9,13],[-3,3],[-103,49],[-102,49],[-103,49],[-102,49],[-5,8],[-1,16],[6,11],[8,6],[114,22],[14,9],[-5,9],[-5,6],[-12,5],[18,8],[96,5],[96,5],[97,5],[9,7],[-20,19],[45,1],[26,-15],[18,-3],[58,12],[-17,10],[21,6],[41,1],[19,10],[-11,8],[8,13],[34,10],[-8,16],[-7,17],[27,19],[61,-1],[29,10],[-110,7],[-3,1],[-5,5],[-2,5],[-2,5],[-3,6],[-4,4],[-12,5],[-3,3],[-7,10],[-3,4],[-8,2],[-48,1],[-41,-11],[18,-13],[-4,-5],[-24,-15],[-2,-3],[-2,-9],[-2,-3],[-96,-13],[-26,6],[-11,25],[45,6],[32,-7],[-6,8],[-8,19],[-4,4],[-39,-5],[-26,-18],[-13,-4],[-7,2],[-14,11],[-7,4],[-7,-1],[-13,-10],[-7,-3],[-63,-6],[-52,9],[-26,-6],[-89,0],[-7,3],[-20,15],[-2,5],[0,9],[-33,-4],[-15,5],[-7,-1],[-8,-8],[2,-1],[3,-4],[2,-1],[-8,-15],[-16,-11],[-63,-24],[-65,0],[-16,7],[-26,27],[-88,42],[-87,43],[-7,6],[-14,16],[-9,6],[-25,-1],[-20,15],[-16,0],[-9,4],[-9,7],[-8,8],[-5,11],[-4,11],[-5,8],[-51,20],[-1,10],[5,11],[25,38],[6,5],[16,6],[7,6],[8,8],[5,11],[10,28],[6,12],[14,12],[32,16],[11,20],[-46,25],[9,18],[9,12],[22,21],[-11,16],[-31,15],[-10,19],[1,28],[12,23],[29,30],[-9,14],[-4,5],[-16,12],[-6,6],[-3,7],[3,16],[11,11],[12,8],[82,10],[23,-11],[41,-40],[18,-6],[6,-4],[4,-6],[2,-6],[4,-5],[17,-8],[32,-29],[40,-14],[-3,-3],[-4,-2],[-4,0],[-4,0],[14,-12],[48,-29],[17,-4],[4,2],[7,7],[14,-6],[8,3],[1,6],[0,6],[1,5],[20,0],[99,35],[-13,7],[-51,8],[-11,6],[-21,20],[-6,2],[14,13],[36,5],[18,27],[22,4],[26,16],[26,7],[127,4],[47,-13],[32,-19],[22,-28],[7,-4],[33,1],[8,-2],[4,-1],[2,4],[0,8],[0,8],[5,5],[110,15],[15,-5],[6,-6],[12,-15],[7,-4],[96,1],[58,-14],[7,-5],[13,-14],[7,-3],[78,-12],[79,-12],[60,-50],[-17,-25],[-22,-11],[-124,-4],[-11,-6],[10,-11],[12,-5],[86,-1],[85,-1],[47,-16],[23,0],[17,-4],[5,1],[12,6],[6,1],[7,-1],[5,-3],[10,-8],[6,-2],[49,-7],[-1,11],[-3,10],[-7,16],[9,8],[29,11],[-7,12],[10,27],[-5,13],[18,9],[19,1],[37,-13],[9,-5],[3,-4],[12,-21],[4,-5],[6,-4],[10,-3],[20,4],[132,-16],[39,-21],[-12,-14],[-7,-5],[-7,-2],[13,-13],[116,-30],[25,-19],[127,-53],[8,-5],[14,-17],[16,-11],[12,-17],[7,-5],[42,-3],[13,-8],[13,-11],[8,-3],[33,-3],[67,11],[31,18],[72,9],[-5,2],[-11,15],[-6,3],[-16,2],[-5,4],[-10,9],[-4,4],[-16,8],[-5,5],[-18,12],[-62,0],[3,2],[4,2],[3,0],[3,-1],[-1,3],[-4,8],[39,10],[41,-1],[75,-29],[75,-29],[20,0],[59,19],[-36,54],[6,3],[-3,2],[-4,6],[-2,3],[17,5],[53,-4],[76,19],[75,19],[40,-2],[22,5],[10,17],[-117,24],[-117,25],[-117,24],[-5,3],[-4,7],[-2,16],[3,11],[6,7],[7,4],[56,13],[-47,4],[4,9],[12,16],[13,29],[4,7],[11,8],[12,4],[71,-2],[93,-46],[92,-46],[22,-28],[-3,-35],[22,-23],[11,-8],[11,3],[-20,26],[-6,11],[8,3],[7,-4],[15,-16],[8,-1],[24,19],[28,7],[26,15],[9,2],[9,-1],[-9,16],[-3,11],[3,5],[80,14],[24,-11],[117,-109],[20,-33],[6,-5],[6,0],[12,2],[79,-11],[26,11],[-10,2],[-5,3],[-4,7],[60,1],[80,-28],[10,1],[9,10],[-2,2],[-4,4],[-2,1],[3,4],[4,3],[3,2],[4,0],[-42,17],[-3,3],[0,4],[1,4],[-1,3],[-27,25],[-19,10],[-61,3],[5,2],[9,7],[5,1],[21,-1],[-6,6],[-6,3],[-13,2],[2,2],[2,5],[2,2],[-17,20],[-7,15],[3,13],[10,4],[9,-4],[10,-7],[9,-4],[30,5],[40,-5],[3,1],[1,2],[3,5],[2,2],[2,0],[27,-7],[51,9],[-8,6],[-92,46],[-92,46],[-10,2],[-21,-2],[-32,4],[-41,17],[-20,16],[18,8],[108,-19],[109,-19],[2,-3],[1,-8],[1,-3],[4,-1],[45,13],[10,-1],[-5,11],[-9,7],[-58,27],[7,8],[-1,13],[-5,13],[-7,5],[-61,-1],[-20,6],[-9,7],[-9,10],[-5,14],[6,16],[8,7],[10,1],[19,-7],[20,0],[59,17],[4,2],[7,9],[3,1],[21,0],[-17,16],[-20,8],[-80,9],[-80,8],[-5,3],[-3,3],[-13,22],[-35,19],[-9,2],[-20,0],[-10,5],[-5,15],[10,14],[6,5],[6,2],[-16,6],[-47,9],[-129,59],[-133,-5],[-133,-4],[-21,-9],[-22,-1],[-72,-24],[-110,15],[-110,15],[-110,15],[-13,8],[-7,11],[1,12],[6,13],[8,10],[15,14],[16,8],[18,5],[125,-5],[44,21],[93,22],[-30,12],[-12,10],[0,18],[12,16],[16,10],[46,16],[63,2],[96,-29],[95,-28],[96,-29],[-4,-3],[-3,-2],[-4,-1],[-4,1],[14,-10],[59,-25],[54,-8],[45,-28],[8,3],[6,9],[8,6],[7,2],[8,-7],[13,-22],[7,-9],[40,-20],[8,2],[14,7],[46,-4],[20,-16],[60,-13],[101,18],[-8,15],[-27,33],[-7,14],[-4,5],[-5,4],[-103,33],[-82,51],[-82,51],[8,14],[9,8],[20,7],[-1,3],[-1,8],[-2,3],[25,11],[-1,4],[-2,10],[-1,4],[26,29],[72,20],[107,-7],[107,-8],[-9,8],[8,7],[35,4],[46,21],[84,-2],[56,18],[19,-1],[14,-5],[13,1],[5,2],[8,8],[4,0],[-12,33],[-2,9],[3,9],[4,3],[60,10],[-7,13],[-14,5],[-42,3],[-31,11],[-13,11],[14,6],[60,0],[97,22],[97,23],[99,-7],[99,-7],[7,2],[4,3],[3,4],[3,4],[5,1],[12,-2],[3,1],[2,2],[3,3],[4,7],[-6,9],[-4,9],[-8,22],[14,8],[17,4],[93,-17],[28,-21],[33,-5],[14,-10],[35,-62],[12,-17],[5,-9],[3,-15],[4,-7],[16,-14],[10,-18],[8,-4],[27,1],[4,1],[5,6],[2,6],[3,3],[21,-7],[108,-7],[5,-3],[10,-15],[5,-3],[5,-2],[49,-3],[-36,37],[7,2],[19,-3],[-43,37],[-111,50],[-17,19],[-7,24],[7,15],[19,5],[84,-11],[17,-9],[13,-3],[76,29],[75,29],[17,14],[5,10],[-6,10],[8,12],[9,9],[86,59],[9,3],[14,0],[3,1],[5,4],[18,5],[-1,13],[5,12],[7,9],[6,5],[12,3],[60,0],[41,14],[47,-10],[105,7],[105,7],[104,7],[16,6],[17,15],[6,4],[6,2],[74,-17],[106,-54],[6,1],[5,6],[4,8],[6,5],[7,1],[21,-7],[79,-6],[80,-7],[-5,12],[-5,7],[-13,7],[6,4],[20,1],[-11,11],[-70,20],[-70,21],[-24,15],[-12,2],[3,1],[11,9],[20,7],[4,3],[2,7],[0,9],[-1,10],[-5,19],[-1,11],[0,7],[1,4],[1,5],[-1,15],[1,7],[4,14],[9,19],[11,7],[64,-5],[41,11],[19,13],[35,9],[28,1],[52,-14],[17,-13],[5,-2],[39,0],[4,1],[3,3],[3,5],[3,4],[6,8],[-3,9],[-12,12],[19,22],[38,36],[21,9],[22,3],[114,-25],[115,-24],[8,-9],[-4,-11],[-6,-10],[-13,-14],[-4,-11],[5,-12],[8,-10],[7,-5],[34,-12],[5,-6],[-1,-10],[-5,-11],[-6,-7],[17,-7],[32,9],[18,1],[24,-16],[8,-2],[36,0],[-4,-2],[-2,-5],[-1,-6],[2,-8],[3,-2],[20,-3],[76,28],[76,27],[33,-3],[113,43],[9,0],[6,-5],[6,-10],[8,-6],[15,-9],[15,-4],[135,37],[88,-11],[57,-37],[5,-1],[75,9],[75,8],[11,-7],[6,-1],[38,9],[13,-5],[8,-7],[2,-2],[106,-22],[105,-22],[97,21],[97,22],[3,2],[7,8],[3,2],[12,-4],[132,3],[17,5],[32,24],[17,6],[130,13],[3,2],[6,10],[4,2],[15,-1],[15,-4],[3,1],[8,9],[4,3],[15,0],[31,-9],[77,7],[8,3],[15,11],[7,2],[33,-6],[52,8],[17,-3],[22,-13],[34,-10],[23,-13],[133,-11],[16,8],[9,0],[18,-3],[7,0],[31,15],[15,12],[8,1],[112,-3],[111,-3],[23,-10],[8,-2],[97,13],[11,-4],[4,0],[4,1],[8,6],[4,1],[16,-3],[30,-21],[34,-35],[7,-3],[81,9],[82,9],[34,15],[35,0],[-2,-11],[15,-8],[14,-5],[30,0],[49,18],[31,-6],[75,14],[8,-1],[25,-13],[8,0],[22,12],[7,1],[55,-12],[25,5],[23,-11],[8,-1],[8,0],[2,3],[3,10],[3,4],[8,4],[4,0],[18,-5],[45,2],[4,2],[5,9],[2,1],[50,7],[-4,-6],[-4,-4],[-5,-3],[-5,-1],[16,-5],[16,0],[16,7],[15,12],[6,5],[8,0],[7,-4],[11,-14],[9,-1],[32,5],[31,15],[79,16],[78,16],[31,-10],[40,-3],[98,23],[34,-9],[6,2],[5,5],[12,14],[5,4],[52,11],[22,-5],[20,6],[20,-4],[12,0],[52,23],[14,11],[4,14],[-9,7],[-136,4],[19,37],[26,21],[118,27],[119,28],[24,17],[12,12],[6,3],[7,-2],[7,-6],[20,-27],[2,-12],[-12,-15],[-26,-22],[18,-12],[6,0],[16,5],[7,-2],[5,-10],[-25,-22],[10,-24],[17,-5],[34,9],[16,-4],[32,-15],[41,-7],[55,7],[125,-14],[48,24],[16,4],[46,-5],[24,15],[7,-1],[9,-5],[29,4],[-10,11],[-3,7],[-1,12],[1,10],[3,7],[4,4],[5,3],[20,9],[21,4],[-4,-8],[-2,-7],[0,-7],[3,-8],[8,-12],[26,-27],[19,-12],[21,-6],[65,12],[49,-2],[60,19],[41,1],[10,6],[-4,4],[-5,7],[-3,9],[-2,9],[0,14],[3,6],[4,2],[6,0],[-3,4],[-3,2],[-7,3],[-4,3],[-5,10],[-3,2],[-10,5],[-7,7],[-21,40],[-2,7],[-4,23],[-9,19],[-1,13],[5,12],[7,11],[-11,11],[28,28],[31,18],[-9,13],[36,18],[5,15],[17,7],[64,4],[15,7],[21,16],[46,11],[8,-2],[22,-15],[42,-14],[-8,-20],[-9,-11],[-76,-54],[12,-12],[15,1],[82,32],[78,-1],[8,-2],[6,-4],[34,-38],[4,-12],[-6,-4],[0,-10],[3,-11],[4,-8],[-128,-37],[-18,-11],[8,-5],[31,-7],[16,2],[4,-2],[9,-9],[5,-3],[-29,-22],[-5,-5],[-1,-8],[2,-22],[2,-4],[4,-3],[9,-4],[-15,-24],[20,-10],[20,2],[41,20],[79,18],[-10,-29],[-13,-18],[-71,-43],[-16,-16],[-7,-4],[-114,-24],[-18,-16],[-6,-3],[-50,-13],[-9,-8],[15,-9],[10,-3],[32,0],[50,20],[16,1],[15,-5],[6,-6],[3,-8],[0,-10],[-4,-12],[-5,-6],[-17,-14],[-4,-11],[-5,-34],[-4,-15],[-14,-16],[-34,-14],[-36,-41],[-2,-9],[4,-14],[7,-6],[37,-9],[7,1],[32,17],[21,1],[7,6],[21,29],[7,7],[8,3],[22,-3],[43,10],[16,0],[73,22],[73,23],[14,-2],[39,-14],[14,1],[5,5],[4,9],[3,9],[2,4],[15,4],[90,-10],[5,5],[4,10],[7,3],[14,3],[12,8],[6,3],[74,2],[74,2],[-5,12],[1,11],[4,9],[7,5],[-9,10],[-33,-8],[-12,9],[-12,22],[-14,16],[-31,23],[1,9],[-1,9],[-2,10],[-1,11],[2,10],[5,8],[11,11],[12,7],[93,-6],[18,9],[26,6],[-9,10],[-33,2],[-61,19],[-12,8],[-12,11],[-29,45],[-5,20],[8,17],[-2,1],[-4,4],[-2,2],[5,7],[7,3],[13,1],[46,28],[16,2],[39,-8],[14,2],[7,-1],[8,-4],[32,-4],[22,-14],[30,-11],[2,-3],[6,-8],[3,-3],[17,-4],[16,-7],[7,-8],[5,-10],[4,-7],[9,-2],[9,2],[6,2],[6,10],[9,30],[5,7],[32,-2],[30,-16],[55,-60],[-42,-13],[-13,-9],[5,-5],[5,-5],[11,-7],[6,-1],[34,8],[10,-3],[17,-22],[2,-5],[0,-3],[-3,-6],[0,-2],[1,-4],[5,-12],[3,-15],[-4,-17],[-6,-14],[-7,-5],[-16,2],[-6,-3],[-21,-26],[-1,-7],[8,-9],[7,-6],[5,-8],[2,-10],[-1,-18],[-5,-9],[-9,-8],[-49,-24],[-34,-6],[-15,3],[-7,-1],[-6,-6],[-8,-11],[-35,-44],[-23,-14],[-16,-15],[-7,-5],[-67,-18],[-12,-8],[-23,-24],[-40,-20],[-14,-13],[-6,-15],[23,1],[7,-3],[-8,-9],[-27,-14],[16,-2],[22,3],[5,-3],[11,-10],[16,-10],[17,-4],[8,1],[24,17],[16,5],[95,3],[95,2],[8,-4],[15,-13],[7,-3],[46,-7],[50,11],[26,-7],[9,1],[8,4],[6,6],[28,34],[7,6],[8,-1],[8,-3],[106,-15],[107,-16],[106,-15],[106,-15],[11,-6],[10,-10],[45,-24],[133,6],[7,-3],[13,-11],[7,-2],[27,-2],[8,4],[4,4],[6,10],[4,3],[58,-1],[25,-12],[28,-2],[16,-22],[18,-5],[18,4],[13,10],[6,20],[3,3],[101,19],[102,20],[4,4],[8,10],[3,4],[73,12],[72,11],[6,3],[4,6],[2,3],[-1,3],[0,2],[-1,4],[2,13],[9,7],[11,3],[53,0],[5,-2],[2,-2],[3,-6],[5,-6],[6,-4],[35,-11],[23,-1],[60,22],[65,2],[47,-20],[33,1],[72,20],[71,20],[98,-13],[97,-13],[44,12],[27,-13],[47,5],[26,-4],[61,14],[20,13],[7,0],[29,-10],[16,-11],[10,-16],[3,-17],[-1,-13],[-3,-11],[-7,-13],[-9,-11],[-2,-4],[-2,-6],[-3,-13],[-2,-6],[34,-26],[107,-14],[-3,-13],[1,-11],[5,-9],[7,-2],[24,7],[24,-1],[86,18],[23,15],[31,9],[31,0],[28,-6],[24,-14],[7,-1],[4,2],[13,9],[3,1],[7,-1],[3,2],[8,5],[40,15],[111,16],[116,-21],[3,1],[12,10],[4,2],[48,-3],[36,7],[5,4],[8,13],[5,5],[4,2],[23,6],[22,14],[-8,11],[-13,1],[-26,-6],[-48,1],[86,54],[-32,5],[-97,-30],[-8,1],[-31,16],[-95,20],[8,11],[5,10],[2,14],[-1,27],[2,20],[0,7],[-3,6],[-14,15],[-15,8],[-45,-20],[-8,1],[-31,12],[-40,2],[-61,-13],[-66,10],[-50,21],[-4,4],[-2,6],[2,10],[2,1],[46,9],[16,-1],[28,-11],[16,1],[18,8],[7,8],[7,15],[6,7],[25,15],[-12,15],[-13,7],[-28,10],[1,3],[9,11],[7,8],[3,5],[6,16],[-6,3],[-21,4],[8,12],[9,5],[49,15],[17,23],[4,1],[-4,6],[-5,3],[-4,-1],[-6,-2],[-3,1],[-9,8],[-4,2],[-22,-2],[-7,2],[-4,3],[-13,14],[-5,3],[-5,0],[-32,-9],[-24,5],[-19,-1],[-6,3],[-4,1],[-8,-4],[-4,0],[-17,1],[-17,-2],[-91,-39],[-130,28],[-18,16],[12,12],[6,8],[5,10],[-7,2],[-6,5],[-2,10],[1,13],[5,11],[6,7],[13,10],[10,12],[2,6],[2,7],[-1,6],[-3,1],[-16,-5],[-17,1],[5,7],[8,6],[5,8],[2,11],[-3,16],[-5,14],[-6,9],[-8,3],[2,15],[-4,8],[-13,8],[-8,8],[-5,9],[-4,13],[-2,17],[-9,14],[-20,3],[-35,-5],[-32,3],[-45,24],[-46,-3],[-46,18],[-94,-3],[-32,9],[-14,12],[-7,26],[11,24],[17,22],[9,19],[-4,18],[-12,10],[-32,9],[-4,2],[-3,4],[0,12],[2,11],[-1,9],[-4,7],[13,12],[17,2],[136,-15],[136,-15],[31,-16],[115,-2],[7,-2],[24,-15],[3,-3],[1,-5],[0,-8],[0,-9],[3,-6],[4,-4],[20,-9],[74,-4],[73,-3],[4,2],[2,4],[4,11],[3,3],[3,1],[12,-3],[4,1],[5,8],[4,4],[8,2],[82,-2],[82,-2],[55,18],[23,-3],[8,4],[16,11],[8,4],[-8,8],[-24,16],[25,10],[79,-16],[110,8],[-10,16],[-4,6],[-7,4],[-83,12],[-82,12],[-28,14],[10,14],[13,6],[27,2],[-54,23],[-10,0],[-10,-4],[-8,-7],[-4,-1],[-3,3],[-1,8],[5,20],[0,10],[-2,9],[-4,6],[-5,4],[-5,1],[-125,7],[-125,7],[-125,7],[-26,8],[-134,-12],[-45,19],[-103,-8],[-104,-8],[-75,13],[-4,3],[-2,4],[-2,5],[-2,5],[-22,25],[-16,8],[-20,23],[-8,5],[-28,4],[-5,2],[-6,5],[-6,7],[-2,9],[2,9],[6,9],[13,14],[-3,6],[-3,5],[-4,4],[-3,3],[1,6],[2,7],[4,11],[-14,17],[-6,10],[-6,13],[-8,31],[-5,14],[-8,8],[27,44],[10,11],[71,29],[99,-9],[99,-9],[16,-10],[49,-10],[-6,-6],[-9,-7],[-5,-9],[5,-13],[-3,-6],[-3,-5],[-4,-4],[-3,-2],[10,-12],[-8,-8],[-20,-5],[-9,-4],[-4,-5],[-4,-6],[-3,-4],[-5,-3],[-21,-1],[-4,-1],[-8,-9],[-4,-3],[-20,0],[-45,-21],[11,-4],[84,8],[83,8],[26,-5],[-4,-32],[10,-9],[79,13],[78,12],[24,13],[76,5],[75,4],[30,-20],[78,-33],[17,-2],[15,5],[34,23],[8,2],[25,-3],[47,17],[47,-13],[137,-1],[136,-2],[137,-1],[136,-1],[-24,-39],[-9,-11],[-40,-35],[14,-12],[16,-6],[15,-1],[16,4],[44,34],[42,8],[9,-1],[23,-14],[8,-1],[6,2],[9,-1],[8,-3],[12,-16],[7,-3],[46,-4],[8,-5],[14,-17],[57,-22],[33,-5],[31,-14],[88,-10],[88,-9],[3,4],[3,7],[4,17],[3,5],[13,12],[17,6],[49,0],[32,13],[16,2],[17,-5],[2,1],[7,7],[3,2],[11,1],[53,-21],[118,6],[13,-7],[40,-37],[14,-7],[57,5],[54,20],[39,33],[6,4],[7,2],[15,0],[11,-5],[6,-2],[5,5],[2,4],[1,11],[2,5],[3,3],[5,1],[76,-5],[76,-5],[15,8],[14,4],[15,10],[18,7],[3,0],[5,-3],[3,-5],[1,-6],[4,-7],[7,-3],[49,11],[82,-6],[81,-5],[6,-4],[2,-7],[1,-7],[1,-6],[17,-16],[4,-2],[50,6],[76,-17],[76,-16],[3,-2],[2,-4],[1,-10],[1,-4],[3,-1],[89,16],[30,19],[8,1],[17,-5],[7,2],[49,34],[18,18],[24,25],[6,4],[7,2],[25,-2],[35,10],[12,-1],[28,-9],[15,1],[58,22],[7,0],[19,-10],[45,9],[15,-3],[-9,14],[-6,15],[1,15],[10,12],[43,34],[3,4],[4,7],[3,7],[-3,4],[-12,5],[-4,7],[1,12],[3,33],[2,10],[-3,27],[-17,20],[-52,31],[-18,20],[21,5],[104,-15],[104,-15],[104,-16],[14,-11],[10,-18],[2,-13],[1,-13],[1,-12],[4,-10],[-24,-20],[-25,-14],[-22,-5],[-12,-6],[-7,-10],[-2,-12],[2,-8],[11,-12],[-7,-18],[-10,-11],[-72,-48],[3,-4],[26,-13],[12,-10],[9,-13],[15,-33],[10,-12],[10,-4],[11,3],[29,26],[9,5],[12,2],[10,0],[10,-3],[4,-3],[8,-11],[4,-3],[38,-6],[10,4],[17,15],[49,16],[40,-4],[9,3],[29,16],[5,0],[5,-3],[2,-6],[-2,-11],[-4,-6],[-4,-4],[-9,-4],[10,-18],[11,-7],[38,-5],[13,-6],[6,-13],[-6,-26],[12,-8],[14,-6],[26,-4],[78,7],[20,13],[37,7],[7,6],[6,9],[8,22],[5,7],[6,3],[8,0],[7,-3],[6,-6],[6,-4],[7,2],[42,18],[24,26],[27,15],[29,5],[29,-5],[27,-14],[-17,-7],[-4,-6],[-3,-11],[1,-8],[3,-6],[12,-7],[4,-4],[3,-7],[3,-15],[3,-8],[5,-5],[12,-6],[-11,-11],[3,-8],[4,-2],[5,0],[4,-3],[7,-7],[5,-3],[6,2],[7,6],[8,3],[7,-3],[31,-26],[17,-9],[18,-18],[14,-3],[12,-7],[25,-6],[19,-11],[107,-22],[80,7],[12,4],[6,1],[20,-11],[6,1],[13,9],[7,3],[5,-2],[12,-8],[6,-2],[31,3],[0,-31],[-2,-13],[-7,-4],[-7,0],[-7,-2],[-6,-5],[-7,-8],[4,-7],[11,-4],[6,-5],[-2,-2],[-1,-7],[-1,-8],[1,-6],[2,-5],[4,-1],[29,10],[7,-1],[3,-4],[4,-10],[3,0],[15,10],[6,2],[3,-1],[4,-3],[3,1],[3,6],[5,14],[11,10],[15,-1],[28,-11],[101,-3],[61,-20],[11,-15],[7,-1],[13,2],[70,-34],[21,-20],[18,-12],[20,-6],[20,2],[18,10],[24,26],[6,4],[5,1],[24,-6],[22,0],[132,58],[13,15],[11,23],[6,26],[4,10],[7,6],[-8,15],[-11,8],[-23,11],[-10,9],[-9,12],[-6,13],[-2,13],[0,14],[6,34],[1,14],[-4,10],[-9,7],[12,30],[22,15],[23,5],[94,-14],[10,-7],[4,-6],[6,-13],[3,-6],[5,-4],[28,-6],[60,-47],[34,-5],[11,3],[10,9],[-8,1],[-28,22],[-7,10],[-2,7],[0,6],[0,7],[0,7],[-2,8],[-15,47],[-5,12],[-7,8],[-12,8],[-4,4],[-9,22],[-3,4],[-17,7],[-7,8],[-2,13],[0,10],[-2,7],[0,6],[2,9],[3,7],[3,5],[4,5],[4,3],[32,13],[32,2],[101,-27],[101,-26],[6,-6],[13,-18],[97,-69],[25,-30],[14,-11],[27,-13],[16,-1],[5,-2],[10,-11],[28,-16],[10,-16],[1,-29],[-6,-19],[-8,-13],[-9,-10],[-8,-14],[-2,-7],[0,-5],[1,-3],[0,-5],[-4,-24],[1,-10],[6,-6],[18,-1],[55,17],[15,13],[8,2],[83,1],[63,19],[34,1],[89,32],[9,1],[16,-4],[23,-18],[8,-3],[24,-3],[8,2],[15,10],[14,13],[9,5],[55,2],[9,-3],[19,-15],[17,-20],[6,-14],[-2,-14],[-7,-12],[-59,-46],[-4,-5],[-7,-14],[-4,-5],[-69,-61],[11,-13],[23,-22],[11,-5],[9,1],[8,4],[25,23],[42,25],[49,2],[7,-2],[12,-12],[7,-3],[57,-5],[8,2],[3,4],[7,12],[4,5],[4,1],[68,19],[4,3],[3,5],[5,4],[7,2],[23,-2],[30,11],[8,1],[24,-3],[9,1],[7,4],[49,43],[13,6],[12,2],[100,-12],[35,-16],[12,-12],[10,-15],[11,-12],[14,-1],[28,11],[6,6],[10,13],[6,6],[6,2],[19,-1],[18,7],[6,-2],[42,-30],[22,-5],[21,9],[24,25],[17,5],[9,6],[9,9],[14,26],[8,4],[9,-6],[9,-11],[-2,-10],[3,-7],[5,-3],[4,3],[12,27],[5,7],[13,10],[12,2],[27,-4],[22,6],[6,6],[14,38],[5,9],[6,7],[6,5],[7,3],[67,0],[52,-15],[36,5],[24,-5],[12,0],[8,9],[-17,11],[49,28],[66,9],[39,-3],[31,16],[58,-6],[33,4],[100,52],[50,6],[104,-11],[15,4],[8,0],[22,-13],[8,-3],[7,1],[104,45],[81,11],[80,11],[117,46],[21,-5],[17,2],[31,12],[7,5],[6,8],[7,5],[16,2],[20,23],[73,26],[73,26],[8,6],[21,28],[13,10],[7,1],[7,0],[7,-5],[7,-7],[7,-4],[8,3],[7,7],[7,5],[14,5],[7,6],[-2,12],[-3,14],[-2,13],[2,2],[6,14],[1,3],[3,4],[11,9],[21,30],[31,25],[12,17],[0,3],[1,20],[-1,21],[1,11],[3,10],[5,13],[11,19],[3,4],[12,6],[3,3],[9,16],[15,11],[6,7],[1,25],[4,5],[5,5],[4,8],[0,9],[-1,8],[0,7],[3,8],[5,6],[25,25],[6,8],[5,11],[6,15],[1,13],[-4,13],[-5,13],[-2,13],[2,24],[-1,6],[-3,9],[-2,3],[-3,1],[-4,3],[-4,2],[-2,-1],[-2,1],[-2,8],[-1,10],[-1,4],[-6,6],[-7,4],[-15,3],[-7,5],[-52,65],[6,4],[16,4],[-11,19],[-78,60],[-16,20],[-6,27],[-6,20],[-15,20],[-12,24],[1,33],[5,14],[2,6],[7,11],[9,17],[10,9],[2,5],[3,9],[2,5],[3,4],[5,2],[-4,10],[-8,5],[-16,4],[6,5],[18,5],[-2,13],[-11,22],[-2,12],[4,12],[9,7],[18,5],[-5,9],[-2,11],[2,13],[2,13],[-28,23],[-3,7],[-8,19],[-5,8],[-12,9],[-5,7],[-3,8],[-5,20],[-3,9],[-5,11],[-3,7],[-1,8],[3,8],[4,8],[3,9],[-4,19],[1,8],[1,9],[0,12],[-2,8],[-21,43],[-10,13],[-15,12],[-2,6],[-8,34],[-5,31],[-5,25],[-8,22],[-9,14],[-2,1],[-7,0],[-3,2],[-5,9],[-2,4],[-5,3],[-34,13],[-5,5],[-8,21],[-4,8],[-6,8],[-4,7],[-5,17],[-5,8],[-6,5],[-23,8],[-6,6],[-6,7],[-4,7],[0,12],[1,16],[2,14],[3,7],[-4,11],[-3,10],[0,10],[5,12],[5,5],[6,3],[12,3],[2,6],[1,13],[-4,44],[0,7],[8,26],[2,10],[-2,10],[-4,9],[-5,6],[-24,12],[-5,6],[-2,12],[-2,5],[-16,8],[-4,8],[-5,20],[-5,9],[-5,4],[-11,7],[-14,14],[-4,5],[-4,11],[-3,5],[-15,8],[3,12],[2,5],[42,13],[52,-1],[28,-12],[9,-2],[7,2],[4,2],[1,4],[2,17],[-1,9],[-2,5],[-9,11],[-2,11],[5,9],[10,4],[10,-2],[17,-17],[9,-3],[10,1],[4,-2],[5,-5],[4,-2],[16,3],[2,-23],[14,-5],[27,7],[13,-4],[78,-38],[10,-12],[9,-19],[6,-8],[5,-4],[8,2],[10,13],[13,8],[7,6],[2,8],[-5,8],[-7,5],[-4,7],[-2,9],[4,12],[3,2],[3,1],[3,1],[1,5],[3,29],[3,13],[4,9],[6,6],[6,2],[56,-2],[32,18],[5,7],[5,11],[4,16],[-8,7],[-15,18],[-8,6],[6,8],[6,5],[22,7],[14,10],[6,1],[-8,21],[-15,0],[-16,-7],[-12,-2],[7,12],[8,10],[9,6],[9,3],[-5,15],[-10,5],[-109,12],[-22,16],[-29,30],[-5,7],[-2,8],[1,10],[4,6],[22,12],[91,5],[5,-1],[6,1],[6,6],[10,16],[-5,8],[-2,9],[-1,9],[-3,10],[-2,9],[1,26],[-3,8],[-25,20],[-13,14],[-7,19],[3,21],[14,8],[35,-1],[6,3],[4,7],[3,21],[5,4],[14,0],[-15,11],[-8,8],[-1,11],[5,6],[8,0],[14,-6],[-12,10],[-43,8],[-18,-2],[-8,6],[-2,8],[1,9],[3,8],[5,4],[6,2],[95,-21],[9,7],[3,5],[5,11],[4,4],[18,13],[-14,29],[-4,4],[-18,1],[-12,-5],[-12,-9],[-6,-7],[-5,-3],[-18,4],[-1,13],[-9,15],[-36,34],[-8,17],[-6,4],[-14,5],[5,6],[4,1],[11,-4],[6,-1],[5,4],[10,14],[-25,9],[-8,5],[-2,7],[0,6],[-1,4],[-14,5],[-7,7],[70,25],[40,5],[6,2],[3,5],[2,8],[0,13],[-16,24],[9,9],[9,3],[8,5],[8,15],[-10,-2],[-30,6],[-47,-7],[14,20],[4,3],[66,12],[11,-5],[-11,20],[-38,-6],[-14,8],[12,19],[29,33],[14,10],[17,1],[32,-12],[16,-1],[-3,14],[1,6],[2,4],[4,10],[3,14],[-2,8],[-5,4],[-7,-1],[-4,-4],[-7,-12],[-4,-4],[-5,-1],[-28,10],[-19,16],[-10,4],[-7,0],[-31,15],[-5,0],[-134,-48],[-33,-1],[-5,2],[12,15],[6,5],[7,4],[-9,9],[-10,5],[-9,2],[-11,-2],[35,74],[14,18],[-17,10],[-5,11],[2,17],[7,14],[7,12],[17,18],[-11,5],[-24,-6],[-10,8],[4,7],[14,16],[10,16],[9,19],[1,7],[-2,5],[0,3],[4,4],[2,1],[3,-1],[3,-1],[1,-3],[5,-11],[5,-5],[25,-11],[4,4],[13,21],[3,10],[1,11],[1,18],[2,11],[6,-1],[6,-8],[4,-7],[6,-8],[6,-2],[5,4],[7,6],[-9,17],[-4,10],[1,11],[4,5],[7,3],[8,1],[5,0],[22,-11],[10,-10],[-3,-16],[0,-4],[5,-28],[-1,-9],[-2,-9],[-6,-14],[0,-6],[0,-10],[3,-17],[2,-6],[2,-3],[8,-3],[-14,-21],[-4,-7],[-2,-14],[-3,-7],[-3,-15],[9,-5],[20,0],[17,-16],[8,0],[6,13],[0,5],[0,8],[0,3],[2,7],[8,11],[2,6],[2,9],[0,6],[1,3],[5,-1],[12,-16],[12,-11],[3,-4],[9,-19],[1,-6],[5,-24],[2,-7],[3,-3],[7,-1],[10,6],[3,17],[-1,55],[0,10],[-5,22],[-3,8],[-8,12],[-4,8],[23,17],[-6,4],[-16,17],[-6,3],[-13,1],[-6,3],[4,15],[4,11],[25,45],[3,1],[2,0],[4,2],[6,7],[6,11],[0,13],[-6,9],[-31,20],[5,21],[2,18],[-2,19],[-5,20],[1,17],[10,12],[61,27],[10,1],[46,-5],[4,-3],[2,-3],[2,-11],[2,-4],[2,-1],[8,-1],[5,-3],[4,-4],[7,-12],[5,-6],[3,-2],[10,0],[16,-7],[3,-3],[4,-9],[4,-4],[4,0],[6,4],[4,5],[3,6],[4,4],[10,0],[4,4],[8,14],[-33,25],[-1,5],[4,4],[5,1],[5,-2],[4,1],[4,5],[-1,3],[-8,10],[-1,6],[1,5],[4,11],[5,19],[6,20],[2,7],[-1,9],[7,7],[17,8],[7,6],[-14,12],[-3,1],[-6,-1],[-2,1],[-5,10],[-1,10],[-2,8],[-6,6],[-13,1],[-13,-3],[-12,1],[-12,13],[24,15],[6,2],[5,-1],[5,2],[24,32],[2,9],[-4,11],[-4,7],[-12,12],[26,14],[1,3],[2,11],[2,2],[3,-1],[11,-12],[4,-2],[8,2],[4,-1],[14,-13],[6,-2],[26,0],[37,-15],[14,2],[13,12],[-44,49],[-14,10],[-6,7],[-3,10],[-1,12],[2,12],[4,6],[5,4],[10,4],[58,-3],[3,1],[7,9],[4,3],[23,8],[9,-1],[17,-7],[2,-4],[2,-14],[3,-6],[3,-2],[4,-2],[3,-2],[6,-13],[8,-3],[2,-9],[5,-3],[29,3],[3,2],[9,14],[9,9],[3,6],[2,9],[0,9],[-2,6],[-7,10],[-10,20],[0,4],[-10,0],[-10,2],[-9,8],[-9,15],[6,16],[0,36],[4,9],[9,-1],[17,-15],[47,-27],[5,3],[2,4],[1,20],[-1,4],[-1,5],[-1,4],[1,4],[11,11],[-30,35],[-10,16],[48,-1],[15,-6],[7,-8],[5,-10],[5,-7],[16,3],[16,-8],[8,0],[-6,14],[-15,16],[-6,11],[6,6],[2,2],[-7,14],[-7,11],[-8,7],[-9,2],[40,23],[22,0],[8,-24],[0,-9],[2,-3],[8,-2],[16,-12],[21,-5],[3,1],[1,9],[-3,9],[-8,16],[10,10],[31,4],[-5,12],[-15,5],[-2,14],[-19,-7],[1,3],[1,7],[1,3],[-28,-4],[-39,23],[-8,10],[7,2],[8,6],[8,9],[6,9],[-3,9],[-5,7],[-10,9],[-15,30],[-2,5],[9,-1],[4,0],[3,4],[-1,13],[-7,28],[1,17],[6,12],[17,-2],[7,9],[0,2],[-1,5],[0,3],[1,2],[2,2],[5,4],[7,4],[2,3],[2,5],[3,12],[2,5],[4,4],[13,10],[6,2],[4,-1],[9,-8],[5,-1],[5,1],[4,1],[5,-5],[5,-11],[2,-3],[3,-2],[18,-5],[9,1],[6,2],[2,-1],[8,-7],[13,0],[7,-2],[12,-9],[7,0],[12,12],[8,5],[7,1],[4,-6],[3,-16],[3,-11],[6,-6],[15,2],[12,-12],[6,-2],[7,5],[12,15],[7,4],[-9,24],[7,6],[2,2],[-2,2],[-4,6],[-2,2],[5,7],[-1,5],[-3,3],[-4,1],[-5,0],[-10,-5],[-5,0],[-10,5],[-10,11],[-16,26],[7,10],[30,9],[3,2],[3,5],[3,9],[3,1],[5,-2],[7,-7],[4,-2],[4,1],[3,3],[4,1],[4,-1],[8,-7],[5,-1],[8,6],[13,25],[9,7],[-10,7],[-4,5],[-4,8],[17,12],[15,-6],[40,-50],[3,-2],[6,0],[3,5],[3,7],[4,5],[8,1],[17,-1],[8,3],[-74,59],[6,8],[6,2],[14,0],[6,4],[12,13],[5,0],[-12,17],[-4,10],[-5,17],[1,4],[2,5],[3,3],[3,0],[5,-3],[5,0],[4,2],[5,4],[-3,5],[-3,4],[-4,2],[-3,0],[7,8],[7,4],[7,-1],[8,-4],[-2,-3],[-4,-8],[-2,-3],[15,-21],[7,-5],[0,14],[6,-1],[6,-3],[3,-3],[2,-5],[0,-5],[-2,-3],[-7,-5],[-5,-9],[-2,-13],[-2,-15],[63,-21],[-5,9],[-11,10],[-6,9],[7,2],[6,-1],[13,-6],[-2,9],[-1,9],[0,19],[23,-20],[3,2],[5,8],[3,3],[9,0],[4,3],[4,7],[3,7],[6,17],[-12,15],[6,8],[3,8],[5,6],[7,1],[3,-2],[10,-9],[2,0],[11,6],[-4,6],[-5,22],[-4,10],[4,3],[4,10],[2,2],[6,0],[2,-2],[0,-5],[3,-8],[13,-26],[2,-11],[1,-10],[2,-7],[5,-5],[4,-2],[3,-2],[1,-5],[0,-7],[1,-5],[4,-4],[8,-4],[8,3],[25,28],[-22,18],[-10,14],[0,17],[9,6],[15,-2],[15,-6],[9,-6],[-4,8],[0,12],[1,14],[0,13],[-23,-11],[-9,4],[-7,21],[5,3],[7,10],[4,3],[8,2],[3,2],[4,6],[3,9],[0,6],[2,3],[11,-2],[5,1],[9,6],[-2,-10],[-4,-5],[-10,-5],[2,-8],[3,-1],[5,2],[5,0],[5,-3],[15,-13],[0,16],[7,6],[34,1],[16,4],[-6,3],[-3,6],[-2,10],[-1,13],[5,-1],[2,6],[1,7],[3,6],[4,2],[4,2],[18,-2],[9,2],[7,8],[3,18],[-6,2],[-6,4],[2,12],[3,5],[5,1],[5,1],[-11,31],[25,-6],[8,2],[-1,6],[-3,4],[-2,2],[-3,1],[-3,3],[-5,11],[-3,5],[-29,16],[9,11],[17,5],[10,5],[3,0],[5,-4],[8,-11],[4,-2],[5,2],[9,5],[-2,-12],[8,3],[5,10],[2,14],[-3,16],[56,15],[62,42],[15,-3],[14,4],[8,-1],[49,-26],[4,0],[3,1],[4,3],[1,3],[-1,4],[0,6],[1,5],[4,9],[2,5],[-1,4],[-3,5],[0,4],[1,7],[2,5],[4,3],[3,2],[7,-1],[6,-5],[5,-1],[6,8],[-4,9],[-3,7],[0,8],[3,11],[4,7],[4,2],[5,-1],[4,-5],[4,-10],[-2,-8],[-4,-6],[-2,-7],[2,-11],[4,-4],[16,-1],[14,-7],[15,0],[11,-9],[5,-2],[5,2],[6,4],[6,2],[6,-5],[11,-14],[7,29],[-3,2],[-3,4],[-3,6],[-2,6],[27,23],[1,4],[1,7],[-2,7],[-6,17],[-1,6],[5,9],[7,6],[20,9],[7,1],[6,-1],[6,-4],[13,-13],[7,-4],[5,1],[23,26],[7,3],[8,-2],[7,1],[4,11],[-1,11],[-5,27],[0,13],[5,9],[7,5],[89,26],[89,25],[26,-5],[5,3],[4,8],[1,17],[-4,-1],[-6,1],[-5,5],[-1,9],[4,9],[7,-1],[7,-8],[5,-6],[4,-5],[5,-2],[6,-1],[4,1],[3,4],[5,9],[4,3],[6,1],[3,2],[22,40],[5,5],[18,-1],[85,33],[22,16],[12,4],[23,2],[50,-16],[21,-23],[-2,-39],[3,-2],[4,-6],[3,-1],[-4,-7],[-3,-8],[-6,-17],[23,12],[6,-2],[4,-13],[-4,-11],[-7,-8],[-6,-4],[3,-7],[3,-1],[3,-1],[3,-3],[4,-7],[2,-6],[3,-5],[4,-4],[21,-8],[7,-7],[7,-12],[2,-12],[-2,-12],[-7,-14],[-6,-7],[-7,-3],[-8,1],[-7,4],[-13,13],[-6,1],[-14,-13],[-21,-11],[-8,-1],[-6,6],[-5,13],[-3,15],[1,10],[7,7],[8,5],[6,0],[-3,8],[-3,5],[-3,4],[-4,4],[1,2],[2,7],[1,3],[-5,3],[-9,13],[-7,2],[-25,-5],[-14,5],[-14,11],[-14,6],[-13,-9],[9,-19],[2,-11],[-2,-14],[20,-5],[-10,-12],[-17,-2],[-56,8],[-8,-1],[-4,-7],[-3,-9],[-7,-3],[11,-7],[33,-3],[-3,-2],[-11,-11],[-5,-3],[-7,0],[-2,-1],[-3,-3],[-3,-6],[-2,-3],[-4,-3],[-5,2],[-4,2],[-5,2],[-12,-1],[-6,-2],[-4,-4],[1,-1],[2,-3],[1,-1],[0,-1],[-6,-8],[-2,-1],[-3,0],[-5,0],[-19,8],[-12,-2],[-12,7],[-6,-1],[-5,-6],[-10,-18],[-6,-7],[-33,-22],[-10,-14],[-14,-32],[-6,-7],[-5,0],[-6,1],[-4,-1],[-4,-9],[1,-2],[3,-5],[2,-1],[-14,-23],[-33,-20],[-12,-12],[-12,-18],[-8,-22],[3,-21],[4,-12],[-2,-6],[-10,-10],[-6,-10],[-3,-9],[-6,-24],[-1,-5],[-1,-6],[-1,-5],[-1,-3],[-16,1],[-6,2],[-11,8],[-27,7],[-5,-2],[-2,-3],[-3,-10],[-3,-2],[-3,-2],[-4,-4],[-3,-5],[2,-6],[6,-6],[89,-15],[4,-7],[2,-13],[-4,-10],[-8,-4],[-16,0],[-7,-1],[-14,-10],[-7,0],[4,-13],[8,-12],[9,-8],[17,-2],[9,-9],[5,-16],[-1,-23],[-5,-18],[-9,-8],[-21,-6],[-7,3],[-11,9],[-10,10],[-6,11],[6,8],[2,11],[-2,12],[-6,8],[-6,0],[-38,-17],[-14,-1],[-15,4],[-15,8],[-10,17],[-14,48],[-13,12],[-7,-1],[-8,-3],[-7,-5],[-6,-8],[-12,-23],[-7,-7],[-8,-1],[3,-9],[8,-14],[3,-10],[0,-11],[-8,-22],[-3,-10],[7,4],[6,2],[5,-3],[6,-7],[4,-11],[-2,-10],[-4,-9],[-5,-6],[-13,-4],[-12,3],[-25,13],[3,7],[1,8],[2,27],[-2,36],[-4,6],[-6,3],[-11,2],[-24,14],[-11,3],[-14,-6],[5,-18],[1,-8],[-3,-8],[-4,-7],[-4,-5],[-4,-3],[-40,-19],[-11,-2],[-3,-2],[-3,-10],[-2,-10],[-3,-7],[-5,-3],[-18,20],[-5,3],[-16,4],[9,-40],[4,-9],[3,-6],[2,-6],[-1,-9],[-4,-3],[-6,1],[-11,5],[-6,-1],[-3,-3],[-3,-6],[-5,-5],[-39,-20],[-8,-7],[-10,-13],[-6,-16],[5,-14],[-8,-17],[-24,-20],[-10,-11],[-42,-74],[-12,-14],[-13,2],[-13,5],[-14,0],[-52,-32],[-2,1],[-2,3],[-7,15],[-2,4],[-2,3],[-23,18],[-6,3],[-52,3],[-6,-4],[-2,-10],[3,-48],[2,-8],[2,-3],[2,-1],[9,-11],[5,-4],[11,-4],[14,1],[4,-5],[4,-15],[-15,-7],[-5,0],[6,-18],[0,-14],[-6,-10],[-10,-3],[-20,3],[-19,-3],[-7,2],[-29,29],[-8,1],[-10,-4],[-9,-9],[-7,-9],[9,-12],[-4,-7],[-24,-19],[-7,-3],[-14,-4],[3,-15],[4,-8],[5,-4],[35,-13],[-4,-6],[-4,-4],[-4,-2],[-4,0],[-2,-6],[-1,-13],[0,-14],[1,-8],[8,-9],[21,-5],[8,-5],[3,-6],[5,-17],[3,-5],[11,-4],[12,0],[20,10],[10,1],[9,-9],[-7,-10],[-7,-5],[-35,-5],[-8,1],[-9,8],[-6,-1],[-24,-15],[-6,-1],[-4,-2],[-2,-6],[1,-12],[2,-6],[3,-3],[2,-4],[1,-11],[-3,-15],[-6,-12],[-9,-8],[-8,-6],[-12,-3],[-4,-3],[-3,-5],[-7,-13],[-3,-3],[-17,-3],[-7,-5],[-6,-11],[0,-8],[2,-7],[4,-6],[1,-6],[-1,-7],[-9,-27],[25,-3],[5,-4],[1,-6],[-2,-20],[1,-7],[2,-9],[2,-6],[63,-61],[30,-12],[15,0],[14,7],[10,8],[6,3],[5,-6],[6,-16],[5,-4],[28,-12],[-2,16],[-3,16],[-9,28],[-1,19],[9,7],[11,-1],[66,-38],[8,0],[-2,14],[-1,14],[1,13],[5,11],[-6,11],[-7,15],[-2,14],[6,7],[16,4],[8,0],[6,-5],[7,-12],[23,-25],[3,-7],[4,-16],[3,-4],[5,-2],[9,-2],[4,1],[0,12],[-1,53],[3,7],[6,1],[15,-3],[17,3],[82,-17],[8,-11],[-4,-23],[-11,-23],[-10,-11],[-6,3],[-6,5],[-5,0],[-1,-14],[1,-16],[0,-14],[-3,-9],[-7,4],[-17,15],[-5,8],[-2,5],[-2,13],[-1,4],[-2,2],[-17,3],[-3,0],[-2,-4],[-1,-8],[-1,-4],[-3,-1],[-19,-3],[-5,-6],[-5,-14],[5,-15],[14,-14],[27,-19],[-2,-6],[-7,-13],[-1,-4],[2,-11],[0,-7],[-2,-7],[-17,-33],[-6,-10],[-10,-4],[-17,-2],[-8,3],[-7,9],[-6,16],[1,14],[3,16],[2,19],[-3,13],[-9,11],[-17,13],[-10,3],[-20,-3],[-10,2],[-7,9],[-7,11],[-7,5],[-7,-9],[-2,-15],[-1,-23],[1,-23],[2,-16],[-8,5],[-14,15],[-8,4],[-36,11],[-9,-2],[-5,-6],[1,-10],[6,-14],[8,-15],[9,-13],[4,-9],[-2,-9],[-4,-7],[-2,-6],[2,-8],[9,-15],[-4,-30],[-3,-9],[-6,-8],[-9,-3],[-10,1],[-7,6],[-6,13],[-4,14],[-3,16],[-10,38],[-2,4],[-5,2],[-2,2],[-7,16],[-4,7],[-5,4],[6,17],[2,11],[0,8],[-4,6],[-7,1],[-33,-6],[-9,2],[-12,11],[-9,6],[-10,0],[-20,-7],[-18,1],[-6,-1],[-16,-12],[-6,-3],[-48,-9],[-9,-6],[-11,-14],[-7,-17],[1,-16],[19,-23],[21,-14],[18,-20],[11,-39],[-33,-8],[-16,-10],[-9,-20],[5,-22],[17,-7],[34,-1],[-8,-19],[-2,-10],[0,-13],[14,2],[6,4],[7,7],[0,-17],[-2,-11],[-4,-8],[-7,-5],[-8,-4],[-15,-4],[-15,0],[-6,4],[-35,32],[-3,9],[0,24],[-1,6],[-3,5],[-4,2],[-3,3],[-1,9],[-2,17],[-3,15],[-5,11],[-7,10],[-72,73],[-4,12],[-1,5],[-4,11],[-2,6],[0,10],[1,6],[0,5],[-3,7],[-6,6],[-7,-2],[-12,-12],[-5,-2],[-3,2],[-3,2],[-4,1],[-13,0],[-5,2],[-3,2],[-5,8],[-2,3],[-4,1],[-7,0],[-4,1],[-3,4],[-7,11],[-4,3],[-4,0],[-11,-8],[-14,-1],[-41,15],[8,-9],[8,-7],[-9,-10],[5,-5],[16,-6],[-11,-7],[-23,-1],[-11,-5],[10,-11],[11,-4],[23,-1],[-2,-3],[-3,-6],[-1,-3],[27,-8],[15,-11],[3,-4],[1,-7],[-1,-12],[-2,-2],[-89,8],[4,-17],[12,-9],[23,-6],[-25,-4],[-7,-4],[-4,-7],[-3,-10],[-3,-15],[30,-16],[-5,-9],[-1,-9],[3,-9],[5,-8],[-21,-5],[-6,-4],[-9,-2],[-6,5],[-13,19],[-7,5],[-6,-4],[-4,-10],[-4,-12],[-2,-15],[-2,-3],[-7,0],[-4,-2],[-3,-4],[1,-7],[6,-14],[6,-6],[29,-4],[14,-6],[26,-20],[25,-29],[-1,-3],[-3,-7],[-1,-2],[14,-32],[-10,-21],[-21,-12],[-59,-11],[-20,5],[-22,25],[-9,7],[-8,15],[-5,4],[-10,3],[-7,-9],[-4,-20],[-5,-15],[-19,7],[-22,-3],[-7,6],[-3,12],[0,7],[3,6],[2,12],[2,44],[-21,-10],[-2,1],[-1,2],[-2,1],[-1,-3],[-7,-18],[-9,-11],[-26,-14],[5,-13],[11,-22],[4,-14],[0,-7],[-1,-23],[-1,-5],[-5,-3],[-10,-1],[-8,4],[-5,9],[-5,11],[-7,11],[-14,15],[-8,4],[-9,3],[14,-16],[6,-11],[3,-12],[-3,-12],[-7,-12],[-14,-18],[4,-5],[9,-9],[3,-5],[3,-9],[3,-9],[4,-8],[6,-1],[4,2],[8,8],[5,3],[5,0],[13,-5],[-1,-11],[2,-7],[9,-12],[-21,-8],[-24,-4],[-6,2],[-4,-15],[-17,-6],[-32,0],[16,-21],[60,-15],[12,-27],[-24,-11],[-13,-3],[-11,4],[-10,11],[-5,4],[-5,1],[-5,-3],[-7,-12],[-5,-2],[8,-8],[-8,-12],[-10,-2],[-8,7],[-7,14],[-4,3],[-5,-5],[-11,-17],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[1,-11],[-1,-3],[-11,-4],[-12,1],[-10,9],[-7,20],[0,8],[1,10],[1,9],[-3,7],[-23,17],[2,-8],[6,-13],[2,-4],[-1,-9],[-2,-8],[-4,-7],[-4,-3],[-7,-1],[-9,6],[-7,9],[-6,10],[-9,-34],[11,-10],[11,-6],[5,-7],[1,-22],[4,-11],[-7,-4],[-13,-4],[-7,-4],[-5,-7],[-1,-7],[2,-6],[7,-4],[0,-18],[10,-12],[27,-15],[4,-1],[3,-3],[0,-6],[1,-7],[1,-5],[5,-5],[18,-7],[-3,-7],[-3,-16],[-2,-4],[-51,-10],[-7,-5],[-4,-16],[8,-34],[-4,-19],[-8,-7],[-9,-3],[-19,1],[9,-17],[29,-15],[19,-20],[6,-2],[14,-1],[7,-3],[21,-15],[-15,-17],[-39,-19],[-17,0],[-9,-3],[-4,-3],[-5,-13],[-4,-6],[-8,-4],[-17,4],[-8,-5],[5,-20],[1,-10],[0,-12],[68,14],[2,-3],[3,-4],[3,-3],[4,0],[26,12],[7,-1],[22,-18],[13,5],[27,29],[29,23],[3,5],[4,13],[3,4],[15,9],[-3,-12],[-12,-28],[10,-6],[35,-1],[-1,5],[0,9],[-1,4],[7,-3],[5,-5],[10,-14],[-3,-5],[-1,-5],[0,-6],[2,-6],[-11,-11],[-56,-36],[-12,-4],[-12,4],[-11,9],[-5,1],[-5,-4],[-11,-15],[-12,-10],[-6,0],[-5,2],[-4,0],[-4,-9],[-3,-6],[-6,-6],[-12,-6],[-25,-6],[-3,-5],[0,-10],[3,-11],[2,-8],[11,-9],[12,-3],[59,14],[17,-2],[11,1],[5,-2],[24,-23],[-6,-10],[-22,-22],[-28,-15],[-8,-10],[-7,-8],[-30,-5],[-2,-5],[0,-9],[2,-9],[3,-5],[5,-3],[15,-4],[-2,-20],[5,-7],[17,2],[5,-1],[3,-4],[3,-5],[5,-5],[4,-1],[14,2],[68,-23],[9,0],[16,8],[15,3],[3,-1],[3,-5],[2,-11],[2,-7],[14,-24],[3,-4],[13,-9],[4,1],[3,2],[6,2],[8,0],[26,-11],[-2,9],[-4,7],[-9,11],[11,0],[28,-24],[52,-30],[15,-1],[-2,12],[-4,7],[-23,17],[-12,13],[13,0],[24,-6],[13,2],[-22,24],[-46,25],[-23,18],[13,5],[28,-9],[9,10],[-8,8],[-9,6],[-8,7],[-6,13],[8,2],[25,-9],[-1,15],[4,9],[15,9],[24,23],[7,2],[16,0],[80,21],[80,22],[127,-3],[4,-8],[-4,-15],[-9,-22],[-5,-5],[-9,-1],[-7,3],[-39,26],[-16,6],[-16,1],[-16,-6],[-10,-9],[-28,-40],[-10,-5],[-55,-1],[-10,-5],[-11,-8],[-6,-6],[-4,-7],[-9,-16],[-4,-12],[1,-7],[4,-6],[7,-5],[-5,-4],[-4,-2],[-10,2],[10,-24],[123,-33],[23,-16],[21,-23],[-18,-11],[-45,24],[-21,2],[7,-14],[28,-25],[-6,-11],[-15,-3],[-4,-12],[20,-7],[-11,-6],[-57,-9],[-44,11],[-6,0],[-16,-9],[-4,-6],[1,-9],[5,-9],[4,-5],[5,-2],[12,0],[50,-20],[85,-4],[4,-3],[0,-10],[-7,-14],[-10,-15],[-19,-22],[11,-16],[14,-6],[29,4],[7,6],[6,7],[6,3],[8,-7],[6,-10],[17,-37],[0,-7],[-2,-12],[-1,-13],[4,-13],[12,-18],[7,-8],[7,-4],[46,19],[14,-3],[15,-9],[11,-12],[9,-19],[7,-28],[10,-15],[33,3],[12,-16],[1,-13],[-2,-25],[2,-15],[2,-15],[1,-15],[0,-15],[-3,-16],[-2,-8],[-5,-12],[-2,-7],[-2,-7],[0,-5],[-1,-6],[-5,-14],[-2,-5],[-2,-4],[-11,-12],[-3,-5],[-3,-8],[57,-28],[3,-4],[5,-14],[4,-6],[-4,-2],[-3,-4],[-3,-5],[-2,-7],[8,-7],[9,-4],[18,0],[8,-3],[27,-29],[18,-12],[6,-11],[5,-19],[6,-11],[18,-26],[4,-12],[-4,-14],[-10,-11],[-27,-25],[-3,1],[-7,16],[-5,4],[-12,4],[-19,2],[-4,3],[-8,10],[-4,4],[-6,0],[-16,-3],[-16,5],[-5,-2],[4,-13],[5,-7],[11,-14],[-7,-9],[-17,-4],[-8,-4],[2,-8],[3,-5],[3,-3],[1,-3],[0,-9],[-2,-23],[1,-8],[8,-6],[49,-1],[9,-3],[6,-9],[4,-19],[0,-16],[-5,-13],[-9,-11],[11,-10],[15,3],[43,29],[112,-1],[17,5],[7,-1],[9,-5],[6,-9],[11,-26],[-21,-17],[-70,-17],[9,-8],[6,-10],[1,-12],[-9,-15],[-9,-7],[-42,-18],[-12,0],[-35,10],[-33,-2],[3,-8],[0,-7],[-2,-7],[-4,-6],[28,-8],[9,-5],[-3,-8],[-1,-17],[-2,-7],[-4,-7],[-1,-8],[0,-8],[3,-10],[8,-11],[10,-2],[19,4],[30,-1],[10,6],[3,5],[7,17],[5,6],[5,5],[5,2],[31,5],[70,-8],[7,-9],[5,-14],[-2,-22],[-4,-17],[-7,-17],[-8,-12],[-10,-4],[6,-11],[4,-3],[21,7],[8,0],[15,-3],[-2,-14],[-9,-16],[2,-10],[6,-5],[20,-3],[27,-13],[13,-11],[10,-16],[3,-23],[-12,-8],[-71,9],[-15,-3],[10,-16],[11,-6],[25,-4],[28,-11],[13,-12],[11,-19],[-16,-17],[-16,0],[-70,31],[-19,3],[-16,-8],[10,-6],[5,-4],[8,-15],[4,-3],[12,-2],[41,-24],[-7,-2],[-19,-14],[-31,-14],[-15,-1],[-46,12],[4,-35],[-15,-14],[-36,-2],[5,-32],[-1,-6],[-4,-5],[-25,-13],[-16,-3],[-51,6],[-4,-2],[-7,-8],[-5,0],[5,-12],[3,-6],[4,-2],[110,-5],[22,-8],[10,2],[76,58],[4,7],[1,3],[-1,4],[0,4],[2,3],[23,15],[6,1],[5,-1],[6,-4],[2,-5],[1,-7],[4,-8],[9,-10],[22,-9],[10,-8],[-4,-2],[-3,-3],[-7,-7],[5,-13],[7,-3],[15,4],[17,-2],[17,-9],[-2,-8],[-5,-5],[-9,-7],[5,-10],[9,-9],[4,-10],[-8,-12],[-8,-5],[-9,0],[-27,10],[-25,19],[-4,4],[-7,13],[-3,2],[-18,-6],[3,-6],[4,-15],[2,-6],[21,-20],[-13,-5],[4,-8],[5,-4],[12,-3],[-11,-8],[-2,-4],[-3,-9],[-2,-2],[-64,-3],[-49,12],[-77,-8],[-21,-13],[-11,-4],[-77,-7],[-76,-6],[12,-24],[28,-16],[51,-13],[-6,-12],[-8,-5],[-17,-8],[-35,-28],[11,-20],[16,-2],[33,14],[63,12],[49,25],[16,2],[69,-11],[14,-8],[25,-33],[26,-19],[7,-2],[5,9],[-1,15],[-7,13],[-4,12],[5,12],[16,10],[17,2],[35,-4],[16,4],[33,22],[16,7],[7,-8],[4,-18],[1,-22],[-3,-17],[-7,-8],[-31,-8],[-19,-10],[-20,-5],[-15,5],[-4,-2],[-18,-22],[16,-3],[32,6],[16,-1],[26,-10],[17,-16],[5,-6],[2,-8],[0,-10],[-2,-8],[0,-8],[4,-8],[-5,-7],[-5,-4],[-4,0],[-18,8],[-12,3],[-13,-3],[-38,-23],[9,-7],[76,-4],[10,-6],[5,-13],[-1,-13],[-11,-10],[-40,-11],[-88,6],[-90,28],[2,-13],[7,-8],[16,-9],[3,-5],[-2,-5],[-5,-3],[-3,-3],[-20,-8],[10,-14],[10,-7],[10,0],[12,6],[13,-1],[7,-18],[9,-49],[-11,-8],[-46,4],[8,-15],[37,-12],[10,-10],[4,-8],[1,-6],[-4,-13],[1,-6],[5,-4],[17,-8],[5,2],[6,8],[4,9],[7,20],[5,10],[10,9],[39,3],[36,16],[38,2],[13,-3],[8,-16],[6,-23],[3,-21],[-1,-20],[-5,-22],[-9,-20],[-10,-17],[-6,-7],[-18,-8],[3,-6],[2,-5],[4,-4],[3,-1],[-4,-9],[-37,-46],[-3,-9],[5,-14],[15,6],[29,25],[4,7],[5,10],[6,8],[6,-2],[7,-7],[22,-14],[19,-20],[6,-2],[16,6],[8,7],[6,11],[3,12],[9,22],[21,41],[7,8],[6,3],[7,1],[7,-2],[12,-7],[4,-3],[1,-4],[0,-9],[1,-7],[1,-6],[3,-7],[8,-29],[-4,-19],[-22,-33],[-5,-11],[-4,-13],[-3,-14],[1,-15],[2,-10],[5,-13],[5,-11],[5,-6],[-14,-24],[-19,-12],[-55,-14],[-24,0],[-20,12],[-5,44],[-8,9],[-28,17],[-8,-7],[-3,-16],[-8,-66],[-5,-22],[-5,-12],[-9,-4],[-10,0],[-9,2],[-9,6],[2,13],[2,8],[1,9],[-1,15],[-16,40],[-5,-4],[-2,-13],[-2,-15],[-2,-12],[-4,-9],[-5,-7],[-5,-4],[-6,-2],[-26,3],[-13,6],[-10,11],[-14,27],[-11,17],[-2,11],[3,9],[6,5],[-14,2],[-15,-3],[-10,0],[-7,6],[-14,21],[-3,-3],[-24,-7],[-127,42],[-4,0],[-3,-4],[-3,-5],[-3,-5],[-5,-1],[21,-26],[8,-6],[88,-40],[5,-20],[-12,10],[-27,13],[-52,13],[-13,-4],[51,-17],[30,-26],[21,-13],[18,-16],[8,-23],[-13,-1],[-28,11],[-55,6],[-13,-4],[2,-14],[2,-8],[3,-4],[7,-3],[19,-2],[24,-16],[4,-5],[0,-11],[-2,-12],[1,-11],[8,-11],[13,-5],[13,0],[9,4],[4,5],[7,18],[4,6],[5,4],[5,2],[6,0],[41,-10],[8,-10],[5,-9],[4,-5],[5,-2],[17,8],[5,1],[7,0],[89,-32],[-13,-26],[-16,-15],[-35,-16],[1,-3],[4,-9],[1,-4],[-38,-22],[44,-6],[15,7],[19,19],[7,3],[15,3],[6,-3],[8,-10],[-12,-15],[-10,-18],[-18,-42],[-2,-6],[-5,-21],[-2,-7],[-16,-26],[-5,-7],[-6,-4],[-6,-1],[-56,4],[-33,18],[-3,4],[-2,5],[-1,7],[-1,6],[-4,5],[-13,5],[-29,-12],[-29,6],[-13,-2],[-27,-12],[12,-14],[46,-23],[-19,-14],[-58,-22],[23,-7],[79,16],[12,-3],[12,-8],[7,-13],[8,-6],[74,1],[8,-6],[0,-17],[-9,-20],[-13,-16],[-30,-27],[-45,-23],[-22,-4],[1,6],[2,6],[2,3],[3,3],[-6,2],[-10,-6],[-5,-1],[-6,4],[-4,8],[-1,10],[4,12],[-23,-4],[-7,-5],[-19,-30],[-7,-6],[-16,-2],[-30,7],[-15,-1],[7,-8],[9,-5],[9,-7],[5,-13],[-3,0],[-4,-4],[-2,-1],[4,-10],[8,-2],[59,19],[43,-19],[59,-1],[58,18],[59,33],[29,5],[17,-2],[11,-9],[3,-23],[-11,-19],[-28,-20],[-28,-11],[-4,-4],[-5,-8],[-3,-2],[-4,-1],[-3,-3],[-8,-8],[6,-1],[5,-4],[5,-5],[4,-6],[-20,-29],[-25,-13],[-132,-14],[-14,4],[-13,22],[-6,1],[-7,-3],[-5,-2],[-113,25],[-26,19],[-44,17],[9,-33],[15,-20],[19,-16],[20,-27],[7,-3],[13,-3],[9,-5],[7,-7],[14,-22],[6,-13],[4,-3],[7,-5],[3,-3],[3,-4],[2,-9],[3,-4],[3,-1],[8,0],[5,-2],[3,-3],[2,-6],[-3,-34],[-9,-24],[-13,-18],[-72,-60],[-93,-27],[-17,0],[-13,12],[-5,16],[1,15],[2,15],[-1,16],[-4,14],[-3,17],[1,15],[5,13],[-6,6],[-4,1],[-11,0],[-7,5],[-3,10],[2,10],[5,9],[-7,15],[-10,0],[-20,-15],[-10,-3],[-11,2],[-65,32],[-6,0],[-3,-2],[-7,-6],[-3,-2],[-17,2],[-5,-2],[0,-3],[-8,-28],[40,-40],[12,-20],[10,-27],[2,-15],[-4,-9],[-7,-4],[-22,-3],[-62,13],[-32,18],[-15,-2],[-9,-27],[6,-3],[-7,-9],[-9,-4],[-105,-21],[-18,-12],[9,-5],[16,-1],[9,-2],[12,-11],[6,-2],[77,8],[77,8],[18,-5],[10,-5],[49,-57],[7,-16],[-73,-17],[-24,1],[-22,8],[-11,1],[-90,-19],[-90,-19],[-13,-7],[-12,-1],[-7,-2],[-23,-23],[-12,-7],[-6,-6],[-4,-9],[6,-6],[7,-2],[5,-3],[3,-10],[3,-7],[5,-1],[31,17],[6,1],[24,-9],[97,15],[94,-8],[94,-8],[-6,-20],[-15,-14],[-129,-56],[-128,-56],[-128,-56],[-129,-56],[-70,-2],[-7,-3],[-19,-22],[-6,-6],[-106,-42],[-106,-42],[-21,-15],[-131,-20],[-131,-21],[-131,-20],[-131,-20],[-7,-4],[-5,-7],[13,-9],[5,-5],[8,-12],[4,-5],[6,-2],[19,3],[-106,-18],[-106,-19],[-106,-18],[-106,-19],[-3,2],[-4,5],[-4,2],[-9,0],[-16,-6],[-31,-19],[-23,-5],[-15,-10],[-7,-1],[-13,3],[-49,-20],[-14,-12],[-8,-3],[13,-11],[17,-3],[61,13],[15,-3],[15,-8],[-85,-17],[15,-13],[50,-1],[-10,-6],[-35,-1],[-22,-8],[-11,-10],[-6,-14],[11,-17],[26,-4],[44,6],[-9,-6],[-29,-5],[-18,-10],[-18,-15],[32,7],[10,-3],[-8,-11],[-12,-4],[-88,9],[-69,-20],[14,-5],[45,3],[-7,-7],[-8,-2],[-22,-3],[-24,-8],[-52,9],[-2,-2],[-1,-7],[-2,-2],[-48,8],[-103,-7],[-103,-7],[-97,21],[-97,22],[-46,-9],[-86,19],[-4,-1],[-2,-4],[-2,-8],[-2,-5],[-3,-2],[-4,-2],[-9,-2],[-24,13],[-122,11],[-121,12],[5,-11],[5,-6],[29,-3],[7,-6],[1,-13],[-60,14],[-28,1],[-104,25],[-105,25],[-104,26],[-14,0],[-3,-19],[-17,-4],[-78,25],[-15,0],[16,-11],[3,-5],[2,-12],[-3,-7],[-6,-5],[-15,-9],[-37,3],[-23,11],[-44,35],[-24,7],[-44,-11],[-22,0],[-34,25],[-12,5],[-12,-2],[-11,-11],[-1,-4],[0,-5],[-1,-3],[-2,-3],[-36,-8],[1,-17],[4,-13],[6,-13],[6,-14],[-12,3],[-49,39],[-53,25],[-41,-1],[-14,5],[-14,12],[-25,32],[4,-10],[16,-28],[-8,-7],[-27,0],[5,-14],[5,-10],[14,-18],[-20,10],[-10,8],[-8,12],[-9,16],[-28,37],[-1,-17],[6,-12],[17,-14],[30,-42],[-4,-5],[-1,-6],[0,-16],[-2,-5],[-3,-3],[-7,-5],[12,-19],[94,-57],[41,-59],[15,-13],[33,-15],[8,-8],[4,-11],[-2,-12],[-9,-2],[-30,11],[-4,-1],[-3,-2],[-3,-3],[-1,-4],[3,-5],[39,-30],[30,4],[8,-1],[69,-49],[42,-59],[16,-13],[49,-27],[46,-3],[14,-8],[-11,-9],[26,-29],[9,-7],[26,-7],[7,-5],[19,-26],[9,-8],[2,-4],[3,-9],[3,-6],[3,-3],[19,-7],[6,3],[20,28],[16,16],[15,9],[48,12],[131,-16],[131,-17],[131,-16],[131,-16],[131,-17],[-21,-15],[7,-11],[4,-10],[-1,-11],[-5,-15],[-7,-11],[-66,-60],[-13,-17],[-5,-11],[-3,-5],[-4,-2],[-5,0],[-3,-2],[-7,-8],[-7,-7],[-52,-36],[-9,-12],[-5,-3],[-9,-3],[-4,-4],[18,-8],[-9,-9],[-4,-2],[-6,0],[-1,4],[-1,5],[-3,3],[-7,0],[-23,-16],[-90,-31],[-89,-31],[23,-3],[47,13],[24,0],[-34,-14],[-116,-9],[-117,-10],[-19,-8],[-10,-1],[2,-2],[4,-8],[-5,-11],[-7,-6],[-8,-1],[-7,3],[-4,4],[-2,5],[-1,5],[-3,7],[-3,5],[-8,9],[-19,13],[-137,26],[-137,25],[-137,26],[-137,25],[-138,25],[-20,-9],[-7,-2],[-126,21],[-126,20],[-126,21],[-8,-1],[-39,-18],[-30,-1],[-76,19],[-75,20],[-16,-2],[-57,11],[-44,27],[-53,17],[-53,31],[5,-11],[9,-9],[17,-12],[-13,-23],[-16,-16],[-110,-37],[-67,12],[-75,-5],[15,-12],[129,-37],[130,-37],[130,-36],[130,-37],[129,-37],[130,-37],[130,-36],[129,-37],[130,-37],[13,-16],[1,-32],[2,-6],[6,-8],[1,-5],[-2,-15],[0,-7],[2,-10],[0,-6],[-1,-5],[-4,-6],[-4,-5],[-83,-48],[-11,-12],[-6,-3],[-9,-3],[-117,-11],[-118,-11],[-118,-11],[-117,-11],[-118,-11],[-118,-11],[-117,45],[-117,45],[-117,44],[-117,45],[-117,44],[-16,1],[-7,2],[-111,90],[-110,89],[-110,90],[-16,19],[-9,7],[-9,0],[-3,-1],[-4,-3],[-2,-5],[1,-8],[3,-9],[8,-14],[3,-7],[9,-37],[6,-15],[8,-12],[9,-7],[9,-4],[20,-2],[-3,-4],[-8,-11],[0,-9],[2,-5],[59,-43],[20,-2],[12,-11],[13,-8],[10,-16],[44,-40],[2,-5],[3,-14],[3,-3],[13,-4],[-11,-11],[-17,-8],[-16,0],[-11,11],[2,2],[4,6],[3,2],[-11,16],[-12,15],[-12,11],[-13,4],[-25,-8],[-12,0],[-12,7],[4,8],[5,5],[12,4],[-6,8],[-6,2],[-13,-2],[-57,14],[-6,-4],[-3,-4],[-6,-8],[-1,-4],[0,-8],[1,-7],[3,-4],[4,-2],[-10,-13],[-13,-3],[-26,3],[8,-15],[15,-34],[23,-35],[50,-41],[28,-39],[10,-11],[42,-35],[93,-51],[53,-10],[26,7],[13,-2],[6,-16],[-12,-10],[0,-11],[8,-8],[17,-7],[11,-7],[5,-1],[20,0],[90,-29],[89,-28],[7,-9],[3,-6],[5,-3],[11,-3],[55,-39],[12,-4],[-12,-9],[12,-12],[6,-4],[6,0],[18,11],[7,2],[47,-6],[-32,-17],[-15,-13],[-12,-26],[5,-16],[37,-73],[14,-13],[87,-32],[87,-32],[6,2],[9,6],[7,8],[5,10],[2,16],[-4,11],[-29,26],[-7,8],[-4,10],[0,13],[2,41],[2,12],[12,18],[16,9],[136,-4],[135,-4],[135,-4],[135,-4],[136,-5],[135,-4],[135,-4],[136,-4],[57,-38],[30,-8],[11,-6],[13,-13],[5,-1],[13,-6],[9,-17],[7,-19],[11,-16],[4,1],[5,2],[4,-1],[0,-13],[-4,-16],[-7,-12],[-14,-20],[-6,-15],[-11,-35],[-7,-16],[-14,-21],[-31,-22],[-44,-43],[-59,-35],[-109,-23],[-110,-22],[-126,4],[-126,4],[-126,3],[-126,4],[-126,4],[12,-23],[118,-26],[118,-25],[118,-26],[21,-14],[6,-2],[104,17],[33,-7],[21,-10],[11,-2],[129,20],[129,20],[128,19],[8,-5],[-2,-11],[-5,-14],[-1,-13],[6,-18],[6,-10],[16,-17],[6,-9],[11,-21],[5,-8],[4,0],[4,3],[7,8],[4,2],[4,1],[13,-2],[3,-2],[2,-3],[-11,-12],[6,-6],[18,4],[8,-1],[82,-56],[3,-5],[6,-14],[4,-4],[5,-3],[4,-5],[9,-13],[3,-3],[11,-4],[4,-18],[-6,-13],[-10,-9],[-17,-8],[-35,-10],[-7,-5],[-5,-10],[-6,-15],[17,-15],[50,-24],[22,-1],[6,-4],[6,-6],[28,-11],[32,-2],[28,-17],[22,1],[-10,-12],[-15,-1],[-42,13],[-44,-17],[-104,-11],[-13,-12],[33,-2],[3,-2],[3,-4],[5,-11],[4,-5],[4,-3],[8,-4],[16,-3],[33,9],[38,-1],[26,11],[3,-1],[11,-11],[4,0],[6,3],[4,0],[17,-10],[7,1],[8,4],[8,1],[18,-20],[16,7],[16,13],[15,7],[14,0],[7,2],[32,21],[56,7],[32,14],[16,2],[16,-5],[16,-13],[11,-6],[24,3],[11,-2],[13,-8],[93,-24],[94,-24],[93,-23],[50,4],[-4,18],[-3,7],[-4,5],[13,47],[7,20],[11,16],[15,12],[15,4],[14,-3],[23,-10],[88,20],[89,19],[9,-1],[16,-8],[6,0],[68,31],[44,36],[16,0],[26,-13],[9,-1],[33,9],[108,-28],[9,-6],[7,-10],[3,-14],[-1,-9],[-6,-15],[-1,-9],[1,-10],[1,-8],[1,-8],[-4,-9],[2,-2],[18,-8],[35,-29],[12,-4],[34,2],[-6,-12],[-2,-10],[3,-8],[6,-10],[8,-6],[7,-3],[55,-6],[26,6],[71,-16],[71,-16],[16,2],[45,24],[76,14],[64,-9],[40,-16],[20,0],[18,-13],[31,-7],[-9,-8],[-58,-23],[-34,1],[14,-13],[126,-34],[127,-34],[127,-34],[127,-34],[127,-34],[127,-34],[127,-34],[69,-1],[70,0],[15,-10],[8,-2],[121,-3],[121,-3],[121,-2],[121,-3],[120,-3],[37,-17],[20,-3],[6,-5],[2,-4],[6,-14],[3,-6],[5,-3],[4,-1],[9,1],[-8,-15],[-13,-9],[-13,-4],[-109,-5],[-108,-4],[-109,-5],[-22,9],[46,31],[-27,10],[-28,-5],[-68,-29],[-83,-5],[-14,5],[67,40],[-9,12],[-17,-5],[-43,-33],[-29,-13],[-72,-3],[-71,-3],[13,12],[42,23],[-12,10],[-16,2],[-45,-11],[-56,-34],[-90,-14],[-32,10],[-76,-6],[-4,-2],[-2,-3],[0,-6],[2,-19],[1,-5],[2,-2],[5,-2],[15,-4],[99,-4],[99,-3],[-15,-11],[13,-3],[46,13],[18,-2],[15,4],[107,3],[107,3],[107,2],[-10,-13],[-8,-16],[9,-4],[9,-1],[-11,-14],[-17,-6],[-123,-2],[-124,-2],[-124,-2],[-123,-2],[-124,-2],[-126,-35],[77,-6],[77,-7],[20,-10],[-6,-11],[-8,-6],[-17,-7],[-50,-31],[-6,-10],[-12,-32],[-5,-10],[-16,-17],[8,-11],[46,3],[-7,-10],[-13,-5],[-24,-3],[10,-6],[35,3],[-14,-11],[-46,-17],[14,-11],[75,5],[76,5],[31,18],[39,4],[4,-2],[3,-3],[2,-5],[2,-5],[2,-5],[2,-2],[5,-2],[2,-2],[2,-5],[1,-3],[-1,-3],[-2,-4],[-3,-8],[0,-6],[4,-4],[12,-4],[4,-3],[1,-3],[-3,-12],[3,-5],[5,-2],[85,15],[86,15],[-9,-8],[-10,-6],[10,-15],[14,-4],[83,32],[83,32],[70,-11],[71,-12],[13,6],[25,22],[-11,15],[13,7],[41,3],[2,-13],[7,-4],[75,7],[74,7],[111,-18],[126,25],[127,25],[126,25],[17,-4],[-12,-18],[81,16],[-30,-26],[-85,-39],[-85,-38],[-47,1],[-130,-35],[-66,-34],[-111,-18],[-111,-18],[8,-20],[10,-14],[65,-62],[-5,-16],[-3,-5],[-4,-2],[5,-3],[11,4],[5,0],[5,-4],[11,-11],[84,-62],[3,-3],[0,-5],[0,-5],[0,-6],[3,-6],[41,-48],[-18,-17],[-19,-7],[-40,-3],[8,-9],[12,-2],[55,5],[10,5],[14,15],[6,1],[5,-1],[43,-37],[11,-4],[5,2],[4,6],[7,16],[4,8],[4,5],[41,21],[6,10],[4,24],[4,6],[6,5],[5,2],[5,-2],[5,-5],[12,-24],[9,-12],[10,-3],[11,9],[-7,18],[10,8],[9,-3],[16,-21],[8,-17],[1,-18],[-7,-40],[-11,-28],[-20,-27],[-22,-20],[-17,-7],[-20,-2],[-44,-24],[-39,-34],[-63,-33],[7,-4],[8,1],[16,7],[55,6],[3,-4],[2,-10],[1,-11],[1,-6],[7,-2],[20,9],[45,9],[19,-2],[11,-17],[11,-3],[58,15],[-29,-21],[-30,-14],[44,-17],[15,1],[64,26],[17,1],[45,-24],[80,12],[79,13],[3,-4],[5,-12],[3,-3],[101,-1],[109,67],[110,67],[109,67],[109,67],[55,58],[126,52],[126,53],[126,52],[5,5],[7,9],[84,48],[17,16],[2,2],[0,3],[-1,10],[0,3],[3,4],[19,8],[2,-3],[0,-5],[4,-5],[14,-2],[27,16],[34,0],[17,-8],[15,-1],[4,-2],[1,-4],[0,-4],[3,-4],[6,-4],[46,-7],[14,5],[9,12],[-12,19],[13,8],[3,3],[2,8],[3,19],[3,5],[24,19],[7,4],[36,-1],[3,3],[5,12],[3,4],[16,10],[73,7],[72,7],[18,7],[-7,6],[-26,0],[103,28],[-13,5],[-80,-2],[-13,6],[110,7],[30,-9],[135,25],[8,3],[3,3],[5,7],[5,2],[4,1],[81,-10],[81,-11],[126,29],[127,29],[134,31],[135,31],[8,-1],[49,-20],[121,12],[121,12],[121,13],[121,12],[121,12],[42,-16],[2,1],[4,10],[2,4],[3,0],[83,-18],[127,3],[14,-4],[10,-15],[-1,-3],[-3,-7],[-2,-2],[29,0],[-45,-22],[-44,-8],[6,-10],[10,-6],[10,-3],[8,0],[18,4],[9,1],[19,-15],[11,-2],[11,4],[11,8],[25,29],[9,6],[108,25],[107,25],[14,-5],[-6,-16],[-1,-6],[2,-11],[4,-9],[5,-9],[5,-6],[17,-13],[23,-28],[11,-7],[-4,-4],[-3,-7],[-2,-8],[0,-9],[20,10],[7,0],[-22,-17],[-6,-10],[-4,-13],[-3,-10],[-4,-9],[-59,-48],[-107,-59],[15,-15],[50,-24],[-3,-10],[-4,-5],[-11,-4],[129,-31],[8,2],[-5,7],[27,29],[31,24],[32,4],[39,-46],[16,-3],[137,44],[136,43],[65,38],[29,36],[17,6],[18,-2],[17,-9],[-2,-7],[-2,-6],[-3,-4],[-3,-4],[-2,-6],[0,-17],[0,-7],[-5,-8],[-8,-7],[-14,-8],[19,-8],[20,6],[92,54],[91,54],[2,6],[1,12],[3,5],[19,17],[29,10],[3,6],[-2,11],[-4,10],[-3,5],[-5,5],[-16,9],[6,10],[12,13],[6,9],[-13,17],[-2,5],[0,9],[3,9],[6,15],[7,9],[10,4],[37,7],[10,4],[15,18],[30,6],[78,38],[79,38],[-13,8],[16,20],[5,4],[61,10],[12,5],[12,17],[-7,13],[-4,4],[-5,2],[10,10],[12,24],[9,10],[1,3],[0,5],[0,5],[0,4],[3,2],[2,1],[11,1],[3,1],[1,3],[1,10],[1,4],[1,2],[9,5],[38,35],[131,67],[4,4],[11,19],[5,4],[46,14],[-9,-7],[-10,-4],[9,-8],[96,21],[48,-9],[71,29],[72,29],[9,14],[3,3],[39,13],[15,-1],[7,1],[20,14],[85,27],[86,27],[31,0],[14,8],[-14,4],[2,8],[3,5],[3,2],[4,-2],[6,-4],[58,-25],[43,0],[107,-24],[107,-25],[-4,-6],[-5,-3],[-9,-2],[60,-10],[27,-23],[10,-5],[30,-7],[5,1],[5,2],[15,15],[4,2],[41,2],[19,13],[13,26],[13,7],[63,-18],[-2,20],[12,12],[26,10],[118,8],[6,6],[4,11],[4,5],[28,10],[15,16],[10,5],[3,3],[1,11],[0,4],[2,0],[1,0],[2,1],[11,8],[70,27],[71,27],[-70,28],[30,19],[131,0],[130,0],[131,0],[131,0],[83,36],[-69,18],[-11,16],[14,0],[80,-21],[16,1],[38,-6],[125,31],[125,32],[106,-7],[106,-6],[106,-6],[106,-7],[33,-12],[10,-1],[-10,19],[-20,6],[-36,0],[-102,44],[-101,45],[11,7],[125,2],[126,3],[125,2],[3,2],[5,7],[3,3],[4,0],[42,1],[-20,17],[-20,11],[13,17],[16,7],[136,4],[136,5],[136,4],[136,5],[136,4],[136,5],[136,4],[7,2],[22,13],[9,3],[135,3],[135,2],[135,2],[134,3],[13,3],[28,30],[11,6],[108,5],[107,5],[108,6],[23,11],[-2,3],[-2,6],[-1,3],[20,10],[44,-2],[22,8],[-112,17],[-112,17],[-112,17],[-7,6],[-7,3],[-8,-1],[-16,-6],[-15,-2],[-44,6],[-31,-4],[-17,3],[-11,11],[5,8],[3,5],[1,5],[-1,10],[0,9],[2,7],[3,8],[-132,-39],[-137,9],[-138,10],[-138,9],[-137,10],[-138,9],[-137,10],[-138,10],[-137,9],[-138,10],[-138,9],[-137,10],[-138,9],[6,15],[103,56],[103,56],[103,56],[-13,7],[-12,0],[-44,-27],[-11,-3],[-6,7],[0,5],[4,13],[-62,8],[-130,-14],[-4,7],[-4,16],[29,18],[123,43],[18,20],[-13,12],[-57,-8],[3,6],[4,5],[4,4],[5,3],[-13,18],[-15,5],[-16,-1],[-45,-17],[-3,-3],[-4,-9],[-3,-4],[-5,-2],[-17,-6],[-3,0],[-1,4],[-1,8],[-2,5],[-4,1],[-122,-20],[-123,-20],[-123,-20],[-122,-20],[-123,-20],[-130,21],[-129,21],[-129,21],[8,8],[5,3],[5,1],[-14,16],[-16,8],[-110,27],[-111,27],[-111,26],[-110,27],[-111,27],[-26,21],[-19,37],[-2,13],[-2,28],[-5,29],[1,14],[4,12],[6,12],[2,4],[1,10],[1,4],[18,49],[5,11],[7,9],[2,3],[2,11],[2,5],[57,75],[5,11],[2,6],[1,6],[2,6],[2,3],[24,15],[21,1],[3,1],[2,3],[3,13],[1,2],[3,-1],[7,-2],[42,-3],[7,2],[7,5],[-4,6],[-4,11],[-3,13],[0,11],[4,5],[6,3],[23,5],[3,5],[4,38],[3,11],[14,26],[8,19],[8,18],[12,10],[72,13],[109,-18],[18,4],[25,-4],[2,1],[3,3],[5,11],[4,3],[-53,17],[1,18],[-10,7],[-22,2],[5,10],[1,11],[-3,10],[-7,5],[18,34],[6,7],[24,7],[8,4],[14,14],[13,18],[11,10],[3,3],[3,9],[4,6],[8,9],[14,10],[52,14],[13,8],[31,6],[31,18],[7,6],[33,40],[6,3],[15,0],[6,4],[8,7],[8,3],[9,0],[8,-3],[6,0],[21,12],[17,4],[48,-1],[14,5],[47,38],[126,37],[106,-26],[56,12],[6,4],[4,10],[3,35],[5,10],[28,33],[15,11],[93,25],[93,25],[93,25],[9,-1],[3,3],[2,7],[2,9],[2,6],[4,3],[13,5],[7,6],[24,24],[14,5],[2,4],[3,14],[3,4],[41,19],[21,19],[137,35],[9,4],[19,16],[-1,3],[-1,7],[-1,3],[3,3],[6,11],[3,3],[3,1],[8,-1],[4,1],[17,9],[7,7],[8,12],[5,2],[50,8],[83,43],[96,25],[97,25],[96,25],[62,0],[72,32],[32,7],[66,-5],[26,12],[9,8],[1,2],[1,3],[0,8],[1,3],[7,7],[8,3],[46,-2],[9,3],[24,21],[29,8],[9,5],[23,21],[16,7],[32,7],[47,24],[112,23],[113,22],[113,23],[112,23],[32,14],[131,5],[131,6],[7,4],[8,9],[7,2],[8,0],[15,4],[72,-1],[33,10],[22,0],[8,3],[7,6],[10,18],[7,1],[43,-21],[4,1],[4,5],[6,11],[4,2],[4,1],[63,-36],[1,12],[5,2],[53,-17],[14,1],[14,5],[22,17],[114,-25],[27,5],[26,15],[24,21],[13,7],[24,-2],[12,6],[12,11],[5,1],[7,-2],[12,-7],[6,0],[6,5],[-21,20],[-4,9],[1,13],[7,8],[59,18],[13,10],[13,5],[88,-23],[88,-23],[7,2],[13,10],[6,1],[22,-7],[57,-4],[4,2],[7,6],[3,1],[27,-10],[1,14],[0,13],[64,-11],[11,4],[9,14],[-26,22],[11,6],[93,-23],[8,0],[13,9],[8,2],[6,-1],[19,-9],[14,0],[44,12],[-71,26],[-7,5],[-6,18],[-6,11],[-11,17],[-7,6],[-7,5],[-20,7],[-11,12],[-6,3],[-6,2],[-9,5],[-6,8],[2,12],[6,2],[17,-3],[6,1],[3,3],[3,3],[5,8],[2,6],[1,14],[2,6],[6,6],[8,1],[15,-5],[15,7],[2,25],[1,30],[7,18],[7,1],[6,-3],[6,-1],[7,5],[6,8],[7,7],[14,9],[3,0],[10,-5],[4,-1],[3,3],[6,11],[6,6],[6,4],[14,6],[-5,8],[1,13],[5,11],[6,7],[14,8],[6,6],[6,10],[4,6],[23,12],[17,2],[8,4],[7,9],[-6,5],[-4,6],[-4,9],[-3,10],[-3,7],[-3,2],[-4,1],[-4,3],[-2,3],[-2,6],[-1,3],[-8,10],[-2,5],[0,12],[3,3],[9,-1],[31,10],[29,18],[9,1],[9,-5],[5,5],[2,20],[3,19],[11,3],[-3,9],[-3,8],[-4,6],[-4,3],[2,3],[4,8],[2,3],[-7,26],[12,20],[18,13],[14,6],[119,9],[119,9],[93,-21],[93,-21],[49,-31],[31,0],[7,4],[0,13],[1,1],[4,0],[4,1],[6,-1],[102,23],[-24,13],[-11,12],[-4,18],[1,4],[2,4],[4,5],[1,6],[0,15],[1,6],[4,3],[18,2],[4,4],[1,3],[-1,4],[2,4],[2,3],[11,8],[5,1],[2,2],[2,4],[2,11],[1,4],[6,3],[20,-2],[4,2],[9,10],[5,4],[35,13],[10,9],[16,26],[5,7],[6,5],[23,9],[10,-1],[14,7],[2,3],[0,5],[-1,13],[1,4],[23,15],[10,12],[10,18],[-15,9],[-50,0],[-9,2],[-7,6],[-6,10],[-6,13],[-6,6],[-7,-3],[-15,-10],[-123,-44],[-124,-43],[-136,6],[-6,5],[-12,17],[-6,4],[-55,0],[-16,6],[-10,12],[12,4],[21,-11],[12,-2],[55,27],[79,10],[12,5],[12,12],[-14,15],[-15,8],[-112,24],[-12,-6],[-7,-2],[-26,5],[-18,11],[-7,6],[-4,11],[-1,20],[1,19],[3,16],[5,15],[6,12],[-4,15],[1,11],[4,9],[29,33],[129,65],[5,8],[-1,15],[-5,15],[-4,15],[4,12],[23,26],[7,7],[64,22],[20,13],[7,2],[32,-9],[48,7],[4,4],[7,12],[3,3],[7,2],[54,-5],[28,6],[76,-24],[28,-22],[14,-23],[5,-4],[4,3],[13,17],[4,0],[7,-8],[5,2],[8,8],[9,5],[9,1],[8,-1],[19,-7],[10,-1],[13,5],[9,-3],[5,1],[17,9],[6,4],[-7,8],[-14,9],[-6,7],[9,14],[6,16],[6,12],[12,5],[-38,46],[-39,37],[-10,6],[-4,5],[-1,7],[0,11],[-3,7],[-4,5],[-16,11],[-22,10],[-9,11],[8,6],[7,2],[40,-1],[58,-16],[32,-19],[30,-10],[38,-3],[6,-4],[15,-16],[16,-11],[8,-1],[15,8],[16,-2],[8,3],[17,12],[7,3],[23,1],[7,3],[8,6],[20,23],[8,6],[7,3],[8,1],[3,3],[5,10],[3,3],[5,1],[4,2],[3,5],[4,7],[2,7],[1,5],[1,4],[78,41],[12,0],[6,1],[17,14],[5,3],[7,-1],[19,-5],[6,2],[21,12],[96,29],[95,29],[15,-2],[11,3],[21,14],[5,5],[4,7],[2,10],[4,21],[3,10],[-4,0],[-12,4],[-7,9],[-1,2],[9,5],[3,3],[2,5],[3,11],[2,3],[12,6],[3,4],[2,5],[2,8],[1,7],[-1,2],[7,7],[2,9],[-2,6],[-7,1],[-24,-8],[-6,3],[6,6],[30,14],[2,3],[0,4],[-2,3],[-6,5],[6,8],[28,11],[7,8],[3,2],[23,9],[-6,8],[-6,0],[-6,-2],[-6,1],[3,7],[3,4],[17,8],[15,15],[2,4],[0,1],[-1,3],[0,3],[0,3],[1,2],[11,18],[3,8],[2,8],[-2,10],[-6,8],[2,8],[5,12],[20,30],[-11,16],[-17,7],[-80,-4],[-81,-4],[-62,30],[-65,15],[-46,26],[-6,7],[-44,76],[-10,26],[-4,33],[9,23],[15,16],[24,16],[40,4],[52,21],[20,1],[41,-10],[-11,-17],[-5,-14],[1,-16],[8,-22],[9,-10],[12,-4],[66,-4],[21,-9],[21,-17],[41,-49],[10,-7],[21,-9],[33,-5],[23,4],[22,12],[22,18],[-6,16],[-5,12],[-23,31],[-3,11],[2,12],[6,16],[14,22],[16,16],[69,35],[69,34],[18,15],[13,22],[-12,20],[-17,12],[-34,15],[-38,4],[-20,8],[-7,17],[5,9],[10,8],[36,18],[54,12],[19,-5],[17,-15],[-11,-25],[1,-24],[11,-21],[15,-12],[14,-6],[106,-3],[96,-51],[14,-13],[12,-18],[6,-13],[1,-10],[-4,-10],[-8,-10],[-10,-8],[-18,-22],[-2,-4],[-1,-8],[1,-8],[1,-7],[2,-6],[4,-5],[3,-1],[9,4],[7,1],[14,-6],[7,0],[16,4],[16,0],[8,-4],[21,-27],[-22,-35],[17,-12],[9,-8],[6,-11],[7,-33],[1,-9],[-3,-8],[-14,-19],[8,-2],[7,0],[14,3],[8,0],[13,-8],[38,-10],[5,0],[5,4],[3,8],[0,4],[-1,4],[-1,3],[2,5],[3,4],[6,6],[11,19],[4,5],[19,12],[13,13],[5,4],[6,0],[7,-3],[8,-8],[4,-9],[0,-13],[-5,-15],[76,-9],[8,3],[7,7],[7,5],[8,0],[16,-6],[6,3],[7,11],[5,13],[-3,11],[-7,6],[-24,12],[-7,7],[-7,9],[-4,11],[-1,14],[1,28],[3,11],[36,43],[13,6],[5,6],[2,14],[1,65],[-2,30],[-8,22],[-26,30],[-32,20],[-14,14],[-6,9],[-5,12],[-13,45],[-6,13],[14,17],[15,11],[101,24],[58,-4],[93,-39],[92,-40],[4,6],[9,46],[5,13],[34,46],[16,10],[16,7],[84,17],[94,-31],[6,-7],[22,-35],[3,-10],[-1,-13],[-3,-12],[-4,-7],[-6,-6],[-4,-6],[-16,-38],[-3,-10],[-4,-25],[-3,-7],[-4,-6],[-79,-41],[-6,-6],[-10,-16],[-6,-6],[10,-11],[5,-8],[1,-8],[-4,-10],[-5,-8],[-33,-35],[-12,-9],[-12,-3],[28,-28],[8,-4],[8,1],[15,10],[49,-8],[20,11],[63,-7],[4,1],[11,7],[3,-1],[9,-4],[23,5],[32,-9],[7,1],[14,11],[8,3],[110,-9],[24,6],[31,-6],[59,13],[11,-2],[48,-26],[1,15],[8,2],[18,-9],[39,-6],[-10,14],[-5,17],[2,11],[13,1],[13,-7],[38,-35],[7,-4],[3,-4],[2,-5],[1,-7],[-1,-6],[-1,-6],[0,-7],[0,-13],[2,-2],[17,-4],[6,-5],[9,-16],[5,-7],[6,-3],[16,-4],[6,1],[-7,21],[0,10],[2,10],[6,8],[6,2],[13,-5],[7,-1],[6,3],[4,9],[1,59],[4,13],[3,8],[6,1],[7,-3],[7,-5],[19,-25],[10,-8],[40,-2],[-2,14],[-4,13],[-1,10],[6,10],[8,4],[7,3],[15,1],[30,-10],[14,0],[14,16],[7,-18],[46,-48],[14,-8],[27,-5],[18,8],[6,0],[4,-6],[6,-23],[5,-12],[12,-16],[6,-5],[7,-2],[6,2],[13,8],[5,6],[10,20],[4,1],[12,-10],[7,-4],[6,-1],[6,1],[21,16],[6,3],[7,-1],[34,-15],[5,2],[5,6],[5,1],[20,-19],[6,0],[20,9],[6,6],[12,14],[7,4],[-6,26],[1,11],[3,12],[11,17],[12,14],[12,7],[14,0],[51,-27],[11,-10],[28,-35],[2,-10],[0,-16],[-4,-9],[-5,-5],[-8,-2],[6,-33],[-7,-24],[-13,-23],[-10,-24],[15,-6],[6,-4],[6,-9],[5,-4],[15,4],[8,0],[37,-17],[6,-6],[5,-9],[6,-16],[11,-17],[14,7],[67,78],[68,78],[5,10],[7,22],[5,10],[43,41],[17,8],[33,6],[7,4],[22,28],[8,6],[25,4],[4,3],[12,16],[5,3],[24,3],[38,20],[72,18],[72,18],[2,2],[4,11],[3,3],[13,1],[3,2],[7,10],[6,3],[6,0],[8,2],[24,17],[40,9],[22,16],[56,7],[4,3],[5,9],[4,2],[72,21],[12,9],[5,2],[3,-1],[6,-4],[3,-1],[4,1],[10,7],[6,3],[16,-2],[6,1],[12,5],[19,-3],[43,4],[26,-6],[32,13],[4,4],[6,4],[10,-4],[6,0],[13,5],[68,3],[14,7],[19,2],[23,12],[13,0],[-4,9],[6,2],[5,0],[11,-3],[6,0],[29,12],[23,5],[36,-6],[13,5],[13,8],[5,5],[2,3],[2,7],[2,2],[4,1],[5,0],[3,3],[-1,10],[5,-1],[9,-6],[4,-1],[4,0],[9,3],[32,-1],[64,21],[15,2],[11,-4],[4,0],[4,2],[4,6],[3,7],[0,6],[1,6],[4,3],[15,2],[38,-9],[2,1],[2,2],[3,1],[22,-4],[7,0],[21,11],[7,1],[41,-12],[7,5],[6,9],[9,7],[3,1],[8,-2],[8,2],[3,-3],[3,-5],[3,-4],[9,-1],[48,14],[7,-1],[13,-8],[4,0],[11,10],[4,0],[19,-5],[6,-6],[-2,3],[-3,12],[10,0],[21,-11],[10,3],[2,3],[3,9],[1,3],[3,1],[4,0],[13,4],[6,0],[5,-3],[5,-1],[9,6],[5,2],[6,-2],[19,-12],[6,-2],[16,5],[5,0],[11,-3],[5,0],[1,3],[2,3],[5,3],[-4,15],[4,11],[8,4],[7,-7],[6,-8],[4,-1],[19,20],[5,2],[4,-1],[30,-13],[10,-9],[2,1],[2,3],[2,5],[2,3],[2,0],[13,-3],[4,1],[3,6],[-1,11],[4,-3],[20,-3],[4,2],[7,5],[3,2],[5,0],[13,-6],[18,0],[11,-4],[4,2],[3,7],[4,10],[5,6],[5,-6],[4,-9],[7,-4],[-1,18],[-3,8],[-50,57],[-6,11],[-4,13],[-3,15],[-4,34],[0,20],[3,10],[15,8],[99,16],[16,-8],[7,-10],[2,-14],[-1,-16],[-7,-39],[-2,-6],[-3,-3],[-9,-5],[-3,-4],[0,-15],[3,-19],[4,-18],[5,-11],[7,-10],[7,-5],[49,-2],[33,-11],[8,1],[14,11],[7,4],[7,-1],[25,-8],[29,6],[30,14],[3,4],[5,10],[2,2],[17,0],[9,2],[7,8],[6,13],[1,17],[38,-11],[3,0],[4,2],[7,7],[4,0],[22,-11],[5,0],[6,10],[3,15],[0,15],[-4,11],[-7,5],[-7,3],[-23,3],[-23,15],[-14,18],[3,18],[51,57],[13,8],[15,3],[31,-5],[31,-15],[3,-3],[2,-4],[2,-12],[3,-8],[3,-4],[22,-18],[6,-7],[6,-11],[5,-7],[12,-6],[6,-5],[4,-12],[0,-14],[-3,-15],[-1,-15],[16,2],[14,-6],[28,-26],[25,-30],[6,-6],[86,-42],[10,-7],[4,-2],[15,0],[8,-4],[16,-15],[15,-4],[19,-15],[16,-4],[13,-13],[5,-3],[24,-5],[44,-25],[28,-8],[11,3],[3,-2],[11,-17],[14,-12],[8,-5],[6,1],[17,9],[9,2],[80,-21],[17,1],[34,-7],[8,1],[2,3],[7,14],[2,5],[6,4],[22,7],[3,3],[3,4],[5,17],[4,3],[9,3],[-2,14],[5,28],[-1,35],[6,9],[16,9],[-7,17],[6,9],[6,5],[13,5],[6,4],[4,8],[3,11],[3,12],[9,14],[16,7],[42,4],[22,19],[11,3],[18,-4],[6,1],[18,13],[7,2],[4,18],[16,10],[34,3],[6,5],[-3,10],[-17,26],[-8,5],[-127,23],[-13,12],[-3,12],[5,9],[8,6],[7,3],[17,1],[49,-11],[65,15],[16,-3],[16,-14],[7,-9],[15,-36],[6,-9],[14,-13],[16,-35],[14,-15],[16,-8],[47,-2],[8,-5],[14,-15],[55,-14],[47,3],[18,-2],[3,1],[8,8],[4,2],[9,0],[6,-3],[4,2],[7,16],[5,4],[26,-7],[1,3],[1,3],[0,4],[2,1],[9,1],[4,-1],[7,-4],[4,-1],[8,1],[7,5],[4,2],[8,-4],[5,-1],[5,0],[3,-1],[3,-2],[4,-6],[2,-2],[3,1],[6,4],[9,-1],[18,-13],[9,-3],[16,2],[8,2],[4,6],[5,9],[38,4],[30,-11],[109,-16],[18,3],[8,-1],[20,-19],[18,-7],[17,0],[8,14],[2,18],[-1,6],[-3,7],[-1,5],[0,7],[2,7],[1,6],[14,25],[7,10],[9,6],[46,10],[3,4],[6,11],[4,4],[7,1],[23,-6],[65,14],[16,-3],[14,-12],[3,-6],[3,-7],[1,-7],[1,-9],[-2,-12],[-1,-6],[-4,-4],[-5,-3],[3,-21],[1,-20],[-2,-18],[-6,-19],[-6,-13],[-9,-13],[-8,-10],[-8,-7],[5,-4],[102,8],[15,-14],[-4,-8],[4,-4],[5,0],[5,2],[46,0],[19,9],[6,1],[74,-9],[74,-9],[11,-10],[24,-4],[9,2],[51,-17],[66,2],[1,3],[0,4],[2,5],[10,7],[11,3],[23,0],[-52,76],[-2,5],[-1,5],[-1,4],[-3,3],[-5,4],[-2,3],[-2,5],[17,1],[37,14],[16,13],[19,8],[39,3],[19,12],[6,12],[5,12],[4,10],[10,6],[19,0],[59,-19],[38,-26],[-4,-2],[-4,-1],[-8,2],[-5,0],[-4,-3],[-8,-12],[8,-8],[19,-31],[8,-16],[-5,-8],[-8,-5],[-5,-6],[-1,-9],[-2,-3],[-7,-4],[-5,-3],[-3,-4],[-6,-21],[-1,-7],[-2,-6],[-33,-60],[-7,-8],[-15,-7],[-6,-7],[1,-11],[3,-15],[0,-34],[4,-10],[4,-1],[6,3],[4,0],[5,-2],[4,-5],[8,-12],[5,-11],[10,-28],[5,-8],[45,-32],[77,-19],[17,3],[29,29],[15,0],[32,-12],[36,-4],[12,-6],[10,-1],[22,13],[10,2],[49,-10],[5,0],[21,12],[18,-1],[5,1],[11,8],[5,2],[19,2],[39,15],[11,1],[33,-9],[11,4],[44,31],[-8,16],[-4,17],[2,16],[9,16],[-8,14],[-3,8],[-1,9],[3,10],[5,6],[11,6],[-6,11],[2,10],[22,41],[8,10],[7,5],[25,2],[5,6],[6,17],[0,3],[-2,8],[0,2],[2,7],[8,13],[31,66],[7,9],[16,14],[14,5],[15,-6],[54,-39],[7,-10],[3,-5],[1,-5],[2,-4],[5,-4],[34,-21],[28,-31],[15,-11],[31,-13],[8,-7],[14,-16],[7,-5],[7,-9],[-1,-13],[-5,-12],[-7,-8],[-14,-9],[-87,-8],[-87,-8],[-8,-10],[56,-17],[62,-1],[12,-7],[15,2],[6,-1],[-12,-38],[5,-2],[10,1],[10,-5],[5,3],[5,4],[5,2],[5,-2],[17,-12],[4,0],[9,3],[36,2],[10,-5],[20,-16],[6,-2],[17,-3],[3,-2],[4,-6],[2,-1],[2,0],[5,3],[58,6],[21,-6],[10,1],[8,7],[25,39],[7,16],[-1,15],[4,3],[3,1],[8,1],[4,2],[3,5],[2,7],[4,6],[5,12],[1,14],[-2,12],[-8,6],[9,4],[18,2],[7,8],[7,16],[5,18],[7,40],[11,14],[99,-4],[19,-9],[28,-21],[37,-44],[3,-6],[2,-11],[1,-11],[2,-10],[5,-9],[-31,-35],[-7,-4],[-8,-1],[-7,2],[7,-24],[8,-13],[44,-33],[6,-8],[9,-17],[6,-5],[115,-58],[81,-21],[50,0],[24,-8],[12,0],[-2,3],[-2,6],[-2,2],[8,2],[6,-3],[6,-6],[7,-6],[5,-2],[3,0],[8,6],[4,0],[4,-2],[8,-5],[6,-2],[13,-1],[24,-16],[19,-4],[33,-1],[16,5],[16,11],[14,4],[34,-13],[15,-1],[10,8],[3,0],[4,-2],[3,0],[25,9],[8,5],[11,20],[7,2],[19,1],[7,-3],[3,1],[5,5],[2,5],[3,3],[6,-1],[8,1],[5,6],[5,4],[7,-3],[8,-5],[82,-30],[6,2],[2,10],[-2,10],[0,9],[6,7],[-5,8],[-5,2],[-11,0],[-7,2],[-6,4],[-5,7],[-5,9],[6,9],[6,6],[6,4],[7,0],[13,-5],[6,2],[3,11],[6,-8],[6,3],[5,7],[6,6],[8,2],[8,-2],[8,1],[13,10],[8,2],[3,4],[5,14],[4,7],[3,4],[111,8],[8,3],[8,6],[8,3],[16,-6],[8,1],[9,7],[6,9],[8,6],[9,0],[38,-9],[6,3],[6,6],[16,11],[16,16],[8,5],[23,8],[14,10],[17,-1],[52,14],[4,2],[4,4],[7,11],[4,4],[15,4],[2,3],[3,14],[3,6],[8,5],[26,12],[10,0],[4,3],[5,10],[3,4],[18,13],[1,2],[1,7],[1,2],[3,1],[5,-1],[2,0],[32,12],[41,4],[4,2],[2,4],[2,10],[2,6],[3,3],[5,4],[8,3],[90,16],[1,1],[3,6],[1,1],[2,-1],[4,-7],[2,-2],[7,1],[16,5],[16,0],[24,7],[53,3],[21,-8],[9,1],[55,35],[8,0],[14,-8],[8,-3],[65,-3],[37,8],[23,12],[32,2],[65,32],[42,7],[14,10],[61,18],[13,13],[8,4],[7,3],[56,1],[16,7],[13,10],[6,3],[8,0],[6,3],[4,8],[3,10],[4,10],[6,6],[13,6],[5,9],[2,15],[-2,12],[-5,8],[-8,3],[2,6],[5,13],[1,5],[0,4],[-3,13],[-1,7],[4,0],[3,2],[2,5],[-1,8],[6,0],[3,5],[1,9],[3,9],[3,6],[7,9],[3,6],[4,8],[3,7],[2,9],[1,11],[0,5],[-1,3],[-2,7],[-1,4],[1,4],[2,4],[1,5],[2,31],[-1,9],[-1,4],[-4,13],[-1,4],[1,3],[0,4],[0,4],[-4,38],[-4,16],[-7,9],[-38,32],[-11,16],[-14,12],[-47,73],[-3,7],[-2,8],[-3,6],[-4,2],[10,15],[2,4],[-1,7],[-5,27],[-2,18],[-1,18],[2,16],[15,28],[3,2],[4,1],[7,4],[63,55],[105,49],[139,-3],[138,-2],[24,-6],[18,-23],[6,-40],[-4,-7],[-78,-28],[-2,-4],[-2,-16],[-3,-1],[-5,1],[-4,-8],[-7,-16],[-9,-12],[-40,-37],[-63,-25],[7,-5],[39,4],[3,-3],[5,-14],[3,-5],[16,-13],[15,-6],[122,-6],[8,4],[17,23],[5,4],[33,8],[9,-2],[9,-8],[-12,-4],[12,-12],[4,-2],[19,1],[5,-3],[6,-5],[18,-9],[5,-5],[9,-13],[15,-12],[19,-22],[31,-18],[21,-20],[-7,-11],[-5,-7],[-3,-10],[4,-18],[2,-17],[-3,-15],[-7,-13],[-7,-7],[6,-21],[3,-8],[5,-5],[20,-12],[-7,-25],[-13,-10],[-13,-6],[-10,-15],[2,-23],[12,-17],[33,-22],[7,-1],[14,2],[7,3],[12,8],[13,2],[14,7],[21,1],[41,19],[55,0],[27,8],[14,9],[8,1],[6,-5],[12,-33],[4,-2],[14,9],[44,18],[-10,23],[10,8],[13,0],[24,-9],[56,-5],[13,-5],[2,-2],[0,-5],[0,-6],[0,-6],[3,-14],[4,-6],[37,-28],[16,-23],[6,-4],[-7,-11],[0,-14],[3,-14],[7,-11],[8,-3],[6,4],[5,7],[8,2],[7,1],[23,12],[8,6],[-1,10],[-5,10],[-7,10],[24,31],[59,-15],[29,15],[-13,9],[-6,6],[-6,8],[9,3],[69,2],[-2,-3],[-2,-6],[-1,-3],[2,-1],[4,-5],[2,-2],[-2,-4],[-3,-3],[-3,-1],[-3,0],[7,-16],[16,-2],[55,25],[6,0],[44,-23],[6,-6],[2,-9],[-1,-8],[-7,-4],[-28,-10],[-27,-18],[6,-8],[6,-3],[14,-3],[7,-5],[18,-26],[11,-10],[3,-4],[3,-11],[-1,-6],[-3,-4],[-8,-18],[-1,-6],[5,-2],[16,-3],[10,2],[7,4],[8,3],[9,-4],[8,-8],[6,-8],[19,-34],[7,-7],[34,-17],[8,-8],[0,-15],[21,0],[42,-10],[21,4],[10,6],[5,4],[2,5],[0,11],[-3,5],[-40,22],[-30,32],[-5,16],[2,24],[77,48],[22,2],[9,6],[1,19],[4,-1],[3,1],[4,2],[3,4],[-19,2],[-5,2],[-6,9],[-2,11],[2,28],[7,22],[13,11],[79,12],[12,11],[7,23],[7,18],[14,-6],[-4,-16],[6,-9],[9,-3],[8,-1],[-4,6],[-14,13],[7,13],[10,3],[21,-7],[-3,10],[-3,5],[-3,1],[-5,-3],[-4,1],[-4,8],[-2,11],[-2,8],[23,10],[8,-1],[-16,21],[8,1],[4,2],[2,5],[2,8],[6,25],[2,6],[5,11],[1,5],[-1,10],[-3,5],[-33,26],[-3,5],[3,10],[9,4],[19,2],[-3,19],[-5,11],[-14,20],[21,9],[-21,43],[-8,24],[1,27],[4,17],[4,10],[18,30],[4,12],[7,29],[2,13],[2,3],[11,4],[102,12],[30,16],[7,7],[13,17],[7,5],[15,4],[49,-4],[4,-3],[7,-9],[3,-2],[3,1],[2,4],[3,4],[30,15],[29,34],[13,10],[0,8],[-7,15],[4,2],[8,2],[3,1],[3,3],[5,7],[3,3],[3,1],[25,2],[6,3],[12,11],[23,13],[27,5],[14,8],[11,12],[122,39],[35,-2],[24,14],[26,5],[69,-1],[-3,17],[-1,9],[2,5],[4,5],[10,20],[-8,4],[-2,8],[1,12],[4,13],[3,5],[3,3],[4,3],[3,3],[7,13],[3,4],[4,3],[53,17],[-6,24],[9,-4],[38,7],[31,16],[82,18],[11,-4],[18,-11],[74,8],[10,4],[13,17],[5,3],[18,4],[4,4],[4,6],[5,6],[4,2],[43,-6],[94,11],[8,-2],[21,-24],[9,-3],[7,2],[9,13],[7,4],[25,0],[7,6],[-13,20],[-46,43],[12,29],[16,16],[71,31],[18,0],[18,-8],[8,-1],[8,3],[16,12],[8,4],[28,0],[4,2],[8,9],[4,1],[13,-9],[14,-2],[7,-4],[8,-6],[8,-9],[-3,-11],[-5,-10],[-5,-7],[-6,-3],[8,-12],[10,-4],[22,4],[8,9],[7,13],[7,12],[9,1],[-6,23],[-3,7],[22,25],[8,5],[102,3],[8,-7],[13,-24],[5,-6],[17,-17],[9,-1],[9,9],[-10,19],[-3,11],[-1,12],[2,16],[4,7],[5,3],[37,-2],[15,4],[3,13],[-9,7],[-67,5],[-12,6],[-2,2],[-1,4],[-2,15],[-1,7],[-3,5],[11,18],[-22,15],[7,19],[-3,10],[1,15],[4,15],[4,8],[27,23],[14,8],[14,4],[29,1],[22,-8],[7,-1],[22,8],[14,-2],[14,7],[7,2],[6,-2],[7,-3],[12,-10],[-8,-14],[3,-12],[8,-8],[9,-4],[78,-10],[37,-23],[-31,-15],[-5,-3],[-9,-11],[-4,-5],[-4,-1],[-13,3],[-78,-26],[10,-4],[4,-6],[3,-9],[-2,-4],[-5,-4],[-5,-6],[-2,-11],[13,1],[41,21],[28,-1],[28,-12],[-6,-10],[-10,-10],[-10,-7],[-8,-2],[-10,2],[-8,-2],[-7,-8],[-5,-17],[27,-1],[-18,-12],[-9,-3],[-11,0],[10,-12],[11,0],[10,6],[15,14],[7,9],[5,3],[102,-6],[-6,-18],[-12,-11],[-73,-20],[5,-11],[10,-7],[34,-12],[6,1],[11,5],[2,3],[1,3],[1,3],[25,13],[63,54],[10,4],[62,-2],[9,-3],[40,-36],[20,-7],[20,0],[-3,-10],[-4,-4],[-5,-1],[-6,-2],[-61,-77],[9,-12],[7,-14],[-2,-3],[-4,-6],[-3,-3],[6,-6],[4,-25],[5,-9],[7,-3],[30,1],[5,7],[4,9],[5,10],[25,23],[14,17],[11,20],[10,22],[17,53],[2,13],[2,16],[-2,12],[-6,9],[-13,13],[-3,5],[-4,10],[-7,11],[-1,7],[-1,18],[-6,25],[-1,13],[4,12],[7,8],[7,6],[106,34],[15,10],[8,3],[7,0],[15,-3],[2,5],[5,7],[2,4],[-3,7],[3,8],[4,6],[3,5],[7,5],[20,5],[-1,5],[-7,20],[-3,5],[6,10],[9,0],[9,-2],[8,1],[-15,24],[-26,6],[-47,-13],[7,14],[-6,9],[-7,3],[-6,-1],[-87,-40],[-25,1],[-16,5],[-15,10],[-15,3],[-8,4],[-15,13],[-6,10],[-5,12],[-2,16],[-2,18],[1,17],[5,12],[63,46],[131,31],[15,11],[14,17],[15,12],[15,-7],[4,-7],[12,-25],[2,-11],[0,-22],[3,-9],[-26,-10],[-26,-17],[14,1],[4,-2],[4,-4],[7,-15],[4,-5],[9,-2],[49,14],[85,-3],[9,-6],[8,-9],[8,-15],[3,-17],[-6,-16],[-12,-19],[-10,-26],[-3,-5],[-33,-36],[9,-6],[10,2],[9,7],[8,11],[8,9],[22,2],[9,7],[3,6],[7,17],[3,7],[4,5],[4,3],[4,1],[15,0],[4,3],[5,16],[5,5],[5,2],[5,0],[10,-3],[28,-25],[28,-5],[19,-14],[32,-13],[4,-3],[7,-9],[5,-3],[5,-1],[16,3],[-7,10],[-15,8],[-6,14],[9,4],[9,1],[18,-4],[5,-3],[13,-14],[4,-2],[15,-1],[-17,23],[9,8],[12,2],[23,-4],[-5,6],[-4,7],[-1,8],[4,11],[-8,-4],[-8,3],[-16,11],[-41,9],[-11,10],[-5,2],[-9,1],[-5,2],[-8,2],[-27,-9],[4,5],[2,6],[0,8],[-1,9],[1,8],[3,4],[9,3],[-20,10],[-7,9],[5,14],[13,22],[6,6],[4,2],[3,1],[3,2],[5,15],[3,5],[51,17],[6,7],[13,21],[-15,11],[-3,0],[-6,-7],[-3,0],[-8,4],[-8,1],[-17,-2],[-8,-3],[-13,-11],[-8,-4],[-3,1],[-8,9],[-5,2],[-29,-1],[-17,3],[-13,15],[-5,34],[-2,15],[-5,30],[-2,14],[1,10],[2,7],[6,14],[1,7],[2,19],[2,9],[23,48],[28,33],[32,21],[71,14],[72,14],[14,8],[14,12],[7,4],[8,1],[32,-8],[8,3],[4,11],[4,13],[6,11],[21,25],[38,16],[44,33],[124,39],[87,3],[87,3],[120,37],[34,-1],[93,33],[15,0],[47,-23],[15,-3],[63,8],[131,-16],[131,-17],[119,-57],[39,-47],[5,-5],[6,-2],[14,1],[5,-1],[-4,-18],[7,-19],[12,-16],[9,-10],[25,-13],[5,-6],[15,-25],[5,-6],[5,-3],[6,-2],[6,1],[6,-2],[3,-7],[2,-10],[4,-11],[6,-8],[13,-11],[6,-7],[13,-25],[6,-5],[3,20],[4,12],[6,6],[19,6],[81,-11],[111,-74],[9,-10],[5,-8],[5,-12],[3,-13],[-1,-13],[-9,-16],[0,-7],[9,-17],[2,-5],[-2,-4],[-5,-4],[-6,-2],[-63,-6],[-4,1],[-10,10],[-3,1],[-44,-4],[-15,3],[-33,17],[-16,17],[0,24],[-9,-5],[-5,-7],[-3,-13],[-2,-19],[-33,32],[-9,5],[-19,2],[-8,5],[-11,15],[-4,2],[-5,1],[-10,-1],[-23,6],[-9,-1],[-9,-6],[22,-9],[4,-6],[0,-13],[-6,-8],[-15,-9],[21,-9],[9,-1],[4,-1],[5,-7],[2,-7],[3,-5],[11,6],[5,0],[37,-13],[16,-12],[17,1],[8,-1],[-6,-9],[-36,-10],[4,-12],[3,-6],[2,-1],[5,2],[10,0],[20,8],[8,0],[-42,-24],[20,-16],[10,-2],[33,8],[11,-2],[10,-6],[-10,-17],[13,-5],[-7,-13],[-6,-7],[-7,-4],[-9,-2],[-47,9],[-4,3],[-2,4],[-2,5],[-3,5],[-8,9],[-8,5],[-18,0],[14,-20],[-8,-12],[-27,-3],[-11,-10],[33,-8],[10,-7],[-4,-2],[-4,-3],[-7,-8],[24,-1],[7,-6],[-22,-25],[-22,-18],[-98,-52],[-26,-22],[-8,-33],[117,40],[-3,-20],[-16,-70],[1,-6],[4,-9],[4,-8],[4,-5],[10,-8],[3,16],[3,15],[5,12],[15,25],[9,11],[4,5],[5,15],[3,6],[30,40],[31,32],[34,21],[44,11],[4,-2],[4,-3],[5,-2],[3,3],[3,6],[4,3],[13,1],[86,-23],[18,0],[4,-2],[-14,27],[10,5],[9,3],[33,-3],[4,1],[5,6],[6,12],[4,5],[9,2],[10,-2],[10,-5],[15,-13],[30,-5],[3,-3],[6,-11],[3,-3],[24,-8],[4,-4],[6,-12],[3,-4],[5,-1],[14,10],[14,0],[3,-3],[3,-7],[2,-9],[-1,-9],[-3,-7],[-19,-15],[-9,-11],[-5,-13],[7,-4],[7,3],[56,43],[43,-1],[-2,-22],[10,-5],[65,22],[50,-4],[13,-8],[35,-35],[14,-5],[-13,-26],[-7,-9],[-9,-3],[-74,21],[-39,25],[-9,1],[5,-26],[7,-14],[22,-17],[2,-2],[0,-4],[1,-4],[2,-1],[10,4],[9,1],[10,-3],[40,-21],[32,-31],[11,-4],[9,7],[1,-13],[-3,-8],[-6,-3],[-18,-4],[-6,-3],[-7,-6],[12,-2],[3,-2],[4,-7],[2,-2],[41,6],[12,8],[4,0],[9,-10],[32,-25],[19,-30],[9,-7],[10,1],[12,6],[-12,19],[-11,23],[4,6],[5,0],[9,-5],[5,-1],[6,2],[11,6],[-3,14],[-1,15],[1,13],[6,11],[-5,3],[0,6],[3,5],[6,2],[66,-4],[49,-3],[39,14],[26,3],[18,-4],[21,8],[2,-1],[4,-8],[3,-2],[33,-7],[11,-11],[5,-5],[20,-9],[12,0],[10,-11],[7,-5],[6,0],[5,2],[6,1],[11,-10],[6,-1],[5,4],[5,7],[2,-11],[4,-5],[12,0],[18,-8],[7,0],[-1,-8],[-2,-7],[-3,-4],[-4,-2],[3,-6],[3,-3],[3,-1],[4,2],[2,-1],[9,-14],[7,-6],[9,-2],[93,32],[70,-7],[71,-7],[8,-3],[16,-11],[8,-2],[27,0],[8,-5],[15,-16],[22,-5],[35,-16],[14,5],[6,3],[23,3],[88,61],[7,3],[74,9],[75,9],[54,-14],[32,0],[129,-37],[14,-11],[15,-4],[7,-5],[3,-1],[7,3],[4,0],[5,-2],[8,-8],[19,-9],[112,-17],[111,-16],[111,-17],[112,-16],[111,-17],[3,2],[7,7],[3,2],[26,-7],[6,1],[15,10],[18,5],[34,0],[44,-17],[4,-3],[7,-8],[4,-3],[101,-11],[102,-11],[31,-17],[54,-11],[93,13],[18,-7],[92,23],[13,8],[10,13],[1,4],[2,13],[2,5],[2,6],[4,3],[20,13],[14,4],[56,-5],[16,-7],[7,-8],[3,-10],[-1,-14],[2,-15],[3,-14],[6,-7],[-14,-44],[-9,-47],[-2,-14],[2,-16],[9,-31],[50,-97],[48,-51],[3,-5],[1,-5],[2,-6],[5,-4],[3,-5],[3,-8],[5,-18],[7,-15],[7,-6],[18,-1],[-16,-8],[-5,-5],[-4,-3],[-10,1],[-4,-3],[-9,-12],[-11,-10],[-11,-7],[-10,-4],[-9,0],[-19,4],[-36,-3],[-9,-6],[6,-4],[6,-2],[-20,-6],[-8,-7],[14,-6],[15,-1],[-7,-11],[-7,-30],[-6,-10],[5,-1],[4,1],[10,3],[-14,-13],[-52,-27],[-21,-18],[-15,-5],[-7,-6],[-3,-12],[11,1],[-5,-9],[9,-3],[17,-9],[92,13],[39,-6],[-9,-13],[-31,-25],[8,-3],[8,0],[-14,-15],[-16,-10],[-100,-37],[5,-3],[14,-3],[-3,-5],[-3,-6],[-2,-7],[-2,-7],[14,-2],[95,-40],[9,-16],[1,-29],[-6,-29],[-10,-19],[-14,-9],[-14,-6],[-15,0],[-43,18],[-15,0],[-23,-27],[-13,0],[-67,35],[-14,0],[-7,-4],[-6,-7],[-12,-20],[-5,-7],[-7,-5],[-13,-5],[10,-11],[24,-15],[10,-12],[-42,-23],[-4,-6],[-1,-10],[1,-18],[43,4],[44,-8],[86,-36],[-14,-24],[-14,-18],[-15,-10],[-18,-3],[-38,4],[-19,-5],[-14,-17],[40,-19],[41,-8],[9,-7],[0,-15],[-6,-17],[-8,-14],[-37,-43],[-36,-27],[-37,-14],[-42,-5],[-10,3],[-12,11],[-9,15],[1,12],[-38,36],[-14,21],[-6,5],[-3,4],[-3,7],[-11,37],[-3,15],[-5,12],[-7,4],[-8,-4],[-3,-6],[-1,-10],[0,-16],[-1,-10],[-1,-7],[0,-7],[0,-10],[-1,-7],[-3,-4],[-3,-3],[-12,-19],[-13,-9],[-28,-9],[1,-33],[-13,-14],[-72,-7],[-10,-6],[-3,-9],[0,-14],[2,-20],[-8,-3],[-9,-8],[-7,-12],[-1,-17],[1,-14],[-1,-8],[-3,-4],[-67,-26],[-2,-6],[0,-11],[1,-10],[2,-4],[125,19],[9,-1],[10,-7],[-5,-8],[-20,-14],[6,-13],[6,-2],[7,0],[7,-5],[1,-5],[1,-8],[1,-8],[4,-3],[26,4],[2,-4],[1,-5],[2,-6],[6,-9],[2,-3],[12,-9],[5,-1],[4,0],[5,2],[3,4],[4,2],[11,-8],[7,1],[14,11],[66,19],[9,0],[6,-7],[12,-23],[7,-8],[7,-4],[7,0],[8,3],[9,9],[3,2],[2,5],[3,31],[10,20],[17,12],[49,17],[62,-2],[6,-5],[22,-53],[3,-15],[-1,-17],[-7,-61],[-5,-64],[-2,-13],[-4,-10],[-24,-34],[-7,-6],[6,-9],[-3,-11],[-17,-26],[-3,-11],[-1,-12],[3,-14],[-5,-14],[-42,-49],[2,-3],[3,-3],[3,-1],[3,0],[-24,-26],[-62,-41],[-5,-7],[-6,-12],[12,-10],[4,-1],[14,0],[4,-2],[-41,-26],[-51,-6],[-5,-4],[-2,-9],[3,-18],[-18,-10],[-57,-17],[2,-1],[6,-5],[-4,-8],[-10,-13],[-30,-47],[-17,-17],[-5,-8],[-3,-9],[1,-8],[6,-3],[-1,-7],[-3,-6],[-3,-4],[-4,-3],[5,-5],[5,-3],[11,0],[-2,-10],[-2,-6],[-4,-3],[-5,-1],[8,-7],[2,-10],[-4,-10],[-7,-9],[-15,-11],[-2,-2],[-3,-12],[-3,-5],[-15,-11],[-48,-18],[4,-11],[5,-5],[12,-1],[-38,-27],[-7,-14],[7,-5],[10,-19],[6,-5],[-4,-7],[-1,-6],[0,-7],[-2,-9],[-3,-6],[-3,-4],[-8,-6],[-2,-4],[-4,-11],[-2,-4],[-8,-7],[-8,-4],[-24,0],[-6,-6],[-3,-15],[6,-8],[17,-5],[-2,-6],[0,-6],[1,-4],[2,-6],[0,-4],[-1,-5],[-3,-8],[-2,-13],[0,-28],[-3,-23],[1,-5],[2,-4],[0,-6],[-1,-8],[-2,-8],[-3,-7],[-18,-32],[-4,-11],[4,-6],[-4,-7],[-3,-7],[-3,-9],[-4,-22],[-2,-8],[-11,-22],[-13,-34],[0,-7],[2,-8],[0,-13],[-4,-23],[-2,-11],[-6,-21],[-5,-38],[-9,-39],[-6,-13],[-10,-13],[-22,-17],[-47,-13],[-38,-23],[-4,-4],[-11,-22],[-5,-6],[-38,-22],[-6,-2],[3,-2],[3,-4],[2,-4],[2,-5],[2,-6],[3,-15],[2,-6],[5,-8],[7,-3],[36,-6],[7,0],[16,7],[3,-1],[3,-4],[3,-5],[3,-3],[14,-2],[51,28],[7,1],[8,-3],[7,-7],[7,-3],[7,3],[14,9],[1,-16],[-7,-11],[-17,-16],[9,-9],[11,1],[21,11],[0,-22],[16,-6],[33,6],[134,70],[15,3],[7,5],[8,10],[8,4],[8,1],[9,-1],[2,18],[5,18],[3,17],[-3,15],[12,11],[4,8],[2,14],[2,14],[-1,5],[-2,9],[-2,5],[-5,9],[-2,17],[-6,6],[-15,6],[-7,7],[-4,10],[-2,13],[5,31],[-3,8],[-5,7],[-6,10],[0,11],[8,11],[18,16],[5,10],[3,3],[3,3],[8,2],[12,9],[21,7],[-1,2],[-5,6],[43,41],[22,15],[23,4],[35,-4],[24,-10],[12,3],[81,43],[11,3],[20,-6],[53,6],[47,-10],[-2,-5],[-2,-5],[-3,-4],[-3,-4],[11,-4],[11,3],[11,9],[9,11],[-11,20],[5,16],[3,6],[5,3],[-2,1],[-4,4],[-1,1],[7,14],[9,11],[9,7],[10,5],[12,2],[4,2],[14,12],[5,2],[19,-8],[5,4],[-3,23],[-7,12],[-10,4],[-20,3],[4,19],[4,13],[6,9],[9,5],[5,0],[3,-3],[2,1],[6,19],[2,2],[3,0],[58,9],[27,-5],[26,10],[37,1],[9,3],[35,31],[12,21],[8,8],[-1,3],[-4,8],[-1,3],[2,1],[3,4],[2,1],[-6,4],[-19,0],[-4,2],[-10,13],[-7,3],[-34,8],[-3,3],[0,11],[4,5],[5,2],[62,-3],[45,17],[8,6],[26,24],[18,3],[23,10],[8,-3],[9,-10],[9,-1],[18,15],[-8,6],[-32,12],[-15,12],[-8,4],[4,7],[1,7],[1,7],[1,5],[5,3],[4,0],[9,-3],[6,0],[4,1],[3,4],[5,6],[3,1],[54,-19],[9,1],[26,16],[-35,25],[-3,4],[-5,10],[-4,3],[-16,4],[-36,24],[-6,12],[-1,9],[3,6],[9,8],[4,6],[6,16],[5,5],[-8,13],[-3,8],[-3,10],[7,3],[5,4],[5,7],[5,11],[5,4],[38,5],[16,14],[5,3],[6,2],[-2,11],[2,1],[4,5],[2,1],[-6,6],[-7,2],[-22,1],[-17,5],[-8,6],[2,9],[4,5],[4,3],[5,1],[0,19],[41,94],[12,5],[13,-2],[15,1],[-9,24],[4,2],[8,1],[3,3],[2,7],[4,6],[6,4],[14,-1],[7,5],[6,13],[3,21],[-21,6],[-4,3],[-7,9],[-5,3],[20,34],[7,8],[8,3],[17,2],[8,4],[3,3],[5,7],[4,3],[4,2],[4,1],[8,-2],[9,-5],[14,-15],[9,-4],[-2,22],[12,9],[17,-2],[12,-8],[13,-3],[16,17],[11,25],[-1,20],[4,3],[4,2],[8,3],[-5,6],[37,21],[2,3],[1,12],[1,5],[6,6],[7,2],[7,0],[13,-4],[6,1],[24,14],[5,7],[-1,10],[-4,11],[-2,5],[-6,6],[-1,5],[-1,5],[-1,8],[-9,22],[-24,29],[-10,20],[-8,20],[-1,10],[4,11],[4,7],[12,15],[9,8],[2,4],[1,5],[2,8],[2,4],[3,3],[32,17],[7,8],[3,0],[7,-1],[4,0],[4,2],[3,3],[5,10],[2,2],[3,-1],[7,-7],[4,-1],[4,5],[5,8],[5,6],[6,0],[8,-7],[6,1],[14,8],[-5,15],[-1,7],[2,6],[5,13],[2,13],[0,10],[2,7],[8,6],[19,7],[6,4],[3,5],[5,10],[3,5],[3,1],[6,0],[9,8],[5,-3],[3,-7],[4,-3],[6,0],[7,-2],[5,-5],[8,-21],[6,-4],[21,-3],[6,6],[5,9],[19,21],[20,33],[12,10],[16,6],[12,0],[13,4],[40,-13],[4,-2],[2,-4],[1,-6],[2,-7],[18,-24],[3,-8],[-2,-10],[-13,-42],[8,-7],[9,3],[19,10],[2,-18],[16,2],[30,19],[26,26],[13,8],[15,-4],[-14,-22],[9,-13],[6,-4],[7,3],[19,20],[10,7],[10,1],[9,-7],[16,-26],[8,-11],[9,-4],[9,7],[16,28],[10,6],[-2,16],[4,11],[7,6],[7,1],[7,-5],[5,-8],[7,-28],[2,-4],[8,0],[2,-4],[2,-18],[2,-7],[4,-4],[6,3],[24,21],[9,5],[7,-3],[3,0],[3,2],[10,16],[6,5],[16,6],[12,10],[4,0],[7,-3],[4,1],[7,11],[6,13],[6,10],[9,-3],[-22,31],[-4,9],[-2,15],[-5,17],[-5,16],[-7,8],[3,4],[7,6],[3,4],[1,6],[0,6],[1,6],[5,4],[-2,1],[-7,5],[8,15],[10,1],[11,-3],[9,1],[5,6],[7,16],[5,3],[12,3],[13,6],[37,29],[45,9],[-3,-14],[-2,-12],[1,-11],[6,-6],[6,2],[8,6],[7,8],[16,28],[12,14],[12,9],[22,7],[14,1],[7,-2],[7,-5],[3,-1],[4,2],[5,5],[2,4],[-1,5],[1,11],[-1,8],[-1,5],[0,4],[4,4],[8,5],[8,2],[8,-2],[5,-2],[4,1],[7,10],[-1,3],[-4,7],[-2,2],[11,17],[18,5],[48,-1],[8,3],[15,10],[31,-1],[3,-3],[4,-6],[4,-4],[3,1],[7,9],[7,5],[86,30],[-4,11],[-1,9],[2,8],[5,7],[9,10],[2,5],[7,18],[2,4],[8,4],[26,-1],[-27,15],[6,13],[5,8],[5,5],[8,5],[-27,3],[2,13],[-1,13],[0,12],[5,8],[2,2],[4,8],[2,3],[37,34],[7,3],[57,4],[7,3],[12,12],[7,4],[63,12],[-12,17],[-15,9],[-17,4],[-15,-1],[6,4],[15,17],[3,8],[0,5],[-5,9],[-3,6],[-1,9],[0,10],[1,10],[3,7],[-4,4],[-4,1],[-9,-2],[-1,10],[2,5],[3,3],[4,2],[2,4],[2,15],[1,6],[6,15],[5,15],[2,6],[13,10],[39,51],[107,68],[87,32],[87,32],[31,4],[120,44],[121,43],[16,2],[23,-6],[88,35],[88,35],[16,0],[86,44],[3,-1],[8,-4],[4,-1],[3,2],[16,13],[17,7],[17,2],[32,-12],[2,-2],[2,-4],[3,-3],[4,-3],[3,1],[3,3],[4,1],[10,-3],[4,1],[9,19],[8,8],[25,18],[4,1],[4,3],[8,9],[4,2],[23,-4],[31,7],[7,-3],[13,-14],[7,-5],[7,-1],[26,16],[9,3],[15,-4],[6,1],[15,13],[8,4],[8,1],[8,-2],[14,-8],[7,-7],[12,-16],[7,-5],[23,-8],[40,11],[3,4],[2,6],[2,7],[3,7],[1,3],[-21,13],[-22,3],[-19,12],[-14,39],[1,20],[9,11],[46,17],[11,9],[7,18],[8,14],[13,10],[105,30],[41,23],[3,3],[9,16],[3,6],[9,7],[22,27],[6,5],[15,3],[29,-1],[102,21],[30,-7],[-15,-24],[7,-1],[15,3],[6,-6],[7,-9],[7,-5],[40,-6],[13,-7],[17,-5],[6,0],[4,3],[5,7],[4,1],[36,-10],[7,3],[15,11],[8,2],[15,-1],[28,15],[3,3],[4,13],[2,5],[3,4],[15,11],[8,2],[4,2],[3,5],[3,5],[2,4],[5,3],[15,2],[31,-6],[90,12],[8,-4],[16,-14],[7,-4],[8,0],[61,31],[27,28],[26,19],[102,35],[30,19],[16,3],[16,8],[8,2],[25,-3],[8,3],[19,21],[7,5],[7,3],[47,-1],[8,-3],[7,-5],[3,-4],[2,-4],[3,-8],[2,-19],[2,-5],[5,-4],[24,8],[15,0],[14,3],[47,27],[21,1],[14,6],[3,0],[41,-15],[8,2],[22,11],[9,-1],[26,-12],[17,-2],[32,4],[17,-3],[23,-15],[8,-3],[34,-2],[15,3],[29,23],[15,7],[21,1],[15,-4],[41,14],[17,0],[16,-5],[19,-13],[4,-1],[9,2],[3,-1],[4,-3],[7,-9],[7,1],[8,12],[12,27],[6,7],[14,-1],[7,3],[14,12],[15,8],[11,-2],[3,1],[22,20],[56,35],[15,16],[8,5],[16,3],[65,-16],[16,3],[57,22],[16,12],[23,0],[50,23],[29,-9],[28,2],[14,-6],[43,-44],[14,-4],[24,3],[38,-17],[32,-5],[15,4],[17,9],[27,22],[14,8],[14,-2],[31,-15],[8,0],[23,6],[45,-4],[30,4],[16,-2],[30,-12],[-6,-17],[-3,-7],[-5,-4],[2,-3],[3,-5],[2,-2],[-4,-9],[2,-14],[6,-14],[5,-10],[4,2],[37,34],[8,0],[6,-3],[7,-8],[2,-9],[-6,-8],[14,1],[22,8],[5,4],[3,5],[2,10],[2,5],[3,3],[45,12],[37,18],[5,7],[6,12],[7,12],[8,10],[7,6],[44,18],[23,3],[33,18],[3,1],[4,-2],[7,-5],[11,-1],[7,-2],[13,-10],[8,-3],[22,4],[14,-2],[15,-10],[11,-17],[7,-26],[0,-8],[-1,-7],[1,-7],[4,-3],[37,-7],[8,2],[-3,-5],[-8,-29],[4,5],[6,-1],[11,-5],[5,2],[17,16],[4,2],[9,0],[4,1],[17,9],[19,6],[9,-1],[9,-4],[16,0],[15,16],[14,21],[15,15],[7,-2],[13,-19],[7,-5],[8,2],[16,9],[32,7],[7,-2],[34,-17],[15,0],[101,63],[30,10],[30,-4],[13,-5],[6,-5],[4,-9],[18,-30],[23,9],[6,-3],[2,-18],[1,-5],[3,-8],[3,-4],[3,-3],[4,-2],[7,-2],[15,0],[7,-2],[19,-19],[7,0],[12,12],[18,39],[10,15],[13,7],[25,4],[26,24],[27,14],[12,14],[10,7],[78,0],[3,-4],[4,-11],[3,-4],[3,-3],[-9,-40],[-6,-18],[-8,-12],[13,-11],[24,8],[80,62],[23,7],[20,1],[-4,-20],[-13,-17],[-81,-53],[12,-4],[4,-5],[4,-8],[5,-25],[4,-9],[-32,-27],[8,-8],[4,-2],[4,-2],[4,-3],[1,-6],[0,-21],[2,-20],[4,-13],[7,-5],[8,3],[8,13],[-1,13],[-3,14],[3,17],[7,15],[24,35],[3,8],[2,6],[2,3],[6,0],[3,-2],[3,-6],[6,-12],[4,-6],[3,-3],[14,-5],[3,0],[2,4],[2,11],[5,10],[9,5],[18,3],[9,-2],[5,1],[4,4],[7,13],[4,4],[6,0],[0,26],[12,22],[17,14],[13,6],[-8,-28],[-3,-16],[1,-15],[6,-14],[6,1],[7,11],[5,13],[15,22],[35,23],[17,16],[9,11],[7,5],[7,1],[10,-2],[4,1],[10,5],[4,0],[5,-3],[5,0],[4,3],[10,8],[8,10],[4,3],[6,1],[4,1],[4,1],[14,11],[8,-1],[4,-9],[-3,-21],[6,1],[24,17],[7,-1],[6,-10],[9,-28],[8,15],[10,10],[22,11],[-7,6],[-25,-2],[11,16],[-7,6],[-20,10],[97,8],[9,3],[10,7],[51,59],[8,13],[6,16],[2,10],[1,9],[2,6],[6,2],[11,1],[5,2],[13,13],[2,5],[6,15],[3,7],[3,6],[4,4],[30,9],[10,6],[-85,17],[4,4],[4,2],[8,3],[-3,4],[-2,3],[-4,1],[-3,0],[15,10],[14,13],[13,11],[66,-3],[31,-11],[90,5],[91,4],[49,36],[24,12],[32,6],[55,-11],[15,1],[23,-7],[5,-2],[1,-6],[1,-7],[3,-6],[3,0],[14,5],[3,0],[12,-7],[22,2],[7,-2],[4,-3],[5,-7],[3,-3],[18,-4],[41,-27],[14,-4],[8,1],[25,15],[8,3],[42,-1],[70,-24],[71,-24],[43,-42],[16,-6],[65,-1],[119,-43],[16,4],[3,-1],[13,-12],[11,-1],[4,-3],[7,-10],[3,-3],[112,-36],[112,-36],[5,-5],[1,-5],[0,-7],[0,-7],[2,-6],[4,-1],[4,3],[4,5],[3,5],[7,6],[52,-8],[13,-7],[15,-26],[6,1],[13,8],[97,-4],[60,-22],[28,-17],[96,-14],[6,-6],[13,-19],[6,-12],[3,-11],[-4,-12],[-7,-8],[-15,-10],[-6,-7],[-18,-25],[4,-12],[0,-18],[-1,-35],[4,2],[3,4],[13,23],[3,3],[2,1],[5,-1],[2,0],[3,8],[6,19],[3,8],[4,4],[44,28],[26,33],[8,2],[12,-4],[-2,-15],[3,-11],[11,-15],[5,-12],[4,-13],[4,-10],[7,-6],[8,-1],[7,2],[7,-1],[21,-17],[6,-3],[21,-4],[13,-7],[11,-14],[10,-24],[3,-22],[1,-5],[3,-3],[11,-5],[20,-16],[7,-2],[6,2],[19,10],[10,-1],[3,1],[1,2],[-1,4],[0,4],[1,3],[22,19],[13,8],[7,-1],[20,-11],[7,0],[6,2],[6,0],[7,-4],[13,-11],[6,-4],[62,8],[-1,4],[-3,8],[-2,4],[9,9],[63,14],[-11,14],[28,13],[-7,5],[60,20],[16,11],[27,30],[38,22],[8,2],[7,-1],[17,-8],[14,-11],[14,-16],[7,-5],[7,-2],[24,8],[-2,11],[-6,8],[-11,9],[9,26],[-10,7],[-5,11],[-2,15],[2,22],[-7,1],[-7,0],[24,24],[5,10],[1,27],[4,12],[-25,12],[-6,8],[-5,6],[-4,4],[-10,2],[-5,3],[-4,6],[-3,8],[-3,9],[8,7],[8,13],[14,28],[7,6],[17,4],[6,10],[1,8],[0,7],[1,6],[2,6],[11,11],[11,8],[35,36],[8,4],[16,3],[84,32],[84,33],[64,-1],[127,32],[128,33],[31,16],[91,19],[5,-4],[8,-25],[7,-10],[8,-6],[33,-11],[29,-21],[37,-11],[32,-20],[6,-7],[12,-20],[15,-16],[30,-24],[16,-4],[7,-4],[13,-26],[8,-6],[8,0],[9,2],[9,-5],[10,-27],[8,-5],[5,0],[3,-2],[3,-4],[5,-6],[3,-2],[4,-1],[3,-2],[4,-5],[-6,-6],[-1,-11],[-1,-11],[-3,-10],[-14,-15],[-5,-10],[-3,-15],[7,3],[22,-9],[-2,-2],[-5,-7],[11,-11],[-1,-3],[-3,-6],[-2,-2],[21,3],[-36,-37],[-9,-19],[98,18],[26,-9],[12,-1],[24,14],[40,-6],[13,3],[7,-1],[5,-5],[6,-12],[5,-7],[6,-3],[20,-5],[24,-14],[23,-2],[46,-20],[14,-12],[9,-17],[-4,-18],[4,-8],[5,-6],[2,-5],[0,-5],[0,-6],[1,-5],[2,-4],[7,-5],[3,-4],[3,-11],[5,-9],[-25,-43],[-26,-35],[-59,-50],[-63,-30],[-110,-10],[-46,-27],[-32,-8],[-24,5],[-102,-41],[-7,-7],[-27,-48],[-8,-8],[-17,-12],[9,-5],[10,-2],[-5,-19],[-9,-10],[-20,-10],[-6,-5],[-7,-15],[-5,-5],[-11,-8],[-3,-8],[0,-11],[5,1],[4,-3],[3,-5],[4,-3],[5,0],[16,8],[9,2],[24,-4],[37,7],[88,40],[89,40],[-19,-30],[-5,-13],[12,-7],[12,2],[23,12],[6,4],[5,13],[5,5],[70,23],[42,1],[11,8],[-13,13],[10,19],[12,15],[14,8],[53,-2],[17,7],[23,1],[15,5],[14,12],[7,0],[2,-13],[3,-11],[8,-2],[33,15],[5,8],[4,18],[4,7],[9,0],[9,-4],[14,-11],[8,3],[6,9],[10,27],[5,4],[6,-2],[15,-23],[7,-6],[7,0],[39,15],[9,6],[15,20],[30,21],[29,33],[40,24],[0,-16],[-3,-18],[-8,-33],[-11,-24],[-2,-12],[8,-9],[30,-5],[27,9],[18,-1],[23,11],[16,4],[47,-1],[9,5],[7,8],[7,2],[6,-13],[5,-6],[16,-5],[7,-7],[2,-6],[1,-6],[2,-6],[2,-3],[6,0],[4,2],[37,39],[14,11],[126,22],[17,8],[-8,-23],[-5,-11],[-6,-8],[-30,-26],[5,-1],[3,-4],[2,-6],[1,-9],[37,14],[3,-2],[7,-14],[3,1],[4,4],[5,4],[28,4],[4,-2],[13,-8],[4,0],[8,4],[20,4],[6,-2],[11,-9],[4,-2],[3,1],[4,1],[0,2],[-1,9],[0,2],[3,1],[9,1],[63,25],[9,2],[24,-9],[8,-1],[9,2],[30,19],[45,11],[20,17],[81,20],[15,13],[93,34],[14,-6],[12,-20],[-29,-20],[-111,-39],[-112,-40],[-112,-39],[-112,-40],[4,-3],[4,-2],[8,-1],[-1,-3],[-3,-8],[-1,-4],[12,-22],[4,-3],[10,4],[5,0],[6,-1],[-1,-3],[-1,-7],[-1,-2],[19,-5],[-20,-23],[10,-2],[9,0],[18,6],[22,18],[7,0],[2,-1],[3,-4],[1,-2],[5,-1],[5,1],[4,3],[13,11],[7,4],[7,2],[17,1],[16,-4],[8,0],[79,29],[21,-4],[36,19],[78,17],[79,17],[15,11],[18,4],[84,45],[8,1],[16,-7],[9,0],[102,32],[30,-3],[41,25],[4,2],[7,-2],[4,3],[4,4],[4,3],[9,3],[-1,3],[-1,7],[0,3],[4,1],[4,-1],[3,-4],[3,-6],[2,0],[7,5],[3,-2],[-3,15],[-5,1],[-5,0],[-4,10],[8,5],[22,23],[8,6],[40,15],[29,22],[16,6],[53,8],[16,10],[8,2],[25,1],[75,22],[74,23],[17,-1],[33,-9],[52,-2],[12,3],[9,7],[20,19],[8,12],[3,7],[1,5],[2,4],[5,4],[56,25],[8,-1],[2,2],[1,3],[2,3],[6,3],[4,2],[4,-1],[5,-5],[-8,-9],[5,0],[4,2],[12,12],[2,1],[44,-4],[0,-17],[6,-7],[23,-9],[2,-4],[0,-10],[-1,-6],[-2,-8],[-6,-12],[5,-1],[5,1],[10,4],[5,-1],[7,-4],[5,2],[-2,-3],[-1,-8],[-2,-3],[8,4],[8,1],[16,-1],[2,0],[4,4],[1,0],[2,-3],[4,-10],[2,-4],[4,-4],[4,-2],[5,0],[13,4],[17,11],[7,7],[3,7],[1,6],[2,5],[6,1],[1,-2],[3,-8],[2,-2],[2,1],[41,21],[27,7],[8,5],[14,17],[7,11],[4,13],[2,17],[5,13],[7,9],[8,4],[4,41],[21,18],[82,16],[9,8],[9,11],[36,31],[6,2],[6,0],[5,-1],[4,-5],[4,-5],[4,-6],[18,-5],[7,-12],[4,-20],[2,-27],[17,-18],[5,6],[6,4],[12,3],[11,-3],[8,-10],[2,-11],[-12,-6],[4,-9],[13,-23],[6,-5],[5,5],[3,15],[2,35],[-3,47],[1,10],[8,10],[7,-1],[8,-6],[8,-3],[-5,-19],[-2,-11],[3,-4],[5,-2],[10,-6],[4,-1],[4,3],[13,14],[5,4],[11,3],[5,0],[-10,-10],[4,-13],[6,-1],[12,6],[8,0],[21,-9],[-6,-17],[-3,-4],[-3,-3],[-8,-4],[-4,-3],[-5,-12],[0,-9],[1,-10],[-3,-13],[-6,-10],[-7,-5],[-14,-5],[-7,-5],[-5,-7],[-9,-21],[29,13],[9,2],[17,-7],[4,-4],[7,-14],[4,-5],[-7,-14],[-22,-14],[-10,-11],[-1,-7],[-3,-28],[0,-9],[5,-8],[6,0],[73,22],[4,-1],[22,-23],[-7,-28],[-5,-12],[-5,-10],[23,-14],[-5,-8],[-2,-8],[0,-10],[0,-12],[0,-5],[-1,-4],[-3,-8],[0,-5],[3,-3],[3,-3],[2,-3],[-1,-8],[-1,-12],[0,-11],[5,-6],[4,1],[4,6],[10,25],[3,8],[0,8],[-2,12],[1,8],[4,10],[4,9],[4,5],[46,29],[-8,-30],[6,-6],[3,-4],[1,-4],[-3,-16],[0,-7],[3,-6],[8,-8],[9,-1],[51,12],[22,-4],[39,21],[8,1],[16,-6],[42,4],[2,-2],[2,-6],[4,-24],[2,-4],[15,-11],[6,-1],[6,2],[25,15],[10,2],[7,-4],[2,-6],[3,-13],[2,-5],[31,-15],[7,-1],[29,13],[16,3],[7,6],[5,12],[2,17],[9,20],[17,-5],[52,-46],[3,-6],[4,-20],[7,-11],[10,4],[29,40],[2,4],[1,5],[0,10],[0,5],[2,6],[7,15],[7,10],[45,24],[3,4],[0,9],[-2,10],[-4,9],[-11,21],[3,11],[8,9],[16,12],[4,5],[3,7],[3,11],[3,5],[13,15],[3,13],[-10,6],[-13,2],[-9,-1],[1,15],[10,23],[3,14],[3,9],[8,8],[22,15],[4,8],[5,9],[6,8],[5,10],[4,17],[2,17],[-3,12],[22,19],[21,26],[10,6],[27,4],[7,8],[8,22],[11,11],[37,9],[5,-1],[10,-10],[6,1],[10,7],[-1,-4],[0,-9],[-1,-4],[34,25],[18,6],[10,-11],[5,11],[6,27],[6,7],[22,21],[7,1],[31,-18],[8,-3],[42,-2],[14,-7],[7,-2],[17,4],[7,-2],[4,-4],[6,-11],[3,-4],[4,-2],[7,-2],[15,-2],[4,2],[4,3],[8,10],[4,2],[101,-19],[81,16],[27,23],[92,16],[7,-3],[14,-11],[14,-7],[61,-2],[53,26],[21,24],[8,5],[43,10],[63,-2],[29,-15],[52,2],[9,-5],[8,-8],[5,-11],[5,-14],[5,-8],[7,-6],[8,-3],[4,0],[7,2],[4,0],[16,-13],[15,-6],[6,-6],[11,-25],[6,0],[6,3],[7,-3],[2,-4],[2,-12],[2,-4],[3,-3],[3,-1],[21,8],[7,1],[7,-4],[3,-10],[-5,-9],[-20,-14],[-24,-27],[-9,-17],[-33,-37],[15,-5],[49,17],[-4,-3],[-3,-5],[-2,-6],[-3,-6],[15,-1],[19,13],[96,95],[-7,-18],[37,6],[17,9],[6,-1],[8,-9],[7,-4],[7,1],[40,19],[-1,12],[1,12],[0,10],[-4,8],[6,1],[12,7],[16,15],[3,4],[1,31],[5,22],[3,10],[3,5],[41,-6],[1,-2],[1,-5],[1,-5],[1,-5],[10,-21],[1,-3],[5,-3],[2,-3],[12,-33],[10,-19],[1,-14],[-3,-14],[-3,-13],[10,-4],[9,15],[8,20],[8,11],[15,5],[2,-1],[5,-5],[2,-1],[6,2],[12,9],[6,2],[15,-2],[4,1],[24,13],[13,1],[8,-6],[18,-25],[17,-17],[5,-7],[9,-17],[5,-6],[10,-7],[34,-10],[4,-2],[5,-6],[4,-8],[2,-7],[2,-13],[2,-10],[16,-33],[5,-7],[4,0],[10,17],[4,9],[3,12],[-7,1],[-13,9],[-6,2],[5,34],[9,20],[13,10],[58,12],[131,-13],[12,3],[3,-1],[6,-9],[3,-2],[47,-7],[11,5],[3,1],[3,-4],[6,-13],[4,-4],[4,-2],[11,-2],[7,-4],[18,-15],[3,-4],[1,-4],[2,-4],[7,-2],[3,-3],[6,-6],[8,-5],[34,-6],[2,-3],[4,-13],[2,-4],[4,-3],[-15,-51],[13,5],[12,9],[22,28],[9,8],[12,4],[64,-5],[3,1],[4,8],[3,2],[2,-3],[4,-10],[1,-4],[3,-3],[15,-8],[6,2],[5,2],[43,4],[12,-2],[16,-10],[5,0],[13,6],[23,-3],[21,3],[57,-16],[-4,-18],[3,-11],[7,-5],[8,0],[5,3],[14,11],[4,1],[24,-3],[10,-6],[18,-17],[10,-6],[8,-2],[7,-5],[7,-18],[-7,-7],[-7,-10],[-5,-12],[0,-15],[11,12],[15,11],[13,3],[16,-13],[5,7],[6,11],[6,6],[8,3],[48,0],[8,-4],[6,-7],[12,-22],[2,-2],[2,3],[5,9],[2,8],[-1,6],[0,4],[6,4],[8,2],[15,1],[49,-14],[57,-2],[29,-9],[71,-53],[6,-3],[4,5],[3,16],[8,-6],[7,-2],[8,3],[15,13],[37,20],[112,-12],[31,-16],[30,-29],[5,-10],[9,-23],[5,-10],[2,-1],[4,0],[2,0],[2,-3],[3,-6],[1,-3],[5,-2],[3,0],[3,-3],[4,-8],[12,-13],[17,-7],[96,4],[16,6],[33,28],[131,69],[11,0],[67,-21],[20,-12],[10,-11],[5,-12],[-4,-33],[1,-11],[2,-11],[3,-5],[1,-6],[-3,-13],[-6,-12],[-21,-16],[-8,-11],[81,30],[7,1],[2,-3],[1,-8],[1,-17],[2,-12],[3,-10],[4,-4],[3,10],[5,40],[3,12],[8,17],[12,12],[13,8],[12,5],[27,1],[27,-9],[10,-9],[27,-38],[5,-13],[-9,-26],[-9,-15],[-11,-6],[-16,0],[-12,5],[-13,9],[-13,6],[-12,-5],[6,-14],[5,-7],[6,-3],[16,2],[7,-3],[7,-6],[7,-7],[-2,-8],[-6,-12],[-3,-7],[-5,-25],[-3,-6],[-4,-6],[-12,-9],[-3,-4],[-15,-24],[-6,-7],[-7,-2],[-8,4],[-6,13],[-7,17],[-7,10],[-7,-9],[-2,-7],[1,-6],[0,-5],[-3,-9],[-5,-6],[-5,-1],[-4,-3],[0,-13],[2,-3],[8,-1],[4,-3],[5,-6],[3,-6],[0,-8],[0,-12],[0,-8],[1,-8],[4,-15],[2,-10],[0,-8],[-3,-8],[-10,-22],[-7,-11],[-7,-9],[-12,-11],[-18,-11],[-21,-23],[-8,-15],[-7,-19],[-4,-20],[8,-1],[24,9],[-10,-10],[-2,-7],[0,-11],[0,-7],[-3,-9],[-6,-16],[20,-7],[19,6],[37,30],[-4,-20],[-1,-10],[1,-10],[13,8],[6,-1],[6,-6],[5,-2],[6,5],[23,27],[20,45],[12,18],[24,19],[13,6],[13,3],[45,-5],[15,3],[11,7],[11,12],[31,49],[51,63],[12,8],[12,3],[27,1],[6,-4],[5,-11],[6,-25],[2,-12],[-2,-16],[7,-4],[6,-6],[2,-6],[-1,-8],[-2,-8],[0,-8],[6,-12],[9,-10],[10,-5],[8,0],[12,21],[5,34],[8,30],[17,11],[34,-9],[36,2],[7,-3],[16,-13],[17,-6],[3,-12],[1,-15],[6,-11],[-7,-11],[-26,-26],[5,-9],[13,-2],[6,-8],[5,-9],[10,-14],[4,-8],[10,-10],[12,12],[11,23],[7,23],[9,13],[14,-6],[11,-17],[2,-19],[-7,-23],[-11,-19],[-12,-15],[-12,-10],[7,-21],[12,1],[14,8],[11,-1],[-4,-7],[-1,-7],[2,-7],[3,-8],[2,-1],[4,4],[8,12],[6,6],[7,4],[7,3],[6,0],[-2,-2],[-5,-7],[13,-3],[30,23],[15,-10],[-19,-37],[-47,-51],[-21,-34],[6,-4],[6,-17],[5,-2],[23,8],[26,18],[48,51],[15,11],[11,-3],[3,-9],[1,-14],[0,-14],[-2,-9],[-4,-11],[-6,-8],[-12,-13],[-37,-23],[-15,-20],[-16,-16],[-7,-10],[-1,-10],[4,-7],[8,-4],[12,2],[25,15],[12,-1],[2,-4],[0,-5],[1,-3],[4,0],[40,13],[-2,-10],[-1,-18],[-4,-11],[-9,-12],[-3,-8],[-2,-13],[8,-4],[8,2],[24,14],[3,0],[8,-9],[4,-1],[9,2],[35,19],[5,0],[4,-1],[10,-6],[4,0],[13,8],[31,11],[9,0],[18,-8],[9,-2],[17,4],[8,-2],[10,-22],[9,-6],[19,-3],[-1,-8],[0,-5],[1,-6],[2,-5],[2,-1],[4,4],[3,5],[2,4],[8,3],[15,-5],[7,0],[21,16],[7,3],[7,-2],[8,-6],[3,-10],[-5,-13],[41,-4],[23,12],[26,-9],[3,6],[0,6],[-1,5],[2,5],[4,7],[4,5],[5,3],[5,1],[9,-1],[7,-5],[14,-16],[9,-7],[7,-1],[17,5],[18,0],[7,4],[15,16],[9,4],[9,2],[8,0],[-10,-11],[11,-17],[14,-7],[13,6],[15,26],[8,7],[8,4],[6,2],[7,-1],[19,-19],[84,-40],[14,1],[13,13],[-12,19],[-7,8],[-7,3],[-8,2],[-8,4],[-7,8],[-6,11],[14,10],[12,-7],[24,-28],[14,-7],[100,-2],[21,-7],[8,0],[76,17],[56,35],[15,5],[13,0],[16,-5],[14,-11],[9,-22],[5,-29],[-1,-10],[-12,-25],[-4,-13],[0,-13],[8,-9],[-22,-68],[-9,-17],[6,-6],[3,-10],[2,-10],[4,-9],[23,-30],[11,-23],[5,-7],[2,5],[19,23],[13,1],[10,-7],[21,-26],[6,-5],[5,-3],[18,-2],[18,-9],[3,44],[-1,21],[-6,14],[2,1],[3,3],[1,1],[-6,28],[0,12],[6,9],[4,1],[7,-5],[86,19],[3,-1],[5,-7],[3,-2],[4,1],[2,-1],[6,-6],[7,-5],[17,-5],[18,-15],[16,1],[52,21],[8,-1],[3,-3],[4,-8],[3,-3],[4,0],[8,5],[5,1],[7,-5],[12,-17],[7,-8],[8,-3],[24,8],[7,-2],[28,-18],[6,-7],[13,-18],[14,-17],[15,-9],[16,-2],[23,4],[14,-3],[7,0],[2,2],[1,4],[2,3],[3,2],[8,-1],[3,1],[2,4],[4,37],[0,2],[1,2],[3,4],[7,5],[7,0],[26,-13],[13,-3],[14,1],[26,16],[14,4],[29,0],[-4,16],[-10,55],[-5,14],[-21,42],[11,7],[13,3],[13,5],[8,16],[-12,10],[-25,16],[-9,17],[-4,26],[1,25],[6,20],[11,12],[12,4],[12,0],[12,-3],[12,-6],[20,-16],[18,-4],[6,-4],[10,-11],[5,-4],[11,-2],[0,-3],[0,-5],[3,-3],[49,-27],[20,-20],[12,-8],[13,-5],[10,-1],[15,3],[2,-2],[2,-4],[2,-6],[2,-4],[5,-6],[11,-8],[5,-2],[-2,-17],[0,-9],[1,-6],[9,-9],[3,-6],[4,-8],[-16,-12],[-5,-3],[-5,2],[-12,8],[-51,3],[4,-16],[9,-14],[20,-18],[5,-12],[-4,-17],[-15,-29],[14,-1],[12,10],[22,35],[14,12],[15,-1],[13,-10],[30,-44],[3,-9],[0,-16],[2,-13],[5,-12],[7,-7],[7,-2],[7,4],[12,12],[8,3],[48,-14],[8,-7],[4,-4],[3,-6],[2,-6],[2,-7],[1,-10],[0,-19],[2,-10],[-21,-9],[-6,-6],[29,-3],[5,-2],[5,-12],[7,-10],[15,-15],[36,-17],[7,2],[26,18],[-3,10],[-4,1],[-5,-2],[-5,0],[-4,4],[-11,18],[-20,11],[-8,10],[-1,18],[6,15],[9,6],[41,2],[10,-2],[10,-5],[2,-3],[3,-7],[1,-1],[9,0],[2,-1],[4,-4],[19,-27],[3,-7],[1,-8],[-1,-13],[2,-7],[3,-8],[5,-6],[3,-3],[5,0],[14,9],[6,1],[4,-2],[9,-8],[21,-11],[10,-11],[1,-14],[11,-9],[13,-6],[37,-3],[22,6],[25,16],[6,0],[13,-2],[13,2],[5,-1],[3,-3],[5,-8],[3,-2],[9,0],[9,2],[37,27],[6,0],[26,-10],[5,-5],[14,-30],[15,-21],[23,-40],[8,-18],[4,-20],[2,-14],[3,-11],[5,-4],[10,17],[5,-2],[5,-6],[6,-5],[4,11],[10,8],[22,9],[-17,7],[-13,2],[-6,3],[-4,8],[-1,15],[-1,26],[1,11],[4,10],[5,7],[10,11],[12,9],[4,2],[23,1],[5,-3],[5,-9],[5,-6],[6,-2],[7,3],[6,5],[5,12],[3,8],[4,5],[9,1],[24,-1],[5,-3],[19,-19],[13,-5],[27,0],[12,-4],[37,-35],[1,-4],[0,-5],[2,-6],[10,-11],[14,-9],[14,-5],[11,1],[-1,2],[-5,5],[5,6],[5,1],[5,-1],[13,6],[6,-1],[12,-4],[18,6],[6,0],[6,-5],[6,-5],[22,-29],[6,-10],[6,-22],[8,-13],[8,-20],[5,-4],[5,-2],[7,-7],[5,-2],[3,9],[5,24],[11,15],[13,4],[14,-3],[63,-39],[12,-1],[23,3],[32,-3],[6,-3],[13,-13],[4,-5],[12,-22],[27,-29],[5,-4],[12,-4],[6,-4],[4,-9],[4,-9],[4,-7],[6,-2],[5,-3],[17,-26],[24,-19],[12,-16],[2,-19],[-4,-12],[-6,-7],[-7,-5],[-8,-3],[-21,0],[-15,-7],[-8,-1],[-30,9],[-29,-5],[-21,5],[-7,-1],[-5,-6],[0,-14],[3,-6],[4,-1],[4,-1],[3,-1],[3,-6],[4,-12],[7,-9],[3,-10],[2,-3],[3,-1],[14,2],[21,-4],[7,3],[21,13],[7,0],[21,-11],[116,-36],[2,-4],[1,-5],[1,-6],[3,-5],[-18,-13],[35,5],[11,-4],[9,-9],[9,-13],[9,-15],[12,-26],[5,-7],[18,-12],[3,-5],[2,-7],[5,-11],[10,-13],[9,-10],[5,-14],[-5,-23],[27,-18],[5,-7],[12,-23],[3,-9],[-3,-11],[-6,-8],[-7,-7],[-4,-6],[-3,-15],[1,-11],[4,-4],[6,8],[4,12],[5,9],[5,3],[5,-8],[2,-15],[-5,-21],[2,-14],[10,-14],[13,-10],[25,-12],[-20,-38],[-16,-20],[-4,-7],[1,-7],[3,-9],[2,-11],[0,-9],[-6,-2],[6,-9],[4,-9],[5,-6],[7,-3],[8,1],[36,14],[13,-1],[4,2],[7,8],[4,1],[2,-4],[5,-17],[3,-6],[12,-9],[14,-1],[27,11],[16,0],[16,-9],[15,-14],[14,-18],[-2,-6],[-2,-6],[-3,-5],[-3,-3],[9,-18],[15,-14],[16,-8],[20,0],[7,-4],[12,-14],[5,-2],[8,6],[8,8],[4,10],[-3,4],[-2,5],[-2,6],[-1,7],[5,2],[2,0],[-31,58],[-2,2],[-10,1],[-5,1],[-3,4],[-4,16],[-1,17],[-2,6],[-4,4],[-9,5],[-8,1],[-15,-7],[-8,1],[-4,5],[-2,5],[-4,17],[-1,8],[2,2],[2,3],[1,6],[0,16],[1,8],[1,6],[7,15],[3,10],[1,8],[-2,5],[-9,6],[-3,4],[-1,7],[0,6],[0,7],[-6,15],[2,6],[2,5],[1,4],[0,11],[-1,9],[-2,9],[-3,8],[-3,16],[0,15],[7,32],[2,5],[4,4],[8,6],[3,7],[1,16],[2,4],[31,-9],[6,3],[26,23],[15,5],[61,4],[17,-4],[8,-5],[7,-9],[20,-46],[5,-10],[6,-6],[7,-1],[7,0],[7,-1],[5,-11],[-4,-3],[-4,-2],[-4,1],[-4,2],[6,-25],[12,-18],[14,-11],[13,-5],[15,0],[8,-2],[6,-6],[3,-4],[7,-19],[3,-3],[53,-22],[17,-17],[8,-3],[8,0],[13,3],[30,-7],[6,1],[7,4],[14,14],[15,1],[17,5],[6,-2],[2,-9],[-3,-18],[-1,-11],[1,-37],[2,-10],[6,-7],[7,-2],[7,2],[8,-1],[7,-4],[4,-1],[2,3],[1,7],[2,5],[2,5],[3,3],[3,4],[0,13],[3,6],[6,10],[2,5],[3,7],[5,9],[7,7],[7,4],[6,2],[-43,52],[-5,11],[19,16],[20,7],[20,2],[71,-18],[19,-11],[9,-4],[29,0],[16,5],[4,-2],[3,-3],[5,-5],[10,-7],[11,-4],[65,6],[9,-14],[11,1],[24,12],[12,3],[8,-3],[6,0],[2,-3],[2,-3],[2,-1],[4,1],[5,5],[3,1],[3,-1],[6,-4],[3,0],[-10,-12],[7,-5],[18,3],[9,-1],[-1,-2],[-2,-5],[-2,-2],[108,-42],[-1,13],[4,6],[5,2],[18,0],[5,3],[16,16],[76,20],[11,-3],[2,-3],[4,-9],[3,-1],[78,-4],[12,-8],[12,-12],[6,-8],[2,-7],[-4,-9],[-6,-5],[-14,-4],[-2,1],[-2,5],[-2,2],[-9,-4],[-3,2],[-7,5],[-5,0],[-13,-7],[-26,-1],[-13,-4],[-8,-14],[5,-7],[4,-8],[3,-5],[6,-2],[18,3],[4,-1],[6,-7],[4,-3],[5,-1],[27,4],[14,8],[7,-1],[11,-10],[5,-4],[6,3],[7,5],[7,3],[7,1],[14,-3],[19,6],[96,3],[12,-2],[25,-13],[42,-4],[10,-11],[1,-6],[1,-8],[0,-6],[2,-2],[8,2],[3,-1],[4,-2],[7,-7],[4,-11],[2,-12],[5,-15],[-12,-11],[-97,-4],[-17,-7],[-57,-11],[-13,-7],[-7,-2],[12,-21],[20,-4],[71,20],[102,-6],[7,-6],[13,-24],[7,-7],[35,-19],[-5,-10],[-5,-7],[-6,-4],[-7,0],[-9,4],[-3,1],[-4,-1],[-6,-5],[-3,-1],[-6,3],[-5,4],[-6,2],[-4,-7],[-5,-10],[-6,-6],[-15,-7],[-5,-7],[-2,-9],[2,-8],[5,-3],[98,20],[14,-4],[7,1],[21,9],[26,-7],[7,1],[18,11],[10,8],[5,1],[17,-6],[7,-7],[2,-1],[14,2],[7,-1],[6,-4],[11,-20],[6,-8],[6,-2],[-4,-21],[71,-29],[6,-6],[6,-7],[3,-3],[4,-2],[3,2],[7,9],[4,1],[2,-3],[1,-6],[2,-5],[3,-4],[24,-5],[5,-4],[16,-25],[5,-6],[6,-3],[7,0],[8,-3],[12,-12],[9,0],[-3,-3],[-2,-4],[-2,-4],[-1,-5],[4,-3],[7,-9],[3,-3],[10,-2],[10,-1],[37,9],[11,-1],[8,-7],[22,-24],[3,-5],[3,-4],[4,-2],[20,9],[-1,-11],[3,-8],[11,-12],[5,-8],[4,-9],[5,-7],[6,-2],[7,1],[17,-10],[6,0],[7,3],[6,5],[6,6],[-5,5],[-2,9],[3,8],[5,3],[-4,9],[14,17],[14,12],[-14,61],[-4,10],[-15,25],[-4,9],[-2,9],[-4,22],[2,7],[7,5],[7,1],[5,-3],[11,-29],[2,-4],[6,-1],[2,-3],[5,-9],[7,-20],[16,-24],[9,-19],[12,-33],[5,-8],[10,-13],[28,-50],[-5,-11],[-2,-3],[41,-11],[-2,-1],[-5,-6],[6,-13],[6,-8],[7,-4],[8,-3],[-5,-6],[-1,-8],[3,-9],[4,-7],[4,-6],[6,-5],[7,-4],[5,0],[-6,-15],[-8,-11],[-18,-16],[-22,-27],[-8,-4],[-20,-2],[-9,-4],[-5,-12],[-2,-6],[-4,-3],[-4,-2],[-4,1],[-4,4],[-2,7],[-3,19],[3,0],[3,1],[3,4],[2,5],[-22,25],[-15,8],[-1,5],[-1,5],[-2,4],[-11,9],[-4,7],[-4,9],[-8,9],[-9,-12],[-13,-30],[-32,-35],[25,-5],[7,-7],[-5,-15],[-5,-14],[-6,-12],[-8,-10],[-8,-4],[-17,12],[-9,2],[2,-7],[0,-6],[-1,-6],[-3,-6],[14,-13],[-3,-2],[-2,-4],[0,-5],[0,-6],[-1,-6],[-11,-12],[-2,-7],[0,-5],[-1,-4],[-4,-5],[-4,-1],[-11,2],[-6,-4],[-13,-11],[-7,-3],[-16,-1],[-7,-6],[-2,-15],[5,1],[3,-3],[3,-4],[4,-3],[20,-3],[4,-3],[4,-4],[4,-3],[4,1],[4,0],[8,-6],[5,2],[-5,-12],[-35,-53],[-2,-10],[7,-9],[16,2],[29,14],[5,5],[10,18],[5,6],[35,19],[6,2],[5,-5],[2,-23],[3,-2],[3,-1],[2,-5],[2,-16],[1,-7],[3,-8],[0,-5],[-3,-5],[-5,-9],[-3,-6],[-1,-7],[-1,-17],[-3,-30],[-4,-15],[-4,-8],[-14,-7],[-15,-2],[-14,4],[-14,7],[-21,16],[-14,3],[-12,8],[-6,2],[-36,-1],[-8,3],[-4,2],[-3,3],[-11,16],[-6,5],[-7,2],[-2,-2],[-4,-6],[-2,-2],[-3,1],[-32,25],[-12,4],[-22,-13],[-51,2],[-117,75],[-8,-3],[-10,-11],[-13,-3],[-52,11],[-25,-3],[76,-60],[77,-60],[14,-4],[106,3],[13,-10],[11,-14],[3,-5],[1,-8],[0,-5],[0,-4],[5,-5],[14,-11],[8,-3],[6,2],[15,7],[14,5],[15,-1],[57,-27],[13,-15],[-23,-38],[-25,-31],[-10,-8],[-2,-4],[-3,-17],[-3,-6],[-3,-5],[-20,-21],[-7,-4],[6,-18],[-2,-2],[-4,-6],[-2,-3],[15,-19],[-7,-12],[-7,-10],[-7,-6],[-43,-11],[-3,0],[-3,2],[-3,5],[-2,5],[-4,6],[-4,2],[-19,-2],[-26,-14],[14,-17],[8,-35],[0,-34],[-10,-17],[-39,6],[-18,-3],[-8,5],[1,15],[-14,-2],[-6,3],[-5,8],[1,2],[3,4],[1,2],[-7,9],[-2,9],[2,9],[7,9],[9,8],[1,2],[1,7],[1,3],[3,1],[11,2],[-8,11],[-10,2],[-25,-9],[-10,-9],[-6,-3],[-11,0],[-11,2],[3,5],[3,4],[4,3],[3,1],[-2,12],[-7,4],[-15,-2],[-10,4],[-7,7],[-13,21],[-7,7],[-41,22],[-7,1],[-9,0],[-11,-12],[8,-22],[14,-24],[8,-21],[-2,-15],[-4,-12],[-7,-7],[-6,-3],[-9,1],[-13,11],[-8,4],[-4,0],[-7,-7],[-3,-2],[-4,0],[-26,18],[-8,3],[-7,-2],[-10,-6],[-7,-2],[-16,4],[-9,-1],[-15,-10],[-8,-4],[-17,1],[-7,4],[-14,18],[-8,-2],[-16,-13],[-15,-5],[-92,-3],[-32,15],[-2,3],[-6,20],[-11,22],[-5,9],[-7,8],[-31,16],[-61,14],[-14,10],[-12,16],[13,19],[4,9],[-12,0],[-24,-11],[-24,0],[-7,-2],[-3,-6],[2,-9],[5,-11],[11,-18],[5,-5],[13,-5],[25,-20],[60,-21],[-2,-14],[-4,-10],[-4,-8],[-7,-2],[9,-24],[11,-16],[12,-11],[14,-8],[-36,-64],[10,-21],[13,6],[25,32],[17,15],[33,14],[60,-13],[-1,-4],[-2,-10],[-1,-4],[10,-6],[32,6],[134,-32],[-48,-6],[-37,5],[5,-13],[10,-12],[21,-18],[-10,-9],[-10,0],[-45,16],[-10,11],[-5,2],[-6,-3],[-5,-1],[-12,6],[-5,0],[-32,-6],[-5,-3],[-2,-5],[1,-9],[3,-6],[10,-5],[-14,-14],[7,-3],[16,3],[6,-3],[8,-6],[22,-7],[-15,-12],[-15,-5],[-15,2],[-22,22],[-48,17],[-9,-1],[19,-21],[5,-8],[-6,-20],[-6,-11],[-7,-3],[-23,6],[-11,0],[-2,-2],[-2,-4],[-3,-9],[-3,-3],[-3,1],[-6,7],[1,2],[4,7],[1,2],[-3,6],[-4,4],[-4,2],[-5,0],[14,10],[-11,14],[-12,7],[-13,-4],[-11,-15],[-5,-12],[-4,-14],[-4,-11],[-7,-6],[-9,0],[-24,6],[-2,-2],[-2,-3],[-1,-2],[-4,1],[-4,3],[-9,12],[-55,45],[-15,5],[-13,-7],[7,-14],[28,-29],[-22,-5],[-74,5],[-16,-7],[3,-12],[5,-6],[42,-9],[57,-29],[-3,-7],[-3,-5],[-4,-3],[-4,-2],[21,-1],[11,-4],[8,-10],[-6,-4],[-10,-16],[-6,-3],[-3,1],[-3,3],[-4,0],[-3,-2],[-1,-5],[0,-12],[-1,-5],[-3,-6],[-2,-3],[-32,3],[-6,-3],[-12,-9],[-7,-3],[-74,22],[-25,-5],[14,-17],[14,-11],[31,-12],[-5,-4],[-16,-4],[-5,-3],[-9,-10],[-5,-3],[-22,0],[-22,7],[-64,5],[-17,20],[-2,17],[15,31],[2,20],[-1,4],[-4,6],[-2,3],[1,4],[4,7],[-1,4],[-8,22],[0,9],[4,12],[2,11],[-1,8],[-4,6],[-6,5],[-5,6],[-3,9],[-6,22],[-4,21],[-2,8],[-20,27],[-6,4],[41,35],[12,5],[38,2],[-14,7],[-16,4],[-15,-1],[-14,-6],[-31,-24],[-16,-8],[-18,-1],[-98,38],[-9,-4],[-23,-22],[13,-18],[13,-11],[15,-5],[31,4],[18,-3],[17,-8],[14,-14],[4,-13],[-4,-26],[9,-27],[1,-17],[-3,-33],[-4,-15],[-8,-9],[-9,-4],[-9,-1],[-6,-5],[-7,-13],[-6,-15],[-4,-12],[17,-16],[4,-3],[10,-1],[4,-5],[3,-7],[1,-9],[2,-8],[5,-5],[20,-11],[-16,-20],[-6,-4],[5,-9],[6,-4],[24,-12],[6,-1],[7,2],[-7,17],[31,-21],[36,-13],[-6,-5],[19,-12],[-7,-7],[-8,-2],[-15,-1],[-25,-6],[-10,1],[-2,4],[-1,15],[-2,3],[-45,11],[-20,21],[-64,22],[-17,2],[-17,-3],[-16,-9],[7,-4],[23,-6],[19,-11],[2,-4],[0,-7],[-1,-13],[22,12],[-1,-10],[1,-10],[2,-6],[5,-2],[5,3],[7,12],[5,3],[8,-3],[9,-11],[7,-15],[6,-14],[-13,-8],[4,-6],[6,-3],[11,-1],[-5,-8],[-6,-4],[-12,-4],[20,-14],[-7,-23],[11,-11],[41,-13],[5,-4],[4,-10],[1,-6],[1,-14],[1,-4],[7,-4],[2,-4],[2,-8],[-6,-1],[-2,0],[6,-7],[9,-21],[7,-8],[8,-4],[4,-3],[4,-6],[3,-8],[3,-7],[4,-5],[4,-4],[33,-7],[15,-10],[1,-21],[-2,-14],[-2,-32],[-4,-13],[-6,-6],[-7,3],[-13,19],[-28,33],[-17,12],[-13,-2],[-7,-9],[-7,-5],[-6,-3],[-16,1],[-15,-5],[-7,0],[-7,-1],[-14,-11],[-8,2],[-7,5],[-8,2],[-49,-3],[-10,6],[-13,-2],[-5,1],[-6,5],[-29,30],[-6,3],[-6,0],[-57,-27],[-52,-5],[10,-17],[-32,-19],[-16,-4],[-19,7],[-7,-2],[-3,0],[-4,5],[-2,6],[0,8],[-1,8],[-3,15],[-2,17],[2,15],[6,10],[-18,12],[-10,3],[-10,-5],[0,15],[6,28],[0,14],[-5,12],[-9,2],[-10,-3],[-20,-12],[-25,-22],[-14,-8],[-6,0],[-13,2],[-18,0],[-4,-2],[-3,-3],[-2,-6],[-1,-6],[3,-4],[23,-1],[4,-5],[4,-15],[5,-13],[12,-23],[-15,-27],[-4,-4],[-10,-8],[-21,-30],[-3,-8],[-2,-9],[-3,-8],[-5,-4],[-9,3],[-6,16],[-10,35],[-4,7],[-6,1],[-5,-1],[-5,-3],[-5,-1],[-9,4],[-5,0],[6,-19],[1,-9],[-2,-8],[-2,-3],[-6,-4],[-2,-2],[-2,-5],[-3,-10],[-2,-4],[-11,-11],[-39,-11],[1,-10],[2,-8],[3,-5],[5,-2],[-6,-21],[-7,-14],[-8,-8],[-12,-4],[-10,4],[-20,16],[-11,-3],[6,-8],[19,-16],[0,-23],[10,-13],[15,-6],[41,-3],[14,-7],[12,-12],[-8,-15],[-13,-7],[-25,-2],[4,-7],[4,-2],[11,-2],[-8,-18],[-10,-8],[-21,-4],[3,-13],[6,-9],[7,-6],[6,-3],[8,-9],[-3,-12],[-7,-13],[-7,-8],[-14,-10],[-78,-18],[-65,7],[-30,14],[-6,5],[-13,14],[-6,5],[-7,3],[-8,1],[-30,-7],[-15,-8],[-7,-9],[-10,-21],[-7,-7],[-15,-6],[-138,-1],[-19,-8],[-8,-1],[-9,-4],[-13,-18],[-26,-15],[-35,-7],[16,-12],[80,-18],[14,4],[30,22],[103,-1],[102,0],[102,-1],[5,-6],[15,-26],[3,-9],[3,-13],[5,-16],[1,-14],[-7,-8],[-38,4],[-20,-4],[-12,-18],[8,-7],[8,-4],[7,-2],[29,2],[3,-4],[-1,-8],[-3,-10],[-3,-5],[4,-1],[3,-2],[2,-4],[2,-7],[3,-3],[3,-2],[7,1],[3,-3],[3,-9],[2,-4],[40,-11],[2,1],[3,1],[3,0],[1,-4],[1,-11],[2,-6],[3,-2],[5,-1],[7,0],[7,2],[3,0],[8,-8],[61,-19],[16,-18],[-5,-8],[-11,-10],[-7,-9],[-2,-1],[-1,-2],[0,-4],[1,-6],[0,-4],[-2,-2],[-3,-4],[-9,-4],[-51,3],[-5,-2],[-5,-5],[1,-6],[5,-5],[5,-2],[8,0],[5,-1],[22,-21],[1,-8],[-4,-15],[5,-5],[3,-8],[4,-19],[-24,-11],[-71,19],[8,-9],[27,-14],[-11,-6],[-11,2],[-12,7],[-10,9],[-2,-3],[-15,-10],[9,-8],[31,-9],[-9,-11],[-14,-2],[-27,2],[-28,-4],[-14,-9],[-6,-19],[9,0],[6,-2],[4,-8],[1,-19],[27,-4],[19,-11],[4,0],[25,25],[13,8],[25,3],[3,-1],[3,-3],[2,-3],[3,-3],[3,-1],[30,1],[6,-2],[6,-5],[4,-9],[0,-15],[-4,-10],[-7,-4],[-13,0],[1,-1],[5,-5],[4,-24],[24,-23],[17,-25],[-14,-32],[-31,-29],[-10,-4],[-34,9],[-8,-8],[1,-1],[4,-5],[1,-1],[-5,-3],[-10,-2],[-5,-3],[-2,-11],[-1,-4],[-2,0],[-2,0],[-2,-2],[-8,-22],[8,-7],[11,-4],[73,5],[24,-9],[9,-7],[16,-19],[3,-7],[3,-22],[2,-10],[4,-9],[-6,-1],[-4,-5],[-4,-7],[-3,-10],[-4,-8],[-4,-4],[-5,-1],[-6,1],[-13,8],[-4,1],[-12,0],[-12,4],[-20,1],[-57,-44],[35,-3],[11,-8],[-18,-12],[-61,-8],[62,-5],[-7,-10],[-11,-5],[-20,-2],[11,-14],[11,-2],[42,8],[8,-1],[12,-13],[7,-1],[29,7],[28,-3],[28,4],[13,-3],[26,-15],[-5,-12],[-6,-12],[17,-14],[7,-8],[8,-14],[8,-8],[21,-4],[10,-6],[3,-7],[5,-16],[3,-7],[4,-3],[9,-5],[4,-6],[6,-17],[3,-7],[5,-6],[4,-7],[1,-10],[-1,-11],[-2,-9],[9,-9],[9,-6],[10,-3],[22,-2],[3,-4],[5,-10],[4,-5],[6,-1],[12,0],[-14,-10],[12,-17],[4,-11],[-3,-14],[-6,-6],[-70,-12],[-12,-12],[45,-15],[14,-12],[-17,-19],[-19,-8],[-41,-5],[26,-28],[7,-2],[97,14],[2,-3],[2,-4],[4,-3],[85,-41],[-12,-15],[-22,-3],[-40,6],[-39,-8],[-37,-20],[7,-18],[15,1],[27,11],[86,2],[87,1],[7,-6],[5,-6],[3,-9],[3,-14],[-11,-3],[2,-40],[-14,-19],[-21,-6],[-19,-1],[5,-8],[5,-5],[12,-6],[-5,-14],[-9,-7],[-19,-6],[-33,-21],[-42,-16],[-41,-30],[-11,-3],[25,-3],[51,10],[25,-7],[46,-31],[21,-3],[5,-3],[18,-17],[7,-2],[23,-3],[11,3],[22,17],[94,23],[5,4],[9,16],[5,7],[6,5],[7,3],[7,0],[-6,6],[-16,11],[19,28],[22,18],[31,37],[8,4],[14,0],[13,-5],[5,-4],[7,-7],[6,-8],[3,-10],[0,-16],[-4,-12],[-6,-8],[-68,-37],[7,-7],[24,-10],[16,-10],[17,-6],[25,0],[8,-4],[6,-6],[8,-11],[4,-12],[-5,-8],[2,-1],[4,-4],[2,-1],[-5,-7],[-5,-4],[-10,-7],[11,-21],[16,-12],[95,-29],[60,-2],[61,-20],[121,3],[16,-5],[13,-10],[31,-44],[5,-13],[2,-15],[-4,-12],[-7,-8],[-15,-8],[-22,-7],[-73,-1],[-72,-2],[-36,16],[-12,16],[-49,42],[-30,12],[-90,1],[-89,1],[2,-5],[3,-4],[3,-3],[3,-1],[-49,-11],[-125,0],[-125,0],[-93,-49],[-24,1],[24,-12],[-8,-4],[-16,3],[-7,0],[-5,-4],[-7,-11],[-5,-2],[-14,-1],[-58,13],[-18,-3],[2,-2],[2,-5],[2,-2],[-4,-3],[-4,-2],[-4,0],[-3,0],[1,-3],[2,-8],[1,-4],[-21,-7],[-3,1],[-8,22],[-2,5],[-3,0],[-2,-3],[-4,-3],[-13,0],[-27,7],[-13,0],[-21,-8],[-6,1],[-8,4],[-6,1],[-6,-5],[-7,-10],[-9,-18],[-5,-6],[-6,-4],[-10,-2],[-3,-1],[-1,-5],[0,-7],[0,-8],[-4,-6],[6,-11],[2,-3],[-8,-4],[-21,-23],[-16,-8],[-16,-4],[-19,1],[-9,7],[-6,14],[-7,9],[-18,1],[-7,9],[3,7],[-1,9],[-1,8],[0,4],[19,20],[-12,11],[-14,-2],[-26,-8],[-59,21],[-6,6],[-11,18],[-26,25],[-5,2],[-13,2],[-15,9],[-25,26],[5,7],[12,26],[11,12],[3,7],[-3,13],[-11,12],[-12,-7],[-12,-12],[-11,-5],[-26,9],[-14,1],[-13,-6],[-2,-4],[-4,-11],[-3,-3],[-31,-20],[-7,-1],[10,-6],[5,-13],[4,-17],[7,-15],[5,-7],[4,-8],[7,-18],[4,-7],[15,-9],[-4,-15],[-3,-7],[-3,-5],[7,-6],[25,1],[9,-2],[8,-5],[16,-14],[-7,-12],[-9,-4],[-18,-3],[44,-23],[4,-4],[3,-7],[3,-7],[3,-6],[11,-7],[11,-21],[41,-42],[-80,0],[-79,29],[1,17],[-8,11],[-10,9],[-13,21],[-10,4],[-19,-1],[-5,-1],[-3,-4],[-3,-5],[-4,-4],[-5,-2],[-57,6],[54,-17],[-8,-10],[-4,-6],[-2,-9],[-5,-27],[-8,-6],[-11,-2],[-101,15],[14,-22],[-10,-13],[-90,-42],[30,-18],[-1,-4],[-1,-8],[-1,-4],[10,-9],[-3,-10],[-9,-8],[-11,-3],[6,-16],[10,-5],[23,1],[21,-6],[21,-12],[-6,-10],[-8,-6],[-15,-6],[4,-9],[6,-7],[14,-9],[70,-5],[18,-8],[2,-19],[-6,-5],[-72,9],[-19,10],[-17,0],[-33,-9],[-6,-6],[-5,-13],[-6,-9],[-8,-6],[-47,-10],[-8,-5],[-14,-14],[-7,-4],[-18,-1],[-123,32],[3,-7],[5,-4],[9,-4],[6,-6],[1,-8],[-1,-9],[1,-7],[4,-9],[6,-5],[12,-6],[17,-14],[4,-1],[134,13],[134,12],[-22,-19],[-94,-36],[-94,-36],[-82,-4],[-34,-16],[-47,-8],[11,-3],[24,0],[11,-5],[-8,-12],[-10,-6],[-21,-6],[41,-21],[42,-9],[42,2],[99,36],[11,-1],[25,-20],[47,-10],[46,-25],[16,-1],[130,47],[42,-14],[-6,-6],[-12,-15],[-6,-6],[-121,-31],[-120,-31],[-120,-30],[-121,-31],[-120,-31],[-121,-31],[2,-24],[-15,-15],[-73,-24],[-73,-24],[-10,-8],[5,-15],[18,-5],[77,-2],[4,-3],[8,-8],[3,-1],[120,12],[121,11],[120,11],[120,12],[120,11],[7,-1],[10,-7],[8,-9],[3,-5],[4,-12],[2,-3],[6,-3],[11,2],[5,-2],[7,-6],[17,-23],[-14,-15],[-16,0],[-85,31],[-19,-2],[14,-21],[8,-8],[8,-4],[-14,-10],[-72,-13],[-71,-13],[-17,3],[-21,19],[-8,2],[-32,-11],[-18,-1],[20,-22],[8,-21],[7,-5],[106,-16],[83,20],[83,20],[29,-6],[38,-16],[7,1],[7,4],[8,1],[6,-6],[1,-16],[-2,-5],[-4,-1],[-4,0],[-4,-1],[-2,-6],[-4,-15],[-2,-6],[-6,-6],[-26,-10],[94,-15],[-30,-11],[-100,4],[-100,4],[-100,5],[-33,-9],[-82,2],[-47,15],[-13,-8],[5,-4],[5,-3],[10,-3],[-7,-5],[-14,-16],[-8,-6],[9,-6],[61,14],[118,-11],[119,-12],[-1,-3],[-1,-7],[-1,-3],[79,-14],[-44,-19],[-6,2],[-10,7],[-6,-2],[7,-11],[10,-3],[44,6],[5,-2],[16,-12],[-7,-12],[-100,-9],[16,-11],[5,-8],[-2,-1],[-4,-3],[-2,-1],[15,-12],[49,-18],[-14,-16],[-65,4],[60,-23],[10,-9],[6,-10],[-14,-6],[-43,4],[74,-19],[57,4],[17,-15],[-62,-16],[-109,20],[-110,20],[7,-12],[10,-7],[19,-9],[7,-6],[14,-16],[7,-4],[70,-14],[3,1],[-9,-5],[-53,-1],[-10,-6],[-1,-14],[-15,-12],[12,-7],[14,0],[27,10],[108,11],[51,-17],[-23,-18],[-8,-4],[-33,-3],[12,-7],[-9,-12],[11,-7],[11,3],[24,11],[121,14],[19,-16],[-7,-15],[-7,-8],[-128,-35],[81,-6],[81,-7],[-6,-4],[-18,-4],[16,-12],[120,-8],[-11,-6],[-12,-3],[19,-8],[69,-12],[69,-13],[0,-3],[-1,-7],[0,-3],[15,-5],[-23,-4],[6,-3],[11,-9],[19,-1],[12,-3],[-64,-26],[23,-6],[-33,-9],[-32,-1],[9,-8],[8,-5],[8,-2],[86,8],[36,-7],[-1,2],[-1,6],[-1,2],[10,11],[14,5],[14,-2],[15,-13],[18,-5],[13,-8],[12,-13],[-17,-8],[-17,-4],[-70,4],[-8,-2],[-24,-13],[14,-6],[51,5],[15,-3],[14,-9],[24,-4],[-9,-6],[-10,-1],[-18,2],[47,-30],[49,-14],[-6,-3],[-6,-6],[109,-30],[-9,-6],[-28,-2],[21,-11],[66,-4],[-10,-8],[-33,-3],[81,-26],[-9,-15],[-12,-9],[-127,-16],[-127,-16],[-127,-16],[-127,-17],[-127,-16],[-127,-16],[-127,-16],[14,-17],[15,-14],[16,-10],[16,-6],[110,1],[110,1],[110,1],[110,1],[16,9],[8,2],[67,-6],[46,-26],[41,-8],[4,1],[7,12],[6,4],[82,-18],[-10,20],[-24,17],[-42,20],[32,14],[129,17],[129,17],[129,17],[16,-10],[42,-14],[96,-8],[34,-24],[16,-19],[8,-6],[34,-10],[-6,-9],[-17,-4],[-4,-6],[-6,-19],[-13,-10],[-14,-3],[-11,0],[19,-16],[102,-14],[102,-14],[22,7],[11,-1],[84,-35],[-20,-23],[-7,-5],[4,-1],[5,-3],[9,-9],[6,-4],[6,-2],[11,-1],[91,15],[111,-35],[10,-7],[2,-9],[-5,-8],[-37,-23],[-9,-2],[67,-15],[-11,-12],[-6,-4],[-79,-2],[13,-8],[97,-7],[0,-10],[-2,-7],[-3,-6],[-4,-4],[31,-8],[22,-11],[11,-2],[23,4],[42,18],[43,32],[21,6],[131,-23],[9,-4],[-2,-1],[-3,-4],[-3,-5],[-1,-4],[3,-15],[12,-10],[35,-12],[9,-9],[18,-23],[-2,-1],[-10,-13],[-8,-8],[-9,-4],[-96,2],[-95,2],[29,-23],[98,-7],[-9,-8],[-24,-11],[-73,10],[-74,10],[-6,-2],[-18,-9],[-14,-2],[-71,19],[-71,18],[-66,-4],[7,-11],[9,-5],[136,-24],[135,-24],[-22,-13],[9,-13],[13,-5],[36,-5],[34,9],[15,-7],[5,0],[32,7],[14,-3],[12,-6],[14,-13],[4,-3],[8,-1],[101,18],[100,17],[4,-1],[2,-5],[1,-5],[2,-5],[3,-4],[-4,-8],[-9,-14],[-4,-8],[9,-7],[19,-8],[21,-2],[5,2],[5,6],[3,7],[3,4],[4,2],[4,0],[-12,10],[4,3],[5,12],[3,2],[132,-21],[-12,-5],[2,-5],[4,-3],[3,-2],[4,1],[-2,-3],[-2,-6],[-2,-3],[12,-9],[26,-12],[50,-4],[3,1],[2,4],[5,10],[3,2],[79,6],[3,2],[1,6],[0,5],[2,2],[16,2],[106,-13],[18,-11],[35,-4],[26,-11],[21,-3],[6,-3],[-21,-11],[-21,-6],[-69,-2],[-70,-2],[6,-4],[7,-2],[14,-1],[-12,-9],[7,-4],[91,8],[103,-18],[8,-4],[16,-11],[48,-5],[-6,-8],[-7,-4],[-13,-3],[50,-8],[-9,-7],[-9,-5],[-19,-5],[24,-18],[27,0],[75,24],[126,5],[114,-26],[24,-12],[-1,-2],[-1,-7],[-1,-3],[29,-5],[58,7],[28,-8],[-11,-17],[-109,-38],[33,-13],[118,2],[10,7],[4,1],[8,-2],[4,-2],[7,-7],[3,-1],[94,10],[93,10],[94,10],[41,-23],[89,-20],[-18,-15],[-60,-17],[8,0],[22,-14],[9,-2],[104,13],[129,-14],[129,-14],[129,-14],[129,-15],[23,-9],[-16,-4],[15,-7],[72,-7],[72,-7],[7,-4],[12,-12],[5,-1],[52,16],[34,-2],[-34,-20],[21,-14],[24,-3],[59,7],[25,-7],[135,-8],[110,-43],[10,-9],[-26,-11],[-26,-5],[27,-12],[-99915,-12]],[[96572,4202],[0,-1],[0,-1],[1,-1],[-24,-33],[-23,-23],[-25,-14],[-32,-2],[-96,18],[-12,-3],[-48,-29],[-115,-20],[-34,7],[-15,7],[-12,11],[-17,43],[-14,51],[17,12],[13,4],[11,-5],[9,-13],[40,0],[95,-29],[34,-23],[6,-6],[76,33],[78,57],[17,28],[13,9],[15,2],[15,-6],[11,-16],[1,-15],[4,-16],[11,-26]],[[95447,6146],[11,-2],[6,-7],[4,-9],[2,-11],[-10,-13],[-9,1],[-7,10],[-2,14],[3,6],[2,3],[1,3],[-1,5]],[[95500,6237],[59,52],[72,31],[8,-2],[-3,-3],[-8,-8],[-3,-4],[-2,-7],[-2,-7],[-2,-6],[2,-4],[0,-4],[1,-3],[-43,3],[-14,-6],[6,-7],[0,-13],[-4,-11],[-4,-3],[10,-7],[9,-8],[2,-10],[-8,-13],[-10,-4],[-32,-5],[17,-9],[14,-11],[-16,-20],[2,0],[2,-1],[1,-1],[2,-1],[-7,-9],[-5,-3],[-3,0],[-2,2],[0,3],[0,4],[0,3],[-1,7],[-1,2],[-2,2],[-10,4],[-7,1],[-2,-3],[0,-2],[2,-4],[-9,0],[-9,3],[-9,9],[-3,2],[1,1],[2,2],[1,2],[1,3],[-8,2],[-3,2],[-3,4],[-1,4],[-2,11],[-1,4],[-6,13],[-1,2],[8,6],[27,9],[-3,6]],[[95371,8793],[3,4],[13,13],[16,4],[17,-4],[14,-11],[-14,-8],[-47,-10],[-10,5],[3,1],[2,2],[2,2],[1,2]],[[95788,10590],[-1,-14],[6,-7],[8,-7],[7,-10],[4,-16],[-3,-14],[-7,-13],[-12,-14],[2,-2],[1,-2],[2,-2],[3,-3],[-16,-21],[-16,-12],[-16,2],[-13,17],[0,9],[-1,7],[-3,8],[-3,6],[8,9],[6,15],[4,18],[0,19],[-2,8],[-5,17],[-3,6],[0,3],[1,4],[1,3],[1,2],[-4,20],[0,11],[5,2],[10,-7],[31,-34],[5,-8]],[[95358,10887],[1,-28],[-13,5],[-16,20],[-10,18],[-20,60],[0,1],[0,1],[-1,1],[10,11],[15,-1],[15,-8],[10,-8],[1,-9],[1,-5],[0,-5],[-3,-9],[10,-7],[6,-2],[-1,-1],[1,0],[-1,-1],[0,-1],[1,0],[-8,-8],[5,-13],[2,-4],[0,-1],[1,0],[-5,-4],[-1,-2]],[[37485,14520],[-7,10],[-2,1],[3,8],[1,7],[1,17],[1,-3],[9,-12],[1,-3],[0,-6],[0,-6],[2,-5],[1,-2],[3,-3],[2,-1],[-3,-5],[-4,-1],[-5,2],[-3,2]],[[33531,2968],[2,-3],[-6,-2],[-5,1],[-9,7],[-8,2],[-55,-6],[-4,-1],[-2,-2],[-1,-4],[-2,-6],[-2,-7],[-1,-5],[0,-3],[2,-3],[4,0],[2,-1],[2,-3],[2,-6],[1,-3],[-6,-2],[-11,3],[-6,-5],[-3,-6],[-5,-12],[-4,-4],[-5,-1],[-5,0],[-6,-2],[-4,-10],[0,-2],[0,-5],[-1,-2],[0,-2],[-2,-3],[0,-2],[0,-11],[4,-6],[11,-4],[-12,-3],[-4,-3],[-1,-3],[-1,-2],[1,-9],[-1,-12],[-4,-15],[-5,-13],[-5,-7],[10,-3],[35,10],[4,3],[3,3],[2,5],[-2,4],[-2,3],[5,4],[6,1],[11,-1],[3,-2],[6,-5],[3,-2],[2,0],[4,3],[4,0],[11,-1],[-2,-3],[-4,-7],[-4,-8],[0,-5],[-17,-7],[-5,1],[-1,2],[-1,4],[-1,1],[-2,0],[-3,0],[-3,-1],[-2,-2],[-3,-8],[-2,-2],[-26,-16],[-26,-4],[-4,-2],[-3,-5],[-2,-8],[-5,-22],[25,-6],[22,9],[7,0],[7,-3],[-5,-11],[-2,-3],[-2,-2],[-7,-4],[-9,-9],[-8,-11],[-7,-15],[-3,-4],[-75,-50],[-75,-51],[-81,-26],[-130,14],[-130,14],[-130,14],[-130,14],[-121,53],[-7,10],[-1,13],[2,6],[3,5],[1,6],[-2,7],[-4,5],[-14,8],[-4,4],[-1,3],[0,13],[-1,9],[-3,6],[-4,5],[-16,9],[-90,-4],[-90,-4],[-4,-3],[-3,-3],[-6,-9],[-3,-5],[-4,-2],[-4,-2],[-70,-5],[-10,-6],[2,-1],[2,-2],[1,-2],[1,-3],[-9,-11],[-2,-7],[3,-11],[-1,-4],[-12,-7],[-18,-3],[-134,40],[-135,40],[-134,40],[-134,40],[-134,40],[-14,11],[-2,3],[-3,6],[-2,13],[-2,6],[-2,2],[-2,2],[-1,3],[-1,4],[2,12],[8,11],[53,37],[68,5],[15,4],[3,0],[-1,7],[4,3],[5,0],[8,-1],[4,-3],[4,-4],[4,-6],[-1,-5],[-4,-6],[-7,-8],[1,-3],[5,-10],[-7,-13],[-3,-11],[-1,-4],[7,-14],[10,-8],[69,-22],[129,1],[128,2],[129,2],[129,2],[128,1],[129,2],[129,2],[128,2],[129,1],[73,29],[73,28],[8,10],[3,2],[-73,1],[-19,5],[-5,4],[-3,3],[-3,8],[-2,4],[-4,4],[-23,14],[-1,3],[0,3],[1,2],[2,2],[1,3],[0,8],[-5,5],[-11,7],[-2,4],[-4,11],[-2,4],[-4,5],[-13,10],[-3,5],[0,4],[3,3],[5,2],[8,2],[25,1],[-3,1],[-8,12],[114,1],[6,3],[2,4],[6,10],[1,4],[-3,3],[-18,17],[-44,19],[-13,11],[-2,1],[8,4],[8,3],[96,4],[7,25],[19,15],[132,45],[132,44],[10,-2],[-1,-6],[-3,-6],[-3,-5],[-3,-3],[-2,-1],[-5,0],[-2,0],[-12,-6],[-21,0],[-72,-19],[23,-12],[81,-3],[81,-4],[6,-3],[-3,-8],[-4,-7],[-4,-6],[-4,-4],[4,-4],[6,-2],[5,0],[13,5],[9,-5],[17,-14],[-35,10],[-14,0],[-6,-2],[-5,-5],[-3,-8],[3,-10],[-1,-1],[-1,-3],[-1,-1],[6,-11],[10,-2],[11,3],[8,5],[3,4],[5,1],[15,-1],[6,-3],[8,-9],[-26,0],[-4,-4],[2,-5],[2,-3],[5,-4],[2,-3],[3,-8],[2,-3],[-9,-3],[-3,1],[-3,2],[-8,10],[-4,2],[-5,1],[-15,-5],[-2,-4],[0,-7],[-3,-4],[2,-6],[8,-11],[1,-3],[9,-12],[3,-6],[1,-7],[-2,-8],[-4,-3],[-38,-7],[-7,-5],[11,-15],[3,-2],[3,-2],[105,2],[24,-10],[4,-4],[-3,-7],[-5,-5],[-9,-8],[32,5],[5,0],[4,-3],[0,-1],[0,-4],[1,-2],[1,0],[11,-1],[0,-3],[-1,-2],[-1,-2],[-1,-2],[3,-9]],[[31625,3313],[81,15],[11,-3],[8,-10],[-7,-2],[-34,-19],[-8,0],[-7,3],[-1,0],[-1,4],[-1,1],[-2,0],[-69,-16],[-111,8],[-6,-2],[-6,-3],[15,-13],[17,-7],[87,-12],[44,-26],[27,-5],[90,13],[11,-4],[14,-10],[8,-4],[5,3],[-1,-3],[-6,-7],[5,-2],[3,-3],[2,-3],[-6,-3],[-84,-10],[-8,-5],[-1,0],[7,-6],[96,-20],[4,-2],[3,-4],[1,-7],[0,-6],[-1,-5],[1,-6],[2,-4],[4,-3],[8,-4],[-4,0],[-13,-7],[-60,-16],[-4,-3],[-3,-4],[-7,-9],[-5,-6],[-119,-35],[-24,4],[-23,12],[2,5],[1,1],[-1,5],[-2,2],[-3,3],[-3,2],[17,8],[5,0],[-2,9],[-4,8],[-5,7],[-5,4],[-7,5],[-84,14],[-13,10],[-57,-1],[-10,5],[-5,9],[7,13],[43,32],[3,4],[5,11],[2,3],[-17,-4],[-17,3],[-105,46],[-105,46],[-20,26],[-4,3],[-8,1],[-8,5],[-2,12],[4,7],[6,5],[27,7],[8,-1],[7,-4],[-1,-1],[-7,-9],[18,4],[15,-4],[12,2],[20,-11],[73,0],[74,0],[2,1],[-4,-4],[-14,-7],[25,-1],[4,-2],[11,-7],[23,-10],[83,-3],[84,-3]],[[41071,3293],[-7,-5],[-91,-2],[-29,7],[20,4],[12,6],[-3,2],[-7,0],[-10,8],[-2,0],[7,3],[14,-2],[7,1],[4,3],[0,3],[0,4],[1,8],[1,2],[3,5],[1,2],[-1,7],[-2,3],[-2,3],[-3,4],[9,1],[18,10],[18,6],[20,1],[80,-26],[6,-6],[-3,-15],[-11,-7],[-63,-6],[-4,-4],[-1,-9],[2,-8],[5,-4],[11,1]],[[31046,3515],[26,11],[5,4],[8,11],[4,5],[17,5],[112,8],[77,-14],[77,-15],[3,-2],[-6,-11],[-7,-6],[-28,-15],[-5,0],[-2,1],[-8,5],[-6,0],[-17,-10],[-49,-43],[3,-4],[5,-3],[39,-7],[8,-3],[6,-7],[-1,-2],[-4,-5],[4,-3],[14,0],[-4,-4],[-20,-7],[-13,-10],[-13,-6],[-12,-3],[-129,10],[-128,11],[-17,14],[-27,2],[-6,4],[3,7],[7,6],[9,6],[137,23],[138,24],[12,10],[-9,4],[-48,-1],[-6,2],[-2,2],[-2,3],[0,3],[2,4],[-2,-1],[-25,-5],[-14,5],[-116,-27],[-45,0],[-4,2],[8,7],[51,15]],[[31191,3604],[3,1],[27,-1],[-80,-14],[-81,-14],[-12,9],[53,20],[87,9],[9,-3],[-6,-7]],[[40578,3500],[-19,-22],[-24,-7],[-122,6],[-123,6],[-123,6],[-123,7],[-123,6],[-123,6],[-33,23],[-26,46],[15,-6],[45,-43],[31,-4],[6,-2],[-4,9],[-5,9],[-6,8],[-5,5],[114,16],[113,16],[16,9],[28,27],[16,8],[35,2],[137,-35],[137,-35],[137,-35],[29,-26]],[[29003,3828],[23,14],[16,3],[15,-7],[-1,0],[0,-1],[0,-1],[1,0],[-14,-10],[-6,-6],[-2,-8],[-7,-3],[-5,-4],[-2,-5],[-1,-7],[2,-4],[9,-10],[2,-7],[-3,-6],[-6,-2],[-11,1],[-14,6],[-7,5],[-6,8],[-3,13],[5,13],[8,11],[7,7]],[[31462,4015],[-9,-5],[-30,-5],[-50,-21],[1,-2],[8,-10],[-9,-8],[-29,-15],[-29,-30],[-10,-8],[-11,-4],[-4,-3],[-4,-4],[-5,-12],[-3,-4],[-108,-65],[-107,-64],[-108,-64],[-107,-64],[-5,-7],[0,-2],[1,-5],[0,-3],[-4,-7],[-7,-5],[-82,-42],[-3,-4],[-2,-4],[-3,-9],[-2,-4],[-8,-11],[-29,-16],[-37,-45],[-2,-3],[-2,-7],[-2,-3],[-3,-4],[-10,-5],[5,-3],[12,-1],[22,4],[6,-2],[-77,-16],[-11,-10],[6,-6],[36,-11],[6,-3],[17,-16],[7,-4],[19,-4],[-55,-5],[-4,-2],[-3,-4],[-3,-4],[-2,-5],[24,-22],[-96,-27],[-97,-28],[-102,9],[-102,8],[-102,9],[-32,18],[-31,25],[-30,33],[-7,14],[-2,7],[-1,6],[0,15],[3,15],[5,14],[5,12],[4,35],[18,38],[25,36],[57,58],[111,64],[112,64],[50,2],[13,6],[25,19],[123,24],[38,28],[24,4],[9,4],[29,22],[6,6],[4,3],[118,40],[119,39],[118,40],[119,39],[29,22],[13,7],[81,19],[82,19],[72,-8],[19,-9],[16,-16],[-6,-10],[-9,-5],[-49,-15],[-10,-9],[11,-5],[11,-2],[4,1],[4,1],[4,1],[4,-4]],[[35411,2974],[34,9],[127,77],[127,76],[40,36],[77,39],[40,40],[104,56],[39,40],[14,9],[19,6],[6,5],[2,8],[4,17],[4,8],[-5,9],[-3,2],[1,3],[0,2],[0,3],[1,3],[-9,10],[-12,7],[-8,10],[5,19],[-15,21],[-20,11],[-70,18],[-8,-2],[25,25],[30,48],[12,14],[4,5],[1,8],[-3,12],[3,10],[7,34],[1,10],[-6,12],[-18,6],[-6,9],[12,8],[38,9],[13,10],[12,13],[11,16],[10,19],[-30,-4],[-16,4],[-14,12],[45,53],[-4,1],[-7,-1],[-4,2],[-11,14],[-1,3],[7,4],[15,3],[6,4],[4,9],[5,21],[3,10],[5,7],[41,35],[4,6],[7,15],[4,6],[9,9],[21,12],[86,74],[85,75],[8,13],[1,4],[0,12],[3,7],[4,5],[29,22],[4,9],[-10,6],[8,10],[10,6],[129,40],[128,40],[129,40],[128,40],[120,-9],[119,-9],[119,-9],[11,-7],[128,-42],[128,-42],[127,-42],[97,-61],[97,-61],[14,-15],[10,-23],[4,-33],[-2,-16],[-4,-12],[-12,-19],[-5,-10],[-8,-24],[-20,-47],[-5,-7],[-12,-4],[-111,-12],[-110,-11],[-111,-12],[-40,-11],[-14,-8],[35,-25],[-40,-30],[20,-14],[22,-5],[137,4],[137,3],[137,4],[7,-5],[44,-43],[15,-19],[11,-25],[5,-19],[4,-30],[0,-28],[-7,-15],[14,6],[6,1],[7,-1],[4,-4],[10,-17],[30,-13],[14,-13],[4,-1],[-15,-4],[-45,-30],[11,-17],[44,-28],[13,-11],[10,-13],[0,-4],[1,-5],[2,-6],[1,-5],[4,-6],[14,-12],[5,-6],[3,-6],[2,-7],[2,-8],[1,-8],[1,-8],[1,-17],[-7,-115],[-6,-42],[-9,-38],[-16,-35],[-18,-25],[-19,-16],[-21,-5],[-87,14],[-73,-19],[1,0],[1,-1],[-1,0],[-1,0],[106,-58],[11,-8],[4,-13],[-8,-20],[-22,-21],[-133,-22],[-132,-22],[-132,-22],[-132,-22],[-133,-23],[-132,-22],[-132,-22],[-132,-22],[-132,-22],[-133,-22],[-132,-22],[-132,-22],[-132,-23],[-7,-5],[-4,-7],[0,-9],[2,-11],[3,-1],[11,-12],[1,-3],[-28,-14],[-135,-6],[-134,-5],[-135,-6],[-135,-6],[-135,-5],[-134,-6],[-135,-6],[-135,-5],[-134,-6],[-27,13],[-9,10],[-16,33],[-4,6],[-10,12],[-3,7],[-1,14],[0,16],[2,17],[3,13],[3,9],[4,8],[2,8],[-4,12],[29,24],[15,9],[15,-5],[5,-9],[3,-10],[4,-4],[7,6],[4,9],[5,20],[3,10],[9,13],[64,65],[56,76],[46,23],[-2,7],[-2,5],[-2,4],[-4,3],[14,32],[18,0],[36,-32],[17,-9],[18,-3],[55,3],[54,19],[25,22],[54,31],[17,1],[13,-5],[6,-10],[-2,-14],[-11,-16],[-41,-38],[-13,-3],[1,-1]],[[36317,4352],[-37,-4],[-7,1],[-8,8],[-2,1],[6,6],[26,14],[97,27],[39,23],[9,4],[9,-1],[9,-5],[-6,-1],[-132,-69],[-3,-4]],[[44342,6394],[-1,-5],[-1,-5],[-1,-4],[-7,-16],[-3,-5],[-4,-3],[-14,-6],[-14,-2],[-77,16],[-10,8],[-6,14],[-1,4],[1,8],[0,5],[-2,5],[-5,16],[-20,81],[-6,16],[-8,14],[-14,14],[-17,12],[-49,22],[-115,10],[-85,-15],[-6,5],[41,38],[77,11],[78,12],[28,13],[25,18],[21,22],[17,25],[-1,27],[20,44],[4,28],[10,15],[10,11],[11,8],[46,16],[2,2],[1,4],[1,5],[-1,5],[-1,3],[8,-4],[8,-7],[7,-9],[7,-11],[5,-12],[2,-10],[-1,-11],[-4,-12],[-3,-14],[2,-12],[9,-20],[-13,-15],[-6,-10],[-5,-11],[0,-6],[1,-7],[1,-7],[-7,-17],[0,-10],[2,-10],[1,-12],[-2,-12],[-5,-5],[-5,-5],[-4,-7],[-1,-5],[0,-10],[0,-5],[-2,-8],[-3,-8],[-3,-7],[-3,-6],[8,-15],[15,-38],[8,-17],[43,-52],[7,-14],[6,-17],[3,-19],[0,-19]],[[29493,7009],[6,8],[6,8],[7,2],[6,-8],[-3,-5],[-4,-5],[-4,-4],[-4,-2],[-2,0],[-7,3],[-1,3]],[[30056,7108],[-16,-15],[-18,-8],[-19,0],[-17,9],[-13,17],[4,12],[14,6],[14,2],[26,-5],[13,-7],[12,-11]],[[29476,7167],[52,12],[13,-1],[14,-5],[17,-12],[5,0],[-42,-44],[-5,-7],[-4,-12],[1,-1],[2,-6],[2,-8],[0,-7],[-2,-5],[-4,-6],[-14,-13],[-22,-12],[-15,-18],[-5,-5],[-6,0],[-7,2],[-6,1],[-6,-7],[0,-11],[-4,-5],[-6,0],[-5,3],[-2,6],[-1,7],[-1,8],[2,8],[-23,17],[-4,10],[0,4],[1,3],[1,4],[0,6],[6,4],[35,12],[-4,2],[-8,13],[-5,4],[5,1],[16,0],[22,7],[6,6],[4,4],[2,4],[0,8],[-2,4],[-3,3],[-4,5],[4,17]],[[20920,7181],[14,-12],[13,-8],[10,-9],[6,-17],[-27,-22],[-33,-4],[-31,7],[-24,12],[-15,13],[-10,14],[-17,32],[-6,14],[-6,25],[-4,9],[26,30],[13,8],[16,-1],[6,-5],[15,-23],[54,-63]],[[25030,7306],[3,7],[3,5],[5,4],[6,2],[12,3],[60,-8],[46,-19],[21,-19],[-8,-11],[-33,-18],[-9,-12],[-13,-32],[-8,-12],[-13,-8],[-16,-4],[-30,-1],[-55,15],[-38,-16],[-24,6],[-21,21],[-12,36],[15,28],[19,-2],[34,-25],[12,0],[12,6],[12,11],[9,16],[11,27]],[[29209,7317],[95,-9],[54,-23],[25,-42],[-5,-17],[-41,-49],[-3,-9],[-3,-20],[-2,-9],[-5,-9],[-19,-15],[-2,-26],[-52,-15],[-17,-16],[11,-3],[35,0],[10,-5],[6,-8],[1,-14],[-6,-19],[14,-4],[7,-5],[5,-8],[5,-11],[22,-16],[-6,-11],[-6,-27],[-4,-14],[-6,-11],[-7,-9],[-15,-14],[-21,-5],[-118,53],[-119,53],[-119,53],[-43,37],[-6,13],[-17,49],[-3,12],[6,21],[8,14],[10,9],[50,22],[31,-6],[62,-33],[30,4],[-13,19],[8,12],[17,5],[77,-6],[16,8],[-1,1],[0,1],[1,0],[-48,20],[-55,2],[-26,7],[-56,40],[-16,15],[-4,2],[22,9],[34,5],[5,-1],[4,6],[26,20],[12,3],[30,2],[97,-27],[28,-1]],[[23958,7304],[0,-10],[-6,-8],[-12,-4],[-13,-1],[-38,5],[-20,10],[-16,17],[17,28],[23,4],[46,-22],[13,-10],[4,-5],[2,-4]],[[22741,7420],[25,18],[28,3],[53,-15],[-23,-20],[-30,-5],[-30,6],[-23,13]],[[24749,7345],[-4,-8],[-4,-9],[7,6],[13,1],[20,-3],[8,-6],[5,-8],[3,-12],[2,-16],[-4,-20],[-7,-20],[-16,-33],[-27,-39],[-30,-29],[-50,-26],[-51,-11],[-33,9],[-5,3],[11,40],[2,24],[1,7],[-1,6],[4,17],[2,35],[2,14],[9,5],[9,8],[14,19],[-54,67],[-8,16],[-17,52],[-13,22],[-6,13],[83,35],[96,5],[36,-12],[14,-10],[13,-14],[10,-20],[6,-36],[-8,-28],[-32,-44]],[[24067,7487],[9,11],[14,9],[16,2],[16,-3],[14,-7],[-6,-20],[-8,-13],[-11,-7],[-10,-5],[-11,-1],[-11,4],[-11,7],[-10,9],[9,14]],[[33118,7497],[-7,-8],[-8,-5],[-33,-8],[-6,4],[4,12],[10,15],[2,3],[19,-3],[19,-10]],[[23752,7521],[1,-7],[0,-3],[1,-4],[21,-30],[3,-6],[-30,-15],[-96,-14],[-97,-13],[-20,15],[1,10],[7,12],[13,16],[9,4],[99,28],[63,39],[9,1],[8,-2],[5,-6],[2,-7],[1,-18]],[[45503,7481],[16,-25],[6,-16],[2,-17],[-27,-13],[-27,1],[-24,11],[-17,15],[-12,25],[-9,31],[1,30],[12,23],[17,14],[5,2],[8,-1],[7,-4],[7,-5],[6,-9],[29,-62]],[[30402,7699],[29,-4],[8,-6],[-33,-24],[-18,-1],[-14,18],[12,11],[7,4],[9,2]],[[33261,7709],[6,16],[14,1],[15,-10],[7,-18],[-5,-17],[-15,-2],[-16,10],[-6,20]],[[46483,7795],[26,-25],[12,-16],[9,-23],[-21,-17],[-24,-2],[-25,9],[-38,24],[-12,13],[-8,17],[-5,22],[20,32],[24,1],[24,-16],[18,-19]],[[23472,7643],[20,-11],[-3,-12],[-12,-14],[-9,-14],[-67,-21],[-74,1],[-21,-15],[13,3],[17,-8],[13,-19],[0,-26],[-13,-17],[-18,-5],[-76,6],[-77,7],[-14,9],[-9,11],[-7,6],[-7,-2],[-10,-12],[-4,-15],[-19,-7],[-22,-1],[-53,11],[-12,8],[-6,9],[-6,8],[-5,5],[-8,2],[-94,-30],[-136,-4],[-137,-5],[-25,18],[13,8],[9,11],[16,27],[-120,-10],[-119,-10],[-20,22],[18,20],[42,11],[18,20],[-80,0],[-81,1],[-35,24],[-25,7],[-44,24],[-18,6],[-34,-9],[-14,1],[-10,15],[-111,13],[-111,14],[-110,14],[-22,14],[-10,2],[-49,-18],[-18,0],[-60,17],[-31,22],[-8,37],[5,17],[8,11],[52,26],[115,14],[114,14],[115,14],[115,14],[54,31],[30,3],[29,-13],[23,-30],[-13,-23],[-17,-6],[-74,-7],[-20,-8],[-17,-18],[119,15],[22,-3],[22,-11],[-10,-20],[2,-9],[10,-2],[31,5],[8,5],[8,10],[16,36],[10,10],[14,4],[13,0],[27,-7],[55,-32],[45,-44],[12,-7],[49,-5],[24,-8],[14,-1],[14,5],[-31,47],[-11,10],[-48,19],[-40,29],[-14,3],[8,16],[10,11],[22,10],[11,9],[25,38],[7,5],[8,3],[82,2],[76,-30],[76,-31],[-16,-33],[-20,-18],[-49,-17],[7,-20],[3,-5],[3,-5],[4,-11],[-4,-5],[-6,-11],[-5,-5],[-7,-29],[-3,-5],[-9,-11],[15,0],[7,4],[30,33],[9,6],[17,3],[21,-4],[40,-19],[-5,-3],[-23,-25],[35,1],[17,12],[3,29],[-5,13],[-8,4],[-8,2],[-7,7],[-3,17],[3,24],[4,20],[3,8],[-17,13],[13,9],[29,7],[38,-3],[31,-12],[5,1],[-42,-25],[60,-22],[12,4],[-7,-20],[-6,-12],[-8,-8],[-42,-22],[-7,-7],[8,-6],[6,-8],[10,-23],[4,-6],[12,-13],[22,-10],[24,18],[23,34],[17,34],[7,18],[6,20],[9,42],[10,30],[16,18],[19,7],[18,1],[9,-3],[25,-13],[104,15],[22,-5],[20,-10],[40,-32],[-9,-33],[-5,-15],[-7,-11],[-8,-5],[-9,-1],[-61,12],[-24,-6],[28,-24],[7,-1],[-16,-13],[-16,-8],[-34,-9],[-106,-64],[24,-20],[26,-10],[27,1],[79,42],[135,29],[60,52],[22,5],[18,-17],[-27,-10],[-8,-6],[1,0],[0,-1],[59,-28],[-10,-15],[-14,-10],[-14,-7],[-82,-8],[-82,-8],[-29,-13],[-12,-9],[-10,-11],[1,0],[0,-1],[17,-3],[86,23],[18,-1],[15,-11],[16,-24],[7,-5],[8,-3],[16,-1],[55,12],[15,-2]],[[33186,8392],[-25,-7],[-38,8],[-37,18],[-19,25],[12,21],[28,15],[34,4],[29,-9],[13,-17],[7,-23],[0,-21],[-4,-14]],[[29191,8409],[-113,-23],[-113,-23],[-113,-22],[-59,9],[-17,9],[-8,7],[-5,6],[-4,9],[-18,57],[-3,5],[20,27],[24,19],[76,30],[127,18],[126,18],[19,12],[15,17],[10,21],[2,13],[0,28],[1,9],[8,9],[13,4],[14,1],[13,-5],[10,-9],[41,-56],[22,-55],[8,1],[21,18],[6,7],[1,56],[-5,37],[5,10],[21,1],[20,-7],[19,-12],[21,-21],[5,-4],[15,-5],[-13,37],[-3,6],[8,12],[8,7],[9,3],[9,0],[42,-13],[74,-59],[20,-28],[-3,-19],[-17,-15],[-109,-60],[-108,-59],[-71,-14],[-71,-14]],[[33212,8661],[-3,-15],[-6,-10],[-21,-19],[-48,-23],[-27,-3],[-12,4],[-8,5],[-6,8],[-21,39],[0,6],[2,8],[2,7],[1,1],[-2,8],[0,7],[1,6],[4,6],[15,10],[18,5],[74,3],[18,-6],[14,-14],[2,-5],[3,-20],[0,-8]],[[49047,8696],[-13,5],[-5,3],[-4,6],[4,20],[9,13],[19,21],[27,44],[10,10],[32,19],[43,12],[43,-1],[32,-19],[7,-18],[4,-26],[1,-29],[-2,-21],[-8,-15],[-10,-8],[-23,-7],[-83,-5],[-83,-4]],[[30080,8760],[0,2],[0,1],[0,2],[0,1],[-4,7],[-5,5],[-4,7],[-2,11],[0,4],[1,7],[0,4],[-1,4],[-1,4],[-13,20],[23,16],[14,3],[4,-19],[22,-1],[24,13],[26,6],[25,-19],[-6,-15],[-8,-17],[-10,-15],[-36,-35],[-19,-8],[-11,-1],[-11,3],[-8,10]],[[30342,8835],[1,12],[1,11],[4,9],[7,5],[6,1],[6,-1],[7,-3],[6,-5],[-3,-4],[-2,-4],[-1,-5],[0,-6],[1,-4],[3,-5],[0,-3],[-3,-7],[-5,-5],[-10,-4],[-10,0],[-10,4],[2,14]],[[33026,9036],[-20,-10],[-19,-4],[-12,2],[-11,5],[-11,8],[-11,12],[2,21],[2,7],[2,7],[4,6],[3,4],[4,4],[10,5],[12,-1],[21,-9],[10,-7],[5,-5],[4,-7],[2,-6],[1,-3],[0,-4],[0,-3],[-1,-4],[0,-3],[0,-4],[3,-11]],[[29032,8935],[-58,13],[-26,19],[-13,38],[8,13],[3,20],[4,22],[15,19],[34,16],[103,13],[-2,3],[-9,22],[-4,4],[-4,2],[-25,-1],[-8,3],[-5,11],[132,30],[49,-11],[19,-16],[0,-24],[47,-30],[3,-4],[4,-5],[5,-12],[3,-6],[5,-5],[14,-10],[3,-4],[2,-3],[1,-6],[2,-9],[-3,0],[-10,-7],[-36,-7],[-10,1],[-5,0],[-4,-5],[-2,-8],[0,-8],[2,-8],[3,-8],[3,-5],[11,-11],[-2,-10],[-4,-8],[-5,-6],[-5,-5],[-20,-11],[-13,-14],[-5,-4],[-27,-7],[-85,15],[-85,14]],[[29765,9260],[-9,10],[-22,17],[-7,16],[4,16],[11,15],[26,21],[24,7],[24,-2],[73,-29],[25,-22],[4,-11],[6,-10],[10,-13],[12,-8],[3,-4],[2,-5],[2,-10],[2,-5],[3,-3],[3,-3],[36,-15],[15,-12],[2,-7],[-19,-17],[2,-3],[11,-21],[-9,0],[-9,6],[-21,24],[-9,7],[-4,2],[-3,1],[-3,-1],[-3,-1],[-2,-2],[-2,-6],[1,-3],[3,-3],[1,-5],[0,-6],[-2,-3],[-3,0],[-79,25],[-79,25],[-7,6],[-8,12],[-3,4],[-1,3],[0,3],[-1,10]],[[32845,9338],[3,-6],[2,-7],[1,-6],[0,-4],[-4,-5],[-5,-2],[-10,-1],[2,-12],[-8,-2],[-17,3],[-9,-8],[5,-19],[4,-10],[3,-4],[-3,-3],[-7,-11],[-7,-7],[-2,-5],[5,-12],[2,-2],[-6,-2],[-5,-4],[-2,-8],[2,-14],[-6,-6],[-9,-6],[-12,-2],[-11,2],[-9,7],[-1,5],[2,6],[1,6],[-5,12],[-13,24],[-4,13],[0,5],[1,3],[2,3],[2,3],[1,5],[-1,3],[-2,3],[-1,4],[0,5],[2,8],[0,5],[-4,11],[-19,29],[-12,26],[-44,55],[-11,28],[-8,27],[-11,24],[12,18],[20,7],[23,-1],[52,-22],[28,-24],[12,-15],[8,-18],[44,-46],[12,-6],[-4,-9],[1,-7],[2,-8],[4,-6],[9,-10],[2,-4],[3,-6]],[[30150,7458],[-132,-14],[-132,-13],[-29,21],[1,8],[1,8],[3,6],[2,7],[16,21],[-21,-1],[-11,-3],[-28,-23],[-10,-4],[-10,-1],[-22,8],[-86,72],[-11,12],[-5,13],[3,5],[17,23],[76,54],[40,13],[62,-4],[37,-11],[7,-4],[6,-8],[4,-10],[2,-4],[3,-3],[3,-3],[14,-7],[17,1],[-5,8],[-1,4],[2,6],[2,3],[4,2],[3,1],[10,1],[54,-18],[107,-10],[108,-9],[107,-10],[16,5],[7,3],[1,2],[1,3],[-1,3],[0,2],[0,3],[2,5],[4,2],[8,1],[108,44],[3,3],[6,12],[3,2],[5,2],[2,2],[-19,10],[-33,7],[-4,6],[-3,15],[-10,11],[-13,7],[-13,2],[-77,-22],[-86,-47],[-90,-18],[-51,5],[-40,26],[2,1],[7,9],[-109,36],[4,14],[8,8],[129,21],[128,21],[88,35],[8,5],[2,8],[-1,3],[-4,5],[-2,3],[-1,10],[3,7],[5,6],[4,3],[-4,6],[-19,14],[-9,13],[-6,3],[-6,-1],[-52,-21],[-14,-1],[-14,2],[-38,23],[-25,5],[-25,-4],[-85,-35],[-11,0],[-7,7],[0,3],[-1,6],[0,3],[2,2],[5,2],[2,3],[1,6],[0,7],[-2,18],[-1,2],[-1,1],[-9,-1],[-2,1],[-3,2],[-3,8],[-3,3],[-2,2],[-24,11],[-1,1],[0,3],[-2,5],[-1,2],[0,1],[-33,19],[-8,1],[-7,-5],[2,4],[2,11],[2,5],[-26,19],[1,3],[2,5],[1,3],[-25,6],[-2,-1],[-2,-3],[-1,-8],[-2,-3],[-3,-2],[-10,-5],[-5,-4],[-4,-5],[-2,-8],[2,-10],[-27,-21],[-3,-10],[-25,10],[-9,-1],[-3,-4],[-2,-8],[0,-9],[0,-8],[1,-1],[3,-4],[-2,-8],[-5,-13],[-3,-19],[0,-1],[-8,-15],[-11,-10],[-22,-11],[-24,-5],[-25,2],[-52,17],[-52,28],[-26,9],[-79,-2],[-25,-15],[105,-88],[-79,-49],[-6,-22],[-24,-15],[-31,-10],[-33,1],[-27,17],[-26,46],[-12,13],[-11,2],[-73,-20],[-44,6],[-75,42],[-75,41],[-12,13],[-8,16],[-2,23],[10,21],[15,7],[17,1],[13,5],[-3,11],[20,5],[-3,6],[-5,5],[-11,5],[2,3],[1,3],[1,1],[2,2],[-5,7],[-7,3],[-14,1],[-24,12],[-3,6],[9,15],[14,8],[37,10],[2,10],[6,10],[7,10],[6,5],[12,7],[18,5],[36,-1],[26,-15],[41,-44],[71,-24],[10,0],[18,6],[3,4],[0,9],[-5,6],[-11,8],[-17,17],[3,13],[-1,14],[-5,13],[-8,13],[7,11],[-7,14],[4,14],[15,12],[40,15],[28,0],[75,-43],[18,-19],[9,-14],[49,-34],[15,-23],[18,7],[34,35],[-18,22],[-50,25],[-21,27],[-4,13],[1,13],[4,10],[7,9],[12,7],[50,5],[90,-27],[90,-26],[31,1],[5,2],[5,14],[12,7],[105,-6],[-5,8],[-3,5],[0,6],[2,3],[4,3],[4,1],[2,0],[-39,24],[-81,18],[-80,17],[-44,29],[-20,22],[7,17],[10,8],[41,0],[16,4],[3,3],[6,10],[3,3],[8,3],[71,-7],[38,6],[98,-28],[98,-28],[40,14],[52,40],[4,5],[2,5],[5,12],[2,5],[-5,3],[-6,7],[-4,9],[2,11],[4,4],[5,0],[39,-18],[9,-1],[9,4],[18,14],[8,3],[62,-21],[24,-1],[85,32],[31,-4],[25,-21],[21,-31],[34,-62],[4,-4],[18,-5],[13,0],[2,2],[0,5],[3,0],[8,-3],[0,4],[0,13],[0,2],[2,4],[0,3],[-1,1],[-1,4],[0,1],[1,10],[3,10],[3,9],[5,4],[-8,22],[-2,13],[-1,13],[1,12],[3,9],[9,16],[-5,6],[-1,3],[6,6],[2,4],[1,5],[-2,3],[-14,9],[-5,2],[-3,-2],[-3,-3],[-10,-17],[-2,-4],[-3,-1],[-7,1],[-12,13],[-6,4],[-38,-4],[-4,1],[-12,9],[-53,13],[-83,-8],[-23,7],[-60,32],[-46,6],[-9,7],[-3,3],[-2,5],[-1,5],[-3,14],[-1,3],[-1,3],[-8,5],[4,18],[9,14],[40,39],[3,7],[2,5],[12,13],[4,2],[-6,18],[7,11],[122,40],[123,40],[11,-1],[106,-52],[27,-2],[6,4],[-3,14],[-8,10],[-15,13],[-123,66],[-33,4],[-3,4],[1,3],[1,0],[-3,19],[8,8],[9,2],[4,4],[-1,6],[-1,4],[-2,4],[-3,3],[-10,2],[-67,-19],[-19,1],[-8,5],[-23,22],[-6,3],[-7,1],[-22,-7],[-5,-5],[-1,-9],[0,-1],[2,-4],[0,-1],[-8,-3],[-33,-31],[-6,-2],[-5,5],[-5,0],[-17,-7],[-5,1],[-4,4],[-7,10],[-10,6],[-46,7],[-5,3],[-3,5],[-6,13],[-4,5],[-5,3],[-41,10],[-41,21],[-24,20],[-8,8],[-2,5],[-4,11],[-2,4],[-3,2],[-8,6],[-9,9],[-4,7],[-1,8],[1,5],[10,13],[-5,9],[4,9],[8,8],[5,10],[2,27],[2,2],[-3,4],[-5,5],[-3,4],[-2,6],[0,5],[2,3],[3,2],[-4,8],[-6,9],[-4,8],[4,7],[2,8],[8,7],[33,15],[6,3],[-3,3],[-3,3],[-2,5],[-1,6],[0,3],[3,9],[1,1],[0,14],[5,12],[13,21],[-1,3],[-1,2],[-2,1],[-1,1],[3,11],[2,4],[3,4],[3,3],[10,4],[-5,6],[-15,20],[2,4],[3,3],[3,2],[2,1],[-7,5],[-35,7],[-6,3],[-4,7],[-3,4],[-21,6],[-7,6],[-3,7],[-5,2],[-28,-1],[-5,3],[13,4],[3,6],[-4,10],[-24,27],[-4,4],[4,9],[6,22],[5,7],[-3,3],[-14,22],[-7,7],[-3,6],[1,9],[3,9],[5,7],[34,38],[9,18],[0,3],[85,28],[84,29],[109,0],[25,10],[5,11],[9,6],[76,6],[36,13],[9,1],[10,-4],[24,-30],[43,-15],[15,-16],[2,-7],[1,-7],[0,-14],[1,-9],[2,-7],[5,-13],[-10,-8],[-1,-1],[8,-28],[2,-4],[10,-9],[11,-14],[-9,-2],[-9,-5],[-4,-3],[-2,-4],[-4,-11],[12,-6],[5,-6],[3,-11],[0,-10],[-2,-1],[-4,1],[-4,-3],[0,-3],[1,-7],[0,-3],[-1,-3],[-1,-3],[-4,-4],[-4,-4],[-5,-1],[-5,1],[-4,4],[10,-20],[4,-4],[-1,-2],[-4,-12],[9,5],[9,2],[48,-9],[29,10],[8,-4],[10,-13],[39,-72],[4,-5],[3,-3],[0,-5],[0,-2],[-4,-7],[10,-19],[9,-10],[2,-3],[0,-6],[0,-5],[-1,-5],[2,-6],[3,-4],[13,-8],[27,-24],[-3,-12],[-1,-5],[1,-4],[4,-20],[0,-4],[0,-4],[-1,-2],[-2,-4],[-2,-3],[-1,-1],[3,-11],[2,-11],[-1,-9],[-3,-7],[0,-9],[5,-14],[9,-20],[4,-11],[1,-7],[-2,-8],[-4,-10],[8,-7],[3,-4],[3,-7],[2,-6],[0,-8],[1,-6],[3,-6],[20,-30],[31,-66],[86,-124],[17,-36],[6,-20],[9,-38],[5,-15],[7,-9],[16,-12],[7,-9],[2,-4],[1,-2],[1,-3],[-1,-4],[-2,-5],[-1,-3],[2,-3],[9,-4],[3,-10],[0,-23],[5,-9],[2,-1],[2,-1],[2,-1],[1,-4],[0,-3],[-2,-9],[-1,-2],[3,-3],[8,-7],[6,-13],[1,-2],[-39,-7],[-3,1],[8,-8],[30,-7],[10,-11],[3,-9],[-3,-20],[4,-52],[-1,-4],[-3,-11],[8,-24],[2,-11],[0,-3],[-2,-4],[-2,-4],[-2,-2],[3,-11],[13,-32],[-2,-16],[0,-23],[2,-38],[0,-6],[0,-5],[1,-6],[2,-8],[-9,-5],[-2,-10],[1,-13],[2,-12],[-3,-4],[-1,-4],[0,-4],[-1,-4],[5,-13],[5,-13],[4,-15],[4,-27],[3,-11],[2,-6],[8,-16],[-9,-16],[-4,-18],[-1,-21],[1,-72],[-3,-22],[-9,-15],[-16,-7],[-32,3],[-16,-4],[5,-7],[5,-11],[5,-12],[2,-12],[0,-8],[1,-4],[2,-3],[12,-12],[2,-4],[3,-7],[1,-7],[1,-8],[-1,-8],[-2,-7],[-11,-22],[-5,-20],[-1,-39],[-6,-12],[-17,-7],[-16,5],[-32,16],[-13,2],[-7,-2],[-6,-4],[-3,-7],[0,-7],[3,-6],[3,-5],[-5,-5],[-23,-12],[-17,1],[1,-4],[2,-6],[0,-4],[0,-2],[-2,-4],[0,-3],[1,-3],[2,-6],[0,-1],[-4,-8],[-5,-4],[-5,-1],[-16,2],[-37,-5],[-2,-2],[-1,-3],[-2,-5],[0,-4],[1,-4],[-1,-5],[-3,-5],[-7,-2],[-9,0],[4,-26],[6,-3],[14,-16],[-22,-24],[-118,-27],[-118,-28],[-52,3],[-74,-22],[-34,0],[-7,5],[-5,10],[-2,13],[-1,15],[-3,13],[-4,7],[-5,1],[-6,-1],[-5,-3],[-6,-6],[-3,-1],[-7,-1],[-2,-1],[-4,-6],[-1,-8],[0,-9],[-2,-8],[-6,-7],[-8,-3],[-75,6],[-74,7]],[[33085,9749],[-29,22],[-7,10],[15,14],[24,2],[25,-8],[21,-14],[13,-18],[5,-17],[-7,-12],[-19,-2],[-11,3],[-30,20]],[[31351,10117],[-8,-11],[-10,-9],[-10,0],[-5,16],[4,7],[10,1],[19,-4]],[[31377,10281],[27,8],[13,-3],[12,-11],[-6,-7],[-7,-3],[-27,4],[-6,4],[-6,8]],[[31365,10298],[-5,-10],[-7,-9],[-14,-12],[-9,-4],[-10,-1],[-8,6],[-4,4],[-1,5],[11,11],[5,9],[1,2],[-29,8],[28,12],[14,2],[10,-3],[4,-2],[14,-18]],[[31957,10400],[2,1],[2,6],[2,7],[1,5],[0,5],[-1,5],[-2,8],[12,-1],[39,-9],[-2,3],[-4,11],[8,0],[45,-11],[6,-6],[-24,-24],[-7,-5],[-9,-3],[-8,0],[-7,6],[5,7],[-8,6],[-7,3],[-8,-2],[-21,-15],[-7,-1],[-7,4]],[[31309,10359],[-13,-19],[-16,-11],[-33,-5],[-38,7],[-17,10],[-10,8],[-2,9],[2,2],[11,2],[3,3],[1,3],[1,3],[2,5],[2,3],[5,4],[3,3],[-5,1],[-5,-1],[-13,-9],[-6,-1],[-5,1],[-3,8],[3,11],[7,7],[68,39],[87,-6],[9,-6],[8,-19],[-31,-21],[-6,-19],[-4,1],[-14,-2],[8,-9],[1,-2]],[[31441,10481],[-5,-6],[-6,-5],[-7,-1],[-14,-15],[-20,-13],[-24,-6],[-21,8],[22,18],[16,7],[5,4],[4,8],[2,3],[4,2],[10,3],[11,0],[23,-7]],[[31182,10578],[4,12],[11,13],[12,6],[12,-4],[-8,-12],[-10,-13],[-11,-8],[-10,6]],[[31229,10664],[-14,-22],[-19,-19],[-19,-6],[-13,18],[30,30],[8,5],[10,3],[9,-1],[8,-8]],[[31206,10739],[2,4],[2,3],[3,2],[3,3],[3,8],[2,3],[3,2],[5,0],[5,-5],[2,-7],[2,-10],[0,-9],[0,-3],[-2,-5],[-2,-4],[-3,-3],[-5,-5],[-6,-5],[-7,-1],[-7,3],[-7,5],[3,2],[2,2],[3,3],[1,4],[1,5],[-1,4],[-2,4]],[[31283,10849],[-15,-3],[-16,2],[-31,14],[11,8],[10,27],[10,13],[-3,6],[-2,6],[-1,5],[-2,5],[10,12],[11,4],[11,-1],[27,-14],[5,-5],[1,-3],[1,-2],[1,-3],[1,-3],[1,-3],[3,-5],[1,-3],[3,-11],[2,-4],[-9,-14],[-9,-12],[-11,-9],[-10,-7]],[[30803,10420],[-7,13],[-6,9],[-3,6],[-2,8],[-2,9],[0,15],[3,16],[4,14],[11,26],[14,26],[63,71],[11,19],[1,3],[1,4],[2,13],[21,54],[92,171],[16,19],[128,97],[8,3],[8,1],[9,0],[8,-3],[22,-15],[0,-7],[0,-6],[2,-4],[3,-3],[-7,-8],[-1,-3],[-3,-7],[-1,-3],[-16,-9],[-2,-4],[0,-2],[1,-2],[2,-3],[-6,-7],[-14,-4],[-6,-7],[1,-3],[3,-8],[-18,-6],[-8,0],[-4,-2],[-3,-5],[-1,-4],[2,-7],[-1,-4],[-3,-5],[-4,-3],[-4,-4],[-1,-8],[-1,-2],[-8,-9],[-2,-5],[-1,-12],[0,-7],[3,-5],[20,-19],[5,-9],[-1,-6],[-2,-3],[-2,-3],[1,-6],[-3,-3],[-13,-4],[1,-9],[2,-5],[2,-2],[15,2],[11,-2],[11,-5],[11,-8],[4,-4],[1,-5],[0,-6],[-3,-7],[8,-5],[17,-4],[9,-4],[-2,-2],[-16,-13],[-8,-10],[-5,-2],[-9,1],[-4,-1],[-2,-1],[-1,-2],[-2,-3],[-1,-3],[0,-4],[1,-6],[-1,-3],[-3,-5],[-4,-3],[-9,-4],[-13,0],[-4,-3],[-2,-4],[0,-5],[2,-4],[0,-6],[-1,-4],[-2,-3],[-5,-3],[-29,-8],[-40,-30],[18,-9],[18,-3],[29,3],[14,-6],[5,-21],[-2,-12],[-5,-11],[-26,-36],[-9,-7],[-2,-4],[-2,-4],[-1,-5],[-1,-3],[-3,-3],[-2,1],[-21,15],[-3,5],[-3,4],[-3,4],[-5,2],[-5,-1],[-30,-16],[-6,-6],[-5,-9],[4,-5],[5,-6],[2,-9],[-1,-10],[-5,-9],[-18,-22],[-18,-32],[-4,-6],[-5,-1],[-5,2],[-14,15],[-5,3],[-5,-4],[2,-2],[5,-2],[-3,-4],[-4,-3],[-17,-9],[-40,-7],[-4,1],[-4,3],[-2,4],[-3,7],[-2,7],[1,6],[0,2],[2,1],[0,2],[0,3],[-1,2],[-2,1],[-4,2],[-11,13],[-5,2],[-8,0],[-4,2],[-3,3],[-2,3],[-2,6],[-1,2],[-7,8]],[[31344,11153],[6,7],[3,4],[1,5],[-1,3],[-5,5],[-2,3],[0,7],[2,4],[3,2],[3,0],[7,0],[11,-4],[9,-8],[1,-11],[-4,-6],[-5,-5],[-10,-4],[-10,-2],[-9,0]],[[31360,11229],[-5,6],[3,6],[5,3],[6,0],[4,0],[1,-11],[7,-3],[29,4],[11,-6],[2,-1],[-9,-8],[-10,-5],[-9,-1],[-10,1],[-19,7],[-6,8]],[[31452,11302],[-2,2],[-3,3],[-2,2],[6,11],[10,8],[27,15],[10,1],[4,0],[4,-3],[3,-4],[3,-5],[-4,-7],[-6,-9],[-7,-7],[-5,-1],[10,-13],[3,-4],[3,-14],[-6,-16],[-1,-1],[-17,-16],[-24,-32],[-25,-19],[-7,-3],[-6,1],[-1,3],[-4,6],[-2,5],[6,8],[27,28],[5,8],[1,3],[1,11],[1,11],[-1,4],[0,3],[-2,5],[-1,3],[0,4],[0,3],[2,6]],[[31738,11402],[4,-12],[-3,-1],[-18,-1],[4,9],[1,3],[0,4],[0,4],[0,3],[2,3],[2,2],[3,-3],[3,-5],[2,-6]],[[31694,11457],[2,-2],[1,-1],[0,-3],[0,-3],[-3,-12],[-4,-3],[-23,-8],[-5,1],[-5,2],[8,12],[9,10],[11,6],[9,1]],[[31856,11463],[-7,14],[-1,2],[11,1],[16,-3],[14,-8],[1,-17],[-3,-6],[-4,-3],[-5,-1],[-4,1],[-4,2],[-4,3],[-7,9],[-3,6]],[[31614,11488],[-1,1],[-1,2],[0,2],[0,3],[1,4],[5,11],[3,11],[1,2],[4,1],[12,-4],[6,0],[2,3],[10,14],[-5,4],[-4,6],[-4,8],[0,9],[1,3],[2,4],[1,2],[0,3],[-1,1],[-1,2],[1,2],[2,3],[10,3],[3,3],[7,12],[5,4],[2,2],[1,4],[1,8],[-2,5],[-2,5],[-1,5],[0,1],[4,9],[1,2],[47,20],[8,-1],[13,-10],[7,-3],[16,3],[3,2],[-3,-9],[-6,-13],[-2,-8],[0,-16],[-2,-6],[-3,-6],[0,-1],[0,-1],[4,-14],[-54,-18],[-14,-9],[20,-17],[4,-12],[1,-6],[1,-7],[-1,-6],[-3,-9],[-1,-6],[1,-5],[3,-3],[7,-3],[-5,-6],[-6,-2],[-11,0],[-49,-22],[-14,-2],[-20,7],[-3,4],[2,11],[0,4],[-1,6],[-1,1],[0,1],[-1,2]],[[31798,11696],[-6,-9],[-8,-6],[-23,-8],[-7,1],[-7,5],[-6,9],[3,9],[4,-2],[6,-4],[5,-3],[4,2],[10,8],[6,1],[14,-5],[5,2]],[[33490,11837],[-22,-7],[-37,15],[-36,27],[-18,28],[20,25],[34,-21],[59,-67]],[[32521,12048],[-1,-2],[-9,-8],[-8,-1],[-25,4],[-8,4],[-6,8],[1,4],[1,7],[1,2],[6,3],[7,1],[8,-2],[5,-4],[1,-3],[0,-6],[2,-2],[1,0],[6,4],[5,2],[4,-1],[5,-4],[4,-6]],[[32542,12089],[-15,-9],[-29,4],[-4,2],[-3,4],[10,6],[11,1],[30,-8]],[[32423,12090],[-2,-5],[-2,-20],[-4,-6],[-6,-4],[-15,-7],[-14,-12],[-6,-4],[-24,-7],[-9,0],[-6,6],[3,4],[11,8],[14,14],[13,17],[-10,7],[-6,2],[-5,-2],[20,19],[7,3],[6,-1],[12,-6],[6,1],[3,3],[26,36],[8,7],[7,3],[6,-7],[1,-6],[-1,-5],[-2,-5],[-3,-4],[-22,-19],[-6,-10]],[[32600,12138],[-4,-7],[-7,-5],[-7,-1],[-5,6],[-1,2],[1,4],[0,3],[-3,3],[-9,5],[9,5],[3,4],[4,6],[3,5],[4,3],[4,0],[4,-2],[2,-3],[1,-3],[0,-10],[0,-3],[1,-2],[1,-2],[1,-2],[0,-2],[-1,-1],[-1,-3]],[[32771,12198],[-2,-5],[0,-5],[0,-4],[2,-3],[-4,-5],[-6,1],[-5,5],[-1,8],[3,3],[5,4],[5,2],[3,-1]],[[32736,12224],[3,3],[7,0],[3,2],[2,4],[0,3],[0,3],[1,2],[1,2],[3,0],[1,1],[4,4],[2,1],[2,0],[8,-9],[0,-3],[-7,-13],[-1,-5],[-2,-9],[-1,-4],[-2,-2],[-8,-4],[-4,0],[-3,3],[-5,8],[2,3],[1,2],[1,3],[-6,4],[-2,1]],[[33985,12301],[19,20],[6,-15],[-7,-17],[-18,12]],[[32881,12355],[4,3],[13,3],[5,0],[6,-7],[5,-7],[5,-7],[-2,0],[-8,-7],[-5,0],[-6,1],[-9,4],[-4,4],[3,6],[-2,2],[-5,5]],[[34079,12309],[16,6],[87,58],[6,1],[6,-2],[6,-3],[-19,-23],[-2,-6],[5,-20],[-9,-22],[-14,-19],[-11,-13],[-45,-33],[-23,-6],[-24,8],[-10,8],[-6,8],[-2,10],[-1,12],[0,6],[1,8],[1,8],[3,5],[7,5],[28,4]],[[32526,12259],[1,-2],[16,-23],[4,-3],[-7,-8],[-47,-21],[-6,0],[-3,-2],[-2,-2],[-4,-7],[-2,-3],[-2,-1],[-2,0],[-3,1],[-12,-1],[-6,-4],[-5,-6],[0,-3],[0,-7],[-1,-3],[-1,-2],[-14,-15],[-9,-6],[-1,-1],[-4,-10],[-5,-6],[-5,-6],[-4,-2],[-6,-3],[-6,0],[-4,4],[-1,7],[1,6],[0,4],[-4,4],[-6,2],[-5,0],[-26,-6],[-4,-5],[4,-3],[9,-3],[4,-5],[-6,-1],[-5,-3],[-6,-5],[-22,-25],[-3,-5],[-1,-13],[-5,-3],[-6,2],[-10,6],[-2,2],[-2,4],[-1,6],[0,4],[-1,4],[-2,5],[-3,2],[-7,4],[-50,9],[-8,-2],[-4,0],[-4,5],[-13,18],[-11,12],[-42,4],[-3,1],[-2,2],[-1,2],[0,4],[2,3],[3,1],[5,-1],[4,2],[2,4],[2,6],[3,6],[3,3],[3,1],[2,2],[3,5],[0,6],[0,10],[-2,9],[-2,3],[13,8],[3,1],[16,13],[51,12],[13,19],[-3,4],[-19,18],[1,4],[2,1],[3,0],[3,2],[9,10],[4,1],[37,0],[10,3],[8,8],[-5,9],[-2,1],[4,7],[1,2],[2,1],[2,1],[2,1],[1,3],[0,7],[-4,5],[-10,3],[1,2],[7,11],[24,6],[3,2],[3,4],[1,8],[-2,6],[-3,5],[-2,6],[59,4],[-1,6],[1,3],[3,2],[2,0],[3,-2],[6,-7],[8,-4],[2,-2],[1,-1],[1,-4],[1,-1],[8,-3],[8,2],[8,-1],[7,-8],[-1,-3],[0,-2],[1,-1],[1,-4],[-12,-1],[9,-9],[2,0],[-5,-6],[-30,-12],[-6,-5],[-5,-7],[3,-2],[12,0],[-2,-3],[-4,-3],[-2,-2],[-1,-3],[-2,-7],[-1,-3],[-3,-5],[-11,-7],[8,-6],[7,0],[8,5],[16,16],[8,7],[6,2],[16,-2],[-9,-6],[-22,-29],[-6,-12],[7,0],[6,1],[21,12],[5,1],[4,-3],[-5,-10],[-6,-10],[-30,-29],[-13,-7],[-4,-6],[5,-8],[3,-2],[3,-2],[35,4],[4,-2],[-2,6],[-1,2],[0,4],[15,9],[12,14],[5,3],[5,0],[-6,-9],[11,-3],[3,1],[10,9],[3,1],[2,-1],[2,-1]],[[34208,12402],[38,27],[22,8],[14,-8],[-14,-24],[-22,-19],[-27,-9],[-24,3],[5,4],[4,5],[3,6],[1,7]],[[32872,12466],[-11,0],[-5,1],[-4,3],[-5,5],[-3,6],[2,5],[0,5],[-1,4],[1,5],[2,4],[3,4],[3,2],[2,2],[8,-5],[3,-12],[5,-29]],[[32595,12270],[-9,3],[-10,-2],[-10,1],[-8,9],[8,9],[9,1],[9,-3],[8,0],[18,12],[5,-1],[-14,7],[-7,6],[-4,13],[0,5],[1,3],[1,3],[2,2],[2,1],[3,1],[1,1],[2,2],[2,5],[1,2],[9,6],[2,4],[1,5],[2,10],[1,4],[3,4],[9,9],[4,5],[6,11],[5,13],[2,7],[0,7],[-2,7],[-4,3],[-7,2],[-4,1],[-1,2],[-4,8],[-1,2],[-3,2],[-2,2],[-1,3],[-2,11],[-10,6],[-4,7],[2,7],[2,2],[7,-2],[6,1],[13,8],[8,8],[-2,2],[-9,13],[-10,4],[-2,3],[3,4],[18,8],[1,2],[4,7],[0,1],[29,3],[16,-4],[14,-9],[-2,-4],[-2,-11],[-1,-13],[1,-9],[3,-3],[72,-25],[-5,-8],[-7,-3],[-22,-1],[-15,-5],[-7,-5],[4,-6],[7,-3],[19,2],[2,-1],[1,-2],[2,-4],[1,-3],[0,-2],[7,-1],[2,-1],[-3,-8],[-30,-35],[-6,-2],[-3,-2],[-2,-4],[0,-4],[4,-8],[0,-4],[0,-5],[-2,-4],[-2,-4],[1,-4],[1,-2],[3,-1],[6,0],[-20,-19],[-3,-1],[-2,1],[-5,4],[-2,2],[-3,0],[-12,-6],[2,-2],[1,-3],[2,-4],[1,-4],[-1,-4],[-1,-3],[-1,-2],[-8,-8],[-6,-12],[-3,-1],[-11,1],[-4,-1],[-4,-4],[0,-2],[0,-5],[0,-2],[-6,-4],[-5,7],[-1,10],[4,5],[-9,2],[-4,0],[-4,-4],[-2,-5],[0,-5],[1,-5],[0,-5],[-2,-5],[-9,-10],[-3,-2],[-4,0],[-4,4],[-8,8]],[[32795,12573],[3,3],[3,1],[10,0],[13,4],[-1,2],[-1,4],[-1,2],[4,3],[4,-1],[5,-2],[3,-3],[-4,-4],[-10,-15],[-3,-3],[-9,-4],[-2,-3],[-7,-12],[-2,-7],[3,-3],[-5,-1],[-3,-5],[-7,-11],[-6,-4],[-7,0],[-7,3],[-6,5],[-2,4],[-1,5],[2,5],[2,4],[2,1],[3,0],[2,1],[1,2],[0,3],[1,2],[2,2],[-2,5],[-1,2],[4,3],[12,4],[2,2],[6,6]],[[34024,12366],[5,-8],[2,-7],[-1,-4],[-7,-1],[0,2],[-2,6],[-3,6],[-2,3],[-4,3],[-4,1],[-5,1],[-3,-1],[7,-10],[-4,0],[-4,1],[-10,11],[-4,3],[-3,0],[-4,-3],[6,-13],[1,-7],[-1,-8],[-5,-6],[-5,-1],[-5,2],[-5,-1],[0,7],[1,8],[0,9],[2,7],[3,6],[6,9],[5,7],[4,1],[-9,8],[-10,-4],[-9,-7],[-9,-5],[-5,2],[-9,8],[-5,0],[1,-3],[0,-2],[6,-9],[1,-3],[1,-4],[-1,-8],[0,-4],[1,-5],[2,-4],[3,-7],[-4,-6],[-1,-3],[-1,-5],[-4,2],[-4,-1],[-2,-3],[3,-5],[-4,-2],[-10,2],[-15,8],[-3,3],[3,6],[1,3],[1,4],[0,4],[1,11],[-1,3],[6,1],[3,1],[2,3],[-7,9],[-8,4],[-24,-1],[-3,-2],[-3,-5],[0,-6],[0,-12],[-1,-6],[-4,-7],[-5,-5],[-6,-3],[-5,1],[4,7],[8,11],[4,6],[-7,2],[-6,0],[-5,-4],[-9,-12],[-2,-3],[-3,-1],[-3,-1],[-4,3],[-1,5],[1,5],[0,3],[-23,22],[4,8],[5,5],[12,6],[15,4],[5,-1],[1,1],[1,2],[1,1],[0,2],[0,2],[4,4],[17,2],[10,3],[4,3],[4,6],[-11,7],[-25,4],[-11,5],[2,15],[11,41],[1,9],[-18,10],[-17,-8],[-15,-15],[-14,-8],[-16,1],[-11,4],[0,1],[4,9],[2,1],[6,3],[-11,10],[-1,2],[2,10],[5,5],[5,4],[6,6],[3,9],[3,9],[3,8],[6,5],[8,0],[3,2],[1,6],[-2,4],[-8,10],[8,17],[13,11],[25,8],[7,0],[4,-3],[3,0],[4,7],[0,3],[-2,3],[0,5],[5,9],[4,4],[15,6],[20,-14],[1,4],[1,4],[1,4],[-1,5],[-1,2],[-6,7],[-1,1],[6,5],[7,3],[37,5],[0,-1],[-8,-9],[-2,0],[2,-2],[3,-2],[1,-1],[10,-37],[4,-10],[-12,-4],[-4,-4],[-2,-4],[0,-4],[2,-3],[3,-4],[-2,-4],[-3,-4],[-18,-16],[14,-10],[5,-7],[-2,-4],[-1,-3],[-1,0],[2,-3],[2,-4],[1,-6],[-1,-6],[-2,-4],[-8,-4],[-3,-2],[10,-5],[11,-3],[10,0],[10,2],[-7,27],[4,6],[29,22],[23,26],[13,8],[-1,-2],[-2,-3],[-3,-6],[2,-6],[3,-3],[7,-5],[-9,-9],[-2,-3],[0,-4],[0,-3],[1,-3],[0,-3],[-1,-2],[-2,-2],[-4,-3],[4,1],[101,-38],[-9,-6],[-2,-1],[1,-5],[2,-2],[3,-2],[3,-1],[-9,-7],[-9,-2],[-29,1],[-9,-2],[-2,-2],[-6,-6],[-2,-1],[16,-1],[5,-2],[1,-5],[4,0],[4,0],[3,-2],[-10,-10],[-2,-2],[7,0],[12,3],[12,6],[18,2],[3,-3],[5,5],[8,4],[6,-4],[-2,-14],[-5,-8],[-5,-6],[-25,-9],[-7,1],[-7,3],[3,-5],[-3,-6],[-3,-3],[-4,-2],[-4,0],[-4,1],[-24,14],[-8,2],[-9,-2],[-8,-9],[2,0],[36,-11],[6,-4],[5,-7],[-18,-5],[-39,14],[-14,-19],[3,-3],[46,-8],[5,-3],[5,-4],[14,-17],[3,-5],[1,-4],[-3,-6],[-24,-10],[-9,0],[-4,1],[-4,3],[-1,5],[0,12],[-2,4],[-4,4],[-4,1],[-4,0],[-4,-2]],[[33988,12657],[-15,20],[13,7],[78,9],[1,0],[1,-1],[1,-5],[0,-5],[1,-5],[2,-3],[-12,-7],[-3,-4],[9,-1],[40,18],[11,1],[4,-1],[7,-5],[7,-7],[9,-5],[-2,-3],[-3,-2],[-12,-2],[-2,-1],[-1,-2],[-1,-3],[0,-2],[-2,-7],[-1,-1],[-2,-1],[-5,-3],[-12,-10],[2,11],[0,6],[-2,4],[-2,0],[-17,-3],[-12,-7],[-3,-1],[-4,1],[-30,17],[-4,-2],[-3,-10],[-6,5],[-4,1],[-1,1],[-2,2],[-1,2],[-1,2],[-2,1],[-11,-2],[-4,0],[-2,2],[-2,1]],[[32854,12715],[-6,6],[-17,7],[6,4],[41,-2],[5,-4],[2,-18],[-4,-14],[-7,-10],[-9,-2],[0,2],[-2,14],[-2,5],[-3,5],[-4,7]],[[33087,12652],[-7,1],[-16,-2],[-4,2],[0,8],[1,2],[2,0],[4,-2],[10,-3],[21,1],[11,3],[5,4],[3,3],[2,4],[1,5],[0,3],[-1,3],[-1,4],[-5,4],[-3,5],[-1,7],[2,9],[2,2],[22,0],[4,3],[3,7],[1,1],[0,2],[2,2],[3,2],[-7,5],[-18,-5],[-4,1],[-2,2],[2,5],[-1,6],[-2,5],[-2,5],[-1,2],[-3,3],[-1,2],[1,3],[3,-1],[10,-8],[9,-4],[37,-1],[10,-6],[-3,-2],[-13,-15],[-1,-5],[-2,-2],[-6,-3],[-3,-6],[-4,-16],[-3,-8],[-4,-6],[-1,-2],[1,-9],[6,-10],[8,-8],[5,-2],[-15,-9],[-13,-13],[-4,-5],[-1,-1],[-2,1],[0,1],[0,2],[-1,1],[-3,3],[-4,1],[-3,-2],[-3,-4],[-4,-7],[-1,-1],[-17,6],[-5,4],[8,6],[2,5],[0,4],[-2,4],[-2,2],[-2,2]],[[34017,12756],[-4,16],[-2,6],[-4,2],[24,11],[13,2],[11,-5],[-3,-2],[-10,-27],[-5,-7],[-6,-4],[-7,-1],[-5,3],[-1,1],[0,1],[-1,4]],[[34253,12809],[7,15],[17,6],[20,0],[17,-5],[-30,-27],[-20,-7],[-11,18]],[[33378,12832],[-1,5],[0,1],[7,-1],[4,-3],[1,-2],[1,-1],[1,-2],[-1,-4],[0,-2],[5,-12],[0,-3],[-5,-2],[-6,-2],[-5,1],[-5,3],[-5,6],[-1,7],[3,5],[7,6]],[[34522,12879],[0,-14],[-57,-30],[-2,-18],[-9,-1],[-54,32],[-21,25],[-2,4],[0,3],[1,2],[2,2],[0,3],[3,11],[4,4],[54,15],[57,2],[16,-13],[8,-27]],[[32791,12976],[-7,-13],[-10,-7],[-20,-5],[-54,1],[3,2],[3,5],[3,6],[1,6],[1,9],[-2,7],[-2,6],[-3,5],[2,1],[13,10],[0,2],[-1,4],[0,4],[3,1],[5,-2],[9,-6],[33,-5],[4,-2],[2,-2],[2,-3],[1,-4],[1,-9],[1,-4],[3,-2],[3,-3],[6,-2]],[[34250,13038],[-1,10],[3,8],[5,6],[5,4],[6,4],[7,1],[6,-2],[6,-5],[-5,-23],[-2,-4],[-7,-4],[-9,-3],[-8,1],[-6,7]],[[34678,13039],[9,-2],[11,-8],[9,-14],[3,-22],[-6,-22],[-12,-14],[-18,-9],[-21,-2],[-18,3],[-31,14],[-17,4],[-27,-7],[-12,2],[-46,29],[4,-10],[0,-4],[-1,-6],[-3,-3],[-5,-1],[-4,2],[-4,2],[-3,4],[-3,5],[-3,4],[-4,1],[-4,-1],[-2,-2],[0,-4],[-2,-5],[-2,-5],[-7,-10],[-14,4],[-7,-7],[-7,-13],[-13,-12],[-41,-11],[-13,-6],[-13,-12],[-6,-1],[-10,0],[-16,6],[-2,2],[-3,3],[-2,5],[-3,9],[-2,4],[-4,3],[-5,2],[-4,3],[-4,6],[2,12],[12,10],[22,9],[-13,10],[-2,2],[13,22],[17,17],[35,21],[75,27],[70,0],[25,10],[16,1],[19,-12],[8,-2],[-4,-1],[-4,-4],[-5,-5],[-3,-6],[26,-17],[3,0],[3,3],[3,4],[3,3],[4,2],[63,-10]],[[34292,13101],[-16,18],[-4,11],[5,12],[7,7],[14,9],[7,7],[2,3],[1,2],[1,2],[3,2],[2,0],[43,-16],[58,0],[16,-8],[3,-24],[-9,-17],[-41,-44],[-16,-11],[-17,3],[-20,11],[-39,33]],[[33195,13181],[-8,-10],[-11,2],[-8,11],[-2,15],[-6,5],[-6,2],[-6,0],[-5,-2],[-1,-3],[-3,-11],[-1,-2],[1,-4],[0,-2],[1,-2],[6,-6],[32,-18],[-7,-6],[-10,0],[-18,8],[-6,5],[-6,8],[-4,10],[-1,14],[15,27],[20,-1],[20,-17],[14,-23]],[[32610,13121],[-15,-11],[-8,-3],[-7,0],[7,7],[1,3],[1,4],[1,6],[1,3],[3,3],[7,4],[3,5],[2,9],[3,9],[4,8],[4,7],[8,8],[2,3],[1,4],[0,9],[0,4],[5,9],[9,5],[27,8],[3,2],[5,5],[3,2],[12,0],[-14,-34],[-20,-31],[-48,-48]],[[32914,13271],[-1,2],[-2,2],[-1,3],[0,4],[0,6],[1,6],[1,5],[2,4],[6,8],[7,5],[15,4],[58,1],[-8,-3],[-5,-5],[-3,-7],[1,-9],[-43,-32],[-16,-1],[-9,4],[-3,3]],[[33011,13360],[6,14],[-1,12],[-6,9],[-9,6],[12,5],[37,-14],[16,-2],[16,7],[17,10],[5,4],[3,4],[1,5],[-1,6],[-4,5],[-3,4],[-2,2],[8,17],[4,10],[0,11],[2,0],[24,-19],[1,-1],[1,-2],[0,-3],[0,-4],[0,-3],[-1,0],[9,-16],[9,-9],[10,-5],[32,-2],[10,4],[6,12],[14,-2],[14,2],[15,5],[13,9],[11,10],[5,6],[4,8],[5,14],[3,1],[7,-9],[7,-11],[2,-2],[10,-9],[7,-8],[-14,-15],[-5,-7],[2,-10],[7,-21],[6,-7],[10,-2],[52,11],[-90,-62],[-6,-6],[-27,-15],[-13,-3],[-6,9],[-2,1],[-2,0],[-1,1],[-2,1],[11,27],[0,6],[-9,2],[-10,-7],[-9,-9],[-9,-7],[6,23],[3,6],[2,2],[5,2],[2,2],[9,13],[3,4],[-15,11],[-62,-18],[-22,14],[-8,2],[-10,-5],[-4,-7],[-1,-8],[-2,-6],[-11,-9],[-68,-6],[-15,3],[-14,9]],[[33404,13430],[-2,0],[-1,0],[-1,1],[-2,1],[-1,4],[-2,7],[-2,4],[-4,4],[-37,12],[-18,21],[18,8],[58,-7],[-12,-13],[-3,-4],[2,-4],[3,-3],[2,-3],[7,-4],[4,-1],[3,1],[16,13],[9,1],[9,-3],[7,-9],[-3,-4],[-7,-2],[-3,-2],[0,-12],[-5,-6],[-14,-3],[-16,3],[-5,0]],[[33418,13528],[-1,2],[0,2],[0,2],[1,2],[1,3],[3,1],[21,7],[46,-5],[16,-10],[9,-20],[-1,-2],[-5,-16],[-2,-3],[-1,-2],[-2,-1],[-2,-1],[-15,0],[-14,-5],[-3,0],[-13,7],[-5,1],[-5,8],[-9,13],[3,4],[1,4],[1,4],[2,3],[-3,-1],[-15,-3],[-2,1],[-2,1],[-2,2],[-2,2]],[[33615,13595],[3,-2],[13,4],[8,0],[7,-5],[7,-9],[4,-14],[-55,-23],[-11,0],[-5,1],[-4,3],[-11,11],[-4,2],[-2,2],[-11,11],[-4,3],[8,12],[9,7],[35,16],[8,0],[7,-4],[-1,-6],[-1,-4],[0,-3],[0,-2]],[[33759,13657],[6,-16],[-1,-10],[-5,-6],[-33,-20],[-10,1],[-3,12],[-12,2],[-20,-8],[-10,7],[6,3],[3,3],[3,3],[-4,3],[-12,4],[0,2],[1,3],[0,4],[0,2],[-1,4],[-1,1],[-2,1],[-5,0],[-32,-14],[-4,-4],[-1,-6],[3,-9],[-4,-1],[-5,0],[-8,4],[8,21],[10,15],[65,63],[3,7],[0,4],[-1,2],[-1,3],[1,4],[1,4],[3,3],[3,2],[59,22],[3,3],[2,4],[2,8],[2,3],[6,2],[7,-2],[13,-7],[32,-7],[14,5],[34,23],[12,5],[33,-20],[15,-2],[36,15],[10,2],[4,-3],[2,-5],[1,-7],[-1,-6],[-2,-6],[-4,-4],[-3,-1],[-1,-3],[2,-5],[5,-9],[6,-8],[7,-6],[6,-4],[-48,11],[-7,-1],[-6,-3],[-10,-9],[-20,-22],[-10,-7],[-9,-1],[-42,14],[-5,-1],[-3,-3],[-1,-4],[0,-5],[0,-8],[-2,-5],[-1,-3],[-1,-4],[1,-5],[3,-5],[13,-7],[-4,-10],[-7,-6],[-22,-8],[-8,0],[-6,4],[-4,6],[-9,14],[-8,10],[-2,4],[-1,7],[2,2],[12,-1],[5,2],[9,10],[-8,5],[-8,0],[-15,-6],[-4,0],[-10,8],[-5,1],[-5,0],[-5,-3],[-4,-4],[10,-6],[2,-4],[0,-9],[-4,-8],[-6,-6],[-33,-20],[-4,-4],[6,-3],[6,-1],[12,2],[23,12]],[[34990,14199],[-3,-14],[-3,-11],[-5,-9],[-7,-5],[-6,2],[-23,14],[-7,9],[6,10],[34,43],[3,7],[1,5],[4,16],[0,3],[9,-2],[4,-4],[1,-9],[-3,-6],[-4,-3],[-5,-4],[-2,-10],[0,-6],[1,-3],[2,-2],[2,-4],[1,-4],[0,-3],[0,-10]],[[34700,14289],[29,-8],[90,0],[-5,-2],[-8,-16],[-4,-6],[-5,-3],[-85,-2],[-5,-2],[-4,-5],[-1,-4],[0,-8],[-2,-4],[-2,-4],[-3,-2],[-10,-1],[-2,-2],[-3,-11],[-8,-16],[-9,-7],[-10,0],[-9,6],[-18,18],[-7,12],[-6,17],[9,11],[4,3],[0,1],[-8,7],[-16,10],[-5,5],[10,19],[10,8],[83,-14]],[[37633,14511],[-4,-10],[-9,-5],[-21,-3],[-15,3],[-7,-4],[1,-13],[-5,5],[-23,15],[-3,2],[-1,3],[-3,7],[-1,2],[12,-9],[6,-2],[6,1],[11,4],[5,1],[2,1],[3,2],[1,6],[0,6],[-2,13],[3,-5],[19,-14],[2,0],[1,1],[2,5],[1,2],[2,0],[2,0],[1,0],[5,4],[4,5],[4,3],[5,0],[15,-17],[-16,-6],[-3,-3]],[[37220,14574],[-1,3],[0,3],[1,4],[1,5],[1,4],[1,4],[2,3],[2,2],[3,1],[4,-1],[2,-1],[-2,19],[0,4],[6,2],[5,-1],[18,-12],[3,-1],[2,1],[7,6],[4,1],[9,0],[4,2],[1,3],[1,3],[1,1],[2,2],[2,0],[5,-1],[11,-4],[27,-17],[6,-1],[16,6],[3,0],[8,-5],[16,-15],[5,-11],[-5,-9],[3,-1],[9,-8],[5,-3],[16,4],[23,-4],[-6,-12],[-2,-1],[11,-7],[7,-9],[2,-2],[-5,2],[-3,0],[-2,-1],[-1,-9],[3,-9],[9,-13],[-5,-1],[-7,3],[-11,9],[-10,14],[-6,6],[-7,3],[-13,2],[0,1],[0,3],[-2,5],[-1,1],[-12,6],[-3,1],[-13,-3],[-9,1],[-12,5],[-13,1],[-25,-6],[-11,2],[-7,12],[-2,7],[-2,2],[-1,2],[3,7],[-11,7],[-9,-1],[-31,-22],[-5,-2],[-5,0],[-6,3],[-3,2],[-1,3]],[[4906,1361],[20,-13],[96,-24],[96,-23],[-66,-8],[-9,-4],[-8,-8],[-18,-25],[-9,-9],[-12,-6],[-108,-13],[-119,20],[-119,20],[-7,11],[1,3],[3,4],[1,3],[-8,11],[-59,9],[-26,13],[-5,5],[-3,6],[2,11],[5,7],[12,10],[-5,6],[-6,3],[-36,11],[-6,6],[9,4],[9,1],[-6,6],[-28,9],[17,7],[117,-8],[118,-9],[117,-8],[20,-12],[20,-16]],[[3047,1225],[37,-21],[24,-8],[7,-7],[-17,-7],[-133,12],[-132,13],[-4,2],[-4,4],[-6,11],[-3,5],[-137,42],[-137,42],[-136,42],[-137,42],[-19,12],[22,11],[129,-33],[129,-32],[130,-33],[129,-32],[129,-33],[129,-32]],[[6015,1966],[12,-16],[16,-15],[92,-38],[16,-1],[8,-3],[5,-8],[-31,-27],[-19,-8],[-22,-2],[-8,3],[3,6],[5,3],[9,3],[-9,16],[-11,8],[-79,25],[-85,52],[-84,52],[-5,18],[4,4],[7,2],[24,-3],[71,-29],[70,-29],[4,-4],[7,-9]],[[5397,2146],[-125,10],[-126,9],[-125,10],[-125,10],[-126,10],[-125,10],[-125,10],[-7,7],[1,1],[22,2],[3,2],[-3,4],[-77,21],[-12,9],[6,6],[6,9],[4,10],[3,11],[20,14],[120,15],[121,14],[128,-23],[128,-22],[128,-23],[129,-23],[128,-23],[12,-16],[1,-4],[-12,-7],[-4,-4],[11,-1],[57,-25],[8,-8],[-9,-10],[-12,-4],[-23,-1]],[[7190,3071],[-68,3],[7,4],[7,5],[-16,5],[-12,-1],[-3,3],[-2,3],[-4,8],[-3,3],[-17,10],[-131,20],[-12,8],[3,12],[-128,23],[-51,24],[1,0],[3,4],[10,4],[10,2],[115,-31],[115,-30],[116,-31],[115,-30],[6,-9],[-13,-10],[-48,1]],[[6745,3229],[38,-8],[-10,-7],[-10,-5],[-39,-10],[-10,3],[-7,10],[9,12],[9,5],[20,0]],[[4694,3243],[102,-28],[7,-5],[6,-8],[-12,-12],[-14,-4],[-79,13],[-79,13],[-14,9],[25,2],[17,7],[27,0],[24,-8],[8,3],[-3,5],[-4,2],[-4,0],[-20,10],[-4,5],[17,-4]],[[41772,3145],[-17,-10],[-6,-2],[-22,1],[-22,6],[-5,4],[-3,7],[-6,14],[-4,5],[-23,9],[-13,1],[-11,-2],[-19,-13],[-25,-5],[30,-27],[31,-5],[3,-2],[2,-3],[6,-8],[1,-2],[-54,-23],[-51,-8],[-16,4],[-13,13],[41,3],[10,5],[3,0],[-9,5],[-48,13],[-4,4],[-1,5],[-1,6],[-2,6],[-3,3],[-2,1],[-28,-2],[-6,-6],[2,-2],[3,-5],[1,-6],[-4,-8],[-4,-2],[-5,-1],[-58,19],[-91,8],[-91,8],[-58,23],[-28,4],[-6,3],[5,5],[5,4],[28,9],[5,4],[-25,5],[-53,-11],[-13,1],[-12,5],[48,22],[5,5],[5,6],[-12,4],[-4,2],[-4,4],[-5,9],[-4,3],[-4,2],[-45,2],[46,8],[8,4],[-5,3],[-15,2],[-11,9],[4,2],[11,8],[66,11],[39,-3],[15,-7],[41,-36],[71,-34],[15,-19],[5,-4],[6,-3],[123,-21],[45,2],[37,-8],[19,1],[18,10],[-83,26],[-83,27],[-7,4],[-7,8],[-2,5],[-3,10],[-2,4],[-2,2],[-5,2],[-2,2],[11,12],[13,7],[13,2],[12,-6],[4,-7],[5,-16],[4,-8],[12,-13],[5,-3],[102,-23],[103,-22],[39,-22],[43,-34],[-2,-1]],[[5599,3478],[77,-49],[2,-2],[1,-3],[2,-6],[1,-2],[2,-2],[3,-3],[2,-2],[3,-10],[2,-2],[2,-2],[8,-1],[36,-22],[4,-5],[-1,-6],[-3,-3],[-4,-1],[-7,2],[34,-19],[5,-4],[6,-8],[2,-9],[-3,-10],[3,-6],[5,-5],[59,-41],[5,-10],[-1,-4],[-4,-5],[-1,-5],[1,-2],[3,-1],[3,-1],[-10,-12],[-4,-3],[-7,-3],[-2,-2],[-4,-6],[-2,-2],[-3,-1],[-114,-5],[-114,-6],[-114,-5],[-115,-5],[-128,36],[-128,36],[-128,36],[-128,36],[-128,36],[-129,36],[-24,20],[-102,26],[-62,46],[-39,19],[-7,9],[2,-1],[12,4],[15,-2],[-4,7],[-3,6],[-14,19],[-2,6],[1,7],[3,4],[2,2],[2,3],[-1,9],[-3,21],[0,4],[1,2],[3,4],[1,3],[0,3],[0,4],[-1,6],[11,0],[6,2],[3,7],[0,8],[-4,7],[-4,6],[-4,3],[2,2],[7,5],[3,5],[7,12],[4,4],[4,2],[44,15],[2,1],[2,3],[3,5],[2,2],[5,3],[41,6],[4,2],[1,5],[-16,9],[4,5],[13,6],[10,10],[3,2],[9,2],[3,1],[12,11],[43,20],[3,5],[48,17],[10,9],[-3,3],[-10,19],[19,9],[123,-14],[124,-14],[3,-1],[2,-3],[4,-8],[2,-3],[5,-3],[42,-5],[106,-50],[106,-49],[7,-9],[1,-2],[-4,-3],[-2,-2],[0,-3],[3,-3],[117,-57],[117,-56],[63,-47],[50,-16],[33,-20],[42,-13]],[[8606,4585],[-53,14],[10,5],[-6,1],[-2,1],[-2,3],[32,10],[11,0],[62,-15],[-13,-9],[-26,-9],[-13,-1]],[[8634,4641],[-5,-5],[-7,-2],[-120,9],[-52,25],[-25,21],[8,6],[4,-1],[12,-5],[12,0],[3,-2],[-5,6],[-14,9],[29,5],[44,-6],[23,-9],[4,-4],[3,-6],[1,-2],[-1,-5],[0,-2],[3,-5],[80,-21],[3,-6]],[[8199,4666],[9,-3],[28,2],[-3,-7],[-4,-4],[-4,-4],[-4,-1],[-26,-2],[-93,16],[-92,16],[-92,16],[-5,5],[0,9],[4,4],[5,3],[97,24],[41,-3],[122,-54],[12,-14],[5,-3]],[[7487,4727],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-7,-5],[-7,-2],[-86,20],[-14,12],[9,5],[89,-2],[11,-6],[6,-6],[2,-8]],[[9097,4757],[17,-12],[-4,-4],[-34,-9],[1,-3],[1,-2],[1,-2],[2,-1],[-10,-6],[-11,-2],[-21,5],[1,1],[1,1],[2,3],[-9,4],[-2,2],[-1,2],[-2,4],[-1,4],[1,1],[-27,12],[-3,5],[10,11],[14,3],[74,-17]],[[97019,4600],[10,-6],[9,-9],[5,-11],[2,-14],[-13,-9],[-75,-19],[-38,-36],[-11,-6],[-131,-33],[-87,30],[-94,0],[-95,1],[-17,-14],[-17,-23],[-8,-6],[-52,-17],[-49,-29],[-32,-30],[-28,-9],[-3,1],[-14,13],[10,16],[38,23],[22,31],[7,3],[-106,-5],[-16,7],[16,3],[33,-1],[15,6],[36,3],[19,9],[4,0],[-6,3],[-135,34],[-6,4],[-5,5],[-9,12],[-5,5],[-5,2],[-13,-1],[-5,2],[-11,16],[-3,1],[14,9],[43,13],[9,8],[21,32],[49,40],[6,2],[-21,14],[-7,2],[-8,12],[-41,27],[15,32],[20,18],[43,11],[41,2],[41,-13],[15,-13],[16,-21],[7,-25],[-13,-20],[1,0],[1,0],[-1,-1],[20,-14],[119,-43],[90,13],[91,12],[128,-18],[128,-18],[36,-13]],[[7066,4802],[3,8],[7,6],[26,10],[41,5],[44,-8],[20,-11],[1,-2],[2,-3],[1,-4],[1,-11],[-3,-4],[-39,-10],[-90,11],[-8,5],[-3,2],[-1,2],[-1,2],[-1,2]],[[96364,4910],[12,-4],[6,-8],[0,-7],[-30,-6],[0,6],[-1,9],[-4,7],[1,4],[5,2],[11,-3]],[[8741,4899],[24,-14],[3,0],[-5,-11],[-8,-6],[-127,-15],[-83,18],[-7,6],[-3,10],[1,3],[0,5],[1,3],[-5,6],[-3,6],[-2,6],[-1,5],[25,9],[95,-16],[95,-15]],[[8409,4792],[-31,4],[9,8],[3,3],[-4,-1],[-17,5],[-77,2],[-76,3],[-45,31],[-55,18],[-5,10],[1,7],[4,4],[38,17],[63,12],[-3,6],[-4,7],[-5,5],[-4,1],[6,3],[17,5],[0,-3],[0,-15],[120,22],[34,-5],[18,-9],[4,-19],[18,-6],[70,-53],[-1,-3],[-1,-2],[-2,-5],[2,-4],[2,-3],[5,-5],[-3,-5],[-3,-4],[32,-4],[16,-7],[14,-13],[-7,-8],[-17,-5],[-116,6]],[[9399,4910],[3,-4],[3,-3],[6,-4],[-5,-5],[-6,0],[-31,10],[-7,5],[-10,12],[1,0],[1,2],[2,2],[-1,0],[-7,6],[-6,3],[-5,0],[-3,-1],[-2,-2],[-2,-3],[1,-5],[0,-2],[1,-1],[-3,-5],[-1,-1],[1,-1],[1,-3],[-19,-11],[-135,-34],[-18,1],[-18,9],[12,6],[3,3],[9,11],[-6,16],[-4,5],[-24,23],[9,12],[3,4],[-10,9],[6,7],[9,2],[114,-16],[114,-17],[2,-4],[2,-4],[2,-1],[4,-1],[3,-3],[2,-2],[9,-15]],[[8742,4990],[-52,-6],[-4,-2],[-3,-3],[-4,-9],[-3,-4],[-3,-2],[-42,-6],[-63,8],[-93,41],[24,21],[14,7],[12,3],[71,-6],[70,-7],[4,1],[2,3],[5,5],[2,3],[2,0],[94,-13],[23,-11],[5,-5],[-13,-17],[-16,-5],[-32,4]],[[8269,5001],[-103,-11],[-59,15],[-17,18],[2,6],[5,7],[6,5],[87,7],[86,7],[32,-13],[-1,-4],[-1,-3],[-2,-6],[2,-1],[6,-4],[-10,-11],[-11,-6],[-22,-6]],[[8690,5043],[-6,2],[-10,2],[-5,-1],[-42,10],[-54,27],[-3,1],[42,18],[51,-3],[96,-39],[-1,0],[0,-1],[-13,-10],[-17,-5],[-38,-1]],[[8964,5074],[-73,33],[1,3],[1,1],[-3,6],[-1,4],[-2,1],[17,8],[17,1],[42,-16],[31,-21],[17,-25],[-21,-2],[-26,7]],[[9219,5108],[-2,-3],[6,-5],[6,-7],[4,-7],[3,-3],[3,-1],[-13,-5],[-4,-1],[-73,13],[4,-3],[32,-13],[-5,-2],[-15,0],[3,-3],[8,-3],[13,-9],[22,-10],[-15,-8],[-16,-1],[-31,7],[-58,26],[-3,3],[-5,10],[-3,4],[-4,3],[-11,6],[6,7],[4,3],[3,0],[-7,8],[-2,2],[3,1],[8,1],[12,6],[2,-2],[-5,10],[2,5],[3,4],[-16,5],[6,9],[8,5],[8,2],[22,1],[19,-6],[3,-3],[-2,-4],[-3,-3],[-3,-1],[-3,0],[10,-9],[5,-3],[6,0],[29,7],[6,-3],[-11,-10],[-3,-2],[6,1],[37,-10],[5,-4],[-4,-5]],[[9039,5403],[6,12],[8,6],[18,3],[76,-8],[45,-18],[4,-4],[2,-6],[3,-6],[2,-7],[3,-3],[43,-32],[1,-9],[8,-23],[3,-10],[-14,-10],[-14,-3],[-14,2],[-70,28],[-6,7],[3,-1],[4,1],[8,5],[-12,10],[-86,29],[-6,6],[2,0],[7,5],[13,1],[-31,25],[-6,0]],[[95254,5723],[11,3],[4,-1],[2,-6],[-2,-5],[-20,-27],[-4,-7],[0,-3],[-1,-8],[-1,-3],[-2,-3],[-5,-3],[-2,-2],[-1,-3],[-4,-7],[-2,-3],[-2,-2],[-3,-1],[-17,-4],[-30,7],[-9,6],[-7,10],[39,35],[5,10],[9,6],[42,11]],[[9600,5710],[9,-6],[16,-15],[24,-31],[9,-8],[8,-3],[-5,-11],[-7,-6],[-8,-2],[-30,0],[-88,29],[-88,29],[-30,19],[-9,8],[-1,3],[6,9],[7,7],[40,20],[27,3],[41,-8],[79,-37]],[[95135,5783],[12,18],[11,2],[8,-8],[5,-13],[-13,-13],[-11,-2],[-8,6],[-4,10]],[[13175,6416],[20,2],[21,-8],[18,-2],[4,-2],[-7,-7],[-3,-3],[3,-3],[1,-1],[-3,-6],[-17,-11],[-11,-17],[-16,-8],[-16,-1],[-74,18],[-7,6],[5,6],[2,2],[3,0],[-11,10],[-3,2],[9,-1],[8,1],[6,3],[3,5],[16,-1],[49,16]],[[13633,6383],[-2,-3],[-2,-2],[-5,-4],[0,-7],[-1,-17],[0,-8],[-2,-4],[-1,0],[-1,0],[-2,-2],[0,-2],[1,-2],[1,-2],[-19,-21],[-11,-8],[0,-1],[0,-3],[-1,-4],[-2,-2],[-2,-2],[-30,-3],[-73,21],[-72,21],[-11,-2],[-14,-7],[-8,-1],[-6,5],[-1,5],[-3,5],[-4,4],[-3,2],[-34,8],[-15,8],[1,1],[6,7],[10,4],[3,3],[-5,-1],[-6,3],[-16,15],[-14,8],[-6,0],[46,25],[0,2],[3,4],[6,7],[49,22],[23,-1],[11,2],[4,0],[8,-7],[2,-1],[14,3],[5,-1],[-3,-4],[-10,-7],[7,-9],[9,-6],[119,-32],[39,11],[5,-2],[2,-2],[1,-2],[0,-4],[1,-4],[2,-3],[7,-3]],[[14686,6368],[0,-4],[-1,-4],[-2,-3],[-14,-14],[-10,-7],[-2,-5],[17,-13],[-2,-5],[-7,-7],[1,0],[0,-2],[-4,-7],[-55,-28],[-26,-6],[-12,2],[-98,53],[1,3],[1,4],[0,4],[-1,4],[-3,4],[-9,4],[-3,6],[-6,3],[-4,3],[-1,2],[0,2],[-7,3],[-19,-4],[-6,7],[2,0],[8,6],[2,3],[-1,7],[-4,6],[-4,5],[-3,4],[0,2],[2,2],[1,4],[-3,4],[-8,2],[1,4],[0,4],[-4,12],[-2,10],[-1,4],[-6,12],[-2,5],[4,6],[10,1],[106,-23],[70,-37],[19,-4],[19,5],[8,-1],[29,-11],[3,-2],[2,-3],[3,-8],[1,-3],[5,-2],[9,1],[4,-4],[1,-1],[1,-2],[0,-2],[0,-1]],[[17453,6435],[-32,-13],[-15,0],[-16,7],[9,22],[14,12],[80,16],[9,-1],[7,-5],[-28,-23],[-28,-15]],[[13299,6557],[-6,-10],[-8,-4],[-17,4],[-11,5],[-6,6],[-1,8],[6,3],[14,2],[12,-2],[13,-7],[4,-5]],[[17739,6704],[-16,-22],[-38,-21],[-44,-35],[-35,-13],[-9,-6],[41,-10],[5,1],[-10,-15],[-22,-21],[-51,-19],[-115,-16],[-28,10],[-9,6],[-12,9],[-7,15],[2,22],[6,10],[134,62],[135,63],[24,2],[49,-22]],[[16716,6574],[-19,6],[-9,6],[-2,10],[5,8],[7,3],[14,4],[0,1],[0,3],[2,6],[0,2],[3,2],[5,4],[3,1],[26,4],[9,3],[8,8],[-4,7],[-5,6],[-26,19],[-4,5],[-2,5],[-2,14],[-2,6],[-4,5],[-13,7],[6,4],[13,5],[6,6],[-34,11],[-4,4],[57,4],[33,19],[24,8],[103,-4],[41,-15],[17,-13],[3,-3],[1,-4],[1,-5],[-1,-10],[0,-5],[1,-4],[3,-2],[4,-2],[-21,-21],[-5,-5],[0,-4],[5,-8],[-7,-11],[-9,-8],[-61,-36],[-58,-14],[-4,-3],[-3,-5],[-3,-6],[-3,-5],[-6,-4],[-54,-12],[-35,3]],[[16594,6689],[-2,-2],[-6,-9],[-2,-4],[11,-4],[5,-5],[1,-8],[-2,-5],[-3,-3],[-6,-5],[-101,-43],[-101,-43],[-7,-5],[-5,-6],[-2,-6],[0,-10],[-1,-6],[5,-7],[1,-4],[-1,-5],[-3,-1],[-7,0],[-3,-1],[1,-6],[7,-7],[2,-5],[-3,-4],[-3,-2],[3,-5],[25,-9],[6,-5],[1,-1],[-43,-23],[-106,-13],[-106,-13],[-106,-13],[-60,20],[-31,-4],[-15,3],[-17,9],[-60,17],[-9,7],[-15,16],[-6,12],[2,9],[-7,9],[10,8],[11,3],[53,2],[9,6],[-2,5],[-2,2],[-7,2],[-7,4],[-4,4],[-6,12],[-30,16],[-2,3],[1,4],[-1,8],[0,2],[6,12],[4,2],[4,1],[9,0],[12,4],[1,2],[0,7],[4,3],[13,1],[2,1],[1,2],[0,4],[-2,7],[0,4],[0,2],[2,2],[1,1],[0,1],[0,3],[-1,1],[0,1],[1,3],[1,2],[2,1],[34,20],[15,2],[57,21],[5,5],[1,1],[-10,5],[-20,4],[-43,-4],[-96,16],[-2,2],[-2,4],[-1,4],[-1,4],[-1,5],[-3,5],[-4,3],[-9,2],[-92,-10],[0,1],[0,4],[0,2],[3,3],[25,4],[3,2],[2,3],[-1,6],[-4,5],[-8,7],[-3,6],[1,7],[3,6],[23,27],[20,15],[15,4],[110,-2],[110,-2],[60,-20],[127,-10],[127,-10],[127,-10],[40,8],[31,-12],[15,-14],[-1,-20],[-4,-6],[-6,-4],[-78,-12],[-8,-6],[-3,-1],[25,-10],[100,-12],[7,-6]],[[97211,6933],[-5,-10],[-8,-7],[-16,-11],[2,-2],[1,-6],[0,-8],[-1,-5],[-3,-5],[-5,-4],[-47,-11],[-5,1],[0,8],[0,6],[-1,6],[-3,4],[-4,4],[-4,2],[-28,7],[-13,7],[23,35],[35,39],[3,5],[-8,9],[-4,7],[0,6],[10,12],[0,14],[9,9],[13,3],[12,-4],[6,-12],[0,-16],[1,-15],[9,-9],[3,-16],[9,-17],[19,-26]],[[14591,6913],[9,4],[6,4],[1,6],[-2,4],[0,5],[0,5],[0,5],[-1,4],[-1,2],[-4,3],[-8,9],[-4,7],[-2,6],[-1,7],[2,3],[18,15],[14,24],[20,24],[21,15],[22,9],[11,0],[9,-8],[-2,-3],[-6,-4],[-3,-2],[24,-2],[70,12],[69,12],[118,-16],[5,-5],[23,-28],[17,-15],[95,-31],[9,-9],[-1,-10],[-8,-11],[-8,-9],[1,-5],[5,-8],[24,-26],[14,-11],[62,-19],[6,-6],[4,-11],[0,-12],[-3,-12],[-6,-7],[-7,-4],[-128,-10],[-27,7],[-14,0],[-10,-11],[2,-19],[11,-16],[25,-17],[26,-9],[26,1],[61,19],[30,0],[6,-3],[10,-10],[6,-4],[15,-2],[13,-5],[6,-6],[1,-9],[-2,-2],[-7,-2],[5,-7],[8,-3],[14,0],[18,7],[4,0],[-5,6],[-1,3],[-2,6],[1,7],[1,2],[-1,2],[-3,7],[13,11],[40,12],[36,26],[13,4],[13,-2],[5,-5],[2,-10],[110,-47],[5,-6],[10,-3],[9,-4],[2,-13],[-5,-8],[-48,-26],[9,-16],[13,-9],[56,-16],[-3,-4],[-9,-8],[7,0],[15,-5],[6,-4],[2,-3],[3,-8],[1,-3],[3,-2],[24,-4],[-7,-9],[0,-1],[0,-4],[0,-5],[-1,-3],[-2,-1],[-5,0],[-8,-2],[-5,-3],[-2,-5],[0,-6],[2,-3],[2,-2],[1,-3],[-1,-7],[-5,-5],[-5,-3],[-5,-1],[26,-22],[-7,-9],[-9,-8],[-18,-10],[-22,-1],[-66,29],[-75,-4],[-74,-3],[-117,37],[-10,7],[1,0],[0,1],[-1,0],[36,16],[-84,24],[-85,25],[-8,9],[-2,4],[0,7],[-1,3],[-3,4],[-8,4],[-4,3],[2,1],[2,1],[1,2],[1,2],[-6,4],[-32,5],[-3,3],[-8,9],[-12,9],[-129,47],[6,5],[9,7],[5,12],[-1,14],[-6,7],[-19,5],[-5,9],[1,7],[3,4],[8,5],[2,6],[-1,3],[-26,10],[3,6],[1,2],[-50,3],[-30,11],[-11,0],[-11,-5],[-11,-7],[-9,-11],[9,-20],[0,-4],[-14,-8],[-63,4],[-6,2],[-3,3],[-2,4],[0,6],[3,17],[0,8],[1,13],[9,10],[16,14],[-6,5],[-50,19],[-15,0],[-8,1],[-6,7]],[[69105,7761],[1,-1],[6,-6],[10,-16],[3,-9],[3,-13],[-3,-12],[-6,-9],[-6,-7],[-19,-14],[-80,-30],[-10,1],[-6,9],[15,28],[43,47],[6,13],[2,16],[4,7],[10,8],[12,5],[7,-1],[1,-3],[1,-6],[1,-2],[1,-2],[1,-1],[3,-2]],[[69423,7884],[-3,-13],[-4,-10],[-26,-45],[-3,-11],[1,0],[0,-1],[1,-1],[1,-1],[-3,-3],[-2,-2],[-6,-2],[-2,0],[-7,2],[-2,0],[6,9],[-13,31],[-5,8],[4,4],[7,10],[1,2],[0,2],[0,2],[0,5],[-1,1],[8,9],[3,4],[1,2],[0,2],[0,1],[2,2],[5,4],[7,1],[12,-1],[18,-11]],[[49103,8391],[13,-34],[54,-44],[12,-24],[-26,-7],[-27,-1],[-25,6],[-22,12],[-10,9],[-9,13],[-7,13],[-5,11],[4,5],[3,5],[5,12],[-1,0],[0,1],[-10,15],[12,8],[21,2],[18,-2]],[[49245,8529],[29,-12],[87,28],[48,-10],[13,-9],[-3,-3],[-12,-22],[-4,-4],[-14,-8],[-5,-5],[-5,-6],[-5,-8],[-4,-9],[-7,-20],[-2,-12],[2,-10],[-3,-6],[-73,-69],[-47,-23],[-18,2],[-5,7],[-1,17],[-6,9],[1,11],[-1,8],[-2,8],[-4,8],[6,-1],[7,6],[11,15],[7,5],[17,9],[7,1],[-89,34],[6,2],[5,8],[1,12],[-2,12],[-4,8],[-6,6],[-7,3],[-49,15],[-70,43],[-40,8],[4,27],[12,7],[32,-6],[64,14],[78,-9],[78,-9],[17,-7],[15,-13],[-18,-15],[-46,-21],[5,-16]],[[50542,8657],[13,4],[18,-2],[16,-10],[6,-19],[-8,-15],[-17,1],[-18,11],[-11,15],[1,4],[0,3],[0,3],[0,5]],[[48350,8764],[-11,-25],[3,-20],[23,-30],[-10,-9],[-55,-28],[-9,-1],[-7,5],[-5,13],[1,3],[2,2],[1,2],[-66,59],[-10,16],[28,-9],[16,0],[58,32],[20,2],[21,-12]],[[50894,8782],[12,-26],[-3,-30],[-12,-26],[-14,-19],[-27,-18],[-29,-12],[-59,-9],[-17,4],[-15,12],[-9,19],[-5,27],[19,18],[112,64],[24,7],[23,-11]],[[70055,8655],[5,-10],[0,-4],[-7,-8],[-8,-4],[-22,-2],[-72,18],[-11,10],[-31,53],[-4,9],[-3,9],[-4,20],[-1,15],[0,29],[-2,15],[3,8],[2,3],[3,3],[6,15],[11,15],[13,10],[13,-2],[3,-6],[1,-11],[2,-12],[5,-8],[0,-20],[4,-16],[7,-14],[7,-10],[9,-10],[10,-6],[10,-3],[5,-2],[4,-7],[2,-9],[2,-9],[3,-9],[4,-6],[4,-2],[23,-1],[4,-2],[3,-5],[1,-8],[-2,-7],[-2,-7],[-1,-6],[0,-2],[0,-1],[1,-2],[0,-1]],[[51124,8835],[23,28],[46,11],[48,-4],[29,-19],[13,-45],[-4,-40],[-17,-31],[-22,-17],[-37,-2],[-35,21],[-28,40],[-16,58]],[[51518,8863],[26,16],[26,2],[25,-14],[23,-32],[-22,-22],[-29,7],[-29,21],[-20,22]],[[94947,8872],[6,11],[9,3],[9,-4],[6,-10],[-9,-10],[-9,-2],[-8,4],[-4,8]],[[51742,8942],[20,0],[30,-8],[23,-17],[0,-25],[-9,-9],[-10,-1],[-10,6],[-28,26],[-10,13],[-6,15]],[[57434,8882],[15,-31],[13,-17],[4,-8],[1,-8],[-2,-9],[-7,-29],[-3,-9],[-6,-7],[-12,-4],[-10,1],[-21,9],[-11,1],[-16,-5],[-16,-15],[-14,-3],[-111,35],[-20,14],[-3,12],[-7,9],[-5,9],[-4,10],[-2,9],[8,13],[-1,9],[1,8],[2,7],[4,7],[7,9],[36,25],[6,6],[14,20],[9,9],[13,9],[17,7],[36,4],[36,-9],[17,-10],[7,-6],[5,-7],[4,-9],[9,-34],[7,-22]],[[50391,8991],[7,-14],[4,-19],[4,-32],[0,-1],[-26,-31],[-26,-42],[-5,-17],[-10,-45],[-7,-16],[-9,-6],[-4,11],[-2,22],[-7,26],[-16,29],[-16,19],[-13,26],[-4,52],[11,23],[17,11],[71,14],[18,-1],[13,-9]],[[53052,8987],[3,-18],[-22,-3],[-30,4],[-66,26],[-10,12],[27,4],[72,-8],[26,-17]],[[70177,9017],[6,-6],[16,3],[3,-2],[0,-11],[-47,-40],[-28,-11],[-13,20],[6,9],[6,5],[4,1],[3,-5],[7,3],[6,6],[5,7],[14,26],[5,6],[6,5],[0,-5],[0,-4],[0,-4],[1,-3]],[[54512,9189],[85,-7],[24,-15],[-13,-20],[-72,-31],[-6,-6],[-6,-6],[-5,-8],[-3,-8],[-3,-13],[0,-10],[1,-12],[0,-17],[-4,-14],[-13,-40],[-5,-11],[-14,0],[-63,50],[-58,15],[-27,19],[-10,35],[9,21],[12,19],[14,15],[12,9],[69,28],[76,7]],[[63298,10457],[11,-13],[2,0],[-36,-20],[-72,-13],[-18,3],[-16,9],[14,37],[7,11],[9,8],[11,4],[14,-2],[-4,-10],[-10,-9],[-11,-7],[-7,-3],[57,-12],[10,2],[10,5],[18,14],[3,1],[4,-1],[1,0],[3,-4]],[[83517,10853],[2,-3],[2,-3],[2,-1],[1,0],[6,-2],[9,2],[26,12],[8,0],[-93,-48],[-5,-1],[-6,5],[-3,7],[-1,9],[4,9],[2,4],[5,11],[2,4],[5,4],[5,1],[13,0],[12,-5],[2,-1],[2,-4]],[[83646,10922],[18,0],[0,-4],[-7,-12],[-16,-13],[-24,-12],[-24,-5],[-15,6],[17,10],[29,24],[22,6]],[[73794,10943],[30,-9],[8,-6],[11,-15],[29,-57],[-4,-12],[-14,-15],[-25,-19],[-48,-11],[-7,3],[7,14],[3,6],[5,5],[-7,0],[-68,37],[-10,12],[-8,15],[-8,18],[-6,21],[5,17],[9,8],[10,3],[39,-1],[23,-10],[15,-1],[10,-3],[1,0]],[[63548,10957],[9,-28],[-12,-9],[-47,3],[-54,-18],[-25,-1],[-8,25],[0,9],[2,9],[4,9],[9,8],[11,5],[97,-2],[14,-10]],[[74041,10967],[8,-9],[9,-2],[18,1],[-16,-15],[-34,-23],[-26,-7],[-16,2],[-8,4],[-14,14],[-8,10],[-2,9],[8,15],[10,10],[10,6],[52,6],[5,-1],[-1,-5],[0,-5],[2,-5],[3,-5]],[[73667,11047],[8,-8],[31,-14],[-16,-19],[-24,-5],[-24,6],[-16,18],[6,17],[4,19],[5,14],[12,3],[4,-5],[6,-18],[4,-8]],[[77385,11154],[2,5],[7,5],[11,4],[14,0],[41,-15],[26,-17],[-4,-8],[-28,-27],[-6,-4],[-7,-2],[-17,3],[-17,12],[-14,19],[-8,25]],[[77056,11145],[6,-12],[-9,-4],[-91,15],[-8,6],[-7,8],[10,22],[16,9],[17,1],[33,-8],[17,-12],[5,-5],[4,-6],[7,-14]],[[95173,11110],[-3,-4],[-13,-34],[-3,-4],[-3,-1],[-4,3],[-5,4],[-10,7],[-2,2],[-36,58],[-4,3],[-10,4],[9,8],[5,7],[2,7],[-1,4],[-4,1],[-2,3],[0,5],[2,10],[-1,5],[-2,5],[-3,3],[-6,3],[3,24],[4,2],[68,-110],[4,-6],[15,-9]],[[77862,11306],[1,-4],[2,-8],[0,-4],[-2,-9],[-5,-4],[-11,-3],[1,-1],[4,-5],[1,-2],[3,0],[4,0],[2,0],[-2,-2],[-13,-12],[-19,-6],[-19,1],[-10,6],[-4,10],[4,12],[21,26],[14,15],[8,4],[8,1],[7,-4],[2,-1],[1,-3],[2,-7]],[[76921,11351],[16,-12],[11,-18],[4,-21],[-5,-19],[-29,-23],[-69,-4],[-70,-5],[-14,3],[-5,15],[-12,8],[14,38],[8,16],[12,15],[14,9],[17,7],[19,2],[18,-2],[6,-4],[11,-10],[7,-3],[12,0],[24,9],[11,-1]],[[77999,11515],[48,-6],[10,-5],[5,-10],[-4,-15],[-13,-15],[-17,-8],[-40,-2],[-17,4],[-7,5],[-11,4],[-30,-9],[-18,-1],[-9,4],[-8,9],[38,38],[6,3],[14,4],[29,-5],[24,5]],[[75693,11559],[34,-13],[14,-14],[0,-21],[-25,-19],[-41,-4],[-37,12],[-18,31],[14,23],[18,10],[20,1],[21,-6]],[[77934,11737],[46,13],[57,1],[53,-19],[35,-49],[2,-27],[-8,-20],[-57,-54],[-16,-11],[-114,-12],[-12,4],[7,6],[-1,2],[-3,3],[-6,3],[-38,-3],[-10,3],[-9,9],[-6,15],[-2,23],[9,34],[23,34],[27,28],[23,17]],[[78691,11744],[28,-14],[5,-5],[3,-7],[-1,-8],[-4,-5],[-6,-4],[-16,-5],[-31,2],[-11,5],[-9,9],[-3,9],[3,28],[2,12],[-2,14],[-10,20],[-5,6],[-13,9],[-59,17],[-14,11],[0,4],[-7,28],[9,22],[16,8],[20,-2],[50,-25],[16,-14],[11,-19],[2,-20],[-8,-23],[3,-20],[5,-12],[8,-9],[18,-12]],[[24831,9715],[-1,1],[-1,3],[-3,5],[-2,5],[-2,5],[1,7],[3,3],[1,4],[0,6],[1,5],[1,4],[0,3],[1,2],[2,1],[5,0],[3,-1],[5,0],[2,-1],[4,-2],[4,-6],[3,-6],[0,-2],[0,-4],[1,-4],[0,-5],[2,-4],[-1,-7],[-3,-7],[-2,-1],[0,-1],[-3,0],[-6,0],[-4,0],[-4,-1],[-4,-1],[-2,-1],[-1,0]],[[86537,31752],[-53,45],[-47,31],[-11,2],[-12,-10],[-28,-37],[-44,-28],[-12,-4],[-26,1],[-42,12],[-65,0],[-12,7],[-31,0],[-6,-2],[-16,-10],[-37,3],[-53,-15],[-60,-4],[-19,-11],[-5,-2],[-24,0],[-16,-7],[-6,-1],[-18,1],[-6,-1],[-17,-12],[-4,-1],[-9,1],[-25,-7],[-3,-1],[-17,-10],[-44,-42],[-4,-9],[-9,-6],[-19,-25],[-121,-102],[-56,-39],[-70,-23],[-50,-35],[-6,-2],[-3,-2],[-5,-11],[-1,-2],[-68,-37],[-49,-12],[-6,-4],[-2,4],[-8,-6],[-33,2],[-32,-6],[-9,6],[-8,-6],[-23,-4],[-84,20],[-27,16],[-8,9],[-12,2],[-5,3],[-3,-2],[-11,-6],[-3,-4],[-4,-9],[-2,-3],[-7,-4],[-20,4],[-8,-7],[-14,-13],[-16,-15],[-19,-25],[-36,-50],[-37,-53],[-18,-9],[-38,-22],[-22,-23],[-45,-43],[-17,-10],[-5,-2],[-5,-3],[-27,-57],[-19,-20],[-24,-15],[-11,-6],[-52,-15],[-45,-14],[-12,-8],[-5,-7],[-12,-21],[-3,-5],[-6,-3],[-6,-7],[-10,-18],[-13,-31],[-6,-21],[-4,-20],[-1,-25],[-2,-13],[-3,-9],[-4,-9],[-10,-41],[0,-5],[0,-4],[0,-5],[-1,-6],[-3,-14],[-2,-14],[-5,-27],[-1,-11],[-1,-28],[-3,-12],[-5,-5],[-6,-2],[-6,-6],[-4,-7],[-3,-9],[0,-2],[0,-1],[0,-3],[0,-2],[-2,-3],[-12,-14],[-16,-33],[-4,-14],[-2,-12],[-1,-6],[1,-8],[1,-4],[0,-4],[-3,-6],[-5,-7],[-12,-10],[-5,-5],[-2,-6],[-4,-12],[-1,-3],[-3,0],[-9,1],[-4,-5],[-11,-32],[-4,-1],[-5,5],[-4,7],[-2,7],[-3,5],[-22,5],[-11,-7],[-8,-17],[-13,-33],[-10,-8],[-1,1],[-1,2],[-2,1],[-1,0],[-2,-2],[-3,-5],[-2,-1],[-9,-1],[-2,4],[-4,37],[-6,21],[-8,15],[-10,10],[-7,1],[-4,-2],[-4,-3],[-11,-2],[-21,-15],[-10,-4],[-7,0],[-3,3],[-5,11],[-3,2],[-4,-1],[-8,-7],[-24,1],[-11,-3],[-9,-10],[2,-8],[0,-7],[-3,-7],[-3,-6],[-6,10],[-1,2],[-2,1],[-1,2],[-1,1],[-6,-8],[-3,1],[-28,16],[-11,1],[-10,-6],[-9,-12],[-4,-8],[-1,-7],[1,-20],[-2,-11],[-5,4],[-5,8],[-2,5],[-2,-2],[-3,-6],[-1,-5],[-2,-3],[-26,1],[-6,3],[0,4],[9,16],[0,10],[-6,22],[-2,21],[-2,8],[-2,4],[-6,9],[-7,18],[-2,3],[-3,-1],[-4,-4],[-12,0],[-7,-6],[-9,-19],[-5,-4],[-4,-2],[-10,-9],[-5,-1],[-5,4],[-9,14],[-4,3],[-4,0],[-5,3],[-3,1],[-3,-2],[-3,-4],[-2,-4],[-2,-3],[-6,1],[-4,7],[-3,8],[-5,5],[-3,1],[-7,6],[-5,6],[-3,1],[-6,-2],[-46,4],[-5,-3],[-10,-8],[-14,-2],[-5,-4],[-13,-14],[-1,-1],[-1,3],[-7,7],[-7,5],[-3,1],[-5,-2],[-11,-8],[-5,-2],[-8,0],[-3,-1],[-3,-4],[-6,5],[-8,3],[-14,1],[-8,-5],[-7,-8],[-7,-5],[-7,1],[-5,-4],[-49,0],[-2,-1],[-3,-3],[-2,-5],[0,-5],[0,-4],[-1,-4],[-4,-5],[-29,-20],[-8,-2],[-4,7],[-28,14],[-28,4],[-5,-2],[-10,-9],[-7,-1],[-4,2],[-8,10],[-5,4],[-5,1],[-5,-2],[-5,-3],[-4,-4],[-7,-11],[-4,-4],[-6,-1],[-14,-2],[-14,-10],[-4,-5],[-17,-32],[-8,-9],[-17,-13],[-8,-11],[3,-4],[-2,-6],[-3,-4],[-7,-4],[-2,-5],[-10,-39],[-1,-5],[-10,-13],[-4,-12],[-2,-16],[-2,-16],[0,-14],[4,-13],[7,-5],[7,-3],[7,-7],[-3,-3],[-4,-1],[-6,-4],[-9,-4],[-10,18],[-10,2],[-6,-9],[-3,-15],[2,-17],[5,-11],[-3,-3],[-6,-10],[-1,-3],[0,-3],[0,-3],[-3,1],[-1,2],[-3,10],[-2,13],[-4,4],[-5,-1],[-4,-4],[-3,-4],[-1,-4],[-2,-12],[0,-13],[-1,-8],[-4,-3],[-4,-3],[-3,0],[-1,5],[-1,7],[-1,5],[-2,3],[-4,3],[-3,1],[-5,-2],[-3,1],[-3,3],[-4,8],[-2,2],[-51,15],[-3,-1],[-5,-5],[-2,-1],[-14,3],[-2,0],[12,-22],[2,-6],[-4,-4],[-18,-4],[-6,-3],[-10,-14],[-3,-3],[-4,-6],[-1,-12],[2,-12],[7,-3],[-9,-19],[-5,-7],[-11,-6],[-9,-12],[-6,-5],[-25,-10],[-12,-8],[-10,-14],[-4,-8],[-5,-21],[-4,-10],[-2,-12],[0,-12],[3,-18],[0,-14],[-4,-5],[-12,2],[-22,-3],[-5,-4],[-12,-13],[-9,-2],[-2,-2],[-1,-6],[2,-3],[3,-1],[1,-2],[4,-10],[2,-11],[-1,-9],[-5,-2],[-3,2],[-14,18],[-2,-4],[-2,4],[-3,-4],[-14,-8],[-3,-3],[-2,-1],[-2,-1],[-3,1],[-5,3],[-3,1],[-2,-1],[-5,-3],[-2,-1],[-2,1],[-1,2],[-2,2],[-2,0],[-1,-2],[-2,-5],[-1,-1],[-16,-3],[-4,-3],[-1,-9],[4,-9],[4,-6],[8,-6],[3,0],[1,5],[-1,5],[-1,6],[-1,5],[3,2],[4,-3],[5,-20],[5,-5],[10,3],[3,-2],[-1,-9],[-4,2],[-3,-2],[-6,-8],[-5,-2],[-11,2],[-9,5],[-14,22],[-17,12],[-18,3],[-4,-2],[-8,-7],[-4,-11],[-1,-16],[-1,-18],[-8,7],[-14,20],[-10,5],[-9,2],[-3,2],[-16,18],[-4,5],[-8,8],[-5,4],[-3,-1],[-2,-8],[-5,1],[-11,9],[-5,1],[-2,-1],[-2,-2],[-3,-1],[-3,2],[-3,4],[-3,2],[-5,-4],[-4,-8],[-5,-21],[-3,4],[-6,10],[-3,3],[-5,1],[-7,5],[-4,2],[-3,-2],[-4,-2],[-3,-1],[-3,3],[-3,3],[-4,3],[-5,0],[-3,-3],[-6,-11],[-5,-8],[-6,-2],[-9,3],[-4,3],[-11,14],[-11,5],[-4,3],[-2,-4],[0,-2],[-1,-2],[1,-4],[-20,0],[-3,-6],[-2,-8],[-6,5],[-9,13],[-15,3],[-5,7],[-3,2],[-3,1],[-7,-1],[-2,2],[-7,14],[-11,14],[-5,10],[2,5],[24,-9],[5,-4],[3,0],[1,4],[-1,6],[-3,6],[-3,3],[-10,5],[-4,8],[-4,10],[-4,7],[-1,2],[-2,2],[-2,-1],[-2,-3],[7,-24],[-6,-8],[-13,3],[-11,9],[-12,12],[-42,23],[-21,5],[-3,0],[-5,-3],[-4,0],[-1,3],[1,7],[1,10],[-2,11],[-7,15],[-4,20],[-5,13],[-8,14],[-39,81],[-37,56],[-12,13],[-10,4],[-2,2],[-2,5],[-2,6],[-1,5],[-3,2],[-2,1],[-43,40],[-13,8],[-7,2],[-22,-2],[-6,-5],[-7,-24],[-5,-8],[-3,11],[-25,49],[-2,10],[-1,16],[1,23],[-1,10],[-2,11],[-7,31],[-1,5],[1,13],[-1,82],[-3,24],[0,14],[1,9],[4,27],[2,10],[-4,15],[-4,21],[0,23],[4,16],[7,14],[2,8],[-1,13],[-3,32],[-1,12],[4,0],[12,-10],[7,-15],[6,-18],[8,-13],[10,-10],[11,-7],[11,-4],[13,0],[12,4],[12,8],[10,10],[8,11],[23,49],[16,51],[9,34],[4,29],[2,7],[3,5],[2,0],[3,-3],[6,-2],[7,7],[2,15],[-1,37],[-1,10],[-2,-1],[-1,-7],[-2,-21],[-3,-28],[-2,0],[1,99],[1,57],[-4,51],[-10,75],[-3,49],[-3,20],[0,20],[3,23],[5,18],[12,34],[7,13],[-2,-23],[-15,-34],[0,-28],[8,-44],[7,-24],[6,-5],[2,9],[-1,14],[-6,22],[-3,8],[-1,5],[0,10],[-1,5],[-1,8],[-4,5],[0,4],[2,3],[3,0],[4,-6],[3,-2],[13,-1],[4,6],[1,15],[-1,14],[-5,5],[-5,3],[-2,5],[-2,12],[0,6],[1,4],[3,11],[2,5],[3,22],[0,22],[-4,18],[-7,11],[7,14],[1,7],[-2,11],[-4,7],[-8,8],[-3,10],[13,0],[4,5],[2,13],[1,12],[3,22],[0,13],[-2,6],[-3,8],[-1,6],[1,9],[1,7],[-1,7],[-3,10],[0,11],[4,76],[-6,91],[-6,49],[-5,25],[-21,60],[-15,67],[-27,77],[-20,101],[-19,84],[-21,67],[-16,30],[-4,37],[0,6],[-1,8],[-17,64],[-1,5],[-1,12],[-9,49],[-2,10],[1,22],[-1,12],[-6,46],[-3,18],[-1,2],[-2,7],[-1,3],[1,4],[2,6],[1,4],[0,13],[0,7],[-1,4],[-2,4],[-6,7],[-2,3],[-2,10],[1,14],[1,14],[1,13],[0,6],[-3,12],[-1,14],[-3,5],[-2,5],[-2,5],[-1,21],[7,76],[-1,13],[-4,21],[-1,9],[-2,51],[2,51],[4,46],[5,34],[1,12],[-1,13],[-7,30],[-4,25],[-1,14],[-1,12],[-1,9],[-5,21],[-4,35],[-15,74],[-3,10],[-50,106],[-1,6],[-9,27],[-3,11],[-3,24],[-5,8],[5,22],[1,27],[-2,27],[-17,79],[-6,19],[-24,53],[-15,46],[-1,9],[-2,9],[-13,37],[-4,6],[-10,9],[-4,8],[-22,50],[-3,17],[-2,6],[0,4],[-1,20],[0,6],[-11,67],[-2,25],[0,26],[1,12],[5,23],[1,12],[1,5],[4,13],[1,6],[0,7],[-19,142],[-18,78],[-24,85],[-45,150],[-30,85],[-18,59],[-16,31],[-19,39],[-30,61],[-4,7],[-8,16],[-4,11],[0,13],[-2,13],[2,8],[-4,12],[-4,18],[-7,29],[-9,15],[-10,22],[-5,15],[1,7],[7,-9],[6,-11],[6,-4],[8,-3],[1,-15],[4,-14],[1,22],[1,19],[2,20],[-1,23],[-1,22],[2,19],[4,16],[4,-74],[3,-67],[-1,-24],[2,-21],[4,-12],[4,-16],[1,-12],[5,-3],[-3,19],[-5,26],[-1,19],[3,28],[4,11],[1,65],[-7,34],[2,18],[7,-29],[2,-68],[5,12],[3,-1],[8,-1],[-1,-25],[3,-12],[0,-17],[4,-8],[1,-12],[2,-10],[3,-16],[2,-29],[-4,-14],[1,-20],[-4,-23],[2,-4],[6,6],[0,21],[0,14],[2,10],[3,23],[-4,25],[1,10],[0,13],[4,4],[4,-12],[2,-10],[1,-12],[2,-17],[-2,-18],[2,-17],[2,-20],[-3,-15],[3,-11],[0,-23],[-1,-22],[5,0],[3,8],[1,8],[0,12],[2,6],[5,12],[-1,11],[0,14],[2,4],[5,-25],[0,-11],[0,-16],[0,-13],[-3,-14],[1,-9],[-2,-6],[4,-3],[5,1],[1,-8],[1,-12],[0,-11],[5,0],[0,13],[2,10],[5,3],[6,5],[7,3],[4,5],[2,-8],[9,1],[0,21],[6,6],[5,5],[5,14],[4,17],[1,17],[-2,25],[-2,14],[2,12],[1,21],[-5,14],[-7,14],[-8,17],[-9,15],[-9,2],[-18,10],[-1,12],[0,10],[-3,11],[-6,16],[-10,25],[-10,4],[-1,19],[-1,12],[2,17],[-4,5],[-2,17],[1,18],[-11,13],[2,16],[-2,13],[-2,10],[-3,6],[-3,9],[-4,6],[-2,8],[0,7],[-2,9],[-4,7],[-7,22],[-2,16],[1,12],[1,16],[4,12],[5,18],[3,18],[7,16],[4,19],[3,3],[1,-19],[2,-22],[-1,-14],[3,-10],[4,1],[2,-2],[2,-7],[6,0],[3,-20],[4,-23],[6,-19],[9,-8],[4,-18],[7,-7],[7,-2],[-1,-19],[-2,-11],[2,-12],[1,-4],[5,-4],[3,-3],[1,-12],[-2,-9],[-5,-9],[1,-11],[0,-18],[-2,-13],[-3,-15],[1,-10],[-2,-17],[-1,-26],[-2,-16],[6,-19],[0,-10],[10,0],[1,-7],[8,2],[15,50],[5,25],[3,21],[-4,26],[0,7],[-3,10],[-1,6],[1,8],[0,2],[2,-1],[1,-1],[6,-2],[7,-15],[-1,-13],[-1,-20],[2,-34],[-1,-18],[6,-11],[5,-1],[-3,-30],[2,-22],[4,-19],[0,-14],[2,-15],[2,-13],[14,-35],[13,-27],[5,-7],[5,0],[5,11],[6,9],[3,12],[8,7],[6,4],[3,18],[5,17],[-4,25],[-4,16],[-2,17],[-2,13],[2,17],[2,12],[3,25],[2,2],[1,8],[0,8],[0,6],[-3,13],[-7,23],[-1,15],[1,4],[2,-3],[4,-10],[2,-2],[3,0],[4,2],[3,2],[1,1],[2,-1],[-2,11],[-3,6],[-3,7],[-1,13],[2,11],[4,14],[2,14],[-1,12],[-5,7],[-14,16],[-10,8],[-2,9],[-1,10],[-3,4],[1,10],[-2,11],[-4,8],[-4,4],[-1,2],[-1,12],[-2,2],[-10,12],[-3,8],[-7,38],[-18,48],[-6,23],[-18,87],[-2,13],[-1,10],[-10,33],[-2,15],[-2,7],[-4,6],[-11,14],[-10,7],[-6,12],[-4,14],[-2,20],[-4,13],[-1,12],[-2,7],[0,5],[1,5],[4,8],[1,5],[0,13],[-2,12],[-5,10],[-8,2],[-1,12],[-1,13],[0,12],[3,9],[2,11],[-1,15],[-2,15],[-2,10],[-17,50],[-29,66],[-6,21],[-5,23],[-2,27],[-2,97],[1,13],[2,8],[7,14],[3,12],[0,13],[-3,26],[-2,20],[0,12],[2,10],[4,7],[3,8],[3,10],[1,14],[0,13],[-1,11],[1,10],[9,22],[3,12],[6,52],[4,9],[5,4],[12,64],[1,6],[2,2],[2,2],[2,3],[1,7],[2,2],[7,7],[6,3],[1,6],[2,7],[2,5],[10,14],[3,9],[2,15],[0,4],[3,8],[1,5],[0,40],[3,24],[0,13],[-3,51],[-5,36],[-1,11],[1,14],[1,6],[1,5],[2,5],[3,4],[3,4],[5,13],[1,14],[-1,72],[-1,18],[-5,15],[-3,13],[-4,38],[-13,28],[-3,3],[-3,3],[-4,2],[-5,0],[4,22],[0,13],[-3,12],[-1,4],[0,20],[-1,8],[-1,5],[-1,5],[1,9],[3,5],[6,6],[3,5],[6,26],[4,7],[1,5],[2,27],[2,14],[3,11],[9,21],[3,10],[23,130],[2,13],[0,12],[2,12],[6,21],[7,36],[18,55],[7,13],[9,11],[5,4],[6,2],[5,3],[5,5],[4,2],[4,-6],[1,-12],[-3,-7],[-4,-7],[-2,-9],[-1,-11],[-4,-25],[-8,-109],[-4,-20],[-2,-21],[5,-20],[2,-8],[5,-22],[1,-9],[-3,-22],[-1,-11],[4,-3],[2,6],[2,11],[3,8],[5,-5],[1,-9],[0,-12],[-2,-11],[-3,-1],[-8,-18],[-1,-6],[0,-9],[2,-15],[-4,-23],[3,-16],[7,-10],[9,0],[4,8],[3,13],[4,11],[9,5],[3,2],[3,5],[3,2],[4,-3],[2,-8],[1,-8],[3,-7],[5,-4],[5,5],[3,5],[1,7],[0,14],[1,5],[2,12],[1,7],[0,13],[2,13],[8,35],[2,16],[3,16],[1,4],[7,19],[0,7],[-1,8],[1,5],[2,2],[3,1],[3,2],[2,22],[5,22],[0,12],[-1,5],[-3,7],[-2,4],[0,4],[-1,11],[0,7],[2,5],[4,-9],[6,-12],[3,-6],[13,51],[4,18],[0,1],[1,0],[1,1],[1,2],[1,3],[1,9],[2,24],[2,9],[7,3],[2,2],[4,10],[2,5],[22,16],[42,52],[11,7],[11,-6],[13,10],[3,4],[3,5],[3,5],[3,0],[2,-8],[33,40],[64,50],[7,7],[2,11],[2,10],[4,10],[8,15],[18,48],[7,12],[10,15],[40,37],[3,5],[3,21],[8,21],[5,24],[8,18],[9,15],[6,7],[4,2],[14,13],[9,7],[4,4],[4,6],[10,4],[8,10],[7,16],[4,23],[0,27],[2,7],[6,2],[3,-2],[5,-5],[5,-4],[7,-1],[5,5],[7,13],[4,3],[12,0],[12,3],[5,5],[8,13],[3,3],[2,1],[2,3],[2,4],[2,14],[3,2],[5,0],[10,7],[32,45],[12,25],[10,34],[5,6],[-2,9],[4,3],[3,1],[2,0],[3,-2],[3,-3],[0,-2],[-3,-1],[-4,-5],[-1,-12],[-1,-24],[-2,-5],[-5,-9],[-1,-6],[0,-8],[1,-4],[14,-24],[5,-4],[7,-1],[5,3],[6,6],[6,7],[2,6],[2,5],[30,27],[2,1],[5,-8],[2,-2],[3,1],[3,3],[7,14],[3,6],[2,0],[2,-4],[0,-4],[0,-3],[0,-5],[-2,-9],[0,-3],[0,-3],[3,-6],[1,-1],[2,-7],[4,-7],[21,-17],[11,-6],[11,-3],[24,3],[21,10],[8,8],[10,15],[7,6],[5,-2],[4,-7],[4,0],[3,7],[1,2],[1,-2],[2,-4],[0,-3],[4,3],[11,10],[2,-5],[3,6],[11,8],[6,7],[6,2],[2,2],[3,6],[3,13],[2,5],[3,7],[2,1],[7,2],[2,3],[4,10],[1,5],[-1,11],[1,6],[1,5],[55,77],[4,3],[3,2],[2,2],[2,1],[3,0],[1,-4],[0,-6],[1,-4],[4,5],[6,-5],[5,4],[4,6],[5,4],[3,1],[6,5],[2,2],[4,-2],[1,-5],[1,-5],[3,-5],[4,1],[12,9],[39,15],[1,-1],[3,1],[1,1],[1,1],[1,1],[8,4],[3,1],[3,-1],[2,-2],[2,-3],[2,-2],[4,-1],[5,0],[6,3],[10,15],[6,3],[7,1],[6,3],[7,11],[6,15],[8,31],[21,48],[3,19],[2,13],[3,5],[4,4],[4,6],[9,6],[2,3],[2,5],[1,6],[1,5],[7,9],[7,-3],[12,-21],[-1,16],[1,8],[3,4],[5,1],[6,-2],[22,-14],[11,-4],[7,-1],[5,-1],[12,-9],[5,-2],[2,2],[4,6],[1,0],[3,-3],[2,-5],[0,-5],[2,-5],[10,-13],[7,-6],[5,-3],[7,1],[9,12],[4,3],[1,2],[6,16],[2,1],[6,-3],[3,0],[4,6],[0,6],[0,6],[0,6],[5,6],[6,1],[13,-2],[29,11],[45,15],[47,9],[36,23],[78,62],[43,38],[42,38],[48,67],[10,22],[4,2],[4,5],[33,70],[29,78],[29,90],[5,34],[5,14],[2,8],[1,12],[0,6],[2,6],[4,8],[2,6],[4,28],[6,24],[3,8],[1,14],[1,6],[-1,8],[-2,5],[-3,4],[-2,5],[-2,16],[3,1],[5,-4],[5,1],[2,4],[3,2],[10,1],[2,3],[13,24],[2,10],[1,13],[-2,8],[-3,5],[-8,10],[7,12],[4,9],[7,34],[4,15],[3,6],[4,-2],[4,-5],[4,-4],[6,-1],[6,5],[31,47],[6,14],[3,18],[2,6],[17,16],[6,8],[4,10],[7,22],[1,-2],[1,-3],[2,-3],[4,17],[2,8],[9,6],[20,22],[6,17],[5,20],[2,14],[-1,22],[-2,16],[-4,10],[-9,7],[-8,4],[-10,2],[-9,-5],[-5,-17],[-2,0],[-1,4],[-1,3],[-2,2],[-2,3],[8,19],[3,20],[0,23],[-4,40],[1,37],[0,6],[2,6],[0,7],[-1,6],[-4,10],[-3,12],[-1,6],[-1,15],[-4,18],[0,6],[-3,9],[0,5],[-1,62],[3,70],[4,27],[2,20],[2,10],[3,8],[5,4],[2,8],[14,36],[4,7],[-2,6],[-3,1],[-2,3],[3,12],[3,7],[38,69],[10,13],[-1,-11],[1,-7],[4,-1],[4,7],[1,13],[-2,10],[-1,7],[5,3],[5,-2],[2,-6],[2,-7],[2,-8],[4,-4],[14,-6],[-3,9],[-6,28],[-9,21],[-1,7],[1,7],[1,3],[1,3],[1,3],[1,-2],[1,-1],[1,1],[1,4],[0,8],[0,2],[2,9],[3,6],[3,6],[5,4],[2,-9],[2,-5],[3,-3],[5,0],[2,2],[4,5],[2,1],[7,0],[2,0],[4,5],[3,6],[3,4],[5,2],[4,-2],[13,-11],[-16,30],[-5,16],[0,20],[1,4],[2,9],[1,5],[0,20],[1,6],[2,9],[4,8],[3,4],[8,-2],[4,1],[3,5],[2,7],[1,8],[3,6],[4,3],[3,12],[2,24],[4,21],[6,0],[19,24],[3,-4],[0,-8],[-6,-16],[12,-11],[5,-7],[-1,-10],[-4,-5],[-3,1],[-4,2],[-3,2],[-4,-2],[-1,-5],[-2,-14],[3,-14],[-8,-30],[3,-9],[1,-13],[1,-5],[3,-2],[5,7],[4,1],[1,-6],[0,-14],[1,-16],[4,-10],[7,5],[4,-11],[2,-4],[3,-1],[3,1],[1,4],[1,4],[2,5],[2,1],[0,-6],[-1,-9],[-1,-6],[-3,-4],[-2,0],[-2,-2],[-2,-8],[0,-14],[3,-10],[5,-7],[5,-2],[3,-4],[1,-10],[1,-11],[-1,-7],[-3,-22],[0,-13],[4,-5],[7,-4],[4,-8],[5,-21],[12,-22],[2,-8],[0,-24],[1,-10],[3,-9],[9,-22],[6,-14],[2,-15],[2,-10],[5,-14],[3,-16],[-2,-14],[5,-22],[3,-8],[9,-9],[4,-12],[3,-12],[2,-3],[3,-9],[4,-7],[3,-8],[3,-24],[8,-18],[4,-10],[1,-11],[2,-23],[1,-9],[0,-2],[2,2],[2,6],[1,6],[0,33],[0,4],[-2,9],[-5,21],[0,6],[0,25],[2,26],[1,7],[5,14],[1,7],[0,7],[0,7],[0,7],[1,5],[2,6],[1,6],[0,13],[1,7],[2,5],[3,3],[1,1],[1,-1],[2,-1],[0,12],[-1,7],[-5,10],[-12,36],[-2,31],[1,10],[4,15],[1,9],[3,-7],[3,0],[2,2],[3,1],[4,-1],[2,-1],[3,-8],[1,-4],[3,-27],[1,2],[2,4],[2,2],[4,-3],[6,-8],[5,-10],[2,-9],[0,-6],[1,-6],[2,-5],[2,-3],[3,-5],[6,-6],[3,-3],[4,-10],[3,-12],[4,-11],[5,-4],[7,0],[3,1],[1,5],[-1,5],[-3,2],[-3,1],[-3,2],[-8,16],[-5,19],[-6,46],[-4,20],[-1,12],[2,5],[4,-3],[10,-13],[3,-4],[1,12],[-3,8],[-4,7],[-2,11],[2,9],[8,13],[1,7],[2,9],[5,6],[6,5],[4,6],[3,11],[2,13],[-2,11],[-4,5],[-3,-23],[-5,-11],[-19,-14],[-12,-5],[-7,7],[-10,38],[-1,11],[-3,23],[-2,9],[-5,7],[-9,9],[-4,6],[-9,18],[-5,5],[-24,7],[0,2],[1,5],[5,6],[6,3],[4,6],[-3,13],[11,12],[4,6],[0,11],[-3,6],[-12,-2],[-6,4],[3,-18],[0,-3],[-9,1],[-4,2],[-1,8],[-2,3],[-8,11],[0,1],[-3,7],[-1,0],[-1,2],[-2,2],[-1,3],[-1,5],[12,-7],[4,-1],[3,3],[-2,7],[-6,15],[7,-3],[9,-18],[6,-4],[7,-3],[7,-7],[7,-5],[7,3],[-3,6],[-4,3],[-9,3],[6,7],[8,2],[5,3],[-33,35],[-9,6],[0,5],[9,-4],[3,1],[2,10],[26,-19],[18,-1],[-7,13],[-4,5],[-4,2],[-2,2],[-2,4],[-3,8],[-1,4],[3,3],[3,0],[3,-6],[5,-4],[5,-2],[4,-1],[0,5],[1,9],[0,9],[-1,6],[-4,2],[-11,1],[-3,3],[-1,4],[-2,6],[-3,5],[-2,3],[-3,-2],[-2,-2],[0,-3],[3,-1],[1,-1],[0,-3],[-2,-3],[-2,-1],[-2,2],[-2,3],[-1,4],[-1,3],[-6,7],[-3,6],[-2,7],[7,3],[3,11],[-2,12],[-4,7],[2,14],[2,5],[3,5],[1,-3],[4,-3],[1,2],[-2,12],[27,4],[8,-4],[1,12],[2,-3],[3,-8],[2,-5],[6,0],[1,0],[1,-3],[2,-8],[1,-1],[3,-2],[2,-3],[1,-5],[-2,-5],[-2,0],[-6,4],[-2,-2],[1,-7],[5,-5],[6,-3],[5,-1],[-4,-8],[-8,-4],[-8,-1],[-7,-3],[20,-29],[7,-7],[4,-2],[3,0],[2,-3],[2,-7],[1,-10],[-2,-7],[-2,-1],[-2,6],[-4,-5],[5,-28],[3,-8],[1,8],[2,0],[1,-3],[2,-2],[1,-3],[1,12],[-1,23],[2,10],[-1,9],[4,0],[6,-5],[4,-4],[2,-4],[4,-9],[5,-6],[3,4],[-10,34],[-2,16],[10,5],[0,4],[-6,6],[-6,9],[-6,11],[-3,10],[6,-2],[11,-11],[7,-3],[6,0],[3,-2],[1,-4],[1,-5],[3,0],[6,3],[11,-4],[5,-4],[6,-9],[5,-6],[1,-3],[8,-43],[3,-8],[3,-4],[22,-4],[9,-5],[3,2],[6,25],[6,8],[4,-1],[7,-13],[6,-7],[7,-4],[33,-4],[9,0],[7,7],[2,-4],[7,5],[12,3],[12,-2],[5,-8],[5,-11],[10,-5],[11,3],[7,11],[-6,2],[-12,-4],[-4,4],[-5,7],[-5,3],[-10,4],[-16,18],[-28,11],[-6,0],[-21,-6],[-4,-5],[-2,-2],[-6,9],[0,-1],[-1,-2],[-2,-1],[-4,0],[-5,1],[-3,5],[-2,18],[-1,4],[-1,3],[-1,3],[1,7],[2,12],[1,7],[-1,6],[-3,3],[-1,5],[2,8],[1,8],[0,7],[1,6],[7,3],[2,4],[1,7],[0,43],[1,7],[3,4],[3,-1],[3,-5],[2,-7],[0,-9],[-1,-8],[1,-8],[1,-3],[6,-13],[4,-10],[2,-10],[3,12],[4,16],[7,11],[7,-3],[-2,12],[0,41],[-1,22],[2,7],[7,0],[-3,11],[0,13],[1,22],[3,10],[6,10],[7,2],[3,-11],[2,0],[3,14],[1,12],[2,9],[7,9],[-10,7],[-5,2],[-13,-2],[-3,-2],[-3,-5],[-6,-25],[-8,-16],[-12,-56],[-8,-17],[-1,8],[1,6],[1,6],[1,9],[-1,5],[-2,4],[-2,4],[-2,19],[-5,31],[-4,10],[1,-7],[-1,-7],[-1,-3],[-2,1],[-1,-4],[-2,-3],[-3,-6],[-2,42],[-1,9],[-3,11],[0,13],[0,13],[2,6],[-3,17],[-1,7],[0,5],[1,2],[2,-2],[1,-5],[2,0],[0,7],[0,7],[1,6],[1,4],[4,-20],[2,13],[0,15],[-2,11],[-6,-3],[2,29],[-2,12],[-6,8],[4,2],[4,-3],[4,-4],[2,-1],[1,3],[5,3],[1,3],[0,18],[6,13],[9,1],[9,-8],[8,-13],[3,-3],[6,-2],[5,1],[4,2],[0,43],[0,4],[1,4],[1,2],[2,-2],[1,-4],[-2,-12],[0,-6],[3,-9],[4,-4],[4,3],[3,10],[-5,8],[-1,15],[3,15],[4,11],[9,8],[1,2],[-1,6],[-6,1],[0,7],[-7,-10],[-3,-1],[-2,7],[1,9],[3,2],[3,1],[2,4],[0,9],[-3,2],[-3,0],[-3,2],[-1,4],[0,6],[1,14],[5,-6],[2,-1],[2,-1],[0,1],[0,3],[2,3],[1,1],[1,-2],[1,-9],[0,-3],[2,-1],[10,-5],[1,-5],[-2,-9],[-4,-15],[2,-1],[10,20],[4,6],[2,-2],[3,-9],[3,-2],[3,-3],[-1,-7],[-1,-8],[-2,-6],[6,1],[7,3],[4,0],[6,-3],[4,-5],[7,-17],[1,-4],[1,-4],[2,-2],[5,-3],[2,-2],[1,-2],[2,-3],[-1,-9],[-4,-18],[1,-5],[3,-1],[3,3],[2,4],[2,2],[3,-2],[0,-5],[-1,-5],[1,-4],[6,-5],[1,8],[0,12],[3,9],[6,-3],[20,-30],[8,-7],[-4,9],[-11,18],[-2,7],[-14,24],[0,7],[4,36],[3,5],[4,5],[4,5],[4,1],[0,4],[-4,0],[-4,3],[-3,6],[-2,8],[-1,-12],[-5,0],[-6,7],[-4,7],[-3,-2],[-12,-16],[-9,-7],[-6,-9],[-3,-1],[-4,4],[-1,7],[-1,13],[-1,1],[-1,0],[-1,1],[-1,4],[0,5],[1,3],[3,7],[3,4],[3,3],[1,3],[-1,6],[1,5],[4,4],[3,2],[5,3],[1,3],[2,0],[4,-7],[4,-1],[6,11],[8,24],[-3,3],[-6,3],[-3,2],[-2,-17],[-1,-2],[-2,0],[-2,2],[-2,3],[0,6],[-2,-3],[-3,-11],[0,-2],[-2,-1],[-7,-7],[-12,-21],[-5,-7],[0,10],[1,3],[1,3],[-2,4],[-2,-8],[-2,0],[1,6],[0,13],[-1,2],[1,5],[3,7],[0,5],[-2,2],[-5,-3],[-3,2],[2,14],[1,0],[3,4],[1,2],[1,7],[0,3],[3,3],[3,2],[4,2],[3,1],[2,-1],[4,-6],[6,-2],[2,-3],[4,-8],[7,21],[4,8],[2,-9],[2,9],[1,14],[-1,12],[-5,6],[1,4],[0,11],[-1,13],[-3,8],[4,-1],[3,-3],[5,-8],[2,5],[3,6],[3,2],[3,-5],[0,-10],[-5,-12],[0,-10],[2,4],[1,-21],[4,5],[3,13],[3,3],[0,-2],[1,-3],[2,-3],[1,0],[0,-7],[0,-3],[-2,-3],[0,-6],[4,-22],[1,-4],[1,-4],[4,-18],[3,-7],[2,4],[-1,4],[0,4],[0,6],[2,5],[0,5],[-4,31],[-4,11],[0,10],[5,10],[0,-12],[2,-8],[4,-4],[4,-1],[4,-3],[2,-5],[2,-4],[5,4],[1,-7],[1,-4],[2,-2],[5,-11],[1,-4],[-1,-4],[-2,-4],[4,-8],[7,-6],[5,-1],[0,7],[8,3],[17,-8],[3,7],[0,10],[-2,3],[-8,-3],[-3,2],[-3,6],[-1,6],[0,6],[1,1],[2,1],[2,1],[1,3],[-1,5],[-2,1],[-2,1],[-1,3],[-1,5],[1,2],[3,1],[2,2],[5,9],[7,5],[0,6],[-4,4],[-9,-7],[-5,3],[-3,9],[-2,-1],[-3,-1],[-2,1],[-1,5],[-1,2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-3,-1],[-2,-1],[-3,0],[-2,6],[0,5],[2,4],[2,7],[-3,0],[-3,-3],[-3,-3],[0,-2],[-3,3],[-1,7],[-3,2],[-2,-1],[-1,-2],[-1,-2],[-3,1],[-2,3],[-3,4],[-1,3],[4,2],[2,3],[1,5],[1,6],[1,3],[3,1],[5,3],[3,0],[1,-3],[0,-4],[1,-4],[4,-1],[4,1],[1,3],[0,5],[-2,7],[6,6],[-3,9],[-8,8],[-10,-3],[-1,6],[-7,3],[-3,8],[-1,31],[-2,5],[-4,-3],[-2,-1],[-1,2],[-1,7],[-1,2],[-2,0],[-1,1],[-1,13],[2,4],[4,0],[3,-1],[3,2],[0,4],[-1,4],[0,5],[2,4],[1,0],[1,-1],[2,-1],[4,1],[-3,9],[1,10],[4,3],[10,-6],[2,1],[0,11],[3,1],[3,1],[5,9],[-5,3],[-7,-2],[-5,1],[-2,10],[3,12],[6,11],[7,5],[5,-4],[2,0],[2,9],[2,5],[1,4],[1,17],[1,7],[2,2],[2,-3],[0,-39],[-1,-7],[-2,-15],[3,12],[5,8],[4,8],[1,12],[4,-8],[9,-47],[0,-4],[1,2],[1,9],[-2,13],[1,6],[5,-3],[0,7],[0,7],[1,6],[3,4],[-2,3],[-1,4],[0,4],[1,6],[8,-12],[-2,16],[0,9],[2,7],[2,3],[2,0],[2,-2],[2,-3],[2,-2],[5,1],[2,-1],[0,-10],[-3,-8],[-4,-6],[-1,-4],[3,-5],[5,0],[5,2],[4,3],[-1,6],[0,5],[1,9],[1,0],[1,0],[1,1],[1,3],[0,3],[-2,3],[0,4],[3,32],[2,14],[1,5],[-2,10],[-4,10],[-2,10],[1,8],[0,6],[-2,11],[0,12],[3,10],[0,4],[-3,5],[0,6],[3,4],[4,-3],[-1,9],[3,3],[5,-4],[2,-16],[2,0],[0,4],[2,0],[2,-8],[8,-9],[4,-7],[0,5],[1,4],[2,3],[2,4],[2,-4],[-2,-5],[-4,-15],[2,-5],[0,-6],[-2,-6],[-3,-4],[-3,2],[-2,4],[-3,3],[-4,-5],[2,-4],[-1,-5],[0,-4],[-1,-3],[4,-58],[3,-9],[0,-19],[-13,-55],[1,-21],[4,7],[12,70],[2,6],[2,14],[0,26],[2,15],[4,2],[2,-7],[-2,-12],[3,-3],[0,-6],[-3,-15],[10,4],[4,4],[1,7],[1,5],[2,1],[2,-2],[1,-4],[-1,-5],[0,-2],[0,-1],[3,-3],[2,2],[1,4],[2,3],[2,0],[2,-5],[0,-6],[-2,-4],[-2,-2],[-5,-4],[5,-21],[-3,-7],[0,-5],[4,-3],[0,-5],[-2,-5],[0,-7],[1,-7],[2,-6],[2,-3],[2,0],[10,-16],[5,-7],[2,1],[2,24],[0,3],[-1,4],[-3,5],[-2,4],[1,4],[1,2],[1,1],[1,12],[1,7],[1,5],[10,-1],[2,-1],[0,-3],[3,-9],[2,-2],[4,2],[0,6],[-1,7],[1,5],[3,1],[5,-6],[2,1],[2,5],[-1,7],[-1,7],[0,7],[-1,7],[-4,9],[-1,5],[0,8],[-1,3],[-2,2],[-3,5],[-1,2],[-2,2],[-1,4],[1,8],[1,-1],[4,3],[3,4],[0,2],[2,2],[5,5],[7,3],[1,5],[0,7],[-1,6],[1,5],[3,5],[0,5],[0,5],[-3,10],[-1,5],[0,8],[1,7],[2,5],[9,3],[1,1],[3,3],[6,12],[1,0],[1,11],[-1,11],[-1,9],[3,5],[-5,23],[-7,10],[-28,0],[-4,4],[-2,10],[0,6],[-3,8],[0,6],[0,5],[1,7],[1,6],[3,-5],[5,-16],[3,-3],[4,2],[0,6],[-1,8],[1,8],[3,4],[8,-25],[6,1],[-1,5],[-1,5],[1,7],[-1,7],[-1,9],[-1,3],[-2,1],[-11,12],[-2,4],[-3,8],[1,1],[3,-3],[8,-4],[2,3],[0,9],[2,7],[3,6],[3,1],[2,-6],[-1,-7],[-2,-5],[0,-4],[8,-3],[2,-1],[3,1],[3,5],[0,-7],[-2,-5],[-4,-8],[2,-1],[3,-3],[1,0],[0,-5],[-4,-3],[-3,-7],[-3,-8],[-1,-10],[5,3],[4,6],[8,15],[3,4],[3,3],[7,6],[-3,-13],[-8,-11],[-4,-9],[8,-2],[5,-7],[1,-8],[-5,-3],[-8,-2],[-1,-6],[1,-7],[-1,-9],[9,5],[4,-3],[0,-10],[-7,-14],[-2,-6],[6,4],[-3,-20],[7,-9],[7,-6],[1,-8],[-2,-2],[-1,-1],[-2,-1],[0,-4],[1,-2],[4,-4],[1,-1],[3,4],[4,5],[3,0],[1,-13],[2,0],[1,10],[1,7],[2,6],[10,4],[0,6],[-3,8],[-4,10],[-2,2],[-1,0],[-3,0],[-1,3],[1,5],[3,9],[1,9],[1,6],[2,4],[6,4],[-2,2],[-1,4],[-1,3],[4,8],[5,0],[4,1],[4,23],[8,13],[3,7],[5,-12],[6,-1],[5,8],[3,10],[5,15],[3,5],[4,-2],[7,-6],[-3,-2],[-5,-5],[-3,-6],[-2,-6],[-1,-6],[-1,-3],[-2,-1],[-2,-4],[-1,-15],[-1,-5],[-8,-17],[-3,-10],[3,-5],[5,2],[9,8],[4,-3],[-10,-23],[3,-5],[3,-12],[2,-4],[4,1],[3,4],[3,3],[3,-4],[1,-6],[-1,-19],[0,-7],[2,-9],[2,-2],[2,-2],[4,-8],[0,18],[0,8],[2,7],[3,3],[3,3],[4,4],[1,8],[0,7],[-1,6],[0,5],[2,7],[1,4],[-2,5],[-1,6],[1,7],[2,-4],[4,-5],[2,-3],[1,-5],[1,-13],[2,-3],[3,2],[4,19],[4,7],[-2,9],[2,8],[3,9],[1,11],[-2,0],[-1,-4],[-2,-3],[-3,-5],[-3,6],[-2,8],[0,8],[2,6],[1,1],[6,-4],[4,-1],[1,6],[3,6],[3,-2],[4,1],[0,1],[8,-7],[4,0],[3,7],[-5,4],[-3,4],[-1,5],[2,4],[4,-1],[7,-3],[-1,6],[-2,4],[-3,2],[-4,1],[-3,2],[-2,6],[-1,9],[-1,8],[-1,4],[-5,13],[-2,6],[-3,24],[-2,8],[5,1],[5,2],[5,4],[2,7],[1,0],[3,-5],[1,-9],[-1,-12],[2,-2],[3,-2],[1,7],[2,4],[3,1],[4,0],[0,4],[-5,5],[-4,8],[0,9],[5,7],[5,-2],[5,-6],[4,-5],[5,4],[-5,7],[-2,2],[2,4],[4,3],[7,4],[7,-18],[4,-7],[5,-3],[2,-4],[1,-9],[0,-19],[4,6],[4,1],[1,-4],[-1,-11],[5,6],[1,-8],[-2,-15],[-3,-12],[9,2],[2,-9],[1,-16],[3,-15],[6,-9],[4,7],[3,13],[5,11],[-3,2],[-1,5],[0,7],[2,6],[4,-5],[2,-7],[0,-18],[1,-9],[2,-1],[2,3],[2,5],[4,18],[3,8],[4,-4],[10,-24],[4,-6],[8,-7],[0,10],[-3,16],[3,9],[4,-2],[2,-7],[2,-8],[2,-3],[4,-1],[2,-4],[1,-5],[2,-6],[1,0],[1,3],[3,9],[3,-7],[3,-9],[3,-11],[1,-10],[0,-6],[-2,-20],[1,-5],[6,-8],[2,-5],[3,12],[4,-4],[4,-11],[4,-5],[4,-3],[8,-15],[4,-7],[1,0],[3,1],[2,-1],[1,-2],[2,-6],[12,-18],[1,-11],[4,-12],[4,-11],[16,-29],[1,-6],[8,-43],[2,-2],[6,-2],[2,-4],[0,-5],[0,-22],[1,-6],[2,-3],[2,-1],[0,3],[1,7],[1,6],[3,1],[3,-5],[2,-10],[-7,-15],[1,-11],[5,8],[3,-2],[5,-14],[10,-13],[4,-8],[-3,-4],[-1,-2],[0,-7],[1,-7],[1,-4],[3,-3],[3,0],[7,6],[1,4],[2,1],[4,-6],[6,-12],[2,-2],[2,-4],[1,-10],[2,-9],[4,-5],[4,0],[3,-2],[3,-3],[12,-23],[4,-6],[6,-2],[4,1],[1,1],[2,-1],[2,-6],[1,-5],[0,-5],[0,-6],[-1,-4],[-4,5],[-4,2],[-4,-3],[-1,-10],[0,-9],[3,-22],[1,-9],[-1,-5],[-3,-1],[-5,0],[-4,-1],[-3,-3],[-6,-9],[6,-5],[-1,-19],[-6,-39],[-1,-7],[-4,-15],[-1,-8],[0,-12],[0,-9],[0,-9],[-5,-16],[-1,-11],[-1,-11],[1,-9],[3,-13],[1,-7],[-2,-61],[-2,-6],[-3,-3],[-4,1],[8,-45],[0,-22],[-5,-23],[-10,-21],[-1,-5],[2,-6],[6,6],[7,10],[4,8],[5,19],[3,25],[2,28],[-1,26],[-4,36],[2,3],[1,7],[-1,8],[1,6],[3,5],[3,-4],[3,-6],[8,-9],[14,-28],[3,-8],[1,-5],[5,-16],[7,-44],[0,-10],[2,0],[2,50],[-1,15],[-4,12],[-10,20],[-3,8],[-3,11],[-1,12],[2,11],[0,4],[-2,25],[-1,4],[-2,2],[-2,4],[-1,26],[6,20],[14,31],[1,1],[2,1],[1,2],[1,3],[-1,7],[0,2],[4,11],[5,12],[2,-4],[2,-15],[4,-50],[2,-10],[4,-5],[-2,19],[0,9],[2,9],[10,-24],[5,-9],[7,-4],[2,2],[1,5],[1,6],[1,6],[-1,7],[0,4],[-2,3],[-1,4],[-7,26],[-1,14],[-3,12],[-1,7],[1,9],[1,2],[2,0],[2,3],[2,3],[1,1],[1,2],[-2,6],[-2,3],[-4,4],[-2,3],[-4,12],[2,4],[12,2],[11,8],[5,6],[4,5],[6,5],[6,-4],[10,-11],[23,-6],[11,-6],[10,-17],[5,3],[6,-3],[7,-5],[5,-3],[24,0],[6,-3],[9,-11],[5,-2],[5,-1],[12,-7],[11,-10],[3,-5],[2,-6],[2,-6],[0,-6],[1,-6],[2,-2],[8,-2],[5,-7],[3,-10],[1,-13],[-1,-10],[-2,-11],[-1,-11],[3,-11],[3,-13],[1,-11],[-2,-11],[-6,-22],[-5,-30],[5,1],[8,32],[6,-1],[-2,-10],[-2,-11],[0,-10],[2,-9],[8,73],[6,4],[0,10],[-3,35],[-1,8],[-2,6],[-1,14],[-1,28],[-4,41],[0,14],[2,4],[4,-4],[4,-11],[2,-15],[1,0],[6,15],[10,0],[9,-10],[4,-15],[29,-17],[5,-12],[1,-3],[4,-29],[3,-5],[8,-9],[3,-4],[2,-9],[4,-21],[3,-9],[1,-8],[-3,-21],[-1,-10],[12,18],[5,3],[4,-2],[2,-6],[0,-17],[1,-11],[2,-2],[5,2],[5,0],[3,1],[2,4],[-1,10],[-2,6],[-17,41],[-2,8],[-7,34],[-2,37],[-3,8],[3,6],[4,15],[1,8],[2,32],[1,5],[4,-2],[7,-9],[4,-2],[9,0],[9,-4],[5,-1],[4,1],[7,4],[6,7],[2,1],[3,1],[1,2],[0,3],[2,4],[12,20],[2,1],[2,3],[5,-4],[8,-10],[0,16],[3,32],[-3,9],[-2,-18],[-5,-9],[-17,-9],[-27,-27],[-10,-2],[9,26],[1,7],[-2,0],[-10,-12],[-5,-3],[-3,-1],[-4,4],[-11,19],[-2,7],[3,11],[-6,7],[-7,11],[-6,12],[-5,26],[0,8],[2,4],[4,0],[10,4],[13,-1],[7,4],[3,11],[2,5],[11,15],[4,7],[-6,-1],[-7,-4],[-7,-6],[-9,-14],[-5,-1],[-12,5],[-2,1],[-6,-1],[-3,0],[-1,2],[-2,3],[-2,2],[-4,1],[-5,5],[-16,28],[-2,1],[-3,-1],[-1,0],[-1,2],[-1,8],[0,2],[-1,1],[-4,2],[-1,1],[-1,4],[-1,8],[-1,3],[-13,16],[-3,6],[4,47],[1,3],[7,17],[2,6],[1,7],[0,6],[0,7],[2,11],[3,8],[12,25],[3,9],[2,10],[1,12],[0,21],[0,6],[-3,11],[-1,5],[2,2],[3,-4],[4,-4],[5,6],[1,-5],[0,-7],[1,-5],[2,-3],[4,2],[3,4],[3,0],[1,-10],[5,15],[-1,18],[-1,16],[3,7],[1,-18],[6,-4],[16,6],[8,5],[5,15],[3,18],[1,17],[-2,11],[-2,6],[-4,5],[-2,8],[0,8],[2,9],[6,16],[15,24],[5,14],[-3,11],[-1,-4],[-2,-5],[-1,-3],[-2,3],[2,9],[-1,10],[-1,20],[1,10],[6,36],[5,19],[1,8],[0,19],[1,9],[1,7],[3,4],[3,2],[3,4],[2,15],[2,10],[2,8],[2,1],[2,-7],[1,-11],[-1,-21],[3,-6],[5,-5],[10,-6],[3,4],[17,11],[6,7],[14,26],[5,-7],[9,17],[14,42],[6,15],[5,7],[5,3],[5,-5],[7,-9],[5,-2],[-3,16],[-3,6],[-5,7],[-6,5],[-6,2],[-2,4],[-4,9],[-4,16],[-15,38],[-2,2],[-6,1],[-3,1],[-1,5],[0,65],[1,9],[2,7],[2,13],[-2,17],[0,17],[5,11],[3,0],[3,2],[2,4],[2,6],[3,-6],[1,-9],[2,-6],[6,-3],[6,3],[10,11],[5,2],[5,6],[4,12],[4,14],[1,11],[0,37],[2,17],[-1,12],[-2,11],[-1,11],[3,13],[3,0],[5,-5],[4,0],[1,3],[0,7],[0,7],[2,3],[3,2],[5,8],[3,2],[3,-2],[11,-11],[5,-3],[-4,12],[-2,8],[0,9],[3,5],[3,-4],[11,-46],[3,-3],[3,-2],[2,-3],[0,-9],[3,3],[3,-1],[2,-3],[3,-2],[0,1],[1,3],[2,2],[1,1],[2,0],[3,-3],[2,-1],[3,0],[3,2],[2,3],[0,6],[-22,14],[0,-2],[-1,-1],[-2,-2],[-1,1],[-1,1],[-1,6],[-1,1],[-1,2],[-3,10],[-1,2],[-1,3],[-2,2],[0,2],[3,3],[2,0],[3,-1],[2,-1],[2,2],[3,6],[1,3],[-1,4],[0,6],[-2,2],[-7,-1],[-1,3],[0,7],[7,38],[0,10],[-4,15],[1,6],[2,5],[6,4],[-2,6],[-4,8],[-2,1],[-4,3],[0,4],[8,9],[9,1],[10,-5],[5,-13],[5,2],[8,-3],[7,-5],[5,-7],[-3,-11],[0,-9],[3,-20],[0,-36],[2,-12],[1,8],[1,8],[1,7],[3,5],[8,-13],[10,-34],[6,-14],[0,10],[-1,3],[0,3],[4,9],[6,-3],[10,-14],[-3,16],[-6,11],[-8,10],[-6,12],[-2,11],[-1,7],[2,3],[5,-1],[6,-2],[8,-10],[5,-4],[-1,10],[-3,8],[-6,12],[-2,2],[-6,0],[-1,2],[0,5],[-2,5],[-3,7],[-4,4],[-3,-5],[-3,-4],[-6,7],[0,5],[1,5],[1,7],[-2,11],[10,4],[-3,8],[2,7],[8,9],[2,5],[1,4],[1,2],[2,2],[3,-1],[1,-2],[1,-3],[3,-3],[25,-8],[7,-8],[0,12],[-1,7],[-5,14],[-1,8],[1,30],[-1,11],[-7,17],[-1,9],[1,12],[3,9],[4,5],[5,0],[3,-2],[5,-8],[2,-2],[2,2],[3,9],[2,1],[3,-5],[3,-9],[3,-7],[7,5],[7,-16],[5,-4],[3,-4],[2,-8],[3,-6],[7,1],[-6,14],[0,7],[0,5],[5,9],[1,4],[0,13],[0,8],[3,22],[1,18],[1,6],[3,6],[2,2],[2,-2],[1,-14],[3,-8],[0,-6],[0,-27],[3,-27],[5,-20],[8,-16],[9,-14],[5,-6],[6,-6],[7,-3],[6,-1],[6,1],[12,6],[6,1],[3,-2],[6,-6],[3,2],[23,7],[22,7],[10,8],[5,6],[7,12],[3,3],[3,3],[3,0],[2,-2],[1,-6],[1,-6],[1,-6],[5,-8],[12,-8],[7,-9],[7,-3],[5,-6],[4,0],[6,6],[10,13],[10,17],[4,13],[1,2],[13,8],[2,5],[2,17],[1,6],[5,3],[3,-6],[1,-9],[1,-10],[2,-18],[5,1],[7,9],[7,6],[4,-1],[3,-2],[2,-6],[9,-34],[2,-12],[0,-3],[1,-3],[0,-4],[-1,-4],[-4,-4],[-1,-5],[-3,-5],[-1,-3],[0,-5],[0,-15],[5,13],[8,16],[5,18],[-8,41],[1,25],[4,20],[7,9],[7,3],[15,22],[5,4],[4,-2],[8,-10],[10,-9],[10,-6],[11,-2],[11,4],[-3,3],[-5,0],[-3,1],[-3,3],[-3,6],[-2,3],[-11,14],[-4,9],[-2,14],[0,24],[7,82],[0,10],[-1,9],[-2,9],[-12,15],[-1,5],[2,10],[11,24],[4,11],[3,20],[3,6],[5,2],[0,4],[-13,11],[-10,3],[-5,5],[-4,6],[-4,8],[-4,9],[0,4],[1,5],[1,8],[-2,6],[-4,4],[-3,5],[1,12],[-5,1],[-5,18],[-16,18],[-6,3],[-12,4],[-7,-2],[-10,-14],[-6,0],[-7,3],[-6,1],[-3,-2],[-1,-2],[-2,-4],[-3,-4],[-2,-6],[-2,-2],[-2,0],[-1,2],[-2,2],[-2,-2],[-8,-14],[-5,-6],[-5,-2],[-6,3],[-4,6],[-3,8],[-3,3],[-1,3],[-2,6],[-1,8],[-1,5],[2,3],[3,0],[2,2],[1,5],[-5,9],[-7,-2],[-7,-1],[-2,15],[-2,0],[-3,-4],[-3,1],[-2,6],[0,9],[6,3],[3,4],[-1,9],[-3,4],[-7,-5],[-3,1],[-2,6],[1,7],[0,5],[-4,3],[-4,1],[-7,5],[-4,2],[-3,-2],[-6,-5],[-2,-1],[-14,3],[0,2],[2,5],[4,4],[5,1],[-5,16],[3,0],[6,-6],[5,-2],[2,8],[-2,12],[-4,12],[-1,13],[2,-2],[6,-1],[2,-3],[3,-5],[2,2],[1,6],[-1,3],[-1,4],[1,8],[2,5],[1,-3],[1,-4],[4,-9],[9,-28],[1,-3],[2,1],[4,5],[6,9],[0,10],[-3,12],[-1,13],[5,-5],[1,4],[-2,13],[0,10],[1,1],[3,-4],[5,-2],[2,-5],[3,-10],[3,-9],[9,-8],[-1,-15],[4,-6],[3,2],[2,7],[3,3],[1,-8],[0,-4],[-3,-10],[-1,-4],[1,-6],[1,-9],[0,-6],[-1,-17],[0,-9],[2,-4],[2,-1],[0,-2],[1,0],[2,3],[0,4],[-1,5],[0,6],[3,6],[3,-14],[0,-17],[0,-18],[6,-12],[8,-3],[0,11],[-3,15],[-1,9],[4,1],[4,-5],[3,-3],[2,7],[0,7],[-2,7],[-5,10],[-2,2],[-1,-1],[-2,0],[-1,4],[0,2],[2,5],[0,4],[0,9],[0,8],[-1,7],[-3,9],[3,7],[-2,12],[-4,12],[-3,5],[-3,6],[0,12],[4,8],[7,-5],[3,-9],[2,-10],[3,-10],[5,-4],[2,-5],[4,-26],[2,-9],[6,-8],[1,8],[-3,22],[-2,24],[2,9],[6,6],[3,-1],[1,-3],[2,-2],[3,6],[0,3],[1,9],[2,6],[1,-4],[1,-10],[9,-41],[1,-2],[-1,-3],[0,-3],[1,-10],[-2,-22],[3,-5],[4,5],[2,10],[3,22],[6,9],[9,-12],[7,-24],[5,-22],[-2,-6],[0,-5],[2,-5],[1,0],[2,1],[2,2],[0,1],[2,-2],[3,-8],[2,-5],[2,-11],[12,-18],[6,-19],[4,-23],[7,-19],[12,-4],[6,4],[6,10],[5,12],[3,17],[2,2],[2,1],[3,2],[3,7],[1,1],[1,2],[0,4],[0,4],[0,3],[7,-1],[6,-8],[4,-3],[2,14],[0,14],[-2,8],[-7,12],[1,6],[2,1],[2,-1],[7,-2],[1,-2],[1,-3],[1,-3],[2,-2],[2,-1],[1,-2],[1,-5],[3,-15],[1,-3],[8,-7],[7,-17],[6,-20],[3,-17],[2,0],[2,-3],[3,-2],[2,-4],[1,-5],[-2,-17],[0,-8],[7,-21],[12,-46],[3,-9],[4,-9],[5,-7],[6,-3],[15,-5],[6,5],[3,20],[4,-2],[8,2],[3,0],[5,-6],[-2,-4],[-4,-4],[-4,-4],[-3,-10],[-1,-8],[3,-6],[5,-3],[6,0],[2,2],[1,4],[3,10],[3,5],[3,3],[2,-3],[2,-9],[-1,-3],[-2,-3],[-2,-4],[0,-4],[2,-2],[3,0],[5,0],[7,-9],[3,-3],[2,6],[2,2],[4,4],[5,5],[2,8],[3,-11],[0,-19],[-2,-21],[-3,-14],[2,-4],[2,7],[3,18],[3,7],[7,7],[1,1],[3,-2],[1,-4],[0,-4],[1,-2],[3,-7],[1,-2],[5,5],[5,2],[1,2],[3,5],[3,23],[5,-3],[5,-1],[5,1],[4,3],[4,7],[10,26],[8,0],[2,-1],[2,-3],[1,-3],[1,-2],[5,-2],[4,-4],[5,1],[4,10],[5,-14],[1,-8],[-1,-3],[-4,-1],[-3,-5],[-2,-7],[-2,-7],[-7,3],[-6,-8],[-4,-15],[3,-14],[13,-19],[15,-16],[11,15],[6,4],[2,7],[1,8],[2,6],[5,3],[4,-2],[3,-6],[2,-8],[0,-3],[2,-2],[1,-3],[1,-5],[-1,-7],[0,-5],[-1,-4],[2,-6],[12,24],[2,4],[1,-4],[4,-20],[1,-6],[2,-4],[4,-2],[4,-4],[0,-8],[-1,-1],[-5,-1],[-2,-2],[0,-5],[1,-4],[2,-4],[1,-4],[2,-7],[0,-6],[0,-13],[0,-4],[-2,-7],[0,-5],[1,-5],[2,-2],[2,2],[3,14],[10,15],[3,6],[1,11],[0,8],[1,5],[6,5],[17,-31],[10,-13],[13,-9],[25,-4],[11,7],[6,1],[3,-8],[3,9],[8,11],[18,37],[2,4],[5,5],[7,3],[6,0],[1,-3],[0,-7],[0,-13],[1,-5],[1,-5],[3,-8],[1,-4],[2,-9],[1,-3],[3,1],[3,2],[3,1],[1,-6],[2,-26],[1,-13],[3,-8],[5,-4],[13,-1],[3,-1],[2,-2],[6,-3],[1,-3],[1,-3],[5,-16],[2,-12],[2,-3],[9,-11],[2,-4],[1,-2],[6,-14],[2,-2],[4,2],[6,6],[5,4],[4,0],[3,-6],[4,-10],[4,-6],[4,-8],[5,-4],[5,5],[-2,10],[-11,14],[-6,14],[11,-1],[7,2],[7,3],[3,-8],[4,-9],[5,-5],[6,5],[4,3],[3,5],[0,6],[-6,-5],[-6,2],[-4,4],[-7,10],[-7,1],[-5,9],[4,7],[8,0],[11,13],[2,2],[3,6],[0,2],[-4,3],[-2,4],[6,10],[8,4],[4,10],[6,-2],[7,4],[1,-2],[-2,-11],[5,-5],[9,1],[7,4],[5,5],[3,11],[0,8],[6,2],[0,-11],[10,-10],[4,0],[10,18],[1,2],[6,6],[2,2],[16,19],[-3,6],[-14,-7],[-4,-2],[-12,-19],[-3,-1],[-3,8],[-2,11],[2,18],[6,18],[2,5],[6,1],[2,-1],[0,-3],[2,-3],[2,-1],[3,1],[1,3],[1,4],[2,4],[4,5],[5,4],[5,0],[5,-5],[10,13],[10,17],[8,10],[1,3],[1,8],[3,2],[3,1],[2,2],[4,13],[-2,11],[-2,10],[-2,13],[3,6],[6,-1],[7,-6],[3,-5],[-4,-23],[-5,-20],[-17,-38],[-9,-22],[-4,-8],[-10,-3],[-2,-3],[-1,-5],[-9,-12],[2,-4],[12,8],[6,4],[18,4],[4,3],[8,9],[6,1],[0,-4],[-4,-5],[-13,-8],[-8,-9],[-10,-19],[-7,-20],[-10,-18],[-3,-4],[-8,-13],[-6,-10],[-5,-10],[0,-23],[5,-20],[5,-8],[5,-9],[2,-7],[5,-20],[6,24],[4,8],[4,-4],[2,0],[2,17],[3,11],[12,17],[9,21],[2,3],[2,-2],[2,-6],[1,-6],[1,-4],[1,-3],[2,5],[3,10],[1,6],[2,1],[4,-1],[3,2],[17,36],[7,11],[-1,-11],[-4,-12],[-5,-10],[-3,-4],[-1,-2],[-3,-9],[0,-3],[-1,-6],[-1,-3],[-9,-11],[-3,-5],[-2,-5],[0,-7],[1,-5],[2,-3],[1,-4],[2,-14],[5,-5],[5,3],[5,6],[4,6],[5,5],[5,0],[2,-13],[-2,-7],[-2,-2],[-3,-1],[-1,-2],[0,-5],[-4,-17],[-10,-25],[-1,-6],[0,-6],[1,-7],[1,-5],[2,2],[4,4],[0,-5],[-1,-13],[2,-13],[1,-12],[3,-6],[5,5],[1,6],[0,5],[1,5],[4,2],[1,-1],[1,-3],[1,-3],[0,-3],[2,-2],[2,1],[1,2],[11,4],[2,0],[3,-3],[3,-10],[1,-2],[6,1],[6,2],[10,9],[9,15],[5,19],[9,47],[8,28],[1,10],[-1,10],[-4,7],[-5,5],[-5,1],[-4,-2],[-6,-2],[-5,-1],[-7,-1],[-3,11],[-2,3],[-8,-3],[-2,3],[-1,10],[2,5],[3,2],[8,3],[2,13],[15,39],[4,9],[6,1],[2,-1],[2,0],[7,16],[7,11],[9,19],[3,5],[3,2],[3,11],[4,-2],[4,-3],[9,6],[4,11],[8,4],[3,4],[0,10],[2,-3],[2,-6],[-1,-6],[-4,-6],[-4,-7],[-5,-6],[-4,-1],[-5,-4],[-5,0],[-3,-5],[1,-12],[2,-9],[3,-3],[4,8],[4,3],[4,-3],[4,-27],[3,-24],[8,-2],[-2,-17],[1,-22],[2,-15],[6,-11],[3,-9],[7,-17],[3,-12],[1,-4],[8,-11],[8,0],[7,10],[6,13],[-2,6],[-2,4],[-7,4],[-4,8],[-3,9],[-6,-8],[1,12],[8,-1],[5,8],[8,5],[6,-5],[7,-13],[5,-12],[7,0],[7,-5],[9,-23],[5,-16],[2,-20],[-1,-16],[6,-4],[5,6],[4,1],[-3,-13],[-2,-3],[-2,-2],[-3,-1],[-5,0],[-6,-7],[-13,-27],[-19,-49],[-3,-10],[-3,-5],[-1,10],[4,10],[5,15],[1,3],[1,6],[0,7],[-2,5],[-3,1],[-2,-3],[-2,-4],[-1,-2],[-8,-9],[-1,-19],[2,-23],[4,-16],[-5,0],[-3,-2],[-8,-23],[-6,-32],[5,-17],[-2,-8],[-6,4],[-12,2],[-5,-7],[-2,-11],[2,-11],[4,-7],[0,-14],[-1,-6],[1,-6],[0,-7],[-3,-7],[-4,0],[-3,5],[-2,8],[0,10],[-3,16],[-1,7],[0,3],[-2,2],[-2,1],[-2,0],[-3,-3],[-2,-4],[0,-8],[2,-7],[0,-8],[0,-6],[-6,-1],[-4,15],[-5,8],[-2,-4],[1,-11],[2,-20],[1,-10],[1,-5],[10,-17],[5,5],[1,-12],[-1,-13],[4,1],[3,0],[12,-16],[7,-9],[1,-13],[5,-12],[-1,-6],[-1,-4],[-3,3],[-2,5],[-1,2],[-3,4],[0,4],[-1,2],[-4,-2],[-6,-18],[-4,1],[0,19],[-3,9],[-4,1],[0,-1],[-2,-6],[0,-1],[-2,0],[-2,5],[-2,-1],[-4,-3],[-1,-3],[0,-8],[0,-4],[1,-5],[2,-3],[1,-2],[4,-1],[0,-3],[0,-4],[3,-12],[9,-5],[-7,-26],[-3,-31],[-5,7],[-5,-3],[-3,-11],[-1,-15],[0,-21],[-2,-9],[-4,-5],[0,6],[0,5],[-2,10],[-2,0],[-2,-7],[-10,-8],[-3,-14],[-6,-19],[-4,-8],[-3,-7],[-3,1],[0,6],[-3,1],[0,8],[7,8],[-1,7],[-2,6],[1,7],[4,0],[3,-4],[5,6],[2,11],[-2,8],[-4,10],[1,18],[-2,9],[1,32],[1,18],[-2,6],[-6,5],[-3,0],[-4,-9],[-2,-8],[-2,-9],[1,-9],[4,-9],[-3,-10],[1,-9],[-1,-6],[-6,-1],[-4,3],[-4,18],[-3,0],[-3,-5],[-2,-7],[2,-10],[2,-9],[0,-9],[-4,-7],[-2,3],[-2,0],[-1,-4],[0,-7],[0,4],[-2,-10],[-3,-1],[-5,-1],[-5,-16],[-3,14],[-3,19],[6,21],[-1,15],[-2,14],[-3,-1],[-9,-20],[-5,-24],[0,-18],[-3,-1],[-3,5],[-2,-1],[-1,-3],[-1,-9],[2,-28],[-1,-12],[-2,0],[-2,15],[-1,16],[-2,14],[-6,12],[-4,-2],[-4,-7],[-3,-26],[-3,-8],[-1,15],[-3,4],[-5,-6],[-4,-10],[-1,-11],[-6,-14],[0,-25],[8,-4],[2,-2],[1,-5],[0,-7],[-2,-3],[1,-7],[4,-1],[7,1],[1,0],[1,-6],[0,-6],[-1,-8],[-5,1],[-3,-2],[-4,-8],[-6,16],[-5,4],[-6,-4],[-1,-11],[1,-14],[0,-15],[3,-21],[-1,-7],[-1,-3],[-2,-3],[-2,-3],[0,-7],[-1,-13],[2,-9],[5,-22],[4,-8],[9,8],[0,-3],[1,-7],[1,-3],[-9,-8],[-2,-15],[5,-15],[9,-6],[10,4],[7,12],[10,28],[1,5],[0,4],[0,3],[3,4],[2,1],[3,-1],[1,-2],[2,-1],[1,-6],[-2,-5],[-5,-10],[-2,-7],[-4,-29],[-8,-29],[2,-6],[0,-8],[-2,-14],[-1,-3],[-1,-2],[-1,-4],[0,-6],[0,-14],[0,-4],[-8,-20],[-11,-14],[-6,-105],[2,-35],[-6,3],[-5,-1],[-5,-5],[-1,-7],[-2,-4],[-7,-3],[-1,-2],[-1,0],[-6,-8],[0,-2],[-8,-13],[-7,-19],[-16,-64],[-2,-12],[-5,-6],[-7,3],[-5,-12],[-15,-56],[-6,-20],[-4,-21],[1,-21],[-5,-7],[-7,-5],[-7,-8],[-3,-9],[-1,-7],[-1,-5],[-5,-1],[-4,2],[-3,3],[-4,1],[-3,-6],[5,-2],[2,-9],[1,-22],[2,-21],[13,-61],[6,-19],[22,-42],[9,-10],[9,-6],[3,1],[5,3],[2,-2],[5,-14],[8,-12],[3,-6],[2,-10],[6,3],[6,-4],[5,-7],[3,-6],[2,-5],[18,-18],[8,-14],[8,-20],[9,-18],[11,-8],[4,-2],[11,-12],[5,-7],[8,-16],[3,-4],[3,-3],[7,-3],[8,-14],[11,-10],[5,-7],[4,-6],[1,-3],[4,-27],[3,-44],[2,-9],[3,-7],[13,-19],[5,-6],[13,-2],[6,-3],[14,-31],[7,-9],[4,-9],[6,-8],[7,-3],[2,2],[3,4],[3,3],[3,-2],[1,-4],[2,-16],[2,-5],[13,-20],[3,-7],[10,-28],[3,-4],[2,-5],[-2,-11],[-2,-12],[-1,-9],[3,-12],[5,-1],[5,6],[2,9],[2,7],[5,0],[12,-5],[9,1],[2,-1],[3,-3],[6,-11],[2,-2],[5,1],[0,3],[-1,8],[2,12],[4,6],[11,12],[2,1],[5,-17],[10,-18],[13,-14],[12,-8],[5,-8],[2,-2],[6,-1],[2,-2],[3,-2],[14,-21],[3,-5],[1,-7],[8,-18],[19,-30],[5,-4],[7,0],[2,-1],[2,-5],[1,-6],[3,-1],[3,1],[2,0],[7,-13],[2,-3],[4,-1],[6,4],[3,1],[6,-2],[30,-23],[8,-12],[12,-7],[4,-5],[9,-30],[2,-9],[16,-49],[2,-7],[4,-15],[13,-24],[11,-19],[13,-19],[1,0],[17,-42],[11,-12],[14,-26],[9,-12],[10,-7],[4,-5],[7,-3],[3,-1],[2,-2],[3,-8],[1,-2],[5,-3],[17,3],[8,-7],[12,-13],[13,-9],[15,9],[28,0],[3,-1],[8,-17],[3,-3],[4,-2],[8,-10],[4,-4],[14,-6],[10,-12],[8,-4],[28,-4],[11,-6],[8,-12],[6,-37],[9,-14],[18,-19],[-5,-19],[1,-30],[3,-31],[3,-21],[12,-48],[9,-23],[9,-14],[12,-7],[24,-4],[10,-5],[3,-4],[7,-13],[10,-10],[2,-4],[4,-8],[12,-18],[12,-25],[6,-11],[8,-5],[8,-2],[23,-14],[7,-1],[4,-6],[3,-6],[26,-19],[2,-6],[6,-22],[10,-19],[3,-3],[33,-6],[34,8],[45,20],[6,5],[2,4],[3,7],[6,2],[12,1],[4,4],[5,5],[7,14],[3,3],[6,1],[3,4],[2,4],[8,10],[8,16],[4,6],[13,4],[2,5],[2,8],[2,10],[3,6],[6,5],[7,4],[5,1],[4,6],[3,12],[7,44],[3,50],[3,22],[2,6],[6,14],[2,18],[1,5],[2,8],[3,38],[-1,11],[-2,11],[-1,11],[3,10],[26,68],[9,51],[2,2],[5,1],[2,1],[2,4],[6,17],[15,33],[2,9],[1,9],[4,20],[3,39],[3,10],[4,-2],[7,24],[2,14],[1,12],[2,12],[0,7],[-1,4],[-2,3],[-1,6],[0,11],[2,8],[6,17],[2,10],[1,12],[4,23],[2,11],[0,24],[1,6],[2,9],[2,12],[16,58],[2,12],[-6,12],[-9,61],[0,5],[1,7],[5,8],[1,7],[1,24],[9,120],[13,101],[23,113],[2,10],[0,20],[1,11],[2,8],[5,1],[-2,12],[3,9],[5,6],[3,10],[0,10],[-2,10],[1,8],[7,0],[-2,11],[1,12],[2,12],[1,14],[-1,12],[-3,12],[-2,9],[-4,7],[0,4],[2,6],[-7,18],[-2,11],[-17,152],[0,38],[-1,10],[-4,21],[-1,12],[0,26],[3,24],[16,91],[3,25],[1,25],[-2,28],[-4,23],[-6,18],[-8,16],[-13,41],[-5,49],[1,53],[15,121],[7,29],[1,13],[1,6],[9,22],[2,9],[8,41],[1,14],[3,-3],[3,-1],[3,1],[3,3],[-4,10],[1,9],[3,7],[1,8],[1,6],[3,11],[0,5],[0,6],[-1,7],[0,6],[-1,2],[-1,4],[-2,3],[-3,3],[-1,3],[-1,4],[-1,3],[-3,6],[-2,7],[-3,16],[-1,9],[-1,41],[-3,25],[-1,2],[-2,2],[-2,3],[-1,5],[0,5],[6,20],[3,9],[3,11],[1,10],[4,-9],[4,6],[6,10],[10,10],[6,13],[4,14],[2,11],[1,9],[7,37],[2,17],[1,10],[3,6],[3,0],[0,-6],[-1,-15],[1,0],[4,14],[5,-3],[4,-10],[4,-10],[3,-35],[0,-26],[0,-13],[2,-6],[3,-4],[8,-29],[-1,11],[1,12],[-1,13],[-4,21],[-2,25],[-3,8],[24,16],[5,9],[-7,-1],[-9,1],[-7,3],[-6,4],[-4,12],[-2,6],[-14,9],[-3,2],[4,8],[11,12],[6,10],[6,4],[3,5],[2,2],[4,0],[6,0],[-7,5],[-5,6],[-3,0],[-5,-11],[-4,3],[-4,0],[-10,-3],[-7,0],[-4,3],[-4,5],[-3,6],[-4,15],[-2,7],[-4,4],[-12,8],[12,16],[4,9],[-1,4],[-13,-2],[-4,2],[-5,8],[-1,-3],[-1,-1],[0,-11],[0,-36],[1,-1],[7,0],[2,-3],[1,-6],[-3,-2],[-6,2],[-12,-11],[-7,0],[-2,13],[1,9],[27,127],[5,37],[2,9],[4,2],[11,-8],[5,0],[3,3],[3,1],[-3,3],[-2,5],[-1,5],[0,8],[-2,0],[-1,-4],[-1,-5],[-2,-3],[-3,1],[-1,7],[1,8],[3,24],[5,23],[4,35],[9,30],[11,23],[11,7],[-2,-12],[-2,-10],[0,-9],[5,-35],[1,-12],[0,-12],[9,36],[4,5],[3,-2],[13,-18],[3,18],[-1,7],[-5,3],[-4,17],[-2,5],[-3,5],[-3,0],[-2,-1],[-3,2],[-2,19],[1,29],[5,50],[12,31],[1,8],[-2,9],[1,15],[34,217],[1,13],[-1,34],[1,13],[1,9],[4,20],[2,22],[-1,50],[-3,49],[2,20],[6,12],[13,6],[2,-5],[3,6],[5,4],[6,2],[6,1],[6,3],[5,6],[7,19],[10,23],[1,8],[1,9],[5,27],[2,10],[4,8],[4,2],[12,-2],[1,2],[5,8],[1,2],[1,1],[1,1],[1,2],[1,0],[1,-1],[0,-4],[0,-4],[0,-3],[4,-5],[10,-11],[4,-6],[1,-4],[-1,-6],[-2,-6],[-1,-4],[-3,-4],[-4,-4],[-2,-2],[-2,-6],[-2,-13],[-2,-6],[-2,-2],[-6,-3],[-1,-3],[-2,-15],[1,-14],[1,-13],[-4,-15],[6,4],[5,9],[3,13],[1,13],[3,7],[7,3],[6,-2],[3,-8],[3,-29],[1,0],[3,1],[3,-2],[2,-11],[-2,-19],[2,-12],[3,13],[6,7],[7,1],[5,-4],[1,-6],[2,-18],[1,-6],[3,-8],[3,-8],[3,-19],[1,-17],[1,-18],[3,-14],[1,-2],[-2,-5],[-2,-9],[-1,-14],[0,-18],[2,-17],[5,-11],[3,1],[3,-8],[2,-11],[1,-9],[1,-6],[4,-12],[1,-6],[-1,-5],[-2,-6],[-3,-7],[-6,-24],[-2,-15],[1,-6],[4,-6],[0,-13],[-1,-26],[1,-6],[4,-11],[1,-7],[2,-78],[-2,-50],[1,-9],[3,-8],[15,-26],[4,1],[9,-20],[5,-5],[8,2],[5,3],[11,11],[7,3],[6,-5],[14,-31],[2,0],[5,1],[8,4],[3,-1],[3,-7],[-3,-6],[-4,-2],[-6,-1],[-27,-90],[-2,-3],[-2,-1],[-2,-4],[0,-11],[0,-2],[2,-16],[-1,-7],[0,-6],[-1,-5],[-2,-5],[1,-2],[1,-4],[2,-2],[-3,-11],[-1,-11],[0,-25],[2,-4],[5,-4],[10,-2],[10,4],[3,-2],[5,-8],[2,-2],[12,-17],[1,-2],[1,-5],[3,-10],[1,-9],[1,-37],[1,-13],[3,-11],[5,-9],[3,-4],[11,-7],[4,-1],[4,-3],[4,-7],[8,-15],[0,-4],[-6,-16],[-3,-11],[2,-5],[1,-5],[-9,-30],[-1,-10],[-3,-33],[0,-33],[-2,-11],[6,16],[2,-4],[4,-4],[3,-1],[3,3],[4,7],[3,0],[3,-3],[3,-2],[7,2],[4,4],[4,5],[5,5],[-13,-53],[4,-19],[1,-25],[-3,-47],[7,-73],[0,-77],[1,-8],[1,-4],[10,-16],[0,-7],[4,-10],[2,-6],[0,-7],[0,-5],[-3,-37],[0,-11],[4,-5],[-1,-11],[-8,-33],[-2,-20],[-3,-35],[-3,-23],[-1,-11],[1,-10],[5,-22],[1,-11],[2,-6],[8,-27],[2,-4],[-1,-18],[1,-7],[2,-6],[1,-6],[2,-5],[17,-28],[2,-7],[3,-36],[-1,-10],[3,-13],[1,-56],[11,-78],[10,-37],[6,-17],[7,-15],[4,-6],[4,-5],[4,-3],[5,-2],[10,-1],[2,-4],[2,-11],[3,7],[3,3],[7,2],[12,14],[10,9],[13,28],[4,6],[5,4],[4,9],[3,10],[2,9],[1,16],[0,16],[1,14],[4,7],[1,-3],[2,-5],[1,-4],[1,3],[1,1],[1,1],[1,3],[1,0],[5,-20],[1,-4],[4,-3],[3,0],[3,0],[3,-5],[38,36],[3,4],[5,28],[1,5],[1,1],[0,5],[0,8],[1,3],[2,-1],[4,-4],[4,-3],[2,-5],[2,-5],[1,-3],[3,-5],[12,-36],[-3,-10],[-1,-13],[0,-24],[2,-12],[6,-1],[6,7],[3,8],[1,-9],[-1,-12],[-2,-11],[-3,-4],[-1,-7],[1,-32],[1,-10],[2,-4],[8,-12],[1,-6],[3,-15],[2,-6],[6,-3],[12,6],[4,-1],[4,-8],[3,-10],[4,-10],[7,-4],[18,-1],[4,-3],[2,-5],[1,-4],[0,-5],[1,-6],[2,-5],[5,-9],[-1,-3],[2,-29],[0,-5],[3,-6],[17,-24],[4,-13],[7,8],[6,-5],[6,-10],[7,-5],[4,-1],[5,-5],[4,-2],[4,1],[7,4],[4,0],[-3,-16],[2,-13],[16,-39],[4,-2],[6,4],[9,0],[-4,-16],[-21,-62],[-2,-12],[-4,-42],[1,-10],[4,-17],[2,-16],[3,-6],[3,-4],[4,-1],[4,2],[2,5],[2,17],[5,-8],[2,-12],[-2,-11],[-11,-9],[-5,-9],[-1,-11],[5,-9],[-3,-6],[-1,-6],[1,-6],[-1,-6],[-2,-2],[-4,-5],[-2,-2],[-2,-10],[-1,-13],[0,-9],[3,4],[2,0],[4,-23],[1,-12],[-4,-6],[-1,-2],[0,-6],[1,-5],[2,-3],[0,-2],[10,-16],[1,-3],[2,-13],[1,-6],[-1,-5],[-4,-12],[1,-3],[1,-2],[11,-50],[3,-8],[1,-8],[-2,-28],[0,-10],[1,-6],[2,-3],[1,-2],[0,-5],[-2,-7],[-3,-12],[-1,-8],[1,-11],[2,-7],[6,-12],[12,-33],[6,-21],[3,-20],[0,-22],[-6,-40],[-1,-21],[6,-8],[1,-3],[2,-15],[0,-9],[-2,-8],[-8,-17],[-5,-19],[0,-44],[-4,-20],[1,-7],[1,-6],[3,-5],[3,-3],[5,5],[5,-7],[2,-12],[1,-12],[2,-6],[10,-21],[3,-20],[5,-11],[1,-3],[1,-9],[3,-10],[4,-9],[13,-23],[3,-4],[7,-6],[2,-4],[2,-5],[1,-13],[1,-6],[3,-5],[5,-6],[3,-4],[5,-28],[5,-6],[4,-11],[1,-5],[-1,-8],[-3,-2],[-3,-1],[-3,-3],[0,-8],[2,-6],[3,-6],[3,-9],[0,-4],[0,-10],[1,-4],[3,-2],[2,1],[2,4],[-3,12],[-1,11],[1,9],[2,4],[2,3],[8,15],[2,6],[5,-7],[3,-6],[3,-1],[7,12],[2,5],[2,3],[2,2],[3,0],[5,-3],[1,-7],[-2,-7],[-1,-3],[-3,-6],[0,-2],[-1,-3],[2,-3],[0,-2],[-2,-13],[-2,-5],[-2,-3],[-2,-4],[-5,-21],[-2,-7],[-1,-13],[0,-11],[2,-9],[4,-4],[2,-5],[11,-43],[2,-12],[1,-13],[0,-14],[2,-9],[10,-30],[7,-37],[3,-9],[5,-9],[3,-3],[2,-6],[-1,-26],[1,-35],[-2,-6],[3,-14],[7,-21],[8,-15],[3,-9],[1,-11],[-2,-8],[-7,-13],[-3,-9],[-1,-13],[1,-38],[-1,-2],[-3,-6],[-2,-7],[1,-3],[2,-3],[0,-6],[0,-7],[-1,-4],[4,-12],[2,-6],[-2,-7],[-2,-20],[-1,-4],[1,-9],[-8,-39],[-13,-52],[-2,-18],[-3,-15],[0,-9],[0,-9],[0,-8],[2,-8],[1,-8],[-2,-14],[4,-16],[22,-51],[5,-8],[3,-1],[9,-1],[3,-2],[3,-6],[1,-9],[0,-17],[7,-41],[-1,-12],[5,4],[6,-3],[5,-4],[2,-3],[4,4],[4,0],[10,-6],[-1,-27],[-1,-24],[-3,-20],[-8,-38],[-4,-70],[-1,-4],[0,-4],[-1,-6],[0,-6],[1,-7],[5,-13],[2,-6],[0,-4],[4,-6],[2,-5],[3,-16],[22,-30],[4,-11],[6,-19],[4,-9],[5,-5],[11,-7],[4,-6],[6,-13],[2,-7],[2,-1],[2,0],[3,-1],[19,-24],[10,-6],[15,12],[4,-6],[5,-17],[7,-15],[4,-6],[3,-3],[6,-7],[7,-14],[8,-10],[10,6],[5,-1],[5,7],[9,19],[3,9],[1,12],[0,12],[-2,12],[2,0],[1,-9],[6,-11],[1,-11],[0,-3],[3,-5],[1,-2],[-1,-3],[-1,-5],[-2,-18],[0,-7],[2,-9],[6,-15],[1,-6],[14,-35],[3,8],[6,-1],[15,-8],[6,-6],[3,-1],[2,1],[7,7],[37,-1],[8,10],[1,10],[-3,12],[-3,10],[-7,8],[-2,9],[1,6],[6,-7],[6,-16],[13,-65],[16,-41],[3,-10],[0,-14],[2,-16],[3,-15],[4,-13],[-1,-16],[3,-14],[0,-10],[-10,-1],[5,-4],[3,-6],[6,-19],[19,-44],[10,-3],[18,-1],[-6,35],[-2,5],[0,6],[-1,39],[20,-13],[6,-13],[4,-53],[4,-17],[7,-13],[8,-13],[6,-6],[6,-2],[12,0],[1,3],[1,5],[0,6],[2,2],[2,0],[2,-3],[2,-1],[2,2],[4,6],[3,-4],[9,-19],[2,-7],[2,-5],[19,-5],[16,-11],[7,-1],[-2,-12],[2,-10],[7,-19],[-6,-3],[-5,-5],[3,-5],[1,-5],[-1,-6],[-3,-5],[7,-6],[3,-3],[7,-20],[1,-3],[2,-2],[10,-14],[8,-6],[2,-5],[-2,-9],[4,-2],[5,1],[5,4],[3,5],[1,6],[-3,2],[-5,0],[-4,4],[3,7],[3,1],[4,1],[3,3],[2,7],[-1,7],[-3,4],[-3,2],[-3,4],[-1,8],[0,9],[2,8],[4,3],[3,-5],[3,-7],[4,-4],[7,0],[2,3],[4,8],[5,7],[2,-4],[0,-33],[2,-19],[4,-15],[7,-3],[-2,-8],[-1,-8],[2,-5],[5,1],[3,5],[0,7],[1,7],[1,9],[3,-5],[1,-5],[0,-5],[-2,-5],[6,5],[2,3],[0,-8],[-1,-6],[-2,-6],[-3,-5],[6,-6],[2,-1],[-1,-4],[-1,-5],[0,-6],[0,-6],[11,10],[5,4],[5,-2],[-1,14],[7,-6],[6,-16],[-3,-12],[2,-4],[3,-8],[1,-2],[1,-6],[2,-2],[3,0],[2,-2],[2,-12],[0,-8],[-2,-8],[0,-9],[3,-18],[5,-11],[15,-20],[-7,-2],[2,-10],[5,-13],[3,-11],[-2,2],[-2,1],[-3,-1],[-2,-2],[-2,6],[-3,2],[-3,0],[-2,-4],[-2,8],[-2,6],[-3,4],[-4,2],[1,7],[1,7],[0,8],[-2,7],[-1,2],[-4,5],[-2,1],[-3,-2],[0,-2],[0,-4],[-2,-6],[-1,-6],[-2,-4],[-4,-1],[-4,2],[-2,4],[-1,5],[-3,6],[-6,3],[1,-9],[3,-15],[2,-12],[-2,-13],[-5,-12],[-6,-8],[-6,0],[2,-9],[2,-9],[6,-14],[0,-2],[1,-8],[1,-2],[1,-2],[4,1],[1,-1],[2,-7],[0,-7],[-5,-13],[5,-4],[4,-19],[6,-5],[1,-3],[5,-14],[0,-5],[2,-3],[3,1],[3,3],[2,1],[3,-2],[2,-3],[2,-5],[1,-6],[1,-26],[0,-4],[-2,-3],[-1,-4],[0,-6],[-1,-6],[0,-5],[-2,-4],[-1,-3],[5,2],[4,8],[4,18],[4,-6],[3,-7],[3,-5],[5,-2],[8,4],[4,0],[2,-6],[6,-12],[4,-5],[1,2],[1,3],[1,2],[4,0],[5,-1],[3,-4],[1,-11],[-4,3],[-6,2],[-3,-2],[3,-9],[1,-10],[-3,-9],[-1,-6],[6,-2],[9,6],[4,0],[2,-8],[3,-6],[11,-2],[3,-7],[1,-9],[3,-8],[3,-5],[4,-1],[0,-4],[8,-21],[0,-21],[-10,-33],[1,-23],[8,-32],[2,-5],[2,3],[2,11],[2,3],[2,0],[0,-1],[1,-3],[2,-5],[0,-2],[0,-2],[-1,-3],[2,-1],[3,1],[1,-1],[2,-8],[0,-6],[-1,-2],[-1,-6],[3,-13],[5,-21],[-2,-5],[-2,-4],[-2,-2],[-3,-1],[2,-7],[9,-3],[4,-6],[-5,-8],[-5,-6],[-4,-8],[-1,-13],[1,-16],[4,1],[11,17],[3,-9],[4,-3],[5,-1],[2,-1],[-1,-18],[1,-9],[5,-4],[0,-4],[1,-8],[3,-5],[6,5],[2,6],[3,17],[3,5],[2,-4],[2,-6],[2,-14],[-15,-30],[-1,-10],[1,-14],[5,-23],[3,-7],[1,-4],[0,-5],[-2,-7],[-2,-1],[-3,-1],[-4,-6],[-2,-10],[1,-13],[3,-12],[3,-11],[2,-6],[2,-3],[1,-4],[1,-8],[0,-5],[-2,-14],[0,-7],[1,-12],[2,-13],[11,-37],[1,-9],[1,-28],[2,-12],[11,-37],[-5,-7],[-1,-4],[0,-6],[6,-3],[1,-12],[1,-3],[7,-16],[-1,-6],[-4,-11],[-1,-5],[1,-2],[14,-10],[1,-2],[2,-5],[3,-8],[2,-9],[3,-6],[5,5],[1,-11],[1,-12],[0,-23],[-2,-15],[-3,-8],[-4,-8],[-3,-12],[9,4],[10,11],[10,14],[5,12],[5,22],[3,6],[5,-6],[7,-19],[4,-12],[1,-9],[2,-7],[23,-39],[2,-7],[2,-19],[6,-19],[7,-14],[6,-7],[-7,54],[-19,90],[-5,13],[-2,14],[0,11],[6,-4],[-2,10],[-4,8],[-1,9],[2,12],[3,8],[5,26],[2,20],[3,8],[3,7],[3,2],[5,2],[10,8],[1,-4],[5,-5],[1,-3],[1,-5],[5,-28],[2,-9],[3,-7],[3,-6],[2,-2],[3,-2],[1,-3],[1,-7],[0,-6],[1,-5],[0,-4],[1,-4],[7,-10],[1,-7],[-4,-7],[5,-16],[6,-10],[23,-14],[4,-4],[7,-12],[5,-5],[8,-7],[5,-5],[2,-5],[5,-12],[4,-7],[5,-4],[14,-8],[6,-8],[21,-37],[2,4],[-5,10],[-4,17],[-3,17],[2,9],[0,4],[-10,16],[-3,32],[3,36],[6,26],[3,-5],[7,-8],[5,6],[4,-5],[3,-8],[-5,-5],[2,-5],[0,-5],[-1,-4],[-2,-2],[3,-2],[3,-4],[3,-5],[2,-5],[2,4],[-2,7],[-1,9],[1,10],[4,6],[1,-13],[1,-14],[3,-13],[3,-9],[2,-2],[7,-5],[3,-1],[2,-3],[1,-7],[-1,-7],[-2,-3],[-7,-19],[-5,-5],[-2,14],[-3,3],[-3,-4],[-2,-8],[6,-9],[-4,-16],[7,3],[4,-3],[1,-11],[-1,-16],[1,-9],[3,-3],[3,3],[3,7],[1,7],[1,8],[0,16],[1,14],[3,3],[2,-7],[1,-16],[-2,-34],[2,-16],[6,1],[2,-12],[3,-15],[1,-10],[-2,-11],[-3,-23],[-2,-24],[-2,-21],[-2,-30],[-1,-5],[0,-2],[1,-7],[-1,-3],[-1,-1],[-5,2],[-6,-2],[-2,-3],[2,-6],[2,-4],[5,-7],[2,-3],[0,-6],[-2,-5],[0,-6],[1,-5],[1,-4],[1,-5],[0,-11],[-5,-49],[1,-22],[10,-13],[-2,-10],[0,-9],[2,-9],[4,-8],[0,3],[1,2],[1,3],[5,-13],[-2,-16],[-6,-13],[-7,-6],[8,-61],[8,-14],[9,-24],[2,-8],[-3,-6],[-5,-3],[-11,1],[0,-4],[6,-2],[6,-4],[4,-8],[1,-12],[3,-11],[6,4],[6,9],[2,4],[6,-1],[8,-11],[7,-2],[4,-8],[4,-19],[8,-7],[9,-17],[3,-7],[4,-6],[4,-20],[2,-11],[1,-15],[1,-5],[1,-6],[4,-12],[1,-1],[3,-6],[6,-6],[12,-6],[2,0],[2,0],[3,0],[1,-2],[0,-5],[1,-5],[1,-5],[1,-3],[1,0],[2,1],[3,-1],[3,-2],[1,-5],[3,-11],[2,-5],[16,-32],[5,-15],[4,-14],[1,-4],[2,-2],[1,4],[2,5],[2,3],[4,0],[5,-3],[4,-5],[5,-9],[2,-2],[1,-3],[2,-6],[-1,-4],[-1,-2],[-1,-2],[-1,-2],[0,-12],[2,-6],[2,-5],[5,-4],[1,3],[0,2],[1,1],[0,2],[-1,5],[3,11],[0,9],[1,-3],[2,-3],[1,-2],[7,3],[7,-8],[6,-12],[7,-8],[-3,22],[-2,9],[-3,10],[-4,5],[-8,9],[-1,6],[2,7],[5,3],[5,1],[5,-3],[3,-5],[3,-7],[4,-6],[5,-2],[0,-4],[-6,-12],[3,-9],[5,-3],[0,8],[3,2],[8,14],[0,-18],[2,-21],[3,-19],[4,-13],[7,-12],[4,-5],[5,-1],[2,0],[0,1],[2,3],[1,4],[0,3],[1,4],[2,1],[1,-5],[0,-14],[1,-5],[2,-6],[6,-8],[1,-5],[1,-10],[17,-104],[16,-61],[7,-10],[10,-36],[8,-16],[43,-62],[6,-3],[5,-1],[17,-11],[9,-13],[9,-21],[6,-24],[2,-27],[0,-51],[2,-12],[20,-60],[1,-5],[3,-7],[11,-13],[1,-11],[-1,-5],[-2,-2],[-6,-1],[-1,1],[-4,3],[-2,0],[-2,-1],[-1,-3],[0,-2],[1,-2],[7,-1],[6,-5],[5,-6],[4,-8],[3,-8],[4,-8],[6,-6],[14,-4],[7,-3],[7,-6],[5,-6],[0,7],[0,8],[0,7],[4,3],[1,-3],[2,-14],[3,-3],[14,-5],[3,-2],[1,-6],[0,-16],[4,-54],[-1,-4],[-11,-13],[-2,-5],[-2,-7],[-1,-6],[6,4],[15,18],[5,0],[1,-9],[-2,-6],[-4,-4],[-2,-3],[2,-7],[4,-2],[2,-4],[-3,-10],[-10,-18],[-4,-10],[-2,-14],[3,-35],[0,-15],[-7,-3],[3,-8],[4,-7],[8,-10],[-4,-3],[-2,0],[3,-11],[4,-8],[6,-4],[5,-2],[11,-36],[2,-12],[2,-24],[0,-11],[-1,-2],[-2,-7],[-1,-5],[0,-6],[0,-19],[2,0],[8,32],[1,7],[0,19],[1,11],[3,9],[-3,9],[-1,3],[5,-4],[1,-7],[2,-17],[6,-31],[3,-10],[7,-5],[9,-1],[7,6],[-1,-9],[-5,-15],[-2,-14],[-5,-22],[-3,-7],[-2,-8],[-2,-25],[-2,-6],[-4,-30],[-1,-9],[-8,-60],[-1,-21],[0,-11],[1,-10],[3,-9],[4,-4],[4,-1],[3,-2],[2,-9],[-4,-18],[-2,-20],[-1,-112],[1,-9],[1,-5],[0,-3],[9,-5],[-2,-29],[0,-10],[2,-19],[1,-7],[2,-3],[-3,-4],[-1,-11],[-1,-12],[0,-9],[0,4],[1,-23],[1,-20],[15,-71],[1,-19],[-5,-13],[-10,9],[-11,-3],[-9,-13],[-8,-17],[-2,-7],[-2,-13],[0,-12],[5,-5],[6,-1],[3,1],[3,2],[3,5],[2,-4],[-1,-27],[-3,-7],[-4,-4],[-5,-8],[-3,-12],[1,-9],[3,-7],[4,-6],[5,-5],[12,-7],[5,-7],[2,-11],[2,-27],[2,-12],[5,-10],[4,-1],[4,0],[4,-3],[2,-7],[3,-7],[3,-16],[1,-6],[0,-4],[0,-4],[6,-14],[1,-4],[0,-37],[2,-9],[2,-7],[6,-12],[1,-7],[0,-1],[2,-13],[2,-6],[1,-2],[1,-2],[8,-16],[3,-9],[-1,-8],[-1,-8],[2,-4],[5,3],[3,11],[2,0],[0,-11],[-4,-30],[0,-10],[0,-34],[-4,16],[-2,-6],[-2,-10],[-1,-11],[1,-10],[3,-3],[2,4],[3,7],[2,5],[2,-19],[1,-55],[4,-11],[5,-11],[6,-22],[1,-1],[7,-17],[8,2],[3,-11],[3,-31],[2,-13],[0,-30],[-7,-84],[-1,-26],[4,-51],[2,-10],[11,-22],[2,-10],[0,-3],[-3,-12],[-1,-5],[1,-6],[0,-7],[0,-7],[-5,-19],[0,-13],[3,-26],[-2,-24],[-6,-17],[-17,-28],[-13,-34],[-6,-21],[-4,-22],[-1,-7],[0,-5],[3,-28],[0,-6],[-1,-3],[-6,-3],[-1,-2],[-1,-7],[-12,-39],[-6,-23],[-2,-25],[2,-22],[5,-13],[1,-8],[-3,-10],[-1,-7],[0,-11],[1,-11],[1,-5],[-3,-12],[-2,-27],[-5,-17],[-1,-7],[0,-12],[0,-3],[1,-6],[0,-4],[0,-3],[-3,-7],[0,-4],[0,-14],[2,-10],[-1,-9],[-7,-22],[-1,-11],[-1,-10],[0,-9],[2,-24],[-1,-5],[-4,-9],[-1,-4],[-1,-27],[-1,-13],[-2,-11],[-10,-26],[-1,-9],[-1,-3],[-4,-10],[-1,-7],[1,-6],[1,-16],[0,-33],[-4,-27],[-15,-50],[3,-16],[-4,-23],[-12,-38],[-2,-10],[-2,-19],[-7,-21],[-2,-12],[-6,-49],[-1,-34],[-3,-11],[1,-2],[-6,-47],[3,-10],[1,-50],[7,-23],[2,-4],[2,-4],[3,-3],[3,0],[1,5],[1,2],[2,-2],[2,-6],[1,-6],[-1,-13],[0,-5],[-1,-5],[-5,-9],[-5,-20],[-2,-22],[2,-10],[3,-3],[1,-5],[0,-10],[-5,-7],[-9,-19],[-8,-26],[-1,-20],[-5,-24],[3,-9],[2,-38],[-13,-28],[-4,-17],[0,-15],[5,-11],[1,-9],[1,-5],[-2,-12],[-8,-13],[-8,-16],[-9,-22],[1,-18],[-3,-15],[3,-11],[-5,-7],[-5,-12],[-7,-17],[5,-9],[-1,-8],[-7,-13],[-9,-23],[-2,-20],[3,-9],[-9,-10],[-6,-15],[-8,-11],[-15,-25],[-18,-58],[3,-17],[-8,-15],[-2,-11],[-2,-12],[-1,-15],[2,-9],[5,-4],[3,-8],[5,-5],[1,-8],[-3,-8],[-3,-8],[-2,-8],[-2,-5],[-2,-8],[0,-8],[1,-10],[3,-1],[4,-4],[0,-4],[-1,-3],[-2,-2],[0,-4],[-2,-7],[0,-9],[-3,-11],[-1,-13],[0,-10],[5,-9],[-38,-28],[-13,-15],[-17,-27],[-2,-17],[-6,-3],[-8,-8],[-7,-14],[-5,-13],[-2,-9],[5,-11],[4,-6],[-4,-1],[-1,2],[-2,5],[-1,2],[-1,0],[-3,-1],[-1,1],[-7,10],[-3,2],[0,-2],[-5,-8],[-2,-2],[-14,-9],[7,-10],[2,-2],[21,0],[3,-1],[3,-3],[2,-2],[-1,-2],[-1,-2],[0,-13],[-1,-5],[-3,-2],[-7,2],[-3,-2],[-2,-7],[-1,-3],[-2,-2],[-3,-2],[-14,5],[-21,-8],[-14,-10],[-16,-16],[-6,-8],[-6,-5],[-9,-17],[1,-16],[-5,-7],[-4,-8],[-6,-7],[-4,-9],[0,-13],[0,-12],[-4,-3],[-5,-5],[-6,-13],[-3,-7],[-1,-7],[-1,-8],[-3,-14],[-2,-20],[-3,-8],[-2,-10],[-1,-10],[-3,-9],[-7,-7],[-5,-15],[-2,-12],[4,-11],[-2,-5],[-11,-16],[-4,-5],[0,6],[4,8],[3,15],[-7,10],[-7,-7],[-10,-19],[-1,-4],[5,-10],[-4,-1],[-4,-2],[1,-7],[2,-6],[2,-2],[4,-2],[4,8],[2,5],[3,-2],[-1,-10],[-3,-8],[-2,-12],[-7,-15],[-4,-10],[2,-5],[0,-5],[-4,-6],[2,-9],[1,-4],[-2,-3],[-4,-2],[2,-9],[-1,-3],[0,-4],[-2,-4],[-2,-3],[-2,-1],[-6,0],[-2,-1],[-5,2],[-2,-5],[-3,-4],[-6,-2],[-4,2],[-7,-8],[-4,0],[-3,9],[-3,15],[-4,-8],[-1,-12],[2,-11],[5,-5],[-2,-5],[-1,-3],[-2,-3],[-3,-1],[0,-4],[7,1],[9,20],[5,2],[3,-5],[-3,-17],[-3,-17],[2,-8],[3,7],[3,9],[2,18],[4,-15],[-5,-30],[-4,-15],[-1,-16],[0,-3],[2,-6],[2,-7],[0,-6],[-3,-14],[-1,-26],[-3,-3],[-4,1],[-3,0],[-4,-8],[-2,-9],[0,-6],[2,-4],[4,-2],[3,4],[2,6],[0,2],[2,-8],[0,-13],[-5,-27],[2,-8],[-4,-18],[-2,-6],[-3,-7],[-2,3],[-8,19],[-3,5],[-6,-3],[-1,-6],[-1,-8],[-3,-8],[-5,-2],[-6,2],[-5,0],[-3,-8],[8,-4],[2,-2],[3,-5],[2,0],[3,9],[17,-4],[3,0],[0,-10],[-2,-3],[-13,-1],[-1,1],[-1,-1],[-2,-4],[-1,-5],[-1,-5],[-2,-4],[-4,-3],[3,-2],[7,0],[2,-2],[0,-6],[-3,-6],[-5,-8],[-10,-15],[-5,-8],[-7,-7],[-12,-16],[-5,-11],[-11,-25],[-8,-24],[-4,-16],[1,-20],[-6,-26],[-1,-26],[4,-21],[-6,-9],[-3,-17],[-4,-9],[-5,3],[4,11],[-2,5],[-4,2],[-2,0],[-1,-2],[-10,-20],[2,-6],[1,-2],[3,-1],[6,1],[3,-5],[8,-13],[4,-6],[5,-1],[-9,-2],[-3,-12],[-7,-74],[-4,-18],[-6,-8],[-9,-6],[-7,-31],[-7,-7],[0,-2],[3,-6],[4,-6],[3,-2],[4,-3],[0,-5],[-4,-4],[-5,0],[2,-6],[6,-5],[3,-6],[-2,-4],[2,-4],[-3,-16],[6,-10],[9,-5],[6,-2],[1,-4],[-3,-19],[0,-14],[-3,-8],[-7,-11],[-2,6],[-4,6],[-2,7],[1,7],[3,9],[-3,13],[1,8],[-5,5],[-5,-2],[-5,-4],[-10,-5],[-2,-8],[-3,-22],[5,-2],[2,-8],[-1,-10],[1,-6],[1,-2],[4,-7],[5,2],[4,4],[4,1],[1,-6],[0,-9],[-2,-10],[-1,-8],[-3,-2],[-2,0],[-2,1],[-1,-1],[-1,-2],[-2,-3],[-2,-3],[-2,-2],[-6,14],[-13,-2],[-7,-5],[-7,-5],[-9,-10],[-2,-5],[-1,-10],[-1,-6],[-2,-4],[-3,-5],[-6,-15],[-3,-10],[-2,-11],[0,-15],[1,-9],[1,-3],[0,-2],[-2,-6],[-8,-12],[-1,-3],[-2,-10],[-3,-9],[-4,-8],[-2,-7],[-1,-12],[0,-31],[0,-6],[-5,-5],[-5,-13],[-11,-36],[-7,-36],[-4,-13],[-5,-5],[-6,3],[-6,8],[-3,-3],[-8,-5],[7,-15],[2,-16],[1,-4],[3,-8],[1,-6],[-1,-14],[-2,-7],[-4,-3],[-7,-4],[-1,-2],[-10,-20],[-1,-3],[0,-8],[3,-16],[1,-10],[-2,-41],[-2,-22],[-5,2],[-7,6],[-5,-8],[1,-5],[0,-3],[-3,-5],[2,1],[1,0],[2,1],[1,3],[5,-5],[4,-8],[3,-10],[-6,-22],[-1,-13],[1,-13],[6,-34],[0,-12],[-3,-5],[0,-3],[2,-13],[0,-7],[-1,-5],[-3,-5],[-5,-8],[-5,-10],[-3,-11],[-3,-12],[-1,-13],[2,-14],[0,-6],[-1,-4],[-3,-12],[-1,-7],[2,-25],[1,-14],[-2,-12],[-8,-22],[-10,-37],[-1,-10],[-1,-11],[0,-13],[-2,-15],[-4,-15],[-5,-12],[-5,-9],[3,-13],[-1,-11],[-7,-20],[-2,-14],[2,-6],[4,-3],[5,-6],[-3,-7],[-3,-10],[0,-12],[1,-9],[3,-5],[1,-4],[1,-5],[0,-7],[0,-5],[-2,-4],[-1,-1],[-1,2],[-2,3],[-4,-5],[-5,-8],[-1,-4],[-3,-3],[2,-7],[4,-7],[5,-3],[4,1],[3,2],[2,0],[3,-3],[11,-15],[2,-5],[2,-9],[1,-19],[1,-9],[10,-28],[0,-5],[-7,6],[-6,4],[-6,0],[-6,-5],[-4,-10],[0,-9],[6,-22],[-4,-24],[0,-22],[3,-23],[5,-25],[-4,-8],[-5,-13],[-16,-10],[-33,-5],[3,2],[1,3],[0,4],[-2,4],[4,9],[-1,5],[-4,-1],[-2,-10],[-4,3],[-11,5],[11,-30],[2,-10],[-3,-8],[-9,-14],[-3,-16],[-10,-25],[-3,-6],[-14,-6],[-2,-4],[-1,-5],[-3,-5],[-5,-4],[-12,-3],[-6,-6],[-1,-3],[-3,-10],[-2,-3],[-3,-2],[-38,0],[-12,-7],[-7,-15],[-2,4],[-2,4],[0,4],[0,6],[-2,2],[-22,0],[-6,2],[-4,6],[-12,-8],[-42,0],[-11,-4],[-32,-1],[-6,-3],[-8,-10],[-4,-2],[-33,7],[-83,-7],[-49,-20],[-59,-36],[-44,-40],[-47,-56],[-54,-83],[-59,-105],[-28,-45],[-27,-58],[-25,-37],[-3,-3],[-1,-3],[-9,-24],[-3,1],[-1,6],[4,8],[-5,3],[-39,-15],[-13,2],[-7,-2],[-12,-14],[-6,-1],[-6,2],[-7,1],[-13,-6],[-7,-6],[-3,-7],[-3,-5],[-6,9],[-5,11],[-1,4],[-5,3],[-26,-4],[-5,-2],[-4,-6],[-12,-24],[10,-17],[1,-4],[2,-10],[3,-6],[1,-1],[5,1],[1,-1],[0,-4],[0,-4],[0,-3],[1,-8],[0,-7],[1,-6],[4,-3],[-2,-12],[2,-6],[5,-2],[4,4],[4,7],[6,15],[5,6],[3,1],[5,-1],[3,2],[1,5],[1,6],[0,5],[1,6],[3,10],[4,6],[4,0],[4,-11],[-2,-8],[0,-10],[0,-17],[0,-6],[2,-4],[1,-4],[1,-4],[0,-5],[0,-2],[0,-2],[0,-6],[-2,-3],[-3,-5],[-3,-7],[-2,-9],[0,-6],[-3,-18],[0,-9],[0,-4],[2,-2],[2,0],[4,4],[1,-2],[4,-22],[-2,-4],[-3,-1],[-5,-3],[-4,-6],[0,-5],[2,-7],[-1,-11],[-3,-5],[-4,-4],[-5,-2],[-4,3],[-8,7],[-4,6],[-3,8],[-1,10],[2,3],[4,3],[1,8],[-2,6],[-11,10],[-3,6],[-7,19],[-4,33],[-19,42],[-25,29],[-21,-7],[-2,-9],[-1,-11],[0,-18],[-3,-3],[-15,-5],[-5,2],[-2,6],[-5,39],[-12,42],[-9,24],[-15,26],[-3,9],[8,-5],[11,-17],[8,-2],[-6,18],[-6,11],[-9,6],[-12,1],[-10,-4],[-16,-19],[-12,-1],[-8,11],[-11,40],[-4,9],[-4,2],[-15,15],[-15,4],[-5,4],[0,3],[6,3],[7,6],[3,8],[-3,8],[3,8],[1,9],[-1,10],[-3,10],[8,8],[3,-1],[3,-3],[2,-3],[1,-1],[6,1],[5,8],[3,7],[2,4],[5,4],[-1,10],[-4,10],[-6,5],[-1,3],[1,7],[1,9],[-1,6],[-4,10],[-8,23],[-3,7],[-5,3],[-5,1],[-13,-4],[-10,0],[-2,-3],[-1,-4],[-2,-1],[-4,6],[-5,3],[-7,-1],[-4,-4],[2,-9],[-2,-5],[-3,-5],[-2,-5],[-2,-15],[-3,-3],[-3,-2],[-2,-6],[0,-6],[5,-9],[1,-7],[0,-14],[1,-16],[-25,7],[-7,-3],[-2,-5],[-1,-7],[-2,-6],[-9,-5],[-3,-7],[-4,-15],[2,-4],[-5,-3],[-20,-3],[-3,-7],[-6,5],[-10,12],[-43,77],[-5,6],[-6,2],[-4,3],[-1,6],[1,4],[2,-2],[3,-4],[10,-3],[5,-6],[10,-18],[5,-4],[13,0],[12,4],[17,14],[8,4],[3,5],[1,6],[-1,6],[0,5],[2,5],[6,8],[1,4],[2,10],[1,6],[2,5],[5,10],[3,10],[13,28],[3,20],[-1,22],[-5,22],[-7,17],[-2,3],[-9,5],[-3,4],[-2,4],[-6,21],[-3,24],[-3,12],[-5,10],[-8,9],[-7,-1],[-1,-18],[-18,4],[-5,-3],[-2,-8],[-1,-9],[-2,-8],[-3,-5],[-5,-3],[-5,-3],[-4,-2],[-3,-4],[-11,-17],[-2,-5],[-4,-7],[-32,-18],[-4,-6],[-3,-8],[-3,-7],[1,-5],[1,-4],[0,-4],[-3,-4],[-3,0],[-3,2],[-2,3],[-2,4],[-8,-5],[-16,-1],[-6,-7],[-3,-16],[5,-7],[15,-1],[25,-11],[9,3],[7,6],[20,23],[14,-13],[6,-11],[-2,-15],[-1,-4],[0,-8],[0,-3],[-2,-2],[-4,0],[-2,-2],[-5,-9],[-2,-7],[-2,-8],[-1,-14],[-11,-4],[-23,2],[-3,-3],[-2,-3],[-2,-2],[-4,0],[-3,1],[-6,5],[-3,2],[-7,-2],[-5,-5],[-26,-33],[-14,-23],[-3,-3],[-6,-1],[-3,-2],[-2,-3],[-4,-10],[-2,-4],[-14,-7],[-1,-2],[-3,-9],[-2,-2],[-12,-4],[-5,-6],[-15,-29],[-1,-3],[1,-5],[0,-5],[-2,-7],[-4,-4],[-7,-3],[-3,-3],[-4,-9],[-6,-26],[-5,-5],[-2,-3],[-3,-5],[-4,-10],[-3,-5],[-28,-16],[-5,-2],[-6,-4],[-3,-9],[-3,-10],[-3,-12],[0,-1],[0,-2],[-1,-2],[-2,-1],[-3,1],[-1,0],[-10,-10],[-3,-5],[-7,-17],[-5,-6],[-6,-3],[-5,5],[-9,16],[-4,3],[-1,2],[-3,9],[-1,2],[-11,7],[-10,12],[-5,3],[-7,2],[-26,-4],[-5,4],[-5,8],[-5,9],[-2,9],[-17,27],[-10,13],[-6,5],[-31,10],[-13,10],[-8,3],[-5,6],[-2,1],[-10,4],[-14,24],[-7,7],[-23,32],[-18,17],[-10,14],[-4,3],[-2,3],[-1,1],[-2,0],[-1,1],[-4,13],[1,3],[-1,3],[-4,1],[-3,-2],[-1,-6],[-1,-6],[-1,-6],[-6,5],[-3,4],[-6,11],[-4,3],[-24,0],[-8,-4],[-4,-11],[-12,-8],[-14,4],[-23,20],[-30,39],[-10,10],[-3,1],[-10,-1],[-4,2],[-6,5],[-29,5],[-11,-3],[-13,-10],[-12,-14],[-4,-18],[2,-9],[6,-11],[2,-8],[0,-8],[-1,-2],[-8,2],[-2,1],[-1,2],[-2,1],[-2,-2],[-6,-10],[-1,-4],[-1,-7],[-2,-5],[-4,3],[-3,7],[-4,15],[-3,7],[-3,3],[-4,3],[-4,1],[-5,1],[-5,-2],[-1,-3],[0,-6],[-2,-7],[-3,-2],[-5,3],[-4,5],[-2,4],[1,5],[4,11],[2,9],[1,4],[-1,10],[-2,8],[-4,9],[-45,70],[-22,27],[-41,34],[-4,6],[-6,3],[-66,-9],[-6,1],[-6,4],[-5,6],[-5,7],[-2,2],[-7,-1],[-2,3],[-3,6],[-2,3],[-6,5],[-21,35],[-6,7],[-11,6],[-5,5],[-1,2],[-1,8],[0,2],[-2,1],[-3,2],[-1,1],[-3,6],[-1,4],[0,8],[-1,9],[-4,18],[-14,40],[-2,11],[-11,38],[-8,14],[-21,28],[-7,15],[0,4],[6,4],[0,11],[-5,12],[-6,6],[-3,2],[-5,8],[-4,2],[-1,0],[-3,3],[-1,1],[-2,-2],[-1,-4],[0,-4],[0,-2],[-9,8],[-54,130],[-7,28],[-8,24],[2,6],[4,3],[5,7],[2,16],[-4,13],[-5,13],[-4,15],[-1,23],[-2,8],[-5,10],[-7,7],[-3,5],[-1,8],[31,31],[9,13],[7,20],[4,22],[2,25],[-2,78],[-1,8],[-34,147],[-26,100],[-19,76],[-6,10],[-9,14],[-11,30],[-2,9],[-3,7],[-51,90],[-21,35],[-10,11],[-9,17],[-8,8],[-10,16],[-9,8],[-9,17],[-9,6],[-14,18],[12,6],[11,-12],[97,-155],[28,-47],[14,-30],[18,-43],[10,-36],[18,-69],[2,0],[-2,26],[-15,64],[-3,23],[-2,9],[-33,74],[-5,8],[-11,7],[-4,8],[-7,17],[-53,82],[-5,3],[-18,26],[-3,6],[-11,12],[-3,4],[-2,11],[2,7],[4,3],[5,-4],[1,15],[2,9],[8,14],[6,8],[5,-3],[9,-15],[4,-4],[5,-2],[4,-5],[2,-11],[-1,-14],[-2,-9],[-1,-6],[2,-10],[2,-2],[3,0],[1,-1],[0,-9],[-2,-4],[-4,-4],[-2,-6],[1,-8],[4,-3],[15,-4],[5,0],[6,8],[1,11],[-1,13],[2,11],[4,12],[-1,9],[-20,32],[-4,4],[-9,4],[-4,4],[-1,7],[3,4],[9,3],[1,3],[1,2],[1,3],[3,1],[3,-1],[16,-7],[3,2],[3,8],[1,7],[-3,7],[-3,7],[-2,7],[4,24],[0,7],[-3,4],[-4,-4],[-6,-12],[-4,24],[-9,15],[-13,7],[-12,2],[1,-3],[1,-2],[1,-2],[2,-1],[-4,-9],[-13,-13],[-5,-8],[-4,-5],[-8,-2],[-8,1],[-5,4],[-13,-10],[-6,-8],[-2,-13],[1,-17],[4,-6],[12,-7],[5,-6],[2,-7],[-2,-5],[-7,-3],[-3,2],[-6,5],[-16,5],[-2,4],[-3,9],[-2,4],[-3,1],[-21,-3],[-3,-4],[4,-11],[5,-3],[20,-1],[3,-1],[3,-3],[4,-10],[3,-2],[4,1],[3,3],[2,0],[6,-6],[-2,-5],[-5,-4],[-7,-1],[-3,1],[-5,2],[-3,1],[-3,-1],[-5,-6],[-3,-1],[-5,3],[-10,11],[-7,2],[-12,-2],[-24,-12],[-6,-5],[-3,-7],[-2,-10],[-4,-8],[-10,-13],[-11,-8],[-26,-7],[-44,3],[0,5],[-4,-6],[-6,-5],[-6,-4],[-6,-2],[-6,2],[-6,5],[-14,24],[0,6],[1,7],[2,15],[2,10],[4,9],[6,7],[27,23],[8,12],[8,18],[7,22],[4,10],[5,5],[4,2],[6,6],[5,6],[3,6],[2,12],[-1,24],[1,13],[2,5],[2,3],[2,4],[2,8],[0,7],[-2,6],[-1,5],[-1,6],[0,11],[2,34],[3,11],[8,21],[2,11],[-1,25],[-5,48],[-1,24],[2,49],[2,12],[4,1],[5,-7],[4,-12],[0,11],[-1,14],[-3,11],[-5,4],[-3,2],[-3,4],[-2,6],[0,6],[-2,3],[-7,4],[-3,3],[-1,6],[0,6],[0,6],[-1,7],[-1,4],[-10,17],[-8,11],[-3,8],[-5,23],[-3,10],[-10,10],[-4,12],[-5,27],[-10,70],[-6,19],[-9,10],[-4,6],[-1,6],[3,12],[-1,11],[-17,40],[-6,9],[-3,-7],[-1,-13],[-3,-11],[-10,-27],[-2,-10],[0,-12],[4,-12],[2,-4],[1,-5],[1,-5],[-11,-29],[-19,-34],[-1,-9],[-9,-57],[-1,-9],[0,-17],[0,-7],[-2,-5],[8,-20],[-4,-12],[-3,-13],[-2,-15],[-2,-41],[-1,-8],[-1,-8],[-5,-14],[-1,-5],[-2,-7],[-5,-12],[-1,-5],[0,-8],[-4,-26],[-7,-35],[-3,-19],[3,-15],[-6,-8],[-2,-7],[2,-20],[-1,-20],[0,-2],[-1,-2],[-8,-7],[-7,-16],[-2,-4],[-4,-1],[-14,8],[-11,16],[-5,6],[-4,0],[-8,0],[-3,1],[-5,6],[-2,1],[-11,0],[-5,-1],[-6,-3],[-6,-7],[-9,-18],[-5,-4],[-20,4],[-6,-4],[-8,-15],[-5,-16],[-6,-10],[-13,0],[-17,9],[-6,0],[-17,-17],[-7,-17],[-11,-7],[-11,1],[-5,14],[-1,3],[-4,5],[-1,5],[0,4],[3,9],[1,6],[2,7],[9,9],[4,6],[-2,4],[2,4],[5,5],[2,3],[1,4],[2,8],[6,21],[0,9],[-1,11],[-3,9],[-1,5],[-1,5],[3,9],[7,11],[1,7],[-2,11],[12,29],[1,10],[3,0],[18,-14],[12,-1],[24,11],[12,1],[6,-3],[2,-6],[3,-4],[14,-6],[5,-6],[4,-4],[8,5],[8,17],[1,20],[0,23],[2,26],[4,17],[2,7],[0,7],[-1,14],[1,7],[9,57],[-4,16],[-1,21],[-4,17],[1,25],[-1,10],[-6,11],[-4,-2],[-4,-8],[-4,-4],[0,5],[6,26],[2,9],[1,1],[4,-1],[1,0],[0,3],[1,6],[2,7],[2,13],[2,43],[0,13],[0,14],[-2,13],[-3,13],[-5,17],[-1,5],[1,5],[2,4],[2,2],[7,-7],[3,-1],[4,8],[8,30],[2,9],[-1,8],[0,5],[-3,13],[-2,6],[-1,1],[3,9],[3,10],[5,10],[6,9],[7,6],[2,6],[1,7],[1,5],[-2,7],[-2,5],[-2,4],[-2,4],[4,5],[4,7],[6,15],[14,23],[3,3],[11,37],[6,19],[5,-3],[2,0],[17,43],[5,17],[7,6],[1,-6],[-3,-10],[2,-8],[7,7],[1,7],[-1,15],[2,15],[0,15],[-2,10],[-3,14],[-4,19],[-3,10],[-3,8],[-3,7],[-3,10],[1,13],[1,9],[-2,9],[-5,12],[-7,18],[-2,20],[3,8],[2,12],[3,12],[4,9],[11,6],[16,22],[2,0],[2,-4],[2,0],[1,1],[3,6],[1,1],[4,-2],[3,-4],[2,-1],[4,5],[1,6],[1,3],[-1,2],[0,5],[0,14],[0,4],[-2,9],[-1,10],[-3,8],[-3,7],[-2,3],[-7,-1],[-2,2],[-2,5],[-1,3],[-16,128],[0,8],[3,6],[7,7],[-11,18],[-2,4],[-1,3],[-2,2],[-2,1],[-3,3],[-3,1],[-1,3],[0,2],[0,3],[0,2],[-1,3],[2,11],[0,5],[-2,5],[-6,11],[-3,8],[-2,9],[1,8],[4,7],[-3,5],[-2,1],[-3,1],[-2,2],[-1,5],[-1,12],[-1,3],[-3,-3],[-1,-9],[-1,-12],[-1,-8],[2,-12],[0,-14],[0,-25],[-2,-14],[0,-6],[7,-5],[3,-6],[2,-8],[1,-8],[2,-24],[0,-40],[0,-6],[-1,-5],[-2,-7],[-3,-14],[-2,-6],[-2,-1],[-2,3],[-1,1],[-2,-7],[0,-5],[0,-7],[1,-6],[5,-13],[1,-7],[-2,-5],[-7,-1],[-4,0],[-2,2],[-6,6],[-8,14],[-5,2],[-7,-6],[-6,-9],[-4,-9],[0,-4],[0,-12],[0,-5],[-1,-4],[-22,-44],[-6,-6],[-6,-5],[-5,-7],[-2,-13],[0,-14],[-1,-12],[-2,-10],[-13,-42],[-1,-11],[-2,-46],[-2,-14],[-3,-11],[-11,-29],[-3,-11],[-15,-67],[-8,-24],[-6,-11],[-5,-4],[-8,-16],[-7,-4],[-13,-3],[-18,-8],[-2,1],[-2,1],[-3,5],[-1,3],[0,4],[-1,5],[-6,8],[-5,2],[-5,-7],[-1,-13],[-1,-5],[-3,-5],[-3,-3],[-2,-1],[-3,-3],[0,-6],[1,-7],[1,-3],[16,12],[5,-1],[-15,-17],[-3,-6],[-6,-7],[-6,-1],[-7,0],[-7,-2],[-5,-6],[-3,-7],[-5,-5],[-7,-2],[-3,-3],[-4,-11],[-2,-3],[-2,-1],[-7,-7],[-17,-11],[-5,-7],[-2,-4],[0,-4],[-1,-12],[-11,-15],[-8,-15],[-5,-6],[-12,-5],[-5,-6],[-17,-27],[-3,-6],[-1,-6],[0,-12],[-1,-6],[-1,-6],[-4,-8],[-2,-6],[-3,-16],[-7,-14],[-17,-59],[-9,-14],[-17,-14],[-6,-17],[3,-9],[-2,-6],[-2,-5],[0,-6],[3,-8],[1,-7],[-1,-18],[-2,-20],[-4,-10],[-4,1],[-2,17],[-3,13],[-7,-3],[-14,-16],[-8,-1],[-4,-3],[-4,-8],[-1,-9],[-2,-17],[-2,-7],[6,-18],[1,-10],[-3,-9],[-6,11],[-5,2],[-5,-8],[-2,-15],[0,-6],[-1,-11],[-1,-7],[1,-5],[5,-10],[2,-7],[-2,-13],[-6,0],[-6,1],[-3,-6],[-1,-6],[-6,-7],[-1,-4],[2,-6],[3,-3],[9,0],[5,1],[6,4],[4,5],[11,20],[1,2],[4,-3],[2,-5],[2,-3],[3,3],[1,6],[0,13],[1,5],[2,3],[2,-1],[2,-4],[1,-8],[0,-26],[-2,-10],[-3,-10],[-5,-9],[-3,-7],[-1,-9],[9,-41],[-1,0],[0,-9],[1,-3],[3,-8],[-2,-6],[-7,-4],[-4,-6],[-5,6],[-5,25],[-4,5],[-3,2],[-7,7],[-4,1],[-1,4],[0,5],[-1,5],[-9,19],[-11,9],[-12,-2],[-10,-17],[-2,-12],[-1,-2],[-1,-2],[-2,0],[1,-5],[1,-7],[0,-6],[-3,-3],[-13,0],[-3,3],[0,7],[0,8],[0,7],[-5,18],[-26,50],[-10,27],[-5,11],[-8,11],[-12,10],[-4,4],[-3,3],[-8,-3],[-3,2],[6,21],[0,7],[-5,11],[-10,17],[-10,13],[-6,3],[-5,-2],[-5,-3],[-6,-2],[-4,-4],[-5,-8],[-5,-5],[-4,5],[1,11],[8,22],[3,10],[1,13],[3,8],[3,5],[4,8],[1,6],[1,7],[1,5],[2,3],[3,-3],[0,-6],[-3,-14],[1,-13],[4,-7],[4,-4],[20,-8],[4,-2],[-5,-7],[-2,-7],[1,-7],[4,-8],[8,-5],[2,-4],[-4,-7],[3,-7],[5,-8],[6,-6],[4,-3],[3,1],[5,6],[17,5],[2,7],[-6,4],[-12,3],[0,7],[1,11],[0,6],[-1,8],[-3,-2],[-3,-5],[0,-2],[-3,-5],[0,-5],[0,-1],[-3,2],[-2,4],[-1,6],[-1,7],[0,6],[0,2],[-1,7],[0,6],[4,5],[1,5],[0,7],[0,7],[-2,12],[-6,17],[-2,9],[-4,78],[-5,32],[-7,25],[-10,1],[-6,11],[-2,6],[-2,7],[5,2],[5,4],[2,7],[-2,7],[1,7],[0,6],[-1,5],[0,7],[0,26],[-2,12],[-4,10],[-7,17],[-8,35],[-4,5],[-6,3],[-4,6],[-21,44],[-16,29],[-17,20],[-3,6],[-6,9],[-2,3],[-5,15],[-2,3],[-9,8],[-2,4],[4,5],[-2,12],[1,11],[3,11],[1,12],[0,27],[-1,12],[-2,12],[-9,39],[-3,24],[-4,10],[-9,16],[-10,21],[-3,4],[-6,6],[-3,3],[-3,10],[5,3],[6,0],[4,2],[0,7],[-3,13],[-3,11],[-4,5],[-6,2],[-18,11],[-7,-2],[-3,-8],[1,-10],[4,-5],[8,1],[3,-1],[2,-6],[1,-6],[2,-4],[2,-3],[2,-5],[-2,-1],[-3,-2],[-2,-4],[-2,-5],[-7,20],[-4,6],[-13,5],[-18,21],[-9,2],[-6,-4],[-6,-7],[-7,-3],[0,4],[-2,6],[-3,4],[-1,-4],[0,-8],[-1,-8],[-1,-6],[-4,-4],[-15,25],[-2,10],[-1,12],[-1,11],[-6,29],[-3,7],[-3,3],[-6,1],[-8,-2],[-3,2],[-3,7],[4,6],[9,4],[4,6],[0,12],[-2,11],[-4,9],[-4,5],[-3,0],[-2,-3],[-1,-3],[-1,-2],[-3,2],[-5,6],[-11,2],[-4,3],[-2,11],[2,3],[3,9],[3,5],[7,10],[3,4],[2,14],[-2,17],[-5,16],[-10,28],[-1,4],[2,7],[4,1],[8,-4],[21,-1],[7,-3],[-4,-9],[-1,-5],[-1,-6],[0,-6],[0,-8],[0,-7],[1,-4],[4,-3],[2,2],[1,14],[2,7],[3,9],[6,8],[2,4],[1,6],[2,12],[4,14],[0,11],[-7,43],[-5,20],[-7,18],[-9,16],[-13,23],[-5,3],[-4,0],[-2,-1],[-3,-3],[-3,-6],[-2,-1],[-5,5],[-3,2],[-6,-4],[-4,-10],[-3,-10],[-3,-4],[-7,2],[-5,3],[-4,-2],[-6,-11],[-2,-6],[-1,-4],[-1,-4],[-4,-2],[-3,-1],[-3,1],[-2,3],[-1,7],[0,3],[2,7],[1,2],[0,2],[-1,7],[0,3],[-1,18],[1,4],[2,12],[4,13],[4,6],[1,-8],[3,-5],[5,1],[5,7],[0,11],[-2,8],[-9,20],[-2,10],[-2,7],[-13,24],[-4,14],[-2,2],[-4,-1],[-3,-4],[-2,-5],[-1,-2],[-4,1],[-2,4],[-1,6],[0,16],[-1,3],[-2,0],[-5,5],[-6,3],[-3,3],[-3,4],[0,1],[0,2],[1,7],[-1,6],[-2,2],[-3,1],[-3,3],[-1,6],[3,4],[2,4],[1,4],[-3,8],[-6,5],[-7,2],[-6,1],[-5,-4],[-1,-11],[0,-14],[-2,-11],[-3,-5],[-3,0],[-12,11],[-4,5],[-1,3],[-1,15],[-3,2],[-7,-11],[-3,-1],[-4,1],[-2,-2],[-1,-8],[1,-6],[2,-2],[7,-2],[6,-6],[5,-8],[1,-7],[-6,-4],[-2,2],[-5,6],[-3,1],[-2,-2],[-1,-4],[-1,-4],[-3,-2],[-15,3],[-9,4],[-6,5],[-7,-14],[-2,-3],[-3,2],[-4,9],[-6,3],[-6,5],[-3,1],[-3,-1],[-5,-5],[-2,-1],[-2,0],[-1,2],[-1,4],[-2,6],[-22,41],[-6,6],[-6,1],[-2,-2],[-2,-4],[-3,-3],[-3,1],[-1,5],[0,9],[-2,7],[-3,4],[-6,3],[-18,28],[-7,14],[-13,21],[-6,3],[-6,1],[-13,-2],[-13,2],[-20,8],[-7,1],[-13,-4],[-6,-4],[-5,-5],[-4,-5],[-2,-12],[1,-8],[3,-7],[4,-10],[-3,-2],[-3,1],[-6,5],[-6,4],[-6,0],[-6,-1],[-14,-11],[-13,-3],[-12,3],[-11,9],[-9,16],[-15,35],[-9,14],[-43,50],[-38,57],[-69,72]],[[85599,41533],[1,-4],[2,-2],[3,-2],[2,-2],[2,-12],[1,-15],[-1,-14],[-2,-8],[-2,5],[-2,4],[-3,4],[-3,3],[-5,10],[-2,7],[-1,9],[0,42],[2,6],[6,-9],[2,-20],[0,-2]],[[85670,41612],[4,-5],[2,-14],[1,-16],[0,-13],[-8,12],[-15,36],[-2,14],[-1,30],[2,8],[5,-3],[4,-10],[6,-32],[2,-7]],[[86008,41677],[1,-7],[-1,-7],[-1,-3],[-5,5],[-1,6],[-5,12],[-1,6],[-1,11],[0,3],[2,-2],[5,-6],[3,-5],[2,-6],[2,-7]],[[85981,41706],[12,-37],[3,-14],[1,-15],[0,-32],[-1,7],[-1,6],[-2,4],[-2,4],[-4,12],[-6,29],[-4,13],[-4,20],[-1,3],[2,7],[2,-1],[2,-4],[3,-2]],[[85138,42253],[6,2],[9,-2],[9,-6],[7,-6],[0,-4],[-4,-2],[-3,2],[-4,3],[-4,1],[-5,-2],[-4,-3],[-3,-1],[-2,6],[0,3],[-2,9]],[[87467,43329],[6,-1],[3,-2],[3,-3],[1,-12],[-2,-11],[-4,-7],[-6,4],[-3,7],[-3,14],[-3,23],[7,-10],[1,-2]],[[87489,43347],[6,-5],[0,-3],[-10,-8],[-4,2],[-4,6],[-3,3],[0,8],[13,3],[2,-6]],[[87533,43405],[-4,-8],[-6,-2],[-8,-4],[-3,7],[2,13],[9,-1],[7,-2],[3,-3]],[[87057,43605],[6,3],[7,2],[6,-2],[2,-9],[-3,-6],[-6,-3],[-11,-2],[-4,-2],[0,-5],[2,-7],[1,-6],[-3,-5],[-3,-2],[-4,0],[-3,3],[2,4],[-3,15],[0,7],[4,3],[2,1],[8,11]],[[87076,43686],[1,-10],[2,-7],[3,-7],[4,-5],[-5,-3],[-5,1],[-5,2],[-4,0],[-4,-3],[-4,-7],[-4,-7],[-2,-7],[0,5],[1,2],[1,6],[1,6],[-1,6],[0,4],[-2,4],[8,2],[6,6],[4,6],[5,6]],[[91110,24868],[-6,1],[-4,4],[-16,25],[-3,6],[-1,10],[-1,9],[-1,4],[-5,-6],[-3,-9],[0,-10],[1,-9],[2,-9],[-8,1],[-4,-7],[-4,-10],[-4,-8],[-6,16],[-20,32],[-1,17],[3,2],[7,7],[4,8],[-23,14],[-5,5],[-2,7],[-3,11],[-2,12],[1,9],[2,4],[9,7],[4,1],[1,2],[1,4],[0,3],[-1,2],[0,3],[0,5],[-2,5],[1,4],[4,2],[6,-1],[3,-1],[1,-4],[0,-18],[-1,-6],[-2,-11],[12,-19],[7,-6],[8,-3],[2,1],[3,2],[2,1],[5,0],[1,0],[4,3],[3,4],[6,9],[-8,1],[-6,6],[-4,11],[-3,15],[3,0],[1,1],[4,3],[0,4],[-8,3],[-1,8],[2,9],[1,8],[-4,5],[-17,-5],[-2,2],[-5,5],[-3,2],[-2,-1],[-9,-4],[-4,4],[-2,4],[-1,5],[-3,4],[-2,1],[-5,1],[-2,2],[-1,4],[0,5],[-1,6],[-2,5],[-3,3],[-3,0],[-14,-9],[-5,-5],[-4,-5],[0,-17],[5,-21],[11,-35],[-6,-16],[-3,-6],[-5,-6],[-15,-8],[-5,-5],[-3,5],[-4,7],[-2,9],[-1,7],[4,9],[4,-6],[3,-9],[3,-6],[5,5],[3,10],[1,9],[-1,5],[-4,4],[0,10],[3,22],[-5,-2],[-6,-6],[-4,-2],[-2,8],[-2,15],[-4,6],[-6,3],[-5,7],[-15,43],[-2,6],[-3,0],[-3,-3],[-3,-4],[2,-6],[3,-6],[2,-2],[5,-9],[4,-11],[5,-21],[6,-17],[0,-8],[-5,-19],[-3,-13],[0,-11],[1,-27],[-3,-2],[-5,7],[-9,14],[-5,-10],[2,-10],[9,-13],[2,-10],[-2,-5],[-5,-5],[-5,-8],[-3,-9],[-1,-9],[1,-9],[3,-22],[0,-11],[0,-23],[-2,-8],[-6,-8],[-6,-3],[-4,3],[-2,3],[-6,3],[-3,4],[0,4],[2,5],[0,5],[-4,2],[-12,-1],[-3,4],[3,11],[4,10],[0,4],[-1,7],[-2,14],[-2,-12],[-6,-10],[-5,-6],[-2,1],[-7,9],[-1,3],[0,25],[-2,15],[-4,1],[-4,-5],[-4,-7],[-2,-10],[-1,-16],[1,-14],[4,-7],[3,-2],[20,-24],[5,-8],[4,-9],[1,-10],[-1,-4],[-3,-5],[-3,-5],[-2,-2],[-4,0],[-1,3],[-1,3],[-2,2],[-5,1],[-6,-3],[-6,-6],[-4,-8],[16,2],[5,-2],[5,-5],[0,-5],[-7,-10],[-3,-7],[-4,-17],[-2,-5],[-5,-4],[-5,-1],[-11,1],[5,-8],[17,-7],[4,-14],[-15,4],[-5,-3],[-2,-11],[1,-4],[2,-4],[2,-5],[-2,-9],[-2,-3],[-4,0],[-4,1],[-3,2],[-2,-15],[3,-5],[6,-2],[4,-7],[0,-10],[-4,-8],[-20,-16],[-2,-1],[-4,0],[-1,3],[1,3],[-2,5],[-6,7],[-6,1],[-6,-3],[-14,-9],[-3,3],[-2,9],[-5,13],[-18,16],[-3,4],[-2,10],[-3,24],[-2,10],[-5,5],[-2,-7],[0,-13],[3,-13],[-4,3],[-2,1],[-7,-9],[-6,-2],[-31,5],[-6,5],[-5,9],[-6,-10],[-3,-5],[-4,-1],[-4,4],[-1,6],[-1,8],[-2,6],[-3,3],[-4,1],[-5,0],[-3,-4],[-2,-7],[0,-9],[-1,-8],[-3,-4],[-2,9],[-3,7],[-3,4],[-3,0],[-9,-6],[-3,-2],[0,-3],[1,-10],[-1,-3],[-2,-1],[-2,2],[-1,2],[-2,1],[-16,-8],[2,42],[-2,18],[-6,19],[-16,20],[-2,5],[2,7],[5,-2],[7,-6],[5,-2],[-2,7],[-6,14],[5,1],[25,-5],[8,-6],[5,-11],[3,-11],[5,-9],[2,7],[-2,11],[0,7],[2,-3],[1,0],[3,-2],[-2,8],[2,2],[2,-1],[2,-1],[3,-3],[4,-11],[3,-2],[2,7],[0,15],[-1,15],[-2,8],[-1,3],[-8,9],[-5,10],[-3,3],[-2,-2],[-8,-26],[-6,-7],[-7,10],[0,4],[-1,13],[0,3],[-4,2],[-2,-1],[-1,-5],[-1,-6],[-2,-14],[-5,1],[-6,8],[-4,7],[-4,9],[-2,10],[-1,10],[-1,14],[-1,3],[-6,6],[-5,9],[-1,-3],[0,-13],[1,-9],[-1,-5],[-3,-2],[-2,0],[-3,-1],[-2,-1],[-2,-3],[-1,-8],[4,-2],[10,2],[3,-3],[-1,-7],[-3,-7],[-5,-3],[-10,1],[-5,2],[-3,5],[-7,29],[-1,4],[1,14],[-1,3],[-8,12],[-3,3],[-2,4],[0,4],[-1,6],[0,4],[-2,2],[-3,4],[-2,7],[0,10],[1,8],[-3,-2],[-3,-2],[-3,-1],[-3,1],[-4,5],[-1,4],[1,13],[1,2],[2,5],[1,5],[-3,2],[-3,1],[-3,3],[-6,9],[-10,31],[-4,5],[-18,1],[-2,2],[-11,26],[-6,19],[-6,21],[-5,31],[-3,10],[-2,4],[-2,3],[-4,2],[-1,3],[-1,4],[1,2],[1,2],[4,11],[0,7],[-3,2],[-1,4],[-5,31],[-1,2],[-6,-1],[-1,1],[-2,7],[-1,8],[-2,6],[-3,3],[-8,2],[-1,5],[10,22],[-8,11],[-6,21],[-4,24],[2,21],[-6,34],[-3,20],[-2,19],[0,34],[-1,7],[-2,14],[-1,10],[4,-5],[4,-9],[4,-10],[1,-7],[2,-10],[3,-4],[11,-4],[3,-3],[2,-2],[2,-8],[1,-4],[1,-5],[2,-5],[7,-4],[19,-24],[3,-5],[1,-7],[1,-23],[2,-22],[4,-21],[2,-6],[2,2],[1,13],[0,43],[7,-8],[3,1],[2,19],[2,10],[6,16],[1,5],[-3,-1],[-4,-3],[-1,-3],[1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,1],[0,2],[1,3],[0,2],[-1,4],[0,4],[-1,5],[-2,4],[-3,0],[-1,-5],[0,-5],[-2,-3],[-5,8],[-16,33],[-5,13],[-5,5],[-1,2],[-2,17],[-4,16],[-1,11],[1,9],[-4,4],[-2,-1],[-6,-7],[0,-1],[-1,-7],[-1,-2],[-4,-3],[-1,-3],[0,-7],[1,-7],[1,-6],[-4,-5],[-2,2],[-10,15],[11,43],[-4,48],[-13,44],[-14,31],[-23,34],[-2,1],[-1,4],[-2,15],[-1,4],[-3,2],[-3,5],[-10,35],[-6,8],[-1,5],[-2,6],[-3,3],[-4,-1],[-3,1],[-1,4],[-2,8],[0,6],[0,16],[-13,63],[-16,41],[-4,17],[-2,3],[-3,2],[-3,5],[-5,10],[2,1],[0,2],[0,2],[0,3],[7,5],[0,16],[-4,17],[-18,55],[-6,12],[3,14],[0,18],[-2,18],[-5,10],[3,24],[-6,19],[-14,31],[4,2],[3,4],[2,7],[1,9],[-5,12],[-1,6],[1,2],[5,2],[4,13],[3,3],[5,1],[4,4],[2,9],[1,19],[0,17],[-5,63],[0,14],[2,12],[6,12],[1,-10],[3,-9],[6,-14],[1,-4],[1,-11],[1,-3],[2,-1],[2,2],[2,4],[2,1],[9,-3],[19,-14],[10,-3],[10,3],[5,0],[4,-5],[4,-8],[3,-4],[9,-6],[5,-14],[2,-2],[3,-1],[7,-5],[5,2],[2,6],[-3,9],[26,-3],[6,3],[4,10],[0,13],[-1,13],[-3,9],[6,-2],[7,-10],[3,-11],[-8,-7],[-2,-4],[-1,-7],[1,-7],[2,-5],[11,-12],[4,-7],[3,-3],[4,-2],[9,-1],[4,-1],[11,-11],[8,2],[14,11],[3,-23],[11,-14],[13,-8],[26,-5],[4,-5],[2,-12],[3,-10],[4,-10],[9,-14],[5,-6],[6,-4],[6,-2],[14,-1],[3,-2],[2,-4],[1,-6],[3,-1],[5,1],[7,-4],[10,-13],[7,-4],[6,-7],[2,-2],[3,-3],[11,-4],[26,-20],[39,-8],[19,1],[19,9],[15,11],[3,-3],[1,-12],[1,-6],[3,-5],[3,-2],[4,3],[-5,8],[3,9],[10,12],[2,5],[4,11],[2,4],[3,3],[6,0],[4,1],[3,4],[5,6],[3,2],[3,0],[3,-2],[3,-3],[3,-3],[3,-7],[3,-13],[1,-11],[-3,-5],[2,-10],[5,-2],[5,-1],[5,-4],[3,5],[3,3],[2,0],[4,0],[3,-1],[3,-4],[3,-1],[3,2],[-4,6],[-3,7],[-4,5],[-14,4],[-6,5],[-3,10],[-2,14],[5,21],[13,8],[14,5],[11,11],[2,3],[2,3],[2,2],[4,3],[1,1],[1,2],[2,0],[2,-1],[1,-5],[1,-2],[37,-10],[11,10],[21,29],[3,-10],[13,9],[3,-6],[0,-7],[1,-4],[2,-2],[8,-2],[1,-4],[1,-6],[2,-5],[10,-3],[11,13],[10,20],[17,48],[1,9],[3,6],[15,10],[5,2],[4,-6],[5,-11],[5,-8],[10,7],[6,-7],[6,-10],[6,-5],[8,3],[10,9],[9,12],[3,14],[1,5],[4,15],[2,20],[2,6],[3,5],[4,4],[2,-3],[1,-1],[7,0],[2,-2],[2,-3],[2,-11],[3,0],[4,4],[4,-3],[3,-5],[6,-12],[5,-16],[3,-6],[6,-3],[9,1],[3,-2],[22,-49],[8,-22],[3,-13],[1,-11],[-2,-6],[-4,-2],[-5,-6],[-3,-6],[-2,-6],[3,-1],[3,-3],[2,-3],[1,-5],[-4,-24],[-1,-4],[-3,-7],[-2,-16],[0,-18],[1,-12],[1,-8],[2,-4],[9,-19],[2,-8],[-2,-8],[-12,-16],[-5,-10],[1,-12],[21,32],[6,0],[-7,-18],[-14,-76],[0,-9],[1,-10],[1,-14],[-1,-8],[-1,-5],[0,-5],[8,-23],[1,-6],[1,-12],[-1,-14],[-3,-14],[-4,-11],[0,-10],[5,-37],[-3,-7],[-6,-10],[-3,-12],[2,-13],[1,-5],[3,-15],[1,-5],[0,-5],[7,-13],[1,-4],[0,-3],[1,-3],[2,-2],[-4,-20],[-3,-31],[-1,-29],[18,-36],[0,-3],[-2,-2],[-2,-5],[-8,-17],[-1,-8],[12,-9],[1,-11],[-2,-22],[-2,-3],[-5,-10],[-1,-3],[-1,-6],[-3,3],[-3,6],[-1,3],[-9,4],[-2,4],[1,5],[5,6],[2,3],[0,4],[2,4],[2,6],[1,7],[-1,4],[-2,5],[-3,5],[-3,4],[8,7],[3,5],[2,9],[-7,0],[-5,4],[-9,16],[-5,6],[-18,10],[8,10],[4,4],[4,2],[4,5],[2,9],[1,10],[-9,8],[-2,9],[-1,8],[-1,4],[-5,-3],[1,-7],[4,-12],[-1,-13],[-2,0],[-3,4],[-4,2],[-4,-5],[0,-8],[2,-9],[0,-10],[-1,-2],[-3,-2],[-3,-2],[1,-4],[2,-6],[2,-2],[2,-3],[4,-2],[13,-6],[-27,2],[-7,-6],[-3,-9],[-1,-14],[0,-27],[-1,-7],[-10,-16],[-1,-6],[0,-7],[-1,-5],[-5,-2],[1,-4],[-1,-8],[-8,-24],[-6,-13],[3,3],[5,11],[4,3],[4,-4],[3,-8],[0,-9],[-7,-12],[-1,-17],[2,-28],[0,-27],[-1,-15],[-3,-6],[-4,-3],[-4,-11],[-4,-3],[-3,3],[-4,14],[-3,4],[0,-7],[-2,-5],[-2,-3],[-4,-1],[14,-27],[1,-12],[0,-10],[0,-4],[1,-4],[2,-3],[1,-2],[0,-1],[0,-16],[0,-8],[-2,-7],[1,-10],[-3,-9],[-6,-7],[-4,-2],[-5,-6],[-2,-12],[0,-14],[2,-9],[-1,-5],[-1,-1],[-1,0],[-3,2],[-4,-15],[-2,-8],[1,-9],[3,-4],[5,-3],[6,0],[5,3],[0,4],[-10,5],[3,13],[8,7],[5,-11],[0,-9],[2,-1],[3,2],[3,2],[2,-1],[2,-1],[1,-3],[0,-5],[1,-5],[3,-5],[2,-5],[-1,-2],[-2,-4],[-1,-5],[0,-5],[1,-1],[2,-2],[1,-2],[1,-3],[0,-12],[-3,-4],[-3,-2],[-4,-4],[-3,-14],[1,-29],[-5,-8],[7,-15],[1,-5],[0,-7],[0,-4],[-4,-9],[6,-1],[4,-3],[1,-6],[-1,-11],[-2,-3],[-2,-2],[-1,-4],[-1,-7],[3,-5],[2,-5],[1,-6]],[[94136,18188],[4,8],[11,6],[4,10],[1,-12],[-3,-36],[-2,-12],[-6,-27],[-3,-20],[-6,-22],[-2,-11],[0,-16],[-1,-8],[-5,-2],[-7,0],[-2,7],[0,3],[2,2],[-2,11],[1,13],[3,20],[1,3],[2,6],[1,4],[-1,2],[0,3],[-1,3],[0,4],[1,6],[1,2],[1,3],[2,5],[3,12],[3,33]],[[90926,24803],[0,-3],[7,-14],[1,-6],[0,-5],[0,-6],[-1,-7],[-2,-5],[-3,-7],[-1,-4],[-2,-7],[-2,-18],[-3,-13],[-3,-5],[-5,2],[-6,8],[-2,1],[-2,0],[-2,1],[-2,3],[0,2],[0,4],[1,3],[1,-1],[-2,11],[-2,4],[-3,1],[1,2],[3,4],[1,2],[-6,9],[-3,-7],[-2,-26],[-3,-12],[-5,-7],[-5,1],[-4,10],[-3,11],[-4,8],[-4,7],[-3,6],[2,11],[5,-2],[14,-23],[3,-3],[2,3],[1,10],[0,23],[-2,11],[-2,6],[2,5],[2,4],[2,1],[3,-3],[4,-12],[3,-5],[2,8],[2,4],[1,5],[-3,8],[-1,7],[2,5],[5,8],[9,20],[5,8],[2,-3],[7,-43]],[[90944,24927],[0,-8],[1,-7],[1,-5],[2,-7],[1,-7],[3,-15],[2,-15],[-3,-7],[-7,3],[-3,1],[-3,-2],[-3,-4],[-2,-2],[-2,4],[-2,13],[3,6],[4,5],[4,8],[-5,8],[-14,4],[-6,6],[-2,8],[4,4],[14,4],[-2,3],[-4,4],[-2,4],[1,12],[4,11],[4,4],[4,-16],[7,-9],[1,-8]],[[91150,25239],[0,-10],[2,-7],[3,-5],[4,-4],[-7,-11],[-13,1],[-9,-1],[4,-18],[7,-12],[-2,-1],[-17,-6],[-4,-5],[-3,-8],[-2,0],[0,12],[4,7],[2,9],[4,21],[-6,1],[-3,9],[0,12],[3,10],[4,6],[8,6],[3,9],[5,-3],[6,-1],[5,-3],[2,-8]],[[91193,25416],[5,-6],[2,-5],[2,-7],[3,-11],[-2,-2],[-1,0],[-3,2],[-4,5],[-3,5],[-4,5],[-9,3],[-1,3],[-4,11],[5,3],[5,-1],[9,-5]],[[90281,26385],[4,-2],[5,-6],[3,-8],[2,-8],[-8,0],[-6,9],[-9,-3],[-15,-14],[-2,0],[-2,1],[-2,0],[-3,-3],[-2,-1],[-2,2],[-1,3],[-1,2],[-1,27],[0,3],[13,25],[4,5],[1,-6],[3,-9],[4,-4],[5,-2],[5,-9],[5,-2]],[[91142,26471],[5,6],[11,4],[4,4],[18,6],[-2,-5],[-2,-7],[-2,-4],[0,-7],[0,-7],[-1,-5],[-3,-2],[-2,-6],[-1,-12],[-3,-8],[-7,6],[-2,9],[-4,3],[-5,0],[-2,2],[-1,3],[-2,8],[-1,4],[0,4],[-1,0],[1,0],[2,4]],[[90219,26532],[0,-4],[0,-44],[-1,-5],[-6,-9],[0,-35],[-7,-5],[-2,9],[-1,5],[0,33],[-1,5],[-4,5],[-1,4],[2,8],[4,1],[5,-1],[4,4],[1,6],[3,29],[1,3],[1,-2],[2,-7]],[[90249,26503],[-7,1],[-4,7],[-4,9],[-4,8],[2,1],[6,1],[2,2],[2,3],[2,6],[1,5],[-3,2],[0,1],[1,3],[3,3],[2,1],[7,0],[3,-2],[3,-2],[5,-7],[0,-5],[-2,-7],[-1,-11],[1,-7],[-1,-2],[-6,-2],[-3,-1],[-3,-3],[-2,-4]],[[91230,26560],[10,-25],[5,-7],[-2,-6],[-3,-2],[-2,2],[-1,6],[-1,-3],[-2,-10],[-6,-3],[0,-1],[-4,-7],[0,-5],[0,-8],[-6,5],[-5,-2],[-4,-5],[-4,-6],[0,20],[-4,20],[-9,1],[-18,-17],[-2,7],[-2,3],[-2,2],[-3,1],[-2,-2],[-3,-5],[-1,-2],[-2,1],[-3,3],[-2,0],[-19,-3],[-6,3],[-3,4],[-3,6],[-2,3],[-5,-1],[-3,1],[-1,6],[1,15],[3,8],[17,16],[5,3],[13,1],[6,-2],[3,-2],[6,-8],[3,4],[2,12],[11,1],[8,3],[3,6],[2,1],[6,7],[1,2],[4,-1],[2,-2],[13,-28],[2,-3],[6,-4],[3,-3]],[[91114,26692],[1,8],[-1,10],[-3,10],[-3,6],[-6,2],[-3,-1],[-2,3],[-1,15],[-2,9],[-5,6],[-6,2],[-5,1],[1,4],[5,20],[1,8],[-1,9],[-4,17],[-1,9],[-2,13],[-5,0],[-10,-11],[-5,2],[-14,19],[4,6],[7,13],[4,5],[12,6],[2,6],[-2,12],[2,2],[5,7],[-3,8],[-2,5],[0,5],[1,5],[3,-1],[3,-5],[2,-2],[4,5],[12,22],[53,-111],[1,-7],[6,-15],[12,-9],[24,-6],[-2,-14],[0,-45],[-2,-12],[-12,-15],[-5,-12],[6,-4],[6,4],[6,7],[3,9],[3,-8],[3,-13],[4,-23],[-1,-11],[-3,1],[-8,14],[-1,-13],[4,-7],[6,-5],[1,-8],[-5,-9],[-6,4],[-5,9],[-6,4],[-6,3],[-3,0],[-3,-3],[-2,-5],[-1,-16],[-2,-3],[-5,-3],[-6,-6],[-6,-3],[-14,9],[-7,8],[-3,11],[6,12],[-9,14],[-4,9],[0,8]],[[90028,26844],[2,-5],[3,-2],[3,-2],[2,-3],[1,-7],[0,-6],[0,-6],[-1,-21],[-1,-6],[-2,-3],[-2,-2],[-1,-6],[-1,-7],[-1,-5],[-2,-4],[-6,-5],[-3,-3],[-2,-5],[-2,-5],[-2,-5],[-3,-1],[-6,-2],[-26,-27],[-6,0],[-4,12],[-2,8],[-2,25],[4,-1],[1,11],[0,24],[-2,15],[-4,7],[-5,4],[-4,9],[0,9],[1,32],[2,7],[4,6],[1,14],[0,25],[-1,3],[-2,6],[-1,3],[0,3],[3,6],[1,4],[-2,14],[1,6],[4,3],[5,3],[6,6],[6,8],[3,8],[-1,12],[-2,14],[-1,13],[3,5],[3,1],[5,3],[3,1],[2,-2],[9,-15],[11,-9],[5,-7],[4,-13],[1,-4],[2,-6],[1,-7],[-2,-26],[1,-15],[4,-24],[1,-12],[-1,-13],[-5,-25],[0,-13]],[[90729,27518],[2,1],[2,1],[3,-1],[2,-1],[-1,-5],[-1,-3],[-2,-1],[-17,1],[-2,-2],[-3,-11],[-2,-3],[-6,-1],[-6,5],[-6,7],[-4,7],[-2,11],[5,1],[12,-6],[13,5],[6,0],[7,-5]],[[90370,27664],[2,-1],[1,-2],[-1,-2],[1,-3],[2,-7],[2,-8],[0,-8],[-2,-6],[0,3],[-1,2],[0,1],[-1,3],[-7,10],[-8,8],[-8,4],[-10,-2],[-2,-4],[-2,-3],[-2,-1],[-2,1],[-5,5],[-1,2],[-5,-1],[-8,-4],[-5,0],[2,7],[10,14],[6,12],[3,5],[4,3],[17,4],[3,1],[1,1],[2,0],[4,-2],[2,-2],[2,-4],[1,-2],[-2,-3],[-2,-1],[3,-9],[1,-3],[-1,-5],[1,-2],[2,-1],[3,0]],[[90400,27778],[3,-3],[3,-4],[8,-22],[-1,-2],[-6,-2],[-12,-2],[-3,-2],[-11,-22],[-6,-7],[-8,4],[-2,4],[-9,7],[-1,7],[0,7],[-3,12],[8,20],[-2,4],[-1,5],[1,4],[2,4],[2,1],[2,-3],[1,-4],[2,-3],[11,-7],[4,-1],[13,6],[5,-1]],[[88368,29259],[-1,-9],[1,-11],[-1,-8],[-7,-4],[-3,-4],[-8,-20],[-3,-5],[-6,0],[-7,3],[-5,6],[-9,14],[-5,3],[-6,0],[-6,-2],[-4,1],[-9,6],[-6,1],[-7,0],[-11,-4],[-23,-18],[-13,-5],[-4,-8],[-2,-12],[1,-13],[1,-4],[1,-2],[1,-4],[1,-5],[-1,-5],[-1,-5],[-2,-3],[0,-3],[-2,-4],[-13,-6],[-17,-21],[-10,-7],[-4,8],[-8,8],[-12,27],[-9,5],[-14,2],[-13,9],[-4,2],[-5,0],[-6,-8],[-2,-12],[-3,-12],[-8,-5],[-5,1],[-9,6],[-5,1],[-8,-4],[-4,1],[-3,7],[-19,-14],[-8,-2],[-9,4],[-6,7],[-2,1],[-3,-1],[-5,-6],[-2,-1],[-6,1],[-3,-1],[-2,-2],[-4,-6],[-2,-1],[-1,1],[-4,0],[-5,-3],[-3,-1],[-3,3],[0,11],[-2,7],[-4,12],[-8,19],[-4,4],[-10,3],[-4,4],[-16,26],[1,6],[0,12],[1,7],[1,3],[2,2],[2,4],[1,15],[1,5],[2,5],[1,4],[2,5],[-1,12],[0,5],[5,7],[6,3],[20,3],[13,12],[8,1],[4,2],[4,6],[3,2],[74,21],[6,4],[14,13],[37,16],[4,4],[3,7],[4,6],[5,3],[5,-2],[23,-14],[2,-1],[3,2],[5,7],[5,0],[7,-1],[5,1],[10,6],[5,2],[4,-4],[6,4],[3,-5],[0,-7],[-4,-5],[-6,-3],[-4,-9],[-1,-8],[5,-4],[9,0],[4,-1],[1,-3],[-7,-17],[-12,-23],[6,-10],[6,-1],[6,2],[11,-9],[7,0],[12,5],[3,3],[2,2],[2,0],[2,-5],[2,-5],[-1,-5],[0,-5],[-1,-7],[2,-11],[5,-4],[7,1],[5,4],[5,5],[3,9],[3,10],[1,10],[3,9],[8,2],[8,-2],[11,-6],[12,-10],[4,-3],[1,-3],[2,-19],[2,-6],[4,-3],[4,-1],[5,0]],[[87901,29654],[4,5],[4,-3],[3,-7],[3,-9],[-1,-4],[-2,4],[-6,0],[-5,2],[-2,4],[2,8]],[[87825,29735],[3,-5],[3,-3],[1,-4],[2,-10],[0,-7],[0,-6],[-1,-2],[-3,3],[-8,2],[-3,10],[0,15],[-2,14],[-13,19],[-3,12],[7,5],[4,-5],[13,-38]],[[88157,30055],[2,-16],[-2,-15],[-4,-8],[-3,6],[-2,7],[2,9],[7,17]],[[87373,30505],[1,-13],[-2,-4],[-4,0],[-5,-3],[-5,-18],[-4,-4],[-2,9],[3,18],[1,5],[0,7],[0,3],[4,4],[8,3],[0,1],[3,1],[1,-2],[1,-7]],[[87101,31329],[-7,5],[1,10],[4,12],[6,9],[5,5],[7,4],[7,3],[7,0],[0,-4],[-15,-8],[2,-9],[2,-3],[-3,-3],[-2,-6],[-1,-5],[-1,-2],[-3,-1],[-9,-7]],[[94178,31804],[7,-1],[4,-9],[3,-10],[3,-9],[-2,-7],[-2,-6],[-3,-2],[-4,3],[4,7],[1,10],[-2,11],[-5,8],[-2,-4],[-1,4],[-1,5]],[[92634,34234],[4,-1],[14,1],[-6,-24],[-6,-29],[-14,-128],[-2,-1],[-4,0],[-4,-1],[-3,-2],[-2,1],[-3,14],[0,9],[2,17],[0,2],[2,3],[1,3],[0,5],[0,5],[-3,8],[0,5],[0,8],[3,18],[0,8],[0,10],[-3,23],[1,9],[6,16],[2,9],[0,17],[1,8],[2,4],[4,-3],[3,-5],[3,-5],[2,-4]],[[92613,34279],[1,10],[-2,16],[-3,15],[-2,7],[-3,6],[-2,13],[-2,37],[2,36],[-1,13],[-2,9],[1,6],[6,7],[9,3],[6,10],[3,3],[4,-2],[1,-10],[0,-14],[-12,-71],[-2,-25],[0,-29],[1,-7],[3,-15],[0,-8],[0,-10],[-1,-9],[-1,-2],[-4,11]],[[81448,35032],[2,-10],[1,-14],[-2,-12],[-3,-7],[-3,3],[-6,6],[-2,19],[-4,23],[-5,12],[-2,6],[-13,35],[-10,15],[-9,56],[-14,30],[-3,12],[3,6],[0,5],[-2,34],[-10,39],[0,33],[1,10],[-1,21],[3,10],[4,9],[4,6],[2,-7],[5,0],[4,2],[2,-4],[0,-5],[0,-16],[0,-12],[4,-22],[6,-24],[2,-30],[0,-21],[6,-18],[5,-29],[8,-30],[5,-23],[-6,-31],[0,-15],[8,-4],[-1,4],[-1,6],[-1,3],[3,1],[3,-7],[3,-11],[3,-10],[2,-4],[4,-11],[2,-5],[1,-6],[1,-13],[1,-5]],[[92489,35505],[8,-21],[4,-14],[-4,-6],[-8,23],[-3,12],[3,6]],[[81404,35509],[-2,13],[7,42],[2,19],[-1,44],[3,20],[8,12],[-2,-21],[0,-11],[1,-5],[-3,-5],[0,-12],[0,-24],[-2,-9],[-5,-21],[-1,-8],[0,-22],[0,-11],[-2,-9],[-1,0],[-2,5],[0,3]],[[81430,35708],[-6,-18],[-2,-10],[-1,-13],[0,6],[-1,5],[0,5],[-1,4],[6,94],[5,28],[2,-12],[0,-15],[-6,-54],[0,-15],[4,-5]],[[92602,35671],[1,-14],[-2,-10],[-3,-10],[-2,-9],[-1,-12],[-22,-103],[-29,-123],[-22,-120],[1,-15],[4,-18],[0,-21],[-5,-18],[-8,-6],[-10,26],[-5,15],[-1,10],[2,11],[-5,28],[0,15],[-8,5],[-3,17],[1,18],[4,9],[6,7],[2,18],[2,36],[2,8],[3,5],[3,3],[2,5],[4,19],[2,7],[3,15],[-3,34],[3,14],[-2,7],[-2,2],[-2,1],[-7,5],[-1,0],[-1,1],[0,6],[2,8],[5,9],[30,41],[9,15],[7,18],[6,18],[4,20],[2,23],[-2,25],[-5,18],[-8,25],[-9,16],[-7,-2],[16,40],[3,2],[8,14],[11,13],[2,4],[2,-26],[-2,-72],[1,-11],[5,-31],[3,-7],[2,-3],[11,-17],[3,-8]],[[92047,36363],[3,-12],[1,-14],[-1,-9],[-6,4],[-1,15],[-2,9],[-6,17],[-2,19],[0,1],[1,7],[2,4],[2,0],[1,-19],[2,-8],[6,-14]],[[92018,36454],[5,-7],[3,-17],[0,-17],[0,-7],[-2,-1],[-1,-3],[-1,-4],[-1,-3],[-1,-2],[0,-1],[-2,-3],[-1,1],[-10,-2],[-2,-1],[-2,1],[-3,5],[-3,9],[-3,7],[-4,7],[-2,22],[-4,11],[-11,28],[-8,11],[-3,7],[-3,11],[-10,26],[-6,17],[-5,11],[10,8],[2,3],[0,4],[-1,5],[2,5],[3,-3],[2,-2],[2,1],[3,2],[2,1],[2,-2],[1,-5],[-1,-6],[1,-3],[5,-3],[12,-5],[2,-7],[3,-3],[6,-2],[3,-4],[-4,-9],[5,-2],[4,7],[4,12],[4,7],[0,-16],[-3,-27],[-1,-13],[1,-14],[3,-16],[3,-13],[5,-6]],[[91590,37239],[2,1],[3,-4],[6,-11],[-3,-2],[-1,-5],[1,-6],[-1,-7],[-6,-18],[-2,-7],[-3,7],[-1,2],[2,6],[0,6],[0,6],[-2,6],[2,6],[2,14],[1,6]],[[91815,37278],[2,-1],[2,-3],[2,-4],[1,-4],[-2,-6],[-2,-4],[-3,-2],[-1,-2],[-1,-5],[-1,-4],[-2,-4],[-2,-2],[-5,-4],[-3,4],[-1,7],[3,10],[-4,6],[-1,2],[-1,-2],[-1,-1],[-2,-2],[2,10],[5,11],[3,12],[-2,10],[-2,5],[-1,5],[1,3],[3,1],[4,-1],[2,-5],[1,-6],[2,-6],[1,-5],[0,-6],[1,-5],[2,-2]],[[91643,37416],[-2,-20],[0,-6],[1,-9],[3,-12],[1,-8],[0,-15],[-2,-18],[-4,-15],[-5,-6],[-3,4],[0,4],[1,5],[0,7],[-1,4],[-1,2],[-1,4],[-1,8],[0,12],[2,14],[2,13],[4,8],[-2,6],[1,7],[3,7],[4,4]],[[91747,37594],[7,4],[3,0],[3,-4],[8,9],[-3,-10],[-2,-10],[-2,-7],[-4,2],[-10,12],[0,4]],[[91749,37631],[0,1],[-1,1],[0,1],[-1,1],[-1,-5],[-1,-2],[-1,1],[-2,2],[-3,5],[-2,1],[-2,-1],[-1,-5],[-1,5],[0,4],[1,4],[2,3],[-1,5],[0,3],[-1,9],[2,0],[3,-9],[7,-6],[5,-7],[-2,-11]],[[82073,38193],[1,-10],[-2,-10],[-6,-18],[0,-5],[0,-5],[-1,-5],[-2,-2],[-1,-1],[-3,-7],[-1,-2],[-1,-8],[-3,-6],[-9,-8],[-2,7],[-3,6],[-3,3],[-2,-2],[-1,-7],[-2,-4],[-3,1],[-3,8],[2,8],[2,25],[5,16],[20,48],[8,14],[6,1],[1,-9],[1,-20],[2,-8]],[[91414,38378],[0,-12],[1,-9],[2,-7],[3,-9],[-6,-3],[-3,-9],[-3,-9],[-5,-7],[-2,2],[-1,4],[-1,5],[0,5],[2,4],[4,0],[3,2],[3,11],[1,10],[0,10],[2,12]],[[91407,38439],[-3,3],[-2,4],[-3,9],[-4,-19],[-2,-5],[-4,10],[-4,-2],[-2,-5],[-3,1],[0,24],[-5,-7],[-2,-1],[-2,0],[-2,1],[-1,3],[1,6],[9,16],[1,8],[-5,3],[3,12],[1,15],[2,13],[4,8],[1,-9],[4,-14],[0,-7],[0,-16],[2,-5],[5,-1],[0,-4],[5,-17],[6,-9],[1,-6],[-1,-9]],[[91376,38540],[-1,-4],[-8,-16],[1,12],[-1,4],[-1,-1],[-1,-3],[-1,1],[0,1],[0,2],[-1,0],[-2,-8],[-2,2],[-2,4],[-1,4],[-1,6],[2,9],[8,20],[-1,1],[-1,3],[-1,4],[1,4],[3,4],[1,-1],[2,-3],[1,0],[4,3],[1,3],[2,4],[1,6],[4,-9],[-2,-12],[-5,-12],[-3,-10],[1,-4],[3,-8],[0,-6]],[[91235,38646],[7,-11],[2,-12],[-1,-14],[-2,-12],[-2,3],[-1,0],[-1,0],[-2,1],[0,18],[0,9],[-1,6],[1,12]],[[90794,39149],[1,6],[1,2],[1,-3],[1,-7],[-1,-14],[0,-6],[-2,-6],[-2,7],[-11,-14],[-5,7],[-2,7],[-2,6],[-2,5],[2,6],[3,3],[4,-1],[3,2],[3,8],[1,-3],[2,-2],[5,-3]],[[90643,39583],[2,-5],[6,-8],[2,-3],[0,-7],[-2,-3],[-2,-1],[-2,-2],[-3,-19],[-3,-9],[-5,-8],[-5,6],[-10,5],[-4,5],[-3,14],[-2,31],[-2,9],[-7,24],[-3,5],[-12,16],[-3,6],[-3,6],[-2,7],[2,13],[6,-1],[15,-12],[12,-7],[2,10],[-2,19],[3,19],[2,-15],[4,-6],[11,0],[4,-3],[-2,-7],[-3,-11],[-2,-11],[0,-12],[2,-9],[6,-18],[3,-2],[4,-1],[2,-3],[1,-6],[-1,-4],[-3,-2],[-3,0]],[[88766,40379],[-2,-9],[2,-7],[3,-5],[1,-4],[-2,-11],[-4,-4],[-9,-1],[-2,-2],[-1,-4],[-1,-2],[-4,0],[-2,3],[-1,4],[0,3],[0,2],[-5,0],[-5,-4],[-3,-8],[-1,-13],[-2,0],[0,3],[0,2],[-1,1],[-1,3],[-4,16],[2,8],[5,4],[6,10],[7,23],[4,9],[2,5],[-1,10],[4,-5],[12,-17],[3,-10]],[[88635,40504],[5,4],[7,5],[6,0],[1,-9],[-3,-4],[-7,-1],[-1,-5],[-1,-8],[-2,-3],[-2,2],[-1,7],[0,5],[0,3],[0,3],[-2,1]],[[88814,40732],[2,-7],[0,-11],[-1,-11],[-1,-8],[-1,3],[-2,6],[-1,3],[-3,-6],[0,-5],[1,-5],[0,-6],[-1,-3],[-3,2],[-5,4],[-6,-2],[-6,-4],[-5,-6],[-2,-9],[-3,7],[-6,21],[-2,4],[0,2],[-3,5],[-2,2],[-1,-3],[-1,-2],[-5,-12],[-3,-1],[-7,-1],[-1,-1],[-1,-7],[3,-4],[3,-2],[3,0],[3,-4],[-1,-7],[-3,-5],[-3,1],[-3,5],[-3,1],[-2,-2],[-2,-6],[2,-18],[0,-6],[-2,-4],[-3,-10],[0,-2],[1,-3],[-2,-7],[-2,-7],[-3,-3],[-3,2],[-4,12],[-3,2],[-4,-5],[-3,-23],[-4,-5],[-5,-2],[-6,-10],[-5,-4],[-18,0],[-3,2],[-2,7],[-8,22],[-3,6],[1,-12],[1,-17],[-1,-13],[-3,1],[-2,-8],[-3,-6],[-3,0],[0,17],[-2,11],[0,6],[1,4],[2,5],[2,6],[1,8],[1,14],[1,11],[2,10],[4,7],[6,11],[2,8],[1,12],[1,6],[2,4],[3,3],[3,1],[2,3],[6,16],[2,6],[6,5],[6,2],[12,0],[32,14],[16,19],[10,4],[6,-2],[3,-4],[1,-7],[3,-7],[4,-5],[5,-2],[10,-1],[0,-3],[-1,-7],[-1,-2],[5,-3],[3,6],[1,8],[3,1]],[[87963,41194],[2,-10],[4,-4],[4,-4],[2,-6],[-2,-10],[-3,-12],[-9,-23],[-2,5],[-4,5],[-3,8],[-3,10],[-1,11],[2,12],[4,6],[5,5],[4,7]],[[87999,41206],[4,-6],[5,-9],[1,-9],[-4,-4],[-3,2],[-2,8],[-3,2],[-3,-2],[-1,-4],[3,-14],[1,-2],[1,-2],[-1,-4],[0,-3],[-2,-2],[-3,-4],[-6,-8],[-3,-2],[-3,3],[1,14],[2,13],[0,13],[-3,16],[5,2],[10,-2],[4,4]],[[88076,41142],[1,-5],[2,-2],[2,-2],[3,-5],[-1,-17],[-3,-11],[-5,-15],[-8,7],[-1,10],[-1,7],[-1,6],[-3,2],[-4,1],[-2,2],[-4,22],[-1,5],[1,13],[-1,5],[-3,0],[-2,-1],[-2,1],[-2,0],[-1,-11],[-1,1],[-1,0],[-1,4],[1,13],[0,10],[1,9],[2,7],[4,9],[3,-9],[2,-5],[2,2],[-2,16],[2,2],[3,9],[-2,13],[3,0],[3,0],[2,-5],[1,-15],[6,-7],[3,6],[2,0],[0,-11],[5,-3],[-1,-20],[0,-24],[1,-9],[-2,-5]],[[87948,41267],[-4,-14],[0,-29],[-4,-14],[-3,3],[-5,-2],[-3,4],[-2,-5],[-2,-2],[-4,-2],[-1,2],[-2,1],[-3,6],[4,4],[0,7],[-1,7],[-3,6],[5,7],[2,4],[1,5],[0,7],[-1,5],[1,3],[5,1],[6,4],[5,6],[5,0],[4,-14]],[[88026,41239],[-4,-2],[-2,-4],[-1,-6],[1,-9],[-2,-1],[-2,-1],[-3,-6],[-1,3],[0,2],[-1,1],[0,2],[1,1],[0,2],[-1,5],[-2,6],[1,2],[2,2],[1,3],[0,2],[1,5],[1,3],[-1,3],[-3,5],[0,2],[1,10],[3,9],[4,8],[3,5],[-2,-14],[1,-13],[5,-25]],[[84560,41436],[1,5],[3,-1],[3,-3],[2,-7],[-1,-6],[-3,-6],[-1,-5],[3,-4],[-3,-5],[-4,1],[-3,3],[-3,1],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[-1,2],[-8,6],[-2,4],[0,2],[0,3],[13,6],[7,5],[3,11]],[[84604,41389],[7,-6],[7,-26],[6,-5],[-4,-5],[-24,-19],[-5,-2],[-3,2],[-1,8],[0,6],[2,2],[3,-4],[6,16],[3,6],[4,3],[-3,0],[-9,4],[-3,-2],[-3,-5],[-3,-1],[2,12],[-4,-10],[-3,0],[-4,5],[-4,5],[3,6],[1,6],[0,5],[0,3],[2,5],[2,3],[2,-2],[3,-6],[-1,6],[0,5],[1,5],[2,5],[-5,0],[3,7],[13,18],[5,3],[-2,-7],[-4,-25],[1,-5],[3,0],[3,-2],[2,-5],[-1,-9]],[[84701,41602],[-1,-6],[1,-4],[2,-3],[1,-1],[1,-10],[-1,-7],[-3,-2],[-4,7],[-1,3],[-2,10],[-1,3],[-2,0],[-4,-1],[-2,1],[-1,11],[2,9],[4,2],[5,-10],[1,6],[1,5],[1,5],[2,4],[2,-4],[0,-7],[1,-6],[-2,-5]],[[87712,41665],[-1,-13],[0,-7],[-4,2],[-6,1],[-6,-10],[-4,2],[-1,4],[3,5],[2,4],[3,5],[1,7],[0,4],[-3,1],[0,3],[2,2],[1,6],[2,3],[6,-2],[3,-7],[2,-10]],[[84776,41900],[3,-2],[0,-5],[-2,-17],[-5,-14],[-1,-4],[1,-7],[5,-15],[1,-9],[-3,-1],[-7,-9],[-1,0],[-1,2],[-2,-2],[-2,-4],[0,-4],[1,-5],[0,-3],[-1,-4],[-2,-2],[-3,12],[-2,5],[-2,3],[-3,-1],[-2,-2],[-1,0],[-1,7],[2,17],[0,18],[2,5],[3,-1],[4,-6],[3,-4],[-1,10],[1,19],[-2,-1],[-5,8],[2,10],[6,8],[4,6],[-1,8],[2,3],[3,-1],[2,-7],[0,-5],[1,-4],[1,-1],[3,-1]],[[88001,42286],[0,3],[1,3],[1,2],[1,2],[-2,-4],[0,-3],[-1,-3]],[[87857,42353],[0,-8],[0,-3],[0,-3],[-2,-4],[-3,-3],[-3,1],[-3,-2],[-1,-9],[4,0],[2,-5],[2,-7],[2,-8],[-5,-1],[-3,-7],[0,-11],[-2,-9],[-3,-5],[-3,-3],[-4,-2],[-3,2],[2,4],[0,3],[0,3],[0,3],[2,3],[-3,7],[-4,24],[-3,6],[-6,-5],[-1,-13],[1,-16],[0,-11],[-9,8],[-2,5],[0,55],[10,-10],[4,-1],[1,10],[1,11],[3,12],[3,10],[5,5],[2,0],[4,-3],[4,-3],[1,-4],[2,-7],[3,-4],[3,-3],[2,-2]],[[88041,42071],[-1,-1],[-1,1],[-1,0],[-1,-4],[0,-5],[2,-6],[0,-3],[1,-2],[2,-5],[1,-5],[-1,-3],[-4,-3],[-1,-7],[2,-8],[2,-6],[-3,2],[-2,-1],[0,-4],[1,-5],[-3,5],[-3,2],[-2,-3],[-1,-8],[-10,11],[-5,2],[-4,-5],[-3,6],[-6,4],[-11,2],[-5,4],[-3,1],[-4,-3],[-11,-14],[-11,3],[-50,38],[-2,1],[-5,9],[-3,2],[-3,-1],[-9,-6],[-7,-11],[-4,-3],[-1,0],[-2,-1],[-2,2],[1,8],[2,4],[6,7],[3,5],[9,7],[3,6],[3,16],[3,6],[1,5],[-1,7],[-3,12],[-2,19],[-1,35],[0,19],[4,34],[1,18],[-1,8],[-3,9],[-2,10],[1,8],[4,5],[4,-4],[7,-13],[2,3],[7,0],[4,0],[4,9],[-2,8],[3,11],[2,-2],[3,-12],[4,-6],[3,13],[2,-3],[4,-5],[0,16],[4,-4],[4,2],[2,7],[-4,8],[-2,-5],[-2,10],[0,10],[-2,8],[-6,0],[2,6],[1,6],[-1,4],[-4,1],[2,5],[2,3],[3,1],[3,-1],[4,-2],[1,-2],[-1,-2],[0,-2],[0,-3],[0,-7],[0,-2],[1,-1],[2,1],[1,3],[0,1],[1,2],[1,3],[2,2],[3,-3],[5,16],[1,6],[1,5],[7,0],[3,5],[2,-10],[0,-13],[-3,-12],[-8,-8],[-2,-6],[0,-8],[1,-6],[3,-4],[3,-1],[3,0],[3,0],[-1,-5],[-4,-12],[2,-9],[0,-7],[1,-6],[4,-6],[4,-3],[14,-5],[5,2],[4,5],[3,9],[1,10],[-1,4],[-2,3],[-2,-1],[-2,-1],[2,3],[1,2],[4,25],[4,-5],[8,3],[5,-3],[1,-4],[3,-8],[1,-9],[1,-7],[-3,-7],[-8,-17],[-3,-8],[-5,-33],[-10,6],[-8,-8],[-7,-16],[-2,-19],[1,-11],[2,-5],[3,-3],[3,-5],[1,0],[3,-3],[1,-4],[-2,-1],[-2,-1],[-2,-2],[-2,-4],[0,-5],[-5,4],[-3,-4],[-1,-7],[1,-9],[-3,7],[-3,3],[-4,-1],[-3,-6],[1,-7],[0,-8],[-1,-16],[3,-24],[0,-7],[2,-4],[3,-2],[5,-1],[8,2],[1,0],[-1,4],[0,9],[2,9],[6,-6],[17,-28],[3,-1],[3,6],[2,6],[2,7],[2,8],[1,9],[2,0],[3,-4],[3,0],[5,3],[4,1],[-3,-4],[-2,-6],[-3,-10]],[[87815,42513],[0,16],[-4,9],[-1,11],[-7,8],[7,-1],[4,-14],[4,-2],[4,-13],[5,-16],[1,-4],[1,-4],[3,-1],[1,-4],[-1,-9],[-8,12],[0,-12],[-4,2],[0,-10],[2,-14],[-4,-13],[-1,-15],[-4,8],[1,10],[4,10],[-2,6],[-2,5],[-3,13],[4,22]],[[88004,43318],[1,-5],[1,-12],[-1,-9],[2,-7],[-2,-4],[-2,1],[-2,6],[-3,11],[1,14],[5,5]],[[86773,43321],[7,-7],[1,-16],[-2,-14],[-6,0],[-13,21],[2,7],[3,5],[5,3],[3,1]],[[87858,43377],[7,-6],[-4,-16],[-9,-15],[-10,-7],[-4,-2],[-3,-5],[-3,-5],[-4,-4],[-4,0],[-5,2],[-4,4],[-2,6],[1,6],[0,6],[0,6],[-1,6],[4,-4],[3,-5],[2,-1],[3,4],[5,12],[2,4],[4,-1],[-1,-3],[-1,-5],[0,-6],[1,-3],[2,1],[5,3],[2,0],[5,5],[6,19],[3,4]],[[87906,43426],[2,15],[0,17],[2,15],[5,10],[0,-11],[-5,-29],[0,-6],[1,-4],[0,-4],[-1,-7],[-2,-3],[-1,-1],[-1,3],[0,5]],[[87945,43514],[4,6],[1,-1],[0,-5],[-2,-7],[-6,-10],[-2,-6],[-2,-8],[-5,2],[-9,-3],[-3,5],[3,8],[2,2],[6,-2],[3,2],[4,6],[6,11]],[[87765,43537],[-2,14],[9,13],[12,12],[8,-6],[-9,-22],[-4,-12],[-6,-5],[-8,6]],[[86838,43572],[6,2],[1,-4],[1,-10],[-1,-7],[-1,-7],[-2,-6],[-2,-4],[-5,-4],[-7,-3],[-7,0],[-4,7],[-4,10],[-5,12],[-1,13],[6,9],[4,1],[3,-2],[4,-4],[3,-3],[3,-1],[8,1]],[[87894,43654],[9,12],[4,7],[3,9],[1,-14],[-2,-12],[-5,-11],[-15,-18],[-3,-2],[-1,-3],[-4,-17],[-14,-14],[-2,-5],[-2,-2],[-1,1],[-2,3],[0,2],[-4,-5],[-3,-8],[-4,-8],[-8,-5],[0,5],[-10,-17],[-5,-4],[1,3],[1,3],[0,3],[2,15],[2,5],[4,2],[5,5],[3,9],[3,12],[4,11],[5,5],[0,-5],[5,-11],[5,-7],[2,5],[1,5],[10,25],[1,-2],[1,-2],[1,9],[4,6],[8,10]],[[86259,43538],[4,2],[7,-8],[12,-20],[4,-8],[1,-4],[-1,-11],[-1,-10],[-3,-5],[-13,-11],[-14,1],[-7,-6],[-7,9],[-9,8],[-9,5],[-8,3],[-5,2],[-6,12],[-5,2],[-4,-1],[-7,-6],[-12,-4],[-25,-21],[-8,-2],[-9,0],[-9,3],[-4,7],[-4,9],[-2,6],[0,5],[2,9],[2,2],[6,-3],[5,5],[0,11],[-2,27],[2,12],[5,-2],[8,-12],[8,-3],[6,4],[5,10],[4,13],[-2,14],[-3,49],[3,8],[1,8],[0,8],[-1,7],[-2,5],[-3,2],[-3,-1],[-5,-2],[7,25],[3,7],[3,6],[7,9],[3,6],[8,30],[3,6],[6,3],[5,0],[5,2],[5,8],[1,-14],[3,-16],[4,-16],[7,-23],[0,-7],[-3,-14],[-1,-10],[1,-20],[2,-9],[14,-20],[4,-14],[1,-17],[0,-18],[-2,-15],[-2,-11],[0,-4],[3,2],[2,3],[2,2],[3,1],[4,-1],[9,-6],[1,-3]],[[86537,43711],[1,-20],[-1,-10],[-2,-7],[-3,-2],[-6,4],[-4,-2],[-3,-11],[-3,-20],[-1,-21],[3,-14],[0,5],[2,-13],[-5,-5],[-7,1],[-3,3],[-1,3],[-6,9],[-3,2],[-2,-4],[-14,-58],[-7,-11],[-3,-13],[-3,-3],[-3,0],[-3,-1],[-8,-9],[-4,-7],[-2,-6],[-2,-5],[-28,-31],[-34,-58],[-5,-5],[-5,4],[-6,16],[-7,13],[-10,11],[-14,10],[-14,17],[-2,2],[-5,2],[-6,5],[-6,6],[-4,7],[-1,3],[3,3],[-1,2],[-1,2],[-3,1],[-1,1],[-14,24],[-8,11],[-2,5],[-3,10],[-2,3],[-5,4],[-7,2],[-5,5],[-2,11],[-1,40],[-1,11],[-1,2],[-3,4],[-2,2],[-6,19],[-2,8],[-6,65],[-1,12],[0,3],[-2,2],[-1,2],[-1,5],[1,7],[0,5],[1,6],[2,5],[-7,16],[-3,10],[-1,12],[0,16],[2,12],[3,10],[4,9],[10,-30],[20,-44],[3,-11],[2,4],[3,5],[3,5],[3,1],[5,-3],[3,-7],[3,-8],[1,-9],[-3,-10],[-8,-17],[-1,-10],[3,-9],[3,-2],[3,3],[3,4],[11,25],[5,7],[3,-8],[-4,-19],[1,-4],[3,-5],[6,-18],[1,-7],[8,29],[17,10],[17,5],[8,15],[4,13],[9,2],[9,-4],[4,-7],[2,-5],[8,-6],[2,-5],[2,-27],[1,-7],[2,8],[6,50],[3,5],[5,4],[6,5],[9,20],[6,5],[2,-11],[0,-13],[2,-12],[2,-12],[12,-36],[0,-5],[3,5],[0,12],[-4,19],[0,6],[0,13],[0,6],[-1,0],[-2,0],[-2,1],[-1,2],[0,4],[2,6],[1,16],[3,12],[4,11],[5,8],[7,3],[5,-5],[3,-11],[1,-15],[-1,-3],[-3,-7],[0,-7],[3,-4],[4,3],[1,6],[1,7],[2,5],[3,1],[3,-3],[2,-4],[3,-2],[3,1],[6,6],[3,1],[4,-5],[2,-9],[1,-11],[-1,-11],[6,-4],[1,-13],[0,-15],[3,-15],[1,-5],[1,-3],[1,4],[6,6],[4,-1],[3,-4],[1,-6],[1,-9]],[[87989,43932],[-5,-32],[-3,-26],[-4,-22],[-1,-19],[-2,-2],[-1,-1],[-1,0],[-6,-7],[-3,-19],[-9,-18],[-3,-26],[-4,-3],[-6,-25],[-13,-31],[-2,-8],[-3,-2],[-1,4],[-2,3],[-2,-2],[-4,-10],[-4,4],[4,8],[2,7],[-5,6],[4,8],[9,13],[9,13],[0,5],[5,11],[0,14],[2,12],[8,28],[11,30],[9,5],[3,22],[3,12],[0,14],[4,6],[2,4],[1,9],[-4,8],[5,13],[1,-2],[1,-1],[1,-1],[1,-1],[1,6],[2,5],[0,-12]],[[86802,43861],[1,5],[2,2],[3,2],[2,3],[0,7],[-2,24],[-1,5],[-4,3],[-2,6],[-2,7],[-2,6],[-1,7],[4,-2],[5,-4],[3,-5],[2,4],[4,2],[5,3],[2,8],[1,11],[1,11],[4,7],[5,1],[-1,-8],[-3,-11],[-1,-7],[0,-8],[2,-8],[3,-15],[-1,0],[1,-5],[2,-7],[2,-8],[0,-6],[-1,-8],[-2,-1],[-2,0],[-3,-5],[-1,-13],[5,-3],[6,-1],[4,-8],[-6,-7],[0,-8],[2,-11],[2,-16],[-1,-16],[-6,-26],[-1,-17],[-9,20],[-1,20],[-3,18],[-5,17],[-11,30],[-1,5]],[[89514,44153],[7,-14],[1,-7],[0,-8],[-1,-2],[-1,0],[-3,1],[-3,0],[-6,-5],[-4,-2],[-3,-3],[-3,-7],[-2,-8],[0,-6],[-10,8],[-2,4],[-3,11],[-4,12],[-2,15],[1,19],[1,3],[1,2],[1,2],[5,1],[1,2],[1,2],[2,4],[5,6],[1,0],[0,3],[3,11],[6,-3],[4,-14],[7,-27]],[[89516,44205],[9,3],[7,-9],[2,-14],[-6,-12],[-8,-5],[-6,9],[-2,15],[4,13]],[[89525,44465],[6,-5],[5,-13],[2,-12],[-2,-6],[-4,-8],[-8,-28],[-4,3],[-3,6],[-4,3],[-5,1],[-3,-2],[-3,6],[-3,7],[-1,8],[-1,8],[3,3],[2,3],[1,4],[0,11],[0,3],[5,7],[6,2],[11,-1]],[[89496,44500],[2,-7],[0,-6],[-2,-25],[-2,-5],[-2,-5],[-2,-12],[-3,-4],[-4,2],[-1,7],[-4,9],[-4,6],[-3,7],[-1,10],[13,41],[4,-2],[4,-4],[5,-12]],[[82127,31430],[1,-14],[4,-25],[1,-14],[-5,3],[-1,1],[-1,14],[-2,15],[-1,12],[4,8]],[[82080,31521],[9,1],[5,-3],[3,-4],[-6,-7],[-4,-4],[-7,3],[-9,-2],[-5,1],[5,7],[7,-1],[2,9]],[[81577,33620],[6,2],[3,6],[2,6],[4,0],[4,0],[-5,-9],[-4,-11],[-4,-6],[-2,-7],[-3,-1],[-1,10],[0,10]],[[90736,39368],[8,1],[1,-5],[-3,-7],[-3,-2],[-3,-1],[-4,1],[-4,3],[-2,0],[-4,1],[-5,-2],[-4,2],[0,9],[4,17],[-1,8],[-1,9],[1,4],[3,-5],[3,-5],[2,-3],[4,-7],[3,-12],[5,-6]],[[89653,44921],[5,-3],[3,-7],[-4,-7],[-4,-6],[-3,-7],[-3,-3],[-5,-2],[-20,0],[-4,2],[-4,5],[-3,10],[3,10],[7,5],[7,0],[8,-3],[7,1],[10,5]],[[89501,44998],[20,-13],[1,-10],[-1,-5],[-5,-2],[-11,-1],[-11,4],[-9,8],[4,12],[12,7]],[[38645,89021],[6,-18],[-4,-2],[-19,12],[-22,3],[-11,7],[-5,12],[-2,7],[-5,-1],[-4,-5],[-2,-3],[-2,-8],[0,-8],[2,-6],[12,-7],[12,-24],[8,-8],[-1,-6],[-1,-2],[6,-6],[2,-8],[-1,-7],[-7,-3],[-32,13],[-6,-3],[0,-10],[1,-4],[7,-8],[3,-6],[10,-25],[2,-3],[4,-3],[11,-1],[6,-2],[0,-5],[7,0],[23,-4],[-3,-3],[-7,-8],[-4,-2],[-9,1],[-4,-1],[-3,-3],[30,-12],[2,-13],[24,-25],[7,-3],[9,-1],[8,-3],[5,-8],[-2,-17],[18,0],[7,-5],[2,-13],[0,-3],[0,-2],[-1,-1],[-2,0],[-1,-1],[0,-4],[2,-7],[1,-6],[2,-10],[-1,-4],[3,-10],[4,-28],[3,-11],[-16,-18],[-5,-10],[8,-4],[10,-2],[47,-24],[4,-5],[4,-7],[1,-2],[0,-11],[1,-5],[2,-2],[0,-2],[-3,-5],[-4,-3],[-8,-2],[-3,-3],[-4,9],[-5,4],[-7,-1],[-5,-4],[-3,-5],[-1,-4],[-1,-3],[-5,-1],[-4,2],[-1,4],[1,6],[2,5],[0,4],[-18,6],[-3,4],[-2,7],[-4,-2],[-8,-7],[-4,1],[-7,6],[-3,1],[-4,-2],[-7,-5],[-4,-1],[1,4],[-9,3],[-10,-5],[-26,-28],[-10,-5],[-31,-8],[-72,10],[1,2],[3,7],[-8,3],[-30,-12],[-12,1],[-6,-2],[-4,-13],[-8,-14],[0,-9],[4,-5],[6,-2],[19,0],[5,-4],[-1,-10],[-2,-7],[1,-3],[15,-19],[3,-2],[84,-17],[7,-5],[4,-7],[6,-18],[5,-8],[6,-3],[7,1],[6,6],[4,10],[-6,6],[-6,6],[3,7],[8,9],[3,5],[2,-4],[6,5],[33,-1],[2,-1],[3,-6],[2,-1],[2,1],[2,2],[2,1],[3,0],[4,-5],[3,-5],[3,-5],[23,-7],[9,-8],[3,-13],[2,-11],[-1,-5],[-9,-4],[-5,-5],[-6,-7],[-3,-6],[-6,-6],[2,-6],[11,-13],[-6,-7],[-6,-1],[-5,3],[-14,14],[-5,0],[-4,-9],[6,-3],[2,-1],[-7,-6],[-27,-6],[9,-8],[13,-3],[14,1],[9,6],[11,-7],[5,-5],[0,-8],[0,-4],[3,-8],[2,-3],[2,-1],[0,-5],[-3,-5],[3,-7],[10,-12],[0,-4],[-9,-4],[-6,-9],[-1,-8],[8,-3],[0,-4],[-1,-1],[-3,-3],[4,-3],[3,-11],[4,-3],[8,0],[4,-3],[2,-9],[-4,-17],[-10,-7],[-22,0],[2,7],[1,3],[3,2],[-7,3],[-9,0],[-6,-5],[1,-15],[-84,15],[-24,12],[-15,16],[-50,14],[-10,6],[-7,9],[-7,14],[-2,2],[-2,10],[-1,4],[-3,4],[-3,3],[-3,2],[-5,-1],[-4,-1],[-1,-2],[1,-4],[1,-7],[-4,-10],[-10,-6],[-17,-6],[-7,-4],[-2,-4],[1,-6],[2,-5],[3,-4],[4,-4],[3,-1],[4,0],[7,6],[3,2],[17,0],[8,-3],[13,-11],[16,-5],[25,-22],[8,-3],[70,-11],[16,-8],[8,-2],[11,-37],[-14,0],[5,-9],[7,-5],[7,0],[6,2],[1,2],[2,2],[3,2],[3,2],[2,0],[3,-1],[2,0],[3,1],[-1,-4],[-2,-4],[-5,-8],[5,-14],[-2,-13],[-6,-8],[-8,-2],[-6,6],[-4,9],[-4,4],[-7,-6],[0,-5],[4,-3],[-4,-1],[-3,1],[-3,1],[-3,2],[-3,4],[-4,9],[-3,4],[0,-6],[0,-4],[-2,-7],[-3,3],[-2,3],[0,4],[-2,5],[-10,16],[-2,-2],[0,-5],[0,-3],[1,-5],[7,-11],[-11,-5],[-21,7],[-10,2],[4,-9],[6,-3],[12,0],[4,-3],[9,-16],[5,-6],[-5,-9],[-8,-3],[-8,1],[-6,3],[-5,5],[-22,42],[-6,7],[-14,13],[-4,2],[-2,-2],[0,-6],[1,-5],[0,-4],[-1,-3],[5,-5],[12,-6],[6,-5],[3,-8],[4,-11],[2,-10],[-1,-4],[6,-3],[13,-11],[7,-2],[13,0],[5,-2],[5,-6],[-4,-4],[-5,-1],[-9,0],[-5,-1],[-9,-7],[-4,0],[-11,0],[-3,3],[-1,6],[-4,17],[-1,3],[-6,5],[-19,24],[-10,16],[-14,16],[-7,11],[-3,3],[-5,1],[29,-50],[11,-22],[8,-9],[3,-6],[2,-10],[-42,33],[-13,16],[-14,27],[-1,-4],[0,-12],[-2,-12],[-4,1],[0,-4],[-3,4],[-5,3],[-6,1],[-5,0],[2,0],[-1,-2],[1,0],[2,-1],[2,-1],[4,-5],[1,-2],[8,-2],[43,-27],[31,-32],[24,-15],[7,-8],[6,-10],[0,-4],[-5,2],[-13,14],[-5,4],[-46,18],[-3,2],[-2,5],[-3,8],[2,3],[-5,11],[-9,2],[-18,0],[-9,4],[-38,46],[-9,21],[-4,5],[-5,0],[-7,-3],[0,-4],[1,-3],[1,-3],[1,-2],[-6,-11],[-32,-18],[-5,-6],[-1,-3],[0,-5],[2,-6],[10,-21],[2,-5],[6,-3],[42,-26],[1,-4],[-1,-6],[-2,-4],[-3,-1],[-25,13],[-5,-4],[0,-4],[8,-4],[4,-3],[3,-5],[0,-2],[-1,-3],[0,-3],[6,4],[19,5],[7,-1],[6,-5],[9,-9],[6,-10],[0,-9],[22,-13],[4,-7],[0,-11],[-3,-11],[-2,-11],[4,-12],[11,-4],[2,-4],[0,-7],[-3,-2],[-7,-3],[-16,-11],[-8,0],[-8,7],[-8,16],[-3,4],[-55,42],[-25,7],[-31,16],[5,-11],[10,-8],[30,-15],[34,-34],[16,-9],[16,-16],[20,-25],[3,-6],[1,-6],[-36,4],[-14,12],[-8,4],[-6,-4],[13,-8],[2,-4],[-6,-4],[-7,0],[-22,8],[-5,5],[-4,10],[-2,10],[-3,4],[-12,4],[-7,-1],[-4,-7],[2,-1],[2,-2],[5,-5],[-5,-4],[-5,3],[-13,21],[-7,24],[-8,15],[-9,12],[-10,6],[-10,0],[4,-6],[4,-10],[4,-12],[2,-9],[-2,-9],[-5,-4],[-7,-3],[-7,-4],[7,-7],[19,-2],[8,-3],[15,-16],[6,-9],[0,-12],[71,-4],[3,-2],[11,-11],[3,-3],[6,1],[7,1],[5,-1],[4,-9],[-3,-2],[0,-4],[1,-5],[2,-6],[-7,-13],[-11,-9],[-12,-1],[-11,8],[-3,7],[-2,-2],[-3,-13],[8,-17],[-2,0],[-1,-1],[-1,-3],[-3,3],[-3,0],[-4,-1],[-4,-2],[10,-5],[7,-7],[3,-4],[0,-3],[-14,-3],[-6,-4],[-5,-2],[-23,10],[-16,2],[-1,2],[-2,6],[-2,6],[-3,2],[-3,-2],[1,-6],[3,-13],[-3,-26],[-12,-4],[-31,15],[-41,1],[-6,4],[-3,7],[1,12],[4,7],[7,4],[7,2],[6,-1],[0,4],[-24,-1],[-4,5],[3,8],[7,9],[8,8],[5,4],[-7,4],[-9,-3],[-9,-7],[-6,-8],[-3,0],[-4,1],[-4,-1],[-2,-4],[1,-9],[2,-5],[0,-4],[-3,-5],[-6,-4],[-8,-1],[-8,3],[-7,4],[-8,4],[-7,-5],[-1,-9],[7,-9],[8,-2],[25,2],[9,-2],[2,-5],[-2,-8],[-13,-18],[-4,-4],[-4,1],[-3,3],[-2,6],[-2,6],[-1,4],[-1,3],[-3,3],[-3,3],[-3,1],[-4,-2],[0,-4],[22,-55],[4,-17],[-5,3],[-3,6],[-3,6],[-3,6],[-4,3],[-4,3],[-4,4],[1,6],[-4,3],[-3,1],[-3,-3],[-1,-7],[1,-9],[4,-6],[10,-7],[-5,-8],[-7,-6],[-7,-3],[-6,0],[2,6],[1,8],[0,8],[-2,3],[-3,3],[-7,23],[-3,5],[-4,1],[-3,-4],[-2,-8],[1,-5],[9,-23],[-5,-12],[-8,0],[-18,8],[-27,1],[-38,10],[-6,7],[-6,8],[-7,6],[-8,3],[-5,-3],[3,-6],[9,-14],[-6,-9],[3,-6],[9,-4],[60,-11],[31,-19],[5,0],[3,-2],[1,-4],[0,-5],[-1,-1],[0,-2],[1,-2],[3,-5],[7,-7],[3,-5],[0,5],[1,8],[-1,4],[7,0],[12,8],[6,-2],[38,-26],[13,-3],[6,-4],[5,-9],[6,-23],[6,-7],[-1,-1],[-2,-6],[0,-6],[-3,-5],[-6,-4],[-5,-2],[-13,8],[-9,9],[-16,24],[-9,4],[0,-4],[12,-14],[5,-9],[4,-10],[-5,-2],[-5,2],[-5,3],[-5,2],[-2,-2],[1,-3],[3,-6],[4,-2],[6,1],[4,-1],[16,-14],[7,-2],[4,-3],[3,-6],[3,-3],[5,4],[-1,2],[-1,6],[6,3],[24,-3],[0,-2],[-2,-6],[5,-5],[0,-6],[-4,-7],[-4,-6],[7,3],[23,1],[0,-4],[-16,-9],[-9,-3],[-6,6],[-17,2],[-22,10],[-5,6],[-9,4],[-1,3],[-3,7],[-1,2],[-5,1],[-8,-5],[-4,0],[-5,3],[-12,18],[-7,2],[-7,1],[-6,1],[-5,7],[0,3],[2,6],[-12,6],[-5,0],[-5,-8],[-5,-2],[-19,16],[-22,1],[-7,5],[-4,1],[0,-9],[0,-11],[-1,-8],[4,-3],[5,1],[4,2],[6,0],[41,-27],[24,-23],[5,-3],[2,-3],[2,-5],[1,-8],[1,-3],[4,-8],[4,-4],[5,-1],[50,9],[3,-5],[14,-12],[6,-3],[18,-1],[-2,-9],[-4,-4],[-5,-2],[-4,-5],[-3,-8],[1,-2],[8,-2],[8,-8],[2,-11],[-1,-13],[-5,-13],[-11,-15],[-3,-5],[0,-7],[2,-2],[4,-2],[2,-5],[-3,-12],[-9,-4],[-11,-1],[-7,-4],[5,-6],[2,-2],[-4,-5],[-3,-6],[-4,-3],[-22,-4],[-5,-2],[7,-5],[17,-4],[5,-7],[-19,-17],[-17,-20],[14,-5],[16,14],[16,20],[14,12],[51,2],[8,-10],[-2,-10],[-12,-15],[-5,-20],[-6,-6],[-7,-3],[-43,5],[-8,-2],[4,-5],[17,-9],[32,-5],[0,-3],[-3,0],[-2,-1],[-1,-2],[-2,-5],[18,0],[-2,-5],[-2,-6],[-4,-10],[-10,-10],[-2,-4],[-5,-11],[-5,-8],[-5,-6],[-7,-5],[-8,-4],[-52,-10],[-9,1],[-3,2],[-10,11],[-13,10],[-3,4],[-4,3],[-5,3],[-4,3],[-3,13],[-4,0],[-5,-2],[-16,-12],[-5,-8],[-3,-8],[4,0],[25,10],[41,-45],[7,-4],[48,-3],[10,3],[18,13],[10,1],[8,-10],[-35,-14],[-3,-3],[-2,-5],[2,-8],[2,-2],[8,0],[6,-5],[4,-7],[-1,-7],[-7,-6],[-7,1],[-14,10],[-8,1],[11,-5],[6,-4],[4,-7],[-25,4],[8,-17],[3,-10],[-2,-5],[-26,0],[-23,-8],[-7,1],[-13,6],[-51,3],[-22,16],[-15,5],[-14,2],[-9,-5],[33,-19],[5,-7],[4,-12],[22,8],[17,-9],[73,3],[-3,-22],[-2,-7],[5,-8],[2,-11],[3,-10],[9,-3],[3,2],[8,6],[4,0],[2,-3],[4,-14],[-4,-8],[-5,6],[-5,1],[-4,-2],[-3,-5],[-1,-1],[-3,-10],[-2,-3],[-1,-1],[-1,-2],[2,-3],[0,-4],[-8,-3],[-14,-1],[-4,-2],[-3,-2],[0,-4],[6,0],[1,-4],[-3,-5],[-5,-3],[-18,-1],[-5,-3],[4,-4],[4,-2],[4,-2],[5,0],[0,-4],[-22,-1],[-41,27],[-21,2],[-10,-2],[-67,8],[-11,-6],[8,-6],[93,-13],[31,-18],[0,-4],[-9,-3],[-11,0],[-11,-2],[-6,-11],[31,1],[7,5],[6,8],[8,0],[15,-6],[2,0],[-1,-2],[-1,-6],[5,0],[2,-4],[2,-6],[4,-2],[4,-1],[3,-3],[3,-5],[2,-7],[-44,0],[-2,-2],[-4,-5],[-1,-1],[-3,0],[-6,3],[-8,2],[-8,8],[-4,3],[-13,3],[-7,-1],[-3,-4],[-3,-2],[-62,8],[0,-4],[11,0],[75,-22],[10,-8],[20,-10],[5,-1],[3,1],[5,4],[3,-1],[2,-2],[1,-4],[0,-4],[1,-2],[17,-12],[0,-4],[-42,4],[-20,8],[-10,1],[-5,-7],[-5,-5],[-68,17],[-10,-6],[-5,4],[-22,-4],[-59,15],[-16,-1],[-11,-10],[9,-6],[20,4],[14,-6],[12,1],[4,-3],[4,-5],[6,-2],[56,6],[1,-1],[1,-2],[1,-5],[1,-1],[14,0],[-2,4],[8,-6],[17,-2],[8,-4],[-4,-10],[-2,-4],[-2,-2],[7,0],[13,9],[8,2],[14,-1],[6,-3],[5,-7],[6,6],[9,3],[10,0],[8,-6],[-5,-2],[-5,-1],[-5,-1],[-2,-7],[5,-3],[12,0],[5,-2],[4,-4],[1,-5],[-2,-4],[-4,-3],[0,-4],[7,0],[2,0],[-11,-10],[-11,11],[-10,13],[-8,-1],[-1,-6],[0,-4],[2,-5],[2,-4],[1,-5],[-1,-5],[-2,-5],[-1,-5],[3,-4],[18,-10],[-70,-21],[0,-4],[-13,-4],[-51,20],[-25,2],[-36,17],[-9,2],[-4,-2],[-2,-4],[1,-13],[1,-5],[2,0],[3,2],[3,1],[87,-21],[8,-11],[-2,-1],[-1,-1],[-1,-2],[-1,-4],[8,5],[9,1],[49,-8],[8,-6],[-2,-4],[4,-4],[4,1],[5,2],[3,0],[6,-1],[0,-6],[-5,-6],[-6,-3],[-27,-4],[-56,21],[-106,12],[-6,-4],[3,-5],[3,-2],[26,-1],[4,-2],[8,-6],[5,-1],[15,-1],[4,-3],[2,-4],[1,-4],[-1,-3],[0,-1],[3,-3],[4,-1],[4,2],[3,4],[7,5],[30,1],[33,-8],[3,-2],[9,-9],[20,-6],[9,-7],[5,0],[3,1],[3,0],[4,-7],[-2,-5],[-16,-25],[-12,-13],[-15,-7],[-15,-1],[-21,10],[-59,6],[4,-9],[5,-3],[12,0],[81,-21],[0,5],[-5,4],[0,4],[7,4],[13,13],[8,4],[6,6],[3,1],[12,0],[-5,-8],[-14,-15],[-3,-7],[1,-12],[-1,-4],[-17,-6],[-71,4],[0,-4],[10,-6],[36,1],[31,-8],[11,0],[-5,-7],[-6,0],[-6,2],[-6,2],[-5,-3],[-9,-11],[-4,-3],[-47,0],[5,-10],[9,-3],[18,1],[-4,-11],[-9,-3],[-9,2],[-17,13],[-4,6],[-2,7],[-2,2],[-10,-5],[-3,-1],[-8,9],[-7,0],[-3,-7],[10,-12],[31,-18],[5,-10],[-23,-5],[-80,38],[-8,6],[-7,9],[-20,40],[-7,16],[0,13],[-1,8],[-2,12],[-3,8],[-6,-5],[-1,-11],[3,-14],[4,-14],[17,-47],[2,-6],[-11,-4],[-5,1],[-9,6],[-104,17],[-7,7],[-10,20],[-7,7],[-6,-5],[2,-8],[5,-8],[2,-6],[-11,-2],[10,-15],[38,-3],[15,-5],[8,-5],[18,-5],[8,-4],[6,-8],[3,-9],[3,-10],[3,-9],[0,-4],[-8,-10],[-3,-3],[9,-4],[5,5],[1,12],[-4,16],[7,14],[13,2],[82,-25],[25,-15],[3,-2],[2,-5],[2,-5],[-3,-3],[-5,-1],[-34,-22],[-6,-7],[2,-1],[2,-1],[3,-6],[-22,-12],[-8,-10],[-3,-3],[-3,-3],[-2,-5],[2,-4],[3,2],[4,4],[3,3],[7,2],[21,18],[8,-1],[12,-10],[7,-2],[-2,5],[-6,8],[-2,3],[-2,8],[0,2],[2,0],[7,8],[15,6],[38,-1],[1,-2],[-4,-3],[-7,-1],[16,-12],[1,-2],[-1,-2],[-2,-3],[-2,-1],[-10,0],[-33,15],[-9,-3],[8,-15],[2,-2],[4,2],[3,2],[4,1],[32,-25],[4,8],[4,0],[9,-8],[-3,-9],[-5,-7],[-5,-3],[-8,-1],[19,-8],[6,-4],[-2,-9],[-4,-3],[-27,7],[-5,5],[-6,-8],[-15,-10],[-7,-7],[12,-3],[36,2],[9,-11],[-3,1],[-3,-1],[-3,-1],[-3,-3],[12,-4],[4,0],[-3,-6],[-1,-3],[-2,-3],[6,-4],[-8,-5],[-7,4],[-6,7],[-6,2],[0,-4],[3,-5],[0,-5],[-1,-4],[-4,-2],[4,-1],[8,-6],[4,-1],[2,1],[2,3],[3,1],[4,-1],[3,-4],[3,-7],[2,-7],[-4,-3],[-3,-1],[-5,-5],[-2,-2],[-7,1],[-24,7],[-17,1],[-8,4],[-7,8],[-7,-5],[-27,17],[-19,-1],[-9,2],[-5,9],[0,6],[-2,7],[-2,6],[-1,3],[-5,1],[-2,-4],[1,-11],[-4,-7],[-10,1],[-18,8],[-6,-4],[-7,-1],[-37,8],[-14,10],[-42,-5],[-4,-2],[-3,-4],[-1,1],[-1,13],[2,9],[3,7],[3,5],[42,44],[0,4],[-13,0],[-4,4],[-2,13],[0,4],[0,4],[0,4],[-1,6],[-3,6],[-3,3],[-4,0],[-2,-3],[6,-19],[1,-5],[0,-5],[-2,-7],[-2,-6],[1,-3],[3,-2],[-1,-6],[-3,-6],[-4,-2],[-3,-2],[-4,-4],[-3,-5],[-3,-6],[-5,17],[-10,19],[-10,14],[-7,-1],[2,-10],[10,-20],[2,-8],[1,-12],[-1,-10],[-4,-4],[-18,7],[-4,1],[1,-8],[5,-8],[10,-9],[0,-4],[-8,-14],[-5,-6],[-6,-4],[-7,0],[-13,4],[-7,0],[-9,-6],[-6,-13],[-4,-17],[-2,-19],[-4,-14],[-9,-18],[-12,-12],[-9,-1],[-9,9],[-3,8],[-1,12],[2,31],[-1,11],[-6,-4],[-4,-6],[-2,-9],[-1,-13],[0,-17],[0,-10],[-3,-5],[-9,-1],[-6,3],[-6,8],[-6,10],[-4,19],[-5,13],[-5,12],[-4,5],[2,5],[10,15],[-8,3],[-7,-5],[-6,-11],[-2,-14],[5,-12],[18,-25],[0,-13],[-7,10],[-20,-3],[-9,5],[3,8],[2,8],[-4,4],[-1,0],[0,4],[1,-1],[6,-3],[-2,6],[-4,4],[-14,9],[-5,1],[-3,-1],[-1,-3],[-1,-2],[-1,-2],[-2,2],[-6,5],[-3,1],[-5,-2],[1,-5],[3,-6],[4,-3],[-6,-6],[-5,0],[-12,10],[3,10],[25,19],[-5,7],[2,5],[7,3],[34,7],[7,5],[43,14],[-2,8],[-3,2],[-8,-3],[-2,-2],[-3,-3],[-3,-2],[-2,4],[0,3],[1,5],[5,12],[20,17],[2,3],[0,12],[2,9],[2,8],[3,6],[5,2],[18,19],[3,7],[2,15],[5,13],[8,9],[9,1],[-1,3],[0,2],[-1,2],[-1,2],[8,6],[3,4],[0,6],[3,4],[7,16],[-2,7],[0,6],[0,7],[2,5],[-17,-41],[-7,-3],[-7,-8],[-11,-22],[-7,-20],[-5,-11],[-4,-5],[-7,-3],[-8,-8],[-8,-10],[-5,-12],[-6,-17],[-5,-5],[-7,-2],[-5,-5],[-3,-10],[-1,-12],[-2,-9],[-5,-7],[-15,-9],[-5,-1],[-24,3],[-8,-3],[-8,-12],[-8,-15],[-9,-10],[-9,5],[3,8],[7,9],[3,7],[-5,-2],[-5,-3],[-3,1],[2,12],[4,9],[12,23],[4,5],[4,2],[6,12],[3,2],[4,1],[18,14],[14,5],[7,4],[-4,12],[0,10],[4,11],[5,10],[1,5],[2,11],[2,6],[2,5],[3,6],[8,10],[0,4],[-13,-6],[-14,-2],[-3,3],[4,8],[34,43],[1,5],[2,3],[4,3],[2,3],[2,6],[2,13],[2,5],[-3,21],[13,18],[28,27],[0,2],[0,1],[-1,0],[-1,1],[-2,0],[-21,-9],[-4,-5],[-3,-12],[-18,-6],[-3,-7],[-3,-20],[-5,-22],[-4,-9],[-5,-10],[-34,-47],[-13,-11],[-27,-8],[-12,-9],[-8,-3],[-7,2],[-6,6],[-6,8],[4,4],[6,4],[0,4],[-6,5],[2,7],[5,5],[2,5],[2,10],[3,10],[4,8],[5,3],[6,7],[23,34],[5,11],[-8,-4],[-22,-21],[-8,8],[-3,1],[-3,-1],[-4,-3],[-1,-3],[7,-5],[1,-9],[-2,-9],[-3,-6],[-4,6],[-3,4],[-3,0],[-3,-7],[0,-2],[0,-4],[0,-5],[-2,-5],[-2,-2],[-8,-5],[-9,-4],[-12,-11],[-12,-4],[-16,-10],[3,8],[7,9],[7,8],[5,3],[5,5],[3,13],[2,13],[2,10],[13,15],[44,25],[11,15],[4,10],[-2,4],[-7,-3],[-19,-21],[-7,-4],[-19,-1],[-2,6],[0,13],[-2,10],[-8,0],[-6,-10],[0,-12],[2,-12],[-2,-11],[-6,-5],[-9,-3],[-8,-4],[-3,-12],[0,-16],[0,-4],[-3,-5],[-1,3],[-1,6],[-1,4],[-4,0],[-2,-3],[-2,-9],[0,-3],[1,-7],[-1,-3],[-1,-2],[-2,-4],[-3,-7],[-5,-7],[-2,-4],[-1,-6],[0,-6],[-1,-6],[-4,-2],[-2,2],[-1,5],[0,7],[0,6],[-2,3],[-3,6],[0,6],[6,1],[0,4],[-5,-1],[-9,-6],[-4,-1],[-5,3],[3,6],[12,13],[4,0],[3,2],[1,8],[-1,5],[-3,4],[-4,3],[-3,1],[3,-8],[-1,-7],[-4,-4],[-14,-2],[-3,1],[-2,2],[-4,8],[-3,2],[1,3],[14,16],[9,6],[4,4],[2,7],[-15,-5],[-2,1],[0,-4],[-19,-1],[-4,-1],[-5,-4],[-4,-8],[-2,-9],[0,-6],[2,-6],[1,-8],[-1,-7],[-4,1],[-3,6],[-1,3],[-5,-1],[-1,-4],[0,-5],[-2,-7],[-2,-10],[-2,-2],[-2,0],[-2,3],[-1,3],[2,6],[-2,7],[-5,12],[-4,3],[-11,0],[-5,2],[20,15],[5,6],[3,-1],[10,8],[10,3],[12,12],[6,2],[11,3],[13,6],[13,9],[9,10],[-8,5],[-10,-6],[-10,-10],[-9,-5],[-21,1],[-10,3],[-10,9],[5,3],[11,-1],[5,1],[4,5],[9,12],[4,4],[40,17],[0,3],[-9,0],[-4,1],[0,3],[-1,3],[1,1],[12,8],[2,0],[6,3],[4,7],[4,8],[4,7],[5,2],[9,3],[4,5],[7,14],[2,1],[5,3],[2,2],[3,3],[20,4],[13,-1],[1,3],[-3,7],[-4,7],[-5,4],[-5,-3],[-4,-4],[-5,-2],[-5,5],[7,7],[2,3],[1,5],[0,7],[0,7],[-1,3],[-6,4],[-6,7],[-5,4],[-7,-7],[1,-5],[2,-3],[4,-6],[2,-7],[-2,-4],[-3,-2],[-3,-3],[-4,-7],[-11,-12],[-5,-4],[0,-12],[-6,-10],[-47,-47],[-6,-9],[-4,-4],[-4,-2],[-12,-2],[-13,-7],[-8,-1],[-7,3],[-7,10],[4,5],[15,11],[10,11],[5,4],[6,2],[-5,9],[-8,3],[-19,-1],[-2,0],[-4,-3],[-7,-7],[-3,-1],[-4,4],[2,0],[0,4],[-6,-3],[-7,-9],[-5,-11],[-3,-12],[0,-24],[-2,-6],[-4,-2],[-5,-2],[-3,-2],[-28,6],[-5,3],[-7,6],[-4,8],[1,11],[11,7],[32,4],[14,24],[33,21],[11,13],[-4,3],[-5,-3],[-20,-16],[-3,1],[-2,3],[0,3],[-1,1],[-3,0],[-1,1],[-2,-1],[-3,-4],[-1,-3],[-2,-8],[-20,-22],[-4,5],[-2,-2],[-2,-4],[-1,-3],[-8,-3],[-9,-1],[-2,3],[2,6],[3,5],[4,3],[3,1],[74,56],[104,30],[12,14],[1,3],[1,10],[1,3],[4,6],[3,4],[3,2],[5,1],[7,3],[14,17],[7,4],[3,0],[7,4],[2,2],[1,7],[-1,6],[-1,7],[0,6],[4,9],[8,8],[4,9],[-3,11],[-9,-12],[-10,-18],[-3,-3],[-4,-6],[-10,-24],[-6,-6],[-4,4],[-7,10],[-5,11],[-3,9],[0,4],[-2,1],[-1,2],[-1,1],[1,4],[3,5],[0,4],[-1,6],[-3,5],[-7,7],[-9,17],[-2,0],[-1,-11],[1,-5],[2,-3],[1,-5],[-5,-14],[0,-6],[1,-7],[7,-21],[1,-6],[0,-1],[1,-1],[0,-2],[-1,-4],[-1,-1],[-14,-12],[-21,-35],[-7,-8],[-37,-28],[-4,-1],[-4,1],[-6,5],[-4,2],[-34,-25],[-19,-9],[-11,14],[7,0],[3,0],[-4,6],[-4,2],[-4,1],[-4,3],[-2,5],[0,5],[2,5],[14,5],[26,24],[48,18],[10,1],[10,2],[7,12],[-15,-1],[-8,1],[-4,6],[3,4],[17,10],[-3,2],[-3,5],[-2,5],[4,3],[8,1],[7,-1],[3,-3],[3,1],[4,-1],[3,2],[0,6],[-3,3],[-18,5],[-9,0],[-3,-3],[-4,-7],[-3,-4],[-3,1],[-2,3],[-3,6],[4,10],[-3,7],[-12,11],[-11,5],[-1,3],[1,5],[2,6],[5,6],[13,21],[5,6],[12,11],[6,3],[0,4],[-14,4],[-7,0],[-7,-4],[-14,-12],[-6,-14],[0,-3],[-10,-22],[-4,-5],[-5,0],[-14,6],[-8,11],[-4,2],[-5,-1],[-12,-7],[0,-4],[8,-2],[15,-8],[11,-4],[5,-4],[3,-5],[0,-5],[8,-5],[10,-1],[9,-2],[7,-13],[0,-6],[-1,-7],[-2,-5],[-5,-2],[-24,5],[1,-8],[3,-6],[3,-4],[4,-3],[0,-4],[-25,-21],[-8,-3],[-21,-3],[-10,2],[-8,9],[1,9],[-3,3],[-23,0],[-5,-2],[-5,-7],[5,-2],[14,-1],[5,-4],[11,-10],[6,-4],[4,-5],[5,-3],[-1,-5],[-5,-6],[-5,-4],[-12,-4],[-7,-9],[-3,1],[-2,3],[-2,1],[-2,2],[1,5],[2,7],[-1,8],[-2,8],[-3,6],[-4,5],[-7,-5],[-2,0],[-2,3],[-5,12],[-4,5],[-6,3],[-10,2],[2,-4],[7,-13],[0,-7],[-3,-4],[-4,-1],[-4,1],[-7,9],[-3,2],[-1,-8],[2,-5],[11,-15],[-9,-7],[-3,-1],[-3,2],[-6,9],[-3,2],[-12,3],[-4,-2],[-6,-10],[8,-9],[2,-6],[-2,-9],[2,-8],[-4,3],[-12,12],[-4,6],[-5,3],[-6,-4],[4,-6],[14,-26],[3,-13],[-4,3],[-3,5],[-6,13],[-1,-8],[-2,-11],[-4,-6],[-5,6],[-5,7],[-12,10],[-5,6],[1,-8],[3,-6],[5,-4],[4,-3],[0,-4],[-7,3],[-13,11],[-7,3],[-24,0],[4,-8],[18,-3],[7,-8],[5,-3],[9,-4],[6,-4],[-4,-7],[1,-11],[-8,-8],[-17,-9],[-4,-4],[-8,-11],[-3,-2],[-22,0],[0,4],[9,5],[4,5],[3,7],[-18,-8],[-8,-1],[3,9],[22,14],[12,14],[-14,-4],[-10,-8],[-5,3],[-3,1],[-6,-6],[-5,-9],[-6,-5],[-6,4],[1,1],[0,1],[1,2],[-6,7],[4,11],[7,10],[14,7],[10,12],[5,2],[-8,16],[-14,-3],[-14,-8],[-10,3],[4,4],[12,7],[5,1],[-7,6],[-15,-5],[-25,-17],[-10,-15],[-5,-7],[-6,-3],[-4,1],[-1,2],[-1,4],[-4,14],[-1,5],[-1,5],[-2,8],[-6,-4],[-7,-8],[-3,-4],[-4,-3],[-23,6],[-1,1],[-2,0],[-2,-4],[-2,-3],[-4,-2],[-9,-3],[-3,-2],[-3,-3],[0,-4],[3,-2],[4,-1],[7,1],[-8,-6],[-9,0],[-28,11],[-7,-7],[-6,-2],[-6,1],[-5,3],[3,8],[-5,0],[-8,-10],[-7,-4],[-15,-14],[10,-2],[20,10],[9,-4],[-10,-12],[-2,-4],[8,3],[16,11],[8,2],[33,0],[3,2],[7,8],[3,2],[34,-6],[8,-5],[2,-9],[-5,-6],[-27,-14],[-24,2],[-25,-6],[-53,5],[-10,5],[-25,2],[-4,4],[9,16],[-7,4],[-8,-4],[-7,-9],[-6,-9],[-6,-9],[-8,-3],[-15,2],[-4,-2],[-9,-6],[-4,-1],[-4,1],[-7,3],[-3,0],[-3,3],[0,6],[3,5],[6,4],[12,11],[24,12],[14,15],[3,1],[3,-1],[2,-8],[3,-3],[5,3],[8,8],[7,9],[3,7],[4,4],[39,13],[5,5],[0,8],[9,7],[4,1],[0,4],[-8,3],[-28,-7],[-16,0],[-2,1],[-1,1],[-2,5],[-2,2],[-3,-1],[-4,-3],[-2,-1],[-1,-1],[-3,-3],[-3,-6],[-2,-2],[-3,-1],[-8,2],[-3,3],[-2,0],[-2,-1],[-5,-6],[-2,-1],[-1,-1],[0,-3],[-1,-3],[-2,-1],[-2,1],[-5,6],[-1,1],[-4,-2],[-9,-8],[-4,-2],[1,2],[0,2],[1,2],[2,2],[-7,6],[-10,3],[-18,3],[-7,-2],[-14,-9],[-7,-1],[-8,5],[1,7],[7,5],[39,12],[4,-2],[10,-7],[4,-1],[13,1],[4,2],[3,8],[3,2],[5,1],[9,6],[4,1],[38,-8],[8,3],[4,3],[2,5],[-1,4],[-2,6],[-3,5],[-2,3],[-4,-2],[-7,-9],[-4,-2],[-2,3],[-4,14],[15,11],[7,9],[6,19],[14,14],[4,8],[-8,-2],[-10,-15],[-9,-6],[-1,-4],[0,-5],[-2,-5],[-4,-3],[-26,-12],[-13,-1],[-4,-2],[-7,-6],[-4,0],[-2,3],[-4,9],[-3,4],[13,19],[6,13],[0,9],[-4,-8],[-10,-13],[-10,-10],[-4,4],[-2,9],[-4,4],[-4,3],[-4,2],[-3,6],[-1,4],[0,9],[5,5],[26,17],[-1,6],[-1,2],[4,4],[-2,4],[-1,3],[-2,1],[-3,0],[0,4],[4,2],[7,9],[2,2],[4,1],[12,7],[25,3],[5,5],[-13,7],[-15,-3],[-29,-16],[-2,8],[-6,0],[-5,-5],[-2,-9],[-1,-13],[-1,-8],[-7,-12],[-3,-3],[-7,0],[-4,-3],[-3,-7],[-4,-18],[-3,-7],[6,-4],[15,-17],[-5,-5],[-16,-3],[-32,3],[-7,5],[1,4],[-1,2],[-2,2],[0,4],[19,4],[19,9],[-6,4],[-2,0],[8,8],[1,4],[1,6],[-1,3],[-6,-7],[-10,-9],[-4,-1],[2,8],[-8,-4],[-16,-15],[-9,-1],[1,2],[1,6],[-10,-1],[-5,1],[-4,4],[6,10],[2,6],[1,8],[-4,-1],[-13,-15],[2,6],[3,10],[-1,4],[10,4],[4,4],[3,8],[-7,0],[-7,-5],[-10,-15],[-6,-11],[-4,-5],[-4,0],[-1,2],[0,9],[-1,5],[9,16],[8,9],[9,3],[31,4],[10,5],[6,8],[-19,0],[-13,-8],[-5,0],[7,24],[0,4],[11,5],[6,1],[8,-6],[12,-2],[4,2],[2,6],[0,7],[-2,3],[-4,-4],[-4,2],[-49,6],[-8,4],[2,8],[-3,-1],[-7,-5],[-3,0],[-4,3],[-13,-1],[3,8],[4,8],[2,8],[-3,5],[-5,-3],[-26,-27],[-15,-8],[-12,-1],[2,14],[-7,2],[-4,-1],[-3,-4],[-5,-8],[-4,-6],[-4,-5],[-6,-2],[-5,0],[0,4],[8,7],[3,3],[4,8],[-1,3],[-29,-4],[-6,3],[4,3],[3,2],[8,0],[3,2],[6,8],[11,4],[22,14],[9,2],[23,-2],[6,2],[13,10],[53,21],[64,10],[7,10],[-68,-8],[7,5],[24,7],[6,7],[3,9],[1,9],[-5,7],[-6,0],[-45,-38],[-45,-12],[-20,-12],[-11,-11],[-19,1],[-8,-3],[-7,-5],[-18,-9],[-7,0],[1,6],[2,4],[3,2],[3,1],[-6,7],[-9,2],[-18,-2],[-3,3],[0,6],[2,6],[1,4],[3,3],[9,3],[4,4],[-5,-1],[-14,5],[-5,-1],[-12,-3],[-34,12],[4,4],[12,8],[5,1],[-7,3],[-3,2],[-2,6],[7,4],[80,-13],[73,17],[18,13],[9,-1],[-7,6],[-7,3],[-6,-1],[-20,-12],[-69,-12],[0,4],[7,2],[3,1],[3,3],[1,6],[-2,4],[-4,1],[-6,-5],[-11,0],[-3,-2],[-3,-3],[-2,-2],[-4,-1],[2,4],[0,2],[-1,3],[-1,5],[0,17],[-1,5],[-1,1],[-1,2],[1,6],[3,4],[4,2],[7,2],[19,13],[10,3],[9,-8],[-7,16],[0,8],[4,6],[5,10],[-9,-6],[-17,-21],[-14,-7],[-5,-4],[-5,-2],[-11,5],[-10,-4],[-6,-1],[4,8],[5,8],[4,9],[-1,8],[-4,8],[0,10],[3,10],[7,8],[8,2],[10,0],[5,3],[-4,12],[4,3],[11,1],[5,6],[1,6],[2,11],[2,9],[4,4],[2,1],[4,6],[3,1],[3,1],[8,3],[25,0],[0,3],[-1,2],[-1,3],[2,4],[-10,8],[-10,1],[-25,-6],[-9,-4],[-10,-8],[-52,-63],[-6,-11],[-2,-14],[4,-16],[0,-4],[-2,-6],[2,-6],[0,-5],[-5,-10],[-6,-6],[-5,-3],[-7,3],[-2,3],[-6,10],[-4,4],[-13,8],[35,65],[4,4],[7,5],[4,3],[0,4],[-6,1],[-5,0],[-5,-1],[-13,-11],[-2,-1],[-2,-3],[1,-11],[-1,-2],[-3,-4],[-3,-9],[-4,-8],[-5,-4],[-11,-1],[-5,1],[-6,4],[3,4],[-5,12],[2,7],[13,10],[-3,3],[-2,1],[-3,0],[0,3],[4,4],[1,5],[0,7],[1,5],[4,2],[9,0],[4,2],[-6,4],[-11,-3],[-6,3],[6,5],[13,4],[9,11],[5,2],[11,2],[25,-4],[5,3],[8,11],[13,9],[21,25],[5,3],[4,-4],[5,-2],[11,0],[5,3],[8,10],[4,3],[0,4],[-24,-4],[-6,2],[-13,6],[-6,0],[10,16],[3,8],[-4,4],[-7,-5],[-12,-23],[-8,-4],[-4,12],[6,23],[11,24],[9,14],[-8,5],[-10,-6],[-9,-13],[-5,-21],[-10,-23],[-1,-8],[1,-10],[1,-9],[0,-8],[-5,-15],[-11,-2],[-11,2],[-9,-7],[-9,-8],[-12,-6],[-13,-1],[-10,4],[5,5],[7,2],[11,2],[-3,7],[-11,4],[-5,5],[6,9],[3,5],[1,6],[-8,-1],[-7,-7],[-6,-11],[-5,-11],[-17,-10],[-4,-2],[-9,-6],[-5,-1],[-9,3],[-10,6],[-5,10],[7,10],[9,1],[19,-10],[8,5],[-18,13],[-4,5],[15,4],[8,5],[5,1],[9,-1],[3,2],[3,7],[-14,1],[-6,-2],[-6,-5],[-5,-3],[-8,2],[-6,5],[-1,6],[-5,1],[-7,-1],[-6,3],[-1,10],[6,4],[21,1],[74,-26],[-4,6],[-22,15],[28,11],[3,1],[3,-1],[3,1],[0,6],[0,4],[-1,3],[0,5],[1,6],[-6,-1],[-5,-5],[-6,-2],[-4,4],[2,5],[0,6],[2,5],[2,4],[0,4],[-12,-1],[-6,-4],[-3,-9],[-2,-12],[-6,-7],[-6,-3],[-6,0],[-18,4],[-14,-1],[-14,-3],[-6,0],[0,4],[8,3],[7,4],[5,6],[5,11],[0,1],[1,6],[1,6],[3,4],[18,3],[11,11],[4,-1],[7,-6],[8,-4],[9,-1],[8,3],[7,7],[6,12],[-3,2],[-2,-1],[-3,-3],[-3,-2],[-3,-1],[-35,5],[-24,-10],[-5,2],[1,7],[8,16],[0,7],[-4,1],[-5,-8],[-5,-10],[-3,-5],[-2,-1],[0,-3],[-1,-3],[0,-1],[-2,-1],[-3,4],[-2,1],[-16,4],[-27,-4],[-2,-1],[-2,-2],[-4,-7],[-3,-2],[-15,3],[9,9],[-1,1],[-4,3],[4,1],[7,-2],[4,1],[2,2],[8,10],[-1,6],[-2,5],[-3,2],[-4,-1],[-1,-9],[-6,-4],[-8,0],[-5,3],[-3,9],[-1,9],[1,19],[-2,7],[-5,-8],[-5,-13],[-5,-9],[-7,0],[-7,4],[-4,6],[5,6],[-8,13],[-4,2],[-7,1],[-4,3],[-8,8],[-3,4],[-4,5],[-4,1],[-4,-1],[-4,1],[-3,4],[-2,3],[-1,4],[-6,16],[-4,8],[-17,17],[-3,8],[4,6],[3,10],[4,22],[3,8],[8,16],[3,8],[2,13],[0,10],[2,8],[7,10],[7,3],[8,2],[6,4],[0,7],[8,10],[3,5],[3,9],[3,13],[2,6],[3,7],[5,5],[11,4],[9,9],[13,9],[-2,0],[-2,2],[-3,2],[2,6],[4,6],[8,8],[0,4],[-12,-5],[-12,-11],[-22,-28],[-18,-14],[-9,-12],[-4,0],[-3,6],[4,11],[-14,0],[0,-4],[7,-11],[-2,-9],[-13,-18],[-5,-13],[-3,-4],[-5,-1],[-3,4],[-1,7],[-3,7],[-6,2],[2,9],[12,21],[1,5],[0,12],[1,2],[3,2],[1,4],[1,6],[0,6],[2,2],[15,24],[6,5],[0,3],[-1,2],[1,3],[5,12],[96,42],[15,13],[11,17],[-18,4],[-10,-2],[-7,-7],[-5,-9],[-49,-36],[-36,-5],[-8,-5],[-15,-39],[-2,-2],[-3,-3],[-3,-4],[-2,-7],[0,-9],[-2,-3],[-4,0],[-3,-3],[-5,-9],[-3,-11],[-4,-8],[-7,-4],[-5,3],[3,7],[5,5],[3,0],[-1,11],[-2,2],[-4,1],[-3,3],[-1,2],[-3,3],[0,4],[10,16],[0,4],[11,25],[2,4],[5,1],[4,5],[5,5],[3,5],[5,13],[3,5],[4,2],[11,1],[5,3],[3,8],[-25,15],[-5,-1],[-2,-6],[-4,-24],[-1,-8],[-28,-18],[-10,-2],[-15,3],[-3,3],[-3,12],[-3,2],[-4,-4],[1,-6],[-3,0],[-3,3],[-4,5],[-4,3],[-9,-4],[-5,3],[34,21],[-1,4],[-1,4],[-1,4],[-2,3],[-1,7],[-3,2],[-4,-1],[-4,-4],[2,-3],[2,-9],[-5,0],[-6,1],[-5,3],[-5,4],[4,8],[2,3],[2,1],[-1,7],[-2,5],[-3,9],[5,1],[12,-1],[3,1],[0,2],[0,3],[1,2],[8,8],[9,6],[9,2],[3,4],[1,6],[-2,6],[-5,1],[0,4],[14,10],[94,24],[-13,6],[-53,-4],[-15,4],[-2,-2],[-2,-7],[-3,-4],[-14,-14],[-9,-5],[-8,-1],[-8,5],[0,4],[1,1],[3,3],[-16,12],[-9,3],[-4,-9],[-3,-6],[-17,7],[-5,-3],[-23,-6],[-6,-4],[-6,-10],[-9,-10],[-9,-8],[-7,-3],[-3,2],[-2,5],[0,7],[1,7],[2,4],[20,19],[7,4],[6,6],[7,11],[-10,-1],[-12,-7],[-12,-10],[-7,-12],[-7,-13],[-4,-6],[-4,-3],[-6,0],[-11,9],[-5,3],[1,4],[1,10],[3,10],[3,4],[3,1],[4,6],[3,1],[2,-1],[2,-2],[2,-2],[2,1],[2,7],[-5,3],[-11,2],[-5,-2],[-3,-4],[-3,-2],[-6,4],[4,9],[4,3],[6,2],[6,7],[-5,3],[-14,-3],[-5,6],[-2,8],[-1,10],[1,8],[3,4],[70,4],[-2,0],[97,9],[4,3],[1,2],[4,9],[2,2],[48,3],[-15,11],[-19,2],[-18,-4],[-24,-15],[-55,-4],[-7,-6],[-3,10],[-4,3],[-5,-1],[-6,-4],[-2,-2],[-3,-3],[-2,-2],[-3,-1],[-4,0],[-9,4],[-11,-1],[-12,-4],[-12,-2],[-10,7],[7,8],[6,13],[6,16],[4,16],[-7,1],[-5,-2],[-4,-7],[-1,-14],[-3,-9],[-6,-12],[-6,-10],[-5,-4],[-10,3],[2,11],[5,12],[3,9],[-8,7],[-12,-11],[-4,10],[12,10],[5,7],[5,9],[5,4],[11,-6],[5,2],[3,5],[5,4],[68,13],[9,6],[5,11],[-18,0],[-68,-17],[-6,1],[-5,2],[-3,3],[-4,13],[-4,11],[-4,11],[1,10],[6,11],[6,-6],[5,5],[4,8],[3,5],[7,-2],[12,-9],[20,-6],[2,-2],[0,-5],[1,-1],[2,1],[4,3],[1,0],[85,17],[4,-5],[-1,-9],[0,-6],[5,3],[4,6],[3,8],[5,19],[-8,4],[-101,-28],[-10,2],[-32,18],[-8,0],[-14,-13],[-9,-4],[-7,-4],[-1,-11],[3,-14],[13,-36],[0,-8],[-9,-3],[-4,2],[-5,8],[-3,2],[-5,1],[-15,11],[-26,4],[-2,-1],[-2,-2],[0,-4],[1,-5],[-3,0],[-3,0],[-5,4],[1,5],[2,4],[3,2],[3,1],[-1,4],[0,2],[-1,2],[20,23],[5,10],[-15,-5],[-5,2],[-6,9],[-39,26],[0,4],[12,8],[41,8],[0,4],[-22,4],[-15,-5],[-2,-6],[-13,-5],[-4,0],[-2,6],[0,9],[3,8],[5,12],[9,9],[80,21],[-6,6],[3,7],[29,24],[44,22],[9,10],[0,4],[-6,-4],[-22,-4],[-40,-20],[-36,-37],[-12,-6],[-17,-4],[-15,3],[-6,15],[4,9],[6,-3],[7,-5],[4,-1],[1,10],[-2,10],[0,8],[9,1],[0,4],[-5,3],[-5,5],[1,11],[-5,5],[-5,5],[2,5],[5,2],[7,0],[6,1],[3,7],[-16,8],[-5,1],[-14,-8],[-5,-1],[-11,4],[-21,17],[-10,4],[10,12],[11,5],[38,-2],[6,-3],[19,-12],[7,-1],[6,5],[-23,20],[8,7],[66,14],[17,-8],[8,-1],[14,13],[28,0],[15,9],[40,35],[8,2],[16,-8],[8,-2],[20,0],[3,-2],[6,-8],[4,-3],[4,1],[4,3],[3,5],[3,6],[4,3],[11,-1],[5,0],[24,21],[8,3],[18,-2],[9,-5],[4,-11],[0,-14],[1,-6],[1,-7],[2,-3],[4,-3],[2,-3],[-2,-6],[0,-4],[5,6],[-1,8],[-4,9],[-2,7],[0,11],[2,8],[3,6],[4,5],[-5,8],[-6,2],[-7,0],[-6,2],[1,2],[3,5],[1,2],[-13,6],[-76,-31],[-25,-2],[-8,-6],[3,13],[3,8],[19,32],[5,6],[7,6],[1,11],[7,11],[16,15],[-8,5],[-9,-2],[-8,-8],[-17,-28],[-6,-7],[-16,-11],[-2,-2],[-3,-5],[-2,-6],[-2,-4],[-8,-2],[-8,-6],[-4,-2],[-14,1],[-5,-1],[-8,-6],[-13,-18],[-87,-28],[-87,-29],[-2,1],[-4,6],[-3,2],[-26,0],[2,4],[-7,3],[-7,1],[-7,3],[-4,8],[5,4],[14,17],[5,3],[11,1],[17,-2],[19,-12],[10,-2],[-7,9],[-21,17],[-10,5],[-10,2],[-6,-3],[-5,-7],[-29,-19],[-5,0],[-4,6],[2,14],[-4,3],[-15,-3],[10,14],[19,6],[69,0],[3,-2],[9,-9],[5,-8],[5,-3],[19,-2],[37,17],[3,4],[11,14],[4,1],[16,0],[4,-1],[8,-9],[4,-2],[2,2],[6,9],[3,1],[5,1],[13,8],[0,4],[-13,4],[-29,-5],[-13,13],[5,2],[5,5],[6,11],[2,2],[4,3],[1,1],[1,5],[1,2],[0,2],[0,4],[0,2],[-2,4],[0,4],[1,3],[6,3],[2,2],[5,13],[4,6],[3,3],[22,10],[12,0],[6,-12],[6,-6],[30,-11],[10,3],[-5,6],[-8,4],[-14,2],[-3,4],[-1,8],[0,9],[-2,7],[12,-10],[38,-18],[3,0],[2,1],[3,0],[7,-5],[12,0],[15,-5],[7,1],[0,8],[4,3],[13,-3],[3,1],[4,2],[2,1],[1,2],[0,3],[0,4],[0,3],[3,1],[8,2],[5,6],[2,0],[1,1],[0,4],[-1,3],[-2,1],[-3,2],[-2,0],[1,3],[1,4],[0,2],[-8,-2],[-6,-4],[-16,-13],[-13,-6],[-8,-7],[-4,-1],[-9,1],[-55,24],[-8,8],[0,4],[7,3],[21,13],[17,7],[9,6],[5,12],[-9,-7],[-29,-6],[-17,-7],[-9,2],[-5,13],[4,3],[6,7],[5,8],[2,7],[-17,-6],[-9,0],[-8,6],[2,4],[-11,3],[-26,-12],[-11,13],[8,7],[14,18],[9,3],[19,-1],[15,-7],[21,-4],[4,2],[10,10],[4,3],[5,4],[4,3],[7,-6],[4,0],[3,2],[3,3],[-8,5],[-7,2],[-24,-5],[-6,2],[-14,7],[0,4],[50,13],[5,-2],[10,-8],[5,-3],[20,-4],[9,-6],[8,-12],[4,-9],[7,-34],[3,-11],[15,-35],[6,-10],[36,-21],[20,-18],[8,-3],[8,-6],[8,-2],[4,-2],[39,-30],[15,-8],[17,5],[2,0],[-3,9],[-8,7],[-9,6],[-7,6],[0,4],[0,15],[-12,7],[-25,2],[-9,13],[-10,10],[-3,2],[-7,2],[-24,14],[-10,7],[-6,6],[-2,9],[-1,7],[-3,8],[-7,19],[-2,6],[-1,7],[0,8],[2,10],[4,5],[4,3],[21,8],[4,4],[0,8],[-8,4],[-15,3],[-6,-2],[-10,-6],[-5,0],[-5,1],[-5,4],[-8,10],[4,13],[1,4],[3,4],[5,4],[5,2],[4,4],[3,6],[-4,8],[4,7],[36,30],[-4,5],[-8,-5],[-9,-8],[-7,-4],[-17,-3],[-10,-6],[-4,-9],[-3,-10],[-7,-13],[-8,-11],[-5,-5],[-5,0],[-2,2],[-2,3],[-3,5],[-3,4],[-2,-1],[-3,-3],[-4,-2],[-44,5],[-6,3],[-4,7],[-3,10],[-4,22],[-2,9],[-4,9],[-12,13],[-5,9],[0,10],[-1,3],[-1,6],[-2,3],[2,5],[-1,4],[-7,8],[4,6],[2,6],[1,7],[-3,5],[-6,4],[-7,0],[-7,2],[-4,10],[0,6],[0,7],[-1,9],[-1,7],[-10,20],[-2,4],[3,7],[24,18],[11,12],[4,8],[-3,2],[-3,0],[-7,-2],[-4,-7],[-36,-25],[-2,-1],[-2,3],[-1,4],[-1,4],[-1,2],[-3,2],[-4,6],[-5,10],[-1,6],[-3,4],[-4,0],[-2,-4],[0,-3],[1,-4],[1,-4],[1,-1],[2,-2],[0,-3],[-1,-4],[0,-3],[4,-14],[4,-12],[7,-8],[8,-3],[-2,-7],[-4,-2],[-9,-3],[0,-4],[12,-4],[5,-4],[2,-10],[0,-5],[-2,-10],[0,-11],[-2,-10],[0,-5],[6,-3],[10,5],[19,10],[11,-6],[-4,-11],[5,-18],[-5,-7],[3,-3],[2,-4],[3,-4],[1,-6],[-4,-7],[-15,-13],[8,-4],[11,-2],[11,-5],[5,-11],[-2,-7],[-4,-4],[-5,-2],[-4,-3],[-2,-10],[3,-4],[10,-1],[7,-6],[-2,-7],[-6,-5],[-8,-2],[-2,3],[-1,5],[-1,6],[-3,2],[-4,-2],[-41,-44],[-8,-7],[-43,-11],[-3,-8],[4,-3],[8,2],[4,-2],[2,-4],[0,-4],[-3,-2],[-34,-8],[-15,4],[-5,0],[10,28],[3,24],[6,7],[7,4],[4,6],[4,11],[5,-1],[7,-2],[7,4],[-2,1],[-6,3],[1,2],[2,4],[1,2],[-7,4],[-10,3],[-10,0],[-32,-19],[-7,-8],[-4,-9],[-5,-14],[-3,-15],[-2,-13],[-2,-5],[-4,-1],[-5,0],[-3,-2],[-10,-16],[-2,-6],[-4,-39],[-1,-6],[-1,-2],[-2,-6],[-2,-6],[-7,-5],[-2,-5],[-2,-7],[-2,-6],[-20,-20],[-7,-23],[-8,-7],[-17,-6],[-5,-5],[-1,-4],[4,-3],[6,0],[0,-4],[-3,-6],[0,-7],[3,-7],[4,-5],[-12,-5],[-5,-4],[-4,-7],[-7,-13],[-3,-6],[-5,-6],[-12,-8],[-6,-3],[-7,-1],[-15,2],[-4,-2],[4,-3],[2,0],[-3,-2],[-8,-3],[-9,0],[-8,-4],[-6,-3],[-6,-1],[-3,7],[0,8],[-4,8],[-2,4],[-3,-9],[-7,0],[-3,12],[-3,8],[4,11],[6,11],[1,11],[-1,9],[-10,4],[2,9],[5,7],[4,10],[4,8],[-8,9],[-3,8],[-3,8],[-6,6],[-3,9],[-1,8],[6,4],[8,-6],[10,-2],[2,8],[4,4],[4,3],[8,3],[1,3],[-2,4],[-12,-4],[-8,1],[0,6],[0,3],[3,7],[-9,-3],[-4,8],[4,8],[13,6],[10,5],[4,3],[4,6],[2,5],[0,2],[-1,8],[-3,-5],[-8,-10],[-8,2],[-4,-10],[-9,4],[-3,9],[-4,8],[-1,11],[2,4],[19,-13],[12,2],[2,7],[-4,4],[-15,5],[-3,3],[-1,5],[-1,7],[-1,4],[-3,3],[-3,0],[6,21],[10,11],[11,4],[11,1],[7,-2],[4,0],[3,4],[8,23],[1,2],[4,1],[3,-1],[2,-1],[2,1],[2,5],[-6,0],[4,11],[6,7],[38,19],[3,1],[8,-2],[4,1],[9,5],[3,3],[2,4],[1,4],[2,3],[4,1],[3,-3],[4,-11],[4,-2],[6,1],[4,2],[4,6],[5,9],[5,8],[12,12],[3,9],[3,8],[8,7],[8,5],[12,4],[7,6],[8,8],[5,8],[-8,7],[-6,-5],[-7,-9],[-9,-5],[-14,6],[-5,-2],[-3,-5],[2,-2],[10,-5],[-19,-9],[-5,-5],[-4,-6],[-26,-25],[-22,-10],[-11,-2],[3,2],[2,4],[2,4],[2,6],[-5,2],[1,3],[5,10],[2,4],[2,11],[1,3],[3,1],[13,-1],[3,1],[3,3],[4,8],[-20,8],[-10,10],[-4,2],[-4,-1],[-4,-3],[-2,-5],[-1,-9],[-2,-6],[-2,-3],[-2,-4],[2,-9],[-9,-3],[-8,-5],[-8,-9],[-6,-11],[4,-1],[4,0],[4,-1],[2,-5],[1,-7],[6,-8],[3,-7],[-3,-2],[-6,-2],[-3,0],[0,4],[4,4],[-9,10],[-6,2],[-4,-2],[-5,-7],[1,-6],[1,-6],[-1,-7],[-3,-4],[-17,-12],[-2,-1],[-7,-3],[-11,0],[-15,-8],[-6,-1],[-5,2],[2,5],[9,10],[16,6],[5,4],[1,2],[4,8],[8,12],[-5,4],[-12,7],[-5,2],[-3,3],[-3,8],[-4,3],[-4,-6],[8,-19],[-10,-19],[-29,-27],[-3,3],[-5,3],[-3,5],[2,8],[10,5],[7,12],[-17,12],[-2,6],[2,10],[4,5],[11,3],[10,9],[6,3],[7,0],[4,2],[6,6],[6,6],[3,7],[-6,4],[-19,0],[5,8],[2,8],[-2,4],[-7,0],[-10,-8],[-4,-2],[-1,6],[-6,6],[-2,2],[4,7],[4,6],[-22,8],[-10,9],[1,15],[6,5],[6,1],[12,-2],[3,-1],[3,-3],[3,-1],[3,3],[2,3],[3,3],[7,4],[0,4],[-5,0],[-8,-4],[-4,0],[-4,3],[-2,4],[-2,9],[-2,5],[-2,2],[0,4],[1,5],[2,4],[11,9],[25,47],[17,22],[-6,0],[-9,-7],[-8,-10],[-10,-19],[-14,-19],[-5,-2],[-5,-5],[-6,-4],[-6,-2],[-6,-1],[-6,2],[-4,4],[0,4],[5,2],[8,7],[11,16],[7,15],[-5,7],[6,9],[0,8],[-4,4],[-6,-1],[-3,-3],[-7,-10],[-3,-3],[-9,-6],[-3,-3],[-3,7],[-2,8],[1,9],[2,9],[-6,-4],[-3,-11],[-2,-13],[-3,-10],[-13,-31],[-5,-8],[-4,-3],[-2,-1],[-6,0],[-9,-7],[-4,-2],[1,7],[5,9],[10,13],[5,8],[-6,0],[2,4],[3,2],[2,2],[3,0],[0,5],[-6,4],[0,3],[1,1],[3,4],[-5,4],[-5,-3],[-4,-4],[-3,-2],[-4,3],[-11,14],[0,4],[5,9],[8,8],[8,5],[7,2],[8,4],[15,17],[9,4],[17,3],[16,9],[22,23],[32,16],[15,2],[4,2],[4,7],[2,3],[7,6],[2,2],[4,1],[9,7],[4,4],[1,4],[1,8],[1,4],[8,6],[19,-3],[8,5],[-7,1],[-11,9],[-6,2],[-15,-3],[-7,1],[-6,10],[8,11],[31,20],[7,2],[6,9],[8,6],[54,21],[101,12],[10,-4],[6,-1],[13,9],[12,-1],[12,-5],[8,-5],[30,-28],[17,-11],[18,-2],[40,8],[-2,3],[-1,3],[-2,3],[-1,3],[-36,-4],[-17,-7],[-8,2],[-5,13],[9,5],[18,-2],[9,2],[0,3],[-2,0],[-6,4],[1,6],[0,2],[1,1],[-24,3],[-13,-3],[-7,-9],[-6,7],[-7,8],[-7,7],[-8,3],[-28,-5],[-58,12],[-53,-13],[-131,-65],[-7,-1],[-8,10],[-6,-3],[12,-25],[4,-15],[-1,-17],[5,-4],[-4,-8],[-17,-20],[-16,-5],[-5,-6],[-6,-3],[-25,1],[-4,-3],[-8,-17],[-3,-4],[-11,-8],[-6,-3],[-7,-1],[-14,1],[-5,-2],[-23,-25],[-5,-2],[-4,3],[-12,21],[4,6],[12,14],[-2,4],[13,21],[2,5],[-3,4],[-7,-5],[-8,-8],[-9,-13],[-6,-5],[-6,-1],[-5,2],[-3,10],[2,4],[11,6],[-9,9],[-3,4],[10,17],[14,18],[12,21],[2,29],[-8,-11],[-7,-13],[-3,-12],[-3,-6],[-3,-3],[-4,-2],[-4,-4],[-4,-6],[-3,-6],[-1,-4],[0,-4],[-1,-2],[-3,-3],[-5,-3],[-2,-2],[-3,-6],[-2,-7],[-3,-5],[-4,-3],[-5,1],[-1,4],[-1,5],[-3,3],[-9,1],[-7,6],[-2,10],[4,15],[5,-1],[10,6],[19,20],[-9,-2],[-20,-13],[-9,2],[7,9],[35,25],[19,7],[9,8],[-7,4],[-9,-3],[-23,-18],[-16,-7],[-7,0],[4,20],[10,11],[22,13],[-10,4],[-4,0],[4,20],[-1,22],[-3,10],[-7,-15],[-11,-41],[-8,-17],[-11,-7],[-3,2],[-8,8],[-3,2],[-3,-1],[-7,-5],[-25,-10],[-52,6],[-14,6],[25,25],[15,6],[21,3],[8,4],[7,6],[11,14],[14,6],[6,5],[-7,4],[-3,0],[-4,0],[-3,-2],[-5,-5],[-22,-11],[-15,-14],[-12,-5],[-36,-4],[-6,2],[-1,5],[3,2],[10,0],[2,1],[5,6],[4,2],[4,6],[7,2],[7,5],[21,9],[5,5],[-10,-3],[-4,-1],[-5,4],[3,5],[7,17],[5,6],[12,3],[17,10],[11,4],[6,-2],[5,-4],[5,-2],[5,4],[-2,4],[-1,2],[-2,2],[5,8],[12,8],[21,8],[12,-4],[24,-20],[44,-12],[13,0],[6,-2],[5,-7],[1,-3],[0,-6],[1,-3],[1,-2],[3,-2],[3,1],[1,5],[2,8],[6,5],[11,6],[0,4],[-12,6],[-1,11],[8,13],[10,10],[61,30],[13,0],[13,-5],[12,-8],[19,-23],[9,-7],[8,5],[-9,15],[-22,19],[-6,6],[-4,9],[8,11],[9,8],[19,10],[0,3],[-18,-3],[-81,-39],[-26,-4],[-8,-5],[-8,-9],[-13,-36],[-5,-5],[-56,0],[-8,2],[-7,8],[-9,15],[-1,6],[6,10],[15,11],[-12,9],[-4,0],[-32,-27],[-6,-2],[-7,5],[-11,13],[-7,3],[1,-9],[6,-20],[-8,0],[-16,-13],[-22,-10],[-6,-7],[-11,-2],[-41,-19],[-8,0],[-7,2],[-7,4],[4,11],[6,2],[15,-4],[0,2],[-1,1],[-1,1],[-3,4],[-29,8],[0,4],[37,20],[10,8],[61,33],[-13,9],[-15,-9],[-17,-13],[-25,-11],[-37,-25],[2,4],[0,4],[-13,1],[-4,-1],[-3,-3],[-6,-8],[-3,-1],[-9,2],[-10,6],[-8,9],[-5,12],[7,1],[5,4],[5,6],[6,4],[7,2],[19,-5],[53,12],[-14,5],[-44,-9],[0,4],[2,2],[1,2],[3,4],[-37,-8],[-11,8],[23,25],[77,44],[30,12],[72,53],[6,18],[1,12],[4,7],[5,4],[55,34],[34,31],[33,5],[52,23],[15,-2],[6,2],[4,8],[-5,0],[-6,2],[-6,5],[-2,5],[2,8],[5,8],[8,9],[2,10],[9,14],[18,22],[10,7],[32,11],[30,18],[43,1],[4,2],[5,8],[-7,0],[-7,2],[-7,4],[-6,6],[18,15],[6,7],[5,4],[15,6],[2,4],[21,25],[7,4],[21,0],[17,-8],[6,0],[-6,9],[-7,7],[9,9],[17,-4],[45,-26],[48,6],[12,6],[6,1],[8,-2],[16,-8],[57,-3],[8,9],[-73,8],[-23,10],[-6,-4],[-9,-10],[-13,0],[-64,32],[13,18],[31,14],[19,14],[13,3],[11,10],[4,2],[10,1],[19,-7],[24,-1],[4,0],[49,-1],[47,-16],[20,0],[17,8],[-8,6],[-21,3],[-27,-3],[-6,2],[-19,11],[-17,1],[-23,-4],[-10,-5],[-3,0],[-3,0],[-5,1],[-17,9],[-17,-1],[0,4],[5,3],[10,7],[5,2],[20,0],[52,13],[5,4],[-10,5],[-76,-22],[-20,-13],[-13,-4],[-9,-6],[-4,-1],[-16,0],[-22,-5],[-56,-37],[-9,-2],[-13,0],[-3,-2],[-7,-10],[-30,-13],[-21,-21],[-18,-5],[-9,-6],[-61,-64],[-72,-36],[-15,-22],[-20,-46],[-12,-18],[-38,-21],[-6,0],[-117,-79],[-46,-59],[-33,-29],[-97,-52],[-27,-5],[-41,13],[-14,-1],[34,17],[12,0],[0,4],[-50,-12],[7,7],[9,12],[6,12],[1,9],[0,4],[14,12],[16,6],[41,4],[57,23],[-25,-4],[-22,5],[-7,-1],[-17,-11],[-28,-5],[-6,-4],[0,4],[-8,-5],[-11,-4],[-10,-1],[-6,4],[-9,14],[0,6],[3,4],[2,3],[1,3],[-4,11],[-11,4],[-2,11],[0,7],[2,4],[1,3],[2,4],[4,16],[2,5],[6,-4],[5,4],[9,18],[5,8],[6,5],[13,6],[0,4],[-8,0],[-11,-8],[-10,-12],[-11,-18],[-2,5],[0,10],[0,4],[2,7],[11,7],[4,5],[-13,12],[3,4],[29,12],[34,0],[3,2],[3,3],[2,3],[12,-8],[11,-3],[21,-1],[0,-4],[-40,4],[7,-7],[9,-4],[27,-6],[8,1],[4,3],[8,7],[49,19],[33,4],[5,-2],[8,-6],[91,-9],[4,2],[4,8],[4,2],[0,5],[-12,5],[-44,-5],[-30,8],[-22,-1],[-5,4],[0,4],[-46,0],[-9,-2],[-19,-11],[-9,-2],[-29,1],[-12,5],[-39,6],[-6,8],[4,1],[8,6],[5,1],[7,0],[3,3],[1,9],[-5,0],[-2,-1],[-2,-3],[-7,4],[-19,-8],[-8,4],[3,3],[12,5],[0,4],[-2,1],[-6,3],[9,4],[39,29],[7,2],[7,0],[14,-6],[25,1],[5,-4],[6,-6],[62,10],[12,9],[6,2],[28,-9],[9,1],[-1,2],[-1,2],[4,3],[4,1],[9,0],[-3,3],[-2,5],[1,6],[2,6],[-23,-4],[-6,1],[-17,7],[-10,-1],[-54,-23],[-6,1],[-10,5],[-6,2],[-15,-2],[-5,2],[-19,16],[4,2],[13,-6],[18,3],[9,-2],[4,1],[7,6],[5,1],[48,1],[15,9],[4,2],[10,-1],[4,2],[13,13],[-1,6],[-4,10],[-4,3],[-4,-2],[-8,-7],[-19,-5],[-5,1],[-10,6],[-4,1],[-20,-4],[-44,-29],[-4,3],[1,7],[5,6],[5,3],[4,2],[0,4],[-3,1],[-7,4],[15,16],[9,6],[8,2],[18,-11],[9,-2],[0,13],[108,-2],[41,-22],[12,-2],[12,5],[6,13],[-27,-3],[-7,3],[-12,14],[-4,3],[-10,0],[-5,3],[6,3],[37,6],[5,4],[-1,0],[-2,2],[-1,1],[1,3],[3,10],[-7,-2],[-13,-5],[-31,-3],[-6,5],[2,5],[1,5],[-2,4],[-3,2],[7,9],[8,8],[0,4],[-11,-1],[-8,-9],[-13,-22],[-10,-9],[-55,-12],[-7,2],[-16,10],[-51,0],[1,6],[0,3],[-9,3],[-73,-7],[-5,-3],[-4,-1],[-17,3],[-54,-4],[-11,4],[2,6],[2,3],[6,3],[-6,4],[-28,6],[-10,9],[-5,2],[-1,2],[0,4],[1,4],[2,2],[16,0],[35,-8],[59,8],[30,-8],[14,2],[13,6],[-9,6],[-86,6],[-4,-2],[-8,-8],[-4,-2],[-5,1],[-15,11],[-24,2],[-11,5],[0,14],[-4,8],[6,5],[19,3],[42,-4],[44,15],[7,5],[2,5],[-9,-1],[-34,-12],[-115,-8],[6,9],[2,3],[-2,0],[-6,4],[8,6],[5,2],[4,0],[-5,4],[2,3],[2,3],[3,2],[2,0],[-7,4],[-2,0],[5,5],[3,0],[4,-1],[5,1],[1,2],[1,4],[1,4],[1,2],[2,1],[36,10],[83,2],[8,7],[-6,0],[-13,4],[-23,-3],[-8,1],[-7,6],[8,7],[11,5],[10,2],[18,-8],[10,2],[19,8],[67,4],[5,2],[9,8],[5,2],[21,-3],[12,6],[9,3],[8,5],[68,18],[6,-1],[11,-6],[6,-1],[5,1],[3,3],[2,4],[3,4],[9,6],[42,9],[21,9],[12,0],[28,-17],[137,-7],[18,-9],[8,-8],[6,-9],[6,-16],[1,-5],[1,-5],[10,-9],[20,-39],[7,-9],[10,-6],[18,-7],[10,0],[38,11],[18,11],[13,3],[18,9],[44,6],[70,-11],[19,8],[1,3],[-1,0],[-1,0],[0,1],[1,0],[-5,3],[-4,0],[-10,-3],[-4,1],[-12,7],[-10,10],[-4,2],[-85,-17],[-78,-35],[-20,3],[-8,6],[-7,8],[-20,31],[-16,15],[-6,14],[-8,26],[-6,10],[-8,4],[-5,1],[-6,2],[-4,5],[1,8],[4,4],[66,8],[21,13],[11,1],[5,3],[5,8],[-119,-20],[-119,-20],[-11,3],[-28,22],[-10,3],[-78,-18],[-15,-9],[-8,-2],[-17,0],[-12,-7],[-69,-19],[-69,-20],[-33,9],[3,9],[10,11],[4,9],[-5,-1],[-17,-9],[-13,-12],[-13,-16],[-11,-4],[-35,0],[-24,-11],[-22,-16],[-26,-13],[-11,1],[0,4],[10,8],[-6,4],[-16,-4],[-7,4],[2,3],[2,2],[3,2],[3,1],[0,4],[-6,1],[-6,3],[2,9],[4,4],[1,5],[-4,16],[2,3],[8,4],[-6,11],[2,10],[8,9],[8,6],[-2,2],[-6,7],[5,7],[6,7],[7,4],[5,2],[3,2],[4,7],[3,3],[2,1],[6,-1],[13,15],[14,7],[28,6],[19,11],[6,2],[2,1],[8,10],[11,8],[51,17],[7,4],[-10,5],[-19,-13],[-9,4],[33,26],[24,5],[12,6],[22,20],[-14,-1],[-8,-3],[-10,-11],[-9,-3],[-8,-1],[-5,3],[7,12],[9,9],[19,11],[22,8],[22,0],[6,-2],[10,-8],[5,-2],[41,7],[10,4],[8,9],[-61,-6],[-21,6],[11,5],[41,1],[24,11],[41,0],[8,-4],[16,-13],[21,-6],[33,-18],[2,-1],[7,0],[2,1],[0,2],[0,4],[0,4],[2,3],[5,-1],[11,-10],[10,-4],[12,-8],[8,-3],[2,-1],[5,-4],[2,-4],[-1,-4],[-1,-3],[0,-4],[7,-5],[30,-2],[62,16],[36,-1],[6,5],[-7,3],[-2,1],[0,4],[18,-1],[9,-2],[17,-14],[57,-26],[9,-8],[5,-2],[11,1],[4,-3],[3,-5],[13,-9],[24,-25],[7,-3],[5,-1],[5,-3],[8,-7],[5,-2],[17,0],[15,-7],[5,-1],[5,1],[11,6],[5,1],[72,-10],[8,-6],[1,4],[-3,4],[8,7],[20,7],[9,7],[-7,-1],[-13,-6],[-39,-6],[-7,2],[-22,11],[-46,-4],[-53,21],[-23,26],[-13,5],[0,4],[7,2],[12,8],[56,16],[45,28],[28,9],[11,12],[6,4],[8,0],[15,-6],[26,-3],[7,-5],[-2,-2],[-2,-3],[-2,-7],[24,-6],[12,1],[10,9],[-10,5],[-19,7],[-19,12],[-50,2],[-9,-2],[-35,-22],[-17,-5],[-24,-17],[-19,-7],[-19,-1],[-36,-12],[-42,-5],[0,5],[8,1],[15,11],[7,4],[-7,5],[-8,0],[-22,-7],[-19,2],[-5,2],[-46,30],[-9,0],[1,6],[1,4],[2,2],[3,0],[4,-1],[2,-2],[2,-3],[2,-1],[7,-1],[18,4],[29,-6],[17,2],[9,12],[-4,0],[0,4],[57,15],[11,11],[12,5],[10,12],[6,2],[62,-1],[18,-11],[6,0],[7,2],[5,4],[1,6],[5,12],[-11,-3],[-15,1],[-15,4],[-12,6],[2,14],[-4,8],[-8,3],[-7,-4],[2,-2],[4,-5],[1,-1],[-9,-4],[-20,6],[-7,-2],[-5,5],[-31,13],[-9,1],[-9,-5],[-5,-10],[6,0],[0,-4],[-18,-8],[-3,-5],[4,-5],[7,1],[12,4],[10,9],[4,1],[7,-1],[17,-13],[6,0],[-15,-6],[-5,-6],[3,-4],[-37,-3],[-7,-9],[11,0],[-9,-7],[-10,1],[-10,5],[-7,1],[-4,-4],[-5,-12],[-4,-4],[-5,-1],[-15,5],[-7,-2],[-12,-5],[-7,-1],[-5,1],[-14,11],[0,4],[12,8],[5,0],[-7,5],[-7,3],[-6,5],[-3,13],[-4,10],[-21,5],[-5,8],[8,0],[32,10],[41,3],[3,-3],[3,-4],[7,-8],[3,-2],[7,0],[5,4],[0,8],[-5,8],[2,1],[4,3],[-21,12],[2,7],[0,7],[-2,4],[-4,3],[6,3],[-57,-7],[-7,-7],[-5,-8],[-7,-7],[-8,-5],[-6,-2],[-8,1],[-3,2],[-9,7],[-10,2],[-6,4],[-3,-2],[-13,-3],[-6,-3],[3,-9],[15,-11],[6,-6],[4,-14],[5,-3],[11,-1],[5,-2],[16,-11],[4,-8],[-7,-12],[-11,-12],[-3,-8],[5,-9],[0,-4],[-12,1],[-6,-2],[-8,-9],[-6,-2],[-6,1],[-4,3],[8,3],[7,6],[2,5],[-7,3],[-5,-2],[-11,-7],[-4,1],[-4,2],[-4,0],[-4,-5],[-5,-8],[-7,-8],[-7,-6],[-6,-4],[-9,-2],[-10,1],[-9,5],[-5,9],[6,0],[0,3],[-7,0],[-4,1],[-3,3],[9,11],[9,5],[39,-1],[4,4],[0,6],[-4,3],[-7,1],[-6,3],[-11,1],[-21,-5],[-4,-3],[-3,-4],[-4,-7],[-4,-3],[-103,10],[-9,6],[-10,18],[-9,4],[-3,3],[3,6],[4,6],[6,8],[16,6],[4,3],[8,7],[10,5],[3,1],[3,-1],[0,-3],[-2,-3],[-3,-1],[65,4],[4,2],[10,8],[12,4],[18,12],[9,2],[18,0],[10,2],[8,6],[-1,4],[2,3],[7,6],[-10,5],[-63,-22],[-23,-16],[-9,-3],[-71,-2],[-9,-2],[-7,-7],[-3,-3],[-33,-9],[-5,-2],[-2,-5],[-6,-11],[-3,-5],[-4,-4],[-5,-3],[-20,-4],[-20,-11],[-10,-2],[-45,4],[-4,-2],[-6,-9],[-4,-1],[-3,-1],[-4,-3],[-3,0],[-9,0],[-17,-7],[-16,-13],[-75,-83],[-68,-46],[-25,-9],[-3,0],[-3,3],[4,7],[-2,2],[-6,0],[-6,5],[-1,4],[5,15],[-4,1],[-4,4],[0,5],[2,6],[-6,7],[5,6],[41,22],[8,2],[0,4],[-38,-9],[30,16],[10,9],[-2,2],[-2,2],[3,4],[3,6],[1,5],[-2,2],[-1,8],[-4,5],[-1,5],[5,6],[-5,-1],[-5,2],[-5,4],[-9,11],[-5,3],[-13,1],[4,9],[26,11],[11,10],[4,2],[4,0],[4,-3],[4,0],[4,3],[-2,2],[0,2],[3,0],[3,-2],[2,-5],[1,-7],[-1,-8],[-3,-3],[-9,1],[0,-4],[7,-3],[14,6],[7,1],[-2,-4],[-4,-3],[-3,-1],[-4,0],[0,-4],[48,5],[9,11],[-39,2],[-12,6],[0,4],[3,5],[12,8],[-7,4],[-16,0],[-7,4],[6,8],[8,3],[15,1],[2,-1],[9,-7],[8,0],[3,-2],[2,-6],[-2,-3],[-4,-3],[-3,-4],[0,-5],[3,-3],[7,-3],[3,-2],[5,-1],[21,3],[0,4],[-16,-1],[-8,2],[-4,7],[38,20],[8,1],[14,-6],[5,2],[-10,9],[-10,6],[-11,1],[-11,-4],[-13,-8],[-3,0],[-1,1],[-1,3],[0,3],[-2,1],[-6,1],[-2,1],[-3,2],[4,2],[9,1],[3,3],[4,5],[5,2],[9,-1],[-12,6],[-5,3],[-3,7],[4,2],[14,2],[11,-4],[24,9],[51,3],[-7,5],[-16,7],[-7,1],[-3,-2],[-3,-5],[-4,-1],[-63,0],[2,5],[1,5],[0,5],[-3,5],[9,2],[14,12],[38,10],[87,-57],[27,-4],[2,-1],[0,-2],[0,-3],[1,-2],[9,-2],[13,6],[78,-8],[11,-7],[4,-1],[6,1],[13,6],[6,1],[5,3],[11,18],[0,3],[-7,0],[-8,-3],[-14,-11],[-10,-4],[-77,11],[-77,10],[-20,11],[-50,42],[-36,20],[-8,10],[5,7],[13,8],[5,5],[-4,7],[-5,4],[-5,0],[-5,-3],[-1,-10],[-7,-4],[-17,-2],[-8,-8],[-4,-2],[-4,4],[0,5],[3,5],[3,5],[3,3],[-6,2],[-12,-8],[-6,-2],[-30,0],[42,20],[43,8],[11,-1],[10,-4],[20,-15],[9,-4],[22,-2],[7,-6],[5,1],[9,-5],[16,-13],[9,-4],[55,-9],[23,-16],[9,-1],[7,6],[-7,1],[-27,14],[-4,4],[-1,5],[5,5],[-7,4],[-23,-4],[-5,2],[-1,3],[1,4],[1,3],[-5,2],[-10,2],[-4,4],[2,3],[1,1],[0,4],[-6,3],[-11,-6],[-7,-1],[2,0],[-7,-1],[-1,6],[2,8],[5,3],[14,4],[4,-1],[9,-6],[4,-1],[22,2],[8,-2],[23,-15],[8,-1],[1,-4],[14,-4],[18,-11],[17,-5],[18,-16],[10,-4],[21,0],[11,-3],[20,-16],[12,-4],[99,7],[100,7],[13,-3],[7,-4],[10,-13],[13,-5],[18,-11],[26,-10],[12,-9],[41,-12],[6,-4],[2,-4],[18,-18],[4,-2],[10,-2],[-1,4],[3,3],[4,1],[8,0],[3,1],[5,6],[3,1],[68,-13],[15,5],[9,16],[-42,-8],[-4,2],[-8,5],[-34,5],[-11,8],[-4,1],[-8,-1],[-4,1],[-3,4],[2,2],[2,4],[2,4],[1,6],[-12,3],[-25,-7],[-12,4],[7,4],[4,5],[1,5],[-7,6],[-8,2],[-17,-4],[-9,2],[-10,7],[-18,2],[-4,3],[-3,3],[-4,6],[-3,3],[-4,3],[-10,2],[-5,3],[7,6],[24,10],[0,5],[-10,-2],[-19,-9],[-10,-2],[-7,1],[-3,3],[-1,7],[-2,4],[-4,2],[-9,0],[-4,2],[-9,11],[-4,3],[-4,-2],[-5,-4],[-4,-2],[-10,11],[-15,5],[-5,4],[-9,11],[-5,1],[0,4],[122,-16],[8,2],[3,3],[-2,5],[-13,12],[-7,2],[-7,1],[-15,-5],[-7,2],[-13,17],[-7,2],[-40,-1],[-7,5],[5,6],[6,2],[33,3],[4,3],[5,5],[10,4],[2,5],[0,3],[0,6],[0,3],[1,4],[6,12],[-2,3],[-2,2],[-2,4],[-1,4],[5,0],[-4,2],[-5,2],[-4,3],[-2,7],[2,7],[3,4],[46,19],[16,2],[4,2],[13,17],[7,4],[8,-4],[-6,-3],[-5,-5],[5,-1],[9,4],[8,6],[4,7],[-21,7],[-106,-55],[-25,3],[-30,-8],[-9,1],[-22,12],[-8,1],[-7,-2],[-15,-8],[8,-5],[16,-5],[14,-18],[8,-4],[47,4],[10,-6],[12,-16],[4,-9],[-7,-6],[3,-4],[3,0],[-25,-8],[-93,-5],[-9,-6],[-5,-1],[-9,0],[-5,-1],[-8,-10],[-4,0],[-10,3],[-63,-8],[-13,-8],[-10,-3],[-25,2],[-15,-13],[-45,-10],[-7,2],[-6,5],[-4,0],[13,14],[4,7],[-6,5],[-16,5],[-7,4],[-4,7],[3,5],[6,5],[5,5],[-9,3],[-27,-11],[-32,4],[-11,-4],[2,0],[13,-7],[20,-2],[7,-4],[5,-7],[-11,-11],[-13,-5],[-14,0],[-12,4],[-2,1],[-3,5],[-2,2],[-4,0],[-7,-4],[-3,0],[-5,3],[2,5],[11,8],[-12,-1],[-6,1],[-5,4],[5,9],[8,7],[38,16],[12,1],[9,-7],[3,2],[3,3],[4,1],[-1,3],[-1,4],[0,2],[9,-1],[4,2],[0,6],[1,0],[2,0],[1,0],[0,4],[-29,-8],[-27,0],[-12,-12],[-67,-17],[-18,1],[-9,4],[-9,7],[-5,0],[-10,-10],[-14,-2],[-9,-10],[-4,2],[-3,6],[-3,7],[7,-3],[2,2],[2,5],[-12,11],[-3,6],[26,11],[14,1],[12,-5],[16,-12],[9,-5],[7,1],[17,16],[18,3],[4,4],[4,5],[6,4],[12,5],[19,0],[6,4],[-4,2],[-5,3],[-3,3],[2,5],[3,3],[3,1],[4,-1],[1,6],[16,0],[6,4],[4,5],[11,8],[21,5],[2,0],[3,-3],[2,-1],[1,2],[1,3],[0,3],[0,1],[24,-4],[7,4],[-16,16],[19,7],[6,1],[-7,5],[-9,0],[-35,-8],[-10,2],[-9,5],[7,6],[118,27],[3,-3],[2,-3],[2,-3],[3,-4],[3,-2],[3,-2],[4,0],[3,0],[-1,3],[0,1],[0,2],[-1,2],[42,18],[22,3],[20,-8],[-10,-6],[-32,-3],[0,-4],[14,0],[0,-4],[-4,0],[-3,-2],[-2,-2],[-3,-4],[7,-4],[19,-8],[6,2],[6,5],[5,4],[13,1],[33,-8],[19,1],[10,11],[0,7],[5,5],[7,2],[5,-2],[0,-4],[-9,-8],[0,-4],[13,6],[13,2],[11,-3],[5,2],[3,9],[-17,0],[0,4],[7,5],[9,4],[9,0],[8,-4],[-4,-5],[42,-4],[7,9],[-2,0],[-5,4],[15,11],[5,1],[0,-3],[0,-5],[-2,-5],[-3,-3],[11,0],[5,3],[0,6],[-2,7],[0,7],[2,6],[4,3],[4,6],[-5,12],[-14,23],[7,0],[7,-4],[16,-14],[7,-11],[3,-10],[2,-4],[3,-2],[9,-4],[5,0],[3,6],[-2,5],[-6,5],[-2,4],[3,6],[15,6],[5,5],[-27,-7],[-7,2],[1,3],[0,2],[1,1],[1,2],[-2,7],[-3,1],[-4,-1],[-4,2],[-2,3],[-6,17],[31,20],[27,4],[5,8],[0,8],[31,17],[-25,6],[-12,0],[-11,-6],[-12,-13],[-21,-13],[-20,-21],[-4,-2],[-23,-8],[-37,8],[-12,0],[3,8],[5,4],[5,2],[6,4],[3,6],[2,6],[3,5],[5,2],[-2,6],[-6,7],[-3,7],[10,7],[22,5],[9,10],[7,9],[15,14],[7,8],[-8,-2],[-11,-5],[-9,-8],[-3,-10],[-6,-4],[-16,0],[-8,-4],[0,1],[0,1],[-1,1],[-1,1],[0,4],[3,6],[3,5],[17,13],[4,5],[2,6],[-1,17],[-2,13],[-4,12],[-7,13],[4,2],[8,-1],[4,2],[-5,16],[-3,7],[-4,6],[13,4],[4,5],[-5,11],[80,-2],[12,-5],[1,-13],[-7,-7],[-37,-5],[-7,-17],[-5,-2],[-8,-1],[-5,-4],[19,-5],[6,0],[0,5],[-2,0],[0,4],[58,22],[19,-6],[-3,-10],[-1,-3],[5,-3],[4,3],[4,3],[4,-1],[13,-12],[4,-2],[-3,-11],[-1,-6],[1,-6],[3,-9],[0,-5],[0,-5],[0,-5],[3,-1],[16,-4],[7,-4],[8,-3],[3,-3],[2,-6],[0,-3],[2,-1],[5,-1],[7,1],[4,4],[0,6],[-6,7],[-2,5],[-1,5],[-1,6],[-1,3],[-4,3],[-4,-1],[-8,-2],[-7,0],[-4,1],[-4,3],[-1,4],[-2,10],[-2,2],[-1,2],[1,4],[3,6],[5,4],[6,2],[6,-1],[4,-3],[9,-15],[5,-3],[5,8],[-6,14],[6,13],[10,6],[9,-4],[3,-11],[-2,-12],[-5,-11],[-5,-7],[14,-15],[7,-2],[5,9],[-2,2],[-3,4],[-2,2],[4,9],[1,5],[-2,6],[7,-2],[3,0],[2,2],[0,4],[-10,20],[-3,5],[-10,5],[-46,-11],[-24,5],[-46,25],[-4,8],[10,8],[45,-8],[30,4],[19,-6],[5,0],[7,9],[4,3],[6,3],[16,4],[5,3],[6,12],[3,13],[-2,11],[-8,5],[-5,-2],[-4,-4],[-3,-6],[-4,-4],[-6,-3],[-17,-1],[2,0],[-7,0],[-12,3],[-6,1],[-12,-4],[-6,1],[-5,7],[6,10],[2,2],[-3,2],[-1,2],[-2,4],[3,3],[0,3],[-2,1],[-3,1],[3,9],[-1,7],[-2,6],[0,7],[5,6],[17,6],[7,8],[-18,5],[-16,-11],[-31,-31],[11,-5],[5,-6],[0,-7],[-3,-5],[-4,-4],[-7,-5],[0,-1],[0,-3],[-4,1],[-10,-1],[-5,4],[5,4],[0,4],[-12,-2],[-22,-18],[-18,-6],[-11,-8],[-5,-2],[-7,-1],[-25,4],[-2,0],[-2,3],[-2,3],[-2,3],[-17,4],[-6,3],[0,3],[10,10],[-2,2],[-3,4],[-1,2],[4,3],[3,0],[8,-3],[3,3],[4,11],[3,2],[20,2],[20,6],[-7,9],[-17,1],[-6,5],[-4,13],[5,5],[17,0],[-1,6],[-1,2],[7,1],[11,-8],[5,3],[-16,24],[-1,9],[4,6],[7,3],[2,7],[1,8],[-2,3],[-2,2],[-2,7],[30,8],[13,9],[7,1],[7,-4],[11,-9],[13,-8],[14,-5],[11,0],[0,4],[-3,3],[-2,4],[-2,6],[-2,7],[13,8],[14,4],[36,-5],[8,2],[16,11],[-7,5],[-31,-5],[-3,2],[-3,4],[-6,9],[-3,1],[-15,-3],[-8,-5],[-16,-15],[-9,-5],[-7,-4],[-13,0],[-14,2],[-9,6],[4,4],[4,1],[9,0],[-15,5],[-14,-9],[-13,-12],[-11,-5],[-6,5],[-2,10],[2,10],[6,4],[5,2],[6,6],[5,8],[-1,8],[0,9],[-4,8],[-5,7],[-5,8],[20,15],[23,-3],[75,-28],[4,4],[-4,8],[-7,8],[-3,8],[7,5],[-21,-6],[-6,1],[-17,14],[-8,3],[-32,-5],[-16,3],[-9,18],[9,11],[24,6],[11,5],[13,15],[4,11],[4,5],[5,-1],[13,-6],[28,-3],[20,-8],[23,2],[12,-3],[5,0],[6,3],[-16,7],[-5,5],[-3,4],[-5,14],[-4,5],[-3,2],[-1,3],[2,6],[2,4],[2,4],[0,4],[-1,7],[-8,10],[-11,4],[-31,3],[-21,8],[-9,7],[7,12],[-5,4],[7,12],[60,2],[13,5],[24,18],[-7,12],[-11,5],[-40,-5],[-4,2],[-4,8],[-2,2],[-4,0],[-2,-2],[-1,-3],[-3,-3],[-3,-2],[-60,-26],[-24,-4],[-37,-16],[-89,0],[-7,4],[9,0],[7,5],[12,15],[5,1],[5,-1],[4,1],[4,5],[7,12],[2,2],[10,-1],[4,-3],[5,-4],[2,-4],[3,-6],[2,-5],[3,-2],[34,17],[-11,9],[-23,-4],[-10,7],[2,0],[5,4],[0,4],[-11,5],[-52,4],[-7,-1],[-4,-3],[-2,-3],[-5,-10],[-27,-33],[-16,-13],[-9,5],[-23,-1],[-5,6],[1,4],[7,13],[3,7],[-2,2],[-3,2],[-4,-1],[-12,-7],[-5,-1],[-58,4],[-25,-7],[-12,0],[-12,5],[-14,19],[-5,0],[-6,-3],[-25,-3],[-24,9],[-6,1],[-1,-1],[-3,-2],[-2,-1],[-2,1],[-4,6],[-10,6],[-24,36],[-10,11],[-5,4],[-6,1],[-3,3],[-3,6],[-2,7],[-2,6],[-9,11],[-87,41],[-86,40],[-84,8],[-85,8],[-50,19],[-16,22],[-10,8],[-20,8],[0,7],[-4,9],[-5,9],[-30,32],[-37,27],[-22,22],[-4,3],[-6,0],[-10,-4],[-5,0],[0,4],[7,8],[4,5],[2,6],[0,7],[1,6],[2,3],[3,4],[10,8],[23,9],[32,25],[23,12],[24,7],[49,0],[13,-6],[12,-3],[19,-12],[14,-1],[28,4],[7,-2],[18,-15],[41,-11],[67,12],[112,-9],[94,-32],[50,-40],[41,-20],[8,-10],[12,-9],[24,-12],[34,-25],[46,-19],[35,-26],[39,2],[60,-19],[36,-21],[65,-6],[48,-18],[13,-1],[12,5],[10,15],[-3,8],[-3,6],[-4,4],[-5,3],[-7,1],[-7,-3],[-7,0],[-6,6],[7,8],[17,17],[1,12],[5,7],[16,14],[4,1],[0,3],[2,2],[1,3],[-2,6],[-2,2],[-6,5],[-3,1],[-6,-3],[-12,-14],[-11,-7],[-3,-16],[-4,-4],[-7,-2],[-14,-19],[-8,-4],[-61,2],[-18,9],[-10,18],[42,0],[-6,9],[-11,7],[-21,8],[-31,-5],[-9,5],[-5,14],[-24,13],[-6,9],[8,7],[25,14],[6,9],[4,4],[3,-1],[2,-5],[0,-5],[0,-6],[-2,-4],[6,-8],[9,-5],[26,-7],[17,-14],[9,-3],[7,0],[3,-2],[1,-8],[2,-2],[3,0],[3,2],[2,2],[1,11],[-4,7],[-6,6],[-3,8],[6,0],[28,-14],[14,-2],[-8,11],[-9,6],[-19,7],[3,5],[5,6],[1,6],[-5,0],[-11,-7],[-6,-1],[-5,1],[-17,7],[6,15],[12,10],[14,4],[34,-8],[10,-12],[6,-3],[17,-2],[3,1],[1,4],[-3,7],[-6,6],[-73,23],[-51,-17],[0,4],[6,6],[0,7],[-2,9],[0,11],[6,15],[1,7],[-5,2],[-6,-4],[-6,-8],[-13,-24],[-2,-2],[-4,-3],[-5,-1],[-53,3],[-8,7],[-5,13],[2,9],[6,5],[8,1],[14,-1],[7,1],[6,4],[3,5],[1,5],[0,5],[1,6],[4,7],[2,2],[23,-5],[19,-11],[17,0],[8,-2],[53,-37],[37,-9],[7,4],[3,3],[3,7],[2,5],[-2,3],[-21,0],[-7,7],[1,17],[-44,14],[-5,5],[-1,6],[-1,7],[6,8],[14,13],[-10,4],[-15,-3],[-15,-7],[-11,-8],[-11,-6],[-14,2],[-14,8],[-10,10],[5,4],[0,4],[-74,13],[-22,13],[-15,-1],[-7,4],[-13,15],[-70,36],[-12,1],[3,5],[10,8],[5,6],[3,3],[4,3],[10,2],[87,-32],[86,-31],[59,1],[11,6],[6,7],[1,15],[4,7],[-79,-4],[-14,4],[-17,11],[-29,5],[-16,8],[-3,4],[4,7],[11,5],[39,-8],[-7,5],[-9,1],[-9,3],[-4,12],[48,16],[0,4],[-33,0],[-46,-19],[-46,-2],[-11,5],[-6,7],[-3,4],[-5,1],[-22,-2],[-2,-2],[-5,-3],[-27,-7],[-11,-8],[-6,-2],[-42,2],[-13,8],[-5,6],[-1,5],[3,4],[7,3],[20,5],[6,3],[5,5],[11,18],[9,9],[34,20],[26,5],[52,-4],[14,3],[7,5],[5,6],[1,6],[0,7],[-1,7],[-2,3],[-37,14],[-6,6],[7,5],[3,3],[4,4],[-30,-4],[-84,-67],[-23,-9],[-28,-22],[-30,-11],[-23,-14],[-16,-3],[-9,1],[-5,3],[-5,6],[-2,9],[1,7],[5,9],[11,12],[40,6],[18,11],[8,10],[4,14],[-4,13],[-6,10],[-2,9],[9,9],[39,20],[20,3],[4,2],[9,8],[5,4],[9,0],[17,8],[76,9],[53,-10],[11,6],[-4,8],[7,5],[6,8],[-3,5],[-6,2],[-84,8],[-118,-37],[-37,-25],[-25,-6],[-26,-14],[-79,15],[-78,14],[0,5],[4,2],[3,2],[5,6],[12,8],[21,6],[6,4],[19,22],[11,7],[122,32],[34,-4],[99,18],[6,4],[5,6],[4,7],[7,16],[7,8],[6,14],[2,13],[-6,3],[2,4],[-27,0],[-7,-4],[-4,-1],[-3,-6],[-6,-15],[-9,-13],[-10,-7],[-74,-23],[-113,15],[1,8],[1,8],[1,7],[-1,7],[-4,4],[-6,0],[-10,-7],[-7,-3],[-84,9],[-83,9],[1,0],[-1,1],[-1,1],[1,2],[14,10],[29,29],[30,9],[15,9],[14,14],[12,19],[-10,5],[-5,3],[-2,7],[2,12],[6,5],[15,4],[4,6],[6,15],[5,7],[13,10],[13,7],[0,4],[-17,5],[-8,-1],[-14,-19],[-53,-33],[-5,-7],[2,-9],[3,-13],[5,-11],[4,-6],[0,-3],[-67,-22],[-11,-7],[-10,-9],[-4,-3],[-4,0],[-3,-3],[-3,0],[-4,3],[-3,3],[11,19],[3,10],[1,14],[-2,11],[-12,17],[-4,19],[-5,12],[-1,6],[-1,4],[-1,5],[0,3],[0,4],[2,3],[1,4],[2,6],[1,5],[1,4],[-3,7],[-2,4],[-20,17],[-61,29],[-7,13],[0,5],[0,7],[0,6],[-3,2],[-1,3],[-8,41],[-3,10],[-4,7],[-1,7],[-5,3],[-6,2],[-3,4],[-1,11],[4,5],[20,6],[51,0],[8,3],[0,4],[-88,-3],[-14,-4],[-11,-14],[10,-14],[13,-14],[10,-16],[-2,-20],[2,-8],[0,-8],[0,-8],[1,-9],[7,-14],[9,-10],[49,-38],[10,-11],[5,-10],[13,-33],[4,-12],[1,-12],[3,-11],[6,-11],[11,-13],[3,-6],[1,-6],[-4,-6],[-4,-4],[-4,-2],[-3,-3],[-11,-17],[-41,-26],[-11,-3],[-42,7],[-16,0],[-8,-10],[12,0],[15,-3],[14,-8],[10,-14],[3,-15],[-4,-11],[-8,-7],[-10,-3],[-31,4],[-5,3],[-10,14],[-4,3],[-2,3],[-1,7],[-3,7],[-4,3],[-12,4],[-6,1],[-6,-5],[11,-7],[3,-6],[2,-9],[-2,-8],[-10,-9],[-4,-5],[6,0],[5,-3],[8,-10],[21,-8],[18,-11],[8,-9],[5,-12],[-1,-12],[-2,-13],[-4,-12],[-3,-8],[-8,-11],[-11,-8],[-35,-8],[-35,-18],[-19,-2],[-12,-7],[-12,-1],[-21,-7],[-32,3],[-21,-11],[-7,1],[-13,4],[-7,0],[-12,-4],[-6,0],[2,0],[-10,2],[-31,17],[-5,5],[-2,6],[4,7],[-12,12],[-31,-1],[-14,5],[-17,23],[-11,9],[-6,-7],[2,-4],[7,-13],[4,-5],[11,-9],[13,-17],[4,-10],[-5,-4],[-42,1],[-32,15],[-14,15],[-17,10],[-11,19],[-30,69],[-3,9],[-1,10],[1,2],[10,-4],[5,1],[5,1],[9,7],[-4,4],[-50,9],[-12,5],[-23,3],[-4,3],[7,13],[8,10],[17,13],[16,5],[47,-5],[-1,4],[-2,9],[-1,4],[31,18],[11,2],[39,-22],[7,6],[-9,4],[-22,24],[-2,14],[5,12],[8,8],[8,3],[125,15],[82,71],[8,12],[4,15],[-1,2],[-2,11],[0,2],[0,3],[1,2],[4,3],[3,5],[3,13],[6,11],[4,15],[3,7],[3,3],[12,8],[-7,6],[-7,-5],[-13,-17],[-13,-11],[-4,-10],[4,-15],[-3,-4],[-8,-5],[-4,-3],[-2,-4],[-3,-8],[-3,-5],[-3,-3],[-3,-3],[-3,-3],[-2,-7],[1,-8],[2,-6],[2,-4],[1,-2],[-4,-4],[-17,-4],[-26,-24],[-19,-11],[-8,-8],[-7,-4],[-97,-3],[-76,34],[-18,3],[3,5],[5,4],[3,5],[2,9],[3,6],[32,12],[29,-1],[14,5],[-8,6],[-28,6],[7,12],[42,21],[37,28],[3,0],[7,13],[50,24],[-13,9],[-4,7],[-2,13],[8,6],[3,5],[3,8],[-5,1],[-3,3],[-3,5],[-3,8],[8,5],[11,0],[30,-9],[25,8],[-5,4],[-6,0],[-11,-4],[-40,7],[-10,6],[-8,11],[6,5],[13,1],[6,6],[-20,-4],[-13,3],[-5,-2],[0,-9],[-7,-5],[-23,-3],[-17,-14],[-4,-2],[-5,-4],[-6,2],[-12,6],[0,4],[12,4],[0,4],[-6,0],[-5,4],[-4,6],[-3,10],[2,4],[-2,4],[1,11],[-3,6],[-5,0],[-2,-6],[-2,-11],[-2,-8],[-1,-6],[5,-6],[-4,-3],[-4,2],[-3,4],[-4,1],[-6,-2],[-12,-8],[-6,-2],[-13,3],[-12,6],[-22,19],[0,5],[39,38],[9,6],[5,1],[14,-9],[6,-2],[14,1],[20,-7],[40,4],[65,-21],[41,9],[32,-2],[12,-5],[6,-1],[38,16],[9,-3],[19,-10],[8,5],[-5,6],[-35,11],[-28,-9],[-45,1],[-23,10],[-5,21],[-6,-4],[-13,-15],[-8,-1],[2,0],[-21,-1],[-12,3],[-2,8],[2,7],[2,7],[1,7],[4,5],[5,3],[18,6],[-1,2],[-1,6],[68,4],[8,5],[-4,7],[-8,2],[-17,-7],[-25,6],[-8,4],[-1,7],[-4,7],[-2,1],[0,4],[7,0],[12,-6],[7,-2],[5,2],[2,6],[1,7],[2,6],[11,5],[24,-10],[11,5],[-10,10],[-12,7],[-24,7],[6,9],[18,-3],[8,4],[7,8],[24,6],[-3,8],[-6,5],[-8,1],[-5,-4],[-6,-10],[-29,-11],[-37,3],[-10,3],[-6,9],[28,11],[5,6],[24,-5],[17,5],[8,5],[7,7],[-7,2],[-6,5],[-6,7],[-4,10],[0,15],[-12,11],[-24,11],[7,5],[2,4],[-1,7],[-3,2],[-14,2],[5,7],[11,2],[3,7],[-9,6],[-9,3],[-8,1],[-30,-9],[-13,-1],[-7,8],[9,24],[2,11],[-9,-4],[-25,-23],[-8,-3],[0,-5],[-3,4],[-6,11],[-6,3],[-12,1],[-1,2],[0,3],[-3,0],[-7,-3],[-19,0],[-7,2],[-12,10],[-7,4],[-55,-10],[-5,2],[-4,6],[-2,4],[0,3],[0,1],[-3,2],[3,7],[5,8],[6,7],[5,1],[18,-8],[20,-3],[10,1],[5,3],[4,4],[2,3],[2,9],[2,4],[5,5],[14,8],[4,8],[-9,-1],[-9,-2],[-8,-1],[-9,8],[8,4],[75,-9],[6,5],[-1,12],[-4,4],[-17,4],[0,3],[1,6],[1,3],[-52,1],[-17,7],[0,4],[5,3],[15,20],[14,2],[1,1],[5,7],[0,4],[-9,-1],[-4,1],[-2,4],[28,31],[6,4],[8,-11],[12,-7],[22,-5],[2,8],[-4,6],[-5,4],[-2,5],[-4,8],[-98,35],[-6,4],[-5,7],[1,2],[1,3],[1,3],[-1,4],[-2,4],[-2,1],[-2,1],[-3,2],[-18,28],[-11,12],[-5,-7],[-8,-5],[-9,4],[-8,8],[-6,9],[9,7],[3,1],[-6,8],[-10,-1],[-19,-7],[-22,4],[-21,10],[-10,9],[3,3],[20,-1],[10,1],[30,15],[-13,8],[-30,-10],[-12,6],[0,4],[11,6],[20,6],[5,4],[-10,6],[-2,2],[-3,9],[-1,5],[2,3],[13,-3],[6,-4],[5,-8],[7,-7],[18,-2],[7,-7],[7,-4],[23,-3],[6,1],[-2,4],[7,6],[-9,2],[-20,-2],[-2,2],[-4,-1],[-3,1],[-2,3],[-3,7],[-2,3],[-4,3],[-4,3],[-5,2],[2,1],[1,3],[-4,3],[-9,5],[-4,4],[-8,21],[-13,23],[29,-4],[17,1],[17,-7],[6,-1],[10,1],[4,3],[5,4],[-4,12],[-7,6],[-24,4],[-17,11],[-19,5],[-8,4],[-16,14],[-10,4],[-21,3],[-7,5],[1,7],[0,4],[-1,6],[2,0],[3,3],[2,1],[-2,2],[-3,2],[-3,0],[-3,0],[7,5],[29,-5],[8,3],[-2,6],[-7,5],[-93,5],[-9,5],[1,6],[-4,3],[-10,-1],[2,4],[12,6],[17,1],[16,5],[12,16],[-28,-5],[-5,5],[15,15],[4,10],[-3,8],[4,4],[6,3],[14,3],[2,3],[0,5],[0,12],[0,7],[1,5],[2,3],[3,1],[3,4],[2,5],[1,6],[-11,4],[-5,-1],[-21,-28],[-85,-43],[-102,-19],[-102,-19],[-5,1],[-2,6],[1,4],[2,6],[3,6],[3,2],[23,4],[21,-7],[7,0],[4,3],[-11,7],[-5,5],[-3,8],[33,-3],[11,3],[25,14],[58,2],[4,2],[8,8],[4,3],[13,1],[4,2],[-2,3],[-2,4],[-2,2],[79,25],[5,11],[-19,4],[-59,-12],[13,14],[1,5],[-30,2],[-10,4],[-10,8],[12,4],[24,-3],[23,10],[96,1],[5,3],[2,9],[-2,3],[-7,8],[-3,1],[-92,4],[-6,-2],[-5,-3],[-5,-2],[-55,24],[-10,0],[0,4],[51,0],[88,19],[35,-4],[7,9],[-27,3],[-5,9],[1,10],[6,7],[12,7],[-9,6],[-55,-6],[-3,1],[-9,10],[-4,2],[-10,1],[-16,7],[-5,4],[-4,8],[20,5],[9,6],[8,9],[0,4],[-64,-3],[-18,11],[3,6],[-2,4],[-11,2],[-5,4],[-10,11],[-6,2],[-13,-3],[-7,-5],[-5,-14],[-6,-1],[-7,3],[-3,7],[3,5],[-4,3],[-9,2],[-4,3],[3,5],[3,3],[2,3],[4,1],[-6,8],[-10,0],[-19,-4],[3,3],[2,3],[2,5],[1,5],[-4,0],[-13,4],[13,13],[8,4],[6,-3],[7,-8],[7,-6],[7,-3],[9,-1],[4,1],[2,3],[2,4],[3,4],[4,2],[8,2],[10,8],[6,3],[14,2],[-6,13],[-10,7],[-37,4],[-4,8],[2,21],[-6,2],[-12,9],[-7,1],[-58,-10],[-7,4],[-3,12],[-3,2],[-11,2],[-3,2],[-2,7],[-7,4],[-36,10],[-31,20],[-9,3],[-42,0],[-9,5],[-3,9],[-4,5],[-19,5],[-23,0],[-12,-7],[-6,-1],[-6,3],[-5,10],[4,9],[6,4],[13,-1],[-3,5],[-4,3],[-8,4],[53,25],[5,8],[-5,10],[-20,10],[-43,-1],[-21,9],[-1,10],[-7,7],[-16,7],[0,2],[2,7],[-19,10],[-10,9],[-3,9],[2,6],[6,1],[10,-3],[6,0],[4,1],[9,7],[-3,4],[-5,3],[-9,5],[5,12],[20,8],[8,8],[-15,5],[-19,0],[-17,-7],[-13,-16],[-6,-10],[-5,-5],[-51,1],[4,11],[7,6],[37,18],[23,1],[8,3],[11,11],[7,3],[31,-1],[9,5],[-1,2],[-3,6],[4,7],[6,9],[5,9],[1,12],[-7,8],[-12,6],[-45,7],[-9,6],[3,15],[7,10],[22,21],[-8,8],[-11,2],[-29,-7],[-10,0],[-10,3],[-8,6],[-3,9],[4,8],[8,5],[7,2],[18,-3],[9,2],[7,10],[-12,7],[-74,2],[-22,-9],[-69,-11],[-10,6],[4,5],[-2,0],[-4,4],[8,10],[-3,11],[-9,8],[-9,0],[-21,-9],[-11,-1],[-10,4],[13,6],[4,5],[0,10],[-4,7],[-6,2],[-12,-1],[9,8],[13,5],[23,3],[-12,19],[-25,4],[-64,-8],[-10,-4],[-9,-7],[-12,-15],[-7,-6],[-3,3],[-2,6],[-3,1],[-4,-3],[-5,-10],[-3,-2],[-4,-2],[-13,0],[-8,4],[-4,7],[5,13],[6,7],[14,12],[6,7],[8,7],[18,4],[5,8],[-14,6],[-19,21],[-6,4],[-6,2],[-7,-2],[-18,-15],[-14,-1],[-6,-2],[1,-9],[-15,0],[-7,3],[-7,5],[8,16],[-5,4],[-18,1],[-19,8],[2,6],[4,5],[2,3],[6,2],[-9,11],[-94,1],[1,12],[-5,6],[-7,2],[-6,0],[-3,-2],[-4,-8],[-3,-4],[-4,-2],[-10,-2],[-7,-8],[-13,-6],[-8,-8],[-3,-1],[-4,0],[-3,2],[-3,3],[-3,6],[-4,5],[-10,1],[-4,4],[1,3],[3,9],[-6,0],[3,13],[1,3],[-23,0],[4,9],[13,4],[4,7],[-5,2],[-2,5],[2,7],[5,3],[-11,9],[-15,4],[-14,0],[-24,-8],[-13,1],[-37,14],[-49,2],[-18,-6],[-48,7],[-28,12],[-6,1],[-21,-1],[-4,4],[-9,13],[-11,5],[-23,0],[-26,-9],[-14,-2],[-8,11],[4,2],[10,10],[-9,9],[-12,6],[-13,3],[-10,-3],[-10,-6],[-5,-4],[-5,-14],[-6,0],[-51,14],[-43,-7],[-11,-10],[13,-13],[0,-3],[-8,-7],[-4,-2],[-5,0],[4,9],[-18,9],[-4,7],[1,8],[7,9],[2,7],[-8,14],[-57,22],[-17,2],[-16,10],[-26,-3],[-7,2],[-14,8],[-7,2],[-31,0],[-1,-1],[-4,-3],[3,-18],[-9,-17],[-21,-22],[-4,-7],[-7,-15],[-4,-7],[-7,-4],[-16,-4],[-6,-8],[2,0],[3,-2],[2,-3],[1,-3],[-2,-4],[-2,0],[-3,1],[-3,-1],[-15,-11],[-61,-13],[-18,5],[-15,16],[-11,23],[-9,29],[3,7],[2,3],[2,2],[-1,5],[-1,3],[-2,1],[-3,-1],[3,7],[3,4],[5,1],[4,0],[0,5],[-42,18],[-30,-2],[3,-7],[8,-10],[4,-8],[-2,-1],[-2,-5],[-2,-2],[6,-3],[1,-8],[-3,-9],[-6,-4],[-6,-3],[-6,-5],[-5,-3],[-12,7],[-8,-4],[-4,1],[-18,16],[-8,3],[-8,-1],[-5,-11],[1,-11],[5,-11],[6,-8],[12,-5],[7,-6],[1,-5],[-7,-3],[-14,8],[-9,1],[-4,-7],[4,-10],[25,-12],[-15,-8],[-14,1],[-14,9],[-14,12],[-15,9],[-48,1],[3,-7],[8,-10],[2,-7],[0,-6],[1,-2],[1,-5],[-1,-3],[-4,-2],[-3,1],[-7,9],[-7,7],[-4,1],[-27,-4],[-21,4],[9,20],[-1,6],[-8,2],[-29,-5],[-5,-7],[3,0],[3,-1],[3,-3],[2,-4],[-11,-8],[15,-27],[2,-9],[-5,-9],[-8,-2],[-5,-4],[3,-14],[-86,8],[3,3],[1,2],[2,7],[-19,0],[-4,2],[-9,8],[-4,2],[-25,7],[-8,6],[9,10],[22,5],[7,9],[1,6],[-2,13],[1,5],[4,3],[6,-2],[4,0],[4,7],[-14,1],[-6,2],[-3,6],[53,10],[8,6],[-25,17],[-27,6],[-79,-11],[-13,2],[-19,12],[-11,1],[-8,-4],[1,-15],[-2,0],[-2,-17],[-13,-9],[-25,-11],[10,-14],[-5,-3],[-11,0],[-9,-7],[6,-7],[5,-7],[1,-9],[-5,-9],[-9,-6],[-29,6],[-4,2],[-6,11],[-3,3],[-4,1],[-13,13],[-9,4],[-11,3],[-10,4],[-7,11],[7,2],[7,5],[7,6],[4,7],[-25,-2],[-13,3],[-2,12],[-14,10],[-17,6],[-34,0],[-13,-5],[-8,-4],[-5,-7],[-4,-4],[-1,-3],[3,-4],[3,-2],[3,-2],[5,-1],[0,-5],[-12,-2],[-27,2],[-12,-8],[2,-4],[-3,-3],[-1,-2],[-2,-7],[61,-10],[9,-4],[7,-8],[5,-14],[-3,-4],[-3,-4],[-7,-5],[7,-10],[67,-20],[13,-8],[16,-6],[20,-17],[16,-5],[11,-9],[6,-2],[3,-2],[6,-12],[4,-2],[-10,-8],[-22,4],[-50,24],[-54,10],[-24,-1],[-6,1],[-14,9],[-94,13],[-94,13],[-94,14],[-19,11],[-56,3],[-1,-3],[-6,0],[-6,2],[-12,7],[-20,8],[-5,4],[-1,4],[2,3],[6,3],[28,9],[-9,11],[-14,3],[-75,0],[13,10],[-7,5],[-14,2],[-31,17],[4,11],[-2,2],[-49,22],[-15,2],[-14,7],[-25,1],[-25,8],[-45,29],[-20,5],[-5,7],[3,4],[2,5],[0,5],[-1,6],[6,9],[7,3],[69,19],[69,18],[49,13],[24,20],[-5,2],[-17,1],[8,6],[37,9],[98,0],[97,-1],[8,3],[5,7],[0,13],[-6,9],[-18,4],[-7,7],[26,10],[5,6],[-27,13],[-6,0],[-65,-19],[-80,-3],[-79,-2],[-64,12],[-28,-5],[-13,3],[-15,8],[-80,16],[-80,16],[-12,8],[-14,3],[-6,3],[-14,13],[-5,4],[4,14],[8,9],[38,16],[8,8],[-1,13],[11,7],[32,32],[15,8],[29,3],[7,4],[5,7],[-52,6],[-8,-4],[-1,-10],[-18,-10],[-23,-20],[-17,-7],[-23,-23],[-99,-56],[-32,-6],[-5,3],[-4,1],[-3,2],[-2,4],[-3,3],[-3,2],[-2,0],[-11,-6],[-5,0],[-47,24],[-4,4],[1,4],[7,8],[-8,3],[-17,-6],[-7,5],[-3,5],[-13,9],[9,6],[35,-2],[-2,5],[39,12],[5,4],[-35,-4],[-78,20],[2,-4],[-12,-5],[6,-11],[-69,35],[-10,19],[3,21],[8,7],[23,-1],[7,2],[1,6],[-1,8],[1,8],[3,3],[6,1],[3,4],[-1,8],[53,11],[25,-6],[59,4],[-15,8],[-48,8],[6,8],[109,9],[108,9],[108,10],[6,-2],[10,-8],[5,-2],[23,4],[118,-11],[117,-11],[12,-5],[19,-2],[1,-2],[-1,-2],[103,10],[103,9],[110,-17],[110,-18],[15,2],[22,-10],[123,2],[27,-11],[14,1],[-6,4],[-16,6],[-3,7],[4,5],[53,6],[13,7],[8,14],[-130,-27],[-125,15],[-126,14],[-125,14],[-62,-12],[-118,15],[-117,16],[-12,10],[102,30],[102,30],[130,2],[129,2],[93,-8],[92,-8],[74,-46],[68,-16],[10,1],[8,5],[-13,13],[-56,6],[-15,11],[-13,14],[-11,20],[-5,4],[1,4],[-18,21],[21,8],[107,-4],[22,5],[16,19],[-6,7],[-2,1],[3,3],[9,5],[-5,5],[-8,3],[-5,2],[-2,4],[-4,9],[-2,2],[-13,2],[-6,4],[-5,6],[4,4],[10,1],[5,3],[-8,5],[-30,-1],[10,5],[5,4],[1,5],[-4,7],[-7,4],[-56,10],[-28,14],[-4,6],[-4,3],[-20,-1],[-11,5],[3,7],[8,8],[6,8],[-16,-4],[-35,-16],[-82,-8],[-6,-4],[6,-5],[-2,-10],[-10,-20],[-8,-11],[-10,-7],[-95,-30],[-106,-8],[-106,-7],[-10,5],[6,22],[0,13],[-6,5],[-9,2],[-29,18],[-32,32],[-11,3],[-13,0],[-24,-6],[57,-55],[4,-8],[1,-10],[-5,-10],[-8,-5],[-81,-17],[-81,-17],[-95,21],[-96,21],[-96,20],[-5,4],[-4,7],[8,1],[16,9],[57,19],[33,3],[44,21],[24,2],[32,11],[6,9],[-7,18],[12,13],[-8,4],[-9,-6],[-17,-14],[-33,-14],[-78,-6],[-5,-2],[-14,-10],[-84,2],[-84,2],[-9,7],[7,10],[87,36],[29,27],[14,7],[12,0],[7,-3],[42,4],[6,4],[-27,13],[-59,-6],[-26,9],[-10,0],[-13,-3],[-23,-13],[-29,-28],[-9,-4],[-88,-3],[-88,-4],[-33,14],[-3,4],[4,7],[5,4],[47,20],[7,11],[-10,9],[-17,2],[-18,-5],[-27,-12],[-14,-3],[-30,4],[10,19],[1,6],[-2,10],[-5,2],[-53,-10],[-13,-7],[-14,-5],[-14,5],[-26,17],[-26,7],[-27,1],[1,7],[1,3],[1,3],[-30,25],[-4,7],[3,8],[6,7],[6,5],[0,4],[-79,4],[-7,3],[-13,14],[-5,4],[-23,3],[-8,3],[-19,20],[-12,8],[-45,2],[9,12],[12,2],[23,-6],[23,3],[23,9],[-6,7],[-17,9],[0,5],[8,0],[9,4],[-3,3],[-3,1],[-4,1],[-3,-1],[8,4],[18,-1],[8,5],[-3,0],[-1,2],[-4,6],[13,14],[19,3],[37,-5],[-13,10],[-96,6],[10,5],[-1,2],[-1,2],[-1,2],[-1,2],[2,8],[3,5],[3,2],[11,2],[34,15],[10,8],[5,12],[-18,8],[-6,0],[5,10],[18,7],[5,12],[-10,-1],[-4,2],[-3,3],[-2,4],[14,12],[90,11],[90,11],[107,50],[94,0],[29,-12],[69,-4],[8,-3],[6,-7],[3,0],[4,7],[-1,1],[-3,2],[-2,1],[6,18],[-1,6],[-3,12],[16,10],[72,13],[14,7],[18,-3],[15,8],[92,10],[7,5],[-3,4],[-7,3],[-7,0],[15,13],[17,5],[130,2],[22,-5],[6,3],[4,6],[20,17],[14,6],[7,6],[-4,4],[7,5],[5,1],[19,-9],[17,1],[9,-2],[21,-14],[7,-2],[29,0],[-7,6],[-15,7],[-7,7],[0,2],[-1,7],[-1,3],[-2,3],[-4,3],[-4,2],[-2,-1],[-9,-3],[-50,11],[-7,5],[8,15],[10,8],[21,10],[138,28],[138,29],[78,-23],[24,10],[-18,7],[-3,6],[4,7],[6,4],[51,9],[10,-3],[4,1],[1,4],[-3,4],[-2,1],[-2,3],[-2,7],[78,-14],[13,1],[-2,6],[-2,3],[-7,4],[6,3],[2,1],[-2,3],[4,4],[4,0],[9,-4],[3,1],[3,2],[3,0],[4,-6],[-1,-1],[-3,-3],[-2,0],[9,-11],[10,-3],[11,4],[9,10],[-3,8],[5,1],[8,-5],[7,-9],[-2,-3],[-2,-3],[-1,-5],[-1,-5],[13,4],[25,18],[13,3],[-10,-10],[-11,-7],[7,-4],[9,3],[15,12],[9,5],[25,1],[4,-2],[7,-8],[4,-3],[5,0],[9,7],[3,2],[30,2],[10,-2],[-1,-4],[-1,-9],[1,0],[-1,-4],[5,-3],[13,-1],[23,7],[20,-8],[39,1],[-5,10],[-7,2],[-8,1],[-7,3],[71,-1],[9,6],[-18,-1],[-9,2],[-3,5],[-4,1],[5,9],[9,7],[46,18],[8,7],[-4,0],[-4,1],[-3,4],[-2,7],[11,8],[14,4],[21,0],[7,4],[-5,7],[-4,5],[4,5],[15,4],[1,2],[2,2],[2,3],[3,1],[3,2],[4,8],[4,2],[40,9],[9,7],[16,4],[7,4],[6,9],[-4,4],[6,8],[15,6],[7,6],[-5,3],[-6,1],[10,14],[36,13],[17,13],[8,12],[3,15],[0,16],[-1,11],[-3,8],[-7,10],[-10,7],[-22,5],[-10,6],[7,7],[16,11],[5,10],[-16,17],[-18,12],[5,7],[14,5],[6,4],[-17,9],[-9,7],[-5,8],[16,0],[0,4],[-9,0],[-20,7],[-8,5],[8,5],[29,4],[-3,6],[-11,14],[12,8],[-3,9],[5,8],[13,11],[-8,12],[-26,17],[8,9],[98,16],[97,17],[60,38],[12,2],[48,-9],[26,4],[10,8],[-100,4],[-5,2],[-4,6],[-4,7],[-5,5],[7,18],[2,9],[-2,7],[-6,2],[-6,1],[-6,-1],[-5,-5],[-1,-8],[2,-7],[1,-5],[-1,-2],[-9,-7],[-12,-28],[-9,-6],[-6,-2],[-24,-18],[-125,-19],[-106,14],[-40,-22],[-115,-28],[-55,5],[-10,7],[-10,14],[-10,10],[-23,5],[-18,12],[-16,1],[-8,3],[-4,3],[-4,2],[-4,0],[-15,-19],[-14,-6],[-138,-8],[-9,9],[7,4],[-2,7],[-11,10],[-6,8],[1,4],[11,8],[-8,2],[-15,8],[-7,2],[-24,-4],[-52,15],[-12,14],[4,3],[4,1],[9,-1],[-7,9],[4,3],[2,1],[3,0],[-4,6],[-4,5],[-5,4],[-9,3],[2,5],[9,9],[6,8],[2,7],[-2,4],[-8,1],[8,12],[36,13],[11,-1],[5,2],[16,10],[6,1],[-2,0],[8,2],[37,15],[34,24],[35,5],[2,3],[3,6],[3,3],[9,3],[4,4],[-2,0],[-1,1],[-2,1],[-1,2],[2,4],[2,4],[3,2],[3,2],[-15,-1],[-8,2],[-4,5],[3,8],[7,4],[85,17],[86,16],[9,5],[5,9],[2,9],[3,8],[6,3],[73,-1],[73,0],[8,5],[-54,13],[-5,6],[5,7],[19,9],[69,14],[69,15],[14,8],[6,6],[1,2],[0,3],[0,4],[1,3],[2,1],[6,2],[3,2],[2,3],[3,4],[2,4],[-16,16],[6,10],[11,4],[56,3],[11,7],[-2,1],[-4,4],[14,8],[-15,5],[-9,6],[-3,9],[5,9],[10,4],[65,5],[23,14],[54,0],[34,11],[53,6],[28,33],[29,15],[13,3],[6,3],[17,1],[24,-11],[19,-21],[3,-27],[9,-14],[25,-43],[16,-16],[52,-30],[10,-12],[9,-18],[11,-15],[26,-12],[11,-10],[11,-3],[12,14],[-5,5],[-25,5],[-6,3],[-2,5],[5,7],[-10,5],[-10,8],[-17,23],[-11,10],[-35,21],[-9,9],[-38,65],[-5,13],[2,13],[-3,9],[-5,9],[-3,13],[49,22],[13,9],[48,10],[40,-1],[19,-7],[79,-4],[79,-5],[96,-42],[85,-37],[11,7],[-7,12],[8,6],[36,3],[16,6],[66,-2],[9,8],[14,7],[6,1],[2,1],[3,8],[2,2],[3,2],[12,-2],[-13,11],[-28,12],[-13,10],[-18,21],[-8,13],[-6,15],[2,2],[6,4],[4,2],[-38,19],[-4,9],[4,4],[127,52],[10,8],[8,11],[-4,10],[-15,10],[-28,11],[-14,1],[-8,2],[-4,7],[0,9],[-1,4],[-3,3],[-39,24],[-19,24],[-23,7],[-10,12],[-2,12],[-19,14],[5,13],[7,5],[36,24],[104,29],[104,29],[14,-1],[14,5],[14,0],[13,6],[74,10],[88,-13],[41,-19],[65,4],[74,-11],[74,-11],[13,-8],[6,-13],[3,-16],[8,-8],[9,-5],[8,-5],[-17,-9],[-7,-9],[0,-15],[8,-11],[12,-7],[103,-26],[103,-27],[68,1],[14,-3],[29,-17],[1,-3],[-1,-8],[89,-33],[12,-8],[-6,-5],[-16,0],[-7,-3],[11,-15],[14,-6],[82,-11],[15,-7],[25,-1],[12,-5],[39,-27],[8,-2],[24,1],[-3,7],[-16,9],[-12,14],[-5,4],[-124,22],[-10,4],[-9,9],[1,13],[-24,14],[3,13],[-8,7],[-21,9],[-16,3],[-56,33],[-40,8],[-19,17],[-109,9],[3,6],[1,2],[-6,9],[-23,11],[-24,21],[-28,39],[-6,2],[-10,7],[4,8],[0,9],[-2,8],[-5,4],[-37,8],[-57,21],[-47,3],[-121,27],[-11,14],[119,30],[119,31],[78,0],[-4,8],[9,6],[83,11],[83,11],[95,7],[95,6],[21,11],[26,-2],[35,13],[75,6],[10,-3],[20,-14],[11,-3],[-5,-7],[-2,-2],[10,-12],[12,0],[13,7],[8,10],[-3,8],[15,16],[5,2],[8,11],[5,3],[20,1],[6,-1],[8,6],[95,-7],[95,-7],[5,-1],[4,-3],[4,-4],[-5,-4],[-6,-1],[-6,0],[-11,4],[-1,-2],[2,-9],[0,-3],[-1,-2],[1,-2],[2,-3],[3,-1],[32,-6],[14,-14],[8,-4],[5,10],[-3,9],[-34,16],[13,8],[4,4],[-11,13],[-14,10],[-14,7],[-14,2],[-61,-9],[-8,5],[11,5],[60,5],[27,12],[113,16],[112,15],[97,-31],[4,-5],[3,-6],[6,-7],[7,-5],[17,-4],[8,-5],[12,-13],[11,-4],[4,-3],[7,-9],[16,-15],[11,-5],[6,-6],[6,-8],[5,-4],[6,-6],[14,-8],[6,-8],[1,-7],[-1,-17],[1,-7],[-12,-8],[-5,-7],[-3,-7],[3,-8],[6,-6],[11,-9],[10,-16],[4,-14],[-2,-16],[-16,-47],[-6,-11],[-6,-7],[-30,-19],[-13,-14],[-3,-3],[0,-3],[0,-4],[1,-6],[-2,-3],[-12,-7],[11,-12],[2,-6],[-5,-6],[1,-3],[2,-6],[1,-3],[-8,-31],[1,-13],[3,-6],[31,-17],[19,-7],[39,-4],[-24,11],[-25,6],[0,4],[46,4],[5,8],[-8,7],[-6,14],[-10,32],[3,11],[6,5],[15,5],[54,44],[53,20],[9,8],[9,9],[19,16],[5,7],[0,15],[0,10],[-2,11],[-2,9],[-3,10],[-3,8],[-11,12],[-5,10],[2,8],[7,6],[7,3],[11,2],[43,-4],[17,-8],[53,-6],[36,-17],[58,-2],[16,-10],[3,-3],[17,-8],[92,-11],[93,-11],[82,-30],[83,-30],[15,-13],[125,-34],[14,-9],[4,-5],[1,-5],[0,-14],[0,-5],[4,-7],[6,-3],[73,-19],[85,21],[-62,5],[-10,4],[-7,9],[0,3],[0,4],[0,6],[-1,5],[-3,4],[-4,3],[-81,21],[-81,21],[-37,24],[0,4],[6,4],[-7,8],[-8,2],[-17,-1],[-43,11],[-48,33],[8,13],[112,-16],[111,-17],[112,-17],[20,7],[30,1],[48,25],[11,0],[-8,12],[-103,41],[-103,41],[-104,40],[-41,34],[-8,15],[-9,36],[-4,8],[-2,19],[-10,14],[-56,43],[-3,4],[1,6],[-1,12],[-6,2],[-6,4],[-5,6],[4,8],[117,-6],[116,-7],[116,-6],[117,-7],[116,-7],[27,-13],[36,-35],[14,-9],[104,-24],[104,-25],[104,-25],[13,-10],[-2,0],[4,-4],[-6,-9],[-7,-8],[11,-7],[93,1],[113,-26],[113,-27],[114,-26],[11,-12],[-12,-12],[4,-7],[4,-4],[5,-1],[4,0],[-6,-8],[-15,-1],[-7,-4],[6,-4],[28,0],[73,-24],[74,-23],[5,-5],[11,-15],[4,-2],[6,-1],[15,-6],[22,-16],[4,-1],[104,-8],[22,-11],[11,-2],[9,5],[-13,8],[7,5],[97,17],[13,14],[8,1],[15,-1],[-16,5],[-34,0],[-16,8],[4,3],[6,1],[11,-1],[-6,3],[-12,2],[-5,4],[7,3],[3,0],[-16,6],[-32,-4],[-15,7],[3,2],[8,3],[4,3],[-12,6],[-24,3],[-12,7],[10,4],[48,-6],[5,2],[3,3],[5,10],[3,3],[-14,9],[-103,-2],[-12,10],[6,4],[-2,7],[-5,11],[-3,6],[59,2],[92,35],[-30,1],[-17,6],[-23,21],[-37,17],[-3,6],[2,7],[23,32],[39,21],[92,16],[79,-12],[80,-12],[14,-7],[119,-4],[120,-4],[10,-8],[0,5],[1,-3],[8,-5],[-2,-3],[-1,-3],[-1,-3],[-1,-3],[110,0],[-8,10],[-103,19],[-104,19],[-28,-11],[-16,0],[-84,19],[-83,19],[-8,7],[-6,11],[10,10],[23,5],[11,5],[-10,7],[-47,9],[-24,11],[-49,7],[-20,11],[-11,3],[-20,1],[-4,0],[-11,3],[-2,2],[-1,3],[-1,3],[-1,1],[-12,3],[-13,6],[-4,5],[-6,12],[-4,5],[-31,11],[-24,2],[-6,2],[-12,9],[-6,2],[-12,0],[-25,8],[-25,18],[-54,17],[-25,2],[-77,26],[-23,17],[-7,9],[6,4],[76,2],[76,2],[29,9],[23,-8],[14,-9],[135,-2],[135,-1],[135,-1],[135,-1],[135,-2],[135,-1],[-27,-17],[-8,-11],[76,-22],[11,-6],[8,-12],[8,-17],[-18,-23],[-2,-11],[11,-11],[6,-4],[5,-4],[16,-20],[4,-3],[4,-1],[26,-2],[7,6],[9,26],[-8,12],[-15,10],[-9,9],[10,8],[-4,4],[10,18],[-5,10],[-24,13],[-16,18],[-13,3],[-21,11],[9,11],[13,3],[67,-3],[19,-9],[70,-12],[14,-7],[8,-12],[-2,-3],[121,-34],[33,-25],[30,-1],[82,-4],[6,-3],[-3,-7],[4,-7],[22,-17],[33,-12],[-7,-8],[-8,-6],[-7,-9],[1,-14],[7,-9],[37,-15],[-1,-2],[-1,-6],[35,-6],[10,8],[3,12],[-2,8],[-5,6],[-7,4],[-14,5],[-6,6],[1,14],[6,8],[26,12],[-5,6],[-23,2],[-28,13],[-9,9],[-4,6],[0,6],[4,6],[5,4],[5,4],[16,4],[6,4],[3,5],[0,7],[-3,7],[-7,10],[-1,4],[0,3],[-1,3],[-3,3],[-8,7],[-102,22],[-72,-8],[-65,22],[-32,3],[-14,9],[-129,6],[-130,6],[-129,6],[-130,6],[-129,6],[-130,6],[-129,6],[-130,6],[-17,6],[-17,14],[-65,14],[0,-3],[55,-21],[0,-4],[-28,-12],[-93,9],[-93,10],[-12,-3],[3,-6],[2,-1],[2,-1],[0,-4],[-89,-6],[-16,5],[-17,-1],[-16,7],[-113,19],[1,4],[2,4],[2,3],[3,1],[-12,6],[-51,10],[-25,12],[-13,1],[13,8],[120,-16],[120,-16],[-68,35],[-132,13],[6,10],[10,3],[35,-2],[5,5],[-3,13],[22,6],[89,0],[9,10],[11,11],[19,0],[20,-7],[32,-19],[92,-19],[92,-20],[12,-15],[-3,-5],[-4,-3],[-2,-4],[1,-4],[103,20],[113,-9],[113,-10],[113,-9],[8,-5],[0,2],[0,2],[9,-2],[25,3],[0,3],[-122,17],[-122,16],[-122,16],[-122,16],[-3,4],[4,5],[-6,3],[-11,-1],[-6,2],[0,1],[0,3],[0,3],[-1,1],[-2,0],[-4,3],[-29,3],[-43,17],[-9,7],[0,8],[9,6],[11,5],[11,2],[7,-3],[-6,-2],[0,-5],[4,-6],[6,-3],[38,6],[21,16],[6,2],[5,-1],[10,-7],[98,-28],[13,4],[-5,4],[-5,4],[6,1],[6,3],[0,4],[-6,0],[-5,2],[-10,6],[11,11],[17,2],[125,-14],[124,-15],[-1,0],[6,-3],[9,-2],[9,1],[4,6],[4,4],[109,-11],[110,-11],[-8,7],[-104,18],[-104,18],[-104,18],[103,1],[103,2],[102,1],[0,4],[-41,-2],[-12,6],[29,4],[0,4],[-95,0],[0,4],[15,2],[5,2],[-2,4],[-1,0],[0,4],[82,6],[83,5],[43,-18],[9,-7],[12,-6],[88,8],[26,-11],[28,-4],[25,-11],[26,-2],[10,-12],[-50,-31],[-13,-18],[73,28],[84,-12],[67,-34],[29,-4],[78,-29],[14,-12],[116,-4],[116,-5],[116,-5],[120,-37],[-2,-1],[-4,-5],[-2,-2],[8,-18],[12,-12],[26,-13],[52,-12],[11,-14],[-3,-3],[0,-3],[2,-4],[2,-2],[6,-2],[7,1],[12,5],[-15,12],[4,5],[6,5],[20,13],[4,4],[0,6],[-45,-4],[-28,5],[-7,8],[-3,3],[-1,3],[-1,5],[0,20],[-11,10],[-25,11],[1,0],[-7,6],[-20,2],[-32,14],[-7,6],[6,8],[8,5],[127,1],[126,0],[127,1],[127,1],[-12,5],[-25,1],[-52,13],[-108,1],[-108,1],[-108,1],[-11,7],[4,6],[129,10],[128,11],[129,11],[128,11],[15,7],[-6,4],[-101,-2],[-101,-2],[23,4],[6,5],[-18,6],[-89,6],[-24,-4],[-8,4],[17,4],[6,4],[-80,0],[-80,0],[-46,4],[-7,6],[-6,8],[-36,14],[8,8],[10,4],[20,1],[-2,5],[-2,5],[-3,3],[-3,3],[4,2],[9,2],[4,0],[0,4],[-8,0],[-11,4],[-10,7],[-7,9],[2,3],[6,9],[4,4],[13,9],[-19,7],[-17,13],[8,5],[11,2],[12,-1],[18,-8],[122,-19],[122,-20],[21,8],[-21,18],[-47,6],[-22,13],[10,5],[30,7],[-2,7],[-3,5],[-4,3],[-4,1],[13,10],[92,5],[107,-21],[108,-22],[13,-9],[12,-13],[5,-3],[71,-18],[13,6],[-55,13],[-3,6],[-7,4],[-17,2],[14,8],[45,4],[-14,10],[-89,17],[-13,9],[32,-1],[10,6],[-4,2],[-5,1],[-8,0],[7,11],[13,6],[139,0],[138,0],[139,0],[75,20],[75,20],[7,-1],[14,-7],[6,-6],[4,-6],[4,-6],[3,-6],[6,-4],[6,-1],[7,0],[5,4],[5,5],[2,7],[1,6],[2,5],[6,5],[7,3],[9,1],[9,-3],[7,-6],[1,-7],[1,-7],[1,-6],[12,-5],[12,-11],[73,-25],[2,-6],[1,-5],[3,-3],[26,0],[13,5],[12,11],[-13,7],[-61,17],[-12,7],[-10,14],[2,2],[2,2],[17,9],[106,7],[105,7],[106,7],[105,7],[23,-9],[56,-3],[0,-5],[-7,0],[-13,-4],[-7,-4],[2,0],[4,-4],[-2,-2],[-4,-6],[77,11],[77,11],[33,-11],[121,-2],[121,-2],[31,11],[128,-14],[128,-13],[128,-13],[1,-2],[4,0],[3,0],[4,-2],[3,-2],[-7,-3],[-7,-6],[14,-13],[18,-6],[19,1],[14,6],[-5,10],[-2,2],[118,8],[20,-5],[12,-15],[-44,-8],[-28,7],[-15,0],[-27,-7],[11,-7],[90,-26],[114,9],[-20,0],[-42,12],[-20,0],[17,10],[127,-18],[126,-17],[127,-17],[126,-17],[127,-17],[127,-17],[-9,-11],[-11,-6],[-32,-6],[-22,-11],[-15,-4],[-14,-11],[-16,-4],[-129,-4],[-130,-5],[-129,-4],[-129,-4],[-130,-4],[-129,-4],[-130,-5],[-129,-4],[-130,-4],[-129,-4],[-43,-19],[-118,-9],[-118,-9],[-117,-8],[-21,9],[-31,4],[-27,13],[-138,16],[-138,16],[-12,-8],[39,-4],[29,-14],[29,11],[87,-20],[87,-21],[5,-4],[2,-8],[-3,-4],[-128,-9],[-27,-12],[-117,-8],[-117,-8],[-116,-8],[-117,-9],[-116,-8],[-117,-8],[-14,-7],[22,-8],[47,4],[21,-5],[-7,-5],[-28,-10],[-1,-5],[-2,-7],[-4,-5],[6,-5],[7,-3],[0,-4],[-23,-9],[-13,-9],[-6,-13],[7,-9],[16,-3],[26,2],[-6,8],[-6,6],[-2,6],[9,9],[28,8],[8,8],[-10,8],[-3,4],[6,5],[94,30],[129,5],[128,4],[51,-20],[7,-10],[3,-16],[-4,-12],[-32,-14],[14,-2],[45,13],[10,11],[-3,11],[-9,22],[-2,10],[8,10],[30,12],[131,13],[22,9],[122,2],[121,2],[4,4],[93,-1],[20,-6],[4,-3],[5,-5],[2,-7],[-4,-6],[1,-2],[1,-2],[2,-2],[6,-4],[8,0],[14,4],[5,3],[1,3],[0,5],[2,7],[10,14],[12,5],[12,3],[20,9],[105,15],[105,15],[106,15],[43,17],[128,-6],[127,-6],[128,-6],[127,-6],[3,-14],[14,-7],[16,-1],[11,2],[43,18],[127,-3],[31,-10],[106,2],[106,2],[19,11],[123,16],[123,16],[123,17],[54,-7],[51,-26],[-29,-5],[-7,-7],[-2,-8],[2,-6],[18,-15],[34,-9],[4,-2],[3,-4],[1,-4],[1,-4],[0,-4],[-3,-1],[-7,-2],[-30,-22],[-55,-26],[-6,-5],[-4,-6],[0,-7],[6,-5],[-11,-12],[-122,-37],[-88,-4],[9,-5],[29,-4],[22,5],[29,-4],[19,10],[96,23],[96,22],[96,22],[63,-8],[53,11],[6,3],[12,4],[17,0],[17,-5],[9,-9],[-13,-1],[-26,-10],[-12,-1],[6,-14],[25,-16],[9,-14],[-9,-11],[-21,-5],[-10,-5],[63,7],[9,5],[8,9],[-3,9],[6,7],[18,8],[77,8],[48,-8],[10,-8],[0,-13],[20,-7],[47,4],[18,-19],[7,-4],[26,7],[16,-1],[8,3],[5,7],[-1,10],[23,-4],[46,-19],[58,-10],[19,-12],[20,-7],[39,-3],[9,-4],[17,-1],[9,-3],[0,-10],[45,-5],[41,-18],[38,-9],[4,-5],[2,-7],[-2,-4],[-9,-9],[-4,-6],[-9,-11],[-13,-5],[-24,-2],[-84,-35],[-84,-13],[-46,-21],[8,-5],[17,-7],[6,-8],[-8,-8],[-59,-23],[-130,-10],[-129,-9],[-130,-9],[-14,-9],[-138,-6],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-139,-6],[-138,-7],[-138,-7],[-6,2],[-9,12],[-6,2],[-82,2],[-47,15],[-95,4],[-95,4],[-94,4],[-46,3],[-12,-7],[124,-8],[124,-8],[123,-7],[23,-8],[32,-3],[16,-6],[5,-4],[7,-9],[5,-4],[19,-8],[-11,-8],[-104,-16],[-104,-15],[-104,-16],[-10,-5],[-7,0],[-3,-1],[-3,-3],[-4,-7],[-2,-2],[-15,-5],[-76,-2],[-77,-2],[-8,-8],[-10,-5],[-20,0],[-21,-9],[-24,4],[-136,-28],[-32,-18],[-28,-7],[-3,-2],[-2,-5],[-2,-9],[-2,-12],[-1,-11],[2,-8],[6,-6],[16,0],[6,-4],[2,-7],[-1,-8],[-4,-16],[14,-9],[16,-2],[30,6],[99,-1],[1,14],[3,11],[6,7],[49,34],[71,24],[121,9],[122,9],[29,11],[30,-1],[29,13],[104,10],[13,6],[77,11],[3,-1],[5,-5],[3,-1],[50,4],[0,-20],[1,-8],[4,-4],[58,8],[7,5],[2,4],[2,5],[2,5],[1,7],[0,8],[1,2],[2,2],[2,1],[9,1],[56,17],[71,0],[32,8],[32,-3],[44,14],[17,0],[24,-5],[15,3],[71,-2],[33,19],[16,3],[125,-6],[124,-6],[125,-7],[125,-6],[124,-6],[125,-7],[125,-6],[-4,-11],[-13,-16],[-5,-10],[12,-9],[8,-18],[3,-23],[-7,-21],[-4,-6],[-5,-4],[-9,-4],[-112,-25],[-112,-24],[-111,-24],[-112,-25],[-41,-25],[-40,-8],[-27,-11],[-5,-6],[6,0],[57,-10],[5,-2],[3,-5],[-1,-7],[-8,-12],[-2,-8],[6,-3],[11,-11],[6,-3],[10,-1],[107,40],[107,39],[38,-2],[132,26],[132,27],[9,-2],[9,-4],[8,-2],[9,5],[12,13],[13,7],[76,21],[76,21],[81,-19],[19,3],[9,5],[5,8],[8,21],[5,9],[-5,4],[1,8],[-4,14],[2,10],[-3,2],[-4,5],[-2,5],[1,6],[3,3],[17,8],[6,10],[-2,9],[-11,19],[22,14],[1,5],[0,4],[1,4],[8,6],[11,2],[20,-1],[-2,-4],[-6,-5],[-3,-3],[10,1],[9,3],[28,19],[109,6],[109,6],[109,6],[108,7],[17,-4],[10,-8],[48,-51],[8,-12],[6,-14],[3,-12],[1,-7],[-2,-6],[-7,-18],[-1,-2],[1,-9],[2,-4],[3,-3],[4,-6],[1,-4],[3,-11],[4,-14],[0,-3],[-1,-3],[-1,-10],[-2,-7],[-11,-5],[-2,-7],[-1,-11],[-4,-13],[-5,-11],[-8,-6],[2,-4],[-5,-8],[-10,-29],[-11,-21],[-5,-12],[-77,-62],[-78,-61],[-67,-19],[-7,-6],[-3,0],[-1,-7],[-1,-22],[-3,0],[-12,-6],[-8,-3],[-17,0],[-4,-1],[-3,-4],[-1,-6],[-1,-7],[0,-8],[1,-6],[-48,-15],[-32,-3],[-3,-2],[-2,-5],[-1,-8],[0,-5],[-1,-3],[-4,-4],[-18,-6],[-123,-84],[-7,-3],[-13,1],[-24,-13],[-3,-4],[2,-8],[3,-4],[9,-6],[3,-6],[0,-9],[-3,-7],[-12,-13],[-11,-5],[-15,-11],[-39,-13],[3,-5],[7,-4],[2,-4],[0,-8],[-4,-5],[-37,-14],[-20,-1],[-10,-3],[-38,-24],[-9,-11],[-4,-10],[4,-9],[5,-2],[86,38],[86,39],[27,2],[16,7],[5,14],[-10,6],[-4,1],[6,12],[12,7],[35,11],[6,6],[0,9],[-3,7],[-16,13],[2,4],[63,30],[123,19],[4,3],[4,4],[3,7],[7,18],[2,2],[8,3],[33,-9],[16,1],[19,6],[3,3],[3,5],[2,11],[2,6],[7,8],[27,6],[94,47],[21,16],[6,4],[115,21],[25,26],[29,6],[9,8],[2,6],[1,16],[2,6],[4,5],[117,54],[116,55],[5,7],[-60,19],[4,6],[7,4],[37,11],[-19,14],[4,8],[8,6],[54,15],[18,-3],[0,-19],[0,-6],[1,-7],[2,-3],[3,-1],[65,3],[20,-8],[7,-1],[0,-5],[8,0],[30,8],[19,0],[17,-3],[7,-5],[4,-1],[-6,-8],[-67,-24],[-9,-8],[-3,-5],[-1,-5],[-1,-6],[-1,-7],[-1,-3],[-3,-6],[-1,-4],[-3,-11],[-1,-3],[-11,-17],[-26,-14],[-10,-16],[12,-2],[111,38],[112,38],[37,2],[14,-4],[15,-11],[14,-4],[43,5],[66,-21],[5,-4],[12,-15],[17,-7],[6,0],[4,4],[-1,8],[-11,25],[3,1],[64,-22],[5,-4],[12,-18],[4,-2],[11,-1],[11,2],[20,10],[69,3],[-2,7],[-3,5],[-8,8],[-2,4],[-3,4],[-1,6],[-2,6],[8,2],[49,0],[7,5],[9,8],[9,6],[25,4],[6,8],[-6,8],[-11,2],[-31,0],[-14,5],[-3,0],[1,2],[4,9],[3,2],[5,3],[7,2],[12,-2],[5,1],[4,3],[13,14],[4,3],[31,4],[41,-9],[29,5],[4,3],[3,6],[-4,5],[-21,21],[6,4],[5,9],[3,13],[1,13],[92,4],[3,10],[2,6],[3,2],[51,-8],[27,5],[6,5],[-1,6],[1,7],[2,7],[3,3],[4,2],[69,2],[70,2],[15,-4],[-1,-2],[-1,-1],[-3,-2],[13,-5],[120,-1],[119,0],[119,-1],[120,-29],[120,-28],[38,4],[32,-5],[30,-13],[35,2],[75,-17],[76,-18],[44,-23],[34,-28],[3,-4],[7,-16],[4,-5],[4,-2],[69,-8],[15,-9],[-5,-9],[-67,-43],[-74,-17],[-73,-16],[-6,-4],[-2,-4],[-6,-10],[-3,-4],[-5,-4],[-11,-4],[-41,-24],[-16,-5],[-12,-6],[2,-11],[-1,-7],[-2,-3],[-84,-30],[-84,-29],[-4,0],[-9,3],[-4,0],[-24,-17],[-5,-6],[-4,-6],[-4,-10],[-2,-3],[-3,-1],[-92,-11],[-109,11],[-132,-18],[17,-12],[80,-33],[20,-16],[-7,-27],[-12,-13],[-26,-21],[-91,-22],[-29,3],[-82,-11],[-83,-11],[-5,-2],[-6,-8],[-10,-23],[-7,-6],[-116,-3],[-115,-4],[-29,12],[-98,2],[-98,1],[-7,3],[-23,25],[-9,6],[-10,2],[-62,-4],[5,-22],[1,-15],[-5,-8],[-44,5],[-61,-12],[-64,-31],[-71,-11],[-75,9],[-100,35],[-59,2],[-20,8],[-65,10],[-105,-29],[-104,-30],[-81,-1],[-82,-1],[-10,-3],[6,-7],[7,-3],[109,-1],[8,-2],[5,-6],[2,-8],[0,-10],[0,-20],[15,3],[21,18],[102,41],[102,41],[130,-27],[16,-8],[33,-2],[46,-19],[78,-10],[78,-11],[17,-8],[104,6],[103,6],[115,42],[10,-1],[10,-5],[35,-26],[70,-29],[91,-13],[90,-12],[11,-11],[-9,-9],[-134,-67],[-4,0],[-4,2],[-3,3],[-10,14],[-4,3],[-4,-1],[-4,-4],[-3,-6],[-1,-8],[2,-7],[5,-5],[10,-5],[4,-3],[-12,-11],[-3,-3],[-1,-2],[-17,-9],[-111,-10],[-12,-7],[-65,-5],[-37,19],[-9,2],[-81,-17],[-81,-17],[-110,12],[-110,12],[-30,12],[-70,9],[-43,19],[-82,-5],[-45,-23],[-25,-35],[-15,-10],[-109,-24],[0,-5],[50,-5],[7,-3],[-6,-8],[-18,-16],[-7,-3],[-32,-2],[-9,-6],[21,-7],[21,-13],[-77,-62],[-10,-13],[-6,-5],[-2,-4],[-2,-5],[20,-12],[66,2],[4,-1],[3,-4],[2,-6],[1,-7],[1,-5],[0,-6],[2,-6],[6,-8],[14,-2],[6,-5],[1,-8],[0,-8],[-2,-7],[1,-8],[2,-4],[4,0],[6,3],[23,-1],[7,5],[2,5],[3,12],[3,5],[3,2],[83,25],[6,0],[5,-3],[21,-14],[31,-12],[14,-10],[1,-8],[-3,-1],[-4,-4],[-5,-11],[-3,-4],[-35,-22],[2,-10],[4,-10],[3,-9],[0,-14],[-4,-3],[-11,-15],[-14,-9],[-4,-6],[-4,-9],[-4,-24],[-3,-9],[-15,-23],[-2,-7],[3,-4],[15,-6],[4,-4],[4,-6],[3,-7],[0,-8],[-1,-5],[-6,-13],[-5,-17],[-3,-5],[-12,-20],[-7,-7],[-3,-6],[-1,-7],[4,3],[9,13],[15,16],[20,27],[7,5],[16,-1],[8,3],[4,10],[-1,4],[-1,9],[-1,4],[0,4],[0,4],[1,4],[0,5],[3,6],[3,6],[4,4],[4,-1],[0,-5],[4,-4],[3,-5],[2,-7],[1,-9],[0,-15],[0,-4],[-1,-5],[-2,-5],[-1,-5],[0,-6],[3,1],[6,8],[4,3],[4,0],[4,-1],[4,-3],[3,-3],[0,-2],[1,-4],[0,-2],[55,-4],[18,-14],[-2,-7],[-2,-2],[-17,3],[-8,-4],[-4,-3],[-3,-5],[0,-8],[2,-8],[8,-12],[3,-6],[-10,1],[-21,-4],[-10,5],[-9,9],[-5,2],[-5,0],[-5,-5],[-3,-8],[-3,-19],[-5,-12],[-9,0],[-17,10],[-9,2],[-7,-3],[-16,-15],[-8,-1],[-15,16],[-8,1],[-5,-5],[-9,-13],[-4,-4],[-5,-2],[-18,2],[-11,-1],[-5,-3],[-3,-3],[-10,-11],[-21,-8],[-9,-9],[1,-14],[5,-9],[29,-28],[4,-9],[1,-11],[-3,-10],[-5,-7],[-24,-19],[-12,-5],[-87,-1],[-26,7],[-22,12],[-9,1],[-54,-15],[-4,-3],[14,-12],[6,-9],[3,-11],[-33,-5],[-73,9],[-6,-2],[-2,-7],[16,-12],[18,-17],[4,-2],[-5,-6],[-65,-19],[-27,-17],[-4,-7],[88,-3],[7,-3],[6,-8],[-2,-10],[-5,-9],[-6,-7],[-44,-36],[-5,-9],[-2,-9],[-1,-11],[-3,-11],[-6,-13],[-33,-32],[-19,-36],[-1,-4],[-1,-5],[1,-9],[3,-8],[7,-14],[7,-28],[-8,-14],[-28,-10],[4,-7],[8,-12],[2,-9],[-1,-12],[-6,-6],[-13,-4],[-67,-37],[-5,-6],[2,-5],[22,-19],[4,-9],[1,-12],[-4,-8],[-6,-6],[-11,-7],[-44,-14],[-7,0],[-3,-1],[-2,-5],[1,-4],[5,-10],[1,-5],[-2,-2],[-12,-15],[-3,-6],[-3,-13],[-2,-6],[-7,-8],[-7,-6],[-7,-8],[-4,-14],[88,-12],[43,9],[4,-1],[9,-5],[-2,-6],[-40,-54],[-2,-7],[4,-1],[4,1],[4,2],[3,3],[9,15],[46,47],[17,7],[-11,1],[-13,7],[-8,14],[2,22],[7,16],[115,115],[7,2],[49,-2],[101,-46],[102,-47],[19,-13],[84,-18],[84,-17],[17,-11],[12,-3],[16,-11],[4,-1],[10,-1],[5,-2],[3,-4],[12,-15],[14,-10],[8,-9],[4,-2],[-5,-10],[-11,-2],[-21,1],[-6,-3],[-34,-29],[-29,-10],[-7,2],[-8,8],[-84,44],[-85,44],[-20,6],[-46,-8],[-22,-16],[-5,-1],[-129,-4],[3,-13],[10,-8],[119,-37],[19,-13],[0,-2],[0,-2],[0,-2],[0,-2],[-17,-2],[-19,4],[-18,-3],[-3,-2],[5,-2],[5,-5],[1,-8],[-3,-7],[-4,-2],[-20,3],[-77,29],[-21,1],[-9,-4],[2,-8],[5,-4],[12,-3],[10,-6],[86,-20],[86,-19],[6,-4],[3,-6],[-4,-5],[-78,-8],[-8,-5],[-3,-7],[9,-2],[67,8],[70,-9],[70,-10],[21,-19],[6,-3],[38,-6],[8,-7],[3,-11],[3,-32],[12,6],[5,-1],[30,-17],[6,0],[21,2],[14,-1],[9,-4],[5,-1],[3,3],[-6,10],[-3,4],[-3,3],[0,4],[1,2],[1,2],[1,3],[0,3],[1,21],[2,17],[1,9],[13,1],[56,-17],[58,1],[17,-3],[8,-4],[7,-7],[13,-17],[5,-4],[23,-8],[10,-7],[8,-18],[8,-30],[3,-16],[0,-17],[-3,-34],[-1,-12],[4,-28],[0,-9],[-2,-7],[-10,-16],[-3,-8],[-6,-18],[-4,-8],[-9,-10],[-22,-6],[-8,-14],[-2,-7],[-1,-8],[-1,-7],[-2,-4],[-5,0],[-6,4],[-10,11],[-8,6],[-3,0],[-3,-6],[-1,-8],[1,-11],[2,-20],[-14,14],[-14,16],[-8,5],[-15,3],[-7,6],[-6,6],[-6,4],[-25,8],[-4,3],[-13,13],[-9,3],[-91,-4],[-15,5],[-5,4],[-13,17],[-3,2],[-17,-3],[-18,3],[-69,28],[-91,3],[-5,-1],[-10,-5],[-11,-2],[-55,17],[-21,-3],[2,-7],[0,-5],[-2,-3],[-43,-16],[-3,-2],[-7,-7],[-3,-2],[-4,1],[-20,9],[-44,9],[-87,-9],[-43,10],[-63,-7],[5,-8],[9,-2],[26,0],[42,-9],[102,8],[16,-2],[24,-14],[9,-2],[24,5],[8,-5],[-46,-9],[-28,-20],[-7,-3],[-7,-1],[-4,2],[-9,5],[-10,2],[-2,2],[1,2],[-19,2],[-10,-3],[-8,-8],[8,-5],[18,2],[7,-5],[-29,-8],[-5,-6],[-3,-6],[-47,-30],[-47,-7],[9,-9],[10,-7],[-7,-6],[-10,-1],[-20,7],[-24,23],[-3,3],[-4,10],[-3,4],[-10,10],[-10,14],[-7,6],[-32,13],[-8,5],[-16,23],[-6,4],[-6,3],[-19,2],[-57,-14],[0,-4],[10,-1],[10,-4],[4,-5],[1,-3],[-1,-4],[1,-4],[4,-7],[12,-10],[4,-7],[-14,-7],[-48,7],[-32,-4],[-16,-10],[-11,-18],[6,-10],[8,-6],[8,-4],[41,0],[8,-7],[3,-3],[3,-3],[1,-3],[-5,-4],[-9,-6],[-2,-3],[3,-8],[15,-13],[5,-8],[-1,-6],[2,-4],[9,-5],[19,-15],[3,-1],[4,0],[4,0],[2,3],[0,5],[-2,3],[-2,2],[-7,9],[0,4],[4,5],[-3,2],[-2,2],[-2,4],[-1,5],[10,3],[11,6],[13,15],[9,6],[11,3],[12,0],[10,-5],[-5,-3],[-2,-1],[7,-8],[36,4],[19,-7],[18,-13],[-8,-7],[-37,-7],[-11,-5],[-23,-1],[10,-8],[13,-7],[13,0],[6,10],[15,11],[20,-3],[38,-20],[-94,-26],[-7,-10],[57,6],[20,11],[10,3],[12,-5],[-5,-13],[-13,-12],[-13,-7],[-98,1],[-23,6],[-10,8],[-11,12],[-12,10],[-25,0],[6,-6],[17,-14],[-8,-10],[-11,-2],[-23,3],[26,-15],[9,-1],[27,6],[26,-13],[80,10],[80,10],[8,-2],[2,-3],[-2,-5],[-6,-7],[10,-12],[1,-7],[-15,-17],[-7,-12],[-4,-12],[-2,-13],[-4,-12],[-4,-7],[-2,-4],[1,-2],[13,-8],[29,-8],[28,12],[11,1],[0,4],[-3,0],[-10,4],[5,13],[10,6],[12,1],[9,-4],[-6,-3],[-17,-5],[14,-6],[66,13],[9,-4],[47,-34],[34,-7],[7,-5],[20,-20],[7,-2],[16,0],[9,-2],[7,-6],[-7,-5],[-25,-3],[5,-8],[47,12],[14,-4],[4,0],[0,4],[-10,1],[-28,15],[-22,4],[-3,2],[-6,8],[-2,2],[-54,20],[-4,5],[-2,3],[-2,6],[-2,6],[-21,-5],[-8,2],[-14,17],[-7,3],[7,10],[10,4],[37,-6],[56,-29],[29,-7],[27,-14],[51,3],[21,11],[81,7],[25,-8],[24,-24],[18,-36],[8,-4],[-1,-6],[-14,-30],[1,-3],[1,-6],[-11,-2],[-20,5],[-47,-2],[-76,-42],[-120,-1],[-120,-1],[-120,-2],[-13,-6],[-12,-2],[-13,2],[-29,11],[-9,7],[-16,22],[-7,3],[-9,-4],[1,-4],[0,-3],[1,-3],[2,-2],[-9,-11],[-3,-5],[4,-3],[17,-1],[-2,0],[3,-2],[3,-4],[2,-4],[2,-3],[4,-3],[6,-1],[75,2],[76,2],[101,0],[101,-1],[22,-8],[13,-1],[32,-14],[110,6],[52,-27],[29,-36],[4,-6],[16,-23],[21,-13],[42,-14],[-8,-5],[-30,8],[-19,-1],[-7,-6],[3,-13],[-13,-12],[5,-9],[25,-15],[-5,-11],[5,-9],[17,-13],[7,-7],[6,-10],[4,-11],[1,-12],[1,-5],[0,-7],[0,-15],[1,-8],[5,-15],[2,-7],[1,-8],[0,-5],[-1,-4],[-3,-6],[-2,-7],[-1,-16],[0,-7],[-6,-33],[-4,-16],[-7,-16],[-10,-16],[-6,-6],[-12,-6],[-13,-17],[-4,-4],[-81,4],[-8,4],[-15,13],[-11,5],[0,3],[1,5],[-1,3],[-3,3],[-4,2],[-3,2],[-3,5],[7,4],[2,5],[-1,4],[0,5],[4,6],[6,4],[10,4],[-5,8],[-7,5],[-20,6],[-21,15],[-8,3],[-38,-3],[-27,-14],[-74,-12],[-12,4],[-39,28],[-48,13],[-38,22],[-10,9],[-5,20],[-6,14],[-13,10],[-107,58],[-82,23],[-83,22],[-5,-5],[1,-5],[5,-4],[93,-37],[93,-36],[51,-38],[-10,-5],[-133,20],[-132,19],[-18,11],[-2,4],[0,1],[1,3],[-1,4],[-2,4],[-4,-1],[-4,-5],[0,-7],[2,-7],[10,-11],[96,-15],[95,-15],[96,-16],[8,-4],[4,-5],[9,-20],[11,-11],[93,-29],[9,-10],[17,-11],[10,-13],[5,-4],[50,-15],[25,-16],[12,-33],[-48,-10],[-85,10],[-21,-10],[-30,-2],[-111,-70],[-50,-11],[-3,1],[-9,7],[-9,4],[-3,2],[-3,4],[-2,3],[-1,5],[0,8],[-5,14],[-11,10],[-117,51],[-25,1],[7,-10],[19,-5],[18,-10],[37,-12],[57,-32],[-4,-10],[-5,-6],[-13,-5],[6,-4],[19,-4],[4,-2],[13,-14],[28,-11],[28,-1],[44,13],[109,66],[24,-2],[26,-10],[27,-2],[30,5],[15,-1],[14,-8],[-1,-1],[-3,-3],[0,-18],[-20,-26],[-2,-11],[7,-13],[2,-7],[2,-6],[-1,-12],[-2,-6],[-9,-9],[-8,-4],[-3,-5],[0,-10],[1,-5],[4,-6],[6,-8],[20,-20],[10,-13],[2,-10],[-4,-5],[-11,-5],[-8,-11],[-28,-20],[-85,4],[-6,-4],[7,-7],[15,-4],[94,0],[8,2],[9,9],[14,2],[19,9],[48,-8],[41,5],[13,-2],[23,-8],[5,-3],[8,-11],[3,-2],[2,-1],[7,-6],[3,-1],[10,4],[12,-1],[6,-3],[8,-17],[12,-4],[22,0],[3,3],[18,18],[20,12],[11,4],[23,20],[13,4],[13,-3],[13,-8],[11,-13],[-11,-21],[-1,-9],[6,-10],[-6,-6],[-21,-6],[9,-3],[11,2],[10,0],[5,-12],[-2,-1],[-3,-2],[-1,-1],[4,-6],[5,-2],[10,0],[26,-8],[21,-1],[11,-3],[9,-9],[-9,-5],[-11,-10],[-9,-12],[-2,-13],[-5,0],[-13,-3],[-5,-3],[-3,-5],[1,-3],[2,-4],[1,-6],[-2,-10],[-4,-6],[-45,-37],[-3,-4],[-2,-6],[-2,-1],[-70,-17],[-80,12],[-80,12],[-6,10],[1,4],[1,3],[1,2],[-1,5],[-1,1],[-3,5],[-2,2],[0,7],[0,12],[-1,6],[-4,5],[-7,8],[-7,10],[-7,7],[-7,11],[-5,2],[-4,-1],[-14,-6],[-3,0],[-1,2],[-3,8],[-1,2],[-8,2],[-17,-5],[-8,0],[-19,8],[-48,-8],[-119,13],[-66,-8],[-21,-8],[-16,0],[-50,19],[-4,6],[-2,5],[-4,13],[-2,6],[-7,10],[-47,32],[-10,2],[-9,-6],[10,-10],[38,-26],[2,-2],[2,-4],[3,-9],[11,-19],[20,-16],[5,-2],[4,-4],[1,-7],[0,-7],[-7,-5],[-2,-5],[-4,-9],[-4,-4],[-37,-24],[-25,-9],[-43,1],[-26,-11],[-38,10],[-6,-1],[-3,-3],[1,-3],[14,-2],[19,-11],[50,8],[27,-3],[9,-25],[-6,-12],[-11,-11],[-11,-7],[-15,-5],[-13,-8],[-7,-2],[-11,0],[-5,-3],[-5,-5],[8,-4],[20,8],[8,0],[5,-4],[4,-7],[6,-13],[-5,-10],[-15,-6],[-29,-5],[-23,5],[-17,-8],[-3,-5],[3,-6],[6,-3],[30,-4],[17,-11],[50,-8],[-2,0],[7,-1],[16,-7],[12,-8],[0,-3],[-2,-4],[-3,-10],[4,-2],[1,-3],[0,-5],[-3,-6],[9,-8],[20,-8],[9,-8],[-2,-4],[15,-29],[-6,-15],[-1,-3],[0,-4],[2,-7],[0,-3],[-1,-4],[-4,-4],[-1,-4],[0,-7],[1,-8],[1,-7],[3,-2],[1,-3],[0,-7],[0,-13],[-1,-6],[-2,-5],[-1,-5],[2,-6],[3,-3],[8,7],[3,-2],[6,-2],[6,7],[12,17],[-2,10],[-4,8],[-9,14],[1,1],[1,1],[1,1],[1,2],[-2,2],[-1,4],[-1,6],[0,6],[0,2],[-2,5],[0,3],[1,2],[2,5],[1,3],[-1,5],[-2,5],[-1,5],[1,6],[1,4],[-2,5],[-5,7],[-2,5],[-2,5],[-1,4],[-4,4],[-4,1],[-11,1],[-4,4],[-1,5],[5,9],[-1,6],[-2,5],[-3,2],[-7,3],[1,3],[1,2],[0,2],[2,2],[-2,14],[10,11],[24,11],[54,3],[126,-51],[125,-51],[89,6],[13,-3],[7,-3],[5,-6],[1,-7],[1,-6],[1,-5],[5,-2],[-3,-6],[-3,-2],[-3,-3],[-2,-15],[-3,-4],[-3,-3],[-27,-2],[-12,-5],[-9,-9],[3,-6],[4,-4],[4,-2],[4,-1],[0,-3],[-17,1],[-9,-3],[-2,-11],[1,-4],[7,-10],[2,-3],[3,-11],[2,-5],[2,-2],[1,-3],[1,-6],[-2,-5],[-2,-2],[-2,-3],[1,-5],[-1,-8],[-11,-15],[0,-9],[9,-7],[22,1],[7,-6],[1,-11],[-5,-13],[-8,-11],[-6,-7],[-26,-10],[-102,3],[-103,2],[-48,18],[-25,2],[-21,-20],[3,0],[1,-1],[8,-9],[6,-9],[1,-10],[-6,-8],[-7,-2],[-15,1],[-14,-7],[-21,-4],[-51,-24],[-40,-32],[-28,-15],[-30,-2],[-89,23],[-89,23],[-16,9],[-23,4],[-5,2],[-30,27],[-63,22],[-10,6],[-18,19],[-10,7],[-65,33],[-21,18],[-6,4],[-14,3],[-6,5],[-2,6],[-5,14],[-3,12],[0,21],[-2,6],[5,13],[9,3],[18,-4],[42,4],[21,-8],[33,4],[15,-4],[24,-13],[11,-10],[13,-8],[60,-15],[79,-43],[51,-7],[13,8],[34,6],[34,21],[54,12],[-10,3],[-33,-4],[-13,-7],[-17,0],[-48,-24],[-53,-4],[-18,7],[-20,23],[-56,23],[-8,0],[2,0],[-109,47],[-76,1],[-10,4],[-9,7],[-31,33],[-7,5],[-8,0],[-30,-10],[-22,-13],[-4,-2],[-17,3],[-5,-3],[2,-15],[-4,-6],[-8,-3],[-9,-6],[-7,-9],[-3,-10],[-7,-23],[27,-57],[-7,-8],[-7,-3],[-9,0],[-135,42],[-12,10],[-3,9],[5,13],[3,11],[-2,10],[-6,9],[-50,19],[-47,42],[-4,1],[-14,-1],[-3,0],[-2,2],[-2,3],[-1,3],[-1,3],[-1,2],[-16,39],[-4,5],[-7,4],[-22,8],[-14,12],[-5,0],[-3,-1],[-5,-3],[-4,-6],[-1,-6],[3,-7],[38,-30],[8,-13],[-3,-11],[6,-9],[26,-15],[20,-18],[26,-7],[57,-28],[-2,-4],[2,-10],[0,-6],[-3,-9],[-3,-3],[-1,-3],[5,-10],[10,-11],[14,-9],[43,-12],[3,-1],[2,-6],[40,-14],[3,-4],[-2,-9],[-4,-7],[-5,-3],[-79,-6],[-80,-5],[-57,-42],[5,-4],[11,3],[4,-4],[-4,-6],[-1,-8],[2,-6],[0,-4],[-5,-5],[-32,-11],[-38,-32],[-16,-8],[-32,-2],[-24,-8],[-51,-1],[-8,4],[-41,41],[-22,13],[-23,5],[-5,-2],[-11,-9],[-5,-1],[-22,-1],[-51,10],[-96,61],[-16,25],[-9,6],[-20,0],[-4,-2],[-14,-14],[-10,-4],[-4,-4],[-3,-8],[22,2],[11,-2],[15,-19],[44,-34],[59,-16],[-2,0],[5,-2],[14,-10],[6,-2],[20,2],[87,-16],[13,-10],[1,-15],[-4,-3],[-35,-3],[-12,-6],[-5,-4],[-2,-5],[-2,-5],[-1,-8],[-2,-3],[-12,-9],[-13,-15],[-11,0],[-31,10],[-14,9],[-22,5],[-14,7],[-12,2],[-30,-5],[-10,5],[-46,-16],[-57,2],[-19,-4],[-15,-15],[14,-7],[56,6],[12,-3],[7,-10],[-2,-18],[2,-4],[-2,-5],[13,-31],[1,-6],[-2,-7],[-3,-5],[-16,-15],[-19,-6],[-6,-6],[12,-7],[12,7],[11,10],[21,9],[2,7],[-1,29],[1,5],[2,6],[4,9],[1,6],[-2,5],[-2,4],[-2,5],[5,10],[10,8],[31,12],[123,-27],[15,0],[14,9],[31,39],[13,8],[124,3],[31,-7],[46,-31],[93,-16],[93,-16],[1,-5],[1,-7],[1,-7],[3,-4],[12,-11],[-6,-17],[-9,-7],[-10,-5],[-17,-22],[-9,-6],[-26,-7],[-4,-3],[-4,-4],[-3,-5],[-5,-3],[-104,6],[-12,-4],[-11,-11],[-7,-10],[-19,-18],[-33,-20],[-26,-9],[-26,-2],[-25,4],[-92,46],[-51,6],[-89,-28],[-13,0],[-34,20],[-13,2],[-10,-1],[-9,-9],[7,-7],[59,-18],[8,5],[6,-2],[43,12],[68,2],[48,-23],[7,0],[10,-2],[19,-11],[-40,-15],[-36,-3],[-11,-8],[-14,-6],[-5,0],[16,-8],[103,24],[12,-8],[-5,-13],[-10,-36],[-7,-12],[-18,-17],[-8,-12],[3,-1],[9,1],[9,5],[48,61],[6,14],[9,7],[24,-6],[58,15],[9,10],[39,22],[16,15],[12,7],[24,5],[13,-4],[24,-17],[13,-4],[24,8],[7,-4],[2,-4],[3,-12],[2,-4],[1,-4],[4,-3],[11,-5],[22,0],[5,-2],[9,-8],[5,-2],[42,-4],[4,-2],[12,-11],[21,-9],[5,-7],[-10,-11],[-2,-6],[2,-9],[3,-6],[2,-6],[1,-5],[-3,-5],[0,-4],[4,0],[5,-1],[4,-4],[4,-3],[-4,-8],[-2,-3],[-2,-2],[6,-4],[13,7],[6,-3],[-3,-11],[-4,-4],[-6,-2],[-15,-9],[-19,-6],[-33,-17],[-68,-20],[-108,-4],[-108,-4],[0,-4],[9,-4],[40,-10],[86,8],[22,-6],[9,0],[7,-3],[-3,-9],[-36,-59],[-8,-9],[-9,-13],[-2,-4],[0,-7],[0,-9],[3,-9],[6,-16],[-4,-6],[-9,-9],[-4,-5],[5,-3],[7,1],[7,3],[12,7],[3,4],[2,6],[0,10],[-1,7],[-2,4],[0,5],[1,9],[3,7],[4,5],[3,6],[-2,10],[9,12],[22,20],[15,22],[8,6],[38,10],[7,-1],[2,4],[24,8],[20,18],[7,2],[6,-2],[12,-12],[7,-2],[4,1],[11,7],[4,0],[11,-4],[23,5],[8,-5],[19,-26],[30,-23],[18,-8],[11,4],[-2,2],[-6,7],[9,-2],[44,-35],[8,-4],[29,0],[3,-2],[9,-5],[8,-2],[9,1],[6,-3],[3,-13],[-5,-2],[-6,0],[-5,1],[-3,4],[-2,-2],[-2,-1],[-2,0],[3,-6],[4,-2],[21,0],[5,3],[-1,8],[5,5],[5,-5],[4,-7],[5,-4],[-1,-6],[-1,-2],[2,-13],[-27,-28],[-3,-12],[3,-2],[5,1],[9,5],[19,16],[9,4],[10,1],[8,-3],[4,-3],[131,-47],[6,-5],[-6,-11],[-8,-5],[-9,-3],[-8,-5],[15,-10],[8,-3],[7,3],[8,6],[7,2],[8,-2],[20,-11],[70,-21],[18,-13],[17,-6],[9,-6],[2,-4],[4,-5],[0,-6],[-5,-5],[-7,-4],[-33,-8],[-18,-10],[-2,-15],[-13,-16],[-50,-26],[-27,-21],[-13,-16],[-8,-18],[2,-4],[1,-10],[11,-1],[20,7],[6,3],[12,11],[10,4],[9,12],[4,2],[10,3],[71,40],[12,2],[21,13],[11,2],[2,-15],[-5,-11],[-10,-10],[-10,-8],[-10,-5],[-3,-8],[-2,-3],[-3,-1],[-6,-2],[-16,-9],[-3,-4],[-1,-11],[7,-24],[-2,-12],[1,-5],[5,-4],[6,0],[4,7],[1,7],[-1,4],[-2,2],[-3,-1],[0,4],[6,1],[7,4],[13,10],[7,2],[16,-9],[8,0],[-1,3],[0,1],[0,2],[-1,3],[5,10],[11,7],[7,7],[4,9],[-1,5],[-1,5],[1,9],[4,3],[22,13],[8,2],[7,-2],[5,-8],[-5,-12],[6,-4],[68,16],[-3,-4],[-3,-4],[-7,-4],[-2,-7],[-7,-4],[-14,-1],[9,-8],[-6,-9],[-18,-2],[-31,-13],[-8,-8],[17,-9],[12,0],[4,-4],[-14,-14],[-35,4],[-16,-3],[-6,-3],[-20,0],[-6,-3],[-12,-14],[-5,-3],[0,-5],[-6,-28],[-1,-7],[0,-6],[1,-6],[9,-23],[1,-8],[1,-11],[0,-4],[-2,-3],[-1,-2],[1,-7],[2,-4],[8,-8],[4,-4],[-4,-8],[-1,-5],[-1,-11],[1,0],[2,-3],[1,-4],[-1,-1],[-2,-2],[-1,-3],[-2,-8],[11,-4],[12,0],[11,8],[4,19],[2,10],[0,6],[-3,2],[-4,2],[-1,4],[2,8],[13,35],[6,9],[43,36],[7,3],[14,0],[14,-4],[6,-5],[6,-7],[6,-4],[5,4],[-2,5],[-2,5],[-2,4],[-3,2],[15,-4],[5,2],[-3,14],[7,-2],[7,-13],[7,-1],[2,4],[1,5],[2,5],[4,2],[3,-1],[3,-4],[2,-5],[2,-6],[-8,-8],[-18,-9],[-9,-7],[11,-5],[22,5],[11,-4],[-6,-5],[-16,-4],[-6,1],[0,-5],[34,-2],[8,-9],[-7,-2],[-13,-9],[-21,-4],[-7,-4],[-4,-6],[-1,-7],[3,-1],[5,2],[5,4],[6,4],[20,-2],[-4,-4],[-8,-5],[-6,-9],[-4,-3],[-6,-3],[6,0],[18,8],[35,0],[0,-4],[-99,-33],[5,-4],[11,-1],[5,-3],[0,-4],[-2,0],[-6,-4],[7,-4],[8,2],[7,7],[6,9],[5,2],[8,-3],[8,-6],[4,-7],[-5,-3],[-2,-1],[0,-4],[7,-1],[6,-6],[12,-17],[-5,-9],[-4,-13],[-6,-8],[-8,3],[-12,22],[-7,8],[-10,1],[3,-8],[3,-8],[1,-7],[-3,-6],[8,-1],[24,-15],[-9,-6],[-103,-20],[-11,-5],[-48,-5],[10,-10],[91,14],[23,-5],[5,5],[-2,4],[7,1],[12,6],[6,1],[16,-1],[9,-3],[6,-8],[-1,-6],[-1,-8],[1,-7],[5,-4],[-5,-4],[-18,-8],[-8,-3],[-17,-2],[-15,-9],[-29,-2],[0,-5],[21,-3],[53,18],[8,-6],[-20,-13],[-9,-10],[2,-10],[17,16],[10,5],[8,-4],[-10,-8],[10,-3],[18,16],[8,-5],[-11,-16],[-28,-23],[-12,-14],[3,-5],[8,-9],[3,-2],[2,-2],[-2,-4],[-5,-7],[-3,-8],[-3,-2],[-22,-1],[-6,1],[-11,7],[-4,0],[-1,0],[-2,1],[-5,-1],[5,-10],[8,-6],[9,-4],[8,-1],[11,1],[32,14],[4,0],[4,-1],[1,-3],[0,-10],[-2,-3],[-7,-2],[-14,-11],[-5,-1],[-9,0],[-4,-2],[-3,-6],[7,0],[6,3],[6,1],[6,-4],[10,6],[14,-2],[12,-8],[8,-12],[-61,0],[0,-4],[6,-4],[31,-3],[7,-4],[7,-6],[-4,-3],[-6,-2],[-11,1],[2,-5],[2,-4],[6,-7],[-7,-4],[-31,0],[2,-3],[1,-2],[2,-7],[-7,-5],[-2,-9],[3,-7],[8,1],[15,10],[7,2],[9,-4],[0,-5],[-15,-8],[6,-5],[24,-3],[4,-7],[3,-2],[7,6],[4,0],[4,-2],[3,-3],[-17,-28],[-6,-6],[-12,-10],[-10,-15],[-7,-5],[-8,-4],[-17,-1],[-3,0],[-7,5],[-1,2],[-13,-4],[-28,-25],[-14,4],[-3,8],[4,9],[9,13],[3,9],[0,4],[-2,3],[-20,14],[-15,2],[-15,-5],[-42,-28],[-16,-4],[-11,5],[-6,10],[-4,19],[-1,22],[3,19],[-2,3],[2,5],[-9,35],[-2,4],[-5,7],[-2,5],[0,3],[1,3],[1,21],[6,34],[1,9],[1,6],[2,10],[1,12],[-1,9],[-5,5],[-9,0],[-8,-2],[-6,-3],[-12,-12],[-1,-5],[-1,-7],[-1,-4],[-5,-10],[-1,-7],[1,-7],[5,-9],[-4,-4],[-14,-8],[2,-5],[-2,-5],[0,-3],[1,-2],[2,-3],[1,-5],[-1,-4],[-2,-4],[-1,-4],[2,-8],[5,-7],[10,-9],[2,-6],[2,-8],[2,-9],[0,-8],[-1,-8],[-2,-6],[-1,-6],[0,-8],[-2,-8],[-3,-21],[-3,-9],[-6,-9],[-8,-4],[-99,1],[-22,-8],[-69,9],[-94,61],[-18,5],[-17,10],[-34,26],[-25,27],[-13,18],[-3,15],[-2,0],[-2,2],[-1,3],[-1,6],[-3,11],[-15,21],[-5,10],[-7,34],[-2,22],[-2,9],[-1,10],[1,15],[7,23],[1,10],[-5,9],[-3,5],[-1,5],[-1,4],[-2,5],[-8,13],[-45,49],[-22,16],[-17,16],[-4,6],[-1,8],[4,13],[-8,4],[-10,-1],[-9,2],[-4,10],[3,7],[16,23],[-6,13],[-10,-3],[-10,-9],[-10,-5],[-15,0],[-3,-1],[-3,-8],[-2,-3],[-6,-3],[-6,-2],[-6,1],[-5,4],[0,3],[-5,1],[-10,0],[-5,-1],[-10,-6],[-5,-1],[-17,-1],[-7,4],[-14,21],[-17,10],[-9,6],[-8,16],[-3,4],[-10,10],[-3,5],[-7,8],[-17,2],[-6,6],[-5,6],[-13,8],[-5,6],[-4,9],[-5,7],[-6,6],[-7,5],[-5,2],[-16,-2],[-12,4],[-5,0],[-2,3],[-17,5],[-3,2],[-3,3],[-3,2],[-4,1],[-22,-4],[-11,1],[-23,11],[-10,-1],[-22,-7],[-23,-1],[-12,4],[-10,11],[-8,21],[-5,6],[-7,0],[-2,-3],[-3,-3],[-3,-5],[-1,-4],[-3,-24],[-9,-10],[-27,-7],[-52,0],[-8,7],[-17,4],[-17,9],[-61,52],[-5,6],[-10,26],[0,3],[0,1],[2,0],[-5,9],[-29,21],[-11,1],[-5,3],[-10,10],[-12,4],[-42,33],[-2,9],[5,12],[-77,46],[-14,18],[-4,-3],[-6,-13],[-5,-3],[-6,-1],[-17,1],[-16,7],[-18,4],[-5,1],[-34,32],[-36,18],[-27,24],[-8,5],[-9,2],[-4,-2],[-2,-5],[-1,-5],[-2,-4],[-4,-3],[-8,-3],[-3,-3],[0,-4],[9,-3],[18,5],[9,-4],[6,-4],[26,-8],[28,-33],[-12,-9],[-18,-8],[-6,-11],[9,-12],[83,-9],[82,-9],[11,-7],[6,-13],[-14,3],[-26,11],[-13,2],[-4,-3],[-5,-5],[-3,-6],[1,-2],[18,-2],[88,-45],[89,-45],[-1,-6],[-7,-14],[-2,-6],[-2,-6],[-2,-5],[-3,-5],[-5,-4],[-13,-1],[-49,7],[-15,-2],[-35,-22],[-12,-3],[-23,12],[-12,2],[-7,-10],[16,-4],[5,-4],[-9,-6],[-119,-10],[-23,8],[-5,-4],[0,-1],[1,-1],[0,-2],[-1,-4],[20,-10],[71,7],[71,6],[30,15],[25,3],[17,7],[73,-12],[74,-12],[-5,-10],[-8,-7],[-23,-9],[-16,-1],[-6,-6],[31,-21],[4,0],[1,7],[7,9],[14,7],[25,6],[15,-1],[46,-15],[14,2],[6,-2],[10,-11],[5,-2],[46,4],[21,13],[35,-8],[15,7],[31,-11],[13,0],[27,8],[58,-8],[21,-9],[20,-19],[18,-23],[10,-10],[9,-4],[17,1],[5,-1],[2,-3],[2,-5],[2,-5],[3,-3],[-1,-9],[-1,-31],[-3,-7],[-21,-23],[-2,-11],[-9,0],[-46,27],[-11,2],[-9,-5],[12,-12],[40,-24],[4,-4],[-6,-12],[-22,-8],[-8,-7],[-4,-5],[-17,-5],[-17,-11],[-19,-4],[-6,-4],[-6,-5],[-8,-10],[-4,-4],[-5,-2],[-21,0],[-21,-8],[-17,0],[-6,-3],[-3,-3],[-6,-13],[-4,-4],[-11,-1],[-4,-3],[-9,-9],[-11,-6],[-112,-23],[-90,8],[-28,-8],[-70,4],[-3,8],[-10,23],[-6,9],[-46,55],[-4,6],[-2,8],[-1,7],[-2,5],[-4,4],[-5,2],[-5,-3],[-3,-4],[-4,-3],[-16,0],[-5,-4],[3,-11],[12,-15],[6,-10],[10,-22],[6,-8],[16,-5],[10,-5],[9,-8],[7,-9],[6,-13],[-5,-6],[-19,-1],[-11,2],[-27,18],[-32,0],[-5,2],[-8,8],[-4,2],[-10,-1],[-36,-12],[-13,1],[-5,2],[-8,8],[-4,2],[-20,-4],[-10,-5],[-3,-8],[84,-17],[11,-10],[2,-17],[13,0],[3,2],[3,1],[20,-10],[0,-8],[-4,-9],[-5,-8],[-6,-14],[-6,-30],[-4,-15],[-9,-16],[-30,-39],[-11,-8],[-14,-4],[-27,0],[0,-4],[6,-7],[7,-4],[14,-1],[0,-4],[-7,-4],[-12,-13],[-15,-5],[-15,-9],[-8,-2],[-20,2],[-7,-2],[-3,-3],[-8,-7],[-4,-2],[-33,4],[-89,-26],[-7,-8],[-4,-2],[-27,5],[-7,-2],[-7,-4],[-3,-8],[0,-1],[0,-3],[13,-8],[2,-4],[0,-5],[-3,-3],[-2,-3],[-2,-5],[26,0],[22,11],[8,1],[7,3],[12,14],[7,3],[8,2],[26,11],[59,3],[9,2],[14,16],[9,1],[18,-2],[32,4],[-3,-5],[-2,-3],[-3,-1],[-4,1],[2,-7],[2,-3],[2,-2],[-1,-3],[-6,-12],[-4,-4],[-2,-6],[3,-10],[3,-6],[15,-14],[11,-7],[36,9],[17,-1],[119,21],[120,21],[33,-8],[44,7],[29,15],[16,2],[59,-5],[13,-8],[45,-48],[-5,-7],[-7,-5],[-6,-3],[-17,-2],[-2,-4],[1,-8],[-69,-24],[-7,-1],[-36,7],[-22,15],[-11,1],[-13,-12],[-17,-6],[-16,-15],[-10,-5],[-23,-4],[-10,-4],[-28,-31],[-5,-8],[-6,-5],[-75,-24],[-21,-16],[-11,-6],[-24,-4],[-56,31],[-41,1],[-2,-3],[-15,-3],[-30,-25],[-16,-5],[-26,9],[-4,-5],[2,-10],[6,-9],[7,-7],[6,-2],[19,4],[23,0],[38,12],[34,0],[7,-4],[13,-20],[9,-5],[6,-5],[3,-2],[3,0],[7,4],[19,2],[16,11],[58,13],[12,-1],[8,-7],[1,-6],[0,-7],[-2,-13],[0,-8],[1,-5],[2,-4],[3,-3],[9,-6],[37,7],[9,3],[7,9],[26,57],[3,9],[-2,4],[-2,3],[-2,7],[2,6],[3,5],[1,5],[-2,8],[23,21],[8,3],[13,-4],[6,0],[7,4],[20,24],[7,5],[11,2],[58,-6],[7,-4],[20,-19],[59,-8],[14,8],[11,9],[70,30],[21,18],[123,42],[8,7],[21,5],[15,8],[16,1],[10,-3],[3,-6],[-10,-11],[-11,-4],[-23,-1],[-10,-8],[34,0],[-4,-4],[-11,-8],[-2,-6],[-1,-2],[-3,-6],[-1,-7],[3,-9],[0,-2],[3,-3],[2,-1],[25,0],[4,1],[2,4],[2,5],[2,6],[4,5],[35,29],[7,3],[9,-1],[11,-4],[10,-8],[4,-10],[1,-7],[2,-6],[3,-4],[4,-1],[3,2],[1,4],[0,3],[1,3],[10,4],[10,-5],[10,-7],[19,-7],[19,-14],[7,1],[5,-6],[23,-8],[2,-4],[1,-4],[0,-4],[1,-3],[2,-1],[10,1],[58,-8],[11,-7],[40,-7],[6,-4],[4,-7],[4,-4],[5,-2],[12,-2],[3,-2],[5,-6],[9,-3],[18,10],[11,-4],[7,-5],[22,-1],[7,-2],[13,-8],[6,-2],[110,0],[110,0],[110,1],[8,5],[15,4],[22,11],[28,4],[4,-3],[4,-7],[1,-5],[-3,-2],[-5,-5],[-13,-22],[-2,-6],[-23,-20],[-15,-22],[-11,-6],[-12,-11],[-6,0],[-4,7],[-1,7],[-3,6],[-4,3],[-6,1],[-2,-1],[-1,-7],[0,-6],[-2,-4],[-2,-3],[-4,-1],[-12,2],[-4,-5],[-1,-15],[-4,-3],[-43,4],[-7,-3],[-5,-8],[-6,4],[1,5],[1,3],[2,2],[2,2],[-7,0],[-14,5],[-7,0],[-4,-3],[-5,-4],[-3,-6],[-2,-6],[4,-9],[9,-3],[24,-4],[5,-2],[2,-4],[-1,-2],[-8,-7],[-7,6],[-24,3],[-5,4],[-10,16],[-10,9],[-9,1],[-8,-5],[-7,-9],[13,-16],[2,-6],[-2,-6],[-6,-2],[-36,6],[-12,-2],[-11,-10],[3,-1],[6,-3],[75,-7],[12,-12],[4,-1],[3,-4],[-2,-9],[-2,-4],[-21,-15],[-9,-2],[-21,5],[-20,10],[-8,9],[-15,22],[-10,8],[-10,5],[-10,-1],[-5,-5],[0,-2],[4,-2],[6,0],[4,-2],[5,-8],[8,-7],[5,-12],[5,-13],[1,-6],[2,-6],[-2,-1],[-27,6],[-17,-7],[-62,-11],[-83,14],[6,-6],[57,-16],[7,-7],[4,-10],[2,-11],[3,-9],[6,-6],[13,-8],[0,-4],[-11,-5],[-21,-2],[-10,-5],[0,-3],[22,-1],[8,-4],[-7,-16],[-12,-11],[-34,-20],[-35,14],[-3,7],[-1,9],[-3,9],[-5,7],[-6,2],[-4,-4],[-2,-11],[-4,-6],[-7,0],[-54,16],[-14,10],[-7,2],[-6,-3],[41,-27],[18,-2],[8,-4],[4,-7],[4,-8],[3,-10],[0,-10],[-2,-6],[-7,-2],[-13,2],[2,-7],[1,-3],[2,-2],[-4,-4],[0,-4],[4,-2],[8,-4],[4,-2],[-4,-6],[-7,0],[-35,14],[-2,4],[-21,-3],[-7,3],[7,-8],[-1,-10],[-6,-10],[-14,-18],[-9,-5],[-8,0],[-9,6],[0,4],[11,4],[-6,3],[-24,-3],[-23,8],[-6,5],[-1,3],[-3,10],[-3,3],[-7,-1],[-2,-2],[1,-5],[-2,-4],[-1,-2],[0,-1],[-3,-1],[2,-4],[10,-11],[11,-6],[9,-10],[8,-22],[-4,0],[-11,-3],[-9,-6],[-12,-1],[-6,-2],[0,-5],[8,-3],[25,3],[6,-1],[3,-5],[0,-6],[-6,-8],[-11,-7],[-38,-1],[0,4],[2,1],[1,1],[1,1],[2,1],[0,4],[-7,-1],[-25,3],[-12,9],[-35,12],[-7,-2],[0,4],[-4,-5],[-21,-8],[-5,-4],[-2,-4],[2,-4],[3,-8],[-17,2],[-4,-2],[-2,-7],[3,-3],[57,-2],[-3,0],[15,-2],[6,-5],[4,-9],[-2,-5],[-1,-4],[0,-6],[1,-6],[-8,-4],[-18,-1],[-8,-6],[5,-4],[5,-3],[6,-2],[5,0],[-10,-13],[-19,0],[-19,7],[-11,10],[1,4],[-2,0],[-7,-4],[-13,-4],[10,-10],[14,-22],[8,-8],[-3,-11],[-5,-5],[-14,0],[0,-5],[2,0],[0,-4],[-9,2],[-10,7],[-5,9],[6,7],[-36,0],[-30,19],[-9,2],[-10,-5],[28,-27],[2,-8],[-9,-7],[-21,-7],[11,-6],[33,2],[9,-5],[5,-8],[-1,-8],[-10,-3],[-42,4],[-18,-4],[0,-2],[-3,-11],[-1,-3],[8,-5],[25,-3],[6,-4],[-3,-8],[-11,-15],[-11,-3],[-34,10],[-9,-9],[14,-8],[-4,-2],[-7,-2],[-3,-2],[-3,-1],[-4,0],[-2,0],[3,-5],[0,-4],[-28,-25],[-34,-5],[-7,3],[-5,4],[-13,-5],[-6,1],[-4,3],[-12,1],[-5,-2],[-3,-1],[-1,-2],[-5,-7],[-1,-5],[1,-3],[2,-3],[1,-3],[2,-3],[2,-1],[2,-2],[0,-6],[-1,-3],[-3,-1],[-3,-1],[-3,1],[0,-4],[6,0],[-5,-12],[-11,-10],[-25,-12],[-10,0],[-4,1],[-3,4],[-5,7],[-3,2],[-8,-1],[-20,-13],[-10,-3],[-10,2],[-8,6],[-3,8],[7,13],[-14,2],[-28,-40],[-20,9],[-11,-3],[-10,-7],[-6,-6],[0,-6],[2,-12],[-1,-2],[-4,-2],[-7,-5],[-2,-1],[-24,8],[-5,5],[-6,5],[-18,-2],[-14,4],[-7,-2],[-4,-5],[6,-9],[15,-9],[8,-5],[4,-11],[-6,-2],[-10,2],[-11,-5],[-39,3],[-20,6],[0,4],[3,3],[6,6],[2,4],[-26,0],[-8,-6],[-6,-11],[-7,-9],[-18,6],[-8,-6],[-2,-7],[43,-16],[-8,-9],[-31,-2],[-10,-5],[-9,6],[-20,9],[-8,11],[-4,13],[-2,12],[-4,8],[-9,1],[-11,-4],[-1,-8],[2,-12],[-2,-14],[0,-6],[5,-15],[-1,-8],[-3,-2],[-4,4],[-5,9],[-4,-6],[-3,-7],[-4,-6],[-5,-2],[-4,3],[-12,11],[-14,18],[-13,4],[-25,1],[3,-4],[9,-5],[5,-3],[3,-5],[8,-16],[0,-4],[-11,-8],[-42,12],[-17,0],[3,-14],[-3,-6],[-6,-1],[-6,1],[-7,0],[-6,-4],[-5,-5],[-6,-3],[0,-4],[2,-1],[3,-3],[2,0],[-6,-10],[-8,-1],[-36,12],[-9,0],[-5,-5],[-2,-11],[-1,-15],[-27,18],[-9,2],[0,-11],[-7,2],[-28,20],[-5,6],[-6,4],[-7,1],[-6,-4],[-2,-8],[1,-8],[5,-9],[7,-5],[7,-3],[5,-4],[4,-12],[-11,-18],[-7,-7],[-8,-3],[-5,5],[-19,29],[-1,2],[-4,-3],[-10,-5],[-1,-4],[-2,-7],[-1,-18],[-3,-7],[-8,-2],[-17,10],[-8,-8],[8,-6],[14,-9],[5,-10],[0,-4],[-8,7],[-10,3],[-19,3],[-4,1],[-14,11],[-10,3],[-4,4],[-3,5],[1,6],[6,14],[-19,-4],[-4,2],[-10,5],[-12,4],[-2,6],[0,8],[0,9],[-1,13],[-2,5],[-4,1],[-4,4],[-4,7],[-2,7],[-3,3],[-5,-1],[-7,-10],[-2,-2],[-10,-4],[-9,-1],[-5,-3],[-4,-6],[-1,-13],[-4,-7],[-7,-3],[-6,-6],[2,-14],[5,-7],[14,-13],[2,-4],[-2,-3],[-5,-3],[-7,-2],[-4,0],[-7,0],[-16,12],[-9,4],[-9,1],[-21,-3],[-8,-6],[4,-8],[8,0],[16,4],[7,-2],[8,-5],[7,-8],[5,-10],[1,-2],[-1,-4],[1,-5],[1,-5],[2,-2],[5,-2],[2,-2],[16,-26],[-6,-5],[-7,-4],[-10,8],[-4,1],[-3,-2],[-3,-4],[-3,-4],[-2,-3],[-5,-1],[-14,5],[-5,-1],[-8,-6],[-4,-1],[-18,1],[-7,5],[-8,11],[-3,7],[-1,6],[1,13],[3,17],[0,9],[-2,5],[-16,1],[-59,20],[-41,-1],[7,-9],[83,-33],[5,-7],[4,-25],[3,-10],[1,-10],[-4,-7],[7,-4],[5,-5],[-9,-5],[-11,-1],[-11,3],[-7,7],[1,3],[1,1],[2,1],[-8,-2],[-14,-9],[-7,-2],[-11,0],[-4,1],[-5,6],[-2,1],[-10,5],[-4,0],[-10,-8],[-3,-1],[-14,4],[-7,1],[-6,-5],[2,-2],[5,-6],[-5,-7],[-22,6],[-5,-5],[-2,-3],[-6,4],[-8,9],[-4,0],[-2,0],[-1,-2],[-1,-5],[-3,0],[-5,3],[-5,2],[-14,10],[-61,24],[-12,9],[7,7],[9,2],[17,-1],[-8,7],[-11,3],[-10,-2],[-9,-4],[-3,-1],[-4,-4],[-1,-6],[2,-10],[5,-5],[13,-4],[5,-7],[-7,-5],[-9,-3],[-31,0],[-6,3],[-6,9],[1,2],[0,1],[1,1],[-21,-3],[-2,3],[-1,6],[-2,10],[-1,1],[0,8],[0,3],[4,9],[3,6],[2,3],[-1,2],[-4,5],[-4,3],[-4,0],[-3,2],[-2,7],[4,0],[5,2],[3,4],[-1,7],[4,3],[6,-2],[5,-4],[21,-3],[8,1],[6,5],[-5,6],[-6,4],[-7,2],[-86,8],[-3,-1],[-7,-6],[-3,-1],[-6,0],[-6,2],[-5,6],[-2,10],[-2,6],[-12,13],[-3,8],[0,9],[1,6],[-1,6],[-6,7],[-13,6],[-3,5],[-1,13],[2,7],[6,17],[2,9],[-7,6],[-4,0],[-4,-6],[-12,-26],[-4,-5],[-5,-2],[-17,14],[-4,6],[2,6],[5,19],[-9,12],[-2,4],[-1,6],[-1,12],[-2,6],[-3,9],[-11,22],[-5,6],[-9,3],[-8,-4],[-4,-11],[2,-16],[5,-9],[7,-7],[8,-4],[7,-1],[-6,-3],[-2,-17],[-8,-4],[-23,1],[-9,3],[19,-48],[12,-18],[15,-11],[31,-14],[17,2],[7,-7],[4,-11],[3,-12],[5,-7],[1,-10],[25,-51],[-5,-4],[-7,3],[-6,5],[-24,12],[-47,5],[-13,7],[-4,-1],[0,-3],[0,-11],[0,-5],[3,-5],[5,-2],[4,1],[8,9],[6,1],[12,-4],[38,-24],[-2,-2],[-2,-6],[25,4],[14,-3],[6,-11],[2,-8],[6,-11],[2,-8],[0,-5],[-2,-4],[0,-6],[2,-9],[-6,1],[-17,7],[-4,-1],[-9,-7],[-6,0],[2,-7],[4,-4],[9,-5],[-1,-7],[-3,-4],[-3,-3],[4,1],[9,1],[-3,-9],[-4,-5],[-3,-5],[0,-10],[4,-5],[12,-3],[4,-8],[-6,0],[-15,4],[1,-3],[1,-10],[1,-3],[-8,0],[-8,7],[-6,2],[-2,-15],[4,-3],[7,-10],[6,-9],[-4,-5],[-37,7],[-10,11],[-6,3],[-25,-8],[-28,0],[-6,-3],[-1,-6],[3,-8],[4,-8],[-10,-7],[-24,-6],[-10,-7],[3,-9],[-3,-7],[-5,-5],[-20,-12],[-2,-3],[-2,-4],[-2,-3],[-8,-3],[-6,-6],[-16,-5],[-8,-7],[-35,-2],[-22,9],[-7,1],[-8,-1],[-4,-4],[-2,-10],[2,-8],[6,-4],[5,-2],[16,-1],[8,-3],[5,-8],[-3,-2],[-7,-9],[-1,-4],[-2,-5],[-4,-3],[-4,-2],[-3,-2],[-12,-18],[-6,-6],[-7,-2],[-10,-1],[-4,1],[-11,11],[-4,1],[-8,-7],[2,-11],[7,-9],[7,-6],[-10,-12],[13,4],[6,-1],[2,-9],[-3,-8],[-6,-7],[-12,-7],[0,-4],[18,-9],[3,-3],[-1,-8],[-4,-3],[-4,-1],[-3,-3],[-5,-12],[-4,-4],[-5,-2],[-9,-1],[-5,2],[-2,7],[4,5],[-3,6],[-5,2],[-3,-6],[-3,-1],[-15,2],[1,-2],[1,-2],[0,-2],[0,-2],[-6,1],[-7,3],[-7,1],[-6,-5],[9,-8],[-1,-1],[0,-1],[-1,-2],[7,-3],[35,-5],[0,-4],[-4,0],[-11,-4],[0,-4],[6,-1],[5,-2],[2,-5],[-4,-8],[4,-9],[13,-8],[4,-8],[-33,-8],[-18,0],[-4,2],[-3,3],[-2,4],[-3,3],[-2,0],[-2,-1],[-17,-18],[0,-3],[4,-4],[18,6],[5,-1],[16,-11],[-5,-14],[-4,-6],[0,-5],[9,-8],[-6,-8],[-3,-6],[-1,-6],[1,-4],[3,-5],[2,-5],[-2,-6],[-3,0],[-13,12],[-4,1],[-13,-1],[2,0],[-4,-1],[-3,-4],[-3,-5],[-1,-8],[-2,-6],[-5,-3],[-29,-7],[-11,-6],[-7,-9],[12,-3],[11,6],[10,3],[9,-14],[-1,-1],[1,-3],[-6,-4],[-62,4],[5,-5],[18,-11],[2,2],[6,-7],[1,-3],[-8,-5],[-8,2],[-8,5],[-8,2],[-7,-4],[2,-6],[6,-6],[7,-4],[-3,-6],[-7,-10],[-2,-5],[-7,-23],[-1,-8],[1,-7],[3,-11],[2,-9],[2,-4],[4,-3],[4,0],[4,1],[3,-2],[0,-7],[-3,-10],[-7,-5],[-5,2],[2,13],[-12,5],[-3,3],[-3,6],[-3,6],[-3,4],[-5,0],[2,-7],[6,-21],[3,-4],[0,-2],[-1,-4],[-2,-2],[-3,2],[-3,6],[-3,3],[-2,1],[3,-24],[-8,-7],[-14,3],[3,-8],[-1,-1],[-1,-2],[-1,-1],[5,-8],[-1,-5],[-8,-8],[-4,-5],[-4,-7],[-3,-7],[1,-5],[-11,-20],[-4,-5],[-6,-2],[-3,4],[1,8],[6,17],[3,17],[2,7],[0,7],[-3,5],[-5,1],[-5,-7],[2,-9],[-2,-8],[-14,-23],[-4,-5],[-4,12],[-3,8],[-2,9],[4,18],[0,10],[-2,9],[-3,8],[-3,17],[-4,-8],[-2,-16],[2,-9],[0,-4],[-12,-19],[-4,-3],[-7,-3],[-4,-4],[10,0],[5,-4],[4,-8],[-4,-5],[-9,-4],[-4,-3],[6,-12],[19,-9],[7,-12],[-12,-11],[-3,-5],[-3,-4],[-13,2],[-5,-6],[-2,-10],[-1,-12],[-3,-9],[-6,-2],[-1,-3],[-4,-1],[-12,1],[-5,-2],[-4,-2],[-8,-9],[0,-4],[4,0],[2,3],[3,3],[3,2],[3,0],[5,-3],[2,-1],[0,-4],[-2,-9],[-4,-10],[-3,-5],[-4,0],[-4,3],[-8,15],[-3,3],[-2,-4],[-1,-7],[1,-7],[0,-12],[3,-2],[1,-2],[0,-3],[-13,-1],[-3,-5],[-3,-6],[-3,-5],[-5,0],[-6,3],[-2,4],[1,1],[2,2],[2,3],[0,5],[-1,4],[-3,3],[-3,-1],[-3,-2],[-3,-2],[-18,-3],[2,0],[-1,-1],[-3,1],[3,-6],[5,-5],[2,-6],[-5,-9],[-6,-5],[-7,-2],[-42,28],[-3,5],[4,7],[2,10],[1,11],[1,10],[-2,7],[-5,-2],[-9,-11],[-1,-2],[-2,-9],[-1,-2],[-6,0],[-2,-1],[-3,-2],[-2,-8],[1,-9],[0,-7],[-4,-5],[2,-6],[3,-2],[4,1],[4,-1],[15,-12],[21,-9],[6,-7],[-8,-11],[-15,-4],[-27,3],[-37,24],[-10,4],[-9,0],[-4,1],[-4,3],[2,5],[2,6],[-1,7],[-2,2],[-4,-1],[-5,-4],[-8,-11],[1,-2],[1,-6],[-25,0],[-5,5],[-6,19],[-6,5],[-5,2],[-5,7],[-13,21],[-6,6],[-6,5],[-6,3],[0,4],[4,3],[5,1],[5,2],[3,7],[-22,-3],[-5,4],[-5,-3],[-8,-11],[2,0],[1,-4],[4,-5],[6,-5],[5,-2],[3,-3],[7,-11],[5,-4],[7,-9],[3,-1],[5,1],[3,-1],[3,-4],[2,-4],[0,-4],[-1,-5],[2,-4],[-4,-7],[-5,-6],[-10,-7],[0,-4],[19,4],[5,0],[4,-3],[8,-7],[4,-2],[10,-2],[3,-2],[0,-4],[-10,-6],[-23,-4],[-9,-11],[18,4],[4,-2],[2,-6],[2,-6],[4,-5],[3,-7],[2,-8],[1,-6],[0,-7],[-4,-8],[1,-5],[-7,0],[-6,2],[-4,7],[1,11],[-2,2],[-2,3],[-3,7],[-1,2],[-1,8],[0,2],[-6,5],[-7,3],[-7,0],[-5,-4],[4,-6],[9,-2],[4,-4],[1,-4],[3,-16],[-6,-9],[-10,0],[-20,5],[-8,7],[-11,-1],[-9,-8],[-6,-15],[7,2],[14,5],[7,1],[30,-12],[4,-4],[-11,-6],[-13,-2],[-22,8],[-7,0],[0,-4],[3,0],[2,-1],[3,-3],[-10,1],[-5,-2],[-2,-7],[5,0],[9,-4],[5,0],[0,-4],[-4,0],[-3,0],[-4,-2],[-3,-2],[0,-4],[2,-2],[4,-4],[2,-2],[0,-4],[-26,-18],[-16,-6],[0,-5],[1,-1],[3,-3],[-12,-14],[-4,-2],[-4,1],[-8,7],[-6,-2],[-6,-4],[-7,-2],[-7,4],[6,13],[2,8],[-2,4],[-10,-13],[-6,-5],[-3,7],[2,7],[3,9],[1,7],[-3,3],[-3,-1],[-5,-8],[-2,-2],[-4,-1],[-10,1],[0,-4],[2,-1],[6,-3],[-3,-8],[1,-12],[-2,-9],[1,-4],[1,-4],[-10,2],[-5,8],[-1,14],[-1,37],[1,15],[4,12],[8,9],[-5,9],[-8,-1],[-17,-8],[-20,5],[-9,-1],[-8,-7],[4,-5],[5,-4],[5,-3],[5,-1],[3,1],[3,1],[2,1],[2,-3],[0,-3],[-1,-2],[-2,-3],[-9,-27],[-4,-3],[-41,-15],[-16,-14],[-6,-2],[-41,0],[4,-8],[5,-1],[7,2],[7,-1],[-6,-19],[-3,-5],[-6,-6],[-30,-16],[-7,-1],[-5,2],[-3,7],[5,10],[-4,8],[2,-1],[1,1],[-1,5],[-3,5],[-5,6],[0,2],[-1,8],[-1,2],[-2,2],[-4,2],[-2,2],[0,10],[4,12],[6,11],[2,8],[1,6],[4,11],[1,7],[-2,5],[-3,2],[-5,0],[-3,-1],[-5,-7],[-2,-11],[1,-12],[4,-11],[-5,-3],[-5,5],[-5,7],[-5,4],[-3,-4],[3,-8],[8,-17],[-4,-7],[-5,-5],[4,-6],[4,-10],[3,-8],[-4,-4],[-28,4],[0,-4],[31,-18],[11,-3],[-3,-15],[-5,-13],[-6,-7],[-9,-1],[-7,4],[-7,8],[-7,5],[-8,-1],[0,-4],[17,-12],[7,-8],[3,-3],[4,-1],[-6,-5],[-8,1],[-70,48],[-25,29],[-6,4],[-18,8],[-11,12],[-3,0],[-1,-2],[-2,-11],[-1,-3],[-5,-4],[-12,-1],[-6,-3],[-4,-7],[-4,-6],[-4,-3],[-6,4],[0,4],[4,2],[4,8],[2,8],[3,6],[3,3],[7,5],[3,4],[2,4],[3,9],[3,4],[-13,6],[-4,5],[4,9],[-3,1],[-4,3],[-3,4],[1,6],[3,6],[11,10],[7,5],[24,-2],[-4,3],[7,17],[4,5],[6,2],[12,-3],[3,1],[0,4],[-2,7],[0,2],[-1,4],[-1,5],[0,5],[2,5],[2,3],[2,2],[13,18],[6,6],[9,5],[35,43],[6,1],[11,-2],[6,1],[6,3],[11,8],[0,4],[-7,10],[-6,4],[-49,-14],[-8,3],[-10,11],[-8,2],[-7,-3],[-12,-11],[-6,-1],[-11,3],[-22,13],[-17,5],[-13,9],[-5,6],[-3,8],[-2,7],[-3,18],[-1,2],[-2,-2],[-1,-6],[-1,-7],[0,-4],[1,-14],[0,-2],[-3,-5],[-6,-2],[-8,-1],[-3,3],[-2,2],[-2,2],[-2,0],[0,2],[0,3],[-12,-2],[-27,3],[-10,-7],[-2,-8],[-1,-5],[1,-11],[106,-27],[5,-4],[9,-9],[5,-3],[0,-4],[-15,-20],[-6,-4],[-6,-1],[-5,3],[-2,5],[4,5],[0,4],[-29,-4],[-7,2],[-7,4],[-6,1],[-6,-7],[15,-9],[10,-12],[10,1],[5,-5],[-8,-8],[5,-2],[0,-4],[-3,-6],[-4,-4],[-3,-2],[-6,0],[-3,-2],[-2,-3],[-4,-12],[-4,-5],[-5,-5],[-5,-3],[-8,-1],[-6,-3],[-3,0],[-2,1],[-2,4],[-1,4],[-1,2],[-6,-1],[-1,-6],[2,-7],[5,-6],[5,-2],[15,1],[10,6],[3,-2],[2,-7],[1,-10],[-3,-5],[-6,-3],[-4,-4],[2,-6],[0,-11],[2,-11],[1,-12],[0,-13],[-4,-7],[-8,-6],[-9,-4],[-5,-1],[1,7],[2,9],[-1,9],[-3,3],[-2,-2],[-7,-8],[-4,-2],[0,4],[0,4],[0,3],[-1,1],[-4,-1],[-2,-3],[-4,7],[-4,0],[-2,-4],[2,-11],[3,-2],[7,-5],[2,-3],[-1,-5],[-1,-4],[-3,-4],[-2,-1],[-29,0],[-13,5],[-11,15],[3,4],[1,7],[-1,7],[-7,6],[-4,13],[-2,3],[-3,2],[-7,6],[-4,1],[-7,-1],[-2,-1],[-3,-2],[9,-20],[1,-9],[-1,-9],[-1,-8],[-1,-7],[3,-8],[5,-6],[39,-24],[5,-7],[0,-2],[-2,-6],[12,-1],[32,-11],[5,-3],[1,-7],[-1,-9],[-2,-7],[-4,-2],[-18,4],[2,-5],[4,-7],[2,-4],[-1,0],[-2,0],[-1,0],[2,-6],[1,-2],[0,-3],[-5,-10],[0,-2],[0,-4],[1,-5],[1,-5],[-5,1],[-4,3],[-4,5],[-4,3],[-6,-1],[4,-7],[6,-7],[4,-3],[-3,-18],[-7,-5],[-10,2],[-9,6],[-1,4],[-3,1],[-9,0],[-3,-1],[-4,-3],[-3,-1],[-1,2],[-4,5],[-1,1],[-4,-4],[-2,-22],[-3,-10],[-3,-3],[-4,-2],[-4,-1],[-3,2],[-2,4],[0,4],[0,5],[1,5],[2,15],[5,6],[7,4],[7,6],[-7,3],[-11,-5],[-5,2],[-1,3],[-2,9],[-1,4],[-3,2],[-2,-2],[1,-4],[2,-4],[-3,-8],[-2,-4],[-1,-5],[1,-3],[1,-4],[1,-5],[-1,-3],[-4,-2],[-4,2],[-5,4],[-2,3],[1,4],[3,13],[-5,2],[-7,1],[-4,-2],[2,-5],[0,-5],[-14,-1],[-4,1],[-5,7],[-4,7],[-5,3],[-6,-4],[-2,-13],[8,-10],[12,-7],[9,-2],[3,1],[2,2],[2,1],[3,-4],[3,-1],[1,-2],[-1,-8],[1,-2],[5,-12],[2,-7],[-2,-5],[-3,1],[-10,9],[-4,2],[-25,0],[-6,1],[-9,12],[-5,4],[-3,-1],[-3,-3],[-3,-3],[-5,-17],[-8,-6],[-10,1],[-7,8],[3,1],[1,1],[0,1],[2,1],[-9,-2],[-9,-4],[-16,-15],[1,13],[1,4],[-5,8],[-7,24],[-4,7],[-5,11],[-2,3],[-3,0],[-3,-3],[-3,0],[-15,17],[-12,3],[-11,7],[-7,21],[-7,-16],[3,-6],[8,-4],[8,-7],[2,-5],[6,-15],[6,-10],[2,-6],[-1,-8],[5,0],[4,-2],[3,-5],[1,-8],[-2,-6],[-5,-2],[-10,2],[-3,3],[-6,12],[-4,1],[-3,-4],[-1,-8],[2,-9],[2,-7],[-2,-6],[-3,-4],[-3,-1],[-3,6],[-2,8],[1,6],[1,7],[1,8],[1,9],[0,4],[-1,1],[-3,-2],[0,-1],[-2,-11],[-2,-2],[-6,-6],[3,-14],[-2,-9],[-4,-4],[-6,-2],[-7,4],[-6,7],[-10,18],[2,2],[2,2],[0,4],[-5,1],[-6,3],[-5,6],[1,9],[3,5],[6,5],[2,4],[-6,3],[-5,-3],[-5,-6],[-5,-2],[-5,4],[-10,16],[-6,4],[-3,-1],[-5,-3],[-5,-4],[-3,-5],[3,-5],[19,-19],[-7,-4],[-6,5],[-7,8],[-7,4],[-8,-3],[-4,-7],[0,-8],[8,-7],[0,-4],[-13,1],[-6,-3],[-6,-6],[30,-11],[3,-5],[1,-7],[-5,-5],[-5,0],[-11,9],[-6,2],[-3,-4],[0,-9],[2,-9],[2,-6],[-6,-3],[-6,-1],[-7,3],[-32,29],[-7,11],[-4,4],[-5,2],[-5,-1],[-5,-4],[-5,-6],[-4,-6],[0,-3],[3,-4],[6,-6],[3,-2],[2,-6],[2,-4],[2,-4],[3,-3],[0,-3],[-11,3],[-13,7],[-12,4],[-11,-7],[-2,0],[7,-16],[17,-12],[45,-14],[12,2],[12,-2],[11,-10],[6,4],[5,-2],[4,-6],[3,-9],[-23,8],[-8,-3],[2,-17],[-16,-5],[-3,-5],[3,-4],[16,-14],[3,-7],[2,-8],[-1,-7],[-5,-3],[-2,-1],[2,-3],[3,-6],[3,-3],[3,-1],[7,-2],[-3,16],[5,0],[16,-12],[0,-4],[-6,0],[0,-4],[2,0],[2,-1],[3,-3],[-4,-3],[-15,-1],[-8,-3],[-3,0],[0,3],[-3,3],[-3,3],[-4,3],[-3,-1],[-3,-5],[-1,-8],[1,-6],[3,-5],[-2,-4],[-3,-5],[-3,-3],[-4,0],[-11,4],[-4,-1],[-4,-3],[-1,-3],[17,-5],[15,-8],[-8,-10],[-8,-2],[-16,3],[-17,9],[-9,0],[2,-13],[-2,-4],[14,-5],[5,-4],[-3,-7],[8,-4],[20,2],[8,-6],[-6,-4],[-6,1],[-7,2],[-6,1],[-30,-6],[-5,-3],[-4,-6],[-1,-10],[2,-8],[2,-7],[-2,-4],[-8,3],[1,2],[1,6],[-12,-1],[-5,-3],[-4,-8],[0,-10],[-6,-2],[-5,5],[0,7],[-7,12],[-7,13],[-8,12],[-8,4],[10,-21],[1,-10],[-3,-3],[-6,0],[-7,3],[-4,5],[-10,15],[-25,17],[-10,14],[3,9],[-3,4],[-8,-1],[-5,-1],[-2,-5],[-4,-14],[2,-4],[-4,-6],[-7,-23],[1,-10],[-2,-5],[-3,0],[-4,10],[-11,14],[1,1],[1,2],[1,2],[0,3],[-24,8],[-8,0]],[[37611,85981],[3,8],[8,6],[9,0],[3,-6],[0,-12],[-7,-7],[-10,1],[-6,10]],[[37680,85993],[-5,-11],[-9,-7],[-7,2],[-2,16],[1,6],[4,12],[2,18],[2,8],[6,13],[-8,-2],[-5,-13],[-3,-16],[-5,-12],[-5,-3],[-4,1],[-2,4],[0,9],[2,8],[6,9],[1,9],[1,15],[1,14],[3,11],[7,7],[9,0],[14,-5],[12,-7],[7,-8],[4,-4],[4,-8],[5,-17],[3,-5],[2,-3],[0,-3],[-2,-7],[-3,-3],[-11,-3],[-11,-13],[0,-2],[-1,-5],[-1,-6],[-3,-3],[-3,2],[-2,4],[-2,6],[0,6],[1,3],[6,10],[2,6],[-8,-4],[-7,-11],[-3,-12],[7,-6]],[[37721,86066],[-3,2],[-7,7],[-2,4],[0,11],[5,11],[6,5],[4,-7],[3,-4],[3,-6],[1,-7],[-2,-7],[4,-8],[4,-8],[10,-13],[7,-5],[14,-6],[7,-5],[-7,-3],[-29,0],[-4,3],[-3,6],[-6,22],[-2,6],[-3,2]],[[37415,86087],[4,14],[6,11],[6,3],[7,-12],[0,-2],[0,-3],[-1,-3],[1,-4],[-11,-7],[-6,-1],[-6,4]],[[37457,86229],[5,-13],[-2,-10],[-8,-18],[-3,-21],[0,-3],[-4,-2],[-8,-9],[-12,-7],[-14,-22],[-7,-5],[-16,-4],[-3,3],[7,13],[-2,8],[2,10],[4,19],[2,8],[1,9],[2,39],[1,9],[5,4],[7,-1],[6,-5],[11,-15],[4,12],[7,6],[8,-1],[7,-4]],[[37484,86229],[-11,0],[-6,3],[-4,9],[0,18],[10,9],[26,1],[0,-2],[0,-2],[-2,-4],[-5,-19],[-4,-9],[-4,-4]],[[37501,86247],[2,14],[4,9],[6,1],[7,-10],[-1,-1],[-1,-2],[0,-2],[0,-3],[-2,-6],[-2,-6],[-6,-10],[-8,-17],[-3,-6],[-15,-16],[-9,-5],[-6,1],[4,4],[4,6],[2,7],[-1,8],[8,2],[8,6],[6,10],[3,16]],[[37400,86286],[2,-12],[-3,-5],[-5,-3],[-5,-5],[1,-5],[-3,-2],[-5,1],[-5,3],[3,4],[4,3],[3,4],[3,12],[3,5],[4,1],[3,-1]],[[37229,86399],[-1,7],[6,0],[40,-6],[8,-5],[-2,-6],[-5,-5],[-5,-3],[-4,4],[-3,0],[-17,-10],[-10,-4],[-8,1],[-3,8],[4,19]],[[37252,86416],[-21,-1],[-6,-1],[-5,-4],[-11,-17],[-5,-6],[-7,-4],[-3,0],[-3,0],[-3,3],[-2,4],[-3,1],[-3,0],[-4,-4],[-2,0],[-7,13],[-3,3],[9,7],[74,10],[3,-2],[2,-2]],[[37046,86448],[8,9],[10,4],[10,-3],[6,-10],[-7,0],[-5,-4],[-4,-3],[-19,-3],[-2,2],[3,8]],[[37145,86460],[3,-1],[2,-3],[2,-3],[1,-5],[-19,-9],[-11,-11],[-12,4],[-6,-4],[5,-3],[16,-14],[0,-12],[-28,5],[-2,1],[-2,3],[0,6],[-2,2],[-3,2],[-7,1],[12,18],[19,18],[20,11],[12,-6]],[[36856,86484],[1,-7],[4,-1],[4,1],[4,-1],[13,-8],[-6,-10],[-11,3],[-21,11],[3,5],[3,3],[6,4]],[[36943,86480],[4,-6],[2,-6],[-1,-6],[-5,-2],[-3,3],[-6,10],[-4,3],[2,7],[4,2],[4,-1],[3,-4]],[[36882,86484],[1,8],[7,0],[8,-3],[5,-5],[-3,-6],[-7,-2],[-6,2],[-5,6]],[[37138,86488],[-7,-12],[-11,-9],[-11,-1],[-6,10],[20,16],[7,1],[2,-1],[2,-1],[4,-3]],[[36890,86501],[6,6],[20,10],[5,0],[-1,-18],[-9,-7],[-11,2],[-10,7]],[[36894,86521],[-4,-6],[-7,-8],[-7,-4],[-3,4],[2,10],[6,6],[7,2],[6,-4]],[[36896,86525],[4,8],[7,5],[6,6],[0,10],[11,0],[-3,-9],[-4,-10],[-7,-6],[-7,-3],[-7,-1]],[[36930,86533],[4,10],[7,8],[7,5],[7,-2],[0,-3],[-1,-1],[-1,-1],[-6,-7],[-11,-4],[-6,-5]],[[37068,86474],[-4,-4],[-5,-1],[-10,-1],[-3,1],[-2,2],[-2,2],[-3,-1],[-2,-2],[-1,-2],[1,-2],[2,-2],[-12,-8],[-16,-7],[-15,0],[-9,11],[44,33],[38,15],[19,22],[78,36],[-5,-7],[3,-3],[6,-2],[5,-3],[1,-9],[-3,-6],[-36,-28],[-9,-3],[-15,7],[-2,-1],[-1,-5],[-2,-2],[-1,-2],[-3,-3],[-3,-6],[-5,-8],[-4,-3],[-4,-2],[-11,1],[-5,-2],[-4,-5]],[[37075,86590],[6,4],[8,-3],[14,-9],[-1,-1],[-1,-2],[-1,-1],[3,-20],[-6,-7],[-11,-1],[-8,8],[2,8],[0,8],[-5,16]],[[36622,86629],[-7,5],[-3,1],[-11,-8],[-13,0],[-14,3],[-8,5],[2,3],[-1,2],[-1,1],[-3,2],[7,9],[14,4],[15,-1],[22,-8],[12,0],[5,-2],[16,-10],[-5,-4],[-6,-1],[-11,0],[-8,-2],[-2,1]],[[36407,86752],[6,14],[18,9],[21,2],[13,-8],[-3,-4],[-24,-1],[-7,-4],[-9,-9],[-4,-3],[-9,-2],[-5,0],[-3,2],[1,1],[5,3]],[[36475,86813],[36,3],[10,-7],[2,-15],[-5,-7],[-14,-6],[0,2],[1,7],[1,3],[-15,-10],[-5,-2],[-5,0],[-14,12],[-16,-5],[-10,0],[-6,9],[29,15],[11,1]],[[36343,87010],[4,1],[7,-4],[7,-6],[4,-5],[0,-12],[-1,-9],[-2,-5],[-7,-3],[-7,2],[-20,15],[5,4],[4,7],[6,15]],[[35920,87838],[5,4],[6,-1],[5,-6],[-1,-11],[-4,-5],[-4,-11],[-5,-15],[-5,9],[-17,17],[5,6],[10,6],[5,7]],[[35921,87852],[-2,-6],[-3,-1],[-3,0],[-3,-1],[-6,-4],[-6,-6],[-7,-5],[-7,0],[-8,4],[-5,9],[-4,11],[-1,8],[4,6],[13,9],[3,2],[4,10],[3,4],[3,1],[12,-12],[5,-22],[8,-7]],[[35973,87883],[3,-5],[3,-6],[1,-6],[-5,-2],[-25,-6],[-8,-8],[-5,-2],[-3,1],[-5,2],[-3,3],[-3,6],[-1,7],[1,3],[6,7],[14,23],[9,5],[9,-8],[2,-7],[2,-3],[4,-1],[4,-3]],[[35537,88469],[11,10],[24,2],[12,4],[4,-14],[-14,-20],[-17,-7],[-10,2],[-4,-12],[-11,13],[5,22]],[[35887,88684],[-5,-25],[-11,-14],[-26,-18],[-12,-16],[-11,-20],[-7,-21],[-5,-9],[-7,-3],[-5,-6],[-4,-24],[-4,-6],[-7,-3],[-14,-14],[-8,-4],[-6,2],[-9,6],[-7,8],[0,11],[8,6],[17,-10],[9,2],[-3,5],[-3,4],[-8,3],[5,11],[8,0],[9,-1],[7,2],[-9,13],[-3,8],[3,5],[1,5],[2,4],[2,2],[4,1],[3,2],[2,3],[2,6],[-2,4],[-4,2],[-3,2],[-4,0],[7,8],[11,9],[9,10],[0,13],[2,11],[5,8],[10,14],[-1,4],[-1,7],[0,7],[3,3],[43,0],[10,-4],[7,-13]],[[35750,88597],[-6,-3],[-7,0],[-6,2],[-10,11],[-6,0],[-22,-8],[-3,2],[0,4],[2,4],[3,2],[12,2],[6,3],[5,7],[-2,2],[-1,2],[-1,2],[0,2],[12,2],[12,6],[-2,16],[20,33],[3,16],[48,5],[0,-5],[-1,0],[-1,-1],[-1,-1],[-10,-14],[-4,-7],[-4,-9],[-1,-6],[0,-16],[-1,-6],[-9,-8],[-11,-22],[-4,-6],[-10,-11]],[[37859,85945],[13,-12],[6,-8],[-2,-9],[-3,-1],[-4,3],[-2,4],[-2,3],[-3,-2],[-9,-15],[-1,1],[-2,2],[-2,1],[-1,-2],[-1,-2],[-1,-6],[0,-2],[-4,-2],[-3,-3],[-3,-1],[-3,6],[2,8],[0,1],[-2,4],[6,8],[4,9],[0,7],[-6,0],[-5,-6],[-5,-9],[-3,-11],[2,-11],[-5,-9],[-7,-8],[-7,-3],[-6,2],[-4,8],[0,10],[8,26],[1,3],[0,3],[-1,5],[-3,4],[-2,-3],[-1,-6],[-1,-6],[-4,-4],[-6,-4],[-4,-5],[2,-9],[-10,-9],[-13,-7],[-11,1],[-6,15],[0,5],[1,11],[1,5],[1,5],[10,17],[12,16],[4,8],[14,19],[13,-5],[14,-12],[15,-8],[8,-1],[7,-5],[14,-14]],[[37998,85985],[-4,1],[-3,-1],[-3,-1],[-3,-3],[9,-7],[-5,-5],[-9,1],[-4,-3],[-4,-7],[-1,0],[0,6],[-2,8],[1,4],[-1,2],[-3,1],[-1,-1],[-1,-4],[0,-9],[-2,-7],[-2,-6],[-4,-3],[-4,2],[0,2],[1,2],[1,4],[10,39],[3,5],[8,-1],[8,-5],[9,-6],[6,-8]],[[37775,85997],[-16,-21],[-6,-2],[-4,-4],[-9,-19],[-5,-6],[-3,6],[0,8],[3,22],[0,13],[-2,0],[-2,-9],[0,-11],[-5,-23],[-2,-6],[-4,-3],[-12,-3],[-8,-8],[-6,-2],[-11,-1],[-3,3],[-13,18],[7,5],[6,8],[11,19],[10,10],[2,4],[1,10],[3,4],[4,3],[4,4],[7,3],[48,-6],[8,-4],[-3,-12]],[[37950,85997],[5,-6],[-3,-13],[-6,-12],[-6,-5],[-5,2],[-1,6],[-1,5],[-2,3],[-4,-3],[-3,-6],[-1,-8],[1,-7],[-6,-3],[-6,-1],[2,4],[1,8],[5,20],[-2,4],[3,8],[1,13],[3,12],[6,8],[9,-2],[12,-7],[6,-10],[-8,-10]],[[38007,86046],[6,-1],[6,-3],[-2,-4],[-1,-3],[-3,-3],[-2,-2],[5,-8],[-4,-12],[-9,-10],[-9,-3],[-5,3],[-2,4],[-3,5],[-3,5],[-5,3],[-10,1],[-4,4],[-2,4],[-1,5],[-1,5],[-4,2],[-2,-2],[-1,-5],[-2,-4],[-2,1],[-2,2],[-8,4],[-21,15],[-11,4],[-10,-3],[0,-4],[14,-2],[8,-4],[5,-6],[-1,-8],[-2,-11],[-2,-10],[-2,-4],[-4,-4],[-1,-16],[-5,-4],[-3,-4],[-1,-8],[-3,-7],[-7,-1],[-3,1],[-3,2],[-3,3],[-3,4],[-2,4],[0,3],[0,3],[-2,10],[0,4],[0,4],[-3,4],[-3,3],[-2,-1],[-2,-3],[0,-7],[0,-9],[0,-5],[-3,-3],[-7,0],[-14,2],[-7,4],[-6,5],[-6,3],[-17,10],[-5,7],[10,11],[6,4],[24,11],[2,-1],[12,10],[-19,0],[-9,-6],[-9,4],[-4,0],[-11,-7],[-4,-1],[-4,1],[-4,3],[-3,4],[-3,6],[-4,4],[-8,2],[-20,12],[-6,7],[1,10],[-6,8],[2,9],[7,8],[7,3],[125,-30],[125,-31]],[[36744,86452],[4,2],[15,-2],[-9,-10],[-10,-7],[-10,-5],[-14,-3],[-4,-2],[-5,-4],[-6,-8],[-6,-4],[-5,-2],[-4,1],[2,7],[2,5],[4,4],[4,0],[-6,11],[-8,-4],[-7,-10],[-6,-5],[-19,-2],[-9,4],[-1,10],[-4,-1],[-4,1],[-3,1],[-4,3],[2,4],[2,3],[3,1],[3,0],[-2,5],[-1,1],[-2,1],[-2,3],[-3,3],[-2,-3],[-2,-4],[-1,-2],[-6,1],[-1,2],[0,5],[-1,8],[-4,5],[-13,11],[3,5],[6,1],[11,-2],[42,10],[8,9],[4,2],[11,-3],[4,-4],[0,-6],[4,-11],[5,2],[5,6],[4,3],[22,-4],[4,-4],[-2,-6],[-3,-4],[-7,-6],[4,-3],[2,-1],[2,0],[0,-3],[-9,1],[-4,-1],[-3,-3],[0,-6],[5,-4],[10,-2],[4,-4],[3,3],[3,6],[5,5]],[[38118,86537],[42,-4],[-7,-8],[-12,-7],[-21,-5],[-40,8],[-12,0],[3,2],[5,6],[6,1],[15,7],[21,0]],[[38196,86862],[3,8],[9,13],[10,7],[7,-8],[-9,-4],[-6,-14],[-7,-9],[-7,7]],[[38310,87114],[-3,-9],[0,-8],[1,-8],[-2,-6],[-5,-4],[-16,-6],[3,-8],[3,0],[5,1],[4,-3],[0,-7],[-4,-3],[-9,0],[-27,-12],[-7,4],[3,1],[8,7],[19,28],[-2,4],[2,2],[4,6],[0,9],[7,8],[9,4],[7,0]],[[38249,87527],[3,4],[4,1],[4,-2],[2,-6],[-5,0],[12,-10],[19,17],[11,-12],[-4,-10],[-2,-10],[2,-8],[4,-8],[-7,-1],[-6,-4],[-7,-3],[-7,4],[2,4],[-4,3],[-10,4],[-5,5],[-1,6],[-3,19],[-2,7]],[[38323,87641],[12,-10],[36,-2],[0,-4],[-6,-1],[-11,-6],[-6,-1],[-6,2],[-11,11],[-6,3],[-44,-8],[-5,-4],[8,-5],[9,-2],[19,3],[8,4],[4,0],[3,-4],[0,-7],[-3,-3],[-3,-3],[-3,-4],[1,-1],[4,-7],[-22,0],[-5,3],[-9,11],[-5,3],[-8,0],[-2,0],[-2,-2],[-2,-3],[-1,-3],[-1,-1],[-5,0],[-3,4],[-1,7],[2,10],[-14,-17],[-5,-4],[-1,1],[-1,2],[-1,1],[-1,1],[-1,-2],[-3,-5],[-1,-1],[-3,-1],[-2,-2],[-3,1],[-2,5],[0,2],[-2,3],[-3,5],[-1,7],[4,12],[2,4],[-12,0],[11,19],[12,16],[4,1],[14,-8],[17,4],[64,-15],[6,-9],[-14,0]],[[38356,87670],[14,-7],[7,0],[7,2],[-6,-11],[-11,-6],[-11,0],[-6,9],[-4,14],[-1,7],[0,6],[5,3],[7,-2],[12,-7],[-2,-7],[-4,-1],[-4,1],[-3,-1]],[[38448,87785],[7,5],[11,2],[12,-1],[7,-3],[-5,-16],[0,-8],[5,-1],[-15,-20],[-3,-7],[-8,-20],[-2,-4],[-4,-5],[-4,-2],[-2,7],[2,8],[10,12],[3,7],[-6,0],[-11,-12],[-4,3],[0,1],[0,2],[0,2],[7,20],[1,6],[-1,5],[-1,6],[0,7],[1,6]],[[38464,87828],[7,9],[9,6],[19,5],[8,-3],[12,-16],[6,-5],[-7,-13],[-14,-4],[-15,2],[-15,8],[-3,2],[-7,9]],[[38552,87872],[-31,5],[7,-10],[23,-9],[8,-6],[-17,0],[-9,2],[-20,0],[-9,4],[-15,14],[-7,11],[0,12],[8,9],[9,2],[28,-9],[25,-20],[0,-5]],[[38570,87948],[11,-25],[2,-12],[-6,-6],[-10,4],[-8,12],[-15,29],[2,-17],[4,-13],[0,-8],[-12,-3],[-8,9],[-14,30],[-8,-2],[5,-6],[2,-8],[-1,-9],[-4,-6],[-7,-2],[-7,2],[-7,5],[-6,7],[-7,8],[-19,27],[-33,30],[-13,16],[-5,3],[-11,4],[-20,19],[-5,10],[1,13],[7,9],[10,5],[28,2],[5,-2],[8,-9],[9,-5],[3,-4],[1,-3],[2,-9],[1,-4],[4,-5],[13,-9],[5,-2],[9,4],[5,-2],[12,-11],[2,-4],[1,-9],[-1,-6],[-8,-9],[46,0],[5,-1],[7,-4],[6,-6],[5,-14],[14,-13]],[[35771,88083],[2,-1],[1,-1],[1,-2],[1,-4],[-11,-9],[-42,-11],[0,4],[11,8],[2,4],[1,4],[1,10],[0,3],[7,5],[9,0],[10,-4],[7,-6]],[[38674,88161],[25,6],[5,-6],[-7,-13],[-5,-5],[-5,-3],[-21,0],[-6,4],[-4,11],[4,5],[7,1],[7,0]],[[38702,88501],[4,-2],[3,0],[3,3],[4,4],[-3,-12],[-5,-2],[-13,6],[-65,0],[-24,-7],[-5,2],[-3,8],[-2,3],[-2,2],[0,4],[3,1],[2,2],[0,4],[-2,5],[4,2],[7,2],[3,2],[2,4],[3,7],[2,3],[6,5],[35,10],[29,-4],[12,-7],[-3,-3],[-2,-5],[-4,-12],[1,-2],[3,-5],[1,-1],[-5,-5],[-6,-3],[4,-4],[3,-1],[12,2],[1,-1],[-3,-5]],[[38849,88660],[-4,-4],[-7,-11],[-3,-6],[4,-7],[-2,-3],[-3,0],[-3,4],[-3,4],[-29,3],[-25,8],[-9,8],[-4,1],[-5,3],[-4,4],[-2,6],[1,7],[4,8],[0,5],[-1,6],[-4,3],[-5,3],[-3,2],[-2,4],[-2,5],[-1,5],[-1,7],[8,-1],[2,4],[-2,7],[-10,14],[-2,7],[-1,8],[-2,9],[2,0],[-3,7],[-3,4],[-8,6],[4,4],[0,4],[-5,2],[-14,13],[-10,16],[-18,18],[-9,16],[-5,11],[-1,7],[0,7],[-4,8],[-8,11],[11,15],[16,5],[15,-3],[17,-21],[13,-7],[11,-16],[20,-17],[-3,-2],[-3,-2],[-2,-4],[-2,-4],[3,-6],[7,-6],[4,-5],[-3,-4],[13,-13],[3,-7],[-6,-9],[-4,-2],[-4,1],[-3,1],[-4,0],[-4,-2],[-4,-4],[-2,-3],[11,-5],[13,-14],[15,-7],[4,-8],[2,-11],[3,-10],[-3,-1],[-6,-3],[-2,0],[-3,2],[-6,8],[-3,2],[-7,-2],[1,-5],[8,-13],[-2,-1],[-6,-8],[10,-10],[14,-6],[36,-7],[13,-9],[12,-11],[9,-13]],[[39014,89153],[-3,2],[-4,0],[-3,-1],[-3,-3],[8,-12],[-2,-4],[1,-1],[9,1],[4,2],[4,1],[5,-4],[-8,-5],[-7,-3],[-7,1],[-43,24],[-19,4],[-3,2],[0,5],[2,4],[5,1],[0,14],[7,6],[7,-2],[-1,-10],[6,-4],[28,0],[4,-1],[9,-5],[4,-2],[10,1],[3,-3],[3,-6],[-13,-3],[-3,1]],[[39661,89309],[12,5],[18,-1],[17,-7],[7,-15],[-2,-9],[-6,2],[-6,5],[-5,3],[-8,-3],[-13,-10],[-8,2],[2,0],[-4,3],[-3,5],[0,6],[3,6],[-1,1],[-1,4],[-2,3]],[[35295,89354],[14,1],[7,-3],[4,-8],[-2,-11],[-3,-8],[-4,-7],[-21,-19],[-11,-4],[-12,-10],[-6,2],[-19,5],[-11,3],[-7,10],[-9,10],[-2,5],[4,7],[6,6],[6,4],[66,17]],[[39740,89366],[-6,-6],[2,-4],[11,-7],[-4,-8],[-8,-5],[-16,-3],[2,-8],[1,-8],[-1,-5],[-6,1],[-6,5],[-13,6],[-6,6],[10,8],[3,4],[-4,4],[-7,2],[-12,1],[-2,2],[-5,9],[-4,2],[-3,0],[-2,2],[-3,6],[31,18],[5,8],[4,2],[4,-2],[14,-13],[5,-1],[-1,-6],[-1,-2],[18,-8]],[[39781,89479],[6,-10],[-2,-6],[-5,-6],[-4,-6],[0,-6],[5,-31],[-11,-11],[-6,-2],[-6,6],[-3,10],[-5,4],[-6,2],[-6,4],[2,2],[2,2],[2,3],[1,5],[-12,1],[-5,2],[-6,5],[8,0],[8,3],[15,9],[14,18],[7,5],[7,-3]],[[39596,89433],[-2,3],[-4,4],[-4,3],[-2,0],[-1,-4],[3,-4],[3,-4],[2,-4],[1,-6],[-1,-4],[-1,-4],[1,-6],[3,-4],[12,-5],[-17,-4],[-5,-4],[7,-7],[24,6],[9,-5],[4,-3],[4,-2],[3,-4],[0,-9],[-3,-7],[-10,-3],[-4,-7],[1,-6],[-4,-4],[-11,-1],[2,8],[-2,5],[-5,2],[-4,-4],[1,-1],[1,-4],[2,-2],[-8,-3],[-2,-1],[0,-3],[0,-5],[-1,-3],[-3,-2],[-5,2],[-2,5],[-1,6],[-1,4],[-6,-1],[-3,-10],[-3,-11],[-9,-3],[2,9],[2,4],[-2,1],[-6,7],[4,4],[-4,3],[-3,2],[-19,5],[-5,-1],[-1,-3],[4,-9],[2,-4],[3,-2],[4,0],[5,-2],[4,-4],[2,-6],[-21,-18],[-9,-2],[-5,2],[-10,8],[-14,5],[-4,-1],[2,-6],[-7,-4],[-9,7],[-8,11],[-4,10],[1,7],[-1,7],[-1,8],[-1,7],[-1,4],[-1,1],[-1,2],[-4,7],[-1,1],[0,2],[4,21],[2,9],[0,12],[3,14],[6,4],[8,-1],[8,1],[4,8],[6,27],[4,5],[4,2],[14,7],[17,4],[1,1],[-1,3],[0,3],[1,1],[15,0],[10,-3],[5,-3],[18,-24],[7,-7],[18,-6],[10,-6],[8,-21],[26,-16],[-6,-3],[-30,1],[-5,5],[-5,7],[-4,9]],[[39936,89508],[-1,-9],[3,-5],[11,-6],[-4,-8],[-6,-8],[-6,-3],[-3,6],[-3,-2],[-3,-2],[-4,0],[-3,0],[1,-6],[0,-2],[-11,-12],[-7,-1],[-6,9],[0,19],[2,8],[4,3],[9,3],[6,4],[2,4],[2,6],[4,3],[13,-1]],[[39791,89500],[12,15],[22,13],[23,6],[12,-6],[-1,-14],[-4,-11],[-13,-13],[-4,-1],[-4,2],[-3,0],[-2,-7],[1,-5],[2,-5],[5,-7],[-2,-5],[-1,-5],[0,-5],[3,-5],[-10,-10],[-4,-2],[-3,6],[-25,-2],[2,10],[13,12],[-1,8],[-2,4],[-4,13],[-2,4],[-10,10]],[[40124,89678],[7,14],[12,7],[27,4],[-3,-6],[-6,-5],[1,-5],[-9,-12],[-10,-10],[-10,-2],[-11,7],[1,2],[1,2],[0,2],[0,2]],[[40592,90043],[3,4],[2,0],[2,-3],[1,-6],[-2,-7],[-5,-3],[-25,-1],[-5,5],[-1,16],[2,14],[5,-2],[5,-7],[4,-5],[2,7],[-1,13],[2,10],[10,-6],[1,-7],[-2,-8],[-4,-6],[-5,-3],[3,-4],[4,-3],[3,0],[1,2]],[[40701,90259],[8,6],[21,6],[9,0],[-10,-19],[-10,-13],[-11,-7],[-9,7],[5,7],[3,3],[3,2],[-9,8]],[[40764,90360],[0,-2],[0,-2],[1,-2],[1,-2],[-10,-8],[6,-7],[2,-8],[-2,-5],[-8,4],[-13,20],[4,9],[7,9],[7,5],[5,-7],[-2,-2],[0,-1],[1,0],[1,-1]],[[41746,90872],[3,-2],[2,-4],[0,-3],[-3,-4],[0,-8],[-3,-6],[-5,-4],[-12,-3],[-16,-11],[-9,-2],[-9,1],[-8,4],[-16,10],[-4,6],[-2,9],[-2,12],[9,9],[10,5],[20,3],[16,-7],[25,-2],[4,-3]],[[35250,91009],[10,-3],[8,-7],[9,-3],[8,5],[-5,4],[-12,12],[-5,7],[1,7],[5,3],[11,0],[7,-5],[5,-13],[5,-9],[7,2],[-2,4],[5,-1],[5,-4],[4,-7],[2,-10],[-3,-8],[-6,-6],[-7,-6],[-11,-12],[-7,-3],[-32,-2],[-6,2],[-1,9],[-2,2],[-9,2],[-11,7],[-3,1],[0,9],[-1,7],[-4,4],[9,2],[17,8],[9,2]],[[35601,91099],[-7,0],[-7,-1],[6,5],[5,-2],[3,-2]],[[35567,91117],[5,6],[32,-5],[5,-3],[0,-4],[-25,0],[-7,-4],[1,-5],[2,-2],[2,-2],[-36,-11],[-18,-12],[-5,-1],[-4,2],[-7,7],[-4,4],[-10,2],[-34,-6],[-9,3],[-2,-1],[-8,-9],[-3,-2],[-3,3],[-1,6],[-1,7],[1,4],[6,12],[9,3],[19,-2],[9,4],[16,10],[9,2],[33,-6],[7,-6],[-6,-5],[-13,-5],[-4,-7],[3,-3],[3,-3],[3,-2],[3,1],[0,3],[4,4],[21,8],[5,5],[2,10]],[[35458,91121],[-6,9],[-6,3],[-7,-1],[-18,-11],[-42,-9],[-4,-3],[-6,-3],[-18,5],[-56,-12],[-34,-17],[-17,-4],[7,22],[8,13],[11,8],[56,7],[17,7],[-5,4],[-18,-4],[0,4],[60,16],[-2,1],[-2,2],[-1,2],[0,4],[34,0],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[78,3],[4,2],[5,5],[3,0],[6,-4],[6,-2],[13,-1],[-3,-2],[-3,-1],[-3,-1],[-3,1],[-10,-4],[-2,-3],[-8,-12],[-8,-7],[-8,-9],[-7,-5],[-7,5]],[[35771,91874],[8,4],[16,-2],[15,5],[19,-1],[3,-2],[21,-14],[7,-2],[18,4],[9,0],[8,-8],[-2,-3],[-4,-10],[33,3],[5,-8],[0,-8],[0,-5],[-2,-3],[-27,-27],[-7,-9],[-4,-3],[-6,0],[-9,7],[-4,1],[-4,-3],[-13,-18],[-8,-7],[-2,-6],[2,-14],[0,-7],[0,-7],[-1,-5],[-5,-12],[0,-6],[0,-9],[8,-24],[2,-11],[-8,-5],[-6,-1],[-13,-5],[-19,-17],[-6,-2],[-9,2],[-12,5],[-9,10],[1,14],[1,2],[-13,25],[-4,11],[-7,29],[-3,8],[-10,4],[-4,4],[0,6],[6,11],[3,5],[3,2],[15,-1],[7,4],[-3,14],[16,20],[9,8],[18,8],[24,22],[8,11],[-12,-2],[-11,-4],[-21,-14],[-14,-6],[-41,6],[11,9],[30,12],[8,11],[-3,-1],[-3,1],[-3,1],[-2,3]],[[35304,91537],[-8,3],[-76,-21],[-22,-16],[-63,-21],[-11,-10],[-6,0],[-4,2],[-10,10],[-4,3],[-25,-3],[-32,5],[-7,9],[-5,18],[-11,7],[-62,10],[-19,15],[-3,4],[-1,7],[-2,1],[-7,7],[-2,3],[2,10],[3,5],[10,5],[-2,2],[-6,6],[6,3],[6,-1],[11,-6],[6,-2],[38,3],[58,-10],[32,8],[6,6],[3,-1],[4,-3],[4,-1],[60,-1],[8,5],[-45,3],[-12,9],[0,4],[2,4],[6,16],[3,7],[9,16],[10,11],[23,3],[11,4],[0,4],[-21,0],[-38,-10],[-8,-8],[-5,-2],[5,-12],[-7,-14],[-11,-12],[-8,-7],[-24,-10],[-12,0],[-13,6],[28,19],[8,10],[-9,4],[-49,-21],[-9,0],[-7,8],[8,13],[14,10],[11,12],[-1,14],[-5,6],[-8,5],[-8,4],[-5,-1],[-3,-3],[-1,-4],[1,-4],[2,-5],[0,-4],[-1,-4],[-1,-4],[-1,-2],[-38,-4],[-33,10],[-7,2],[-19,-6],[-110,16],[-10,6],[-15,12],[1,3],[2,10],[-12,2],[-15,7],[-14,12],[-8,15],[2,0],[2,1],[2,2],[1,1],[-2,9],[3,6],[20,10],[8,2],[8,-2],[9,-5],[5,4],[27,4],[7,-2],[5,-4],[9,-14],[8,-5],[25,-7],[14,-13],[8,-3],[6,4],[-30,28],[-16,6],[-4,5],[-3,5],[-11,11],[-3,2],[-51,9],[-27,16],[-5,27],[11,7],[5,1],[22,0],[-11,12],[-4,5],[-3,6],[-2,8],[0,7],[11,5],[11,8],[6,3],[28,2],[12,-9],[104,-26],[6,4],[-8,10],[-11,6],[-60,12],[-70,39],[-9,10],[-9,18],[-1,2],[-3,53],[3,16],[7,9],[7,8],[6,10],[5,4],[26,7],[54,28],[34,7],[8,-4],[110,-16],[37,-18],[78,-11],[33,-14],[10,-7],[20,-3],[18,-17],[22,-11],[14,-14],[11,-7],[7,-10],[11,-22],[9,-12],[28,-29],[19,-28],[10,-12],[27,-9],[31,-19],[24,-5],[34,-17],[28,-3],[-2,0],[61,-20],[17,-16],[6,-12],[2,-9],[-3,-7],[-12,-23],[-2,-2],[-4,-1],[-9,-4],[-3,-3],[37,-20],[11,3],[1,3],[3,-4],[1,-7],[-5,-6],[-9,-8],[-6,-11],[-33,-41],[-8,-4],[-12,-9],[-12,-13],[-38,-18],[-17,1],[-134,-57],[-19,0],[-4,-4]],[[34800,92150],[-38,-7],[-20,4],[-16,15],[-3,6],[-3,8],[-3,8],[-2,23],[-1,6],[2,2],[62,-19],[32,-26],[5,-8],[3,-11],[-4,-3],[-14,2]],[[35649,92353],[10,-3],[34,-26],[-8,-11],[-14,1],[-77,39],[1,8],[3,4],[7,4],[6,-4],[24,-6],[9,-5],[5,-1]],[[35606,92483],[11,-4],[30,-25],[23,-3],[6,-5],[-8,-12],[-10,-7],[-10,-2],[-49,5],[-24,8],[-46,-4],[-13,8],[-6,11],[2,10],[3,12],[2,14],[7,10],[13,5],[15,1],[20,-3],[23,-16],[11,-3]],[[35028,92566],[-18,11],[-6,10],[2,17],[6,14],[10,10],[18,15],[13,16],[12,4],[5,6],[28,34],[9,4],[12,-16],[25,-43],[14,-17],[6,-11],[5,-11],[2,-11],[0,-11],[-5,-13],[-6,-12],[-7,-11],[-9,-9],[-9,-3],[-43,-3],[-57,25],[-7,5]],[[35421,92673],[-10,-2],[-12,-5],[-11,-9],[-8,-10],[-2,-7],[0,-7],[0,-5],[0,-5],[-7,-6],[-82,-9],[-5,2],[-31,25],[-5,2],[-4,6],[-4,14],[-10,39],[-2,15],[2,11],[10,4],[11,3],[34,17],[78,-10],[79,-10],[5,-4],[11,-22],[6,-6],[-7,-13],[-12,-6],[-24,-2]],[[35196,92836],[-31,5],[-9,7],[-5,12],[-3,32],[-3,13],[11,8],[11,3],[72,-2],[17,-6],[6,-1],[17,5],[60,-1],[5,-2],[-14,-15],[-27,-16],[-46,-14],[-8,-8],[0,-3],[1,-4],[0,-5],[-1,-4],[-3,-3],[-14,-6],[-18,0],[-18,5]],[[34531,93060],[11,6],[12,3],[12,1],[27,-10],[8,-5],[7,-9],[-11,-18],[-15,-15],[-16,-10],[-14,0],[-24,7],[-8,6],[-11,15],[-5,5],[-7,3],[6,11],[28,10]],[[34709,93298],[2,-6],[1,-3],[2,-2],[-4,0],[-8,7],[-5,0],[-4,-4],[-2,-6],[-2,-8],[-3,-6],[-6,-4],[-13,-4],[-6,-4],[-3,-6],[-7,-15],[-3,-6],[-20,-17],[-11,-6],[-16,-4],[-9,-6],[-5,-1],[-5,2],[-9,10],[-5,4],[-26,2],[-10,7],[3,16],[10,9],[52,15],[4,6],[0,7],[-7,2],[-20,-5],[-20,2],[-6,3],[-2,6],[3,5],[5,2],[6,-3],[46,-5],[10,5],[21,15],[11,4],[16,0],[2,2],[15,20],[4,3],[25,5],[8,-1],[0,-9],[-1,-12],[-3,-11],[-5,-5]],[[34499,93517],[-10,5],[-11,8],[6,4],[-6,3],[-7,1],[-7,-4],[-3,-9],[1,-8],[3,-6],[8,-10],[-6,0],[-10,7],[-5,1],[-7,-2],[-11,-8],[-7,-2],[-26,4],[-6,4],[-3,5],[-3,7],[-3,6],[-5,2],[0,5],[9,3],[19,-2],[8,5],[7,6],[20,8],[8,0],[-3,8],[-2,2],[-3,2],[8,5],[30,-1],[25,6],[7,2],[2,-4],[-1,-5],[5,2],[12,7],[5,0],[5,-2],[2,-3],[-5,-3],[-4,-1],[-5,-3],[-2,-6],[4,-6],[-4,-7],[-4,-9],[-4,-9],[-7,-3],[-3,-1],[-7,-4],[-4,0]],[[34516,93473],[-22,2],[-8,-2],[4,15],[5,10],[7,5],[31,7],[12,7],[8,13],[1,13],[-2,10],[1,6],[9,3],[19,1],[17,9],[12,2],[7,11],[36,10],[30,-12],[4,-1],[4,4],[-25,7],[-7,6],[-2,8],[5,2],[5,2],[59,-14],[5,-7],[-3,-4],[-19,-9],[-6,-7],[-2,-8],[-2,-9],[-2,-8],[-6,-3],[-4,-2],[-8,-5],[-19,-4],[-5,-3],[-11,-12],[-3,-5],[0,-5],[0,-5],[-1,-4],[-6,-7],[-6,-3],[-5,-4],[-4,-10],[0,-5],[2,-5],[-1,-5],[-5,-1],[-3,0],[-2,2],[0,4],[2,6],[-9,5],[-6,-8],[-5,-11],[-5,-6],[-4,-3],[-8,-8],[-3,0],[-8,7],[-3,5],[-3,7],[6,6],[25,10],[-8,3],[-23,1],[-6,6],[-5,8],[-5,5],[-7,-3],[-1,-3],[0,-3],[0,-3],[-1,-3],[-4,-5],[-3,-2],[-5,-1],[-5,0]],[[34553,93723],[6,3],[14,2],[4,4],[101,-32],[16,-10],[9,-14],[-4,0],[-4,-1],[-3,-4],[-3,-5],[-4,-5],[-46,-6],[-9,5],[4,9],[-2,7],[-9,8],[1,3],[1,6],[0,5],[-2,2],[-2,-1],[-2,-3],[0,-5],[-2,-3],[-7,-6],[-9,-5],[-18,-5],[-7,2],[-20,14],[-21,5],[-5,7],[23,23]],[[34435,94039],[7,-6],[11,11],[6,-3],[4,-2],[2,-4],[1,-5],[3,-5],[3,-4],[23,-11],[25,-4],[16,-11],[13,-3],[4,-3],[5,-10],[2,-3],[8,-2],[9,0],[9,-5],[5,-13],[-22,-4],[-11,-4],[-5,-13],[2,-1],[1,-1],[1,-2],[1,-4],[-10,-1],[-3,1],[-3,3],[-2,5],[-2,3],[-3,2],[-6,-2],[-5,-3],[-5,-2],[-6,2],[5,11],[8,1],[9,-2],[7,5],[2,10],[-4,6],[-7,2],[-5,0],[3,2],[3,5],[2,6],[1,7],[-17,-10],[-7,-2],[-8,4],[0,2],[0,3],[0,2],[-1,1],[-3,1],[-6,3],[-14,2],[-5,4],[-3,7],[2,0],[5,3],[-8,7],[-17,-3],[-9,1],[-25,16],[-9,4],[5,7],[7,3],[7,1],[4,-5]],[[34409,94191],[-10,-1],[-10,-7],[-10,-11],[-3,-1],[-20,-4],[-9,2],[-2,10],[3,2],[3,4],[3,4],[2,6],[-5,4],[-78,-14],[-12,1],[-9,14],[17,11],[-7,11],[-25,-6],[-8,8],[42,24],[9,-6],[84,-17],[84,-17],[6,-5],[3,-8],[-3,-12],[-9,-5],[-36,13]],[[34300,94587],[-58,-1],[0,2],[-102,-5],[-28,-9],[-87,5],[-13,6],[0,3],[98,13],[99,12],[22,10],[15,3],[26,-6],[26,-11],[-1,-4],[-1,-2],[-4,-2],[22,-4],[-5,-8],[-9,-2]],[[30695,95829],[4,-4],[3,-2],[1,-2],[-3,-7],[-4,-3],[-12,-3],[-16,-9],[-23,-5],[-94,14],[-5,6],[4,9],[11,5],[117,14],[10,-3],[7,-10]],[[30117,96301],[16,0],[19,6],[17,1],[13,-15],[-9,-10],[-37,-6],[-16,-11],[-24,-1],[-10,-7],[-4,-1],[-119,4],[0,4],[3,0],[4,3],[3,3],[-2,3],[-30,8],[-20,-2],[-68,21],[-14,13],[4,8],[7,3],[48,9],[0,2],[0,1],[-1,1],[8,5],[30,-1],[3,-1],[5,-5],[3,-2],[17,4],[105,-21],[21,5],[8,-3],[20,-18]],[[30456,96318],[63,-2],[21,-6],[-10,-6],[-22,1],[-21,-6],[-116,-3],[-116,-2],[-8,3],[-8,6],[-8,13],[-8,9],[-30,13],[4,3],[5,1],[19,-1],[21,4],[43,-2],[21,8],[75,-17],[75,-16]],[[35201,99133],[-17,12],[-4,6],[3,33],[26,24],[54,19],[74,-8],[64,-24],[-13,-4],[2,-6],[3,-4],[15,-20],[4,-3],[14,-8],[114,-37],[114,-37],[115,-36],[11,-11],[-3,-3],[-10,-2],[-16,-5],[-112,5],[-113,5],[-29,13],[-90,18],[-22,10],[-112,14],[-20,10],[-28,4],[-12,11],[0,3],[-1,7],[-1,3],[-2,4],[-3,3],[-5,4]],[[37630,99276],[21,-7],[9,-10],[-1,-15],[-4,-4],[-24,-11],[-51,-11],[-100,-55],[10,-15],[36,-20],[47,-38],[-10,-11],[-15,-6],[-58,-7],[-15,3],[-61,38],[-4,15],[-28,19],[-134,34],[-135,35],[-134,34],[-34,19],[-2,3],[-2,6],[2,4],[-11,19],[-19,23],[-19,16],[-14,-1],[-6,6],[-32,10],[-55,47],[-51,6],[6,7],[8,4],[117,0],[116,1],[14,-4],[6,0],[7,4],[-5,7],[-22,10],[74,1],[75,1],[93,-22],[93,-23],[94,-22],[0,-5],[-2,0],[0,-4],[30,0],[88,-30],[19,-14],[83,-37]],[[36707,99495],[-133,5],[-10,4],[-9,7],[-4,11],[1,14],[1,9],[4,6],[8,5],[22,6],[108,-20],[108,-20],[18,-10],[-10,-12],[-15,-4],[-89,-1]],[[39045,99686],[38,-5],[3,-3],[0,-4],[-5,-8],[-11,-12],[-49,-27],[-40,-6],[-19,3],[-8,5],[-21,4],[-38,27],[-20,6],[-74,4],[-12,4],[-11,8],[1,3],[1,5],[-7,1],[-14,9],[-7,2],[-6,3],[-6,8],[-3,7],[4,3],[78,-2],[77,-3],[43,-22],[106,-10]],[[38860,99657],[14,-17],[5,-3],[13,-2],[12,-5],[23,-17],[-117,14],[-117,14],[-55,25],[-35,4],[-10,3],[-26,21],[-81,25],[-10,-1],[2,5],[-2,0],[15,6],[80,-2],[79,-1],[14,-8],[17,-20],[8,-4],[23,-4],[41,-21],[62,-4],[22,-6],[16,0],[7,-2]],[[39212,99727],[7,-3],[41,-25],[6,-5],[-77,-6],[-9,6],[2,0],[-125,24],[-126,24],[-6,4],[-10,13],[-40,19],[-81,3],[-80,3],[-10,7],[-1,12],[5,12],[9,9],[14,5],[45,-5],[0,4],[-19,2],[-19,6],[15,4],[53,-9],[20,-12],[63,-18],[62,1],[29,-14],[26,-21],[28,-14],[89,-13],[89,-13]],[[43489,91772],[25,3],[14,-3],[11,-8],[8,-27],[1,-7],[-4,-11],[-10,-4],[-57,6],[-18,12],[-13,23],[9,7],[12,5],[22,4]],[[42719,92260],[5,-1],[2,-3],[5,-11],[6,-6],[14,-1],[6,-3],[-7,-6],[-2,-3],[-1,-5],[2,-6],[-16,-15],[-8,-4],[-21,-1],[-7,2],[-4,4],[-5,7],[-11,3],[-6,4],[1,2],[3,4],[2,2],[-2,3],[-4,9],[6,1],[10,9],[5,2],[5,-1],[10,-6],[6,-1],[0,4],[-3,2],[-7,6],[4,4],[4,3],[4,1],[4,1]],[[42300,92363],[-6,8],[-2,9],[0,11],[2,15],[-3,8],[-2,9],[-1,10],[2,9],[9,9],[13,5],[24,2],[7,-1],[13,-6],[7,-1],[70,4],[-2,-3],[-3,-2],[-2,-2],[-2,-1],[-3,-5],[-11,-11],[-10,-17],[-3,-4],[-12,-8],[-24,-8],[-23,-18],[-25,-13],[-7,-2],[-6,3]],[[42967,92367],[1,-8],[4,-12],[4,-13],[0,-14],[-5,-6],[-5,-2],[-12,0],[-15,-7],[-42,-5],[-23,-15],[-12,-2],[-25,1],[-11,-3],[-39,-35],[-10,-4],[-19,-3],[-1,2],[-1,2],[-1,3],[-2,1],[-13,0],[-2,3],[-6,18],[-9,5],[-12,1],[-12,-3],[-18,-13],[-43,-9],[-13,-11],[-7,-3],[-97,-4],[-5,2],[-4,3],[-4,1],[-5,-2],[-2,-3],[-2,-4],[-2,-4],[-3,-1],[-97,-15],[-97,-14],[-97,-14],[-13,4],[-6,13],[3,9],[7,7],[24,16],[5,5],[3,5],[-3,7],[-15,9],[-4,14],[5,8],[9,6],[14,16],[10,4],[69,9],[8,4],[19,29],[7,8],[18,14],[11,4],[7,8],[3,2],[6,1],[34,16],[8,8],[8,14],[18,25],[23,9],[112,2],[99,25],[6,4],[11,13],[5,4],[40,11],[17,13],[89,42],[7,0],[0,-5],[-2,0],[0,-1],[0,-3],[0,-3],[1,-6],[1,-17],[0,-2],[-3,-8],[-3,-3],[-3,-3],[-4,-6],[13,-8],[47,-5],[6,-3],[21,-23],[4,-6],[6,-24],[-3,-5],[-3,-3],[-2,-3],[-4,-1],[5,-6],[12,-4],[4,-6],[0,-10],[-5,-4],[-25,-3],[-7,-3],[-3,-7],[2,-6],[5,-1],[29,0],[10,-4],[1,-9]],[[42899,92580],[7,3],[7,0],[13,-3],[4,-4],[5,-9],[2,-4],[6,0],[6,3],[5,1],[6,-4],[-4,-2],[-3,-5],[-2,-6],[2,-2],[5,-2],[5,-4],[4,-6],[3,-9],[-7,1],[-6,4],[-12,12],[-1,-12],[-4,1],[-4,7],[-4,8],[0,5],[-4,8],[-4,8],[-4,3],[-14,-4],[-7,2],[-5,10],[1,0],[1,1],[1,2],[1,1],[1,-4]],[[43903,93363],[3,-9],[2,-3],[-9,-11],[-12,-2],[-13,3],[-29,17],[-27,5],[-5,4],[2,2],[0,2],[1,2],[1,3],[-8,-1],[-13,-10],[-8,-2],[-78,22],[-9,-1],[-14,-6],[-10,-8],[0,-2],[2,-2],[1,-6],[3,-3],[1,-2],[0,-3],[-1,-1],[-1,0],[0,-2],[1,-8],[2,-5],[16,-13],[97,-30],[8,-11],[-6,-16],[4,-5],[6,0],[6,2],[5,7],[-1,6],[7,3],[17,-1],[15,-6],[17,-2],[-5,-5],[-16,-11],[-15,-18],[-6,-3],[2,-7],[2,-4],[7,-5],[6,-8],[3,-6],[-6,-4],[-10,-12],[-5,-4],[-14,-2],[-76,8],[-21,12],[0,4],[16,9],[7,7],[5,12],[-13,5],[-4,-3],[-9,-13],[-4,-5],[-11,-6],[-11,0],[-10,4],[-23,18],[-40,18],[-8,6],[-5,7],[-9,16],[-10,13],[-81,33],[-81,33],[-32,4],[-40,22],[-13,4],[-13,-1],[-4,-4],[-7,-10],[-4,-3],[-3,2],[-3,4],[-2,5],[1,6],[6,6],[11,4],[5,7],[-7,13],[-11,9],[-9,6],[-12,2],[1,-3],[-7,-8],[-12,7],[-23,21],[-12,4],[-6,3],[-5,8],[-2,5],[-5,19],[-1,6],[-2,14],[-1,6],[1,8],[0,6],[0,7],[-1,8],[-4,15],[-5,14],[-12,24],[5,10],[9,6],[10,3],[130,13],[36,-13],[24,0],[23,-13],[135,2],[3,0],[2,-2],[2,-4],[2,-6],[3,-3],[10,-13],[6,-20],[9,-8],[8,-5],[4,-6],[5,-6],[24,-6],[5,-12],[33,-11],[7,-12],[-2,-2],[0,-2],[-1,-2],[-1,-2],[36,-16],[10,1],[9,3],[8,7],[3,0],[1,-7],[3,-7],[6,-4],[12,-1],[7,-3],[14,-11],[40,-15],[5,-4],[3,-6],[1,-6],[-5,-4],[-2,-2],[-4,-3],[-2,-5],[-2,-6],[49,12],[11,-3],[10,-7],[4,-12],[-3,-19],[0,-4]],[[43111,93652],[3,-1],[3,-1],[1,-2],[-2,-5],[-5,-8],[-23,-12],[3,-8],[1,-12],[-1,-11],[-1,-10],[-7,-10],[-12,-1],[-27,5],[-15,10],[-54,17],[-9,8],[9,-1],[21,4],[8,5],[3,3],[4,10],[3,3],[5,3],[20,-3],[6,2],[11,8],[6,2],[49,5]],[[43908,93546],[8,-2],[6,-7],[1,-7],[-7,-8],[1,-1],[0,-1],[-1,-3],[2,0],[-7,-2],[-21,-2],[-4,3],[-3,6],[-7,-1],[-12,-4],[12,17],[-7,2],[-9,-1],[-10,-4],[-6,-6],[-3,-4],[-26,9],[-108,-7],[-11,3],[-8,8],[29,4],[1,8],[-5,4],[-22,0],[-9,5],[-8,7],[3,8],[-1,5],[-3,5],[-5,2],[2,4],[-9,8],[-96,35],[-27,-4],[-25,5],[-33,-3],[2,0],[-42,-2],[-29,15],[-31,7],[-97,-2],[-96,-2],[-7,5],[-7,11],[-3,13],[3,14],[11,11],[105,7],[105,6],[21,10],[42,1],[87,25],[88,-21],[29,0],[7,-2],[14,-9],[136,-25],[44,-29],[2,0],[1,1],[0,3],[2,3],[1,1],[8,-2],[6,-4],[7,-1],[8,7],[3,-9],[6,-2],[6,-1],[4,-4],[1,-3],[0,-4],[1,-3],[2,-3],[-8,-5],[-18,-4],[-7,-11],[2,-2],[6,-6],[-3,-2],[-9,2],[-4,-1],[-11,-7],[-24,-7],[-8,-6],[8,-5],[7,0],[6,2],[6,-1],[0,-1],[1,-3],[1,-2],[2,-2],[23,-5],[4,-2],[5,-5],[-4,-3],[-13,-5],[2,-6],[3,-2],[8,0],[2,1],[2,1],[1,2],[3,-2],[4,-5],[1,-1]],[[44076,93789],[34,-1],[9,-7],[-2,-1],[-2,-1],[-1,-3],[0,-3],[-39,-12],[-19,-1],[-18,13],[28,15],[10,1]],[[43187,93730],[-9,3],[-26,-4],[-7,2],[-21,14],[-37,3],[-49,23],[-102,2],[-40,16],[-24,17],[-12,4],[-1,1],[-1,2],[0,4],[0,3],[3,4],[2,2],[13,2],[12,8],[7,2],[2,2],[10,16],[23,21],[38,14],[8,8],[0,8],[-3,7],[-2,7],[2,8],[6,11],[8,5],[109,4],[109,4],[18,-6],[108,-32],[108,-32],[108,-33],[5,-12],[-13,-6],[-119,16],[-119,15],[-119,16],[-119,15],[-6,-2],[-5,-5],[7,-4],[8,2],[7,4],[7,0],[7,-2],[18,-7],[106,-16],[17,-11],[19,5],[69,-19],[69,-19],[6,2],[6,-5],[95,-6],[95,-5],[25,-15],[8,-2],[20,6],[-7,-6],[-13,-20],[-5,-4],[-138,-14],[-137,-14],[-138,-14],[-16,7]],[[44346,94443],[15,-12],[8,-3],[6,2],[8,-5],[12,-2],[10,-3],[2,-14],[-8,-13],[-84,-14],[-84,-15],[-30,2],[-42,-15],[-67,-5],[-3,1],[-36,28],[-73,21],[-73,21],[-13,10],[-2,14],[7,15],[1,3],[4,8],[1,2],[11,10],[1,1],[3,-1],[2,0],[1,3],[0,4],[0,3],[0,2],[5,6],[5,5],[82,31],[83,31],[74,-4],[3,-1],[3,-2],[2,-2],[2,-7],[6,-3],[18,3],[86,-12],[4,-2],[6,-9],[4,-5],[11,-8],[4,-6],[2,-8],[-1,-5],[-5,-5],[-1,-5],[0,-6],[2,-3],[3,-1],[3,-4],[1,-4],[1,-2],[1,-3],[4,-5],[15,-12]],[[44795,94668],[3,0],[1,-3],[-2,-5],[-4,-2],[0,-2],[0,-2],[0,-1],[-2,1],[6,-12],[-2,-9],[-6,-6],[-18,-9],[-90,2],[-7,-4],[3,4],[1,3],[1,3],[-10,5],[-5,4],[-4,6],[5,6],[16,7],[18,16],[49,24],[14,0],[17,-3],[8,-5],[4,-8],[-10,-5],[-4,-4],[-3,-7],[11,1],[5,1],[5,4]],[[44896,94715],[15,1],[4,-1],[-2,-3],[-2,-2],[-3,0],[-2,1],[-3,-1],[-3,-2],[-6,-6],[0,-4],[9,-7],[6,-11],[1,-10],[-10,-4],[-34,0],[-5,2],[1,6],[-4,7],[-7,8],[-4,5],[0,10],[-3,7],[-5,6],[-4,6],[34,-8],[27,0]],[[44497,94821],[12,-2],[7,-4],[3,-7],[-1,-8],[-5,-6],[-11,-6],[-28,-36],[-21,-10],[-22,-24],[-11,-7],[-14,-3],[-32,4],[-21,11],[-29,5],[-64,42],[-5,10],[6,8],[18,16],[5,7],[4,10],[3,10],[2,12],[-2,11],[-6,9],[-11,14],[3,8],[11,5],[23,19],[39,9],[42,-6],[24,-12],[26,-4],[8,-4],[5,-7],[-2,-8],[-5,-6],[-53,-21],[-7,-9],[2,-8],[5,-4],[6,-2],[5,0],[1,4],[1,5],[2,6],[3,3],[3,-3],[4,0],[7,3],[9,-1],[3,-1],[0,-2],[7,0],[51,-20]],[[45189,94966],[-17,-21],[-6,-14],[4,-18],[3,-3],[3,0],[3,-1],[1,-6],[-1,-2],[-8,-5],[-18,-6],[-19,-1],[5,-4],[0,-8],[-2,-8],[-5,-6],[-7,-7],[-10,-6],[-9,-2],[-8,5],[4,2],[3,4],[3,5],[1,7],[0,10],[-1,3],[-10,1],[-25,8],[-23,-4],[0,4],[2,0],[-7,11],[-12,3],[-61,1],[-22,-12],[-75,-19],[-104,13],[-19,-5],[-5,6],[-3,10],[-2,12],[2,5],[-1,4],[-1,5],[0,7],[2,8],[4,6],[19,27],[2,4],[-2,6],[-14,14],[10,2],[4,7],[0,34],[-4,18],[-10,8],[-10,5],[-7,11],[42,1],[8,3],[15,11],[4,1],[8,-3],[3,0],[34,11],[7,-1],[25,-20],[7,-7],[3,-10],[0,-2],[4,-2],[16,-3],[28,6],[15,8],[10,11],[-2,5],[-1,5],[0,5],[1,5],[-1,5],[2,5],[3,4],[3,2],[3,10],[12,1],[14,-5],[9,-6],[3,-2],[7,-11],[4,-4],[15,-8],[6,-7],[-2,-8],[10,-8],[3,-4],[-8,-12],[-40,-20],[-41,4],[-6,-4],[8,0],[3,-2],[4,-3],[-24,-4],[-6,-2],[-3,-6],[0,-6],[25,-7],[26,14],[3,-3],[0,-7],[-2,-4],[-2,-3],[-5,-12],[-1,-1],[9,-14],[5,-6],[6,-5],[5,-3],[11,2],[3,-2],[2,-3],[1,-3],[0,-4],[1,-2],[11,-9],[12,-7],[26,-4],[33,10],[3,3],[2,3],[0,5],[-2,3],[-3,2],[-1,2],[4,14],[10,2],[12,-3],[11,-1],[11,5],[11,1],[10,-3],[11,-11]],[[44847,95510],[-1,-7],[1,-16],[0,-10],[-5,-17],[-1,-8],[6,-7],[-5,-11],[-9,-13],[-8,-7],[-7,7],[0,10],[4,12],[3,12],[-2,12],[-65,126],[-9,26],[0,19],[3,12],[-3,10],[-13,17],[-44,81],[-7,24],[2,25],[8,16],[11,7],[12,1],[55,-7],[15,3],[-2,4],[-3,2],[-2,2],[-3,0],[3,3],[1,1],[0,4],[-42,4],[-14,-4],[0,6],[-4,6],[-5,7],[-4,5],[-1,9],[-1,11],[-2,9],[-10,8],[3,9],[6,9],[5,6],[8,3],[8,1],[7,-3],[8,-5],[6,-8],[48,-29],[7,-8],[7,-13],[4,-13],[0,-15],[-3,-16],[-12,-25],[-2,-7],[0,-9],[2,-7],[2,-5],[2,-8],[-1,-13],[-1,-14],[-1,-14],[1,-15],[2,-8],[0,-16],[2,-9],[2,-8],[3,-9],[16,-29],[3,-9],[0,-10],[-3,-9],[-6,-6],[-4,-7],[2,-10],[7,-23],[3,-8],[11,-16],[1,-5],[1,-5],[4,-8]],[[44998,96447],[-62,1],[-11,11],[11,5],[26,38],[39,25],[6,11],[2,20],[4,12],[7,8],[10,6],[8,3],[38,5],[6,-1],[1,-5],[18,-26],[5,-12],[-5,-16],[-19,-21],[-4,-7],[-8,-23],[-3,-7],[-14,-16],[-19,-7],[-36,-4]],[[44060,96582],[-3,5],[-3,6],[0,6],[2,7],[8,13],[10,11],[10,8],[13,4],[5,6],[29,9],[5,-1],[6,-3],[-2,-1],[0,-3],[-1,-2],[-1,-2],[-6,-1],[-8,-5],[-6,-8],[3,-10],[-5,-6],[-10,-6],[-5,-7],[-1,-2],[0,-3],[0,-7],[-1,-1],[-24,-12],[-7,0],[-8,5]],[[44633,96593],[8,-3],[8,-8],[6,-10],[1,-11],[-7,-12],[-13,-3],[-108,29],[-108,28],[-108,29],[-4,7],[6,6],[8,4],[65,-3],[12,3],[12,6],[18,2],[11,5],[5,0],[6,-3],[5,-7],[8,-19],[5,-8],[3,-4],[42,-21],[108,2],[11,-9]],[[44674,96660],[13,17],[5,11],[-2,11],[-14,9],[-19,5],[-17,11],[-7,24],[6,0],[20,-15],[13,-5],[7,-1],[57,11],[20,10],[5,0],[-3,-10],[-5,-7],[-6,-6],[-5,-7],[-1,-10],[1,-12],[4,-8],[5,0],[-60,-66],[-12,-7],[-5,-1],[-5,1],[-3,4],[-1,10],[1,9],[2,8],[3,8],[3,6]],[[44339,96743],[-15,-5],[-47,3],[-59,25],[7,4],[21,5],[8,4],[37,27],[13,5],[10,-1],[10,-5],[10,-9],[8,-12],[6,-13],[1,-12],[-3,-9],[-7,-7]],[[44598,96781],[-14,1],[-5,5],[4,11],[-16,12],[-20,3],[-5,6],[-3,11],[0,14],[1,14],[2,12],[5,8],[6,-2],[13,-13],[25,-17],[8,-10],[3,-8],[8,-25],[3,-8],[3,-4],[3,-1],[5,0],[-26,-9]],[[44745,96925],[7,-22],[0,-7],[-3,-1],[-3,-2],[-4,-3],[-2,-3],[7,-16],[1,-6],[-5,-5],[-5,-1],[-22,1],[-5,-2],[-5,-4],[-2,-9],[2,-9],[5,-7],[39,-23],[5,-6],[0,-7],[-4,-6],[-5,-3],[-25,-6],[-13,-6],[-7,0],[-4,8],[-51,19],[3,8],[1,8],[-1,8],[-1,10],[-3,11],[-8,16],[-3,8],[7,12],[9,10],[89,54],[3,-1],[1,-4],[1,-4],[1,-10]],[[44934,97028],[-4,-7],[-18,-15],[-44,-18],[0,-2],[1,-4],[1,-3],[-12,-5],[-15,-1],[-15,5],[-10,13],[6,8],[19,8],[17,17],[14,9],[17,6],[37,-2],[8,-5],[-2,-4]],[[44943,97099],[-9,8],[-2,7],[3,9],[-2,4],[9,17],[13,10],[13,1],[12,-8],[10,-14],[8,-9],[1,-8],[-11,-12],[-38,-20],[-7,-10],[-2,8],[1,4],[1,5],[0,8]],[[44687,97083],[-8,-5],[-45,-4],[-22,6],[-32,22],[-19,3],[-7,5],[-2,8],[8,12],[119,82],[11,2],[11,0],[7,-5],[-1,-2],[0,-2],[0,-2],[-1,-2],[-30,-8],[3,-3],[2,-3],[0,-5],[-1,-5],[3,-3],[11,3],[22,0],[-8,-11],[-28,-8],[-10,-10],[3,1],[3,0],[3,-2],[3,-3],[-5,-6],[-4,-4],[-5,-2],[-5,0],[9,-6],[34,6],[-2,-4],[6,-4],[-15,-9],[-51,1],[5,-8],[11,-3],[12,1],[16,5],[20,-3],[8,-4],[-6,-6],[-26,-11],[3,-4]],[[45129,97274],[-41,3],[-6,-3],[4,-7],[2,-2],[-5,-4],[-7,-3],[-13,-1],[5,-6],[2,-2],[-5,-4],[-7,-3],[-12,-1],[5,-5],[-4,-5],[-19,-7],[-6,0],[-7,1],[-6,3],[4,4],[5,3],[10,2],[-6,8],[-7,6],[-4,9],[2,17],[8,15],[34,22],[15,32],[6,4],[11,6],[11,9],[11,4],[11,-10],[10,-2],[30,-22],[5,-7],[-1,-11],[-3,-11],[-9,-25],[-3,-1],[-10,1],[-3,-1],[-4,-5],[-3,-1]],[[44787,97831],[8,0],[14,5],[24,18],[6,3],[116,22],[117,22],[21,-2],[107,-44],[3,-3],[2,-3],[-15,-15],[-8,-10],[-4,-10],[-66,-60],[-67,-60],[-94,-29],[-86,-4],[-23,13],[-73,21],[-73,20],[-19,11],[-25,21],[-39,10],[-6,0],[15,13],[58,20],[23,14],[10,2],[21,-1],[10,3],[-1,7],[-3,6],[-7,10],[-7,18],[-5,6],[41,8],[8,-1],[4,-2],[8,-8],[3,-4],[1,-7],[1,-10]],[[44577,97865],[-37,-5],[-3,3],[-11,18],[17,10],[4,6],[-3,3],[0,2],[3,7],[1,2],[4,2],[2,2],[1,3],[-1,3],[0,1],[-1,0],[1,3],[0,8],[1,5],[2,4],[8,6],[21,15],[39,10],[39,-2],[131,-42],[9,-7],[-4,-3],[-10,-3],[-5,-3],[-104,-24],[-104,-24]],[[45074,98792],[-18,12],[-116,45],[-19,16],[7,6],[9,4],[120,6],[6,-6],[6,-9],[8,-5],[16,-4],[28,-19],[15,-15],[7,-5],[16,-5],[17,-12],[8,-2],[0,-3],[-12,-7],[-98,3]],[[44594,99004],[-38,22],[-11,14],[-4,9],[-3,13],[-2,14],[3,11],[5,5],[32,9],[32,1],[13,-4],[14,-8],[14,-5],[47,-28],[7,-13],[5,-15],[12,-8],[24,-9],[67,-58],[8,-13],[5,-16],[-16,-4],[-99,7],[-115,76]],[[31451,98201],[-4,0],[-3,1],[-3,0],[-3,1],[-7,3],[0,3],[-4,2],[-7,0],[-1,1],[-3,0],[-2,0],[-1,1],[0,1],[-3,2],[-3,2],[-1,2],[-2,1],[0,1],[-2,1],[0,3],[-2,0],[0,6],[-1,0],[0,2],[-2,1],[0,2],[-1,0],[-1,4],[-1,0],[-1,1],[0,3],[2,0],[0,1],[3,1],[2,0],[1,0],[1,0],[11,0],[2,0],[3,-1],[2,0],[2,0],[3,-1],[2,0],[3,-1],[3,0],[3,-1],[1,0],[4,-1],[2,0],[13,-5],[4,-2],[3,-1],[1,-1],[3,-3],[0,-1],[4,-2],[14,-5],[0,-1],[5,-1],[1,0],[4,-2],[0,-1],[2,0],[1,-1],[4,-1],[1,-1],[0,-5],[-3,-2],[-3,0],[-7,0],[-2,-1],[-16,0],[-2,0],[-2,-1],[-3,0],[-3,0],[-3,-1],[-3,-1],[-2,-1],[-3,-1]],[[31577,98333],[-5,0],[-3,0],[-6,2],[0,1],[-2,1],[0,2],[2,1],[3,0],[4,0],[3,0],[4,-2],[3,0],[4,-2],[0,-1],[-4,-2],[-3,0]],[[0,40894],[0,12],[3,6],[4,5],[10,5],[-3,-12],[-3,-7],[-5,-5],[-6,-4]],[[0,40674],[0,30],[2,8],[8,11],[1,7],[3,2],[10,7],[4,1],[0,-4],[-2,-1],[-1,-2],[0,-2],[2,-3],[0,-5],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,-3],[-2,-6],[0,-5],[3,-3],[2,-3],[-4,-8],[-5,-8],[-13,-10]],[[0,40528],[3,10],[20,45],[5,6],[6,4],[4,-2],[2,-7],[3,-17],[1,-10],[0,-6],[3,-5],[3,-4],[1,-5],[-1,-5],[-10,-20],[-3,-10],[-1,-6],[0,-13],[-1,-1],[-2,0],[-2,-2],[-17,-22],[-9,-16],[-5,-19],[0,105]],[[0,40674],[99999,0],[-2,-1],[-1,0],[-1,2],[0,5],[0,7],[4,16],[0,1],[-99999,-30]],[[0,40424],[99999,-1],[-2,-6],[-3,-6],[-4,-5],[-4,-3],[-3,-2],[-4,0],[-3,2],[-1,9],[-5,9],[-2,8],[2,9],[3,7],[7,11],[10,30],[1,8],[2,10],[6,24],[0,1],[-99999,-105]],[[0,40894],[99999,0],[-17,-33],[-2,-1],[-5,-1],[-3,-2],[-2,-4],[-3,-9],[-1,-5],[-4,-7],[-2,-5],[0,-2],[-2,-3],[-4,-14],[-11,-33],[-5,-7],[0,-12],[-5,-18],[-7,-16],[-6,-6],[-6,-4],[-27,-37],[-1,-4],[-2,-4],[-1,-9],[0,-7],[0,-9],[-1,-10],[-2,-8],[-3,-6],[-7,-9],[-3,-5],[-2,-4],[-3,-11],[-2,-2],[-4,-3],[-2,-3],[3,-6],[1,-10],[-1,-11],[-3,-9],[2,-4],[5,6],[5,3],[4,-1],[3,-8],[4,6],[7,15],[4,3],[3,1],[3,3],[3,5],[1,5],[1,8],[3,3],[3,1],[3,2],[0,3],[1,8],[1,2],[1,1],[3,1],[1,2],[2,6],[3,15],[2,5],[3,3],[2,2],[2,2],[1,5],[1,5],[3,3],[4,2],[9,13],[6,9],[2,9],[3,4],[14,14],[2,4],[1,4],[1,3],[2,2],[4,0],[1,-3],[0,-5],[3,-14],[-1,-5],[-2,-5],[-2,-4],[-3,-17],[-10,-37],[0,-3],[1,-7],[-1,-2],[-1,-1],[-3,1],[-1,0],[-6,-16],[7,-1],[5,-7],[3,-11],[0,-14],[4,1],[5,-2],[4,-6],[1,-9],[-3,-4],[-4,1],[-9,7],[1,-4],[2,-9],[1,-3],[-4,2],[-2,2],[-4,-6],[-3,2],[-1,8],[1,8],[-10,1],[-4,3],[-3,8],[-6,-4],[-6,1],[-5,2],[-4,1],[-3,-2],[-4,-8],[-4,-2],[-3,0],[-3,-1],[-1,-4],[-1,-7],[-2,6],[0,2],[-2,0],[-3,-12],[-10,-14],[-4,-11],[-5,9],[-5,1],[-12,-6],[-9,0],[-5,-3],[-4,-5],[-10,7],[-7,1],[-22,-4],[0,2],[3,4],[2,8],[2,8],[5,3],[4,4],[-2,8],[1,8],[-3,4],[-9,4],[-7,11],[-5,6],[-2,-3],[-3,0],[-21,-17],[-5,-7],[-9,-14],[2,-10],[-2,-8],[-3,-7],[-4,-4],[-9,5],[-5,-15],[-7,-42],[7,9],[3,1],[5,-2],[-3,-7],[-7,-11],[-3,-6],[-2,0],[-4,3],[-11,6],[-3,5],[-2,5],[0,4],[-1,4],[-5,2],[-2,4],[-1,5],[0,6],[-2,0],[0,-12],[-4,5],[-3,1],[-3,-2],[-3,-4],[-11,-20],[-2,-6],[-2,-23],[-2,-4],[-3,-2],[-1,-4],[4,-6],[-10,-14],[-1,-2],[-8,-1],[-3,1],[-5,4],[-3,7],[-3,17],[-3,19],[0,16],[-3,11],[-6,12],[-3,13],[2,18],[-6,5],[-2,4],[-1,7],[-17,-17],[-8,-3],[-8,12],[2,2],[0,2],[-3,6],[0,7],[1,3],[2,-3],[2,0],[-1,11],[3,10],[10,15],[0,-12],[2,5],[1,7],[1,4],[3,-4],[2,9],[3,14],[1,10],[-6,-7],[-4,1],[-3,7],[-2,11],[10,8],[3,0],[2,-3],[3,-9],[2,-4],[3,-2],[9,-2],[9,-11],[2,-1],[4,1],[1,3],[1,3],[2,5],[15,27],[4,4],[3,-6],[1,-17],[4,3],[1,4],[-1,15],[1,7],[8,24],[1,-3],[1,-6],[0,-4],[2,3],[2,3],[0,4],[0,7],[2,0],[3,-8],[3,6],[3,9],[3,6],[3,3],[-1,7],[-2,9],[-1,9],[1,-2],[4,-2],[1,-1],[1,11],[3,0],[2,-4],[2,-2],[4,1],[7,5],[13,3],[15,11],[8,4],[9,-1],[3,1],[0,2],[2,8],[1,3],[2,1],[5,2],[2,2],[5,0],[8,-4],[8,-2],[5,8],[4,-7],[2,2],[2,6],[4,3],[2,-1],[2,-9],[2,-1],[2,0],[1,1],[1,0],[2,-1],[0,8],[-2,9],[-2,7],[-3,4],[3,5],[3,2],[3,0],[2,-3],[2,10],[2,10],[3,6],[4,-6],[2,10],[1,9],[1,8],[4,5],[10,-1],[4,3],[-4,10],[3,0],[3,-3],[2,-6],[1,-7],[3,21],[1,7],[1,-7],[3,-3],[3,-2],[3,-4],[2,5],[2,1],[2,-4],[1,-6],[0,9],[1,3],[2,1],[2,-1],[2,2],[0,4],[1,5],[0,1],[1,0],[2,-1],[1,-2],[1,-1],[5,0],[2,1],[1,5],[2,4],[6,6],[9,10],[1,-9],[1,-14],[2,-7],[3,3],[6,11],[4,2],[3,-2],[1,-3],[-1,-4],[-3,-3],[3,-2],[4,0],[1,-2],[3,9],[10,17],[2,5],[20,18],[5,0],[-99999,-12]],[[392,39145],[2,-9],[4,-8],[5,-5],[4,2],[-1,-12],[-5,1],[-10,11],[-2,5],[1,11],[4,11],[8,1],[-2,-6],[-2,-1],[-2,0],[-4,-1]],[[286,39238],[0,14],[3,8],[4,1],[4,-10],[0,-16],[-4,-10],[-5,0],[-2,13]],[[38,39238],[4,25],[10,-2],[7,-17],[-6,-18],[-2,20],[-6,2],[-5,-9],[1,-11],[2,-12],[-4,-2],[-3,7],[2,17]],[[343,39697],[4,-8],[1,-10],[-1,-10],[-3,-5],[-10,0],[-3,1],[-2,3],[-1,3],[-2,1],[-5,9],[5,17],[10,10],[7,-11]],[[264,39836],[5,-6],[1,-14],[0,-8],[-5,-3],[-4,4],[-2,7],[-3,14],[5,8],[3,-2]],[[474,39879],[3,-3],[6,-8],[4,-9],[2,-10],[-3,-11],[-6,-6],[-7,0],[-7,2],[-8,8],[-2,19],[6,16],[12,2]],[[288,40297],[8,-8],[5,-6],[2,-8],[-5,-19],[0,-4],[-5,-3],[-6,-10],[-4,-12],[-1,-11],[-4,7],[0,11],[4,12],[4,6],[-1,8],[1,4],[2,2],[1,3],[0,8],[0,3],[-3,5],[-3,3],[-6,2],[-3,3],[-1,4],[0,12],[-1,5],[4,-4],[3,-6],[3,-6],[6,-1]],[[99937,39145],[3,-5],[2,-10],[1,-12],[1,-10],[-8,-4],[-4,0],[-4,1],[-1,2],[0,6],[2,2],[0,1],[1,5],[2,-2],[3,-1],[1,-1],[-1,9],[-3,9],[-1,7],[6,3]],[[99563,39244],[2,0],[10,-3],[3,-3],[2,-7],[2,-11],[-1,-10],[-5,-6],[-5,-6],[-1,4],[-3,1],[-6,2],[1,-5],[1,-4],[-1,-4],[-3,-3],[-3,2],[-6,1],[-7,0],[-5,-3],[1,4],[1,8],[0,4],[-2,-2],[-2,-1],[-2,1],[-2,2],[2,3],[1,4],[1,2],[-7,5],[-7,-6],[-12,-20],[-5,-2],[-4,0],[-3,-2],[-2,-6],[0,-12],[0,-3],[-1,9],[-3,-4],[-1,-7],[1,-6],[2,-3],[4,-2],[1,-5],[-1,-15],[0,-4],[-2,-4],[-3,-3],[-2,1],[-3,3],[0,6],[1,15],[-4,-7],[-2,-1],[-4,0],[-2,-6],[-2,-5],[-2,-4],[-4,-1],[-4,1],[-8,6],[-3,1],[-6,-8],[-4,-1],[-1,9],[-2,0],[-2,-3],[-3,2],[-3,4],[-3,5],[8,17],[5,3],[6,-4],[3,5],[1,13],[2,6],[3,3],[3,0],[16,-8],[2,1],[2,4],[0,6],[1,6],[3,4],[4,-5],[2,5],[1,10],[0,11],[4,13],[10,8],[11,1],[8,-6],[2,17],[2,2],[4,1],[2,1],[1,3],[1,3],[2,1],[3,-1],[2,-2],[3,0],[3,3],[2,-8],[9,-1],[2,-9]],[[99590,39291],[2,-5],[1,-5],[0,-4],[-1,-6],[-4,2],[-2,-6],[-1,-6],[-3,1],[-7,11],[0,7],[3,8],[0,5],[3,6],[6,3],[4,-2],[-1,-9]],[[99983,39480],[2,-4],[1,-3],[-2,-7],[-7,-3],[-3,-6],[-5,-8],[2,-5],[4,4],[1,0],[1,-7],[-5,-9],[-1,-12],[-5,-3],[-2,10],[-1,10],[-3,5],[-2,6],[-5,6],[-1,7],[5,5],[11,8],[11,5],[4,1]],[[99346,39518],[1,-7],[1,-7],[0,-14],[2,-29],[-4,6],[-4,10],[-2,11],[-2,10],[0,9],[0,4],[4,11],[1,-2],[1,-1],[1,0],[1,-1]],[[99477,39591],[2,11],[3,1],[3,-5],[2,-11],[-1,-13],[-3,-8],[-4,-2],[-5,7],[2,1],[1,1],[0,2],[-1,4],[1,3],[0,2],[0,3],[0,4]],[[99817,39811],[4,-17],[1,-31],[-3,-24],[-9,11],[-2,7],[-3,16],[-1,7],[-5,13],[-2,7],[-2,11],[-1,-7],[1,-12],[-1,-4],[-2,-1],[-1,4],[-2,17],[1,17],[-1,2],[-2,10],[-1,6],[3,-4],[2,0],[6,10],[1,0],[2,-1],[4,-1],[4,-6],[7,-25],[2,-5]],[[99841,39932],[0,-3],[0,-2],[-2,-3],[1,-4],[1,-5],[0,-6],[0,-5],[-2,-6],[-2,3],[-2,11],[-2,5],[-2,7],[-1,8],[1,8],[5,-5],[5,-3]],[[99645,39973],[5,-15],[5,-7],[5,-3],[-1,-4],[0,-2],[-1,-2],[-2,4],[-2,-2],[-1,0],[-2,4],[-3,1],[-5,23],[-1,11],[3,-8]],[[99659,40030],[2,3],[4,3],[5,-6],[3,-14],[1,-8],[1,-8],[1,-8],[-1,-9],[-1,-7],[-2,-6],[-7,-4],[-3,-2],[-5,-4],[-3,10],[-1,10],[-4,23],[3,18],[7,9]],[[99723,40034],[-2,8],[0,6],[2,3],[4,-5],[1,-6],[4,-18],[1,-9],[-3,0],[-1,7],[-1,6],[-2,4],[-3,4]],[[99641,39815],[-1,-5],[-2,-8],[-1,-4],[0,-8],[0,-6],[-1,-8],[-2,-8],[-4,-6],[-2,-4],[-14,-15],[-7,-14],[0,12],[-8,-6],[-3,-2],[3,10],[0,2],[-1,6],[-2,1],[-1,0],[-2,4],[-3,0],[-8,-8],[-4,-3],[1,-12],[-5,-7],[-6,-4],[-3,1],[0,9],[1,3],[-1,2],[-4,9],[-3,3],[-3,1],[-3,0],[1,-3],[0,-2],[-1,-5],[-1,-4],[-2,-2],[-3,-1],[0,2],[-1,3],[-1,2],[-2,1],[-2,0],[-3,-3],[-2,-1],[-2,-2],[-2,-4],[-2,-4],[-3,-2],[-4,-1],[-2,-1],[-1,-2],[-2,-4],[-1,-4],[-1,-8],[-1,-4],[-3,-3],[-6,-4],[-2,-3],[-8,-20],[-5,-8],[-5,-3],[-2,0],[-2,-4],[-6,12],[-21,-15],[-9,3],[-4,0],[-2,1],[-2,3],[-1,-3],[-4,-5],[-4,-1],[-3,3],[-3,1],[-5,-5],[-3,-2],[-1,10],[-1,3],[-2,-1],[-3,-3],[-1,-3],[-2,-2],[-1,2],[-6,10],[0,4],[-2,3],[-12,7],[-23,13],[-7,2],[-8,4],[-15,14],[-7,-2],[-8,8],[-4,1],[-14,-2],[-2,1],[-3,3],[-2,3],[-1,4],[-2,2],[-19,10],[-9,8],[-6,19],[-2,-4],[-1,6],[-1,12],[0,6],[-1,4],[-1,2],[-1,5],[-1,7],[-1,4],[-5,5],[0,4],[1,5],[-2,5],[-1,5],[-1,6],[0,5],[4,10],[1,6],[0,8],[-1,4],[-2,4],[0,6],[1,12],[5,5],[13,1],[7,6],[2,3],[3,6],[0,5],[0,5],[-1,6],[0,20],[1,8],[1,1],[1,-1],[10,-6],[2,0],[3,6],[1,4],[-1,4],[-1,5],[0,6],[-1,12],[-1,6],[0,5],[-3,3],[-2,2],[-2,4],[-2,14],[3,6],[5,4],[3,11],[1,4],[6,3],[3,3],[1,7],[-1,6],[1,6],[3,5],[3,-7],[2,2],[2,7],[-2,7],[2,8],[3,8],[2,2],[3,-6],[2,0],[11,20],[11,14],[1,2],[1,1],[0,3],[1,3],[2,1],[2,0],[2,-2],[1,-1],[-1,-1],[-2,-5],[1,-10],[2,-11],[2,-6],[2,3],[-2,8],[-1,7],[0,7],[1,7],[2,3],[9,11],[2,2],[11,-8],[1,3],[1,7],[1,7],[1,3],[3,2],[1,3],[2,2],[6,2],[1,3],[1,3],[3,3],[1,1],[1,-1],[0,-8],[0,-6],[0,-6],[-2,-5],[-2,-5],[5,-2],[4,4],[3,8],[4,6],[6,-8],[8,-1],[8,2],[6,3],[8,8],[4,5],[3,6],[3,5],[7,0],[4,5],[9,-3],[10,4],[9,10],[2,17],[6,-4],[8,-8],[6,-9],[3,-9],[1,-7],[3,-12],[0,-8],[-2,-6],[-7,-15],[-2,-7],[3,-3],[0,-5],[-1,-5],[-2,-3],[3,1],[8,19],[5,4],[6,-1],[6,-5],[5,-7],[3,-11],[0,-5],[-1,-7],[1,-4],[1,-1],[5,-9],[1,-2],[1,-2],[11,-17],[3,0],[3,0],[3,-2],[5,-7],[8,-21],[2,-4],[6,-2],[6,-4],[5,-8],[3,-11],[0,-14],[-3,-12],[-3,-9],[-2,-11],[-1,-6],[0,-5],[-1,-5],[1,-5],[2,-4],[5,-7],[2,-3],[0,-7],[-1,-6],[0,-6],[2,-5],[4,2],[2,-2],[-1,-4],[-2,-4],[3,-3],[2,-4],[0,-6],[-2,-8],[-1,2],[-2,2],[0,-2],[1,-10],[-8,-5],[1,-16],[5,-19],[3,-8],[6,-1],[2,-3],[2,-5],[3,-7],[1,-4],[0,-2],[1,-2],[2,-1],[2,2],[2,4],[1,4],[0,3],[2,0]],[[99192,40257],[7,-6],[4,0],[4,6],[4,-12],[-2,-1],[-1,-2],[0,-3],[-4,-12],[-4,-7],[-3,-2],[-3,6],[-1,10],[2,8],[0,6],[-3,4],[0,5]],[[99847,40230],[-1,-15],[-2,-14],[-3,-11],[-4,-10],[-7,-13],[-2,4],[0,35],[-1,9],[-1,9],[-2,8],[1,8],[-1,8],[2,6],[12,4],[2,1],[3,0],[3,-5],[0,-3],[1,-21]],[[99241,40354],[1,4],[3,16],[2,-7],[0,-8],[-1,-7],[-3,-6],[-2,-11],[-8,-12],[-1,-9],[-1,2],[-1,1],[-1,1],[-1,4],[-3,-4],[-2,-4],[-1,-5],[0,-7],[-7,3],[0,5],[3,-1],[1,1],[-2,5],[0,9],[0,7],[2,3],[3,2],[1,6],[0,7],[1,5],[2,4],[6,10],[3,2],[0,-2],[3,-11],[2,-3],[1,0]],[[99289,40480],[-9,-14],[-2,-6],[3,-4],[-1,-5],[-1,-4],[-1,-4],[-3,-4],[0,4],[-2,5],[-4,12],[2,5],[7,7],[-2,9],[3,3],[6,-1],[4,-3]],[[99536,40524],[-1,-12],[2,-6],[-1,-3],[-7,1],[-5,-4],[-2,7],[-1,21],[2,0],[2,-3],[4,-1],[7,0]],[[99321,40593],[6,0],[3,-5],[1,-8],[-2,-11],[-2,-6],[-5,-7],[-1,-5],[-1,-3],[-17,-29],[-4,-9],[-2,-10],[-3,3],[-1,1],[-1,-3],[-3,-3],[-2,-1],[-2,3],[0,4],[2,14],[0,6],[2,0],[3,-7],[6,5],[10,23],[13,22],[4,13],[-4,13]],[[99976,40606],[-9,0],[4,3],[2,1],[1,2],[0,8],[1,2],[3,0],[3,2],[3,4],[2,6],[0,-12],[-2,-9],[-3,-6],[-5,-1]],[[99607,40655],[2,-3],[3,-1],[2,1],[2,3],[-2,-6],[-2,-5],[-4,-3],[-5,1],[-2,1],[-1,1],[-1,2],[8,9]],[[99822,40801],[4,-2],[3,-2],[-3,-4],[-4,-1],[-5,1],[-5,4],[0,4],[10,0]],[[99200,43075],[2,-9],[-5,-6],[-6,-3],[-5,0],[-4,3],[-4,2],[-5,1],[-4,-2],[-1,9],[-1,3],[4,-2],[4,1],[7,10],[5,-4],[10,0],[3,-3]],[[98503,37612],[-5,8],[-2,10],[1,7],[6,0],[3,-4],[2,-8],[-1,-8],[-4,-5]],[[356,38228],[-2,4],[-2,4],[1,4],[1,5],[0,-5],[1,-5],[2,-4],[2,-3],[-1,0],[-2,0]],[[493,38720],[-1,3],[0,4],[1,4],[3,4],[-1,-4],[-1,-4],[-1,-7]],[[439,39118],[5,21],[2,3],[1,-11],[0,-12],[-2,-3],[-3,0],[-3,-4],[-1,1],[0,2],[1,3]],[[306,39290],[-2,-2],[-3,-2],[-2,0],[-2,1],[3,6],[4,5],[3,4],[4,2],[-1,-4],[-1,-4],[-2,-3],[-1,-3]],[[415,39416],[-3,9],[2,7],[3,3],[3,-5],[1,-6],[-2,-5],[-2,-4],[-2,1]],[[188,39946],[-4,7],[1,11],[4,9],[6,1],[5,-10],[0,-12],[-5,-8],[-7,2]],[[234,40123],[-4,8],[-1,11],[3,8],[5,1],[3,-7],[1,-11],[-1,-9],[-6,-1]],[[234,40241],[0,11],[3,3],[3,-2],[2,-8],[-1,-7],[-2,-4],[-3,1],[-2,6]],[[96148,20347],[19,-7],[6,-5],[-4,-3],[-8,-3],[-7,-5],[-4,-1],[-4,1],[-2,-5],[-38,4],[-2,3],[-1,4],[-3,5],[-6,8],[-3,4],[-2,8],[5,-1],[5,-4],[7,-9],[4,0],[21,7],[4,6],[2,1],[3,-1],[8,-7]],[[97013,19366],[3,-14],[0,-6],[-4,-5],[-3,-6],[-2,-8],[-9,-8],[-8,1],[-10,2],[-3,4],[-6,5],[-4,3],[-3,6],[-3,2],[-3,-4],[-7,9],[-3,6],[2,5],[6,0],[10,-4],[9,-3],[2,11],[2,11],[5,11],[4,6],[7,7],[5,0],[3,-4],[-1,-5],[3,0],[4,-3],[2,-5],[9,-5],[5,-9],[-5,-2],[-7,2]],[[96178,20503],[-5,-6],[-3,1],[-4,3],[-5,-4],[3,-4],[2,-6],[3,-15],[-2,2],[-4,1],[-2,2],[2,-9],[1,-4],[-3,-2],[-5,-10],[4,2],[5,0],[4,-2],[4,-4],[-7,-4],[-14,2],[-8,-2],[0,-4],[6,0],[9,-7],[6,-1],[-2,-10],[-3,-10],[4,-1],[7,2],[4,-1],[-1,-5],[-1,-5],[1,-6],[1,-5],[-3,1],[-4,-1],[-3,0],[0,-4],[4,0],[5,-4],[4,-4],[3,-4],[-1,-10],[-3,-10],[-5,-5],[-4,3],[-6,8],[-9,4],[-8,6],[-5,12],[-3,-6],[-3,-4],[-7,-6],[2,8],[3,9],[1,9],[-1,9],[-3,6],[-4,5],[-4,1],[-3,-7],[2,-3],[3,-5],[2,-5],[-3,-3],[-3,2],[-7,6],[-4,0],[3,-5],[3,-4],[2,-4],[2,-7],[0,-9],[-2,-6],[-3,-4],[-4,-1],[-5,0],[-3,2],[-4,5],[-3,7],[-2,0],[-4,-6],[-7,-12],[-2,33],[10,24],[38,36],[5,11],[4,14],[1,18],[2,13],[3,15],[1,13],[-6,10],[5,2],[3,2],[4,1],[5,-3],[4,-1],[13,4],[4,3],[-1,-4],[0,-8],[-1,-4],[5,0],[12,4],[-1,-4],[1,-7],[2,-7],[2,-3],[-11,0],[-3,-1],[-1,-4],[0,-4],[-1,-5]],[[99677,21079],[1,-10],[-1,-10],[-3,-10],[-1,-10],[0,-10],[-1,-4],[-2,-1],[-12,1],[-9,3],[-6,9],[0,16],[3,7],[12,20],[4,5],[4,2],[4,0],[4,-3],[3,-5]],[[1071,24265],[2,-2],[6,-8],[-9,-10],[-3,-8],[-1,-12],[-10,-11],[-6,-4],[1,8],[-1,2],[-2,5],[-1,2],[1,2],[-1,2],[1,4],[4,16],[1,4],[-3,8],[-4,3],[0,3],[3,6],[4,4],[6,2],[5,0],[4,-2],[1,-2],[1,-4],[0,-4],[1,-4]],[[1005,24472],[-1,-4],[-2,-2],[-2,1],[-1,5],[1,14],[-1,7],[-2,6],[5,5],[5,11],[5,13],[1,11],[-5,12],[-9,4],[-15,1],[-15,4],[-7,-3],[1,-14],[5,-7],[26,-9],[-21,-27],[-1,-7],[9,-21],[2,-7],[1,-8],[-1,-8],[1,-7],[7,-8],[10,15],[2,-13],[1,-10],[1,-5],[5,-10],[3,-4],[8,-3],[3,-3],[4,-14],[-8,-5],[-12,-1],[-8,-2],[-2,-4],[-8,-4],[-7,-10],[-12,-9],[-2,-12],[-2,-1],[-17,0],[-6,2],[-2,5],[-1,13],[-2,11],[-6,23],[-2,3],[-3,2],[-1,3],[2,4],[6,5],[17,20],[3,6],[1,6],[6,7],[6,9],[-2,14],[-12,36],[-6,11],[-7,8],[-3,3],[-4,1],[-4,-2],[-3,-3],[-3,-1],[-3,2],[-2,-4],[2,-8],[-3,-2],[-4,1],[-4,-3],[-8,6],[-20,-10],[-8,12],[4,11],[5,4],[6,2],[6,7],[0,4],[-2,5],[0,5],[4,3],[0,-2],[7,-9],[3,-2],[25,5],[6,6],[3,11],[1,10],[2,6],[6,3],[2,-1],[6,-6],[3,-1],[12,1],[4,-1],[18,-15],[7,-2],[62,8],[0,-3],[-4,0],[-3,-4],[-2,-7],[0,-10],[-12,11],[-11,-9],[-10,-19],[-14,-36],[-2,-10],[-1,-12]],[[581,33130],[-5,-3],[0,4],[0,8],[0,6],[-5,8],[-2,4],[-2,7],[5,0],[5,-1],[5,-3],[4,-3],[4,-5],[3,-5],[5,-17],[-4,5],[-5,-1],[-3,-4],[-2,-8],[-3,8]],[[2447,44929],[-1,3],[-1,4],[-1,4],[-1,4],[2,-3],[2,-5],[1,-5],[0,-5],[-1,0],[0,2],[0,1]],[[2087,45397],[-2,6],[-2,7],[3,-5],[2,-6],[1,-7],[-1,-7],[0,3],[-1,9]],[[96287,22047],[-1,-4],[-3,-12],[2,-5],[1,-6],[1,-7],[0,-7],[-2,3],[-2,3],[-3,9],[-2,1],[-10,-3],[0,4],[14,22],[5,2]],[[96504,22498],[4,8],[6,7],[7,1],[2,-8],[-3,-5],[-7,-7],[-7,-3],[-2,7]],[[96585,22763],[-3,-4],[-4,-2],[-4,2],[-2,8],[1,8],[3,4],[5,0],[3,-1],[4,-5],[-3,-10]],[[96830,22794],[4,-13],[-3,-12],[-6,-10],[-3,-6],[1,7],[-1,5],[-3,5],[-3,8],[5,1],[4,2],[3,5],[2,8]],[[96721,22607],[13,-12],[3,-6],[1,-4],[-2,-2],[-3,0],[-2,0],[-2,2],[-2,8],[-2,2],[-6,1],[-2,-4],[2,-15],[-3,-3],[-10,6],[4,-9],[-21,0],[-17,-4],[-7,-5],[-18,-24],[-5,-10],[-4,-4],[-4,0],[-5,3],[-4,5],[-4,4],[-10,-3],[-4,1],[-3,7],[-1,9],[-3,4],[-5,-8],[-5,-1],[-2,-2],[0,-3],[-2,-14],[-4,5],[-15,-17],[-8,-4],[5,-8],[9,2],[17,10],[-4,-11],[-3,-8],[-8,-14],[0,15],[-4,0],[-5,-8],[-4,-9],[-5,-4],[-9,-3],[-10,-1],[-5,3],[-2,11],[2,15],[3,15],[3,9],[3,4],[6,1],[5,7],[10,7],[-5,5],[0,5],[2,6],[1,8],[0,9],[-1,6],[0,7],[2,8],[3,6],[3,4],[7,7],[4,2],[4,-1],[3,-3],[4,-1],[5,8],[-2,15],[-2,15],[2,13],[3,3],[8,0],[4,5],[5,12],[1,6],[1,8],[-2,14],[-3,12],[-10,21],[-1,7],[1,5],[2,4],[1,5],[0,3],[-1,3],[0,3],[-2,3],[-1,4],[1,3],[1,3],[0,4],[2,16],[4,9],[6,3],[8,0],[8,-4],[4,-1],[4,3],[3,6],[4,1],[13,-10],[5,-6],[5,-8],[25,-52],[4,-6],[4,-4],[4,-6],[2,-8],[3,-2],[6,-5],[4,-8],[-6,-7],[6,-5],[0,-3],[-7,-4],[-25,4],[2,8],[-16,1],[-5,-4],[3,-12],[-1,-6],[-14,-28],[7,1],[10,18],[6,5],[3,-2],[8,-8],[7,-3],[11,-7],[-1,-4],[-1,-3],[-2,-3],[-2,-2],[0,-4],[3,0],[15,8],[4,0],[4,3],[2,1],[1,-2],[0,-5],[3,-4],[2,-3],[2,-2],[-1,-6],[-2,-15],[-1,-4],[-3,-2],[-3,0],[-3,2],[-4,0],[0,-4]],[[96308,23455],[5,-6],[4,-11],[2,-14],[1,-13],[-1,-13],[-3,-9],[-5,-5],[-7,-2],[0,3],[-2,6],[-2,3],[-2,-10],[-3,-3],[-2,0],[-2,1],[-2,6],[-1,12],[-1,12],[0,7],[-4,11],[-5,-1],[-17,-30],[-4,-5],[-6,-3],[1,8],[3,10],[3,10],[3,4],[1,2],[3,9],[3,9],[3,1],[7,0],[22,11],[5,1],[3,-1]],[[96381,23723],[2,-21],[4,-20],[10,-40],[-9,-3],[-4,2],[-4,8],[-5,4],[-6,3],[-5,4],[-3,8],[-3,8],[0,4],[2,3],[0,2],[2,6],[17,40],[0,-2],[0,-2],[1,-2],[1,-2]],[[98438,26126],[5,-1],[0,-5],[0,-6],[1,-8],[-2,-8],[-2,-18],[-2,-7],[-4,-4],[-5,-1],[-5,1],[-5,0],[-4,-3],[-7,-10],[-2,-3],[-5,-2],[-14,2],[2,2],[3,5],[0,1],[3,0],[7,-1],[3,3],[14,26],[5,-8],[6,4],[4,10],[0,11],[-3,-4],[-4,1],[-2,4],[-2,7],[5,0],[3,5],[4,4],[3,3]],[[98272,26244],[4,3],[1,4],[1,6],[-2,7],[-3,-6],[-1,-2],[-1,7],[-1,7],[1,8],[1,6],[5,-6],[3,-7],[4,-6],[6,-1],[0,4],[-4,4],[-3,7],[-2,7],[-1,10],[1,9],[3,22],[2,5],[1,0],[1,-5],[0,-5],[3,-1],[1,8],[2,5],[2,3],[4,-4],[0,-8],[0,-11],[1,-10],[2,6],[9,4],[4,7],[-9,0],[6,8],[3,5],[2,7],[3,17],[2,3],[1,-8],[0,-9],[-1,-8],[-3,-15],[2,-6],[0,-4],[-1,-2],[-2,-2],[-4,-8],[-1,-3],[-1,-6],[-1,-15],[-1,-7],[-2,-1],[-5,1],[-2,-2],[-3,-7],[-2,-3],[-7,-4],[-1,-2],[-2,-4],[0,-4],[-1,-3],[-4,-4],[-4,-3],[-4,0],[-3,3],[1,2],[0,2],[0,2],[0,3]],[[97985,24839],[2,-8],[-2,-14],[-1,-15],[-1,-31],[-2,-4],[-2,-8],[1,-13],[5,-37],[8,-35],[0,-9],[-4,6],[-3,1],[-1,-3],[2,-9],[4,-5],[17,-7],[-8,-5],[-18,-2],[-8,-5],[-8,-10],[3,-5],[8,-2],[6,-3],[6,12],[10,4],[10,0],[5,-2],[1,-8],[2,-9],[3,-5],[1,2],[2,16],[2,15],[7,-8],[2,-5],[1,-10],[-1,-16],[1,-4],[4,2],[2,5],[2,7],[2,6],[4,3],[4,-1],[4,-3],[3,-5],[1,-8],[8,14],[4,3],[1,-11],[3,-6],[4,-5],[3,-7],[0,-4],[0,-5],[-1,-4],[-1,-3],[1,-4],[2,-6],[1,-3],[1,-16],[-1,-17],[-2,-17],[-4,-14],[-3,8],[-7,-14],[-5,2],[-2,-13],[0,-4],[-2,5],[-3,1],[-2,-2],[-2,-4],[-2,8],[-3,13],[-1,8],[0,9],[1,5],[-1,4],[-3,8],[-1,8],[0,8],[0,8],[-4,3],[-4,-3],[-2,-6],[1,-7],[4,-5],[-4,-16],[-1,-16],[3,-16],[9,-21],[-1,-2],[-6,2],[-19,0],[-3,4],[-7,12],[-6,-4],[-4,4],[-5,13],[-11,17],[0,8],[5,11],[-5,-1],[-8,-5],[-22,-5],[-8,-7],[-16,-2],[-25,-14],[-11,-3],[-2,3],[1,6],[3,4],[3,3],[8,2],[41,22],[5,1],[4,2],[-2,4],[-8,8],[-4,2],[-8,-2],[-5,3],[-2,3],[-3,8],[-3,4],[-7,6],[-7,-2],[-7,-5],[-8,-2],[-5,-7],[-3,-14],[-1,-18],[0,-14],[1,-9],[0,-3],[0,-3],[-4,-7],[-3,-3],[-23,-6],[-3,1],[-6,-2],[-5,-9],[-13,-7],[-5,-8],[-29,-21],[-54,-60],[-8,-3],[-5,2],[-4,-1],[-3,-3],[-21,-23],[-10,-3],[-5,-3],[-3,-5],[-3,-5],[-3,-5],[-8,-3],[-7,-9],[-3,-1],[-5,-3],[-5,-9],[-3,-5],[-2,-5],[-7,-4],[-3,-4],[-17,-28],[-7,-6],[-6,3],[-4,-4],[-3,-4],[-2,-6],[-1,-6],[-15,-43],[-1,-7],[0,-33],[-2,-11],[-3,-9],[-9,-15],[0,-5],[0,-7],[-1,-6],[-3,-2],[-3,-1],[-8,-8],[6,-11],[2,-21],[0,-44],[3,-29],[1,-10],[-2,-11],[-3,-5],[-4,-3],[-3,-7],[8,-2],[3,-15],[0,-19],[-3,-35],[-2,-12],[-4,-9],[-2,-7],[-3,-9],[-1,-9],[-19,-54],[-30,-48],[-15,-49],[-7,-42],[-4,-13],[-3,-15],[4,-7],[5,-7],[-1,-14],[-10,-18],[-3,-8],[0,-6],[1,-7],[1,-7],[-4,-11],[-8,-8],[-6,-9],[2,-15],[-3,-7],[-3,-3],[-4,0],[-5,6],[1,-7],[1,-6],[2,-11],[-5,-7],[-3,-2],[-10,0],[-6,-3],[0,-6],[4,-5],[7,-2],[-7,-21],[-2,-3],[-3,-2],[-4,-3],[-5,-8],[-3,-1],[-1,1],[-2,0],[0,-5],[0,-6],[0,-3],[1,-2],[3,0],[4,-2],[4,-4],[3,0],[4,6],[5,-6],[7,-6],[6,-6],[0,-8],[-5,-6],[-13,-4],[-6,-4],[-5,-13],[-2,-4],[-3,-1],[-3,-1],[-3,-2],[-3,-15],[-10,-11],[-3,-10],[5,4],[10,4],[9,11],[12,8],[4,5],[4,14],[4,7],[3,4],[4,1],[3,3],[3,8],[3,-8],[1,-9],[-1,-32],[-2,-8],[-5,-3],[-6,-1],[-5,1],[-1,-1],[-3,-3],[-2,-4],[0,-4],[0,-4],[-58,-9],[-23,-12],[-21,-22],[-16,-35],[-5,-14],[-1,-7],[0,-17],[-3,-11],[0,-6],[-3,-12],[-4,-12],[-7,-9],[-6,-5],[-14,-9],[-7,-7],[-6,-11],[-5,-11],[-5,-9],[-39,-40],[-9,-20],[-4,-31],[1,-16],[-2,-6],[-8,-4],[-6,-9],[-2,-2],[-5,2],[-9,5],[-5,1],[-5,-1],[-8,-5],[-4,-2],[4,-2],[22,-2],[-5,-21],[-9,-8],[-10,-6],[-9,-12],[-4,1],[-7,4],[-8,3],[-6,-4],[-3,-5],[-15,-13],[2,-2],[2,-7],[2,-3],[-8,-4],[-9,4],[-9,1],[-5,-13],[-6,6],[-1,2],[-10,2],[-5,0],[-3,-4],[-6,-9],[-3,-4],[-4,-1],[-9,-2],[-4,0],[-4,6],[1,12],[0,7],[-1,0],[-3,1],[-3,-4],[0,-13],[-3,-4],[-1,-3],[0,-3],[-2,-2],[-9,0],[-5,3],[-2,5],[-2,6],[-2,3],[-4,-1],[0,-5],[1,-7],[-1,-8],[-8,-6],[-9,4],[-9,7],[-8,4],[-9,-1],[-5,1],[-4,7],[-7,37],[0,6],[-2,7],[-3,0],[-9,-4],[-28,-9],[-10,0],[3,7],[3,2],[4,1],[4,2],[-6,6],[-7,2],[-14,1],[3,-9],[3,-5],[2,-4],[-4,-7],[1,-1],[2,-5],[1,-2],[-15,-7],[-48,7],[4,11],[1,2],[3,3],[4,2],[9,0],[4,-2],[3,-7],[8,-2],[5,3],[-7,11],[-8,4],[-24,-1],[-11,11],[-6,2],[-2,-10],[2,-13],[8,-16],[3,-10],[-7,2],[-10,18],[-7,4],[-1,3],[0,6],[-2,5],[-7,4],[-2,3],[-1,5],[-1,7],[9,4],[3,0],[3,-2],[0,-1],[0,-3],[1,-4],[2,4],[15,18],[2,16],[-2,19],[-5,14],[-7,0],[2,-15],[-2,-14],[-6,-9],[-5,1],[-4,9],[-5,24],[-15,41],[-5,7],[-8,3],[-27,-7],[-4,-3],[0,-7],[1,-7],[-1,-3],[-4,2],[-5,3],[-5,3],[-3,-2],[-8,2],[-6,0],[-2,-6],[-2,-6],[-3,-2],[-3,1],[-3,1],[-4,3],[-2,1],[-2,-1],[-4,-6],[-2,-1],[-3,2],[-3,4],[-2,6],[-4,2],[-2,5],[-4,11],[-3,4],[-6,6],[-3,4],[3,4],[4,2],[4,3],[2,8],[-14,28],[-7,17],[0,12],[-4,5],[-12,2],[-5,2],[-13,13],[-4,2],[-32,5],[-2,-1],[-2,-4],[0,-10],[-1,-5],[-3,-9],[-2,-8],[0,-8],[-2,-9],[-3,-7],[-5,-2],[-9,1],[-5,-2],[-8,-8],[-4,-2],[-6,1],[-11,6],[-6,1],[-5,-2],[-2,-2],[-2,-2],[-2,-2],[-1,2],[-1,4],[-1,2],[-4,1],[-17,12],[-5,0],[-5,-1],[-5,0],[-18,8],[-39,-1],[-18,5],[-16,17],[-8,16],[-1,6],[1,4],[8,5],[3,3],[11,18],[9,20],[8,28],[4,12],[6,5],[8,3],[13,16],[7,6],[0,4],[-6,-1],[-17,-16],[-12,-6],[-7,-6],[-4,-7],[-1,-7],[1,-4],[1,-4],[-1,-6],[-1,-1],[-9,-14],[0,-3],[-1,0],[-2,6],[0,2],[1,5],[0,5],[-3,4],[-4,-18],[-9,-8],[-20,-6],[0,10],[1,9],[3,5],[4,-4],[1,19],[3,13],[5,9],[8,7],[17,6],[7,6],[5,13],[-10,-7],[-9,-5],[-4,1],[-6,2],[-4,3],[-1,4],[16,28],[2,6],[1,4],[-3,5],[-3,-1],[-3,-4],[-3,-4],[-1,-2],[-1,-4],[-1,-5],[-1,-3],[-5,-5],[-1,-3],[-8,-18],[-1,-6],[-4,-7],[-26,-11],[-4,-4],[-7,-11],[-2,-2],[-2,3],[-2,7],[-1,8],[0,4],[1,7],[-1,8],[-1,12],[0,53],[2,14],[4,6],[18,4],[19,0],[-2,-4],[2,-5],[7,9],[8,4],[18,0],[7,2],[15,8],[7,2],[8,-2],[4,0],[3,4],[3,5],[2,3],[6,7],[13,9],[6,6],[4,13],[-12,-7],[-4,-1],[-20,3],[-26,-11],[-7,3],[5,18],[4,6],[5,5],[14,7],[5,5],[-27,-6],[-5,2],[-2,14],[0,13],[3,10],[7,4],[7,3],[14,11],[8,2],[15,-8],[8,-1],[6,9],[-10,-1],[-4,3],[-3,6],[18,9],[8,9],[2,15],[-37,-30],[-23,-6],[-15,-13],[-3,-1],[-6,-2],[-3,-1],[-5,1],[-2,2],[-4,11],[0,9],[11,34],[5,35],[2,9],[13,10],[13,-8],[14,-14],[12,-4],[-3,14],[-5,15],[-4,5],[-3,-14],[-6,7],[-11,8],[-4,6],[-4,6],[-1,7],[2,7],[3,10],[10,15],[6,7],[3,-2],[2,-10],[5,-7],[12,-9],[-3,-3],[-2,-3],[-2,-5],[-1,-5],[9,1],[8,6],[7,1],[8,-12],[2,-6],[1,-5],[0,-6],[-3,-8],[-7,-8],[-3,-6],[3,-2],[9,1],[3,3],[4,6],[2,8],[1,8],[2,3],[7,-11],[4,-3],[3,-5],[2,-14],[5,-20],[1,2],[1,2],[2,-3],[3,-3],[2,-2],[-1,19],[-15,28],[-28,42],[4,9],[5,4],[28,12],[5,0],[3,-5],[5,-14],[4,-6],[5,-2],[6,-1],[5,4],[3,7],[-5,3],[-10,-1],[-3,4],[-3,6],[-1,3],[1,11],[1,7],[3,2],[0,1],[-11,0],[-10,-8],[-7,-2],[-23,-4],[-5,4],[0,8],[-3,12],[-2,12],[-5,6],[-1,7],[-1,26],[2,10],[6,7],[9,-1],[6,-7],[11,-23],[3,-4],[5,-2],[4,0],[3,4],[-2,4],[-10,12],[-10,20],[-6,8],[-7,1],[11,27],[7,10],[6,-3],[11,-26],[0,-9],[0,-8],[0,-6],[3,-5],[2,8],[-1,12],[1,4],[4,3],[17,-3],[-4,8],[-16,8],[-6,6],[-4,10],[-4,10],[0,10],[4,9],[6,4],[8,-4],[7,-5],[7,-3],[6,-5],[7,-9],[6,-5],[4,7],[-5,2],[-34,29],[-3,5],[1,9],[5,8],[14,18],[5,4],[5,1],[6,1],[-1,2],[-3,7],[-1,3],[21,19],[9,1],[4,-18],[1,-3],[2,-3],[2,-4],[1,-6],[-1,-6],[-3,-11],[0,-6],[2,-8],[3,-6],[3,-7],[-2,-11],[10,-2],[5,1],[-1,7],[-1,3],[-1,4],[-1,5],[0,4],[-1,4],[-6,8],[0,6],[0,9],[0,9],[-2,9],[-2,6],[-4,19],[0,7],[3,21],[8,13],[10,2],[9,-13],[2,-8],[-1,-4],[-2,-4],[-2,-9],[-2,-11],[1,-8],[3,-7],[5,-6],[0,13],[3,9],[3,8],[2,10],[-1,12],[-7,13],[-2,10],[-3,8],[-1,4],[6,4],[3,5],[2,2],[4,-3],[5,-11],[4,-7],[5,-5],[8,-3],[-5,4],[-11,20],[-7,10],[-1,6],[2,9],[5,5],[15,7],[2,3],[2,9],[1,3],[2,2],[5,2],[2,3],[8,13],[8,5],[8,-3],[12,-17],[10,-8],[3,-6],[9,-27],[2,7],[1,9],[-1,9],[-2,8],[-2,2],[-6,6],[-7,12],[-2,2],[-1,1],[-2,1],[-1,4],[-1,4],[1,16],[-2,17],[-2,9],[-2,7],[7,15],[23,40],[8,11],[10,10],[7,14],[-1,19],[25,0],[2,3],[3,10],[1,9],[-1,2],[-3,5],[-7,4],[0,4],[13,7],[6,5],[10,18],[17,18],[11,17],[9,18],[1,4],[0,6],[1,7],[2,7],[3,5],[3,4],[3,3],[3,3],[-2,1],[-5,7],[5,4],[6,3],[17,1],[10,4],[10,8],[5,6],[3,4],[4,4],[7,-2],[2,2],[7,10],[5,-4],[4,-10],[6,-10],[13,-3],[16,8],[15,14],[17,26],[13,14],[5,8],[5,6],[18,15],[4,6],[1,5],[1,6],[1,5],[2,3],[7,7],[3,2],[5,4],[11,20],[5,5],[5,3],[21,21],[13,7],[8,6],[3,9],[2,5],[3,4],[3,4],[3,2],[7,1],[3,-1],[2,-1],[3,1],[3,4],[4,6],[11,5],[9,11],[12,-3],[6,1],[14,17],[6,3],[4,4],[10,23],[4,7],[1,7],[1,7],[5,11],[7,2],[4,5],[0,8],[2,13],[6,11],[6,8],[37,29],[3,9],[3,16],[6,3],[4,6],[2,9],[2,9],[3,3],[7,5],[7,8],[4,3],[4,1],[3,-1],[6,-6],[4,-1],[18,44],[-9,3],[-7,-12],[-6,-16],[-7,-7],[5,26],[10,17],[7,9],[3,9],[0,4],[20,2],[6,5],[2,4],[-2,5],[5,6],[4,9],[4,5],[6,-4],[1,10],[3,2],[2,5],[11,11],[25,13],[11,14],[9,2],[4,0],[3,1],[2,5],[4,6],[3,4],[10,8],[5,9],[10,23],[5,5],[5,6],[23,65],[4,6],[3,1],[5,4],[5,6],[2,7],[5,12],[2,5],[3,2],[5,4],[4,11],[7,21],[5,5],[20,64],[6,11],[3,9],[0,19],[2,13],[14,33],[6,27],[7,87],[5,22],[1,14],[3,14],[2,5],[9,18],[4,11],[3,13],[5,38],[3,11],[3,20],[6,22],[-2,7],[-2,-5],[-1,5],[-1,3],[0,28],[4,5],[17,-4],[19,5],[6,-1],[2,0],[13,10],[27,27],[7,13],[2,3],[4,2],[4,-2],[3,2],[2,14],[2,3],[3,3],[2,5],[4,9],[10,37],[2,3],[1,1],[1,2],[1,12],[0,2],[1,1],[1,2],[2,5],[2,6],[1,6],[0,7],[3,9],[7,10],[9,8],[5,4],[-1,5],[0,6],[1,5],[4,12],[0,7],[0,13],[1,14],[2,6],[2,-2],[1,1],[3,3],[3,2],[4,0],[-6,17],[-1,7],[-3,66],[1,7],[2,13],[1,6],[-2,31],[0,64],[-2,18],[0,11],[3,4],[3,1],[3,1],[2,4],[3,12],[7,14],[1,3],[0,7],[1,2],[2,3],[2,1],[2,0],[1,1],[1,3],[1,3],[1,4],[2,2],[1,0],[3,-1],[2,1],[4,5],[8,9],[3,2],[1,2],[15,18],[28,56],[12,19],[10,7],[-5,-20],[0,-6],[4,-3],[1,3],[2,5],[2,4],[5,-3],[2,1],[2,3],[2,3],[-1,9],[8,6],[1,5],[-3,6],[-1,2],[-4,-5],[-4,-4],[-4,-1],[-3,2],[10,23],[13,10],[55,5],[18,-4],[17,-8],[9,-1],[-7,-4],[-60,8],[-4,-2],[-3,-6],[-3,-13],[-3,-23],[-2,-11],[-4,-6],[2,-12],[-1,-5],[-4,0],[-5,1],[4,-16],[2,-2],[4,-3],[2,-3],[0,-10],[-4,-18],[2,-9],[2,3],[5,5],[4,-17],[10,-16],[24,-31],[3,-2],[4,3],[7,8],[1,1],[4,1],[1,2],[-1,7],[1,3],[4,7],[2,0],[3,-7],[4,9],[4,6],[4,-1],[3,-9],[2,-8],[0,-5],[-2,-12],[2,-5],[0,-5],[-4,-6],[5,-2],[4,1],[4,-2],[3,-9],[-1,-3],[-3,-26],[1,-11],[1,-5],[-1,-4],[-3,-8],[-6,-11],[-7,-9],[2,-3],[2,-1],[2,1],[3,3],[3,-30],[1,-9],[2,-9],[3,-8],[2,-8],[-1,-9],[-1,5],[-2,5],[-2,4],[-3,2],[-2,-21],[1,-6],[4,-7],[2,-4],[1,-7],[2,0],[3,7],[2,-7],[2,-24],[4,-16],[0,-5],[-2,-4],[-4,-3],[-1,-5],[2,-8],[4,-5],[7,-3],[12,0],[6,2],[6,4],[10,15],[10,9],[4,9],[11,24],[17,27],[7,5],[3,9],[3,2],[2,-2],[0,-5],[-1,-5],[-1,-5],[10,7],[5,5],[3,7],[5,14],[2,4],[2,0],[3,-2],[2,-1],[2,7],[-2,6],[2,9],[5,7],[4,3],[5,-3],[4,-8],[3,-11],[1,-11],[1,0],[2,6],[1,1],[2,-1],[1,-6],[4,4],[-4,14],[4,7],[7,4],[7,5],[2,7],[0,6],[-2,4],[-4,2],[-10,-12],[-2,1],[0,8],[0,4],[5,9],[2,3],[6,6],[3,3],[3,2],[14,4],[2,3],[6,15],[7,8],[-1,-27],[6,-3],[1,2],[9,14],[0,3],[1,8],[1,2],[1,1],[4,2],[14,13],[2,0],[3,0],[4,-1],[2,-3],[3,-16],[-5,-2],[-13,6],[2,-8],[-2,-4],[-3,-5],[-1,-8],[-3,2],[-3,0],[-3,-2],[-2,-4],[1,-3],[1,-3],[1,-1],[2,-1],[-4,-7],[-9,-5],[-9,-1],[-4,7],[-4,1],[-8,-2],[-5,-6],[7,-12],[-4,-4],[-3,-5],[1,-4],[4,-3],[-1,-7],[-1,-7],[-3,-6],[-2,-4],[2,-5],[3,-1],[3,3],[1,9],[7,15],[0,3],[18,6],[10,0],[7,-6],[-3,1],[-2,-1],[-2,-4],[-1,-6],[0,-5],[-3,0],[-2,2],[-2,1],[-2,1],[-2,2],[-1,0],[-1,-5],[0,-2],[2,-4],[0,-2],[0,-6],[-2,-2],[-1,0],[-3,2],[-2,-14],[-4,-4],[-4,-2],[-3,-9],[4,0],[5,-3],[5,-6],[1,-9],[0,-6],[-3,-13],[-1,-7],[-3,-7],[-8,-7],[-15,-7],[1,-7],[2,-4],[2,-3],[2,-2],[30,28],[10,5],[0,4],[-4,2],[-4,0],[-3,1],[-2,5],[12,2],[6,0],[4,-4],[4,-3],[7,1],[7,4],[4,4],[-2,2],[-4,6],[17,-2],[8,3],[6,11],[-32,-1],[-5,-3],[0,-2],[0,-2],[-1,-3],[-2,-1],[-2,0],[-1,1],[-2,1],[-1,2],[2,8],[-15,-10],[-7,0],[-3,18],[2,10],[2,5],[4,4],[3,5],[1,4],[-1,4],[0,3],[2,2],[3,0],[1,2],[1,4],[-1,6],[10,-4],[-3,-9],[-1,-9],[2,-18],[5,14],[2,11],[4,7],[8,0],[-5,12],[-1,5],[5,12],[0,9],[-2,7],[-5,0],[-2,-6],[-1,-9],[-2,-6],[-3,2],[-9,15],[-2,7],[10,0],[-2,8],[-1,6],[2,2],[4,-3],[1,12],[5,-3],[10,-17],[6,-7],[6,-2],[5,2],[4,11],[5,-8],[4,4],[3,9],[-1,11],[4,-2],[5,-7],[3,-9],[1,-8],[0,-7],[0,-5],[-1,-2],[-6,-1],[-1,-3],[0,-4],[1,-5],[5,-7],[5,3],[5,8],[6,12],[11,19],[4,2],[2,-8],[-2,-10],[-14,-37],[-2,-6],[0,-11],[-1,-5],[-1,1],[-4,-3],[-3,-5],[0,-1],[-1,-2],[-2,-2],[-3,0],[-1,6],[0,24],[-1,3],[-2,-5],[-2,-7],[-1,-6],[-4,3],[0,-5],[2,-7],[2,-6],[6,-11],[2,-5],[1,-9],[-1,-1],[-3,-2],[-1,-1],[0,2],[-6,-6],[-2,-4],[-2,-4],[-2,-3],[-3,-1],[-15,0],[-7,-4],[-5,-8],[-3,3],[-4,1],[-3,-2],[-2,-6],[-4,2],[-5,-2],[-5,-5],[-4,-6],[-1,-7],[7,1],[8,3],[3,3],[6,-3],[4,3],[4,5],[5,6],[3,0],[3,-2],[3,0],[5,6],[6,2],[3,2],[2,-6],[4,-5],[4,-4],[4,-2],[3,1],[4,6],[3,2],[8,1],[5,5],[12,14],[-4,-15],[-4,-14],[-2,-4],[-6,-8],[-2,-6],[-2,-6],[-1,-5],[-2,-5],[-8,-4],[-7,-8],[-4,-2],[1,6],[5,12],[1,4],[-3,2],[-6,-10],[-4,2],[2,8],[-8,-9],[-5,-14],[-4,-17],[-6,-16],[-6,-15],[-2,-7],[1,-11],[3,-18],[0,-9],[-2,-9],[6,-2],[3,-8],[1,-7],[-1,-4],[1,-2],[3,-3],[3,1],[2,12],[-2,3],[-2,12],[-1,9],[4,-5],[15,-43],[1,-8],[1,-8],[1,-6],[2,-11],[0,-6],[6,-32],[1,-4],[3,-11],[6,-5],[7,-2],[6,3],[-2,-14],[-20,-60],[-5,-12],[-32,-55],[-22,-37],[-8,-21],[-3,-14],[-2,-12],[0,-18],[0,-10],[-3,-6],[-2,-6],[-2,-7],[0,-3],[-6,-11],[-5,-16],[-5,-8],[-13,-13],[-6,-9],[-8,-23],[-2,-2],[-2,0],[-4,0],[-3,-10],[-1,-4],[-3,-4],[-3,-4],[-2,-5],[0,-9],[1,-6],[4,-9],[2,-5],[-2,-5],[-2,-4],[-5,12],[-3,3],[-5,2],[-3,-2],[-6,-9],[-3,-2],[-4,-4],[-14,-28],[-6,-23],[-4,-26],[-7,-22],[-12,-10],[0,-4],[2,0],[1,-1],[1,-2],[2,-1],[-22,-74],[-3,-20],[-4,-13],[-5,-10],[-9,-8],[0,-6],[1,-11],[0,-7],[0,-3],[0,-3],[-2,-8],[-3,-5],[-2,-2],[-2,-3],[-1,-8],[-1,-4],[-2,-4],[-12,-12],[-3,-2],[-8,-2],[-12,-9],[-1,-6],[-1,-7],[-1,-5],[-3,-4],[-13,-16],[-38,-15],[-9,-6],[-8,-15],[-21,-25],[-4,-11],[-6,-25],[-7,-16],[-1,-5],[1,-8]],[[98657,28711],[6,6],[2,-2],[2,-6],[3,-8],[-2,-3],[-4,-2],[-3,-5],[-1,-6],[3,-12],[0,-6],[-1,-4],[-1,-2],[-4,1],[-2,0],[-6,-3],[-5,-2],[-6,2],[-12,7],[3,5],[-7,10],[-2,1],[-4,-6],[-3,-1],[-1,7],[1,10],[2,7],[2,-1],[14,1],[3,-3],[3,-6],[3,-3],[5,6],[12,18]],[[98846,28780],[-2,-1],[-2,-1],[-2,-1],[-2,1],[-1,0],[-2,1],[-3,3],[-1,2],[0,2],[1,3],[0,1],[1,2],[0,2],[-1,2],[-2,3],[-2,1],[-2,2],[-1,6],[7,5],[2,-5],[3,-16],[3,0],[2,-2],[2,-4],[2,-6]],[[98569,28918],[4,4],[4,-3],[4,-7],[2,-8],[2,-14],[-1,-6],[-4,-2],[-10,0],[-3,2],[4,6],[0,6],[-2,15],[0,7]],[[98647,29046],[2,-4],[2,-5],[2,-6],[0,-8],[-2,-4],[-5,-3],[-4,-1],[-4,0],[-5,13],[4,11],[7,7],[3,0]],[[98760,28983],[5,-13],[2,-3],[-5,-20],[-3,-5],[-4,-1],[-2,5],[-1,7],[0,7],[-1,7],[-4,-2],[-4,-4],[-3,-1],[-2,7],[0,15],[-1,5],[-2,3],[-3,-1],[-6,-2],[1,5],[-1,4],[-1,3],[-2,4],[-6,-3],[-8,5],[-6,12],[-2,15],[7,-15],[2,-2],[3,5],[0,7],[-1,8],[1,7],[2,10],[-3,5],[-6,5],[-3,10],[8,0],[4,2],[3,6],[-6,10],[-1,12],[3,9],[8,2],[2,-2],[3,-4],[2,-5],[0,-8],[2,-3],[8,-11],[-6,-4],[1,-7],[4,-7],[7,-8],[7,-5],[3,-1],[3,-2],[-2,-6],[-2,-6],[-2,-5],[-1,-9],[-1,-6],[0,-7],[3,-10],[1,-2],[2,-2],[1,-1],[2,-1],[1,-1],[0,-2],[-1,-3],[1,-2]],[[99153,27014],[2,-11],[2,1],[1,-4],[5,-4],[7,-9],[2,-3],[4,-4],[4,0],[10,2],[9,-4],[-1,-8],[-5,-12],[-3,-14],[-1,-5],[-3,-4],[-4,-4],[-6,-4],[-2,-7],[-7,-39],[0,-2],[1,-3],[0,-4],[-1,-4],[-1,-1],[-4,-3],[-2,-2],[-3,-11],[-9,-52],[-6,-24],[-4,-10],[-1,-6],[-1,-7],[1,-15],[0,-4],[-1,-3],[-4,-9],[0,-3],[-5,-20],[-7,-22],[-11,-27],[-12,-18],[-2,-2],[-3,2],[-2,5],[-3,2],[-3,-3],[-7,-17],[-2,-9],[-1,-12],[2,5],[2,4],[2,2],[3,1],[-17,-59],[-4,-43],[-4,-13],[-7,-1],[-7,3],[-5,-3],[-17,-43],[-16,-27],[-2,-7],[-1,-6],[-1,-7],[-2,-6],[-5,-18],[-2,-2],[-5,-1],[-2,-2],[-1,-5],[-11,-45],[-6,-17],[-10,-39],[-5,-28],[-4,-12],[-14,-9],[-6,-11],[-4,-13],[-3,-13],[-9,-54],[-6,-22],[-28,-63],[-43,-57],[-10,-17],[-14,-16],[-16,-14],[-61,-77],[-19,-12],[-5,-6],[-9,-16],[-5,-3],[-21,-3],[-4,3],[-3,19],[-4,6],[1,9],[-1,6],[-2,6],[-2,7],[-1,9],[5,44],[-1,6],[-3,4],[-34,21],[-7,1],[-7,-3],[-7,-7],[-13,-24],[-3,-3],[-3,-1],[-4,2],[-6,7],[-4,6],[-1,5],[4,12],[-1,9],[-1,11],[-1,15],[2,12],[6,23],[2,16],[-4,13],[-7,3],[-8,-2],[-6,-4],[-4,-6],[-3,-6],[-3,-7],[-1,-10],[13,-5],[4,-6],[-2,-13],[-2,-5],[-3,-4],[-3,-1],[-3,4],[-3,2],[-3,-4],[-3,-6],[-4,-2],[-13,4],[-13,11],[-10,17],[-3,21],[3,11],[5,5],[13,4],[4,6],[11,22],[7,10],[7,25],[4,6],[6,4],[4,7],[3,0],[3,-15],[4,5],[1,5],[0,7],[-1,7],[-1,2],[-4,7],[-2,8],[2,4],[4,2],[4,11],[4,2],[3,2],[4,4],[3,6],[2,5],[2,7],[1,6],[1,15],[6,27],[2,9],[17,29],[15,42],[13,48],[8,40],[3,10],[2,12],[1,34],[2,13],[0,3],[0,4],[0,4],[1,1],[2,0],[2,1],[2,2],[-2,9],[-1,9],[0,9],[0,5],[3,10],[3,34],[1,24],[0,6],[-2,5],[-4,14],[-4,39],[-5,31],[-3,16],[-5,14],[-21,36],[-6,16],[-25,48],[-19,20],[-16,12],[-7,2],[-12,0],[-10,-1],[-23,14],[-17,3],[-7,3],[-7,7],[-29,46],[-6,11],[-16,42],[-11,20],[-14,13],[-15,8],[-47,12],[-16,9],[-38,47],[-10,18],[-9,23],[-5,28],[-2,27],[2,27],[4,28],[8,27],[12,17],[29,21],[71,74],[6,3],[37,-4],[14,7],[12,15],[33,58],[4,13],[3,21],[2,14],[1,8],[0,18],[1,5],[0,2],[5,2],[-2,10],[1,9],[1,9],[1,10],[1,102],[2,23],[10,37],[4,21],[2,23],[1,35],[3,21],[0,12],[-1,11],[-2,10],[-2,11],[2,8],[4,-4],[5,0],[5,1],[5,3],[0,-6],[1,-6],[2,-4],[2,-4],[2,0],[0,9],[4,-6],[4,-7],[4,-5],[5,5],[-2,3],[-6,10],[8,4],[8,-2],[8,1],[5,13],[-5,0],[-2,-1],[-2,-4],[-2,5],[0,12],[-5,8],[-8,4],[-5,-2],[-3,-7],[-1,-6],[-1,-4],[-5,-1],[-3,3],[0,9],[1,9],[1,7],[3,6],[2,2],[3,1],[3,3],[9,16],[5,6],[0,11],[-3,10],[-7,1],[-4,-10],[-3,-14],[-3,-7],[-8,9],[-1,11],[2,56],[8,28],[13,8],[16,1],[15,4],[-1,5],[-2,3],[-2,3],[-3,1],[4,5],[3,7],[1,8],[-2,9],[-12,-13],[-1,-2],[-1,-7],[-2,-3],[-1,1],[-1,2],[-2,1],[-9,-7],[-4,10],[-18,116],[-16,66],[-3,27],[0,6],[2,7],[3,4],[9,3],[3,4],[3,11],[2,13],[4,12],[7,4],[0,3],[-1,4],[-3,2],[-4,-3],[-3,-4],[-5,-6],[-2,-4],[-8,-24],[-4,-3],[-6,9],[-5,11],[-11,45],[-3,19],[-6,21],[-1,5],[-2,13],[-12,38],[-2,17],[5,0],[8,-3],[11,6],[4,-2],[3,-5],[-1,-7],[-3,-6],[0,-4],[14,-47],[1,-19],[4,-14],[5,-7],[3,14],[-4,15],[0,9],[3,5],[8,-3],[4,1],[4,5],[-6,0],[-14,4],[-5,4],[5,4],[15,22],[2,-1],[-1,-13],[12,24],[6,8],[7,2],[11,-21],[3,-4],[4,3],[1,6],[-2,9],[-2,7],[1,6],[-15,10],[-5,7],[-4,-2],[-3,7],[-2,12],[-2,8],[-7,-14],[-4,6],[-1,13],[3,7],[3,2],[4,4],[3,6],[1,7],[-18,5],[-19,-2],[-9,-4],[-8,-10],[-2,-7],[-2,-14],[-1,-7],[-3,-6],[-2,0],[-7,10],[-4,-10],[-6,-9],[-6,-4],[-6,5],[-3,10],[-11,68],[-6,55],[-5,27],[-15,45],[-38,83],[-8,27],[-2,28],[1,6],[1,6],[2,3],[4,1],[-3,-16],[-1,-8],[2,-9],[4,16],[3,6],[4,3],[4,-5],[4,-19],[6,-9],[6,-20],[4,-4],[4,-3],[3,-5],[0,-7],[-4,-5],[11,-8],[3,-1],[0,-1],[-3,-3],[-4,-3],[-4,-1],[3,-3],[1,-5],[0,-6],[-2,-6],[4,0],[2,-2],[6,-6],[0,4],[0,8],[0,4],[3,-8],[2,-14],[3,-6],[3,12],[3,-1],[1,7],[1,9],[1,9],[2,4],[4,7],[2,5],[-5,-2],[-1,-2],[-3,12],[3,26],[-2,7],[-3,-9],[-1,5],[0,31],[0,2],[1,3],[5,9],[-2,6],[-4,7],[-2,6],[1,7],[6,9],[0,4],[-9,9],[-2,0],[-4,-10],[-4,-6],[-2,-2],[-17,-3],[-8,4],[-7,10],[-1,19],[3,-4],[3,14],[3,2],[3,-5],[5,-3],[12,2],[5,3],[5,5],[4,8],[4,4],[8,7],[7,12],[3,2],[2,0],[2,2],[1,8],[-1,3],[-1,0],[-1,1],[-1,4],[-3,-5],[-3,-4],[-4,-2],[-1,0],[-3,-1],[-3,-2],[-6,-11],[-3,-3],[-3,7],[-4,-6],[-6,-9],[-5,-4],[-7,2],[-4,3],[-2,3],[-1,10],[2,3],[9,-5],[4,-7],[2,-1],[2,15],[4,19],[7,15],[1,6],[1,4],[0,5],[1,9],[5,-4],[3,1],[1,6],[-3,9],[-3,3],[-10,5],[1,-18],[-4,-20],[-6,-16],[-8,-7],[4,10],[1,2],[-3,2],[-3,-1],[-2,0],[-1,6],[-1,9],[-2,2],[-2,-2],[-2,1],[-4,2],[-1,0],[-1,2],[0,8],[0,6],[1,7],[2,11],[-4,0],[-3,-4],[-6,-12],[1,16],[-4,1],[-12,-17],[3,-5],[0,-13],[4,-2],[5,0],[3,-1],[3,-4],[3,-7],[-2,-9],[0,-6],[3,-2],[2,1],[1,3],[2,6],[3,0],[3,-5],[5,-13],[-10,-5],[-2,-1],[0,-6],[-2,-3],[-2,-1],[-3,0],[-2,2],[-4,8],[-3,2],[-3,1],[-1,2],[-7,17],[-3,9],[-3,8],[-4,8],[-6,2],[-13,0],[-2,4],[-2,6],[-4,7],[-5,7],[-4,2],[-4,5],[-2,11],[0,23],[-2,9],[-8,14],[-3,18],[-4,7],[-8,11],[10,16],[3,9],[-2,15],[-1,4],[-3,5],[-3,4],[-2,0],[-1,-8],[2,-6],[3,-4],[1,-3],[-1,-13],[-11,-10],[-1,-9],[14,-35],[2,-6],[6,-6],[2,-14],[2,-15],[2,-11],[2,-6],[3,-13],[2,-6],[3,-3],[4,-3],[3,-4],[2,-11],[3,-5],[2,-3],[3,-4],[15,-40],[3,-4],[5,1],[4,0],[2,-7],[-6,-5],[3,-7],[6,-10],[3,-13],[-3,-12],[-5,-8],[-13,-10],[-13,-1],[-7,21],[-9,57],[-36,85],[-10,35],[-63,146],[-62,147],[-2,11],[2,10],[9,21],[2,10],[1,13],[2,14],[3,8],[6,-5],[1,6],[1,2],[2,-5],[3,-7],[3,-5],[4,-3],[1,4],[-1,21],[1,8],[7,-21],[2,10],[0,12],[1,11],[5,8],[3,0],[1,-3],[2,-1],[4,4],[1,4],[2,12],[4,14],[-10,-6],[-3,2],[0,7],[0,5],[-2,2],[-3,1],[-1,-4],[0,-21],[-3,9],[-4,28],[-5,-9],[1,-11],[3,-11],[2,-10],[-1,-10],[-5,-6],[-5,1],[-7,8],[-3,0],[-1,-2],[2,-12],[-2,-2],[-3,-2],[-2,-1],[-3,-3],[-1,2],[-4,9],[-2,0],[-3,-3],[-5,-8],[2,-8],[-2,-4],[-3,-3],[-3,-5],[0,-3],[1,-3],[1,-2],[-1,-44],[-1,-5],[-2,-1],[-3,4],[-23,58],[-4,16],[2,10],[9,19],[-2,0],[-4,0],[-1,0],[5,11],[2,6],[2,7],[-8,-2],[-6,-10],[-3,-13],[-2,-15],[-3,4],[-9,18],[-1,6],[2,5],[10,13],[3,7],[-4,2],[-8,-8],[-5,-2],[-5,2],[-4,6],[-6,15],[-12,21],[-2,8],[1,11],[4,4],[5,-3],[5,-4],[9,22],[6,28],[1,30],[-4,30],[-9,37],[-4,10],[-16,29],[-5,13],[-9,39],[-4,6],[-5,4],[-56,132],[-11,17],[-24,25],[3,5],[2,4],[3,11],[-1,5],[0,10],[1,6],[5,-6],[6,-6],[16,-1],[7,-8],[4,7],[8,3],[9,10],[31,-5],[5,2],[3,5],[3,5],[3,2],[5,-8],[-8,-9],[-3,-12],[1,-32],[-1,-8],[-1,-5],[-2,-2],[-5,-1],[-1,3],[-1,7],[-2,7],[-4,3],[0,3],[1,7],[1,3],[-6,3],[-2,-1],[-2,-15],[-1,-13],[-2,-4],[-4,5],[-1,-6],[-1,-4],[-2,-4],[-2,-2],[3,-6],[8,-11],[1,6],[2,6],[2,4],[3,1],[-2,-9],[-1,-4],[-1,-4],[3,-4],[3,0],[2,3],[2,6],[1,-7],[1,-8],[0,-34],[1,-4],[2,4],[4,14],[0,17],[-1,17],[-5,13],[8,-7],[4,-29],[2,-34],[4,-24],[9,-18],[11,-18],[9,-20],[3,-24],[-14,28],[-5,8],[1,-21],[11,-21],[37,-38],[0,-7],[-6,-13],[-2,-5],[-1,-6],[0,-24],[1,-3],[1,0],[4,0],[9,-5],[2,0],[2,6],[1,7],[1,6],[4,2],[4,8],[-1,16],[-4,29],[2,13],[5,4],[7,2],[7,7],[1,8],[0,7],[-1,6],[0,3],[3,6],[2,0],[2,-4],[1,-8],[0,-5],[0,-5],[-2,-10],[9,7],[3,2],[-2,-7],[1,-4],[4,-10],[-11,-8],[-12,0],[-2,-2],[-2,-10],[1,-11],[3,-10],[3,-8],[3,-9],[5,-8],[5,-5],[7,-2],[13,3],[5,-4],[5,-12],[4,10],[0,3],[-3,6],[-3,6],[-3,7],[0,9],[2,11],[4,0],[4,-6],[3,-9],[3,6],[4,1],[3,-3],[3,-13],[4,-3],[8,0],[1,1],[1,3],[1,3],[2,1],[3,-1],[1,-4],[-1,-3],[1,-4],[2,-4],[0,-4],[1,-3],[3,-1],[2,-1],[2,-1],[3,-2],[-3,-4],[-2,-5],[-1,-6],[-1,-6],[-6,-8],[-3,-5],[0,-5],[10,-14],[6,1],[1,2],[-1,4],[0,5],[6,20],[0,4],[0,9],[0,3],[2,3],[5,2],[5,4],[4,1],[8,-1],[-1,-3],[3,-7],[4,-10],[12,-15],[4,-10],[2,-14],[4,-11],[8,-3],[16,4],[7,-3],[7,-9],[5,-12],[2,-15],[-11,-6],[-3,2],[-1,5],[0,7],[-2,6],[-1,-1],[-2,-3],[-3,0],[-4,8],[-6,-6],[-3,-4],[3,-4],[5,-14],[-10,-2],[0,-8],[4,-6],[6,4],[3,-4],[2,-1],[4,1],[2,4],[4,-9],[-1,-8],[-2,-8],[-1,-7],[2,-8],[11,-19],[1,-5],[1,-7],[1,-16],[0,-2],[2,7],[2,9],[1,8],[6,-5],[2,-2],[4,-1],[-1,3],[-1,6],[0,3],[4,0],[2,-3],[2,-3],[2,-2],[3,2],[0,6],[-1,6],[-2,2],[-6,2],[-8,3],[-7,6],[-3,10],[2,-4],[4,6],[7,1],[14,-3],[-1,6],[-1,2],[3,0],[3,-1],[3,-1],[0,-2],[3,3],[1,2],[0,3],[1,5],[8,15],[8,12],[3,-15],[-3,-12],[-4,-12],[-1,-13],[2,-14],[5,-7],[6,-1],[6,1],[0,-4],[-3,-8],[9,-18],[-4,-6],[-2,1],[-8,15],[-9,12],[-2,4],[4,-13],[11,-40],[6,-8],[5,-1],[6,-3],[0,1],[0,2],[1,1],[1,0],[1,-2],[1,-5],[1,-1],[2,-5],[7,-20],[1,-8],[-11,-2],[2,-7],[14,-21],[14,-25],[2,-14],[-4,-20],[-4,4],[-12,4],[-5,0],[-3,-3],[4,-7],[11,-10],[-2,0],[-4,-4],[7,-3],[3,-2],[2,-5],[-1,-6],[-3,-5],[-3,-2],[-3,-2],[16,-17],[3,-7],[0,-7],[-1,-14],[0,-5],[7,-22],[-8,-4],[-5,6],[-6,10],[-6,7],[2,11],[-8,5],[0,9],[-4,-1],[-7,-5],[-4,-2],[-2,1],[-3,6],[-2,1],[-1,-2],[-2,-8],[-1,-2],[-5,0],[0,1],[1,5],[0,10],[-1,9],[-1,7],[-3,7],[-3,6],[-1,-13],[1,-32],[-1,-10],[-1,-6],[0,-8],[0,-7],[2,-5],[5,-1],[2,5],[2,7],[2,7],[5,1],[18,-4],[6,-3],[5,-11],[-1,-11],[-5,-12],[-6,-11],[4,-8],[1,-15],[0,-15],[0,-11],[4,-7],[12,-16],[5,-5],[4,-1],[7,0],[3,-3],[3,-8],[-1,-5],[-1,-5],[-1,-7],[1,-14],[3,-7],[4,-6],[5,-9],[16,-42],[9,-17],[11,-14],[7,-5],[1,-3],[-2,-8],[0,-2],[1,-1],[1,-1],[-1,-2],[-1,-1],[-1,0],[-1,2],[0,1],[-1,-2],[-1,1],[-1,-1],[-1,-7],[2,-10],[7,-5],[7,-2],[7,-3],[-8,-3],[-23,2],[-5,-1],[1,-8],[3,-25],[5,-15],[0,-11],[0,-10],[-1,-10],[-6,28],[-4,12],[-8,5],[5,-26],[0,-10],[-6,-1],[0,-4],[2,-1],[3,-3],[2,-3],[2,-5],[-2,-6],[-6,-6],[-1,-4],[-1,-8],[4,-11],[0,-7],[0,-13],[1,-1],[4,-7],[3,-3],[4,-2],[7,-1],[12,8],[3,0],[3,-4],[-1,-3],[-13,-13],[-7,-4],[-4,0],[-12,8],[6,-10],[4,-15],[17,-89],[-6,3],[-4,6],[-4,2],[-7,-7],[-2,3],[-1,4],[0,4],[1,5],[-5,3],[-4,16],[-4,0],[-10,-9],[-4,-5],[-5,-9],[0,-4],[2,0],[10,2],[5,-2],[-3,-4],[-4,-5],[-2,-4],[1,-5],[5,-5],[1,-2],[0,-3],[0,-25],[1,-8],[4,-4],[2,3],[0,8],[0,8],[1,6],[2,-5],[2,7],[2,6],[3,4],[4,4],[4,1],[13,-5],[18,0],[6,-7],[-1,-18],[-3,-7],[-3,-4],[-1,-5],[1,-11],[2,-8],[1,-4],[2,1],[3,6],[7,65],[2,0],[6,-28],[2,-13],[0,-16],[6,3],[7,0],[4,5],[-5,14],[-1,10],[7,3],[8,-2],[6,-4],[4,-13],[-3,-27],[3,-11],[4,-2],[4,3],[3,3],[5,3],[6,8],[2,-1],[1,-3],[2,-1],[9,8],[2,1],[3,-2],[6,-9],[4,-2],[2,-2],[10,-21],[2,-6],[1,-7],[1,-9],[0,-13],[-4,-41],[1,-14],[4,-13],[4,-11],[4,-9],[10,-10],[13,0],[12,5],[11,9],[2,4],[1,4],[2,3],[3,1],[3,-3],[1,-6],[-1,-13],[2,-12],[4,-7],[4,-1],[6,5],[-5,3],[-3,6],[-1,9],[-2,18],[-2,16],[-1,8],[-5,17],[0,9],[0,31],[-1,8],[-2,4],[-6,37],[-2,7],[-3,7],[-3,6],[-7,8],[-3,6],[-2,6],[-1,6],[-1,6],[-4,6],[6,4],[7,-3],[6,1],[4,10],[-9,-1],[-4,1],[-4,4],[3,2],[4,2],[3,2],[1,6],[-2,0],[-2,2],[-2,1],[-1,2],[14,6],[4,7],[-1,15],[-4,-5],[-2,-3],[-2,6],[-1,6],[0,6],[1,6],[-6,18],[2,15],[4,15],[-2,13],[-2,2],[-3,1],[-3,2],[-1,5],[-1,2],[-5,12],[-5,5],[-10,6],[-5,8],[-2,8],[-2,9],[0,23],[2,9],[5,0],[7,-3],[9,4],[2,-3],[1,-5],[2,-5],[1,-5],[1,-2],[1,-2],[2,-2],[6,-9],[3,-1],[7,14],[5,-11],[3,-15],[0,-15],[-6,-12],[5,-8],[7,0],[5,-3],[2,-15],[1,-15],[-1,-8],[-3,2],[-4,6],[-2,-2],[-1,-5],[1,-7],[3,-2],[8,2],[4,-2],[1,-6],[-1,-6],[-1,-6],[-1,-6],[2,-17],[3,-2],[12,15],[-4,3],[-2,1],[2,5],[3,2],[4,-1],[3,-4],[4,-3],[4,4],[7,9],[5,3],[4,1],[3,-3],[4,-7],[3,-1],[4,4],[3,1],[0,-10],[-1,-8],[-3,-2],[-8,2],[-1,-3],[-6,-18],[-3,-4],[-7,-5],[-4,-5],[-4,-10],[-4,-12],[3,-5],[0,-4],[-1,-5],[0,-4],[3,-6],[4,-3],[2,0],[0,6],[4,7],[-2,18],[4,8],[6,-5],[11,4],[6,-9],[1,-7],[0,-15],[1,-6],[5,-10],[1,-5],[1,-7],[2,-29],[-1,-19],[0,-3],[0,-6],[-1,-6],[-3,-7],[-1,-6],[2,-4],[3,3],[3,7],[2,4],[5,-11],[-1,-15],[-4,-15],[-5,-13],[0,-5],[2,-2],[4,-2],[3,-2],[0,-7],[0,-17],[1,-8],[-2,3],[-2,5],[-2,6],[-1,6],[-2,0],[1,-15],[2,-12],[1,-11],[-4,-7],[9,-7],[3,-6],[3,-11],[3,-23],[1,-23],[1,-10],[5,-18],[1,-9],[1,-4],[4,-5],[1,-5],[0,-8],[-1,1],[-2,4],[-3,-1],[-2,-10],[3,-3],[11,-3],[4,-4],[5,-5],[5,-7],[4,-7],[3,-7],[4,-18],[2,-7],[8,-13],[4,-7],[1,-10],[-10,13],[-3,3],[-5,0],[-4,-1],[-4,2],[-5,7],[3,3],[9,5],[-10,11],[-4,8],[-4,7],[-6,6],[-7,1],[-13,-4],[2,-4],[2,-6],[2,-3],[-1,-3],[-1,-4],[-1,-5],[1,-4],[2,-4],[1,-1],[2,1],[1,0],[1,-2],[3,-1],[1,-1],[1,-3],[-1,-4],[-1,-3],[-1,-2],[2,-14],[0,-2],[2,-3],[1,-1],[5,-1],[2,2],[2,2],[1,3],[1,2],[4,-5],[3,-7],[1,-8],[3,-9],[4,5],[3,-3],[3,-7],[2,-3],[4,3],[2,6],[2,5],[5,-2],[4,-4],[1,-5],[1,-7],[-1,-10],[2,-6],[3,1],[5,2],[4,1],[-4,28],[-6,18],[-2,8],[4,3],[6,-8],[9,-30],[7,-7],[8,-3],[17,-14],[8,-3],[3,-3],[6,-11],[4,-3],[8,0],[2,-2],[1,-4],[2,-2],[3,4],[55,-68],[12,-9],[17,-5],[17,-11],[19,-5],[15,-16],[26,-6],[10,-10],[-16,0],[-3,-1],[2,-4],[13,-15],[3,-3],[4,-1],[4,3],[0,7],[-1,8],[-2,6],[5,2],[3,-2],[2,-5],[3,-3],[19,0],[0,-1],[3,-9],[2,-2],[1,1],[1,2],[2,1],[1,2],[0,4],[0,4],[2,2],[3,1],[8,3],[25,3],[7,7],[5,8],[21,23],[9,12],[3,6],[1,6],[0,15],[4,14],[1,6],[2,3],[12,11],[4,11],[3,21],[3,11],[4,8],[2,5],[1,7],[2,4],[28,14],[5,0],[5,3],[4,7],[6,17],[5,4],[12,2],[5,4],[4,7],[1,5],[-1,7],[-4,9],[11,-4],[69,-5],[6,-4],[4,-5],[-4,-6],[0,-4],[3,-3],[5,-9],[3,-4],[5,-3],[5,-2],[9,1],[4,-2],[5,-9],[4,-2],[8,1],[4,-1],[4,-4],[4,-6],[6,-10],[5,-12],[-1,-10],[-2,-6],[-5,-15],[-11,-18],[-5,-28],[-4,-14],[-10,-12],[-4,-13],[-8,-37],[-3,-10],[-5,-10],[-2,-6],[-1,-6],[2,-14],[4,-12],[3,-13],[-1,-16],[-5,-7],[-5,-8],[-3,-9],[7,-25],[-1,-12],[-3,-11],[-5,-11],[-1,-12],[4,-12],[5,-10],[3,-8],[-1,-7],[-2,-5],[-5,-8],[-1,-8],[-1,-13],[-2,-8],[4,-2],[3,-4],[1,-6],[0,-9],[-2,-5],[-10,-9],[-1,-5],[0,-38],[-2,-5],[-31,-59],[-28,-41],[-5,-5],[-11,17],[-7,3],[-7,-3],[-6,-7],[-3,-2],[-1,1],[-1,0],[-1,-7],[0,-4],[1,-6],[1,-3],[5,-9],[2,-6],[0,-7],[-5,-15],[-2,-13],[0,-31],[-3,-35],[-4,-17],[-1,-24],[-2,-9],[3,-12],[-2,-9],[-4,-9],[-2,-11],[19,-4],[9,-8],[4,-15],[-15,-25],[-7,-30],[-2,-19],[-3,-7],[-5,-6],[-4,-8],[-8,37],[-2,19],[0,17],[2,10],[2,10],[3,8],[2,7],[0,7],[-4,4],[-5,0],[-4,-9],[-2,2],[-9,10],[-4,2],[-44,4],[-45,2],[-3,2],[-3,4],[-3,1],[-7,-11],[-51,-41],[-38,-31],[-4,-7],[-1,-13],[-3,-13],[-3,-12],[-7,-15],[-10,-18],[-7,-8],[-1,-2],[-3,-17],[-3,-7],[-2,-7],[-1,-7],[0,-11],[1,-10],[2,-5],[3,-4],[3,-7],[2,-12],[2,-55],[1,-11]],[[95550,38597],[1,-6],[0,-5],[-1,-5],[-1,-5],[-2,9],[-5,-3],[-2,4],[-3,15],[0,4],[2,5],[2,14],[2,1],[2,-4],[3,-17],[2,-7]],[[96533,37104],[3,-11],[3,-6],[3,-9],[0,-15],[-3,5],[-4,14],[-2,1],[-2,-4],[0,-8],[2,-14],[-4,-13],[-9,2],[-16,13],[2,15],[0,34],[2,12],[5,2],[7,-3],[8,-7],[5,-8]],[[96333,37205],[3,2],[3,0],[3,-4],[2,-6],[0,-7],[0,-4],[-2,-1],[-2,4],[-2,-4],[-1,-2],[-4,-3],[0,-3],[5,-2],[0,-4],[-3,-4],[-2,0],[-2,1],[-4,2],[-3,4],[2,8],[2,7],[1,6],[0,5],[4,5]],[[96704,37777],[2,-12],[0,-21],[-2,-23],[-4,-17],[2,-27],[-1,-12],[-4,-6],[-3,-1],[-10,-6],[-8,-9],[-12,2],[-10,10],[1,17],[-6,5],[-8,3],[-7,1],[-6,-5],[-1,1],[0,2],[-1,2],[0,3],[3,4],[3,6],[3,8],[1,10],[-2,5],[-6,14],[-2,6],[-2,10],[-1,16],[-1,10],[-2,10],[-8,23],[5,4],[3,2],[4,-1],[4,-1],[7,-7],[4,-2],[5,8],[18,25],[1,-7],[-5,-16],[-2,-11],[2,-10],[3,-11],[4,-9],[3,-5],[8,-4],[10,2],[10,7],[8,7]],[[96228,38199],[2,1],[8,-1],[-2,-5],[-3,-3],[-7,-4],[-1,3],[-2,2],[-2,2],[-2,1],[2,3],[2,1],[2,1],[3,-1]],[[96508,38017],[3,-6],[5,-8],[1,-8],[-9,-6],[-2,-9],[0,-22],[0,-12],[-2,-8],[-3,-5],[-5,-6],[-4,4],[-7,0],[-5,5],[-3,18],[-2,2],[-4,2],[-5,2],[-2,6],[0,10],[-2,3],[-25,5],[-8,6],[-8,12],[-6,15],[-1,4],[0,5],[-2,5],[-5,4],[-2,6],[0,8],[2,8],[-11,20],[-2,8],[17,-2],[5,2],[6,6],[3,7],[5,16],[8,20],[3,12],[-2,13],[-3,4],[-15,12],[-21,-5],[0,6],[1,13],[3,12],[6,6],[9,3],[2,-1],[2,-3],[2,-2],[3,-1],[3,0],[3,2],[2,4],[1,6],[1,6],[9,6],[21,-23],[4,-1],[2,-10],[-3,-11],[-3,-10],[-2,-11],[0,-7],[2,-16],[4,-16],[-1,-7],[-4,-12],[-1,-7],[1,-5],[2,-2],[3,-2],[3,-3],[3,-6],[2,-3],[7,-5],[3,-1],[3,0],[2,-1],[1,-7],[1,-3],[2,-6],[1,-3],[-3,-10],[-1,-6],[0,-5],[3,-6],[3,-3],[3,0],[3,-2]],[[96287,38374],[3,-5],[7,-8],[2,-4],[-2,-6],[-3,-2],[-8,0],[-3,-2],[-3,-4],[-2,-6],[0,-6],[-1,-2],[-4,-22],[-2,-7],[0,-9],[1,-17],[1,-4],[4,0],[8,2],[-11,-41],[-4,-11],[-4,-6],[-7,-6],[-6,-4],[-6,-1],[-2,4],[-2,4],[5,4],[4,6],[7,14],[4,13],[2,8],[1,10],[0,36],[1,9],[3,8],[4,12],[3,12],[1,11],[-1,11],[-6,15],[-2,5],[-1,-1],[-2,-2],[1,5],[3,6],[4,4],[4,1],[3,-3],[2,-7],[2,-8],[2,-6]],[[96397,37300],[0,-5],[-2,-1],[-2,0],[-1,-4],[0,-4],[2,-4],[1,-5],[0,-5],[-1,-4],[-2,-14],[-2,-8],[-2,-4],[-2,-5],[0,3],[-1,3],[-2,-2],[-1,-3],[-4,-3],[-1,-2],[0,-3],[2,-5],[-9,-14],[-5,-4],[-7,2],[5,4],[3,3],[1,5],[-4,0],[-2,-1],[-2,5],[-2,8],[-2,8],[-1,2],[-1,7],[-2,-4],[-1,-8],[-1,-5],[-2,3],[-2,5],[-1,7],[-2,6],[2,0],[2,3],[-2,8],[-3,-2],[-2,-8],[-1,-17],[0,-3],[0,-3],[1,-7],[0,-1],[5,-7],[-3,-2],[-3,2],[-4,2],[-1,0],[-1,-3],[-2,-3],[-2,-3],[-2,-1],[-7,3],[-3,7],[0,8],[5,6],[0,4],[-5,-1],[-6,1],[-4,6],[2,11],[-2,3],[-4,-3],[-6,5],[-6,9],[-3,8],[-1,1],[-6,-6],[-3,-1],[-3,1],[-6,6],[-3,3],[-1,6],[2,3],[1,4],[-3,5],[-2,2],[-8,3],[-3,-1],[-3,-9],[-2,-13],[-3,-9],[-5,3],[-1,-3],[0,-1],[-1,0],[2,-11],[-3,-3],[-4,3],[0,5],[1,5],[0,15],[2,6],[0,4],[-4,0],[-4,1],[-3,5],[-2,7],[9,-1],[4,2],[2,6],[-5,1],[-2,5],[1,19],[-3,-1],[-6,2],[-2,-1],[-1,-4],[-1,-10],[-1,-3],[-4,-1],[-1,-3],[-1,-4],[-2,-6],[-2,-2],[-2,4],[1,6],[2,6],[-3,4],[-6,13],[0,4],[1,2],[1,2],[1,3],[0,5],[-1,0],[-3,-6],[-7,4],[0,-6],[-5,-4],[-5,3],[-4,5],[-5,0],[0,11],[-3,9],[-4,6],[-3,2],[-4,4],[-3,7],[-3,1],[-5,-12],[-3,4],[-3,4],[2,3],[0,4],[1,4],[0,6],[1,0],[3,-5],[3,-3],[2,2],[0,10],[-2,5],[-5,5],[-2,6],[7,0],[3,-1],[3,-3],[0,6],[-2,4],[-2,2],[-3,0],[-1,4],[0,8],[1,7],[1,1],[-2,14],[-4,5],[-9,6],[-4,-4],[-1,2],[0,5],[3,5],[-3,3],[-2,4],[-1,6],[0,7],[-4,-5],[-2,-6],[0,-15],[-1,-3],[-3,0],[-3,1],[-2,0],[1,-3],[0,-7],[-2,-5],[-4,5],[-4,11],[-2,5],[-9,7],[-6,19],[-4,4],[-2,2],[-2,2],[-3,6],[-2,2],[-1,-1],[-2,-2],[-2,-1],[-8,1],[-2,3],[-1,9],[6,-5],[-2,5],[-8,16],[0,4],[1,6],[1,4],[-3,2],[-3,-1],[-1,-4],[0,-5],[1,-6],[-4,3],[-1,6],[0,9],[-1,10],[-2,6],[-3,5],[-2,7],[0,11],[-2,0],[-2,-9],[-3,-8],[-4,-5],[-4,-3],[0,12],[0,7],[-3,3],[-5,-1],[0,-2],[0,-2],[0,-3],[-2,-2],[-1,1],[-37,37],[-9,15],[3,12],[0,5],[-4,-3],[-2,1],[0,4],[4,2],[-4,6],[-5,-2],[-4,-5],[-5,-3],[-5,2],[-29,26],[-4,6],[-2,8],[-3,19],[0,3],[-6,1],[-3,4],[-8,12],[-2,1],[-2,0],[-2,1],[-1,4],[-4,8],[-1,2],[-10,37],[-1,5],[1,3],[0,3],[-2,3],[0,1],[-2,0],[-3,-2],[-1,-1],[-1,-9],[-3,-2],[-2,2],[-1,9],[-3,-4],[-2,-3],[-2,0],[-3,3],[5,11],[-1,10],[-4,5],[-6,-2],[2,9],[-1,6],[-7,9],[-2,-8],[1,-12],[-2,-8],[-3,-4],[-3,2],[-2,4],[-2,6],[1,5],[0,5],[1,5],[2,5],[-2,5],[-2,2],[-2,0],[-3,3],[-1,4],[-2,7],[-21,50],[-1,8],[0,12],[0,10],[-1,10],[-2,7],[-5,-4],[0,8],[1,1],[1,3],[0,4],[-2,0],[-1,1],[-3,3],[2,5],[-1,2],[-2,0],[-3,-3],[0,-7],[-4,-1],[-2,5],[-1,9],[-2,1],[-3,-2],[-3,-3],[2,-6],[-2,-4],[-2,-4],[-5,28],[-3,11],[-5,6],[5,7],[-2,6],[-6,4],[-5,7],[5,1],[2,4],[0,5],[-1,6],[-3,4],[-4,1],[-2,3],[-1,9],[-1,0],[-5,-6],[-4,4],[-7,14],[-2,1],[-6,1],[-3,2],[-1,3],[-4,13],[-6,3],[-5,6],[-12,25],[-8,11],[-4,8],[-3,9],[2,1],[4,-2],[4,4],[3,9],[-2,8],[-4,5],[-5,2],[-4,6],[-6,28],[-5,7],[-9,40],[-1,-2],[-2,0],[-1,-1],[-1,-1],[-3,11],[-18,23],[-4,13],[-3,24],[-1,8],[-1,10],[-4,5],[-3,3],[-3,5],[-1,12],[3,2],[7,-6],[3,6],[1,10],[0,19],[-1,4],[-3,7],[-3,8],[-4,3],[-13,1],[-3,3],[2,8],[0,8],[-2,4],[-4,-4],[2,-6],[-2,-6],[-3,-6],[-2,-2],[-4,2],[-2,6],[0,5],[-3,3],[-4,6],[1,12],[5,8],[9,-5],[2,7],[-1,7],[-5,13],[3,3],[2,6],[1,8],[-2,8],[-4,6],[-4,-1],[-3,-4],[-5,-1],[0,4],[2,3],[1,2],[1,7],[-4,3],[-1,5],[0,8],[1,8],[3,0],[3,0],[6,-6],[5,-9],[4,-10],[3,-14],[3,-4],[6,-5],[20,-49],[5,-8],[12,-15],[6,-2],[6,5],[2,0],[4,-16],[3,-7],[5,-1],[-3,7],[-4,20],[-2,20],[1,4],[2,0],[50,-38],[9,-16],[15,-38],[4,-8],[5,-8],[6,-6],[5,-2],[9,-16],[3,-3],[8,-6],[4,-7],[8,-21],[4,-4],[3,-5],[10,-28],[14,-26],[3,0],[8,-11],[4,-8],[-1,-8],[5,-7],[11,0],[5,-9],[5,-4],[10,-16],[30,-12],[1,-1],[2,-6],[2,-2],[0,1],[2,2],[2,2],[1,0],[4,-2],[1,-2],[1,-3],[2,-5],[7,-11],[2,-8],[-1,-9],[2,-25],[3,-8],[4,-6],[5,-5],[3,-6],[2,-9],[2,-2],[15,-4],[5,-4],[1,-3],[-1,-19],[-2,-14],[-1,-3],[-1,-5],[1,-4],[1,-3],[0,-4],[1,-11],[3,-6],[9,-14],[8,-8],[3,-6],[4,-8],[2,-2],[7,-1],[2,-2],[1,-3],[-1,-7],[1,2],[1,0],[1,0],[1,3],[8,-15],[4,-7],[1,-7],[1,-2],[1,-1],[1,-5],[-4,0],[-5,2],[-4,4],[-3,6],[1,-6],[2,-6],[4,-6],[3,-2],[3,-4],[2,-9],[2,-9],[1,-7],[7,-5],[17,-9],[5,-10],[8,4],[7,-8],[6,-14],[2,-14],[5,2],[3,-25],[5,-10],[-3,12],[0,4],[1,5],[3,3],[3,0],[2,-4],[2,-7],[1,5],[1,6],[-1,7],[-3,6],[5,-3],[4,-10],[9,-36],[2,-10],[-1,-5],[-6,3],[2,-6],[11,-14],[-1,-6],[2,0],[3,2],[2,2],[-1,7],[-1,6],[-2,4],[-2,5],[-2,14],[0,11],[2,4],[5,-6],[9,-19],[3,-2],[7,-1],[2,-3],[1,-4],[-2,-2],[-3,-1],[0,-3],[1,-2],[2,-2],[2,0],[1,-7],[0,-11],[1,-7],[6,7],[6,0],[4,-5],[14,-26],[2,-2],[4,-2],[1,-2],[3,-10],[10,-13],[10,-10],[22,-14],[0,-4],[-8,0],[0,-4],[2,-2],[1,-4],[0,-3],[1,-3],[2,-2],[4,-1],[9,-5],[4,-4],[4,-11],[10,-16],[2,-4],[0,-11],[2,-5],[2,-2],[5,-4],[-2,-4],[6,-11],[12,-28],[6,-6],[5,-7],[7,-16],[7,-9],[3,8],[9,-13],[4,-3],[0,-4],[-2,-3],[-2,-3],[-3,-1],[-3,-1],[0,-5],[3,-2],[8,2],[3,-1],[3,-3],[3,-2],[1,3],[2,-11],[3,-6],[5,-2],[6,-2],[16,-8],[4,-4],[14,-22],[3,-8],[3,-11],[0,-5],[0,-15],[-2,-3],[-1,-5],[-1,-3],[5,-1],[2,-3],[2,-6],[4,-12],[10,-15],[1,-7]],[[95617,38544],[4,-12],[-5,2],[-8,9],[-6,9],[-2,11],[0,26],[2,0],[12,-33],[3,-12]],[[95466,38779],[4,-10],[0,-4],[-7,-14],[-8,38],[-1,13],[0,24],[-2,9],[-4,6],[2,7],[4,-5],[3,-8],[6,-28],[2,-19],[1,-9]],[[97594,37237],[1,-1],[-1,-2],[-1,1],[1,2]],[[62292,38403],[-1,19],[3,21],[20,82],[6,19],[17,32],[7,17],[5,18],[4,23],[2,18],[0,25],[-2,20],[-5,1],[-3,17],[-1,4],[-2,2],[-4,1],[-2,1],[-4,7],[-3,9],[-3,10],[-1,10],[1,8],[5,21],[2,6],[2,8],[1,10],[0,20],[-1,6],[-1,6],[0,5],[0,7],[1,3],[5,6],[2,4],[1,11],[1,9],[2,6],[6,2],[4,11],[-1,23],[-6,39],[-4,19],[-5,18],[-13,25],[-2,7],[-3,20],[-5,19],[-25,68],[-5,19],[-2,20],[2,35],[3,18],[0,37],[0,1],[-1,4],[0,3],[0,4],[3,5],[0,3],[2,14],[0,6],[-1,19],[-7,41],[-13,73],[-20,56],[-18,53],[-2,18],[0,118],[-11,115],[0,39],[8,73],[2,26],[-2,9],[-7,13],[-3,27],[-18,51],[-2,14],[0,18],[3,37],[3,17],[14,48],[5,24],[2,2],[3,-4],[2,5],[2,17],[21,68],[5,9],[2,9],[1,8],[1,28],[8,0],[6,22],[10,51],[2,6],[7,16],[2,5],[2,14],[2,6],[5,10],[3,12],[5,24],[7,22],[10,22],[8,23],[3,27],[-2,11],[-5,26],[-1,12],[1,14],[4,7],[2,-3],[1,-15],[4,16],[2,16],[0,17],[-2,16],[-11,33],[-4,17],[-1,20],[1,7],[3,9],[2,8],[3,6],[2,6],[0,8],[1,33],[1,8],[2,6],[5,2],[9,0],[10,4],[60,-12],[8,3],[3,0],[7,-12],[5,-5],[5,-3],[4,2],[2,7],[2,6],[2,5],[4,5],[4,2],[8,2],[4,4],[-3,4],[16,16],[9,10],[5,15],[9,32],[7,16],[6,13],[7,9],[18,15],[10,15],[2,-3],[1,-9],[0,-19],[5,-33],[1,-3],[0,-5],[0,-4],[-2,-12],[0,-10],[0,-8],[2,-5],[4,-2],[5,3],[3,6],[2,8],[3,6],[9,7],[4,6],[2,9],[-1,5],[-5,4],[-3,7],[-3,10],[0,8],[3,5],[45,10],[2,1],[2,2],[4,5],[2,-17],[2,-6],[1,-1],[0,-2],[0,-9],[-3,-17],[1,-6],[4,5],[2,-11],[2,1],[3,10],[-3,31],[1,6],[5,9],[2,7],[-1,1],[1,15],[0,6],[1,4],[1,5],[0,6],[-2,7],[-3,5],[-2,6],[2,8],[9,19],[9,13],[3,0],[5,-4],[4,-2],[4,0],[4,-1],[10,-13],[6,2],[17,20],[4,3],[4,1],[4,1],[6,-2],[2,-5],[-1,-20],[1,-9],[1,-5],[2,-2],[4,-2],[2,-1],[5,1],[3,0],[7,-9],[7,0],[0,4],[-3,7],[-2,10],[1,6],[3,6],[2,6],[0,10],[-7,-7],[-6,-10],[-4,-4],[2,13],[4,14],[5,12],[7,11],[6,8],[7,5],[6,3],[14,0],[7,-2],[3,-2],[2,-4],[0,-7],[0,-7],[1,-5],[2,-5],[-3,-11],[-1,-10],[-2,-8],[-5,-8],[6,-10],[4,-9],[4,-11],[10,-42],[4,-11],[6,-10],[0,6],[0,7],[0,7],[2,4],[2,-1],[3,-12],[3,-3],[5,2],[2,11],[0,13],[-2,10],[8,2],[5,-11],[5,-14],[5,-9],[3,4],[-3,16],[-6,25],[-6,5],[-11,22],[-7,5],[-9,-1],[-3,1],[-5,6],[1,4],[3,4],[3,6],[8,24],[1,12],[-3,9],[-3,0],[-4,-1],[-3,0],[-1,5],[0,9],[4,17],[4,21],[5,12],[12,20],[18,41],[6,10],[1,-3],[0,-3],[1,-3],[0,-4],[3,4],[8,15],[11,18],[4,6],[6,9],[8,2],[7,0],[6,3],[-4,6],[-8,4],[-1,6],[3,7],[16,8],[28,43],[21,39],[12,7],[8,9],[4,2],[2,-2],[1,-5],[0,-5],[0,-16],[1,-3],[3,-15],[2,-6],[3,-5],[5,-5],[9,-8],[5,-6],[0,-8],[-3,-7],[-4,-15],[-4,-7],[-4,-5],[-3,-7],[-12,-51],[-4,-20],[1,-14],[3,-1],[2,8],[3,19],[3,6],[5,4],[10,3],[10,7],[8,10],[9,5],[9,-6],[10,8],[4,6],[1,10],[-1,4],[-2,1],[-2,0],[-2,1],[-3,3],[-1,3],[-4,18],[-4,38],[0,3],[-1,2],[-4,1],[-2,-1],[-8,-8],[-1,8],[1,6],[2,15],[-4,-1],[-3,0],[-2,3],[-1,12],[-5,5],[-2,5],[-1,14],[3,13],[7,22],[10,17],[12,16],[10,19],[6,35],[4,10],[14,28],[6,7],[6,4],[7,2],[3,6],[1,14],[-2,12],[-4,2],[-3,-5],[-2,-10],[-3,-3],[-4,-1],[-3,4],[-4,13],[1,0],[9,28],[34,76],[4,6],[2,-2],[1,-7],[2,-7],[6,-14],[0,-6],[-1,-36],[1,-9],[1,-3],[2,-1],[2,-3],[1,-6],[-1,-1],[-3,-15],[-16,-39],[-4,-13],[-3,-18],[-3,-73],[1,-7],[4,-4],[3,1],[9,11],[3,4],[5,16],[3,17],[3,15],[8,13],[3,-5],[1,6],[0,15],[1,10],[20,79],[2,17],[1,7],[9,19],[1,5],[0,11],[1,5],[2,3],[5,5],[1,2],[7,15],[2,9],[1,8],[2,9],[4,5],[4,6],[1,12],[12,-34],[6,-10],[3,-3],[9,-5],[3,-4],[1,-7],[0,-14],[1,-8],[4,10],[0,13],[-2,12],[-4,6],[8,13],[7,-2],[6,-12],[2,-19],[-1,-41],[2,-11],[4,15],[2,18],[0,24],[-3,22],[-5,9],[-4,3],[-3,6],[-7,13],[-5,6],[-4,-1],[-9,-11],[-3,-3],[-4,-1],[-4,1],[-4,8],[-2,8],[-2,8],[-2,4],[-8,-23],[-3,-7],[-3,-3],[-2,5],[-5,21],[-2,7],[1,2],[3,6],[0,4],[0,6],[-1,3],[-2,3],[-4,20],[0,4],[1,2],[0,1],[-3,6],[0,1],[0,26],[2,20],[3,18],[6,16],[7,8],[2,5],[1,9],[0,18],[1,6],[3,6],[6,5],[13,-20],[9,1],[4,2],[5,-1],[3,1],[2,7],[2,10],[1,10],[0,8],[-1,14],[-2,16],[-5,14],[-5,7],[4,8],[5,-4],[12,-17],[2,-2],[3,-2],[2,-3],[2,-5],[0,-7],[-2,-6],[-2,-6],[-1,-7],[-1,-15],[-4,-31],[-1,-15],[0,-5],[0,-10],[2,-7],[4,0],[2,5],[0,6],[-1,7],[1,6],[2,3],[3,5],[3,5],[0,5],[-2,6],[-2,6],[-2,8],[0,7],[2,13],[7,21],[2,12],[0,14],[-1,14],[-2,10],[-11,8],[-7,9],[-10,20],[21,23],[0,8],[-13,18],[-11,9],[-3,5],[-7,29],[-5,38],[2,33],[13,12],[-3,9],[-4,3],[-2,6],[-1,15],[1,12],[2,18],[4,12],[5,-4],[5,-1],[2,15],[1,26],[3,5],[2,4],[3,0],[3,-6],[-2,-4],[-2,-5],[-2,-7],[2,-9],[1,2],[3,1],[2,1],[-2,-7],[1,-7],[2,-3],[3,3],[1,5],[0,5],[2,5],[4,4],[-5,11],[-1,5],[11,0],[4,-7],[2,-15],[1,-17],[1,-10],[8,7],[4,-5],[2,-12],[2,-14],[4,-27],[1,-10],[0,-4],[0,-4],[1,-3],[5,-4],[-1,-4],[-3,-7],[3,-12],[7,-11],[9,-9],[6,-3],[8,4],[8,11],[3,14],[-4,16],[2,9],[0,31],[1,10],[6,19],[1,8],[-6,21],[-2,10],[6,5],[3,-3],[8,-25],[1,11],[3,11],[3,8],[2,6],[4,3],[5,2],[5,0],[4,0],[0,2],[0,7],[0,3],[6,-12],[3,-4],[3,1],[-1,6],[-4,20],[-3,17],[-4,13],[-2,7],[-1,8],[0,8],[1,16],[4,-2],[3,-5],[1,-7],[3,-6],[0,-9],[5,-8],[15,-12],[3,-1],[3,1],[3,3],[3,2],[4,-1],[3,-2],[3,-1],[10,6],[10,12],[9,17],[7,18],[-5,12],[4,16],[11,27],[-1,7],[-4,14],[-1,9],[0,19],[1,10],[6,47],[4,16],[7,22],[3,9],[1,10],[1,7],[1,7],[3,9],[4,7],[3,3],[-1,15],[4,39],[1,15],[-2,8],[-5,14],[-2,7],[-2,8],[-1,7],[-2,26],[-1,7],[-4,13],[-2,2],[-1,-1],[-2,1],[-1,6],[0,6],[2,3],[1,3],[1,4],[0,5],[-2,7],[0,5],[3,14],[1,2],[-2,7],[-3,1],[-4,-4],[-4,-4],[0,17],[-3,10],[-9,17],[-4,24],[-2,8],[-1,-11],[-12,11],[4,6],[5,16],[3,1],[3,-3],[3,-2],[7,-1],[10,-4],[5,-11],[9,-33],[3,-4],[4,3],[4,6],[3,6],[1,9],[1,32],[1,3],[3,13],[0,3],[-1,8],[1,5],[2,8],[4,5],[4,3],[3,-4],[2,11],[3,5],[3,4],[4,9],[4,-11],[3,8],[4,15],[4,8],[4,-8],[4,4],[4,9],[1,11],[0,5],[-1,4],[-1,5],[0,6],[2,7],[2,4],[2,2],[2,4],[3,1],[0,3],[-1,8],[-3,6],[-1,1],[-3,-1],[-3,2],[-1,3],[-1,3],[-1,4],[-2,3],[-3,1],[-11,-1],[4,11],[11,7],[4,10],[5,-6],[9,-27],[1,5],[3,-5],[0,12],[-2,13],[-4,10],[-6,2],[1,6],[2,4],[2,3],[1,3],[3,3],[0,1],[0,2],[-1,4],[0,4],[1,4],[8,20],[5,5],[5,-2],[3,-4],[7,-19],[2,-8],[0,-17],[2,-7],[5,-15],[1,-15],[-1,-15],[2,-18],[4,-21],[1,-9],[-2,-1],[-10,25],[-3,1],[-2,-5],[-2,-7],[-2,-4],[-3,2],[-4,7],[-2,8],[0,8],[-3,-3],[-2,-5],[-2,-5],[-1,-7],[4,-4],[-1,-7],[-5,-17],[4,0],[6,-2],[5,-4],[3,-5],[-1,-4],[-4,-7],[-1,-3],[0,-5],[1,-6],[2,-2],[2,5],[3,10],[2,3],[2,-4],[3,-9],[0,-3],[-2,-4],[0,-4],[3,-1],[6,-1],[2,1],[2,3],[2,11],[-4,16],[1,8],[5,6],[4,-4],[8,-26],[0,-7],[1,-7],[0,-8],[3,-10],[3,-6],[2,-8],[0,-13],[2,8],[2,5],[3,2],[4,1],[5,-1],[1,-4],[2,-4],[4,-10],[2,-7],[0,-7],[-2,-3],[-4,2],[-3,3],[-3,1],[-3,-6],[6,-12],[4,-9],[3,-1],[6,14],[7,-36],[2,-13],[1,-16],[-1,-7],[-3,1],[-2,6],[-1,8],[0,16],[-1,-16],[4,-34],[-2,-13],[-2,-6],[-1,-6],[0,-7],[1,-7],[2,-10],[2,1],[2,4],[3,1],[4,-6],[6,-10],[5,-12],[2,-11],[1,-7],[2,-13],[1,-6],[-1,-8],[-3,-13],[-2,-8],[3,3],[2,1],[3,-1],[2,-3],[1,7],[2,5],[2,5],[1,17],[2,5],[3,1],[4,-3],[-1,-6],[-1,-2],[4,-2],[4,-4],[3,-5],[7,-14],[1,-4],[-1,-15],[0,-5],[4,-16],[2,-6],[4,-2],[4,0],[4,0],[2,-5],[0,-12],[-2,-3],[-3,-2],[-1,-4],[4,-11],[4,-4],[4,-3],[3,-5],[1,-12],[1,-8],[7,-16],[1,-6],[1,-32],[-3,-48],[1,-9],[1,-12],[0,-9],[1,-8],[8,-23],[1,-10],[-1,-25],[1,-9],[4,-5],[3,2],[3,4],[3,-1],[2,-9],[0,-10],[-2,-20],[1,-16],[4,-34],[3,-17],[1,-3],[3,-5],[1,-3],[1,-5],[-1,-11],[0,-5],[1,-12],[1,-4],[1,-2],[1,-2],[1,0],[1,-1],[2,0],[0,-3],[0,-3],[1,-3],[1,-7],[-3,-20],[2,-10],[2,-6],[6,-28],[3,-20],[3,-118],[5,-44],[1,-17],[0,-21],[-3,-17],[0,-10],[-1,-21],[1,-12],[2,-7],[7,-14],[4,-17],[1,-17],[-4,-46],[-3,-18],[0,-9],[0,-11],[4,-28],[2,-66],[7,-32],[1,-21],[-2,-20],[-6,-7],[2,-7],[7,-8],[4,-5],[2,-8],[2,-10],[3,-38],[20,-91],[5,-16],[13,-34],[3,-10],[3,-20],[3,-6],[3,-5],[4,-5],[3,-15],[3,-19],[1,-38],[0,-3],[-2,-10],[-2,-9],[0,-4],[0,-4],[1,-6],[-1,-4],[-2,-15],[-1,-5],[1,-6],[0,-5],[1,-4],[-2,-5],[-3,-7],[-1,-4],[-2,-21],[-5,-29],[-1,-11],[-1,-16],[-25,-97],[-2,-17],[3,-3],[-2,-8],[-20,-54],[-7,-33],[-3,-8],[-4,-2],[-5,1],[-4,0],[-4,-7],[-6,30],[-4,9],[-7,-2],[-14,25],[-5,12],[-2,18],[-1,30],[-1,5],[-3,2],[-4,7],[-4,8],[-2,6],[-2,8],[-1,10],[-1,10],[0,9],[1,10],[2,8],[1,7],[-3,9],[-2,4],[-2,2],[-1,0],[-3,1],[-1,1],[-8,22],[-1,7],[2,19],[0,10],[-2,30],[0,4],[1,3],[1,4],[-2,5],[-2,1],[-5,1],[-7,-7],[-10,-3],[-18,0],[-9,-6],[-6,-12],[-16,-46],[0,-15],[6,-34],[0,-9],[0,-8],[-3,-16],[-1,0],[2,-7],[4,-7],[3,-8],[2,-19],[4,-20],[2,-30],[2,-18],[5,-16],[0,-7],[-1,-10],[-2,-10],[-8,-31],[-3,-17],[0,-20],[2,-19],[4,-17],[7,-14],[18,-14],[8,-10],[6,-19],[2,-17],[-6,-56],[-1,-23],[2,-20],[5,-9],[3,-4],[0,-9],[-1,-23],[-1,-8],[0,-5],[0,-20],[-2,-8],[-14,-52],[-8,-20],[-13,-20],[1,-27],[2,-13],[4,-13],[6,-11],[6,-6],[6,-2],[8,1],[-9,-10],[-8,-6],[-17,-5],[-7,-8],[-13,-3],[-6,-2],[-5,-7],[-3,-9],[-19,-77],[-13,-74],[-14,-69],[-2,-42],[1,-9],[8,-28],[13,-146],[2,-38],[-3,-41],[-10,-70],[-14,-90],[0,-10],[0,-10],[2,-9],[1,-4],[3,-7],[1,-5],[1,-7],[-2,-3],[-3,-2],[-2,-4],[-9,-33],[-7,-117],[-2,-8],[-5,-13],[-2,-8],[-7,-40],[-16,-69],[-14,-110],[-22,-101],[-10,-31],[-25,-186],[-36,-181],[-9,-93],[-1,-14],[1,-22],[-9,-54],[-2,8],[-4,9],[-3,6],[-3,-6],[1,-7],[7,-19],[2,-9],[-1,-8],[-23,-96],[-16,-86],[-7,-44],[-15,-93],[-28,-211],[-3,-9],[-3,-10],[-3,-9],[1,-8],[4,7],[2,-2],[1,-8],[-1,-9],[-2,-9],[-4,-17],[-2,-11],[0,-20],[-3,-20],[-10,-47],[-1,-9],[-1,-18],[-4,-50],[-4,-22],[-4,-14],[-35,-226],[-36,-164],[-35,-163],[-4,-39],[-9,-40],[-12,-157],[-5,-36],[-1,-56],[-10,-65],[-10,-58],[-7,-87],[-33,-198],[-3,8],[-2,7],[-1,1],[-3,-8],[-3,-13],[2,-3],[4,-1],[5,-5],[1,-16],[-14,-125],[-15,-80],[-5,-17],[-2,-4],[-4,-6],[-2,-2],[-3,-2],[-1,0],[-1,-3],[0,-2],[1,-2],[0,-3],[0,-2],[-2,-15],[-4,-19],[-1,-4],[-16,-86],[-2,-4],[-4,2],[-6,5],[-1,-3],[4,-33],[-7,-95],[-24,-115],[-7,-22],[0,-9],[0,-18],[-2,-9],[-14,-22],[-4,-18],[2,-38],[-3,-15],[-3,7],[-2,8],[-1,9],[0,9],[-2,-9],[0,-8],[0,-9],[0,-11],[-1,-11],[-2,-5],[-8,-6],[-5,-6],[-8,-14],[-13,-32],[-3,-3],[-1,3],[-2,13],[-4,1],[0,-1],[-1,-1],[-16,-23],[-6,-11],[-3,-4],[-8,-6],[-3,-4],[-4,-11],[-3,-5],[-2,1],[-3,2],[-3,0],[-3,-7],[-2,-3],[-19,-11],[-5,1],[-9,5],[-28,7],[-32,-1],[-42,-20],[-55,-47],[-35,-35],[-39,-42],[-27,-51],[-6,-8],[-6,-5],[-6,-1],[-14,-25],[-19,-8],[-79,-7],[-4,-2],[-4,-4],[-4,-2],[-5,2],[-3,6],[-2,23],[-3,10],[-8,12],[-30,22],[-8,12],[-4,8],[-3,18],[-5,8],[-21,30],[-18,17],[-11,6],[-30,9],[-29,3],[-41,16],[-5,6],[-4,23],[-9,19],[-2,13],[5,-4],[5,-8],[9,-20],[5,-8],[5,0],[2,7],[-1,13],[-4,-2],[-4,4],[-7,14],[-5,6],[-4,4],[-5,2],[-5,0],[-10,8],[-16,36],[-10,9],[-9,0],[-3,2],[-22,29],[-4,13],[-1,46],[-3,20],[-20,54],[-3,19],[3,53],[-3,20],[-3,10],[-12,25],[-1,2],[-2,3],[-1,5],[-1,5],[-1,12],[-1,5],[-9,16],[-19,25],[-9,18],[-9,42],[-5,89],[4,102],[-5,57],[1,6],[2,11],[1,5],[-1,7],[-3,18],[-2,23],[-2,11],[-4,11],[4,12],[0,42],[1,18],[6,12],[19,16],[5,13],[-1,10],[-4,15],[1,11],[4,8],[1,4],[2,10],[0,5],[-1,6],[-3,8],[-7,12],[-5,15],[-12,22],[-2,2],[-2,1],[-2,1],[-2,4],[-1,3],[-1,13],[-3,21],[-1,53],[-3,44],[-4,25],[-8,16],[-19,28],[-3,8],[-4,19],[-4,7],[-5,8],[-10,21],[-6,18],[-3,13],[-1,8],[-2,24],[-3,16],[-2,31],[-3,17],[-1,21],[-2,5],[-4,10],[-1,5],[-2,14],[0,14],[1,27],[-3,55],[-4,28],[-6,27],[-1,6],[1,6],[0,6],[-2,14],[-3,14],[0,12],[6,10],[8,1],[6,-11],[2,9],[-1,10],[-1,11],[0,11],[-10,0],[-3,24],[-1,53],[1,7],[3,12],[0,6],[0,14],[1,6],[1,2],[1,2],[1,4],[1,0],[1,1],[1,1],[1,2],[-2,16],[0,8],[2,7],[1,7],[3,6],[3,-8],[0,-10],[-1,-22],[5,16],[1,28],[0,30],[1,23],[3,11],[19,44],[5,8],[5,1],[6,-7],[0,158],[2,15],[6,27],[2,15],[2,-10],[2,0],[5,10],[8,8],[4,11],[1,1],[15,0],[11,6],[5,-3],[5,-4],[5,-3],[7,6],[8,12],[7,16],[2,15],[2,17],[10,56],[10,115],[18,68],[6,11],[9,5],[5,9],[15,56],[3,24],[3,28],[4,26],[7,19],[0,-5],[0,-4],[2,-7],[6,32],[4,11],[12,19],[4,8]],[[63876,40532],[1,9],[0,9],[1,9],[3,8],[3,6],[11,12],[-1,-14],[-10,-43],[-8,-45],[-13,-61],[-10,-28],[-8,-35],[-5,-13],[-2,16],[1,16],[7,29],[1,8],[0,8],[1,16],[1,11],[2,7],[6,15],[19,60]],[[63425,42557],[2,-4],[4,-6],[3,-6],[0,-7],[-1,-5],[-3,-2],[-3,-2],[-3,0],[-1,1],[-1,3],[-1,3],[0,2],[-2,-1],[-4,-4],[-10,4],[-3,3],[-4,6],[-2,0],[0,-8],[-1,0],[-1,1],[0,1],[-1,1],[-3,7],[-2,13],[-1,25],[1,12],[1,10],[0,7],[-4,3],[3,8],[4,-2],[4,-4],[4,3],[2,-4],[3,-2],[2,-1],[3,2],[0,5],[-1,4],[-2,5],[-1,5],[0,12],[2,7],[3,3],[5,0],[5,-3],[2,-7],[0,-10],[-3,-10],[3,-3],[2,-12],[2,-14],[1,-6],[3,-4],[-1,-10],[-4,-11],[-1,-8]],[[83572,53771],[3,-1],[5,-9],[4,-12],[1,-10],[-3,-13],[-5,-2],[-8,6],[-2,3],[-3,6],[-3,8],[-1,5],[1,6],[4,6],[3,5],[4,2]],[[83861,54043],[7,7],[4,0],[0,-7],[-1,-3],[-7,-8],[-12,-9],[-3,1],[-15,21],[-6,13],[-2,11],[5,-2],[14,-19],[7,-5],[9,0]],[[84941,54584],[1,-5],[-1,-6],[-2,-7],[-2,-14],[-2,3],[-4,11],[-3,12],[-2,25],[-3,15],[-1,6],[-1,22],[-2,3],[-2,0],[-6,5],[-1,0],[-1,3],[-1,7],[0,6],[1,7],[2,5],[2,2],[2,6],[1,30],[2,9],[2,2],[2,-1],[2,-5],[1,-5],[5,-9],[5,-7],[4,-9],[1,-13],[-2,-76],[1,-13],[2,-9]],[[84158,54842],[-6,2],[-2,2],[2,-10],[1,-6],[-1,-4],[-2,-4],[-2,0],[-2,0],[-1,0],[-8,-13],[-4,-4],[-2,-1],[-4,-1],[-1,-1],[-2,-3],[-1,-7],[-1,-3],[-4,-1],[-3,2],[-2,6],[-3,9],[-1,15],[0,23],[2,19],[7,8],[4,-4],[4,-9],[3,-7],[4,0],[2,6],[1,8],[0,7],[3,3],[6,-4],[5,-8],[5,-11],[3,-9]],[[83680,56173],[2,-2],[0,-2],[-7,-17],[-3,-7],[-3,-4],[1,5],[2,12],[2,3],[3,2],[1,6],[2,7],[2,5],[0,-3],[0,-2],[-1,-1],[-1,-2]],[[84996,56206],[4,-6],[-2,-12],[-4,-23],[1,-7],[0,-9],[-2,-9],[-2,-3],[-5,-2],[-2,0],[2,9],[-2,4],[-3,1],[-3,0],[0,4],[3,0],[1,0],[0,4],[-6,8],[0,-4],[0,5],[0,6],[2,13],[2,4],[1,2],[1,2],[0,5],[0,5],[0,7],[0,4],[-3,9],[0,14],[2,13],[5,5],[1,-4],[1,-4],[0,-5],[3,3],[1,2],[0,-10],[0,-14],[0,-12],[4,-5]],[[85157,54793],[3,-3],[9,-11],[2,0],[-2,-11],[-6,-19],[-2,-10],[-1,-5],[-2,-1],[-2,-2],[-2,-2],[-2,-5],[-6,-32],[-2,-6],[-8,-18],[-5,-14],[-2,-16],[0,-21],[-4,-12],[-10,-2],[-11,5],[-8,7],[-7,-13],[-4,-17],[-2,-18],[0,-15],[2,-7],[7,-14],[3,-5],[1,-9],[0,-13],[0,-11],[-3,-4],[-8,7],[-5,16],[-6,38],[-7,17],[-9,9],[-6,-5],[1,-25],[-2,0],[-1,4],[-3,8],[-1,-12],[3,-13],[4,-12],[4,-21],[5,-9],[5,-8],[3,-6],[1,-13],[-4,-24],[-4,-52],[-1,-87],[-4,-47],[-2,-54],[-1,-9],[-4,2],[-1,8],[-1,30],[-1,7],[-10,14],[-1,5],[0,7],[1,8],[-1,6],[-6,28],[-4,9],[-1,12],[-4,75],[1,14],[3,36],[0,13],[-3,21],[-1,13],[0,16],[-1,7],[-3,3],[-7,5],[-6,6],[-10,32],[-2,11],[2,28],[0,12],[-3,13],[-16,34],[-4,9],[-1,9],[-2,24],[-11,58],[-1,23],[1,13],[0,12],[-2,9],[-4,2],[-1,1],[-5,-3],[-17,-25],[-17,-20],[-3,-6],[-2,-5],[-3,-11],[-1,-13],[2,-39],[-1,-12],[-1,-6],[-2,-7],[-1,-5],[-1,-6],[-10,-20],[-8,-10],[-9,-5],[-9,-9],[-6,-21],[-1,-26],[-1,-13],[-3,-6],[-13,-32],[-6,-22],[-4,-26],[-2,-28],[-1,-28],[1,-10],[4,-23],[1,-12],[2,-5],[5,-4],[3,3],[-1,17],[10,-13],[12,-33],[7,-15],[5,7],[6,-5],[4,-10],[2,-11],[0,-23],[1,-9],[8,-36],[3,-8],[1,-5],[1,-7],[-1,-13],[1,-7],[1,-4],[2,-7],[14,-77],[1,-11],[0,-12],[-1,-13],[-3,-11],[-1,-6],[2,-12],[-1,-6],[-1,-5],[-2,-17],[-5,-26],[-20,-52],[-27,-80],[-17,-64],[-5,-12],[-5,-10],[-4,-4],[-4,-1],[-14,2],[-4,2],[-2,7],[0,47],[-2,12],[-2,9],[-2,6],[-4,4],[-6,1],[-2,2],[-1,5],[-1,6],[-1,6],[-1,6],[-3,3],[-3,2],[-2,2],[-3,12],[1,9],[2,9],[2,9],[0,9],[2,10],[5,16],[11,27],[4,18],[0,23],[-1,10],[-4,22],[0,7],[-3,5],[-3,1],[-3,0],[-10,0],[-4,7],[-3,3],[-3,-2],[0,-5],[0,-15],[-1,-6],[-2,-8],[-9,-58],[-7,-40],[-5,-14],[-6,0],[-13,6],[-11,-8],[-7,3],[-28,29],[-7,4],[-12,11],[-3,0],[-4,0],[-3,0],[-7,5],[-18,23],[-2,-4],[-8,8],[-3,4],[-1,4],[-1,6],[-1,4],[-2,2],[-4,3],[-39,47],[-15,14],[-34,31],[-5,7],[-7,14],[-4,11],[-3,22],[-4,10],[-18,42],[-7,22],[-5,21],[-4,30],[0,13],[-2,12],[0,7],[1,3],[4,1],[1,2],[0,4],[0,52],[-1,13],[-5,37],[1,16],[1,12],[-1,13],[-6,5],[0,-2],[-3,-9],[-2,-3],[-1,2],[0,2],[-1,1],[-2,2],[-2,4],[-2,5],[-1,5],[0,7],[2,11],[0,5],[1,63],[3,29],[12,59],[6,13],[5,3],[6,7],[11,14],[10,19],[5,10],[3,16],[5,10],[2,6],[0,5],[0,19],[0,15],[1,12],[6,22],[-4,7],[-4,0],[-8,-3],[-4,3],[-2,10],[-1,5],[-3,3],[-3,9],[-13,60],[-8,24],[-13,18],[-2,1],[-15,23],[-13,15],[-2,-4],[-5,4],[-6,3],[-1,0],[-12,1],[-7,3],[-4,8],[-15,42],[-6,9],[-6,3],[-6,1],[-12,10],[-2,1],[-6,2],[-18,-2],[-5,-2],[-7,-6],[-6,-6],[-4,-6],[1,-21],[8,-16],[6,-18],[-3,-27],[-3,-6],[-3,-6],[-3,-4],[-3,-4],[-10,-4],[-2,-2],[-1,-5],[0,-6],[0,-13],[-1,-2],[-6,7],[-3,1],[-2,-10],[4,-12],[5,-11],[3,-10],[2,-14],[4,-8],[5,-7],[4,-9],[2,-12],[0,-14],[-2,-12],[-3,-9],[-2,-2],[-4,2],[-8,13],[-9,9],[-4,6],[-8,18],[-3,10],[-4,6],[-1,3],[0,13],[0,5],[-1,4],[-5,4],[-5,-1],[-5,-5],[-3,-8],[-1,-8],[-4,-4],[-4,-1],[-4,3],[-8,16],[-4,11],[-1,11],[1,13],[4,5],[5,1],[5,4],[3,10],[0,12],[-3,10],[-7,4],[-3,7],[-2,15],[0,16],[-1,11],[-3,5],[-3,-5],[-3,-11],[-4,-11],[-7,-17],[-2,-7],[0,-6],[1,-6],[0,-7],[-1,-3],[-4,-5],[-1,-2],[0,-4],[1,-3],[1,-2],[0,-5],[-2,-11],[-4,-13],[-2,-8],[0,-9],[0,-18],[-1,-6],[-3,-3],[-2,2],[-1,3],[-3,2],[0,1],[-7,3],[-2,8],[-4,23],[-3,5],[-3,-2],[-4,-7],[-3,-8],[-2,-6],[0,-9],[1,-5],[0,-5],[-4,-6],[-3,-3],[-4,-1],[-5,0],[-4,4],[2,7],[-1,5],[-2,2],[-1,0],[0,-1],[-1,-1],[-2,-1],[0,1],[-1,3],[1,3],[1,2],[1,0],[-1,14],[1,7],[4,2],[5,-6],[1,13],[-2,8],[-3,8],[-2,9],[-2,37],[-1,10],[2,7],[2,12],[1,13],[0,10],[-3,9],[-6,1],[-12,-3],[-2,4],[-4,12],[-3,4],[-13,0],[-2,-1],[-6,-6],[-3,-1],[-6,-8],[-24,-39],[-7,-17],[-12,-34],[-2,-11],[-1,-7],[6,-3],[5,4],[4,-1],[0,-15],[-2,-8],[-3,-10],[-4,-9],[-3,-5],[2,21],[0,3],[-3,1],[-3,-5],[-2,-8],[-1,-6],[-3,-6],[-13,-16],[-3,-12],[1,-13],[5,-12],[2,-11],[-1,-11],[-3,-6],[-5,-18],[-3,-5],[-3,0],[-3,0],[-4,-2],[-5,-15],[-4,-27],[-4,-50],[-1,-28],[-1,-11],[-12,-34],[-9,-53],[-4,-14],[-6,-9],[-3,-8],[-1,-2],[-6,0],[-3,2],[-13,10],[-22,24],[-6,13],[-11,46],[0,49],[10,46],[20,37],[9,9],[2,3],[1,4],[1,6],[-1,5],[-2,2],[-3,6],[1,16],[3,26],[0,19],[0,6],[2,7],[3,10],[1,5],[0,14],[3,9],[3,6],[5,5],[3,6],[5,10],[3,9],[-9,8],[-1,11],[3,21],[0,26],[-1,13],[-4,6],[-2,7],[2,16],[7,26],[24,63],[7,26],[3,9],[3,5],[8,12],[9,5],[10,13],[22,16],[7,2],[4,-5],[1,5],[2,3],[2,0],[2,-4],[5,5],[22,9],[10,10],[4,4],[5,20],[3,9],[1,-6],[2,-14],[6,-7],[6,-2],[7,0],[27,10],[3,5],[3,2],[7,0],[3,1],[3,2],[6,7],[16,28],[3,14],[-4,11],[-10,14],[-1,4],[-1,12],[0,4],[2,3],[5,7],[1,0],[0,3],[2,3],[1,4],[0,7],[0,6],[-1,13],[0,7],[2,10],[6,18],[1,10],[1,7],[3,10],[4,8],[4,6],[4,3],[21,7],[10,6],[5,0],[1,-2],[2,-8],[2,-2],[3,-1],[16,3],[5,5],[4,8],[4,14],[1,4],[4,28],[2,6],[4,2],[2,-1],[1,-2],[2,-2],[2,1],[1,2],[4,6],[2,3],[-1,7],[-9,22],[-2,7],[-1,5],[2,3],[4,2],[4,0],[2,-3],[1,0],[7,-9],[5,-7],[3,-2],[3,1],[3,3],[1,-30],[2,-15],[5,1],[1,-2],[1,-1],[4,-3],[2,-2],[1,-4],[2,-12],[3,5],[0,6],[0,6],[1,7],[2,5],[4,11],[-4,7],[4,5],[5,-2],[-1,-10],[22,-11],[4,-3],[2,-5],[2,-10],[2,0],[2,5],[2,-2],[2,-11],[-1,0],[4,-19],[1,-3],[1,-8],[12,-30],[4,-21],[4,-25],[2,-27],[1,-72],[5,-34],[-1,-12],[-3,-7],[-29,-56],[-6,-6],[-12,-1],[-5,-6],[-2,-15],[0,-1],[0,-6],[-2,-11],[0,-7],[1,-1],[1,-2],[3,3],[4,4],[1,3],[10,12],[37,62],[3,2],[6,2],[4,6],[6,16],[7,11],[9,8],[10,5],[33,0],[12,4],[9,9],[3,8],[4,18],[4,9],[1,6],[-1,6],[-2,6],[-1,6],[0,8],[1,5],[3,10],[0,2],[-1,6],[1,3],[1,3],[1,3],[1,3],[3,12],[1,6],[0,22],[2,13],[4,24],[6,20],[8,20],[9,15],[11,10],[7,0],[2,-6],[0,-9],[1,-9],[1,-1],[7,-3],[0,-1],[2,0],[3,-2],[4,-6],[8,-20],[3,-4],[5,-3],[16,-1],[-2,-11],[-2,-12],[-2,-13],[0,-13],[2,0],[2,16],[4,10],[5,4],[8,-6],[2,5],[4,8],[1,1],[4,2],[1,1],[0,3],[-1,4],[-1,3],[0,2],[1,18],[1,6],[1,4],[3,11],[1,6],[0,11],[-6,21],[-1,12],[1,13],[4,7],[3,7],[3,10],[-2,11],[0,13],[2,26],[0,51],[-2,26],[1,14],[2,11],[3,6],[2,5],[4,3],[3,-2],[3,-4],[3,0],[3,2],[3,0],[5,-3],[6,-5],[4,-7],[2,-7],[3,-5],[22,-26],[2,-4],[6,-17],[5,-6],[5,-19],[4,-6],[3,0],[6,8],[6,4],[4,6],[3,9],[3,50],[-1,12],[-1,3],[-2,4],[-1,3],[0,6],[0,7],[3,12],[1,7],[0,8],[0,4],[2,4],[2,5],[3,1],[2,-6],[4,-14],[8,-23],[6,-9],[6,-4],[18,-2],[12,-5],[6,-1],[6,3],[15,18],[3,6],[2,14],[2,20],[0,63],[-1,10],[-2,6],[-2,6],[-1,7],[0,6],[0,10],[0,5],[-1,6],[-2,11],[-2,16],[-5,19],[-2,17],[-1,5],[-2,3],[0,2],[0,19],[0,3],[-1,9],[-6,33],[-1,6],[-1,12],[-10,80],[0,11],[1,10],[1,10],[14,47],[1,6],[3,-8],[5,-10],[5,-8],[9,-5],[8,-8],[6,-1],[-1,-15],[2,-16],[3,-18],[2,-15],[3,-10],[6,-11],[8,-7],[6,2],[-1,-2],[0,-2],[0,-2],[-1,-2],[3,0],[2,-3],[2,-5],[3,-1],[6,2],[3,-1],[5,-13],[2,-4],[3,-1],[16,-5],[5,-6],[10,-18],[2,-2],[4,0],[3,-1],[1,-5],[1,-5],[2,-7],[1,-6],[3,11],[1,5],[2,0],[0,-10],[-1,-5],[-1,-5],[-2,-4],[-3,-3],[-8,-5],[-2,-5],[-1,-8],[2,-5],[3,-4],[3,-3],[5,-1],[3,1],[7,8],[0,-23],[1,-20],[4,-18],[13,-29],[2,-2],[3,-2],[4,1],[6,6],[9,6],[10,22],[6,6],[5,-1],[2,-9],[-2,-11],[-5,-19],[-2,-14],[-2,-27],[0,-19],[-2,-27],[1,-7],[3,-3],[4,0],[2,-2],[2,-6],[3,-14],[2,-7],[20,-42],[3,-13],[0,-7],[3,-23],[-1,-8],[0,-6],[4,-4],[-1,-5],[-1,-5],[-1,0],[-2,-14],[-3,-15],[-5,-12],[-6,-4],[-10,-15],[-2,-1],[0,-9],[2,-5],[6,-7],[0,-3],[-1,-2],[-1,-1],[0,-2],[-4,3],[-3,1],[-6,1],[-3,-3],[-7,-11],[-9,-9],[-6,-14],[-2,-14],[5,-12],[5,-27],[3,-8],[3,-1],[9,1],[5,-4],[3,0],[3,4],[-6,7],[-1,5],[1,4],[4,0],[3,-3],[4,-2],[3,5],[6,-6],[18,-6],[0,1],[1,2],[1,1],[2,0],[0,-1],[1,-5],[2,-8],[6,-9],[1,-6],[-2,-8],[1,-2],[1,-3],[1,-3],[-7,1],[-3,-2],[-1,-5],[-1,-14],[1,-2],[4,2],[1,-10],[-2,-11],[-7,-19],[-1,-1],[-3,-4],[-2,-5],[1,-2],[2,-3],[3,-16],[3,-4],[4,-2],[2,-5],[-3,-15],[-9,-22],[-2,-10],[2,-11],[5,-5],[4,3],[4,5],[9,6],[10,18],[1,-6],[-2,-51],[-1,-9],[1,-8],[3,-12],[-7,-8],[-3,-22],[1,-23],[5,-15],[-5,-11],[-11,-17],[-3,-13],[0,-7],[0,-8],[2,-17],[4,-14],[5,-11],[9,-11],[1,-3],[1,-6],[7,-21],[6,-8],[14,-3],[6,-5],[-2,-13],[-1,-13],[-1,-29],[1,-13],[6,-30],[2,-28],[2,-13],[0,-11],[-3,-12],[-3,-5],[-3,-2],[-3,-5],[0,-9],[1,-2],[6,-10],[-2,-13],[-1,-28],[-3,-12]],[[84803,56374],[3,-19],[0,-3],[-2,-2],[-2,-4],[-1,-3],[-4,1],[-1,3],[-1,4],[0,4],[-1,5],[-7,17],[-10,36],[-10,12],[-5,9],[-2,9],[-4,26],[0,13],[4,8],[3,0],[2,-3],[5,-9],[12,-9],[3,-5],[3,-11],[4,-40],[2,-7],[4,-9],[4,-10],[1,-13]],[[84549,56801],[2,-7],[0,-7],[1,-15],[-3,-8],[-22,-23],[-4,8],[1,8],[3,9],[2,10],[1,8],[1,9],[1,9],[3,7],[3,4],[4,0],[4,-5],[3,-7]],[[84573,56814],[11,-12],[4,-16],[-3,-14],[-13,-6],[-15,10],[0,21],[8,17],[8,0]],[[84950,56827],[2,-9],[-1,-6],[-4,-5],[-4,-1],[-5,0],[-3,1],[-2,3],[-3,7],[-3,4],[-10,10],[-6,7],[-1,15],[2,16],[6,7],[7,-6],[3,-29],[5,-10],[4,-2],[9,1],[4,-3]],[[83230,57025],[2,-7],[2,-8],[1,-8],[0,-9],[-2,0],[-2,3],[-2,-1],[-2,-2],[-2,-4],[-1,10],[-3,6],[-4,3],[-1,3],[-1,23],[1,8],[11,-10],[3,-7]],[[83225,57103],[4,-6],[1,-5],[-1,-5],[-5,-10],[-6,-9],[-1,-2],[-4,4],[-1,7],[1,8],[1,5],[1,0],[5,5],[1,2],[0,3],[2,2],[2,1]],[[84610,57318],[6,-6],[1,-12],[-2,-21],[-2,-7],[-5,-3],[-17,1],[-7,4],[-5,-1],[-1,-5],[-1,-3],[-2,0],[-2,2],[-1,4],[0,3],[-1,3],[-9,20],[-4,11],[-7,40],[-2,13],[-1,6],[-6,15],[-1,5],[5,-1],[14,9],[3,1],[11,-2],[7,1],[3,-1],[5,-4],[5,-6],[4,-9],[3,-21],[7,-30],[2,-6]],[[84670,57358],[2,-6],[2,-5],[3,-3],[4,-2],[-1,-6],[0,-6],[0,-14],[-1,-7],[-2,-5],[-2,-2],[-7,16],[1,2],[-1,6],[-2,3],[-4,-7],[-4,20],[2,-1],[2,-3],[0,10],[-3,9],[-3,7],[-4,3],[-3,2],[-1,7],[-1,7],[-1,6],[-2,6],[0,5],[3,11],[2,0],[0,-1],[3,-6],[10,-12],[1,-2],[1,-3],[0,-3],[1,-4],[1,-4],[4,-4],[0,-5],[0,-9]],[[83971,61369],[5,-16],[2,-24],[-1,-26],[-4,-25],[-5,-19],[-7,-19],[-4,-9],[-10,-13],[-9,-17],[-2,-4],[-1,-8],[0,-7],[1,-5],[1,-5],[0,-5],[0,-20],[2,-20],[0,-7],[-12,-110],[0,-6],[1,-13],[0,-5],[-2,-8],[0,-4],[1,-4],[4,-9],[0,-5],[1,-52],[1,-15],[9,-44],[1,-15],[2,-11],[5,-14],[5,-15],[-1,-15],[2,-6],[0,-10],[2,-8],[3,-4],[1,1],[1,2],[2,1],[3,0],[5,-10],[2,-2],[4,0],[7,6],[4,2],[4,-4],[2,-18],[4,-6],[-1,13],[4,-6],[6,-16],[2,-15],[-5,8],[-3,2],[-1,-5],[0,-8],[3,-17],[1,-7],[-1,-9],[-3,-18],[0,-8],[2,-9],[7,-11],[2,-8],[1,3],[2,2],[1,3],[5,-3],[2,6],[3,4],[5,-7],[3,-11],[0,-11],[-2,-11],[-4,-10],[-1,-5],[-1,-7],[-1,-7],[-2,-3],[-2,-3],[-3,-14],[-3,-46],[1,-10],[-4,-18],[-8,-41],[-13,-48],[-3,-17],[-5,-25],[-2,-7],[-4,-9],[-7,-30],[-3,-11],[-10,-16],[-2,-6],[-2,-3],[-1,-6],[0,-5],[-1,-12],[0,-3],[-5,-7],[-2,-8],[0,-7],[3,-17],[2,8],[1,4],[1,0],[-1,-20],[-10,-38],[2,-15],[5,9],[4,7],[0,-8],[-7,-25],[0,-3],[0,-9],[0,-4],[-2,-1],[-4,-2],[-2,-1],[-7,-20],[-10,-16],[-9,-19],[-1,-1],[-1,-1],[-1,-4],[0,-4],[0,-5],[0,-4],[0,-3],[-3,-13],[-12,-15],[-6,-12],[-1,4],[5,16],[3,11],[1,12],[2,7],[14,19],[1,9],[2,14],[2,12],[9,11],[2,11],[-1,10],[-8,1],[-6,-5],[-2,-8],[-1,-10],[-1,-11],[-1,-9],[-5,-6],[-11,-7],[-16,-17],[-4,-3],[-10,-3],[-10,-6],[-3,-5],[-3,-7],[-4,-5],[-9,-5],[-3,-3],[-3,-3],[-2,2],[-2,2],[-3,-1],[-19,-33],[-1,-7],[-10,-24],[-14,-15],[-4,-7],[-3,-10],[-2,-12],[-2,-25],[0,-14],[5,-21],[1,-12],[3,-5],[6,-1],[7,-4],[3,-12],[-2,-8],[-12,-29],[5,-2],[2,-2],[3,-4],[-11,-12],[-4,-8],[-2,-10],[-2,-11],[-3,-9],[-15,-26],[-2,-7],[-3,-38],[-1,-11],[-3,-9],[-10,-29],[-5,3],[-3,3],[-2,-3],[-3,-15],[0,-27],[3,-24],[6,-21],[8,-13],[7,-8],[4,-8],[2,-11],[5,-60],[2,-7],[4,-6],[9,-30],[2,-10],[1,-16],[3,-16],[4,-14],[5,-13],[-1,-2],[-3,-5],[-2,-1],[12,-29],[2,-6],[2,-5],[17,-28],[4,-9],[0,-6],[-5,-2],[-10,-1],[-6,-3],[-6,-4],[-4,-8],[-2,-9],[0,-26],[1,-11],[10,-71],[1,-21],[3,-23],[2,-10],[4,-9],[12,-23],[2,-11],[1,-8],[-1,-20],[1,-5],[5,-10],[1,-5],[0,-10],[-2,-9],[-2,-7],[-3,-5],[0,-4],[3,-6],[10,-31],[19,-28],[19,-41],[5,-8],[42,-34],[40,-19],[1,16],[-3,11],[-11,22],[5,3],[26,-14],[1,1],[0,8],[-1,10],[1,3],[4,2],[0,3],[-6,4],[-11,27],[-5,6],[-7,6],[-6,13],[-5,17],[-2,17],[3,-4],[1,-3],[0,-5],[2,0],[0,13],[3,9],[10,10],[4,-3],[1,10],[0,14],[1,8],[3,-2],[1,-12],[-1,-14],[-1,-9],[2,-5],[1,-7],[0,-8],[1,-8],[-1,-2],[1,-3],[2,-4],[1,0],[1,3],[1,3],[1,3],[1,-7],[0,-7],[0,-15],[6,5],[4,8],[3,10],[1,14],[-1,4],[-4,12],[-1,4],[1,7],[2,5],[2,-1],[1,-7],[2,0],[0,6],[0,4],[-1,4],[-1,2],[5,0],[3,4],[0,7],[-3,8],[0,5],[4,18],[2,7],[2,-8],[2,3],[3,8],[1,9],[4,-4],[4,4],[3,7],[4,6],[3,0],[3,-3],[7,-10],[-1,3],[-3,10],[7,1],[13,-11],[7,-3],[-1,-8],[2,-6],[3,-1],[2,7],[1,-9],[2,-6],[3,-1],[2,8],[7,-2],[4,-2],[-5,15],[0,14],[2,6],[5,-7],[2,5],[2,-10],[3,-8],[3,-2],[5,11],[1,-3],[2,-3],[2,-2],[4,-1],[0,-1],[0,-3],[1,-3],[4,-10],[2,-2],[4,0],[8,-3],[6,-8],[8,-22],[0,-3],[0,-4],[0,-3],[1,-2],[4,0],[1,-1],[2,-3],[6,-20],[3,-5],[11,-24],[2,-8],[3,4],[3,-2],[3,-6],[1,-8],[-1,-9],[-2,-7],[-2,-9],[1,-12],[6,-12],[7,-8],[1,-9],[-1,-27],[2,-16],[0,-4],[-1,-6],[-2,-1],[-2,-2],[-2,-4],[-2,-6],[-2,-24],[0,-6],[1,-21],[4,-12],[6,-8],[6,-12],[2,0],[6,6],[7,1],[14,-3],[3,1],[9,8],[3,3],[10,24],[1,7],[1,4],[1,4],[0,3],[-2,8],[-3,22],[-4,13],[0,8],[9,14],[1,3],[2,3],[2,8],[1,9],[0,8],[-3,-6],[-3,-18],[-3,-4],[-4,0],[-2,1],[-13,16],[-3,7],[-2,10],[3,5],[5,4],[2,4],[-4,5],[6,5],[1,7],[-3,15],[2,3],[6,-4],[9,-9],[0,4],[-1,1],[-3,7],[8,-1],[2,1],[0,4],[-2,11],[1,2],[4,-4],[2,-8],[2,-22],[-4,-2],[-1,-7],[1,-7],[2,-2],[5,10],[2,3],[3,2],[-1,-4],[-3,-12],[3,2],[1,1],[2,-3],[-1,-11],[5,-16],[-2,-10],[2,-5],[1,-6],[1,-7],[0,-7],[2,0],[1,8],[2,6],[2,7],[0,12],[6,-3],[4,-4],[2,-6],[2,-11],[12,2],[21,-16],[19,-8],[9,30],[6,-22],[8,-20],[11,-15],[20,-18],[1,-2],[0,-2],[1,-2],[4,-2],[6,0],[4,-2],[1,-4],[4,-17],[5,-9],[1,-7],[-2,-8],[-5,8],[-1,3],[-2,5],[-1,0],[-1,-2],[-1,-6],[-4,4],[-5,3],[-9,1],[-3,-5],[-4,-11],[-5,-11],[-6,-5],[-5,2],[-10,11],[-15,5],[-6,0],[-3,-4],[-2,-5],[-6,4],[-6,8],[-5,3],[-5,-3],[-3,-8],[-8,-49],[-1,-13],[2,-1],[2,-2],[-1,-3],[-1,-3],[0,-3],[0,-6],[1,-7],[2,-2],[2,2],[3,5],[9,-25],[1,-3],[2,-5],[17,-18],[4,-9],[7,-26],[1,-2],[4,-5],[0,-3],[0,-6],[1,-5],[1,-17],[3,-13],[5,-10],[5,-4],[5,-5],[3,-13],[4,-26],[1,11],[3,-3],[3,-8],[3,-8],[-19,2],[-6,-5],[-2,-15],[-1,-10],[-1,-8],[-1,-8],[1,-9],[5,-17],[-1,-7],[-6,-4],[0,-4],[1,-5],[0,-3],[-1,-5],[6,-6],[2,-1],[4,0],[2,2],[5,8],[1,2],[11,28],[1,5],[1,5],[2,4],[3,2],[3,-2],[3,-8],[3,-2],[3,0],[2,-2],[1,-3],[0,-5],[2,-1],[10,-5],[3,-4],[5,-7],[4,-8],[1,-7],[12,-23],[3,-4],[3,6],[6,24],[1,9],[3,2],[6,-3],[7,-6],[3,-4],[1,-10],[-1,-11],[-2,-7],[-4,4],[-3,-9],[-2,-7],[-2,-16],[-5,-22],[-1,-5],[1,-9],[4,-14],[2,-37],[0,-11],[-3,-71],[-2,-9],[-8,-11],[-2,-8],[1,-10],[1,-6],[0,-5],[-4,-6],[2,-4],[2,-12],[-3,-2],[-5,-7],[-3,-3],[-4,0],[-9,0],[-7,6],[-7,13],[-7,26],[0,6],[-1,1],[-2,-2],[-2,-1],[-4,10],[-6,5],[-2,9],[-2,12],[-6,21],[0,12],[1,12],[1,12],[-2,15],[-4,6],[-4,4],[-6,8],[7,0],[6,4],[4,8],[3,12],[3,-3],[4,-10],[2,-3],[3,-2],[1,0],[2,1],[3,1],[3,2],[1,4],[0,6],[1,6],[3,2],[3,-1],[3,-2],[2,-1],[4,4],[5,9],[3,10],[1,11],[-2,15],[-6,4],[-13,-5],[-5,2],[-8,9],[-5,2],[-3,-5],[-2,-12],[-2,-12],[-1,-8],[-7,-15],[-5,-6],[-6,-4],[-3,-3],[-1,-1],[-2,2],[-3,5],[-1,2],[-2,-3],[-3,-10],[-2,-3],[-1,-1],[-1,-3],[-2,0],[-1,8],[-2,8],[3,2],[2,4],[0,4],[-3,2],[-7,-1],[-1,-1],[1,-4],[1,-5],[0,-6],[-6,12],[3,12],[4,13],[-1,3],[-2,-2],[-3,-1],[-3,-1],[-2,-5],[0,-5],[-2,-5],[-2,-5],[0,-3],[-1,0],[-3,0],[-5,2],[-3,2],[-2,2],[-8,19],[-3,6],[-5,6],[-3,2],[-2,1],[-3,2],[-2,5],[-5,12],[-5,6],[-5,20],[-3,4],[-6,2],[-5,2],[-4,1],[-7,-5],[-8,-10],[-6,-4],[-3,4],[-1,10],[-2,11],[-1,10],[2,8],[-4,21],[8,46],[-2,22],[-4,11],[-10,15],[-5,11],[-1,5],[-1,9],[-2,6],[-7,16],[2,16],[-3,20],[-5,17],[-7,8],[-7,4],[-15,20],[-8,4],[-5,1],[-6,6],[-4,1],[-3,3],[-7,13],[-17,26],[-4,3],[-3,4],[-9,22],[-4,7],[14,24],[-14,32],[-7,12],[-8,9],[0,-4],[-2,4],[2,4],[3,0],[-1,5],[-4,6],[-4,5],[-11,5],[-2,3],[-3,-6],[-4,-1],[-4,4],[-2,7],[0,3],[2,3],[1,3],[-1,5],[-8,18],[-3,4],[-4,3],[-4,1],[-1,4],[0,8],[-2,5],[-3,-4],[-2,6],[-3,9],[-1,3],[-1,2],[-6,-16],[-15,2],[-7,5],[-5,9],[-1,-8],[2,-9],[4,-8],[3,-3],[1,-5],[14,-40],[3,-11],[-1,-7],[-1,-9],[0,-12],[2,-22],[-6,3],[-1,-11],[2,-27],[1,-14],[5,-13],[10,-21],[20,-25],[4,-9],[-1,-10],[-7,6],[-11,19],[1,-9],[7,-24],[13,-30],[3,-10],[2,-12],[3,-24],[1,-22],[0,-24],[1,-7],[1,-4],[1,-4],[1,-4],[0,-12],[0,-7],[0,-5],[-2,-2],[-2,-2],[-3,-2],[-1,-4],[-3,-7],[-6,-7],[-7,-6],[-5,-2],[-4,6],[-19,32],[1,12],[3,21],[0,9],[-5,34],[-27,76],[-1,4],[0,8],[-1,4],[-6,11],[-1,5],[-8,7],[-2,8],[-4,10],[-17,0],[0,8],[-5,4],[-9,1],[-4,5],[-1,5],[-1,10],[-2,6],[-2,5],[-15,51],[-7,17],[-9,14],[-2,-12],[-4,3],[-5,8],[-4,5],[-5,-1],[-1,1],[-10,20],[-3,4],[-4,2],[-3,1],[-3,2],[-6,10],[-3,5],[-3,3],[-9,5],[-4,9],[-3,11],[-4,9],[-3,0],[-10,8],[-4,4],[-2,-8],[-5,-6],[-1,-8],[-2,-3],[-13,-7],[-2,-3],[-4,-9],[-2,-1],[-5,3],[-2,0],[-3,-6],[-8,-5],[-5,-8],[-2,-2],[-2,-1],[-5,-1],[-1,0],[-3,-4],[-8,-19],[-6,-14],[2,-41],[-2,-15],[3,0],[2,-1],[3,-3],[-8,-19],[-1,-3],[-12,5],[-4,1],[-5,-6],[-16,-25],[-5,-12],[-5,3],[-4,5],[-1,2],[-7,7],[-4,1],[-5,1],[-2,1],[-3,3],[-3,3],[-4,1],[-9,-5],[-4,-3],[-4,-5],[-3,2],[-7,3],[-2,3],[-1,6],[1,3],[1,3],[1,7],[1,14],[1,10],[0,10],[-4,22],[-1,2],[-5,8],[-4,3],[-3,2],[-3,-2],[-22,-52],[-2,-3],[-2,3],[-1,7],[-1,7],[1,3],[3,3],[1,7],[1,7],[1,3],[4,1],[2,3],[1,5],[0,8],[-5,9],[-1,3],[0,7],[1,12],[1,7],[0,10],[-1,10],[-2,8],[-3,6],[-5,4],[-25,6],[-11,6],[-6,1],[-6,-4],[-2,-8],[1,-11],[4,-12],[2,-12],[-5,-2],[-12,4],[-2,-8],[1,-11],[2,-12],[2,-12],[-2,-6],[-4,5],[-6,16],[-2,21],[-1,50],[-4,22],[4,2],[3,6],[2,6],[-1,3],[-3,3],[-1,9],[1,35],[0,16],[-4,13],[-7,4],[0,5],[4,4],[0,6],[-2,5],[-4,5],[2,0],[2,1],[4,3],[0,4],[-4,7],[2,11],[5,11],[2,10],[2,9],[4,5],[11,4],[4,3],[5,5],[3,7],[1,7],[2,3],[7,6],[2,3],[6,20],[24,49],[3,3],[3,0],[6,-1],[2,2],[5,11],[7,11],[3,8],[1,11],[-1,14],[-6,20],[-3,13],[-2,24],[-1,8],[-9,23],[-1,7],[-2,4],[-13,11],[-1,3],[0,4],[-1,3],[-3,2],[-27,2],[-17,6],[-2,1],[-2,1],[-4,4],[-3,5],[-1,7],[0,20],[0,10],[-2,9],[0,-20],[0,-5],[-1,-2],[-3,-6],[-1,4],[-1,1],[-2,-5],[4,40],[-1,9],[-5,1],[-2,-11],[-1,-27],[-6,7],[-2,-8],[0,-6],[0,-23],[-2,-38],[0,-12],[11,-26],[1,-6],[-1,-7],[-1,-9],[5,-42],[2,-27],[-3,-23],[-7,-15],[-10,-4],[-3,2],[-2,2],[-2,1],[-3,-1],[-1,-2],[0,-4],[-2,-4],[-4,-2],[-1,2],[-1,4],[-1,5],[-13,7],[-2,3],[-5,14],[-2,17],[1,35],[-1,20],[-2,11],[-12,16],[-3,-4],[-3,0],[-2,3],[-1,5],[-2,0],[-9,26],[-3,19],[5,8],[3,2],[-2,5],[-6,7],[1,6],[2,6],[3,5],[2,5],[2,-1],[1,2],[2,5],[1,7],[-5,1],[-2,1],[-1,3],[0,7],[-1,3],[-2,1],[-4,-1],[-3,5],[-2,8],[-3,4],[-4,-8],[1,-14],[-1,-21],[-2,-19],[-4,-11],[-4,0],[-5,2],[-4,4],[-2,4],[-1,7],[-7,5],[-3,6],[2,2],[1,2],[1,4],[1,5],[-1,-2],[-4,-3],[-7,45],[-2,22],[2,54],[-1,24],[-9,85],[-3,5],[-2,3],[0,6],[1,10],[0,13],[-1,5],[-6,18],[-5,20],[-2,9],[-16,32],[-3,11],[1,5],[4,5],[1,4],[0,5],[0,4],[-2,9],[5,-7],[6,3],[5,9],[1,13],[0,5],[-1,4],[-2,4],[-1,1],[-1,3],[-1,7],[-1,7],[-2,4],[-1,-2],[-1,-6],[-5,22],[-1,8],[1,7],[4,15],[1,8],[-1,18],[-5,8],[-5,8],[-4,15],[6,3],[1,9],[-2,25],[1,10],[2,9],[0,9],[-1,12],[-4,25],[-3,12],[-4,8],[-7,4],[-5,-8],[-3,-9],[-4,1],[-1,-2],[-3,-6],[-4,17],[0,68],[1,10],[4,25],[1,12],[-1,5],[-4,9],[-1,6],[0,19],[0,7],[5,38],[2,25],[2,12],[3,9],[3,6],[2,0],[3,-1],[1,1],[5,6],[1,2],[4,2],[6,2],[7,-4],[3,-10],[0,-12],[-7,-55],[4,-5],[12,-7],[3,-3],[2,-5],[8,-17],[3,-4],[6,0],[3,-1],[4,-4],[5,-11],[2,1],[1,-2],[2,-38],[2,-12],[4,-8],[5,-6],[13,-7],[6,-1],[6,3],[5,7],[3,2],[10,2],[4,-6],[-2,-17],[3,6],[3,13],[3,6],[2,-2],[3,-2],[3,2],[2,6],[-2,4],[-4,-1],[-4,-3],[-2,0],[1,8],[10,17],[2,9],[2,7],[5,11],[1,7],[0,24],[-1,14],[-3,13],[-9,24],[0,-12],[-2,5],[-1,3],[-2,4],[-7,97],[-3,23],[2,30],[-3,14],[-4,14],[-2,11],[3,6],[0,-3],[1,-1],[2,0],[3,0],[0,4],[-2,7],[1,13],[1,13],[5,21],[-1,13],[-2,13],[-1,13],[1,13],[0,5],[1,6],[2,7],[2,4],[2,3],[3,5],[21,66],[2,12],[1,15],[-6,102],[0,2],[-3,9],[-1,5],[0,9],[3,25],[-1,34],[1,4],[5,11],[2,7],[1,5],[1,6],[0,6],[-3,21],[-9,44],[0,13],[-12,6],[-5,5],[-2,11],[6,72],[2,5],[6,2],[5,4],[3,9],[1,11],[0,8],[-2,9],[-3,7],[-2,6],[2,9],[7,16],[1,9],[1,13],[-1,25],[0,8],[7,19],[6,26],[1,7],[0,10],[0,13],[-1,13],[-2,7],[1,8],[16,67],[-1,-1],[-1,3],[-1,3],[0,3],[1,2],[1,1],[2,1],[0,2],[1,8],[9,31],[3,19],[2,23],[0,25],[-3,22],[-3,16],[-1,10],[3,9],[6,12],[5,9],[5,2],[12,-5],[5,1],[13,9],[5,2],[5,5],[1,12],[0,13],[1,11],[4,8],[5,5],[6,1],[5,-4],[4,-11],[7,-24],[5,-8],[5,0],[6,3],[4,6],[2,5],[2,5],[11,11],[4,3],[3,0],[6,-1],[3,1],[2,3],[4,6],[3,3],[3,-2],[2,-3],[3,-2],[7,-1],[3,-2],[2,-5],[1,-5],[2,-4],[14,-14],[7,-14],[27,-29],[4,-6],[4,-5],[9,-6],[21,-28],[2,-2],[4,-1],[1,-1],[2,-4],[2,-5],[2,-5],[13,-9],[6,-15],[4,-16],[6,-11],[0,4],[-4,9],[0,12],[2,8],[5,-2],[3,-6],[50,-40],[12,-5],[6,0],[16,4],[3,3],[15,17],[11,35],[3,6],[6,2],[2,6],[1,20],[7,42],[2,7],[12,2],[6,0],[4,-4],[3,-9],[1,-24],[1,-10],[2,-6],[8,-14],[3,-3]],[[83402,53589],[1,-9],[-4,-37],[-2,-23],[-1,-13],[-3,-8],[-4,3],[-3,4],[-2,6],[-1,9],[2,18],[0,8],[-2,5],[-2,-1],[0,-4],[-1,-5],[-1,-3],[-1,0],[-5,0],[-2,3],[-2,5],[-2,7],[-1,6],[-3,-9],[0,-19],[-3,-8],[-4,-4],[-4,2],[-4,3],[-3,3],[-5,-2],[-3,-5],[-1,-7],[-2,-7],[-2,-1],[-3,0],[-2,0],[-1,-5],[-2,-18],[-4,-8],[-3,2],[-3,4],[-3,2],[-2,-4],[-4,-11],[-3,-2],[-8,0],[-4,-3],[-2,-3],[-3,0],[-3,6],[0,8],[0,20],[-2,9],[3,5],[2,3],[10,6],[8,9],[2,4],[2,1],[10,12],[3,15],[3,5],[8,2],[7,6],[2,1],[3,2],[4,10],[3,1],[2,-2],[2,-1],[3,2],[0,3],[1,11],[2,4],[7,10],[3,7],[3,4],[6,5],[6,7],[3,3],[2,-1],[2,-5],[1,-6],[0,-31],[1,-5],[2,0],[2,2],[2,1],[2,-4]],[[83496,54248],[2,-2],[1,-5],[1,-6],[1,-5],[-1,-12],[-6,-40],[-1,-6],[-2,-5],[-3,-2],[-4,-1],[-11,4],[-3,3],[-2,6],[1,4],[3,3],[4,0],[2,3],[2,7],[2,7],[0,6],[1,4],[4,14],[2,12],[2,6],[2,4],[3,1]],[[83970,54398],[10,-12],[1,-6],[-4,-8],[-5,-4],[-13,-1],[-6,-6],[-2,-7],[-3,-9],[-2,-9],[-1,-9],[-2,-27],[-3,-10],[-6,-4],[-6,-1],[-6,-2],[-18,-15],[-5,-2],[-12,0],[-9,-3],[-2,1],[0,13],[-1,5],[-1,4],[-19,35],[0,31],[-2,11],[-5,5],[-6,1],[-5,5],[-3,16],[1,15],[4,9],[4,5],[28,5],[3,2],[2,9],[11,10],[5,10],[2,4],[5,2],[8,1],[2,-1],[2,-2],[4,-9],[2,-3],[3,-3],[7,-3],[4,-1],[0,-2],[2,-6],[2,-5],[3,-3],[13,-4],[2,-3],[2,-3],[1,-3],[2,-3],[3,-3],[7,-4],[2,-3]],[[82926,54619],[-4,4],[-1,-6],[3,-14],[-3,-5],[-4,0],[-8,5],[-8,2],[-3,4],[-2,10],[0,7],[1,5],[2,5],[5,3],[5,-2],[3,2],[3,3],[4,1],[4,-2],[2,-5],[3,-13],[-2,-4]],[[82523,55242],[-1,-12],[-1,-5],[1,-3],[3,-8],[-2,-4],[-2,-3],[-2,-4],[0,-9],[3,-21],[1,-12],[0,-3],[-2,-6],[0,-2],[0,-11],[0,-1],[2,-4],[0,-2],[-1,-1],[-1,-1],[-2,-5],[0,-1],[-1,-6],[-3,-8],[-5,-6],[-4,-2],[3,-10],[-3,-4],[-4,1],[-4,4],[2,10],[-2,9],[-6,19],[-5,30],[0,3],[2,80],[3,-4],[0,-6],[0,-6],[2,-4],[4,0],[2,7],[1,9],[2,4],[12,5],[5,0],[3,-7]],[[82508,55248],[-3,6],[-2,6],[-1,5],[-4,3],[9,16],[5,4],[3,-7],[3,-19],[0,-4],[-2,-2],[-3,-1],[-3,-2],[-2,-5]],[[82546,55313],[6,-1],[4,-6],[0,-7],[-5,-3],[-7,4],[-3,8],[1,6],[4,-1]],[[82590,55399],[8,-12],[0,-17],[-2,-18],[3,-15],[-2,-7],[-3,-6],[-3,-2],[-3,3],[-8,-8],[-3,13],[-1,21],[-2,15],[2,8],[1,18],[1,7],[3,-3],[2,0],[2,2],[3,4],[0,-2],[0,-1],[1,0],[1,0]],[[82567,55394],[3,4],[2,0],[1,-5],[-1,-7],[-5,-11],[-8,-11],[-7,-1],[-2,15],[2,7],[15,26],[-1,-8],[0,-2],[-1,-2],[2,-5]],[[84661,55918],[3,-4],[3,-10],[1,-12],[-2,-16],[1,-10],[-1,-9],[-4,-8],[-2,-2],[-2,-2],[-2,1],[-2,9],[-2,0],[-3,1],[-2,1],[-17,17],[-7,14],[-3,20],[3,21],[8,14],[9,5],[11,-7],[5,-14],[2,-7],[3,-2]],[[84360,55897],[1,0],[3,-4],[2,-5],[-1,-2],[-4,-10],[-1,-3],[-3,-1],[-8,1],[-2,-1],[-1,-2],[-1,-3],[0,-4],[-1,-5],[-3,0],[-4,3],[-6,0],[-4,2],[-5,4],[-23,34],[-2,8],[1,7],[7,14],[5,-6],[6,2],[7,8],[8,14],[2,3],[2,4],[0,9],[1,7],[4,3],[4,0],[4,-3],[2,-8],[4,-18],[3,-4],[4,-3],[-1,-8],[-3,-8],[-1,-4],[0,-7],[1,-4],[3,-10]],[[85045,56291],[3,-7],[1,-10],[0,-8],[-7,-5],[-4,-8],[-3,-3],[-2,-1],[-8,1],[-11,9],[-3,0],[2,-12],[-4,6],[-5,10],[-7,20],[0,2],[1,3],[0,3],[-1,4],[-1,2],[-2,0],[-2,1],[-2,5],[4,0],[3,0],[3,3],[3,6],[-3,2],[-4,5],[-2,6],[1,9],[17,57],[1,6],[0,5],[-1,5],[0,6],[2,6],[5,8],[3,-2],[12,-59],[3,-32],[0,-7],[-1,-6],[-4,-8],[-2,-6],[5,-1],[4,-3],[3,-5],[3,-7]],[[84601,56315],[-5,-5],[6,-13],[15,-23],[-7,-30],[-1,-8],[-3,-3],[-7,0],[-7,3],[-4,2],[-1,5],[0,6],[-1,5],[-4,1],[-1,-4],[-9,-19],[-3,-3],[-3,-2],[-3,-4],[-1,-7],[-1,-8],[0,-6],[-1,-6],[-2,-6],[-8,-13],[-12,-11],[-13,-7],[-9,-2],[-11,1],[-43,-6],[-36,13],[-12,9],[-6,8],[-2,10],[1,12],[1,12],[1,11],[-3,7],[-5,2],[-6,0],[-5,2],[-2,10],[1,14],[2,13],[5,24],[4,8],[9,18],[2,9],[1,7],[2,2],[4,-3],[2,2],[2,4],[1,6],[2,4],[9,7],[12,6],[12,11],[5,19],[0,12],[1,9],[4,7],[8,3],[0,5],[-1,5],[1,5],[2,4],[4,5],[1,3],[5,12],[2,4],[5,4],[10,5],[12,0],[19,5],[5,-6],[1,-24],[4,5],[4,15],[4,5],[1,-8],[2,-11],[3,-8],[3,2],[13,-24],[4,-4],[8,1],[3,-2],[5,-7],[8,-9],[3,-6],[-1,-15],[0,-10],[-1,-6],[-3,9],[-1,-11],[0,-9],[-1,-5],[-2,-11],[4,-8],[4,-11],[0,-10],[-5,-4]],[[84921,56340],[1,-11],[-2,-8],[-4,-4],[-6,2],[-4,7],[-1,9],[0,10],[-1,11],[-2,4],[-8,5],[-3,7],[3,0],[1,0],[-3,4],[-1,2],[0,3],[2,3],[0,4],[-7,0],[-3,10],[1,14],[3,13],[1,-5],[2,-2],[2,1],[1,8],[-1,3],[-4,9],[-1,6],[-2,0],[-1,-7],[-2,-1],[-2,3],[-3,1],[-2,-3],[-2,-5],[-3,-5],[-4,1],[-2,6],[0,8],[-1,7],[-4,3],[0,3],[0,16],[0,5],[4,4],[2,11],[1,13],[-2,9],[2,2],[2,0],[2,-2],[2,-4],[-1,9],[-2,8],[0,8],[3,7],[-1,2],[-1,2],[-1,2],[-1,3],[1,9],[-2,11],[-1,9],[7,3],[3,1],[2,4],[0,13],[-1,5],[-1,3],[0,2],[2,5],[1,1],[2,1],[2,-2],[1,-7],[2,-1],[3,1],[2,3],[1,5],[1,23],[2,15],[1,6],[3,3],[3,1],[2,-3],[4,-14],[4,-19],[-1,-21],[-5,-41],[-1,-15],[-1,-5],[-1,1],[-2,1],[-2,-2],[0,-8],[2,-5],[4,-7],[2,-8],[-3,-9],[2,-4],[-3,-4],[1,-6],[3,-4],[5,2],[-2,-16],[-1,-11],[2,-8],[4,-12],[2,-7],[1,-7],[-1,-8],[-2,-9],[-2,-8],[-2,-3],[1,-5],[2,-23],[-3,-10],[2,-10],[5,-9],[3,-8]],[[83319,56749],[6,-5],[8,-8],[3,-9],[-6,-6],[0,-4],[1,-5],[-3,-6],[-4,-1],[-5,4],[-1,-4],[0,-3],[-1,-2],[0,-3],[-7,19],[-3,5],[1,-12],[2,-11],[0,-12],[-1,-9],[-2,-2],[-4,1],[-2,0],[-2,-6],[-1,-3],[-2,-2],[-5,-1],[-4,-2],[-4,-5],[-4,-1],[-5,6],[-2,9],[-1,13],[0,25],[-3,-3],[-3,2],[-1,3],[0,2],[12,18],[2,7],[7,25],[2,6],[2,3],[2,2],[3,-1],[8,-11],[8,-7],[9,-6]],[[84086,56827],[7,-24],[0,-32],[-5,-33],[-9,-47],[-6,-20],[-9,-16],[-11,-7],[3,17],[-3,-1],[-4,-7],[-2,-5],[-2,-2],[-5,-8],[-3,-2],[-2,2],[-1,6],[-2,12],[0,3],[1,7],[-1,3],[-1,1],[-4,2],[0,1],[-2,1],[-2,6],[-1,6],[4,3],[3,0],[3,0],[1,3],[1,7],[1,5],[5,4],[2,5],[-5,2],[-2,10],[0,13],[2,10],[3,8],[5,18],[3,8],[4,5],[5,2],[4,4],[3,23],[3,8],[4,7],[3,8],[8,-13],[4,-3]],[[84325,56884],[1,-3],[-2,-28],[-2,-11],[-8,-23],[-5,-24],[-8,-78],[-4,-13],[-23,-53],[-3,-10],[-4,-17],[-5,-26],[-1,-13],[-1,-39],[-1,-12],[-9,-36],[-1,-14],[0,-14],[-1,-12],[-2,-11],[-12,-40],[-3,-14],[-2,-4],[-2,-4],[-1,-3],[-3,-26],[-8,-19],[-4,-10],[-2,-14],[4,-101],[-1,-14],[-1,-6],[-1,-9],[-2,0],[-2,1],[-2,-3],[-1,-15],[12,-17],[-2,-16],[-2,12],[-5,-6],[-3,-12],[5,-7],[8,-2],[3,-6],[0,-10],[2,-14],[4,-8],[5,-8],[6,-9],[4,-27],[5,-12],[6,-10],[4,-11],[2,-24],[-3,-27],[-5,-25],[-16,-47],[-1,-9],[-2,-8],[-19,-25],[-4,-2],[-10,0],[-3,-1],[-6,-5],[-6,-3],[-4,-5],[-3,-1],[-12,7],[-9,20],[-7,24],[-11,58],[-2,40],[-1,11],[-3,10],[-7,14],[-5,7],[-5,3],[-18,2],[-6,2],[-12,14],[-4,2],[-2,2],[-3,5],[-2,6],[-1,4],[-4,2],[-3,0],[-3,2],[-1,3],[-2,8],[-6,14],[-5,9],[-6,28],[-4,6],[-3,3],[-2,5],[-8,37],[-3,8],[2,6],[-1,5],[-5,10],[-1,-3],[-3,-3],[-1,-2],[0,8],[2,15],[0,9],[-2,-2],[-4,-4],[-2,-2],[0,23],[2,22],[0,19],[-4,17],[0,4],[3,6],[10,40],[5,27],[4,5],[6,1],[11,6],[7,0],[18,-7],[5,-5],[4,5],[14,7],[5,6],[15,33],[7,10],[6,-7],[5,6],[7,19],[2,11],[-1,15],[-3,25],[-2,25],[4,72],[-3,26],[-11,47],[-2,25],[3,10],[5,5],[5,3],[3,4],[1,6],[10,21],[6,30],[1,6],[10,37],[1,12],[-1,38],[-1,3],[-4,7],[-1,3],[1,12],[0,5],[1,5],[2,7],[8,18],[3,3],[12,2],[6,2],[5,4],[23,31],[12,11],[13,-1],[1,-2],[0,-4],[2,-4],[2,-2],[5,0],[1,0],[3,-5],[5,-9],[4,-3],[3,1],[7,7],[3,0],[4,-4],[-1,-4],[-1,-6],[0,-6],[2,-3],[3,2],[2,5],[3,4],[4,2],[3,-1],[3,-3],[9,-5],[6,-4],[3,-9],[2,-24],[2,-5],[4,-11],[0,-1],[1,0],[1,-1],[1,-2]],[[84457,56886],[-1,-15],[-5,-23],[-2,-13],[1,-24],[8,-48],[1,-22],[-1,0],[-2,-2],[-2,-3],[-1,-3],[0,-3],[2,-1],[0,-4],[0,-46],[-1,-11],[-8,-37],[0,-5],[3,-9],[-1,-5],[-6,-9],[-1,7],[-1,4],[-2,1],[-2,-3],[0,-6],[0,-21],[-3,-2],[-15,-17],[-5,-7],[-6,-20],[-3,-4],[-7,-1],[-7,-2],[-4,-6],[-5,-16],[-15,-25],[-2,-9],[-1,-13],[-1,-9],[-3,-7],[-3,-6],[-3,-2],[-3,-3],[-2,-3],[-1,-4],[-1,-4],[-1,-5],[0,-5],[0,-47],[-4,-31],[0,-12],[-2,-5],[-2,-3],[-3,-1],[-1,-3],[-26,-126],[-1,-23],[-5,-29],[-2,-11],[-2,-5],[-5,-7],[-3,-4],[-2,-6],[-4,-14],[-14,-36],[-4,-6],[-4,-5],[-4,0],[-2,13],[-2,33],[0,13],[14,165],[11,55],[1,11],[1,15],[-1,3],[-6,6],[-1,3],[1,18],[1,4],[3,3],[1,-2],[1,-4],[1,0],[1,4],[1,5],[0,13],[1,15],[4,10],[10,17],[10,23],[4,14],[3,27],[13,37],[5,38],[2,9],[5,10],[23,66],[2,10],[0,2],[1,3],[2,4],[0,7],[-2,19],[1,7],[2,12],[7,18],[3,24],[4,13],[4,12],[11,25],[5,17],[18,110],[5,19],[-1,13],[-3,21],[2,10],[3,8],[2,9],[0,14],[2,0],[1,-5],[1,-2],[4,-5],[-3,31],[-2,7],[-1,9],[2,11],[3,11],[14,38],[7,11],[8,-5],[0,-4],[-1,-17],[-4,-17],[-1,-11],[-1,-22],[-2,-11],[-8,-21],[-4,-10],[3,-3],[1,-4],[0,-4],[1,-2],[6,1],[2,1],[3,3],[-1,-12],[3,-35],[-1,-13],[-2,-19],[1,-11],[3,-14],[1,-6],[-1,-6],[-4,-14],[-1,-6]],[[84388,57090],[3,-8],[2,-6],[-1,-4],[-18,-4],[-1,-2],[-3,9],[-7,38],[-1,14],[1,7],[2,6],[4,12],[4,5],[2,-2],[2,-6],[8,-47],[3,-12]],[[83241,56719],[12,-12],[3,-8],[-4,-14],[-2,-2],[-7,-4],[-3,-2],[-5,-19],[-3,-3],[-12,-23],[-5,-15],[-4,-4],[-6,-1],[-11,0],[-3,0],[-5,4],[-3,0],[-3,-3],[-9,-11],[-6,-3],[-5,-3],[-6,-9],[-20,-40],[-8,-24],[-5,-25],[-5,-56],[-7,-17],[-10,-9],[-13,-7],[-3,-3],[-5,-7],[-3,-2],[-3,-1],[-7,1],[-3,0],[-3,-3],[-6,-7],[-3,-3],[-3,-1],[-6,-2],[-13,-2],[-8,-4],[-7,-7],[-8,-12],[-7,3],[-6,-6],[-5,-13],[-2,-15],[2,-18],[5,-25],[3,-16],[-2,-32],[-4,-3],[-4,3],[-4,6],[-1,8],[1,11],[-1,3],[-5,1],[-3,-4],[0,-9],[1,-11],[-1,-9],[3,-3],[2,-5],[0,-5],[-1,-7],[7,2],[5,-8],[-1,-9],[-7,-1],[0,-9],[-2,-12],[-2,-11],[-3,-7],[-1,-5],[-1,-5],[-1,-3],[-6,-2],[-1,-3],[-22,-73],[-9,-21],[-2,-6],[-1,-11],[-3,-11],[-11,-30],[-1,-3],[-11,-14],[-2,-2],[-4,-5],[-14,-31],[-5,-16],[-3,-6],[-5,-2],[-11,0],[-3,-2],[-6,-8],[-4,-3],[-17,-1],[-4,-5],[-3,-3],[-7,-7],[-1,-2],[-2,-18],[-4,-16],[0,-3],[0,-7],[0,-2],[-1,-1],[-2,0],[-2,-1],[0,-5],[-1,-11],[-3,-14],[-6,-26],[-12,-38],[-4,-6],[-25,-28],[-19,-33],[-19,-42],[-5,-8],[-6,-3],[-6,-1],[-4,-3],[-3,-4],[-5,-4],[-6,-1],[-16,5],[-7,-6],[-2,-14],[0,-24],[-2,-13],[-8,-21],[-1,-13],[-1,-6],[-3,-4],[-3,-1],[-1,3],[-1,5],[-4,1],[-26,-17],[-9,-9],[-7,-11],[-1,-3],[-2,-10],[-1,-3],[-10,-6],[-2,-10],[-4,-8],[-7,-12],[-7,-17],[-2,2],[-1,16],[1,7],[3,12],[1,12],[2,5],[2,4],[1,3],[0,6],[0,12],[0,9],[0,7],[0,3],[1,3],[2,3],[2,15],[2,11],[6,20],[0,1],[-2,12],[5,-3],[2,9],[1,12],[3,6],[3,3],[4,7],[4,10],[3,8],[-4,0],[6,19],[5,10],[11,7],[5,8],[4,11],[20,64],[6,15],[22,40],[5,17],[2,13],[2,9],[4,5],[6,2],[4,6],[2,1],[1,-5],[1,-4],[3,-1],[3,1],[3,2],[3,5],[2,5],[3,20],[1,1],[1,3],[1,4],[-1,5],[-1,5],[3,7],[12,15],[3,3],[5,6],[6,28],[4,6],[12,-3],[6,1],[6,6],[0,-7],[0,-6],[1,-4],[3,-3],[3,6],[3,6],[5,16],[3,6],[20,28],[2,3],[1,5],[-2,13],[1,6],[4,8],[7,6],[6,8],[6,34],[17,24],[6,21],[8,15],[1,4],[1,3],[1,3],[2,4],[0,6],[0,13],[1,6],[3,8],[3,-3],[3,2],[5,9],[2,2],[2,1],[2,2],[1,10],[1,2],[2,0],[2,3],[2,5],[22,35],[2,7],[3,16],[13,26],[3,10],[1,7],[1,9],[2,10],[11,28],[2,6],[-3,13],[5,9],[14,14],[1,6],[10,44],[2,6],[2,-19],[0,-9],[-3,-4],[-1,-4],[4,-8],[6,-4],[3,6],[1,5],[2,4],[2,3],[1,2],[2,7],[0,3],[-1,2],[-5,20],[-1,9],[-1,12],[2,10],[1,3],[6,-1],[3,2],[6,8],[4,2],[8,-3],[4,1],[5,6],[2,9],[1,10],[-1,10],[-2,8],[2,1],[0,2],[1,-1],[2,-2],[3,6],[4,5],[4,3],[5,2],[-1,9],[2,8],[1,7],[-4,4],[-3,-2],[-3,-4],[-4,-1],[-2,7],[1,7],[3,9],[3,8],[3,5],[4,1],[5,-2],[4,-3],[4,-4],[2,7],[0,7],[1,4],[6,2],[-2,8],[-2,4],[-2,4],[1,8],[1,4],[6,4],[2,5],[0,-7],[-1,-2],[-1,-4],[2,-7],[2,-35],[2,-4],[5,6],[8,16],[3,13],[1,3],[2,3],[3,1],[2,2],[3,13],[9,5],[4,9],[-3,6],[-3,7],[-3,7],[1,8],[6,-4],[5,5],[6,10],[2,9],[8,79],[-1,8],[-4,9],[-1,3],[-1,5],[-1,4],[-2,2],[-2,-1],[-3,-7],[-2,0],[-3,6],[-1,8],[0,16],[-1,8],[-4,7],[-4,4],[-4,4],[8,21],[1,3],[-2,6],[-4,4],[-2,4],[3,10],[-4,6],[2,5],[4,-1],[1,-14],[2,0],[1,3],[1,5],[1,-4],[2,-3],[1,0],[2,3],[2,0],[-1,-7],[-1,-2],[-2,-3],[4,-16],[-6,0],[2,-6],[3,-2],[3,1],[4,3],[-2,-13],[1,-5],[3,-5],[3,-10],[2,0],[0,5],[2,0],[1,-12],[5,-6],[5,-4],[2,-9],[1,-6],[2,-4],[2,0],[2,5],[2,-5],[2,-6],[2,-7],[0,-4],[1,-3],[4,0],[3,3],[0,5],[-1,5],[-2,5],[-3,18],[-2,4],[1,9],[2,8],[2,4],[-2,6],[-4,7],[-5,5],[-4,2],[-5,0],[-4,2],[-5,6],[-2,12],[1,6],[2,11],[1,3],[-3,1],[-3,-1],[-4,1],[-2,5],[1,35],[1,8],[0,5],[2,0],[1,-7],[1,-5],[3,-2],[3,1],[-2,13],[-7,24],[-1,16],[3,7],[3,-8],[4,-13],[5,-7],[2,-1],[3,-2],[3,-1],[2,4],[1,7],[0,17],[4,15],[-2,7],[-2,4],[-1,-1],[-5,12],[-1,8],[-2,9],[4,-1],[4,7],[2,9],[2,9],[0,13],[-2,28],[1,10],[1,3],[1,2],[1,3],[0,4],[1,2],[1,0],[2,-2],[0,-2],[4,9],[2,7],[1,6],[1,17],[1,8],[2,6],[3,2],[2,-6],[1,-9],[1,-8],[0,-10],[0,-4],[1,-6],[1,-7],[2,-5],[2,-4],[1,2],[2,3],[1,3],[4,-21],[1,-24],[-2,-25],[-5,-24],[-7,-24],[-1,-12],[4,-14],[6,-13],[3,-8],[3,-26],[-1,-5],[-3,-3],[-6,7],[-4,2],[-2,-3],[-3,-17],[0,-7],[0,-7],[2,-13],[0,-7],[-1,-6],[-1,-11],[0,-7],[1,-6],[2,-9],[1,-13],[1,-6],[2,-5],[3,-2],[4,2],[2,2],[2,3],[1,2],[3,1],[1,1],[2,2],[2,-8],[0,-8],[-2,-8],[0,-7],[1,-18],[0,-22],[-1,-12],[-1,-9],[0,-6],[4,-4],[6,1],[4,5],[3,0],[4,-14],[-2,2],[-3,0],[-2,0],[-2,-2],[1,-5],[1,-3],[0,-4],[0,-4],[4,-8],[2,-24],[2,-11]],[[83296,57289],[2,-21],[-2,-23],[-4,-21],[-6,-16],[-3,5],[0,8],[1,8],[2,7],[-3,1],[-5,3],[-2,0],[-2,-7],[-2,-5],[-3,-3],[0,2],[-2,6],[-3,5],[-2,2],[-3,3],[-1,11],[-4,3],[3,10],[4,-5],[3,-11],[5,-6],[3,4],[1,10],[0,18],[2,-6],[3,-10],[2,-4],[2,5],[1,2],[2,-2],[1,-5],[2,9],[1,9],[-1,7],[-4,3],[3,4],[3,3],[3,1],[3,-4]],[[84797,56583],[1,-13],[-1,-14],[-3,-10],[-9,-4],[-19,17],[-5,-2],[-2,-12],[0,-18],[2,-16],[2,-9],[-9,7],[-8,18],[-5,23],[-2,19],[-5,12],[0,2],[-1,3],[0,22],[-3,6],[-6,5],[-5,-1],[-3,-10],[3,-18],[2,-80],[7,-38],[2,-25],[3,-26],[0,-12],[-3,-5],[-4,3],[-15,25],[-1,3],[-1,8],[-4,3],[-4,1],[-2,2],[-5,10],[-2,7],[-3,6],[-7,2],[-12,0],[-6,3],[-4,5],[-4,20],[2,23],[4,24],[2,22],[0,14],[-2,16],[-4,13],[-6,6],[-3,6],[-1,15],[0,16],[2,27],[1,5],[1,5],[4,9],[1,4],[0,27],[1,12],[7,36],[1,12],[0,27],[-6,57],[-2,6],[-9,18],[-2,4],[-1,11],[-3,11],[-7,20],[-12,19],[-2,4],[-1,10],[-5,4],[-5,1],[-6,-1],[-5,-4],[-4,-7],[0,-9],[3,-10],[1,-12],[-3,-13],[-4,-12],[-3,-6],[-3,-3],[-2,1],[-11,16],[0,2],[-5,-3],[-1,2],[-2,16],[-1,3],[-3,-2],[-4,0],[-3,-2],[-1,3],[0,12],[1,7],[4,11],[1,10],[-1,11],[-2,5],[-3,4],[-2,8],[-1,10],[2,9],[2,7],[2,9],[2,8],[1,4],[-1,5],[-1,7],[-2,37],[0,54],[-5,-1],[-5,6],[-4,11],[-1,11],[0,5],[5,6],[0,5],[-4,3],[-3,3],[-2,4],[3,4],[-1,5],[-2,6],[-2,7],[-1,9],[-4,13],[-4,36],[1,10],[1,0],[6,6],[1,2],[3,-4],[7,-20],[17,-29],[5,-12],[10,-37],[1,25],[2,12],[3,-2],[9,-13],[3,-8],[7,-37],[7,-16],[10,-9],[13,-1],[10,6],[8,10],[14,25],[11,31],[4,5],[2,-1],[6,-5],[3,-1],[1,1],[0,5],[1,1],[2,-1],[1,-2],[0,-3],[0,-1],[7,1],[2,-1],[3,-4],[6,-11],[2,-2],[2,-6],[-1,-14],[-1,-14],[-3,-9],[0,-8],[0,-7],[1,-3],[1,-1],[0,-6],[1,-3],[1,-2],[1,-1],[1,-1],[2,-2],[3,-3],[2,0],[2,-2],[1,-15],[1,0],[1,5],[1,7],[2,0],[0,-18],[0,-6],[-1,-6],[-2,-9],[-1,-4],[1,-7],[2,-11],[1,-6],[-1,-19],[5,-55],[-1,-25],[-11,-73],[-2,-28],[2,-25],[4,-7],[17,-17],[6,-4],[3,-3],[1,-5],[2,-17],[11,-27],[1,-5],[5,-5],[1,-12],[-3,-30],[0,-7],[3,-14],[1,-7],[-1,-23],[1,-8],[2,-8],[3,-12],[4,-7],[2,7],[2,0],[3,-9],[2,-9],[2,-11],[0,-16]],[[84213,57269],[1,-8],[-1,-8],[-2,-9],[-2,-9],[2,-17],[-1,-9],[-3,-11],[0,-3],[0,-2],[-5,-2],[-1,-3],[-1,-4],[0,-4],[0,-1],[0,-16],[-2,-12],[-1,-9],[1,-21],[1,-6],[2,-3],[2,-3],[1,-9],[-2,-8],[-5,-8],[-1,-10],[-6,6],[-7,4],[-6,-3],[-3,-32],[-4,-11],[-5,-7],[-7,-6],[1,-7],[-1,-5],[-6,-8],[1,6],[-1,6],[-1,4],[-2,1],[-2,-3],[-1,-13],[-1,-5],[-3,-1],[-2,2],[-2,2],[-3,1],[-1,-1],[-6,-11],[0,8],[-7,-6],[-7,-12],[-7,-13],[-2,-11],[1,-19],[3,-15],[1,-15],[-3,-18],[-7,-20],[-5,-9],[-5,-4],[-2,2],[-5,5],[-2,1],[-2,-1],[-6,-7],[-3,-1],[-3,-4],[-4,-4],[-4,-7],[-1,-3],[-3,-9],[1,-2],[0,-2],[0,-4],[-3,-4],[-1,-13],[-13,-6],[-26,-2],[-23,-8],[-3,-1],[-4,-6],[-1,-1],[-9,1],[-3,-1],[-4,-3],[-3,-7],[-3,-2],[-3,0],[-3,2],[-3,0],[-3,-4],[-12,-20],[-3,-5],[-3,0],[-3,0],[-3,-2],[-8,-12],[-17,-61],[-2,-3],[-5,-9],[-9,-9],[-9,1],[-5,20],[0,25],[11,44],[4,25],[0,13],[-2,37],[-2,9],[-7,17],[-2,13],[0,11],[4,17],[2,19],[5,30],[19,66],[2,28],[0,100],[-1,13],[-2,14],[0,13],[2,12],[3,11],[1,12],[2,70],[1,3],[2,3],[1,4],[6,97],[-2,21],[-4,18],[-7,6],[-9,0],[-10,4],[-10,8],[-4,3],[-6,1],[-11,0],[-5,1],[-3,4],[1,1],[0,5],[3,8],[3,7],[2,3],[1,5],[1,12],[0,12],[-1,7],[1,8],[1,5],[3,3],[4,0],[2,3],[3,11],[2,3],[2,0],[2,4],[1,0],[2,-2],[2,-4],[1,-4],[1,-2],[10,-6],[2,-4],[7,-18],[5,-10],[6,-9],[7,-6],[31,-14],[10,-9],[9,-14],[7,-11],[3,-4],[12,-2],[3,-3],[11,-35],[3,-7],[4,-2],[3,-5],[13,-28],[17,-13],[4,-7],[2,-6],[0,-3],[1,-10],[2,-9],[5,-5],[2,1],[3,6],[4,4],[0,5],[-1,5],[0,4],[1,9],[1,2],[4,-5],[4,-9],[1,-2],[4,1],[-3,7],[0,3],[2,3],[3,3],[5,13],[1,5],[-1,2],[-1,2],[-1,2],[9,2],[11,-1],[10,-5],[7,-8],[2,-9],[1,-9],[2,-7],[3,-3],[4,-2],[12,-11],[-14,-20],[-5,-13],[0,-11],[7,-6],[8,8],[7,12],[8,6],[7,4],[10,17],[13,8],[8,11],[6,14],[4,15],[2,0],[0,-35],[-2,-10],[-2,-1],[-3,-1],[-3,-2],[-1,-4],[0,-6],[2,-3],[2,0],[3,1],[-2,-9],[2,-2],[6,3]],[[83339,57513],[8,-13],[6,-4],[3,-2],[-2,-2],[-8,-2],[0,-6],[1,-8],[-4,-8],[0,-4],[1,-1],[3,-3],[0,4],[3,-2],[2,-4],[2,-3],[1,-4],[-6,-12],[-2,-4],[4,-12],[-5,-19],[-10,-16],[-8,-1],[-5,-10],[-3,10],[-1,17],[1,15],[4,-5],[1,-3],[1,-4],[2,0],[0,9],[-1,3],[-1,4],[4,8],[3,8],[1,8],[-2,8],[-2,-3],[-2,0],[-2,3],[-1,-12],[-4,-5],[-4,0],[-4,5],[-2,8],[-3,17],[-3,4],[2,2],[2,5],[2,1],[-3,10],[-7,14],[-3,9],[-2,8],[-4,28],[2,-1],[2,-2],[1,-1],[2,0],[0,-1],[1,-1],[1,-2],[1,0],[1,1],[1,3],[-1,3],[-1,1],[1,5],[3,9],[4,2],[3,-12],[9,-12],[-1,-6],[5,-2],[13,0],[2,-1],[0,-3],[-1,-3],[-7,-3],[2,-4],[3,-5],[1,-1]],[[83429,57594],[2,-8],[-2,-6],[-2,-3],[-4,-4],[-4,-1],[-1,1],[-2,2],[-2,3],[-5,0],[-3,-3],[-4,-4],[-3,-2],[-4,3],[-3,6],[-3,3],[-4,-3],[-1,9],[-3,3],[-5,0],[-4,4],[-2,-5],[2,-7],[0,-6],[-1,-7],[-1,-8],[-3,3],[-1,0],[-1,-2],[-1,-5],[-2,0],[-4,16],[-3,4],[-12,-4],[-5,3],[-5,7],[-5,8],[-4,18],[-8,19],[-1,12],[0,9],[-1,7],[-1,6],[-3,7],[-2,6],[0,8],[-1,9],[-4,7],[-3,-5],[-3,-7],[-2,-8],[-1,-8],[-4,4],[1,5],[3,5],[2,6],[0,8],[0,6],[0,9],[1,11],[4,5],[5,3],[5,7],[-7,0],[-3,-1],[-2,-3],[0,23],[2,8],[6,1],[5,-4],[2,-9],[0,-10],[1,-5],[4,-3],[10,-3],[5,-2],[4,-6],[8,-13],[7,-15],[2,-3],[2,-1],[5,-1],[2,-2],[-3,-1],[-2,-4],[-1,-5],[1,-6],[6,0],[15,-24],[7,-8],[1,6],[1,3],[3,1],[3,-2],[0,55],[1,0],[4,-11],[2,-9],[1,-9],[-1,-16],[2,-7],[4,2],[4,0],[2,-10],[1,1],[0,1],[1,3],[8,-17],[4,-10],[1,-8],[-1,-8],[-2,-3],[-2,-2],[-3,-5],[-1,-8],[1,-3],[2,1],[2,6],[1,0],[1,-1],[0,-1],[0,-3],[2,5]],[[84079,57815],[0,-8],[-5,-43],[-3,-7],[-4,-8],[-5,-6],[-4,-3],[-1,2],[-5,12],[-2,3],[-6,3],[-2,4],[-7,25],[-5,11],[-6,5],[-7,1],[-5,5],[-4,8],[-2,10],[0,21],[6,13],[10,5],[31,0],[11,-5],[3,-3],[1,-4],[2,-12],[2,-8],[2,-7],[5,-14]],[[84919,57072],[5,-18],[9,-20],[5,-19],[-5,-17],[-3,4],[-6,7],[-3,4],[-2,20],[-1,2],[0,1],[0,4],[0,10],[0,3],[-2,1],[-4,4],[-1,3],[-4,7],[-5,5],[-2,-5],[-9,-12],[-3,-2],[-3,2],[-1,6],[-1,7],[-2,5],[-3,3],[-2,-2],[-2,-3],[-3,-2],[-1,-4],[-1,-21],[-1,-7],[-8,14],[-5,8],[-3,0],[-5,-13],[-3,-5],[-5,-4],[0,9],[-2,6],[-3,0],[-2,-7],[-7,13],[-3,3],[-10,3],[-1,3],[-2,5],[-3,-2],[-8,-7],[-1,-4],[-2,-6],[-3,-10],[-1,-4],[-1,-1],[-2,1],[-2,2],[-2,5],[-2,7],[-1,8],[-2,32],[-2,25],[-8,22],[-11,10],[-12,2],[-13,-2],[-11,5],[-3,16],[2,48],[0,5],[1,4],[0,4],[1,3],[-2,3],[-5,10],[-2,2],[-4,0],[-2,2],[-4,5],[-3,7],[-3,7],[-1,9],[-4,-19],[-3,-2],[-5,1],[-4,3],[-3,5],[-2,7],[-2,9],[4,4],[2,6],[2,6],[3,5],[5,2],[4,1],[1,3],[-4,10],[16,0],[4,4],[4,9],[4,11],[2,8],[0,9],[-1,9],[-1,9],[1,8],[6,13],[5,13],[1,-3],[5,-5],[-1,14],[-2,12],[-5,8],[-7,2],[-4,-3],[-12,-14],[-5,-3],[-10,12],[-16,50],[-11,7],[0,4],[2,0],[2,0],[-3,3],[-1,1],[4,16],[1,-1],[2,-2],[1,-1],[2,-4],[-2,12],[-3,6],[-5,1],[-4,-10],[-5,1],[-3,5],[5,6],[-2,5],[-1,3],[-3,-1],[-2,-3],[-1,16],[0,8],[-2,6],[-14,31],[-11,9],[-11,6],[-8,-3],[-8,9],[-13,19],[-13,33],[-6,12],[0,1],[1,0],[0,3],[-6,8],[-5,17],[-13,97],[-19,87],[0,8],[0,7],[2,7],[3,6],[3,2],[2,-3],[13,-20],[1,-1],[3,0],[7,7],[3,1],[1,-1],[7,-7],[5,-3],[17,-1],[1,0],[4,-5],[0,-1],[1,-2],[1,1],[2,2],[1,1],[6,-1],[6,-3],[23,-4],[53,8],[2,2],[3,4],[2,8],[-1,6],[-3,5],[-1,7],[0,4],[5,-3],[4,-7],[3,-7],[2,-3],[4,4],[5,6],[4,2],[2,-10],[2,1],[6,-5],[5,-6],[1,-4],[2,-1],[1,-2],[2,-1],[4,0],[2,2],[3,4],[3,4],[1,4],[1,13],[3,2],[8,-5],[2,1],[3,2],[3,2],[2,-3],[7,-14],[13,-18],[7,-12],[0,-10],[3,-7],[6,-7],[3,-7],[3,-15],[2,-5],[4,-8],[-5,-6],[-5,-14],[-1,-14],[6,-11],[-2,-3],[-1,-3],[-1,-7],[0,-3],[8,10],[3,2],[0,-5],[0,-4],[0,-4],[-2,-3],[4,-3],[2,2],[6,9],[-2,-11],[3,-3],[10,2],[6,-6],[9,-15],[4,0],[2,-6],[6,-16],[3,-16],[0,-7],[-5,5],[-2,-3],[-7,-3],[-2,-2],[2,-2],[2,-3],[2,-3],[1,-4],[-7,-4],[-4,-3],[-2,-5],[-1,-11],[3,-3],[9,1],[0,-2],[-1,-4],[0,-2],[2,-4],[4,-8],[2,-8],[0,-6],[-9,-17],[-3,-6],[-3,-13],[-5,-13],[-2,-10],[0,-11],[0,-13],[1,-4],[3,-17],[-1,-18],[1,-6],[2,-4],[7,-14],[1,-6],[-1,-5],[-2,-3],[-8,5],[-2,-10],[0,-11],[6,5],[3,0],[3,-12],[2,-22],[0,-15],[-3,-3],[-3,-1],[-3,-9],[3,-3],[0,-6],[-2,-8],[-1,-8],[1,-5],[2,-2],[2,0],[2,-3],[1,-4],[0,-14],[1,-9],[1,-6],[6,-19],[2,-9],[0,-9],[-3,-9],[2,-1],[2,-1],[1,0],[3,2],[1,-15],[2,-6],[2,-3],[2,-2],[5,-9],[4,-2],[1,-3],[3,-7],[3,-7],[2,-1],[0,-15],[-1,-10],[-2,-7],[-17,-27],[-3,-12],[0,-22],[4,-11],[8,-2],[9,7],[-4,11],[-1,9],[4,1],[13,-20],[5,-6],[4,-9],[1,-17]],[[84459,57458],[1,-10],[2,-11],[2,-12],[-1,-10],[-4,-1],[-4,10],[-6,24],[-3,8],[-10,17],[-7,6],[-6,14],[-10,7],[-4,8],[-5,17],[-4,-4],[-5,2],[-10,10],[-7,-7],[-6,7],[-5,11],[-3,5],[1,8],[1,5],[3,3],[4,0],[-4,16],[-1,-5],[-1,-3],[-1,0],[-3,8],[-3,8],[-4,6],[-7,7],[-2,8],[0,7],[5,1],[-6,4],[-5,-1],[-4,2],[-3,24],[-4,9],[-8,19],[-4,13],[-2,3],[-8,7],[-2,3],[-5,4],[-7,-1],[-6,-4],[-4,-5],[-4,-7],[-8,-26],[-3,-15],[-2,-8],[-3,-6],[-2,-3],[-3,-1],[-2,-2],[-2,-9],[-15,-37],[-24,-46],[-6,-7],[-3,7],[1,12],[1,14],[3,12],[2,5],[3,1],[2,4],[0,6],[0,7],[0,8],[2,6],[2,5],[2,7],[-1,22],[2,11],[4,-4],[2,8],[2,6],[3,4],[4,2],[2,3],[-1,6],[-4,11],[4,5],[3,4],[3,5],[-1,11],[-9,1],[-6,-1],[-6,-5],[1,4],[-1,18],[1,2],[0,1],[8,22],[1,8],[1,18],[4,29],[1,14],[-1,9],[-1,5],[-3,4],[-4,6],[-3,69],[1,7],[2,2],[3,-2],[3,-4],[4,-4],[8,-2],[4,-3],[3,-4],[2,-4],[2,-3],[3,-1],[0,-1],[0,-3],[-5,2],[0,-9],[5,-21],[-2,-5],[-3,-5],[-3,-7],[-2,-10],[1,-7],[4,4],[5,14],[3,0],[1,1],[1,3],[0,6],[0,2],[1,7],[2,7],[1,0],[2,4],[5,1],[5,-2],[4,-3],[9,-19],[4,-7],[5,-5],[10,0],[1,-2],[4,-10],[2,-5],[2,-11],[4,-11],[4,-5],[0,-4],[-3,-1],[-2,-3],[-1,-6],[0,-7],[10,10],[4,2],[2,-10],[1,-3],[2,-2],[4,0],[2,-1],[3,-4],[2,-4],[2,-6],[18,-63],[7,-16],[-1,26],[2,9],[6,-8],[9,-19],[3,1],[3,5],[3,1],[2,-7],[0,4],[3,-12],[14,-49],[2,-2],[4,-3],[2,-3],[1,-5],[3,-20],[1,-5],[12,-31],[3,-10],[1,-10],[-5,6],[-5,19],[-6,7],[1,-6],[2,-4],[3,-10],[-3,-5],[1,-7],[6,-16],[7,-31],[1,-8],[0,-14],[-2,-16],[0,-6]],[[83966,57935],[5,-19],[4,-22],[-1,-21],[-8,-16],[-5,11],[-2,11],[-1,11],[0,12],[0,2],[-1,3],[-1,4],[0,3],[1,3],[2,2],[1,3],[2,12],[1,5],[3,4],[0,-8]],[[83920,57971],[9,-5],[2,-6],[0,-9],[-1,-3],[-4,2],[-2,-3],[0,-6],[2,-33],[-2,-19],[-6,-40],[-2,-44],[-5,-42],[-9,-43],[-2,-6],[-2,-11],[3,-8],[4,-7],[0,-9],[-4,8],[-2,-5],[-5,-9],[-1,-4],[0,-31],[-2,0],[-5,14],[-2,9],[2,10],[-8,1],[-1,10],[1,29],[3,-14],[3,-2],[4,6],[2,13],[-1,7],[-3,3],[-3,1],[-3,3],[-11,24],[-3,4],[1,21],[3,24],[3,12],[9,7],[4,18],[1,22],[0,20],[-1,35],[1,12],[6,12],[16,9],[8,8],[3,15]],[[84385,57799],[1,-12],[1,-7],[-2,-4],[-2,2],[-2,5],[-2,6],[0,6],[-1,5],[-9,17],[-41,129],[-1,5],[0,8],[2,0],[3,-3],[1,8],[1,11],[1,8],[3,0],[3,-5],[4,-13],[14,-17],[3,-1],[-1,-4],[0,-2],[-3,-2],[4,0],[3,-3],[2,-4],[2,-6],[-1,-10],[2,-12],[3,-11],[2,-9],[1,-10],[4,-19],[3,-31],[1,-3],[1,-2],[0,-7],[0,-13]],[[84244,58088],[1,-29],[21,-47],[4,-25],[-9,15],[-19,54],[-6,13],[-4,6],[-10,4],[-5,6],[-21,38],[-2,8],[-1,1],[-5,11],[-1,3],[-2,2],[-1,4],[0,5],[-1,5],[-7,9],[-17,9],[-7,14],[-2,33],[0,7],[4,6],[5,1],[4,4],[1,14],[3,-2],[4,-3],[6,-10],[3,-5],[2,-7],[4,-13],[6,-25],[7,-11],[1,-3],[1,-7],[4,-14],[0,-7],[1,-2],[4,-19],[5,-9],[7,-9],[7,-5],[5,5],[5,-5],[1,-6],[2,-6],[2,-8]],[[83756,57993],[1,-7],[1,-9],[1,-10],[3,-9],[0,-5],[0,-15],[-1,-1],[-1,0],[-2,-2],[-11,-33],[-3,-7],[-7,-9],[-2,-1],[-2,1],[-1,-1],[-1,-5],[1,-10],[0,-4],[1,-4],[-2,-5],[-1,5],[-1,-4],[-1,-3],[1,-4],[1,-6],[-5,-6],[0,-17],[3,-18],[5,-11],[0,-4],[-11,6],[-5,0],[-1,-11],[2,-4],[0,-5],[0,-5],[-2,-6],[3,-2],[1,-4],[0,-4],[0,-6],[-8,11],[-3,9],[-4,-4],[-7,-12],[-3,-2],[-4,-4],[-5,-10],[-7,-30],[-1,-3],[-4,0],[-6,13],[-4,3],[-17,0],[-5,6],[-4,14],[-2,17],[2,16],[2,-10],[2,-5],[4,-1],[4,4],[-2,2],[-2,0],[-2,-2],[-2,10],[0,2],[-5,9],[-2,-1],[0,-12],[-5,5],[-6,10],[-5,11],[-3,13],[-7,14],[-2,2],[-2,4],[-12,42],[-3,4],[-3,7],[1,14],[3,24],[-1,12],[-1,12],[-3,10],[-7,18],[-5,21],[-4,9],[-6,5],[-6,0],[-4,3],[-1,14],[-1,7],[-1,11],[0,6],[-1,7],[-5,16],[0,5],[2,4],[1,3],[1,4],[0,5],[-1,29],[-2,18],[-3,33],[-5,18],[-12,35],[-9,38],[-6,16],[-13,9],[-5,14],[-5,4],[-10,-2],[-2,3],[3,11],[-8,14],[-5,17],[-4,19],[-2,42],[-2,9],[-3,4],[-2,0],[-5,-2],[-2,-2],[-2,-3],[-2,-3],[0,-3],[-2,-3],[-5,-10],[-4,-1],[-4,3],[-3,6],[-3,9],[-3,10],[0,10],[1,13],[3,12],[4,11],[6,7],[6,5],[6,1],[20,-10],[16,-1],[4,1],[3,2],[3,-1],[5,-6],[3,-2],[5,-2],[11,1],[6,-3],[4,-6],[5,5],[3,-3],[5,-10],[5,-1],[4,2],[9,7],[24,12],[8,8],[3,-7],[3,2],[2,3],[1,11],[4,-3],[2,1],[2,2],[0,-3],[2,-2],[-1,-5],[-2,-4],[-2,-2],[-3,-1],[2,-5],[3,-7],[3,-6],[3,-2],[2,-5],[7,-23],[4,-5],[18,2],[5,-7],[-1,-19],[2,0],[0,4],[1,9],[1,3],[1,4],[0,1],[3,3],[2,3],[4,2],[3,4],[2,8],[2,0],[6,-22],[32,-56],[12,-38],[4,-6],[6,-2],[5,-5],[3,-9],[0,-12],[0,-6],[-2,-7],[-1,-6],[1,-6],[4,-4],[3,0],[3,3],[3,1],[6,-1],[7,-2],[5,-6],[2,-12],[-1,-12],[-4,-8],[-9,-13],[-4,-11],[-2,-13],[0,-14],[3,-36],[0,-10],[-3,-24],[1,-8],[-2,0],[2,-17],[0,-37],[3,-13],[7,-20],[1,-5]],[[83916,58415],[1,-5],[5,-7],[2,-6],[-3,-17],[-16,-35],[-6,-17],[3,-12],[-3,-11],[-9,-15],[-4,-2],[-4,7],[-4,8],[-3,5],[-3,3],[-9,17],[-3,2],[-4,0],[-3,2],[-2,5],[-5,15],[-9,19],[-1,6],[1,14],[0,4],[-1,9],[0,31],[1,9],[2,5],[8,28],[0,6],[1,16],[1,4],[4,2],[4,-8],[6,-19],[1,4],[3,5],[2,4],[4,-9],[6,-3],[6,4],[2,12],[4,-5],[3,-6],[1,-6],[-2,-8],[4,3],[4,-3],[1,-6],[-3,-6],[1,-2],[3,-4],[2,-2],[4,6],[6,-3],[5,-9],[2,-10],[-1,-3],[-2,-1],[-3,0],[0,-5],[0,-10]],[[83405,58590],[2,-3],[2,0],[2,-3],[1,-6],[-5,-8],[-1,-3],[-2,5],[-2,7],[-2,6],[-3,3],[-4,2],[-1,4],[-1,5],[-2,5],[-3,4],[-3,3],[-3,1],[-3,0],[-2,2],[-3,9],[-9,6],[-5,10],[-2,14],[-1,14],[0,7],[1,4],[2,3],[3,0],[4,-3],[7,-7],[6,-8],[1,-6],[4,2],[6,-2],[5,-6],[5,-6],[9,-31],[-1,-7],[-3,-4],[-1,-6],[2,-7]],[[84560,58685],[0,-4],[-4,-5],[-4,-7],[4,-4],[1,-7],[1,-9],[2,-8],[-6,-4],[-2,0],[2,-7],[0,-5],[0,-17],[-2,-12],[0,-6],[5,-17],[0,-9],[-6,-5],[-6,1],[-3,-1],[-1,-5],[0,-11],[-5,-36],[1,-8],[-5,6],[-3,12],[-4,9],[-3,-3],[-4,2],[-5,-2],[-4,-4],[-4,-6],[-2,-8],[-2,-12],[-2,-10],[-3,-5],[-5,4],[-15,29],[-9,13],[-4,3],[-6,0],[1,8],[-1,9],[-2,7],[-3,7],[-1,7],[3,7],[7,8],[7,13],[5,17],[4,20],[3,23],[-3,34],[2,9],[2,10],[0,10],[-4,23],[-1,10],[0,5],[1,3],[3,5],[1,5],[0,5],[-3,9],[0,9],[2,9],[2,8],[3,-9],[4,2],[6,11],[2,3],[2,1],[2,0],[3,-3],[5,-11],[5,-13],[3,-14],[3,-15],[1,-25],[2,-1],[3,-5],[3,-10],[-2,-4],[1,-4],[1,-2],[0,-3],[2,0],[4,16],[8,-7],[17,-29]],[[83917,58821],[13,-17],[6,-12],[3,-13],[-2,-14],[-5,0],[-6,7],[-10,18],[-19,25],[-11,21],[-3,3],[-5,6],[-5,14],[-4,15],[-2,10],[1,8],[2,5],[3,1],[3,-1],[2,-2],[1,-3],[2,-7],[36,-64]],[[83953,59233],[4,-6],[2,-12],[0,-13],[-4,-5],[0,3],[-22,33],[-7,3],[-4,3],[-2,4],[-1,7],[-2,7],[0,3],[5,-3],[1,3],[3,5],[1,-7],[2,-4],[3,1],[3,2],[10,0],[-2,-3],[-1,-5],[-1,-6],[2,-6],[2,-5],[3,0],[5,1]],[[83890,59359],[6,-1],[5,-5],[3,-10],[-1,-12],[-6,15],[-3,3],[-4,-2],[-3,-6],[-1,-6],[1,-4],[3,4],[2,-15],[0,-7],[-3,-4],[-9,-12],[-1,-2],[1,-3],[0,-21],[1,-6],[1,-8],[5,2],[3,-10],[2,-15],[3,-37],[0,-8],[-6,-29],[-5,-10],[-7,-7],[-6,-3],[-6,5],[-2,13],[0,16],[2,14],[5,2],[0,24],[-4,27],[-6,12],[-4,3],[-2,7],[1,21],[-1,6],[-6,20],[-2,5],[-5,3],[-2,0],[-1,3],[2,39],[2,14],[3,6],[8,-11],[6,-2],[2,11],[2,5],[5,1],[12,-3],[4,-6],[2,3],[3,-2],[2,-7],[-1,-10]],[[83718,61664],[8,3],[4,-1],[3,-6],[2,-4],[3,-3],[2,-1],[3,0],[-7,-10],[-6,-5],[-7,-4],[-24,-4],[-7,2],[-4,9],[-1,8],[1,3],[5,1],[15,10],[10,2]],[[83880,61713],[4,-6],[2,-8],[-1,-7],[-7,-7],[-6,-17],[-3,-8],[-10,-17],[-4,-10],[-2,-12],[-2,-5],[-5,2],[-4,6],[2,8],[0,12],[6,9],[3,10],[-6,13],[3,7],[2,10],[1,8],[-1,4],[2,2],[4,13],[3,5],[1,-1],[2,-2],[2,-1],[1,2],[1,1],[4,4],[1,1],[3,-2],[1,-5],[1,-5],[2,-4]],[[83669,61826],[2,-3],[2,-3],[1,-4],[3,-24],[3,-22],[2,-21],[-4,-16],[-10,18],[-3,10],[-2,12],[1,15],[4,25],[1,13]],[[83756,61912],[4,-9],[0,-2],[1,-2],[0,-2],[1,-3],[0,-5],[-1,-2],[-2,0],[-3,0],[-2,0],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-8,6],[-2,4],[-10,12],[-2,1],[-2,0],[-2,1],[-2,2],[-1,5],[-4,14],[-9,21],[1,3],[4,2],[4,3],[4,12],[16,-12],[5,-1],[5,2],[4,4],[4,1],[2,-7],[0,-28],[0,-2],[0,-2],[0,-4]],[[83882,62064],[1,-2],[3,-2],[1,-4],[0,-2],[-1,-8],[-2,-20],[-2,-9],[-5,-4],[-4,3],[-6,13],[-5,7],[-2,4],[-1,5],[0,7],[1,1],[2,0],[6,2],[4,-2],[2,1],[2,2],[4,6],[2,2]],[[83844,62519],[5,1],[6,-9],[3,-11],[0,-10],[-6,-12],[-2,-2],[-3,0],[-4,28],[0,8],[0,4],[1,3]],[[83891,62603],[2,-1],[3,-3],[1,-5],[0,-5],[-2,-5],[-9,-14],[-7,-11],[-1,-4],[1,-8],[1,-4],[1,-4],[-1,-7],[-4,-8],[-5,-4],[-5,4],[-1,13],[1,10],[12,34],[1,6],[4,7],[4,7],[4,2]],[[83854,62770],[-3,-15],[-4,-15],[-6,-12],[-8,-5],[-4,7],[1,16],[4,17],[5,17],[4,20],[2,6],[3,4],[3,0],[2,-6],[2,-8],[0,-9],[0,-8],[-1,-9]],[[83189,53342],[1,-11],[4,-19],[1,-10],[0,-11],[-1,-9],[-1,-9],[-9,-40],[-2,-6],[0,37],[1,34],[-1,40],[-3,18],[-3,17],[3,2],[3,-2],[3,-5],[2,-6],[1,-5],[0,-5],[1,-5],[0,-5]],[[83671,53917],[3,-3],[1,-3],[-1,-6],[-1,-1],[-8,1],[-10,-8],[-4,1],[-3,11],[0,8],[2,8],[3,5],[3,3],[4,-1],[4,-4],[4,-5],[3,-6]],[[83716,54026],[6,-3],[5,-8],[2,-10],[-2,-13],[-3,-3],[-3,0],[-2,-2],[-1,-7],[0,-10],[-1,0],[-10,-3],[-2,-1],[-3,-5],[-8,-18],[-2,-4],[-4,0],[-2,3],[-3,5],[-2,8],[-1,7],[1,6],[-1,5],[-6,16],[-11,-1],[-23,-22],[-5,-7],[-2,-2],[-2,0],[-2,3],[-4,11],[-1,2],[-11,5],[-3,-2],[-10,-14],[-5,-6],[-3,-1],[-3,2],[-2,3],[0,4],[0,3],[0,3],[-2,2],[-3,2],[-2,2],[-4,13],[-1,11],[1,10],[3,12],[5,10],[10,9],[8,12],[6,1],[3,3],[6,18],[2,4],[3,1],[10,-1],[5,1],[5,-1],[3,-2],[6,-8],[4,-2],[5,-6],[6,-30],[5,-9],[5,3],[4,8],[6,5],[12,-11],[6,-1],[12,0]],[[83785,54412],[0,-40],[-2,-13],[-2,-4],[-1,5],[-1,13],[-2,9],[-3,8],[-2,7],[2,3],[3,5],[2,11],[3,5],[3,-9]],[[83637,56922],[0,-13],[-4,-19],[1,-11],[-6,-3],[-8,1],[-5,9],[2,18],[2,3],[10,13],[5,10],[2,1],[1,-9]],[[83412,57535],[-1,-2],[-3,-1],[-1,-1],[-1,-4],[0,-4],[1,-3],[1,-4],[-2,-16],[0,-6],[1,-6],[2,-11],[1,-5],[-3,-5],[-4,12],[-5,29],[-9,37],[3,1],[12,11],[3,0],[2,-2],[2,-4],[1,-5],[0,-11]],[[83723,57613],[2,-9],[1,-10],[-1,-9],[-3,-7],[-5,-1],[-3,6],[-3,9],[0,10],[0,4],[1,12],[0,6],[-2,4],[-1,4],[2,6],[-1,5],[0,1],[2,-2],[11,-29]],[[83321,55729],[1,-2],[-1,0],[0,2]],[[83324,55729],[0,2],[1,-1],[0,-1],[-1,0]],[[83323,55733],[0,-1],[0,-1],[0,1],[-1,1],[1,0]],[[83324,55735],[0,1],[0,-2],[-1,0],[0,1],[1,1],[0,-1]],[[83811,58118],[-1,-1],[0,-1],[0,-2],[1,-3],[-1,-2],[-2,0],[-1,3],[-1,0],[-2,0],[-2,6],[-2,3],[0,3],[0,6],[2,7],[3,2],[4,-2],[1,0],[2,-4],[2,-7],[-1,-5],[-2,-3]],[[83635,58483],[-5,3],[-8,15],[0,4],[3,0],[1,-2],[3,1],[3,3],[2,-1],[2,-5],[0,-14],[-1,-4]],[[83870,62945],[-1,-1],[1,6],[0,-5]],[[83873,62975],[1,4],[1,-3],[-1,-7],[-1,6]],[[83286,53325],[6,-8],[1,-6],[-2,-1],[-5,0],[-4,5],[-2,7],[6,3]],[[83287,53350],[-4,-1],[-6,11],[-3,15],[1,9],[3,4],[3,-3],[2,-5],[6,-6],[2,-10],[0,-8],[-2,-5],[-2,-1]],[[83276,53465],[-1,-1],[-1,-2],[-1,-4],[-3,-2],[-6,-4],[-2,5],[1,11],[5,21],[4,7],[4,6],[3,-1],[-1,-8],[1,-7],[1,-6],[0,-8],[-1,-7],[-2,-2],[-1,2]],[[84838,53683],[1,-3],[0,-8],[0,-17],[-1,-6],[-2,0],[-4,2],[-5,-1],[-5,-2],[-3,3],[-2,5],[-3,4],[0,3],[2,5],[5,13],[5,5],[8,0],[4,-3]],[[83571,53848],[6,-6],[1,-5],[-3,-2],[-4,-4],[-5,-4],[-6,-1],[-3,-2],[-2,2],[-1,7],[3,10],[7,6],[4,0],[3,-1]],[[83584,53880],[3,-3],[4,-12],[-2,-13],[-4,-7],[-5,6],[0,19],[4,10]],[[84400,56180],[5,-7],[2,-6],[-2,-7],[-5,-12],[-11,-17],[-5,-4],[-6,-2],[-4,3],[-3,15],[-3,4],[0,3],[3,1],[3,3],[1,4],[4,5],[4,6],[11,9],[6,2]],[[84612,56475],[-3,-10],[0,-9],[1,-8],[-3,-5],[-3,2],[-5,-2],[-3,-10],[-2,-5],[-3,4],[-1,6],[0,5],[-1,7],[0,8],[1,3],[2,-1],[2,0],[2,4],[1,3],[1,-1],[3,1],[4,6],[1,3],[2,2],[4,1],[0,-4]],[[83742,57497],[10,-6],[4,-6],[-2,-5],[-6,-6],[-6,0],[-5,3],[-3,2],[-2,1],[-1,1],[-1,3],[-1,-1],[-3,-3],[-1,2],[1,5],[3,7],[4,4],[3,0],[6,-1]],[[84501,57624],[6,-4],[0,-6],[-5,-2],[-3,-5],[-6,-7],[-4,-1],[-4,3],[-1,6],[2,7],[4,6],[4,3],[7,0]],[[83642,57693],[4,-13],[1,-6],[-1,-3],[-3,-1],[-3,2],[-2,5],[-3,2],[-1,6],[-2,8],[-2,8],[-5,6],[-4,18],[6,16],[8,-7],[2,-13],[3,-20],[1,-4],[1,-3],[0,-1]],[[84490,57812],[-5,10],[-3,13],[-1,13],[0,7],[2,-1],[5,-8],[5,-14],[1,-15],[-4,-5]],[[84485,58278],[-4,2],[-6,0],[-4,2],[-8,7],[-1,4],[5,4],[8,6],[3,4],[4,0],[11,-6],[6,-6],[3,-11],[0,-10],[-4,-3],[-9,5],[-4,2]],[[84468,58323],[-4,-4],[-2,-2],[-1,-3],[-2,-6],[-3,-5],[-1,-1],[-4,-2],[-3,1],[-5,3],[-6,4],[-5,1],[-5,4],[-5,9],[-2,7],[0,5],[-1,3],[0,2],[1,1],[13,-1],[7,-7],[2,2],[2,1],[4,0],[0,-1],[1,0],[2,-6],[2,-2],[1,2],[0,3],[1,2],[2,1],[2,-2],[4,-2],[4,-3],[0,-3],[1,-1]],[[84413,58331],[2,-9],[2,-8],[-1,-4],[-5,-5],[-3,-1],[-2,9],[-2,4],[-3,12],[-1,7],[2,10],[0,11],[-1,7],[-3,9],[1,2],[3,3],[2,0],[12,-8],[2,-3],[2,-2],[2,-1],[0,-6],[-7,-16],[-2,-11]],[[84388,58385],[-7,15],[-1,7],[5,-2],[4,-5],[5,-6],[2,-5],[1,0],[3,0],[1,-3],[-3,-7],[-4,-2],[-6,8]],[[84002,59191],[2,-4],[1,-9],[-6,-11],[-7,-3],[-6,-1],[-9,2],[-1,10],[7,8],[6,4],[5,5],[4,2],[4,-3]],[[83334,60104],[1,-8],[1,-8],[-2,-5],[-3,-2],[-4,6],[-1,5],[-6,9],[-5,15],[-3,4],[-1,5],[1,6],[5,9],[3,2],[2,1],[0,3],[1,3],[2,4],[3,-1],[2,-3],[1,-4],[1,-4],[2,-11],[0,-26]],[[72743,54670],[0,-10],[3,-21],[1,-12],[-2,-24],[-13,-94],[-1,-9],[0,-13],[-1,-11],[-4,-16],[-1,-8],[-1,-10],[-6,-18],[-2,-8],[2,-14],[-3,-18],[-26,-87],[-9,-19],[-16,-24],[-6,-4],[-7,-8],[-51,-86],[-10,-11],[-34,-26],[0,9],[-2,4],[-1,-1],[-2,-1],[-1,-4],[0,-10],[-2,-4],[-2,-1],[-3,-3],[-6,-8],[-6,-6],[-29,-13],[-14,-10],[-16,-6],[-7,-6],[-4,-12],[-7,3],[-5,-4],[-3,-2],[-10,-17],[-11,-17],[-5,-12],[-11,1],[-5,-1],[-4,-3],[-4,-5],[-6,-10],[-2,-1],[-2,-1],[-5,4],[-5,5],[-3,2],[-2,1],[-16,-4],[-4,2],[-3,5],[-1,6],[-1,4],[-1,3],[-5,-6],[-4,-1],[-8,3],[-1,0],[-2,1],[-1,3],[-1,3],[-2,1],[-1,-1],[-1,-2],[-1,-1],[-2,0],[0,1],[-1,0],[-1,6],[-1,1],[-1,0],[-2,2],[-11,9],[-5,2],[-4,1],[-6,11],[-1,1],[-3,3],[-2,-5],[-5,9],[-23,51],[-2,3],[0,1],[0,2],[-1,2],[0,5],[0,3],[-1,2],[-3,7],[-13,58],[0,5],[0,5],[0,5],[0,3],[-3,10],[-2,28],[-5,19],[-3,28],[-2,10],[0,1],[-1,2],[-2,2],[0,3],[0,4],[1,1],[2,-1],[-2,32],[0,2],[-6,32],[-24,129],[-3,45],[-1,4],[0,43],[1,1],[2,14],[1,7],[0,7],[-13,100],[2,15],[-1,-9],[2,-6],[1,-4],[1,-5],[3,-20],[1,-5],[2,0],[0,6],[1,2],[1,0],[0,18],[-1,8],[-1,7],[-1,2],[-4,1],[-2,3],[0,1],[-1,4],[1,4],[1,5],[0,4],[-13,211],[-2,8],[1,3],[1,0],[2,-3],[0,10],[2,12],[0,6],[1,6],[-2,9],[-2,8],[-1,5],[0,6],[0,21],[-6,67],[-1,7],[-3,15],[-3,31],[-5,24],[-7,67],[0,19],[1,-2],[1,0],[0,-2],[1,11],[-1,35],[-2,10],[5,6],[4,12],[3,14],[2,11],[1,7],[8,28],[0,-1],[-4,-20],[-5,-20],[1,-5],[0,-1],[2,-4],[3,-3],[3,0],[-3,-16],[-2,-12],[-2,-2],[-1,0],[-1,-2],[0,-6],[0,-14],[0,-4],[-5,-32],[0,-6],[0,-12],[5,-12],[2,-3],[-6,-25],[9,-13],[13,-3],[6,10],[-1,11],[-2,8],[-1,3],[-1,3],[-2,6],[-3,4],[-1,7],[9,37],[0,7],[-1,5],[-1,4],[-1,5],[-1,7],[1,12],[0,5],[0,1],[-1,5],[-1,1],[0,1],[-1,2],[1,7],[1,5],[4,10],[0,7],[1,12],[3,25],[2,58],[2,6],[2,4],[1,4],[1,8],[0,25],[1,12],[4,8],[5,6],[3,8],[1,3],[3,19],[0,1],[1,5],[2,12],[3,58],[-7,36],[1,7],[0,42],[-1,14],[0,7],[-2,5],[-1,6],[3,3],[3,2],[3,1],[16,31],[8,9],[4,6],[2,15],[3,14],[2,21],[9,49],[0,3],[1,7],[2,14],[0,34],[0,6],[0,3],[-3,1],[-8,9],[-3,6],[-2,11],[0,2],[-2,14],[0,7],[4,8],[6,6],[7,5],[5,2],[3,2],[6,18],[0,1],[1,1],[3,3],[2,2],[3,1],[-2,10],[-2,5],[-2,4],[-4,9],[-5,8],[-21,26],[-4,11],[9,-1],[9,-7],[16,-21],[16,-8],[5,-6],[6,-12],[2,-6],[-4,-4],[1,-4],[1,-4],[-2,-4],[6,-8],[14,7],[25,21],[7,-2],[15,-8],[17,-17],[13,-5],[-19,27],[-6,7],[-6,2],[-1,1],[-1,1],[-5,8],[-2,2],[-1,1],[-3,0],[-3,-1],[-2,-1],[-1,-1],[0,-3],[-1,-1],[-4,6],[-1,1],[-10,-1],[-2,2],[-20,36],[-8,11],[-3,3],[-15,13],[-5,7],[-3,0],[0,-15],[2,-4],[3,-5],[2,-6],[-2,-7],[-2,-1],[-2,2],[-2,3],[-5,6],[-10,19],[-6,5],[3,-7],[5,-10],[3,-7],[-7,3],[-6,6],[-14,15],[-10,18],[-7,5],[0,1],[-3,3],[-2,2],[0,-4],[-3,4],[-1,6],[-1,7],[-1,7],[-2,7],[-1,3],[-3,8],[-2,7],[6,6],[11,21],[5,5],[22,-4],[11,3],[4,-1],[2,-8],[0,-13],[1,-4],[2,-2],[2,0],[7,-4],[1,-2],[2,-5],[3,0],[2,2],[1,1],[1,0],[1,0],[2,-2],[1,-2],[8,-17],[25,-57],[8,-11],[20,-20],[1,0],[0,4],[-10,11],[-25,42],[-20,49],[-10,11],[-16,8],[-4,7],[-1,9],[6,5],[2,1],[6,2],[12,1],[5,-2],[4,-6],[2,-19],[3,-8],[36,-91],[6,-8],[11,-13],[76,-131],[1,-1],[2,-7],[3,-9],[6,-11],[3,-11],[-3,-4],[-2,2],[0,1],[-3,7],[-2,2],[-5,2],[-2,-1],[1,-5],[1,-2],[14,-28],[6,-7],[-3,8],[-1,7],[1,4],[4,2],[1,-2],[3,-19],[3,-11],[11,-44],[-3,1],[-5,5],[-4,0],[-2,-8],[2,-3],[5,-1],[4,-6],[1,-13],[2,0],[0,3],[1,2],[1,1],[2,2],[1,-12],[0,-2],[4,-19],[5,-17],[6,-7],[0,-1],[1,-1],[0,-4],[-2,-4],[-2,-2],[-1,2],[-3,10],[-3,4],[-8,4],[-4,4],[2,-6],[1,-3],[10,-20],[0,-11],[3,-5],[-3,-6],[-2,-7],[4,-7],[5,1],[4,7],[2,11],[2,10],[10,-26],[9,-32],[4,-8],[5,-3],[4,-7],[6,-31],[2,-3],[1,-4],[7,-6],[3,-16],[4,-31],[1,6],[1,2],[1,-1],[3,-3],[-1,-5],[8,-18],[3,-9],[0,-11],[-2,-4],[-3,-3],[-3,-6],[2,1],[2,1],[1,1],[1,1],[6,-28],[1,-14],[-7,-3],[1,10],[-2,7],[-3,2],[-2,-11],[1,-8],[2,-5],[1,-6],[-2,-9],[-2,2],[-3,5],[-5,7],[-5,2],[-4,-4],[-4,-10],[1,-6],[5,2],[6,10],[4,-9],[3,-11],[4,-9],[7,-4],[12,1],[5,6],[-3,14],[7,7],[3,2],[3,-1],[3,-4],[4,-7],[2,-8],[2,-24],[4,-30],[0,-8],[0,-8],[-3,5],[-4,16],[-3,3],[0,-4],[1,-19],[0,-2],[2,-7],[2,-2],[1,-2],[4,0],[3,-3],[2,-22],[2,-16],[0,-3],[1,-9],[1,-6],[6,-42],[2,-27],[-5,-15],[-3,25],[0,3],[-5,25],[-2,0],[0,-19],[0,-6],[0,-1],[0,-3],[0,-4],[1,-2],[3,-2],[0,-1],[2,-13],[5,-7],[5,0],[2,13],[1,0],[2,-7],[1,-2],[2,-21],[2,-8],[3,-7],[2,-7],[4,-17],[1,3],[2,3],[1,2],[1,-5],[-1,-3],[0,-2],[1,-2],[0,-1],[0,-3],[2,3],[3,3],[1,2],[1,-3],[0,-4],[0,-5],[-1,-5],[0,-4],[0,-3],[2,-8],[3,-6],[3,-3],[2,-8],[-2,0],[0,-1],[-1,-1],[-1,-1],[-1,-7],[-1,-6],[3,-20],[2,-5],[4,-9],[6,2],[2,0],[2,-12],[2,-8],[1,-2],[12,-27],[4,-13],[0,-11],[-6,-4],[-3,4],[-6,18],[-4,7],[-5,3],[-3,0],[-3,-7],[-2,-13],[3,-3],[3,-1],[3,2],[2,6],[3,-2],[3,-3],[1,-3],[1,-2],[0,-6],[3,-8],[4,-7],[3,-7],[3,-11],[-2,-3],[0,-3],[1,-5],[1,-5],[2,4],[-1,8],[3,-2],[6,-10],[2,-5],[5,-27],[0,-2],[-2,-15],[0,-1],[0,-1],[2,-5],[0,-3],[-1,-4],[-2,-3],[-1,-4],[1,-5],[1,-4],[1,-3],[1,-3],[2,-4],[-3,-5],[0,-2],[0,-2],[3,-1],[2,6],[2,0],[2,-24],[0,-9],[2,0],[0,9],[1,8],[1,7],[1,5],[0,4],[0,1],[0,4],[0,1],[2,-1],[2,-5],[1,-5],[1,-12],[4,-15],[7,-50],[-1,-139]],[[72704,55006],[0,7],[-1,4],[-1,6],[-1,6],[0,6],[1,6],[0,5],[-1,7],[3,-7],[4,-17],[2,-8],[1,-3],[2,-15],[7,-23],[3,-10],[5,-52],[0,-12],[-4,-7],[-4,6],[-1,3],[-1,1],[0,3],[0,3],[0,1],[1,38],[-1,13],[-3,5],[-1,5],[-10,29]],[[72142,55844],[-3,3],[-1,6],[0,5],[4,3],[13,0],[5,-3],[6,-3],[12,-10],[11,-14],[9,-19],[-4,2],[-8,8],[-5,2],[7,-17],[6,-14],[2,-9],[-6,2],[-5,7],[-3,7],[-2,4],[-3,3],[-11,22],[-6,5],[-5,5],[-5,3],[-2,1],[-6,1]],[[72147,56096],[-2,-5],[-3,-4],[-7,-1],[-6,5],[-3,7],[0,24],[1,6],[2,0],[1,-5],[2,-7],[4,-3],[6,-1],[2,-2],[3,-14]],[[72193,56165],[-5,7],[-4,13],[-7,29],[3,10],[1,13],[2,10],[6,3],[3,-2],[0,-5],[-1,-7],[0,-8],[0,-8],[0,-6],[0,-1],[0,-1],[1,-5],[2,-3],[1,-2],[1,-1],[5,1],[1,-2],[0,-9],[1,-4],[3,-4],[5,-4],[3,-4],[0,-1],[1,-5],[-2,-4],[-3,0],[-4,3],[-3,3],[-2,1],[-5,-6],[-3,-1]],[[30894,57634],[10,-21],[1,-5],[-2,-4],[-6,-2],[-7,-1],[-6,1],[-7,7],[-14,21],[-15,9],[-9,11],[-8,14],[-4,13],[-2,12],[-4,4],[-5,1],[-5,3],[-4,9],[-8,30],[-3,4],[-4,5],[-3,5],[-2,8],[1,21],[0,12],[-3,10],[2,5],[1,2],[2,0],[1,-3],[12,-11],[5,-6],[5,-10],[3,-11],[3,-27],[3,-12],[10,-20],[12,-13],[35,-17],[4,-6],[1,-7],[1,-12],[2,-7],[7,-12]],[[30556,57918],[17,-27],[3,-7],[3,-13],[10,-26],[0,-16],[-3,-5],[-5,0],[-6,5],[-5,8],[6,0],[0,4],[-9,10],[-19,35],[-6,5],[-3,3],[-1,6],[0,6],[3,10],[1,6],[-1,10],[-2,8],[-1,7],[4,4],[11,-28],[3,-5]],[[29722,63174],[-9,-10],[-3,-6],[-3,0],[0,6],[0,7],[-2,12],[-3,11],[-1,12],[3,5],[6,4],[5,6],[5,12],[4,6],[3,-3],[3,-9],[3,-5],[6,-6],[5,-5],[3,-6],[-1,-12],[-6,-6],[-10,-3],[-5,-9],[-3,-1]],[[29683,63714],[-5,2],[-2,4],[0,6],[6,7],[-2,5],[0,2],[2,6],[1,8],[-1,6],[0,6],[3,5],[5,-13],[2,-3],[5,-1],[0,1],[1,3],[3,3],[1,1],[2,0],[5,-3],[2,-1],[7,-5],[14,-19],[7,-1],[-2,4],[-2,9],[9,-9],[5,-2],[3,3],[4,-7],[4,-4],[5,-1],[7,0],[2,-2],[2,-4],[3,-9],[3,-3],[6,0],[2,-3],[2,-10],[-1,-12],[-3,-10],[-5,-4],[-5,3],[-13,25],[-5,9],[-5,5],[-5,2],[-7,1],[-3,-1],[-4,-3],[-2,-1],[-3,1],[-2,3],[-2,3],[-2,2],[-6,-3],[-11,-11],[-7,-3],[-2,1],[-2,3],[-2,3],[-1,1],[-11,5]],[[29592,63846],[-2,0],[-12,7],[-5,3],[-6,2],[0,3],[5,1],[4,1],[7,-3],[6,-6],[3,-8]],[[29542,62943],[1,11],[-4,8],[-3,6],[0,6],[10,-9],[6,4],[4,4],[4,5],[8,5],[2,12],[6,11],[3,11],[6,-3],[6,6],[8,0],[3,1],[2,2],[3,5],[4,11],[3,5],[1,-2],[1,-13],[5,-10],[5,-15],[8,-7],[17,-11],[6,8],[6,6],[14,7],[7,16],[5,23],[14,44],[4,11],[6,7],[6,-5],[2,-11],[-1,-13],[-5,-64],[-2,-16],[-18,-45],[-9,-52],[-6,-6],[-21,-18],[-12,4],[-3,-2],[-3,-3],[-5,-8],[-2,0],[0,5],[2,3],[-4,6],[-6,2],[-15,-17],[-9,1],[-17,-8],[-12,10],[-18,4],[-4,-2],[-4,-4],[-2,-5],[-1,-5],[-1,-5],[-2,1],[-3,4],[-4,9],[-1,6],[0,10],[-1,14],[-5,17],[0,3],[1,4],[8,2],[4,6],[2,13]],[[29365,63896],[-1,-16],[-8,-25],[-10,-23],[-9,-13],[3,25],[8,17],[9,15],[8,20]],[[29445,63888],[-1,4],[-4,12],[9,-5],[2,-3],[1,7],[2,5],[2,2],[3,-2],[1,3],[1,1],[1,0],[0,4],[-2,2],[-1,1],[-1,2],[-1,4],[14,0],[7,2],[7,6],[1,-3],[0,-2],[0,-1],[1,-2],[-6,-23],[-3,-6],[-1,6],[-1,5],[-1,3],[-3,2],[1,-8],[2,-8],[3,-4],[4,4],[1,-8],[3,-45],[1,-9],[4,-15],[-5,-2],[-2,-10],[-1,-13],[-1,-11],[-3,-7],[-4,-8],[-4,-7],[-4,-3],[-3,-5],[-9,-35],[-15,-24],[-2,-3],[-3,0],[-17,-14],[-7,-3],[-4,-7],[-7,-23],[-2,-4],[-8,-13],[-3,-3],[-6,-2],[-5,-5],[-9,-17],[0,5],[0,21],[1,6],[3,2],[11,-2],[3,2],[8,15],[0,4],[-3,4],[0,4],[6,6],[2,2],[-2,1],[-1,1],[-1,2],[0,4],[5,5],[9,9],[6,2],[1,2],[3,9],[4,5],[0,7],[-1,8],[0,6],[5,4],[8,1],[6,4],[3,9],[2,14],[3,7],[5,3],[6,2],[11,8],[7,14],[3,19],[-4,24],[-8,11],[-20,1],[-8,9],[-5,8],[1,2],[3,11],[2,3],[2,2],[2,2]],[[29364,63933],[-18,53],[1,1],[1,2],[0,2],[0,3],[3,0],[5,3],[2,1],[3,-2],[8,-10],[3,-2],[6,-1],[3,-1],[7,-13],[1,-5],[1,-10],[0,-5],[1,0],[4,0],[1,0],[0,-2],[2,-6],[5,-4],[10,-1],[6,-3],[-2,8],[6,-3],[17,-13],[-21,-37],[-1,5],[0,1],[-3,2],[0,10],[-5,-2],[-7,-4],[-21,10],[-2,5],[-5,10],[-2,-7],[-3,-6],[-3,-3],[-2,1],[2,13],[0,7],[-3,3]],[[29537,64144],[-25,-10],[-12,0],[-5,18],[21,-4],[15,3],[6,-3],[0,-4]],[[28985,64363],[9,-2],[12,-6],[10,-11],[5,-14],[-10,7],[-12,4],[-10,8],[-4,14]],[[28945,64410],[4,-19],[10,-15],[24,-17],[-4,-9],[-7,4],[-12,13],[-14,2],[-5,6],[2,12],[-5,7],[-5,10],[-5,5],[-4,-5],[-10,20],[-10,15],[-12,7],[-14,-2],[0,4],[8,5],[2,1],[-1,6],[-2,5],[1,3],[-3,4],[-3,7],[0,8],[2,6],[3,-1],[3,1],[2,3],[1,1],[3,-2],[1,-3],[2,-8],[3,-6],[4,-3],[4,-2],[6,0],[-1,-3],[0,-2],[-1,-2],[-2,-1],[19,-38],[13,-15],[3,-2]],[[29206,64079],[3,-6],[2,-15],[2,-18],[0,-23],[-1,-7],[-1,-2],[-4,2],[-1,4],[-2,20],[-1,-1],[-3,-3],[-2,15],[-8,28],[-3,25],[-2,8],[-10,22],[-3,6],[-3,3],[-32,13],[-7,8],[-3,6],[-20,25],[-4,3],[0,6],[2,5],[1,5],[3,5],[1,0],[3,-9],[8,-7],[3,-9],[-7,2],[-3,2],[2,-7],[3,-6],[3,-3],[4,0],[3,-4],[5,-9],[3,-3],[3,-1],[5,-1],[2,2],[-1,6],[-16,35],[-2,10],[1,16],[2,11],[3,10],[1,9],[0,14],[-2,16],[-3,14],[-4,9],[-1,-3],[-3,-5],[0,14],[-10,17],[0,14],[-4,1],[-3,3],[-2,4],[2,8],[-6,8],[-2,10],[-2,27],[-6,28],[-2,3],[-2,-2],[-2,-3],[-3,-2],[2,29],[-2,8],[-6,-9],[3,8],[1,3],[2,2],[-4,2],[-2,-4],[-2,-7],[-4,-4],[0,5],[3,5],[2,7],[2,9],[-1,11],[2,-1],[1,-2],[2,-2],[1,-3],[16,-53],[4,-5],[5,-11],[5,-14],[2,-11],[4,-40],[3,-10],[5,-11],[16,-63],[0,-6],[2,-5],[1,-13],[0,-26],[2,-29],[5,-17],[8,-11],[23,-18],[10,-16],[18,-39],[-1,-3],[-1,-6],[-1,-3]],[[29194,64509],[14,8],[10,0],[4,-3],[6,-9],[-3,-9],[-1,-8],[-3,-4],[-6,0],[0,-3],[2,-5],[-5,0],[-7,4],[-3,9],[-5,-5],[-9,0],[-5,-3],[-1,13],[1,8],[5,4],[6,3]],[[28798,64667],[-4,9],[-5,21],[-5,13],[-3,18],[-3,10],[-1,6],[0,8],[7,-9],[16,-72],[-2,-4]],[[29314,64696],[-2,-7],[-4,-24],[-1,-6],[-18,-4],[0,4],[5,12],[3,18],[1,21],[-1,18],[0,14],[3,9],[5,5],[5,4],[2,3],[1,3],[2,2],[2,-1],[4,-15],[1,-2],[0,-6],[3,-8],[1,-4],[-1,-5],[-1,-12],[-1,-5],[-11,-39],[-1,7],[1,6],[2,12]],[[28366,64793],[-3,-5],[-15,-14],[-5,-1],[-1,4],[-2,8],[0,8],[0,6],[3,1],[3,-2],[4,-1],[1,6],[3,2],[15,20],[1,2],[5,5],[3,2],[11,0],[-1,-6],[-2,-3],[-5,-3],[-2,0],[-1,2],[-1,1],[-3,-3],[-2,-6],[-3,-16],[-3,-7]],[[28355,64838],[-4,0],[-2,-5],[0,-8],[2,-8],[-4,2],[-7,-2],[-4,0],[-3,3],[-4,5],[-1,5],[4,4],[7,2],[7,7],[6,3],[3,-8]],[[28760,64809],[-5,0],[-3,3],[-12,30],[-3,8],[0,8],[5,-5],[2,-7],[2,-9],[3,-7],[3,-6],[3,-2],[3,-4],[2,-9]],[[28465,64643],[2,-8],[-1,-23],[1,-10],[-5,-21],[-3,-3],[-7,4],[1,-8],[5,-8],[1,-8],[0,-8],[-2,-9],[-2,-8],[-1,-4],[-9,-6],[-7,6],[-6,9],[-7,3],[5,-11],[0,-5],[-3,-8],[-2,0],[-4,13],[-9,4],[-17,-1],[9,8],[-1,11],[6,-1],[14,-10],[2,11],[3,8],[4,5],[15,14],[4,7],[0,6],[-5,4],[-5,-5],[-5,-9],[-4,-4],[-16,-20],[1,-2],[0,-2],[-6,1],[-7,19],[-6,4],[19,13],[9,11],[1,13],[-4,-9],[-5,-3],[-15,-1],[-4,-1],[-3,-3],[-3,-2],[-4,2],[-2,5],[-2,7],[-4,40],[0,15],[1,6],[-4,3],[0,6],[1,8],[0,8],[-3,7],[-4,4],[-2,4],[2,5],[0,4],[-6,7],[-17,13],[2,5],[2,4],[4,-5],[1,1],[1,5],[-1,2],[1,6],[-1,3],[0,2],[2,6],[3,2],[8,5],[3,5],[1,5],[2,15],[1,4],[9,2],[4,2],[2,5],[1,4],[1,4],[2,8],[4,6],[11,10],[4,8],[7,8],[3,-8],[2,-9],[2,-8],[4,-3],[1,-4],[-2,-7],[-17,-28],[-7,-7],[-9,-3],[0,-4],[5,-1],[2,-4],[-1,-5],[-5,-2],[-1,-3],[3,-5],[7,-9],[4,4],[2,-6],[-1,-11],[-5,-17],[0,-8],[-2,-6],[-4,-4],[5,-3],[5,8],[8,34],[6,13],[3,8],[1,12],[0,15],[1,14],[4,9],[5,-2],[4,-12],[4,-15],[3,-10],[3,-9],[2,-9],[1,-10],[1,-20],[1,-12],[0,-5],[0,-7],[-1,-11],[-1,-7],[1,-3],[4,-11],[1,-6],[-1,-7],[-2,-4],[-2,-3],[-1,-2],[-3,-3],[-6,0],[-5,-4],[-1,-15],[10,13],[5,5],[6,-2]],[[28398,64876],[-6,-7],[-3,2],[-2,6],[2,5],[6,6],[5,8],[5,4],[6,3],[5,-1],[1,-2],[3,-4],[1,-4],[0,-5],[-2,-4],[-3,2],[-3,4],[-2,2],[-5,-1],[-3,-2],[-5,-12]],[[29079,64812],[2,-9],[5,-34],[-13,8],[-6,1],[-6,-1],[-13,-5],[-4,-5],[-5,-8],[-7,-2],[-7,10],[-3,12],[6,6],[4,2],[6,6],[5,8],[3,8],[5,0],[3,16],[-2,19],[-5,10],[-8,3],[-6,9],[-15,47],[-2,17],[-5,15],[-2,8],[-1,19],[-5,14],[-7,9],[-9,1],[1,6],[0,7],[-1,8],[0,7],[-2,7],[-1,3],[-2,2],[-13,21],[-8,8],[-3,4],[-2,5],[0,4],[1,5],[6,14],[2,1],[4,-1],[2,-2],[8,-14],[7,-6],[3,-3],[3,-7],[3,-38],[1,-11],[3,-6],[4,-8],[4,-10],[4,-18],[8,-28],[15,-44],[5,-8],[11,-11],[5,-9],[7,-28],[2,-4],[3,-4],[12,-26]],[[28478,65270],[-5,5],[-5,1],[-5,-1],[-4,1],[-4,10],[3,12],[6,9],[7,6],[4,1],[9,7],[4,1],[12,-1],[12,4],[4,0],[4,-3],[7,-8],[11,-5],[-3,-7],[-30,-26],[-6,0],[-9,8],[-2,-5],[-3,-7],[-4,-5],[-3,3]],[[28235,65073],[3,4],[2,4],[0,6],[-2,6],[4,11],[5,-1],[3,-7],[2,-13],[0,-10],[-1,-9],[-2,-8],[-3,-7],[-5,-7],[0,-1],[0,-6],[1,-6],[2,-2],[8,10],[4,2],[2,5],[0,13],[5,-5],[0,-11],[-1,-12],[0,-11],[5,-5],[3,7],[0,13],[-1,12],[3,-3],[3,-3],[2,-2],[1,4],[0,8],[-2,6],[-3,5],[-2,5],[0,3],[0,9],[0,4],[-2,4],[-4,8],[-2,4],[-1,9],[-1,9],[-1,6],[-4,-3],[3,-5],[1,-9],[-1,-23],[-2,6],[-2,10],[-2,9],[-4,4],[0,4],[0,10],[3,18],[4,9],[6,9],[4,12],[-1,15],[3,3],[7,3],[2,4],[1,7],[3,15],[1,8],[3,0],[-1,5],[-2,6],[-2,5],[1,5],[1,8],[3,8],[2,4],[2,7],[0,17],[-3,26],[-3,19],[-6,25],[-3,22],[3,13],[4,0],[11,-4],[4,-3],[3,-6],[2,-7],[2,-5],[5,-3],[4,4],[4,6],[5,4],[4,-4],[4,-5],[4,-4],[3,-5],[3,-8],[-4,-9],[0,-11],[2,-9],[4,-7],[-3,-24],[-1,-14],[1,-7],[6,-1],[4,-5],[3,-9],[17,-82],[13,-35],[4,-10],[5,-4],[3,-4],[10,-20],[3,-9],[0,-10],[0,-15],[-1,-13],[-2,-8],[-1,-12],[2,-14],[6,-25],[1,-21],[-2,-15],[-7,-10],[-10,-3],[-5,-2],[-2,-6],[-3,-7],[-3,-5],[-8,-2],[-2,-5],[3,-13],[-3,-7],[-11,-13],[-5,-3],[-9,-1],[-4,-3],[-10,-15],[-2,-5],[1,-5],[1,-5],[0,-4],[-2,-4],[-3,-2],[-2,2],[-3,4],[-1,4],[-4,16],[-1,20],[-3,18],[-7,7],[-8,7],[-2,18],[2,40],[-5,-8],[-4,-8],[-4,-6],[-7,-2],[-6,2],[-35,39],[-16,30],[-6,12],[-3,14],[4,1],[5,6],[6,6],[2,5],[1,8],[2,0],[3,-4],[2,-2]],[[28844,65373],[8,-10],[4,-9],[1,-11],[-2,-50],[-1,-10],[-1,-5],[-1,-6],[-2,-4],[-3,-2],[-1,-2],[-1,-11],[1,-11],[3,-15],[2,-10],[-2,-28],[-1,-12],[-7,-21],[-1,-8],[-1,-41],[1,-23],[4,-19],[-9,8],[-5,19],[-3,21],[-4,17],[-5,6],[-12,10],[-5,6],[-6,13],[1,6],[4,1],[28,-9],[2,1],[1,4],[1,5],[1,4],[5,8],[1,6],[1,8],[0,14],[-2,-4],[-4,-9],[-3,-5],[-1,6],[0,15],[2,27],[2,10],[1,3],[1,4],[8,14],[2,4],[2,34],[0,13],[-5,27],[-9,14],[-10,10],[-9,14],[-23,65],[-7,11],[-10,8],[-22,9],[-12,11],[-17,31],[-11,7],[-6,1],[-11,5],[-5,2],[-6,-3],[-10,-11],[-4,2],[7,14],[4,23],[4,44],[-2,0],[10,0],[4,-1],[3,-3],[-3,-9],[-1,-9],[0,-11],[0,-12],[5,11],[3,-5],[2,-12],[3,-6],[5,-3],[35,-53],[11,-11],[12,-6],[13,-1],[5,-2],[4,-7],[15,-39],[16,-32],[18,-25]],[[28383,65694],[-3,1],[-4,8],[-4,15],[-6,12],[-2,8],[2,5],[4,-2],[2,-6],[11,-36],[0,-5]],[[28461,66049],[-1,-5],[-8,-18],[1,14],[-1,8],[-2,8],[0,11],[2,-3],[8,-12],[1,-3]],[[28169,66185],[-5,-6],[-6,-6],[-5,-7],[-2,-4],[-6,-1],[-3,-2],[-11,2],[-11,7],[-7,13],[-12,14],[-29,58],[-13,21],[-3,9],[3,0],[2,-2],[2,-2],[2,-4],[36,-44],[8,-22],[6,2],[4,2],[9,-8],[7,0],[6,6],[6,7],[3,4],[4,4],[2,2],[1,5],[3,6],[1,7],[4,7],[4,13],[5,6],[-1,7],[-7,8],[-11,4],[2,7],[7,17],[2,7],[2,25],[5,-7],[5,-12],[4,-12],[1,-11],[6,-6],[22,-17],[6,3],[13,-6],[14,-5],[9,-1],[4,11],[6,5],[8,-7],[6,-2],[10,8],[13,-4],[9,6],[9,7],[5,2],[18,0],[4,4],[3,6],[2,8],[2,7],[5,3],[0,-11],[-1,-12],[-1,-12],[5,-21],[0,-11],[-2,-10],[-5,-4],[-2,1],[-5,8],[-3,3],[-3,1],[-18,-2],[-17,-7],[-38,-15],[-15,0],[-59,-28],[-5,-2],[-5,-3],[-8,-14],[-6,-3]],[[28385,66404],[-5,2],[-22,-3],[-9,-7],[-6,0],[1,2],[1,1],[2,1],[10,13],[13,4],[26,-1],[25,-11],[15,-2],[6,9],[15,-13],[12,-17],[51,-95],[6,-7],[6,-4],[9,-1],[-2,-7],[-4,-2],[-9,0],[4,-16],[6,-13],[7,-8],[17,-6],[8,-7],[13,-19],[10,-11],[3,-5],[3,-8],[2,-11],[0,-9],[-4,-5],[0,-4],[-1,-26],[1,-10],[3,-6],[4,-4],[4,-2],[-4,-14],[0,-4],[1,-7],[1,-4],[1,-3],[1,-3],[0,-5],[1,-2],[-1,-2],[-2,-5],[-2,-4],[-3,-2],[-5,-2],[1,3],[1,9],[-9,-2],[-8,-10],[-8,-13],[-6,-13],[-3,-15],[-2,-45],[0,-12],[-3,-33],[2,-48],[-1,-42],[-10,-19],[-7,8],[-7,16],[-4,19],[-2,12],[-5,8],[-20,8],[-6,15],[5,0],[5,3],[4,6],[3,15],[4,2],[4,1],[3,3],[10,22],[7,11],[7,6],[-2,4],[-1,5],[-1,6],[0,7],[-1,4],[-2,4],[-2,4],[-1,6],[2,7],[2,5],[3,6],[1,8],[0,16],[-1,8],[-5,9],[9,25],[0,5],[-3,7],[0,42],[4,0],[3,4],[2,5],[2,7],[1,3],[-1,12],[1,4],[2,2],[2,2],[1,2],[3,9],[1,11],[-2,8],[-10,5],[-6,6],[-26,7],[-5,6],[-3,10],[-3,15],[1,3],[0,5],[0,5],[-4,8],[-1,7],[-1,3],[-1,1],[-2,-3],[-1,-3],[-2,-1],[-5,1],[-5,3],[-2,6],[2,9],[-5,20],[-12,41],[-8,17],[-5,6],[-6,5],[-6,0],[-5,-5],[-5,-4],[-6,3],[-17,10],[-5,1],[-11,0],[-3,2],[-8,10],[-5,4]],[[27912,64384],[0,-1],[-6,8],[0,2],[6,-9]],[[27899,64414],[3,-7],[-1,-1],[-11,25],[2,-2],[7,-15]],[[27981,65594],[1,-6],[-1,6]],[[27975,65606],[0,2],[3,-6],[0,-3],[-3,7]],[[28966,63618],[1,-4],[1,-7],[-2,-5],[-4,0],[-2,5],[-2,8],[0,5],[1,0],[2,-1],[2,-2],[-1,3],[-1,10],[1,2],[1,-4],[3,-10]],[[28959,63638],[-1,-1],[-1,2],[1,15],[1,-1],[0,-10],[0,-5]],[[28941,63718],[1,-3],[1,-7],[0,-4],[-2,5],[-2,9],[-1,9],[1,1],[1,-6],[1,-4]],[[29550,63854],[4,5],[3,-4],[-4,-15],[-5,-2],[2,16]],[[29136,64592],[1,-3],[0,-6],[-1,-8],[-2,-2],[-2,10],[2,8],[2,1]],[[28369,64888],[9,2],[1,0],[-1,-5],[-3,-8],[-5,-5],[-5,5],[0,8],[4,3]],[[28674,65002],[0,-4],[0,-8],[-2,-3],[-3,3],[-1,8],[0,10],[3,2],[2,-5],[1,-3]],[[28371,65517],[-4,0],[-3,0],[-5,0],[0,1],[2,3],[2,2],[2,0],[3,0],[4,0],[3,4],[3,6],[0,-1],[-1,-6],[-3,-7],[-3,-2]],[[27986,65734],[1,-7],[1,-12],[-1,-5],[-1,3],[-1,-2],[-4,-2],[0,5],[2,9],[-1,3],[-4,-7],[-2,-5],[-2,-4],[0,-8],[3,-5],[4,-3],[3,-5],[-1,-3],[-8,2],[-3,0],[-1,3],[1,9],[2,11],[3,12],[6,9],[3,2]],[[28543,66151],[2,-3],[0,-2],[0,-1],[0,1],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-7],[1,-7],[-2,-2],[-1,0],[-1,0],[-2,2],[-1,7],[-2,4],[-1,3],[0,3],[1,-1],[2,2],[1,3],[2,2],[3,-1]],[[28374,66223],[1,3],[3,5],[1,-2],[-3,-6],[0,-3],[0,-3],[-2,-4],[-1,-7],[-2,-5],[-1,0],[-1,2],[-1,2],[-3,9],[-2,5],[0,5],[1,2],[9,4],[1,-3],[-3,-6],[0,-2],[2,2],[1,2]],[[29872,63324],[7,2],[0,-17],[-5,-21],[-8,-9],[0,4],[3,6],[2,11],[1,12],[0,12]],[[30136,63324],[-5,7],[-13,11],[-5,11],[2,1],[1,1],[1,2],[0,3],[10,-12],[4,-4],[7,-4],[6,-4],[5,-9],[3,-12],[-2,-15],[-3,-2],[-4,8],[-7,18]],[[30054,63373],[-6,-1],[-3,3],[-2,10],[-1,6],[-1,22],[2,0],[3,-1],[2,-2],[5,-6],[2,0],[3,1],[2,1],[17,-5],[8,3],[4,1],[4,-4],[2,-7],[7,-29],[-5,3],[-3,8],[-2,10],[-3,7],[2,-13],[5,-21],[2,-11],[-3,-1],[-3,4],[-5,14],[-2,-6],[0,-3],[-2,0],[-4,16],[-7,5],[-18,-4]],[[29906,63381],[-1,7],[3,19],[0,10],[6,-6],[18,-32],[3,-3],[6,0],[5,2],[4,3],[4,7],[2,6],[3,2],[6,-7],[0,-4],[-7,-15],[-2,-5],[-2,8],[0,4],[-8,-8],[1,-1],[1,0],[1,-1],[1,-2],[-4,-5],[-7,2],[-4,-2],[0,9],[-11,-18],[-5,-1],[-3,15],[1,0],[2,-5],[3,-3],[2,1],[-1,7],[-1,3],[-10,9],[1,-8],[-1,-6],[-2,-4],[-4,-3],[-1,4],[0,3],[0,2],[1,4],[0,-3],[1,0],[1,-1],[1,7],[3,13],[2,8],[-6,-9],[-2,-3]],[[29994,63442],[-2,5],[1,6],[0,5],[-3,4],[1,5],[2,3],[2,3],[2,1],[17,0],[1,0],[4,-3],[2,-1],[3,-2],[1,-5],[-1,-9],[3,-35],[4,-12],[8,-1],[-5,-9],[-5,2],[-4,7],[-4,3],[-2,2],[-3,3],[-4,6],[-1,5],[0,8],[4,14],[1,7],[-2,10],[-4,-5],[-7,-15],[-1,-5],[-3,-1],[-3,1],[-2,3]],[[30239,63210],[2,-9],[1,-15],[-2,-15],[-3,-9],[-2,11],[1,13],[1,13],[2,11]],[[30086,63084],[2,2],[2,2],[-1,-5],[-5,-5],[-1,1],[3,5]],[[30101,63095],[2,3],[0,-8],[-2,-9],[-2,5],[2,9]],[[30219,63108],[3,0],[2,-3],[-2,-8],[-4,-7],[-1,2],[1,11],[1,5]],[[30139,63243],[1,-3],[-1,-20],[1,-13],[-3,-8],[-4,-3],[-5,6],[0,10],[3,5],[3,-1],[2,3],[0,14],[2,10],[1,0]],[[29965,63412],[2,2],[0,-2],[-2,-4],[-2,0],[2,4]],[[29973,63429],[2,2],[1,-3],[0,-5],[-2,-3],[-2,-2],[-1,4],[2,7]],[[83862,65245],[-20,-46],[-3,-10],[-2,-14],[-2,-15],[-1,-16],[1,-15],[3,-32],[0,-8],[-2,-8],[1,-17],[3,-12],[7,-9],[8,-2],[0,-4],[-3,1],[-3,-1],[-3,-2],[-2,-3],[3,-10],[1,-13],[-1,-12],[-6,-7],[-1,-5],[1,-6],[2,-5],[1,-6],[-3,-5],[-7,-7],[-7,-17],[0,-6],[0,-15],[-1,-5],[-1,-5],[-1,-6],[-1,-13],[0,-4],[-1,-3],[-1,-2],[1,-4],[1,-2],[1,-3],[1,-3],[0,-2],[-2,-5],[-6,-12],[-6,-17],[-5,-8],[-2,-4],[1,-4],[-1,-3],[-7,-11],[-3,-5],[-3,-12],[-3,-25],[-7,-23],[-2,-9],[0,-9],[2,-11],[2,-5],[1,-2],[1,-3],[0,-6],[-1,-8],[-4,-12],[-1,-7],[0,-13],[-4,-33],[-6,-36],[-9,-82],[-5,-20],[-12,-133],[-4,-54],[-3,-10],[-7,-20],[-3,-10],[-2,-13],[-2,-23],[0,-21],[-1,-20],[-5,-21],[-2,-4],[-5,-7],[-2,-5],[-1,-5],[-2,-12],[-5,-17],[-3,-27],[-3,-13],[-10,-30],[-2,-6],[-14,-24],[-4,-8],[0,-6],[0,-13],[0,-6],[-1,-6],[-2,-7],[-5,-13],[-5,-9],[-17,-23],[-12,-24],[-3,-3],[-2,-6],[-5,-28],[-3,-10],[-9,-21],[-3,-13],[-2,-25],[-5,-35],[-10,-35],[-2,-12],[-1,-33],[0,-31],[1,-108],[-2,-15],[-3,-12],[-3,-5],[-4,-8],[0,-18],[1,-19],[0,-12],[-5,14],[-7,11],[-8,7],[-9,4],[0,-13],[-2,-5],[-4,1],[-4,7],[0,5],[1,14],[-6,20],[0,5],[0,4],[0,7],[0,22],[1,7],[3,7],[0,6],[-21,108],[-2,6],[-6,14],[-4,21],[-2,6],[-9,13],[-3,4],[-1,1],[-2,1],[-1,8],[0,3],[-5,6],[-10,10],[-5,6],[-5,9],[-3,3],[-3,3],[-1,-1],[-2,-1],[-3,0],[-13,21],[-13,36],[13,-32],[-1,15],[-3,8],[-1,7],[-6,13],[-10,17],[-3,9],[-2,10],[2,9],[2,9],[-2,12],[-3,12],[-5,16],[-5,21],[-1,9],[0,6],[2,8],[0,5],[-1,2],[-1,2],[-1,3],[-1,5],[-3,10],[-1,4],[-2,28],[-1,13],[-2,8],[-4,8],[5,7],[3,13],[-1,10],[-7,2],[-1,-4],[-1,-7],[-2,-5],[-4,0],[-1,5],[0,14],[-1,5],[-4,4],[-2,-4],[-2,-6],[-3,-2],[-3,5],[-1,8],[1,7],[1,5],[3,3],[4,1],[3,2],[1,6],[-1,3],[-10,5],[0,4],[8,0],[-1,6],[-4,7],[-3,7],[1,8],[2,3],[3,2],[2,5],[-1,9],[-2,6],[1,6],[2,8],[2,5],[0,5],[0,5],[4,18],[1,4],[3,1],[-4,5],[2,9],[4,0],[3,3],[2,-1],[-1,7],[-2,-3],[-2,1],[-3,0],[0,7],[3,11],[4,1],[5,0],[-4,21],[-4,17],[2,8],[0,4],[-3,3],[0,3],[2,5],[1,5],[4,11],[-9,-1],[0,18],[5,10],[0,34],[0,25],[3,21],[5,16],[1,20],[3,18],[1,6],[7,17],[1,6],[0,3],[6,9],[2,6],[2,15],[1,6],[8,14],[2,6],[3,16],[4,16],[6,33],[3,9],[3,7],[3,3],[2,2],[2,3],[0,6],[1,6],[6,8],[1,6],[1,21],[1,6],[3,5],[12,27],[0,2],[1,7],[3,5],[3,14],[3,25],[10,33],[3,20],[3,12],[14,30],[8,16],[2,9],[1,13],[2,12],[6,21],[2,13],[2,5],[7,4],[2,5],[1,5],[1,5],[5,9],[5,7],[6,3],[7,-3],[-1,12],[3,7],[4,8],[2,12],[1,3],[4,4],[1,11],[6,23],[2,6],[1,4],[0,3],[-1,4],[-1,4],[2,6],[2,4],[1,5],[1,8],[1,6],[2,6],[3,4],[2,2],[0,2],[1,6],[2,13],[2,6],[10,29],[7,17],[8,13],[19,12],[5,6],[4,6],[4,5],[10,7],[21,7],[12,4],[5,4],[7,11],[1,2],[3,0],[3,0],[4,-2],[2,-5],[1,-6],[2,-3],[3,3],[-3,11],[-7,12],[-3,4],[1,6],[2,3],[2,2],[1,2],[2,10],[3,12],[7,12],[11,10],[11,5],[12,-2],[4,-7],[11,-29],[4,-15],[1,1],[3,1],[3,1],[2,-1],[0,-2],[-1,-3],[-1,-3],[0,-5],[1,-2],[4,-6],[1,-2],[2,-3],[4,-3],[48,-23],[4,-4],[-2,-7],[0,-6],[0,-11],[3,-18],[3,-8],[2,-2],[7,2],[4,0],[4,-3],[4,-4],[3,-5],[-22,-21],[-6,-10]],[[83767,63525],[5,-8],[2,-5],[0,-5],[-6,-4],[-8,6],[-7,10],[-4,8],[1,5],[0,6],[-1,5],[-2,4],[21,0],[0,-4],[-1,-2],[-1,-5],[0,-6],[1,-5]],[[82886,64992],[8,3],[8,-13],[5,-26],[-1,-18],[-4,-9],[-8,9],[-5,3],[-8,-2],[-8,-9],[-4,-12],[-4,-4],[-4,4],[-3,0],[-2,2],[-1,5],[0,1],[2,6],[1,3],[0,4],[0,5],[-1,9],[-1,8],[-1,5],[2,1],[8,8],[11,-14],[7,2],[1,18],[2,11]],[[83235,64448],[5,-18],[1,-8],[-1,-6],[-2,4],[-2,3],[-3,1],[-4,-4],[-3,-1],[-2,-2],[-1,-3],[-1,-8],[-1,-2],[-5,-6],[-5,-1],[-5,3],[-5,10],[1,6],[3,-7],[5,-2],[4,3],[4,6],[-3,1],[-2,3],[-1,3],[-2,5],[-1,-2],[0,-1],[-1,-1],[0,8],[0,8],[2,0],[2,-1],[8,10],[5,3],[-1,-9],[-1,-3],[4,3],[4,-1],[2,0],[2,6]],[[83187,64448],[4,21],[3,7],[4,-8],[-2,-3],[-2,-7],[-3,-18],[0,-4],[1,-4],[-1,-3],[-3,-1],[-2,0],[-2,-1],[-1,-1],[-1,-2],[-4,0],[0,4],[2,3],[2,1],[2,0],[3,2],[0,4],[0,10]],[[83214,64462],[-1,7],[-2,6],[-5,9],[6,9],[4,-4],[3,-5],[1,-7],[-2,-4],[1,-8],[-2,-4],[-2,-2],[-1,3]],[[83738,63889],[-1,8],[0,2],[11,1],[1,-1],[1,-4],[-1,-8],[-1,-4],[0,-3],[0,-3],[0,-3],[-1,1],[-2,0],[-1,0],[0,1],[-3,2],[-3,11]],[[83339,64358],[14,29],[12,28],[2,2],[-9,-31],[-5,-9],[-3,-7],[-4,-8],[-3,-4],[-5,-8],[-3,-3],[4,11]],[[86050,69302],[2,-9],[2,-12],[1,-11],[-4,-5],[-3,-5],[-9,-31],[-4,-19],[-3,-4],[-6,-10],[-5,5],[-5,7],[-1,11],[5,4],[4,20],[8,18],[4,4],[6,4],[4,9],[2,12],[2,12]],[[86571,69703],[-1,-12],[5,-9],[4,-12],[-7,-9],[-3,-3],[-3,-1],[-2,-2],[-1,-5],[-2,-16],[-1,-14],[-1,-3],[-1,-1],[-3,-4],[-2,-12],[-4,-29],[-5,-21],[-3,-29],[-6,-37],[-9,-56],[-11,-63],[-3,-17],[1,-11],[-1,-7],[3,-15],[3,-10],[8,-5],[-1,-6],[-4,-9],[-1,-5],[-7,-66],[2,-18],[-9,-13],[-4,-8],[-1,-9],[-1,-1],[-3,-12],[-2,-5],[0,-8],[1,-3],[1,-3],[0,-2],[0,-13],[-1,-3],[-3,-7],[-1,-4],[-3,-28],[-1,-6],[-4,-9],[-1,-5],[0,-4],[-1,-4],[-2,-3],[-1,2],[-1,1],[-2,1],[2,4],[0,2],[0,2],[-11,-3],[-5,-1],[-5,4],[-1,5],[0,9],[0,6],[-2,4],[-5,11],[-2,5],[-1,0],[-2,1],[-6,-3],[-5,7],[-3,4],[-6,-1],[-6,-3],[-10,-8],[-4,-6],[-3,-8],[-5,-15],[-4,-23],[3,-5],[10,-5],[6,-4],[6,-6],[1,-7],[-1,-4],[-6,-8],[-2,-9],[5,-3],[9,7],[2,-5],[-20,-32],[-8,1],[-7,-4],[0,-12],[-3,-8],[-5,-18],[-3,-9],[-3,-6],[-4,-6],[-5,-5],[-5,-3],[-10,-7],[-7,-3],[-7,-2],[-8,-6],[-5,-7],[-2,-5],[-11,-6],[-9,-17],[-4,-8],[-6,-1],[2,39],[7,13],[11,12],[4,6],[6,39],[-3,10],[7,23],[3,19],[2,30],[-1,11],[-3,17],[-4,18],[-6,19],[-12,14],[-3,16],[3,25],[-3,11],[-16,5],[-5,5],[-2,2],[-4,4],[-2,7],[7,16],[6,6],[7,-3],[7,1],[7,-3],[3,-10],[-1,-16],[1,-4],[4,-2],[3,0],[3,2],[5,10],[6,19],[3,23],[-1,21],[-8,14],[-11,-1],[-14,10],[-12,-6],[-8,-20],[-1,-6],[-1,-15],[-1,-5],[-8,-16],[-2,-6],[-3,-20],[-4,-15],[-4,-17],[-3,-24],[0,-11],[1,-13],[8,-34],[4,-24],[3,-11],[4,-5],[4,-3],[5,-15],[11,-3],[0,-8],[-3,-20],[-1,-10],[-2,-12],[-5,-5],[-5,-4],[-5,-10],[-3,7],[-3,0],[-4,-2],[-4,-1],[-4,4],[-1,4],[0,9],[-3,13],[-3,9],[-12,13],[-43,3],[-6,-1],[-8,-5],[-7,1],[-3,9],[-1,11],[-1,8],[-3,13],[-4,7],[3,0],[5,-1],[0,7],[-3,10],[-7,14],[-9,12],[-6,6],[8,7],[2,1],[2,0],[4,-3],[2,0],[4,-3],[5,-12],[4,-6],[4,14],[14,24],[3,19],[3,9],[3,22],[2,19],[-3,15],[4,12],[0,11],[-3,10],[-8,16],[-11,30],[-3,5],[-13,15],[-5,3],[0,5],[-3,13],[3,22],[2,5],[9,-6],[4,-3],[-8,14],[-3,9],[5,16],[1,26],[-1,12],[-3,13],[-3,5],[-1,3],[-4,8],[-1,11],[4,5],[5,13],[0,15],[-7,12],[8,16],[11,8],[9,-20],[5,3],[6,8],[3,6],[1,4],[3,15],[0,1],[1,2],[2,2],[1,2],[0,8],[0,2],[20,40],[3,15],[1,3],[3,4],[1,3],[1,6],[-1,5],[0,5],[3,12],[2,1],[7,-13],[3,7],[0,7],[-1,17],[1,4],[7,18],[6,6],[3,15],[-1,15],[-5,9],[2,6],[4,2],[8,0],[-3,8],[-6,9],[-1,7],[2,5],[19,31],[5,10],[3,15],[-8,-1],[-45,-15],[-5,-4],[-3,4],[2,8],[5,7],[19,17],[6,10],[3,3],[5,-1],[4,3],[2,1],[3,0],[0,5],[-4,3],[-3,6],[-2,7],[0,6],[0,4],[1,4],[4,8],[1,3],[-1,3],[-1,2],[-1,4],[-3,12],[-21,31],[-13,24],[-8,9],[-2,10],[-2,39],[0,26],[-2,11],[1,8],[-1,3],[-1,2],[-2,1],[-1,0],[-2,1],[-5,8],[-2,4],[-2,7],[0,5],[0,3],[-8,2],[-6,3],[-4,0],[-3,0],[-9,18],[-5,5],[-6,-17],[-11,-14],[-8,-14],[-6,5],[1,-11],[4,-10],[4,-18],[12,-37],[5,-10],[-1,-12],[-4,-2],[0,-13],[-4,-8],[-7,-4],[-4,-8],[-4,-4],[-6,-5],[-2,-3],[4,-4],[3,-8],[6,-8],[7,0],[4,2],[14,18],[18,0],[9,-11],[3,-14],[6,-24],[0,-7],[1,-20],[-1,-5],[-5,-13],[-1,-8],[2,-9],[-5,-12],[-10,-10],[-10,0],[-3,-4],[0,-7],[-1,-4],[-5,-2],[-1,-7],[-3,-3],[-7,-1],[-4,-7],[-5,1],[2,6],[-1,9],[-4,4],[-2,5],[-5,4],[0,12],[0,14],[4,-2],[3,3],[4,7],[3,4],[3,5],[3,6],[3,6],[-1,11],[-3,3],[-3,3],[-1,4],[1,3],[1,6],[-3,5],[-9,2],[-2,-4],[-4,0],[-9,3],[-8,-6],[-4,-7],[-5,-8],[-6,-3],[-5,-4],[-6,-2],[-2,5],[0,6],[-1,1],[-3,-4],[2,-7],[-4,-10],[-7,-18],[-4,-10],[-2,-11],[-6,-8],[-5,-5],[-4,-1],[-1,-4],[-1,-10],[-7,-11],[-6,-8],[-1,-6],[-2,2],[-4,2],[-3,-4],[-3,-3],[-2,8],[5,6],[3,2],[4,3],[2,4],[3,15],[3,9],[3,9],[1,9],[-1,3],[-3,-3],[-2,4],[0,4],[3,2],[2,4],[3,2],[2,-6],[3,4],[4,14],[-10,-2],[0,8],[-5,22],[-3,5],[-3,2],[-1,4],[-1,7],[-1,7],[-5,2],[-3,-5],[-3,-2],[-3,12],[-7,8],[-3,9],[-2,9],[-1,6],[0,7],[-2,7],[-2,6],[-2,5],[-4,2],[-2,18],[0,13],[4,7],[2,8],[-1,8],[1,10],[2,3],[1,18],[5,14],[11,-8],[4,-12],[0,-1],[-1,-5],[1,-2],[2,3],[2,4],[1,-2],[1,-4],[-1,-4],[-4,-13],[-1,-9],[1,-8],[3,3],[4,13],[9,-4],[4,-9],[3,-9],[-2,-5],[0,-6],[0,-14],[0,-9],[-2,-5],[-2,6],[-2,14],[-2,0],[1,-21],[4,-6],[1,-10],[-4,-6],[6,-7],[2,-3],[2,-5],[3,-3],[1,-4],[2,2],[1,3],[4,4],[1,4],[3,9],[14,-9],[15,-11],[4,2],[-5,11],[-15,39],[0,17],[2,8],[3,14],[-1,12],[-9,12],[-9,16],[-8,-5],[-5,-7],[-3,0],[0,12],[-7,9],[-3,-4],[-3,-8],[-4,0],[-4,5],[-1,6],[-3,15],[2,0],[3,-2],[-1,11],[0,5],[4,3],[-1,5],[-3,0],[-5,-10],[-2,6],[0,8],[0,8],[-3,2],[0,-13],[-1,-13],[-1,-4],[-2,1],[-4,1],[-2,-7],[-2,-1],[-2,15],[6,2],[1,7],[-1,6],[-2,5],[-3,3],[-3,3],[1,5],[0,3],[-1,3],[-2,5],[-2,-3],[-3,-1],[-3,2],[-5,8],[-3,2],[-7,0],[-3,8],[3,18],[1,10],[2,3],[2,-1],[3,5],[-1,3],[-1,7],[-4,12],[2,16],[1,13],[3,6],[8,-12],[6,1],[8,22],[2,-5],[-1,-17],[7,-5],[12,7],[18,-10],[2,-10],[1,-16],[2,-6],[3,-5],[4,-3],[-1,8],[-2,13],[2,19],[3,11],[3,7],[-2,7],[2,4],[-15,17],[-5,11],[-3,6],[3,8],[2,8],[4,2],[5,-11],[1,-7],[2,-7],[4,-3],[3,3],[-2,8],[-6,15],[-2,19],[5,11],[-1,12],[5,-8],[5,-2],[6,7],[9,-9],[5,-12],[-1,-5],[-3,-8],[-1,-6],[3,-4],[3,6],[1,-6],[0,-6],[2,-5],[4,-3],[8,-2],[3,3],[3,6],[2,14],[3,6],[8,7],[5,3],[3,-2],[3,4],[1,2],[4,1],[4,3],[3,5],[2,8],[-4,-1],[-9,-3],[-2,1],[-1,9],[-2,1],[-4,1],[-1,3],[0,4],[2,5],[3,5],[2,1],[3,0],[3,2],[5,7],[-1,7],[2,7],[3,-1],[3,0],[2,1],[2,2],[2,4],[1,15],[4,-4],[3,-3],[1,-6],[-3,-5],[2,-10],[3,-4],[2,-2],[6,2],[1,-5],[-3,-9],[2,-3],[4,-4],[1,-1],[1,3],[2,0],[1,3],[3,8],[4,0],[8,-1],[4,4],[5,1],[2,7],[1,8],[1,12],[-1,5],[-1,6],[-5,-6],[-5,-8],[-4,-3],[-3,4],[-4,3],[-1,4],[-3,-2],[-4,5],[-1,10],[1,5],[3,-1],[2,-9],[3,-4],[6,-2],[12,9],[4,7],[4,8],[3,6],[5,3],[2,6],[4,9],[1,12],[-1,10],[-3,1],[-2,5],[0,7],[1,3],[3,2],[2,4],[2,4],[3,18],[2,-4],[3,1],[7,7],[2,5],[1,4],[2,2],[4,2],[13,-2],[6,1],[6,9],[8,22],[3,2],[3,1],[3,-1],[4,-3],[7,7],[10,0],[10,-3],[-2,-11],[4,3],[8,0],[2,-7],[3,-11],[4,-4],[5,2],[3,4],[5,11],[2,12],[8,12],[8,5],[3,-6],[-1,-12],[-2,-8],[-1,-3],[0,-4],[-3,-8],[3,-6],[-1,-8],[-4,0],[1,-5],[0,-5],[-1,-5],[-2,-3],[-4,-6],[-1,-8],[0,-2],[2,-2],[5,-2],[6,2],[-1,-20],[1,-4],[1,-15],[3,-12],[8,-26],[4,-17],[5,-11],[6,-7],[4,2],[8,-3],[11,-3],[9,-5],[10,-2],[8,-13],[11,-1],[12,-4],[14,4],[2,5],[10,16],[4,9],[2,12],[5,9],[6,5],[8,3],[6,0],[5,1],[5,-3],[5,-6],[6,1],[5,-1],[7,-15],[6,-22],[5,-15],[2,-11],[1,-13],[-3,-16],[2,-16],[-3,-13],[-5,-18],[-1,-14],[-2,-2],[-7,6],[-4,4],[-5,-4],[-1,-8],[0,-9],[-1,-8],[-7,-3],[-2,-2],[-1,-9],[-6,-2],[-5,0],[-3,3],[-4,9],[-7,-2],[-3,-14],[4,-39],[5,-8],[5,-3],[18,-1],[12,11],[12,-11],[3,10],[15,-10],[16,-6],[8,5],[10,10],[5,-2],[-6,-17],[-3,-13],[0,-9],[-2,-4],[-4,-3],[-5,-11],[-1,-10],[-5,-15],[9,-8],[7,9],[9,0],[3,-2],[-7,-9],[-5,-9],[-1,-7],[5,-5],[2,3],[5,-1],[2,-5],[4,-1],[1,7],[1,7],[2,1],[2,-10],[2,-5],[3,-4],[2,-1],[3,2],[1,4],[2,13],[5,-16],[-2,-8],[-7,-3],[-10,1],[-5,0],[-2,-11],[-4,-10],[-1,-17],[3,-4],[6,-10],[4,0],[2,-9],[3,2],[3,1],[2,-1],[1,-4],[2,-1],[4,3],[0,-3],[1,-3],[2,1],[3,9],[8,-3],[5,-2],[1,-6],[-5,2],[-6,-5],[-5,-2],[-9,-12],[-3,-9],[1,-4],[3,-2],[1,-4],[-3,-10],[-2,-4],[-3,-2],[-2,-4],[-3,-6],[4,-1],[8,2],[2,-3],[-2,-8],[-5,-7],[-5,-4],[-4,0],[-5,-9],[-13,3],[-2,-12],[0,-16],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-1],[-1,-10],[0,-9],[-2,-3],[-4,10],[-4,3],[-1,-8],[-5,-5],[-3,-11],[-4,-5],[-1,-3],[-1,-3],[0,-1],[1,-2],[0,-4],[-1,-7],[-5,-16],[-1,-3],[-4,-3],[-6,2],[-1,-3],[-2,-10],[-4,-18],[0,-7],[3,-7],[5,1],[2,-2],[5,-10],[-6,-11],[-6,-3],[-4,3],[-6,2]],[[87413,70503],[9,4],[5,3],[3,-3],[-5,-5],[-9,-7],[-10,-9],[-4,-8],[-9,-2],[-3,-10],[-8,-1],[-2,-16],[-7,-2],[-2,-10],[-23,-27],[-14,-10],[-8,-11],[3,-7],[-7,-13],[-1,-8],[-2,-4],[-3,-3],[-4,2],[-4,-4],[1,-10],[-1,-8],[-4,-7],[-7,-13],[-8,-28],[-8,-50],[-2,-22],[-3,-17],[0,-8],[-2,-16],[0,-13],[-4,-7],[-5,19],[-4,14],[-4,-2],[-6,3],[0,12],[-7,15],[-12,26],[-4,19],[-8,5],[-7,7],[-8,14],[-4,20],[-20,4],[-25,12],[-7,10],[-19,-5],[-18,-8],[-5,-8],[-12,-9],[-22,-19],[-4,-14],[1,-10],[-4,-7],[-7,-5],[-7,-2],[-4,-1],[-3,-1],[-2,-2],[-3,-5],[-5,-13],[-2,-1],[1,10],[-2,2],[-2,2],[-5,-6],[-7,-11],[-4,-12],[1,-12],[-1,-7],[0,-5],[2,-4],[1,-4],[0,-3],[1,-2],[1,-3],[-1,-4],[-1,-2],[-1,-2],[-1,-2],[-1,-14],[-3,-7],[-4,-7],[-4,-4],[1,-13],[2,-4],[-4,-5],[-2,7],[-4,0],[-7,-15],[-9,-29],[-7,-16],[-2,-8],[0,-9],[0,-5],[-2,-3],[-5,6],[-6,6],[-9,-9],[-5,-22],[-2,-22],[4,-27],[-2,-21],[-3,-4],[-8,1],[-2,-7],[1,-10],[-1,-12],[4,-5],[2,-7],[2,-4],[6,-9],[3,-9],[3,-10],[0,-12],[-7,-5],[-5,5],[-2,3],[-1,4],[-3,11],[-1,5],[-5,7],[-7,4],[-6,-2],[-3,-13],[-3,10],[-4,0],[-4,-5],[-4,-7],[-5,-5],[-5,0],[-6,3],[-4,4],[-8,13],[-5,9],[-13,-6],[-10,-16],[-2,12],[1,16],[6,16],[5,18],[8,16],[4,8],[1,7],[-19,0],[-4,-2],[-2,1],[-12,14],[-5,3],[4,-8],[-6,1],[-4,4],[-4,-1],[-1,-12],[1,-1],[3,-5],[1,-2],[-5,-4],[-4,2],[-4,5],[-5,19],[6,10],[-3,12],[4,9],[1,5],[-5,18],[-3,10],[-9,2],[-6,4],[-6,-20],[-4,1],[5,15],[-1,8],[3,7],[12,-10],[6,2],[3,7],[-6,0],[2,9],[0,7],[-2,6],[-3,2],[0,4],[6,-1],[1,1],[1,2],[2,4],[1,4],[-3,2],[-8,1],[-3,3],[-1,8],[0,7],[6,4],[-2,6],[-4,4],[-4,5],[-2,-6],[-4,-1],[-2,9],[7,4],[8,-3],[3,0],[1,-8],[5,-6],[2,-7],[5,7],[-1,10],[4,9],[6,3],[3,5],[-3,9],[-4,5],[5,7],[-5,1],[-4,-4],[-2,6],[-3,2],[-2,4],[0,8],[6,8],[5,2],[1,4],[-11,1],[-19,-7],[-5,3],[-3,4],[-3,2],[2,7],[2,2],[4,1],[2,3],[1,3],[1,17],[-5,-8],[-4,8],[0,13],[5,11],[0,4],[-4,0],[1,5],[2,4],[2,2],[3,2],[-11,13],[-5,1],[-5,-1],[-3,-2],[-4,-3],[-4,4],[-8,-10],[-7,-4],[-11,-11],[-9,-9],[-9,-11],[-2,-9],[-3,-6],[-4,0],[-4,4],[2,10],[-10,-12],[-13,-13],[-4,2],[5,10],[6,6],[12,20],[11,6],[5,-2],[4,3],[-3,5],[0,5],[4,5],[8,5],[6,0],[6,6],[6,0],[8,12],[33,30],[5,7],[2,10],[1,5],[8,17],[3,4],[6,10],[28,21],[5,8],[7,9],[9,16],[5,24],[0,17],[-2,17],[3,21],[2,16],[2,16],[12,4],[0,14],[4,13],[0,24],[8,10],[13,16],[4,9],[16,7],[1,10],[2,6],[-1,10],[-5,1],[-3,0],[0,6],[5,-2],[4,0],[4,13],[3,-10],[2,-2],[1,-4],[3,-4],[15,-33],[8,-36],[3,-10],[2,-9],[3,-6],[6,-5],[5,-5],[5,-1],[8,6],[10,4],[9,5],[2,11],[8,5],[6,-1],[6,5],[5,0],[6,-4],[15,2],[6,-3],[14,-9],[7,-1],[5,4],[5,6],[4,7],[3,8],[4,8],[9,15],[4,9],[2,11],[2,27],[-1,25],[-1,10],[-3,8],[-3,8],[-5,7],[-4,5],[-4,6],[-4,11],[6,-6],[8,-7],[8,-3],[4,3],[5,-9],[8,5],[9,12],[6,11],[8,11],[17,14],[8,9],[3,6],[2,9],[2,7],[4,3],[2,0],[5,3],[3,1],[2,-2],[4,-5],[5,-2],[4,-5],[3,-2],[2,0],[5,3],[2,0],[10,-4],[2,4],[3,13],[5,-10],[1,4],[1,9],[1,5],[4,1],[3,-4],[1,-6],[1,-7],[0,-17],[2,-6],[4,-2],[2,3],[6,13],[2,4],[5,-8],[7,-4],[3,-7],[-4,-17],[11,-11],[3,-1],[4,-3],[6,-11],[4,-2],[7,2],[4,0],[1,-4],[1,-5],[3,-6],[7,-10],[8,0],[7,10],[18,-2],[6,5],[3,1],[4,12],[1,-7],[-3,-7],[-2,-8],[5,1],[5,10],[5,4],[-2,-9],[-3,-9],[-1,-5],[0,-4],[1,-4],[-6,-2],[3,-1],[3,-3],[4,1],[-2,-8],[-3,-9],[-1,-6],[0,-3],[-5,-14],[0,-16],[1,-10],[-1,-2],[-2,-11],[-1,-4],[1,-5],[1,-12],[1,-5],[2,-3],[4,1],[0,6],[3,1],[4,-14],[3,-10],[10,-11],[-2,-5],[4,-3],[-1,-10],[1,-9],[-4,-6],[-1,-5],[-4,-3],[-3,-4],[-4,-13],[4,-4],[16,1],[0,-4],[-3,0],[-3,-3],[-2,-1],[0,-4]],[[86977,71854],[4,-12],[-3,-15],[-7,-15],[-5,-10],[-1,17],[1,18],[4,13],[7,4]],[[86969,71859],[0,3],[6,-5],[-6,-3],[0,5]],[[86964,71865],[4,0],[0,-6],[0,-4],[-4,-2],[-4,-3],[-2,-10],[1,-6],[0,-5],[0,-3],[-3,-4],[-2,-1],[-3,2],[-2,2],[-1,3],[0,6],[0,3],[-2,1],[-2,0],[-3,-3],[1,-6],[3,-11],[-3,-6],[-4,1],[-4,5],[-4,8],[5,12],[13,17],[6,12],[5,-4],[5,2]],[[87061,70869],[-3,-13],[-20,-45],[-4,-7],[-8,-7],[-4,-2],[-3,1],[-2,5],[2,5],[3,2],[4,1],[2,3],[3,10],[-3,7],[-6,3],[-7,-1],[0,5],[5,7],[-2,11],[-6,4],[-5,-30],[-4,-8],[-5,-6],[-4,-7],[6,-8],[2,-12],[-2,-11],[-5,-5],[-2,1],[-3,6],[-2,1],[-1,-1],[-3,-6],[-6,-3],[-6,-12],[-3,-2],[-4,4],[-2,10],[1,24],[1,0],[3,5],[4,11],[3,4],[1,-5],[0,-10],[-1,-7],[6,2],[4,20],[5,2],[0,5],[-4,6],[-5,5],[-3,2],[-3,-1],[-3,1],[-3,3],[-3,-5],[1,-18],[-7,-11],[-11,-6],[-30,-5],[-8,-6],[-8,-10],[-5,14],[-5,-4],[-5,-12],[-6,-6],[-4,-2],[0,-4],[2,-6],[2,-6],[-2,-5],[-4,-1],[-8,-1],[-7,-3],[-13,-16],[-8,-1],[-1,3],[-1,4],[-1,4],[-1,1],[-2,-1],[-2,-2],[0,-3],[-1,-2],[-8,-7],[-3,0],[-3,7],[4,8],[-2,8],[-5,8],[-3,15],[-4,8],[-1,2],[0,8],[1,5],[0,4],[-1,7],[2,1],[3,3],[2,0],[-1,7],[-2,4],[-6,6],[-5,-5],[-5,-3],[-6,0],[-10,11],[-6,-1],[-10,-10],[-9,-13],[-25,-53],[2,-8],[2,-12],[1,-9],[0,-13],[-1,-15],[-3,-6],[-4,-4],[-3,-10],[-1,-26],[3,-23],[1,-21],[-9,-19],[-7,-5],[-4,-2],[-2,-5],[0,-14],[1,-11],[6,-23],[1,-9],[-4,-7],[-12,-12],[-8,-13],[-6,-6],[-4,-1],[1,11],[6,8],[1,2],[2,9],[1,5],[2,-6],[3,0],[3,3],[1,9],[-1,11],[-3,5],[-3,4],[-3,5],[-5,5],[-18,11],[-6,2],[-1,2],[-7,18],[-3,3],[-8,6],[-3,3],[-6,10],[-5,6],[-5,-2],[-6,-14],[4,0],[0,-4],[-10,0],[-3,3],[-1,10],[8,11],[5,9],[0,4],[-3,1],[-4,5],[-16,11],[-11,-7],[-4,2],[-3,-4],[-9,-7],[-3,-1],[-8,0],[-1,2],[-1,3],[-1,1],[-2,-6],[2,-7],[1,-7],[-1,-7],[-4,-3],[-2,-1],[-1,1],[-1,2],[0,4],[-1,5],[-1,0],[-2,-2],[0,-1],[-9,5],[-2,2],[-5,10],[-3,2],[-4,-3],[2,-5],[0,-3],[-2,-4],[-3,-4],[0,-4],[-1,-2],[0,-2],[-1,-3],[-2,-2],[-2,1],[-2,4],[-1,4],[-1,4],[-2,-6],[-1,-4],[-2,-1],[-3,3],[3,8],[0,10],[-1,9],[-3,4],[-2,-3],[-7,-26],[-7,-16],[-3,-6],[-13,-15],[-4,-2],[-3,8],[-2,-2],[-2,-1],[-2,1],[-1,4],[-1,6],[-1,0],[-2,-2],[-2,-2],[0,-1],[-2,-3],[-2,-3],[-2,-1],[-2,2],[-1,5],[-2,6],[0,7],[1,5],[0,2],[-2,1],[-10,13],[-5,18],[-9,4],[-10,6],[-6,-19],[-13,-26],[-10,-15],[-1,-14],[-3,-5],[-5,6],[-1,5],[-4,3],[0,8],[5,-1],[3,14],[-1,7],[2,9],[1,6],[-1,7],[-2,4],[2,15],[-3,7],[-7,1],[-1,6],[-1,8],[-2,6],[0,7],[3,9],[3,6],[4,4],[3,5],[3,10],[1,8],[-1,5],[-1,4],[-2,15],[-4,12],[0,7],[-1,2],[-4,6],[-2,5],[1,5],[2,4],[1,4],[1,18],[1,7],[2,7],[3,-2],[5,-1],[4,1],[2,4],[1,2],[12,5],[4,4],[6,3],[-4,7],[-4,0],[-11,4],[-2,2],[-2,-5],[-1,-2],[-3,2],[1,7],[3,7],[3,5],[4,7],[4,-2],[4,-6],[-1,-6],[3,-3],[3,-1],[4,1],[4,3],[3,3],[4,3],[7,-7],[4,-2],[5,1],[2,-20],[4,-5],[5,-1],[2,6],[3,9],[-5,10],[-1,4],[1,7],[6,-2],[4,2],[7,3],[5,2],[4,-6],[4,-11],[-4,0],[-4,6],[-3,1],[-3,-2],[-2,-5],[-2,-7],[-1,-8],[-1,-8],[2,1],[4,5],[2,1],[13,1],[11,6],[3,13],[8,0],[14,5],[0,18],[3,7],[9,14],[1,6],[-2,11],[2,3],[6,2],[11,15],[4,8],[4,9],[1,7],[1,13],[2,3],[6,-1],[3,-1],[-1,5],[0,10],[1,11],[5,3],[4,-4],[7,-3],[4,5],[1,5],[2,3],[9,-2],[9,2],[13,6],[9,7],[5,5],[4,5],[2,14],[1,5],[2,8],[6,2],[1,4],[7,11],[9,14],[11,15],[7,17],[3,6],[6,-2],[2,7],[0,13],[14,21],[5,10],[8,10],[16,22],[5,13],[10,3],[6,5],[7,8],[3,18],[8,11],[6,8],[3,6],[-1,6],[5,9],[1,9],[17,22],[8,12],[9,7],[1,8],[5,3],[7,6],[12,7],[5,6],[4,10],[3,10],[2,15],[1,11],[0,7],[-1,9],[-5,4],[-6,8],[-2,6],[3,6],[6,2],[7,3],[6,0],[9,0],[4,2],[1,2],[-2,5],[-6,4],[3,1],[5,3],[6,2],[8,8],[9,7],[8,3],[16,1],[7,3],[6,-1],[1,15],[5,2],[7,-3],[5,4],[2,9],[3,7],[4,4],[4,-3],[3,7],[0,8],[4,-2],[4,-7],[6,-9],[4,-5],[9,6],[5,0],[5,6],[2,-2],[-2,-6],[1,-2],[3,-1],[2,2],[6,4],[5,1],[6,1],[5,-5],[-4,-4],[-3,-2],[-4,-3],[-4,-2],[-4,-8],[-1,-2],[0,-7],[2,-7],[1,-8],[8,-9],[10,-9],[9,-3],[5,-3],[6,-1],[5,2],[6,20],[14,11],[10,8],[15,6],[14,-7],[28,-11],[50,7],[27,13],[7,-10],[39,10],[17,6],[7,4],[6,7],[3,12],[14,5],[2,0],[3,1],[4,9],[10,6],[15,10],[9,9],[11,11],[14,-7],[16,3],[12,-1],[21,2],[9,-1],[4,-2],[6,-3],[2,-7],[6,8],[5,-1],[1,-6],[4,2],[5,-3],[3,-2],[5,8],[2,2],[3,2],[-1,7],[8,10],[6,0],[5,2],[5,5],[11,14],[-1,8],[14,7],[14,5],[7,2],[5,6],[7,-9],[3,-11],[4,-5],[4,-11],[4,-14],[0,-10],[-2,-8],[-5,6],[-6,-7],[-3,-12],[-2,-8],[-2,-5],[-8,-16],[-5,-13],[0,-12],[3,-3],[3,1],[0,10],[4,6],[3,9],[4,5],[2,-13],[3,-2],[1,-2],[-2,-4],[-3,0],[-3,1],[-1,-10],[18,-17],[4,3],[2,4],[3,-10],[-1,-8],[-2,-5],[-2,-11],[-1,-5],[2,-7],[3,4],[3,10],[3,10],[5,-1],[7,-6],[2,4],[0,14],[-8,-3],[-7,5],[-3,16],[6,10],[4,2],[8,1],[4,2],[2,5],[3,6],[1,6],[7,7],[-2,-9],[-1,-9],[5,-4],[3,-4],[-1,-9],[1,-6],[-1,-4],[0,-2],[3,-1],[2,1],[2,5],[2,10],[0,-11],[-1,-11],[1,-8],[5,-3],[8,-1],[3,1],[2,2],[6,5],[2,7],[6,9],[6,7],[6,-5],[-1,-3],[-7,-5],[-2,-17],[-3,-4],[6,-3],[15,6],[7,0],[4,5],[3,8],[0,12],[-8,-7],[-3,11],[-5,3],[4,10],[9,5],[3,-4],[2,-9],[6,1],[5,-11],[4,-3],[7,5],[-3,2],[-2,5],[-4,13],[1,4],[3,1],[3,-5],[3,3],[5,3],[-1,4],[-2,4],[-2,4],[-1,8],[-1,3],[-4,8],[-1,7],[3,1],[5,-7],[3,-5],[4,-4],[10,4],[2,-6],[3,-4],[5,6],[3,7],[6,-2],[3,3],[0,7],[-5,7],[2,13],[1,8],[-1,7],[-4,-1],[0,17],[7,6],[10,15],[4,-11],[0,-5],[2,-9],[2,-11],[-1,-7],[-3,0],[-2,-7],[5,-6],[1,-7],[6,2],[2,10],[2,3],[0,4],[0,8],[3,7],[0,5],[0,11],[2,10],[0,10],[-4,11],[-3,10],[-2,8],[-6,8],[-10,19],[-5,8],[1,17],[-1,13],[-6,15],[-4,7],[2,16],[6,7],[4,8],[5,19],[4,14],[3,18],[14,30],[4,14],[3,9],[4,14],[-4,13],[1,4],[6,1],[5,-1],[10,7],[22,34],[6,15],[13,11],[10,15],[13,25],[59,136],[13,40],[20,83],[2,11],[0,14],[-2,4],[-3,4],[1,5],[2,10],[2,17],[-2,12],[-5,8],[-3,20],[-3,4],[-1,13],[3,30],[-2,9],[-3,4],[-3,-1],[-1,-7],[-5,1],[-2,7],[1,16],[2,13],[3,10],[4,8],[-2,6],[4,7],[4,11],[2,9],[-3,8],[-1,16],[8,20],[10,9],[16,15],[11,5],[6,-5],[9,0],[30,29],[8,3],[5,12],[6,8],[40,22],[11,4],[12,-8],[3,-7],[-2,-11],[1,-7],[3,-5],[0,-8],[-2,-4],[-7,-4],[-5,0],[-6,2],[-5,-4],[-4,-4],[-2,-9],[-2,-20],[3,-14],[5,-1],[-1,-9],[0,-8],[-2,-7],[-5,-8],[-2,-5],[-6,0],[-12,5],[-16,-11],[-5,-13],[-6,-13],[0,-12],[-4,-5],[-6,-3],[-2,-8],[-3,-4],[-10,7],[-5,6],[-4,6],[3,7],[1,4],[-3,-1],[-2,-5],[-4,-2],[-1,-5],[-3,-9],[-6,-15],[-4,-17],[5,-3],[-1,-13],[-2,-4],[-5,0],[0,-13],[-2,-7],[4,-4],[5,2],[6,5],[5,-1],[8,-17],[5,-3],[7,5],[5,24],[4,4],[3,-2],[2,-11],[-2,-34],[2,-33],[-8,-17],[0,-14],[-11,-26],[5,-21],[13,-14],[8,-13],[13,-8],[8,-9],[11,-2],[13,4],[16,-4],[9,3],[5,12],[9,10],[3,16],[4,11],[1,10],[2,9],[-1,12],[3,14],[6,7],[14,13],[25,9],[26,10],[35,26],[25,16],[28,31],[15,12],[7,11],[6,13],[18,-6],[12,5],[10,8],[23,28],[31,54],[31,33],[8,15],[5,19],[7,25],[11,28],[16,24],[8,19],[5,22],[12,75],[5,22],[9,18],[20,28],[36,42],[2,5],[7,0],[11,2],[23,19],[7,8],[18,23],[29,53],[4,11],[2,11],[9,122],[3,22],[5,25],[10,32],[14,58],[6,25],[7,19],[25,38],[9,20],[7,23],[12,73],[11,54],[3,18],[2,21],[2,10],[3,11],[1,11],[1,25],[1,18],[4,22],[4,15],[9,7],[9,17],[7,47],[7,58],[3,114],[0,18],[-5,25],[0,14],[-3,18],[-7,16],[-10,17],[-13,11],[-12,-3],[-4,-6],[-2,-7],[-3,-6],[-5,-2],[-19,0],[-2,5],[-4,15],[-2,7],[-6,12],[-1,13],[4,4],[-5,5],[-1,16],[1,11],[12,-14],[16,-12],[6,-1],[12,14],[10,20],[21,64],[4,26],[-1,12],[4,19],[2,8],[3,58],[1,12],[-4,8],[-3,6],[-10,15],[-5,9],[-1,10],[1,25],[-1,26],[0,14],[-3,6],[-1,9],[-4,9],[-10,-1],[-6,4],[1,11],[6,10],[5,10],[7,2],[4,14],[6,5],[3,9],[4,14],[3,15],[14,15],[6,-1],[7,-10],[4,-3],[4,0],[5,3],[4,7],[12,15],[6,-5],[6,3],[5,7],[3,10],[7,37],[4,37],[2,10],[0,15],[1,12],[0,17],[1,0],[5,-14],[2,-4],[4,-3],[2,-4],[3,2],[-2,14],[-1,5],[2,4],[2,1],[3,-2],[3,0],[-1,5],[-1,3],[-6,-1],[-3,0],[-5,0],[-1,4],[-1,3],[-2,-3],[-2,-2],[-1,2],[0,15],[-1,8],[-6,16],[-5,5],[-4,1],[-5,2],[-1,6],[3,3],[7,1],[6,-3],[5,8],[2,13],[1,12],[-1,6],[1,6],[0,15],[3,5],[-1,8],[1,4],[5,-7],[5,-6],[4,-2],[5,-9],[7,-16],[7,-9],[6,0],[8,9],[4,13],[6,3],[13,-3],[11,-15],[3,-14],[-2,-16],[-1,-17],[-1,-6],[0,-7],[2,-13],[1,-18],[4,-20],[5,-66],[8,-25],[14,-11],[13,2],[9,17],[6,10],[5,18],[-2,4],[0,7],[1,5],[1,2],[-2,1],[-3,-1],[-2,1],[-2,4],[3,2],[3,0],[0,5],[0,4],[3,3],[-1,4],[1,3],[3,11],[2,2],[4,-1],[3,-8],[7,-1],[3,-2],[2,-8],[2,-5],[5,-5],[0,-4],[-1,-1],[-1,-3],[0,-5],[1,-2],[3,0],[6,-3],[6,-7],[4,-2],[3,1],[3,-3],[1,-7],[3,-8],[3,-3],[5,-5],[4,0],[6,4],[4,7],[6,12],[12,45],[2,17],[2,39],[2,10],[-1,5],[2,7],[3,4],[2,6],[2,11],[-2,18],[-4,16],[-6,15],[-8,16],[-6,8],[-6,0],[-3,-8],[-2,-5],[-2,-5],[0,-3],[2,0],[1,4],[2,3],[1,1],[0,-2],[-1,-3],[-2,-7],[-10,-13],[-5,-2],[-6,-8],[-4,-8],[-7,2],[-8,5],[-3,-1],[-4,2],[-4,-4],[-5,-10],[-11,0],[-5,-6],[-4,2],[-3,-1],[-10,-11],[-4,-10],[-4,0],[-9,9],[0,24],[0,7],[3,6],[2,17],[-1,10],[3,15],[2,15],[1,11],[0,5],[3,4],[3,16],[1,14],[2,18],[5,7],[9,22],[3,5],[1,3],[2,12],[0,7],[-2,7],[1,2],[1,6],[2,5],[3,-8],[7,-6],[4,-8],[4,-7],[4,-4],[3,-2],[5,-2],[12,-2],[12,-10],[9,-18],[5,-10],[6,-6],[1,-5],[3,-6],[11,-12],[11,-8],[12,0],[9,4],[9,7],[8,11],[6,9],[4,7],[4,7],[1,-2],[0,-4],[-1,-4],[1,-5],[-1,-2],[-2,-3],[0,-2],[2,-3],[-1,-6],[-4,-7],[-1,-9],[-2,-12],[-3,-10],[-4,-34],[-1,-15],[0,-6],[-4,-35],[1,-14],[1,-6],[-1,-7],[0,-8],[1,-6],[-3,-37],[1,-31],[0,-26],[1,-7],[3,-62],[5,-54],[4,-33],[9,-45],[4,-12],[2,-7],[8,-14],[4,-4],[4,0],[3,5],[5,1],[1,-5],[2,-7],[10,-12],[16,-30],[3,-5],[8,-17],[1,-12],[5,-5],[3,-9],[1,-6],[4,-15],[1,-4],[1,-7],[2,-5],[5,-10],[7,-23],[4,-15],[-2,-7],[-3,-2],[-3,-5],[-1,-6],[1,-5],[3,-5],[8,-5],[3,-4],[3,-12],[-3,-7],[-5,-8],[-3,-12],[2,-14],[3,-9],[18,-28],[3,-2],[3,-2],[3,-3],[1,-13],[1,-6],[1,-6],[-1,-6],[-4,-7],[0,-4],[2,-11],[2,-5],[2,-4],[2,-5],[1,-18],[1,-8],[6,-36],[1,-3],[0,-3],[0,-5],[1,-4],[-1,-5],[-3,-6],[-1,-2],[-2,-14],[-1,-27],[0,-8],[-4,-13],[-1,-9],[1,-8],[13,23],[7,1],[-2,-5],[0,-4],[0,-3],[2,-4],[-3,-10],[1,-6],[8,-13],[1,-1],[1,-2],[1,-4],[0,-6],[-1,-2],[-2,-2],[-1,-4],[-1,-2],[-10,-21],[-5,-4],[-9,-6],[-4,-6],[5,-10],[8,1],[6,8],[3,11],[2,4],[4,-4],[2,-7],[-4,-3],[-1,-4],[-1,-8],[0,-10],[-2,-4],[-6,-1],[-2,-1],[-3,0],[-3,-1],[-2,-3],[-6,-9],[-3,-4],[7,-6],[-3,-8],[-8,-9],[-6,-9],[6,-4],[6,4],[5,6],[4,6],[1,-14],[-6,-9],[-13,-10],[2,-3],[2,-4],[1,-5],[-2,0],[-5,0],[-2,0],[-1,-8],[1,-8],[9,0],[4,1],[0,-1],[0,-12],[-5,-9],[-8,-5],[-6,2],[1,-9],[3,-3],[9,0],[-3,-10],[-6,-7],[-7,-3],[-7,-1],[5,-8],[13,-17],[1,-7],[-6,-5],[-15,9],[-5,-8],[12,-11],[3,-6],[-3,-2],[-4,-1],[-3,-1],[-4,1],[0,-5],[3,-3],[4,-5],[2,-6],[-2,-2],[-11,4],[-11,-2],[-6,1],[-5,6],[0,-9],[2,-7],[2,-6],[2,-7],[-4,1],[-2,-1],[-4,-8],[4,-3],[2,-5],[-1,-6],[-4,-2],[-4,2],[-3,5],[-3,7],[-2,6],[3,3],[2,5],[-11,1],[-4,-7],[1,-12],[1,-25],[7,-29],[1,-13],[-6,8],[-1,3],[-1,8],[-1,3],[-1,2],[-2,-1],[-2,-2],[-2,-1],[-5,0],[-3,-2],[-1,-5],[0,-11],[1,-12],[0,-5],[0,-4],[-4,-8],[-12,-15],[-2,-7],[3,-3],[1,-4],[3,-9],[5,-8],[2,-6],[-2,-9],[-2,-2],[-1,2],[-2,3],[-1,0],[-2,-2],[-3,-9],[-3,-3],[-7,-4],[-3,-3],[-5,-7],[0,-3],[3,-6],[4,-3],[13,-1],[0,-4],[-2,-8],[-2,-9],[-2,-3],[-12,-17],[4,-7],[4,-9],[5,-4],[4,8],[3,-9],[2,-9],[0,-10],[-1,-12],[-4,1],[-2,4],[-1,5],[-1,6],[-4,-23],[-2,-5],[2,-2],[1,-2],[0,-2],[1,-3],[-7,-3],[-3,-3],[-1,-4],[2,-6],[0,-6],[0,-4],[3,-6],[3,4],[6,2],[5,-2],[3,-8],[-4,3],[-4,0],[-3,-3],[-2,-8],[7,-7],[1,-12],[0,-13],[4,-9],[-2,-4],[-3,-17],[-2,2],[-8,13],[-2,2],[-4,0],[-2,2],[0,4],[0,4],[2,3],[0,3],[-3,5],[-9,7],[1,4],[3,13],[-3,5],[-3,0],[-2,-1],[-4,-1],[-3,2],[-3,3],[-6,10],[-6,4],[-8,-1],[-20,-8],[-8,-5],[-6,-8],[-2,-14],[0,-14],[-1,-1],[-5,0],[-1,4],[-5,25],[-2,-3],[-2,-1],[-3,1],[-2,3],[-5,-6],[-4,-9],[-3,-10],[-2,-12],[3,3],[3,0],[3,-2],[1,-5],[-1,-5],[-2,-3],[-3,-3],[-3,-3],[-9,-20],[-9,-23],[-5,-21],[-12,-72],[-2,-25],[0,-25],[4,-43],[0,-2],[7,-23],[10,-30],[3,-21],[1,-8],[3,-6],[1,-8],[0,-12],[-1,-5],[-3,-8],[0,-3],[1,-4],[4,-9],[1,-6],[3,-160],[-1,-19],[-6,-44],[0,-18],[-2,-8],[0,-55],[-1,-7],[-5,-19],[-3,-52],[-4,-21],[-10,-17],[-2,-1],[-7,-3],[-9,-10],[-7,-4],[-4,-8],[-2,-2],[-3,-3],[0,-7],[0,-10],[-2,-6],[-1,-6],[-11,-31],[-3,-10],[-13,-89],[-16,-46],[-4,-20],[-4,-43],[1,-9],[3,-23],[1,-9],[-3,-16],[-10,-19],[-4,-13],[0,-22],[4,-50],[8,-39],[10,-49],[40,-121],[12,-28],[3,-11],[3,-3],[2,-1],[1,-1],[3,-3],[1,-5],[-3,-14],[-2,-6],[-4,5],[-2,5],[-3,6],[-7,-3],[-9,-7],[-14,-9],[-1,10],[-15,-6],[-18,-22],[-32,-51],[-16,-44],[-11,-65],[6,-31],[2,-16],[-3,-25],[-1,-22],[-2,-15],[-4,-12],[-8,2],[-5,-13],[1,-10],[-4,-7],[-5,2],[-2,8],[-5,-9],[-7,2],[-4,-13],[-10,1],[-13,2],[-6,3],[-8,-15],[-1,-13],[-7,-10],[-6,0],[-9,-12],[-9,-11],[-2,-7],[-2,-11],[-3,-8],[0,-10],[-1,-11],[-2,-7],[-3,-6],[-4,-7],[-8,-2],[-5,-1],[-3,2],[-4,-2],[-4,-1],[-1,3],[-4,4],[0,6],[0,8],[-4,5],[-8,6],[-7,1],[-1,5],[0,7],[4,0],[5,-1],[3,-1],[4,2],[3,3],[2,5],[4,1],[5,-3],[2,3],[1,5],[-1,8],[-3,5],[-6,3],[0,6],[3,6],[1,7],[0,6],[-3,11],[-1,7],[1,21],[-5,14],[1,7],[-1,9],[1,8],[8,9],[4,6],[0,13],[-5,15],[0,13],[-11,7],[-8,5],[0,3],[6,-1],[6,7],[0,11],[4,7],[2,10],[13,-7],[4,8],[0,9],[-2,18],[4,6],[8,5],[5,8],[6,2],[7,9],[4,10],[6,13],[8,18],[5,-2],[2,9],[1,7],[-4,0],[-1,11],[-1,11],[-4,7],[-5,9],[-4,6],[-7,11],[-3,-2],[-4,7],[-9,2],[-8,-6],[5,-15],[-7,-7],[-5,-6],[-1,5],[-3,1],[-3,4],[-2,0],[-4,4],[-2,-5],[-1,-9],[-4,5],[-1,9],[-4,0],[-1,-11],[-4,-10],[-4,9],[1,14],[-3,7],[-2,-13],[3,-18],[4,-12],[0,-7],[4,-17],[-3,-8],[0,-8],[0,-1],[-3,-6],[-9,-10],[-8,-12],[-8,-2],[-6,4],[-4,-2],[-2,-6],[5,-4],[5,-5],[2,-4],[-1,-8],[1,-11],[-3,1],[-7,5],[-4,-5],[2,-8],[4,-7],[-1,-22],[-1,-7],[0,-10],[-1,-7],[3,-7],[2,7],[3,-4],[5,-14],[11,-2],[3,-9],[-5,-10],[1,-2],[0,-2],[1,-2],[-2,-9],[-10,1],[-7,-9],[-1,-9],[2,-11],[3,-6],[2,-6],[-3,-2],[-3,-1],[-7,3],[-4,-5],[-3,2],[-1,4],[1,7],[0,12],[-4,17],[7,6],[-2,4],[-4,3],[-2,9],[-8,17],[0,5],[-2,6],[-3,1],[-2,12],[-4,-4],[-6,1],[-6,-2],[-5,8],[-15,3],[-23,-9],[-13,-4],[-14,-7],[-14,-13],[-10,-17],[-1,-30],[4,-28],[-10,8],[-9,-24],[-3,-20],[-1,-13],[9,-3],[-2,-11],[-1,-11],[-3,-8],[4,-14],[9,-5],[3,-14],[1,-22],[-2,-20],[-6,-2],[-5,-7],[-3,-8],[-1,-8],[-3,-12],[-4,-10],[-2,-8],[-3,-6],[-4,-2],[-3,-6],[-2,-5],[-3,-8],[1,-7],[-2,-4],[-2,-8],[-1,-10],[1,-11],[1,-9],[-3,-3],[-2,0],[-3,4],[-6,5],[-13,-19],[-9,-9],[-8,-10],[-4,4],[-4,6],[-3,8],[-6,12],[2,10],[-2,4],[-2,3],[-2,2],[-2,2],[-1,5],[0,11],[-1,12],[4,5],[1,6],[4,2],[-5,18],[-3,19],[3,9],[1,10],[0,2],[0,12],[-2,6],[2,8],[4,7],[4,1],[-3,9],[-2,6],[-2,14],[-1,14],[4,14],[3,14],[11,-2],[8,-3],[6,1],[5,0],[4,6],[-15,29],[-5,12],[-9,13],[-17,8],[-13,2],[-9,-7],[-8,-6],[-14,-1],[-9,-11],[-7,-27],[-8,-11],[-1,-18],[3,-6],[0,12],[4,5],[3,-2],[-5,-22],[-12,-12],[-11,-9],[-8,-7],[-10,-9],[-3,-8],[-2,-9],[-3,-8],[-2,-12],[0,-5],[3,-12],[-4,-11],[-3,-5],[-6,-20],[-12,-15],[-10,-16],[-4,-31],[-2,-11],[2,-12],[7,-3],[4,-8],[-2,-5],[-12,4],[-39,32],[-23,7],[-20,0],[-28,-16],[-30,18],[-25,4],[-13,0],[-34,-6],[-24,-12],[-55,-34],[-13,2],[-14,-7],[-4,-1],[-4,0],[2,7],[2,4],[3,12],[3,17],[6,11],[8,-16],[1,-4],[1,-4],[3,5],[0,3],[5,4],[4,4],[4,3],[9,10],[12,14],[5,4],[6,16],[5,-2],[0,-12],[-1,-10],[2,-1],[2,10],[0,12],[6,-3],[2,3],[-8,6],[3,11],[1,7],[-1,4],[-7,14],[-5,7],[-3,-3],[-6,3],[-6,4],[-5,-8],[-3,3],[-1,-11],[-1,-11],[-5,-4],[0,12],[-4,-1],[-4,4],[-6,0],[-5,-2],[-4,-5],[-4,5],[-6,-5],[-6,2],[-3,2],[-5,11],[-2,4],[-5,10],[-5,4],[1,15],[6,24],[-1,15],[-3,-7],[-3,-16],[-5,-14],[-2,-9],[-2,-11],[-3,-31],[3,-7],[3,-10],[7,-7],[3,-13],[0,-10],[-7,2],[-9,7],[-10,10],[-6,7],[-3,8],[-1,9],[3,11],[1,11],[2,9],[0,9],[-2,12],[-4,9],[-4,0],[-2,14],[0,15],[0,11],[1,9],[2,11],[3,10],[4,11],[2,10],[4,11],[1,16],[1,11],[-4,2],[-4,-18],[-2,-13],[-2,12],[0,9],[-4,2],[3,-28],[-7,-3],[-1,13],[-3,0],[0,-15],[-6,-2],[-7,4],[-2,-2],[-6,2],[-12,-15],[-6,-10],[-3,-9],[0,-4],[-1,-6],[-1,-3],[1,-3],[5,-1],[-5,-6],[1,-11],[-3,-14],[-6,-21],[-14,-31],[-9,-21],[-2,-26],[-1,-11],[-1,-13],[1,-3],[3,-9],[1,-2],[3,-3],[-1,-7],[-1,-8],[0,-6],[3,-9],[5,-3],[12,0],[6,-3],[4,-7],[4,-8],[4,-7],[21,-24],[14,-11],[3,-5],[3,2],[4,0],[4,-2],[2,-4],[2,-7],[1,-6],[1,-6],[2,-6],[4,-2],[3,0],[2,0],[3,-6],[0,-7],[-2,-21],[-4,3],[-3,0],[-3,-2],[-2,-5],[1,-4],[2,-4],[3,-1],[4,0],[-5,-7],[-1,-4],[-2,-5],[2,-6],[2,-10],[1,-11],[-1,-9],[-3,-4],[-10,-6],[-4,-2],[-5,1],[-6,3],[-6,5],[0,7],[4,2],[6,-2],[5,-4],[4,-4],[-1,4],[0,5],[-1,3],[4,-4],[2,12],[-3,8],[-5,3],[-6,-3],[1,-4],[0,-2],[-1,-2],[0,-4],[-9,12],[-5,-7],[-8,-3],[-7,3],[2,9],[4,12],[-5,2],[-8,-5],[-8,-7],[5,-3],[0,-7],[-3,-7],[-9,-6],[-4,-6],[-5,-1],[-5,10],[-1,-4],[-1,-1],[-1,-2],[0,-5],[-8,7],[-3,1],[-1,-7],[-2,-6],[-2,-3],[3,-10],[-3,0],[-9,5],[-12,-14],[-3,-6],[-9,0],[-14,-12],[-10,-18],[-1,-17],[4,-4],[2,-2],[1,-4],[-2,-8],[-1,-3],[-3,-2],[-2,-2],[-2,-1],[-3,3],[-4,11],[-2,2],[-2,-3],[-4,-12],[-3,-5],[0,-4],[4,0],[3,-2],[1,-5],[1,-7],[5,-9],[3,-7],[-1,-3],[-1,-3],[0,-16],[0,-5],[-4,-3],[-3,3],[-3,7],[-2,6],[-3,-7],[-4,-6],[0,-4],[6,-2],[2,-8],[-2,-6],[-4,4],[-2,-10],[-2,-4],[-9,-3],[-2,-1],[-2,-5],[-2,-7],[-2,-2],[-3,0],[-6,1],[-10,-27],[-14,-67],[-7,-28],[-1,-2],[-2,-18],[-6,-6],[-1,-10],[-6,-5],[1,-8],[6,-6],[-4,-9],[-9,-18],[-5,-3],[-3,-8],[-16,-9],[-5,-5],[-3,-6],[-4,-13],[2,-12],[-1,-7],[-4,2],[-4,-7],[-1,11],[4,10],[-1,8],[-27,5],[-9,3],[-41,27],[-12,6],[-10,14],[-3,5],[-3,7],[0,8],[1,6],[-3,11],[-2,4],[-1,1],[-3,5],[-5,2],[-4,8],[4,14],[10,2],[7,2],[-3,7],[-14,19],[-6,5],[-2,7],[-5,-1],[-8,10],[-9,1],[-1,10],[-9,9],[-7,14],[-5,22],[-10,11],[-5,-2],[-10,-3],[-2,-3],[1,6],[2,4],[-3,3],[2,2],[4,0],[0,8],[-3,7],[5,7],[4,7],[-1,3],[-5,0],[-1,11],[5,8],[6,1],[4,3],[7,7],[2,9],[0,8],[-2,6],[-6,5],[-6,5],[-5,1],[6,20],[1,1],[2,2],[1,1],[0,3],[0,5],[-2,9],[7,1],[11,-2],[1,9],[-3,9],[-4,13],[-5,-1],[-3,25],[-5,8],[-7,11],[-9,4],[3,11],[9,19],[29,15],[13,20],[7,12],[11,19],[9,23],[6,10],[0,14],[0,6],[5,3],[2,6],[3,4],[1,10],[0,13],[1,18],[-3,15],[-1,14],[3,20],[-4,-4],[-5,-3],[-5,5],[-6,12],[-7,-1],[-8,-1],[0,-15],[-9,-2],[0,14],[-10,-6],[6,-24],[-8,3],[-2,13],[-5,-1],[-1,-14],[-20,-7],[-9,-7],[-9,-2],[-8,10],[-11,0],[-5,1],[-6,14],[-9,6],[-5,8],[-15,18],[-9,6],[-11,15],[-5,6],[-13,6],[-36,-6],[-2,1],[-2,2],[-1,1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,0],[-4,1],[-3,2],[-1,5],[0,8],[-2,-1],[-2,-2],[-1,-3],[-1,-4],[0,-5],[-1,0],[-1,0],[-2,-1],[-7,-17],[-2,-3],[-4,0],[-3,3],[-2,4],[-3,1],[-3,-2],[-3,-5],[-2,-7],[1,-6],[-8,-1],[-14,7],[-8,1],[-7,6],[-4,0],[3,-9],[2,-3],[15,-6],[-2,-1],[-6,-1],[-2,-2],[-5,-14],[-1,-2],[-3,-1],[-4,-6],[-5,-2],[-2,-1],[-5,-6],[2,-3],[3,0],[2,0],[3,3],[-3,-13],[-9,-10],[-9,-7],[-8,-3],[-4,3],[-6,11],[-6,3],[-9,-1],[-4,-1],[-7,-8],[-5,-3],[-3,-6],[1,-10],[3,-3],[5,5],[7,15],[5,3],[5,1],[4,-2],[3,-7],[0,-10],[-3,-7],[-5,-5],[-3,-6],[0,-2],[1,-1],[1,-5],[-8,5],[-5,-13],[-3,-19],[-5,-14],[-22,7],[-10,0],[1,-15],[-9,3],[-4,12],[-3,15],[-7,11],[-2,-3],[-2,3],[-1,6],[0,6],[-2,-4],[-5,3],[-4,-3],[-4,-6],[-8,-5],[-13,-11],[-3,-4],[0,-4],[-2,-4],[-2,-2],[-6,-1],[-2,-3],[-1,-2],[-2,-2],[-17,-13],[11,23],[4,12],[-6,5],[-3,-1],[-6,-8],[-4,-2],[-7,0],[-3,-3],[-1,-10],[2,-3]],[[89970,76621],[5,-4],[12,0],[5,-2],[-9,-5],[-13,4],[-23,13],[1,4],[6,0],[6,-2],[6,-3],[4,-5]],[[90490,76164],[4,0],[9,-5],[3,-3],[-2,-5],[-2,-2],[-6,-1],[-3,-2],[-5,-12],[-4,-2],[-10,-4],[-3,-2],[-4,-7],[-3,-2],[-8,3],[-4,-2],[-3,-3],[-1,-6],[-3,-6],[-7,-11],[-2,-5],[-2,-6],[-2,-15],[-2,-7],[-2,-4],[-7,-16],[3,-4],[-3,-2],[-6,1],[-5,3],[-7,7],[-5,-1],[-9,-4],[-28,-1],[-6,-5],[-6,-10],[-8,-5],[-21,-5],[-5,-2],[-3,-5],[-2,-8],[1,-11],[3,-2],[5,0],[5,-3],[-3,-5],[-3,-3],[-10,-1],[-1,-3],[-1,-4],[-2,-5],[-6,-6],[-7,0],[-13,6],[5,-14],[2,-7],[-2,-7],[-2,-4],[-4,-2],[-19,-5],[-9,1],[-9,5],[-7,11],[0,6],[0,7],[-1,7],[-5,2],[-3,1],[-2,0],[-1,1],[-2,-2],[-2,-2],[-3,-8],[-2,-2],[-2,-3],[-3,-7],[-3,-9],[-1,-7],[2,-9],[4,-6],[4,-6],[4,-6],[-12,-6],[-39,15],[-22,-3],[-7,-7],[-9,3],[-20,11],[-3,3],[-2,5],[-2,5],[-1,7],[-1,6],[-4,2],[-6,-1],[-39,-15],[-39,-30],[-43,-48],[-27,-52],[-42,-57],[-18,-34],[-35,-88],[-28,-80],[-5,-25],[-1,-28],[3,-34],[0,-13],[0,-13],[-2,-13],[-7,-48],[-3,-12],[-8,-11],[-3,-27],[-4,-8],[-4,3],[-6,8],[-6,9],[-3,6],[-2,11],[-7,12],[-7,10],[-43,46],[-56,31],[-59,55],[-24,12],[-49,57],[-17,27],[-15,28],[-29,6],[-23,24],[-15,28],[-5,5],[-6,2],[-19,18],[-26,10],[-24,-1],[-25,-8],[-33,-22],[-46,-57],[-8,-6],[-5,-8],[-4,-2],[-3,-1],[-3,-1],[-3,-3],[-22,-24],[-5,-9],[-16,-36],[-4,-7],[-3,-2],[-4,-1],[-3,1],[-3,2],[-2,3],[-3,6],[-1,5],[1,3],[11,-4],[2,2],[1,6],[-3,4],[-8,4],[-6,7],[-2,4],[-2,5],[-3,24],[-46,85],[-13,9],[-7,0],[-18,-5],[-20,6],[-7,-1],[-12,-9],[-11,-16],[-10,-19],[-16,-43],[-6,-24],[-4,-25],[-2,-27],[3,-27],[8,-15],[29,-24],[9,-12],[20,-36],[5,-4],[7,2],[10,5],[18,3],[6,2],[5,5],[17,-19],[4,-16],[14,-30],[4,-8],[11,-11],[4,-8],[19,-38],[5,-7],[5,-5],[6,-3],[7,-1],[7,-3],[6,-6],[22,-32],[4,-11],[-2,-5],[-13,-3],[-6,-4],[-5,-5],[-17,-28],[-10,-7],[-13,6],[-24,22],[-14,7],[-14,0],[-12,-12],[-6,-3],[-3,8],[2,9],[5,5],[3,6],[-2,11],[-5,8],[-7,3],[-7,-2],[-5,-7],[-3,-10],[-4,-26],[-3,-11],[-17,-14],[-2,-4],[-4,-4],[-14,-7],[-5,-3],[-6,-22],[3,-48],[-3,-19],[-9,-11],[-35,-18],[-4,-6],[-5,-9],[-4,-11],[-2,-12],[-3,-10],[-7,2],[-13,10],[-3,-1],[-5,-3],[-2,-1],[-3,2],[-8,9],[-3,2],[-3,5],[-3,11],[-4,24],[-9,34],[-1,13],[2,13],[5,18],[4,37],[15,38],[3,24],[1,2],[6,-1],[3,1],[2,6],[1,5],[0,13],[0,4],[-1,5],[-1,3],[1,3],[2,3],[3,2],[1,7],[0,10],[1,4],[-2,9],[-1,11],[-1,11],[2,9],[-9,17],[-14,41],[-9,15],[-28,20],[-5,10],[0,3],[-2,3],[-5,17],[-3,3],[-8,5],[-13,16],[-3,7],[-3,14],[-3,24],[2,11],[3,12],[12,31],[3,13],[3,27],[0,26],[-4,44],[3,23],[9,22],[11,8],[27,2],[7,3],[4,5],[12,23],[2,3],[3,2],[3,1],[3,2],[2,6],[7,23],[4,8],[5,3],[6,-8],[6,-17],[4,-7],[6,-2],[6,8],[2,13],[1,14],[2,6],[5,5],[4,11],[7,24],[4,9],[19,30],[12,12],[5,10],[1,11],[-2,9],[-5,9],[-2,13],[-2,9],[-13,30],[-9,16],[-11,13],[-8,17],[-3,23],[9,44],[14,0],[7,2],[5,7],[1,5],[1,6],[1,6],[2,3],[4,-1],[4,-4],[3,-5],[2,-2],[5,-3],[23,-28],[5,-7],[9,-17],[5,-7],[20,-15],[3,-4],[4,-9],[3,-3],[4,-2],[28,7],[22,13],[6,2],[3,-4],[-3,-7],[-2,-11],[5,-10],[3,-2],[10,-2],[12,-8],[6,-2],[6,-5],[4,-2],[5,1],[4,1],[7,6],[21,26],[19,31],[7,18],[7,22],[5,26],[0,27],[-4,16],[-15,37],[-3,16],[0,12],[4,10],[4,11],[-5,23],[-2,6],[1,11],[-7,26],[-2,13],[2,11],[4,14],[8,22],[4,7],[7,6],[6,5],[12,3],[5,3],[5,5],[16,20],[9,17],[7,20],[5,28],[2,24],[1,25],[-4,124],[3,21],[22,66],[13,103],[1,26],[-4,73],[-8,71],[-9,42],[-37,124],[-4,25],[3,26],[2,4],[5,11],[2,5],[2,7],[0,5],[1,6],[6,15],[0,10],[-3,19],[0,9],[0,10],[3,9],[5,8],[3,-4],[2,-4],[0,-7],[1,-8],[1,-5],[3,-1],[7,4],[13,3],[13,6],[10,10],[3,2],[2,3],[0,7],[0,8],[1,6],[4,10],[7,9],[7,3],[5,-7],[4,-17],[3,-7],[4,-3],[4,-5],[11,-32],[11,-17],[24,-28],[11,-15],[88,-167],[21,-68],[5,-12],[9,-10],[14,-35],[54,-94],[9,-8],[11,-29],[17,-18],[21,-35],[24,-29],[6,-3],[4,-3],[11,-18],[5,-7],[12,-5],[3,-3],[5,-18],[0,-3],[7,-14],[3,-3],[41,-38],[62,-38],[0,-4],[-23,5],[-4,-5],[2,-4],[6,-10],[2,-4],[4,-23],[2,3],[2,2],[4,-7],[3,-3],[4,-2],[41,-1],[2,-2],[8,14],[4,6],[5,2],[33,-2],[10,-7],[5,-7],[0,-2],[-4,-1],[-5,-5],[-4,-7],[-6,-29],[10,-7],[4,0],[3,3],[3,6],[4,9],[2,10],[1,9],[4,17],[8,5],[5,-7],[-2,-17],[4,-18],[2,-7],[5,-3],[2,-5],[5,-19],[2,-4],[3,-3],[11,-14],[5,-3],[10,-5],[39,-10],[47,-6],[13,4],[12,12],[32,54],[25,46],[3,6],[20,20],[13,21],[5,3],[5,6],[13,39],[11,16],[6,10],[2,12],[2,4],[2,2],[3,0],[2,-12],[5,-14],[2,-6],[-1,-26],[-6,-22],[-16,-33],[-4,-13],[-2,-28],[-3,-10],[-25,-50],[-7,-19],[-6,-21],[-5,-22],[3,-10],[-2,-12],[-3,-12],[-2,-13],[-4,-9],[-1,-6],[0,-8],[1,-5],[11,-39],[4,-9],[18,-31],[4,-8],[3,-10],[2,-12],[0,-13],[1,-4],[4,-6],[2,-10],[3,-14],[8,-50],[5,-23],[10,-20],[13,-16],[-9,-3],[-17,24],[-8,3],[-3,-5],[0,-6],[1,-7],[5,-2],[5,-2],[4,-4],[2,-4],[-5,-2],[5,-9],[8,-7],[9,-4],[24,-3],[7,-5],[7,-9],[1,7],[-3,4],[-3,5],[-1,8],[2,4],[10,15],[12,20],[3,4],[7,3],[4,3],[2,4],[1,4],[1,4],[4,4],[4,1],[13,-1],[2,1],[4,6],[1,1],[2,0],[1,-2],[1,-1],[1,-1]],[[84392,64915],[6,2],[10,-3],[11,-6],[6,-8],[1,-15],[-6,-20],[-12,-29],[-6,-1],[-29,14],[-17,3],[-5,6],[5,16],[1,-1],[1,-1],[2,-2],[2,7],[3,-2],[3,-5],[4,2],[2,6],[1,21],[3,21],[1,5],[1,6],[2,0],[2,-2],[2,-4],[6,-10]],[[84167,64964],[3,-3],[1,-6],[-2,-7],[-4,-5],[-3,2],[-11,-2],[-2,3],[0,6],[1,7],[3,4],[4,-1],[10,2]],[[84535,65028],[1,-7],[-2,-6],[-2,-5],[-3,-10],[-9,-28],[-4,-25],[-2,-26],[-3,-23],[-9,-16],[-9,-2],[-10,5],[-5,11],[5,15],[-3,4],[-1,7],[-1,6],[-5,3],[-5,2],[-3,4],[0,4],[5,2],[2,4],[3,10],[1,3],[3,1],[2,-3],[0,-5],[1,-2],[3,-4],[2,-3],[3,-1],[7,0],[3,2],[2,3],[3,8],[3,11],[2,9],[5,4],[3,5],[9,35],[4,11],[2,1],[2,-4]],[[89265,65150],[2,-7],[-2,-2],[-4,-1],[-3,-2],[-3,-6],[-5,-14],[-4,-5],[0,20],[1,8],[2,7],[3,4],[6,1],[4,0],[3,-3]],[[84829,65146],[5,-2],[6,-6],[5,-7],[2,-7],[-2,-5],[-6,-3],[-11,-3],[-23,0],[-12,4],[0,11],[1,7],[3,33],[1,22],[-1,7],[-3,10],[4,-2],[3,-3],[1,-2],[1,-2],[2,-7],[4,-17],[2,-7],[1,-4],[9,-17],[2,-1],[6,1]],[[86459,65793],[6,-10],[-2,-2],[-2,-5],[-1,-5],[0,-6],[-2,-5],[-3,0],[-3,2],[-5,4],[0,7],[2,9],[5,9],[1,3],[2,0],[2,-1]],[[85224,66076],[0,-6],[-1,-6],[-1,-5],[-2,-4],[0,-2],[0,-3],[0,-2],[-2,-1],[-2,1],[-1,2],[-2,3],[-1,4],[-2,8],[-5,5],[-6,3],[-4,5],[-2,8],[2,6],[5,4],[5,2],[3,1],[5,-2],[5,-5],[4,-7],[2,-9]],[[89497,66250],[-3,-1],[-2,-4],[0,-5],[2,-6],[-6,8],[-6,18],[-8,34],[2,1],[2,-1],[2,-3],[1,-5],[2,-3],[3,-1],[4,1],[0,-4],[-4,-5],[1,-5],[3,-2],[4,-1],[0,-4],[-2,-2],[0,-1],[0,-1],[0,-4],[2,2],[1,1],[1,-2],[1,-5]],[[85648,66339],[-1,-2],[-1,-4],[0,-4],[2,-4],[0,-5],[-1,-5],[-2,-3],[0,-3],[-4,-15],[-1,-2],[1,-7],[-1,-3],[-1,1],[-1,0],[-1,0],[-9,-29],[-6,-12],[-7,-4],[-12,-2],[-4,-2],[-2,-4],[-3,-6],[-2,-7],[-1,-6],[1,-1],[2,-1],[1,-2],[0,-6],[-1,-4],[-1,-2],[-1,0],[-7,-5],[-5,-1],[-5,0],[-5,4],[-5,-13],[-15,-29],[-3,-4],[-3,-1],[-3,-2],[-1,-10],[-2,-2],[-19,0],[-3,-1],[-2,-2],[-4,-10],[1,-5],[3,-2],[3,-4],[2,-8],[1,-17],[1,-7],[3,-8],[6,-9],[2,-8],[-5,-3],[-5,3],[-6,5],[-6,3],[-3,-4],[-14,-50],[-2,-10],[-1,-11],[2,-7],[5,0],[5,2],[4,-1],[-3,-12],[-5,-16],[-6,-11],[-5,2],[-4,-5],[-5,-16],[-4,-3],[-16,0],[1,22],[-5,42],[0,13],[6,-1],[5,11],[4,15],[2,12],[5,-1],[4,9],[2,11],[1,7],[-1,12],[-4,27],[-1,12],[1,14],[2,6],[5,1],[9,0],[3,0],[4,3],[1,6],[1,0],[4,15],[1,4],[9,10],[11,6],[9,9],[7,19],[0,11],[-2,7],[-4,5],[-13,4],[-2,7],[0,9],[0,10],[-2,20],[0,5],[2,0],[9,0],[13,1],[6,-2],[4,-8],[0,-5],[-2,-5],[-1,-6],[1,-8],[3,-3],[3,0],[12,6],[15,17],[-3,11],[3,7],[11,16],[1,4],[2,12],[2,2],[2,1],[1,2],[2,8],[10,13],[3,7],[1,11],[4,19],[1,13],[21,-43],[1,-10]],[[89497,66514],[4,3],[4,1],[3,-3],[3,-6],[-2,-20],[-5,-6],[-5,7],[-5,16],[9,-9],[-1,6],[-1,4],[-2,4],[-2,3]],[[85749,66729],[1,-2],[0,-1],[1,-1],[-3,-7],[-7,-9],[-4,-7],[-4,-15],[-3,-5],[-4,2],[-1,-9],[-2,-1],[-3,1],[-2,-1],[-4,-5],[-4,-2],[-4,2],[-3,5],[-2,6],[0,7],[0,8],[1,5],[1,5],[1,2],[3,0],[4,1],[10,-3],[6,1],[4,4],[4,7],[14,12]],[[85829,66940],[3,-5],[4,-5],[3,-5],[2,-8],[-2,-9],[-6,-18],[-3,-12],[-4,-7],[-4,-5],[-4,-3],[-5,3],[-2,9],[-1,8],[-1,4],[-6,4],[-1,8],[2,16],[-5,33],[1,7],[2,10],[1,22],[2,3],[4,3],[9,8],[5,-12],[3,-34],[3,-15]],[[85915,67122],[8,3],[6,-10],[1,-12],[-8,-5],[-4,9],[-1,2],[-1,2],[-2,-1],[-1,-2],[0,-1],[0,-3],[-1,-4],[-2,-3],[-1,3],[-1,1],[-2,8],[0,1],[-4,1],[-5,-2],[-3,1],[-1,5],[-1,14],[0,6],[-8,20],[-1,9],[4,3],[9,0],[-2,-11],[3,-3],[10,2],[-1,-4],[-2,-5],[-2,-5],[0,-4],[4,-6],[6,-5],[3,-4]],[[86119,67273],[0,-10],[-3,-15],[-4,-15],[-3,-9],[-5,-4],[-6,0],[-12,8],[17,27],[12,13],[4,5]],[[86029,67325],[1,-3],[2,-4],[1,-3],[0,-6],[-2,-3],[-2,0],[-2,0],[-2,0],[-3,-5],[-12,-9],[-4,-2],[-1,-1],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-6,-6],[-8,-25],[-5,-6],[-1,-2],[-9,-16],[-3,-3],[-7,5],[-4,0],[2,-8],[-2,-7],[-2,-4],[-3,-3],[-3,-2],[3,-6],[7,-9],[3,-6],[-14,-17],[-3,-1],[-1,-13],[-4,0],[-4,3],[-6,-4],[4,-4],[3,-8],[1,-9],[-1,-4],[-3,3],[-8,14],[-14,18],[-2,7],[1,9],[-1,8],[-3,7],[-3,-9],[-4,0],[-10,9],[-9,3],[-4,3],[-4,6],[0,3],[2,3],[3,1],[2,0],[3,-4],[7,5],[10,-5],[8,0],[5,17],[-10,0],[-4,4],[-3,8],[4,5],[3,5],[3,4],[7,3],[2,2],[5,8],[4,8],[1,1],[7,2],[6,-1],[5,3],[4,13],[6,-4],[5,3],[4,7],[3,10],[1,-6],[3,-4],[4,-3],[3,-3],[5,22],[7,12],[18,19],[-3,-21],[1,-6],[4,-2],[3,3],[3,7],[6,19],[-1,2],[-1,5],[0,5],[1,4],[5,-1],[2,-8],[3,-20]],[[86031,68032],[9,3],[2,-9],[-3,-14],[-6,-9],[-2,14],[-1,7],[1,8]],[[86081,68162],[1,-17],[8,-12],[-1,-2],[-1,-2],[-16,3],[-3,9],[-3,6],[-2,14],[5,8],[7,-5],[1,1],[1,-1],[1,0],[2,-2]],[[86298,68458],[-2,-21],[-6,-29],[-12,-22],[-7,-10],[-9,-3],[-8,-2],[-9,-1],[-13,8],[-3,9],[-5,22],[-6,28],[-2,16],[-1,17],[3,2],[10,0],[5,14],[5,11],[2,10],[6,0],[3,6],[7,-11],[12,-8],[9,-14],[11,-5],[10,-17]],[[86402,68734],[3,0],[0,-10],[3,-14],[4,-10],[-4,-8],[0,-19],[2,-23],[-7,-22],[1,-11],[0,-19],[-2,-8],[-3,-5],[-1,-10],[0,-9],[-5,-4],[-4,1],[-3,-11],[-3,-8],[0,-14],[-4,-10],[0,-9],[-1,-5],[3,-4],[1,-7],[-2,-7],[0,-6],[2,-9],[-4,-8],[0,-8],[-6,1],[-5,-3],[-5,-2],[-4,-6],[-2,-7],[-4,0],[-1,6],[-3,7],[1,8],[2,10],[-1,16],[-3,10],[-1,12],[1,6],[3,-3],[2,-1],[2,10],[7,13],[8,22],[3,18],[2,14],[0,9],[0,19],[-2,8],[1,5],[-2,5],[4,8],[4,10],[5,16],[0,7],[4,3],[2,13],[0,13],[6,17],[3,8],[2,3],[1,2]],[[86153,69541],[6,0],[3,-4],[2,-12],[-1,-7],[-5,-24],[-1,-6],[-5,-2],[-4,4],[-2,9],[1,10],[-3,6],[-2,9],[-1,11],[1,8],[2,3],[3,0],[6,-5]],[[86224,69724],[9,7],[4,1],[3,-8],[-9,-12],[-12,-56],[-8,-13],[-1,3],[0,6],[0,13],[-1,7],[-3,-2],[-6,-7],[-11,-1],[-5,-2],[-7,-5],[-5,15],[-3,9],[1,8],[1,4],[2,1],[4,1],[2,3],[6,11],[6,8],[4,4],[10,6],[6,8],[2,0],[2,-3],[1,-4],[1,-4],[2,0],[5,2]],[[86155,69744],[8,-14],[3,-25],[0,-50],[1,-5],[1,-4],[0,-4],[-1,-16],[0,-5],[-1,-3],[-3,-6],[-2,-3],[-7,-5],[-1,-4],[-6,-22],[-1,-3],[-6,-5],[-3,-4],[-6,-15],[-4,-5],[-7,-7],[-6,-6],[-5,0],[0,6],[4,31],[-3,-5],[-4,0],[-2,1],[-5,-5],[0,3],[0,6],[2,3],[8,15],[6,6],[4,1],[3,0],[3,1],[3,6],[-3,0],[-2,1],[-4,3],[-6,-4],[-5,5],[-3,11],[-2,13],[1,7],[1,5],[2,4],[2,4],[-2,9],[2,12],[3,12],[4,9],[3,13],[-2,12],[-6,18],[4,0],[2,-3],[2,-3],[3,-2],[4,1],[6,6],[7,3],[5,4],[5,3],[6,-1]],[[85799,69820],[4,-10],[2,-6],[0,-1],[-1,-2],[-5,0],[-6,1],[-11,-6],[-1,8],[-6,3],[-1,-2],[-3,-1],[-1,-3],[-1,-6],[1,-3],[1,-1],[5,-9],[-1,-7],[-1,-7],[-5,-9],[-4,5],[-6,14],[-6,0],[-14,-1],[-3,-6],[-9,11],[-6,2],[1,10],[2,7],[1,5],[1,5],[2,5],[2,1],[1,-2],[0,-13],[1,-5],[0,3],[4,16],[0,6],[1,6],[-1,7],[-1,6],[0,2],[-1,3],[-1,2],[0,4],[1,3],[1,6],[-2,10],[3,9],[2,4],[5,0],[2,-7],[4,-16],[2,2],[4,4],[6,3],[10,10],[2,7],[6,7],[1,-10],[0,-5],[0,-5],[5,-2],[4,-2],[2,-10],[-2,-23],[3,-9],[7,-8]],[[88830,70093],[6,-7],[7,-4],[7,-6],[4,-11],[-2,-8],[-7,-17],[-3,-4],[-4,1],[-5,4],[-4,6],[-3,13],[-9,23],[-1,9],[3,7],[4,3],[7,-9]],[[85860,70006],[3,-3],[17,13],[3,-12],[-2,-11],[-5,-5],[-5,-12],[-6,-1],[-5,-10],[-2,-8],[0,-9],[2,-9],[0,-4],[-1,-7],[-3,0],[-5,3],[-1,-8],[2,-5],[0,-8],[-1,-5],[-6,2],[1,12],[-2,12],[0,20],[2,8],[-4,14],[-3,3],[-10,4],[-2,2],[0,7],[5,4],[6,8],[4,-8],[6,8],[-4,12],[2,23],[5,3],[0,-15],[3,1],[2,2],[0,11],[-1,8],[1,12],[5,4],[1,11],[-2,8],[-1,6],[4,24],[2,-4],[0,-11],[-1,-5],[-1,-6],[2,-5],[2,-3],[-2,-12],[-1,-11],[-3,-9],[-1,-11],[-1,-11],[1,-17]],[[85987,70256],[2,-26],[-2,-8],[-4,-10],[-4,-8],[3,-4],[-3,-8],[-4,-3],[0,-6],[-3,-4],[0,-9],[-3,-12],[-12,-28],[-10,-12],[-10,-5],[-5,5],[-4,1],[0,6],[2,14],[3,-9],[6,-9],[5,2],[1,5],[-1,2],[-2,3],[-3,1],[-2,6],[2,8],[3,7],[6,-2],[-2,10],[-1,13],[9,12],[1,17],[0,14],[15,6],[4,14],[2,-2],[2,-6],[4,6],[-4,7],[0,9],[9,3]],[[86733,70483],[3,-5],[6,-8],[0,-2],[-5,-2],[-6,2],[-8,8],[-5,-2],[2,9],[4,4],[5,-1],[4,-3]],[[86048,70471],[7,-5],[0,-8],[-5,-8],[-6,-1],[-7,0],[-4,-12],[0,-11],[-3,2],[-6,9],[-3,8],[1,8],[-3,4],[-4,-4],[-2,7],[-1,10],[9,-7],[2,-1],[0,4],[-7,11],[-1,12],[0,7],[6,-1],[-2,11],[2,10],[2,6],[1,7],[3,-6],[19,-10],[0,-5],[-2,-8],[0,-6],[1,-6],[4,-6],[5,-4],[-2,0],[-2,-3],[-2,-1],[0,-3]],[[86731,70527],[-1,-3],[-1,-2],[-3,-3],[-2,12],[-4,13],[-2,14],[4,14],[7,5],[7,-2],[7,-5],[6,-6],[7,-20],[4,0],[4,4],[6,8],[1,0],[5,-1],[1,1],[2,3],[1,7],[1,2],[4,1],[7,-1],[4,0],[-3,-6],[-6,-14],[-2,-1],[-3,2],[-7,-4],[-2,-3],[-1,-4],[-1,-15],[0,-6],[-1,-6],[-3,2],[-7,0],[-2,2],[-1,5],[0,5],[0,6],[-3,5],[-2,-5],[-3,5],[-2,-3],[-1,-6],[-1,-4],[-4,-1],[-4,3],[-4,-2],[-2,4]],[[88746,70641],[2,19],[8,12],[9,0],[5,-14],[-4,-19],[-7,-12],[-8,-1],[-5,15]],[[86820,70647],[-6,7],[-15,-1],[-7,4],[5,10],[7,7],[3,9],[-3,15],[3,6],[3,4],[4,2],[3,0],[2,-4],[-1,-3],[0,-2],[-1,-2],[-2,-1],[3,-7],[0,-7],[0,-7],[1,-8],[7,6],[1,-11],[-3,-14],[-4,-3]],[[86943,70728],[-9,-9],[-3,3],[2,12],[2,3],[5,2],[1,3],[0,6],[-1,4],[-2,2],[-3,1],[5,12],[6,10],[6,3],[4,-13],[3,-18],[-1,-12],[-5,-9],[-10,0]],[[85919,70771],[1,8],[8,0],[1,-4],[-1,-5],[-5,-4],[-2,-8],[1,-10],[1,-7],[-5,-6],[-3,-1],[0,-3],[2,-2],[-1,-7],[-1,-9],[0,-7],[-1,-2],[-2,-1],[-1,-5],[0,-7],[-2,-10],[-3,-3],[-1,-5],[-3,-4],[-1,-5],[-3,1],[-1,-4],[-3,-3],[-2,5],[-1,1],[-3,7],[-3,2],[-3,-4],[-2,-1],[0,24],[2,14],[-1,15],[2,19],[2,4],[0,9],[2,14],[1,25],[2,8],[5,-1],[1,-4],[-1,-5],[0,-11],[2,0],[2,3],[2,1],[4,4],[4,0],[-1,5],[-1,4],[3,0],[3,-3],[3,-6],[0,-11],[3,-5]],[[88685,70839],[3,4],[3,7],[3,2],[0,-10],[-1,-19],[-4,-19],[-4,-8],[-4,11],[0,7],[3,21],[1,4]],[[87500,70965],[7,-10],[0,-7],[-3,-8],[-4,-8],[-2,-13],[-3,-15],[-8,-12],[-7,-18],[-8,-21],[-1,-22],[-1,-5],[1,-7],[0,-7],[5,-7],[1,-10],[2,-7],[6,-13],[3,-10],[-6,-4],[-8,-4],[-7,-7],[-8,-5],[-6,-6],[-9,-15],[-14,-5],[-6,-1],[-1,11],[-6,5],[-1,2],[4,11],[2,8],[-10,-6],[-6,13],[-2,14],[3,8],[4,15],[6,-3],[5,4],[21,70],[7,8],[5,5],[3,4],[1,4],[3,10],[1,6],[4,12],[11,9],[4,3],[7,18],[5,13],[6,3]],[[85958,70972],[3,-6],[4,-7],[0,-6],[-1,-5],[-3,-15],[-5,-23],[-12,-20],[-6,-17],[1,-17],[-6,-11],[-1,-9],[5,3],[5,9],[0,-4],[-2,-8],[-1,-4],[1,-10],[3,-7],[3,-2],[-2,-8],[-4,-4],[-2,-4],[-3,-10],[-7,-4],[-5,2],[-6,12],[5,6],[6,-4],[1,17],[-4,3],[-5,-11],[-3,0],[0,11],[0,7],[1,7],[-3,-5],[-3,-6],[2,-10],[-2,-3],[-4,7],[-7,-3],[-5,3],[2,7],[7,1],[3,3],[1,23],[-2,11],[2,5],[3,1],[1,-1],[2,4],[4,8],[-1,3],[-4,-8],[-4,-1],[-1,7],[4,15],[4,19],[6,9],[0,4],[-5,11],[-5,-3],[0,8],[4,11],[1,9],[4,27],[4,0],[7,0],[5,-2],[3,6],[5,12],[5,1],[-2,5],[1,6],[4,-1],[4,4],[4,0],[1,-5],[3,-5],[2,-4],[-1,-9],[-2,-3],[-2,-3],[2,-1],[3,-2],[0,-7],[-2,-9],[-2,-2],[-3,3],[-3,-1]],[[88726,71067],[6,-5],[3,-9],[2,-11],[1,-14],[-1,-14],[-1,-7],[-3,-1],[-6,0],[-17,15],[-2,10],[0,28],[1,18],[13,-5],[4,-5]],[[86947,71798],[3,7],[6,-4],[6,-8],[4,-7],[-4,0],[-11,0],[-1,1],[-2,3],[-1,4],[0,4]],[[87046,71952],[4,-10],[-1,-29],[-2,-7],[-3,-3],[-2,7],[-3,0],[-3,-3],[-2,-4],[3,-4],[1,-6],[-1,-6],[-3,-4],[-2,0],[-11,4],[-6,0],[-2,2],[-13,20],[-3,2],[-1,6],[2,37],[4,11],[23,27],[0,-7],[2,-3],[3,-1],[3,-1],[0,-2],[1,-5],[1,-3],[2,-2],[3,-2],[2,-2],[1,-4],[2,-5],[1,-3]],[[88460,73015],[10,-2],[13,6],[9,-1],[0,-23],[-2,-11],[-12,-32],[-3,-11],[-4,-22],[-3,-9],[-33,-38],[-29,-18],[-6,-1],[-3,1],[-3,3],[-2,4],[-1,6],[1,6],[3,3],[13,4],[3,4],[1,8],[0,26],[3,10],[9,17],[4,9],[-8,18],[-19,-11],[-4,17],[0,14],[1,13],[2,11],[3,11],[11,27],[5,19],[5,9],[5,6],[3,6],[12,23],[7,9],[12,33],[2,4],[3,2],[7,0],[2,-3],[0,-6],[-4,-39],[-5,-36],[-12,-47],[-2,-11],[0,-11],[2,-7],[2,0],[2,10]],[[88763,75487],[4,-7],[-3,-12],[-9,-22],[-2,-16],[0,-14],[-1,-14],[-5,-13],[-10,-16],[-3,2],[-3,5],[-1,6],[0,7],[-1,5],[-1,5],[0,13],[0,5],[-3,7],[-1,6],[1,11],[3,11],[4,9],[4,5],[3,1],[6,3],[3,0],[4,2],[8,9],[3,2]],[[90363,76286],[10,-10],[4,-7],[1,-5],[-4,-4],[-10,-4],[-3,-4],[-2,-8],[-3,-2],[-3,2],[1,10],[3,5],[8,6],[4,5],[-36,28],[24,-7],[6,-5]],[[90124,76493],[2,0],[-2,0]],[[89257,77221],[2,-8],[-2,-6],[-3,-6],[-2,-8],[-2,-3],[-10,-11],[-4,-1],[-5,2],[-15,14],[-9,12],[-5,14],[4,12],[-1,3],[-2,6],[-1,3],[10,17],[4,3],[6,3],[9,-5],[9,-9],[7,-11],[10,-21]],[[89180,77386],[5,-5],[1,-10],[-4,-61],[-2,-17],[-4,-17],[-2,8],[0,3],[2,5],[-7,21],[-4,14],[-1,12],[2,29],[-1,6],[-8,20],[2,2],[1,1],[2,-1],[1,-2],[1,-3],[4,-11],[3,0],[5,4],[4,2]],[[89130,66589],[-1,9],[2,3],[1,-4],[-2,-8]],[[85502,66303],[0,-17],[-7,-3],[-7,6],[-1,10],[3,3],[8,-2],[4,3]],[[85553,66514],[2,0],[-2,-15],[-5,-16],[-7,-13],[-7,-5],[3,9],[14,32],[2,8]],[[86171,68515],[7,-4],[5,-10],[0,-7],[-6,0],[-2,-7],[-6,-2],[-5,11],[0,8],[-1,5],[-5,-4],[-2,9],[-4,5],[-2,7],[6,0],[7,-8],[3,3],[5,-6]],[[87323,70933],[-1,-5],[1,-5],[1,-7],[1,-7],[-1,-17],[-6,-32],[-2,5],[-2,3],[-4,1],[-4,0],[0,3],[6,2],[1,5],[-3,4],[-6,-3],[-4,-7],[-2,-10],[-4,-9],[-5,-2],[1,21],[-1,7],[-6,5],[-5,-1],[-5,-3],[-4,0],[-3,8],[3,4],[0,6],[0,7],[1,7],[8,-5],[7,4],[12,13],[3,2],[10,2],[10,4],[3,0]],[[89292,64815],[2,2],[2,0],[1,-4],[-1,-4],[-2,-1],[-2,3],[0,4]],[[92769,64854],[3,4],[1,-3],[-1,-5],[-1,0],[-2,1],[0,3]],[[89246,65522],[-4,6],[-1,8],[1,6],[4,1],[2,-4],[1,-6],[-1,-7],[-2,-4]],[[86469,65838],[3,2],[5,-4],[2,-6],[-1,-6],[-2,-2],[-2,0],[-2,2],[-3,7],[0,7]],[[85339,66222],[3,1],[2,-2],[1,-6],[-2,-5],[-3,0],[-3,-1],[-2,3],[2,6],[2,4]],[[85681,66488],[0,-12],[-2,-4],[-4,0],[-6,6],[-1,2],[-2,1],[-1,3],[0,4],[1,2],[2,0],[2,5],[4,4],[4,-2],[2,-5],[1,-4]],[[89496,66546],[-1,7],[0,10],[2,6],[2,-1],[1,-6],[0,-6],[-2,-6],[-2,-4]],[[89498,66814],[-5,8],[1,4],[3,-2],[1,-10]],[[89466,66884],[-1,6],[1,2],[1,-3],[-1,-5]],[[85620,66973],[1,-4],[1,-2],[0,-7],[-3,5],[0,9],[1,-1]],[[85997,67910],[-1,5],[1,6],[2,3],[0,-1],[1,-1],[1,0],[1,-2],[1,-7],[0,-7],[-4,0],[-2,4]],[[85979,68178],[0,4],[2,1],[2,-1],[2,-3],[1,-4],[0,-2],[-4,-2],[-1,2],[-2,5]],[[86095,68216],[0,-3],[1,-1],[-2,-4],[-5,3],[-3,2],[-3,6],[0,1],[-1,2],[1,3],[0,2],[3,4],[-1,5],[1,0],[3,3],[1,-7],[2,-6],[3,-10]],[[88973,68527],[3,0],[3,-4],[-2,-5],[-4,-1],[-1,4],[0,3],[1,3]],[[85951,68737],[1,1],[1,-2],[-1,-2],[-1,3]],[[86095,68736],[4,-4],[0,-5],[-3,-6],[-3,-3],[-3,0],[-4,4],[-1,1],[0,2],[-1,5],[1,3],[2,2],[3,4],[1,2],[3,-2],[1,-3]],[[88900,69091],[0,1]],[[88900,69092],[1,-1],[-1,0]],[[88900,69091],[-1,0],[0,2],[1,-1]],[[88820,69688],[1,11],[4,-17],[-5,6]],[[88693,70398],[-1,0],[1,0]],[[88783,70537],[2,-8],[0,-4],[-2,-5],[-3,-2],[-5,1],[-3,5],[-1,10],[4,9],[5,1],[2,-4],[1,-3]],[[88714,75060],[1,-2],[1,-3],[-2,-6],[-8,-6],[-1,2],[-1,8],[0,5],[1,3],[2,0],[2,-1],[5,0]],[[92767,64866],[-3,-10],[-4,11],[4,3],[3,-4]],[[84778,65184],[2,-6],[2,-12],[-4,-6],[-10,-3],[-5,2],[-3,7],[1,8],[2,2],[2,1],[1,6],[1,6],[4,1],[4,-4],[3,-2]],[[85380,65994],[0,-2],[0,-4],[-1,-8],[-1,-8],[-1,-8],[-2,-6],[-2,3],[-1,7],[0,6],[0,3],[1,12],[2,8],[3,1],[2,-4]],[[89473,66890],[1,2],[1,-3],[-2,-5],[0,6]],[[86092,69342],[-2,-2],[0,-3],[1,-3],[-1,-4],[0,-4],[1,-2],[0,-2],[0,-4],[-2,-4],[-3,0],[-3,-1],[-3,-5],[-4,1],[-2,4],[-2,1],[-1,2],[0,3],[-1,4],[-2,5],[0,4],[2,3],[-1,1],[-3,-2],[-2,-6],[-3,-1],[-1,2],[0,4],[1,6],[3,7],[3,4],[6,-3],[10,-16],[2,-2],[1,4],[-1,6],[1,3],[4,1],[2,-1]],[[86178,69599],[5,-4],[1,-4],[-1,-4],[-2,-6],[-3,-5],[-3,-2],[-3,-1],[-2,-3],[-1,2],[0,6],[0,6],[2,6],[1,3],[2,1],[0,1],[1,2],[3,2]],[[86234,69774],[2,-4],[0,-6],[0,-10],[-2,-6],[-4,-2],[-2,-2],[1,-5],[-2,2],[-3,5],[-1,7],[2,7],[-1,5],[-3,3],[0,4],[4,12],[1,0],[0,-2],[1,1],[2,3],[3,2],[2,-2],[2,-4],[-1,-4],[-1,-4]],[[86822,69860],[2,-5],[1,-5],[-1,-5],[-2,-4],[-4,-3],[-1,2],[-1,8],[0,7],[1,7],[1,3],[2,-2],[1,-1],[1,-2]],[[85805,69905],[0,-2],[2,-8],[0,-4],[-4,-8],[-3,-9],[-2,-1],[-3,1],[-5,5],[-2,2],[-1,6],[0,19],[0,4],[0,4],[3,1],[3,-3],[2,-7],[0,-6],[1,-4],[1,-1],[1,1],[0,2],[-1,2],[0,5],[-2,5],[-1,6],[2,2],[7,-9],[2,-3]],[[85819,69938],[1,-6],[1,-13],[-1,-7],[-2,-1],[-1,-3],[1,-2],[0,-4],[-1,-5],[-1,0],[-1,5],[-1,2],[-3,1],[-1,2],[1,2],[0,3],[-1,3],[-1,2],[-2,2],[-3,9],[-2,1],[-2,-2],[-1,4],[3,5],[5,-2],[4,-9],[2,-1],[-1,7],[1,2],[2,-3],[1,3],[1,6],[1,3],[1,-2],[0,-2]],[[85840,69953],[1,-4],[0,-2],[-1,-20],[-1,-4],[-2,0],[0,5],[-1,1],[-2,4],[-2,1],[-4,-3],[-2,1],[-1,3],[-1,2],[0,1],[-1,9],[0,5],[2,1],[5,-5],[1,0],[0,3],[-2,3],[-1,3],[0,4],[-1,2],[0,3],[1,1],[0,2],[0,2],[2,0],[5,-3],[3,-5],[1,-4],[1,-6]],[[85870,70190],[2,-9],[2,-4],[0,-5],[-4,-6],[-2,-7],[-2,0],[-5,1],[-3,4],[-2,3],[-1,0],[-2,0],[1,5],[3,9],[4,3],[3,1],[4,6],[2,-1]],[[85987,70305],[5,2],[1,-5],[-3,-6],[-4,-3],[-4,1],[-3,3],[-2,-1],[-1,-3],[-1,0],[-3,0],[1,6],[5,8],[5,6],[3,0],[1,-4],[0,-4]],[[86844,70613],[1,-1],[0,-7],[-1,-6],[0,-4],[-1,-2],[-1,-3],[0,-6],[-4,-6],[-5,-3],[-4,4],[0,8],[2,7],[3,5],[2,2],[1,1],[2,2],[4,6],[1,3]],[[86970,70708],[1,1],[1,-3],[-2,-6],[-14,-25],[-5,-4],[-3,4],[0,11],[1,8],[2,2],[1,0],[2,0],[-1,5],[-2,8],[2,8],[6,3],[4,-4],[2,-4],[2,-3],[3,-1]],[[86871,70722],[5,-5],[1,-7],[-1,-6],[-3,-3],[-2,-1],[0,1],[0,4],[-2,1],[-2,0],[-7,6],[-3,5],[2,6],[4,2],[5,-2],[3,-1]],[[86922,70769],[2,4],[1,-5],[-1,-14],[-3,-11],[-1,-7],[-3,-5],[-6,-2],[-5,-1],[-4,4],[-2,8],[1,7],[2,3],[1,1],[8,6],[3,0],[3,4],[4,8]],[[86760,70785],[1,-5],[1,-5],[0,-3],[-6,-10],[-8,-13],[-5,-3],[-3,4],[0,5],[5,15],[4,8],[4,5],[4,3],[3,-1]],[[87142,70840],[3,-7],[0,-8],[-1,-5],[-2,-2],[-2,-3],[-1,-2],[-2,2],[-2,7],[1,7],[3,8],[1,3],[2,0]],[[87556,70860],[10,14],[5,-11],[-10,-11],[-3,3],[-2,5]],[[87235,70886],[-3,2],[0,2],[0,1],[2,3],[3,0],[4,6],[4,1],[1,-1],[2,-4],[2,0],[0,-1],[0,-5],[-5,-13],[-2,1],[-3,3],[0,1],[-5,4]],[[88025,70899],[2,4],[2,-1],[0,-4],[-1,-5],[-4,-4],[-2,-3],[-1,5],[-2,5],[6,3]],[[88024,70920],[2,4],[4,1],[-2,-5],[0,-4],[-4,-2],[-4,-5],[-5,-2],[-2,3],[4,4],[7,6]],[[87999,71124],[3,0],[4,-9],[0,-7],[-3,-2],[0,-4],[-2,0],[-2,22]],[[88068,72472],[-1,-4],[0,-5],[0,-6],[-2,-4],[-4,-4],[-5,0],[-5,-3],[-4,-4],[-3,0],[-4,-3],[-1,0],[-2,7],[-6,11],[-3,10],[2,4],[2,-2],[1,-4],[2,-2],[1,3],[2,1],[3,0],[2,2],[2,3],[2,0],[2,-1],[3,-3],[2,-4],[3,1],[2,2],[3,7],[4,2],[2,-4]],[[84334,65713],[-1,0],[0,4],[1,-4]],[[84317,65726],[-4,0],[-5,-2],[1,7],[4,2],[2,0],[2,-7]],[[84353,65825],[0,-1],[-1,2],[1,-1]],[[34402,78182],[-1,-3],[-2,-3],[0,-3],[-1,-4],[4,-3],[2,-1],[-7,-5],[-7,-3],[-8,1],[-5,7],[6,13],[3,6],[5,5],[3,2],[5,1],[4,-2],[-1,-8]],[[34368,78242],[11,-14],[-4,-18],[-11,-17],[-16,-17],[-3,-2],[-4,3],[-2,8],[1,4],[0,5],[-5,6],[-1,7],[5,9],[10,14],[4,23],[-2,24],[-14,48],[-1,9],[-1,22],[-1,9],[0,6],[2,7],[3,5],[3,4],[4,0],[3,-3],[-5,-6],[-3,-5],[0,-7],[4,-6],[5,-4],[9,-3],[15,-17],[0,-6],[0,-8],[-1,-8],[-4,-5],[-1,-6],[-2,-5],[-3,-3],[-2,1],[0,3],[-1,3],[-1,1],[-2,0],[-4,-4],[-4,2],[-2,0],[0,-6],[1,-3],[2,-1],[1,1],[3,-2],[1,0],[2,-1],[1,-2],[1,-4],[-1,-3],[-1,-2],[-1,-2],[0,-24],[2,-7],[2,-3],[8,0]],[[45954,89784],[-13,-13],[-49,-20],[-22,-14],[-26,-6],[-9,-6],[-6,-10],[7,-2],[3,-3],[1,-5],[2,-1],[6,-11],[1,-3],[2,-3],[-1,-7],[-4,-10],[-2,-4],[-27,-22],[-4,-2],[-18,-1],[-7,-6],[-5,-13],[9,-6],[4,-2],[16,-1],[4,-4],[1,-11],[-3,-2],[-5,-5],[-3,-2],[6,-4],[31,-1],[18,-7],[13,1],[23,18],[14,2],[6,-3],[6,-6],[3,-9],[2,-13],[2,-7],[4,-3],[3,0],[2,-3],[1,-6],[3,-14],[0,-6],[-1,-2],[-3,-4],[-2,-2],[0,-3],[1,-6],[-1,-3],[-6,-14],[-1,-4],[-3,-3],[-18,-20],[-21,-13],[-6,-7],[1,-11],[-6,-8],[-14,-14],[8,1],[8,5],[13,15],[-5,-12],[-8,-13],[-3,-11],[10,-4],[10,2],[22,11],[59,15],[22,10],[11,2],[9,-8],[-12,-25],[-7,-6],[1,-5],[2,-5],[1,-2],[1,-2],[7,-4],[17,-10],[5,-6],[-15,-4],[-8,-6],[-7,-15],[-14,-15],[-6,-13],[-21,-22],[-4,-8],[-3,-9],[-2,-10],[4,5],[6,13],[3,3],[3,1],[9,9],[3,4],[5,9],[35,46],[6,4],[7,-2],[22,-14],[-4,5],[-8,8],[-3,6],[61,-32],[8,-1],[30,7],[5,-1],[4,-3],[2,-7],[0,-6],[-1,-4],[-4,-1],[0,-4],[9,1],[3,-2],[3,-3],[0,-4],[0,-6],[-2,-7],[2,-4],[3,-3],[5,-4],[13,17],[7,4],[8,-2],[2,-2],[0,-4],[0,-3],[0,-2],[2,-1],[4,1],[2,0],[9,-10],[2,-3],[1,-13],[-4,-8],[-6,-6],[-2,-5],[0,-4],[3,-11],[1,-5],[-2,-2],[-10,-7],[3,-3],[0,-5],[-1,-5],[0,-7],[-9,-6],[-26,4],[-11,-6],[7,-5],[22,-7],[1,-10],[-7,-6],[-8,-4],[-14,0],[-6,-2],[-12,-6],[-23,-4],[-7,-4],[4,-6],[44,15],[14,-1],[26,6],[9,-2],[14,-8],[7,-7],[2,-7],[2,-3],[-7,-5],[-11,-16],[-6,-3],[-35,-8],[-38,0],[-16,-4],[-17,0],[9,-6],[32,6],[43,-4],[19,4],[10,0],[3,-2],[-1,-4],[-4,-7],[-1,-3],[0,-3],[0,-2],[-1,-3],[-11,-5],[-9,0],[-9,-4],[0,-4],[22,4],[5,-4],[0,-4],[-3,0],[-3,-2],[-2,-3],[-2,-3],[9,0],[2,-1],[3,-3],[1,-3],[1,-1],[3,2],[5,8],[2,2],[0,2],[9,14],[11,13],[1,-9],[0,-13],[-1,-12],[-2,-7],[0,-4],[5,-4],[2,-5],[-2,-7],[-5,-9],[-6,-4],[-11,-3],[-6,-5],[5,-8],[3,-5],[-1,-3],[-4,-2],[-9,-8],[-4,-2],[-20,4],[-18,-3],[-5,3],[-3,6],[-2,8],[-3,7],[-5,3],[-4,2],[-9,5],[-15,5],[-15,14],[-9,3],[2,-7],[3,-5],[3,-3],[3,-2],[-10,-10],[-56,-2],[0,-4],[87,-8],[3,-2],[4,-5],[4,-5],[1,-6],[2,-3],[13,-11],[29,-12],[5,-9],[-11,-8],[-14,2],[-24,11],[-28,-5],[-17,7],[-5,-2],[17,-11],[40,-8],[18,-14],[2,-3],[2,-6],[1,-5],[-3,-2],[-4,-2],[-7,-8],[-4,-2],[-29,10],[-8,-7],[30,-11],[5,-4],[0,-7],[-8,-2],[-31,1],[-9,4],[-2,-3],[-2,-2],[-6,-4],[0,-4],[9,-10],[4,-6],[4,-8],[-4,-2],[-13,-10],[-62,-12],[-9,2],[-6,4],[-4,4],[-8,23],[-7,6],[-7,14],[-4,3],[-22,5],[3,-4],[3,-1],[6,0],[4,-3],[0,-6],[-2,-6],[-1,-5],[4,-5],[15,-7],[4,0],[0,-4],[0,-8],[3,-9],[6,-8],[3,-4],[14,-4],[6,-5],[-3,-7],[1,-4],[-46,15],[-14,-11],[4,-5],[11,-5],[6,-6],[2,-7],[0,-5],[-3,-5],[-5,-3],[-37,0],[-4,-4],[4,-8],[5,-7],[3,1],[3,-7],[6,-3],[5,-1],[1,5],[12,2],[17,24],[9,6],[1,-3],[-4,-7],[-25,-28],[-4,-7],[-1,-5],[-1,-13],[-1,-4],[-9,-15],[-1,-6],[0,-3],[1,-2],[0,-4],[0,-3],[-2,-2],[-1,-1],[-1,-1],[-1,-4],[-1,-3],[-3,-9],[-1,-2],[-29,-3],[-20,-6],[-7,-3],[12,9],[25,6],[13,5],[-7,4],[-31,5],[-2,-1],[-1,-2],[1,-8],[-1,-2],[-2,-1],[-6,-6],[-4,-1],[-1,-2],[-6,-10],[-3,-3],[-15,-9],[-6,-6],[-6,-7],[-4,-8],[2,7],[1,3],[1,3],[0,4],[-2,0],[-2,-6],[-4,-6],[-5,-3],[-3,-2],[-1,-2],[1,-4],[2,-4],[3,-2],[6,1],[2,1],[3,2],[1,-8],[3,-8],[-6,0],[-9,-10],[-5,-2],[-13,1],[-6,2],[-5,5],[-9,10],[-5,4],[-6,2],[-2,-2],[-5,-8],[-3,-2],[-3,1],[-4,2],[-3,1],[-4,-4],[4,-4],[-3,-3],[-3,-1],[-7,0],[5,16],[0,4],[-8,-2],[-5,0],[-2,4],[-1,9],[-3,6],[-4,2],[-3,-3],[0,-4],[2,-3],[2,-2],[1,-5],[1,-6],[-4,3],[-8,2],[-4,3],[0,4],[3,8],[-4,13],[-7,11],[-6,5],[-6,6],[-11,4],[-7,2],[5,-4],[10,-3],[5,-3],[3,-7],[5,-14],[3,-5],[-2,-3],[-3,-1],[-2,1],[-3,3],[0,-5],[6,-4],[1,-9],[-2,-11],[-5,-8],[-6,-4],[-16,4],[-6,-4],[4,-3],[4,-1],[9,0],[-7,-6],[-18,-6],[-16,-1],[-17,-6],[-7,-6],[-1,3],[-2,3],[-1,3],[-7,-10],[-25,-19],[23,7],[6,-3],[-10,-7],[-72,-21],[-10,-9],[13,0],[0,-3],[-17,-14],[-6,-2],[-3,-2],[-10,-11],[-6,-4],[-3,-3],[-2,-5],[-3,6],[-3,1],[-2,-3],[-3,-4],[0,-4],[3,0],[0,-4],[-16,-11],[-6,-1],[1,8],[-15,-10],[-7,-9],[-4,-9],[4,-1],[4,3],[3,4],[-7,-14],[-4,-5],[-20,-16],[-14,-20],[-8,-4],[3,1],[4,3],[3,5],[1,7],[-42,-33],[-37,-10],[-6,1],[-4,5],[2,-3],[2,-3],[3,-1],[2,-1],[-5,-3],[-4,-1],[1,-6],[-1,-8],[-1,-7],[-3,-3],[-1,2],[-1,4],[0,8],[-1,2],[-5,4],[-10,14],[-3,2],[-4,2],[-3,-2],[0,-5],[0,-9],[0,-11],[0,-7],[-1,-4],[-4,2],[-1,5],[2,15],[-1,6],[-2,6],[-2,4],[-1,-4],[0,-15],[-1,-8],[-1,-7],[4,-5],[-1,-4],[-5,-3],[-5,0],[3,13],[0,6],[-2,5],[1,5],[1,2],[1,1],[3,2],[0,3],[-1,3],[-1,0],[2,16],[0,9],[-1,4],[-1,2],[-3,5],[-3,2],[-2,-3],[0,-15],[0,-7],[3,-5],[-5,-4],[-5,1],[-5,-1],[-3,-8],[4,-6],[1,-7],[2,-6],[5,-5],[-5,-6],[-11,-3],[-20,1],[-4,1],[-10,7],[-4,-2],[-3,-4],[-3,0],[-1,10],[-34,-20],[-39,-12],[-25,-6],[3,4],[1,5],[0,7],[-1,6],[-2,-9],[-4,-6],[-4,-1],[-4,4],[1,-4],[0,-1],[0,-1],[1,-2],[0,-5],[-36,-24],[3,13],[7,7],[9,4],[8,0],[0,5],[-19,9],[-6,7],[-2,-8],[1,-3],[1,-5],[-7,-5],[-7,1],[-7,3],[-8,1],[6,-5],[0,-3],[-7,0],[-3,-1],[-3,-4],[-5,3],[-5,-4],[-4,-6],[-1,-7],[-2,-10],[-4,-8],[-5,-2],[-5,6],[-3,-5],[-2,-5],[2,-5],[4,-1],[4,1],[5,6],[5,1],[21,-3],[8,3],[-12,-22],[-7,-6],[-8,4],[1,1],[1,0],[0,2],[-11,0],[0,-5],[-7,0],[-5,-3],[4,1],[2,-2],[1,-4],[-1,-7],[21,1],[4,3],[-7,-20],[-10,-18],[-13,-13],[-28,-13],[-18,-13],[-18,-4],[-9,12],[4,5],[8,2],[2,4],[4,6],[4,3],[9,1],[0,4],[-8,0],[-15,-5],[-8,1],[-19,11],[-5,1],[1,-4],[-2,-1],[-1,-1],[-1,-2],[3,-4],[6,-10],[2,-2],[3,-4],[1,-8],[1,-9],[1,-4],[11,0],[7,0],[5,-1],[-60,-9],[-34,-16],[-59,-15],[-14,1],[-53,16],[-23,-6],[-8,2],[3,0],[2,1],[1,3],[-10,2],[-5,2],[-4,4],[-6,-8],[-37,8],[-4,1],[-14,11],[-23,4],[-32,21],[-45,12],[-9,8],[4,0],[2,3],[0,2],[-4,3],[-3,0],[-5,-3],[-3,-1],[-27,4],[1,-3],[28,-5],[-73,4],[-5,8],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,3],[-1,0],[-2,1],[2,-8],[-21,-1],[-11,3],[-42,34],[-4,4],[4,-3],[4,-1],[5,1],[4,3],[-3,1],[-7,3],[-3,0],[1,10],[1,2],[-5,-7],[-5,-3],[-5,1],[-6,6],[0,3],[9,-3],[-3,9],[-5,5],[-6,4],[-5,6],[-4,10],[-3,7],[-3,4],[-7,-1],[0,-4],[10,-13],[5,-10],[4,-9],[-18,16],[-9,10],[-5,14],[1,1],[3,3],[-2,3],[-4,10],[8,8],[9,5],[18,3],[9,-4],[15,-16],[10,-1],[-5,6],[-7,11],[-4,4],[-21,12],[9,14],[1,6],[-1,8],[-3,3],[-3,-3],[1,-4],[0,-4],[-3,-6],[-12,-14],[-8,-9],[-5,-5],[-7,-2],[-2,-3],[-1,-5],[1,-7],[-1,-6],[-2,-6],[-1,-1],[-13,7],[-12,10],[-10,4],[-19,15],[18,0],[3,-2],[7,-6],[4,0],[1,3],[3,1],[10,0],[0,4],[-8,0],[0,4],[1,0],[2,0],[1,0],[0,4],[-20,-5],[-7,1],[0,4],[10,11],[2,18],[-3,16],[-11,3],[0,-4],[8,-3],[-1,-8],[-5,-9],[-11,-14],[-6,-5],[-8,-1],[-7,4],[3,-10],[1,-2],[-12,11],[-25,16],[-35,13],[-12,8],[-7,3],[-7,5],[-5,9],[1,5],[0,5],[-3,14],[22,-1],[12,2],[8,7],[-21,0],[-13,7],[-5,1],[-14,-3],[-3,-3],[-3,-3],[-9,-9],[-3,-2],[0,-4],[14,-6],[8,-5],[3,-9],[-6,3],[-12,1],[-13,-1],[-8,-3],[-4,-6],[3,-11],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-81,-10],[-10,6],[-9,10],[-9,5],[-9,2],[-46,-16],[-12,-1],[-4,1],[-14,-5],[-75,16],[-6,-4],[-5,-7],[-5,-5],[-6,4],[4,4],[-7,0],[-10,-6],[-9,-3],[-5,-5],[-3,-2],[-3,0],[-27,2],[-6,-2],[-2,-2],[-1,-2],[-2,-3],[-2,-1],[-4,2],[-4,8],[-3,2],[2,6],[2,4],[2,4],[0,6],[-1,7],[-2,3],[-3,2],[-3,5],[4,6],[5,22],[3,4],[12,0],[2,2],[-1,6],[-3,0],[-6,-4],[-6,2],[-6,4],[-4,7],[-2,12],[4,11],[1,5],[0,7],[0,12],[0,5],[0,5],[1,5],[3,4],[4,3],[4,-2],[8,-9],[10,-6],[8,-11],[6,-14],[4,-15],[-4,0],[5,-7],[6,-2],[28,-1],[6,1],[5,5],[-4,4],[2,5],[4,4],[3,3],[4,2],[14,2],[10,7],[3,1],[3,-1],[7,-6],[4,-1],[7,2],[14,11],[23,5],[8,5],[6,9],[3,-3],[1,-1],[2,2],[2,2],[0,4],[-5,5],[-7,4],[-7,2],[-4,-2],[3,9],[7,5],[7,0],[6,-2],[-3,-1],[-5,-4],[5,-2],[6,-1],[5,1],[5,2],[0,5],[-6,0],[4,3],[2,1],[-17,15],[-10,4],[-9,1],[8,6],[42,-7],[2,-2],[1,-3],[2,-2],[9,-5],[4,1],[4,4],[-3,-1],[-3,1],[-3,1],[-2,3],[3,5],[2,1],[2,2],[-5,4],[7,3],[10,-3],[4,0],[5,0],[6,12],[-10,-5],[-5,-1],[-2,4],[2,7],[4,4],[9,4],[-5,3],[-9,1],[-8,-1],[-7,-3],[2,10],[-3,4],[-5,2],[-8,-1],[-3,-1],[-2,-1],[-2,-3],[-11,2],[8,6],[3,5],[-1,9],[17,11],[8,9],[6,10],[5,12],[3,4],[4,3],[6,1],[13,-2],[5,0],[-6,2],[-2,3],[-2,0],[11,8],[6,3],[7,1],[38,-9],[6,1],[5,7],[3,5],[-12,-7],[-7,3],[0,4],[3,0],[2,1],[4,3],[1,3],[-1,0],[-1,0],[0,1],[1,0],[-50,3],[-24,-5],[-21,-18],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[-2,-2],[-5,-2],[-3,0],[-4,-2],[-13,-8],[-4,-5],[-10,-9],[-13,2],[-25,9],[0,4],[11,7],[11,10],[10,12],[6,3],[6,-3],[5,5],[12,3],[5,4],[-24,2],[-8,-2],[-5,-4],[-5,-1],[-4,3],[-5,10],[4,6],[0,7],[0,8],[2,9],[2,1],[3,-2],[1,0],[2,10],[1,5],[4,8],[0,7],[7,6],[32,15],[16,1],[-1,5],[-3,3],[-3,1],[-4,0],[0,3],[5,5],[10,13],[10,4],[4,5],[3,2],[4,1],[11,-1],[-1,-11],[6,-1],[7,-1],[4,-6],[3,-4],[23,-1],[-4,3],[-10,-1],[-5,1],[-4,4],[-6,10],[-5,3],[11,4],[0,4],[-28,0],[0,4],[16,9],[5,5],[4,1],[22,-3],[0,4],[-21,4],[-7,0],[-18,-15],[-7,-1],[0,4],[7,7],[3,4],[2,6],[-12,-11],[-3,-2],[-2,-3],[-2,-14],[-3,-3],[-3,-2],[-12,-10],[-14,-5],[-5,-4],[2,-8],[-8,3],[-8,-2],[-16,-13],[-7,-7],[-4,-3],[-4,2],[-3,6],[0,6],[4,13],[-5,-2],[-3,-7],[-1,-9],[0,-9],[-1,-3],[-7,-11],[-1,-5],[0,-5],[0,-3],[-2,-4],[-10,0],[-2,-2],[-1,-2],[-2,-2],[-3,-1],[-2,0],[-5,2],[-5,5],[-4,8],[-3,9],[-2,-4],[-2,-2],[-2,-1],[-3,-1],[4,7],[3,10],[1,8],[-2,7],[1,1],[2,3],[-2,2],[-2,2],[-2,1],[-3,0],[1,2],[3,6],[0,3],[-13,-8],[-8,-4],[-6,1],[-5,7],[-2,10],[1,9],[4,6],[0,4],[-5,0],[-3,5],[-3,5],[-1,2],[-4,2],[-4,4],[-4,5],[-2,6],[6,-3],[8,-7],[7,-4],[7,5],[-6,0],[2,7],[3,4],[3,3],[4,2],[-3,4],[-1,0],[0,4],[32,15],[8,10],[0,4],[-17,-14],[-9,-4],[-9,-2],[-8,-5],[-8,-8],[-8,-5],[-6,5],[4,3],[8,10],[5,5],[3,5],[3,6],[-2,4],[3,1],[1,2],[4,5],[-7,7],[-8,2],[-18,-1],[4,8],[-5,0],[1,6],[6,12],[2,7],[-3,-1],[-2,-2],[-3,-4],[-1,-5],[-2,5],[-2,2],[-3,0],[-3,-3],[0,-4],[-15,4],[-5,-2],[-8,-9],[-4,-2],[0,-4],[2,-1],[5,-3],[-25,-5],[-7,5],[7,-1],[3,1],[2,2],[-1,3],[-2,5],[-4,5],[-2,2],[-30,0],[5,-5],[14,-8],[0,-4],[-7,0],[-13,11],[-8,1],[2,0],[-35,3],[-33,0],[-39,3],[-16,15],[-15,1],[-27,-5],[0,-2],[-5,-8],[-2,-2],[-3,-3],[-3,-2],[-3,-1],[-33,10],[3,2],[4,2],[3,0],[-5,2],[-10,-5],[-9,-10],[-1,-12],[-5,-14],[-8,-6],[-20,0],[-6,-2],[-12,-6],[-6,-1],[-20,11],[-4,6],[-4,1],[-3,3],[-1,10],[-2,5],[-12,18],[-5,9],[-4,10],[-8,25],[2,5],[6,-6],[5,2],[10,12],[5,3],[31,7],[6,0],[22,-14],[30,-4],[3,1],[5,8],[3,2],[11,0],[3,2],[10,15],[12,3],[25,-4],[0,5],[-2,2],[-1,1],[0,2],[-1,3],[12,1],[3,-4],[-2,-10],[4,-2],[2,3],[3,4],[3,0],[1,-6],[0,-8],[1,-4],[5,6],[5,-4],[5,2],[4,6],[1,6],[-1,6],[-2,7],[-1,9],[1,8],[7,10],[12,2],[23,-4],[-3,-7],[-3,-4],[-8,-5],[1,-3],[1,-5],[-3,-1],[-2,-2],[-2,-4],[-2,-5],[15,-21],[-2,9],[0,8],[1,6],[3,6],[2,1],[5,1],[2,2],[2,3],[2,8],[1,3],[8,9],[8,1],[7,-6],[7,-10],[4,6],[6,4],[17,3],[16,11],[-4,3],[-20,-3],[0,4],[11,3],[21,19],[11,3],[-1,-3],[-2,-1],[4,-2],[5,-2],[0,-5],[0,-1],[0,-2],[-4,-5],[-8,-5],[-3,-3],[3,-1],[5,0],[5,2],[4,3],[2,-11],[2,-5],[9,-4],[13,-10],[4,-2],[0,4],[-3,2],[-3,3],[-7,11],[7,9],[5,3],[5,0],[1,8],[5,3],[23,-1],[23,4],[37,-6],[25,-12],[3,2],[4,5],[3,1],[21,0],[5,-2],[6,-4],[6,-2],[1,0],[5,4],[7,-4],[31,4],[7,6],[0,7],[-5,6],[-8,2],[3,7],[3,3],[4,1],[5,5],[4,7],[11,30],[1,20],[-9,9],[-12,-1],[-8,-8],[0,-4],[2,0],[0,-5],[-42,-32],[-14,-5],[-79,14],[-20,14],[-3,2],[-1,-1],[-4,-2],[-26,-4],[-7,3],[-5,6],[4,2],[8,2],[6,6],[2,-3],[2,-2],[6,0],[0,5],[-7,4],[-7,0],[-13,-4],[3,8],[5,9],[9,11],[13,6],[5,5],[-1,9],[4,2],[10,-2],[3,3],[8,14],[8,5],[31,8],[26,18],[10,11],[18,8],[6,7],[-1,0],[-1,1],[0,2],[4,0],[7,-7],[4,0],[-2,9],[-1,3],[17,9],[36,10],[10,6],[7,3],[-27,-8],[-9,0],[-20,4],[-17,-4],[-5,0],[5,9],[6,7],[-10,9],[-3,6],[-2,9],[-3,-2],[-4,-1],[-4,-1],[-4,0],[1,-8],[-2,-3],[-4,1],[-3,2],[-2,6],[-6,14],[-3,5],[1,-10],[0,-9],[-3,-7],[-4,-7],[-5,-5],[-3,-2],[-2,-1],[-1,-3],[-2,-5],[-2,-6],[-3,-2],[-10,-1],[-5,1],[-8,11],[-16,13],[-12,6],[-1,5],[5,9],[6,4],[31,6],[13,8],[7,2],[3,3],[1,6],[0,7],[0,5],[3,4],[3,4],[6,4],[-8,-2],[-21,-26],[-9,-7],[-9,-4],[-20,-1],[0,4],[12,7],[3,4],[0,5],[-5,-1],[-4,-3],[-8,-9],[-5,-2],[-4,3],[-3,3],[-5,1],[0,-5],[3,-4],[-1,-6],[-4,-4],[-16,-6],[-4,2],[-3,11],[0,9],[1,8],[0,7],[-3,10],[-6,21],[-3,7],[-4,-5],[1,-4],[-1,-6],[1,-6],[4,-13],[0,-5],[-1,-4],[-6,-11],[-3,-4],[-3,0],[-4,6],[-6,11],[-2,1],[-2,-16],[-2,-4],[-3,-3],[-3,1],[-3,2],[-2,5],[-6,18],[-1,10],[2,10],[6,11],[-3,3],[-1,0],[-1,-2],[-3,-1],[-7,5],[-5,0],[-1,-1],[-2,-4],[0,-3],[3,-13],[3,-7],[7,-46],[-4,-3],[-4,1],[-6,2],[-5,0],[0,4],[2,5],[-1,4],[-4,3],[-3,1],[-10,-3],[-3,1],[0,5],[-2,0],[-7,0],[0,5],[7,6],[12,15],[7,3],[-2,7],[-5,4],[-10,6],[-1,-14],[-6,-11],[-7,-6],[-6,4],[-2,7],[-1,7],[-1,6],[-3,2],[-1,-4],[-1,-19],[-1,-5],[-6,-7],[-17,-4],[-8,-4],[-15,7],[-8,8],[1,8],[0,4],[-8,-4],[-5,-12],[0,-13],[5,-7],[0,-5],[-4,-3],[-6,-9],[-4,-4],[-4,-1],[-19,2],[-7,3],[-5,1],[-4,2],[-3,4],[-3,5],[-2,0],[-2,0],[-1,-1],[-3,-3],[1,0],[1,-1],[2,-3],[-8,-3],[-15,-10],[-37,-7],[-9,4],[0,-7],[-1,-2],[-2,-1],[-2,-2],[-11,-16],[-51,-13],[-12,2],[-12,7],[0,4],[2,5],[-1,4],[-3,4],[-3,3],[5,0],[2,-1],[2,-3],[1,11],[-5,5],[-7,0],[-2,-8],[-7,9],[-43,15],[-79,-7],[-10,2],[-6,9],[12,7],[6,5],[3,6],[3,5],[17,9],[5,5],[1,9],[0,11],[1,9],[9,5],[5,5],[4,2],[7,-1],[27,-15],[8,-1],[4,-2],[16,-18],[10,-6],[20,-5],[4,-5],[5,-7],[4,-5],[9,-4],[8,0],[16,8],[-13,-1],[-7,2],[-5,2],[-4,6],[-4,7],[-5,6],[-5,2],[-14,14],[-7,11],[-9,11],[-5,8],[42,-7],[27,-15],[9,-2],[-6,9],[-7,8],[-8,5],[-12,4],[-15,9],[-12,4],[-7,5],[-9,13],[-12,20],[-1,8],[1,7],[-1,7],[-3,7],[12,9],[12,-1],[117,-57],[3,-3],[5,-9],[7,-5],[2,-3],[3,-11],[-1,-6],[-3,-7],[-2,-8],[5,-3],[6,5],[11,14],[2,-3],[4,-5],[3,5],[15,-3],[7,2],[0,4],[-3,1],[-1,1],[-2,6],[5,0],[12,8],[5,0],[4,0],[5,0],[3,4],[-33,-3],[-15,5],[-11,6],[-3,4],[-5,7],[-3,7],[3,3],[17,7],[4,-2],[4,-3],[23,3],[7,5],[6,2],[12,-4],[6,-1],[5,5],[-3,3],[-2,1],[-2,0],[0,3],[13,8],[4,5],[-15,-2],[-9,-4],[-12,-9],[-75,2],[-15,5],[-9,8],[-15,-5],[-3,3],[-4,6],[-16,16],[-9,16],[-6,19],[1,18],[12,12],[5,0],[16,-8],[21,-4],[5,-3],[9,-10],[5,-3],[5,-1],[18,5],[34,-13],[11,0],[20,-12],[11,-4],[9,4],[-23,7],[-7,8],[-23,1],[-7,4],[-13,11],[-29,6],[-6,4],[-15,18],[-8,4],[-4,5],[-6,2],[-12,11],[-12,14],[-2,5],[0,18],[1,9],[5,8],[11,3],[14,-3],[51,-26],[14,-4],[10,5],[2,-9],[3,-8],[5,-5],[6,-2],[0,3],[-5,7],[-9,18],[-5,4],[-7,1],[-13,6],[-6,1],[-3,2],[-9,10],[-16,13],[-9,11],[9,7],[24,2],[18,-3],[25,-17],[-7,5],[-11,16],[-6,3],[-27,-1],[-6,5],[0,4],[3,4],[4,6],[4,4],[3,1],[2,1],[11,1],[5,3],[0,8],[7,3],[43,-11],[28,-18],[9,-2],[5,-4],[7,-9],[5,-11],[-1,-8],[2,-13],[14,19],[5,2],[3,-2],[3,-3],[3,-8],[6,-6],[0,-3],[0,-9],[2,-9],[0,-6],[-2,-5],[-4,-7],[-2,-1],[-12,-21],[-3,-6],[2,0],[6,9],[15,16],[6,8],[1,5],[2,5],[1,4],[3,2],[4,-2],[2,-4],[4,-14],[-1,-3],[-1,-2],[4,4],[4,5],[5,4],[4,-4],[-5,-14],[-6,-14],[-8,-11],[-9,-6],[11,1],[5,2],[4,5],[6,16],[4,9],[3,2],[4,-16],[-2,-17],[-3,-14],[2,-8],[9,28],[0,14],[1,15],[2,14],[3,10],[2,4],[2,1],[19,-1],[2,-2],[0,-8],[2,-5],[3,-3],[10,-10],[10,-16],[2,-2],[0,-3],[-1,-13],[-1,-6],[-2,-6],[-2,-3],[0,-2],[2,-2],[-15,-35],[-3,-11],[2,-5],[4,1],[7,23],[18,43],[2,12],[0,5],[6,0],[4,-5],[3,-9],[4,-7],[2,0],[2,1],[1,0],[3,-5],[-1,-5],[-1,-4],[0,-4],[4,-3],[0,3],[1,6],[2,4],[2,-1],[0,-4],[-2,-20],[-2,-7],[-6,-11],[-3,-7],[0,-4],[11,6],[10,33],[9,6],[0,4],[-5,6],[-4,11],[-2,13],[-2,11],[-4,8],[-5,8],[-6,6],[-6,2],[3,8],[1,7],[2,7],[4,6],[5,2],[5,0],[5,3],[4,8],[-6,-1],[-14,-6],[-5,-4],[-5,-2],[-23,10],[-16,14],[-66,25],[-20,18],[-11,27],[13,7],[41,9],[9,0],[29,-8],[8,0],[3,-1],[1,-2],[1,-3],[2,-2],[7,-7],[4,-1],[4,3],[-2,3],[-1,2],[-3,8],[14,0],[7,2],[12,8],[14,1],[6,5],[-37,-5],[-12,5],[-5,5],[1,1],[4,0],[5,4],[3,5],[4,3],[4,2],[5,0],[0,4],[-6,4],[-4,-2],[-11,-10],[-14,-6],[-16,-2],[-13,3],[-3,1],[0,6],[2,5],[6,5],[1,5],[1,12],[2,3],[3,4],[14,5],[-12,-2],[-10,-6],[-22,-20],[-5,-3],[-11,-2],[-4,4],[2,8],[5,8],[3,4],[0,5],[-9,-4],[-5,-3],[-5,-5],[-11,-18],[-2,-1],[-7,-7],[-44,10],[-11,6],[-8,9],[-4,3],[-2,4],[4,6],[10,0],[14,-4],[12,1],[6,19],[-8,1],[-9,6],[-8,8],[-6,9],[9,6],[8,-3],[9,-7],[8,-4],[-2,7],[-1,3],[-2,3],[30,4],[2,-1],[2,-2],[2,-7],[2,-3],[6,-1],[2,4],[-1,6],[-4,3],[-5,2],[-14,10],[28,0],[5,-1],[10,-9],[13,-4],[10,-11],[5,-3],[7,1],[11,11],[7,4],[-1,2],[-1,6],[11,4],[9,-6],[9,-9],[19,-8],[4,0],[1,8],[-2,5],[-7,5],[-2,5],[9,-1],[8,-7],[7,-12],[2,-14],[5,-9],[23,-11],[7,-11],[-4,-6],[3,-3],[12,-2],[0,-5],[-5,2],[-2,-3],[0,-5],[0,-6],[1,-3],[2,-4],[1,-5],[-4,-4],[0,-4],[3,-4],[4,3],[4,3],[5,2],[4,0],[3,-2],[2,-4],[3,-2],[2,4],[4,7],[5,1],[2,-4],[-2,-8],[20,2],[5,-2],[3,3],[2,1],[3,-2],[2,-2],[1,-2],[10,-14],[-2,-5],[-17,-12],[4,-2],[3,2],[4,3],[4,2],[4,-1],[13,-9],[4,-5],[2,-2],[3,0],[6,3],[2,1],[18,-8],[-1,-2],[-1,-6],[5,-3],[2,-7],[0,-7],[-3,-3],[1,-4],[2,-6],[0,-3],[1,1],[0,-10],[1,-11],[2,-4],[4,-3],[4,0],[5,3],[5,1],[3,-4],[1,-9],[-3,-7],[-3,-7],[-2,-6],[3,1],[5,2],[3,4],[2,3],[0,10],[0,4],[-6,12],[4,4],[9,4],[13,1],[2,-2],[1,-5],[2,-4],[1,-2],[5,-2],[-4,-5],[-5,-4],[-3,-1],[-2,-6],[1,-4],[6,-8],[7,-5],[30,7],[8,-2],[6,-3],[5,-7],[4,-12],[-39,-4],[-8,-5],[-29,-8],[-4,0],[5,-8],[8,1],[15,7],[26,5],[9,-5],[-4,-5],[-12,-7],[0,-4],[30,7],[7,-5],[4,-12],[1,-10],[-3,-8],[-8,-4],[13,-9],[0,-4],[-14,-28],[-5,-8],[-8,-7],[-28,-9],[0,-5],[6,0],[10,2],[5,-2],[15,-8],[4,-4],[-23,-24],[-8,-5],[-38,1],[-2,3],[-5,7],[-1,2],[-6,4],[-5,7],[-3,9],[0,5],[-7,8],[-9,4],[-9,0],[-8,-4],[6,-1],[13,-7],[4,-4],[1,-2],[5,-10],[2,0],[0,-8],[0,-4],[-3,-4],[-3,-5],[4,-4],[3,-3],[1,-3],[1,-8],[3,-4],[3,-3],[2,-1],[5,-4],[46,1],[8,-4],[4,-8],[-3,-7],[-14,-20],[-6,-5],[0,-4],[14,6],[17,14],[14,3],[6,-25],[-6,-22],[-14,-21],[-16,-15],[-13,-5],[0,-4],[28,10],[11,8],[6,2],[6,-1],[4,-3],[8,-12],[10,-9],[3,-6],[-2,-10],[4,-2],[1,-4],[-1,-6],[0,-8],[2,-13],[0,-9],[-1,-12],[0,-6],[10,-31],[4,-6],[-1,-1],[0,-1],[-1,-2],[6,-5],[5,-10],[3,-11],[-2,-11],[0,-3],[4,-4],[2,1],[3,3],[2,8],[-4,14],[-1,10],[-1,4],[-2,6],[-5,9],[-2,5],[4,7],[2,2],[-1,5],[1,4],[3,3],[2,3],[2,10],[0,8],[-6,45],[-1,18],[3,9],[9,-5],[6,-10],[8,-25],[8,-15],[2,-4],[2,-4],[9,-3],[4,-3],[2,4],[-7,14],[-7,18],[-5,20],[-2,17],[-1,14],[0,10],[1,9],[1,3],[3,5],[2,3],[3,17],[1,4],[8,15],[31,22],[17,20],[6,2],[5,2],[4,2],[1,6],[3,1],[3,-2],[5,-7],[1,0],[4,0],[1,0],[1,-5],[-1,-2],[-1,0],[-1,-2],[-2,-23],[0,-12],[2,-9],[-3,-10],[-1,-10],[3,-7],[7,3],[-3,11],[0,9],[4,5],[6,-5],[3,-4],[0,-2],[0,-4],[1,-7],[-1,-4],[-1,-4],[0,-3],[1,0],[5,-3],[2,-1],[2,-5],[1,-4],[1,-4],[3,-4],[4,-2],[3,-1],[3,-1],[4,1],[1,0],[5,4],[2,6],[2,9],[3,13],[-3,2],[-4,8],[-3,2],[-10,-1],[-5,1],[-3,4],[9,3],[9,1],[3,1],[8,6],[4,1],[3,-6],[-1,-26],[4,-8],[-1,9],[3,7],[2,7],[-4,9],[4,8],[8,11],[5,7],[1,5],[0,9],[2,5],[2,2],[5,0],[6,1],[-6,2],[-4,7],[-1,8],[4,4],[4,2],[3,6],[1,9],[1,10],[-2,15],[-6,14],[-7,11],[-6,6],[0,4],[7,6],[-3,18],[-7,19],[-10,21],[-2,5],[-2,21],[-2,9],[-3,8],[-4,6],[-5,5],[5,6],[3,9],[2,10],[-4,7],[6,5],[6,1],[12,-2],[3,1],[5,5],[2,2],[4,1],[10,-1],[5,3],[10,11],[5,3],[13,-5],[3,0],[3,0],[6,5],[2,-13],[4,-8],[5,-4],[7,-4],[-2,-4],[2,-3],[3,-4],[2,-9],[4,-9],[12,-19],[1,-6],[1,-4],[2,-4],[3,-2],[-1,-2],[-2,-5],[-1,-2],[6,-7],[7,-7],[5,-7],[-1,-11],[5,-4],[15,-3],[11,-6],[4,0],[3,-1],[3,-4],[2,-2],[4,0],[1,-1],[2,-4],[0,-4],[1,-4],[1,-4],[6,-12],[2,-4],[1,-8],[1,-16],[2,-6],[6,-8],[14,-3],[6,-8],[2,13],[2,4],[8,-1],[1,-1],[4,-5],[2,-1],[3,-1],[8,0],[-2,-1],[-2,-2],[-1,-3],[1,-5],[2,0],[5,3],[3,4],[3,8],[3,17],[2,17],[0,15],[-2,14],[-4,15],[-8,20],[-1,4],[-16,16],[0,4],[1,6],[2,5],[4,2],[5,1],[5,3],[6,5],[4,6],[-3,4],[-3,5],[-2,5],[-3,13],[0,2],[1,2],[3,4],[5,6],[16,7],[37,6],[13,-9],[7,-1],[-1,10],[3,2],[2,1],[2,1],[3,-1],[-1,-2],[-1,-6],[6,-2],[9,-8],[6,-1],[-4,2],[-2,4],[-2,4],[-2,6],[2,0],[0,3],[-1,1],[-3,3],[-1,1],[0,3],[2,5],[3,13],[2,7],[3,3],[9,8],[25,8],[9,-4],[-2,-19],[5,2],[4,5],[6,13],[-1,6],[-1,2],[5,3],[8,-1],[14,-6],[-2,-9],[-5,-12],[-1,-9],[3,0],[20,18],[8,-2],[7,-7],[6,-7],[5,-4],[2,-4],[-3,-10],[-8,-15],[4,0],[4,1],[4,2],[2,4],[4,2],[3,-3],[4,-4],[3,-2],[4,-4],[3,-11],[2,-12],[3,-9],[-5,-17],[-2,-11],[1,-4],[19,-5],[13,-7],[21,-3],[3,-2],[3,-4],[4,-10],[7,-4],[2,-7],[1,-6],[3,-8],[0,-3],[1,-2],[2,-1],[6,1],[2,0],[2,-2],[3,-8],[0,-5],[0,-16],[1,-7],[5,-11],[2,-4],[0,-25],[0,-4],[3,-1],[8,-11],[13,-12],[-1,-8],[1,-10],[3,-9],[5,-1],[3,7],[0,11],[-2,11],[-3,7],[-2,2],[-6,4],[-2,2],[-1,7],[1,4],[1,2],[1,4],[0,5],[0,4],[-1,5],[1,6],[2,2],[5,4],[1,2],[2,11],[-1,9],[-9,29],[0,1],[0,9],[0,2],[-2,0],[-2,-1],[-1,1],[-6,10],[-2,2],[0,1],[-1,1],[-1,1],[-1,1],[-1,-1],[-3,-6],[-1,-1],[-3,2],[-9,10],[-3,4],[3,8],[-1,8],[-4,6],[-8,5],[-5,12],[-4,6],[0,4],[2,0],[0,4],[-7,17],[-4,27],[2,28],[7,17],[4,2],[25,-2],[3,-2],[7,-5],[4,-1],[12,1],[4,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[11,-6],[27,7],[12,-5],[2,-5],[3,-11],[2,-5],[3,-1],[12,1],[5,-2],[8,-11],[6,-3],[3,-3],[11,-14],[4,-7],[4,-17],[3,-8],[9,-6],[5,-6],[7,-12],[10,-25],[4,-7],[1,11],[-3,9],[-3,8],[-3,9],[5,-1],[7,2],[6,3],[5,4],[-26,-2],[-6,5],[44,1],[3,-3],[2,-7],[4,-11],[2,0],[1,5],[0,4],[-1,4],[-2,4],[0,3],[3,3],[4,4],[1,7],[-1,7],[5,5],[2,3],[1,4],[0,3],[0,10],[0,7],[4,8],[7,8],[8,6],[7,2],[3,4],[1,7],[1,7],[-2,3],[-3,1],[2,5],[5,8],[8,7],[17,5],[3,11],[7,-6],[28,-3],[7,-4],[1,0],[5,-11],[11,-25],[0,-3],[0,-2],[0,-1],[0,-3],[-4,0],[0,-4],[3,-2],[4,-1],[3,0],[4,3],[-2,1],[-4,3],[10,7],[35,8],[10,-2],[-5,0],[-4,-2],[-4,-2],[-4,-4],[3,-3],[5,-8],[2,1],[6,11],[3,5],[4,2],[7,-7],[6,-11],[6,-8],[9,-2],[0,3],[-9,6],[-4,4],[-3,4],[-2,8],[0,6],[-1,5],[-6,4],[13,8],[19,5],[12,7],[6,0],[-25,-13],[-7,-7],[24,8],[6,0],[7,-5],[10,-14],[8,-1],[0,4],[-10,9],[-5,6],[-2,7],[1,9],[3,8],[4,6],[5,4],[0,2],[0,1],[1,3],[2,5],[2,5],[1,6],[-1,9],[-2,5],[-3,4],[-4,9],[-1,2],[-2,1],[-2,0],[-1,3],[-1,5],[0,5],[0,3],[-8,6],[-2,4],[2,11],[-1,0],[-3,0],[1,2],[2,4],[1,2],[-2,2],[-1,3],[-3,7],[6,0],[0,4],[-5,6],[-5,19],[-8,8],[2,8],[6,7],[6,1],[2,-4],[0,-4],[1,-4],[3,0],[1,2],[1,6],[2,5],[3,3],[8,3],[5,0],[0,-5],[-2,-7],[1,-5],[3,-4],[3,-2],[-1,3],[0,3],[0,2],[-1,4],[4,1],[8,6],[3,1],[4,-3],[3,-5],[3,-3],[5,-1],[-4,-4],[-2,0],[5,-4],[5,1],[6,2],[1,1],[0,4],[4,4],[2,6],[4,4],[0,-2],[2,-7],[3,-1],[3,4],[3,11],[2,3],[6,2],[8,0],[16,-6],[3,2],[13,5],[23,-20],[13,-5],[-3,-5],[-5,-3],[-3,-4],[-2,-9],[3,1],[1,-1],[0,-3],[-6,-5],[1,-1],[3,-5],[2,-2],[-4,-5],[4,-1],[10,2],[11,-2],[5,2],[0,-3],[-1,-6],[0,-3],[26,0],[5,-2],[5,-4],[2,-5],[0,-6],[0,-3],[5,-16],[-11,-19],[-7,-8],[-8,-6],[3,-8],[4,3],[3,-2],[4,-3],[9,-4],[1,-4],[-1,-6],[-2,-8],[4,-4],[20,-1],[10,4],[3,0],[2,-3],[2,-4],[2,0],[1,1],[3,2],[1,-6],[1,-5],[3,-4],[8,-3],[8,-8],[9,-6],[6,-8],[5,-5],[7,5],[-2,1],[-1,1],[-1,2],[5,3],[3,7],[3,9],[0,12],[-1,12],[-1,8],[2,6],[8,4],[34,0],[20,6],[1,4],[0,6],[2,4],[20,11],[3,8],[2,9],[4,7],[11,9],[8,5],[23,4],[7,-2],[11,-8],[6,-2],[53,8]],[[45069,88204],[2,-3],[0,-5],[-2,-7],[-4,-6],[-2,-1],[2,3],[1,3],[0,3],[-2,2],[-3,0],[-12,-4],[0,5],[9,8],[5,2],[2,1],[4,-1]],[[44997,89890],[7,-8],[2,-1],[-1,-6],[-5,-3],[-5,7],[-1,9],[3,2]],[[44371,88043],[1,-3],[2,-6],[-2,-7],[-3,-6],[-3,-3],[-2,2],[-1,5],[-2,5],[-2,7],[1,6],[5,3],[7,0],[1,-1],[-2,-2]],[[44894,89563],[2,-3],[4,-8],[0,-7],[-3,-2],[-4,1],[-2,2],[-2,4],[0,4],[-2,7],[-3,9],[2,2],[5,-5],[3,-4]],[[13855,35624],[3,2],[3,0],[2,-2],[2,-4],[-3,-1],[-3,0],[-2,2],[-2,3]],[[15337,35863],[-3,-2],[3,2],[2,0],[0,-2],[0,-3],[0,2],[0,2],[-2,1]],[[14353,36064],[7,-6],[4,-18],[0,-19],[-3,-9],[-6,7],[-6,17],[-2,18],[6,10]],[[13682,36301],[1,0],[0,-2],[-2,-3],[-1,-1],[0,3],[0,2],[1,0],[1,1]],[[12176,37427],[-3,-4],[-3,-2],[7,12],[0,-2],[-1,-4]],[[12117,37756],[-2,3],[-3,0],[-2,-1],[-3,-4],[3,7],[3,2],[4,-2],[0,-5]],[[12069,37834],[5,3],[2,-4],[-1,-7],[-4,-6],[3,7],[-1,3],[-2,3],[-2,1]],[[12045,37831],[-3,8],[-1,3],[2,0],[1,-2],[1,-4],[0,-5]],[[12018,37848],[-1,2],[-1,3],[-1,0],[-2,-3],[2,6],[2,0],[2,-4],[1,-7],[-1,0],[0,1],[0,1],[-1,1]],[[10996,38854],[2,2],[3,-3],[4,-6],[1,-6],[0,-8],[-3,-4],[-3,-3],[-4,-2],[5,8],[3,6],[-1,7],[-7,9]],[[11333,39010],[-1,3],[0,2],[-1,3],[-2,1],[3,0],[2,-3],[0,-6],[-2,-5],[1,5]],[[11445,39046],[-2,1],[-1,0],[-1,3],[3,1],[2,0],[1,-2],[-2,-3]],[[10759,39097],[4,8],[4,-2],[3,-9],[-1,-11],[-1,9],[-2,6],[-4,2],[-3,-3]],[[10910,39138],[8,9],[7,-7],[2,-13],[-7,-5],[5,11],[-3,6],[-7,2],[-5,-3]],[[11444,39357],[2,-4],[0,-2],[0,-2],[-10,11],[2,0],[2,-1],[4,-2]],[[10252,39897],[3,9],[3,-2],[3,-15],[0,-1],[-1,3],[-2,5],[-1,6],[-1,-5],[-1,-3],[-2,0],[-1,3]],[[8151,40006],[4,8],[0,-6],[-1,-7],[-3,5]],[[10711,40184],[-1,5],[-3,4],[-4,2],[-4,1],[6,2],[5,-4],[2,-10],[0,-2],[0,-7],[0,-4],[0,3],[0,1],[-1,9]],[[11544,40185],[-6,0],[0,4],[0,2],[1,4],[3,10],[6,5],[-8,-15],[-1,-4],[0,-1],[2,-1],[1,-1],[2,-3]],[[10254,40399],[-2,4],[-1,2],[-1,3],[3,0],[3,-2],[2,-4],[2,-5],[-1,-1],[-2,0],[-1,2],[-2,1]],[[8449,40410],[2,2],[1,0],[1,1],[-1,-4],[-4,-7],[0,2],[0,2],[1,4]],[[7240,40522],[2,-6],[2,-8],[0,-6],[-1,0],[-2,7],[-3,19],[-2,8],[2,0],[1,-3],[1,-5],[0,-6]],[[9944,40610],[1,4],[3,-2],[3,-6],[2,-7],[-3,2],[-2,3],[-4,6]],[[7710,40731],[-3,-4],[-3,2],[1,4],[5,-2]],[[9472,41060],[-14,29],[10,-14],[5,-9],[-1,-6]],[[10864,41101],[8,2],[2,0],[-2,-2],[-5,-11],[-3,1],[-2,2],[0,4],[2,4]],[[8819,41073],[-6,8],[-2,14],[1,12],[4,4],[1,-3],[3,-14],[2,-5],[3,-5],[0,-5],[-3,-4],[-3,-2]],[[9309,41111],[1,-7],[1,-4],[-1,-3],[-2,11],[-1,5],[-2,5],[1,-2],[3,-5]],[[7077,41101],[1,7],[-1,4],[-1,4],[-3,1],[3,2],[2,-4],[0,-6],[1,-7],[-1,-3],[-2,-3],[-1,1],[2,4]],[[9819,41154],[5,1],[3,-4],[1,-7],[-3,-5],[-3,0],[-2,4],[-1,5],[0,6]],[[9595,41302],[4,0],[2,-2],[1,-3],[-2,-4],[-5,8],[-18,7],[-8,11],[19,-14],[7,-3]],[[9390,41374],[-2,-18],[1,11],[1,14],[-1,5],[-1,4],[-1,2],[-3,3],[1,0],[2,-3],[2,-1],[1,-3],[1,-7],[-1,-7]],[[9272,41444],[-5,5],[4,-2],[3,-5],[3,-8],[1,-8],[-3,9],[-3,9]],[[9095,41449],[4,0],[1,-2],[1,-5],[-2,3],[-1,1],[-1,1],[-2,2]],[[8950,41458],[2,2],[3,-3],[3,-6],[4,-4],[-12,11]],[[9039,41515],[-15,24],[-5,7],[6,-6],[5,-7],[9,-18]],[[8908,41539],[-1,2],[-1,2],[0,1],[0,3],[2,-8]],[[9466,41922],[-3,-3],[-3,-2],[-3,-1],[-3,0],[9,4],[3,2]],[[10785,42066],[-2,-4],[-2,4],[-7,15],[3,-3],[8,-12]],[[8965,36332],[0,5],[5,3],[5,3],[12,1],[-1,-4],[-2,-3],[-1,-2],[-2,-3],[-9,-3],[-3,0],[-4,3]],[[8477,36637],[7,-5],[2,-9],[-4,-9],[-12,-2],[-3,3],[-2,6],[0,10],[1,3],[4,2],[7,1]],[[12494,36779],[6,1],[9,15],[7,4],[-2,-8],[-10,-24],[-3,1],[-2,1],[-5,6],[0,4]],[[7948,37191],[3,-1],[2,-6],[3,-8],[1,-5],[-1,-15],[-1,-16],[-2,-3],[-1,-1],[-1,0],[-1,16],[-3,14],[-2,13],[3,12]],[[10924,37643],[6,7],[5,-8],[8,-27],[-7,-9],[-8,5],[-5,14],[1,18]],[[10922,39940],[-13,-16],[-9,-14],[-7,-16],[-3,-3],[-5,0],[-4,2],[-3,3],[0,7],[1,7],[3,14],[6,12],[6,21],[10,13],[20,19],[6,8],[7,-2],[2,-12],[-3,-12],[-5,-10],[-9,-21]],[[8560,39969],[6,-15],[4,-27],[-2,-26],[-10,-14],[-4,2],[-15,9],[-5,4],[-9,24],[-7,26],[-2,21],[-2,4],[-2,0],[-2,-4],[-1,-6],[-1,-2],[-6,-2],[-16,-11],[-6,0],[-4,1],[-9,7],[-16,5],[-3,4],[-5,35],[-2,5],[-3,4],[-2,10],[-2,12],[-1,11],[2,28],[8,17],[11,9],[13,7],[12,2],[13,-4],[11,-10],[10,-13],[2,-6],[3,-8],[1,-9],[1,-11],[-1,-39],[1,-12],[7,-17],[11,-6],[22,-5]],[[8390,40127],[3,-3],[0,-6],[-6,-26],[-4,-16],[-6,-10],[-5,0],[-7,7],[-8,12],[-6,14],[-2,11],[3,7],[5,5],[5,0],[2,-5],[1,-6],[2,0],[2,2],[1,2],[2,1],[2,2],[2,1],[3,-4],[1,7],[2,4],[4,1],[4,0]],[[8054,40539],[1,5],[2,-1],[3,-4],[1,-7],[0,-4],[0,-8],[-1,-5],[-3,1],[0,-4],[-1,-2],[-2,-2],[-2,0],[-5,9],[-2,4],[-1,5],[2,8],[3,3],[3,0],[2,2]],[[7922,40557],[4,1],[5,-2],[5,-5],[2,-4],[3,-15],[17,-46],[-4,-5],[-10,-11],[-4,-2],[-2,4],[-2,0],[0,-6],[-1,-3],[-2,-2],[-2,-1],[-3,0],[-5,7],[-3,20],[-2,54],[1,9],[3,7]],[[8048,40575],[5,-19],[0,-3],[-2,-2],[-2,-4],[-3,-4],[-4,-2],[-1,7],[-1,7],[1,7],[3,14],[2,7],[1,1],[1,-9]],[[7928,40622],[0,-19],[-1,-8],[-3,3],[-2,2],[-15,14],[-2,3],[0,4],[2,21],[3,7],[6,2],[8,-1],[-1,-5],[-1,-3],[6,1],[3,-1],[1,-2],[0,-2],[2,-5],[0,-3],[-1,-3],[-2,-2],[-3,-3]],[[7839,40711],[4,4],[3,-7],[2,-12],[0,-13],[-4,0],[-4,8],[-2,11],[1,9]],[[9337,40930],[8,5],[6,-8],[2,-14],[-3,-15],[-8,2],[-6,7],[-3,10],[4,13]],[[11472,44295],[10,-1],[4,-2],[4,-5],[4,-19],[0,-23],[-4,-19],[-10,-4],[-4,4],[-2,10],[0,11],[4,20],[-1,9],[-5,19]],[[11366,44607],[4,-3],[3,-5],[3,-6],[-1,-2],[-2,-1],[0,-2],[-1,-3],[0,-2],[-2,-2],[-3,-1],[-1,-1],[-4,-9],[-6,-23],[-4,-8],[-3,10],[0,11],[1,12],[-1,11],[3,7],[3,14],[5,10],[6,-7]],[[11434,44701],[6,1],[-1,-6],[-14,-25],[-6,-5],[-7,-4],[-11,-2],[-15,1],[-3,1],[-2,2],[-3,1],[-3,-1],[-2,-2],[0,-18],[-1,-10],[-3,0],[-4,3],[-11,5],[-5,7],[-4,8],[-2,7],[-2,8],[0,9],[1,8],[8,6],[25,29],[10,4],[8,-3],[3,-12],[4,-8],[5,-5],[6,-3],[5,-1],[7,-3],[3,-1],[3,1],[2,3],[2,3],[1,2]],[[11090,44948],[6,-13],[3,-3],[4,4],[-3,-18],[-3,-20],[-3,-16],[-9,-7],[-5,5],[-13,40],[5,8],[5,10],[6,9],[7,1]],[[11246,45208],[3,-8],[-1,-8],[-5,-6],[-5,-3],[-12,-1],[-5,-5],[-4,-10],[2,9],[-2,8],[-2,9],[-1,9],[9,22],[2,0],[2,-7],[2,0],[5,3],[3,-2],[9,-10]],[[11097,45244],[8,-14],[2,-7],[0,-13],[-1,-9],[-4,1],[-6,10],[-2,-13],[-4,-9],[-6,-2],[-4,8],[-2,0],[-3,-7],[-11,-7],[-3,-5],[-1,-10],[-3,2],[-4,7],[-5,7],[-2,8],[-3,28],[-1,11],[0,5],[-3,5],[-1,4],[4,22],[9,3],[35,-12],[9,0],[2,1],[4,5],[2,2],[0,-3],[0,-2],[-1,-1],[-2,-5],[-3,-10]],[[10919,45723],[-2,-8],[-3,-7],[-2,0],[-3,7],[0,22],[6,17],[9,7],[10,-5],[-4,-7],[-2,-1],[-5,-2],[-2,-5],[-2,-18]],[[9921,34137],[-1,-3],[-4,-7],[-1,-2],[1,-1],[0,-11],[1,-1],[-2,-7],[-2,-4],[-3,-1],[-4,5],[-2,10],[-1,18],[3,16],[6,4],[5,-6],[2,-5],[2,-5]],[[11431,37517],[-23,0],[5,5],[6,-2],[6,-2],[6,-1]],[[12373,37720],[-19,25],[6,-2],[5,-4],[5,-8],[3,-11]],[[11518,38106],[4,10],[1,6],[-7,36],[-1,3],[-1,1],[-5,-3],[1,2],[3,2],[1,0],[2,0],[6,-20],[2,-26],[-6,-11]],[[12135,39474],[0,1],[0,3],[0,4],[-1,4],[-1,5],[-3,3],[-3,3],[-9,6],[-2,2],[-2,3],[-1,3],[-3,5],[-13,14],[-3,2],[-1,-3],[0,-5],[0,-2],[-1,2],[0,3],[-1,2],[-2,1],[6,5],[9,-7],[8,-11],[4,-9],[14,-11],[7,-10],[-2,-13]],[[10924,39563],[0,2],[-2,7],[-4,7],[-16,15],[-5,8],[-2,7],[-1,2],[7,-11],[19,-21],[2,-8],[2,-8]],[[11952,39595],[-26,57],[7,-7],[8,-15],[8,-19],[3,-16]],[[10882,39681],[-7,21],[-13,20],[-6,24],[-3,7],[-12,21],[2,-4],[11,-10],[7,-27],[6,-12],[8,-12],[5,-12],[2,-16]],[[10395,40034],[3,12],[-20,41],[7,-9],[10,-15],[5,-16],[-5,-13]],[[10163,40131],[-7,11],[-10,5],[5,1],[5,-3],[4,-5],[3,-9]],[[9616,40115],[-15,40],[5,-6],[3,-9],[7,-25]],[[9561,40175],[-2,8],[-1,7],[-1,9],[0,11],[4,-35]],[[10170,40598],[-18,26],[-15,-1],[-12,3],[24,4],[6,-3],[6,-9],[9,-20]],[[10119,40618],[-14,2],[-11,18],[-11,12],[10,-4],[15,-25],[11,-3]],[[10051,40675],[-2,1],[-7,26],[-9,14],[-9,7],[-6,5],[1,0],[6,-3],[9,-3],[4,-4],[8,-19],[3,-11],[2,-13]],[[9929,40711],[-1,12],[-1,4],[-8,21],[4,-6],[5,-10],[2,-11],[-1,-10]],[[9896,40793],[-9,6],[-5,-2],[-3,8],[2,-1],[0,-1],[0,-2],[4,3],[5,-2],[4,-5],[2,-4]],[[9588,40788],[-5,7],[-8,34],[-7,16],[-6,29],[-4,30],[-4,14],[-2,29],[0,-10],[2,-14],[3,-12],[3,-5],[2,-7],[2,-31],[2,-7],[1,-5],[11,-27],[7,-33],[3,-8]],[[9552,40963],[-27,-5],[14,11],[8,3],[5,-9]],[[10408,40930],[2,14],[4,15],[4,14],[4,10],[-14,-53]],[[11080,41008],[-2,9],[-7,1],[-8,-10],[6,11],[7,3],[5,-4],[-1,-10]],[[9676,41024],[-19,36],[4,-6],[15,-30]],[[9706,41052],[-5,26],[-15,48],[-9,12],[8,-3],[4,-11],[7,-27],[8,-18],[2,-11],[0,-16]],[[8876,41588],[-2,8],[-4,8],[-5,9],[-7,9],[-18,11],[12,-2],[12,-7],[10,-14],[2,-22]],[[8714,41649],[-5,13],[-12,11],[6,-2],[8,-5],[5,-7],[-2,-10]],[[9668,41787],[-3,-8],[-5,-8],[-5,-6],[-5,-2],[-1,7],[3,16],[6,25],[-5,-30],[-2,-13],[6,3],[11,16]],[[9373,41884],[3,13],[2,12],[-9,12],[8,-2],[3,-11],[-1,-13],[-6,-11]],[[9721,41876],[14,28],[12,14],[6,13],[-7,-6],[-12,-2],[-13,-7],[5,7],[7,3],[12,2],[6,7],[3,2],[2,-2],[-1,-6],[0,-3],[-6,-9],[-9,-11],[-3,-2],[-2,-4],[-9,-18],[-5,-6]],[[9487,41961],[1,12],[-5,2],[-15,-2],[16,6],[6,-3],[-3,-15]],[[12017,37845],[-1,-1],[-1,2],[1,-1],[1,0]],[[11351,38152],[-2,-2],[0,-1],[-1,0],[3,3]],[[9970,40566],[8,3],[4,-8],[3,-11],[1,-6],[-4,7],[-3,11],[-4,5],[-6,-11],[0,3],[0,2],[1,5]],[[61875,40357],[-8,7],[4,4],[6,-2],[-2,-9]],[[69429,21130],[-5,1],[-3,3],[-3,4],[-4,4],[-5,2],[-8,3],[-3,3],[0,4],[12,6],[12,-3],[14,-23],[9,-9],[3,-8],[-2,-7],[-4,1],[-13,19]],[[69109,21248],[-2,-8],[-4,-4],[-4,0],[-5,4],[-14,0],[-7,2],[-6,6],[5,12],[3,4],[5,0],[5,-1],[9,-7],[5,0],[9,3],[2,-2],[-1,-9]],[[69330,21333],[-4,-3],[-4,-1],[-4,2],[-4,6],[30,23],[10,1],[0,-4],[-6,-6],[-4,-13],[-5,-10],[-9,5]],[[69219,21459],[2,7],[3,4],[3,3],[3,4],[9,20],[6,10],[8,8],[8,5],[8,0],[-3,-13],[-9,-11],[-3,-9],[22,7],[4,-1],[-1,-8],[-3,-9],[-4,-8],[-3,-5],[-10,-11],[-4,-7],[1,-9],[3,-11],[-4,-6],[-6,-4],[3,-5],[-24,-15],[-5,5],[0,30],[-1,8],[-2,17],[-1,4]],[[69229,21536],[1,-13],[3,1],[2,-2],[-1,-6],[-2,-2],[-3,-3],[-2,-3],[-3,-9],[-4,-17],[-5,-13],[-3,-5],[-3,-3],[-3,2],[-2,5],[1,2],[3,21],[3,16],[5,15],[6,11],[7,3]],[[69295,21520],[-5,4],[-5,7],[-4,10],[-3,11],[10,0],[13,-15],[9,-1],[-2,-8],[-3,-5],[-5,-2],[-5,-1]],[[69596,21343],[6,-22],[-4,-28],[-9,-24],[-16,-29],[-20,5],[-9,6],[-7,-8],[-1,-10],[-6,-6],[23,-15],[20,-21],[-25,5],[-24,-5],[-13,47],[-28,13],[-11,-6],[-11,-6],[-13,-1],[-13,4],[-20,7],[-21,-5],[15,-10],[14,-15],[-3,-2],[-4,-3],[6,-10],[7,-9],[-7,-4],[-6,-2],[-9,12],[-8,15],[-7,3],[-5,-7],[0,-10],[5,-19],[-16,18],[-18,11],[6,-14],[9,-9],[6,-8],[2,-9],[4,-4],[4,-6],[1,-14],[2,-12],[22,-17],[24,-6],[22,-14],[22,-14],[-20,27],[-5,31],[12,6],[13,3],[12,-5],[11,-7],[21,-3],[8,-26],[-19,-24],[-25,-2],[17,-7],[13,-14],[-8,-19],[-15,1],[-11,-5],[-8,-12],[-15,-1],[-16,9],[-23,-1],[-20,13],[-10,23],[-9,22],[-2,25],[-1,24],[-11,13],[-13,-2],[4,-8],[0,-12],[-9,14],[-10,4],[10,-23],[12,-22],[-1,-33],[-14,-17],[-10,5],[-10,8],[-17,2],[-17,5],[-14,18],[-12,21],[-14,2],[-12,0],[-6,24],[-9,20],[-6,-5],[2,-12],[-2,-1],[-2,-2],[6,-14],[3,-16],[-13,10],[-11,25],[3,-17],[3,-16],[3,-9],[-6,-8],[-1,-15],[-10,12],[-3,25],[-5,12],[-4,-24],[9,-37],[-11,-28],[-11,-11],[-12,-7],[-3,2],[-2,3],[-5,-1],[-5,-1],[-13,0],[-14,-1],[-11,5],[-7,20],[0,15],[3,12],[0,22],[6,17],[7,17],[5,16],[-5,14],[12,13],[10,19],[-8,20],[-1,17],[-7,3],[-11,-1],[14,22],[19,3],[-1,10],[1,10],[-9,-4],[-16,-5],[-5,13],[4,3],[5,1],[-16,16],[-5,25],[-2,10],[1,8],[5,-8],[6,-10],[13,19],[21,17],[-21,-2],[-15,10],[6,8],[7,5],[-11,0],[-10,0],[1,8],[1,8],[-9,4],[2,17],[11,4],[9,-8],[-4,22],[0,31],[13,-1],[12,-5],[-7,18],[-8,17],[-7,16],[-7,14],[-2,11],[7,5],[11,10],[11,-1],[1,13],[1,12],[8,9],[1,17],[-4,8],[5,15],[5,16],[16,10],[17,-3],[-4,-7],[6,-13],[-2,-12],[11,-8],[-37,-43],[-21,-56],[5,6],[4,6],[6,3],[7,-5],[-3,20],[9,6],[4,-14],[15,39],[21,22],[6,-2],[4,-9],[-9,-12],[-13,-9],[8,-14],[8,14],[-1,-23],[-9,-20],[-14,-15],[-7,-24],[8,9],[8,7],[-8,-32],[-17,-22],[-4,-22],[-2,-25],[10,-6],[9,-6],[-3,42],[13,27],[11,-9],[7,-21],[1,-21],[2,-18],[10,-7],[8,7],[30,17],[24,40],[3,-10],[2,-11],[-2,-12],[-3,-6],[4,-6],[5,5],[14,51],[19,25],[0,-16],[2,-15],[5,-5],[-9,-9],[-4,-12],[14,1],[11,-9],[-9,-8],[-12,-8],[17,-6],[0,-15],[-16,-5],[-16,-3],[-6,5],[-6,4],[-24,6],[-17,-22],[-7,-10],[-9,-10],[4,-6],[8,6],[8,8],[19,20],[14,-9],[-12,-10],[-13,-8],[18,-8],[-2,-11],[9,-3],[7,-12],[10,0],[0,-2],[0,-2],[-17,-4],[-17,-13],[24,3],[23,3],[21,7],[20,4],[-18,-22],[-22,-11],[18,-4],[18,1],[11,16],[10,16],[1,-11],[3,-10],[7,18],[9,11],[-1,10],[-1,8],[6,3],[6,-1],[0,11],[6,4],[6,4],[4,9],[11,7],[11,7],[16,8],[17,-10],[-1,-6],[-2,-6],[15,1],[11,15],[11,33],[17,13],[20,-1],[19,-10],[13,-14],[2,-29],[5,-22]],[[69075,21674],[3,-8],[-4,-5],[-7,-2],[-6,3],[-3,4],[4,4],[7,4],[6,0]],[[69113,21686],[-5,-7],[-3,6],[0,12],[4,9],[7,2],[3,-7],[-1,-9],[-5,-6]],[[64398,23005],[3,-4],[2,-4],[4,-12],[-12,-24],[-10,3],[-4,0],[-4,-3],[-9,2],[-6,6],[-5,9],[-5,11],[-4,15],[3,9],[19,21],[7,-1],[5,-8],[2,-14],[2,-4],[5,-1],[7,-1]],[[63937,23189],[4,5],[22,8],[3,-9],[4,-10],[1,-12],[-2,-12],[-4,-6],[-4,0],[-11,6],[-6,2],[-4,6],[-2,10],[-1,12]],[[71528,28070],[11,2],[9,-14],[3,-18],[-6,-11],[-8,-5],[-9,11],[-4,18],[4,17]],[[71536,27546],[4,-9],[1,-4],[-2,-4],[-2,-1],[-5,2],[-1,3],[-2,10],[1,5],[2,2],[3,-2],[1,-2]],[[61216,37249],[0,5],[2,-1],[0,-13],[-5,-14],[-6,-1],[-2,3],[-2,7],[-1,10],[2,6],[3,2],[3,1],[2,-2],[0,-6],[-1,-3],[-1,-3],[-1,-3],[2,-4],[3,1],[3,6],[-1,9]],[[61035,37770],[0,1],[1,-1],[-1,0]],[[65142,41060],[2,2],[0,-5],[-2,3]],[[63135,43620],[3,9],[2,-11],[-5,2]],[[62919,44713],[-1,-7],[-2,-8],[-3,-6],[-3,3],[0,6],[2,6],[4,5],[3,1]],[[63196,44717],[0,9],[1,2],[1,-3],[-2,-8]],[[64814,47260],[2,-6],[1,-3],[0,-4],[-1,3],[-1,3],[-1,7]],[[65460,48225],[2,-13],[-2,0],[-2,7],[2,6]],[[62915,44928],[5,-8],[3,-6],[-1,-3],[-4,-3],[-9,-15],[-6,-6],[-20,1],[-23,-14],[-18,-2],[-7,39],[6,-16],[12,-8],[13,2],[9,10],[5,0],[7,5],[7,7],[4,5],[2,-5],[2,5],[2,-3],[3,-2],[0,5],[-2,4],[-2,5],[-1,7],[0,8],[13,-12]],[[62856,44932],[0,2],[0,1],[-1,1],[-1,0],[0,3],[1,0],[10,7],[10,-1],[11,-4],[10,-1],[-5,-9],[-8,-3],[-9,3],[-5,5],[-3,-4],[-7,2],[-3,-2]],[[65624,46210],[3,31],[3,12],[5,6],[-1,-13],[-3,-13],[-7,-23]],[[65389,47710],[-2,1],[0,3],[1,0],[0,2],[-3,1],[-2,-1],[-3,2],[-1,2],[0,2],[2,0],[1,1],[-1,3],[4,8],[2,1],[3,1],[3,3],[1,4],[1,5],[2,2],[1,8],[0,10],[2,1],[1,0],[2,-1],[3,-6],[1,-7],[-1,-2],[-1,-7],[0,-4],[0,-7],[0,-3],[-1,-1],[0,-1],[2,0],[3,-8],[6,-9],[6,-8],[3,-7],[-2,-16],[1,-4],[1,-14],[-3,-1],[0,-7],[2,-11],[1,-8],[2,-4],[1,-8],[-6,0],[-4,5],[-3,13],[-2,6],[-2,2],[-2,-2],[-2,2],[1,11],[5,0],[2,3],[-2,5],[-1,4],[0,5],[-1,3],[-3,1],[-3,9],[-2,7],[-4,1],[-5,6],[-2,3],[-2,1]],[[65349,47805],[-5,-3],[-4,10],[-1,14],[1,11],[4,-3],[5,-7],[3,-11],[-3,-11]],[[65476,47905],[-3,2],[-4,1],[-2,4],[0,4],[-2,9],[4,3],[2,1],[2,0],[4,-8],[3,-3],[5,-2],[2,-5],[2,2],[4,-1],[3,-7],[-5,0],[0,-5],[-1,-7],[-2,-4],[-3,0],[-4,3],[-3,6],[-2,7]],[[64650,46328],[1,-7],[-1,1],[0,1],[0,2],[0,3]],[[65383,47003],[0,-7],[0,-2],[0,2],[0,7]],[[65378,47710],[1,0],[1,-2],[1,-2],[0,-1],[-1,1],[-2,0],[0,2],[-1,1],[1,1]],[[65388,47705],[1,-1],[1,-1],[0,-2],[0,-2],[0,-1],[-1,0],[-1,3],[0,1],[0,1],[-1,1],[0,1],[1,0]],[[65416,47728],[1,0],[1,-4],[0,-2],[-1,0],[-1,1],[-1,1],[-1,1],[0,3],[0,1],[1,0],[1,-1]],[[65417,47733],[1,0],[0,-2],[1,0],[1,-2],[-1,-1],[-1,1],[-1,1],[0,2],[0,1]],[[65415,47745],[1,1],[1,0],[1,0],[1,0],[1,-1],[-1,-2],[0,-3],[-2,-1],[-1,-2],[-1,0],[0,2],[0,3],[0,2],[0,1]],[[65475,47935],[1,2],[2,0],[4,-1],[1,0],[0,-3],[-2,0],[0,-3],[0,-2],[-4,2],[-2,5]],[[65461,47906],[1,0],[0,-3],[-1,0],[-1,2],[1,1]],[[65457,47895],[0,-1],[1,-3],[-1,0],[-1,3],[1,1]],[[65462,47977],[1,-1],[2,-1],[-1,-1],[-2,0],[-2,1],[1,1],[1,1]],[[65508,47901],[4,-3],[1,-8],[2,-5],[-2,-2],[-1,-4],[-1,-5],[-2,1],[-3,5],[0,8],[1,7],[1,6]],[[65518,47913],[2,-1],[2,-6],[1,-5],[-2,0],[-1,3],[-2,5],[0,4]],[[65518,47933],[1,0],[0,-4],[1,-4],[-1,0],[-1,5],[0,3]],[[65533,47903],[1,-2],[0,-3],[-1,-4],[-1,1],[0,4],[1,4]],[[65538,47758],[1,-1],[2,-3],[0,-3],[-1,-1],[-2,0],[-2,4],[0,2],[1,1],[1,1]],[[98065,51264],[-4,-3],[-1,0],[-2,1],[13,13],[7,4],[19,3],[2,2],[-5,3],[3,4],[3,-2],[2,-6],[0,-7],[-2,-3],[-4,0],[-6,3],[-6,0],[-8,-1],[-6,-4],[-5,-7]],[[7831,43727],[3,-9],[4,-17],[1,-15],[-6,-4],[-3,11],[-2,13],[0,13],[3,8]],[[6695,47143],[5,5],[4,-4],[2,-6],[-3,-3],[-10,-3],[-5,4],[-3,12],[3,0],[2,0],[2,-2],[3,-3]],[[6941,48073],[14,9],[6,0],[-2,-13],[-2,-4],[-1,-6],[0,-7],[1,-7],[-3,0],[-3,9],[-4,3],[-2,2],[-4,6],[-2,5],[2,3]],[[2312,48792],[-9,5],[-1,1],[5,-3],[9,-4],[1,-2],[2,-3],[0,-1],[5,-10],[1,2],[0,1],[1,0],[0,3],[-8,27],[-3,8],[-4,4],[-5,6],[-5,2],[-2,-8],[-1,4],[0,4],[1,4],[2,4],[10,-10],[8,-13],[6,-18],[1,-11],[1,-6],[-1,-7],[-4,4],[-2,7],[-3,5],[-4,4],[-1,1]],[[99106,48925],[8,-4],[7,-11],[3,-12],[-3,-5],[-3,4],[-16,28],[2,2],[1,0],[1,-2]],[[98883,48986],[-2,4],[-1,5],[2,-2],[2,-3],[1,-3],[1,-4],[-1,0],[-1,0],[0,1],[-1,2]],[[98774,49360],[3,-13],[-4,-16],[-1,7],[1,24],[-3,8],[-5,15],[-1,7],[2,-4],[8,-28]],[[98626,49619],[3,-15],[0,-21],[-2,-20],[-6,-13],[-7,2],[-2,13],[4,16],[7,10],[0,-4],[-3,-4],[-3,-6],[-2,-7],[0,-8],[3,-5],[3,3],[2,7],[1,4],[2,6],[0,16],[-1,16],[-4,10],[2,4],[0,-2],[1,-1],[2,-1]],[[99002,49680],[4,-8],[5,-16],[4,-19],[2,-18],[-4,7],[-2,9],[-2,11],[-2,10],[-5,14],[-3,8],[-1,10],[2,0],[1,-2],[1,-6]],[[98890,49680],[4,-17],[-1,-15],[-2,4],[-2,3],[-6,5],[0,4],[3,-1],[7,-7],[-1,10],[-2,9],[-7,13],[-5,15],[-2,5],[-4,1],[0,-3],[1,-2],[1,-3],[-4,3],[2,5],[4,3],[6,-3],[3,-13],[5,-16]],[[98545,49757],[2,-26],[2,-10],[-7,4],[-2,12],[1,22],[-1,8],[-9,31],[3,-1],[2,-1],[1,-3],[2,-3],[1,-11],[5,-22]],[[98465,50049],[0,-6],[4,-16],[2,-25],[0,-4],[-1,-5],[-3,-9],[-3,4],[-1,4],[1,3],[3,2],[-1,-4],[0,-1],[1,-4],[4,10],[0,1],[-1,11],[-5,21],[-4,55],[4,-13],[0,-24]],[[98454,50098],[3,-2],[3,-4],[1,-4],[-3,-2],[-4,4],[-13,21],[-3,8],[4,0],[2,-6],[8,-13],[2,-2]],[[98227,50549],[-3,5],[1,8],[6,11],[1,12],[-1,4],[-3,4],[-5,5],[6,1],[2,-1],[2,-5],[0,-5],[0,-5],[-1,-9],[-5,-25]],[[98286,50735],[16,-18],[7,-11],[2,-11],[-15,23],[-10,10],[-8,-1],[1,4],[1,3],[2,3],[2,2],[2,-4]],[[98052,50964],[0,-3],[0,-1],[0,-2],[-1,3],[-1,1]],[[98050,50962],[1,1],[1,0],[0,1]],[[98050,50962],[-1,0],[-1,0],[-1,2],[-1,3],[2,0],[0,-2],[1,-1],[1,-2]],[[98052,50964],[2,6],[4,9],[3,13],[7,12],[2,15],[2,6],[2,7],[1,8],[-3,7],[-5,8],[-5,6],[-5,3],[0,-2],[0,-6],[-1,0],[0,7],[-1,5],[-2,5],[-1,3],[4,0],[3,-9],[14,-19],[3,-6],[1,-4],[0,-9],[-5,-18],[-4,-6],[-10,-29],[-6,-12]],[[98050,51376],[-1,0],[-1,2],[-1,1],[-1,1],[-2,14],[-1,29],[-3,10],[4,-4],[3,-18],[3,-35]],[[98065,51522],[0,-20],[-2,-16],[-7,-4],[-2,1],[-1,1],[-1,2],[9,3],[3,13],[0,18],[-3,19],[1,0],[0,1],[0,1],[0,1],[3,-20]],[[98049,51584],[11,-32],[1,-4],[-13,31],[-4,16],[-2,5],[-5,9],[-1,5],[0,6],[2,-9],[8,-12],[2,-6],[1,-9]],[[6336,51514],[3,-6],[1,-12],[-1,-9],[-4,3],[-3,-3],[-2,-3],[-3,-2],[-3,0],[-4,2],[-2,4],[-2,4],[-3,4],[-2,8],[-2,2],[-6,1],[-28,18],[-11,11],[-9,15],[-7,14],[-6,8],[-2,-4],[-3,0],[-5,4],[-5,10],[1,17],[2,2],[8,10],[4,1],[2,-2],[1,-2],[-1,-1],[-3,-4],[-4,-8],[-1,-10],[4,-11],[2,-1],[4,1],[4,0],[1,-6],[2,-4],[3,-1],[6,0],[6,-6],[2,0],[-3,7],[-3,5],[-3,2],[-2,4],[-2,7],[3,-2],[3,0],[2,4],[0,11],[3,-5],[1,-6],[0,-6],[2,-6],[3,-3],[2,5],[-1,8],[-4,13],[-1,6],[1,5],[1,5],[3,-4],[2,1],[-1,11],[3,-4],[0,-5],[0,-6],[1,-5],[3,-4],[1,2],[1,4],[3,3],[1,4],[1,5],[1,4],[-1,5],[-2,2],[-5,3],[-8,8],[-10,15],[-1,2],[-2,3],[-3,6],[-3,3],[-1,-7],[-2,-4],[-3,1],[-2,5],[-1,9],[4,5],[6,0],[14,-8],[11,-18],[17,-10],[4,0],[-1,-6],[-1,-6],[-1,-4],[-5,-4],[-1,-5],[-1,-13],[-1,-28],[6,-15],[10,-10],[11,-14],[4,-7],[4,-6],[4,-4],[5,-2]],[[97985,52265],[6,-5],[5,4],[4,7],[3,9],[4,4],[11,2],[5,4],[0,-4],[0,-3],[-2,-6],[-10,5],[-9,-12],[-7,-14],[-4,-3],[-2,2],[-2,3],[-1,3],[-1,4]],[[98044,52330],[1,-3],[1,-2],[0,-3],[-6,-3],[-13,-13],[-4,0],[16,16],[5,8]],[[5754,52764],[2,-5],[3,-12],[4,-10],[1,-5],[-1,-6],[-3,-6],[-6,-6],[-6,-3],[-7,1],[-6,8],[-2,12],[5,0],[13,-8],[3,3],[0,7],[0,8],[-2,6],[-2,4],[-7,7],[-3,3],[-2,6],[-1,13],[-2,4],[-3,1],[-4,-2],[-2,-5],[-2,-6],[7,-29],[-12,13],[1,24],[9,18],[9,-4],[3,-9],[2,-6],[0,-6],[1,-7],[4,-2],[3,1],[3,-2]],[[2160,47801],[3,-7],[3,-2],[4,2],[4,3],[-8,-11],[-7,8],[-1,12],[9,3],[-1,-2],[0,-2],[-1,-1],[-5,-3]],[[1526,47693],[2,-3],[-1,-2],[-3,3],[-2,5],[1,0],[3,-3]],[[1520,47696],[-2,2],[-2,4],[1,1],[1,-3],[2,-4]],[[1528,47692],[-4,8],[-4,6],[-3,1],[-1,3],[1,2],[4,-5],[6,-13],[1,-2]],[[2428,47838],[4,1],[3,-4],[1,-7],[-2,-5],[-3,0],[-3,2],[-1,6],[1,7]],[[2474,48615],[1,6],[1,6],[1,-11],[-1,-8],[-2,-1],[0,8]],[[97093,49952],[-1,1],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,2],[1,2],[1,1],[1,1],[2,0],[1,0],[1,-3],[1,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1]],[[98135,51674],[-1,3],[0,1],[-1,1],[-1,1],[-2,1],[-2,-1],[0,-4],[1,-10],[0,-5],[0,-4],[-1,-4],[-2,-1],[0,1],[1,2],[0,3],[0,4],[0,3],[-1,6],[0,3],[1,6],[0,4],[1,3],[1,2],[2,0],[1,0],[1,-2],[2,-3],[1,-4],[0,-1],[1,-5],[0,-12],[2,-12],[2,-5],[0,-2],[1,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-3,2],[-5,2],[-2,2],[-1,2],[0,7],[0,2],[0,2],[1,0],[1,-1],[0,-2],[0,-3],[0,-3],[2,-2],[5,-3],[1,0],[2,0],[1,0],[1,0],[0,2],[0,2],[0,3],[-2,3],[-1,2],[0,1],[0,1],[0,2],[-1,5],[0,6],[0,3],[0,4],[-1,4]],[[5442,53259],[-2,4],[1,3],[3,1],[3,-1],[3,-5],[-1,-4],[-3,-1],[-4,3]],[[96694,53786],[1,-2],[3,-1],[1,2],[2,4],[0,6],[0,5],[-1,4],[2,-7],[-1,-10],[-3,-6],[-4,5]],[[97700,54083],[1,-2],[1,-3],[3,-6],[1,-2],[-2,0],[-3,0],[-1,2],[-1,5],[1,6]],[[97752,54674],[2,3],[1,4],[0,4],[-2,4],[4,-4],[-1,-8],[-4,-7],[-5,-1],[1,2],[1,1],[3,2]],[[96856,53178],[14,10],[2,5],[7,18],[-3,-14],[-4,-12],[-7,-6],[-9,-1]],[[97107,53905],[6,7],[2,3],[2,6],[1,7],[3,18],[2,28],[3,15],[5,11],[7,9],[5,10],[5,12],[-4,-22],[-16,-22],[-3,-23],[-2,-18],[-3,-24],[-6,-18],[-7,1]],[[97785,54055],[-6,1],[-7,-2],[-6,0],[-4,9],[1,-1],[2,-1],[2,-1],[9,-1],[9,-4]],[[97709,54599],[-7,2],[-12,18],[-8,4],[-12,-4],[-6,5],[-5,19],[3,-8],[3,-5],[4,-3],[18,2],[4,-2],[12,-21],[6,-7]],[[97608,54680],[-7,-9],[-20,-6],[-9,-10],[-8,0],[-9,3],[-39,37],[-7,12],[4,9],[0,-5],[1,-4],[1,-7],[47,-40],[3,0],[7,3],[6,4],[30,13]],[[96876,54798],[20,0],[-4,-10],[-6,1],[-13,6],[-14,6],[-6,4],[1,9],[4,-8],[7,-4],[6,-4],[5,0]],[[96826,54854],[-4,6],[-2,10],[0,12],[2,8],[1,-8],[2,-19],[1,-9]],[[96361,57086],[-2,-10],[-6,-6],[-6,0],[-5,8],[10,2],[9,6]],[[96975,53809],[1,6],[1,-1],[-2,-5]],[[97719,54648],[1,1],[0,2],[1,1],[1,0],[-2,-7],[-3,-7],[-2,-6],[-4,-5],[2,5],[6,16]],[[96934,54955],[0,4],[1,2],[-2,5],[-3,2],[-4,0],[2,1],[2,1],[2,0],[2,-2],[1,-5],[0,-2],[0,-3],[0,-5],[-1,2]],[[96500,55396],[1,-7],[-2,2],[1,5]],[[96591,55637],[0,3],[0,3],[1,2],[2,3],[0,-4],[-1,-2],[-2,-5]],[[97458,55739],[-2,-7],[-2,1],[0,1],[1,6],[1,1],[1,0],[1,-2]],[[97288,56066],[0,10],[1,0],[1,-5],[-2,-5]],[[97464,56554],[0,8],[1,0],[0,-7],[-1,-1]],[[95982,57359],[1,0],[1,-1],[1,-3],[1,-4],[-4,8]],[[95911,57396],[0,8],[1,1],[1,-3],[-2,-6]],[[96946,59122],[1,0],[-1,-4],[-3,-6],[-3,-4],[3,7],[3,7]],[[33055,56806],[-6,2],[-3,-11],[-1,-18],[0,-17],[5,-36],[1,-18],[-8,-14],[1,-17],[1,-11],[2,-32],[2,-8],[2,-8],[5,-15],[10,-16],[-8,-18],[-4,-31],[0,-34],[2,-30],[-6,2],[-6,-4],[-7,-8],[-5,-9],[-4,-7],[-7,-5],[-12,-6],[-3,-1],[-4,0],[-17,5],[-6,-1],[-18,-7],[-22,4],[-24,-4],[-11,4],[-3,-1],[-7,-7],[-4,-1],[-5,-3],[-3,0],[-4,1],[-2,3],[-3,4],[-3,4],[-5,3],[-6,2],[-24,0],[-7,-2],[-5,-5],[-4,-7],[-5,-7],[-6,-4],[-5,0],[-6,8],[3,8],[9,10],[1,2],[3,2],[9,4],[2,4],[3,9],[4,7],[5,4],[21,14],[2,1],[10,11],[9,15],[0,18],[3,4],[4,0],[15,-5],[11,1],[4,0],[3,3],[3,6],[4,8],[2,8],[1,12],[0,4],[-1,6],[-1,9],[-1,11],[-1,4],[-2,4],[-1,3],[0,3],[1,1],[1,0],[0,2],[0,4],[-2,12],[-1,4],[0,9],[1,11],[4,19],[2,22],[0,23],[-3,22],[-7,18],[2,4],[-11,15],[-5,6],[-8,7],[-6,3],[-14,2],[-2,1],[-1,3],[-2,7],[14,21],[4,4],[11,-2],[13,6],[7,0],[1,0],[4,3],[2,6],[1,2],[2,-7],[2,0],[0,2],[0,6],[2,0],[0,-3],[0,-1],[1,-2],[1,-2],[-2,-4],[2,1],[1,3],[2,2],[0,2],[6,0],[2,4],[6,13],[1,3],[4,1],[1,0],[15,-4],[32,0],[3,4],[4,7],[16,4],[5,5],[36,8],[12,-4],[-12,-44],[-14,-38]],[[33186,57192],[2,-4],[0,-15],[-1,-18],[-2,-13],[-3,1],[-2,0],[-2,-8],[-2,-1],[-3,1],[-3,0],[0,-2],[-4,-12],[-1,0],[-7,-9],[-2,-3],[-3,-4],[-3,0],[-4,1],[-2,1],[-17,-18],[-5,-3],[-7,-13],[-5,-4],[-2,9],[-4,-4],[-4,1],[-2,6],[0,9],[3,3],[3,1],[4,3],[2,8],[2,7],[24,33],[5,10],[3,5],[3,3],[9,7],[8,4],[3,4],[4,1],[4,-5],[2,0],[6,13],[3,5]],[[32885,57703],[2,-10],[1,-8],[-1,-30],[-1,-4],[-1,-4],[-2,-9],[0,-4],[2,-10],[-1,-2],[-1,-1],[-1,-4],[-1,-4],[0,-5],[-1,-6],[-12,-13],[0,5],[-2,-3],[-2,-3],[-1,-4],[-1,-6],[-2,1],[-3,2],[-2,2],[-2,3],[-3,-6],[-5,-2],[-5,1],[-4,2],[9,13],[2,4],[1,8],[-1,7],[-1,7],[-1,8],[2,13],[5,24],[1,10],[16,41],[6,2],[6,-2],[6,-7],[0,-2],[-2,-4]],[[32936,57845],[-5,4],[-4,-3],[-5,-5],[-5,-4],[1,4],[2,9],[1,4],[-1,0],[-3,0],[1,2],[1,6],[6,-4],[4,10],[3,14],[4,8],[2,-10],[0,-10],[-1,-12],[-1,-13]],[[33001,58190],[-4,-8],[-5,-18],[-4,-6],[2,0],[-2,-4],[-2,4],[-2,3],[-3,1],[-3,0],[0,4],[4,-3],[7,3],[0,5],[-2,4],[-1,3],[2,5],[8,10],[3,6],[1,-3],[0,-2],[0,-2],[1,-2]],[[33009,58255],[-5,-8],[-7,7],[-17,25],[-2,17],[0,20],[4,16],[-1,2],[-1,6],[8,3],[3,13],[2,17],[3,14],[4,5],[3,2],[3,0],[7,-2],[2,-2],[1,-4],[2,-9],[3,-26],[0,-36],[-4,-36],[-8,-24]],[[32933,57936],[3,-4],[1,-5],[-2,-3],[-3,-1],[-3,0],[-2,4],[2,3],[0,2],[-1,2],[1,2],[2,1],[2,-1]],[[32967,58011],[0,-2],[1,-6],[-2,-4],[-1,-3],[-1,-6],[-2,-3],[-2,0],[-3,2],[1,2],[3,1],[1,4],[0,5],[0,6],[3,3],[2,1]],[[33002,58090],[2,9],[3,-1],[-3,-11],[-1,-4],[-1,0],[0,7]],[[33492,58263],[-1,-20],[-7,-15],[-5,-8],[-4,-5],[-6,-13],[-2,0],[-2,0],[-1,-1],[-2,-2],[-3,10],[-5,6],[-6,3],[-4,0],[-2,1],[-4,5],[-3,13],[-4,26],[-2,80],[1,9],[2,8],[4,9],[5,4],[5,-6],[3,-12],[2,-6],[2,-9],[5,-24],[4,-11],[5,-8],[7,-11],[4,-5],[6,-4],[5,-5],[3,-9]],[[33087,58767],[1,-18],[0,-15],[-4,-46],[1,-26],[-3,-29],[-1,-4],[-1,-1],[-3,-2],[-2,-2],[-1,-5],[-2,-23],[-2,-3],[-1,-1],[-1,0],[-5,14],[-21,17],[-5,11],[-1,4],[-1,3],[-1,5],[1,9],[1,6],[-1,12],[0,4],[-1,3],[0,3],[-1,6],[1,7],[3,11],[0,5],[2,8],[6,20],[3,13],[7,21],[1,3],[3,3],[1,3],[1,3],[1,11],[1,4],[7,20],[4,6],[5,-4],[-1,-10],[2,-5],[3,-4],[2,-5],[1,-7],[1,-25]],[[32954,59472],[-3,2],[0,5],[1,14],[0,18],[0,2],[-2,7],[-3,8],[-1,7],[0,15],[-2,11],[-4,17],[0,4],[-1,11],[-1,6],[-6,13],[-1,5],[-1,5],[-1,6],[-2,5],[-1,2],[-2,3],[-1,7],[0,15],[-1,4],[-1,3],[-2,3],[0,6],[2,4],[4,6],[2,6],[-2,1],[-3,3],[-3,0],[3,7],[3,25],[5,0],[4,0],[3,-3],[3,-5],[5,-14],[3,-5],[5,5],[3,1],[14,-11],[0,-4],[2,-9],[3,-10],[1,-5],[5,-13],[0,-1],[3,-21],[0,-22],[-2,-17],[1,0],[2,-2],[1,-2],[-2,-21],[1,-19],[0,-5],[-1,-23],[-6,-21],[-2,-3],[-1,-1],[-1,0],[-3,0],[-2,1],[-2,-1],[-2,-3],[-1,-8],[-4,-3],[-1,-4],[0,-1],[-1,-4],[-4,-2]],[[2908,60395],[3,2],[1,0],[-2,-3],[-1,-1],[-2,-1],[-1,0],[0,1],[2,1],[0,1]],[[5547,50247],[6,2],[-1,-6],[-3,-4],[-2,8]],[[976,50586],[1,0],[1,1],[1,0],[0,-3],[-1,-2],[-1,1],[0,2],[-1,1]],[[983,50603],[1,-4],[-2,2],[1,2]],[[934,50938],[-1,7],[0,1],[1,2],[0,-3],[0,-7]],[[96282,61889],[3,0],[2,2],[1,5],[-2,7],[4,-5],[1,-8],[-2,-5],[-7,4]],[[742,67177],[2,-2],[0,-1],[-1,-1],[-3,0],[2,4]],[[734,67179],[-2,-4],[-2,-3],[-2,-3],[-3,0],[1,5],[2,4],[3,1],[3,0]],[[2908,60379],[2,0],[-5,-6],[-2,-1],[0,2],[0,2],[5,3]],[[2913,60386],[0,1],[0,-1]],[[29160,61377],[1,-1],[2,0],[1,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-1,0],[0,-4],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,0],[-1,3],[0,3],[2,0]],[[4983,53956],[1,-3],[-1,-5],[-3,-2],[-5,1],[-1,2],[1,0],[1,2],[3,4],[-1,0],[-1,-1],[-1,0],[-2,1],[-2,1],[-1,1],[1,1],[8,0],[3,-2]],[[4889,54287],[4,0],[0,-9],[-4,0],[0,9]],[[32737,60386],[-1,-4],[-1,-8],[1,-2],[0,-3],[1,-4],[1,-4],[0,-3],[-1,-5],[-1,-4],[-2,-3],[-3,-1],[-14,8],[-3,23],[3,29],[4,25],[4,-3],[2,-1],[2,1],[-1,-11],[2,-11],[4,-10],[3,-9]],[[32810,60566],[1,7],[-1,6],[0,5],[5,5],[-2,1],[-6,7],[3,6],[5,4],[6,4],[-2,8],[0,7],[3,6],[4,5],[9,-2],[3,-11],[2,-12],[5,-7],[0,5],[1,4],[3,7],[1,-5],[2,-3],[3,-1],[3,1],[-1,-3],[-1,-2],[-1,-2],[-2,-1],[1,-9],[3,-4],[3,1],[4,4],[2,0],[2,-3],[1,-3],[1,-7],[-2,1],[-4,-1],[-2,0],[3,-6],[2,-3],[2,-4],[-1,-7],[-3,-10],[-3,0],[-4,4],[-5,2],[-2,-2],[0,-5],[2,-15],[-3,-7],[-4,4],[-5,9],[-2,4],[-1,-1],[-6,-5],[-4,-2],[-6,0],[-3,2],[-9,11],[-2,5],[2,8]],[[32822,60889],[-3,-4],[-2,8],[0,24],[-2,11],[-1,9],[-2,10],[1,11],[1,-2],[0,-2],[1,-4],[1,-7],[5,-11],[1,-7],[0,-8],[-1,-7],[0,-5],[3,-4],[2,11],[0,15],[-2,13],[-5,6],[-2,7],[2,11],[4,4],[5,-14],[-2,-3],[-2,-1],[4,-3],[6,4],[3,-1],[5,-7],[4,-10],[3,-10],[2,-10],[2,-17],[0,-10],[0,-9],[-2,-12],[-2,-2],[-3,1],[-5,-4],[-2,11],[-5,8],[-12,10]],[[32611,60658],[6,-1],[5,-3],[4,-8],[2,-13],[0,-5],[0,-14],[0,-5],[-2,-7],[-1,-3],[-5,-2],[-13,2],[-4,22],[3,25],[5,12]],[[32597,60695],[4,-5],[3,-9],[0,-10],[-6,-5],[-4,5],[-3,22],[-5,7],[-4,9],[-2,1],[-9,-1],[-4,1],[-9,8],[-12,15],[-8,19],[2,19],[2,2],[0,1],[1,1],[1,0],[4,3],[1,2],[1,4],[27,-34],[7,-15],[5,-25],[3,-11],[5,-4]],[[32067,60982],[-8,-1],[-6,-4],[-11,-11],[-6,-4],[-58,-17],[-5,-3],[2,10],[1,8],[-1,25],[1,7],[2,5],[11,-7],[6,6],[6,8],[7,3],[0,-2],[11,-14],[6,-5],[3,-3],[2,-5],[7,11],[10,5],[11,-2],[9,-6],[0,-4]],[[32027,61333],[-2,-2],[3,-8],[-2,-14],[-9,10],[-14,-3],[-4,8],[4,13],[5,4],[5,3],[-1,4],[2,3],[10,-5],[4,-2],[4,-4],[5,-5],[1,-6],[-3,-1],[-8,5]],[[31980,61316],[-2,-6],[-9,7],[-3,4],[-3,10],[-1,-6],[-2,4],[-6,-2],[-5,1],[-3,8],[-9,-6],[-4,9],[8,9],[7,4],[10,-1],[4,-6],[3,1],[-5,7],[-2,5],[6,-3],[10,-12],[10,-12],[5,-13],[-4,-1],[-2,1],[-3,-2]],[[32544,61060],[-3,5],[-3,9],[-1,8],[0,6],[2,-3],[19,-6],[-2,-6],[-4,-7],[-3,-6],[-5,0]],[[31151,61197],[3,-6],[0,-4],[-1,-4],[-3,-10],[-1,-3],[-1,-2],[-1,-5],[-1,-2],[-3,0],[-2,0],[-1,2],[-2,5],[-8,9],[-2,8],[2,9],[3,3],[16,1],[2,-1]],[[31848,61197],[-3,5],[-4,-2],[-5,-4],[-22,-11],[-4,-4],[-6,4],[-9,-2],[-8,2],[-4,17],[4,0],[2,0],[5,1],[6,4],[5,6],[4,7],[2,3],[22,7],[4,-1],[10,-7],[14,-1],[4,-3],[3,-7],[-3,-2],[-7,1],[-2,-2],[-5,-7],[-2,-4],[-1,0]],[[31867,61295],[-4,12],[-12,22],[0,2],[7,0],[8,-3],[7,-7],[3,-10],[-1,0],[-3,0],[2,-4],[-3,0],[-2,1],[-2,3],[0,4],[-2,0],[2,-10],[1,-4],[-1,-6]],[[31769,61295],[-1,-7],[2,-5],[3,-2],[3,4],[0,-5],[0,-5],[4,-9],[-3,-4],[-1,-5],[-2,0],[-3,8],[-3,0],[-1,-6],[3,-8],[-3,-4],[-3,1],[-5,5],[-5,-3],[-5,-5],[-5,-3],[-5,-4],[-5,-10],[-9,-31],[-1,-16],[-4,-10],[-1,-2],[-7,-2],[-1,-4],[2,-18],[-5,-10],[-10,-13],[-15,-10],[-6,0],[-6,3],[-6,1],[-3,-1],[-9,-7],[-2,0],[-8,0],[-6,-3],[-16,-17],[-3,-1],[-3,0],[-3,0],[-2,-3],[-2,4],[0,1],[0,3],[3,2],[1,3],[-2,3],[-2,4],[-6,-10],[-3,-2],[-4,2],[-7,2],[-3,1],[-1,4],[-1,4],[-2,3],[-3,4],[-3,1],[-4,0],[-7,-4],[-8,-11],[-5,2],[-6,8],[-4,11],[-5,6],[-5,-2],[-4,-1],[-3,-3],[-4,-2],[-9,-1],[-3,-3],[-3,-4],[-3,-1],[-5,5],[-2,-3],[-2,-2],[-1,7],[-5,1],[-12,-3],[-2,1],[-8,6],[-11,0],[0,8],[-3,3],[-3,-2],[-4,-4],[0,-5],[4,0],[-3,-9],[-6,-6],[-6,-3],[-6,-2],[-9,0],[-4,-1],[-3,1],[-1,0],[-1,-3],[-1,-4],[0,-5],[-5,1],[-4,6],[-6,13],[-6,1],[-6,2],[-7,0],[-4,2],[-4,-6],[-4,-5],[-5,-2],[-3,1],[-9,2],[-7,6],[-3,-4],[2,-14],[-3,0],[-4,13],[-1,6],[0,16],[7,6],[2,3],[2,1],[2,2],[1,5],[-1,3],[-3,3],[-3,-2],[-4,4],[0,11],[2,5],[3,4],[-1,6],[-1,10],[3,6],[0,19],[2,22],[2,5],[3,4],[1,7],[-1,6],[-4,7],[-4,28],[-3,11],[-6,3],[-5,2],[-5,18],[-2,8],[-3,11],[1,4],[8,5],[6,5],[5,5],[4,5],[7,11],[1,13],[-3,10],[-1,15],[5,14],[14,8],[15,-1],[10,-9],[29,-12],[29,8],[4,-1],[11,-8],[4,0],[11,5],[15,3],[8,-2],[7,-6],[5,2],[17,0],[12,-7],[23,10],[22,-14],[13,8],[14,-10],[3,5],[4,-1],[2,-5],[1,-4],[2,-2],[3,3],[2,6],[3,-2],[-1,-7],[6,-6],[0,-6],[2,-7],[4,-1],[10,6],[0,4],[-5,1],[-5,6],[-4,8],[-3,7],[18,-12],[4,-2],[4,-2],[4,-2],[4,4],[2,8],[7,-3],[12,-7],[5,6],[3,-2],[4,-5],[8,-4],[5,-6],[5,-10],[3,3],[3,5],[1,-1],[0,-3],[-1,-3],[-1,-5],[2,1],[3,3],[2,2],[4,-14],[5,-5],[4,5],[7,-12],[10,-2],[5,7],[2,4],[2,3],[3,-1],[0,-4],[-3,-29],[-1,-25],[1,-7]],[[32498,61291],[6,2],[3,0],[0,-4],[-5,-19],[-2,-6],[-4,-4],[-7,-4],[-17,-22],[-1,2],[-2,3],[-1,3],[-6,-10],[-4,-2],[-5,0],[7,17],[2,3],[4,3],[7,2],[3,3],[5,12],[3,10],[5,8],[9,3]],[[32381,61481],[0,5],[1,-1],[-1,-4]],[[32045,61370],[-2,-7],[-4,-7],[-5,1],[-4,0],[-6,1],[3,7],[5,1],[3,8],[2,7],[1,9],[6,7],[4,-3],[6,3],[3,-2],[9,3],[9,-2],[3,-6],[-1,-3],[-3,1],[-4,2],[-4,-4],[-1,-4],[-3,-4],[-2,-2],[-2,1],[-2,2],[-2,1],[-2,0],[0,-2],[-3,-5],[-2,-4],[-2,1]],[[32116,61414],[-2,-5],[-5,-9],[-6,-7],[-4,-1],[7,19],[2,10],[-1,12],[1,0],[1,-1],[0,-2],[1,-1],[16,1],[5,3],[-2,-9],[-5,-6],[-5,-3],[-3,-1]],[[32128,61558],[-12,2],[-5,3],[-3,8],[25,0],[10,-7],[4,-20],[-3,1],[-16,13]],[[32064,61342],[0,-5],[0,-8],[-1,-1],[-1,5],[-3,3],[-4,2],[-1,2],[3,1],[2,1],[1,0],[1,1],[3,-1]],[[32019,61398],[1,-2],[1,-4],[-2,-3],[-8,2],[-4,0],[1,5],[8,3],[3,-1]],[[32074,61422],[1,-1],[0,-6],[0,-3],[-1,-6],[-1,-3],[-1,2],[1,4],[-1,6],[1,5],[1,2]],[[28815,61137],[2,-10],[2,-11],[5,-14],[5,-11],[7,-12],[-3,-4],[-14,-8],[-10,-11],[-6,-3],[-5,2],[2,3],[1,2],[1,7],[-5,-3],[-4,-14],[-5,-3],[-5,3],[-5,4],[-5,3],[-8,-6],[-22,-4],[-15,5],[-2,-1],[-3,0],[-2,0],[-3,4],[-1,6],[-1,6],[0,6],[-3,3],[-2,1],[-1,4],[-2,3],[-1,4],[-9,4],[-2,2],[-4,4],[-6,-1],[-10,-5],[-4,-1],[-15,1],[0,4],[31,4],[-2,3],[-1,3],[-4,2],[-8,0],[-6,0],[-6,7],[-5,6],[-3,4],[-1,-6],[-2,-6],[-3,-8],[-1,-5],[-4,1],[-1,-4],[-1,-14],[-5,-36],[-4,-10],[-4,-6],[-4,0],[-2,2],[-2,3],[-3,3],[-16,0],[0,4],[6,4],[-3,5],[-4,11],[-3,4],[-3,3],[-8,2],[-7,-5],[-7,-8],[-4,-18],[-1,-6],[2,-16],[-2,-2],[-4,-4],[-2,-2],[1,-3],[1,-6],[0,-4],[-3,3],[-3,0],[-3,-2],[-2,-4],[5,-7],[5,-2],[5,1],[6,4],[3,-23],[-1,-10],[-7,-4],[-6,0],[-5,3],[-5,5],[-24,44],[-5,12],[-21,25],[-6,5],[-7,1],[-5,-4],[-6,-8],[-6,-1],[-12,7],[-12,4],[-37,-4],[-2,1],[-6,8],[-10,9],[-2,4],[-1,5],[-3,15],[-1,5],[-1,4],[-5,3],[-1,3],[-1,12],[1,15],[-2,13],[-7,5],[-19,0],[-5,4],[-6,31],[-3,6],[-2,3],[-3,3],[-2,1],[-2,4],[-1,7],[-2,14],[-5,21],[-7,8],[-20,-1],[-13,4],[-4,0],[-3,-4],[-2,-3],[-2,1],[-7,6],[-4,2],[-9,5],[-5,1],[-5,3],[-4,6],[-4,9],[-1,11],[2,5],[4,6],[2,5],[0,7],[0,18],[1,5],[2,7],[0,5],[1,2],[4,1],[3,3],[2,7],[3,5],[5,-3],[2,17],[9,16],[10,6],[7,-11],[4,10],[5,0],[5,-4],[6,-2],[18,4],[6,0],[3,-2],[2,-2],[3,-1],[3,1],[3,4],[0,4],[0,4],[2,6],[6,17],[3,5],[5,5],[11,3],[13,0],[23,-10],[19,-9],[27,-1],[12,-6],[19,-3],[8,-4],[5,-7],[9,5],[14,0],[15,-3],[10,-6],[1,-2],[1,-8],[2,-2],[1,0],[2,1],[1,2],[0,1],[12,-4],[2,-2],[4,-8],[2,-2],[9,-1],[9,3],[5,2],[4,-2],[6,-5],[3,-1],[16,1],[3,4],[5,1],[4,-1],[3,-1],[2,-5],[-1,-7],[0,-8],[3,-5],[10,-13],[9,-10],[1,-6],[3,-16],[1,-5],[3,-3],[5,-3],[15,-2],[4,-2],[4,-5],[6,-10],[4,-6],[5,-3],[9,1],[5,-7],[1,0],[1,-3],[2,-2],[2,-2],[21,0],[2,-1],[2,-9],[1,-2],[20,-8],[11,-8],[1,-12],[8,-16],[6,-18],[9,-39]],[[27462,61932],[5,-1],[5,-4],[3,-7],[1,-15],[-6,-8],[-8,-3],[-9,5],[-7,-2],[-6,-2],[-5,-2],[-4,-6],[-5,-8],[-3,0],[-18,4],[-5,1],[-5,-1],[-3,-5],[-3,6],[1,9],[1,4],[1,7],[1,10],[0,8],[-2,8],[-4,7],[-3,4],[1,7],[1,5],[4,3],[5,-4],[0,-8],[2,-10],[3,-11],[-1,-12],[4,-10],[7,0],[5,4],[1,7],[2,8],[2,-2],[4,-2],[0,2],[-1,2],[-1,4],[2,-4],[-1,2],[0,2],[0,2],[1,2],[-1,2],[-1,3],[-2,7],[5,-1],[10,-9],[6,-2],[15,4],[6,0]],[[27767,62139],[8,0],[8,6],[4,-6],[-1,-1],[-2,-3],[-8,-4],[-20,-22],[-10,3],[4,11],[5,5],[5,9],[7,2]],[[27813,62139],[19,17],[10,11],[6,3],[4,-3],[1,-9],[-13,-14],[-22,-13],[-11,-7],[6,15]],[[32034,69651],[8,-12],[-2,-6],[0,-5],[-2,2],[-1,3],[-4,2],[-1,-3],[-2,4],[-5,-7],[1,-5],[3,-2],[5,-3],[-6,-5],[-5,-7],[-7,-9],[-4,-4],[-2,-6],[-6,-9],[-7,-7],[-7,-5],[-4,1],[-3,0],[-5,5],[-1,8],[-1,7],[2,-2],[0,4],[1,6],[-1,5],[2,-1],[1,3],[1,-3],[2,-3],[-3,-4],[-1,-7],[0,-2],[1,-2],[5,-1],[0,-2],[-4,1],[0,-4],[2,-5],[3,0],[4,3],[1,4],[2,1],[5,5],[6,7],[1,2],[-5,-1],[-3,2],[-2,7],[1,2],[8,-3],[5,5],[3,1],[3,6],[1,0],[5,0],[2,4],[2,4],[-2,3],[-3,-2],[-3,-3],[0,-3],[-2,0],[0,3],[1,6],[4,5],[3,7],[4,6],[6,9]],[[31995,69592],[1,0],[2,-2],[2,-2],[-1,-1],[-2,1],[-3,-1],[-3,0],[0,4],[1,1],[2,-1],[1,1]],[[70481,19016],[8,-4],[7,-1],[7,1],[-42,-17],[-15,-19],[-8,-5],[-20,-3],[-9,2],[-10,10],[-2,4],[-8,16],[-9,29],[-2,9],[2,6],[-3,3],[-2,5],[0,4],[3,4],[-5,5],[-5,2],[-16,2],[-4,4],[-4,8],[-1,12],[9,4],[8,8],[9,-14],[2,0],[2,-7],[4,-7],[5,-5],[2,3],[1,9],[3,4],[4,-1],[4,-7],[-4,-3],[3,-10],[6,-1],[7,4],[5,7],[5,-4],[16,-1],[6,-6],[3,-4],[7,-3],[3,-3],[2,-4],[4,-10],[2,-2],[7,-11],[3,-6],[10,-7]],[[47242,26575],[6,-10],[2,-4],[1,-9],[-8,-7],[-12,9],[-20,27],[0,4],[2,10],[3,4],[3,2],[13,1],[4,-1],[2,-5],[3,-16],[1,-5]],[[46581,28516],[3,7],[1,2],[13,-2],[5,-6],[4,-7],[6,-6],[-1,-5],[-1,-3],[-2,-2],[-2,-2],[-9,-16],[-5,-7],[-4,0],[-7,14],[-9,13],[3,6],[5,14]],[[48410,41048],[4,1],[8,0],[3,3],[3,-10],[2,-9],[0,-9],[-1,-8],[-2,-10],[-4,-5],[-3,-4],[-4,-6],[-1,4],[-1,1],[-1,2],[-1,2],[-4,-9],[-5,-5],[-5,-1],[-4,4],[-3,8],[1,6],[2,7],[1,8],[2,9],[4,9],[5,7],[4,5]],[[46012,45800],[2,-9],[10,-16],[5,-11],[-3,-4],[-7,-6],[-3,-4],[-3,-3],[-7,-1],[-4,-2],[-4,3],[-2,7],[0,7],[-1,7],[3,9],[4,20],[4,7],[1,-4],[1,-3],[1,0],[3,3]],[[66054,38493],[-1,-14],[-1,-16],[-3,-18],[-1,-9],[2,-9],[-7,-5],[-8,-12],[-4,-14],[2,-10],[0,-4],[1,-5],[1,-3],[-1,-6],[-2,-1],[-2,0],[-1,-1],[-4,-14],[-2,-6],[-4,-5],[-23,-15],[-23,-7],[-9,1],[-13,9],[-7,1],[-6,-5],[-16,29],[-4,8],[-1,8],[4,4],[7,-3],[4,1],[2,8],[1,17],[0,6],[-3,3],[2,14],[0,33],[2,18],[2,10],[6,26],[2,4],[1,2],[6,11],[3,2],[6,4],[2,2],[5,10],[1,11],[0,11],[4,16],[4,21],[1,6],[2,4],[7,12],[2,2],[4,0],[1,2],[2,4],[1,5],[3,2],[5,-2],[12,-7],[3,-4],[2,-6],[-2,-10],[1,-6],[2,-6],[2,-10],[3,-8],[1,-7],[1,-4],[1,0],[3,1],[1,-1],[4,-5],[0,-4],[-1,-19],[3,-6],[2,-5],[3,-16],[5,-13],[2,-7]],[[65701,44352],[0,2],[0,1],[1,1],[2,0],[2,-14],[7,-23],[0,-12],[-6,14],[-5,17],[-1,8],[0,6]],[[67632,38816],[5,-2],[-2,-12],[-5,-13],[-9,-6],[-6,-2],[-4,-5],[-5,-6],[-5,-7],[-8,17],[-1,1],[0,11],[3,5],[3,3],[9,12],[9,6],[10,3],[6,-5]],[[62163,43181],[2,-2],[15,-21],[3,-10],[-1,-5],[-4,-1],[-7,0],[-18,8],[-20,1],[-4,3],[-2,5],[1,10],[-1,6],[-3,4],[-2,3],[-2,3],[-1,8],[0,21],[1,9],[5,-4],[4,-4],[12,-5],[5,-3],[14,-20],[3,-6]],[[62369,43225],[-1,-72],[-1,-11],[-3,-4],[-3,2],[-3,5],[-2,6],[-1,5],[0,8],[-2,4],[-20,29],[-3,8],[-1,9],[-5,4],[-11,5],[-17,19],[-2,4],[-11,13],[-4,9],[4,0],[4,-2],[7,-6],[5,-3],[9,-2],[3,-3],[2,2],[3,3],[1,3],[8,-4],[8,14],[4,22],[-1,20],[3,2],[4,5],[3,2],[1,1],[1,2],[1,1],[2,0],[2,-2],[2,-9],[1,-2],[12,-79],[1,-8]],[[62073,43469],[1,-6],[2,-7],[6,-18],[0,-5],[-3,-11],[-1,-6],[0,-4],[-1,-3],[-2,-3],[-3,-2],[-3,-1],[-4,1],[-1,4],[-2,7],[-15,31],[-5,3],[-11,2],[-3,1],[-4,4],[-5,9],[-2,6],[-1,5],[0,5],[-2,6],[-7,15],[-3,9],[-1,15],[1,5],[2,7],[6,19],[0,6],[-1,6],[0,7],[3,105],[0,7],[-2,6],[3,11],[3,14],[3,12],[3,0],[12,8],[7,2],[5,-4],[3,-9],[3,-10],[1,-10],[-6,-111],[2,-24],[12,-37],[5,-24],[0,-6],[0,-13],[0,-6],[1,-4],[2,-4],[2,-4],[0,-6]],[[51855,50711],[7,-9],[6,-15],[5,-17],[3,-16],[2,-16],[-1,-9],[-1,-11],[-2,-12],[-2,-7],[-7,-14],[-4,-8],[-7,-28],[-2,-2],[-3,-1],[-1,-3],[1,-10],[-2,-2],[-3,-2],[-2,-1],[-4,-10],[-1,-2],[-9,-1],[-1,1],[-3,-21],[-3,-9],[-4,10],[-2,-11],[-3,-1],[-2,6],[-2,10],[0,1],[2,10],[0,5],[-1,6],[-1,3],[-1,1],[-1,2],[-10,67],[-2,6],[2,5],[0,6],[0,12],[1,4],[5,14],[1,5],[1,4],[0,4],[10,21],[2,2],[11,8],[8,15],[9,12],[11,-2]],[[52072,51461],[-1,-2],[-3,-3],[-3,-4],[-2,-6],[4,-2],[4,-4],[1,-5],[-2,-2],[-4,-2],[-1,-5],[0,-13],[-1,-12],[-2,-6],[-2,-2],[-3,-2],[-1,-3],[0,-5],[-1,-7],[0,3],[-1,4],[-1,2],[-1,-2],[-2,-3],[-3,10],[-4,3],[-4,0],[-3,4],[-1,18],[1,11],[2,-1],[5,4],[2,6],[1,7],[0,10],[1,11],[4,9],[5,4],[5,-2],[8,-2],[3,-2],[0,-9]],[[43137,59294],[3,-6],[2,-8],[1,-10],[0,-10],[-1,-10],[-2,-4],[-3,-3],[-1,-6],[-3,0],[-2,6],[-5,7],[-2,7],[-2,-4],[1,6],[1,5],[-1,5],[-1,5],[4,0],[-1,11],[3,4],[5,1],[4,4]],[[43251,59304],[-2,-6],[1,-7],[1,-7],[1,-6],[-2,-6],[-10,-19],[-12,-9],[-10,3],[-10,10],[-16,28],[-4,11],[-1,12],[1,12],[4,15],[5,12],[7,10],[17,18],[5,4],[6,1],[6,-3],[3,-7],[3,-9],[4,-20],[3,-29],[0,-8]],[[43484,59367],[0,-3],[1,-2],[1,-2],[2,-1],[-2,-9],[-2,-5],[-6,-10],[2,-4],[-3,-10],[-1,-9],[-3,-7],[-4,-3],[-2,-1],[-4,-2],[-2,-1],[-2,1],[-3,2],[-2,1],[-9,0],[-8,2],[-7,5],[-7,6],[-11,19],[-4,10],[0,20],[-3,4],[-5,3],[-4,4],[0,3],[-2,13],[-1,2],[-1,3],[-1,3],[0,5],[0,4],[4,15],[1,5],[0,8],[-4,20],[3,2],[2,4],[1,6],[0,7],[1,6],[1,4],[1,3],[1,3],[-1,10],[-2,12],[-3,9],[-4,4],[2,1],[6,6],[-4,4],[-2,0],[8,13],[2,0],[0,-5],[1,-2],[0,-2],[1,-4],[5,7],[4,-5],[2,-11],[-4,-7],[4,-11],[4,-6],[10,-11],[-3,-4],[5,-2],[3,-4],[4,-15],[8,-19],[5,-6],[4,1],[1,-3],[1,-2],[0,-1],[2,-2],[-1,-1],[2,-3],[2,-4],[1,0],[3,1],[1,-1],[0,-2],[-1,-4],[1,-2],[11,-45],[1,-2],[1,0],[1,-2],[1,-4]],[[43575,59537],[2,-7],[0,-9],[0,-16],[3,-34],[0,-16],[-5,-15],[-1,-1],[-5,-2],[-1,-1],[-1,-3],[-2,-7],[-1,-2],[-4,-1],[-4,2],[-6,7],[-6,10],[-3,7],[-2,7],[1,8],[2,7],[1,7],[-2,7],[4,5],[2,7],[-2,7],[-4,1],[1,8],[6,10],[4,14],[-1,2],[0,1],[-1,2],[4,3],[4,5],[0,-2],[0,-6],[2,4],[1,1],[1,3],[2,-4],[-2,-4],[4,-4],[6,3],[3,-4]],[[43699,60012],[1,-1],[2,-5],[1,-7],[-1,-3],[-1,-2],[-1,-6],[0,-5],[-5,-7],[-15,-25],[-10,-11],[-5,-3],[-16,-2],[-3,1],[-3,2],[-4,7],[-3,2],[-10,10],[-4,6],[-1,13],[0,11],[1,11],[3,8],[4,3],[6,10],[-3,52],[2,19],[1,-5],[1,-3],[4,-5],[5,-5],[7,-5],[6,-1],[3,5],[2,9],[5,2],[16,-8],[3,-3],[3,-4],[1,-4],[2,-12],[1,-2],[5,-4],[1,-10],[-1,-23]],[[43314,60309],[6,-9],[3,-4],[1,3],[0,-21],[-3,-1],[-20,-1],[-21,20],[-12,6],[-11,-9],[-4,-10],[-8,-30],[-2,-22],[-3,7],[-4,22],[-1,5],[-2,4],[-2,5],[0,8],[0,6],[-1,5],[-2,3],[-2,1],[-7,4],[-4,10],[-2,13],[3,13],[16,12],[3,-1],[3,-3],[4,-4],[6,-12],[4,-4],[2,0],[16,5],[3,-1],[10,-10],[2,-1],[23,-4],[6,-5]],[[43630,60297],[-3,45],[-4,17],[-6,-6],[-1,9],[-1,11],[1,11],[3,6],[0,4],[-4,2],[-1,6],[-1,8],[0,18],[6,9],[13,18],[2,-5],[5,-9],[1,-5],[-1,-2],[-1,-7],[-2,-6],[0,-2],[1,-1],[1,-2],[-1,-35],[1,-11],[1,-4],[4,-7],[1,-4],[-1,-6],[-1,-12],[0,-6],[-1,-3],[-2,-4],[-1,-3],[0,-3],[1,-5],[0,-3],[1,-1],[-2,-5],[-2,-2],[-2,-2],[-4,-3]],[[43077,60475],[0,-2],[2,-6],[4,-5],[4,-3],[1,-3],[1,-8],[1,-8],[0,-6],[-5,-7],[-6,-5],[-8,-3],[-7,-1],[-2,-1],[-2,-6],[-2,-1],[-2,1],[-17,14],[-3,3],[-2,4],[-1,6],[-4,-4],[1,13],[3,10],[4,7],[4,3],[9,0],[3,4],[-1,8],[8,9],[1,4],[2,0],[2,-9],[3,1],[4,8],[3,-3],[3,-6],[1,-5],[-2,-3]],[[43042,60558],[-2,-6],[-17,-16],[-8,-16],[-5,-15],[-7,-10],[-12,-3],[-11,0],[-3,-2],[-2,-2],[-3,0],[-3,6],[-1,7],[0,39],[-4,14],[-1,2],[-5,2],[-1,2],[-2,10],[1,9],[7,16],[4,5],[4,1],[4,0],[2,0],[3,4],[7,13],[5,5],[7,8],[6,4],[17,17],[5,2],[3,-2],[3,-5],[7,1],[4,-3],[3,-4],[1,-4],[0,-14],[1,-3],[7,-3],[1,-2],[1,-3],[4,-7],[1,-4],[0,-6],[-2,-6],[-10,-23],[-1,0],[-2,-2],[-5,-4],[-1,-2]],[[54041,71724],[4,-12],[1,-14],[-2,-9],[-3,3],[-5,-8],[-1,-5],[0,-7],[-5,3],[-1,1],[-9,2],[-14,7],[-12,11],[-5,14],[-1,2],[-4,4],[0,3],[0,18],[-2,21],[-1,9],[-3,6],[3,6],[4,4],[4,2],[4,1],[0,-5],[-2,-1],[-2,-1],[-4,-6],[22,-4],[5,-3],[9,-14],[8,-5],[2,-5],[0,-5],[0,-6],[2,-1],[8,-6]],[[53960,71834],[7,-4],[9,-10],[5,-10],[-3,-5],[-5,0],[-8,-6],[-4,-2],[-6,1],[-5,3],[-6,4],[-4,5],[1,6],[-1,7],[-1,5],[4,2],[17,4]],[[49421,79642],[4,-5],[13,-9],[0,-6],[1,-3],[2,-3],[1,-2],[-3,-3],[-1,-4],[0,-5],[0,-6],[-1,-6],[-2,0],[-2,2],[-3,2],[-8,0],[-5,3],[-6,9],[-3,2],[-2,2],[-2,0],[-3,-3],[-2,-6],[-2,-7],[-2,1],[-4,5],[-3,2],[0,-1],[-6,-3],[-3,-1],[2,13],[-2,14],[-2,11],[0,7],[3,2],[4,-2],[5,-4],[4,1],[3,1],[3,2],[3,4],[2,-3],[6,-2],[3,-3],[2,3],[2,1],[4,0]],[[49283,79780],[6,4],[5,6],[6,3],[5,-5],[-2,-5],[-4,-11],[-1,-12],[-2,-10],[0,-2],[0,-1],[-3,-4],[-2,-2],[-2,0],[-2,2],[-2,0],[-27,0],[-1,2],[1,3],[2,3],[3,1],[-1,8],[1,3],[4,0],[3,1],[13,16]],[[49343,79753],[2,-4],[1,-7],[-3,-6],[-3,-4],[-1,1],[1,3],[0,3],[0,4],[0,3],[0,2],[1,2],[1,2],[1,1]],[[49395,79921],[2,-1],[0,-4],[-5,-7],[-4,-3],[-4,-1],[-3,2],[2,7],[4,3],[3,0],[4,4],[1,0]],[[49318,79774],[2,1],[0,-6],[-2,-7],[0,2],[0,6],[0,4]],[[48718,82483],[-2,8],[-3,0],[-3,-2],[-4,-2],[-4,2],[-5,9],[-4,2],[-6,-4],[-6,-7],[-5,-5],[-7,3],[0,4],[1,2],[1,1],[2,0],[2,1],[-1,12],[10,16],[2,11],[0,17],[1,8],[3,9],[1,6],[0,4],[0,2],[6,2],[7,6],[6,9],[8,9],[4,7],[12,37],[7,16],[10,12],[15,11],[10,3],[5,3],[5,2],[5,-3],[-2,-8],[-5,-22],[0,-8],[2,-5],[1,-10],[2,-4],[2,-1],[5,-1],[2,-2],[2,-3],[1,-6],[1,-5],[-3,-2],[-1,-2],[-4,-10],[-2,-2],[-2,-5],[-2,-5],[-1,-5],[-2,-2],[-7,-5],[2,-16],[-6,-9],[-10,-7],[-8,-9],[1,-7],[-16,-13],[-4,-7],[-1,-4],[-4,-2],[-5,-2],[-3,-2],[-2,-4],[-4,-16]],[[55632,86087],[6,-12],[-4,-11],[-4,-11],[2,-11],[-3,-4],[-2,2],[-2,3],[-3,3],[-9,6],[-2,2],[-1,10],[2,10],[3,9],[2,8],[6,-18],[4,-7],[1,7],[-3,12],[1,4],[6,-2]],[[55455,86133],[1,-4],[5,-6],[2,-4],[1,-4],[0,-3],[1,-11],[-1,-5],[-3,-1],[-2,1],[-2,-1],[-4,6],[-6,13],[-5,5],[2,-10],[1,-9],[-1,-9],[-4,-8],[-6,-3],[-5,2],[-5,9],[-3,12],[-1,6],[0,2],[1,3],[4,3],[1,5],[0,6],[0,6],[0,6],[2,3],[5,7],[2,4],[3,3],[4,0],[4,-2],[6,-6],[1,-4],[2,-5],[0,-7]],[[55674,86160],[2,-2],[1,-3],[0,-3],[1,-4],[-14,-29],[-3,1],[0,3],[1,4],[0,4],[1,3],[0,7],[-2,4],[-8,-7],[-2,5],[0,9],[4,8],[5,2],[9,-6],[5,4]],[[55782,86140],[-7,4],[-3,15],[2,13],[5,0],[2,-3],[9,-6],[2,-3],[-1,-7],[-3,-4],[-4,-2],[-4,1],[2,-8]],[[55613,86136],[4,-9],[2,-3],[-3,-2],[-3,0],[-2,-1],[-3,-4],[-1,-4],[-3,-8],[-1,-2],[-3,-1],[-2,1],[-2,3],[-3,1],[-11,0],[-3,3],[1,9],[2,8],[1,6],[6,6],[14,1],[4,8],[-11,0],[-10,-4],[-8,-9],[-5,-20],[-2,0],[1,15],[-4,7],[-4,6],[-2,11],[3,10],[6,12],[1,10],[-10,2],[0,-4],[2,-7],[-2,-11],[-6,-5],[-8,7],[1,-11],[4,-11],[6,-10],[4,-5],[-2,-4],[-2,-5],[0,-5],[1,-6],[-15,7],[-4,6],[1,3],[1,2],[-1,7],[-7,-2],[-4,-2],[1,-6],[3,-7],[4,-6],[5,-4],[7,-4],[3,-4],[2,-4],[2,-2],[3,1],[2,3],[2,4],[2,4],[-3,-19],[-1,-9],[0,-8],[1,-2],[2,-2],[2,-2],[1,-5],[-2,-6],[-3,0],[-7,4],[-11,-1],[-5,-5],[1,-8],[1,-10],[-2,-3],[-3,1],[1,6],[-5,19],[-4,5],[-7,0],[-3,-2],[-1,-4],[-1,-3],[-2,-3],[-4,-1],[-4,1],[-2,2],[0,6],[-5,4],[-5,-2],[-4,-6],[-3,-8],[-4,17],[-10,26],[-5,14],[-2,18],[-1,7],[-3,3],[-1,5],[-6,24],[5,0],[5,-1],[2,-5],[-1,-10],[3,6],[1,7],[2,5],[3,2],[4,1],[10,7],[-2,3],[-1,3],[-3,6],[6,-2],[2,-2],[2,2],[1,0],[2,-2],[-4,-17],[-4,-13],[1,-5],[2,-4],[2,-5],[2,-15],[2,-4],[4,-2],[2,4],[1,7],[-1,8],[-1,6],[5,-3],[5,-6],[2,17],[6,8],[1,8],[0,12],[2,8],[2,-9],[0,-4],[0,-5],[2,-2],[3,0],[3,3],[2,3],[-1,10],[-2,9],[-3,6],[-4,5],[-2,4],[-1,3],[-1,0],[-2,-5],[-3,-10],[-3,-4],[-2,2],[-4,10],[-4,8],[-5,4],[-7,1],[4,3],[3,5],[2,6],[2,6],[6,7],[6,3],[6,0],[7,-2],[2,-8],[1,-11],[3,-8],[12,3],[7,-3],[6,-6],[5,-8],[-2,12],[-1,4],[4,-1],[9,-5],[3,1],[3,2],[3,-3],[6,-10],[14,-6],[4,-6],[-3,-16],[5,2],[1,2],[4,-4],[6,-3],[11,-1],[-10,-20],[-1,-8],[-8,-4]],[[55798,85952],[-2,2],[-2,6],[3,5],[4,2],[3,0],[3,-4],[2,-7],[2,-7],[-3,-3],[-6,3],[-4,3]],[[55828,85969],[-4,0],[0,-1],[4,-3],[2,-6],[-2,-3],[-14,9],[-4,4],[-1,3],[0,1],[2,2],[4,3],[12,-4],[3,0],[2,-1],[0,-3],[-4,-1]],[[55724,86029],[1,-1],[2,0],[-1,-1],[-3,-1],[-1,0],[2,-2],[0,-4],[-1,-4],[-2,-4],[-3,-5],[-3,-1],[-7,8],[-1,-2],[-2,-4],[-4,-2],[-4,0],[-3,4],[1,7],[7,14],[4,5],[4,1],[3,-1],[2,2],[2,0],[1,-2],[0,-3],[1,0],[2,1],[2,-1],[1,-2],[0,-2]],[[55673,86035],[7,6],[3,1],[-3,-16],[-5,-9],[-8,-2],[-4,4],[4,8],[6,8]],[[55700,86031],[-1,-3],[-5,-4],[-8,3],[-1,10],[6,2],[9,2],[1,0],[-3,1],[1,2],[4,2],[3,-1],[-2,-4],[-3,-5],[-1,-5]],[[55745,86080],[1,-3],[0,-5],[-2,-4],[-2,-1],[-5,4],[-5,9],[0,8],[2,3],[3,1],[1,-1],[3,-3],[3,-5],[1,-3]],[[55745,86138],[6,-6],[3,-6],[-2,-5],[-6,-3],[-5,3],[-2,3],[0,7],[2,6],[4,1]],[[55771,86196],[-10,-8],[-2,1],[-1,4],[0,2],[1,5],[0,3],[3,6],[0,2],[2,2],[1,3],[0,3],[2,1],[4,0],[3,-3],[1,-6],[-1,-5],[-1,-6],[-2,-4]],[[55633,85989],[6,13],[10,12],[7,-1],[10,-5],[10,-3],[3,-5],[-13,-9],[-9,1],[-8,-1],[-4,-2],[0,-9],[-5,-5],[-6,3],[-1,11]],[[55564,86040],[10,6],[9,13],[8,-5],[9,1],[9,-14],[5,-17],[3,-13],[1,-5],[-4,-9],[-7,-8],[-3,-3],[2,12],[-3,4],[-6,-4],[-8,-2],[-5,4],[3,6],[2,6],[-5,7],[-7,0],[-6,7],[-9,2],[2,12]],[[55857,86287],[2,-3],[1,-7],[-3,-7],[-2,-2],[-4,4],[-2,7],[2,4],[3,4],[2,0],[1,0]],[[48151,86829],[-6,-1],[-7,6],[-10,16],[-25,24],[-12,18],[1,15],[-7,9],[-9,14],[-6,15],[-1,10],[-1,3],[-3,9],[6,0],[0,2],[-1,1],[-1,1],[10,7],[5,1],[4,-4],[-5,-6],[-2,-2],[2,-3],[3,-1],[3,0],[3,0],[-13,-12],[0,-4],[24,3],[8,-10],[17,-2],[6,-7],[1,-8],[-3,-5],[-5,-1],[-4,4],[-3,4],[-5,2],[-4,0],[-2,-4],[5,-2],[4,-5],[2,-5],[3,-4],[2,-1],[6,2],[3,-1],[3,-4],[1,-3],[-1,-4],[-3,-2],[0,-4],[12,-6],[-1,-5],[-3,-1],[-3,1],[-3,0],[-10,-6],[-5,-1],[-6,2],[0,-4],[3,-1],[3,-2],[2,-4],[1,-5],[4,7],[5,2],[11,-1],[-1,-2],[-1,-6],[6,-3],[4,-8],[1,-11],[-2,-7]],[[48163,87081],[-4,-6],[-2,-4],[1,-2],[0,-3],[0,-17],[-1,-2],[-2,-4],[-3,-5],[-3,-1],[-2,1],[-18,39],[-4,4],[-25,5],[-4,2],[-4,4],[-2,7],[-1,11],[-6,14],[-2,10],[6,-2],[12,-5],[6,-1],[8,1],[4,-1],[2,-3],[4,-7],[3,-2],[22,-6],[3,-5],[2,-8],[8,-8],[2,-6]],[[47948,87243],[-7,7],[-5,13],[-1,12],[7,1],[10,-10],[3,-2],[2,-1],[7,1],[2,1],[1,3],[0,3],[1,1],[3,1],[5,6],[19,5],[0,-4],[-2,0],[0,-4],[11,-8],[4,-1],[3,-2],[4,-9],[3,-4],[7,-3],[7,1],[7,-2],[5,-9],[-3,-7],[-3,-8],[-3,-6],[-6,-3],[-5,1],[-4,2],[-5,1],[-5,-4],[3,-2],[2,-1],[2,-1],[3,0],[-16,-8],[-5,-4],[2,6],[2,2],[-2,8],[-4,8],[-3,3],[-5,-3],[3,-2],[3,-4],[3,-5],[-1,-5],[-3,-1],[-12,9],[-17,4],[-12,8],[-4,0],[0,4],[27,0],[-6,5],[-7,4],[-15,3]],[[47993,87288],[-2,3],[-1,3],[-1,4],[1,6],[2,2],[2,0],[1,2],[2,8],[0,6],[1,5],[5,2],[-6,9],[0,12],[4,23],[1,-3],[2,0],[1,0],[1,-1],[20,-4],[9,-6],[4,-8],[3,-15],[14,-26],[0,-14],[9,-3],[16,-14],[14,-4],[2,-4],[1,-5],[-2,-6],[-3,-5],[-3,-4],[-4,-2],[-3,-1],[24,1],[4,-8],[4,-9],[1,-6],[-2,-3],[-16,0],[0,-4],[10,-5],[18,1],[8,-8],[-3,-7],[-2,-10],[1,-8],[9,-6],[-1,-5],[-1,-7],[1,-10],[-9,-4],[-9,10],[-8,12],[-17,12],[-15,25],[-10,6],[-4,2],[-2,4],[-2,7],[0,9],[-2,6],[-4,5],[-5,5],[-5,3],[-21,4],[-5,2],[-3,6],[0,6],[5,2],[-3,7],[-4,-1],[-4,-4],[-5,-2],[-2,1],[-8,8],[-3,3]],[[48040,87359],[-3,3],[-3,4],[-2,3],[-1,4],[3,4],[3,0],[3,-3],[3,-1],[6,3],[10,8],[13,3],[3,-2],[3,-2],[2,-3],[3,-2],[3,-1],[2,-6],[-5,-4],[-7,-4],[-3,-4],[0,-10],[1,-8],[2,-7],[5,-5],[-3,18],[1,7],[21,7],[7,0],[4,-8],[-2,-1],[-5,-3],[21,-4],[3,-3],[-2,-6],[-5,-5],[-6,-2],[0,-5],[3,-1],[6,-5],[2,-2],[3,1],[5,3],[3,1],[15,-6],[12,-8],[1,-4],[-4,-2],[-7,-1],[-17,3],[-5,-3],[0,-4],[34,-18],[10,-11],[-14,2],[-15,7],[0,-4],[6,-2],[6,-4],[9,-10],[0,-4],[-5,0],[-5,0],[-5,-3],[-4,-6],[1,-1],[2,-2],[1,-1],[0,-4],[-2,-2],[-1,-3],[0,-3],[1,-4],[-10,7],[-3,13],[0,15],[-2,14],[-5,10],[-7,13],[-9,7],[-8,-2],[7,-8],[8,-7],[7,-10],[3,-15],[-5,-13],[-11,9],[-22,28],[-11,-1],[-3,3],[-2,3],[-6,6],[-2,1],[-3,3],[-18,30],[-9,30]],[[48184,87300],[-10,13],[-3,9],[1,10],[2,4],[1,0],[1,-2],[1,-2],[2,1],[1,3],[0,3],[1,4],[0,5],[-1,16],[0,5],[-4,12],[-2,11],[1,9],[9,5],[-3,-4],[8,-24],[10,-16],[12,-12],[14,-9],[-5,-9],[-8,-1],[-9,3],[-6,7],[-2,-4],[10,-15],[6,-5],[5,4],[1,-11],[1,-3],[2,-3],[0,-4],[-5,-3],[-6,-2],[-5,2],[-4,5],[-8,16],[-4,5],[-4,-2],[6,-20],[2,-7],[1,-4],[-2,0],[-2,1],[-3,3],[-1,2],[-1,2],[0,2]],[[47900,87251],[3,-4],[3,-2],[-3,-1],[-3,0],[-23,2],[-1,4],[8,5],[8,0],[8,-4]],[[48244,87369],[8,0],[4,-3],[0,-4],[-8,-8],[2,-6],[0,-6],[-2,-3],[-2,-4],[-4,-2],[-4,-1],[-5,1],[-3,6],[-3,7],[-1,7],[3,5],[5,2],[10,9]],[[48170,87359],[2,-5],[0,-9],[-4,-3],[-6,3],[-6,8],[-3,5],[-7,19],[-3,14],[1,13],[4,5],[5,-5],[2,-9],[12,-28],[3,-8]],[[48151,87343],[2,-2],[2,-7],[-1,-6],[-4,-1],[-5,3],[-4,6],[-2,10],[-3,9],[-2,3],[-6,9],[-7,14],[-2,5],[-5,15],[0,8],[2,3],[4,-4],[4,-7],[8,-19],[19,-39]],[[48219,87379],[2,-3],[2,-6],[-1,-5],[-2,-4],[-5,-2],[-9,3],[-8,9],[-7,11],[-4,10],[-2,15],[-4,4],[-3,7],[4,5],[7,-2],[4,-4],[2,-8],[3,-9],[3,-6],[4,-6],[2,-5],[0,-4],[1,-4],[3,1],[3,4],[3,0],[2,-1]],[[76906,43255],[1,-3],[-6,-6],[-4,11],[-2,17],[-1,14],[2,0],[0,-6],[0,-4],[2,-10],[-1,-6],[1,-7],[3,-3],[5,3]],[[76917,43245],[-3,2],[-1,2],[0,3],[3,0],[2,3],[2,5],[0,7],[2,-7],[0,-6],[-2,-6],[-3,-3]],[[79361,44292],[3,-3],[0,-9],[-1,-11],[-1,-14],[0,-12],[-2,-9],[0,-14],[-1,-7],[-5,-1],[-1,10],[-2,10],[-1,8],[-4,4],[-6,2],[-6,-1],[-6,-3],[-1,7],[3,3],[2,11],[-1,8],[0,8],[4,-3],[5,-6],[8,-1],[4,8],[4,10],[5,5]],[[70129,46097],[1,3],[1,1],[1,2],[1,5],[1,-3],[0,-3],[0,-4],[-1,-5],[-2,-6],[-8,-15],[-3,-4],[-2,17],[2,34],[-2,14],[-2,3],[-7,8],[-2,1],[-2,3],[-6,17],[3,-1],[14,-20],[4,-7],[1,-14],[-1,-51],[2,6],[7,19]],[[70134,46159],[3,-10],[-2,-8],[-3,-8],[-1,-10],[0,-4],[0,-4],[1,-5],[-1,3],[-1,5],[-1,4],[1,5],[4,18],[-2,14],[-6,14],[-5,17],[3,-4],[10,-27]],[[69819,46530],[3,0],[-2,-2],[-1,0],[0,1],[0,1]],[[69794,46686],[0,7],[0,2],[2,2],[0,-5],[0,-2],[-1,-2],[-1,-2]],[[69816,46800],[1,5],[1,3],[2,3],[2,0],[-1,-6],[-2,-7],[-2,-3],[-1,5]],[[69936,47248],[-2,4],[-1,1],[3,-1],[1,-1],[0,-2],[-1,-1]],[[70061,47314],[2,6],[0,-4],[-1,-1],[-1,0],[0,-1]],[[69926,47340],[3,9],[0,-5],[-1,-3],[-1,-1],[-1,0]],[[69933,47368],[2,2],[-1,-3],[-1,1]],[[69990,47370],[-1,1],[0,1],[0,2],[1,0],[0,-1],[0,-2],[0,-1]],[[78877,51293],[7,-3],[4,-3],[1,-4],[-3,-11],[-5,-12],[-6,-10],[-6,-4],[-7,-1],[-5,-5],[-10,-14],[-1,-3],[-1,-2],[-2,-1],[-3,-2],[-7,1],[-3,2],[-2,3],[-2,8],[-6,6],[-7,3],[-6,2],[-12,-1],[-5,3],[-2,8],[1,9],[9,25],[1,11],[1,7],[3,6],[4,5],[3,1],[6,-2],[6,2],[8,8],[4,3],[7,-1],[7,-5],[21,-23],[8,-6]],[[96661,33285],[4,-5],[-1,-10],[-2,-10],[-4,-4],[-1,-1],[0,-2],[-1,-2],[0,-3],[-1,9],[-3,5],[-3,0],[-2,-6],[-2,0],[0,7],[-1,5],[-1,6],[1,4],[2,6],[0,4],[-1,2],[-4,-1],[4,8],[6,-2],[5,-7],[5,-3]],[[6129,37513],[4,-2],[3,-6],[6,-14],[0,-6],[-3,-5],[-4,-2],[-4,-1],[-4,1],[-3,3],[-2,5],[-2,7],[1,7],[3,7],[2,5],[3,1]],[[6192,38763],[0,-12],[0,-17],[0,-15],[-4,-8],[0,8],[-1,6],[-2,3],[-2,5],[0,8],[1,5],[6,14],[2,3]],[[6128,45151],[-6,0],[-5,3],[-5,7],[-3,7],[1,3],[18,-16],[0,-4]],[[5612,37923],[5,-1],[6,-2],[4,-6],[2,-9],[0,-12],[-1,-6],[-1,-4],[-8,2],[-1,0],[-5,5],[-11,-2],[-4,7],[2,4],[2,11],[0,7],[3,4],[7,2]],[[6302,38533],[-2,-9],[-2,-5],[-4,2],[-2,9],[0,11],[3,3],[4,-3],[3,-8]],[[6089,38629],[-1,-11],[-4,-4],[-5,2],[-4,9],[-2,14],[5,2],[6,-5],[5,-7]],[[6037,38725],[-4,6],[1,-1],[1,-2],[2,-3]],[[6031,38738],[-2,-4],[-1,0],[1,1],[2,3]],[[5854,39058],[-3,3],[-4,6],[-1,5],[2,2],[2,-3],[1,-6],[1,-4],[4,2],[0,-2],[-1,-1],[-1,-2]],[[3938,44025],[2,1],[1,0],[1,0],[-1,-5],[-2,-1],[-1,1],[0,4]],[[5282,44321],[-3,5],[0,2],[4,-6],[12,-25],[-13,24]],[[5253,44527],[5,4],[-1,-5],[-4,-5],[0,6]],[[5615,39318],[4,1],[3,-5],[0,-5],[-1,2],[-1,4],[-1,1],[-2,-11],[0,-2],[1,-13],[-2,-6],[-3,0],[-2,6],[-1,7],[2,11],[1,4],[2,6]],[[1679,39474],[4,-3],[2,-4],[2,-5],[3,-5],[0,-6],[0,-12],[-2,-6],[-5,12],[-3,-3],[-2,-3],[0,-5],[3,-5],[-2,-6],[-2,-6],[-4,2],[-2,-7],[-2,-10],[0,-10],[-3,4],[-2,7],[-2,14],[4,3],[1,7],[-2,7],[-1,3],[-4,-6],[0,-8],[-2,-6],[-4,4],[0,-3],[-1,-1],[-1,0],[-2,0],[-3,17],[5,9],[8,9],[4,16],[2,4],[4,2],[5,1],[4,-1]],[[1413,37860],[1,-22],[0,-9],[-1,-22],[0,-37],[-2,-6],[-4,5],[-2,9],[-4,8],[-8,12],[0,4],[2,1],[2,3],[-1,6],[-1,8],[2,7],[5,5],[2,4],[3,10],[0,4],[2,9],[3,6],[1,-5]],[[1371,37960],[3,-5],[1,-4],[-1,-10],[-2,-5],[-16,-23],[-1,-5],[1,-7],[1,-6],[0,-6],[-1,-7],[-2,-4],[-3,-2],[-3,-2],[-6,3],[-3,5],[-5,17],[-3,7],[-14,13],[-2,-4],[-7,8],[-4,3],[-3,1],[-3,3],[-6,20],[-4,16],[2,14],[7,11],[7,5],[-4,-8],[-4,-8],[-2,-8],[4,-8],[3,-3],[3,0],[15,6],[3,-1],[2,-3],[2,-3],[2,-4],[1,-6],[-4,-6],[-2,-5],[1,-6],[3,-2],[3,2],[2,4],[3,3],[4,-2],[5,-5],[2,-2],[4,2],[2,7],[1,8],[4,8],[3,2],[4,2],[3,1],[4,-1]],[[1566,38743],[4,3],[3,5],[2,8],[1,9],[2,-1],[3,-2],[1,-2],[-3,-10],[0,-12],[-1,-9],[-6,-1],[-2,2],[-1,3],[-2,3],[-1,4]],[[1370,38796],[4,-7],[2,-16],[0,-18],[-4,-12],[0,4],[-1,-4],[-2,3],[-1,2],[-3,3],[0,2],[0,2],[-4,19],[0,5],[1,12],[2,5],[2,0],[4,0]],[[1582,38783],[5,6],[2,8],[3,8],[3,7],[2,-9],[-1,-7],[-2,-7],[-1,-8],[-2,-7],[-4,-1],[-4,4],[-1,6]],[[1594,38844],[4,-3],[1,-6],[-2,-5],[-4,2],[-3,9],[-3,15],[-2,11],[4,-2],[2,-5],[1,-13],[2,-3]],[[1214,41255],[5,-8],[-2,-17],[-6,-13],[-8,1],[-5,12],[1,12],[5,9],[10,4]],[[1052,37249],[2,-2],[2,-3],[-1,-2],[-1,-2],[-1,0],[-2,2],[-1,4],[0,3],[2,0]],[[1485,39326],[-3,9],[1,9],[3,4],[5,-3],[2,-8],[-1,-6],[-3,-5],[-4,0]],[[516,42034],[10,-21],[0,-3],[4,-2],[13,-14],[0,-5],[-15,3],[-3,-3],[-3,4],[-7,2],[-3,3],[-5,17],[-3,17],[2,9],[10,-7]],[[1068,42647],[3,-13],[4,-10],[1,-10],[-3,-12],[1,-2],[1,-2],[0,-4],[-4,-1],[-1,-6],[2,-15],[-2,-7],[-3,-2],[-4,3],[-3,4],[0,9],[-3,10],[-1,10],[4,7],[-2,13],[2,11],[4,10],[4,7]],[[2166,42420],[1,-6],[1,-7],[0,-13],[1,-12],[3,-7],[1,-7],[-1,-13],[-3,-9],[-3,-8],[-3,-8],[-1,-14],[1,-13],[0,-6],[-2,-3],[-6,0],[-3,1],[-3,3],[-4,8],[-3,6],[-2,3],[-6,-1],[-14,-10],[-43,-10],[-3,4],[-3,8],[-2,4],[-4,6],[-3,3],[0,5],[-1,6],[-3,12],[0,7],[-2,7],[-3,4],[-4,4],[-3,3],[-6,19],[-3,9],[-7,6],[-3,5],[-4,8],[-1,3],[-1,6],[0,3],[-2,2],[-4,-1],[-1,1],[-3,8],[-4,14],[-2,13],[4,6],[10,0],[10,-9],[10,0],[6,2],[6,7],[3,2],[7,1],[3,2],[8,8],[3,2],[22,0],[5,2],[12,8],[6,3],[7,0],[6,-3],[6,-5],[5,-10],[16,-39],[1,-2],[-1,-7],[0,-3],[2,-2],[3,-3],[1,-3]],[[2343,42209],[13,2],[14,-14],[8,-22],[-3,-19],[1,-2],[2,-6],[-8,-1],[-19,5],[-12,-3],[-5,1],[-6,6],[-5,-5],[-4,1],[-9,4],[-5,0],[-11,-8],[-3,0],[-3,2],[-1,3],[-1,5],[-1,5],[-3,3],[-5,2],[-5,6],[-5,3],[-4,1],[-11,-3],[-5,0],[-4,3],[-4,6],[-6,19],[-3,8],[-3,-2],[-2,0],[-5,14],[-3,4],[-6,2],[-6,5],[0,13],[2,13],[3,10],[22,16],[23,8],[13,-1],[12,-6],[39,-32],[12,-3],[6,-5],[5,-7],[3,-11],[0,-6],[-2,-4],[-1,-4],[1,-6]],[[94583,43519],[17,-21],[5,-13],[-6,-10],[-4,0],[-2,2],[-2,1],[-4,-3],[-1,-4],[-2,-12],[-2,-5],[-4,1],[-4,8],[-3,10],[-3,6],[-4,-4],[-1,0],[-2,1],[-10,15],[-2,4],[-3,25],[-2,11],[-6,9],[-3,2],[-6,1],[-3,1],[-3,4],[-1,4],[1,4],[0,4],[-1,6],[1,5],[-1,4],[-3,5],[-3,3],[-3,1],[-3,1],[-2,-1],[-2,-2],[-2,-10],[-2,-4],[-3,-1],[-3,0],[-6,1],[-4,4],[-11,13],[-6,3],[2,7],[0,2],[-5,8],[-4,-1],[-4,-4],[-3,-3],[-5,3],[-4,6],[-8,21],[-1,8],[-1,4],[-2,5],[-1,3],[2,10],[2,7],[5,11],[2,7],[1,-2],[1,-1],[1,0],[1,-1],[4,-9],[3,-4],[3,-3],[3,0],[7,0],[2,-2],[6,-11],[6,-7],[15,-16],[8,-13],[10,-10],[8,-13],[6,-6],[12,-8],[12,-10],[30,-47]],[[94389,43783],[5,-1],[5,-3],[3,-6],[1,-10],[-7,6],[-5,2],[-5,5],[-4,11],[2,1],[2,-1],[1,-1],[2,-3]],[[94927,44386],[1,6],[-1,2],[-2,1],[-1,1],[-3,14],[-1,8],[4,7],[6,-10],[5,-17],[0,-15],[-6,-7],[-2,1],[-1,2],[0,3],[1,4]],[[95103,44060],[3,3],[2,-5],[0,-7],[-4,-4],[-4,2],[-3,2],[-3,0],[-4,-4],[-2,3],[-3,1],[-5,0],[-4,2],[-19,16],[-7,-2],[-6,-12],[-3,4],[-4,1],[-7,0],[-3,1],[-2,3],[-2,4],[-2,3],[-12,11],[-4,8],[-3,2],[-3,-1],[-8,-6],[-3,1],[-3,3],[-11,7],[0,-1],[-1,-2],[-4,-1],[-2,1],[-3,6],[-1,1],[-2,2],[-2,4],[-2,10],[-2,-8],[0,-4],[-6,9],[-4,2],[-4,-3],[0,4],[-2,5],[-1,3],[-3,-2],[-2,4],[-2,6],[1,4],[-3,7],[-3,1],[-4,-1],[-3,2],[-2,5],[-1,7],[-2,6],[-4,2],[-1,4],[-4,7],[-4,5],[-2,-2],[-1,-5],[-3,4],[-5,11],[0,5],[-1,3],[-2,3],[-3,1],[1,5],[-1,4],[-1,4],[-3,4],[-2,-6],[-3,-2],[-4,1],[-4,2],[6,37],[-3,4],[-1,6],[0,6],[-1,6],[-2,1],[-5,-2],[-4,-1],[3,7],[2,10],[0,8],[-5,4],[3,15],[2,6],[2,3],[2,2],[-1,2],[-2,4],[-1,1],[-5,-1],[-1,0],[-2,4],[-2,4],[-1,3],[-4,2],[-8,0],[-3,1],[-1,5],[-2,2],[-4,1],[-6,-1],[-1,-2],[-2,-3],[-1,-2],[-2,-1],[-2,0],[-2,3],[-7,2],[-3,2],[-3,5],[-1,9],[3,13],[-2,6],[2,3],[0,2],[1,1],[1,2],[-2,9],[0,13],[3,11],[5,4],[1,-2],[2,-1],[2,-2],[1,-3],[15,6],[30,-28],[30,-39],[16,-29],[5,5],[4,-5],[5,-18],[4,-6],[5,-1],[4,1],[4,0],[3,-3],[8,-11],[2,-4],[2,-6],[6,-1],[7,3],[4,6],[10,-8],[5,0],[4,4],[2,-5],[4,-11],[3,-5],[4,-2],[9,2],[4,-2],[2,2],[1,12],[2,3],[2,1],[3,0],[6,-5],[7,-22],[3,-5],[3,-4],[3,-9],[5,-32],[2,-4],[2,-3],[1,-1],[2,-3],[1,-19],[3,-9],[3,-7],[10,-14],[3,-7],[1,-10],[0,-33],[-1,-3],[-1,-2],[-2,-3],[-2,-3],[-1,-4],[2,-15],[8,-3],[11,1],[9,-3]],[[96436,44615],[-2,10],[1,6],[3,-1],[3,-7],[1,-8],[0,-5],[-3,0],[-3,5]],[[96413,44664],[4,1],[1,-2],[-1,-1],[-4,2]],[[94993,44636],[-4,7],[-4,13],[-3,16],[-3,41],[1,8],[2,9],[4,1],[3,-1],[4,3],[0,-5],[0,-3],[-2,-4],[-1,-4],[0,-2],[-1,-2],[2,-9],[3,-48],[0,-10],[-1,-10]],[[94831,44895],[-1,-1],[-3,-2],[-2,-1],[0,13],[-1,11],[-6,21],[2,3],[1,0],[2,-7],[4,-9],[10,-12],[2,-6],[1,-9],[8,-25],[7,-30],[3,-9],[2,-5],[2,-13],[2,-6],[3,-6],[2,-7],[4,-13],[2,-11],[0,-10],[0,-22],[1,-10],[4,-19],[0,-14],[-1,-13],[-3,-11],[-2,-2],[-1,12],[-12,27],[-2,14],[-2,7],[-3,3],[-3,-2],[-2,-16],[-3,-11],[-5,11],[-4,13],[-4,15],[-2,12],[0,37],[0,34],[-1,13],[0,8],[5,17],[-1,9],[-2,10],[-1,12]],[[94673,44644],[0,-18],[-8,-10],[-21,-9],[-10,-7],[-6,-7],[-5,-8],[-20,10],[-18,18],[-6,3],[-12,-5],[-3,2],[-3,6],[-2,6],[-2,6],[-1,1],[-4,-1],[-1,0],[-1,2],[-1,8],[-2,3],[-8,7],[-2,3],[-5,3],[-31,3],[-23,-8],[-13,0],[-7,2],[-3,0],[-3,-2],[-2,2],[-6,2],[-6,3],[-6,1],[-6,3],[-9,10],[-5,3],[-5,-2],[-5,-4],[-4,0],[-6,8],[-13,28],[-5,7],[-7,8],[-1,3],[1,6],[0,3],[-1,3],[-3,1],[-1,2],[-1,5],[-1,6],[0,5],[-2,2],[-5,2],[-1,4],[1,5],[0,6],[-2,13],[-4,12],[-4,11],[-4,10],[-4,7],[-2,4],[-1,5],[4,4],[2,5],[2,6],[-1,6],[-4,12],[-1,6],[0,7],[2,15],[0,7],[-1,7],[-1,7],[-3,6],[-1,2],[1,4],[3,6],[1,20],[2,9],[4,3],[4,3],[18,22],[9,-7],[10,-13],[15,-29],[11,-17],[2,-5],[1,-9],[3,-10],[4,-9],[4,-7],[5,-4],[6,-1],[10,1],[3,1],[3,2],[2,4],[2,3],[3,1],[3,-1],[6,-6],[6,-3],[3,-1],[3,0],[3,3],[5,8],[2,1],[6,-1],[9,-6],[6,-1],[1,1],[3,6],[1,1],[2,0],[2,-3],[2,-1],[21,0],[1,1],[3,3],[1,0],[1,-1],[1,-3],[2,-3],[5,-5],[6,-16],[11,-9],[5,-10],[7,-26],[11,3],[12,-12],[12,-18],[7,-17],[2,-10],[1,-12],[1,-25],[1,-5],[3,0],[5,3],[3,-1],[3,-3],[6,-8],[9,-5],[3,-3],[0,-6],[0,-8],[1,-8],[3,-3],[1,-3],[1,-6],[-1,-13],[1,-6],[2,-3],[1,-4],[2,-5]],[[94396,45038],[-4,3],[-2,10],[-1,12],[2,11],[2,1],[1,0],[2,0],[1,3],[2,-11],[1,-13],[0,-12],[-4,-4]],[[94514,45046],[3,2],[3,4],[3,5],[2,5],[3,29],[3,12],[5,-1],[7,-28],[3,-4],[5,0],[3,-1],[2,-3],[3,-4],[-4,-8],[-4,-15],[-4,-5],[-2,-5],[-6,5],[-5,7],[-6,4],[-5,-3],[1,-8],[-4,-5],[-7,-3],[-5,-1],[1,5],[0,4],[-2,2],[-3,2],[1,5],[3,3],[6,0]],[[94220,45106],[3,1],[5,14],[3,5],[0,-3],[0,-1],[-1,-2],[-1,-2],[0,-6],[0,-1],[0,-5],[-2,-5],[-1,-6],[2,-2],[3,2],[0,-15],[-5,-10],[-12,-12],[0,16],[1,11],[5,21]],[[94470,45106],[-2,1],[-1,2],[-1,3],[-1,4],[3,2],[5,1],[5,3],[3,9],[2,-5],[1,5],[1,4],[-1,3],[-1,5],[1,3],[1,0],[1,-3],[5,-5],[6,1],[4,-1],[4,-12],[3,0],[2,10],[5,-2],[6,-8],[4,-10],[2,-13],[-2,-17],[-4,-15],[-4,-9],[-1,4],[-1,2],[-1,0],[-3,-2],[0,7],[-2,5],[-2,4],[-3,0],[0,-3],[1,-9],[-1,0],[-5,15],[-3,6],[-5,-3],[-4,-4],[-5,0],[-5,2],[-4,4],[-1,4],[0,5],[0,5],[-2,2]],[[94212,45129],[2,1],[6,-4],[-9,-40],[-4,-8],[-14,-8],[-2,3],[-2,6],[-2,4],[-3,-5],[-7,21],[0,7],[9,0],[-2,8],[1,6],[3,2],[3,-4],[0,8],[2,-1],[4,-3],[0,7],[-1,5],[-2,5],[-3,4],[4,0],[3,-3],[2,0],[2,2],[1,5],[2,-8],[0,-7],[1,-5],[3,-5],[1,1],[2,6]],[[94465,45126],[-3,6],[0,6],[2,7],[1,8],[-1,16],[1,4],[4,2],[5,-12],[1,-8],[0,-12],[-4,4],[-2,-5],[-4,-16]],[[93781,45297],[6,-6],[4,-12],[-1,-13],[-7,-5],[-2,1],[-10,11],[-14,8],[-14,13],[-7,10],[1,10],[10,-4],[5,0],[4,4],[1,-5],[3,8],[1,3],[2,2],[2,-1],[2,-3],[1,-3],[2,-1],[4,-3],[3,-6],[2,-5],[2,-3]],[[93951,45273],[8,-6],[0,-6],[-1,-4],[-2,-4],[-6,-3],[-6,-10],[-4,-4],[-5,18],[-2,3],[-2,3],[0,8],[2,15],[1,5],[8,13],[1,6],[2,6],[1,8],[0,9],[2,0],[0,-13],[2,-8],[2,-14],[1,-14],[-2,-8]],[[93904,45419],[6,3],[7,0],[5,-4],[3,-9],[0,-13],[0,-4],[-2,-5],[-3,-2],[-3,1],[-3,-1],[-1,-5],[-1,-2],[-5,-4],[-1,-4],[2,-3],[5,-2],[2,-3],[2,2],[1,1],[3,1],[-4,-10],[-1,-3],[-3,-3],[7,-13],[-3,-14],[-11,-22],[-3,-11],[-2,-3],[-2,-3],[-5,-3],[-2,-2],[-4,-1],[-6,2],[-6,4],[-2,3],[-1,4],[-2,3],[-3,3],[-1,3],[-2,6],[-1,3],[-8,15],[-2,4],[0,30],[2,21],[1,3],[2,4],[1,5],[0,8],[8,-10],[3,0],[1,10],[2,-1],[1,-1],[0,-7],[3,8],[-1,6],[-2,6],[0,9],[2,4],[10,8],[2,1],[1,1],[1,2],[2,-4],[0,-4],[-3,-4],[-1,-4],[1,-5],[2,-5],[3,-3],[3,3],[3,6],[3,4]],[[93710,45390],[-1,0],[-2,2],[-1,1],[-2,-3],[0,-3],[0,-13],[-2,-17],[0,-9],[1,-8],[10,-23],[6,-8],[6,-4],[0,-4],[-4,-2],[-5,1],[-5,2],[-4,5],[-3,7],[-2,2],[-3,1],[-2,3],[-1,5],[1,7],[0,5],[-2,7],[-8,22],[-3,4],[-4,3],[-6,8],[-6,8],[-2,8],[1,8],[2,8],[2,6],[3,4],[7,8],[4,7],[5,22],[8,16],[9,12],[5,-1],[5,-7],[4,-11],[3,-15],[1,-17],[-1,-4],[-4,-10],[-3,-20],[0,-2],[-1,-2],[-1,-4],[0,-2],[-2,-3],[-1,0],[-1,0],[-1,0]],[[94357,45431],[3,-6],[0,-4],[-3,-6],[-3,-3],[-2,-1],[-3,1],[-3,3],[-4,4],[-2,3],[-4,9],[-3,11],[-3,3],[-3,-6],[-4,9],[-5,5],[-3,7],[0,16],[2,15],[4,10],[5,6],[8,1],[8,-4],[3,-9],[-1,-28],[1,-12],[4,-9],[8,-15]],[[95204,45502],[-2,6],[1,3],[3,-1],[3,-2],[0,-3],[-2,-1],[-1,-1],[-2,-1]],[[94821,44774],[-14,21],[-3,1],[0,10],[-2,9],[-11,30],[-2,6],[0,6],[-1,11],[-1,7],[-3,10],[-13,29],[-19,20],[-7,16],[-13,4],[2,10],[-8,19],[-4,6],[-2,1],[-4,-1],[-2,2],[-1,4],[0,10],[0,4],[-7,12],[-15,15],[-6,14],[-21,78],[-4,29],[-4,14],[1,5],[1,3],[-1,4],[-1,4],[0,9],[-5,30],[-4,12],[-11,49],[-1,8],[0,32],[-1,5],[-9,42],[5,7],[8,15],[5,3],[0,5],[-6,31],[-11,31],[-2,6],[-3,3],[-10,20],[-3,9],[-3,26],[6,9],[10,-2],[10,-8],[6,-11],[2,-2],[3,1],[3,4],[1,4],[-1,5],[-8,12],[1,5],[2,4],[2,2],[2,0],[0,-4],[7,0],[3,-5],[6,-15],[3,-6],[3,-4],[2,-5],[3,-10],[1,-7],[1,-5],[0,-6],[1,-3],[4,-5],[1,-2],[9,-31],[15,-32],[11,-20],[6,-19],[3,-11],[1,-11],[-2,-12],[-5,-7],[-7,-5],[-5,-6],[2,-8],[1,-8],[0,-7],[-4,-16],[0,-8],[1,-8],[0,-8],[1,-9],[6,-10],[1,-6],[2,-6],[4,2],[6,6],[3,-2],[7,-12],[3,-6],[0,-4],[-1,-3],[-1,-4],[2,-5],[2,-3],[2,0],[1,2],[0,1],[7,-7],[7,-10],[6,-13],[5,-15],[-3,3],[-3,-5],[-1,-7],[2,-3],[4,-3],[3,-7],[2,-10],[-2,-9],[3,-3],[1,-3],[0,-5],[0,-6],[0,-7],[2,-1],[2,0],[2,-3],[1,-2],[2,-2],[2,-4],[0,-6],[-1,-3],[-6,-11],[5,-5],[1,-3],[1,-4],[4,3],[3,-2],[2,-6],[-1,-7],[2,-1],[5,-4],[0,-4],[-7,-3],[-3,-1],[-1,-3],[0,-7],[2,-7],[1,-3],[2,-5],[1,-21],[4,-7],[-4,-4],[-2,4],[-1,6],[-3,2],[-2,-3],[0,-6],[3,-7],[11,-24],[3,-10],[8,-46],[3,-5],[3,-5],[4,-11],[5,-21],[3,-46],[0,-13],[-1,-7],[-3,-2],[-5,4]],[[93645,45569],[1,-20],[3,-8],[4,-4],[0,-5],[-9,10],[-4,22],[-5,20],[-11,5],[1,2],[2,4],[1,2],[-5,5],[-5,8],[-2,8],[4,4],[4,-7],[7,-1],[7,-3],[3,-12],[1,-7],[3,-23]],[[93668,45561],[-2,0],[-1,8],[-2,2],[-2,0],[-3,2],[-1,4],[-2,17],[-3,10],[-3,9],[-4,7],[-6,6],[2,4],[-3,0],[-1,2],[0,2],[0,4],[7,-5],[7,1],[6,-1],[5,-11],[3,-12],[2,-16],[1,-17],[0,-16]],[[93558,45699],[1,-10],[2,2],[5,-26],[-7,1],[-8,15],[1,18],[6,0]],[[93832,45399],[3,-5],[3,-7],[1,-10],[-2,-11],[-2,0],[0,10],[-2,6],[-2,4],[-1,3],[-1,8],[-3,8],[-6,14],[-7,9],[-15,2],[-7,7],[-13,18],[-6,17],[-1,2],[-1,8],[-2,14],[-1,8],[0,36],[2,-6],[1,-7],[1,-17],[1,-7],[7,-4],[1,-5],[1,-6],[2,1],[2,5],[1,8],[-2,6],[-6,13],[-3,19],[-3,15],[-4,13],[-5,9],[-4,2],[-2,-2],[-3,-2],[-4,-2],[-2,2],[-2,5],[-2,0],[-2,-7],[-3,4],[-2,0],[-4,-4],[-1,-1],[-2,-2],[-1,-1],[-10,0],[-10,2],[-3,-2],[-2,-8],[-2,-11],[-3,-11],[-6,-7],[-5,2],[-10,12],[-3,-2],[-1,0],[-2,55],[1,4],[4,12],[1,3],[4,0],[4,0],[2,3],[3,5],[1,-8],[2,-2],[2,2],[2,4],[1,5],[0,13],[1,6],[-1,7],[2,8],[6,16],[3,9],[4,20],[3,7],[11,25],[5,6],[4,4],[9,4],[4,4],[0,-3],[0,-1],[1,0],[1,0],[19,-23],[7,-2],[-2,-10],[1,-8],[2,-7],[1,-9],[0,-23],[0,-11],[2,-9],[-2,-11],[0,-7],[7,-12],[2,-10],[-1,-7],[-1,-7],[1,-7],[2,5],[1,-1],[2,-3],[2,-1],[2,2],[4,4],[2,2],[5,3],[5,0],[4,-3],[8,-13],[1,-2],[2,-5],[0,-4],[2,-12],[3,-10],[7,-10],[3,-9],[0,-15],[0,-5],[2,-5],[4,-7],[2,-4],[2,-10],[2,-21],[1,-10],[2,-2],[1,0],[2,-1],[1,-5],[0,-6],[-1,-5],[-5,-19],[-1,-4],[-1,-6],[0,-6],[1,-5],[0,-5],[1,-4],[-17,14],[-7,1],[0,-3]],[[93502,45689],[2,-15],[0,-9],[-2,-7],[2,-13],[0,-14],[-4,-12],[-4,-5],[-3,7],[-7,43],[-4,14],[-1,13],[2,28],[-3,30],[0,13],[5,6],[4,-8],[4,-8],[1,-7],[2,-13],[3,-14],[2,-10],[1,-11],[0,-8]],[[93639,45658],[-14,-2],[-14,25],[-11,35],[-5,28],[1,7],[1,8],[2,13],[7,21],[1,5],[4,8],[8,7],[10,5],[6,2],[13,-14],[10,-21],[5,-25],[3,-28],[0,-29],[0,-10],[-5,-24],[-4,-17],[-6,-8],[-6,14],[-2,-2],[-2,0],[-2,2]],[[93557,45898],[2,-9],[-5,-19],[-10,-29],[-5,-10],[-7,-14],[-4,-17],[2,-14],[3,-7],[0,-7],[-2,-5],[-4,-3],[-1,2],[-2,4],[-3,2],[-4,-4],[-1,0],[-1,12],[1,12],[-1,9],[-13,7],[-1,10],[3,25],[-1,4],[-2,4],[-3,4],[-1,2],[-4,16],[-2,4],[-5,4],[-2,1],[0,2],[0,2],[-3,14],[-2,2],[-3,-4],[-6,26],[2,27],[8,22],[11,14],[4,-2],[2,-2],[3,-1],[2,5],[1,-5],[1,-4],[4,-7],[1,-3],[-1,-3],[0,-2],[5,-1],[1,-2],[0,-3],[0,-4],[1,-3],[3,-2],[2,-4],[3,-14],[2,-4],[6,-4],[-2,-4],[4,-9],[6,5],[6,-4],[6,-8],[6,-4]],[[93213,46133],[4,-5],[4,-6],[2,-7],[3,-6],[-5,-12],[-6,-3],[-14,3],[-5,5],[2,10],[7,21],[2,-1],[2,0],[4,1]],[[93281,46312],[9,-4],[2,-2],[4,-11],[0,-8],[-2,-8],[-1,-10],[-2,-4],[-5,-3],[-5,-1],[-3,2],[-5,-9],[-4,1],[-5,1],[-5,-5],[-3,2],[-3,7],[-2,3],[-8,5],[-1,3],[0,8],[7,33],[3,-3],[0,9],[2,11],[5,3],[-1,5],[0,3],[1,4],[3,-3],[10,-17],[9,-12]],[[93365,46373],[2,-3],[6,-3],[2,-2],[-3,-4],[-3,-1],[-3,2],[-3,3],[0,-9],[-2,-9],[-2,-8],[-3,-7],[-1,5],[0,2],[-1,2],[0,3],[-2,-4],[-2,-3],[-3,-2],[-3,1],[5,6],[4,8],[1,5],[-2,4],[-1,4],[-1,6],[1,8],[1,3],[3,1],[2,1],[-2,4],[-2,3],[-1,0],[-4,11],[-3,12],[1,12],[8,10],[6,0],[0,-4],[-4,-2],[-3,-5],[-2,-7],[-1,-9],[3,-5],[4,-2],[4,-4],[-1,-7],[4,-13],[1,-3]],[[96367,43576],[0,-9],[0,-11],[15,2],[2,-23],[-21,-3],[-6,-2],[-5,1],[-8,2],[-4,12],[-3,6],[-4,3],[-1,5],[-5,12],[-4,9],[0,10],[2,6],[3,3],[6,6],[5,0],[6,-1],[7,3],[6,-3],[12,-9],[-3,-19]],[[96265,43787],[-6,-14],[-3,-1],[-2,-1],[-3,1],[-2,3],[0,4],[0,5],[2,5],[1,4],[0,8],[-4,-5],[-4,-6],[-1,5],[0,14],[4,11],[5,9],[4,3],[4,-4],[5,-7],[2,-8],[0,-12],[-2,-14]],[[96151,44137],[-3,-7],[-1,-12],[-10,-8],[-4,-7],[-5,-5],[-3,-5],[-5,1],[-2,-1],[-7,6],[-4,-6],[-2,-3],[-3,1],[-10,-3],[-12,-29],[-8,-26],[-4,7],[1,17],[-3,8],[-4,1],[-7,-14],[-9,1],[-3,14],[-1,23],[0,12],[5,8],[2,8],[4,10],[2,0],[-1,-21],[4,-9],[3,-2],[1,8],[0,9],[1,15],[5,14],[8,17],[13,1],[20,-4],[9,8],[9,-4],[5,-5],[1,-3],[1,-2],[8,2],[8,-1],[1,-14]],[[94023,45963],[4,-4],[4,-8],[3,-10],[-1,-7],[-4,-1],[-4,6],[-3,8],[-2,8],[-3,-8],[-5,2],[-11,14],[1,-6],[3,-14],[-3,0],[-7,4],[-6,0],[0,3],[-1,9],[-3,8],[-6,4],[-1,2],[-1,4],[-1,4],[1,2],[3,-1],[4,-2],[2,-1],[0,-1],[3,-1],[1,2],[-1,6],[0,3],[1,3],[3,0],[2,-4],[3,-3],[7,-3],[4,-9],[4,-5],[6,-3],[4,-1]],[[94404,45429],[9,-13],[3,-10],[-4,-7],[-2,1],[-9,11],[-2,1],[-3,-1],[-1,0],[-1,3],[-1,4],[-1,4],[-5,4],[-3,10],[-6,4],[-2,4],[-4,11],[-8,15],[-3,6],[-1,5],[1,6],[-1,3],[-4,2],[-3,4],[-13,24],[-23,11],[-10,12],[-7,6],[-6,11],[-5,5],[-4,3],[-4,-3],[-10,12],[-5,3],[-4,-3],[-3,14],[-3,7],[-3,3],[-4,1],[-3,3],[-3,5],[0,8],[-6,-5],[-6,3],[-6,6],[-26,40],[-2,1],[-4,-1],[-2,0],[-1,4],[0,5],[0,5],[0,3],[-3,1],[-1,-2],[-1,-3],[-1,0],[-8,8],[-2,0],[-4,-1],[-1,1],[-1,1],[-1,8],[0,3],[-3,3],[-3,1],[-1,4],[-1,8],[-2,-3],[-6,-5],[0,12],[-3,9],[-4,5],[-5,3],[-16,16],[-2,22],[-2,11],[-5,-3],[-8,4],[-4,6],[2,8],[-3,7],[-3,5],[-2,0],[-3,-8],[-3,8],[-3,21],[-4,8],[-4,7],[-5,3],[-4,-2],[-3,10],[-12,14],[-5,8],[-1,8],[0,7],[1,5],[0,7],[0,24],[-21,39],[-15,16],[-2,9],[0,10],[2,7],[4,-1],[6,-8],[27,-20],[2,-3],[3,0],[3,7],[3,6],[4,-3],[1,2],[0,1],[1,1],[2,1],[2,-12],[4,-8],[11,-9],[1,3],[2,4],[2,4],[1,1],[4,-2],[1,-6],[1,-8],[2,-6],[5,-11],[4,-5],[2,-3],[2,-3],[5,-18],[5,-6],[4,-12],[2,-5],[4,-5],[10,-8],[5,-6],[8,-15],[6,-7],[-3,-12],[2,-10],[4,-6],[4,4],[12,-10],[3,-5],[2,-7],[1,-9],[2,-5],[3,3],[8,-12],[6,6],[5,2],[5,0],[7,-4],[-4,-3],[1,-6],[3,-5],[2,-2],[5,-1],[3,-3],[1,-5],[2,-7],[5,7],[2,-5],[3,-9],[2,-5],[9,-2],[4,2],[2,8],[5,-5],[2,-3],[2,-4],[5,6],[2,-6],[3,-12],[3,-11],[4,-7],[8,-9],[4,-6],[0,-1],[4,-3],[0,-2],[1,-5],[0,-1],[13,-22],[26,-32],[54,-86],[1,-6],[-6,-13],[-6,-17],[-2,-3],[-2,3],[-4,2],[-3,-1],[-2,-4],[0,-3],[5,-7],[2,-10],[2,0],[3,3],[2,5],[3,-5],[8,-24],[2,-9],[1,-9],[0,-12]],[[93989,45999],[-2,6],[-2,6],[-3,6],[-9,5],[-5,8],[-4,2],[-2,3],[-1,7],[2,6],[2,0],[2,-4],[3,-2],[3,-4],[1,-6],[4,2],[3,-3],[7,-11],[3,6],[6,-1],[7,-6],[5,-7],[-3,-3],[-2,-4],[0,-6],[1,-7],[-12,5],[-4,2]],[[93780,46085],[2,-5],[-2,-4],[0,-6],[0,-7],[2,-7],[-7,12],[-1,-9],[-3,-3],[-8,0],[0,4],[1,2],[3,4],[2,2],[-11,7],[-4,4],[-2,0],[-7,0],[-3,1],[5,7],[5,6],[7,-3],[8,2],[7,-1],[4,-11],[2,5]],[[93967,46080],[-1,-5],[-1,-6],[0,-6],[0,-7],[-4,5],[-2,4],[-2,-21],[-4,6],[-2,8],[-3,6],[-6,1],[0,3],[4,9],[2,0],[2,-1],[7,14],[6,3],[0,-16],[1,1],[2,1],[1,1]],[[93826,46083],[0,-9],[4,-22],[2,-8],[-8,-1],[-4,1],[-4,4],[-2,-1],[-2,-2],[-2,-1],[-2,1],[-2,6],[-2,1],[-5,7],[3,15],[9,23],[13,-10],[2,-4]],[[93757,46127],[0,-15],[-1,-7],[-3,-4],[-8,0],[-3,-5],[-7,-28],[-1,7],[-1,4],[-2,0],[-2,-2],[-4,6],[-6,3],[-13,2],[-5,4],[-4,8],[-1,11],[2,14],[-2,-2],[-2,-3],[-3,-7],[-2,2],[-2,-2],[0,-8],[-5,6],[-10,7],[-6,7],[-15,2],[-2,0],[-2,-6],[-4,0],[-4,6],[-3,18],[-3,9],[-4,8],[-3,3],[-2,-3],[-6,-4],[-4,-1],[3,8],[-3,10],[-4,8],[-6,5],[-6,2],[-3,3],[-5,8],[-26,64],[-1,6],[-1,7],[-1,6],[-2,3],[-4,2],[-2,5],[-3,14],[-11,32],[-3,4],[-3,6],[-10,35],[-4,7],[-14,15],[-4,2],[-3,4],[-31,57],[-1,2],[-6,10],[-1,8],[-3,33],[1,12],[2,8],[9,16],[5,2],[6,-2],[6,-4],[3,-8],[2,-2],[2,-3],[1,-5],[1,-5],[3,0],[2,2],[1,1],[11,-7],[7,-11],[15,-35],[4,-7],[12,-18],[12,-7],[17,-25],[12,-12],[10,-4],[5,-5],[3,-2],[3,-4],[2,-7],[1,-4],[2,-1],[3,0],[3,-1],[3,-5],[6,-17],[10,-19],[3,-8],[0,-11],[1,-25],[3,-27],[5,-22],[2,-8],[3,-6],[3,-8],[1,-11],[4,6],[2,3],[2,-11],[4,-7],[5,-5],[5,-2],[4,-4],[3,-8],[1,-10],[1,-8],[1,-6],[4,-3],[8,-6],[3,-4],[4,-5],[3,-8],[2,-7],[1,0],[1,10],[2,0],[3,-4],[3,-2],[6,0],[3,1],[10,8],[5,0],[4,-5],[1,-14]],[[96891,43205],[3,0],[1,-9],[-2,-2],[-4,-3],[-2,5],[2,5],[2,4]],[[96039,44298],[-2,-2],[-2,1],[-2,6],[0,7],[1,4],[2,3],[4,-3],[2,-7],[0,-6],[-3,-3]],[[94620,45796],[3,-21],[-1,-1],[-3,1],[-5,16],[-2,7],[2,7],[3,1],[1,-3],[2,-7]],[[96384,43591],[0,-5],[-2,-9],[-4,-7],[-5,-2],[-2,7],[1,10],[4,8],[5,0],[3,-2]],[[96180,44391],[4,0],[4,-5],[-3,-11],[-5,-11],[-4,-1],[0,9],[0,8],[-2,0],[0,4],[2,12],[1,13],[-1,11],[2,-3],[-1,-29],[2,2],[1,1]],[[93484,45855],[1,-2],[3,-4],[-1,-9],[-6,-6],[-5,6],[0,5],[2,6],[3,5],[3,-1]],[[99774,45411],[3,7],[1,7],[-1,5],[-1,7],[0,10],[1,12],[2,-8],[0,-14],[2,-8],[1,-5],[-3,-6],[-5,-7]],[[99549,45690],[-2,1],[1,8],[2,10],[2,7],[-3,-26]],[[99208,46207],[0,2],[-1,2],[0,2],[1,-4],[0,-3],[0,1]],[[98975,46737],[2,8],[1,0],[-1,-3],[-2,-5]],[[99261,46845],[-1,4],[0,2],[-1,1],[4,-1],[2,-2],[0,-3],[-4,-1]],[[98925,47098],[-2,8],[1,1],[3,-5],[2,-12],[-4,8]],[[99973,44903],[0,-11],[0,-1],[-1,12],[-1,8],[1,-1],[1,-7]],[[99962,44936],[2,-2],[1,-8],[0,-1],[-2,7],[-1,4]],[[99633,46033],[-4,17],[-1,5],[7,-12],[1,-5],[0,-6],[0,-3],[-3,4]],[[70322,50066],[3,-4],[-2,0],[0,1],[-1,3]],[[70334,50072],[-1,-2],[-1,-2],[0,-2],[-2,-1],[0,4],[1,1],[3,2]],[[70312,50081],[0,-6],[-1,1],[0,1],[0,2],[1,2]],[[70344,50099],[-4,-10],[0,6],[1,6],[1,2],[2,-4]],[[70346,50121],[-1,-11],[-2,4],[0,5],[0,5],[3,3],[0,-1],[0,-2],[0,-1],[0,-2]],[[70398,50302],[2,-6],[1,-3],[0,-4],[-2,4],[-1,3],[0,3],[0,3]],[[70304,50605],[1,-2],[1,-1],[0,-2],[0,-4],[-1,2],[-1,1],[0,1],[0,2],[0,3]],[[70335,50612],[2,-2],[-1,-3],[-1,2],[0,3]],[[70287,50630],[0,-1],[1,-6],[-1,1],[0,1],[0,1],[0,1],[0,3]],[[70382,50639],[-2,-4],[0,4],[1,1],[1,-1]],[[70273,50650],[0,-1],[1,0],[0,-1],[-1,-1],[-1,2],[1,1]],[[70420,50699],[-2,-4],[0,3],[0,1],[1,0],[1,0]],[[70266,50709],[0,-1],[0,-5],[-1,2],[0,1],[0,1],[1,2]],[[70261,50764],[0,-6],[-1,3],[0,1],[1,2]],[[70414,50771],[0,-1],[0,-5],[-1,1],[0,1],[0,2],[1,2]],[[70385,50850],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,1]],[[70381,50922],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,1]],[[70375,50972],[0,-2],[0,-1],[0,-1],[-1,2],[1,1],[0,1]],[[70230,52549],[1,-2],[0,-1],[-1,-1],[-1,1],[1,1],[0,2]],[[70220,52552],[0,-1],[1,-1],[0,-1],[-2,0],[0,1],[1,1],[0,1]],[[70257,52573],[-4,-6],[1,4],[1,2],[1,0],[1,0]],[[70261,52613],[0,-2],[1,0],[0,-1],[-1,-1],[-1,1],[0,1],[1,0],[0,2]],[[70192,52677],[0,-2],[1,-2],[0,-1],[-1,-2],[0,1],[-1,1],[0,1],[0,2],[1,2]],[[70410,52804],[-2,-4],[-1,-1],[0,2],[1,1],[2,2]],[[70195,52840],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,1],[0,1],[-1,0],[1,1],[1,1]],[[70418,52900],[0,-6],[-1,2],[0,1],[0,1],[0,1],[1,1]],[[70269,52996],[0,-1],[1,-1],[0,-1],[-1,0],[0,2],[0,1]],[[70472,53096],[0,-1],[-1,-1],[1,2]],[[70472,53107],[-1,-2],[1,1],[0,1]],[[70382,53119],[0,-5],[-1,1],[0,1],[0,2],[1,1]],[[70390,53215],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,2],[0,1],[1,2]],[[70413,53267],[0,-2],[0,-1],[0,-1],[-1,1],[0,1],[1,1],[0,1]],[[70271,53369],[-2,-9],[0,6],[0,2],[1,1],[1,0]],[[70254,53371],[2,0],[-1,-1],[-1,1]],[[70401,53414],[-3,-1],[1,3],[1,0],[0,-1],[1,-1]],[[70253,53451],[-1,-2],[0,1],[1,1]],[[70257,53452],[0,-1],[-1,0],[0,-1],[1,2]],[[70290,53503],[-1,-2],[1,2]],[[70291,53510],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,2]],[[70302,53526],[0,-1],[-1,-1],[1,2]],[[70306,53533],[1,-1],[1,0],[-1,0],[-1,1]],[[70238,53572],[0,-2],[-1,0],[1,2]],[[70314,53576],[0,-2],[-1,0],[1,2]],[[70416,53577],[-1,-1],[-1,0],[2,1]],[[70442,53598],[-3,-4],[-1,-1],[-3,2],[2,2],[2,1],[1,0],[2,0]],[[70308,53608],[0,-1],[-1,-1],[1,2]],[[70408,53613],[-2,-1],[1,1],[1,0]],[[70452,53628],[-1,-1],[-1,0],[2,1]],[[70457,53634],[-2,-1],[1,1],[1,0]],[[70264,53640],[0,-2],[-1,0],[1,2]],[[70387,53645],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,1]],[[70367,53649],[0,-1],[1,0],[1,0],[-1,-2],[-2,0],[-1,1],[1,1],[1,0],[0,1]],[[70375,53684],[-2,0],[0,-1],[1,2],[1,-1]],[[70426,53698],[0,-1],[-1,0],[1,1]],[[70378,53705],[0,-2],[-1,-1],[1,3]],[[70261,53708],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,0],[0,1]],[[70281,53723],[0,-2],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70406,53753],[-1,-1],[-1,0],[2,1]],[[70279,53853],[-1,-1],[0,-2],[0,-1],[-1,0],[0,3],[0,1],[1,0],[1,0]],[[70263,54230],[0,-1],[1,0],[0,-1],[0,-2],[-1,1],[0,1],[0,1],[0,1]],[[70247,54291],[1,-2],[0,-1],[1,0],[-1,-1],[-1,1],[0,2],[0,1]],[[70304,50115],[2,-5],[2,-6],[1,-7],[1,-7],[-2,0],[-5,22],[-1,11],[4,4],[0,-5],[-1,0],[-1,-2],[0,-2],[0,-3]],[[70378,51530],[1,0],[2,-1],[-1,-4],[-1,1],[0,2],[-1,2]],[[70388,51539],[1,-2],[0,-3],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[1,2],[0,1]],[[70403,51552],[3,-1],[-2,-3],[-1,0],[0,2],[0,2]],[[70421,51561],[-2,-3],[-3,-6],[-1,1],[1,2],[1,1],[1,2],[3,3]],[[70426,51577],[-1,-5],[0,-1],[0,2],[0,2],[1,1],[0,1]],[[70347,51590],[-2,-2],[0,3],[0,1],[1,-1],[1,-1]],[[70431,51614],[-1,-12],[-1,-6],[-2,-5],[0,-1],[3,20],[1,4]],[[70430,51640],[0,-6],[-1,1],[0,2],[1,3]],[[70365,51649],[1,-1],[1,-1],[0,-1],[-1,-2],[-1,1],[0,1],[0,1],[0,2]],[[70428,51670],[0,-3],[-1,0],[1,2],[0,1]],[[70385,51674],[0,-3],[-1,1],[1,2]],[[70431,51703],[-1,-6],[0,2],[0,1],[1,1],[0,2]],[[70435,51719],[5,0],[-1,-1],[-1,-1],[-3,-5],[-2,-2],[0,3],[0,2],[2,4]],[[70289,51753],[0,-1],[-1,0],[1,1]],[[70306,51765],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[1,1]],[[70309,51772],[1,-1],[1,-3],[-2,0],[0,1],[0,1],[0,2]],[[70263,51817],[-1,-2],[-1,1],[2,1]],[[70257,51848],[0,-7],[-1,2],[0,2],[0,1],[1,2]],[[70373,51860],[0,-2],[-1,-1],[1,3]],[[70375,51913],[2,-7],[2,-7],[0,-1],[0,-8],[-1,-8],[-3,26],[0,5]],[[70365,51954],[0,-7],[-1,0],[0,1],[0,2],[0,1],[1,3]],[[70317,51982],[0,-2],[-1,0],[1,2]],[[70249,52058],[1,-1],[1,0],[0,-3],[-1,1],[-1,0],[0,2],[0,1]],[[70242,52065],[0,-6],[-2,2],[0,1],[1,1],[1,2]],[[70283,52093],[3,2],[-1,-4],[-1,0],[-1,2]],[[70375,52115],[0,-2],[0,-1],[0,-1],[-1,2],[0,1],[1,1]],[[70388,52119],[-2,-6],[0,4],[1,2],[1,0]],[[70429,52183],[1,0],[0,-1],[0,-2],[-1,3]],[[70377,52189],[0,-1],[1,-1],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[0,1]],[[70279,52219],[2,-4],[-1,-1],[0,1],[0,1],[-1,3]],[[70434,52220],[0,-1],[-1,-5],[0,2],[0,1],[1,3]],[[70440,52224],[-3,-7],[1,4],[1,2],[1,1]],[[70241,52228],[-1,-5],[0,-1],[0,1],[1,5]],[[70250,52296],[0,-1],[1,-1],[0,-2],[-2,0],[0,1],[0,1],[1,2]],[[70447,52310],[0,-3],[-1,-1],[1,4]],[[70271,52312],[0,-1],[0,-1],[1,-1],[-1,-2],[-1,1],[0,1],[1,1],[0,2]],[[70289,52368],[0,-1],[1,-1],[0,-2],[-2,0],[0,1],[1,1],[0,2]],[[70286,52396],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[1,2],[0,1]],[[70231,52431],[0,-1],[1,0],[0,-1],[0,-1],[-2,-1],[0,1],[1,1],[0,2]],[[70421,52460],[0,-1],[0,-2],[0,3]],[[70485,52513],[1,-2],[-1,1],[0,1]],[[70418,52543],[0,-3],[0,1],[0,2]],[[70264,52681],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[70262,52704],[0,-2],[1,0],[0,-1],[-1,-2],[0,1],[-1,1],[1,1],[0,2]],[[70262,52742],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[1,1]],[[70399,52748],[-1,-1],[-1,-2],[0,1],[0,2],[1,0],[1,0]],[[70400,52791],[0,-1],[-1,-1],[1,2]],[[70373,52806],[-1,-2],[0,1],[1,1]],[[70394,52909],[0,-2],[-1,0],[1,2]],[[70429,52982],[2,-3],[-1,-5],[0,-10],[-3,-17],[-4,-7],[-4,-5],[-7,1],[-3,2],[-12,10],[0,3],[22,-2],[3,3],[1,10],[2,13],[4,7]],[[70262,52996],[4,-2],[-2,-1],[0,1],[-2,2]],[[70443,53041],[-1,-1],[-1,0],[2,1]],[[70447,53054],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,2],[0,1],[1,2]],[[70454,53058],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,2],[1,0],[0,1]],[[70463,53072],[0,-2],[0,-1],[0,-1],[-1,-1],[0,2],[0,1],[1,2]],[[70265,53098],[0,-9],[-2,0],[-1,0],[-1,5],[4,4]],[[70431,53206],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1]],[[70452,53679],[1,-5],[1,-5],[0,-5],[-1,-5],[-2,16],[1,4]],[[70279,53705],[-1,-1],[0,-2],[-1,-1],[0,3],[0,1],[1,0],[1,0]],[[70245,53723],[-1,-1],[0,-1],[0,-1],[-1,2],[0,1],[1,0],[1,0]],[[70282,53797],[0,-2],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70281,53832],[0,-1],[0,-2],[-1,-1],[-1,2],[1,1],[1,1]],[[70386,53868],[0,-1],[-3,-13],[0,4],[3,10]],[[70273,53887],[0,-3],[-1,-2],[1,5]],[[70383,53902],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[-1,2],[0,1],[1,2],[0,2]],[[70271,53913],[-1,-6],[-1,2],[0,2],[1,0],[1,2]],[[70402,53929],[-4,-6],[-1,0],[2,4],[1,2],[1,0],[1,0]],[[70267,53943],[0,-1],[1,-8],[-1,2],[-1,2],[1,5]],[[70396,53970],[0,-1],[0,-2],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70258,54005],[0,-8],[-2,4],[1,2],[1,2]],[[70385,54005],[2,-7],[-3,2],[0,2],[1,3]],[[70254,54012],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[1,-1],[1,0]],[[70347,54072],[-1,-2],[-1,0],[2,2]],[[70347,54089],[-1,-2],[0,1],[1,1]],[[70338,54101],[0,-1],[-1,-1],[1,2]],[[70352,54116],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,0],[0,1]],[[70338,54125],[-1,-2],[0,1],[1,1]],[[70352,54135],[0,-6],[-1,2],[0,2],[1,1],[0,1]],[[70287,54155],[-2,-2],[1,1],[1,1]],[[70344,54165],[0,-2],[1,-1],[0,-2],[-1,-1],[-1,1],[0,2],[1,1],[0,2]],[[70313,54193],[-1,-2],[-1,0],[2,2]],[[70337,54198],[0,-1],[-1,-3],[-1,-1],[2,5]],[[70300,54206],[0,-2],[-1,0],[1,2]],[[70332,54217],[0,-2],[1,0],[0,-1],[0,-3],[-2,1],[0,1],[1,2],[0,2]],[[70312,54220],[-2,-2],[1,1],[1,1]],[[70329,54231],[-1,-1],[0,-1],[0,-1],[-1,1],[0,1],[1,1],[0,-1],[1,1]],[[70283,54241],[0,-1],[1,0],[0,-1],[0,-1],[-2,0],[0,1],[1,1],[0,1]],[[70191,54267],[0,-1],[-1,-2],[0,1],[0,2],[1,0]],[[70250,54284],[1,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1]],[[70291,54284],[-1,-3],[-1,-1],[2,4]],[[70267,54354],[-1,-1],[0,-1],[-1,-1],[0,1],[0,3],[1,0],[0,-1],[1,0]],[[70256,54358],[0,-2],[1,0],[0,-1],[0,-1],[-1,1],[0,2],[0,1]],[[70285,54368],[0,-2],[0,-1],[1,-1],[-1,0],[-1,2],[0,1],[1,0],[0,1]],[[70290,54391],[-1,-1],[0,-1],[-1,-1],[0,1],[0,3],[1,0],[1,-1]],[[70296,54419],[-2,-5],[0,4],[1,1],[1,0]],[[70307,54443],[-1,-2],[-1,-2],[0,-2],[-1,0],[0,4],[1,2],[2,0]],[[70287,54473],[0,-2],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70254,54475],[0,-1],[0,-1],[-1,0],[0,3],[1,0],[0,-1]],[[70321,54489],[2,0],[0,-1],[0,-1],[0,-2],[-3,-18],[-3,-8],[-3,-7],[1,10],[4,16],[2,11]],[[70328,54515],[4,-2],[-2,-3],[-2,-1],[-1,2],[1,4]],[[70276,54521],[-1,-1],[0,-1],[0,-1],[-1,1],[0,3],[1,0],[1,-1]],[[70317,54522],[-1,-2],[-1,0],[1,3],[1,0],[0,-1]],[[70270,54528],[0,-1],[0,-2],[0,-1],[-1,2],[0,1],[1,1]],[[70304,54528],[0,-1],[-1,-1],[0,-1],[0,3],[0,1],[1,-1]],[[70267,54533],[0,-1],[-1,-1],[0,-1],[0,3],[0,1],[1,-1]],[[70307,54554],[-1,-2],[1,-1],[0,-1],[-1,0],[-1,2],[0,1],[1,0],[1,1]],[[70337,54567],[-1,-8],[-1,-8],[-1,-4],[-1,5],[0,5],[1,6],[1,4],[2,0]],[[70257,54590],[0,-2],[-1,-1],[1,3]],[[70332,54598],[-1,-12],[-1,1],[0,5],[0,4],[1,2],[1,0]],[[70247,54610],[0,-2],[0,-1],[0,3]],[[70271,54632],[0,-1],[1,-8],[-1,3],[0,3],[0,3]],[[70263,54649],[0,-4],[0,2],[0,2]],[[70253,54670],[0,-6],[-2,4],[0,1],[1,0],[1,1]],[[70245,54679],[0,-1],[0,-1],[-1,-2],[1,4]],[[96371,50179],[5,-4],[0,-12],[-2,-13],[-3,-7],[-6,2],[-3,14],[2,14],[7,6]],[[95284,53633],[1,-3],[2,-2],[2,-1],[1,-5],[-1,-7],[-5,-18],[-2,-5],[-4,-2],[-3,2],[-3,3],[-4,2],[-6,0],[-4,1],[-4,3],[-2,10],[4,10],[13,24],[5,8],[6,3],[4,-7],[0,-3],[0,-9],[0,-4]],[[93969,54578],[1,-5],[3,-3],[2,1],[3,3],[4,-30],[0,-6],[-2,-2],[-6,1],[-1,-1],[0,-7],[3,-11],[0,-7],[-1,-9],[-2,-6],[-4,-2],[-13,-4],[-5,1],[-3,6],[-6,-4],[-4,5],[-3,9],[-2,6],[1,8],[0,8],[-1,7],[-3,6],[1,2],[2,6],[-8,1],[-2,9],[2,20],[2,6],[6,0],[4,3],[1,14],[6,-6],[2,-2],[3,3],[2,0],[2,-2],[2,-1],[7,0],[3,0],[0,-2],[5,-6],[2,-6],[0,-1],[-3,-2]],[[92107,54842],[9,5],[4,-3],[4,-10],[0,-9],[-1,-11],[-3,-5],[-3,9],[-2,0],[-3,-4],[-3,1],[-4,2],[-4,1],[1,2],[1,1],[2,1],[3,2],[7,4],[2,4],[-2,6],[-6,-2],[-2,6]],[[92187,54887],[2,3],[2,-1],[3,-2],[4,0],[-2,-7],[-5,-7],[-5,-5],[-5,-1],[0,7],[1,6],[1,11],[1,-1],[1,0],[2,-3]],[[88386,56141],[-3,-11],[1,-8],[3,-3],[6,5],[-1,-6],[-3,-10],[-4,-8],[-3,-4],[-4,3],[-2,12],[-4,-3],[-2,-5],[-15,-51],[-4,-8],[-1,14],[3,20],[4,18],[5,8],[2,4],[2,20],[2,7],[4,5],[1,-4],[1,-16],[1,6],[0,6],[2,5],[1,4],[3,3],[3,4],[2,0],[0,-7]],[[93001,51019],[2,-1],[1,-2],[-1,-3],[-3,0],[-1,4],[1,2],[1,0]],[[92975,51041],[2,3],[3,-2],[-1,-3],[-4,0],[0,2]],[[92997,51045],[1,-3],[-1,-2],[-2,0],[-2,3],[0,3],[2,1],[2,-2]],[[93021,52692],[-1,9],[5,7],[0,-10],[-4,-6]],[[92996,52715],[1,-9],[-5,-6],[-1,9],[5,6]],[[92685,53600],[1,7],[3,7],[5,4],[2,-1],[0,-5],[-4,-6],[-5,-4],[-2,-2]],[[93655,53889],[0,1],[-1,1],[0,1],[1,1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[91476,54436],[0,4],[0,3],[1,3],[1,3],[0,-4],[0,-3],[-1,-3],[-1,-3]],[[93870,54448],[1,6],[1,2],[2,0],[0,-3],[-1,-2],[-3,-3]],[[92182,54803],[-1,22],[0,9],[2,-5],[1,-6],[0,-7],[-1,-7],[-1,-6]],[[91440,54835],[-2,6],[2,0],[0,-1],[0,-2],[0,-3]],[[91779,55548],[-1,6],[1,0],[1,-2],[-1,-2],[0,-2]],[[91574,55548],[-1,7],[0,10],[3,7],[3,0],[0,-5],[-1,-8],[-3,-7],[-1,-4]],[[91699,55786],[1,5],[1,1],[2,-1],[-1,-3],[-1,-1],[-1,0],[-1,-1]],[[89031,56254],[2,4],[3,1],[0,-2],[-2,-5],[-3,-2],[0,4]],[[42429,15258],[1,6],[2,4],[3,1],[27,1],[0,-4],[-3,-5],[-1,-6],[-1,-5],[-17,0],[-6,2],[-5,6]],[[42408,15270],[2,-6],[0,-6],[2,-5],[4,-3],[-3,-1],[-3,1],[-3,1],[-3,3],[-8,5],[-7,7],[-3,7],[9,5],[13,0],[0,-2],[0,-3],[0,-3]],[[42602,15525],[10,3],[9,-4],[18,-15],[-7,-8],[-6,-6],[-7,-4],[-7,-2],[-10,3],[-6,10],[-1,13],[7,10]],[[42705,15863],[1,-5],[4,-10],[1,-4],[-2,-12],[0,-6],[-1,2],[-1,1],[-1,0],[-12,10],[-36,14],[-8,16],[1,3],[2,4],[2,6],[1,7],[2,4],[4,2],[29,0],[9,-3],[9,-9],[-4,-20]],[[42659,16232],[-7,1],[-8,5],[-6,8],[-3,10],[10,16],[5,4],[6,-3],[1,-4],[2,-12],[3,-5],[3,-3],[5,-1],[8,0],[-4,-7],[-5,-3],[-10,-6]],[[42574,16678],[5,7],[7,-1],[6,-8],[5,-10],[-2,0],[0,-1],[-1,-1],[-1,-2],[-2,4],[-3,-1],[-5,4],[-9,9]],[[42458,16905],[4,-1],[6,-5],[5,-5],[1,-7],[-4,-5],[-16,-5],[-9,3],[-3,3],[-1,8],[2,6],[5,4],[5,3],[5,1]],[[42330,17133],[5,8],[6,3],[6,-2],[6,-5],[0,-4],[-4,-3],[-4,-8],[-3,-6],[-4,4],[-6,10],[-2,3]],[[39699,18214],[4,1],[5,-6],[9,-13],[0,-4],[-2,0],[-1,-1],[-2,-2],[-1,-1],[-7,-2],[-3,0],[-3,2],[0,4],[5,0],[-11,8],[-1,8],[2,3],[3,1],[3,2]],[[39420,18488],[2,7],[5,2],[10,-1],[-11,-7],[-3,-1],[-3,0]],[[40025,18083],[-8,-1],[6,-16],[12,-12],[14,-9],[11,-3],[0,-5],[-4,-1],[-4,-3],[-3,-5],[-1,-4],[-3,-2],[-5,0],[-9,4],[-6,-12],[-8,-4],[-9,3],[-8,4],[-13,14],[-8,5],[-9,1],[3,-6],[3,-5],[4,-3],[4,-1],[4,-2],[5,-10],[4,-5],[3,-2],[3,-1],[7,0],[3,-2],[5,-8],[3,-3],[0,-4],[-3,0],[-3,0],[-3,1],[-2,3],[0,-3],[1,-6],[1,-3],[-8,0],[-3,2],[-3,6],[-1,-7],[1,-4],[0,-5],[-3,0],[-6,3],[-3,1],[-2,-2],[-2,-3],[-3,-3],[-8,0],[-4,1],[-3,4],[-2,7],[3,0],[2,1],[3,3],[-11,8],[-13,21],[-5,3],[-7,6],[-10,15],[0,8],[-3,-1],[-4,9],[1,9],[-3,10],[-2,12],[-10,22],[-21,36],[-3,4],[-4,1],[-4,2],[-4,3],[-2,4],[1,7],[4,7],[1,5],[-3,8],[-7,8],[-7,6],[-5,2],[-8,0],[-3,-2],[-5,-8],[-4,-2],[-4,1],[-4,3],[-4,7],[-4,7],[-3,6],[-29,16],[-2,1],[-2,-1],[-2,0],[-1,3],[0,2],[1,7],[1,1],[0,3],[1,4],[1,3],[-1,4],[-1,1],[-1,-1],[-1,2],[-4,6],[-6,4],[-6,2],[-5,0],[2,4],[-6,4],[2,6],[2,3],[4,0],[4,-1],[-7,10],[-11,0],[-22,-6],[-3,2],[-11,7],[-5,6],[-3,3],[-1,3],[0,4],[1,5],[1,5],[-3,2],[-4,2],[-4,3],[-4,5],[-4,4],[-2,2],[-5,-3],[-3,1],[-5,4],[-6,2],[-5,0],[-8,-6],[-17,-3],[-5,-2],[-5,-5],[-2,4],[-2,2],[-3,1],[-3,-3],[-3,9],[1,4],[21,11],[4,0],[-5,9],[-16,8],[-4,11],[12,0],[13,5],[23,16],[-7,4],[-25,-1],[-10,-3],[-4,1],[-6,6],[-3,1],[-26,0],[-7,-2],[-2,-6],[2,-6],[6,-2],[-5,-3],[-22,-6],[-11,2],[-6,-1],[2,2],[1,4],[1,2],[-4,3],[-9,13],[10,8],[5,5],[4,7],[-5,2],[-9,-1],[-5,3],[17,12],[8,8],[5,13],[-33,0],[-16,-4],[-5,2],[-5,5],[-4,1],[-15,-8],[-9,-1],[-7,7],[-6,3],[-10,-14],[-6,1],[1,5],[1,6],[2,4],[4,1],[-2,5],[-1,2],[-2,1],[-3,0],[5,4],[14,0],[14,7],[6,1],[6,-2],[9,-8],[5,-2],[6,1],[6,4],[6,5],[5,6],[0,6],[6,0],[7,-2],[6,-4],[-3,-1],[-1,-2],[-1,-3],[-1,-6],[55,2],[20,8],[11,2],[0,-4],[-17,-12],[2,-4],[-2,-8],[-6,0],[6,-7],[4,-4],[5,-1],[7,0],[2,0],[5,3],[2,1],[17,0],[16,-14],[3,-1],[1,10],[5,2],[5,0],[4,3],[-1,6],[4,1],[6,0],[4,1],[-5,-9],[2,-3],[4,0],[3,0],[0,-7],[-3,-4],[-7,-6],[2,-5],[-1,-5],[-1,-5],[-2,-5],[8,1],[6,8],[5,10],[6,10],[6,4],[9,3],[8,-1],[2,-11],[-12,-14],[-5,-8],[4,-6],[6,2],[22,18],[-1,2],[-3,5],[-1,1],[5,3],[7,-1],[14,-6],[8,-5],[2,-3],[0,-6],[-3,-7],[1,-7],[-2,-5],[2,-4],[3,-1],[3,2],[1,4],[1,15],[1,5],[7,3],[28,-7],[-2,-4],[5,0],[3,-1],[3,-3],[0,-4],[-2,-5],[-1,-2],[-1,-5],[-5,3],[-5,1],[-4,-2],[-5,-6],[8,-3],[3,-2],[-1,-4],[-3,-1],[-7,0],[-4,-2],[8,-6],[8,1],[17,8],[16,5],[2,-4],[3,-6],[3,-3],[4,5],[2,-4],[0,-2],[0,-3],[-2,-4],[-4,5],[-4,0],[-9,-5],[-4,-4],[-23,-22],[-2,-1],[-2,-1],[-1,-4],[0,-2],[2,-4],[0,-4],[-2,-6],[7,-1],[5,1],[5,3],[19,20],[7,4],[5,-7],[3,5],[4,-2],[2,-8],[-1,-9],[-2,-2],[-3,0],[-2,-1],[-1,-5],[0,-3],[2,-2],[1,-3],[-2,-6],[3,-6],[1,-6],[-1,-7],[-3,-6],[11,17],[6,4],[5,-2],[7,-17],[5,-8],[6,-2],[5,5],[0,8],[-3,10],[-2,12],[-1,4],[-6,10],[-2,5],[-1,3],[-1,5],[0,7],[18,-8],[9,-7],[1,-9],[4,1],[3,0],[2,-2],[1,-5],[1,-7],[0,-4],[0,-4],[-3,-4],[8,-8],[0,-2],[-4,-4],[-2,-12],[4,-3],[23,1],[-1,-8],[0,-7],[-2,-7],[-5,-2],[2,-6],[2,-4],[2,-2],[4,-1],[0,-5],[2,-3],[4,-2],[3,-2],[2,1],[4,3],[2,-1],[4,-7],[7,1],[3,-2],[1,-5],[1,-7],[2,-4],[3,-2],[-5,-6],[-6,-6],[-12,-18],[3,-4],[5,-9],[3,-2],[5,-2],[25,2],[4,3],[8,8],[3,2],[3,-1],[-1,-7],[-5,-18],[-6,-15],[-2,-1],[7,-27],[1,-13]],[[42163,16883],[5,6],[6,-1],[1,-6],[-5,-6],[-7,0],[0,7]],[[33418,19551],[5,-4],[-1,-8],[-4,-8],[-5,-4],[-2,0],[-3,-3],[-2,-3],[-3,-9],[-2,0],[-3,5],[0,7],[0,1],[0,1],[0,1],[-1,0],[3,5],[3,8],[1,9],[-1,11],[-4,7],[-4,4],[-4,5],[-2,10],[2,11],[3,-5],[4,-16],[14,2],[6,-2],[4,-8],[-1,-3],[-2,-4],[-1,-4],[0,-6]],[[33001,19783],[-3,-1],[-8,-8],[0,-3],[3,-2],[2,-1],[3,1],[3,2],[-6,-15],[-10,0],[-10,9],[-8,13],[1,2],[2,2],[3,1],[2,-2],[6,-2],[5,-6],[1,2],[1,8],[1,3],[0,4],[2,3],[2,2],[3,-1],[2,-2],[2,-4],[1,-5]],[[33070,19706],[-8,-4],[-6,1],[-13,7],[1,6],[1,2],[-4,0],[-2,4],[-1,5],[-1,3],[-3,1],[-5,1],[-3,2],[-1,1],[-1,2],[-1,1],[-1,0],[2,13],[-2,8],[-4,5],[-5,2],[5,8],[3,4],[5,1],[11,-1],[2,1],[3,10],[5,11],[4,4],[4,3],[1,0],[3,0],[1,0],[2,-2],[1,-2],[0,-3],[1,-1],[6,-4],[2,-4],[-1,-6],[-6,-6],[-13,-11],[-5,-10],[-1,-5],[2,-1],[20,9],[8,10],[6,4],[4,7],[3,13],[-1,5],[-3,2],[-1,2],[3,7],[3,5],[3,0],[2,-3],[1,-8],[0,-5],[-1,-6],[-2,-6],[-1,-3],[-2,-6],[-1,-14],[0,-7],[-2,-7],[-6,-17],[12,0],[-3,-5],[-2,-11],[-1,-5],[-4,-3],[-13,-4]],[[32980,19864],[6,0],[10,-6],[5,-2],[-4,-4],[-11,1],[-5,-3],[-2,-6],[-1,-7],[0,-18],[-3,2],[-4,3],[-3,5],[-1,6],[2,12],[2,8],[3,5],[6,4]],[[33435,19828],[-7,-12],[-19,-23],[-29,-56],[-6,-16],[-2,-9],[-3,-7],[-5,-5],[-12,-5],[-18,-17],[-2,17],[-1,3],[-7,1],[-3,2],[-2,2],[-1,7],[-3,0],[-3,-3],[-1,-4],[-1,-6],[3,-12],[-1,-5],[-5,-5],[-24,3],[-7,-5],[-3,-1],[-2,6],[1,3],[5,7],[2,5],[-18,-10],[-5,-5],[-3,-11],[2,-9],[3,-10],[2,-13],[-1,-9],[-4,-7],[-22,-35],[-3,-4],[-7,0],[-8,9],[-6,-1],[1,-1],[0,-3],[0,-4],[0,-2],[-2,-2],[-2,3],[-2,3],[-5,5],[-5,11],[-2,2],[-3,2],[-5,6],[-4,0],[-2,-2],[0,-4],[1,-4],[7,-5],[4,-8],[4,-11],[1,-10],[-11,-18],[-16,-12],[-15,2],[-9,24],[3,-1],[3,-1],[3,0],[2,2],[-5,5],[-7,10],[-6,12],[-3,9],[3,2],[3,6],[2,6],[-5,3],[-28,1],[-3,-1],[-2,-5],[1,-2],[4,-1],[3,-1],[6,-3],[6,-9],[6,-11],[2,-9],[-16,0],[-4,1],[-3,2],[-1,5],[-13,22],[-3,4],[-4,1],[-3,0],[-4,1],[-5,7],[-9,16],[-5,6],[-13,3],[-4,7],[2,14],[3,6],[7,-2],[15,-8],[12,-1],[3,-3],[1,-6],[0,-6],[1,-5],[5,1],[-4,20],[19,3],[18,9],[0,4],[-9,7],[-8,2],[-6,4],[-6,15],[24,1],[13,-5],[5,-12],[2,0],[1,4],[1,3],[4,6],[0,-7],[2,-5],[2,-2],[3,3],[2,4],[3,1],[3,-2],[8,-2],[3,-2],[4,-5],[5,-6],[2,0],[3,6],[-4,4],[0,4],[7,0],[8,2],[7,4],[6,6],[8,18],[1,2],[1,3],[-2,5],[-3,2],[-4,-3],[-10,-12],[-13,-7],[-14,0],[-11,9],[22,-2],[5,4],[2,2],[6,3],[1,3],[1,5],[2,6],[3,4],[2,3],[-3,7],[0,5],[2,4],[1,4],[-1,6],[-1,13],[0,8],[3,10],[6,7],[8,3],[6,-2],[-3,-5],[-2,-4],[-5,-7],[9,3],[3,0],[2,-5],[-1,-6],[-5,-16],[3,-3],[8,-10],[0,10],[3,7],[3,4],[5,-1],[-3,9],[-1,7],[1,19],[1,6],[2,3],[3,2],[3,-1],[2,-2],[2,-10],[2,-4],[2,0],[2,3],[2,1],[1,-6],[2,-2],[2,3],[9,10],[1,11],[-1,12],[1,9],[-8,3],[-6,-2],[-7,-3],[-7,-2],[-16,3],[-7,-3],[2,-13],[-3,-6],[-2,0],[-2,2],[-3,1],[-13,-11],[-3,-2],[-13,0],[-4,-2],[-2,-5],[-1,-5],[-2,-4],[-6,0],[-3,9],[-2,10],[-5,5],[-6,4],[-6,9],[-3,12],[0,12],[4,10],[5,-1],[5,-6],[28,-11],[8,0],[6,4],[13,13],[7,3],[21,-3],[20,10],[6,-1],[11,-16],[7,-4],[16,-2],[-5,11],[-6,6],[-8,3],[-7,0],[-6,4],[-16,25],[-3,2],[-6,3],[-3,3],[-7,16],[-7,1],[-41,25],[-4,4],[-3,13],[0,7],[2,3],[17,0],[13,-5],[3,3],[-4,12],[-6,8],[-7,5],[-8,4],[-10,2],[-8,-1],[-4,0],[-8,7],[-4,1],[-3,2],[-3,3],[-2,5],[0,4],[1,7],[-1,7],[-4,13],[3,-1],[3,0],[2,2],[3,3],[9,-8],[31,-17],[9,-8],[29,-32],[23,-15],[24,-5],[46,12],[-7,10],[-19,3],[2,13],[6,10],[7,8],[1,8],[2,3],[3,-5],[1,-3],[2,-15],[17,19],[9,5],[9,-4],[0,-4],[-2,-2],[-1,-1],[0,-3],[-1,-2],[26,-6],[8,-6],[-4,-3],[-5,-1],[-10,0],[8,-12],[15,0],[52,16],[5,3],[9,11],[6,2],[0,-4],[-19,-19],[-8,-5],[13,-9],[13,0],[28,13],[-2,6],[-4,5],[-3,4],[-4,1],[-2,4],[0,17],[0,8],[2,-1],[5,1],[2,0],[-1,2],[0,7],[-1,3],[4,0],[5,-2],[5,-3],[1,-5],[3,-4],[28,-16],[7,-7],[4,-8],[-12,1],[-4,-3],[-3,-10],[1,-8],[4,-1],[4,2],[4,-1],[-7,-6],[-13,-19],[-6,-7],[-2,6],[-3,2],[-3,-1],[-4,-3],[0,-4],[1,-4],[0,-3],[-2,-10],[2,2],[5,2],[0,-4],[-8,-16],[-1,-4],[-1,-16],[-2,-4],[-4,-3],[-7,-11],[-3,-3],[-4,3],[-1,5],[0,6],[1,7],[-9,-14],[-5,-5],[-3,3],[-16,-21],[8,1],[-1,-6],[-10,-17],[-12,-30]],[[33361,20087],[-4,-4],[-2,0],[0,-4],[4,-7],[-3,-6],[-7,-3],[-5,0],[-6,5],[-4,6],[-4,8],[-3,9],[13,6],[4,0],[4,-2],[11,-8],[2,0]],[[33286,20034],[-20,-5],[-4,1],[-5,3],[-4,6],[-1,8],[4,8],[7,5],[13,3],[3,-3],[6,-11],[3,-3],[4,1],[3,1],[4,3],[3,4],[-5,6],[-15,12],[-11,4],[-13,13],[-4,5],[-4,9],[-1,4],[3,3],[5,1],[2,-4],[2,-5],[2,-6],[6,-6],[7,-4],[7,-1],[7,1],[15,5],[7,-3],[3,-12],[2,-3],[2,-6],[0,-6],[-3,-3],[-10,-17],[-5,-13],[-1,-3],[-3,1],[-8,6],[-3,1]],[[33940,19856],[11,5],[5,1],[6,-2],[0,-4],[-7,-1],[-29,-18],[-5,-2],[-19,0],[-4,-2],[0,-5],[-4,-4],[-3,-2],[-43,-7],[-21,5],[-11,-1],[0,-4],[3,-1],[10,-7],[5,-2],[14,-2],[0,-4],[-8,-3],[-16,1],[-8,-2],[-19,-16],[-8,-1],[6,-3],[6,0],[17,11],[19,1],[-4,-7],[-7,-7],[-8,-5],[-11,-4],[-22,-18],[-13,-8],[-25,6],[-15,-2],[-10,-4],[-44,1],[-7,3],[-9,12],[-13,7],[-6,7],[-6,4],[-3,4],[-1,5],[-1,7],[-2,5],[-3,2],[-3,-3],[-3,-9],[-2,-9],[-1,-5],[1,-8],[4,-7],[5,-6],[13,-5],[11,-8],[10,-10],[5,-12],[-4,-10],[8,-3],[15,6],[9,-1],[10,-4],[8,-8],[0,-12],[8,-8],[-15,-13],[-4,-7],[3,-4],[2,-5],[1,-7],[3,-20],[-1,-6],[-2,-2],[-4,-1],[-3,3],[-9,22],[-3,6],[-3,5],[-4,4],[-5,1],[-3,1],[-3,6],[-2,1],[-1,-1],[-1,-3],[-1,-3],[-3,-1],[-3,1],[-4,2],[-2,1],[-4,-2],[1,-5],[1,-5],[0,-4],[-4,-6],[-8,-7],[-4,-5],[-5,-5],[-3,7],[-3,20],[-5,-9],[-4,5],[-2,11],[-2,9],[-6,4],[-6,-2],[-5,0],[-2,10],[-5,-3],[-4,1],[-8,11],[-2,4],[-2,2],[-2,1],[-3,-2],[-1,-3],[-1,-3],[-2,-4],[-4,-2],[-4,-1],[-3,1],[-4,2],[-3,3],[-2,2],[-2,3],[-3,0],[-2,-1],[-4,-5],[-3,-2],[-2,-3],[1,-7],[4,-4],[8,7],[15,-5],[4,-4],[1,-8],[0,-9],[2,-3],[5,1],[4,2],[4,1],[5,-4],[-10,-16],[10,1],[5,-2],[4,-4],[-4,-5],[-11,-6],[-4,-5],[-2,-11],[4,-3],[7,0],[16,8],[5,0],[1,-6],[-3,-5],[-14,-11],[3,-8],[6,-8],[4,-7],[-4,-10],[-6,-2],[-7,4],[-12,10],[-7,1],[-6,-1],[-6,1],[-5,8],[-2,5],[0,5],[-1,5],[-3,5],[-3,3],[-4,1],[-3,2],[-3,6],[-5,-3],[-11,17],[-5,2],[-2,-3],[-1,-7],[-1,-12],[-2,-4],[-3,4],[-5,10],[-6,-6],[3,-10],[9,-16],[-1,0],[-2,-4],[-2,-5],[-1,-6],[2,-4],[3,-1],[7,-1],[7,-5],[4,-7],[2,-9],[-2,-11],[-1,-2],[-4,-6],[-1,-6],[3,-2],[1,-3],[6,-9],[2,0],[-2,-11],[-6,4],[-9,15],[-7,5],[-14,3],[-6,7],[1,12],[-3,7],[-6,4],[-13,5],[-4,5],[-1,7],[7,10],[-5,3],[-9,-4],[-4,3],[-1,3],[0,8],[0,3],[-9,13],[-10,10],[-3,4],[-3,5],[-2,7],[1,6],[2,2],[2,0],[3,-2],[2,-2],[6,-9],[2,-2],[5,1],[3,4],[1,7],[-4,8],[12,4],[5,4],[2,9],[-5,3],[-5,6],[-5,7],[-2,8],[0,6],[2,2],[2,-1],[3,-5],[3,-2],[4,-1],[7,1],[-4,12],[-2,4],[-4,4],[5,3],[10,2],[5,3],[0,5],[-16,5],[-7,7],[0,11],[6,6],[9,-4],[10,-8],[7,-2],[6,8],[-4,7],[-8,7],[-3,7],[1,7],[4,0],[4,-1],[4,2],[2,5],[0,5],[-2,4],[-4,2],[5,4],[21,11],[5,-8],[4,7],[3,27],[5,-6],[4,-1],[10,3],[-5,14],[0,6],[26,25],[5,-8],[3,4],[4,8],[4,4],[22,5],[4,-1],[2,-5],[0,-5],[-1,-5],[1,-6],[1,-4],[2,-4],[2,-4],[1,-6],[-1,-5],[-2,-6],[-1,-4],[2,-9],[0,-5],[-1,-5],[-1,-4],[5,2],[5,2],[5,4],[2,8],[-1,9],[-4,10],[-2,10],[1,16],[-4,5],[-3,7],[2,12],[2,3],[3,1],[3,1],[1,5],[-1,6],[-2,0],[-3,0],[-6,5],[-19,10],[-13,14],[-6,14],[5,10],[8,12],[3,21],[14,-37],[9,-12],[6,16],[-8,14],[-2,13],[5,7],[10,-5],[-7,9],[-25,16],[-6,5],[1,9],[3,10],[3,7],[4,4],[2,-1],[6,-5],[2,-2],[3,0],[9,4],[3,2],[1,6],[1,6],[1,2],[19,1],[6,3],[6,5],[2,8],[-1,8],[-8,15],[-3,11],[-3,4],[-3,4],[-2,2],[-1,3],[-3,18],[5,-4],[9,-14],[5,-3],[6,-1],[13,-7],[23,-19],[6,-1],[14,0],[4,-2],[2,-3],[4,-3],[4,0],[0,4],[-1,7],[4,6],[6,5],[27,3],[5,-3],[4,-5],[12,-5],[5,-6],[12,-20],[2,-9],[1,-12],[1,-8],[-1,-6],[-7,-8],[-5,-3],[-7,-2],[-7,-1],[-6,2],[-2,7],[-5,20],[-4,5],[-5,-1],[-4,-7],[-8,-16],[9,0],[2,-8],[-3,-26],[3,-4],[18,13],[6,-1],[1,-6],[0,-8],[-1,-8],[-1,-7],[1,-10],[1,-4],[4,0],[1,1],[2,6],[2,1],[1,-2],[1,-9],[1,-3],[4,-3],[5,0],[3,3],[3,6],[5,-4],[4,-6],[2,-9],[0,-11],[2,-8],[4,-10],[4,-9],[4,-4],[5,4],[-2,9],[-7,16],[3,7],[6,-2],[12,-9],[-2,13],[-7,6],[-7,4],[-4,7],[2,4],[4,4],[3,5],[-2,7],[-3,3],[-9,-5],[-4,0],[-3,5],[0,5],[0,5],[-1,6],[-1,3],[-2,4],[-2,0],[-1,-5],[-1,-6],[-3,-3],[-3,-1],[-3,0],[-3,2],[1,5],[5,9],[13,34],[3,6],[3,2],[8,8],[3,2],[59,6],[15,7],[8,-1],[8,-2],[3,-4],[3,-6],[4,-24],[2,-4],[3,-3],[9,-19],[3,-4],[3,-3],[8,-3],[-2,-6],[-6,-5],[-2,-6],[7,0],[3,-5],[-3,-7],[-7,-4],[-34,7],[-24,18],[-5,2],[-3,-5],[4,-14],[-15,8],[-18,-12],[5,-11],[9,-9],[11,-6],[8,-2],[16,5],[7,-6],[26,-4],[11,-4],[8,-8],[4,-14],[-5,-7],[-12,-6],[-19,-5],[0,-4],[16,-8],[7,0]],[[33403,20099],[-12,4],[-2,2],[-2,5],[-1,5],[1,4],[4,1],[7,4],[7,-3],[7,-6],[7,-4],[28,5],[3,-1],[0,-3],[0,-2],[0,-3],[2,-4],[1,-4],[2,-3],[4,-1],[2,2],[1,4],[1,3],[1,3],[3,3],[2,1],[2,0],[7,-3],[4,-8],[3,-12],[2,-13],[-7,-2],[-7,-5],[-16,-1],[-6,4],[-10,20],[-7,4],[-31,4]],[[33397,19481],[5,10],[7,4],[9,0],[1,-7],[-6,-3],[0,-8],[-5,-6],[-3,-8],[6,-6],[11,2],[7,5],[3,-7],[-7,-7],[-5,-8],[-3,-8],[-7,5],[-6,5],[-5,6],[-7,-1],[-3,7],[-6,6],[8,10],[7,2],[-1,7]],[[33773,19678],[4,-5],[0,-1],[-1,0],[-1,-5],[-1,-4],[-3,-1],[-5,3],[-3,0],[0,-2],[2,-6],[-1,-2],[-3,0],[-1,-2],[3,-2],[3,2],[3,3],[0,-1],[-1,-5],[-1,-6],[1,-6],[2,-6],[0,-4],[-1,-2],[0,-4],[2,-5],[-1,-2],[-6,1],[-2,3],[2,4],[0,4],[-2,0],[-3,-2],[-4,3],[-4,4],[-6,5],[-1,3],[0,5],[-1,5],[-4,4],[-2,5],[2,4],[3,4],[4,2],[4,2],[3,2],[2,1],[1,1],[-2,2],[1,2],[4,0],[3,-2],[2,-3],[1,-2],[2,-1],[2,1],[2,2],[-1,4],[2,1],[1,-1]],[[33422,19695],[2,-3],[0,-6],[-2,-4],[-3,-2],[-2,1],[0,2],[-1,2],[-1,2],[-1,0],[-2,-1],[-1,3],[2,7],[-1,4],[1,7],[4,4],[2,-1],[1,-4],[-1,-5],[1,-4],[2,-2]],[[33404,20072],[4,-6],[4,-5],[7,-7],[1,12],[6,-2],[1,-9],[7,-5],[10,-2],[1,-7],[-8,-2],[-11,-7],[-8,-7],[-8,-1],[-8,7],[1,9],[5,6],[-6,3],[-11,-3],[-9,7],[-2,6],[8,1],[8,2],[2,10],[6,0]],[[33185,20099],[4,-6],[1,-7],[-2,-6],[-1,-1],[-1,4],[-1,3],[0,2],[-4,2],[-5,2],[-6,6],[-3,13],[4,5],[8,-9],[4,-6],[2,-2]],[[33040,20225],[1,-3],[1,-3],[-2,-1],[-4,2],[-9,6],[-4,1],[-3,1],[0,3],[2,3],[2,3],[0,2],[-2,6],[0,5],[4,-1],[4,-5],[3,-7],[2,-4],[1,-4],[0,-2],[4,-2]],[[97177,38542],[6,-9],[4,-5],[3,-6],[3,-11],[-3,-14],[-2,-8],[-2,-5],[-3,-3],[-7,-3],[-2,-3],[-3,6],[-3,3],[-7,4],[-9,8],[-4,6],[0,13],[2,15],[3,10],[4,2],[7,3],[8,0],[5,-3]],[[97064,38926],[9,-10],[4,-6],[6,-5],[-2,-7],[-10,-25],[-2,-26],[-2,-13],[-2,-6],[-6,1],[-12,7],[-4,5],[-12,27],[-2,5],[-6,0],[-2,2],[-1,4],[-1,6],[-2,5],[-2,3],[-1,2],[0,5],[-10,27],[-1,6],[0,9],[0,16],[2,14],[3,6],[2,4],[0,7],[-1,14],[1,7],[1,5],[2,4],[3,4],[6,3],[10,1],[5,4],[4,-8],[1,-8],[-2,-10],[-1,-13],[4,-44],[2,-9],[6,-4],[7,-4],[6,-5]],[[97037,39256],[-2,-15],[-6,-7],[-6,-6],[-3,-10],[-6,9],[-24,27],[-4,1],[-3,-3],[-2,1],[-9,5],[-2,2],[-3,6],[-7,10],[-5,4],[-15,11],[-1,10],[5,26],[0,8],[-1,7],[-2,6],[-2,6],[0,4],[1,43],[2,12],[4,12],[8,12],[11,7],[11,-1],[10,-10],[3,-9],[1,-12],[0,-22],[1,-10],[4,-5],[12,-3],[0,1],[1,1],[2,1],[1,1],[1,-1],[0,-5],[3,-3],[1,-4],[1,-5],[1,-4],[-3,-1],[-18,-9],[7,-17],[1,-6],[2,-1],[8,-9],[3,-4],[8,-9],[6,-11],[4,-13],[1,-18]],[[96818,39993],[3,-1],[3,0],[2,2],[2,3],[0,-10],[-8,-35],[-2,-15],[-2,-7],[-4,-3],[-7,-3],[-1,-1],[0,-3],[-2,-3],[-2,-1],[-1,1],[-2,3],[-1,3],[-1,1],[-19,-10],[-2,0],[-5,6],[-1,4],[-1,6],[-1,2],[-3,-8],[0,5],[-2,6],[0,5],[-1,-1],[0,-1],[-1,-2],[-2,2],[-2,-1],[-2,-2],[-1,-3],[1,20],[-1,0],[-3,-7],[-5,-4],[-10,-5],[0,4],[5,7],[6,4],[5,6],[2,12],[-3,-3],[-2,0],[-1,3],[-1,12],[-1,2],[-2,0],[-2,2],[-4,5],[-4,1],[-3,-2],[-4,-4],[-2,-4],[-4,-13],[-2,-3],[-3,-2],[-2,3],[0,6],[-4,5],[1,7],[6,29],[4,8],[7,10],[3,7],[11,33],[7,13],[8,3],[2,-4],[1,-6],[1,-4],[5,6],[19,7],[5,-2],[4,-6],[0,-3],[1,-11],[1,-2],[3,-1],[1,-3],[3,-8],[2,-11],[2,-12],[2,-9],[6,-5],[1,-5],[3,-12],[1,-3]],[[96723,40058],[0,18],[9,17],[10,7],[6,-10],[-4,-2],[-6,-7],[-4,-3],[-6,-8],[-3,-6],[-2,-6]],[[96755,40137],[2,17],[3,3],[3,-7],[4,-11],[2,-21],[-4,-3],[-6,9],[-4,13]],[[96774,40362],[-1,-3],[-1,-4],[-2,-4],[-9,-4],[-3,-1],[-3,3],[2,7],[3,7],[3,4],[11,11],[3,0],[7,-4],[-3,-3],[-7,-9]],[[96821,40435],[-4,1],[-3,3],[-1,5],[1,8],[0,13],[5,9],[7,1],[6,-11],[-8,-25],[-3,-4]],[[96719,40512],[-3,5],[-9,16],[-1,6],[0,16],[0,6],[-5,8],[-2,5],[0,5],[1,7],[1,22],[1,10],[2,4],[2,3],[1,4],[1,7],[0,6],[-1,4],[-1,9],[2,-4],[2,1],[2,2],[2,1],[3,-2],[1,-2],[1,-3],[1,-2],[2,-5],[5,-22],[3,-5],[0,-4],[1,-9],[1,-10],[2,-6],[3,1],[4,6],[3,1],[2,-1],[3,-2],[1,-2],[2,-3],[3,-9],[1,-9],[3,-7],[5,-3],[1,-3],[1,-7],[3,-7],[5,-3],[14,1],[7,-5],[4,-13],[-3,-3],[0,-8],[2,-9],[-1,-8],[-3,3],[-2,-3],[-15,17],[-5,10],[-4,5],[-6,3],[-4,1],[-11,-5],[-9,-10],[-8,-6],[-11,5]],[[96757,40675],[-4,2],[-2,7],[-3,15],[8,4],[3,0],[4,-4],[3,-9],[0,-9],[-3,-6],[-6,0]],[[96725,40711],[3,22],[3,5],[7,2],[-2,-9],[-1,-21],[-2,-9],[-4,-6],[-5,0],[-2,6],[3,10]],[[96716,40788],[-3,-2],[-5,-4],[-3,-2],[-4,3],[-3,5],[-4,5],[-4,2],[-3,-2],[-7,10],[-4,2],[-4,-4],[-3,7],[-9,11],[-4,8],[-4,5],[-5,4],[-3,5],[1,8],[-4,7],[4,8],[7,7],[8,3],[4,6],[3,2],[12,0],[6,6],[10,22],[4,4],[2,4],[4,23],[2,2],[6,4],[6,-13],[4,-19],[6,-37],[1,-19],[5,-11],[20,-21],[2,-5],[0,-9],[-2,-7],[-9,-15],[-30,-3]],[[96614,40746],[2,0],[3,-7],[1,-10],[2,-6],[-6,-14],[-2,-2],[-4,-1],[-2,-4],[-1,-6],[-3,-7],[-2,-5],[0,-5],[0,-5],[-3,-3],[-4,0],[-2,5],[-1,6],[-2,6],[-3,1],[-7,3],[-2,1],[-1,5],[-4,0],[-5,-1],[-2,0],[-5,5],[-6,-5],[-6,-8],[-3,-6],[2,-4],[0,-2],[1,-1],[3,-1],[-3,-8],[-3,-3],[-7,-1],[-6,-13],[-2,1],[-2,3],[-1,0],[-1,-8],[-2,0],[-2,6],[-8,6],[-3,13],[-4,7],[-3,8],[-1,13],[2,0],[1,-4],[2,-3],[2,-3],[3,-1],[-1,9],[-2,12],[-2,11],[-7,19],[-1,6],[-1,9],[1,11],[-1,3],[-1,4],[-2,2],[-1,1],[-1,1],[-1,13],[0,36],[2,8],[-3,28],[0,4],[0,10],[-1,5],[-1,1],[-2,1],[0,2],[-2,10],[-10,32],[-4,-5],[-1,-3],[-2,4],[-5,-11],[-12,-17],[-7,12],[-4,3],[-3,-3],[-1,6],[-1,6],[-1,6],[0,6],[-3,6],[-2,4],[-2,5],[-1,8],[1,14],[9,33],[-2,39],[1,7],[1,5],[0,5],[1,3],[3,1],[9,13],[30,-25],[0,-21],[17,-43],[-5,-21],[3,-3],[3,-4],[1,-6],[-2,-7],[3,-5],[2,-5],[3,-5],[5,-4],[5,-8],[2,-2],[1,3],[0,5],[-1,10],[1,1],[2,-6],[4,-13],[0,-5],[-2,-6],[0,-5],[6,-6],[2,-2],[2,0],[1,3],[0,2],[1,1],[1,2],[1,-7],[1,-7],[2,-6],[2,-5],[3,-4],[7,-4],[3,-4],[7,-12],[3,-10],[4,-4],[8,6],[2,-3],[1,-1],[0,-4],[-2,-9],[5,-11],[12,-20],[7,2],[4,-13],[3,-29],[-6,-20],[0,-11],[4,-6],[0,11],[2,7],[2,6],[3,6]],[[96445,41142],[-5,0],[-4,4],[-8,12],[-4,3],[-8,4],[-3,5],[-5,16],[1,16],[5,12],[9,4],[20,-5],[10,-6],[1,-11],[-4,-18],[2,-17],[1,-14],[-8,-5]],[[96432,41267],[5,5],[4,0],[0,-3],[-3,-2],[0,-4],[2,-1],[1,-4],[0,-3],[-2,-4],[7,-7],[0,-11],[-4,-6],[-6,4],[-1,-3],[-1,-1],[-2,-1],[-4,2],[-3,2],[-7,9],[14,28]],[[96717,41280],[2,-6],[2,-1],[1,-3],[1,-9],[-2,-36],[0,-10],[4,-19],[0,-18],[1,-8],[6,-38],[2,-31],[2,-9],[3,-13],[1,-11],[1,-23],[-1,-21],[-3,-15],[-8,-9],[-7,-1],[-3,4],[-1,8],[-1,24],[-5,36],[-3,45],[-7,34],[-2,21],[-1,23],[1,24],[7,47],[2,47],[6,1],[1,-27],[1,-6]],[[96649,41354],[-1,-11],[-2,-7],[-19,-32],[-6,-5],[-29,1],[-6,4],[-10,9],[-1,7],[2,10],[34,67],[6,4],[5,2],[14,11],[23,8],[7,-2],[1,-6],[-7,-13],[-3,-9],[-4,-12],[-3,-13],[-1,-13]],[[96422,41608],[-6,14],[-1,7],[5,-3],[7,-12],[5,-2],[-3,-5],[-2,-3],[-3,1],[-2,3]],[[96692,41598],[1,5],[1,3],[0,3],[-2,5],[-1,6],[1,7],[2,6],[2,3],[4,-4],[3,-10],[2,-12],[1,-8],[0,-14],[4,-33],[0,-6],[-1,-12],[1,-6],[3,-19],[0,-7],[0,-21],[1,-5],[4,-10],[1,-5],[-1,-40],[2,-9],[-1,-11],[-2,-17],[0,-17],[-2,-18],[-3,3],[-3,0],[-7,-3],[2,14],[-1,15],[-3,28],[2,21],[0,63],[-3,14],[-7,91]],[[96427,41269],[-11,-26],[-2,-4],[-2,-2],[-3,-2],[-3,0],[-3,1],[-5,5],[-3,2],[-10,3],[-12,-1],[-11,-6],[-6,-13],[2,-5],[-2,-1],[-6,2],[-3,-4],[-2,-5],[-1,-5],[-2,-6],[-5,-5],[-7,1],[-6,6],[-4,11],[3,11],[0,15],[-3,12],[-9,9],[-4,9],[-7,20],[-3,18],[-1,5],[-8,15],[-1,5],[-1,8],[-4,11],[-1,5],[1,6],[2,12],[2,17],[4,24],[1,13],[-1,27],[-1,14],[-7,20],[-1,11],[-1,25],[-3,23],[0,8],[3,10],[-5,3],[-3,9],[-2,11],[0,11],[-1,10],[-6,19],[-3,10],[-5,45],[1,10],[2,9],[1,15],[-1,14],[-1,8],[7,33],[0,14],[1,7],[8,6],[2,4],[1,2],[4,-5],[1,-5],[2,-16],[1,-3],[3,-3],[1,-6],[1,-7],[0,-7],[1,-1],[7,-17],[2,-14],[2,-7],[5,-6],[12,-18],[-3,-6],[1,-13],[5,-29],[3,-28],[1,-29],[0,-7],[1,-4],[2,-3],[1,-4],[4,-74],[3,-5],[7,0],[13,3],[7,0],[3,0],[1,5],[4,12],[2,4],[3,5],[2,5],[1,8],[1,65],[0,8],[-2,9],[3,9],[5,6],[4,3],[21,-4],[0,-5],[-5,-2],[-2,-5],[-1,-7],[1,-25],[-1,-6],[-4,-7],[5,-2],[2,-7],[1,-20],[5,-29],[1,-11],[6,10],[4,2],[5,-4],[-1,-11],[5,-48],[-2,-9],[-2,-2],[-1,-2],[3,-9],[1,-2],[5,-3],[2,-3],[1,-3],[2,-14],[0,-11],[-2,-9],[-1,-4],[-2,8],[-2,0],[2,-20],[5,-30],[6,-27],[7,-12],[2,-3],[1,-6],[-1,-6],[-1,-5],[-2,-4],[-2,1],[-2,2],[-3,1],[-10,0],[-4,-3],[-5,-8]],[[96531,42095],[3,-1],[17,-17],[2,-5],[2,-5],[-1,-32],[-1,-5],[-2,-3],[-7,-25],[-4,-9],[-3,-3],[-3,-1],[-19,3],[-3,-3],[-4,1],[-4,3],[-3,3],[-2,2],[-1,3],[1,7],[3,12],[-2,33],[1,10],[2,5],[3,4],[6,11],[2,1],[3,-1],[4,0],[3,3],[4,8],[3,1]],[[96514,42227],[0,12],[-2,8],[-2,6],[-6,9],[-6,20],[-2,13],[0,15],[3,13],[3,10],[6,7],[12,11],[4,0],[4,-5],[5,-11],[8,-32],[3,-5],[-3,-9],[-2,-3],[1,-8],[3,-3],[2,-2],[3,-3],[1,-2],[2,1],[0,-1],[1,-4],[-1,-3],[-2,0],[-2,1],[-1,0],[-5,-7],[-5,-6],[-6,-3],[-7,-1],[1,-1],[1,-1],[0,-2],[-2,-4],[3,-14],[-3,-10],[-6,-1],[-3,15]],[[96583,42404],[3,-4],[1,-8],[0,-10],[-1,-7],[-2,-2],[-5,-4],[-6,-2],[-4,0],[-2,-6],[-3,-1],[0,6],[10,28],[4,7],[5,3]],[[96479,42469],[2,-8],[3,-3],[4,2],[3,5],[-1,-16],[-3,-6],[-5,0],[-6,1],[-3,9],[-3,10],[0,9],[4,9],[7,4],[5,-6],[0,-8],[-7,-2]],[[96270,42631],[4,8],[6,4],[6,0],[3,-8],[0,-11],[-4,-8],[-5,-4],[-4,2],[-2,4],[-2,3],[-1,5],[-1,5]],[[96270,42679],[-2,-1],[0,-3],[0,-3],[0,-5],[-1,-2],[0,-2],[-1,-2],[-2,-2],[-4,5],[-3,6],[-1,9],[1,13],[1,16],[1,6],[-1,5],[-2,3],[-1,3],[0,7],[9,-5],[2,-3],[2,-6],[1,-13],[1,-5],[0,-4],[-1,-3],[-1,-4],[0,-4],[2,-6]],[[96297,42501],[-4,24],[4,4],[4,-9],[-4,-19]],[[2819,39238],[7,-1],[1,-3],[8,-44],[3,-13],[-4,-3],[-2,-5],[-5,-12],[-12,-16],[-2,2],[-2,-2],[-5,-8],[-1,6],[-2,2],[-3,1],[-4,-1],[1,2],[1,2],[1,2],[1,2],[-1,10],[-1,2],[-6,5],[0,10],[6,19],[0,4],[-1,3],[-1,3],[0,5],[1,3],[1,0],[1,0],[2,3],[6,22],[9,1],[3,-1]],[[2614,42022],[4,7],[2,-3],[0,-8],[-5,-4],[-16,-2],[-4,-2],[-7,-11],[-11,-30],[-7,-12],[-2,4],[-11,16],[-8,8],[-2,4],[12,15],[4,2],[10,0],[4,1],[7,17],[10,5],[12,-1],[8,-6]],[[2927,42046],[5,-4],[1,-9],[-2,-6],[-3,3],[-2,-5],[-3,-2],[-2,1],[-3,2],[-1,-5],[-2,-3],[-2,0],[-3,0],[0,7],[-1,6],[-2,5],[-2,2],[4,7],[6,2],[12,-1]],[[3288,41863],[-3,6],[3,2],[1,-1],[-1,-7]],[[2868,42075],[2,4],[3,0],[3,-2],[3,-3],[-7,-7],[-3,0],[-1,8]],[[2480,43924],[0,-5],[-3,-3],[-1,4],[0,5],[4,-1]],[[87297,54659],[2,-1],[1,-2],[0,-4],[1,-4],[-2,-3],[-2,-10],[2,-8],[-1,-2],[-3,0],[-2,-2],[-4,-12],[-3,-5],[-1,3],[2,11],[10,39]],[[87350,54789],[-4,-2],[1,-5],[2,-6],[1,-5],[-1,-4],[-4,-2],[-5,0],[-3,-3],[-7,-14],[-4,-3],[-3,1],[-3,4],[-2,6],[0,7],[0,11],[1,2],[9,-20],[1,1],[4,4],[10,19],[2,5],[0,7],[-1,7],[0,4],[2,-1],[2,-2],[1,-3],[1,-3],[0,-5]],[[87352,54830],[5,-3],[7,-6],[4,-9],[-2,-12],[-2,-2],[-3,6],[-2,9],[-1,5],[-4,3],[-3,-2],[-5,-9],[0,8],[0,8],[2,4],[4,0]],[[87401,55041],[4,-20],[1,-28],[-2,-28],[-3,-20],[-6,-16],[0,-4],[3,-8],[0,-4],[-1,-3],[-3,-15],[-6,-18],[-2,-12],[2,-23],[-1,-8],[-1,-2],[-2,1],[-3,1],[-3,3],[-1,1],[-2,-2],[-2,-8],[-2,-2],[-3,1],[-1,2],[-1,4],[-2,14],[-2,19],[-2,9],[-2,3],[-2,0],[-1,1],[1,8],[1,6],[1,7],[3,4],[2,3],[2,-7],[2,-1],[3,4],[1,8],[-1,5],[-2,5],[-5,7],[3,4],[3,11],[4,5],[0,3],[0,8],[0,1],[3,11],[3,8],[5,4],[7,1],[7,4],[1,10],[-2,31],[-2,11],[-1,7],[1,3],[3,-1],[2,-4],[1,-4]],[[86427,52274],[6,7],[6,1],[2,-7],[-3,-9],[-5,-6],[-7,-2],[-2,6],[3,10]],[[86727,53604],[-2,9],[2,1],[2,-3],[-2,-7]],[[87266,54547],[-4,8],[-3,12],[1,9],[6,1],[3,-6],[2,-10],[-1,-9],[-4,-5]],[[86608,52233],[4,-2],[2,-8],[-5,-7],[-5,2],[-1,7],[3,6],[2,2]],[[87418,55265],[4,0],[1,-9],[-2,-14],[-5,-5],[-2,6],[0,9],[4,13]],[[90245,58548],[3,-14],[5,-7],[6,-3],[5,-1],[0,-7],[-4,-16],[-9,-26],[-10,-18],[-17,-24],[-7,-15],[-4,-24],[-3,-55],[-7,-22],[-4,-4],[-6,-1],[-5,4],[-3,10],[-3,10],[-1,3],[-2,23],[-1,4],[-1,3],[-2,3],[-2,2],[3,6],[2,6],[1,8],[0,10],[-1,5],[-1,6],[-2,5],[-3,5],[2,4],[2,3],[1,-3],[4,1],[17,20],[4,7],[15,18],[3,7],[2,7],[2,8],[6,40],[2,7],[3,7],[5,5],[4,1],[1,-8]],[[90334,58868],[13,11],[8,2],[3,-13],[-1,-7],[-2,-5],[-2,-3],[-4,-1],[-3,-2],[-2,-6],[-1,-7],[-3,-5],[-5,-6],[-3,2],[-2,5],[-5,2],[-9,-2],[-4,1],[-2,3],[3,11],[8,10],[8,7],[5,3]],[[90457,59396],[1,-8],[0,-8],[-1,-8],[0,-9],[1,-5],[4,-9],[0,-6],[-1,-16],[-5,-16],[-5,-8],[-6,7],[-1,8],[-1,16],[-2,9],[-3,9],[-1,4],[1,7],[3,14],[6,15],[6,10],[4,-6]],[[90496,59511],[3,3],[5,-1],[2,-5],[-4,-7],[-3,-4],[-2,-7],[-5,-25],[1,-5],[2,-7],[-2,-6],[-1,-3],[-2,1],[-3,3],[-3,-6],[-2,-8],[0,-8],[2,-8],[2,-8],[-4,0],[-5,4],[-1,1],[-6,-3],[-3,2],[-1,8],[1,9],[3,22],[0,8],[0,7],[1,5],[2,6],[1,2],[6,4],[1,3],[0,7],[0,2],[4,4],[7,4],[4,6]],[[90474,60163],[2,-9],[-2,-5],[-4,-1],[-7,-2],[-4,1],[-3,2],[-3,5],[-2,7],[1,5],[2,4],[5,1],[3,-2],[9,-3],[3,-3]],[[90491,61233],[11,0],[4,-4],[3,-6],[1,-8],[-1,-9],[-3,-6],[-3,-4],[-3,-5],[-13,-25],[-4,-5],[-6,1],[-2,13],[7,8],[3,14],[2,28],[4,8]],[[90461,61558],[-8,14],[0,24],[5,13],[10,-1],[4,-10],[2,-7],[0,-7],[0,-11],[-1,-7],[-3,-5],[-5,-4],[-4,1]],[[90496,60345],[-6,12],[5,3],[5,-4],[-4,-11]],[[90514,60707],[-5,11],[4,3],[5,-5],[-4,-9]],[[90514,60873],[-6,6],[-1,10],[2,7],[4,1],[4,-5],[1,-7],[0,-7],[-4,-5]],[[90390,62108],[-4,5],[-3,7],[0,7],[4,3],[4,-3],[1,-6],[0,-7],[-2,-6]],[[90347,62320],[-3,2],[-3,4],[-1,6],[1,6],[2,6],[1,-3],[1,-6],[0,-3],[2,1],[3,1],[2,1],[1,-2],[-1,-5],[-1,-4],[-2,-3],[-2,-1]],[[90253,62620],[-2,6],[-1,8],[1,7],[4,2],[3,-4],[0,-7],[-2,-7],[-3,-5]],[[64041,65982],[12,-20],[3,9],[4,6],[2,-9],[2,-14],[4,0],[-3,-7],[0,-11],[-6,-3],[2,-34],[-1,-53],[-4,-65],[-3,-13],[-8,-25],[-2,18],[-3,19],[-4,19],[-6,17],[-12,26],[-2,17],[6,19],[1,9],[2,9],[-2,22],[-4,22],[-5,16],[-1,7],[0,10],[3,28],[2,7],[4,3],[6,0],[4,-2],[4,-4],[4,-3],[11,9],[2,-2],[1,-8],[2,-6],[1,-2],[0,-2],[-1,-7],[-3,-1],[-8,2],[-4,-3]],[[92886,38015],[-1,1],[1,0],[0,-1]],[[82046,56532],[-1,1],[1,0],[0,-1]],[[81770,56207],[0,1],[1,2],[1,0],[0,-2],[0,-2],[-2,-4],[-1,1],[0,2],[1,2]],[[81674,56399],[0,2],[0,1],[2,2],[1,-1],[-2,-4],[-1,0]],[[81767,56496],[-1,0],[-1,2],[1,2],[1,3],[1,0],[1,-2],[0,-2],[-2,-3]],[[81795,56609],[-1,3],[1,4],[1,0],[0,-1],[1,-3],[-1,-2],[-1,-1]],[[81767,56610],[-1,2],[-1,3],[1,1],[2,-3],[0,-2],[0,-1],[-1,0]],[[81792,56622],[-1,1],[0,2],[0,2],[1,0],[1,-1],[1,-2],[-2,-2]],[[82174,56827],[1,0],[0,-3],[0,-1],[-1,0],[-1,-1],[-2,-3],[-1,1],[-1,3],[1,4],[1,0],[3,1],[0,-1]],[[82177,56879],[-2,1],[-1,2],[0,2],[1,1],[2,0],[1,-1],[1,-3],[0,-2],[-2,0]],[[81743,57008],[-2,2],[0,1],[2,3],[1,0],[2,-2],[-2,-4],[-1,0]],[[81949,57047],[-2,1],[-1,3],[0,2],[1,-1],[2,2],[1,-2],[-1,-3],[0,-2]],[[81766,56254],[0,2],[1,-1],[-1,-1]],[[19663,56571],[1,-8],[-3,-4],[-2,6],[-2,9],[2,2],[4,-5]],[[81543,63595],[3,-1],[2,0],[0,-3],[-1,-2],[-1,-1],[-1,0],[-1,-6],[2,-1],[1,-1],[2,1],[0,-1],[-1,-2],[1,-1],[2,0],[0,-2],[0,-1],[0,-2],[-1,-1],[-2,2],[1,-3],[-1,-1],[-1,1],[-1,1],[-1,-3],[0,-3],[0,-3],[-2,2],[-2,-2],[0,-1],[-1,0],[-1,1],[-1,3],[2,1],[-1,16],[-3,5],[0,2],[1,5],[1,1],[1,0],[3,2],[1,-2]],[[81535,63618],[2,3],[-1,2],[0,-1],[-1,-1],[-1,3],[1,1],[2,0],[0,2],[1,2],[1,-2],[0,-1],[2,-1],[1,-1],[0,-3],[1,-2],[-2,0],[-1,-1],[1,-1],[0,-1],[2,2],[-1,-3],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,0],[-1,0],[-1,-3],[-1,0],[-1,-3],[-2,6],[1,1],[0,3],[1,2],[1,5]],[[84332,43109],[0,-6],[-6,1],[0,6],[6,-1]],[[27780,59824],[1,0],[0,-1],[-1,1]],[[28156,59863],[-1,2],[1,2],[0,-4]],[[82709,59444],[0,-1],[0,-1],[-1,1],[1,1]]],"bbox":[-180,-85.22193775799991,180,83.63410065300008],"transform":{"scale":[0.0036000360003600037,0.0016885772698826986],"translate":[-180,-85.22193775799991]}} ================================================ FILE: freedata_gui/src/assets/countries-110m.json ================================================ {"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]]],"id":"242","properties":{"name":"Fiji"}},{"type":"Polygon","arcs":[[2,3,4,5,6,7,8,9,10]],"id":"834","properties":{"name":"Tanzania"}},{"type":"Polygon","arcs":[[11,12,13,14]],"id":"732","properties":{"name":"W. Sahara"}},{"type":"MultiPolygon","arcs":[[[15,16,17,18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]]],"id":"124","properties":{"name":"Canada"}},{"type":"MultiPolygon","arcs":[[[-19,48,49,50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[-17,58]],[[59]]],"id":"840","properties":{"name":"United States of America"}},{"type":"Polygon","arcs":[[60,61,62,63,64,65]],"id":"398","properties":{"name":"Kazakhstan"}},{"type":"Polygon","arcs":[[-63,66,67,68,69]],"id":"860","properties":{"name":"Uzbekistan"}},{"type":"MultiPolygon","arcs":[[[70,71]],[[72]],[[73]],[[74]]],"id":"598","properties":{"name":"Papua New Guinea"}},{"type":"MultiPolygon","arcs":[[[-72,75]],[[76,77]],[[78]],[[79,80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]]],"id":"360","properties":{"name":"Indonesia"}},{"type":"MultiPolygon","arcs":[[[90,91]],[[92,93,94,95,96,97]]],"id":"032","properties":{"name":"Argentina"}},{"type":"MultiPolygon","arcs":[[[-92,98]],[[99,-95,100,101]]],"id":"152","properties":{"name":"Chile"}},{"type":"Polygon","arcs":[[-8,102,103,104,105,106,107,108,109,110,111]],"id":"180","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[112,113,114,115]],"id":"706","properties":{"name":"Somalia"}},{"type":"Polygon","arcs":[[-3,116,117,118,-113,119]],"id":"404","properties":{"name":"Kenya"}},{"type":"Polygon","arcs":[[120,121,122,123,124,125,126,127]],"id":"729","properties":{"name":"Sudan"}},{"type":"Polygon","arcs":[[-122,128,129,130,131]],"id":"148","properties":{"name":"Chad"}},{"type":"Polygon","arcs":[[132,133]],"id":"332","properties":{"name":"Haiti"}},{"type":"Polygon","arcs":[[-133,134]],"id":"214","properties":{"name":"Dominican Rep."}},{"type":"MultiPolygon","arcs":[[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141,142,143]],[[144]],[[145]],[[146,147,148,149,-66,150,151,152,153,154,155,156,157,158,159,160,161]],[[162]],[[163,164]]],"id":"643","properties":{"name":"Russia"}},{"type":"MultiPolygon","arcs":[[[165]],[[166]],[[167]]],"id":"044","properties":{"name":"Bahamas"}},{"type":"Polygon","arcs":[[168]],"id":"238","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[169]],[[-161,170,171,172]],[[173]],[[174]]],"id":"578","properties":{"name":"Norway"}},{"type":"Polygon","arcs":[[175]],"id":"304","properties":{"name":"Greenland"}},{"type":"Polygon","arcs":[[176]],"id":"260","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":"Polygon","arcs":[[177,-77]],"id":"626","properties":{"name":"Timor-Leste"}},{"type":"Polygon","arcs":[[178,179,180,181,182,183,184],[185]],"id":"710","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[-186]],"id":"426","properties":{"name":"Lesotho"}},{"type":"Polygon","arcs":[[-50,186,187,188,189]],"id":"484","properties":{"name":"Mexico"}},{"type":"Polygon","arcs":[[190,191,-93]],"id":"858","properties":{"name":"Uruguay"}},{"type":"Polygon","arcs":[[-191,-98,192,193,194,195,196,197,198,199,200]],"id":"076","properties":{"name":"Brazil"}},{"type":"Polygon","arcs":[[-194,201,-96,-100,202]],"id":"068","properties":{"name":"Bolivia"}},{"type":"Polygon","arcs":[[-195,-203,-102,203,204,205]],"id":"604","properties":{"name":"Peru"}},{"type":"Polygon","arcs":[[-196,-206,206,207,208,209,210]],"id":"170","properties":{"name":"Colombia"}},{"type":"Polygon","arcs":[[-209,211,212,213]],"id":"591","properties":{"name":"Panama"}},{"type":"Polygon","arcs":[[-213,214,215,216]],"id":"188","properties":{"name":"Costa Rica"}},{"type":"Polygon","arcs":[[-216,217,218,219]],"id":"558","properties":{"name":"Nicaragua"}},{"type":"Polygon","arcs":[[-219,220,221,222,223]],"id":"340","properties":{"name":"Honduras"}},{"type":"Polygon","arcs":[[-222,224,225]],"id":"222","properties":{"name":"El Salvador"}},{"type":"Polygon","arcs":[[-189,226,227,-223,-226,228]],"id":"320","properties":{"name":"Guatemala"}},{"type":"Polygon","arcs":[[-188,229,-227]],"id":"084","properties":{"name":"Belize"}},{"type":"Polygon","arcs":[[-197,-211,230,231]],"id":"862","properties":{"name":"Venezuela"}},{"type":"Polygon","arcs":[[-198,-232,232,233]],"id":"328","properties":{"name":"Guyana"}},{"type":"Polygon","arcs":[[-199,-234,234,235]],"id":"740","properties":{"name":"Suriname"}},{"type":"MultiPolygon","arcs":[[[-200,-236,236]],[[237,238,239,240,241,242,243,244]],[[245]]],"id":"250","properties":{"name":"France"}},{"type":"Polygon","arcs":[[-205,246,-207]],"id":"218","properties":{"name":"Ecuador"}},{"type":"Polygon","arcs":[[247]],"id":"630","properties":{"name":"Puerto Rico"}},{"type":"Polygon","arcs":[[248]],"id":"388","properties":{"name":"Jamaica"}},{"type":"Polygon","arcs":[[249]],"id":"192","properties":{"name":"Cuba"}},{"type":"Polygon","arcs":[[-181,250,251,252]],"id":"716","properties":{"name":"Zimbabwe"}},{"type":"Polygon","arcs":[[-180,253,254,-251]],"id":"072","properties":{"name":"Botswana"}},{"type":"Polygon","arcs":[[-179,255,256,257,-254]],"id":"516","properties":{"name":"Namibia"}},{"type":"Polygon","arcs":[[258,259,260,261,262,263,264]],"id":"686","properties":{"name":"Senegal"}},{"type":"Polygon","arcs":[[-261,265,266,267,268,269,270]],"id":"466","properties":{"name":"Mali"}},{"type":"Polygon","arcs":[[-13,271,-266,-260,272]],"id":"478","properties":{"name":"Mauritania"}},{"type":"Polygon","arcs":[[273,274,275,276,277]],"id":"204","properties":{"name":"Benin"}},{"type":"Polygon","arcs":[[-131,278,279,-277,280,-268,281,282]],"id":"562","properties":{"name":"Niger"}},{"type":"Polygon","arcs":[[-278,-280,283,284]],"id":"566","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[-130,285,286,287,288,289,-284,-279]],"id":"120","properties":{"name":"Cameroon"}},{"type":"Polygon","arcs":[[-275,290,291,292]],"id":"768","properties":{"name":"Togo"}},{"type":"Polygon","arcs":[[-292,293,294,295]],"id":"288","properties":{"name":"Ghana"}},{"type":"Polygon","arcs":[[-270,296,-295,297,298,299]],"id":"384","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-262,-271,-300,300,301,302,303]],"id":"324","properties":{"name":"Guinea"}},{"type":"Polygon","arcs":[[-263,-304,304]],"id":"624","properties":{"name":"Guinea-Bissau"}},{"type":"Polygon","arcs":[[-299,305,306,-301]],"id":"430","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[-302,-307,307]],"id":"694","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[-269,-281,-276,-293,-296,-297]],"id":"854","properties":{"name":"Burkina Faso"}},{"type":"Polygon","arcs":[[-108,308,-286,-129,-121,309]],"id":"140","properties":{"name":"Central African Rep."}},{"type":"Polygon","arcs":[[-107,310,311,312,-287,-309]],"id":"178","properties":{"name":"Congo"}},{"type":"Polygon","arcs":[[-288,-313,313,314]],"id":"266","properties":{"name":"Gabon"}},{"type":"Polygon","arcs":[[-289,-315,315]],"id":"226","properties":{"name":"Eq. Guinea"}},{"type":"Polygon","arcs":[[-7,316,317,-252,-255,-258,318,-103]],"id":"894","properties":{"name":"Zambia"}},{"type":"Polygon","arcs":[[-6,319,-317]],"id":"454","properties":{"name":"Malawi"}},{"type":"Polygon","arcs":[[-5,320,-184,321,-182,-253,-318,-320]],"id":"508","properties":{"name":"Mozambique"}},{"type":"Polygon","arcs":[[-183,-322]],"id":"748","properties":{"name":"eSwatini"}},{"type":"MultiPolygon","arcs":[[[-106,322,-311]],[[-104,-319,-257,323]]],"id":"024","properties":{"name":"Angola"}},{"type":"Polygon","arcs":[[-9,-112,324]],"id":"108","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[325,326,327,328,329,330,331]],"id":"376","properties":{"name":"Israel"}},{"type":"Polygon","arcs":[[-331,332,333]],"id":"422","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[334]],"id":"450","properties":{"name":"Madagascar"}},{"type":"Polygon","arcs":[[-327,335]],"id":"275","properties":{"name":"Palestine"}},{"type":"Polygon","arcs":[[-265,336]],"id":"270","properties":{"name":"Gambia"}},{"type":"Polygon","arcs":[[337,338,339]],"id":"788","properties":{"name":"Tunisia"}},{"type":"Polygon","arcs":[[-12,340,341,-338,342,-282,-267,-272]],"id":"012","properties":{"name":"Algeria"}},{"type":"Polygon","arcs":[[-326,343,344,345,346,-328,-336]],"id":"400","properties":{"name":"Jordan"}},{"type":"Polygon","arcs":[[347,348,349,350,351]],"id":"784","properties":{"name":"United Arab Emirates"}},{"type":"Polygon","arcs":[[352,353]],"id":"634","properties":{"name":"Qatar"}},{"type":"Polygon","arcs":[[354,355,356]],"id":"414","properties":{"name":"Kuwait"}},{"type":"Polygon","arcs":[[-345,357,358,359,360,-357,361]],"id":"368","properties":{"name":"Iraq"}},{"type":"MultiPolygon","arcs":[[[-351,362,363,364]],[[-349,365]]],"id":"512","properties":{"name":"Oman"}},{"type":"MultiPolygon","arcs":[[[366]],[[367]]],"id":"548","properties":{"name":"Vanuatu"}},{"type":"Polygon","arcs":[[368,369,370,371]],"id":"116","properties":{"name":"Cambodia"}},{"type":"Polygon","arcs":[[-369,372,373,374,375,376]],"id":"764","properties":{"name":"Thailand"}},{"type":"Polygon","arcs":[[-370,-377,377,378,379]],"id":"418","properties":{"name":"Laos"}},{"type":"Polygon","arcs":[[-376,380,381,382,383,-378]],"id":"104","properties":{"name":"Myanmar"}},{"type":"Polygon","arcs":[[-371,-380,384,385]],"id":"704","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[386,386,386]],[[-147,387,388,389,390]]],"id":"408","properties":{"name":"North Korea"}},{"type":"Polygon","arcs":[[-389,391]],"id":"410","properties":{"name":"South Korea"}},{"type":"Polygon","arcs":[[-149,392]],"id":"496","properties":{"name":"Mongolia"}},{"type":"Polygon","arcs":[[-383,393,394,395,396,397,398,399,400]],"id":"356","properties":{"name":"India"}},{"type":"Polygon","arcs":[[-382,401,-394]],"id":"050","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[-400,402]],"id":"064","properties":{"name":"Bhutan"}},{"type":"Polygon","arcs":[[-398,403]],"id":"524","properties":{"name":"Nepal"}},{"type":"Polygon","arcs":[[-396,404,405,406,407]],"id":"586","properties":{"name":"Pakistan"}},{"type":"Polygon","arcs":[[-69,408,409,-407,410,411]],"id":"004","properties":{"name":"Afghanistan"}},{"type":"Polygon","arcs":[[-68,412,413,-409]],"id":"762","properties":{"name":"Tajikistan"}},{"type":"Polygon","arcs":[[-62,414,-413,-67]],"id":"417","properties":{"name":"Kyrgyzstan"}},{"type":"Polygon","arcs":[[-64,-70,-412,415,416]],"id":"795","properties":{"name":"Turkmenistan"}},{"type":"Polygon","arcs":[[-360,417,418,419,420,421,-416,-411,-406,422]],"id":"364","properties":{"name":"Iran"}},{"type":"Polygon","arcs":[[-332,-334,423,424,-358,-344]],"id":"760","properties":{"name":"Syria"}},{"type":"Polygon","arcs":[[-420,425,426,427,428]],"id":"051","properties":{"name":"Armenia"}},{"type":"Polygon","arcs":[[-172,429,430]],"id":"752","properties":{"name":"Sweden"}},{"type":"Polygon","arcs":[[-156,431,432,433,434]],"id":"112","properties":{"name":"Belarus"}},{"type":"Polygon","arcs":[[-155,435,-164,436,437,438,439,440,441,442,-432]],"id":"804","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[-433,-443,443,444,445,446,-142,447]],"id":"616","properties":{"name":"Poland"}},{"type":"Polygon","arcs":[[448,449,450,451,452,453,454]],"id":"040","properties":{"name":"Austria"}},{"type":"Polygon","arcs":[[-441,455,456,457,458,-449,459]],"id":"348","properties":{"name":"Hungary"}},{"type":"Polygon","arcs":[[-439,460]],"id":"498","properties":{"name":"Moldova"}},{"type":"Polygon","arcs":[[-438,461,462,463,-456,-440,-461]],"id":"642","properties":{"name":"Romania"}},{"type":"Polygon","arcs":[[-434,-448,-144,464,465]],"id":"440","properties":{"name":"Lithuania"}},{"type":"Polygon","arcs":[[-157,-435,-466,466,467]],"id":"428","properties":{"name":"Latvia"}},{"type":"Polygon","arcs":[[-158,-468,468]],"id":"233","properties":{"name":"Estonia"}},{"type":"Polygon","arcs":[[-446,469,-453,470,-238,471,472,473,474,475,476]],"id":"276","properties":{"name":"Germany"}},{"type":"Polygon","arcs":[[-463,477,478,479,480,481]],"id":"100","properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","arcs":[[[482]],[[-480,483,484,485,486]]],"id":"300","properties":{"name":"Greece"}},{"type":"MultiPolygon","arcs":[[[-359,-425,487,488,-427,-418]],[[-479,489,-484]]],"id":"792","properties":{"name":"Turkey"}},{"type":"Polygon","arcs":[[-486,490,491,492,493]],"id":"008","properties":{"name":"Albania"}},{"type":"Polygon","arcs":[[-458,494,495,496,497,498]],"id":"191","properties":{"name":"Croatia"}},{"type":"Polygon","arcs":[[-452,499,-239,-471]],"id":"756","properties":{"name":"Switzerland"}},{"type":"Polygon","arcs":[[-472,-245,500]],"id":"442","properties":{"name":"Luxembourg"}},{"type":"Polygon","arcs":[[-473,-501,-244,501,502]],"id":"056","properties":{"name":"Belgium"}},{"type":"Polygon","arcs":[[-474,-503,503]],"id":"528","properties":{"name":"Netherlands"}},{"type":"Polygon","arcs":[[504,505]],"id":"620","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-505,506,-242,507]],"id":"724","properties":{"name":"Spain"}},{"type":"Polygon","arcs":[[508,509]],"id":"372","properties":{"name":"Ireland"}},{"type":"Polygon","arcs":[[510]],"id":"540","properties":{"name":"New Caledonia"}},{"type":"MultiPolygon","arcs":[[[511]],[[512]],[[513]],[[514]],[[515]]],"id":"090","properties":{"name":"Solomon Is."}},{"type":"MultiPolygon","arcs":[[[516]],[[517]]],"id":"554","properties":{"name":"New Zealand"}},{"type":"MultiPolygon","arcs":[[[518]],[[519]]],"id":"036","properties":{"name":"Australia"}},{"type":"Polygon","arcs":[[520]],"id":"144","properties":{"name":"Sri Lanka"}},{"type":"MultiPolygon","arcs":[[[521]],[[-61,-150,-393,-148,-391,522,-385,-379,-384,-401,-403,-399,-404,-397,-408,-410,-414,-415]]],"id":"156","properties":{"name":"China"}},{"type":"Polygon","arcs":[[523]],"id":"158","properties":{"name":"Taiwan"}},{"type":"MultiPolygon","arcs":[[[-451,524,525,-240,-500]],[[526]],[[527]]],"id":"380","properties":{"name":"Italy"}},{"type":"MultiPolygon","arcs":[[[-476,528]],[[529]]],"id":"208","properties":{"name":"Denmark"}},{"type":"MultiPolygon","arcs":[[[-510,530]],[[531]]],"id":"826","properties":{"name":"United Kingdom"}},{"type":"Polygon","arcs":[[532]],"id":"352","properties":{"name":"Iceland"}},{"type":"MultiPolygon","arcs":[[[-152,533,-421,-429,534]],[[-419,-426]]],"id":"031","properties":{"name":"Azerbaijan"}},{"type":"Polygon","arcs":[[-153,-535,-428,-489,535]],"id":"268","properties":{"name":"Georgia"}},{"type":"MultiPolygon","arcs":[[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]]],"id":"608","properties":{"name":"Philippines"}},{"type":"MultiPolygon","arcs":[[[-374,543]],[[-81,544,545,546]]],"id":"458","properties":{"name":"Malaysia"}},{"type":"Polygon","arcs":[[-546,547]],"id":"096","properties":{"name":"Brunei"}},{"type":"Polygon","arcs":[[-450,-459,-499,548,-525]],"id":"705","properties":{"name":"Slovenia"}},{"type":"Polygon","arcs":[[-160,549,-430,-171]],"id":"246","properties":{"name":"Finland"}},{"type":"Polygon","arcs":[[-442,-460,-455,550,-444]],"id":"703","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[-445,-551,-454,-470]],"id":"203","properties":{"name":"Czechia"}},{"type":"Polygon","arcs":[[-126,551,552,553]],"id":"232","properties":{"name":"Eritrea"}},{"type":"MultiPolygon","arcs":[[[554]],[[555]],[[556]]],"id":"392","properties":{"name":"Japan"}},{"type":"Polygon","arcs":[[-193,-97,-202]],"id":"600","properties":{"name":"Paraguay"}},{"type":"Polygon","arcs":[[-364,557,558]],"id":"887","properties":{"name":"Yemen"}},{"type":"Polygon","arcs":[[-346,-362,-356,559,-354,560,-352,-365,-559,561]],"id":"682","properties":{"name":"Saudi Arabia"}},{"type":"MultiPolygon","arcs":[[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]]],"id":"010","properties":{"name":"Antarctica"}},{"type":"Polygon","arcs":[[570,571]],"properties":{"name":"N. Cyprus"}},{"type":"Polygon","arcs":[[-572,572]],"id":"196","properties":{"name":"Cyprus"}},{"type":"Polygon","arcs":[[-341,-15,573]],"id":"504","properties":{"name":"Morocco"}},{"type":"Polygon","arcs":[[-124,574,575,-329,576]],"id":"818","properties":{"name":"Egypt"}},{"type":"Polygon","arcs":[[-123,-132,-283,-343,-340,577,-575]],"id":"434","properties":{"name":"Libya"}},{"type":"Polygon","arcs":[[-114,-119,578,-127,-554,579,580]],"id":"231","properties":{"name":"Ethiopia"}},{"type":"Polygon","arcs":[[-553,581,582,-580]],"id":"262","properties":{"name":"Djibouti"}},{"type":"Polygon","arcs":[[-115,-581,-583,583]],"properties":{"name":"Somaliland"}},{"type":"Polygon","arcs":[[-11,584,-110,585,-117]],"id":"800","properties":{"name":"Uganda"}},{"type":"Polygon","arcs":[[-10,-325,-111,-585]],"id":"646","properties":{"name":"Rwanda"}},{"type":"Polygon","arcs":[[-496,586,587]],"id":"070","properties":{"name":"Bosnia and Herz."}},{"type":"Polygon","arcs":[[-481,-487,-494,588,589]],"id":"807","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[-457,-464,-482,-590,590,591,-587,-495]],"id":"688","properties":{"name":"Serbia"}},{"type":"Polygon","arcs":[[-492,592,-497,-588,-592,593]],"id":"499","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[-493,-594,-591,-589]],"properties":{"name":"Kosovo"}},{"type":"Polygon","arcs":[[594]],"id":"780","properties":{"name":"Trinidad and Tobago"}},{"type":"Polygon","arcs":[[-109,-310,-128,-579,-118,-586]],"id":"728","properties":{"name":"S. Sudan"}}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[3,320,184,255,323,104,322,311,313,315,289,284,273,290,293,297,305,307,302,304,263,336,258,272,13,573,341,338,577,575,329,332,423,487,535,153,435,164,436,461,477,489,484,490,592,497,548,525,240,507,505,506,242,501,503,474,528,476,446,142,464,466,468,158,549,430,172,161,387,391,389,522,385,371,372,543,374,380,401,394,404,422,360,354,559,352,560,347,365,349,362,557,561,346,576,124,551,581,583,115,119],[421,416,64,150,533]],[[17,48,186,229,227,223,219,216,213,209,230,232,234,236,200,191,93,100,203,246,207,211,214,217,220,224,228,189,50,15,58]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[59]],[[70,75]],[[72]],[[73]],[[74]],[[77,177]],[[78]],[[546,79,544,547]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90,98]],[[133,134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[144]],[[145]],[[162]],[[165]],[[166]],[[167]],[[168]],[[169]],[[173]],[[174]],[[175]],[[176]],[[245]],[[247]],[[248]],[[249]],[[334]],[[366]],[[367]],[[482]],[[508,530]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[523]],[[526]],[[527]],[[529]],[[531]],[[532]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[554]],[[555]],[[556]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570,572]],[[594]]]}]}},"arcs":[[[99478,40237],[69,98],[96,-171],[-46,-308],[-172,-81],[-153,73],[-27,260],[107,203],[126,-74]],[[0,41087],[57,27],[-34,-284],[-23,-32],[99822,-145],[-177,-124],[-36,220],[139,121],[88,33],[163,184],[-99999,0]],[[59417,50018],[47,-65],[1007,-1203],[19,-343],[399,-590]],[[60889,47817],[-128,-728],[16,-335],[178,-216],[8,-153],[-76,-357],[16,-180],[-18,-282],[97,-370],[115,-583],[101,-129]],[[61198,44484],[-221,-342],[-303,-230],[-167,10],[-99,-177],[-193,-16],[-73,-74],[-334,166],[-209,-48]],[[59599,43773],[-77,804],[-95,275],[-55,164],[-273,110]],[[59099,45126],[-157,177],[-177,100],[-111,99],[-116,150]],[[58538,45652],[-150,745],[-161,330],[-55,343],[27,307],[-50,544]],[[58149,47921],[115,28],[101,214],[108,308],[69,124],[-3,192],[-60,134],[-16,233]],[[58463,49154],[80,74],[16,348],[-110,333]],[[58449,49909],[98,71],[304,-7],[566,45]],[[47592,66920],[1,-40],[-6,-114]],[[47587,66766],[-1,-895],[-911,31],[9,-1512],[-261,-53],[-68,-304],[53,-853],[-1088,4],[-60,-197]],[[45260,62987],[12,249]],[[45272,63236],[5,-1],[625,48],[33,213],[114,265],[92,816],[386,637],[131,745],[86,44],[91,460],[234,63],[100,-76],[126,0],[90,134],[172,19],[-7,317],[42,0]],[[15878,79530],[-38,1],[-537,581],[-199,255],[-503,244],[-155,523],[40,363],[-356,252],[-48,476],[-336,429],[-6,304]],[[13740,82958],[154,285],[-7,373],[-473,376],[-284,674],[-173,424],[-255,266],[-187,242],[-147,306],[-279,-192],[-270,-330],[-247,388],[-194,259],[-271,164],[-273,17],[1,3364],[2,2193]],[[10837,91767],[518,-142],[438,-285],[289,-54],[244,247],[336,184],[413,-72],[416,259],[455,148],[191,-245],[207,138],[62,278],[192,-63],[470,-530],[369,401],[38,-449],[341,97],[105,173],[337,-34],[424,-248],[650,-217],[383,-100],[272,38],[374,-300],[-390,-293],[502,-127],[750,70],[236,103],[296,-354],[302,299],[-283,251],[179,202],[338,27],[223,59],[224,-141],[279,-321],[310,47],[491,-266],[431,94],[405,-14],[-32,367],[247,103],[431,-200],[-2,-559],[177,471],[223,-16],[126,594],[-298,364],[-324,239],[22,653],[329,429],[366,-95],[281,-261],[378,-666],[-247,-290],[517,-120],[-1,-604],[371,463],[332,-380],[-83,-438],[269,-399],[290,427],[202,510],[16,649],[394,-46],[411,-87],[373,-293],[17,-293],[-207,-315],[196,-316],[-36,-288],[-544,-413],[-386,-91],[-287,178],[-83,-297],[-268,-498],[-81,-259],[-322,-399],[-397,-39],[-220,-250],[-18,-384],[-323,-74],[-340,-479],[-301,-665],[-108,-466],[-16,-686],[409,-99],[125,-553],[130,-448],[388,117],[517,-256],[277,-225],[199,-279],[348,-163],[294,-248],[459,-34],[302,-58],[-45,-511],[86,-594],[201,-661],[414,-561],[214,192],[150,607],[-145,934],[-196,311],[445,276],[314,415],[154,411],[-23,395],[-188,502],[-338,445],[328,619],[-121,535],[-93,922],[194,137],[476,-161],[286,-57],[230,155],[258,-200],[342,-343],[85,-229],[495,-45],[-8,-496],[92,-747],[254,-92],[201,-348],[402,328],[266,652],[184,274],[216,-527],[362,-754],[307,-709],[-112,-371],[370,-333],[250,-338],[442,-152],[179,-189],[110,-500],[216,-78],[112,-223],[20,-664],[-202,-222],[-199,-207],[-458,-210],[-349,-486],[-470,-96],[-594,125],[-417,4],[-287,-41],[-233,-424],[-354,-262],[-401,-782],[-320,-545],[236,97],[446,776],[583,493],[415,58],[246,-289],[-262,-397],[88,-637],[91,-446],[361,-295],[459,86],[278,664],[19,-429],[180,-214],[-344,-387],[-615,-351],[-276,-239],[-310,-426],[-211,44],[-11,500],[483,488],[-445,-19],[-309,-72]],[[31350,77248],[-181,334],[0,805],[-123,171],[-187,-100],[-92,155],[-212,-446],[-84,-460],[-99,-269],[-118,-91],[-89,-30],[-28,-146],[-512,0],[-422,-4],[-125,-109],[-294,-425],[-34,-46],[-89,-231],[-255,1],[-273,-3],[-125,-93],[44,-116],[25,-181],[-5,-60],[-363,-293],[-286,-93],[-323,-316],[-70,0],[-94,93],[-31,85],[6,61],[61,207],[131,325],[81,349],[-56,514],[-59,536],[-290,277],[35,105],[-41,73],[-76,0],[-56,93],[-14,140],[-54,-61],[-75,18],[17,59],[-65,58],[-27,155],[-216,189],[-224,197],[-272,229],[-261,214],[-248,-167],[-91,-6],[-342,154],[-225,-77],[-269,183],[-284,94],[-194,36],[-86,100],[-49,325],[-94,-3],[-1,-227],[-575,0],[-951,0],[-944,0],[-833,0],[-834,0],[-819,0],[-847,0],[-273,0],[-824,0],[-789,0]],[[26668,87478],[207,273],[381,-6],[-6,-114],[-325,-326],[-196,13],[-61,160]],[[27840,93593],[-306,313],[12,213],[133,39],[636,-63],[479,-325],[25,-163],[-296,17],[-299,13],[-304,-80],[-80,36]],[[27690,87261],[107,177],[114,-13],[70,-121],[-108,-310],[-123,50],[-73,176],[13,41]],[[23996,94879],[-151,-229],[-403,44],[-337,155],[148,266],[399,159],[243,-208],[101,-187]],[[23933,96380],[-126,-17],[-521,38],[-74,165],[559,-9],[195,-109],[-33,-68]],[[23124,97116],[332,-205],[-76,-214],[-411,-122],[-226,138],[-119,221],[-22,245],[360,-24],[162,-39]],[[25514,94532],[-449,73],[-738,190],[-96,325],[-34,293],[-279,258],[-574,72],[-322,183],[104,242],[573,-37],[308,-190],[547,1],[240,-194],[-64,-222],[319,-134],[177,-140],[374,-26],[406,-50],[441,128],[566,51],[451,-42],[298,-223],[62,-244],[-174,-157],[-414,-127],[-355,72],[-797,-91],[-570,-11]],[[19093,96754],[392,-92],[-93,-177],[-518,-170],[-411,191],[224,188],[406,60]],[[19177,97139],[361,-120],[-339,-115],[-461,1],[5,84],[285,177],[149,-27]],[[34555,80899],[-148,-372],[-184,-517],[181,199],[187,-126],[-98,-206],[247,-162],[128,144],[277,-182],[-86,-433],[194,101],[36,-313],[86,-367],[-117,-520],[-125,-22],[-183,111],[60,484],[-77,75],[-322,-513],[-166,21],[196,277],[-267,144],[-298,-35],[-539,18],[-43,175],[173,208],[-121,160],[234,356],[287,941],[172,336],[241,204],[129,-26],[-54,-160]],[[26699,89048],[304,-203],[318,-184],[25,-281],[204,46],[199,-196],[-247,-186],[-432,142],[-156,266],[-275,-314],[-396,-306],[-95,346],[-377,-57],[242,292],[35,465],[95,542],[201,-49],[51,-259],[143,91],[161,-155]],[[28119,93327],[263,235],[616,-299],[383,-282],[36,-258],[515,134],[290,-376],[670,-234],[242,-238],[263,-553],[-510,-275],[654,-386],[441,-130],[400,-543],[437,-39],[-87,-414],[-487,-687],[-342,253],[-437,568],[-359,-74],[-35,-338],[292,-344],[377,-272],[114,-157],[181,-584],[-96,-425],[-350,160],[-697,473],[393,-509],[289,-357],[45,-206],[-753,236],[-596,343],[-337,287],[97,167],[-414,304],[-405,286],[5,-171],[-803,-94],[-235,203],[183,435],[522,10],[571,76],[-92,211],[96,294],[360,576],[-77,261],[-107,203],[-425,286],[-563,201],[178,150],[-294,367],[-245,34],[-219,201],[-149,-175],[-503,-76],[-1011,132],[-588,174],[-450,89],[-231,207],[290,270],[-394,2],[-88,599],[213,528],[286,241],[717,158],[-204,-382],[219,-369],[256,477],[704,242],[477,-611],[-42,-387],[550,172]],[[23749,94380],[579,-20],[530,-144],[-415,-526],[-331,-115],[-298,-442],[-317,22],[-173,519],[4,294],[145,251],[276,161]],[[15873,95551],[472,442],[570,383],[426,-9],[381,87],[-38,-454],[-214,-205],[-259,-29],[-517,-252],[-444,-91],[-377,128]],[[13136,82508],[267,47],[-84,-671],[242,-475],[-111,1],[-167,270],[-103,272],[-140,184],[-51,260],[16,188],[131,-76]],[[20696,97433],[546,-81],[751,-215],[212,-281],[108,-247],[-453,66],[-457,192],[-619,21],[268,176],[-335,142],[-21,227]],[[15692,79240],[-140,-82],[-456,269],[-84,209],[-248,207],[-50,168],[-286,107],[-107,321],[24,137],[291,-129],[171,-89],[261,-63],[94,-204],[138,-280],[277,-244],[115,-327]],[[16239,94566],[397,-123],[709,-33],[270,-171],[298,-249],[-349,-149],[-681,-415],[-344,-414],[0,-257],[-731,-285],[-147,259],[-641,312],[119,250],[192,432],[241,388],[-272,362],[939,93]],[[20050,95391],[247,99],[291,-26],[49,-289],[-169,-281],[-940,-91],[-701,-256],[-423,-14],[-35,193],[577,261],[-1255,-70],[-389,106],[379,577],[262,165],[782,-199],[493,-350],[485,-45],[-397,565],[255,215],[286,-68],[94,-282],[109,-210]],[[20410,93755],[311,-239],[175,-575],[86,-417],[466,-293],[502,-279],[-31,-260],[-456,-48],[178,-227],[-94,-217],[-503,93],[-478,160],[-322,-36],[-522,-201],[-704,-88],[-494,-56],[-151,279],[-379,161],[-246,-66],[-343,468],[185,62],[429,101],[392,-26],[362,103],[-537,138],[-594,-47],[-394,12],[-146,217],[644,237],[-428,-9],[-485,156],[233,443],[193,235],[744,359],[284,-114],[-139,-277],[618,179],[386,-298],[314,302],[254,-194],[227,-580],[140,244],[-197,606],[244,86],[276,-94]],[[22100,93536],[-306,386],[329,286],[331,-124],[496,75],[72,-172],[-259,-283],[420,-254],[-50,-532],[-455,-229],[-268,50],[-192,225],[-690,456],[5,189],[567,-73]],[[20389,94064],[372,24],[211,-130],[-244,-390],[-434,413],[95,83]],[[22639,95907],[212,-273],[9,-303],[-127,-440],[-458,-60],[-298,94],[5,345],[-455,-46],[-18,457],[299,-18],[419,201],[390,-34],[22,77]],[[23329,98201],[192,180],[285,42],[-122,135],[646,30],[355,-315],[468,-127],[455,-112],[220,-390],[334,-190],[-381,-176],[-513,-445],[-492,-42],[-575,76],[-299,240],[4,215],[220,157],[-508,-4],[-306,196],[-176,268],[193,262]],[[24559,98965],[413,112],[324,19],[545,96],[409,220],[344,-30],[300,-166],[211,319],[367,95],[498,65],[849,24],[148,-63],[802,100],[601,-38],[602,-37],[742,-47],[597,-75],[508,-161],[-12,-157],[-678,-257],[-672,-119],[-251,-133],[605,3],[-656,-358],[-452,-167],[-476,-483],[-573,-98],[-177,-120],[-841,-64],[383,-74],[-192,-105],[230,-292],[-264,-202],[-429,-167],[-132,-232],[-388,-176],[39,-134],[475,23],[6,-144],[-742,-355],[-726,163],[-816,-91],[-414,71],[-525,31],[-35,284],[514,133],[-137,427],[170,41],[742,-255],[-379,379],[-450,113],[225,229],[492,141],[79,206],[-392,231],[-118,304],[759,-26],[220,-64],[433,216],[-625,68],[-972,-38],[-491,201],[-232,239],[-324,173],[-61,202]],[[29106,90427],[-180,-174],[-312,-30],[-69,289],[118,331],[255,82],[217,-163],[3,-253],[-32,-82]],[[23262,91636],[169,-226],[-173,-207],[-374,179],[-226,-65],[-380,266],[245,183],[194,256],[295,-168],[166,-106],[84,-112]],[[32078,80046],[96,49],[365,-148],[284,-247],[8,-108],[-135,-11],[-360,186],[-258,279]],[[32218,78370],[97,-288],[202,-79],[257,16],[-137,-242],[-102,-38],[-353,250],[-69,198],[105,183]],[[31350,77248],[48,-194],[-296,-286],[-286,-204],[-293,-175],[-147,-351],[-47,-133],[-3,-313],[92,-313],[115,-15],[-29,216],[83,-131],[-22,-169],[-188,-96],[-133,11],[-205,-103],[-121,-29],[-162,-29],[-231,-171],[408,111],[82,-112],[-389,-177],[-177,-1],[8,72],[-84,-164],[82,-27],[-60,-424],[-203,-455],[-20,152],[-61,30],[-91,148],[57,-318],[69,-105],[5,-223],[-89,-230],[-157,-472],[-25,24],[86,402],[-142,225],[-33,491],[-53,-255],[59,-375],[-183,93],[191,-191],[12,-562],[79,-41],[29,-204],[39,-591],[-176,-439],[-288,-175],[-182,-346],[-139,-38],[-141,-217],[-39,-199],[-305,-383],[-157,-281],[-131,-351],[-43,-419],[50,-411],[92,-505],[124,-418],[1,-256],[132,-685],[-9,-398],[-12,-230],[-69,-361],[-83,-75],[-137,72],[-44,259],[-105,136],[-148,508],[-129,452],[-42,231],[57,393],[-77,325],[-217,494],[-108,90],[-281,-268],[-49,30],[-135,275],[-174,147],[-314,-75],[-247,66],[-212,-41],[-114,-92],[50,-157],[-5,-240],[59,-117],[-53,-77],[-103,87],[-104,-112],[-202,18],[-207,312],[-242,-73],[-202,137],[-173,-42],[-234,-138],[-253,-438],[-276,-255],[-152,-282],[-63,-266],[-3,-407],[14,-284],[52,-201]],[[23016,65864],[-108,-18],[-197,130],[-217,184],[-78,277],[-61,414],[-164,337],[-96,346],[-139,404],[-196,236],[-227,-11],[-175,-467],[-230,177],[-144,178],[-69,325],[-92,309],[-165,260],[-142,186],[-102,210],[-481,0],[0,-244],[-221,0],[-552,-4],[-634,416],[-419,287],[26,116],[-353,-64],[-316,-46]],[[17464,69802],[-46,302],[-180,340],[-130,71],[-30,169],[-156,30],[-100,159],[-258,59],[-71,95],[-33,324],[-270,594],[-231,821],[10,137],[-123,195],[-215,495],[-38,482],[-148,323],[61,489],[-10,507],[-89,453],[109,557],[34,536],[33,536],[-50,792],[-88,506],[-80,274],[33,115],[402,-200],[148,-558],[69,156],[-45,484],[-94,485]],[[6833,62443],[49,-51],[45,-79],[71,-207],[-7,-33],[-108,-126],[-89,-92],[-41,-99],[-69,84],[8,165],[-46,216],[14,65],[48,97],[-19,116],[16,55],[21,-11],[107,-100]],[[6668,62848],[-23,-71],[-94,-43],[-47,125],[-32,48],[-3,37],[27,50],[99,-56],[73,-90]],[[6456,63091],[-9,-63],[-149,17],[21,72],[137,-26]],[[6104,63411],[23,-38],[80,-196],[-15,-34],[-19,8],[-97,21],[-35,133],[-11,24],[74,82]],[[5732,63705],[5,-138],[-33,-58],[-93,107],[14,43],[43,58],[64,-12]],[[3759,86256],[220,-54],[27,-226],[-171,-92],[-182,110],[-168,161],[274,101]],[[7436,84829],[185,-40],[117,-183],[-240,-281],[-277,-225],[-142,152],[-43,277],[252,210],[148,90]],[[13740,82958],[-153,223],[-245,188],[-78,515],[-358,478],[-150,558],[-267,38],[-441,15],[-326,170],[-574,613],[-266,112],[-486,211],[-385,-51],[-546,272],[-330,252],[-309,-125],[58,-411],[-154,-38],[-321,-123],[-245,-199],[-308,-126],[-39,348],[125,580],[295,182],[-76,148],[-354,-329],[-190,-394],[-400,-420],[203,-287],[-262,-424],[-299,-248],[-278,-180],[-69,-261],[-434,-305],[-87,-278],[-325,-252],[-191,45],[-259,-165],[-282,-201],[-231,-197],[-477,-169],[-43,99],[304,276],[271,182],[296,324],[345,66],[137,243],[385,353],[62,119],[205,208],[48,448],[141,349],[-320,-179],[-90,102],[-150,-215],[-181,300],[-75,-212],[-104,294],[-278,-236],[-170,0],[-24,352],[50,216],[-179,211],[-361,-113],[-235,277],[-190,142],[-1,334],[-214,252],[108,340],[226,330],[99,303],[225,43],[191,-94],[224,285],[201,-51],[212,183],[-52,270],[-155,106],[205,228],[-170,-7],[-295,-128],[-85,-131],[-219,131],[-392,-67],[-407,142],[-117,238],[-351,343],[390,247],[620,289],[228,0],[-38,-296],[586,23],[-225,366],[-342,225],[-197,296],[-267,252],[-381,187],[155,309],[493,19],[350,270],[66,287],[284,281],[271,68],[526,262],[256,-40],[427,315],[421,-124],[201,-266],[123,114],[469,-35],[-16,-136],[425,-101],[283,59],[585,-186],[534,-56],[214,-77],[370,96],[421,-177],[302,-83]],[[2297,88264],[171,-113],[173,61],[225,-156],[276,-79],[-23,-64],[-211,-125],[-211,128],[-106,107],[-245,-34],[-66,52],[17,223]],[[74266,79657],[-212,-393],[-230,-56],[-13,-592],[-155,-267],[-551,194],[-200,-1058],[-143,-131],[-550,-236],[250,-1026],[-190,-154],[22,-337]],[[72294,75601],[-171,87],[-140,212],[-412,62],[-461,16],[-100,-65],[-396,248],[-158,-122],[-43,-349],[-457,204],[-183,-84],[-62,-259]],[[69711,75551],[-159,-109],[-367,-412],[-121,-422],[-104,-4],[-76,280],[-353,19],[-57,484],[-135,4],[21,593],[-333,431],[-476,-46],[-326,-86],[-265,533],[-227,223],[-431,423],[-52,51],[-715,-349],[11,-2178]],[[65546,74986],[-142,-29],[-195,463],[-188,166],[-315,-123],[-123,-197]],[[64583,75266],[-15,144],[68,246],[-53,206],[-322,202],[-125,530],[-154,150],[-9,192],[270,-56],[11,432],[236,96],[243,-88],[50,576],[-50,365],[-278,-28],[-236,144],[-321,-260],[-259,-124]],[[63639,77993],[-142,96],[29,304],[-177,395],[-207,-17],[-235,401],[160,448],[-81,120],[222,649],[285,-342],[35,431],[573,643],[434,15],[612,-409],[329,-239],[295,249],[440,12],[356,-306],[80,175],[391,-25],[69,280],[-450,406],[267,288],[-52,161],[266,153],[-200,405],[127,202],[1039,205],[136,146],[695,218],[250,245],[499,-127],[88,-612],[290,144],[356,-202],[-23,-322],[267,33],[696,558],[-102,-185],[355,-457],[620,-1500],[148,309],[383,-340],[399,151],[154,-106],[133,-341],[194,-115],[119,-251],[358,79],[147,-361]],[[69711,75551],[83,-58],[-234,-382],[205,-223],[198,147],[329,-311],[-355,-425],[-212,58]],[[69725,74357],[-114,-15],[-40,164],[58,274],[-371,-137],[-89,-380],[-132,-326],[-232,28],[-72,-261],[204,-140],[60,-440],[-156,-598]],[[68841,72526],[-210,124],[-154,4]],[[68477,72654],[7,362],[-369,253],[-291,289],[-181,278],[-317,408],[-137,609],[-93,108],[-301,-27],[-106,121],[-30,471],[-374,312],[-234,-343],[-237,-204],[45,-297],[-313,-8]],[[89166,49043],[482,-407],[513,-338],[192,-302],[154,-297],[43,-349],[462,-365],[68,-313],[-256,-64],[62,-393],[248,-388],[180,-627],[159,20],[-11,-262],[215,-100],[-84,-111],[295,-249],[-30,-171],[-184,-41],[-69,153],[-238,66],[-281,89],[-216,377],[-158,325],[-144,517],[-362,259],[-235,-169],[-170,-195],[35,-436],[-218,-203],[-155,99],[-288,25]],[[89175,45193],[-4,1925],[-5,1925]],[[92399,48417],[106,-189],[33,-307],[-87,-157],[-52,348],[-65,229],[-126,193],[-158,252],[-200,174],[77,143],[150,-166],[94,-130],[117,-142],[111,-248]],[[92027,47129],[-152,-144],[-142,-138],[-148,1],[-228,171],[-158,165],[23,183],[249,-86],[152,46],[42,283],[40,15],[27,-314],[158,45],[78,202],[155,211],[-30,348],[166,11],[56,-97],[-5,-327],[-93,-361],[-146,-48],[-44,-166]],[[92988,47425],[84,-134],[135,-375],[131,-200],[-39,-166],[-78,-59],[-120,227],[-122,375],[-59,450],[38,57],[30,-175]],[[89175,45193],[-247,485],[-282,118],[-69,-168],[-352,-18],[118,481],[175,164],[-72,642],[-134,496],[-538,500],[-229,50],[-417,546],[-82,-287],[-107,-52],[-63,216],[-1,257],[-212,290],[299,213],[198,-11],[-23,156],[-407,1],[-110,352],[-248,109],[-117,293],[374,143],[142,192],[446,-242],[44,-220],[78,-955],[287,-354],[232,627],[319,356],[247,1],[238,-206],[206,-212],[298,-113]],[[84713,45326],[28,-117],[5,-179]],[[84746,45030],[-181,-441],[-238,-130],[-33,71],[25,201],[119,360],[275,235]],[[87280,46506],[-27,445],[49,212],[58,200],[63,-173],[0,-282],[-143,-402]],[[82744,53024],[-158,-533],[204,-560],[-48,-272],[312,-546],[-329,-70],[-93,-403],[12,-535],[-267,-404],[-7,-589],[-107,-903],[-41,210],[-316,-266],[-110,361],[-198,34],[-139,189],[-330,-212],[-101,285],[-182,-32],[-229,68],[-43,793],[-138,164],[-134,505],[-38,517],[32,548],[165,392]],[[80461,51765],[47,-395],[190,-334],[179,121],[177,-43],[162,299],[133,52],[263,-166],[226,126],[143,822],[107,205],[96,672],[319,0],[241,-100]],[[85936,48924],[305,-172],[101,-452],[-234,244],[-232,49],[-157,-39],[-192,21],[65,325],[344,24]],[[85242,48340],[-192,108],[-54,254],[281,29],[69,-195],[-104,-196]],[[85536,51864],[20,-322],[164,-52],[26,-241],[-15,-517],[-143,58],[-42,-359],[114,-312],[-78,-71],[-112,374],[-82,755],[56,472],[92,215]],[[84146,51097],[319,25],[275,429],[48,-132],[-223,-587],[-209,-113],[-267,115],[-463,-29],[-243,-85],[-39,-447],[248,-526],[150,268],[518,201],[-22,-272],[-121,86],[-121,-347],[-245,-229],[263,-757],[-50,-203],[249,-682],[-2,-388],[-148,-173],[-109,207],[134,484],[-273,-229],[-69,164],[36,228],[-200,346],[21,576],[-186,-179],[24,-689],[11,-846],[-176,-85],[-119,173],[79,544],[-43,570],[-117,4],[-86,405],[115,387],[40,469],[139,891],[58,243],[237,439],[217,-174],[350,-82]],[[83414,44519],[-368,414],[259,116],[146,-180],[97,-180],[-17,-159],[-117,-11]],[[83705,45536],[185,45],[249,216],[-41,-328],[-417,-168],[-370,73],[0,216],[220,123],[174,-177]],[[82849,45639],[172,48],[69,-251],[-321,-119],[-193,-79],[-149,5],[95,340],[153,5],[74,209],[100,-158]],[[80134,46785],[38,-210],[533,-59],[61,244],[515,-284],[101,-383],[417,-108],[341,-351],[-317,-225],[-306,238],[-251,-16],[-288,44],[-260,106],[-322,225],[-204,59],[-116,-74],[-506,243],[-48,254],[-255,44],[191,564],[337,-35],[224,-231],[115,-45]],[[78991,49939],[47,-412],[97,-330],[204,-52],[135,-374],[-70,-735],[-11,-914],[-308,-12],[-234,494],[-356,482],[-119,358],[-210,481],[-138,443],[-212,827],[-244,493],[-81,508],[-103,461],[-250,372],[-145,506],[-209,330],[-290,652],[-24,300],[178,-24],[430,-114],[246,-577],[215,-401],[153,-246],[263,-635],[283,-9],[233,-405],[161,-495],[211,-270],[-111,-482],[159,-205],[100,-15]],[[30935,19481],[106,-274],[139,-443],[361,-355],[389,-147],[-125,-296],[-264,-29],[-141,208]],[[31400,18145],[-168,16],[-297,1],[0,1319]],[[33993,32727],[-70,-473],[-74,-607],[3,-588],[-61,-132],[-21,-382]],[[33770,30545],[-19,-308],[353,-506],[-38,-408],[173,-257],[-14,-289],[-267,-757],[-412,-317],[-557,-123],[-305,59],[59,-352],[-57,-442],[51,-298],[-167,-208],[-284,-82],[-267,216],[-108,-155],[39,-587],[188,-178],[152,186],[82,-307],[-255,-183],[-223,-367],[-41,-595],[-66,-316],[-262,-2],[-218,-302],[-80,-443],[273,-433],[266,-119],[-96,-531],[-328,-333],[-180,-692],[-254,-234],[-113,-276],[89,-614],[185,-342],[-117,30]],[[30952,19680],[-257,93],[-672,79],[-115,344],[6,443],[-185,-38],[-98,214],[-24,626],[213,260],[88,375],[-33,299],[148,504],[101,782],[-30,347],[122,112],[-30,223],[-129,118],[92,248],[-126,224],[-65,682],[112,120],[-47,720],[65,605],[75,527],[166,215],[-84,576],[-1,543],[210,386],[-7,494],[159,576],[1,544],[-72,108],[-128,1020],[171,607],[-27,572],[100,537],[182,555],[196,367],[-83,232],[58,190],[-9,985],[302,291],[96,614],[-34,148]],[[31359,37147],[231,534],[364,-144],[163,-427],[109,475],[316,-24],[45,-127]],[[32587,37434],[511,-964],[227,-89],[339,-437],[286,-231],[40,-261],[-273,-898],[280,-160],[312,-91],[220,95],[252,453],[45,521]],[[34826,35372],[138,114],[139,-341],[-6,-472],[-234,-326],[-186,-241],[-314,-573],[-370,-806]],[[31400,18145],[-92,-239],[-238,-183],[-137,19],[-164,48],[-202,177],[-291,86],[-350,330],[-283,317],[-383,662],[229,-124],[390,-395],[369,-212],[143,271],[90,405],[256,244],[198,-70]],[[30669,40193],[136,-402],[37,-426],[146,-250],[-88,-572],[150,-663],[109,-814],[200,81]],[[30952,19680],[-247,4],[-134,-145],[-250,-213],[-45,-552],[-118,-14],[-313,192],[-318,412],[-346,338],[-87,374],[79,346],[-140,393],[-36,1007],[119,568],[293,457],[-422,172],[265,522],[94,982],[309,-208],[145,1224],[-186,157],[-87,-738],[-175,83],[87,845],[95,1095],[127,404],[-80,576],[-22,666],[117,19],[170,954],[192,945],[118,881],[-64,885],[83,487],[-34,730],[163,721],[50,1143],[89,1227],[87,1321],[-20,967],[-58,832]],[[30452,39739],[143,151],[74,303]],[[58538,45652],[-109,60],[-373,-99],[-75,-71],[-79,-377],[62,-261],[-49,-699],[-34,-593],[75,-105],[194,-230],[76,107],[23,-637],[-212,5],[-114,325],[-103,252],[-213,82],[-62,310],[-170,-187],[-222,83],[-93,268],[-176,55],[-131,-15],[-15,184],[-96,15]],[[56642,44124],[-127,35],[-172,-89],[-121,15],[-68,-54],[15,703],[-93,219],[-21,363],[41,356],[-56,228],[-5,372],[-337,-5],[24,213],[-142,-2],[-15,-103],[-172,-23],[-69,-344],[-42,-148],[-154,83],[-91,-83],[-184,-47],[-106,309],[-64,191],[-80,354],[-68,440],[-820,8],[-98,-71],[-80,11],[-115,-79]],[[53422,46976],[-39,183]],[[53383,47159],[71,62],[9,258],[45,152],[101,124]],[[53609,47755],[73,-60],[95,226],[152,-6],[17,-167],[104,-105],[164,370],[161,289],[71,189],[-10,486],[121,574],[127,304],[183,285],[32,189],[7,216],[45,205],[-14,335],[34,524],[55,368],[83,316],[16,357]],[[55125,52650],[25,412],[108,300],[149,190],[229,-200],[177,-218],[203,-59],[207,-115],[83,357],[38,46],[127,-60],[309,295],[110,-125],[90,18],[41,143],[104,51],[209,-62],[178,-14],[91,63]],[[57603,53672],[169,-488],[124,-71],[75,99],[128,-39],[155,125],[66,-252],[244,-393]],[[58564,52653],[-16,-691],[111,-80],[-89,-210],[-107,-157],[-106,-308],[-59,-274],[-15,-475],[-65,-225],[-2,-446]],[[58216,49787],[-80,-165],[-10,-351],[-38,-46],[-26,-323]],[[58062,48902],[70,-268],[17,-713]],[[61551,49585],[-165,488],[-3,2152],[243,670]],[[61626,52895],[76,186],[178,11],[247,417],[362,26],[785,1773]],[[63274,55308],[194,493],[125,363],[0,308],[0,596],[1,244],[2,9]],[[63596,57321],[89,12],[128,88],[147,59],[132,202],[105,2],[6,-163],[-25,-344],[1,-310],[-59,-214],[-78,-639],[-134,-659],[-172,-755],[-238,-866],[-237,-661],[-327,-806],[-278,-479],[-415,-586],[-259,-450],[-304,-715],[-64,-312],[-63,-140]],[[59417,50018],[-3,627],[80,239],[137,391],[101,431],[-123,678],[-32,296],[-132,411]],[[59445,53091],[171,352],[188,390]],[[59804,53833],[145,-99],[0,-332],[95,-194],[193,0],[352,-502],[87,-6],[65,16],[62,-68],[185,-47],[82,247],[254,247],[112,-200],[190,0]],[[61551,49585],[-195,-236],[-68,-246],[-104,-44],[-40,-416],[-89,-238],[-54,-393],[-112,-195]],[[56824,55442],[-212,258],[-96,170],[-18,184],[45,246],[-1,241],[-160,369],[-31,253]],[[56351,57163],[3,143],[-102,174],[-3,343],[-58,228],[-98,-34],[28,217],[72,246],[-32,245],[92,181],[-58,138],[73,365],[127,435],[240,-41],[-14,2345]],[[56621,62148],[3,248],[320,2],[0,1180]],[[56944,63578],[1117,0],[1077,0],[1102,0]],[[60240,63578],[90,-580],[-61,-107],[40,-608],[102,-706],[106,-145],[152,-219]],[[60669,61213],[-141,-337],[-204,-97],[-88,-181],[-27,-393],[-120,-868],[30,-236]],[[60119,59101],[-45,-508],[-112,-582],[-168,-293],[-119,-451],[-28,-241],[-132,-166],[-82,-618],[4,-531]],[[59437,55711],[-3,460],[-39,12],[5,294],[-33,203],[-143,233],[-34,426],[34,436],[-129,41],[-19,-132],[-167,-30],[67,-173],[23,-355],[-152,-324],[-138,-426],[-144,-61],[-233,345],[-105,-122],[-29,-172],[-143,-112],[-9,-122],[-277,0],[-38,122],[-200,20],[-100,-101],[-77,51],[-143,344],[-48,163],[-200,-81],[-76,-274],[-72,-528],[-95,-111],[-85,-65],[189,-230]],[[56351,57163],[-176,-101],[-141,-239],[-201,-645],[-261,-273],[-269,36],[-78,-54],[28,-208],[-145,-207],[-118,-230],[-350,-226],[-69,134],[-46,11],[-52,-152],[-229,-44]],[[54244,54965],[43,160],[-87,407],[-39,245],[-121,100],[-164,345],[60,279],[127,-60],[78,42],[155,-6],[-151,537],[10,393],[-18,392],[-111,378]],[[54026,58177],[28,279],[-178,13],[0,380],[-115,219],[120,778],[354,557],[15,769],[107,1199],[60,254],[-116,203],[-4,188],[-104,153],[-68,919]],[[54125,64088],[280,323],[1108,-1132],[1108,-1131]],[[30080,62227],[24,-321],[-21,-228],[-68,-99],[71,-177],[-5,-161]],[[30081,61241],[-185,100],[-131,-41],[-169,43],[-130,-110],[-149,184],[24,190],[256,-82],[210,-47],[100,131],[-127,256],[2,226],[-175,92],[62,163],[170,-26],[241,-93]],[[30080,62227],[34,101],[217,-3],[165,-152],[73,15],[50,-209],[152,11],[-9,-176],[124,-21],[136,-217],[-103,-240],[-132,128],[-127,-25],[-92,28],[-50,-107],[-106,-37],[-43,144],[-92,-85],[-111,-405],[-71,94],[-14,170]],[[76049,98451],[600,133],[540,-297],[640,-572],[-69,-531],[-606,-73],[-773,170],[-462,226],[-213,423],[-379,117],[722,404]],[[78565,97421],[704,-336],[-82,-240],[-1566,-228],[507,776],[229,66],[208,-38]],[[88563,95563],[734,-26],[1004,-313],[-219,-439],[-1023,16],[-461,-139],[-550,384],[149,406],[366,111]],[[91172,95096],[697,-155],[-321,-234],[-444,53],[-516,233],[66,192],[518,-89]],[[88850,93928],[263,234],[348,54],[394,-226],[34,-155],[-421,-4],[-569,66],[-49,31]],[[62457,98194],[542,107],[422,8],[57,-160],[159,142],[262,97],[412,-129],[-107,-90],[-373,-78],[-250,-45],[-39,-97],[-324,-98],[-301,140],[158,185],[-618,18]],[[56314,82678],[-511,-9],[-342,67]],[[55461,82736],[63,260],[383,191]],[[55907,83187],[291,-103],[123,-94],[-30,-162],[23,-150]],[[64863,94153],[665,518],[-75,268],[621,312],[917,380],[925,110],[475,220],[541,76],[193,-233],[-187,-184],[-984,-293],[-848,-282],[-863,-562],[-414,-577],[-435,-568],[56,-491],[531,-484],[-164,-52],[-907,77],[-74,262],[-503,158],[-40,320],[284,126],[-10,323],[551,503],[-255,73]],[[89698,82309],[96,-569],[-7,-581],[114,-597],[280,-1046],[-411,195],[-171,-854],[271,-605],[-8,-413],[-211,356],[-182,-457],[-51,496],[31,575],[-32,638],[64,446],[13,790],[-163,581],[24,808],[257,271],[-110,274],[123,83],[73,-391]],[[86327,75524],[-39,104]],[[86288,75628],[-2,300],[142,16],[40,698],[-73,506],[238,208],[338,-104],[186,575],[96,647],[107,216],[146,532],[-459,-175],[-240,-233],[-423,1],[-112,555],[-329,420],[-483,189],[-103,579],[-97,363],[-104,254],[-172,596],[-244,217],[-415,176],[-369,-16],[-345,-106],[-229,-294],[152,-141],[4,-326],[-155,-189],[-251,-627],[3,-260],[-392,-373],[-333,223]],[[82410,80055],[-331,-49],[-146,198],[-166,63],[-407,-416],[-366,-98],[-255,-146],[-350,96],[-258,-6],[-168,302],[-272,284],[-279,78],[-351,-78],[-263,-109],[-394,248],[-53,443],[-327,152],[-252,69],[-311,244],[-288,-612],[113,-348],[-270,-411],[-402,148],[-277,22],[-186,276],[-289,8],[-242,182],[-423,-278],[-530,-509],[-292,-102]],[[74375,79706],[-109,-49]],[[63639,77993],[-127,-350],[-269,-97],[-276,-610],[252,-561],[-27,-398],[303,-696]],[[63495,75281],[-166,-238],[-48,-150],[-122,40],[-191,359],[-78,20]],[[62890,75312],[-175,137],[-85,242],[-259,124],[-169,-93],[-48,110],[-378,283],[-409,96],[-235,101],[-34,-70]],[[61098,76242],[-354,499],[-317,223],[-240,347],[202,95],[231,494],[-156,234],[410,241],[-8,129],[-249,-95]],[[60617,78409],[9,262],[143,165],[269,43],[44,197],[-62,326],[113,310],[-3,173],[-410,192],[-162,-6],[-172,277],[-213,-94],[-352,208],[6,116],[-99,256],[-222,29],[-23,183],[70,120],[-178,334],[-288,-57],[-84,30],[-70,-134],[-104,23]],[[58829,81362],[-68,379],[-66,196],[54,55],[224,-20],[108,129],[-80,157],[-187,104],[16,107],[-113,108],[-174,387],[60,159],[-27,277],[-272,141],[-146,-70],[-39,146],[-293,149]],[[57826,83766],[-89,348],[-24,287],[-134,136]],[[57579,84537],[120,187],[-83,551],[198,341],[-42,103]],[[57772,85719],[316,327],[-291,280]],[[57797,86326],[594,755],[258,341],[105,301],[-411,405],[113,385],[-250,440],[187,506],[-323,673],[256,445],[-425,394],[41,414]],[[57942,91385],[224,54],[473,237]],[[58639,91676],[286,206],[456,-358],[761,-140],[1050,-668],[213,-281],[18,-393],[-308,-311],[-454,-157],[-1240,449],[-204,-75],[453,-433],[18,-274],[18,-604],[358,-180],[217,-153],[36,286],[-168,254],[177,224],[672,-368],[233,144],[-186,433],[647,578],[256,-34],[260,-206],[161,406],[-231,352],[136,353],[-204,367],[777,-190],[158,-331],[-351,-73],[1,-328],[219,-203],[429,128],[68,377],[580,282],[970,507],[209,-29],[-273,-359],[344,-61],[199,202],[521,16],[412,245],[317,-356],[315,391],[-291,343],[145,195],[820,-179],[385,-185],[1006,-675],[186,309],[-282,313],[-8,125],[-335,58],[92,280],[-149,461],[-8,189],[512,535],[183,537],[206,116],[736,-156],[57,-328],[-263,-479],[173,-189],[89,-413],[-63,-809],[307,-362],[-120,-395],[-544,-839],[318,-87],[110,213],[306,151],[74,293],[240,281],[-162,336],[130,390],[-304,49],[-67,328],[222,593],[-361,482],[497,398],[-64,421],[139,13],[145,-328],[-109,-570],[297,-108],[-127,426],[465,233],[577,31],[513,-337],[-247,492],[-28,630],[483,119],[669,-26],[602,77],[-226,309],[321,388],[319,16],[540,293],[734,79],[93,162],[729,55],[227,-133],[624,314],[510,-10],[77,255],[265,252],[656,242],[476,-191],[-378,-146],[629,-90],[75,-292],[254,143],[812,-7],[626,-289],[223,-221],[-69,-307],[-307,-175],[-730,-328],[-209,-175],[345,-83],[410,-149],[251,112],[141,-379],[122,153],[444,93],[892,-97],[67,-276],[1162,-88],[15,451],[590,-104],[443,4],[449,-312],[128,-378],[-165,-247],[349,-465],[437,-240],[268,620],[446,-266],[473,159],[538,-182],[204,166],[455,-83],[-201,549],[367,256],[2509,-384],[236,-351],[727,-451],[1122,112],[553,-98],[231,-244],[-33,-432],[342,-168],[372,121],[492,15],[525,-116],[526,66],[484,-526],[344,189],[-224,378],[123,262],[886,-165],[578,36],[799,-282],[-99610,-258],[681,-451],[728,-588],[-24,-367],[187,-147],[-64,429],[754,-88],[544,-553],[-276,-257],[-455,-61],[-7,-578],[-111,-122],[-260,17],[-212,206],[-369,172],[-62,257],[-283,96],[-315,-76],[-151,207],[60,219],[-333,-140],[126,-278],[-158,-251],[99997,-3],[-357,-260],[-360,44],[250,-315],[166,-487],[128,-159],[32,-244],[-71,-157],[-518,129],[-777,-445],[-247,-69],[-425,-415],[-403,-362],[-102,-269],[-397,409],[-724,-464],[-126,219],[-268,-253],[-371,81],[-90,-388],[-333,-572],[10,-239],[316,-132],[-37,-860],[-258,-22],[-119,-494],[116,-255],[-486,-302],[-96,-674],[-415,-144],[-83,-600],[-400,-551],[-103,407],[-119,862],[-155,1313],[134,819],[234,353],[14,276],[432,132],[496,744],[479,608],[499,471],[223,833],[-337,-50],[-167,-487],[-705,-649],[-227,727],[-717,-201],[-696,-990],[230,-362],[-620,-154],[-430,-61],[20,427],[-431,90],[-344,-291],[-850,102],[-914,-175],[-899,-1153],[-1065,-1394],[438,-74],[136,-370],[270,-132],[178,295],[305,-38],[401,-650],[9,-503],[-217,-590],[-23,-705],[-126,-945],[-418,-855],[-94,-409],[-377,-688],[-374,-682],[-179,-349],[-370,-346],[-175,-8],[-175,287],[-373,-432],[-43,-197]],[[0,92833],[36,24],[235,-1],[402,-169],[-24,-81],[-286,-141],[-363,-36],[99694,-30],[-49,187],[-99645,247]],[[59287,77741],[73,146],[198,-127],[89,-23],[36,-117],[42,-18]],[[59725,77602],[2,-51],[136,-142],[284,35],[-55,-210],[-304,-103],[-377,-342],[-154,121],[61,277],[-304,173],[50,113],[265,197],[-42,71]],[[28061,66408],[130,47],[184,-18],[8,-153],[-303,-95],[-19,219]],[[28391,66555],[220,-265],[-48,-420],[-51,75],[4,309],[-124,234],[-1,67]],[[28280,65474],[84,-23],[97,-491],[1,-343],[-68,-29],[-70,340],[-104,171],[60,375]],[[33000,19946],[333,354],[236,-148],[167,237],[222,-266],[-83,-207],[-375,-177],[-125,207],[-236,-266],[-139,266]],[[54206,97653],[105,202],[408,20],[350,-206],[915,-440],[-699,-233],[-155,-435],[-243,-111],[-132,-490],[-335,-23],[-598,361],[252,210],[-416,170],[-541,499],[-216,463],[757,212],[152,-207],[396,8]],[[57942,91385],[117,414],[-356,235],[-431,-200],[-137,-433],[-265,-262],[-298,143],[-362,-29],[-309,312],[-167,-156]],[[55734,91409],[-172,-24],[-41,-389],[-523,95],[-74,-329],[-267,2],[-183,-421],[-278,-655],[-431,-831],[101,-202],[-97,-234],[-275,10],[-180,-554],[17,-784],[177,-300],[-92,-694],[-231,-405],[-122,-341]],[[53063,85353],[-187,363],[-548,-684],[-371,-138],[-384,301],[-99,635],[-88,1363],[256,381],[733,496],[549,609],[508,824],[668,1141],[465,444],[763,741],[610,259],[457,-31],[423,489],[506,-26],[499,118],[869,-433],[-358,-158],[305,-371]],[[57613,97879],[-412,-318],[-806,-70],[-819,98],[-50,163],[-398,11],[-304,271],[858,165],[403,-142],[281,177],[702,-148],[545,-207]],[[56867,96577],[-620,-241],[-490,137],[191,152],[-167,189],[575,119],[110,-222],[401,-134]],[[37010,99398],[932,353],[975,-27],[354,218],[982,57],[2219,-74],[1737,-469],[-513,-227],[-1062,-26],[-1496,-58],[140,-105],[984,65],[836,-204],[540,181],[231,-212],[-305,-344],[707,220],[1348,229],[833,-114],[156,-253],[-1132,-420],[-157,-136],[-888,-102],[643,-28],[-324,-431],[-224,-383],[9,-658],[333,-386],[-434,-24],[-457,-187],[513,-313],[65,-502],[-297,-55],[360,-508],[-617,-42],[322,-241],[-91,-208],[-391,-91],[-388,-2],[348,-400],[4,-263],[-549,244],[-143,-158],[375,-148],[364,-361],[105,-476],[-495,-114],[-214,228],[-344,340],[95,-401],[-322,-311],[732,-25],[383,-32],[-745,-515],[-755,-466],[-813,-204],[-306,-2],[-288,-228],[-386,-624],[-597,-414],[-192,-24],[-370,-145],[-399,-138],[-238,-365],[-4,-415],[-141,-388],[-453,-472],[112,-462],[-125,-488],[-142,-577],[-391,-36],[-410,482],[-556,3],[-269,324],[-186,577],[-481,735],[-141,385],[-38,530],[-384,546],[100,435],[-186,208],[275,691],[418,220],[110,247],[58,461],[-318,-209],[-151,-88],[-249,-84],[-341,193],[-19,401],[109,314],[258,9],[567,-157],[-478,375],[-249,202],[-276,-83],[-232,147],[310,550],[-169,220],[-220,409],[-335,626],[-353,230],[3,247],[-745,346],[-590,43],[-743,-24],[-677,-44],[-323,188],[-482,372],[729,186],[559,31],[-1188,154],[-627,241],[39,229],[1051,285],[1018,284],[107,214],[-750,213],[243,235],[961,413],[404,63],[-115,265],[658,156],[854,93],[853,5],[303,-184],[737,325],[663,-221],[390,-46],[577,-192],[-660,318],[38,253]],[[69148,21851],[179,-186],[263,-74],[9,-112],[-77,-269],[-427,-38],[-7,314],[41,244],[19,121]],[[84713,45326],[32,139],[239,133],[194,20],[87,74],[105,-74],[-102,-160],[-289,-258],[-233,-170]],[[54540,33696],[133,292],[109,-162],[47,-252],[125,-43],[175,-112],[149,43],[248,302],[0,2182]],[[55526,35946],[75,-88],[165,-562],[-26,-360],[62,-207],[199,60],[139,264],[132,177],[68,283],[135,137],[117,-71],[133,-166],[226,-29],[178,138],[28,184],[48,283],[152,47],[83,222],[93,393],[249,442],[393,435]],[[58175,37528],[113,-7],[134,-100],[94,71],[148,-59]],[[58664,37433],[133,-832],[72,-419],[-49,-659],[23,-212]],[[58843,35311],[-140,108],[-80,-42],[-26,-172],[-76,-222],[2,-204],[166,-320],[163,63],[56,263]],[[58908,34785],[211,-5]],[[59119,34780],[-70,-430],[-32,-491],[-72,-267],[-190,-298],[-54,-86],[-118,-300],[-77,-303],[-158,-424],[-314,-609],[-196,-355],[-210,-269],[-290,-229],[-141,-31],[-36,-164],[-169,88],[-138,-113],[-301,114],[-168,-72],[-115,31],[-286,-233],[-238,-94],[-171,-223],[-127,-14],[-117,210],[-94,11],[-120,264],[-13,-82],[-37,159],[2,346],[-90,396],[89,108],[-7,453],[-182,553],[-139,501],[-1,1],[-199,768]],[[58049,33472],[-121,182],[-130,-120],[-151,-232],[-148,-374],[209,-454],[99,59],[51,188],[155,93],[47,192],[85,288],[-96,178]],[[23016,65864],[-107,-518],[-49,-426],[-20,-791],[-27,-289],[48,-322],[86,-288],[56,-458],[184,-440],[65,-337],[109,-291],[295,-157],[114,-247],[244,165],[212,60],[208,106],[175,101],[176,241],[67,345],[22,496],[48,173],[188,155],[294,137],[246,-21],[169,50],[66,-125],[-9,-285],[-149,-351],[-66,-360],[51,-103],[-42,-255],[-69,-461],[-71,152],[-58,-10]],[[25472,61510],[-53,-8],[-99,-357],[-51,70],[-33,-27],[2,-87]],[[25238,61101],[-257,7],[-259,-1],[-1,-333],[-125,-1],[103,-198],[103,-136],[31,-128],[45,-36],[-7,-201],[-357,-2],[-133,-481],[39,-111],[-32,-138],[-7,-172]],[[24381,59170],[-314,636],[-144,191],[-226,155],[-156,-43],[-223,-223],[-140,-58],[-196,156],[-208,112],[-260,271],[-208,83],[-314,275],[-233,282],[-70,158],[-155,35],[-284,187],[-116,270],[-299,335],[-139,373],[-66,288],[93,57],[-29,169],[64,153],[1,204],[-93,266],[-25,235],[-94,298],[-244,587],[-280,462],[-135,368],[-238,241],[-51,145],[42,365],[-142,138],[-164,287],[-69,412],[-149,48],[-162,311],[-130,288],[-12,184],[-149,446],[-99,452],[5,227],[-201,234],[-93,-25],[-159,163],[-44,-240],[46,-284],[27,-444],[95,-243],[206,-407],[46,-139],[42,-42],[37,-203],[49,8],[56,-381],[85,-150],[59,-210],[174,-300],[92,-550],[83,-259],[77,-277],[15,-311],[134,-20],[112,-268],[100,-264],[-6,-106],[-117,-217],[-49,3],[-74,359],[-181,337],[-201,286],[-142,150],[9,432],[-42,320],[-132,183],[-191,264],[-37,-76],[-70,154],[-171,143],[-164,343],[20,44],[115,-33],[103,221],[10,266],[-214,422],[-163,163],[-102,369],[-103,388],[-129,472],[-113,531]],[[33993,32727],[180,63],[279,-457],[103,18],[286,-379],[218,-327],[160,-402],[-122,-280],[77,-334]],[[35174,30629],[-121,-372],[-313,-328],[-205,118],[-151,-63],[-256,253],[-189,-19],[-169,327]],[[34826,35372],[54,341],[38,350],[0,325],[-100,107],[-104,-96],[-103,26],[-33,228],[-26,541],[-52,177],[-187,160],[-114,-116],[-293,113],[18,802],[-82,329]],[[33842,38659],[87,122],[-27,337],[77,259],[49,465],[-66,367],[-151,166],[-30,233],[41,342],[-533,24],[-107,688],[81,10],[-3,255],[-55,172],[-12,342],[-161,175],[-175,-6],[-115,172],[-188,117],[-109,220],[-311,98],[-302,529],[23,396],[-34,227],[29,443],[-363,-100],[-147,-222],[-243,-239],[-62,-179],[-143,-13],[-206,50]],[[30686,44109],[-157,-102],[-126,68],[18,898],[-228,-348],[-245,15],[-105,315],[-184,34],[59,254],[-155,359],[-115,532],[73,108],[0,250],[168,171],[-28,319],[71,206],[20,275],[318,402],[227,114],[37,89],[251,-28]],[[30585,48040],[125,1620],[6,256],[-43,339],[-123,215],[1,430],[156,97],[56,-61],[9,226],[-162,61],[-4,370],[541,-13],[92,203],[77,-187],[55,-349],[52,73]],[[31423,51320],[153,-312],[216,38],[54,181],[206,138],[115,97],[32,250],[198,168],[-15,124],[-235,51],[-39,372],[12,396],[-125,153],[52,55],[206,-76],[221,-148],[80,140],[200,92],[310,221],[102,225],[-37,167]],[[33129,53652],[145,26],[64,-136],[-36,-259],[96,-90],[63,-274],[-77,-209],[-44,-502],[71,-299],[20,-274],[171,-277],[137,-29],[30,116],[88,25],[126,104],[90,157],[154,-50],[67,21]],[[34294,51702],[151,-48],[25,120],[-46,118],[28,171],[112,-53],[131,61],[159,-125]],[[34854,51946],[121,-122],[86,160],[62,-25],[38,-166],[133,42],[107,224],[85,436],[164,540]],[[35650,53035],[95,28],[69,-327],[155,-1033],[149,-97],[7,-408],[-208,-487],[86,-178],[491,-92],[10,-593],[211,388],[349,-212],[462,-361],[135,-346],[-45,-327],[323,182],[540,-313],[415,23],[411,-489],[355,-662],[214,-170],[237,-24],[101,-186],[94,-752],[46,-358],[-110,-977],[-142,-385],[-391,-822],[-177,-668],[-206,-513],[-69,-11],[-78,-435],[20,-1107],[-77,-910],[-30,-390],[-88,-233],[-49,-790],[-282,-771],[-47,-610],[-225,-256],[-65,-355],[-302,2],[-437,-227],[-195,-263],[-311,-173],[-327,-470],[-235,-586],[-41,-441],[46,-326],[-51,-597],[-63,-289],[-195,-325],[-308,-1040],[-244,-468],[-189,-277],[-127,-562],[-183,-337]],[[33842,38659],[-4,182],[-259,302],[-258,9],[-484,-172],[-133,-520],[-7,-318],[-110,-708]],[[30669,40193],[175,638],[-119,496],[63,199],[-49,219],[108,295],[6,503],[13,415],[60,200],[-240,951]],[[30452,39739],[-279,340],[-24,242],[-551,593],[-498,646],[-214,365],[-115,488],[46,170],[-236,775],[-274,1090],[-262,1177],[-114,269],[-87,435],[-216,386],[-198,239],[90,264],[-134,563],[86,414],[221,373]],[[27693,48568],[33,-246],[-79,-141],[8,-216],[114,47],[113,-64],[116,-298],[157,243],[53,398],[170,514],[334,233],[303,619],[86,384],[-38,449]],[[29063,50490],[74,56],[184,-280],[89,-279],[129,-152],[163,-620],[207,-74],[153,157],[101,-103],[166,51],[213,-276],[-179,-602],[83,-14],[139,-314]],[[29063,50490],[-119,140],[-137,195],[-79,-94],[-235,82],[-68,255],[-52,-10],[-278,338]],[[28095,51396],[-37,183],[103,44],[-12,296],[65,214],[138,40],[117,371],[106,310],[-102,141],[52,343],[-62,540],[59,155],[-44,500],[-112,315]],[[28366,54848],[36,287],[89,-43],[52,176],[-64,348],[34,86]],[[28513,55702],[143,-18],[209,412],[114,63],[3,195],[51,500],[159,274],[175,11],[22,123],[218,-49],[218,298],[109,132],[134,285],[98,-36],[73,-156],[-54,-199]],[[30185,57537],[-178,-99],[-71,-295],[-107,-169],[-81,-220],[-34,-422],[-77,-345],[144,-40],[35,-271],[62,-130],[21,-238],[-33,-219],[10,-123],[69,-49],[66,-207],[357,57],[161,-75],[196,-508],[112,63],[200,-32],[158,68],[99,-102],[-50,-318],[-62,-199],[-22,-423],[56,-393],[79,-175],[9,-133],[-140,-294],[100,-130],[74,-207],[85,-589]],[[28366,54848],[-93,170],[-59,319],[68,158],[-70,40],[-52,196],[-138,164],[-122,-38],[-56,-205],[-112,-149],[-61,-20],[-27,-123],[132,-321],[-75,-76],[-40,-87],[-130,-30],[-48,353],[-36,-101],[-92,35],[-56,238],[-114,39],[-72,69],[-119,-1],[-8,-128],[-32,89]],[[26954,55439],[14,117],[23,120],[-10,107],[41,70],[-58,88],[-1,238],[107,53]],[[27070,56232],[100,-212],[-6,-126],[111,-26],[26,48],[77,-145],[136,42],[119,150],[168,119],[95,176],[153,-34],[-10,-58],[155,-21],[124,-102],[90,-177],[105,-164]],[[26954,55439],[-151,131],[-56,124],[32,103],[-11,130],[-77,142],[-109,116],[-95,76],[-19,173],[-73,105],[18,-172],[-55,-141],[-64,164],[-89,58],[-38,120],[2,179],[36,187],[-78,83],[64,114]],[[26191,57131],[42,76],[183,-156],[63,77],[89,-50],[46,-121],[82,-40],[66,126]],[[26762,57043],[70,-321],[108,-238],[130,-252]],[[26191,57131],[-96,186],[-130,238],[-61,200],[-117,185],[-140,267],[31,91],[46,-88],[21,41]],[[25745,58251],[86,25],[35,135],[41,5],[-6,290],[65,14],[58,-4],[60,158],[82,-120],[29,74],[51,70],[97,163],[4,121],[27,-5],[36,141],[29,17],[47,-90],[56,-27],[61,76],[70,0],[97,77],[38,81],[95,-12]],[[26903,59440],[-24,-57],[-14,-132],[29,-216],[-64,-202],[-30,-237],[-9,-261],[15,-152],[7,-266],[-43,-58],[-26,-253],[19,-156],[-56,-151],[12,-159],[43,-97]],[[25745,58251],[-48,185],[-84,51]],[[25613,58487],[19,237],[-38,64],[-57,42],[-122,-70],[-10,79],[-84,95],[-60,118],[-82,50]],[[25179,59102],[58,150],[-22,116],[20,113],[131,166],[127,225]],[[25493,59872],[29,-23],[61,104],[79,8],[26,-48],[43,29],[129,-53],[128,15],[90,66],[32,66],[89,-31],[66,-40],[73,14],[55,51],[127,-82],[44,-13],[85,-110],[80,-132],[101,-91],[73,-162]],[[25613,58487],[-31,-139],[-161,9],[-100,57],[-115,117],[-154,37],[-79,127]],[[24973,58695],[9,86],[95,149],[52,66],[-15,69],[65,37]],[[25238,61101],[-2,-468],[-22,-667],[83,0]],[[25297,59966],[90,-107],[24,88],[82,-75]],[[24973,58695],[-142,103],[-174,11],[-127,117],[-149,244]],[[25472,61510],[1,-87],[53,-3],[-5,-160],[-45,-256],[24,-91],[-29,-212],[18,-56],[-32,-299],[-55,-156],[-50,-19],[-55,-205]],[[30185,57537],[-8,-139],[-163,-69],[91,-268],[-3,-309],[-123,-344],[105,-468],[120,38],[62,427],[-86,208],[-14,447],[346,241],[-38,278],[97,186],[100,-415],[195,-9],[180,-330],[11,-195],[249,-6],[297,61],[159,-264],[213,-74],[155,185],[4,149],[344,35],[333,9],[-236,-175],[95,-279],[222,-44],[210,-291],[45,-473],[144,13],[109,-139]],[[33400,55523],[-220,-347],[-24,-215],[95,-220],[-69,-110],[-171,-95],[5,-273],[-75,-163],[188,-448]],[[33400,55523],[183,-217],[171,-385],[8,-304],[105,-14],[149,-289],[109,-205]],[[34125,54109],[-44,-532],[-169,-154],[15,-139],[-51,-305],[123,-429],[89,-1],[37,-333],[169,-514]],[[34125,54109],[333,-119],[30,107],[225,43],[298,-159]],[[35011,53981],[-144,-508],[22,-404],[109,-351],[-49,-254],[-24,-270],[-71,-248]],[[35011,53981],[95,-65],[204,-140],[294,-499],[46,-242]],[[51718,79804],[131,-155],[400,-109],[-140,-404],[-35,-421]],[[52074,78715],[-77,-101],[-126,54],[9,-150],[-203,-332],[-5,-267],[133,92],[95,-259]],[[51900,77752],[-11,-167],[82,-222],[-97,-180],[72,-457],[151,-75],[-32,-256]],[[52065,76395],[-252,-334],[-548,160],[-404,-192],[-32,-355]],[[50829,75674],[-322,-77],[-313,267],[-101,-127],[-511,268],[-111,230]],[[49471,76235],[144,354],[53,1177],[-287,620],[-205,299],[-424,227],[-28,431],[360,129],[466,-152],[-88,669],[263,-254],[646,461],[84,484],[243,119]],[[50698,80799],[40,-207],[129,-10],[129,-237],[194,-279],[143,46],[243,-269]],[[51576,79843],[62,-52],[80,13]],[[52429,75765],[179,226],[47,-507],[-92,-456],[-126,120],[-64,398],[56,219]],[[27693,48568],[148,442],[-60,258],[-106,-275],[-166,259],[56,167],[-47,536],[97,89],[52,368],[105,381],[-20,241],[153,126],[190,236]],[[31588,61519],[142,-52],[50,-118],[-71,-149],[-209,4],[-163,-21],[-16,253],[40,86],[227,-3]],[[28453,61504],[187,-53],[147,-142],[46,-161],[-195,-11],[-84,-99],[-156,95],[-159,215],[34,135],[116,41],[64,-20]],[[27147,64280],[240,-42],[219,-7],[261,-201],[110,-216],[260,66],[98,-138],[235,-366],[173,-267],[92,8],[165,-120],[-20,-167],[205,-24],[210,-242],[-33,-138],[-185,-75],[-187,-29],[-191,46],[-398,-57],[186,329],[-113,154],[-179,39],[-96,171],[-66,336],[-157,-23],[-259,159],[-83,124],[-362,91],[-97,115],[104,148],[-273,30],[-199,-307],[-115,-8],[-40,-144],[-138,-65],[-118,56],[146,183],[60,213],[126,131],[142,116],[210,56],[67,65]],[[58175,37528],[-177,267],[-215,90],[-82,375],[0,208],[-119,64],[-315,649],[-87,342],[-56,105],[-107,473]],[[57017,40101],[311,-65],[90,-68],[94,13],[154,383],[241,486],[100,46],[33,205],[159,235],[210,81]],[[58409,41417],[18,-220],[232,12],[128,-125],[60,-146],[132,-43],[145,-190],[0,-748],[-54,-409],[-12,-442],[45,-175],[-31,-348],[-42,-53],[-74,-426],[-292,-671]],[[55526,35946],[0,1725],[274,20],[8,2105],[207,19],[428,207],[106,-243],[177,231],[85,2],[156,133]],[[56967,40145],[50,-44]],[[54540,33696],[-207,446],[-108,432],[-62,575],[-68,428],[-93,910],[-7,707],[-35,322],[-108,243],[-144,489],[-146,708],[-60,371],[-226,577],[-17,453]],[[53259,40357],[134,113],[166,100],[180,-17],[166,-267],[42,41],[1126,26],[192,-284],[673,-83],[510,241]],[[56448,40227],[228,134],[180,-34],[109,-133],[2,-49]],[[45357,58612],[-115,460],[-138,210],[122,112],[134,415],[66,304]],[[45426,60113],[96,189],[138,-51],[135,129],[155,6],[133,-173],[184,-157],[168,-435],[184,-405]],[[46619,59216],[13,-368],[54,-338],[104,-166],[24,-229],[-13,-184]],[[46801,57931],[-40,-33],[-151,47],[-21,-66],[-61,-13],[-200,144],[-134,6]],[[46194,58016],[-513,25],[-75,-67],[-92,19],[-147,-96]],[[45367,57897],[-46,453]],[[45321,58350],[253,-13],[67,83],[50,5],[103,136],[119,-124],[121,-11],[120,133],[-56,170],[-92,-99],[-86,3],[-110,145],[-88,-9],[-63,-140],[-302,-17]],[[46619,59216],[93,107],[47,348],[88,14],[194,-165],[157,117],[107,-39],[42,131],[1114,9],[62,414],[-48,73],[-134,2550],[-134,2550],[425,10]],[[48632,65335],[937,-1289],[937,-1289],[66,-277],[173,-169],[129,-96],[3,-376],[308,58]],[[51185,61897],[1,-1361],[-152,-394],[-24,-364],[-247,-94],[-379,-51],[-102,-210],[-178,-23]],[[50104,59400],[-178,-3],[-70,114],[-153,-84],[-259,-246],[-53,-184],[-216,-265],[-38,-152],[-116,-120],[-134,79],[-76,-144],[-41,-405],[-221,-490],[7,-200],[-76,-250],[18,-343]],[[48498,56707],[-114,-88],[-65,-74],[-43,253],[-80,-67],[-48,11],[-51,-172],[-215,5],[-77,89],[-36,-54]],[[47769,56610],[-85,170],[15,176],[-35,69],[-59,-58],[11,192],[57,152],[-114,248],[-33,163],[-62,130],[-55,15],[-67,-83],[-90,-79],[-76,-128],[-119,48],[-77,150],[-46,19],[-73,-78],[-44,-1],[-16,216]],[[47587,66766],[1045,-1431]],[[45426,60113],[-24,318],[78,291],[34,557],[-30,583],[-34,294],[28,295],[-72,281],[-146,255]],[[50747,54278],[-229,-69]],[[50518,54209],[-69,407],[13,1357],[-56,122],[-11,290],[-96,207],[-85,174],[35,311]],[[50249,57077],[96,67],[56,258],[136,56],[61,176]],[[50598,57634],[93,173],[100,2],[212,-340]],[[51003,57469],[-11,-197],[62,-350],[-54,-238],[29,-159],[-135,-366],[-86,-181],[-52,-372],[7,-376],[-16,-952]],[[54026,58177],[-78,-34],[-9,-188]],[[53939,57955],[-52,-13],[-188,647],[-65,24],[-217,-331],[-215,173],[-150,34],[-80,-83],[-163,18],[-164,-252],[-141,-14],[-337,305],[-131,-145],[-142,10],[-104,223],[-279,221],[-298,-70],[-72,-128],[-39,-340],[-80,-238],[-19,-527]],[[50598,57634],[6,405],[-320,134],[-9,286],[-156,386],[-37,269],[22,286]],[[51185,61897],[392,263],[804,1161],[952,1126]],[[53333,64447],[439,-255],[156,-324],[197,220]],[[53939,57955],[110,-235],[-31,-107],[-14,-196],[-234,-457],[-74,-377],[-39,-307],[-59,-132],[-56,-414],[-148,-243],[-43,-299],[-63,-238],[-26,-246],[-191,-199],[-156,243],[-105,-10],[-165,-345],[-81,-6],[-132,-570],[-71,-418]],[[52361,53399],[-289,-213],[-105,31],[-107,-132],[-222,13],[-149,370],[-91,427],[-197,389],[-209,-7],[-245,1]],[[54244,54965],[-140,-599],[-67,-107],[-21,-458],[28,-249],[-23,-176],[132,-309],[23,-212],[103,-305],[127,-190],[12,-269],[29,-172]],[[54447,51919],[-20,-319],[-220,140],[-225,156],[-350,23]],[[53632,51919],[-35,32],[-164,-76],[-169,79],[-132,-38]],[[53132,51916],[-452,13]],[[52680,51929],[40,466],[-108,391],[-127,100],[-56,265],[-72,85],[4,163]],[[50518,54209],[-224,-126]],[[50294,54083],[-62,207],[-74,375],[-22,294],[61,532],[-69,215],[-27,466],[1,429],[-116,305],[20,184]],[[50006,57090],[243,-13]],[[50294,54083],[-436,-346],[-154,-203],[-250,-171],[-248,168]],[[49206,53531],[13,233],[-121,509],[73,667],[117,496],[-74,841]],[[49214,56277],[-38,444],[7,336],[482,27],[123,-43],[90,96],[128,-47]],[[48498,56707],[125,-129],[49,-195],[125,-125],[97,149],[130,22],[190,-152]],[[49206,53531],[-126,-7],[-194,116],[-178,-7],[-329,-103],[-193,-170],[-275,-217],[-54,15]],[[47857,53158],[22,487],[26,74],[-8,233],[-118,247],[-88,40],[-81,162],[60,262],[-28,286],[13,172]],[[47655,55121],[44,0],[17,258],[-22,114],[27,82],[103,71],[-69,473],[-64,245],[23,200],[55,46]],[[47655,55121],[-78,15],[-57,-238],[-78,3],[-55,126],[19,237],[-116,362],[-73,-67],[-59,-13]],[[47158,55546],[-77,-34],[3,217],[-44,155],[9,171],[-60,249],[-78,211],[-222,1],[-65,-112],[-76,-13],[-48,-128],[-32,-163],[-148,-260]],[[46320,55840],[-122,349],[-108,232],[-71,76],[-69,118],[-32,261],[-41,130],[-80,97]],[[45797,57103],[123,288],[84,-11],[73,99],[61,1],[44,78],[-24,196],[31,62],[5,200]],[[45797,57103],[-149,247],[-117,39],[-63,166],[1,90],[-84,125],[-18,127]],[[47857,53158],[-73,-5],[-286,282],[-252,449],[-237,324],[-187,381]],[[46822,54589],[66,189],[15,172],[126,320],[129,276]],[[46822,54589],[-75,44],[-200,238],[-144,316],[-49,216],[-34,437]],[[55125,52650],[-178,33],[-188,99],[-166,-313],[-146,-550]],[[56824,55442],[152,-239],[2,-192],[187,-308],[116,-255],[70,-355],[208,-234],[44,-187]],[[53609,47755],[-104,203],[-84,-100],[-112,-255]],[[53309,47603],[-228,626]],[[53081,48229],[212,326],[-105,391],[95,148],[187,73],[23,261],[148,-283],[245,-25],[85,279],[36,393],[-31,461],[-131,350],[120,684],[-69,117],[-207,-48],[-78,305],[21,258]],[[53081,48229],[-285,596],[-184,488],[-169,610],[9,196],[61,189],[67,430],[56,438]],[[52636,51176],[94,35],[404,-6],[-2,711]],[[52636,51176],[-52,90],[96,663]],[[59099,45126],[131,-264],[71,-501],[-47,-160],[-56,-479],[53,-490],[-87,-205],[-85,-549],[147,-153]],[[59226,42325],[-843,-487],[26,-421]],[[56448,40227],[-181,369],[-188,483],[13,1880],[579,-7],[-24,203],[41,222],[-49,277],[32,286],[-29,184]],[[59599,43773],[-77,-449],[77,-768],[97,9],[100,-191],[116,-427],[24,-760],[-120,-124],[-85,-410],[-181,365],[-21,417],[59,274],[-16,237],[-110,149],[-77,-54],[-159,284]],[[61198,44484],[45,-265],[-11,-588],[34,-519],[11,-923],[49,-290],[-83,-422],[-108,-410],[-177,-366],[-254,-225],[-313,-287],[-313,-634],[-107,-108],[-194,-420],[-115,-136],[-23,-421],[132,-448],[54,-346],[4,-177],[49,29],[-8,-579],[-45,-275],[65,-101],[-41,-245],[-116,-211],[-229,-199],[-334,-320],[-122,-219],[24,-248],[71,-40],[-24,-311]],[[58908,34785],[-24,261],[-41,265]],[[53383,47159],[-74,444]],[[53259,40357],[-26,372],[38,519],[96,541],[15,254],[90,532],[66,243],[159,386],[90,263],[29,438],[-15,335],[-83,211],[-74,358],[-68,355],[15,122],[85,235],[-84,570],[-57,396],[-139,374],[26,115]],[[58062,48902],[169,-46],[85,336],[147,-38]],[[59922,69905],[-49,-186]],[[59873,69719],[-100,82],[-58,-394],[69,-66],[-71,-81],[-12,-156],[131,80]],[[59832,69184],[7,-230],[-139,-944]],[[59700,68010],[-27,153],[-155,862]],[[59518,69025],[80,194],[-19,34],[74,276],[56,446],[40,149],[8,6]],[[59757,70130],[93,-1],[25,104],[75,8]],[[59950,70241],[4,-242],[-38,-90],[6,-4]],[[59757,70130],[99,482],[138,416],[5,21]],[[59999,71049],[125,-31],[45,-231],[-151,-223],[-68,-323]],[[63761,43212],[74,-251],[69,-390],[45,-711],[72,-276],[-28,-284],[-49,-174],[-94,347],[-53,-175],[53,-438],[-24,-250],[-77,-137],[-18,-500],[-109,-689],[-137,-814],[-172,-1120],[-106,-821],[-125,-685],[-226,-140],[-243,-250],[-160,151],[-220,211],[-77,312],[-18,524],[-98,471],[-26,425],[50,426],[128,102],[1,197],[133,447],[25,377],[-65,280],[-52,372],[-23,544],[97,331],[38,375],[138,22],[155,121],[103,107],[122,7],[158,337],[229,364],[83,297],[-38,253],[118,-71],[153,410],[6,356],[92,264],[96,-254]],[[59873,69719],[0,-362],[-41,-173]],[[45321,58350],[36,262]],[[52633,68486],[-118,1061],[-171,238],[-3,143],[-227,352],[-24,445],[171,330],[65,487],[-44,563],[57,303]],[[52339,72408],[302,239],[195,-71],[-9,-299],[236,217],[20,-113],[-139,-290],[-2,-273],[96,-147],[-36,-511],[-183,-297],[53,-322],[143,-10],[70,-281],[106,-92]],[[53191,70158],[-16,-454],[-135,-170],[-86,-189],[-191,-228],[30,-244],[-24,-250],[-136,-137]],[[47592,66920],[-2,700],[449,436],[277,90],[227,159],[107,295],[324,234],[12,438],[161,51],[126,219],[363,99],[51,230],[-73,125],[-96,624],[-17,359],[-104,379]],[[49397,71358],[267,323],[300,102],[175,244],[268,180],[471,105],[459,48],[140,-87],[262,232],[297,5],[113,-137],[190,35]],[[52633,68486],[90,-522],[15,-274],[-49,-482],[21,-270],[-36,-323],[24,-371],[-110,-247],[164,-431],[11,-253],[99,-330],[130,109],[219,-275],[122,-370]],[[59922,69905],[309,-234],[544,630]],[[60775,70301],[112,-720]],[[60887,69581],[-53,-89],[-556,-296],[277,-591],[-92,-101],[-46,-197],[-212,-82],[-66,-213],[-120,-182],[-310,94]],[[59709,67924],[-9,86]],[[64327,64904],[49,29],[11,-162],[217,93],[230,-15],[168,-18],[190,400],[207,379],[176,364]],[[65575,65974],[52,-202]],[[65627,65772],[38,-466]],[[65665,65306],[-142,-3],[-23,-384],[50,-82],[-126,-117],[-1,-241],[-81,-245],[-7,-238]],[[65335,63996],[-56,-125],[-835,298],[-106,599],[-11,136]],[[64113,65205],[-18,430],[75,310],[76,64],[84,-185],[5,-346],[-61,-348]],[[64274,65130],[-77,-42],[-84,117]],[[63326,68290],[58,-261],[-25,-135],[89,-445]],[[63448,67449],[-196,-16],[-69,282],[-248,57]],[[62935,67772],[204,567],[187,-49]],[[60775,70301],[615,614],[105,715],[-26,431],[152,146],[142,369]],[[61763,72576],[119,92],[324,-77],[97,-150],[133,100]],[[62436,72541],[180,-705],[182,-177],[21,-345],[-139,-204],[-65,-461],[193,-562],[340,-324],[143,-449],[-46,-428],[89,0],[3,-314],[153,-311]],[[63490,68261],[-164,29]],[[62935,67772],[-516,47],[-784,1188],[-413,414],[-335,160]],[[65665,65306],[125,-404],[155,-214],[203,-78],[165,-107],[125,-339],[75,-196],[100,-75],[-1,-132],[-101,-352],[-44,-166],[-117,-189],[-104,-404],[-126,31],[-58,-141],[-44,-300],[34,-395],[-26,-72],[-128,2],[-174,-221],[-27,-288],[-63,-125],[-173,5],[-109,-149],[1,-238],[-134,-165],[-153,56],[-186,-199],[-128,-34]],[[64752,60417],[-91,413],[-217,975]],[[64444,61805],[833,591],[185,1182],[-127,418]],[[65575,65974],[80,201],[35,-51],[-26,-244],[-37,-108]],[[96448,41190],[175,-339],[-92,-78],[-93,259],[10,158]],[[96330,41322],[-39,163],[-6,453],[133,-182],[45,-476],[-75,74],[-58,-32]],[[78495,57780],[-66,713],[178,492],[359,112],[261,-84]],[[79227,59013],[229,-232],[126,407],[246,-217]],[[79828,58971],[64,-394],[-34,-708],[-467,-455],[122,-358],[-292,-43],[-240,-238]],[[78981,56775],[-233,87],[-112,307],[-141,611]],[[78495,57780],[-249,271],[-238,-11],[41,464],[-245,-3],[-22,-650],[-150,-863],[-90,-522],[19,-428],[181,-18],[113,-539],[50,-512],[155,-338],[168,-69],[144,-306]],[[78372,54256],[-91,-243],[-183,-71],[-22,304],[-227,258],[-48,-105]],[[77801,54399],[-110,227],[-47,292],[-148,334],[-135,280],[-45,-347],[-53,328],[30,369],[82,566]],[[77375,56448],[135,607],[152,551],[-108,539],[4,274],[-32,330],[-185,470],[-66,296],[96,109],[101,514],[-113,390],[-177,431],[-134,519],[117,107],[127,639],[196,26],[162,256],[159,137]],[[77809,62643],[120,-182],[16,-355],[188,-27],[-68,-623],[6,-530],[293,353],[83,-104],[163,17],[56,205],[210,-40],[211,-480],[18,-583],[224,-515],[-12,-500],[-90,-266]],[[77809,62643],[59,218],[237,384]],[[78105,63245],[25,-139],[148,-16],[-42,676],[144,86]],[[78380,63852],[162,-466],[125,-537],[342,-5],[108,-515],[-178,-155],[-80,-212],[333,-353],[231,-699],[175,-520],[210,-411],[70,-418],[-50,-590]],[[77375,56448],[-27,439],[86,452],[-94,350],[23,644],[-113,306],[-90,707],[-50,746],[-121,490],[-183,-297],[-315,-421],[-156,53],[-172,138],[96,732],[-58,554],[-218,681],[34,213],[-163,76],[-197,481]],[[75657,62792],[-18,476],[97,-90],[6,424]],[[75742,63602],[137,140],[-30,251],[63,201],[11,612],[217,-135],[124,487],[14,288],[153,496],[-8,338],[359,408],[199,-107],[-23,364],[97,108],[-20,224]],[[77035,67277],[162,44],[93,-348],[121,-141],[8,-452],[-11,-487],[-263,-493],[-33,-701],[293,98],[66,-544],[176,-115],[-81,-490],[206,-222],[121,-109],[203,172],[9,-244]],[[78380,63852],[149,145],[221,-3],[271,68],[236,315],[134,-222],[254,-108],[-44,-340],[132,-240],[280,-154]],[[80013,63313],[-371,-505],[-231,-558],[-61,-410],[212,-623],[260,-772],[252,-365],[169,-475],[127,-1093],[-37,-1039],[-232,-389],[-318,-381],[-227,-492],[-346,-550],[-101,378],[78,401],[-206,335]],[[86327,75524],[0,0]],[[86327,75524],[-106,36],[-120,-200],[-83,-202],[10,-424],[-143,-130],[-50,-105],[-104,-174],[-185,-97],[-121,-159],[-9,-256],[-32,-65],[111,-96],[157,-259]],[[85652,73393],[-40,-143],[-118,-39],[-197,-29],[-108,-266],[-124,21],[-17,-54]],[[85048,72883],[-135,112],[-34,-111],[-81,-49],[-10,112],[-72,54],[-75,94],[76,260],[66,69],[-25,108],[71,319],[-18,96],[-163,65],[-131,158]],[[84517,74170],[227,379],[306,318],[191,419],[131,-185],[241,-22],[-44,312],[429,254],[111,331],[179,-348]],[[85652,73393],[240,-697],[68,-383],[3,-681],[-105,-325],[-252,-113],[-222,-245],[-250,-51],[-31,322],[51,443],[-122,615],[206,99],[-190,506]],[[82410,80055],[-135,-446],[-197,-590],[72,-241],[157,74],[274,-92],[214,219],[223,-189],[251,-413],[-30,-210],[-219,66],[-404,-78],[-195,-168],[-204,-391],[-423,-229],[-277,-313],[-286,120],[-156,53],[-146,-381],[89,-227],[45,-195],[-194,-199],[-200,-316],[-324,-208],[-417,-22],[-448,-205],[-324,-318],[-123,184],[-336,-1],[-411,359],[-274,88],[-369,-82],[-574,133],[-306,-14],[-163,351],[-127,544],[-171,66],[-336,368],[-374,83],[-330,101],[-100,256],[107,690],[-192,476],[-396,222],[-233,313],[-73,413]],[[75742,63602],[-147,937],[-76,-2],[-46,-377],[-152,306],[86,336],[124,34],[128,500],[-160,101],[-257,-8],[-265,81],[-24,410],[-133,30],[-220,255],[-98,-401],[200,-313],[-173,-220],[-62,-215],[171,-159],[-47,-356],[96,-444],[43,-486]],[[74730,63611],[-39,-216],[-189,7],[-343,-122],[16,-445],[-148,-349],[-400,-398],[-311,-695],[-209,-373],[-276,-387],[-1,-271],[-138,-146],[-251,-212],[-129,-31],[-84,-450],[58,-769],[15,-490],[-118,-561],[-1,-1004],[-144,-29],[-126,-450],[84,-195],[-253,-168],[-93,-401],[-112,-170],[-263,552],[-128,827],[-107,596],[-97,279],[-148,568],[-69,739],[-48,369],[-253,811],[-115,1145],[-83,756],[1,716],[-54,553],[-404,-353],[-196,70],[-362,716],[133,214],[-82,232],[-326,501]],[[68937,64577],[185,395],[612,-2],[-56,507],[-156,300],[-31,455],[-182,265],[306,619],[323,-45],[290,620],[174,599],[270,593],[-4,421],[236,342],[-224,292],[-96,400],[-99,517],[137,255],[421,-144],[310,88],[268,496]],[[71621,71550],[298,-692],[-28,-482],[111,-303],[-9,-301],[-200,79],[78,-651],[273,-374],[386,-413]],[[72530,68413],[-176,-268],[-108,-553],[269,-224],[262,-289],[362,-332],[381,-76],[160,-301],[215,-56],[334,-138],[231,10],[32,234],[-36,375],[21,255]],[[74477,67050],[170,124],[23,-465]],[[74670,66709],[6,-119],[252,-224],[175,92],[234,-39],[227,17],[20,363],[-113,189]],[[75471,66988],[224,74],[252,439],[321,376],[233,-145],[198,249],[130,-367],[-94,-248],[300,-89]],[[75657,62792],[-79,308],[-16,301],[-53,285],[-116,344],[-256,23],[25,-243],[-87,-329],[-118,120],[-41,-108],[-78,65],[-108,53]],[[74670,66709],[184,439],[150,150],[198,-137],[147,-14],[122,-159]],[[72530,68413],[115,141],[223,-182],[280,-385],[157,-84],[93,-284],[216,-117],[225,-259],[314,-136],[324,-57]],[[68937,64577],[-203,150],[-83,424],[-215,450],[-512,-111],[-451,-11],[-391,-83]],[[67082,65396],[105,687],[400,305],[-23,272],[-133,96],[-7,520],[-266,260],[-112,357],[-137,310]],[[66909,68203],[465,-301],[278,88],[166,-75],[56,129],[194,-52],[361,246],[10,503],[154,334],[207,-1],[31,166],[212,77],[103,-55],[108,166],[-15,355],[118,356],[177,150],[-110,390],[265,-18],[76,213],[-12,227],[139,248],[-32,294],[-66,250],[163,258],[298,124],[319,68],[141,109],[162,67]],[[70877,72519],[205,-276],[82,-454],[457,-239]],[[68841,72526],[85,-72],[201,189],[93,-114],[90,271],[166,-12],[43,86],[29,239],[120,205],[150,-134],[-30,-181],[84,-28],[-26,-496],[110,-194],[97,125],[123,58],[173,265],[192,-44],[286,-1]],[[70827,72688],[50,-169]],[[66909,68203],[252,536],[-23,380],[-210,100],[-22,375],[-91,472],[119,323],[-121,87],[76,430],[113,736]],[[67002,71642],[284,-224],[209,79],[58,268],[219,89],[157,180],[55,472],[234,114],[44,211],[131,-158],[84,-19]],[[69725,74357],[-101,-182],[-303,98],[-26,-340],[301,46],[343,-192],[526,89]],[[70465,73876],[70,-546],[91,59],[169,-134],[-10,-230],[42,-337]],[[72294,75601],[-39,-134],[-438,-320],[-99,-234],[-356,-70],[-105,-378],[-294,80],[-192,-116],[-266,-279],[39,-138],[-79,-136]],[[67002,71642],[-24,498],[-207,21],[-318,523],[-221,65],[-308,299],[-197,55],[-122,-110],[-186,17],[-197,-338],[-244,-114]],[[64978,72558],[-52,417],[40,618],[-216,200],[71,405],[-184,34],[61,498],[262,-145],[244,189],[-202,355],[-80,338],[-224,-151],[-28,-433],[-87,383]],[[62436,72541],[-152,473],[55,183],[-87,678],[190,168]],[[62442,74043],[44,-223],[141,-273],[190,-78]],[[62817,73469],[101,17]],[[62918,73486],[327,436],[104,44],[82,-174],[-95,-292],[173,-309],[69,29]],[[63578,73220],[88,-436],[263,-123],[193,-296],[395,-102],[434,156],[27,139]],[[67082,65396],[-523,179],[-303,136],[-313,76],[-118,725],[-133,105],[-214,-106],[-280,-286],[-339,196],[-281,454],[-267,168],[-186,561],[-205,788],[-149,-96],[-177,196],[-104,-231]],[[59999,71049],[-26,452],[68,243]],[[60041,71744],[74,129],[75,130],[15,329],[91,-115],[306,165],[147,-112],[229,2],[320,222],[149,-10],[316,92]],[[62817,73469],[-113,342],[1,91],[-123,-2],[-82,159],[-58,-16]],[[62442,74043],[-109,172],[-207,147],[27,288],[-47,208]],[[62106,74858],[386,92]],[[62492,74950],[57,-155],[106,-103],[-56,-148],[148,-202],[-78,-189],[118,-160],[124,-97],[7,-410]],[[55734,91409],[371,-289],[433,-402],[8,-910],[93,-230]],[[56639,89578],[-478,-167],[-269,-413],[43,-361],[-441,-475],[-537,-509],[-202,-832],[198,-416],[265,-328],[-255,-666],[-289,-138],[-106,-992],[-157,-554],[-337,57],[-158,-468],[-321,-27],[-89,558],[-232,671],[-211,835]],[[58829,81362],[-239,-35],[-85,-129],[-18,-298],[-111,57],[-250,-28],[-73,138],[-104,-103],[-105,86],[-218,12],[-310,141],[-281,47],[-215,-14],[-152,-160],[-133,-23]],[[56535,81053],[-6,263],[-85,274],[166,121],[2,235],[-77,225],[-12,261]],[[56523,82432],[268,-4],[302,223],[64,333],[228,190],[-26,264]],[[57359,83438],[169,100],[298,228]],[[60617,78409],[-222,-48],[-185,-191],[-260,-31],[-239,-220],[14,-317]],[[59287,77741],[-38,64],[-432,149],[-19,221],[-257,-73],[-103,-325],[-215,-437]],[[58223,77340],[-126,101],[-131,-95],[-124,109]],[[57842,77455],[70,64],[49,203],[76,188],[-20,106],[58,47],[27,-81],[164,-18],[74,44],[-52,60],[19,88],[-97,150],[-40,247],[-101,97],[20,200],[-125,159],[-115,22],[-204,184],[-185,-58],[-66,-87]],[[57394,79070],[-118,0],[-69,-139],[-205,-56],[-95,-91],[-129,144],[-178,3],[-172,65],[-120,-127]],[[56308,78869],[-19,159],[-155,161]],[[56134,79189],[55,238],[77,154]],[[56266,79581],[60,-35],[-71,266],[252,491],[138,69],[29,166],[-139,515]],[[56266,79581],[-264,227],[-200,-84],[-131,61],[-165,-127],[-140,210],[-114,-81],[-16,36]],[[55236,79823],[-127,291],[-207,36],[-26,185],[-191,66],[-41,-153],[-151,122],[17,163],[-207,51],[-132,191]],[[54171,80775],[-114,377],[22,204],[-69,316],[-101,210],[77,158],[-64,300]],[[53922,82340],[189,174],[434,273],[350,200],[277,-100],[21,-144],[268,-7]],[[56314,82678],[142,-64],[67,-182]],[[54716,79012],[-21,-241],[-156,-2],[53,-128],[-92,-380]],[[54500,78261],[-53,-100],[-243,-14],[-140,-134],[-229,45]],[[53835,78058],[-398,153],[-62,205],[-274,-102],[-32,-113],[-169,84]],[[52900,78285],[-142,16],[-125,108],[42,145],[-10,104]],[[52665,78658],[83,33],[141,-164],[39,156],[245,-25],[199,106],[133,-18],[87,-121],[26,100],[-40,385],[100,75],[98,272]],[[53776,79457],[206,-190],[157,242],[98,44],[215,-180],[131,30],[128,-111]],[[54711,79292],[-23,-75],[28,-205]],[[56308,78869],[-170,-123],[-131,-401],[-168,-401],[-223,-111]],[[55616,77833],[-173,26],[-213,-155]],[[55230,77704],[-104,-89],[-229,114],[-208,253],[-88,73]],[[54601,78055],[-54,200],[-47,6]],[[54716,79012],[141,-151],[103,-65],[233,73],[22,118],[111,18],[135,92],[30,-38],[130,74],[66,139],[91,36],[297,-180],[59,61]],[[57842,77455],[-50,270],[30,252],[-9,259],[-160,352],[-89,249],[-86,175],[-84,58]],[[58223,77340],[6,-152],[-135,-128],[-84,56],[-78,-713]],[[57932,76403],[-163,62],[-202,215],[-327,-138],[-138,-150],[-408,31],[-213,92],[-108,-43],[-80,243]],[[56293,76715],[-51,103],[65,99],[-69,74],[-87,-133],[-162,172],[-22,244],[-169,139],[-31,188],[-151,232]],[[55907,83187],[-59,497]],[[55848,83684],[318,181],[466,-38],[273,59],[39,-123],[148,-38],[267,-287]],[[55848,83684],[10,445],[136,371],[262,202],[221,-442],[223,12],[53,453]],[[56753,84725],[237,105],[121,-73],[239,-219],[229,-1]],[[56753,84725],[32,349],[-102,-75],[-176,210],[-24,340],[351,164],[350,86],[301,-97],[287,17]],[[54171,80775],[-124,-62],[-73,68],[-70,-113],[-200,-114],[-103,-147],[-202,-129],[49,-176],[30,-249],[141,-142],[157,-254]],[[52665,78658],[-298,181],[-57,-128],[-236,4]],[[51718,79804],[16,259],[-56,133]],[[51678,80196],[32,400]],[[51710,80596],[-47,619],[167,0],[70,222],[69,541],[-51,200]],[[51918,82178],[54,125],[232,32],[52,-130],[188,291],[-63,222],[-13,335]],[[52368,83053],[210,-78],[178,90]],[[52756,83065],[4,-228],[281,-138],[-3,-210],[283,111],[156,162],[313,-233],[132,-189]],[[57932,76403],[-144,-245],[-101,-422],[89,-337]],[[57776,75399],[-239,79],[-283,-186]],[[57254,75292],[-3,-294],[-252,-56],[-196,206],[-222,-162],[-206,17]],[[56375,75003],[-20,391],[-139,189]],[[56216,75583],[46,84],[-30,70],[47,188],[105,185],[-135,255],[-24,216],[68,134]],[[57302,71436],[-35,-175],[-400,-50],[3,98],[-339,115],[52,251],[152,-199],[216,34],[207,-42],[-7,-103],[151,71]],[[57254,75292],[135,-157],[-86,-369],[-66,-67]],[[57237,74699],[-169,17],[-145,56],[-336,-154],[192,-332],[-141,-96],[-154,-1],[-147,305],[-52,-130],[62,-353],[139,-277],[-105,-129],[155,-273],[137,-171],[4,-334],[-257,157],[82,-302],[-176,-62],[105,-521],[-184,-8],[-228,257],[-104,473],[-49,393],[-108,272],[-143,337],[-18,168]],[[55597,73991],[129,287],[16,192],[91,85],[5,155]],[[55838,74710],[182,53],[106,129],[150,-12],[46,103],[53,20]],[[60041,71744],[-102,268],[105,222],[-169,-51],[-233,136],[-191,-340],[-421,-66],[-225,317],[-300,20],[-64,-245],[-192,-70],[-268,314],[-303,-11],[-165,588],[-203,328],[135,459],[-176,283],[308,565],[428,23],[117,449],[529,-78],[334,383],[324,167],[459,13],[485,-417],[399,-228],[323,91],[239,-53],[328,309]],[[61542,75120],[296,28],[268,-290]],[[57776,75399],[33,-228],[243,-190],[-51,-145],[-330,-33],[-118,-182],[-232,-319],[-87,276],[3,121]],[[55597,73991],[-48,41],[-5,130],[-154,199],[-24,281],[23,403],[38,184],[-47,93]],[[55380,75322],[-18,188],[120,291],[18,-111],[75,52]],[[55575,75742],[59,-159],[66,-60],[19,-214]],[[55719,75309],[-35,-201],[39,-254],[115,-144]],[[55230,77704],[67,-229],[89,-169],[-107,-222]],[[55279,77084],[-126,131],[-192,-8],[-239,98],[-130,-13],[-60,-123],[-99,136],[-59,-245],[136,-277],[61,-183],[127,-221],[106,-130],[105,-247],[246,-224]],[[55155,75778],[-31,-100]],[[55124,75678],[-261,218],[-161,213],[-254,176],[-233,434],[56,45],[-127,248],[-5,200],[-179,93],[-85,-255],[-82,198],[6,205],[10,9]],[[53809,77462],[194,-20],[51,100],[94,-97],[109,-11],[-1,165],[97,60],[27,239],[221,157]],[[52900,78285],[-22,-242],[-122,-100],[-206,75],[-60,-239],[-132,-19],[-48,94],[-156,-200],[-134,-28],[-120,126]],[[51576,79843],[30,331],[72,22]],[[50698,80799],[222,117]],[[50920,80916],[204,-47],[257,123],[176,-258],[153,-138]],[[50920,80916],[143,162],[244,869],[380,248],[231,-17]],[[47490,75324],[101,150],[113,86],[70,-289],[164,0],[47,75],[162,-21],[78,-296],[-129,-160],[-3,-461],[-45,-86],[-11,-280],[-120,-48],[111,-355],[-77,-388],[96,-175],[-38,-161],[-103,-222],[23,-195]],[[47929,72498],[-112,-153],[-146,83],[-143,-65],[42,462],[-26,363],[-124,55],[-67,224],[22,386],[111,215],[20,239],[58,355],[-6,250],[-56,212],[-12,200]],[[47490,75324],[14,420],[-114,257],[393,426],[340,-106],[373,3],[296,-101],[230,31],[449,-19]],[[50829,75674],[15,-344],[-263,-393],[-356,-125],[-25,-199],[-171,-327],[-107,-481],[108,-338],[-160,-263],[-60,-384],[-210,-118],[-197,-454],[-352,-9],[-265,11],[-174,-209],[-106,-223],[-136,49],[-103,199],[-79,340],[-259,92]],[[48278,82406],[46,-422],[-210,-528],[-493,-349],[-393,89],[225,617],[-145,601],[378,463],[210,276]],[[47896,83153],[57,-317],[-57,-317],[172,9],[210,-122]],[[96049,38125],[228,-366],[144,-272],[-105,-142],[-153,160],[-199,266],[-179,313],[-184,416],[-38,201],[119,-9],[156,-201],[122,-200],[89,-166]],[[95032,44386],[78,-203],[-194,4],[-106,363],[166,-142],[56,-22]],[[94910,44908],[-42,-109],[-206,512],[-57,353],[94,0],[100,-473],[111,-283]],[[94680,44747],[-108,-14],[-170,60],[-58,91],[17,235],[183,-93],[91,-124],[45,-155]],[[94344,45841],[65,-187],[12,-119],[-218,251],[-152,212],[-104,197],[41,60],[128,-142],[228,-272]],[[93649,46431],[111,-193],[-56,-33],[-121,134],[-114,243],[14,99],[166,-250]],[[99134,26908],[-105,-319],[-138,-404],[-214,-236],[-48,155],[-116,85],[160,486],[-91,326],[-299,236],[8,214],[201,206],[47,455],[-13,382],[-113,396],[8,104],[-133,244],[-218,523],[-117,418],[104,46],[151,-328],[216,-153],[78,-526],[202,-622],[5,403],[126,-161],[41,-447],[224,-192],[188,-48],[158,226],[141,-69],[-67,-524],[-85,-345],[-212,12],[-74,-179],[26,-254],[-41,-110]],[[97129,24846],[238,310],[167,306],[123,441],[106,149],[41,330],[195,273],[61,-251],[63,-244],[198,239],[80,-249],[0,-249],[-103,-274],[-182,-435],[-142,-238],[103,-284],[-214,-7],[-238,-223],[-75,-387],[-157,-597],[-219,-264],[-138,-169],[-256,13],[-180,194],[-302,42],[-46,217],[149,438],[349,583],[179,111],[200,225]],[[91024,26469],[166,-39],[20,-702],[-95,-203],[-29,-476],[-97,162],[-193,-412],[-57,32],[-171,19],[-171,505],[-38,390],[-160,515],[7,271],[181,-52],[269,-204],[151,81],[217,113]],[[85040,31546],[-294,-303],[-241,-137],[-53,-309],[-103,-240],[-236,-15],[-174,-52],[-246,107],[-199,-64],[-191,-27],[-165,-315],[-81,26],[-140,-167],[-133,-187],[-203,23],[-186,0],[-295,377],[-149,113],[6,338],[138,81],[47,134],[-10,212],[34,411],[-31,350],[-147,598],[-45,337],[12,336],[-111,385],[-7,174],[-123,235],[-35,463],[-158,467],[-39,252],[122,-255],[-93,548],[137,-171],[83,-229],[-5,303],[-138,465],[-26,186],[-65,177],[31,341],[56,146],[38,295],[-29,346],[114,425],[21,-450],[118,406],[225,198],[136,252],[212,217],[126,46],[77,-73],[219,220],[168,66],[42,129],[74,54],[153,-14],[292,173],[151,262],[71,316],[163,300],[13,236],[7,321],[194,502],[117,-510],[119,118],[-99,279],[87,287],[122,-128],[34,449],[152,291],[67,233],[140,101],[4,165],[122,-69],[5,148],[122,85],[134,80],[205,-271],[155,-350],[173,-4],[177,-56],[-59,325],[133,473],[126,155],[-44,147],[121,338],[168,208],[142,-70],[234,111],[-5,302],[-204,195],[148,86],[184,-147],[148,-242],[234,-151],[79,60],[172,-182],[162,169],[105,-51],[65,113],[127,-292],[-74,-316],[-105,-239],[-96,-20],[32,-236],[-81,-295],[-99,-291],[20,-166],[221,-327],[214,-189],[143,-204],[201,-350],[78,1],[145,-151],[43,-183],[265,-200],[183,202],[55,317],[56,262],[34,324],[85,470],[-39,286],[20,171],[-32,339],[37,445],[53,120],[-43,197],[67,313],[52,325],[7,168],[104,222],[78,-289],[19,-371],[70,-71],[11,-249],[101,-300],[21,-335],[-10,-214],[100,-464],[179,223],[92,-250],[133,-231],[-29,-262],[60,-506],[42,-295],[70,-72],[75,-505],[-27,-307],[90,-400],[301,-309],[197,-281],[186,-257],[-37,-143],[159,-371],[108,-639],[111,130],[113,-256],[68,91],[48,-626],[197,-363],[129,-226],[217,-478],[78,-475],[7,-337],[-19,-365],[132,-502],[-16,-523],[-48,-274],[-75,-527],[6,-339],[-55,-423],[-123,-538],[-205,-290],[-102,-458],[-93,-292],[-82,-510],[-107,-294],[-70,-442],[-36,-407],[14,-187],[-159,-205],[-311,-22],[-257,-242],[-127,-229],[-168,-254],[-230,262],[-170,104],[43,308],[-152,-112],[-243,-428],[-240,160],[-158,94],[-159,42],[-269,171],[-179,364],[-52,449],[-64,298],[-137,240],[-267,71],[91,287],[-67,438],[-136,-408],[-247,-109],[146,327],[42,341],[107,289],[-22,438],[-226,-504],[-174,-202],[-106,-470],[-217,243],[9,313],[-174,429],[-147,221],[52,137],[-356,358],[-195,17],[-267,287],[-498,-56],[-359,-211],[-317,-197],[-265,39]],[[72718,55024],[-42,-615],[-116,-168],[-242,-135],[-132,470],[-49,849],[126,959],[192,-328],[129,-416],[134,-616]],[[80409,61331],[-228,183],[-8,509],[137,267],[304,166],[159,-14],[62,-226],[-122,-260],[-64,-341],[-240,-284]],[[84517,74170],[-388,-171],[-204,-277],[-300,-161],[148,274],[-58,230],[220,397],[-147,310],[-242,-209],[-314,-411],[-171,-381],[-272,-29],[-142,-275],[147,-400],[227,-97],[9,-265],[220,-173],[311,422],[247,-230],[179,-15],[45,-310],[-393,-165],[-130,-319],[-270,-296],[-142,-414],[299,-325],[109,-581],[169,-541],[189,-454],[-5,-439],[-174,-161],[66,-315],[164,-184],[-43,-481],[-71,-468],[-155,-53],[-203,-640],[-225,-775],[-258,-705],[-382,-545],[-386,-498],[-313,-68],[-170,-262],[-96,192],[-157,-294],[-388,-296],[-294,-90],[-95,-624],[-154,-35],[-73,429],[66,228],[-373,189],[-131,-96]],[[83826,64992],[-167,-947],[-119,-485],[-146,499],[-32,438],[163,581],[223,447],[127,-176],[-49,-357]],[[53835,78058],[-31,-291],[67,-251]],[[53871,77516],[-221,86],[-226,-210],[15,-293],[-34,-168],[91,-301],[261,-298],[140,-488],[309,-476],[217,3],[68,-130],[-78,-118],[249,-214],[204,-178],[238,-308],[29,-111],[-52,-211],[-154,276],[-242,97],[-116,-382],[200,-219],[-33,-309],[-116,-35],[-148,-506],[-116,-46],[1,181],[57,317],[60,126],[-108,342],[-85,298],[-115,74],[-82,255],[-179,107],[-120,238],[-206,38],[-217,267],[-254,384],[-189,340],[-86,585],[-138,68],[-226,195],[-128,-80],[-161,-274],[-115,-43]],[[54100,73116],[211,51],[-100,-465],[41,-183],[-58,-303],[-213,222],[-141,64],[-387,300],[38,304],[325,-54],[284,64]],[[52419,74744],[139,183],[166,-419],[-39,-782],[-126,38],[-113,-197],[-105,156],[-11,713],[-64,338],[153,-30]],[[52368,83053],[-113,328],[-8,604],[46,159],[80,177],[244,37],[98,163],[223,167],[-9,-304],[-82,-192],[33,-166],[151,-89],[-68,-223],[-83,64],[-200,-425],[76,-288]],[[53436,83731],[88,-296],[-166,-478],[-291,333],[-39,246],[408,195]],[[47896,83153],[233,24],[298,-365],[-149,-406]],[[49140,82132],[1,0],[40,343],[-186,364],[-4,8],[-337,104],[-66,160],[101,264],[-92,163],[-149,-279],[-17,569],[-140,301],[101,611],[216,480],[222,-47],[335,49],[-297,-639],[283,81],[304,-3],[-72,-481],[-250,-530],[287,-38],[22,-62],[248,-697],[190,-95],[171,-673],[79,-233],[337,-113],[-34,-378],[-142,-173],[111,-305],[-250,-310],[-371,6],[-473,-163],[-130,116],[-183,-276],[-257,67],[-195,-226],[-148,118],[407,621],[249,127],[-2,1],[-434,98],[-79,235],[291,183],[-152,319],[52,387],[413,-54]],[[45969,89843],[-64,-382],[314,-403],[-361,-451],[-801,-405],[-240,-107],[-365,87],[-775,187],[273,261],[-605,289],[492,114],[-12,174],[-583,137],[188,385],[421,87],[433,-400],[422,321],[349,-167],[453,315],[461,-42]],[[63495,75281],[146,-311],[141,-419],[130,-28],[85,-159],[-228,-47],[-49,-459],[-48,-207],[-101,-138],[7,-293]],[[62492,74950],[68,96],[207,-169],[149,-36],[38,70],[-136,319],[72,82]],[[61542,75120],[42,252],[-70,403],[-160,218],[-154,68],[-102,181]],[[83564,58086],[-142,450],[238,-22],[97,-213],[-74,-510],[-119,295]],[[84051,56477],[70,165],[30,367],[153,35],[-44,-398],[205,570],[-26,-563],[-100,-195],[-87,-373],[-87,-175],[-171,409],[57,158]],[[85104,55551],[28,-392],[16,-332],[-94,-540],[-102,602],[-130,-300],[89,-435],[-79,-277],[-327,343],[-78,428],[84,280],[-176,280],[-87,-245],[-131,23],[-205,-330],[-46,173],[109,498],[175,166],[151,223],[98,-268],[212,162],[45,264],[196,15],[-16,457],[225,-280],[23,-297],[20,-218]],[[82917,56084],[-369,-561],[136,414],[200,364],[167,409],[146,587],[49,-482],[-183,-325],[-146,-406]],[[83982,61347],[-46,-245],[95,-423],[-73,-491],[-164,-196],[-43,-476],[62,-471],[147,-65],[123,70],[347,-328],[-27,-321],[91,-142],[-29,-272],[-216,290],[-103,310],[-71,-217],[-177,354],[-253,-87],[-138,130],[14,244],[87,151],[-83,136],[-36,-213],[-137,340],[-41,257],[-11,566],[112,-195],[29,925],[90,535],[169,-1],[171,-168],[85,153],[26,-150]],[[83899,57324],[-43,282],[166,-183],[177,1],[-5,-247],[-129,-251],[-176,-178],[-10,275],[20,301]],[[84861,57766],[78,-660],[-214,157],[5,-199],[68,-364],[-132,-133],[-11,416],[-84,31],[-43,357],[163,-47],[-4,224],[-169,451],[266,-13],[77,-220]],[[78372,54256],[64,-56],[164,-356],[116,-396],[16,-398],[-29,-269],[27,-203],[20,-349],[98,-163],[109,-523],[-5,-199],[-197,-40],[-263,438],[-329,469],[-32,301],[-161,395],[-38,489],[-100,322],[30,431],[-61,250]],[[80461,51765],[204,-202],[214,110],[56,500],[119,112],[333,128],[199,467],[137,374]],[[81723,53254],[126,-307],[58,202],[133,-19],[16,377],[13,291]],[[82069,53798],[214,411],[140,462],[112,2],[143,-299],[13,-257],[183,-165],[231,-177],[-20,-232],[-186,-29],[50,-289],[-205,-201]],[[81723,53254],[110,221],[236,323]],[[53809,77462],[62,54]],[[57797,86326],[-504,-47],[-489,-216],[-452,-125],[-161,323],[-269,193],[62,582],[-135,533],[133,345],[252,371],[635,640],[185,124],[-28,250],[-387,279]],[[54711,79292],[39,130],[123,-10],[95,61],[7,55],[54,28],[18,134],[64,26],[43,106],[82,1]],[[60669,61213],[161,-684],[77,-542],[152,-288],[379,-558],[154,-336],[151,-341],[87,-203],[136,-178]],[[61966,58083],[-83,-144],[-119,51]],[[61764,57990],[-95,191],[-114,346],[-124,190],[-71,204],[-242,237],[-191,7],[-67,124],[-163,-139],[-168,268],[-87,-441],[-323,124]],[[89411,73729],[-256,-595],[4,-610],[-104,-472],[48,-296],[-145,-416],[-355,-278],[-488,-36],[-396,-675],[-186,227],[-12,442],[-483,-130],[-329,-279],[-325,-11],[282,-435],[-186,-1004],[-179,-248],[-135,229],[69,533],[-176,172],[-113,405],[263,182],[145,371],[280,306],[203,403],[553,177],[297,-121],[291,1050],[185,-282],[408,591],[158,229],[174,723],[-47,664],[117,374],[295,108],[152,-819],[-9,-479]],[[90169,76553],[197,250],[62,-663],[-412,-162],[-244,-587],[-436,404],[-152,-646],[-308,-9],[-39,587],[138,455],[296,33],[81,817],[83,460],[326,-615],[213,-198],[195,-126]],[[86769,70351],[154,352],[158,-68],[114,248],[204,-127],[35,-203],[-156,-357],[-114,189],[-143,-137],[-73,-346],[-181,168],[2,281]],[[64752,60417],[-201,-158],[-54,-263],[-6,-201],[-277,-249],[-444,-276],[-249,-417],[-122,-33],[-83,35],[-163,-245],[-177,-114],[-233,-30],[-70,-34],[-61,-156],[-73,-43],[-43,-150],[-137,13],[-89,-80],[-192,30],[-72,345],[8,323],[-46,174],[-54,437],[-80,243],[56,29],[-29,270],[34,114],[-12,257]],[[61883,60238],[121,189],[-28,249],[74,290],[114,-153],[75,53],[321,14],[50,-59],[269,-60],[106,30],[70,-197],[130,99],[199,620],[259,266],[801,226]],[[63448,67449],[109,-510],[137,-135],[47,-207],[190,-249],[16,-243],[-27,-197],[35,-199],[80,-165],[37,-194],[41,-145]],[[64274,65130],[53,-226]],[[61883,60238],[-37,252],[-83,178],[-22,236],[-143,212],[-148,495],[-79,482],[-192,406],[-124,97],[-184,563],[-32,411],[12,350],[-159,655],[-130,231],[-150,122],[-92,339],[15,133],[-77,306],[-81,132],[-108,440],[-170,476],[-141,406],[-139,-3],[44,325],[12,206],[34,236]],[[36483,4468],[141,0],[414,127],[419,-127],[342,-255],[120,-359],[33,-254],[11,-301],[-430,-186],[-452,-150],[-522,-139],[-582,-116],[-658,35],[-365,197],[49,243],[593,162],[239,197],[174,254],[126,220],[168,209],[180,243]],[[31586,3163],[625,-23],[599,-58],[207,243],[147,208],[288,-243],[-82,-301],[-81,-266],[-582,81],[-621,-35],[-348,197],[0,23],[-152,174]],[[29468,8472],[190,70],[321,-23],[82,301],[16,219],[-6,475],[158,278],[256,93],[147,-220],[65,-220],[120,-267],[92,-254],[76,-267],[33,-266],[-49,-231],[-76,-220],[-326,-81],[-311,-116],[-364,11],[136,232],[-327,-81],[-310,-81],[-212,174],[-16,243],[305,231]],[[21575,8103],[174,104],[353,-81],[403,-46],[305,-81],[304,69],[163,-335],[-217,46],[-337,-23],[-343,23],[-376,-35],[-283,116],[-146,243]],[[15938,7061],[60,197],[332,-104],[359,-93],[332,104],[-158,-208],[-261,-151],[-386,47],[-278,208]],[[14643,7177],[202,127],[277,-139],[425,-231],[-164,23],[-359,58],[-381,162]],[[4524,4144],[169,220],[517,-93],[277,-185],[212,-209],[76,-266],[-533,-81],[-364,208],[-163,209],[-11,35],[-180,162]],[[0,529],[16,-5],[245,344],[501,-185],[32,21],[294,188],[38,-7],[32,-4],[402,-246],[352,246],[63,34],[816,104],[265,-138],[130,-71],[419,-196],[789,-151],[625,-185],[1072,-139],[800,162],[1181,-116],[669,-185],[734,174],[773,162],[60,278],[-1094,23],[-898,139],[-234,231],[-745,128],[49,266],[103,243],[104,220],[-55,243],[-462,162],[-212,209],[-430,185],[675,-35],[642,93],[402,-197],[495,173],[457,220],[223,197],[-98,243],[-359,162],[-408,174],[-571,35],[-500,81],[-539,58],[-180,220],[-359,185],[-217,208],[-87,672],[136,-58],[250,-185],[457,58],[441,81],[228,-255],[441,58],[370,127],[348,162],[315,197],[419,58],[-11,220],[-97,220],[81,208],[359,104],[163,-196],[425,115],[321,151],[397,12],[375,57],[376,139],[299,128],[337,127],[218,-35],[190,-46],[414,81],[370,-104],[381,11],[364,81],[375,-57],[414,-58],[386,23],[403,-12],[413,-11],[381,23],[283,174],[337,92],[349,-127],[331,104],[300,208],[179,-185],[98,-208],[180,-197],[288,174],[332,-220],[375,-70],[321,-162],[392,35],[354,104],[418,-23],[376,-81],[381,-104],[147,254],[-180,197],[-136,209],[-359,46],[-158,220],[-60,220],[-98,440],[213,-81],[364,-35],[359,35],[327,-93],[283,-174],[119,-208],[376,-35],[359,81],[381,116],[342,70],[283,-139],[370,46],[239,451],[224,-266],[321,-104],[348,58],[228,-232],[365,-23],[337,-69],[332,-128],[218,220],[108,209],[278,-232],[381,58],[283,-127],[190,-197],[370,58],[288,127],[283,151],[337,81],[392,69],[354,81],[272,127],[163,186],[65,254],[-32,244],[-87,231],[-98,232],[-87,231],[-71,209],[-16,231],[27,232],[130,220],[109,243],[44,231],[-55,255],[-32,232],[136,266],[152,173],[180,220],[190,186],[223,173],[109,255],[152,162],[174,151],[267,34],[174,186],[196,115],[228,70],[202,150],[157,186],[218,69],[163,-151],[-103,-196],[-283,-174],[-120,-127],[-206,92],[-229,-58],[-190,-139],[-202,-150],[-136,-174],[-38,-231],[17,-220],[130,-197],[-190,-139],[-261,-46],[-153,-197],[-163,-185],[-174,-255],[-44,-220],[98,-243],[147,-185],[229,-139],[212,-185],[114,-232],[60,-220],[82,-232],[130,-196],[82,-220],[38,-544],[81,-220],[22,-232],[87,-231],[-38,-313],[-152,-243],[-163,-197],[-370,-81],[-125,-208],[-169,-197],[-419,-220],[-370,-93],[-348,-127],[-376,-128],[-223,-243],[-446,-23],[-489,23],[-441,-46],[-468,0],[87,-232],[424,-104],[311,-162],[174,-208],[-310,-185],[-479,58],[-397,-151],[-17,-243],[-11,-232],[327,-196],[60,-220],[353,-220],[588,-93],[500,-162],[398,-185],[506,-186],[690,-92],[681,-162],[473,-174],[517,-197],[272,-278],[136,-220],[337,209],[457,173],[484,186],[577,150],[495,162],[691,12],[680,-81],[560,-139],[180,255],[386,173],[702,12],[550,127],[522,128],[577,81],[614,104],[430,150],[-196,209],[-119,208],[0,220],[-539,-23],[-571,-93],[-544,0],[-77,220],[39,440],[125,128],[397,138],[468,139],[337,174],[337,174],[251,231],[380,104],[376,81],[190,47],[430,23],[408,81],[343,116],[337,139],[305,139],[386,185],[245,197],[261,173],[82,232],[-294,139],[98,243],[185,185],[288,116],[305,139],[283,185],[217,232],[136,277],[202,163],[331,-35],[136,-197],[332,-23],[11,220],[142,231],[299,-58],[71,-220],[331,-34],[360,104],[348,69],[315,-34],[120,-243],[305,196],[283,105],[315,81],[310,81],[283,139],[310,92],[240,128],[168,208],[207,-151],[288,81],[202,-277],[157,-209],[316,116],[125,232],[283,162],[365,-35],[108,-220],[229,220],[299,69],[326,23],[294,-11],[310,-70],[300,-34],[130,-197],[180,-174],[304,104],[327,24],[315,0],[310,11],[278,81],[294,70],[245,162],[261,104],[283,58],[212,162],[152,324],[158,197],[288,-93],[109,-208],[239,-139],[289,46],[196,-208],[206,-151],[283,139],[98,255],[250,104],[289,197],[272,81],[326,116],[218,127],[228,139],[218,127],[261,-69],[250,208],[180,162],[261,-11],[229,139],[54,208],[234,162],[228,116],[278,93],[256,46],[244,-35],[262,-58],[223,-162],[27,-254],[245,-197],[168,-162],[332,-70],[185,-162],[229,-162],[266,-35],[223,116],[240,243],[261,-127],[272,-70],[261,-69],[272,-46],[277,0],[229,-614],[-11,-150],[-33,-267],[-266,-150],[-218,-220],[38,-232],[310,12],[-38,-232],[-141,-220],[-131,-243],[212,-185],[321,-58],[321,104],[153,232],[92,220],[153,185],[174,174],[70,208],[147,289],[174,58],[316,24],[277,69],[283,93],[136,231],[82,220],[190,220],[272,151],[234,115],[153,197],[157,104],[202,93],[277,-58],[250,58],[272,69],[305,-34],[201,162],[142,393],[103,-162],[131,-278],[234,-115],[266,-47],[267,70],[283,-46],[261,-12],[174,58],[234,-35],[212,-127],[250,81],[300,0],[255,81],[289,-81],[185,197],[141,196],[191,163],[348,439],[179,-81],[212,-162],[185,-208],[354,-359],[272,-12],[256,0],[299,70],[299,81],[229,162],[190,174],[310,23],[207,127],[218,-116],[141,-185],[196,-185],[305,23],[190,-150],[332,-151],[348,-58],[288,47],[218,185],[185,185],[250,46],[251,-81],[288,-58],[261,93],[250,0],[245,-58],[256,-58],[250,104],[299,93],[283,23],[316,0],[255,58],[251,46],[76,290],[11,243],[174,-162],[49,-266],[92,-244],[115,-196],[234,-105],[315,35],[365,12],[250,35],[364,0],[262,11],[364,-23],[310,-46],[196,-186],[-54,-220],[179,-173],[299,-139],[310,-151],[360,-104],[375,-92],[283,-93],[315,-12],[180,197],[245,-162],[212,-185],[245,-139],[337,-58],[321,-69],[136,-232],[316,-139],[212,-208],[310,-93],[321,12],[299,-35],[332,12],[332,-47],[310,-81],[288,-139],[289,-116],[195,-173],[-32,-232],[-147,-208],[-125,-266],[-98,-209],[-131,-243],[-364,-93],[-163,-208],[-360,-127],[-125,-232],[-190,-220],[-201,-185],[-115,-243],[-70,-220],[-28,-266],[6,-220],[158,-232],[60,-220],[130,-208],[517,-81],[109,-255],[-501,-93],[-424,-127],[-528,-23],[-234,-336],[-49,-278],[-119,-220],[-147,-220],[370,-196],[141,-244],[239,-219],[338,-197],[386,-186],[419,-185],[636,-185],[142,-289],[800,-128],[53,-45],[208,-175],[767,151],[636,-186],[479,-142],[-99999,0]],[[59092,71341],[19,3],[40,143],[200,-8],[253,176],[-188,-251],[21,-111]],[[59437,71293],[-30,21],[-53,-45],[-42,12],[-14,-22],[-5,59],[-20,37],[-54,6],[-75,-51],[-52,31]],[[59437,71293],[8,-48],[-285,-240],[-136,77],[-64,237],[132,22]],[[45272,63236],[13,274],[106,161],[91,308],[-18,200],[96,417],[155,376],[93,95],[74,344],[6,315],[100,365],[185,216],[177,603],[5,8],[139,227],[259,65],[218,404],[140,158],[232,493],[-70,735],[106,508],[37,312],[179,399],[278,270],[206,244],[186,612],[87,362],[205,-2],[167,-251],[264,41],[288,-131],[121,-6]],[[56944,63578],[0,2175],[0,2101],[-83,476],[71,365],[-43,253],[101,283]],[[56990,69231],[369,10],[268,-156],[275,-175],[129,-92],[214,188],[114,169],[245,49],[198,-75],[75,-293],[65,193],[222,-140],[217,-33],[137,149]],[[59700,68010],[-78,-238],[-60,-446],[-75,-308],[-65,-103],[-93,191],[-125,263],[-198,847],[-29,-53],[115,-624],[171,-594],[210,-920],[102,-321],[90,-334],[249,-654],[-55,-103],[9,-384],[323,-530],[49,-121]],[[53191,70158],[326,-204],[117,51],[232,-98],[368,-264],[130,-526],[250,-114],[391,-248],[296,-293],[136,153],[133,272],[-65,452],[87,288],[200,277],[192,80],[375,-121],[95,-264],[104,-2],[88,-101],[276,-70],[68,-195]],[[59804,53833],[-164,643],[-127,137],[-48,236],[-141,288],[-171,42],[95,337],[147,14],[42,181]],[[61764,57990],[-98,-261],[-94,-277],[22,-163],[4,-180],[155,-10],[67,42],[62,-106]],[[61882,57035],[-61,-209],[103,-325],[102,-285],[106,-210],[909,-702],[233,4]],[[61966,58083],[66,-183],[-9,-245],[-158,-142],[119,-161]],[[61984,57352],[-102,-317]],[[61984,57352],[91,-109],[54,-245],[125,-247],[138,-2],[262,151],[302,70],[245,184],[138,39],[99,108],[158,20]],[[58449,49909],[-166,-182],[-67,60]],[[58564,52653],[115,161],[176,-132],[224,138],[195,-1],[171,272]],[[55279,77084],[100,2],[-69,-260],[134,-227],[-41,-278],[-65,-27]],[[55338,76294],[-52,-53],[-90,-138],[-41,-325]],[[55719,75309],[35,-5],[13,121],[164,91],[62,23]],[[55993,75539],[95,35],[128,9]],[[55993,75539],[-9,44],[33,71],[31,144],[-39,-4],[-54,110],[-46,28],[-36,94],[-52,36],[-40,84],[-50,-33],[-38,-196],[-66,-43]],[[55627,75874],[22,51],[-106,123],[-91,63],[-40,82],[-74,101]],[[55380,75322],[-58,46],[-78,192],[-120,118]],[[55627,75874],[-52,-132]],[[32866,56937],[160,77],[58,-21],[-11,-440],[-232,-65],[-50,53],[81,163],[-6,233]]],"bbox":[-180,-85.60903777459771,180,83.64513000000001],"transform":{"scale":[0.0036000360003600037,0.0016925586033320105],"translate":[-180,-85.60903777459771]}} ================================================ FILE: freedata_gui/src/assets/countries-50m.json ================================================ {"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3]],"id":"716","properties":{"name":"Zimbabwe"}},{"type":"Polygon","arcs":[[-3,4,5,6,7,8,9]],"id":"894","properties":{"name":"Zambia"}},{"type":"MultiPolygon","arcs":[[[10,11,12]],[[13]],[[14]],[[15]],[[16]]],"id":"887","properties":{"name":"Yemen"}},{"type":"MultiPolygon","arcs":[[[17]],[[18,19,20,21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]]],"id":"704","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[28]],[[29]],[[30]],[[31]],[[32,33,34,35]]],"id":"862","properties":{"name":"Venezuela"}},{"type":"Polygon","arcs":[[36]],"id":"336","properties":{"name":"Vatican"}},{"type":"MultiPolygon","arcs":[[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]]],"id":"548","properties":{"name":"Vanuatu"}},{"type":"MultiPolygon","arcs":[[[51,52,53,54,55],[56]],[[57]],[[58]]],"id":"860","properties":{"name":"Uzbekistan"}},{"type":"Polygon","arcs":[[59,60,61]],"id":"858","properties":{"name":"Uruguay"}},{"type":"MultiPolygon","arcs":[[[62]],[[63]],[[64]],[[65]],[[66]]],"id":"583","properties":{"name":"Micronesia"}},{"type":"MultiPolygon","arcs":[[[67]],[[68]],[[69]],[[70]],[[71]]],"id":"584","properties":{"name":"Marshall Is."}},{"type":"MultiPolygon","arcs":[[[72]],[[73]],[[74]],[[75]],[[76]],[[77]]],"id":"580","properties":{"name":"N. Mariana Is."}},{"type":"MultiPolygon","arcs":[[[78]],[[79]],[[80]]],"id":"850","properties":{"name":"U.S. Virgin Is."}},{"type":"Polygon","arcs":[[81]],"id":"316","properties":{"name":"Guam"}},{"type":"Polygon","arcs":[[82]],"id":"016","properties":{"name":"American Samoa"}},{"type":"MultiPolygon","arcs":[[[83]],[[84]],[[85]]],"id":"630","properties":{"name":"Puerto Rico"}},{"type":"MultiPolygon","arcs":[[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102,103,104,105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164,165,166,167,168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]]],"id":"840","properties":{"name":"United States of America"}},{"type":"MultiPolygon","arcs":[[[220]],[[221]]],"id":"239","properties":{"name":"S. Geo. and the Is."}},{"type":"Polygon","arcs":[[222]],"id":"086","properties":{"name":"Br. Indian Ocean Ter."}},{"type":"MultiPolygon","arcs":[[[223]],[[224]]],"id":"654","properties":{"name":"Saint Helena"}},{"type":"Polygon","arcs":[[225]],"id":"612","properties":{"name":"Pitcairn Is."}},{"type":"Polygon","arcs":[[226]],"id":"660","properties":{"name":"Anguilla"}},{"type":"MultiPolygon","arcs":[[[227]],[[228]],[[229]],[[230]],[[231]],[[232]]],"id":"238","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[233]],[[234]],[[235]]],"id":"136","properties":{"name":"Cayman Is."}},{"type":"Polygon","arcs":[[236]],"id":"060","properties":{"name":"Bermuda"}},{"type":"MultiPolygon","arcs":[[[237]],[[238]],[[239]]],"id":"092","properties":{"name":"British Virgin Is."}},{"type":"MultiPolygon","arcs":[[[240]],[[241]],[[242]]],"id":"796","properties":{"name":"Turks and Caicos Is."}},{"type":"Polygon","arcs":[[243]],"id":"500","properties":{"name":"Montserrat"}},{"type":"Polygon","arcs":[[244]],"id":"832","properties":{"name":"Jersey"}},{"type":"Polygon","arcs":[[245]],"id":"831","properties":{"name":"Guernsey"}},{"type":"Polygon","arcs":[[246]],"id":"833","properties":{"name":"Isle of Man"}},{"type":"MultiPolygon","arcs":[[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268,269]],[[270]]],"id":"826","properties":{"name":"United Kingdom"}},{"type":"MultiPolygon","arcs":[[[271,272,273,274,275],[276]],[[277]],[[278]],[[279]],[[280]]],"id":"784","properties":{"name":"United Arab Emirates"}},{"type":"MultiPolygon","arcs":[[[281,282,283,284,285,286,287,288,289,290,291]],[[292]]],"id":"804","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[293,294,295,296,297]],"id":"800","properties":{"name":"Uganda"}},{"type":"MultiPolygon","arcs":[[[298]],[[-55,299,300,301,302]]],"id":"795","properties":{"name":"Turkmenistan"}},{"type":"MultiPolygon","arcs":[[[303]],[[304,305,306,307,308,309,310]],[[311,312,313]]],"id":"792","properties":{"name":"Turkey"}},{"type":"MultiPolygon","arcs":[[[314,315,316]],[[317]],[[318]]],"id":"788","properties":{"name":"Tunisia"}},{"type":"MultiPolygon","arcs":[[[319]],[[320]]],"id":"780","properties":{"name":"Trinidad and Tobago"}},{"type":"MultiPolygon","arcs":[[[321]],[[322]],[[323]]],"id":"776","properties":{"name":"Tonga"}},{"type":"Polygon","arcs":[[324,325,326,327]],"id":"768","properties":{"name":"Togo"}},{"type":"MultiPolygon","arcs":[[[328]],[[329,330]],[[331,332]]],"id":"626","properties":{"name":"Timor-Leste"}},{"type":"MultiPolygon","arcs":[[[333]],[[334]],[[335]],[[336,337,338,339,340,341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]]],"id":"764","properties":{"name":"Thailand"}},{"type":"MultiPolygon","arcs":[[[348]],[[349]],[[-8,350,351,352,-294,353,354,355,356]],[[357]]],"id":"834","properties":{"name":"Tanzania"}},{"type":"MultiPolygon","arcs":[[[-53,358,359,360]],[[-57]],[[361]]],"id":"762","properties":{"name":"Tajikistan"}},{"type":"MultiPolygon","arcs":[[[362]],[[363]]],"id":"158","properties":{"name":"Taiwan"}},{"type":"Polygon","arcs":[[-310,364,365,366,367,368]],"id":"760","properties":{"name":"Syria"}},{"type":"Polygon","arcs":[[369,370,371,372,373,374]],"id":"756","properties":{"name":"Switzerland"}},{"type":"MultiPolygon","arcs":[[[375]],[[376]],[[377,378,379]],[[380]],[[381]],[[382]]],"id":"752","properties":{"name":"Sweden"}},{"type":"Polygon","arcs":[[383,384]],"id":"748","properties":{"name":"eSwatini"}},{"type":"Polygon","arcs":[[385,386,387,388]],"id":"740","properties":{"name":"Suriname"}},{"type":"Polygon","arcs":[[-297,389,390,391,392,393]],"id":"728","properties":{"name":"S. Sudan"}},{"type":"Polygon","arcs":[[-392,394,395,396,397,398,399,400]],"id":"729","properties":{"name":"Sudan"}},{"type":"MultiPolygon","arcs":[[[401]],[[402]],[[403]]],"id":"144","properties":{"name":"Sri Lanka"}},{"type":"MultiPolygon","arcs":[[[404]],[[405]],[[406]],[[407]],[[408,409,410,411,412,413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]]],"id":"724","properties":{"name":"Spain"}},{"type":"MultiPolygon","arcs":[[[421,422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]]],"id":"410","properties":{"name":"South Korea"}},{"type":"MultiPolygon","arcs":[[[-1,433,-385,434,435,436,437],[438]],[[439]]],"id":"710","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[440,441,442,443]],"id":"706","properties":{"name":"Somalia"}},{"type":"Polygon","arcs":[[-443,444,445,446]],"properties":{"name":"Somaliland"}},{"type":"MultiPolygon","arcs":[[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]]],"id":"090","properties":{"name":"Solomon Is."}},{"type":"Polygon","arcs":[[-289,468,469,470,471]],"id":"703","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[472,473,474,475,476]],"id":"705","properties":{"name":"Slovenia"}},{"type":"Polygon","arcs":[[477]],"id":"702","properties":{"name":"Singapore"}},{"type":"MultiPolygon","arcs":[[[478,479,480]],[[481]]],"id":"694","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[482]],"id":"690","properties":{"name":"Seychelles"}},{"type":"Polygon","arcs":[[483,484,485,486,487,488,489,490]],"id":"688","properties":{"name":"Serbia"}},{"type":"Polygon","arcs":[[491,492,493,494,495,496,497]],"id":"686","properties":{"name":"Senegal"}},{"type":"MultiPolygon","arcs":[[[498]],[[499]],[[-12,500,501,502,503,504,505,506,-274,507]],[[508]]],"id":"682","properties":{"name":"Saudi Arabia"}},{"type":"MultiPolygon","arcs":[[[509]],[[510]]],"id":"678","properties":{"name":"São Tomé and Principe"}},{"type":"Polygon","arcs":[[511]],"id":"674","properties":{"name":"San Marino"}},{"type":"MultiPolygon","arcs":[[[512]],[[513]]],"id":"882","properties":{"name":"Samoa"}},{"type":"MultiPolygon","arcs":[[[514]],[[515]],[[516]]],"id":"670","properties":{"name":"St. Vin. and Gren."}},{"type":"Polygon","arcs":[[517]],"id":"662","properties":{"name":"Saint Lucia"}},{"type":"MultiPolygon","arcs":[[[518]],[[519]]],"id":"659","properties":{"name":"St. Kitts and Nevis"}},{"type":"Polygon","arcs":[[-295,-353,520,521]],"id":"646","properties":{"name":"Rwanda"}},{"type":"MultiPolygon","arcs":[[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539,540,541,542,543,544,545,546,547,-292,548,549,550,551,552,553,554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634,635,636,637,638]],[[-283,639]]],"id":"643","properties":{"name":"Russia"}},{"type":"Polygon","arcs":[[-285,640,641,-491,642,-287,643]],"id":"642","properties":{"name":"Romania"}},{"type":"Polygon","arcs":[[-506,644]],"id":"634","properties":{"name":"Qatar"}},{"type":"MultiPolygon","arcs":[[[645]],[[-413,646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]]],"id":"620","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-290,-472,654,655,656,657,658,-637,659,660]],"id":"616","properties":{"name":"Poland"}},{"type":"MultiPolygon","arcs":[[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]]],"id":"608","properties":{"name":"Philippines"}},{"type":"Polygon","arcs":[[709,710,711,712,713,714]],"id":"604","properties":{"name":"Peru"}},{"type":"Polygon","arcs":[[715,716,717]],"id":"600","properties":{"name":"Paraguay"}},{"type":"MultiPolygon","arcs":[[[718]],[[719]],[[720,721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]]],"id":"598","properties":{"name":"Papua New Guinea"}},{"type":"MultiPolygon","arcs":[[[745,746,747,748]],[[749]],[[750]],[[751]],[[752]]],"id":"591","properties":{"name":"Panama"}},{"type":"MultiPolygon","arcs":[[[753]],[[754]]],"id":"585","properties":{"name":"Palau"}},{"type":"Polygon","arcs":[[755,756,757,758,759,760]],"id":"586","properties":{"name":"Pakistan"}},{"type":"MultiPolygon","arcs":[[[761]],[[-13,-508,-273,762]],[[-276,763]],[[-277]]],"id":"512","properties":{"name":"Oman"}},{"type":"MultiPolygon","arcs":[[[-378,764,-554,765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]]],"id":"578","properties":{"name":"Norway"}},{"type":"MultiPolygon","arcs":[[[-422,797,798,-540,799]],[[800]]],"id":"408","properties":{"name":"North Korea"}},{"type":"MultiPolygon","arcs":[[[801]],[[802,803,804,805,806]]],"id":"566","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[-807,807,808,809,810,811,812]],"id":"562","properties":{"name":"Niger"}},{"type":"Polygon","arcs":[[813,814,815,816]],"id":"558","properties":{"name":"Nicaragua"}},{"type":"MultiPolygon","arcs":[[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]]],"id":"554","properties":{"name":"New Zealand"}},{"type":"Polygon","arcs":[[830]],"id":"570","properties":{"name":"Niue"}},{"type":"Polygon","arcs":[[831]],"id":"184","properties":{"name":"Cook Is."}},{"type":"MultiPolygon","arcs":[[[832,833,834]],[[835,836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]]],"id":"528","properties":{"name":"Netherlands"}},{"type":"Polygon","arcs":[[847]],"id":"533","properties":{"name":"Aruba"}},{"type":"Polygon","arcs":[[848]],"id":"531","properties":{"name":"Curaçao"}},{"type":"Polygon","arcs":[[849,850]],"id":"524","properties":{"name":"Nepal"}},{"type":"Polygon","arcs":[[851]],"id":"520","properties":{"name":"Nauru"}},{"type":"Polygon","arcs":[[-5,852,-437,853,854]],"id":"516","properties":{"name":"Namibia"}},{"type":"Polygon","arcs":[[-4,-10,855,-356,856,-435,-384,-434],[857],[858]],"id":"508","properties":{"name":"Mozambique"}},{"type":"Polygon","arcs":[[859,860,861]],"id":"504","properties":{"name":"Morocco"}},{"type":"Polygon","arcs":[[862,863,864,-861]],"id":"732","properties":{"name":"W. Sahara"}},{"type":"Polygon","arcs":[[-487,865,866,867,868,869]],"id":"499","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[-542,870]],"id":"496","properties":{"name":"Mongolia"}},{"type":"Polygon","arcs":[[-286,-644]],"id":"498","properties":{"name":"Moldova"}},{"type":"Polygon","arcs":[[871,872]],"id":"492","properties":{"name":"Monaco"}},{"type":"MultiPolygon","arcs":[[[-167,873,874,875,876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]]],"id":"484","properties":{"name":"Mexico"}},{"type":"Polygon","arcs":[[892]],"id":"480","properties":{"name":"Mauritius"}},{"type":"MultiPolygon","arcs":[[[893]],[[-498,894,-864,895,896]]],"id":"478","properties":{"name":"Mauritania"}},{"type":"MultiPolygon","arcs":[[[897]],[[898]]],"id":"470","properties":{"name":"Malta"}},{"type":"Polygon","arcs":[[-492,-897,899,-810,900,901,902]],"id":"466","properties":{"name":"Mali"}},{"type":"MultiPolygon","arcs":[[[903]],[[904]]],"id":"462","properties":{"name":"Maldives"}},{"type":"MultiPolygon","arcs":[[[-340,905]],[[906,907,908,909,910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917,918]]],"id":"458","properties":{"name":"Malaysia"}},{"type":"MultiPolygon","arcs":[[[-859]],[[-858]],[[-9,-357,-856]]],"id":"454","properties":{"name":"Malawi"}},{"type":"MultiPolygon","arcs":[[[919]],[[920]],[[921]]],"id":"450","properties":{"name":"Madagascar"}},{"type":"Polygon","arcs":[[-485,922,923,924,925]],"id":"807","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[926,927,928]],"id":"442","properties":{"name":"Luxembourg"}},{"type":"MultiPolygon","arcs":[[[-639,929]],[[-636,930,931,932,-660]]],"id":"440","properties":{"name":"Lithuania"}},{"type":"Polygon","arcs":[[-371,933]],"id":"438","properties":{"name":"Liechtenstein"}},{"type":"Polygon","arcs":[[-315,934,935,-397,936,-812,937]],"id":"434","properties":{"name":"Libya"}},{"type":"Polygon","arcs":[[-479,938,939,940]],"id":"430","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[-439]],"id":"426","properties":{"name":"Lesotho"}},{"type":"Polygon","arcs":[[-368,941,942]],"id":"422","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[-932,943,944,-550,945]],"id":"428","properties":{"name":"Latvia"}},{"type":"Polygon","arcs":[[-21,946,-337,947,948]],"id":"418","properties":{"name":"Laos"}},{"type":"Polygon","arcs":[[-52,949,950,-359],[-58],[-59],[-362]],"id":"417","properties":{"name":"Kyrgyzstan"}},{"type":"MultiPolygon","arcs":[[[951]],[[-504,952,953]]],"id":"414","properties":{"name":"Kuwait"}},{"type":"Polygon","arcs":[[-486,-926,954,-866]],"properties":{"name":"Kosovo"}},{"type":"MultiPolygon","arcs":[[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]]],"id":"296","properties":{"name":"Kiribati"}},{"type":"MultiPolygon","arcs":[[[974]],[[-298,-394,975,-441,976,-354]]],"id":"404","properties":{"name":"Kenya"}},{"type":"MultiPolygon","arcs":[[[977]],[[978]],[[979]],[[-56,-303,980,-544,981,-950]]],"id":"398","properties":{"name":"Kazakhstan"}},{"type":"Polygon","arcs":[[-366,982,-502,983,984,985,986]],"id":"400","properties":{"name":"Jordan"}},{"type":"MultiPolygon","arcs":[[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]]],"id":"392","properties":{"name":"Japan"}},{"type":"Polygon","arcs":[[1021]],"id":"388","properties":{"name":"Jamaica"}},{"type":"MultiPolygon","arcs":[[[-373,1022,-475,1023,1024],[-37],[-512]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]]],"id":"380","properties":{"name":"Italy"}},{"type":"Polygon","arcs":[[-367,-987,1032,-985,1033,1034,1035,1036,-942]],"id":"376","properties":{"name":"Israel"}},{"type":"MultiPolygon","arcs":[[[-1036,1037,1038]],[[-986,-1033]]],"id":"275","properties":{"name":"Palestine"}},{"type":"MultiPolygon","arcs":[[[1039]],[[-269,1040]]],"id":"372","properties":{"name":"Ireland"}},{"type":"Polygon","arcs":[[-309,1041,1042,-953,-503,-983,-365]],"id":"368","properties":{"name":"Iraq"}},{"type":"MultiPolygon","arcs":[[[1043]],[[-301,1044,-759,1045,-1042,-308,1046,1047,1048,1049]]],"id":"364","properties":{"name":"Iran"}},{"type":"MultiPolygon","arcs":[[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[-907,1077]],[[1078]],[[1079]],[[1080]],[[-330,1081,-333,1082]],[[1083]],[[1084]],[[1085]],[[-721,1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[-918,1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]]],"id":"360","properties":{"name":"Indonesia"}},{"type":"MultiPolygon","arcs":[[[-757,1184,1185,-850,1186,1187,1188,1189,1190,1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]]],"id":"356","properties":{"name":"India"}},{"type":"Polygon","arcs":[[1205]],"id":"352","properties":{"name":"Iceland"}},{"type":"Polygon","arcs":[[-288,-643,-490,1206,-477,1207,-469]],"id":"348","properties":{"name":"Hungary"}},{"type":"MultiPolygon","arcs":[[[-817,1208,1209,1210,1211]],[[1212]],[[1213]]],"id":"340","properties":{"name":"Honduras"}},{"type":"MultiPolygon","arcs":[[[1214,1215]],[[1216]],[[1217]]],"id":"332","properties":{"name":"Haiti"}},{"type":"Polygon","arcs":[[-33,1218,-388,1219]],"id":"328","properties":{"name":"Guyana"}},{"type":"MultiPolygon","arcs":[[[-494,1220,1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]]],"id":"624","properties":{"name":"Guinea-Bissau"}},{"type":"Polygon","arcs":[[-481,1228,-1221,-493,-903,1229,-939]],"id":"324","properties":{"name":"Guinea"}},{"type":"Polygon","arcs":[[-876,1230,1231,-1211,1232,1233]],"id":"320","properties":{"name":"Guatemala"}},{"type":"Polygon","arcs":[[1234]],"id":"308","properties":{"name":"Grenada"}},{"type":"MultiPolygon","arcs":[[[1235]],[[1236]],[[1237]],[[1238]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[-313,1274,1275,-924,1276]]],"id":"300","properties":{"name":"Greece"}},{"type":"Polygon","arcs":[[-327,1277,1278,1279,1280,1281]],"id":"288","properties":{"name":"Ghana"}},{"type":"MultiPolygon","arcs":[[[-375,1282,-927,1283,-835,1284,1285,1286,-656,1287,1288]],[[1289]],[[-658,1290]],[[1291]],[[1292]],[[1293]]],"id":"276","properties":{"name":"Germany"}},{"type":"Polygon","arcs":[[-305,1294,-547,1295,1296]],"id":"268","properties":{"name":"Georgia"}},{"type":"Polygon","arcs":[[-496,1297]],"id":"270","properties":{"name":"Gambia"}},{"type":"Polygon","arcs":[[1298,1299,1300,1301]],"id":"266","properties":{"name":"Gabon"}},{"type":"MultiPolygon","arcs":[[[1302]],[[-374,-1025,1303,-873,1304,-411,1305,-409,1306,1307,-928,-1283]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[-386,1315,1316]]],"id":"250","properties":{"name":"France"}},{"type":"MultiPolygon","arcs":[[[1317]],[[1318]]],"id":"666","properties":{"name":"St. Pierre and Miquelon"}},{"type":"MultiPolygon","arcs":[[[1319]],[[1320]]],"id":"876","properties":{"name":"Wallis and Futuna Is."}},{"type":"Polygon","arcs":[[1321,1322]],"id":"663","properties":{"name":"St-Martin"}},{"type":"Polygon","arcs":[[1323]],"id":"652","properties":{"name":"St-Barthélemy"}},{"type":"MultiPolygon","arcs":[[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]]],"id":"258","properties":{"name":"Fr. Polynesia"}},{"type":"MultiPolygon","arcs":[[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]]],"id":"540","properties":{"name":"New Caledonia"}},{"type":"MultiPolygon","arcs":[[[1351]],[[1352]],[[1353]]],"id":"260","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":"MultiPolygon","arcs":[[[1354]],[[1355]],[[1356]]],"id":"248","properties":{"name":"Åland"}},{"type":"MultiPolygon","arcs":[[[-379,-766,-553,1357]],[[1358]],[[1359]],[[1360]],[[1361]],[[1362]],[[1363]],[[1364]]],"id":"246","properties":{"name":"Finland"}},{"type":"MultiPolygon","arcs":[[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]]],"id":"242","properties":{"name":"Fiji"}},{"type":"Polygon","arcs":[[-393,-401,1385,1386,-445,-442,-976]],"id":"231","properties":{"name":"Ethiopia"}},{"type":"MultiPolygon","arcs":[[[-945,1387,-551]],[[1388]],[[1389]],[[1390]]],"id":"233","properties":{"name":"Estonia"}},{"type":"MultiPolygon","arcs":[[[-400,1391,1392,-1386]],[[1393]],[[1394]]],"id":"232","properties":{"name":"Eritrea"}},{"type":"MultiPolygon","arcs":[[[1395]],[[-1301,1396,1397]]],"id":"226","properties":{"name":"Eq. Guinea"}},{"type":"Polygon","arcs":[[-1210,1398,-1233]],"id":"222","properties":{"name":"El Salvador"}},{"type":"Polygon","arcs":[[-398,-936,1399,-1038,-1035,1400]],"id":"818","properties":{"name":"Egypt"}},{"type":"MultiPolygon","arcs":[[[-714,1401,1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]]],"id":"218","properties":{"name":"Ecuador"}},{"type":"Polygon","arcs":[[-1215,1411]],"id":"214","properties":{"name":"Dominican Rep."}},{"type":"Polygon","arcs":[[1412]],"id":"212","properties":{"name":"Dominica"}},{"type":"Polygon","arcs":[[-446,-1387,-1393,1413]],"id":"262","properties":{"name":"Djibouti"}},{"type":"MultiPolygon","arcs":[[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]]],"id":"304","properties":{"name":"Greenland"}},{"type":"MultiPolygon","arcs":[[[1431]],[[1432]],[[1433]],[[1434]],[[1435]]],"id":"234","properties":{"name":"Faeroe Is."}},{"type":"MultiPolygon","arcs":[[[1436]],[[-1286,1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]]],"id":"208","properties":{"name":"Denmark"}},{"type":"Polygon","arcs":[[-471,1448,-1288,-655]],"id":"203","properties":{"name":"Czechia"}},{"type":"Polygon","arcs":[[1449,1450]],"properties":{"name":"N. Cyprus"}},{"type":"Polygon","arcs":[[-1450,1451]],"id":"196","properties":{"name":"Cyprus"}},{"type":"MultiPolygon","arcs":[[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]]],"id":"192","properties":{"name":"Cuba"}},{"type":"MultiPolygon","arcs":[[[-473,-1207,-489,1459,1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[-869,1472,1473]]],"id":"191","properties":{"name":"Croatia"}},{"type":"MultiPolygon","arcs":[[[-1279,1474]],[[-902,1475,-1281,1476,-940,-1230]]],"id":"384","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-748,1477,-815,1478]],"id":"188","properties":{"name":"Costa Rica"}},{"type":"Polygon","arcs":[[-7,1479,1480,1481,1482,1483,-390,-296,-522,1484,-351]],"id":"180","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[-1299,1485,1486,-1483,1487,1488]],"id":"178","properties":{"name":"Congo"}},{"type":"MultiPolygon","arcs":[[[1489]],[[1490]],[[1491]]],"id":"174","properties":{"name":"Comoros"}},{"type":"MultiPolygon","arcs":[[[-35,1492,-715,-1403,1493,-746,1494]],[[1495]]],"id":"170","properties":{"name":"Colombia"}},{"type":"MultiPolygon","arcs":[[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[-22,-949,1507,-1189,1508,-1187,-851,-1186,1509,-761,1510,-360,-951,-982,-543,-871,-541,-799,1511,1512,1513,1514,1515]],[[1516]]],"id":"156","properties":{"name":"China"}},{"type":"Polygon","arcs":[[-1515,1517]],"id":"446","properties":{"name":"Macao"}},{"type":"MultiPolygon","arcs":[[[-1513,1518]],[[1519]],[[1520]]],"id":"344","properties":{"name":"Hong Kong"}},{"type":"MultiPolygon","arcs":[[[1521]],[[1522]],[[-712,1523,1524,1525]],[[1526,1527]],[[1528]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]]],"id":"152","properties":{"name":"Chile"}},{"type":"Polygon","arcs":[[-396,1555,1556,-803,-813,-937]],"id":"148","properties":{"name":"Chad"}},{"type":"Polygon","arcs":[[-391,-1484,-1487,1557,-1556,-395]],"id":"140","properties":{"name":"Central African Rep."}},{"type":"MultiPolygon","arcs":[[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]]],"id":"132","properties":{"name":"Cabo Verde"}},{"type":"MultiPolygon","arcs":[[[1566]],[[1567]],[[1568]],[[-106,1569,-169,1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[-165,1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[-104,1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]]],"id":"124","properties":{"name":"Canada"}},{"type":"Polygon","arcs":[[-804,-1557,-1558,-1486,-1302,-1398,1708]],"id":"120","properties":{"name":"Cameroon"}},{"type":"MultiPolygon","arcs":[[[1709]],[[1710]],[[-20,1711,-338,-947]]],"id":"116","properties":{"name":"Cambodia"}},{"type":"MultiPolygon","arcs":[[[-342,1712,1713,-1190,-1508,-948]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]]],"id":"104","properties":{"name":"Myanmar"}},{"type":"Polygon","arcs":[[-352,-1485,-521]],"id":"108","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[-328,-1282,-1476,-901,-809,1732]],"id":"854","properties":{"name":"Burkina Faso"}},{"type":"Polygon","arcs":[[-314,-1277,-923,-484,-642,1733]],"id":"100","properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","arcs":[[[-910,1734]],[[-909,1735]]],"id":"096","properties":{"name":"Brunei"}},{"type":"MultiPolygon","arcs":[[[-34,-1220,-387,-1317,1736,-62,1737,-716,1738,-710,-1493]],[[1739]],[[1740]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]]],"id":"076","properties":{"name":"Brazil"}},{"type":"Polygon","arcs":[[-2,-438,-853]],"id":"072","properties":{"name":"Botswana"}},{"type":"Polygon","arcs":[[-870,-1474,1755,-1460,-488]],"id":"070","properties":{"name":"Bosnia and Herz."}},{"type":"Polygon","arcs":[[-711,-1739,-718,1756,-1524]],"id":"068","properties":{"name":"Bolivia"}},{"type":"Polygon","arcs":[[-1188,-1509]],"id":"064","properties":{"name":"Bhutan"}},{"type":"Polygon","arcs":[[-325,-1733,-808,-806,1757]],"id":"204","properties":{"name":"Benin"}},{"type":"MultiPolygon","arcs":[[[-875,1758,-1231]],[[1759]],[[1760]]],"id":"084","properties":{"name":"Belize"}},{"type":"Polygon","arcs":[[-833,-1284,-929,-1308,1761,-836]],"id":"056","properties":{"name":"Belgium"}},{"type":"Polygon","arcs":[[-291,-661,-933,-946,-549]],"id":"112","properties":{"name":"Belarus"}},{"type":"Polygon","arcs":[[1762]],"id":"052","properties":{"name":"Barbados"}},{"type":"MultiPolygon","arcs":[[[-1191,-1714,1763]],[[1764]],[[1765]],[[1766]],[[1767]],[[1768]],[[1769]]],"id":"050","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[1770]],"id":"048","properties":{"name":"Bahrain"}},{"type":"MultiPolygon","arcs":[[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]],[[1777]],[[1778]],[[1779]],[[1780]],[[1781]],[[1782]],[[1783]],[[1784]],[[1785]]],"id":"044","properties":{"name":"Bahamas"}},{"type":"MultiPolygon","arcs":[[[-307,1786,-1047]],[[-1049,1787,-1296,-546,1788],[1789]],[[1790]]],"id":"031","properties":{"name":"Azerbaijan"}},{"type":"Polygon","arcs":[[-370,-1289,-1449,-470,-1208,-476,-1023,-372,-934]],"id":"040","properties":{"name":"Austria"}},{"type":"MultiPolygon","arcs":[[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]]],"id":"036","properties":{"name":"Australia"}},{"type":"MultiPolygon","arcs":[[[1833]],[[1834]],[[1835]]],"properties":{"name":"Indian Ocean Ter."}},{"type":"Polygon","arcs":[[1836]],"id":"334","properties":{"name":"Heard I. and McDonald Is."}},{"type":"Polygon","arcs":[[1837]],"id":"574","properties":{"name":"Norfolk Island"}},{"type":"Polygon","arcs":[[1838]],"id":"036","properties":{"name":"Ashmore and Cartier Is."}},{"type":"MultiPolygon","arcs":[[[-306,-1297,-1788,-1048,-1787],[-1791]],[[-1790]]],"id":"051","properties":{"name":"Armenia"}},{"type":"MultiPolygon","arcs":[[[-61,1839,-1525,-1757,-717,-1738]],[[-1527,1840]],[[1841]],[[1842]]],"id":"032","properties":{"name":"Argentina"}},{"type":"MultiPolygon","arcs":[[[1843]],[[1844]]],"id":"028","properties":{"name":"Antigua and Barb."}},{"type":"MultiPolygon","arcs":[[[-1482,1845,-1488]],[[-6,-855,1846,-1480]]],"id":"024","properties":{"name":"Angola"}},{"type":"Polygon","arcs":[[-410,-1306]],"id":"020","properties":{"name":"Andorra"}},{"type":"Polygon","arcs":[[-316,-938,-811,-900,-896,-863,-860,1847]],"id":"012","properties":{"name":"Algeria"}},{"type":"Polygon","arcs":[[-867,-955,-925,-1276,1848]],"id":"008","properties":{"name":"Albania"}},{"type":"Polygon","arcs":[[-54,-361,-1511,-760,-1045,-300]],"id":"004","properties":{"name":"Afghanistan"}},{"type":"Polygon","arcs":[[-756,-1510,-1185]],"properties":{"name":"Siachen Glacier"}},{"type":"MultiPolygon","arcs":[[[1849]],[[1850]],[[1851],[1852]],[[1853]],[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]]],"id":"010","properties":{"name":"Antarctica"}},{"type":"Polygon","arcs":[[-1322,1958]],"id":"534","properties":{"name":"Sint Maarten"}}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[853,1846,1480,1845,1488,1299,1396,1708,804,1757,325,1277,1474,1279,1476,940,479,1228,1221,494,1297,496,894,864,861,1847,316,934,1399,1038,1036,942,368,310,1294,547,281,639,283,640,1733,311,1274,1848,867,1472,1755,1460,473,1023,1303,871,1304,411,646,413,1306,1761,836,833,1284,1437,1286,656,1290,658,637,929,634,930,943,1387,551,1357,379,764,554,799,422,797,1511,1518,1513,1517,1515,18,1711,338,905,340,1712,1763,1191,757,1045,1042,953,504,644,506,274,763,271,762,10,500,983,1033,1400,398,1391,1413,446,443,976,354,856,435],[980,544,1788,1049,301]],[[13]],[[14]],[[15]],[[16]],[[17]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[388,1315,1736,59,1839,1525,712,1401,1493,746,1477,815,1208,1398,1233,876,167,1570,102,1615,104,1569,1590,165,873,1758,1231,1211,813,1478,748,1494,35,1218]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[269,1040]],[[270]],[[277]],[[278]],[[279]],[[280]],[[292]],[[298]],[[303]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[328]],[[1082,330,1081,331]],[[333]],[[334]],[[335]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[357]],[[362]],[[363]],[[375]],[[376]],[[380]],[[381]],[[382]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[439]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[477]],[[481]],[[482]],[[498]],[[499]],[[508]],[[509]],[[510]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[645]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[718]],[[719]],[[721,1086]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[761]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[800]],[[801]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[851]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[897]],[[898]],[[903]],[[904]],[[907,1735,1734,910,1077]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[918,1153]],[[919]],[[920]],[[921]],[[951]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[977]],[[978]],[[979]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1039]],[[1043]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1078]],[[1079]],[[1080]],[[1083]],[[1084]],[[1085]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1212]],[[1213]],[[1215,1411]],[[1216]],[[1217]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1234]],[[1235]],[[1236]],[[1237]],[[1238]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1289]],[[1291]],[[1292]],[[1293]],[[1302]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1317]],[[1318]],[[1319]],[[1320]],[[1322,1958]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1358]],[[1359]],[[1360]],[[1361]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1388]],[[1389]],[[1390]],[[1393]],[[1394]],[[1395]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1412]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1450,1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1489]],[[1490]],[[1491]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1516]],[[1519]],[[1520]],[[1521]],[[1522]],[[1527,1840]],[[1528]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1709]],[[1710]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1739]],[[1740]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]],[[1759]],[[1760]],[[1762]],[[1764]],[[1765]],[[1766]],[[1767]],[[1768]],[[1769]],[[1770]],[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]],[[1777]],[[1778]],[[1779]],[[1780]],[[1781]],[[1782]],[[1783]],[[1784]],[[1785]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1841]],[[1842]],[[1843]],[[1844]],[[1849]],[[1850]],[[1852],[1851]],[[1853]],[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]]]}]}},"arcs":[[[58690,38938],[-25,33],[-34,22],[-44,9],[-57,-4],[-69,-18],[-75,22],[-80,62],[-67,22],[-79,-27],[-4,-1]],[[58156,39058],[-13,21],[-22,45],[-36,8],[-10,11],[-8,16],[-6,22],[-2,23],[6,75],[-3,8],[-10,9],[-19,9],[-48,33],[-60,33],[-97,35],[-38,10],[-9,11],[-11,27],[-19,85],[-17,56],[-42,87],[-7,27],[2,69],[4,55],[4,47],[-2,45],[-1,54],[2,37],[-6,16],[-15,11],[-43,5],[-53,-2],[-1,56],[-5,86],[-10,50],[-12,26],[-24,27],[-49,37],[-66,56],[-57,83],[-64,103],[-21,18],[-24,97],[-36,166],[2,55],[-5,27],[-36,82],[-7,42],[-7,43],[-56,120],[-19,52],[-15,67],[-14,53],[-13,22],[-16,36],[-11,42],[-5,31],[4,41],[6,29]],[[57016,41593],[53,-30],[30,-2],[23,14],[28,-19],[34,-54],[37,-11],[39,34],[54,-10],[68,-54],[56,-11],[67,48],[60,132],[56,125],[55,144],[34,116],[48,95],[65,73],[65,61],[100,76],[21,62],[6,68],[0,94],[5,61],[11,28],[16,22],[22,28],[66,72],[55,46],[68,30],[73,0],[71,0],[41,1]],[[58443,42832],[0,-91],[3,-102],[8,-10],[54,-2],[86,-8],[82,-7],[53,-74],[18,-15],[55,-20],[70,-124],[84,-11],[58,-39],[51,-42],[29,-51],[19,-12],[26,-4],[13,-4],[-3,-37],[-17,-62],[2,-89],[24,-123],[3,-107],[-8,-189],[1,-183],[2,-65],[4,-43],[5,-24],[-1,-27],[-14,-77],[-11,-81],[-1,-32],[-4,-23],[-8,-20],[-37,-37],[-6,-23],[0,-42],[4,-35],[14,-13],[17,-20],[6,-26],[0,-28],[-5,-51],[-15,-85],[15,-98],[17,-63],[22,-73],[10,-45],[-1,-33],[-3,-31],[-34,-134],[-25,-83],[-30,-89],[-40,-56],[-10,-27],[-4,-31],[1,-67],[-1,-69],[-34,-108],[21,-92],[-5,-9],[-12,-13],[-49,-104],[-49,-105],[-36,-77],[-42,-88],[-46,-98],[-39,-83],[-40,-60]],[[57016,41593],[-47,92],[-25,38],[-19,14],[-55,15],[-128,21],[-13,-5],[-53,-18],[-66,-23],[-56,-22],[-60,-24]],[[56494,41681],[-55,96],[-63,108],[-65,122],[-49,95],[-24,55],[-43,72],[-31,35],[-12,18],[-30,193],[-17,177],[0,133],[0,185],[0,185],[0,185],[0,184],[0,185],[0,185],[0,185],[0,185],[0,90],[64,0],[72,0],[76,0],[83,0],[82,0],[83,0],[58,0],[15,1],[18,6],[1,18],[-24,91],[2,32],[6,62],[10,53],[13,70],[1,41],[-10,134],[1,75],[3,78],[3,74],[-4,51],[4,28],[8,40],[4,45],[5,20],[-1,18],[-5,33],[-4,76],[-6,105],[-6,75]],[[56657,45580],[10,-4],[21,-7],[10,-37],[6,-41],[14,-2],[37,-24],[13,-34],[8,-72],[-5,-37],[-12,-30],[12,-26],[25,-18],[14,6],[42,49],[16,9],[22,9],[20,13],[55,22],[30,10],[17,18],[12,0],[9,-14],[-8,-51],[-3,-46],[11,-86],[8,-40],[18,-29],[13,-15],[14,-31],[30,6],[65,-44],[20,-20],[28,-21],[19,-7],[68,-15],[25,-11],[46,-14],[37,-2],[27,6],[18,13],[11,14],[5,11],[8,43],[14,93],[5,27],[14,13],[18,9],[10,-15],[12,-103],[51,-93],[18,-78],[13,-66],[11,-19],[19,-22],[32,-9],[28,-2],[58,-48],[47,-38],[34,-27],[15,-21],[11,-34],[6,-27],[10,-68],[11,-54],[18,-11],[16,-4],[16,-37],[12,-32],[24,-80],[17,-54],[6,-54],[20,-35],[27,-15],[25,-2],[14,16],[36,27],[28,32],[20,11],[12,-7],[9,-22],[5,-43],[1,-24],[20,-22],[14,9],[6,26],[0,13],[0,117],[0,101],[0,95],[0,116],[0,101],[0,83],[0,87],[-13,-5],[-16,-20],[-37,-2],[-14,-15],[-4,-23],[2,-29],[1,-39],[-5,-19],[-16,-7],[-24,15],[-42,20],[-35,12],[-25,53],[-35,79],[-22,40],[-54,82],[-9,17],[-17,38],[-14,66],[-7,43],[-6,33],[-8,48],[13,74],[19,141],[13,102],[7,75],[27,77],[2,68],[-11,88],[3,49],[1,123],[2,104],[0,50],[-7,88],[-18,98],[-39,135],[0,29],[24,32],[36,56],[18,33],[22,47],[10,24],[21,61],[13,49],[5,63],[-10,61],[20,12],[68,21],[74,23],[79,25],[79,25],[77,25],[69,22],[48,15]],[[58541,47123],[8,-42],[14,-69],[18,-51],[21,-44],[18,-27],[12,-8],[76,3],[27,-27],[24,-35],[6,-53],[16,-33],[17,-26],[7,-3],[12,6],[21,1],[19,-12],[9,-11],[1,-45],[5,-20],[26,-7],[26,-4],[26,-30],[27,-5],[32,-13],[15,-32],[33,-34],[41,-29],[30,-34],[16,-15]],[[59144,46424],[1,-16],[7,-29],[8,-20],[1,-31],[4,-28],[12,-7],[9,-2],[9,20],[12,0],[13,-13],[5,-33],[11,-44],[16,-30],[12,-29],[-4,-53],[-7,-49],[22,-47],[30,-46],[8,-20],[2,-67],[5,-23],[20,-56],[10,-37],[-1,-22],[-54,-111],[-17,-11],[-16,-6],[-15,-23],[-8,-23],[3,-13],[6,-38],[12,-60],[12,-42],[-10,-52],[-21,-89],[-10,-8],[-2,-68],[7,-24],[10,-20],[4,-46],[1,-63],[-1,-50],[-14,-130],[25,-112],[8,-13],[34,0],[5,-10],[-8,-32],[-14,-33],[-9,-17],[-43,-38],[-62,-43],[-13,-41],[-8,-59],[7,-35],[8,-20],[-3,-52],[-5,-54],[2,-43],[-3,-38],[-8,-19],[-11,-57],[-13,-58],[-11,-26],[-15,-28],[-24,-23],[0,-11],[28,-27],[7,-18],[2,-13],[-6,-12],[-5,-17],[13,-18],[15,-15],[15,-38],[13,-54],[4,-18],[3,-8],[5,-1],[9,8],[17,30],[12,10],[15,-42]],[[59222,43770],[-60,-41],[-31,-21],[-89,-62],[-78,-54],[-20,-10],[-41,-27],[-20,-16],[-70,-47],[-29,-23],[-24,-23],[-58,-35],[-55,-33],[-60,-34],[-67,-38],[-38,-27],[-25,-24],[-60,-47],[-3,-12],[1,-32],[8,-67],[15,-61],[12,-35],[8,-90],[5,-79]],[[64745,61433],[-140,-103],[-37,-45],[-33,-57],[-25,-70],[-18,-124],[13,-113],[-1,-60],[-36,-40],[-34,-29],[-37,-44],[-23,-11],[-19,-35],[-21,-25],[-78,-63],[-86,-50],[-135,-59],[-53,-64],[-47,-44],[-73,-13],[-99,-61],[-55,-48],[-69,-80],[-15,-25],[-12,-58],[-21,-51],[-42,-83],[-31,-42],[-20,-2],[-41,-23],[-47,-5],[-80,29],[-21,-20],[-17,-33],[-61,-56],[-63,-114],[-46,-30],[-74,-36],[-52,-47],[-35,-19],[-44,-10],[-83,5],[-79,-17],[-73,-32],[-34,-60],[-39,-96],[-64,-40],[-15,-34],[-20,-71],[-41,-18],[-38,-12],[-38,31],[-72,-85],[-27,-15],[-41,-3],[-30,-18],[-21,5],[-26,34],[-56,40],[-41,-26],[-3,80],[-68,247],[14,215],[0,30],[-13,96],[-40,87],[1,111],[-14,80],[-10,81],[3,22],[1,20],[-21,125],[-7,26],[-2,26],[6,20],[0,24],[-11,38],[-11,74],[-55,57],[11,54],[11,-19],[14,-16],[3,35],[0,26],[-23,163],[34,218],[-11,195]],[[61888,61273],[52,79],[13,24],[8,21],[12,45],[17,14],[6,47],[-1,24],[-11,20],[-8,55],[3,69],[3,29],[5,53],[18,20],[5,16],[-14,33],[1,20],[31,56],[12,17],[20,18],[16,-1],[18,-9],[16,-16],[15,-29],[17,-32],[25,-13],[17,4],[15,-15],[11,8],[14,17],[21,-1],[20,19],[55,9],[53,-6],[56,16],[56,-1],[55,-2],[13,-2],[12,-10],[47,-50],[36,-10],[72,-13],[77,-15],[66,-13],[57,12],[47,10],[12,-2],[14,-31],[29,-76],[26,-73],[47,-3],[30,27],[33,38],[20,30],[23,117],[15,77],[34,85],[29,72],[39,95],[21,52],[42,104],[39,40],[77,78],[76,77],[49,49],[42,23],[70,20],[83,23],[82,23],[88,24],[98,28],[67,18],[86,24],[71,20],[63,18],[66,18]],[[64438,62785],[12,-57],[12,-58],[12,-58],[13,-57],[12,-58],[12,-57],[13,-58],[12,-57],[12,-58],[13,-57],[12,-58],[12,-57],[12,-58],[13,-57],[12,-58],[12,-58],[12,-56],[20,-18],[12,-54],[17,-75],[17,-76],[17,-76],[16,-76]],[[61830,60658],[-9,-13],[-2,23],[5,50],[9,14],[7,-37],[-4,-20],[-6,-17]],[[61876,59737],[-18,-18],[12,46],[13,9],[4,-2],[-11,-35]],[[61885,59891],[-4,-13],[-5,3],[-17,31],[19,34],[10,-32],[-3,-23]],[[64934,59122],[17,-7],[26,20],[74,3],[90,-65],[-17,-16],[-10,-24],[-39,-21],[-40,-49],[-114,-24],[-33,13],[-28,48],[-51,62],[20,40],[5,18],[7,17],[29,30],[29,-4],[35,-41]],[[78906,57828],[5,-29],[-2,-66],[-11,-66],[4,-29],[-9,-18],[-18,123],[-24,53],[-5,21],[14,-2],[24,34],[12,1],[10,-22]],[[79992,64232],[-13,-5],[-33,-1],[-28,-53],[-20,-22],[-30,-18],[-33,-30],[-9,-52],[-1,-38],[-5,-42],[-53,-61],[-15,6],[-10,23],[-15,-5],[-11,-11],[-12,1],[-14,-13],[-18,4],[-17,19],[-10,5],[-12,1],[-2,-23],[17,-89],[5,-41],[-56,-120],[6,-78],[-15,-59],[-34,-48],[-64,-123],[-29,-3],[-22,-28],[-47,-202],[-1,-70],[-7,-50],[2,-49],[-21,-96],[-22,-41],[-4,-52],[30,-108],[4,-19],[17,-58],[9,-41],[14,-41],[49,-107],[22,-33],[26,-23],[48,-96],[24,-62],[-11,-41],[6,-89],[-35,26],[5,-11],[40,-48],[61,-170],[53,-84],[54,-96],[17,-91],[48,-60],[54,-87],[-2,-19],[14,-24],[37,-46],[22,-49],[8,-46],[13,-7],[16,11],[15,4],[10,-3],[17,-51],[22,-46],[11,-41],[9,5],[7,-6],[2,-35],[4,-23],[30,-67],[14,-63],[37,-103],[26,-58],[20,-33],[21,-28],[22,-114],[11,-103],[23,-114],[18,-50],[0,-95],[14,-97],[15,-65],[5,-67],[4,-33],[6,-25],[16,-114],[-4,-52],[-11,51],[1,-152],[10,-80],[-5,-99],[11,-35],[19,-111],[13,-40],[-1,-137],[7,-69],[-18,41],[-13,47],[-17,-25],[-15,-36],[24,-147],[-28,14],[3,-197],[11,-46],[1,-22],[-3,-27],[-8,29],[-1,30],[-5,-6],[1,-16],[-10,-35],[-2,-43],[9,-36],[2,-28],[-7,-35],[-11,-37],[-26,-5],[-6,-71],[-9,-76],[-46,-12],[-33,-67],[-42,-25],[-37,-67],[-40,-61],[-27,-8],[-22,-13],[-26,-102],[-44,-12],[-78,-83],[-26,-40],[-24,-16],[-34,-35],[-7,13],[-12,30],[-29,15],[-15,33],[-4,43],[-4,17],[-6,-24],[-5,-102],[-5,-23],[-13,-10],[-25,29],[-23,59],[-34,-41],[10,-5],[16,3],[12,-10],[10,-39],[-1,-22],[-5,-25],[-32,-4],[-42,9],[-7,-3],[38,-39],[35,-22],[16,-24],[0,-20],[-20,-32],[-15,-40],[-1,-25],[0,-27],[-17,-24],[-11,5],[-30,41],[-86,163],[13,-46],[90,-185],[15,-61],[3,-43],[-10,-21],[-15,-26],[-29,-2],[-49,69],[-77,165],[-26,22],[78,-188],[13,-46],[13,-53],[-4,-31],[-7,-30],[-185,-174],[-28,-76],[-22,-93],[-36,-51],[-21,-48],[-62,-26],[-34,8],[35,86],[-22,32],[-1,221],[9,242],[16,121],[23,30],[30,19],[0,25],[-3,30],[-15,41],[-18,19],[-25,8],[-20,51],[-15,-2],[-24,-17],[-14,22],[-5,34],[-22,42],[-24,41]],[[79007,57840],[11,6],[13,24],[14,30],[35,4],[35,-1],[9,8],[14,32],[23,41],[18,23],[4,19],[-7,43],[-4,45],[7,14],[31,-8],[35,-21],[8,-9],[20,55],[6,6],[13,0],[34,10],[34,15],[16,-3],[15,-37],[12,-36],[6,-2],[17,15],[15,-19],[30,-32],[18,-1],[-9,73],[10,52],[-2,14],[-17,24],[-57,96],[-10,29],[1,45],[-2,66],[-5,41],[1,24],[3,20],[11,8],[10,2],[8,17],[14,44],[27,-4],[38,-25],[28,-15],[17,3],[3,6],[0,23],[2,100],[-1,21],[23,10],[37,2],[19,6],[18,42],[46,15],[34,56],[30,59],[14,15],[19,10],[14,-1],[18,-34],[14,20],[17,40],[9,39],[5,62],[-4,96],[-8,74],[-9,57],[-2,56],[20,112],[17,122],[-4,49],[-18,76],[-18,93],[-20,102],[-8,15],[-5,29],[-4,33],[9,104],[1,36],[23,47],[12,55],[12,60],[-4,31]],[[79866,60313],[-2,65],[3,31],[-5,26],[-7,37],[4,24],[17,20],[9,35],[12,42],[6,37],[-9,32],[-16,47],[-29,43],[-33,54],[-17,34],[-13,34],[-12,40],[-6,31],[6,21],[48,48],[8,17],[5,27],[-3,26],[-13,14],[-15,10],[-22,30],[-41,82],[-19,19],[-20,24],[-10,25],[-12,68],[-5,6],[-11,-20],[-15,-22],[-12,4],[-11,19],[-5,26],[-12,36],[-14,29],[-3,98],[-2,32],[-7,45],[-10,16],[-11,12],[-26,81],[-17,42],[-74,114],[-9,19],[-19,47],[-35,66],[-24,54],[-18,56],[-8,48],[-3,38],[-19,54],[-17,44],[-16,15],[-18,6],[-17,26],[-31,59],[-13,39],[-8,26],[0,26],[7,44],[9,26],[1,19],[-9,16],[-34,29],[-77,43],[-29,33],[-26,42],[-20,29],[-94,122],[-28,20],[-25,22],[-7,21],[1,20],[10,15],[27,32],[10,35],[-4,47],[-10,48],[5,16],[9,2],[17,2],[37,2],[80,-43],[11,5],[44,78],[16,47],[4,39],[8,25],[23,41],[0,37],[-11,50],[-11,19],[-10,8],[-32,-6],[-6,11],[-4,37],[-2,23],[-10,26],[-34,23],[-29,6],[-7,10],[11,25],[20,25],[15,15],[12,26],[2,27],[-15,24],[-19,26],[-31,50],[-43,54],[-26,18],[-13,-2],[-48,-46],[-25,-30],[-21,-54],[-22,-11],[-23,23],[-25,25],[-70,35],[-30,29],[-61,179],[-9,37],[6,41],[4,59],[6,38],[11,37],[3,32],[-3,32],[-9,18],[-11,5],[-9,8],[-8,41],[-5,-5],[-7,-51],[-9,-18],[-12,-9],[-10,8],[-5,20],[-3,35],[-6,46],[-8,30],[-26,31],[-12,40],[-40,87],[-33,61],[-15,55]],[[78368,64734],[13,20],[17,30],[19,46],[20,58],[8,35],[6,15],[12,10],[13,-6],[23,-23],[34,-30],[30,-35],[12,-36],[17,-34],[13,-10],[7,2],[19,26],[17,26],[1,29],[15,26],[20,43],[10,30],[7,3],[8,-9],[32,-90],[6,-6],[9,14],[13,70],[14,28],[4,-7],[77,-134],[8,2],[8,6],[6,20],[6,46],[11,50],[25,27],[19,6],[7,-24],[17,-32],[20,-5],[43,58],[15,9],[15,-1],[15,2],[15,22],[15,29],[5,58],[4,51],[10,21],[13,14],[24,19],[53,50],[14,24],[10,13],[21,-21],[25,-42],[15,-31],[10,-34],[5,-29],[40,-24],[25,-35],[17,-27],[17,1],[16,7],[11,22],[19,0],[22,-3],[10,-8],[18,-50],[8,-7],[17,4],[31,17],[25,9],[23,-20],[43,-55],[-12,-39],[-9,-42],[-19,-30],[-15,-7],[-8,-42],[-4,-61],[4,-31],[11,-10],[12,-20],[5,-27],[2,-61],[-1,-68],[2,-23],[9,4],[9,9],[18,-11],[23,-18],[14,-18],[12,3],[10,-18],[4,-34],[12,-23],[32,-45],[26,-3],[22,-59],[23,19],[10,-25],[47,9],[33,24],[12,-6],[30,-49],[18,-30]],[[79615,56844],[-8,-1],[-6,12],[26,37],[-3,-25],[1,-12],[-10,-11]],[[79768,57832],[-23,-35],[-2,29],[20,19],[7,15],[6,0],[-8,-28]],[[79684,63833],[-3,-11],[-14,27],[-10,12],[8,37],[16,-40],[3,-25]],[[79889,64064],[-40,-72],[-15,1],[13,82],[7,19],[24,-28],[11,-2]],[[79866,63897],[-15,-15],[-19,2],[22,28],[12,35],[9,12],[-1,-30],[-8,-32]],[[79730,63794],[-11,-3],[-22,47],[11,25],[26,-18],[5,-11],[0,-10],[-6,-22],[-3,-8]],[[33105,57107],[-33,-19],[0,15],[9,27],[17,7],[7,10],[11,6],[6,-1],[7,-8],[-16,-15],[-8,-22]],[[32264,58254],[9,-75],[-3,-14],[-25,-51],[-21,-3],[-17,1],[-13,10],[-17,33],[-16,-10],[-40,12],[-11,11],[15,41],[28,16],[10,4],[8,-25],[20,-22],[23,-2],[6,38],[32,57],[12,-21]],[[31885,58125],[-15,-13],[-27,13],[-14,18],[9,21],[22,0],[21,-25],[4,-14]],[[33056,56951],[-17,-12],[-3,58],[5,15],[30,47],[8,8],[6,-9],[-2,-13],[14,-21],[-3,-26],[-16,-29],[-22,-18]],[[33328,56767],[52,-140],[1,-15],[-6,-18],[-32,-33],[-7,-17],[-12,-62],[-40,-35],[-28,-42],[-19,-38],[-10,-15],[-37,-9],[-12,-23],[-14,-72],[-11,-29],[-20,-35],[0,-22],[27,-78],[5,-24],[-9,-37],[1,-27],[14,-31],[17,-7],[16,13],[20,-1],[13,-9],[6,-9],[1,-24],[-9,-51],[-12,-34],[-53,-50],[-23,-30],[-13,-22],[-29,12],[-15,-1],[-11,-17],[-7,-14],[-19,-4],[-27,-8],[-11,-10],[-9,-25],[-7,-36],[6,-43],[8,-39],[0,-35],[6,-99],[-8,-23],[-18,-26],[-22,-46],[-24,-63],[4,-19],[58,-134],[59,-136],[59,-136]],[[33127,54839],[8,-6],[11,-16],[11,-47],[8,-50],[0,-26],[-6,-33],[-15,-38],[-17,-30],[-25,-26],[-21,-25],[-16,-64],[-11,-23],[-9,-9],[-18,-9],[-30,2],[-20,6],[-24,-49],[-31,-18],[-21,-65],[-74,-53],[-72,-40],[-20,-17],[-72,34],[-17,-10],[-20,-32],[-18,-24],[-15,-1],[-13,-13],[-8,-45],[-7,-154],[-26,-45],[-31,0],[-21,53],[-25,40],[-44,96],[-12,12],[-12,0],[-41,-28],[-19,12],[-16,15],[-26,-5],[-46,-1],[-30,-1],[-14,26],[-14,53],[-9,19],[-11,16],[-17,8],[-75,-1],[-14,0],[-11,11],[-14,45],[-16,22],[-18,1],[-8,-25],[32,-83],[9,-44],[28,-65],[81,-137],[15,-43],[-1,-55],[-1,-85],[3,-80],[21,-115],[29,-118],[8,-74],[-5,-55],[-6,-30],[1,-13],[6,-12],[28,-17],[59,-10],[35,0],[55,-13],[4,-41],[-6,-68],[-10,-39],[-9,-11],[-30,-9],[-31,-42],[-45,-41],[-26,-5],[-10,-8],[-9,-13],[-8,-15],[-9,-77],[-13,-88],[-25,-51],[-28,-43],[-28,-5],[-22,3],[-11,-12],[-16,-35],[-23,-44],[-18,-23],[-24,2],[-26,-22],[-32,-35],[-22,-29],[-18,-50],[-26,-52],[-27,-36],[-13,-45],[-18,-57],[-23,-2],[-2,34],[11,55],[-12,48],[-22,26],[-10,7],[-10,-3],[-26,-23],[-32,-43],[-20,-31],[-17,-14],[-37,-13],[-30,-6],[-13,9],[-23,31],[-53,98],[-71,133]],[[31423,52547],[-5,39],[3,39],[-13,58],[-8,61],[-6,21],[-2,45],[-16,83],[-12,67],[-12,35],[5,29],[-5,29],[-9,24],[-14,76],[5,33],[-4,33],[-12,23],[-16,24],[-22,51],[-27,48],[-13,20],[-9,7],[-8,46],[-6,14],[-14,4],[-27,19],[-26,-23],[-1,35],[8,22],[89,170],[44,78],[5,11],[4,18],[3,24],[-10,28],[-42,131],[-15,24],[-14,21],[-16,55],[-20,128],[-14,64],[-4,49],[1,56],[-6,43],[-11,30],[0,91],[11,153],[3,116],[-6,80],[11,60],[26,42],[14,64],[3,86],[16,72],[28,56],[10,55],[-9,54],[-3,35],[-24,35],[-44,25],[-37,3],[-22,-28],[-57,-25],[-91,-24],[-74,0],[-56,24],[-42,-8],[-29,-40],[-20,-9],[-12,22],[-13,6],[-20,-14],[-3,7],[-43,107],[-40,100],[-46,118],[-53,137],[-10,9],[-16,-1],[-22,-2],[-33,14],[-23,20],[-19,19],[-33,25],[-23,4],[-20,-7],[-56,-48],[-32,-5],[-25,-1],[-67,24],[-45,4],[-53,-16],[-22,-9],[-32,25],[-22,37],[-20,88],[-14,69],[-25,14],[-27,12],[-13,23],[-8,40],[-2,51],[2,84],[3,29],[4,90],[15,47],[9,23],[-1,38],[-8,77],[-7,55],[-30,62],[-39,79],[-17,128],[-20,150],[-15,15],[-15,-8],[-15,8],[-14,60],[-13,11],[-22,-21],[-16,-16],[-40,-15],[-8,15],[3,19],[17,54],[20,70],[23,64],[21,66],[16,70],[11,138],[7,96],[20,170],[36,136],[14,62],[33,82],[15,44],[20,35],[55,47],[65,234],[15,37],[67,35],[51,27],[37,28],[13,16],[10,7]],[[30189,58676],[-9,-28],[-18,-34],[-20,-21],[-106,-53],[-11,-11],[-13,-22],[0,-50],[2,-39],[32,-129],[12,-32],[41,-70],[-9,-10],[-16,-1],[12,-92],[25,-63],[1,-39],[-19,-123],[-36,-74],[-25,-86],[-20,-34],[-44,-168],[34,-101],[4,-50],[29,-73],[19,-23],[12,-30],[-6,-49],[12,-67],[15,-35],[18,-14],[23,0],[67,44],[15,20],[10,36],[34,73],[2,93],[7,113],[-8,73],[-35,104],[-15,75],[-35,69],[-21,118],[-9,37],[-6,51],[-8,91],[23,32],[-2,74],[57,21],[123,120],[77,31],[87,64],[20,32],[17,52],[14,7],[45,-50],[22,17],[9,39],[-12,75],[-26,0],[-78,-27],[-8,32],[0,29],[-18,89],[11,68],[12,55],[22,22],[33,24],[25,-37],[15,-35],[8,-33],[6,-92],[13,-93],[14,-64],[23,-49],[17,4],[12,8],[81,11],[50,-33],[63,-17],[59,-71],[60,-85],[15,-63],[6,-59],[14,-40],[-14,-41],[7,-69],[18,-69],[26,-44],[74,-12],[81,30],[125,27],[40,23],[206,12],[39,-33],[4,-33],[0,-26],[67,-124],[54,-16],[46,-40],[48,-22],[52,-30],[30,4],[22,11],[26,2],[184,207],[98,-6],[15,14],[13,18],[-36,32],[-82,12],[-25,-21],[-14,53],[27,-2],[91,18],[105,-11],[85,38],[43,6],[24,-8],[68,25],[128,-29],[101,24],[-12,-34],[-33,-21],[-53,-7],[-41,-50],[-87,9],[-61,-18],[19,-14],[0,-51],[9,-11],[8,0],[21,-38],[6,-25],[7,-53],[-10,-56],[-12,-26],[25,9],[14,26],[-2,27],[2,31],[14,-10],[9,-14],[32,-148],[22,-78],[6,3],[5,3],[7,15],[10,36],[9,-23],[5,-9],[5,-3],[-5,34],[6,42],[-2,15],[10,3],[12,-5],[17,-12],[30,-49],[20,-51],[1,-28],[8,-16],[12,-16],[7,-26],[1,41],[-8,30],[-2,34],[40,1],[10,45],[21,-27],[56,-123],[21,-21],[62,-24],[38,-59],[23,-53],[-14,-56],[-36,-28],[-14,-35],[-9,-34],[0,-35],[-11,-40],[-1,-14],[-7,-56],[-15,-68],[-19,-72],[-104,-2],[26,-29],[23,-22],[39,-57],[30,45],[44,3],[48,49],[18,8],[88,-26],[22,36],[17,11],[48,-7],[42,-39]],[[53455,75978],[-3,-1],[0,2],[0,3],[3,0],[0,-4]],[[96317,43302],[18,-191],[21,1],[11,10],[12,45],[5,70],[11,10],[14,-8],[-6,-22],[4,-56],[10,-31],[7,-6],[14,-146],[6,-31],[-1,-25],[-29,-54],[-44,1],[-30,-33],[-19,3],[0,37],[-17,29],[-19,63],[5,112],[-33,208],[-1,52],[12,68],[11,3],[15,-56],[23,-53]],[[96503,42571],[12,-13],[7,0],[4,-28],[40,-56],[11,2],[9,-31],[17,-15],[5,-31],[12,-32],[-21,-38],[-41,10],[-24,-44],[-21,11],[-4,23],[3,8],[-13,58],[-5,90],[-9,52],[-9,23],[-20,-20],[-8,-3],[-18,43],[9,87],[4,25],[15,5],[23,-23],[22,-103]],[[96790,42177],[8,-8],[-4,-24],[-39,27],[-30,-10],[-9,1],[-9,22],[-7,44],[3,30],[13,22],[5,3],[10,-26],[8,-18],[9,-8],[19,-43],[23,-12]],[[96748,42432],[-32,-6],[-44,18],[-18,25],[-8,25],[15,19],[23,9],[27,57],[10,-22],[10,-64],[11,-20],[6,-19],[0,-22]],[[96790,41738],[27,-82],[11,-7],[-17,-59],[-34,-5],[-41,15],[15,20],[-8,23],[-13,5],[-14,-11],[-6,4],[9,38],[23,53],[6,4],[6,1],[6,-5],[30,6]],[[96641,42951],[-19,-26],[-34,2],[-13,15],[42,80],[49,17],[-25,-88]],[[96725,42643],[-5,-1],[-4,27],[-16,141],[10,126],[7,-27],[23,-221],[-3,-36],[-12,-9]],[[96718,43013],[-5,-36],[-11,41],[-7,175],[3,16],[6,1],[14,-121],[0,-76]],[[96449,42785],[-5,-15],[-30,37],[7,36],[32,-12],[-4,-46]],[[96550,43628],[-11,-29],[-32,9],[-7,8],[2,48],[8,17],[19,15],[25,-24],[-4,-44]],[[96524,43832],[-4,-6],[-7,4],[-16,70],[4,23],[21,22],[18,-38],[2,-22],[0,-18],[-3,-16],[-13,-6],[-2,-13]],[[97192,40214],[-9,-31],[-15,0],[-20,22],[4,29],[22,5],[6,-2],[12,-23]],[[97080,40587],[-15,-63],[-25,15],[-24,45],[-12,40],[8,75],[12,14],[13,-5],[6,-74],[37,-47]],[[97036,40932],[-12,-27],[-12,3],[-72,64],[3,27],[-3,67],[8,37],[20,15],[15,-8],[10,-54],[22,-22],[-16,-18],[27,-41],[10,-43]],[[69707,76179],[9,11],[16,10],[26,-20],[23,-25],[5,-12],[-1,-13],[-55,-49],[-33,-23],[-15,-4],[-4,-7],[-11,-55],[-21,-10],[-27,-18],[-19,-25],[-30,-61],[-76,-89],[-1,-18],[7,-15],[24,-10],[33,-27],[18,-21],[48,27],[12,-6],[13,-28],[13,-80],[22,-21],[28,-17],[18,-5],[23,-20],[32,-7],[21,7],[26,-17],[4,7],[3,119],[22,-20],[13,1],[11,14],[6,20],[4,39],[-5,39],[10,18],[7,4],[6,-5],[3,-10],[1,-35],[16,-15],[10,-9],[9,-30],[9,-29],[6,-67],[22,-4],[26,-13],[17,13],[14,-8],[5,-32],[-1,-29],[2,-24],[7,-7],[23,15],[19,2],[18,-14],[22,-21],[32,-57],[10,-8],[48,-4],[10,-12],[17,0],[17,11],[40,-19],[1,-10],[-7,-14],[-94,-78],[-7,-24],[-19,-31],[-21,-17],[-10,-1],[-46,31],[-5,-7],[-4,-13],[0,-14],[10,-32],[-5,-21],[-8,-15],[-29,13],[-6,9],[0,9],[-11,0],[-17,-9],[-33,-57],[-12,-29],[-4,-18],[-15,-10],[-16,-4],[-20,-27],[-22,-20],[-7,15],[-5,17],[-6,5],[-13,-4],[-17,-1],[-17,19],[-23,20],[-20,6],[-58,-9],[-29,-9],[-9,-9]],[[69710,75022],[-16,-3],[-69,-19],[-14,7],[-10,31],[-9,33],[-18,12],[-20,9],[-7,13],[-1,16],[3,16],[1,8],[46,63],[42,57],[4,4],[3,11],[7,20],[0,10],[-31,23],[-1,10],[6,11],[0,14],[-22,41],[-38,65],[-11,6],[-8,-4],[-15,-62],[-7,-16],[-43,-41],[-37,-29],[-64,-50],[-17,-15],[-12,2],[-11,10],[-37,51],[-23,17],[-16,-17],[-13,-25],[1,-51],[-15,-27],[-15,-13],[27,-137],[-2,-18],[-21,-5],[15,-52],[-13,-6],[-32,12],[-44,8],[-84,-23],[-6,-9],[-2,-11],[5,-11],[40,-1],[40,6],[11,-10],[1,-17],[-4,-11],[-13,-2],[-29,-10],[-4,-11],[-1,-10],[10,-31],[11,-19],[2,-11],[-5,-10],[-6,-4],[-9,15],[-6,-3],[-2,-13],[-3,-15],[-7,-11],[-13,6],[-13,-5],[-8,-55],[-7,-62],[-22,-42],[-12,-15],[-18,-4],[-27,5],[-16,6],[-46,9],[-47,17],[-53,16],[-49,-37],[-14,-22],[-9,-21],[-9,-10],[-21,-129],[2,-14],[12,-12],[60,-26],[9,-11],[5,-13],[2,-58],[5,-8],[21,-7],[30,0],[23,6],[24,-5],[16,-13],[8,-20],[4,-21],[-28,-127],[3,-47],[8,-66],[16,-52],[30,-51],[23,-33],[5,-15],[1,-24],[-4,-31],[-13,-48],[-16,-42],[-17,-18],[-24,-54],[-22,-66],[-41,-86],[-13,-49],[-5,-139],[-11,-42]],[[68821,73255],[-1,16],[-15,16],[-26,-3],[-17,8],[-8,18],[-21,-5],[-34,-28],[-34,14],[-35,58],[-67,21],[-85,-13]],[[68478,73357],[-4,63],[1,81],[4,108],[28,84],[0,16],[-6,15],[-9,14],[-51,23],[-15,13],[-20,26],[-25,28],[-22,19],[-34,26],[-32,14],[-19,-11],[-17,-14],[-16,0],[-16,7],[-59,64],[-90,110],[-71,76],[-45,37],[-10,12],[-25,34],[-62,93],[-41,-14],[-58,61],[-53,59],[-11,15],[-60,109],[-60,71],[-65,77],[-42,48],[-71,82],[-34,49],[-12,18],[-12,35],[-18,170],[-22,78],[-30,43],[-26,82],[-22,121],[-17,79],[-14,36],[-29,40],[-43,44],[-41,21],[-15,-1],[-7,-5],[-9,-8],[-16,-33],[-24,-3],[-17,1],[-17,12],[-52,10],[-18,11],[-31,-1],[-67,-17],[-17,3],[-70,73],[-31,29],[-6,16],[0,28],[10,40],[9,28],[-4,30],[-13,32],[0,34],[9,19],[19,-6],[7,12],[-3,18],[-10,13],[-13,29],[-40,27],[-6,11],[2,12],[7,14],[1,28],[1,37],[5,19],[2,15],[-6,12],[-14,14],[-21,34],[-27,4],[-86,-1],[-27,13],[-22,19],[-21,73],[-11,17],[-11,7],[-24,2],[-29,7],[-15,13],[-41,66],[-39,59],[-16,-56],[-15,-11],[-34,5],[-26,10],[-15,-13],[-15,-22],[2,-15],[12,-15],[24,-28],[36,-70],[16,-38],[2,-13],[-3,-10],[-5,-5],[-7,0],[-9,1],[-6,11],[-2,20],[-12,30],[-12,17],[-14,11],[-19,8],[-25,14],[-13,1],[-12,-17],[-11,-22],[-6,-49],[-19,-60],[-11,-24],[-36,-14],[-84,-5],[-26,-19],[-17,-22],[-32,-74],[-22,-24],[-19,-33],[5,-108],[10,-126],[16,-35],[10,-11],[2,-12],[-7,-11],[-8,-14],[-13,-25],[-15,1],[-29,6],[-24,7],[-82,7],[-66,6],[-73,7]],[[65549,75646],[0,132],[0,132],[0,132],[-1,133],[0,132],[0,132],[0,132],[0,133],[0,132],[0,132],[0,132],[0,132],[0,133],[0,132],[0,132],[0,132],[35,17],[44,20],[42,20],[49,24],[57,27],[48,22],[57,27],[44,21],[41,20],[53,23],[82,36],[45,19],[46,21],[44,19],[30,7],[31,-27],[39,-38],[38,-38],[38,-38],[39,-38],[38,-38],[39,-38],[38,-38],[38,-38],[39,-37],[38,-38],[38,-38],[39,-38],[38,-38],[38,-38],[39,-38],[38,-38],[36,-35],[16,-26],[9,-58],[17,-46],[31,-49],[32,-51],[39,-68],[27,-46],[28,-48],[45,-78],[29,-49],[23,-2],[46,12],[61,15],[49,13],[59,15],[56,14],[44,11],[66,-9],[65,-8],[47,-6],[46,-6],[54,-7],[30,-4],[35,-4],[15,11],[30,25],[28,22],[30,24],[26,12],[27,-38],[22,-43],[24,-46],[28,-44],[27,-27],[36,-35],[20,-61],[28,-81],[18,-53],[19,-55],[27,22],[29,23],[27,21],[-4,-68],[-3,-61],[-4,-93],[-4,-77],[-9,-91],[-1,-69],[0,-61],[-1,-48],[51,-2],[38,-2],[47,-2],[5,-61],[6,-85],[10,-77],[8,-65],[12,-84],[6,-45],[12,-53],[11,-12],[18,-9],[62,6],[52,6],[41,4],[43,4],[58,6],[19,-13],[17,9],[19,9],[16,-38],[8,-19],[11,-21],[15,-18],[-7,-40],[-9,-57],[-3,-30],[18,-32],[14,-18],[36,-38],[34,-21],[23,-6],[21,8],[8,21],[-2,30],[-10,31],[1,37],[6,27],[22,49],[21,46],[32,47],[37,47],[16,34],[6,59],[25,34],[26,20],[33,18],[9,29],[46,50],[27,25],[35,15],[48,32],[37,39],[36,72],[29,47],[24,29],[21,1],[14,-23],[12,-2],[8,11],[14,30],[14,35],[14,15],[27,8],[24,23]],[[69625,75424],[-1,14],[-8,23],[-13,13],[-6,-5],[5,-19],[15,-28],[8,2]],[[69779,74822],[-14,-5],[-26,1],[-14,6],[9,46],[0,10],[-1,1],[-7,6],[-12,19],[-3,29],[4,26],[8,11],[5,-2],[16,-40],[14,-12],[27,-6],[-14,-40],[10,-42],[-2,-8]],[[69938,74855],[-7,-24],[-13,6],[-11,16],[4,13],[15,7],[8,7],[7,1],[-3,-26]],[[35174,32406],[-13,-21],[-15,-41],[-17,-97],[-58,-133],[-12,-76],[-62,-78],[-44,-89],[-29,2],[-26,-38],[-149,-115],[-54,22],[-39,-1],[-37,51],[-84,19],[-53,-21],[-71,-56],[-21,1],[-15,3],[-39,23],[-21,50],[-108,57],[-88,129],[-104,2],[-79,-17],[-12,18],[-8,33],[-17,48],[-68,114],[-54,113],[-10,111],[7,121],[16,144],[-2,44],[19,26],[20,5],[19,37],[17,56],[3,43],[-13,78],[-10,110],[-10,55]],[[33833,33138],[21,86],[1,42],[-12,37],[-4,38],[6,39],[-1,37],[-8,36],[6,30],[20,23],[15,36],[10,49],[5,37],[0,26],[-6,24],[-12,22],[5,46],[24,67],[15,60],[7,52],[0,43],[-8,32],[3,22],[15,11],[6,34],[-2,84],[-15,70],[11,55],[33,64],[18,52],[1,39],[10,22]],[[33997,34453],[16,-42],[47,-11],[47,-2],[7,11],[19,69],[24,20],[27,5],[29,-3],[31,-46],[87,-150],[64,-104],[20,-50],[17,-36],[12,-35],[-5,-89],[1,-39],[3,-11],[14,-1],[22,6],[18,19],[15,29],[14,23],[11,13],[4,19],[7,19],[6,4],[13,-14],[30,-51],[23,-47],[6,-27],[9,-28],[9,-25],[7,-23],[23,-32],[23,-19],[15,20],[39,-65],[85,-54],[16,-33],[15,-46],[30,-71],[41,-63],[34,-27],[32,-15],[18,-14],[12,-24],[20,-27],[12,-9],[4,-24],[13,-51],[13,-65],[14,-60],[31,-57],[36,-45],[36,-26],[21,-31],[9,-33],[-25,-48],[-27,-62],[-23,-48],[-25,-33],[-8,-23],[-5,-36],[0,-190],[-2,-70],[2,-19],[3,-13],[16,-18],[18,-16],[7,-3]],[[95272,54910],[3,-27],[-18,13],[-2,10],[10,10],[7,-6]],[[88372,57315],[-21,-47],[-1,16],[6,28],[9,32],[8,19],[11,6],[8,-27],[-9,-23],[-11,-4]],[[92123,56074],[-2,-7],[-17,3],[-2,4],[1,3],[8,4],[1,10],[-4,2],[4,6],[6,1],[4,-7],[2,-9],[-1,-10]],[[92188,56124],[-4,-3],[-3,3],[1,14],[2,5],[4,1],[8,-4],[1,-4],[-9,-12]],[[93975,55768],[-16,-13],[-20,5],[-6,47],[-10,13],[2,23],[15,19],[30,-15],[11,-34],[-7,-22],[1,-23]],[[97120,55201],[-6,-17],[-6,1],[6,13],[4,18],[6,51],[14,19],[10,21],[-3,-22],[-15,-23],[-10,-61]],[[96896,56053],[-4,-9],[-27,5],[-12,11],[1,9],[22,-8],[20,-8]],[[97659,55903],[11,-13],[20,1],[19,-32],[-7,2],[-10,14],[-10,6],[-12,-2],[-6,5],[-5,19]],[[97527,55955],[35,-30],[46,14],[-7,-9],[-17,-8],[-12,-8],[-8,0],[-9,3],[-29,21],[-17,27],[4,9],[14,-19]],[[96357,58267],[-7,-4],[-5,4],[4,8],[8,1],[3,-2],[-3,-7]],[[90474,62651],[-9,-22],[-7,16],[-2,31],[13,-3],[4,-6],[1,-16]],[[90475,61255],[-6,-4],[-9,2],[-6,9],[-2,15],[18,1],[7,-12],[-2,-11]],[[90350,59998],[-13,-27],[-10,6],[-6,9],[-2,15],[22,15],[10,-5],[-1,-13]],[[90493,62257],[-14,-13],[17,57],[5,10],[8,-21],[-16,-33]],[[90486,60560],[-1,-15],[-14,4],[-4,6],[8,52],[20,24],[10,5],[-9,-25],[-2,-27],[-8,-24]],[[90461,60466],[-12,-29],[-8,45],[-1,19],[10,17],[7,-1],[4,-51]],[[31987,62401],[-21,-5],[-28,27],[22,10],[15,-6],[12,-26]],[[32039,62415],[-19,-15],[-12,2],[-5,6],[10,18],[26,-11]],[[32009,62093],[24,-26],[28,0],[-30,-25],[-56,-3],[1,41],[33,13]],[[90205,59480],[-12,-1],[-10,20],[-3,13],[-1,66],[40,57],[13,55],[10,-5],[10,-9],[8,-16],[-44,-92],[-11,-88]],[[2576,43576],[-12,-5],[-14,27],[28,21],[8,11],[34,-6],[-20,-8],[-24,-40]],[[31630,62468],[9,-12],[8,2],[-6,23],[6,0],[53,-14],[34,-24],[35,-12],[3,-80],[-27,-32],[-18,-34],[-15,-41],[-38,-47],[-45,-15],[-31,-1],[-11,1],[-11,9],[-23,-8],[-29,21],[-24,-5],[-48,5],[-18,-19],[-18,-4],[-17,4],[-14,8],[-36,-1],[-15,16],[6,91],[1,41],[-9,35],[-10,21],[-7,25],[14,17],[12,24],[4,37],[12,9],[15,4],[69,-17],[173,-10],[10,-3],[6,-14]],[[31826,62272],[-22,-3],[-14,4],[-5,17],[27,16],[30,-2],[18,-10],[2,-6],[-36,-16]],[[31146,62246],[-2,-1],[-3,1],[-1,1],[-2,6],[-8,8],[-2,8],[2,9],[3,3],[16,1],[2,-1],[3,-6],[0,-4],[-1,-4],[-3,-10],[-1,-2],[-1,-3],[-1,-5],[-1,-1]],[[13126,84403],[-3,-8],[-36,1],[-12,7],[-5,24],[3,23],[8,18],[10,34],[8,56],[52,-63],[16,-28],[8,-35],[-18,-13],[-22,-6],[-9,-10]],[[13117,84243],[-15,-2],[-16,9],[-40,47],[-1,14],[6,15],[22,29],[10,7],[54,-3],[17,-8],[4,-13],[0,-14],[-6,-13],[-1,-15],[3,-15],[-7,-15],[-30,-23]],[[12691,85385],[-2,-15],[-38,2],[-38,21],[-19,27],[4,13],[35,11],[34,-26],[24,-33]],[[9689,86599],[-9,-14],[-24,5],[-13,9],[44,37],[7,-8],[-5,-29]],[[9843,86300],[-14,-3],[20,38],[27,41],[26,27],[32,11],[-3,-20],[-43,-35],[-45,-59]],[[8883,86442],[-15,-17],[-55,10],[12,35],[42,22],[46,-34],[-30,-16]],[[7772,86613],[-13,-2],[17,28],[13,56],[17,-8],[3,-10],[-28,-57],[-9,-7]],[[5464,83719],[-4,-45],[-38,29],[-10,14],[7,11],[36,2],[9,-11]],[[5733,83509],[-9,-3],[-8,6],[-10,33],[-1,13],[20,-10],[7,-24],[1,-15]],[[5690,83612],[-1,-46],[-4,-7],[-8,12],[-15,-13],[-9,10],[4,16],[-1,12],[11,1],[3,23],[-2,9],[6,21],[8,5],[8,-43]],[[3831,82789],[-4,-1],[-7,14],[-1,13],[5,9],[13,22],[9,8],[11,4],[3,-6],[-10,-26],[-12,-17],[-7,-20]],[[1109,81688],[-24,-12],[-31,25],[3,30],[34,-25],[18,-18]],[[3858,89992],[-10,-3],[0,9],[32,23],[58,29],[-2,-6],[-31,-23],[-47,-29]],[[2371,88502],[5,-14],[29,2],[40,-6],[45,-14],[45,5],[56,43],[33,11],[34,6],[37,-10],[35,-23],[14,-13],[11,-24],[7,-28],[11,-21],[67,-25],[42,-10],[10,-14],[9,-19],[36,-14],[37,5],[20,-5],[63,-1],[77,-21],[-12,-56],[-25,-24],[-72,7],[-71,-8],[-29,-28],[-25,-37],[-3,-35],[-14,-16],[-15,-7],[-12,19],[-17,60],[-11,16],[-12,11],[-35,19],[-35,12],[-21,1],[-15,21],[-8,30],[-14,15],[-28,22],[-29,17],[-89,38],[-29,5],[-30,-4],[-32,-17],[-31,-26],[-31,-19],[-33,-4],[-32,11],[-29,25],[-15,18],[-8,30],[1,30],[4,29],[16,71],[27,14],[51,-50]],[[3851,86626],[26,-29],[13,-1],[43,8],[16,-6],[15,-12],[9,-19],[2,-33],[-7,-30],[2,-41],[-1,-18],[22,-24],[8,-32],[3,-34],[-49,-12],[-49,-2],[-43,-23],[-9,-17],[7,-26],[-11,-6],[-11,5],[-21,24],[-22,11],[-79,18],[-100,69],[-42,14],[-44,50],[-39,64],[25,10],[26,5],[116,-9],[14,46],[15,11],[36,13],[35,25],[15,0],[16,-10],[32,15],[17,3],[14,-7]],[[7528,85151],[2,-31],[12,3],[42,33],[23,10],[29,1],[23,-15],[4,-11],[-2,-14],[-18,-27],[1,-18],[19,-33],[49,-18],[6,-10],[0,-12],[-34,-55],[-12,-12],[-9,-3],[-61,9],[-55,18],[-23,3],[-8,-5],[-15,-17],[11,-5],[49,-4],[17,-25],[7,-18],[4,-20],[-10,-8],[-20,-6],[-25,0],[-31,-22],[-17,-25],[-62,-7],[-47,-34],[-17,-17],[-6,-20],[-17,-15],[-41,-14],[24,-13],[4,-11],[1,-16],[-4,-13],[-31,-59],[-60,-48],[-15,2],[-7,6],[-5,9],[-1,9],[78,98],[-3,4],[-21,4],[-34,26],[-23,-17],[-5,1],[6,23],[15,27],[-3,8],[-8,7],[-19,4],[-31,1],[-22,-6],[-15,-15],[-1,-6],[31,2],[9,-7],[8,-14],[5,-16],[2,-17],[-7,-24],[-14,-30],[-22,5],[-44,67],[-20,97],[-38,75],[-2,18],[11,46],[38,65],[42,18],[29,27],[28,9],[18,-1],[24,-12],[10,-25],[-6,-12],[2,-6],[17,-15],[18,-52],[21,-47],[14,-19],[19,-12],[-19,36],[-12,44],[-5,88],[-6,23],[11,6],[30,-3],[-1,13],[-32,29],[-19,25],[-8,19],[1,17],[17,25],[10,7],[10,3],[21,-5],[9,-8],[26,-56],[12,-17],[10,0],[10,9],[9,18],[8,12],[10,3],[29,-8],[10,3],[4,14],[0,25],[7,9],[2,18],[-16,27],[18,9],[61,-21],[25,-23],[-13,-42]],[[13882,84036],[-14,-30],[-10,-32],[-7,-35],[-3,-37],[2,-40],[5,-35],[17,-65],[6,-39],[1,-27],[-38,-92],[-13,-45],[1,-19]],[[13829,83540],[-27,-47],[-50,-64],[-23,-37]],[[13729,83392],[-11,12],[-65,10],[-24,82],[-12,64],[-19,55],[0,13],[17,37],[65,31],[1,12],[-24,8],[-6,13],[-7,60],[2,53],[-2,35],[-10,72],[-17,43],[-41,86],[-4,21],[18,27],[12,25],[-71,-43],[-96,-46],[-42,-32],[-9,-13],[-3,-11],[8,-30],[-1,-10],[-9,-18],[-10,-51],[-21,-53],[-10,-11],[-38,20],[-10,17],[-19,70],[5,19],[13,15],[19,34],[24,52],[45,133],[29,1],[52,26],[-82,13],[-12,7],[-11,18],[-9,29],[-17,33],[-31,11],[-13,12],[-21,39],[-14,18],[-7,22],[-1,26],[-6,13],[-21,5],[-12,9],[-3,67],[-42,17],[-18,15],[-28,42],[-7,21],[-3,17],[7,46],[-3,9],[-25,-5],[-153,72],[8,95],[-28,125],[-31,51],[6,19],[7,11],[13,0],[59,-37],[56,-44],[7,7],[-89,92],[-22,28],[-5,33],[-1,18],[7,10],[84,-9],[4,7],[-84,27],[-17,0],[-18,-39],[-9,-9],[-18,2],[-6,6],[-22,47],[-20,33],[-38,45],[-7,33],[-2,47],[5,45],[31,103],[13,18],[3,11],[-10,-1],[-9,-10],[-25,-48],[-27,-78],[-21,-27],[-14,6],[-20,32],[-43,39],[-50,10],[-31,40],[-46,111],[-6,55],[-6,14],[-25,18],[-16,26],[-24,135],[-31,93],[-8,50],[3,49],[-4,5],[-11,-38],[-3,-20],[-20,-5],[19,-39],[5,-19],[-10,1],[-19,-5],[33,-66],[14,-102],[21,-76],[14,-62],[7,-47],[9,-44],[25,-99],[3,-20],[-3,-16],[-8,-19],[-14,-7],[-45,13],[-17,25],[-24,44],[-34,21],[-84,-10],[-6,3],[0,37],[10,65],[-8,26],[-44,96],[1,19],[60,44],[-29,3],[-24,-17],[-9,11],[-14,62],[-9,23],[-5,4],[-2,-58],[10,-31],[1,-17],[-1,-25],[-7,-18],[-11,-11],[-11,-2],[-20,12],[-23,23],[-19,11],[-8,10],[-9,25],[-15,20],[-74,24],[-44,30],[-3,-8],[13,-31],[2,-19],[-11,-5],[-20,-30],[6,-4],[21,10],[23,-1],[39,-19],[35,-23],[12,-13],[6,-20],[4,-7],[34,-23],[2,-12],[-22,-35],[45,3],[27,-12],[34,-56],[11,-30],[2,-40],[-7,-11],[-14,-8],[-92,-13],[-34,-48],[-7,-1],[-25,13],[-46,38],[-58,36],[-131,108],[-3,5],[-3,20],[-9,11],[-17,9],[-25,27],[-32,45],[-19,36],[-8,25],[-18,29],[-59,61],[-31,23],[-28,13],[-24,3],[-6,8],[11,13],[2,8],[-53,13],[-50,28],[-127,80],[-65,50],[-39,24],[-16,13],[-7,11],[9,12],[26,12],[17,13],[27,51],[2,16],[-14,37],[-7,33],[0,19],[4,18],[4,12],[11,12],[9,6],[10,-4],[32,-46],[4,-17],[-1,-63],[9,-73],[3,5],[3,24],[2,47],[4,22],[6,22],[12,12],[36,-7],[17,4],[-71,33],[-44,62],[-8,7],[-24,3],[-26,-26],[-66,-82],[-19,-14],[-83,-46],[-57,-9],[-63,7],[-54,15],[-136,72],[-21,17],[31,44],[2,14],[-11,45],[-9,13],[-13,8],[-4,-6],[0,-13],[3,-25],[-10,-13],[-23,-14],[-39,-15],[-120,37],[-124,30],[-110,7],[-156,-25],[-83,-24],[-48,-2],[-47,4],[-4,17],[21,10],[-1,12],[-27,39],[-40,23],[-55,8],[-32,11],[-8,14],[-19,14],[-31,13],[-13,23],[10,71],[11,43],[10,30],[27,48],[-9,-3],[-39,-36],[-33,-37],[-32,-48],[-18,-22],[-24,-20],[-37,5],[-50,30],[-43,15],[-36,1],[-15,5],[25,27],[14,22],[19,34],[5,17],[-132,5],[-5,19],[0,13],[-4,11],[-19,8],[-27,-6],[-43,-22],[-19,17],[7,9],[14,7],[28,31],[-38,16],[-20,18],[-10,16],[1,55],[10,35],[87,34],[-27,13],[-56,-5],[-37,-29],[-43,-41],[-30,-16],[-15,11],[-20,3],[-25,-3],[-16,-11],[-9,-18],[-10,-12],[-11,-6],[-8,2],[-12,18],[-25,12],[-12,14],[-7,-9],[-9,-27],[-9,-13],[-42,-14],[-23,2],[-28,34],[-4,12],[10,29],[61,115],[-6,-1],[-20,-18],[-39,-46],[-18,-14],[-30,-1],[-14,5],[-17,-4],[-20,-12],[-13,-14],[-6,-15],[4,-2],[30,17],[17,4],[5,-8],[-24,-52],[-14,-50],[-13,-12],[-22,2],[-24,-5],[0,-14],[44,-39],[16,-6],[20,-14],[3,-14],[-7,-38],[-6,-15],[-9,-8],[-36,1],[-12,-4],[-24,-24],[-12,-19],[4,-2],[21,16],[31,9],[39,1],[30,9],[20,16],[19,-4],[18,-26],[6,-22],[-8,-19],[-15,-13],[-23,-9],[-15,-12],[-6,-16],[-3,-24],[-1,-32],[6,-58],[-5,-7],[-8,-5],[-13,0],[-12,-14],[-27,-76],[-9,-9],[-12,8],[-10,0],[-9,-10],[-19,-8],[-30,-5],[-25,2],[-45,16],[-18,12],[-15,19],[-40,-20],[-11,9],[-25,53],[-5,-3],[-5,-58],[-8,-20],[-25,-41],[-13,-71],[-4,-3],[-5,11],[-15,63],[-8,14],[-23,-36],[-2,-14],[6,-47],[-6,-7],[-45,25],[-11,2],[-3,-5],[15,-37],[-1,-13],[-65,-71],[-17,3],[-10,7],[-12,-1],[-41,-27],[-11,1],[-15,16],[-7,-1],[-4,-16],[-1,-32],[-15,-30],[-49,-49],[-13,-23],[-9,-31],[-8,-3],[-28,20],[-33,13],[-5,-6],[10,-19],[-2,-12],[-14,-4],[-18,2],[-22,7],[-31,-8],[-40,-25],[-33,0],[-46,41],[-12,3],[-4,12],[9,33],[13,25],[9,12],[44,32],[50,12],[31,19],[39,40],[20,30],[40,77],[-3,6],[-9,4],[-88,-73],[-13,-7],[-17,1],[-70,28],[-14,12],[-11,35],[20,80],[13,39],[35,60],[44,64],[15,41],[24,110],[-2,51],[-10,61],[-1,36],[10,12],[102,56],[49,43],[94,62],[25,0],[19,-22],[22,-17],[25,-13],[32,1],[39,16],[62,-6],[128,-41],[27,-2],[1,5],[-19,29],[-89,17],[-37,16],[-104,74],[-24,28],[10,14],[26,11],[8,10],[4,19],[15,25],[25,32],[39,31],[75,46],[-29,2],[-54,-8],[-19,-9],[-36,-33],[-14,-23],[-20,-46],[-8,-8],[-37,-7],[-101,-4],[-17,23],[-9,4],[-13,-4],[-92,-59],[-34,-30],[-23,-35],[-37,-25],[-49,-16],[-37,-20],[-39,-40],[-14,-30],[0,-14],[9,-45],[-10,-9],[-22,-3],[-36,-30],[-76,-89],[-10,-32],[0,-11],[12,-25],[-8,-17],[-22,-25],[-48,-41],[-31,-16],[-20,-1],[-20,6],[-35,26],[-28,2],[-2,-4],[39,-28],[39,-36],[24,-30],[10,-24],[0,-25],[-9,-25],[-27,-44],[-27,-13],[-70,-13],[-22,-11],[-7,-8],[48,-18],[4,-10],[-6,-37],[-13,-12],[-40,-22],[-35,-6],[-6,4],[7,29],[-2,7],[-13,6],[-19,-11],[-47,-43],[-5,-7],[17,-11],[-4,-10],[-26,-30],[-10,-21],[-17,-20],[-76,-64],[5,-15],[-19,-56],[-11,-49],[13,-20],[64,-24],[31,-6],[37,-17],[66,-45],[22,-30],[3,-14],[-2,-15],[-8,-21],[-21,-38],[-50,-58],[-22,-16],[-34,-13],[-12,-10],[-43,-54],[-12,-30],[2,-26],[-9,-18],[-56,-35],[2,-6],[20,-3],[-7,-31],[-3,-43],[-10,-8],[-36,1],[-44,-17],[-3,-5],[-1,-31],[-118,-23],[-25,-59],[-14,-18],[-45,-43],[-29,-18],[-32,-10],[-17,-15],[-1,-18],[-9,-17],[-28,-26],[-14,-34],[-10,-5],[-51,-8],[-11,-11],[-5,-46],[-9,-1],[-19,11],[-24,-9],[-53,-51],[-12,-18],[1,-10],[8,-10],[13,-31],[-1,-20],[-20,-58],[-8,-9],[-25,-14],[-10,-32],[-23,4],[-19,-6],[-12,-21],[-14,-12],[-14,-4],[-18,-16],[-22,-31],[-20,-19],[-18,-9],[-18,-2],[-18,5],[-16,-4],[-14,-11],[-13,-18],[-11,-50],[-14,-22],[-9,-4],[-17,4],[-27,10],[-28,-4],[-44,-30],[-14,-23],[28,-5],[14,-7],[-1,-7],[-14,-6],[-25,1],[-14,-6],[-19,-13],[-45,-14],[-17,-10],[-34,-58],[-4,-13],[4,-3],[19,6],[23,-10],[11,-12],[8,-15],[7,-29],[4,-4],[-43,-49],[-12,-21],[-8,-8],[-5,6],[-6,55],[-3,9],[-10,1],[-10,-17],[-22,-65],[-23,-32],[-178,-83],[-26,-19],[-5,-35],[-7,-31],[-12,-24],[-14,-16],[-3,11],[1,86],[-3,18],[-18,11],[-8,-2],[-11,-5],[-18,-18],[-10,-5],[-14,1],[-23,-18],[-55,-59],[-36,-15],[-10,-12],[-15,-32],[-10,-12],[-15,-1],[-20,10],[-16,-7],[-12,-24],[-13,-9],[-35,17],[-15,-11],[-20,-31],[-21,-20],[-22,-9],[-56,-11],[-23,7],[-5,9],[1,38],[9,28],[9,13],[11,12],[17,1],[31,-8],[-4,9],[-11,11],[-29,19],[-28,10],[-16,-6],[-23,-15],[-15,-17],[-8,-19],[-10,-63],[-6,-17],[-67,-111],[-26,-34],[-25,2],[-13,-13],[-17,-27],[-17,-13],[-14,1],[-12,5],[-8,9],[1,9],[11,8],[-4,22],[-19,37],[-13,19],[-24,3],[-4,-17],[8,-84],[-1,-19],[-15,-24],[-41,-27],[-12,2],[-37,53],[-34,11],[-2,-17],[7,-36],[-8,-32],[-25,-31],[-19,-15],[-13,1],[-1,21],[12,42],[3,35],[-6,28],[1,22],[7,15],[45,41],[20,7],[10,-11],[13,-1],[15,6],[10,14],[4,19],[20,26],[35,31],[40,57],[46,83],[53,72],[62,60],[66,48],[134,66],[10,-4],[-12,-21],[8,-14],[13,-1],[49,10],[20,14],[6,-13],[-7,-17],[-30,-17],[1,-14],[43,-67],[13,-10],[12,1],[4,9],[-3,48],[14,9],[30,2],[19,-6],[9,-15],[17,-12],[25,-10],[15,3],[6,16],[-10,19],[-48,40],[-13,18],[-3,23],[7,31],[14,45],[24,60],[21,42],[42,47],[29,23],[72,72],[140,73],[34,47],[47,52],[20,13],[0,-20],[6,-18],[32,-12],[20,-4],[10,4],[2,19],[-4,34],[-1,33],[2,30],[4,24],[21,43],[31,49],[43,57],[27,26],[25,14],[24,25],[42,58],[14,10],[30,11],[11,-5],[7,-14],[8,-10],[30,-8],[21,13],[-4,7],[-16,5],[-11,8],[-10,35],[-20,21],[-5,24],[4,37],[17,87],[3,90],[16,51],[31,19],[69,13],[-40,23],[-16,0],[-26,11],[-10,56],[0,40],[18,47],[64,80],[71,55],[-10,4],[-8,17],[32,110],[32,98],[-43,-84],[-50,-64],[-145,-74],[-99,-63],[-47,-14],[-31,15],[-24,60],[-14,22],[-18,39],[8,50],[14,35],[31,6],[34,-17],[31,-1],[-39,34],[-56,30],[-26,-9],[-19,-49],[-26,-34],[-23,12],[-14,14],[10,-41],[-18,-63],[-6,-43],[25,-115],[-5,-45],[-45,-21],[-37,37],[-76,145],[-27,41],[-60,69],[-20,-10],[-25,-34],[-24,-9],[-65,50],[-30,37],[-28,46],[-44,-25],[-38,-30],[-44,-48],[-30,0],[-81,-41],[-9,-1],[-11,-22],[-11,-10],[-10,-43],[-109,-33],[-108,19],[38,23],[42,19],[37,44],[-16,60],[-3,30],[1,38],[40,54],[-42,0],[-27,-19],[-25,40],[-12,79],[29,47],[13,36],[12,50],[1,43],[-23,72],[-63,153],[-29,115],[-50,60],[37,100],[41,91],[54,40],[-4,6],[-30,0],[-19,-5],[-18,-30],[-18,-22],[-56,-116],[-37,-56],[-23,-16],[38,-22],[6,-19],[7,-41],[-10,-51],[-10,-28],[-45,2],[-40,-41],[-95,-44],[-128,-26],[-63,3],[-65,52],[0,30],[3,26],[-94,90],[-54,89],[-38,2],[-33,23],[-39,37],[3,30],[6,21],[-24,15],[-31,-2],[-36,11],[94,114],[32,77],[27,11],[34,-12],[47,-30],[40,-14],[14,-14],[15,-27],[-16,-45],[-14,-31],[17,8],[50,49],[37,43],[17,-4],[12,-8],[20,-44],[25,-45],[56,43],[30,53],[-25,24],[-31,13],[-79,19],[20,15],[50,-2],[19,15],[-20,20],[-25,18],[-68,-60],[-124,3],[-87,35],[-87,-6],[-13,7],[-17,19],[49,45],[34,25],[2,14],[-20,2],[-38,-12],[-17,21],[3,36],[-6,-4],[-15,-19],[-21,10],[-18,16],[9,17],[19,24],[-8,3],[-17,-5],[-16,-31],[3,-25],[0,-36],[-28,-7],[-24,5],[-17,36],[-17,78],[-48,20],[-12,39],[30,51],[-13,26],[-32,8],[-37,-25],[-17,22],[-3,25],[-1,36],[10,3],[9,-7],[74,20],[7,10],[-59,30],[-16,31],[24,18],[44,2],[61,19],[-25,33],[-6,18],[-5,31],[10,51],[72,117],[71,98],[22,22],[32,12],[30,-9],[31,-21],[6,9],[-11,9],[-13,40],[43,15],[26,45],[2,13],[-28,-18],[-29,-31],[-7,31],[-7,71],[12,68],[10,30],[24,29],[69,11],[13,-6],[2,14],[-41,42],[17,34],[15,17],[84,27],[45,-9],[58,-31],[33,-39],[-5,-20],[-8,-12],[-17,-13],[-7,-10],[3,-8],[25,24],[40,28],[23,-12],[17,-23],[20,1],[63,19],[32,20],[39,53],[51,34],[73,108],[21,44],[25,7],[23,-4],[15,-37],[23,-10],[130,9],[67,16],[46,35],[48,59],[28,40],[13,52],[-17,66],[-18,56],[-23,127],[-64,83],[-46,25],[-30,-3],[22,53],[61,-6],[40,11],[33,26],[10,19],[16,40],[-5,42],[-9,23],[-22,26],[-27,37],[-18,12],[-16,-1],[-78,-74],[-46,-2],[-35,14],[-30,-42],[-85,-37],[-45,-38],[-84,-93],[-21,-43],[-26,-2],[-19,82],[-91,79],[-28,-27],[15,-25],[21,-17],[34,-8],[-15,-23],[-11,-32],[-34,30],[-61,43],[-63,22],[-164,-3],[-108,-44],[-10,9],[-10,4],[-18,-11],[-8,-17],[-11,-12],[-22,-4],[-45,7],[-85,27],[-194,41],[-50,24],[-44,59],[1,40],[19,17],[-1,58],[-38,15],[-77,82],[-28,35],[6,4],[14,-9],[26,-7],[64,11],[22,53],[48,16],[44,-8],[-10,15],[-11,11],[-114,27],[-16,-8],[-205,48],[-162,84],[-13,16],[-15,36],[22,35],[22,17],[1,-20],[3,-19],[93,45],[48,58],[92,10],[22,16],[28,31],[41,54],[58,28],[39,25],[51,15],[44,-25],[13,-3],[80,-5],[26,11],[11,8],[8,12],[-78,45],[8,25],[10,18],[91,52],[70,17],[37,-1],[108,68],[59,19],[112,13],[92,3],[25,-24],[-49,5],[-22,-4],[15,-9],[18,-17],[-5,-22],[-31,-66],[3,-53],[-20,-17],[-19,-24],[94,-76],[146,-5],[79,14],[45,-23],[38,-5],[103,12],[78,-16],[33,6],[72,113],[28,18],[31,-20],[40,-16],[25,12],[21,-29],[-10,61],[-14,23],[-118,41],[-78,-20],[-25,23],[8,47],[-84,115],[-35,24],[-42,1],[-21,40],[-18,51],[36,21],[33,10],[30,-17],[33,-67],[32,-10],[-9,-68],[39,-62],[89,-57],[70,21],[50,-1],[30,-12],[74,-52],[37,-6],[116,27],[1,51],[-9,37],[-28,23],[-78,-5],[-62,38],[-52,-10],[-96,-58],[-48,23],[-30,31],[-49,31],[-6,60],[41,69],[30,32],[-27,24],[-68,17],[-119,-18],[-5,24],[0,25],[-48,-49],[-50,10],[-66,-5],[-148,43],[-52,54],[-22,43],[-40,119],[-50,75],[-351,252],[-159,64],[-77,70],[-48,17],[-46,8],[-59,22],[40,28],[27,10],[-28,-30],[21,-7],[35,17],[18,20],[27,85],[28,129],[-7,51],[194,-10],[129,8],[43,12],[163,20],[43,14],[78,43],[92,77],[80,101],[12,27],[5,-7],[7,5],[9,38],[10,90],[39,85],[168,193],[77,77],[26,35],[27,25],[19,-24],[9,-7],[5,-11],[-16,-6],[-26,-25],[-36,-16],[-9,-9],[22,2],[63,18],[36,22],[179,41],[97,66],[3,15],[144,84],[20,-4],[23,-10],[-40,-55],[28,-14],[-25,-66],[52,-1],[12,-30],[3,26],[-1,37],[4,37],[8,25],[36,-11],[83,27],[-100,4],[-60,59],[-33,1],[111,87],[102,53],[23,-1],[11,-10],[2,-16],[-22,-10],[-21,-19],[10,-16],[15,-3],[48,14],[22,17],[105,-2],[30,13],[8,12],[134,2],[25,9],[85,46],[78,57],[36,31],[61,79],[53,51],[87,51],[21,-6],[-28,-10],[-20,-22],[27,-29],[183,-59],[46,-4],[18,-35],[-15,-34],[-47,-38],[-95,-39],[29,-15],[19,-35],[28,-4],[46,13],[35,21],[74,70],[24,39],[17,9],[62,-9],[35,-20],[40,-35],[-15,-34],[-16,-20],[52,-26],[57,-6],[55,-21],[77,44],[60,9],[57,-2],[73,24],[125,-32],[31,8],[50,-5],[53,-20],[19,-21],[-57,-44],[-9,-46],[20,-19],[36,-4],[4,-27],[23,-6],[112,2],[-9,-13],[-5,-15],[-35,-34],[200,-20],[27,19],[41,8],[88,26],[33,-12],[39,-26],[36,-6],[34,6],[78,38],[91,2],[37,-13],[39,6],[118,-44],[44,-5],[58,-57],[30,-1],[34,24],[29,-1],[29,-23],[47,-7],[22,-37],[24,-13],[178,-27],[88,13],[129,-4],[62,-17],[65,2],[107,-63],[56,-9],[11,-15],[161,-15],[56,33],[98,8],[88,28],[50,0],[59,-7],[22,3],[16,12],[142,-47],[79,-55],[35,-40],[166,-57],[48,-32],[33,-36],[19,-3],[14,10],[58,-3],[22,-5]],[[10833,91964],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[66,-24],[66,-23],[20,46],[71,-35],[62,-32],[40,40],[43,44],[58,3],[65,3],[43,3],[0,-37],[-16,-62],[-14,-51],[40,-52],[48,-27],[46,-26],[20,-71],[50,-55],[37,-41],[36,-40],[52,-57],[37,-40],[48,-53],[29,-32],[13,-61],[17,-74],[-10,-44],[23,-7],[44,49],[42,30],[52,38],[35,25],[65,1],[31,74],[1,103],[32,-2],[20,14],[8,31],[-20,41],[62,19],[45,14],[65,39],[63,37],[30,-29],[29,-28],[59,-67],[4,-16],[-4,-32],[-6,-31],[35,-88],[11,-10],[29,-12],[35,-29],[15,-26],[50,-40],[9,-17],[4,-27],[9,-23],[9,-17],[9,-24],[22,-28],[41,-31],[29,-22],[40,-30],[41,-62],[36,-54],[40,-54],[-6,-42],[41,-66],[43,-84],[33,-74],[24,-41],[28,-60],[34,-74],[39,-83],[30,-54],[39,-75],[20,-45],[-13,-31],[-17,-38],[51,-18],[34,-12],[-8,-42],[-12,-56],[40,-22],[26,-15],[-5,-29],[15,-33],[2,-55],[48,4],[21,2],[29,-25],[38,-32],[38,-30],[32,-25],[42,-15],[53,-22],[25,-44],[48,-20],[18,-62],[55,-23],[33,16],[11,-26],[9,-29],[3,-37],[-3,-36]],[[4590,83513],[27,-95],[12,-18],[17,-10],[24,-11],[15,-14],[12,-21],[2,-10],[-76,38],[-48,-56],[-15,-7],[-136,-3],[-27,-10],[-18,-18],[-31,-52],[-16,-19],[-16,-12],[-36,-14],[-42,2],[-22,7],[-12,24],[-11,48],[0,14],[5,23],[38,31],[12,17],[49,109],[14,15],[16,4],[41,-8],[36,32],[77,48],[17,6],[55,1],[16,-8],[11,-13],[10,-20]],[[12971,83838],[6,-16],[0,-11],[-40,-38],[-1,-8],[-9,-23],[-9,-9],[-15,-26],[-28,-27],[4,83],[-28,48],[28,24],[19,-7],[31,-3],[30,22],[12,-9]],[[13517,83571],[28,-75],[2,-27],[-28,-9],[-21,4],[-11,8],[-3,13],[7,38],[-14,22],[-16,8],[-15,-14],[0,38],[11,27],[-7,36],[0,28],[4,9],[15,-1],[30,-29],[18,-76]],[[13302,84164],[-6,-96],[-11,5],[-10,1],[-22,-14],[-22,6],[-11,11],[-4,12],[4,28],[-12,16],[-42,6],[-16,7],[-9,30],[-2,39],[7,14],[21,11],[16,47],[10,7],[35,94],[17,-7],[31,-57],[39,-83],[-13,-77]],[[13617,83806],[-10,-63],[-19,-65],[-29,-35],[-21,8],[-15,28],[-14,-1],[-15,6],[-8,23],[8,30],[-7,23],[-8,-20],[-13,-19],[-33,-24],[-23,-47],[-11,-30],[-13,33],[-9,78],[-1,33],[24,50],[31,48],[6,142],[99,71],[9,-4],[32,-53],[35,-74],[8,-34],[1,-58],[-4,-46]],[[12954,84679],[18,-18],[10,19],[19,-1],[35,-17],[20,-25],[12,-29],[1,-17],[-3,-40],[2,-40],[-1,-20],[-5,-18],[-8,-13],[-8,-2],[-27,36],[-31,65],[-24,20],[-1,-7],[7,-18],[19,-35],[3,-21],[14,-26],[6,-19],[3,-26],[0,-22],[-4,-19],[-6,-12],[-9,-6],[-47,6],[-28,-13],[-33,7],[-8,11],[-5,19],[-2,46],[-9,66],[2,50],[-21,46],[-18,27],[-26,25],[-18,24],[5,20],[27,14],[44,-3],[95,-34]],[[13094,83464],[6,-8],[7,5],[12,21],[20,-4],[14,-7],[9,-8],[-5,-30],[-4,-49],[-8,-17],[-8,-24],[-28,14],[-23,31],[-33,53],[-19,38],[-1,16],[-12,12],[-22,66],[-13,52],[-21,6],[-26,15],[-10,29],[7,25],[37,12],[55,-64],[9,-28],[20,-32],[3,-44],[10,-18],[24,-62]],[[9335,86664],[6,-16],[53,4],[16,-3],[6,-7],[-7,-11],[-21,-14],[-60,-25],[-49,-33],[-6,3],[-9,36],[-9,15],[-6,20],[0,7],[9,14],[18,20],[13,8],[46,-18]],[[8962,86297],[-31,-8],[-7,17],[16,42],[13,24],[10,6],[35,48],[39,35],[36,51],[37,72],[6,27],[17,3],[28,-18],[17,-25],[-8,-20],[-92,-103],[-8,-13],[-8,-35],[-8,-13],[-12,-5],[-9,-15],[-5,-25],[-11,-14],[-18,-1],[-12,-7],[-6,-12],[-19,-11]],[[8984,86664],[0,-15],[-9,-14],[8,-27],[-14,-46],[-6,-29],[-8,-19],[-7,-7],[-8,4],[-2,11],[5,16],[-18,-1],[-6,40],[10,13],[4,17],[1,12],[12,51],[4,3],[2,-12],[3,-3],[7,5],[9,22],[4,3],[9,-24]],[[8908,86881],[-35,-5],[-16,7],[-3,8],[7,29],[0,12],[17,5],[21,-14],[6,-14],[3,-28]],[[7498,84749],[-35,-19],[-7,1],[-21,-38],[-17,-16],[-22,30],[5,46],[20,30],[97,-10],[7,-9],[1,-7],[-8,-6],[-20,-2]],[[7643,85532],[-9,-4],[-20,18],[-13,19],[9,14],[39,30],[19,0],[8,-4],[3,-10],[-2,-13],[-8,-18],[-26,-32]],[[7433,85166],[-8,-16],[-7,4],[-16,19],[-31,28],[-15,18],[-1,8],[11,9],[38,-22],[15,-20],[14,-28]],[[6787,83998],[-11,-19],[-21,2],[-12,6],[-3,16],[32,48],[7,6],[6,-2],[3,-20],[-1,-37]],[[7032,84352],[-19,-14],[-6,5],[-1,11],[5,18],[9,18],[29,34],[29,23],[15,-2],[6,-14],[-19,-30],[-48,-49]],[[7164,84397],[-13,-1],[-21,15],[3,18],[29,22],[29,-3],[3,-12],[-2,-14],[-2,-8],[-9,-8],[-17,-9]],[[5365,83706],[4,0],[9,4],[18,33],[6,1],[0,-10],[-8,-32],[14,-43],[13,-21],[-1,-7],[-34,-15],[-25,11],[-14,-4],[-12,-15],[-9,17],[-6,79],[2,14],[14,27],[18,13],[8,-4],[7,-11],[1,-11],[-5,-26]],[[4917,83436],[-6,-2],[-20,17],[-7,14],[-5,20],[39,30],[8,0],[8,-16],[1,-14],[-11,-37],[-7,-12]],[[4846,83180],[-24,-13],[-26,13],[-22,25],[-2,28],[49,-18],[10,-9],[15,-26]],[[5591,83599],[-17,-13],[-5,-16],[-13,-7],[-11,-13],[-37,-59],[-16,-11],[18,51],[3,16],[0,10],[-5,38],[10,-1],[9,8],[18,34],[16,3],[17,40],[9,3],[4,-6],[-7,-24],[16,-22],[-4,-22],[-5,-9]],[[3933,82989],[-11,-10],[-8,-2],[-7,6],[-28,-7],[-6,4],[-13,34],[-1,18],[5,14],[13,13],[21,11],[21,-2],[35,-32],[17,-18],[3,-12],[-12,-11],[-29,-6]],[[4011,83027],[-12,-4],[-3,6],[-2,25],[-9,40],[18,15],[11,3],[4,-6],[13,-30],[13,-8],[9,-6],[-16,-9],[-26,-26]],[[5300,85585],[-20,-9],[-22,5],[-17,57],[13,1],[28,38],[60,30],[15,4],[-57,-126]],[[2016,86668],[60,-38],[39,4],[30,-31],[13,-26],[-46,19],[-66,-2],[-90,77],[-32,18],[7,43],[35,22],[17,-58],[33,-28]],[[2733,84783],[-29,-28],[-26,10],[-7,20],[-1,9],[75,22],[-12,-33]],[[2863,82285],[-4,-24],[-4,-8],[-43,12],[-29,-4],[-3,14],[3,12],[45,18],[18,1],[12,-10],[5,-11]],[[2574,82131],[-18,-18],[-5,7],[-3,23],[10,17],[30,38],[21,-7],[6,-10],[0,-14],[-8,-19],[-10,-10],[-12,0],[-11,-7]],[[2093,81953],[-21,-8],[-22,9],[10,30],[11,16],[21,20],[24,-9],[19,-25],[-42,-33]],[[2846,84466],[36,-11],[21,7],[18,-6],[3,-13],[-31,-30],[-13,2],[-37,36],[3,15]],[[1031,81677],[-17,-34],[-13,15],[-5,47],[10,12],[27,-34],[-2,-6]],[[1105,81798],[-6,-17],[-28,18],[-9,15],[-2,15],[8,25],[22,0],[12,-10],[12,-19],[4,-12],[-13,-15]],[[792,81633],[-8,-7],[-15,-6],[-42,6],[-26,-2],[-28,-4],[-22,-10],[-4,14],[1,12],[92,32],[22,16],[13,21],[12,39],[10,12],[6,-1],[13,-15],[-5,-20],[-11,-18],[-4,-17],[-4,-52]],[[99603,81748],[-17,-10],[-10,25],[-1,15],[10,15],[17,-9],[10,-15],[-9,-21]],[[99847,81435],[-49,0],[-97,94],[-50,29],[-28,33],[13,7],[60,-23],[49,-51],[27,-33],[31,-28],[34,-12],[10,-16]],[[98255,82004],[-18,-2],[-11,20],[-60,8],[6,19],[26,8],[39,30],[33,-5],[-9,-28],[-6,-50]],[[12508,84879],[24,-63],[17,-49],[15,-59],[26,-122],[12,-46],[3,-26],[3,-66],[-4,-14],[-7,-13],[-2,-19],[7,-50],[1,-77],[-7,-43],[-8,-7],[-19,14],[-15,24],[-12,24],[-28,77],[-9,36],[0,25],[4,19],[9,12],[17,31],[-3,5],[-12,-7],[-25,-4],[-22,24],[-17,13],[3,45],[-4,12],[-34,-13],[-13,12],[-3,17],[1,25],[6,21],[32,55],[-3,11],[-15,2],[-21,19],[-9,61],[-22,35],[-14,-3],[-29,-99],[-15,-22],[-42,-14],[9,28],[4,25],[-15,74],[-1,29],[10,21],[30,9],[15,13],[13,20],[3,20],[23,53],[10,10],[29,0],[60,-59],[18,-8],[26,-38]],[[12589,85346],[70,-13],[52,3],[47,-86],[29,-70],[17,-49],[10,-47],[13,-45],[-1,-7],[-28,31],[-19,62],[-10,24],[-10,11],[-10,23],[-21,59],[0,17],[-9,16],[-11,6],[-12,-3],[-4,-5],[2,-41],[9,-46],[51,-99],[34,-57],[7,-18],[5,-52],[-15,-23],[18,-48],[-1,-9],[-4,-9],[-48,-21],[-45,-89],[-48,-52],[-23,-8],[-10,9],[-11,20],[-6,26],[-1,33],[12,21],[24,109],[0,35],[-30,50],[-18,40],[-9,57],[-17,149],[-7,48],[-11,39],[-14,32],[-10,35],[-8,38],[3,15],[24,-20],[29,-55],[15,-36]],[[12297,85393],[40,-56],[0,-13],[-8,-38],[-22,-11],[6,-15],[17,-12],[11,10],[42,54],[13,11],[8,1],[51,-16],[44,-26],[13,-20],[8,-36],[-12,-79],[-37,-13],[-17,1],[-18,12],[-30,-28],[25,-20],[75,-5],[23,-44],[6,-34],[-16,-62],[-43,17],[-37,36],[-77,51],[-19,3],[-12,-9],[-4,-31],[1,-68],[-20,-34],[-61,15],[-24,51],[-22,80],[-84,96],[-23,19],[-30,57],[12,45],[4,26],[16,7],[23,20],[14,44],[21,-36],[28,-34],[1,32],[13,26],[28,-1],[13,5],[18,24],[26,12],[16,-14]],[[12898,84296],[53,-12],[48,1],[17,-24],[10,-25],[7,-24],[1,-22],[-1,-15],[-6,-17],[2,-5],[94,-55],[44,-58],[18,-30],[10,-26],[19,-64],[39,-74],[21,-23],[11,-22],[-6,0],[-28,16],[-60,50],[-5,-2],[-5,-27],[-9,-24],[-14,-17],[11,-5],[48,11],[41,-49],[15,-8],[16,-35],[0,-14],[-9,-26],[-6,-10],[2,-7],[11,-4],[45,7],[8,-12],[-7,-101],[6,-37],[0,-17],[-5,-22],[0,-19],[4,-19],[1,-18],[-12,-45],[-12,-8],[-19,0],[-15,13],[-22,39],[-21,60],[-8,9],[-27,9],[-5,7],[-17,1],[-13,25],[2,33],[-11,33],[1,15],[-12,6],[-10,-9],[6,-33],[-6,-25],[-22,11],[-36,80],[-41,65],[-17,15],[5,19],[20,10],[17,-1],[3,11],[-34,63],[1,18],[12,31],[-15,13],[-43,-9],[-15,6],[-13,26],[-7,21],[-37,4],[-14,-2],[-24,33],[-12,21],[5,11],[22,18],[13,-2],[25,-20],[10,0],[25,27],[4,24],[18,20],[-3,21],[-10,35],[-23,10],[-46,-21],[-41,-32],[-16,12],[-3,20],[43,55],[19,30],[-4,17],[-14,23],[-1,58],[9,13]],[[12781,84587],[18,-40],[26,4],[14,-30],[11,-46],[-8,-29],[-11,7],[-13,-17],[-8,-56],[4,-55],[-4,-56],[-15,-57],[-3,-38],[-6,-11],[-7,-4],[-8,10],[-12,8],[-15,-32],[-19,0],[-15,73],[13,121],[31,25],[-18,32],[-39,39],[3,21],[-29,62],[-2,14],[5,52],[27,46],[37,8],[25,-20],[14,-17],[4,-14]],[[7662,85460],[10,-4],[10,34],[8,1],[33,-29],[20,6],[13,-35],[12,-4],[10,5],[7,-3],[-2,-38],[-24,-38],[-12,-9],[-15,9],[-6,4],[-10,17],[-8,21],[-5,1],[-18,-25],[0,-13],[8,-19],[-1,-11],[-20,-6],[-20,3],[-24,-16],[-5,10],[-4,29],[-7,-4],[-12,-35],[-12,-22],[-22,-18],[-5,-9],[-17,-1],[-24,-12],[-15,2],[-90,38],[-21,14],[74,87],[39,34],[22,-2],[22,-11],[12,2],[1,39],[-21,29],[1,12],[46,19],[18,-3],[19,-10],[18,-16],[17,-23]],[[3343,82571],[-85,-61],[-28,-45],[-21,-44],[-16,-24],[-12,-4],[-14,-11],[-28,-31],[-12,-3],[-90,-71],[-6,-1],[4,18],[28,26],[18,24],[20,40],[11,14],[4,20],[1,40],[5,15],[20,30],[14,17],[18,6],[38,-5],[16,15],[4,11],[-9,11],[-2,18],[2,32],[11,28],[19,25],[27,19],[33,13],[24,1],[44,-29],[7,-13],[-11,-29],[-6,-27],[-28,-25]],[[3718,82891],[12,-27],[21,17],[15,24],[12,31],[7,12],[11,-16],[29,-22],[-25,-34],[-47,-51],[-16,-34],[-1,-15],[46,12],[13,-2],[8,-12],[-13,-13],[-25,-13],[-21,-24],[-50,-42],[-19,-35],[-23,-14],[-30,-3],[-54,-23],[-32,-21],[-8,-12],[-11,-5],[-12,1],[-13,-10],[-14,-19],[-12,-9],[-19,-2],[-11,-8],[-11,0],[-31,23],[-8,14],[28,27],[20,9],[30,4],[29,25],[61,34],[19,18],[12,63],[14,11],[8,25],[33,-1],[16,-28],[5,-4],[3,3],[2,22],[17,16],[-10,12],[-31,15],[-23,6],[-15,0],[-13,8],[-9,17],[-5,17],[1,17],[8,19],[14,21],[17,12],[36,9],[32,14],[17,2],[13,-6],[3,-55]],[[1791,81875],[54,-23],[68,2],[25,-5],[0,-7],[-43,-10],[-15,4],[-38,-13],[-26,-3],[-58,13],[-46,-9],[-12,3],[-14,11],[-16,18],[-1,12],[15,4],[40,-15],[4,8],[34,14],[29,-4]],[[1478,81817],[-149,-24],[-22,16],[22,10],[27,5],[56,27],[69,23],[54,29],[47,18],[13,30],[-41,16],[-8,12],[19,14],[16,21],[39,25],[34,-31],[8,-20],[-4,-25],[-7,-25],[-30,-13],[-4,-13],[16,-38],[-62,-33],[-93,-24]],[[946,81720],[2,-20],[32,3],[10,-10],[0,-38],[-5,-11],[-4,-2],[-12,8],[-13,-19],[-59,-48],[-18,27],[-35,-42],[24,108],[28,16],[11,12],[-3,32],[13,52],[28,-2],[13,-22],[0,-14],[-12,-30]],[[589,81595],[-6,-19],[-7,0],[-37,32],[-5,11],[22,15],[6,11],[-3,16],[-16,21],[-30,27],[-11,20],[7,12],[14,7],[45,2],[25,-34],[18,-12],[43,-8],[-22,-14],[-13,-13],[-15,-53],[-15,-21]],[[99923,81742],[-23,-14],[-26,7],[-15,23],[2,27],[34,29],[43,-37],[-15,-35]],[[99281,81729],[-24,-24],[-19,24],[-3,12],[36,42],[28,9],[11,15],[12,53],[20,2],[10,-6],[-5,-25],[-16,-38],[0,-27],[-50,-37]],[[98002,82380],[48,-19],[33,9],[41,-30],[52,-53],[-12,-10],[-13,-5],[-12,0],[-40,-8],[-22,2],[-40,-36],[-45,26],[-15,51],[-35,12],[-28,18],[51,40],[37,3]],[[6783,62794],[-12,-27],[-16,2],[-55,59],[-7,32],[4,148],[-21,120],[-23,91],[17,47],[22,37],[25,69],[-21,88],[6,53],[11,9],[59,-65],[117,-97],[31,-68],[6,-74],[21,-9],[11,-50],[30,-44],[11,-26],[-13,-40],[-56,-78],[-72,-34],[-62,-87],[-13,-56]],[[6329,64063],[59,-15],[14,6],[10,-12],[48,-8],[9,-5],[-10,-30],[-31,-27],[-45,24],[-75,8],[3,23],[7,16],[1,29],[10,-9]],[[6531,63901],[8,-11],[29,16],[22,5],[35,-38],[13,-26],[23,-27],[8,-21],[-6,-24],[-26,-40],[-36,-10],[-20,-17],[-28,4],[-8,7],[-3,51],[-9,55],[-17,-7],[-20,19],[-21,46],[-2,27],[11,44],[20,5],[15,-24],[12,-34]],[[6167,64202],[9,-3],[13,4],[4,-46],[14,-25],[5,-15],[-15,-16],[-30,-7],[-14,13],[-15,29],[-15,-8],[-3,23],[-3,6],[-11,-6],[10,-30],[-27,-2],[-9,4],[-7,34],[-28,64],[0,25],[-10,31],[42,8],[28,53],[16,5],[31,-85],[0,-24],[6,-23],[9,-9]],[[5730,64476],[-25,-32],[-14,14],[-27,5],[-10,25],[-29,22],[-11,30],[17,56],[41,48],[63,-2],[14,-38],[1,-28],[-8,-31],[-4,-45],[-8,-24]],[[5505,64424],[-5,-26],[-10,4],[-2,23],[6,31],[16,27],[18,41],[14,-6],[-8,-27],[-1,-29],[-20,-16],[-8,-22]],[[6431,63808],[-17,-16],[-18,8],[-4,39],[-17,50],[30,10],[17,-14],[9,-16],[11,-27],[-11,-34]],[[29247,77766],[13,0],[65,1],[115,0],[116,0],[115,0],[116,1],[116,0],[115,0],[116,1],[27,111],[26,51],[34,-17],[19,2],[21,26],[17,17],[11,-3],[9,-24],[8,-17],[9,5],[8,23],[0,32],[10,22],[13,4],[12,-1],[6,11],[-1,16],[-4,25],[1,30],[30,53],[36,36],[12,18],[4,37],[21,38],[10,22],[2,19],[-5,24],[1,44],[7,54],[8,58],[19,52],[32,57],[8,75],[8,80],[38,77],[43,87],[24,50],[44,91],[31,64],[16,30],[17,35],[26,-10],[27,-11],[-4,-51],[5,-37],[12,-21],[18,-15],[14,-5],[17,0],[44,29],[52,19],[29,17],[5,17],[13,6],[21,-5],[39,-41],[45,-62],[35,-49],[2,-85],[0,-89],[1,-95],[1,-68],[0,-92],[1,-74],[1,-96],[1,-52],[5,-15],[-3,-20],[-2,-10],[1,-8],[2,-10],[-1,-15],[-4,-12],[-3,-15],[0,-25],[5,-15],[8,-8],[7,0],[8,-9],[12,-16],[17,-13],[18,-5],[12,3],[15,-8],[6,-22],[-3,-20],[-9,-10],[-9,-7],[-2,-16],[5,-16],[7,-14],[7,-25],[-3,-22],[-7,-18],[-3,-19],[6,-16],[15,-22],[9,-21],[14,-11],[7,8],[5,11],[6,8],[10,-5],[12,-6],[13,-7]],[[31354,77862],[-2,-18],[8,-29],[6,-57],[-9,-26],[2,-34],[26,-10],[6,-10],[1,-13],[-57,-88],[-48,13],[-26,-24],[-27,-6],[-12,-40],[-15,-8],[-20,3],[-18,11],[-13,-6],[-19,-70],[-16,6],[-6,-26],[-8,-11],[-12,-9],[-10,31],[-7,30],[-9,6],[-13,8],[-13,0],[-9,-5],[-11,-19],[-16,-16],[-12,13],[-9,23],[-8,-36],[-12,-38],[2,-44],[-5,-26],[-11,7],[-11,23],[-31,18],[-25,-1],[5,24],[24,35],[-8,7],[-11,-5],[-5,5],[8,32],[1,35],[-10,-12],[-14,-37],[-31,-30],[1,-49],[-30,-102],[-1,-43],[-19,-34],[-25,-30],[-33,9],[-25,-26],[-13,-29],[-11,-5],[-5,38],[-5,11],[-9,-55],[-9,-4],[-4,40],[-4,26],[-13,-23],[-9,-59],[-9,5],[-2,22],[-7,7],[-2,-25],[3,-36],[-5,-19],[-8,10],[-9,17],[-15,-13],[-14,-5],[0,17],[3,22],[-27,-12],[-32,-39],[-26,-55],[9,-9],[10,-17],[-44,-84],[-44,-76],[-34,-123],[-14,-15],[-11,-22],[-13,-75],[-14,-66],[8,-30],[5,-30],[13,-30],[11,-3],[11,5],[9,-1],[5,-13],[-2,-15],[-13,-4],[-26,-26],[-22,-11],[-11,-32],[-16,-37],[-32,-58],[13,-18],[50,-20],[22,-21],[34,-109],[-8,-10],[-3,-20],[30,-28],[9,-78],[25,-27],[36,-16],[45,24],[37,32],[-1,27],[-24,61],[-5,29],[-18,19],[-6,-16],[-11,21],[-2,12],[11,5],[12,-2],[14,-11],[36,-67],[10,-89],[3,-56],[-4,-19],[-11,4],[-20,-4],[-96,-29],[-21,-25],[-49,-28],[-3,14],[3,28],[-3,59],[-10,3],[-75,-96],[-30,-6],[-24,-28],[-6,16],[-4,71],[15,61],[-8,-1],[-26,-36],[-11,22],[-5,24],[-8,14],[-9,5],[7,-53],[-17,-40],[-5,-104],[-22,-43],[-68,-27],[-45,6],[-40,-9],[-53,-20],[-29,12],[-30,-21],[-103,-6],[-21,11],[-28,-39],[-44,-24],[-111,-88],[-25,-33],[-29,-50],[-21,-27],[-16,-9],[-10,-22],[-11,-15],[10,50],[12,43],[10,82],[-3,66],[-12,28],[-12,18],[14,-66],[2,-80],[-5,-47],[-27,-91],[-12,-21],[-13,-19],[-10,-8],[-10,-15],[-11,-23],[-10,-45],[6,-42],[53,-15],[15,13],[7,-30],[4,-42],[-4,-45],[-9,-45],[-7,-57],[-5,-86],[-9,-78],[-1,24],[5,94],[-9,-10],[-6,-22],[-16,-121],[-22,-65],[-21,-45],[-21,7],[5,-36],[-6,-18],[-5,-39],[-13,-26],[-12,3],[-17,-18],[-6,-13],[-1,-26],[-11,-23],[-42,-119],[-35,-35],[-9,5],[10,56],[6,57],[-22,24],[-21,13],[-23,-1],[-27,44],[-34,32],[-47,86],[1,24],[-1,41],[14,63],[14,45],[19,23],[56,23],[14,36],[8,30],[-28,-52],[-41,-17],[-22,-19],[-18,-29],[-10,-37],[-24,-44],[2,-29],[4,-21],[-2,-44],[15,-43],[30,-70],[5,-109],[23,-72],[35,-85],[27,-24],[1,-32],[-12,-52],[-17,-24],[22,5],[10,-12],[10,-43],[0,-44],[-4,-25],[-6,-10],[0,25],[-5,9],[-7,-11],[-5,-13],[-2,-49],[-5,-25],[-18,-7],[-19,-66],[-17,-37],[-67,-249],[2,-42],[-12,-14],[-19,-11],[-19,-25],[-12,-27],[-12,-74],[-22,-84],[-14,35],[-4,30],[7,77],[24,128],[26,79],[21,37],[16,76],[-21,12],[-32,-1],[6,35],[9,31],[-16,31],[-10,4],[-10,12],[12,26],[5,27],[-3,34],[5,25],[-9,-4],[-13,-27],[-8,-10],[-5,23],[-6,-5],[-4,-16],[-9,-9],[-18,22],[-26,25],[-15,43],[-8,34],[8,61],[18,10],[24,-9],[31,0],[-4,13],[-11,-2],[-33,49],[-11,30],[-18,8],[-8,-29],[-9,-7],[11,62],[15,3],[22,17],[-6,36],[-14,16],[-25,-20],[0,26],[5,32],[19,0],[16,-10],[14,52],[1,24],[-24,-34],[-5,73],[23,72],[22,31],[27,-1],[28,5],[-17,13],[-18,7],[13,28],[12,5],[11,24],[-27,-3],[3,46],[-13,-9],[-16,-5],[-6,-19],[1,-33],[-4,-21],[-13,-18],[-20,-13],[-2,23],[-7,11],[-3,-50],[-5,-17],[-15,47],[-5,-10],[1,-13],[-4,-23],[-13,-12],[1,-29],[-5,-16],[-42,25],[-1,-8],[24,-56],[17,-18],[2,-30],[-15,-25],[-20,21],[-4,-1],[11,-37],[7,-33],[-7,-27],[1,-33],[-1,-30],[-5,-26],[10,-121],[12,-33],[12,-32],[6,-29],[-12,-5],[-20,25],[-17,18],[-21,59],[-4,24],[-5,19],[3,-43],[7,-48],[65,-107],[12,-42],[9,-32],[-2,-31],[-17,22],[-15,28],[-38,32],[-49,19],[-28,74],[1,-31],[-7,-26],[-16,32],[-11,27],[-4,29],[-20,-2],[-22,-25],[-22,6],[-2,50],[5,27],[24,62],[23,33],[10,41],[-4,64],[-4,-65],[-13,-33],[-20,-24],[-27,-44],[-6,-41],[-8,-77],[11,-25],[11,-7],[34,17],[18,-8],[39,-91],[72,-37],[27,-23],[22,-48],[32,-27],[25,-40],[1,-27],[-9,-30],[-3,-42],[-11,-27],[-26,-3],[-15,7],[-84,147],[-10,14],[-31,77],[-36,41],[-11,-1],[52,-76],[21,-53],[37,-75],[26,-32],[20,-50],[18,-23],[50,-33],[-18,-24],[28,-20],[4,-37],[-3,-42],[-38,16],[-1,-31],[3,-18],[-16,-15],[-24,20],[-61,113],[1,-15],[5,-18],[35,-72],[31,-44],[27,-20],[21,-36],[7,-22],[5,-34],[-15,-22],[-18,-13],[-17,23],[-12,24],[-27,40],[-8,46],[-20,-3],[-84,58],[-68,7],[7,-12],[8,-8],[54,-14],[22,-26],[44,-24],[26,-6],[11,-73],[35,-49],[5,-37],[25,-4],[43,36],[28,-13],[40,-10],[9,-30],[7,-55],[14,-63],[37,-246],[55,-202],[7,-34],[-13,30],[-41,134],[-23,96],[-23,170],[-7,38],[-8,16],[-5,-13],[-2,-21],[4,-17],[-9,-56],[4,-26],[14,-26],[17,-67],[13,-89],[-18,36],[-19,19],[-29,15],[-25,26],[1,-37],[-2,-40],[-20,12],[-14,13],[12,-42],[-26,13],[-17,-3],[-11,-38],[-15,-23],[-23,-7],[-33,34],[-11,42],[-4,47],[-2,-55],[6,-58],[-2,-43],[32,-9],[30,8],[40,-2],[26,8],[16,14],[38,-12],[3,-53],[-4,-52],[-3,-56],[11,0],[12,18],[6,100],[35,37],[12,-3],[11,-32],[4,-32],[4,-45],[-9,-68],[-53,-80],[-38,-74],[-20,-15],[-28,8],[-32,19],[-15,4],[-12,-6],[-8,22],[-4,42],[-13,14],[-9,-2],[-7,-44],[-29,-13],[-41,19],[-42,37],[18,-40],[105,-74],[12,-14],[11,-20],[-15,-32],[-11,-36],[-2,-28],[-4,-18],[-42,-48],[-23,9],[-58,86],[27,-75],[21,-31],[43,-17],[80,28],[26,-31],[-22,-54],[-21,-37],[-28,-5],[-25,-10],[-7,-26],[-18,-2],[-27,-1],[-43,-2],[-23,6],[-33,-54],[-12,-7],[-18,10],[-7,43],[-8,21],[0,-80],[3,-22],[6,-16],[-38,-43],[-37,-54],[-13,-15],[-15,-27],[-30,-78],[-8,-57],[-11,-64],[-1,29],[2,48],[-8,55],[-5,-101],[-12,-47],[-109,3],[-47,-25],[-74,-86],[-22,-38],[-60,-145],[-16,-94],[-12,40],[3,29],[0,24],[-15,-51],[15,-76],[-13,-28],[-40,-54],[-22,-8],[-25,-16],[-8,-52],[-33,-49],[-19,-22],[-36,13],[11,-46],[-13,-36],[-23,-27],[-28,-18],[-16,2],[-13,-9],[-11,-23],[-26,-21],[-28,12],[-30,7],[-18,-12],[29,-21],[16,-31],[-3,-41],[-8,-15],[-18,-22],[-8,3],[-5,20],[-6,40],[-9,-9],[-1,-18],[-8,-7],[-25,64],[1,-49],[9,-37],[9,-19],[8,-12],[3,-17],[-18,-42],[-9,-10],[-16,-7],[-10,-26],[3,-22],[-14,-49],[-34,-30],[-10,1],[-9,-9],[5,-22],[9,-16],[-1,-14],[-9,-20],[-17,-6],[-10,-23],[3,-21],[6,-12],[-1,-21],[-21,-20],[-4,-21],[10,-6],[7,6],[6,-4],[-12,-34],[-11,-21],[-10,-37],[-24,-11],[1,-12],[13,-11],[12,-28],[-22,-53],[-13,4],[-8,12],[-5,-42],[2,-22],[-5,-46],[-8,-55],[-6,-22],[1,-42],[4,-41],[13,-52],[20,-214],[13,-74],[24,-200],[41,-194],[57,-235],[93,-284],[11,-40],[-12,-35],[-4,-35],[-1,-54],[3,-52],[11,-64],[22,-98],[-12,20],[-31,140],[-4,82],[5,117],[-7,-3],[-6,-38],[-3,-44],[-8,-18],[-11,68],[1,31],[11,36],[-3,13],[-18,18],[-4,29],[2,29],[-10,15],[-8,-1],[5,-70],[9,-43],[11,-104],[17,-63],[10,-52],[118,-561],[28,-72],[10,-51],[11,-107],[2,-138],[-19,-252],[-5,-171],[-2,5],[-2,18],[-5,2],[-16,-78],[-23,-71],[-8,-110],[-10,-56],[-33,-58],[-20,1],[-50,-43],[-35,11],[-42,-25],[-27,3],[-16,52],[3,23],[6,24],[11,5],[36,-54],[7,23],[-11,27],[-21,15],[-16,17],[-31,125],[-33,85],[-6,57],[-56,35],[-41,53],[-27,94],[-15,166],[-18,19],[-8,13],[18,62],[19,51],[-15,-13],[-11,-19],[-14,-45],[-10,-7],[-9,7],[-11,87],[3,108],[15,40],[-23,2],[-23,-16],[3,-36],[-3,-20],[-18,6],[-13,12],[-17,38],[-25,71],[-49,197],[-10,27],[-17,29],[8,9],[14,6],[32,88],[25,54],[9,37],[-2,16],[-11,23],[-14,-20],[-7,5],[-16,47],[-16,13],[-11,-10],[12,-38],[10,-14],[-4,-56],[-4,-18],[-10,-16],[-15,9],[-7,-14],[-9,15],[-9,24],[-10,40],[26,225],[24,144],[3,163],[2,24],[-2,44],[-33,94],[-145,231],[-112,273],[-97,103],[-74,-23],[-12,-21],[-6,-26],[5,-31],[-7,-13],[-20,2],[-26,-7],[-70,-72],[-25,3],[-22,-19],[-17,-14],[-43,-8],[-37,-15],[-16,8],[-10,42],[0,43],[8,-33],[13,-26],[6,10],[2,23],[-13,45],[-41,58],[-48,84],[14,-3],[4,18],[-15,24],[7,27],[10,29],[-20,-4],[-18,-21],[-1,-24],[-3,-20],[-10,3],[-18,24],[-89,68],[-77,39],[59,17],[32,-14],[-3,21],[-8,13],[-26,17],[-32,-7],[-21,8],[-21,-16],[-22,-25],[-21,-12],[-80,-18],[-65,-19],[11,20],[11,13],[38,20],[6,41],[-9,39],[-10,-9],[-11,-31],[-13,22],[-14,0],[-4,-49],[-19,-33],[-8,-33],[-54,-26],[-7,9],[16,31],[-1,18],[-19,-15],[-30,-60],[-106,-19],[5,13],[23,3],[32,19],[-7,32],[-12,34],[-11,4],[-8,21],[1,64],[-7,38],[-18,39],[-6,-8],[-12,-66],[-11,-87],[-5,-28],[-32,-2],[-28,6],[-95,-11],[-35,30],[-15,6],[-9,-1],[-41,-27],[-48,-21],[-11,7],[-16,1],[-34,-71],[-40,-33],[-102,60],[-25,47],[-22,10],[-28,6],[-29,-58],[-23,-79],[36,-44],[30,-21],[50,18],[28,38],[23,-1],[11,8],[10,20],[19,-16],[1,-16],[-14,-22],[-17,-19],[-11,-22],[20,-45],[31,-15],[12,7],[7,50],[19,32],[26,-7],[-3,-20],[3,-19],[12,-33],[-1,-47],[2,-11],[-28,-20],[-21,-8],[-17,-27],[9,-15],[-17,-14],[-11,6],[-6,-6],[-2,-16],[-9,-16],[13,-46],[26,-30],[19,-38],[74,-50],[18,1],[18,-50],[14,-18],[14,-8],[-1,-35],[-25,-25],[-7,-31],[-6,-17],[-11,22],[-11,15],[-26,-47],[-13,-10],[6,51],[-10,20],[-15,52],[-21,31],[-16,11],[-12,20],[-14,8],[-13,-2],[-21,12],[-1,27],[-6,20],[-16,25],[-78,45],[-1,-19],[6,-14],[11,-9],[13,-19],[0,-54],[-6,-23],[-2,-33],[-5,-34],[-10,-26],[-21,-18],[-10,15],[-15,72],[-22,23],[-34,2],[-23,-16],[-25,-70],[-21,-11],[-70,36],[-80,55],[2,18],[13,6],[24,-7],[-1,19],[-25,61],[-4,28],[3,34],[-8,-1],[-15,-28],[-51,24],[-14,28],[-30,81],[-42,3],[-19,49],[-35,-20],[-17,-23],[-15,-35],[6,-19],[15,-29],[-7,-14],[-49,-21],[-114,24],[-34,21],[-44,46],[-62,37],[-30,6],[-29,-7],[-86,-4],[-19,-10],[-17,-16],[-11,18],[-5,31],[10,5],[11,19],[10,36],[1,22],[-7,15],[-13,1],[-29,-95],[16,-53],[-1,-19],[-58,-11],[-132,-107],[-51,-58],[2,19],[62,75],[-21,12],[-36,-19],[-13,7],[15,62],[-4,55],[-26,1],[-16,-43],[-11,1],[-14,19],[-11,-6],[8,-98],[16,-41],[13,-52],[-36,-64],[-34,-53],[-3,-51],[-34,-66],[-32,-38],[-74,-88],[-22,-19],[-33,-42],[-47,-30],[-44,-49],[-15,-8],[28,42],[34,41],[-29,-6],[-44,19],[-28,1],[0,-15],[-21,-21],[-21,31],[-9,21],[-5,18],[-9,4],[-9,-8],[32,-127],[14,-5],[15,-13],[-19,-29],[-20,-23],[-32,-15],[-27,47],[-6,-59],[-3,-58],[-9,-14],[-15,-22],[-7,16],[-4,23],[-9,-20],[-14,-15],[-22,-3],[-17,-8],[0,-24],[4,-24],[30,19],[-11,-62],[-27,-62],[-23,-14],[-34,9],[-8,-6],[-8,-13],[40,-96],[-25,-145],[-17,-52],[-11,-7],[-12,-2],[-44,47],[-24,36],[21,-98],[58,-29],[3,-37],[-1,-31],[-11,-38],[-11,-49],[8,-35],[9,-85],[8,-39],[8,-119],[10,-51],[52,-189],[18,-2],[2,-20],[-1,-40]],[[23015,66797],[-38,-11],[-16,-18],[-3,-15],[-2,-8],[-5,1],[-18,11],[-41,53],[-59,34],[-78,13],[-54,27],[-28,41],[-30,24],[-32,8],[-26,22],[-20,37],[-30,23],[-39,10],[-26,28],[-18,68],[0,1],[-16,112],[-20,71],[-39,88],[-4,11],[0,15],[4,51],[-4,36],[-12,30],[-3,32],[7,33],[0,40],[-6,46],[-25,51],[-44,54],[-37,79],[-31,104],[-31,72],[-30,40],[-21,49],[-11,58],[-4,34],[5,9],[-19,64],[-42,120],[-24,87],[-6,55],[-27,66],[-47,76],[-25,49],[-7,35],[-73,100],[-21,62],[-17,20],[-19,-2],[-10,6],[-1,14],[-6,1],[-12,-13],[-39,-3],[-66,8],[-48,17],[-29,27],[-21,-4],[-12,-34],[-25,-21],[-38,-10],[-33,-62],[-28,-116],[-12,-74],[3,-33],[-7,-24],[-18,-15],[-19,-33],[-18,-52],[-22,-25],[-25,1],[-46,40],[-67,79],[-52,48],[-38,19],[-34,36],[-29,54],[-27,36],[-24,18],[-29,60],[-33,102],[-16,78],[0,83],[-43,181],[-23,78],[-17,36],[-33,43],[-49,50],[-67,100],[-83,150],[-58,90],[-35,30],[-30,54],[-25,78],[-25,49],[-2,2],[-3,1],[-61,1],[-61,1],[-61,0],[-61,1],[-61,1],[-61,0],[-61,1],[-61,1],[0,-65],[0,-65],[-1,-65],[0,-64],[-98,-1],[-98,0],[-98,-1],[-98,0],[-99,0],[-98,-1],[-98,0],[-98,0],[-132,85],[-132,85],[-131,85],[-132,86],[-132,85],[-132,85],[-131,85],[-132,86],[13,32],[18,87],[-32,-6],[-79,-13],[-80,-12],[-79,-12],[-80,-13],[-79,-12],[-80,-12],[-79,-13],[-80,-12]],[[17464,70583],[0,4],[-2,63],[-13,22],[-17,-14],[-7,82],[4,39],[-2,38],[-16,92],[-41,113],[-89,140],[-46,47],[-35,59],[-23,16],[-28,5],[-9,-27],[-32,18],[5,66],[-32,92],[-25,10],[-65,-6],[-87,50],[-25,30],[-9,54],[-41,47],[-53,46],[-30,-11],[-39,7],[-55,33],[-33,4],[-63,-9],[-23,7],[-22,41],[-24,21],[5,51],[-3,47],[4,36],[-11,79],[9,73],[-8,26],[-13,21],[-42,30],[-7,37],[7,52],[-11,35],[-35,32],[-32,73],[-40,39],[-17,67],[-25,42],[-8,36],[-56,131],[-59,102],[-9,58],[-2,81],[23,49],[12,43],[-1,39],[-4,29],[-20,51],[-79,30],[-64,124],[-4,96],[-25,98],[0,63],[-4,69],[19,15],[17,-6],[-1,-27],[5,-49],[20,-37],[19,-16],[18,-36],[13,-11],[13,-3],[-7,23],[-8,15],[-9,48],[-18,61],[-20,33],[-11,61],[-9,15],[-5,22],[20,27],[27,19],[36,6],[103,-9],[21,15],[19,-5],[13,2],[-28,16],[-16,-5],[-18,3],[-37,-3],[-15,7],[-16,19],[-11,2],[-34,-33],[-15,4],[-36,36],[-15,5],[-25,-20],[-4,-90],[8,-66],[-15,-7],[-17,27],[-27,17],[-22,25],[-32,46],[-16,17],[-18,-39],[-1,18],[9,45],[-3,75],[28,-60],[-8,42],[-22,47],[-17,16],[-20,83],[-47,50],[-38,80],[-77,134],[-5,117],[-28,148],[12,85],[-1,59],[-14,91],[-15,49],[-62,135],[-60,90],[-9,69],[-4,69],[13,62],[12,64],[8,17],[3,-7],[-2,-13],[8,-5],[3,29],[6,15],[-9,2],[1,9],[5,18],[18,85],[-1,107],[19,131],[-1,44],[-12,93],[-13,56],[-23,40],[10,58],[0,55],[-40,80],[-15,104],[-3,45],[4,116],[-11,50],[-27,82],[12,72],[12,43],[30,190],[7,15],[13,0],[22,32],[-10,8],[-16,-16],[14,75],[15,64],[10,24],[5,209],[9,160],[14,53],[-5,55],[6,74],[-4,74],[31,359],[-4,43],[9,59],[-9,153],[4,171],[-8,22],[-4,24],[8,3],[14,-25],[66,0],[42,24],[16,-8],[17,-31],[23,-7],[28,6],[-9,8],[-13,2],[-29,29],[-17,28],[-51,-1],[-11,18],[-58,-18],[-17,19],[-32,-13],[8,54],[-2,68],[2,66],[8,-48],[19,-52],[10,59],[6,72],[-19,29],[-32,20],[-11,68],[75,58],[-40,12],[-15,26],[-20,4],[-1,-20],[-6,-27],[-7,35],[-2,41],[-8,70],[-31,113],[-18,147],[-23,72],[-45,69],[-12,40],[-11,103],[7,77],[-9,54],[22,-3],[56,-42],[71,-34],[21,-24],[34,-19],[189,-28],[13,3],[24,17],[11,-2],[27,-40],[14,-4],[18,2],[14,7],[23,28],[3,-11],[-1,-25],[8,-36],[17,-47],[7,-29],[-34,-82],[-7,-2],[-1,28],[-4,5],[-64,-139],[-22,-66],[-2,-29],[0,-18],[9,-4],[21,7],[30,27],[1,6],[-28,-10],[-13,0],[1,31],[4,14],[18,47],[19,27],[28,30],[16,24],[11,35],[30,43],[6,11],[-2,35],[2,7],[15,-5],[6,-60],[-4,-27],[-26,-32],[-3,-12],[5,-44],[-5,-4],[-10,5],[-3,-3],[25,-48],[8,-38],[1,-33],[-7,-65],[-7,-10],[-12,3],[-17,21],[-3,-7],[-13,-50],[-5,4],[-8,60],[-4,4],[-25,-27],[-11,-26],[-8,-41],[-11,-20],[31,-4],[28,8],[23,-19],[8,-1],[21,19],[6,14],[17,62],[9,11],[13,1],[12,9],[19,34],[0,14],[-6,77],[2,43],[-4,14],[-8,14],[1,14],[6,23],[1,21],[-6,18],[3,21],[17,45],[3,20],[22,45],[-6,18],[-15,22],[-10,19],[-10,30],[-8,10],[-2,-4],[11,-50],[-3,-3],[-27,27],[-7,16],[-3,23],[2,17],[15,17],[18,6],[-2,15],[-22,46],[-15,21],[-11,10],[-15,3],[-7,7],[-2,11],[3,15],[9,4],[23,-6],[13,11],[-1,18],[-4,10],[1,66],[-9,53],[-5,9],[-5,1],[-6,-7],[-14,-2],[-10,18],[-10,34],[-18,80]],[[15892,80064],[28,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[66,0],[1,121],[1,96],[60,-11],[18,-18],[5,-8],[-1,-27],[5,-80],[10,-67],[26,-80],[0,-1],[2,-31],[8,-20],[15,-18],[58,-22],[99,-26],[57,-30],[13,-33],[27,-14],[40,7],[28,14],[23,32],[34,7],[28,-2],[29,-4],[15,-4],[45,-26],[29,-20],[41,-39],[23,-17],[11,-40],[13,-51],[18,0],[14,30],[35,5],[47,-21],[41,-60],[58,-53],[36,-27],[36,0],[47,27],[49,51],[35,9],[21,-5],[12,-40],[15,-15],[38,4],[80,-8],[63,11],[15,-23],[13,-36],[25,-11],[35,11],[63,-9],[26,-2],[51,14],[24,16],[34,26],[46,36],[79,62],[65,23],[61,-45],[48,-39],[18,-16],[49,-40],[70,-57],[79,-65],[80,-65],[69,-57],[49,-40],[19,-16],[54,-46],[54,-46],[54,-46],[53,-46],[54,-46],[54,-46],[54,-46],[54,-46],[14,-77],[13,-75],[31,-54],[29,-49],[17,2],[17,21],[11,10],[18,2],[40,18],[12,-4],[7,-9],[0,-14],[-1,-11],[-6,-23],[9,-42],[2,-47],[6,-36],[16,-46],[15,-36],[18,-7],[41,21],[26,8],[15,-3],[25,-34],[13,-20],[3,-17],[-34,-102],[54,-51],[60,-55],[73,-66],[44,-41],[58,-58],[10,-82],[8,-70],[11,-96],[11,-99],[11,-99],[11,-104],[13,-115],[11,-102],[12,-111],[17,-145],[-15,-56],[-32,-121],[-28,-110],[-3,-32],[-20,-160],[-16,-66],[-27,-38],[-28,-38],[-34,-62],[-38,-31],[-19,-18],[-10,-28],[-11,-63],[2,-96],[31,-82],[45,-46],[49,-45],[70,0],[63,60],[66,63],[59,57],[71,67],[64,61],[69,22],[96,30],[121,38],[59,43],[76,57],[87,64],[76,56],[38,31],[27,36],[7,26],[-2,15],[-7,15],[-9,11],[-9,9],[-4,12],[-1,26],[-5,14],[-5,11],[2,99],[-7,31],[-24,78],[47,35],[43,32],[35,24],[73,4],[67,-1],[94,0],[78,-1],[92,0],[53,-1],[71,1],[34,90],[31,81],[34,76],[60,91],[17,16],[10,35],[36,34],[40,31],[16,30],[7,17],[109,158],[62,73],[50,41],[39,19],[26,-2],[15,2]],[[29858,75452],[-20,-37],[18,-4],[16,11],[14,22],[34,30],[29,13],[9,3],[13,-21],[28,17],[28,9],[-121,-96],[-25,-11],[-36,-28],[-33,-21],[-24,-7],[-120,-71],[-10,-2],[-10,7],[-99,-36],[-40,-5],[-37,-12],[27,29],[1,11],[-7,9],[-14,-3],[-15,-30],[-24,-10],[-5,33],[8,26],[11,24],[24,38],[34,24],[17,21],[12,-18],[2,25],[10,14],[10,8],[24,0],[12,4],[10,8],[9,2],[27,-12],[25,4],[21,15],[22,5],[56,4],[57,11],[23,21],[47,56],[28,16],[-43,-66],[-23,-30]],[[31059,77380],[-16,-11],[-18,4],[0,-30],[-2,-11],[-19,16],[-8,10],[1,40],[17,38],[14,15],[17,-10],[13,-43],[1,-18]],[[29392,75185],[-13,-2],[13,55],[24,25],[9,-5],[0,-19],[-3,-17],[-16,-26],[-14,-11]],[[30414,75677],[-77,-28],[-12,18],[19,8],[24,43],[16,5],[25,-24],[5,-22]],[[30210,75743],[-13,-15],[-16,2],[8,22],[3,31],[8,34],[4,11],[9,9],[-3,-94]],[[30561,75613],[-21,-9],[-49,21],[40,18],[7,6],[5,27],[1,13],[15,-57],[2,-19]],[[28990,72497],[-4,-12],[-19,64],[19,-21],[4,-17],[0,-14]],[[29015,72142],[-37,-16],[-3,6],[42,32],[14,116],[2,53],[-7,95],[1,19],[6,-30],[7,-88],[-3,-67],[-12,-97],[-10,-23]],[[28949,72113],[-50,-41],[-6,3],[33,29],[23,9]],[[28749,71798],[-7,-6],[25,72],[50,91],[14,14],[-42,-78],[-40,-93]],[[27212,67081],[-10,-15],[-20,11],[-11,20],[-5,38],[17,-41],[7,-9],[22,-4]],[[27199,67138],[-1,-34],[-14,57],[-9,62],[13,-20],[11,-65]],[[27671,66325],[-55,-108],[6,27],[22,58],[7,28],[14,17],[14,31],[1,37],[20,25],[6,4],[-35,-119]],[[24502,68836],[-11,-8],[-46,50],[-3,21],[23,20],[14,-2],[22,-25],[8,-8],[3,-10],[-2,-16],[-8,-22]],[[23051,67915],[-6,-1],[14,47],[2,19],[22,59],[12,9],[5,-25],[-23,-42],[-26,-66]],[[23121,68060],[-10,-3],[12,31],[21,16],[45,60],[18,4],[10,20],[4,3],[-3,-25],[-36,-36],[-61,-70]],[[22957,67568],[-9,-33],[3,50],[22,112],[46,147],[20,25],[-53,-162],[-29,-139]],[[23600,68632],[-14,-6],[61,89],[12,29],[16,-1],[-27,-50],[-48,-61]],[[23008,66911],[-4,-26],[-23,125],[-37,282],[-2,161],[6,56],[10,-228],[41,-289],[9,-81]],[[16581,71442],[-14,-1],[-23,6],[8,13],[12,10],[4,-7],[13,-21]],[[16823,70977],[-13,-1],[-17,5],[-8,31],[13,2],[13,-4],[10,-24],[2,-9]],[[17125,70753],[-16,-6],[-18,12],[-16,56],[-17,43],[9,13],[14,-42],[35,-64],[9,-12]],[[16654,71381],[-19,-8],[-15,8],[-23,55],[50,7],[21,-24],[3,-7],[-17,-31]],[[16699,71474],[57,-30],[30,14],[6,-14],[-4,-12],[-69,-23],[-21,16],[-2,21],[-7,21],[10,7]],[[17125,71074],[14,-42],[-20,5],[-21,-3],[-6,24],[-7,32],[-4,8],[-14,3],[-1,3],[-2,15],[4,8],[45,-36],[12,-17]],[[15894,79880],[3,-13],[-11,-12],[-8,-2],[-12,20],[-6,2],[5,-30],[-2,-10],[-26,18],[-5,15],[8,16],[16,16],[6,2],[32,-22]],[[15830,79781],[7,-19],[-30,12],[-13,11],[-3,11],[-5,34],[2,12],[13,4],[25,-43],[4,-22]],[[15952,79583],[13,-76],[6,31],[38,-54],[0,-27],[-4,-9],[-8,-3],[-8,8],[-6,19],[-9,10],[-18,6],[-9,21],[-4,15],[0,42],[-5,14],[-10,2],[-9,11],[-14,29],[-2,8],[7,24],[15,41],[11,19],[7,-2],[9,-13],[10,-22],[-2,-15],[-41,-31],[-2,-7],[21,-9],[7,-7],[7,-25]],[[30176,75740],[-8,-11],[-3,28],[6,32],[5,0],[3,-17],[-3,-32]],[[29407,74700],[-32,-87],[-1,17],[41,108],[-8,-38]],[[29074,73668],[-13,-10],[43,116],[24,96],[11,34],[-10,-68],[-19,-62],[-36,-106]],[[28737,71805],[-6,-1],[-11,6],[-15,12],[-4,9],[15,-3],[21,-23]],[[27407,66042],[-9,-12],[-4,4],[0,17],[-11,39],[0,10],[27,-38],[1,-10],[-4,-10]],[[27547,66130],[-5,0],[2,9],[11,16],[4,-6],[0,-9],[-12,-10]],[[27600,66188],[-7,-3],[11,25],[3,-2],[-7,-20]],[[27487,66080],[-12,-13],[-13,10],[14,13],[43,15],[-16,-18],[-16,-7]],[[27383,69683],[-12,-140],[-5,50],[-1,48],[9,28],[9,14]],[[27342,66013],[-18,-6],[15,23],[5,34],[8,-26],[0,-17],[-10,-8]],[[27726,67556],[4,-42],[-25,98],[-32,154],[-17,120],[12,-33],[11,-66],[47,-231]],[[27282,65981],[-7,-1],[-1,9],[12,11],[9,-1],[-1,-12],[-12,-6]],[[25308,68958],[-15,-30],[1,12],[11,30],[8,11],[-5,-23]],[[25400,69248],[-3,-6],[-25,12],[-15,11],[-2,11],[41,-20],[4,-8]],[[25535,69269],[-24,-12],[-36,1],[-8,4],[15,8],[43,11],[10,-12]],[[25215,69172],[1,-27],[-13,14],[-20,1],[8,9],[7,9],[3,10],[25,33],[-7,-25],[-4,-24]],[[25325,69013],[-7,-18],[7,87],[-11,74],[12,-32],[4,-39],[-5,-72]],[[26414,68918],[-28,-21],[-30,15],[19,3],[13,-6],[35,30],[18,22],[21,9],[-48,-52]],[[15874,79034],[-3,-11],[-4,1],[-8,23],[-1,16],[7,12],[10,-34],[-1,-7]],[[16001,79144],[-1,-13],[-10,-10],[-6,2],[0,16],[-3,2],[-12,-18],[1,36],[6,39],[5,1],[7,-26],[13,-29]],[[15973,79259],[-2,-11],[-15,13],[-5,12],[1,27],[3,18],[3,4],[9,-8],[3,-4],[3,-51]],[[15883,79741],[-4,-6],[-15,8],[-9,13],[-3,16],[6,30],[7,8],[5,-2],[2,-27],[13,-28],[-2,-12]],[[30938,77301],[-11,-11],[-11,3],[0,29],[3,9],[4,5],[6,-8],[9,-27]],[[42704,18182],[1,-33],[-43,30],[-10,14],[14,19],[27,0],[7,-11],[4,-19]],[[39693,20699],[27,-28],[22,19],[22,-2],[12,-10],[12,-3],[16,-1],[27,-47],[-11,-41],[29,8],[26,-35],[12,3],[5,14],[17,16],[11,-22],[14,-41],[18,-12],[15,-44],[12,-55],[11,-8],[19,-1],[20,8],[-8,-48],[3,-42],[32,-30],[-19,-17],[-20,-24],[-41,-19],[-11,8],[-35,42],[-17,50],[-37,71],[-8,21],[-9,13],[-34,9],[-30,17],[-24,36],[-8,22],[-10,15],[-33,-1],[-21,17],[-21,23],[-94,67],[-37,-7],[-17,19],[0,33],[20,20],[-82,8],[-29,12],[20,7],[114,1],[43,6],[3,-15],[38,-29],[36,-3]],[[70136,47593],[-6,-23],[-12,-10],[-5,58],[-17,41],[7,0],[15,-21],[6,-56],[5,17],[-1,17],[3,16],[-2,18],[-9,28],[3,5],[13,-23],[2,-19],[-2,-48]],[[48418,42627],[-25,-3],[2,27],[19,29],[13,-4],[0,-33],[-9,-16]],[[46009,47249],[-9,-1],[-3,5],[-2,14],[5,22],[4,13],[7,-2],[8,-15],[8,-13],[-4,-12],[-14,-11]],[[14364,37789],[-3,-9],[-6,8],[-6,16],[-2,18],[6,10],[7,-6],[4,-18],[0,-19]],[[32499,62339],[-44,-29],[2,17],[35,40],[13,-3],[-6,-25]],[[33652,22309],[43,-33],[53,11],[22,-9],[13,-28],[-7,-26],[-17,4],[-15,-7],[3,-35],[10,-14],[56,-38],[10,-2],[-1,15],[-10,26],[-4,28],[9,24],[14,7],[64,11],[15,-11],[32,-66],[-30,-9],[-12,-28],[26,-12],[20,-19],[-11,-28],[-2,-14],[-46,-19],[-40,-13],[-19,-33],[-33,-24],[-96,-41],[11,-34],[1,-16],[-4,-44],[-133,52],[-18,-5],[36,-90],[-26,-16],[-26,10],[-24,-7],[-15,-65],[-38,42],[-32,58],[-1,33],[32,62],[-10,26],[73,83],[13,25],[23,14],[23,5],[10,11],[-1,20],[-10,35],[1,57],[58,77],[-8,49],[18,1]],[[33253,22199],[41,-11],[37,40],[25,13],[21,-9],[15,-24],[21,4],[61,25],[8,-9],[21,29],[19,-13],[14,-25],[-7,-30],[-17,-19],[-10,-26],[-13,-21],[-21,-19],[-16,-31],[-40,-73],[-57,-94],[-19,-8],[-40,-6],[-17,7],[-14,-2],[-12,-51],[-18,-38],[-9,-8],[-19,-4],[-8,-5],[-7,-14],[-50,3],[-35,24],[-41,52],[55,64],[48,-3],[39,43],[32,21],[13,22],[14,17],[0,22],[-11,10],[-14,-1],[-14,-10],[-34,-12],[-23,25],[15,10],[17,-1],[52,24],[10,10],[-16,33],[-31,21],[-26,34],[-4,13],[1,20],[-14,41],[15,2],[19,-26],[44,-36]],[[33050,22012],[20,-8],[20,3],[-11,-59],[-9,-28],[-24,2],[-23,39],[-8,20],[26,15],[9,16]],[[33767,21882],[1,-50],[-22,16],[-8,24],[12,17],[11,-1],[6,-6]],[[33302,22237],[-38,0],[-8,19],[1,47],[28,4],[29,-20],[-2,-20],[-10,-30]],[[33421,21755],[-18,-11],[-5,5],[-5,22],[-1,28],[-2,12],[12,-4],[20,-22],[-1,-30]],[[27397,62988],[9,-11],[11,7],[4,12],[42,-9],[7,-24],[-33,-1],[-14,-15],[-8,-3],[-28,4],[-4,55],[8,6],[6,-21]],[[27783,63195],[-2,-3],[-9,2],[-21,-23],[-8,1],[2,9],[4,7],[5,6],[5,2],[14,5],[7,1],[4,-6],[-1,-1]],[[27827,63197],[-13,-8],[-10,3],[22,24],[6,8],[5,4],[5,0],[7,-5],[0,-3],[-22,-23]],[[32019,70445],[-25,-20],[-7,2],[-5,7],[26,19],[21,46],[7,-3],[-17,-51]],[[32112,62479],[-7,-4],[-5,1],[-1,8],[5,23],[28,2],[-20,-30]],[[32057,62443],[-22,-2],[-6,7],[12,18],[23,2],[6,-4],[-13,-21]],[[32142,62638],[4,-19],[-3,0],[-15,13],[-13,1],[-5,4],[-2,7],[24,1],[10,-7]],[[30094,64380],[-1,-8],[-16,23],[-30,0],[-5,30],[12,5],[38,-11],[9,-26],[-7,-13]],[[30033,64424],[-5,-7],[-16,20],[-2,16],[-6,1],[-10,14],[3,19],[22,1],[9,-52],[5,-12]],[[29907,64430],[32,-32],[19,5],[2,-7],[-11,-7],[-2,-6],[-31,-9],[-9,2],[-2,22],[2,32]],[[32736,61486],[-1,-34],[-19,10],[-1,30],[9,31],[5,3],[7,-40]],[[49439,80202],[2,-29],[-12,-7],[-10,10],[-21,0],[-20,-6],[5,52],[38,-7],[18,-13]],[[49302,80353],[-10,-38],[-26,13],[-2,10],[29,22],[6,0],[3,-7]],[[48774,83055],[-56,-73],[-23,13],[-19,-6],[-6,2],[11,26],[13,61],[24,24],[29,64],[23,17],[9,-2],[5,-6],[11,-71],[-16,-26],[-5,-23]],[[49258,81579],[-20,-24],[-66,-24],[-28,-25],[-50,-56],[-9,-5],[-75,14],[-56,72],[-35,30],[-15,4],[-15,-9],[-33,-9],[-33,1],[17,34],[23,19],[-51,13],[-15,10],[-16,23],[-40,4],[-19,-6],[-33,-31],[-51,-33],[-62,46],[-12,20],[0,39],[-9,31],[-17,10],[22,40],[26,27],[58,27],[89,62],[49,27],[46,46],[19,28],[14,39],[13,47],[20,39],[-19,9],[-9,29],[3,29],[8,26],[-7,33],[-14,34],[1,26],[3,29],[-35,-2],[-36,-9],[-32,-20],[-31,-27],[-27,-5],[0,22],[12,27],[31,38],[34,32],[12,25],[9,28],[17,23],[44,43],[83,48],[13,3],[33,-6],[32,7],[28,18],[29,4],[63,-51],[-19,78],[28,18],[41,-70],[15,-7],[32,10],[-13,12],[-14,1],[-19,10],[-15,23],[-27,71],[2,42],[17,44],[20,41],[-16,8],[-14,15],[-3,41],[5,35],[35,32],[10,48],[5,53],[-6,24],[-35,-4],[-17,-10],[-15,-16],[-16,1],[-43,59],[-25,44],[-44,93],[-6,56],[35,120],[55,77],[64,27],[-12,5],[-98,1],[-33,-10],[-30,-31],[-17,-10],[-17,-3],[-17,-16],[-15,-22],[-17,-14],[-33,4],[-16,-5],[-11,13],[-9,21],[-13,5],[-14,-6],[-29,-28],[-30,-17],[-36,18],[-48,33],[-9,-12],[-11,-31],[-6,-47],[-33,41],[-29,56],[-10,34],[0,39],[15,16],[17,-14],[25,93],[50,121],[18,35],[12,46],[-2,31],[-11,25],[-46,58],[0,48],[5,53],[13,32],[5,6],[62,-1],[-24,17],[-48,48],[1,17],[11,45],[-5,-5],[-10,-20],[-20,-50],[-12,-12],[-34,-12],[-6,-24],[-6,-7],[-17,-2],[-5,-23],[-4,-2],[-5,25],[0,41],[7,38],[13,29],[49,67],[-24,-21],[-55,-62],[-28,-40],[-7,-14],[-3,-12],[0,-13],[13,-72],[-4,-33],[-47,-219],[-9,-22],[-8,-11],[-8,-3],[-23,4],[-11,17],[0,18],[5,28],[19,104],[9,29],[13,27],[27,47],[0,3],[-19,-9],[-8,3],[-5,9],[3,139],[15,46],[6,67],[13,57],[15,42],[12,53],[17,24],[5,36],[19,39],[15,41],[-8,-4],[-96,-106],[-25,-20],[-33,5],[-26,12],[-20,26],[-9,48],[-24,1],[-21,9],[0,6],[27,27],[44,9],[41,42],[-37,29],[3,9],[32,24],[40,82],[9,75],[-20,35],[-7,23],[-38,26],[-7,33],[5,18],[12,18],[19,14],[30,14],[-27,14],[-10,17],[-8,24],[0,15],[14,63],[8,26],[16,33],[72,-2],[8,15],[8,1],[37,-14],[-6,15],[-60,79],[-5,15],[17,42],[1,19],[-2,21],[5,15],[19,8],[58,-1],[14,7],[-6,21],[-14,27],[-2,22],[3,20],[1,41],[2,17],[14,27],[11,8],[15,5],[32,-9],[12,-11],[14,-26],[10,3],[40,27],[12,4],[16,-32],[68,26],[91,11],[55,17],[58,6],[54,19],[57,-9],[2,-11],[-3,-15],[-14,-42],[2,-47],[-3,-15],[-7,-17],[-21,-33],[-55,-47],[-101,-108],[-60,-54],[-8,-26],[-4,-36],[35,-7],[14,-12],[-8,-18],[-53,-63],[-16,-58],[41,2],[33,11],[67,36],[62,27],[30,1],[59,-21],[13,-1],[25,10],[25,1],[170,-6],[47,12],[32,-15],[26,-37],[25,-68],[-1,-11],[-15,-31],[-28,-39],[-24,-54],[-7,-29],[-4,-32],[-8,-29],[-47,-138],[-47,-76],[-20,-55],[-26,-43],[-24,-27],[-26,-18],[-76,-20],[-21,-13],[-25,-24],[-27,-12],[31,2],[31,13],[56,5],[65,-46],[-6,-37],[-26,-30],[-59,-5],[-55,-65],[-25,-20],[-26,-10],[-33,3],[-60,17],[-26,18],[24,-29],[26,-16],[156,-37],[9,4],[49,39],[66,0],[126,-71],[36,-55],[52,-78],[28,-31],[21,-28],[12,-41],[25,-138],[27,-134],[37,-146],[16,-40],[22,-28],[110,-66],[24,-21],[43,-63],[41,-67],[38,-51],[41,-41],[-20,-22],[-14,-34],[11,-46],[16,-44],[33,-71],[30,-77],[-11,12],[-11,6],[-16,-1],[-15,3],[-28,24],[-27,30],[-53,-12],[-29,5],[-26,0],[49,-17],[53,-2],[117,-129],[40,-76],[23,-101],[-16,-46],[-25,-29],[-23,-34],[-22,-38],[65,-56],[14,2],[15,8],[13,19],[24,46],[12,16],[40,6],[34,-3],[34,-10],[30,3],[60,-20],[30,-18],[77,-80],[16,-44],[8,-57],[1,-63],[-13,-58],[-15,-52],[-9,-67],[-6,-25],[-9,-18],[-41,-54],[-27,-21],[-11,9],[-12,-1],[-1,-13],[12,-27],[1,-33],[-24,-24],[-25,-10],[-40,13],[-57,-45],[41,-23],[8,-25],[-10,-43],[-25,-20],[-29,-8],[-29,-2],[-24,-11],[-23,-20],[29,11],[20,-10],[13,-36],[11,-11],[57,-15],[34,0],[68,9],[32,-1],[12,-6],[0,-30],[-5,-75],[-9,-15],[-89,-62],[-19,-44],[-5,-26],[-52,4],[-24,-27],[-43,-19],[-32,-20],[-32,-25],[-27,-7],[-113,30],[-69,-3],[-93,-26],[-24,5],[-35,24],[-37,17],[-42,7],[-37,23],[23,-44],[-51,-42],[-23,-8],[-24,1],[-50,-12],[-46,6],[7,-30],[12,-26],[-9,-11],[-11,-3],[-87,20],[-13,-4],[-10,-18],[-32,9],[-31,31],[-33,21],[-34,10],[-28,-4],[-112,-48],[-23,-49],[-11,-69],[-16,-61],[-27,-47],[-31,-7],[-30,33],[-56,36],[-20,25],[-6,1],[-6,-9],[-22,-11],[-23,0],[-35,-10],[-62,-29],[-25,-20],[-53,-55],[-11,-15],[-19,-55],[-30,-10],[-27,35],[-31,13],[-32,-13],[-20,-18],[-9,15],[-1,31],[24,38],[64,28],[55,74],[28,45],[10,25],[14,16],[17,6],[9,28],[77,112],[7,25],[4,46],[6,44],[63,29],[30,93],[8,7],[88,17],[65,-1],[65,-18],[33,-2],[33,7],[26,25],[45,90],[25,40],[29,36],[27,41],[44,76],[-30,-26],[-36,-42]],[[48834,82558],[11,-11],[30,2],[-10,-24],[-32,-27],[-22,-26],[-26,-22],[-13,25],[-15,-1],[-22,49],[-4,72],[29,19],[41,-1],[33,-55]],[[49291,85962],[-31,-1],[16,34],[19,9],[36,-4],[-6,-15],[-34,-23]],[[49710,86701],[-7,-7],[-27,59],[20,67],[24,-2],[4,-18],[-2,-16],[-13,-2],[-1,-5],[4,-31],[0,-36],[-2,-9]],[[49636,86714],[6,-40],[14,10],[22,-39],[11,0],[18,16],[-4,-36],[-18,-101],[-6,-17],[-3,-31],[-4,-6],[-6,-61],[-12,-21],[-11,-48],[-4,-5],[-16,19],[16,74],[6,43],[-4,22],[-9,20],[-24,1],[-20,-9],[-4,12],[-1,16],[-5,5],[-27,-1],[-7,4],[-6,15],[-1,12],[25,9],[22,-4],[34,24],[-21,78],[-28,7],[-6,8],[5,13],[15,7],[24,40],[14,6],[17,-1],[-2,-41]],[[49784,86873],[0,-7],[-14,-49],[0,-18],[-23,2],[-4,5],[-4,28],[3,30],[3,8],[7,3],[7,-6],[12,15],[6,0],[7,-11]],[[49120,85710],[-16,-7],[-15,0],[-25,33],[-9,25],[2,16],[10,5],[24,-8],[12,-28],[1,-18],[3,-7],[15,-7],[-2,-4]],[[49186,85680],[-3,-2],[-10,11],[-17,38],[27,7],[12,-5],[-5,-16],[-4,-33]],[[49150,85846],[-3,-14],[21,0],[30,-12],[19,-2],[15,-15],[-8,-28],[-10,-8],[-10,-1],[-36,28],[-48,-12],[-10,4],[-6,7],[-2,10],[0,20],[-3,6],[-17,-19],[-8,2],[-4,9],[-2,19],[2,26],[10,38],[17,8],[26,-5],[29,-21],[9,-13],[0,-11],[-11,-16]],[[49241,85936],[-24,-14],[-10,12],[-2,37],[-29,16],[-14,10],[-10,18],[2,6],[19,8],[32,-34],[13,-28],[23,-8],[3,-4],[-3,-19]],[[48164,84438],[-16,-4],[-1,9],[28,39],[17,6],[6,-4],[-12,-22],[-22,-24]],[[48581,83783],[-35,0],[-12,5],[-15,14],[-17,79],[6,28],[7,13],[7,11],[19,5],[18,-15],[7,-14],[15,-54],[3,-46],[-3,-26]],[[48395,84299],[-111,-32],[-38,3],[-4,16],[8,10],[31,10],[13,77],[-47,36],[-3,10],[4,17],[5,7],[29,18],[12,4],[10,-2],[21,-21],[23,-43],[30,-7],[21,-19],[-4,-84]],[[48297,84061],[10,-74],[10,-46],[0,-16],[-9,-22],[-45,-29],[-15,0],[0,7],[10,30],[-9,33],[4,26],[-4,4],[-9,-3],[-33,-41],[-11,-4],[-1,8],[8,34],[1,22],[5,14],[9,13],[11,10],[8,1],[9,-10],[27,28],[24,15]],[[48341,83994],[-6,-6],[-14,1],[-5,10],[-3,14],[0,26],[8,19],[36,28],[-16,10],[-1,7],[10,24],[39,36],[10,7],[10,-1],[-20,-65],[-48,-110]],[[48278,85462],[-36,-100],[-13,-3],[-13,-25],[-37,-28],[33,0],[9,-10],[0,-19],[-6,-12],[-43,-46],[-29,-18],[-31,-48],[-16,0],[-16,-31],[-13,-13],[-7,0],[-9,6],[-19,30],[35,30],[4,16],[24,18],[-2,5],[-39,24],[-15,17],[2,8],[18,19],[-9,2],[-6,10],[-10,4],[-4,10],[-1,24],[2,26],[12,11],[4,12],[5,3],[17,-6],[18,-20],[20,8],[24,-4],[1,5],[-18,49],[3,10],[10,12],[55,35],[68,60],[17,9],[5,-8],[7,-31],[-1,-41]],[[48255,84656],[-8,-7],[-10,1],[-11,10],[-13,27],[30,19],[13,-11],[4,-13],[0,-14],[-5,-12]],[[48293,84968],[-1,-26],[-5,-30],[7,-32],[1,-22],[12,-8],[7,-10],[52,-12],[49,4],[9,-10],[1,-15],[-8,-16],[-27,-30],[-33,-48],[-10,-10],[-11,-1],[-7,5],[-6,86],[-35,-11],[-29,1],[-16,10],[-11,20],[-22,52],[-65,21],[-18,28],[-6,18],[3,9],[13,21],[17,-7],[11,4],[6,10],[0,8],[-9,18],[0,6],[66,23],[5,37],[15,3],[16,-12],[23,-38],[6,-46]],[[47998,85070],[31,-32],[-25,-54],[-38,0],[-54,39],[0,8],[4,12],[8,10],[9,2],[13,-7],[19,11],[15,-4],[18,15]],[[47986,84743],[-12,-3],[-15,3],[-10,9],[-9,35],[-2,22],[4,40],[-1,47],[32,2],[8,-7],[5,-142],[0,-6]],[[47939,84657],[-24,-8],[-9,4],[-2,8],[6,20],[19,7],[13,-11],[2,-10],[-5,-10]],[[48272,83000],[-23,3],[-17,-10],[-11,-9],[-10,1],[-30,-3],[-29,0],[-4,15],[5,46],[-6,12],[-27,6],[-10,11],[-16,31],[-3,15],[-2,20],[-16,26],[-20,19],[-12,1],[-23,-31],[-19,-31],[7,-15],[6,-20],[-11,-15],[-31,-34],[-5,-13],[-9,-7],[-15,10],[-37,-2],[-17,5],[-20,25],[-49,17],[-9,39],[-9,7],[-56,68],[-7,23],[7,13],[21,21],[70,34],[11,13],[2,12],[-21,14],[-18,15],[-6,10],[-1,9],[11,11],[21,1],[16,-5],[13,10],[24,10],[15,13],[14,33],[14,30],[1,16],[13,57],[6,14],[44,37]],[[47994,83578],[11,-21],[22,-5],[20,19],[23,59],[16,3],[18,-4],[35,7],[62,27],[28,1],[39,-14],[29,0],[26,-42],[14,-66],[32,-66],[43,-57],[1,-34],[-15,-19],[-32,-23],[1,-25],[20,13],[18,5],[44,-5],[15,-26],[10,-37],[6,-31],[-4,-34],[-11,11],[-12,30],[-13,14],[-16,7],[7,-41],[-3,-56],[7,-5],[21,-1],[-14,-56],[-28,-16],[-33,-6],[-8,-20],[-6,-26],[-17,-38],[-22,-22],[-28,4],[-28,18]],[[49704,81042],[-24,-20],[-7,-23],[-6,-9],[-15,-6],[-15,-1],[-58,47],[-14,-2],[13,22],[37,17],[20,23],[47,-22],[22,-26]],[[65638,66618],[18,-46],[2,-318],[5,-22]],[[65663,66232],[-10,-4],[-11,-24],[-13,-37],[-17,-19],[-14,-22],[-14,-27],[-11,-6],[-16,34],[-10,35],[2,8],[8,2],[3,18],[-5,27],[-10,9],[-13,1],[-13,-11],[-13,-24],[-8,-24],[-1,-50],[4,-57],[-1,-27],[-7,-34],[-2,-50],[5,-39],[4,-23],[1,-19],[-13,-62],[11,-11],[36,-5],[11,-41],[7,-29],[-2,-17],[-26,-13],[-31,-14],[-23,4],[-42,-18],[-22,-29],[7,-19],[7,-13],[4,-39],[-7,-54],[-11,-53],[-15,-66],[-17,-75],[-23,-114],[-19,-90],[-2,-64],[0,-42],[-2,-84]],[[65329,64921],[-19,-46],[-4,-2],[-22,6],[-7,2],[-21,5],[-33,8],[-42,11],[-51,13],[-56,14],[-59,15],[-62,16],[-62,16],[-60,15],[-56,14],[-50,13],[-43,10],[-32,9],[-21,5],[-8,2],[-23,6],[-13,31],[-15,38],[-15,37],[-15,38],[-16,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,38],[-10,25],[-6,28],[-1,75],[0,16]],[[64324,65832],[10,30],[5,-21],[12,-29],[19,7],[9,-5],[7,-103],[14,-37],[18,-15],[59,-8],[36,14],[73,67],[38,25],[105,-5],[84,-28],[131,-16],[26,4],[70,54],[44,48],[26,14],[17,46],[11,60],[10,39],[13,19],[12,33],[9,55],[25,54],[97,133],[57,113],[5,36],[32,55],[24,59],[117,171],[23,70],[14,79],[1,6]],[[65577,66856],[10,3],[14,-12],[2,-59],[-5,-56],[-1,-59],[-2,-32],[11,-26],[18,-11],[8,1],[6,13]],[[65633,66379],[2,25],[-3,13],[-12,2],[-5,-22],[-2,-31],[9,-2],[11,15]],[[64814,65816],[-21,-3],[-18,22],[39,29],[11,13],[11,27],[9,-23],[-10,-36],[-7,-16],[-14,-13]],[[64615,65834],[-5,-4],[-4,31],[0,9],[13,15],[7,-26],[-11,-25]],[[64979,65770],[0,-20],[-28,6],[-7,-10],[-24,5],[-22,14],[15,24],[40,28],[17,-26],[9,-21]],[[65129,65923],[-3,-12],[-8,1],[-19,11],[-7,16],[13,19],[5,1],[8,-20],[11,-16]],[[60614,78969],[-10,-6],[-97,9],[-18,-3],[-61,-10],[-56,-91],[-34,1],[-48,-24],[-32,-29],[-38,-64],[-29,28],[-36,0],[-36,-18],[-42,-42],[-24,-8],[-47,12],[-55,-24],[-118,-140],[-40,-102],[-15,-20],[-20,-25],[-21,-13],[-11,1],[56,73],[17,27],[3,20],[1,33],[-17,40],[-47,-100],[-26,-14],[-33,-30],[-2,-67],[4,-50],[14,-63],[26,-83]],[[59722,78187],[-15,-3],[-41,36],[-2,58],[-29,49],[-46,0],[-20,-6],[-27,55],[-36,23],[-27,-7],[-28,10],[-61,58],[-41,7],[-1,-42],[-17,-29]],[[59331,78396],[-26,-10],[-20,-13],[-46,40],[-17,29],[-72,-30],[-40,4],[-89,-28],[-41,27],[-82,76],[-30,15],[-27,-3],[-14,24],[18,13],[20,1],[21,9],[6,13],[-1,25],[-43,19],[-39,5],[-25,22],[-19,26],[44,0],[45,-19],[71,-7],[64,-20],[16,25],[37,42],[7,14],[-62,-29],[-63,18],[-23,26],[-20,39],[-8,43],[5,41],[-6,73],[-21,65],[-8,36],[-22,32],[22,-73],[8,-48],[13,-44],[-3,-118],[-8,-41],[-26,-11],[-34,6],[-35,13],[9,65],[-18,-22],[-27,-64],[-23,-9],[-50,7],[-95,-42],[-7,-45],[-14,-62],[-14,-36],[-4,-21],[-40,-93],[-5,-9],[-76,-128],[-10,-10],[-49,-30],[-30,-26],[-22,-12],[-38,13],[-15,-19],[-8,-23],[0,-47],[19,-34],[16,-114],[-6,-48]],[[58251,77914],[-15,31],[-23,33],[-46,28],[-50,-10],[-54,-47],[-37,-18],[-20,12],[-12,0],[-4,-14],[1,-11],[6,-9],[-1,-6],[-7,-4],[-86,34],[-38,31],[-29,60]],[[57836,78024],[15,19],[12,8],[45,5],[8,6],[1,14],[3,18],[-1,26],[-5,28],[19,40],[30,34],[17,33],[2,49],[31,24],[27,41],[7,45],[10,28],[-18,64],[-3,43],[-1,36],[8,19],[26,23],[27,17],[11,-2],[4,-11],[1,-72],[5,-2],[9,9],[14,43],[9,-12],[15,-5],[11,11],[7,-1],[9,-11],[18,-16],[17,-5],[14,10],[11,19],[13,-7],[24,-50],[11,6],[55,10],[9,14],[6,12],[-57,67],[3,49],[2,57],[-7,34],[-11,27],[-44,31],[-34,32],[-7,15],[-1,18],[-2,30],[-13,25],[-1,21],[8,33],[3,35],[-3,14],[-8,12],[-15,1],[-21,20],[-13,28],[-37,39],[-12,7],[-7,19],[-3,24],[8,29],[10,45],[7,42],[0,25],[-5,62],[-19,47],[-9,6],[-16,-13],[-17,-11],[-14,10],[-16,26],[-26,71],[-48,15],[-19,3],[-19,-34],[-6,10],[-5,22],[-10,9],[-13,-10],[-4,9],[6,30],[-16,15],[-37,-1],[-19,11],[-3,23],[-11,14],[-21,7],[-20,19],[-20,29],[-29,19],[-39,9],[-3,3],[-4,5],[-25,-20],[-15,-16],[-19,10],[-30,-36],[-61,-2],[-30,3],[-15,8],[-57,-53],[-6,-20]],[[57394,79642],[-13,-7],[-36,-10],[-38,-15],[-8,-52],[-12,-29],[-20,-41],[-71,-14],[-61,-21],[-62,-12],[-82,-51],[-27,-44],[-26,-13],[-24,-3],[-15,25],[-52,66],[-20,32],[-26,9],[-29,-5],[-28,-16],[-29,-3],[-32,23],[-4,-3],[-12,-3],[-82,27],[-7,5],[-4,1],[-11,2],[-61,-3],[-57,54],[-18,2],[-13,-22],[-10,-25],[-40,-24],[-10,-10]],[[56354,79462],[-6,7],[-2,22],[3,18],[-6,18],[-15,20],[-4,8],[-19,-1],[-5,-2],[-2,0],[-26,18],[-17,41],[-27,22],[-20,7],[-9,17],[-6,24],[-7,18],[-1,1],[-4,27],[-6,3],[-1,1],[-27,-5]],[[56147,79726],[3,94],[43,67],[10,35],[16,74],[12,34],[14,29],[11,27],[4,24]],[[56260,80110],[12,3],[33,-22],[30,-11],[9,11],[3,14],[-1,10],[-24,32],[-15,20],[-1,12],[5,28],[3,31],[-3,34],[-17,75],[-3,32],[16,39],[51,92],[17,34],[23,42],[64,100],[40,59],[27,32],[40,56],[17,29],[73,19],[8,27],[14,29],[10,13],[1,50],[-13,61],[-11,21],[-8,15],[5,14],[8,4],[10,2],[12,14],[-2,16],[-31,39],[-13,30],[-21,77],[-42,80],[-13,26],[-2,25],[6,24],[-6,31],[-15,40]],[[56556,81519],[3,4],[-2,49],[11,11],[17,7],[23,-3],[20,-7],[25,-23],[7,4],[41,42],[43,64],[12,36],[11,17],[37,9],[32,4],[20,-1],[51,6],[30,7],[25,11],[56,5],[87,-8],[57,0],[39,-6],[95,-34],[35,-6],[17,-18],[31,-7],[57,-18],[50,-9],[34,4],[19,-5],[35,-80],[8,-9],[14,-2],[29,7],[41,-3],[25,-17],[-4,-47],[7,-7],[11,2],[14,27],[11,28],[8,9],[42,-19],[19,3],[18,21],[11,4],[30,-15],[37,-11],[30,-1],[19,-11],[13,-50],[12,-10],[11,-3],[18,44],[15,18],[22,12],[14,6],[10,15],[13,16],[11,1],[10,-6],[10,-21],[16,-48],[19,-49],[13,-17],[34,15],[24,15],[42,3],[56,10],[43,14],[27,-2],[17,-16],[25,-29],[6,-43],[33,-30],[26,-5],[9,31],[15,21],[-5,30],[-3,37],[-11,35],[-8,37],[14,53],[15,47],[8,25],[25,47],[25,33],[37,54],[28,18],[24,-8],[14,-8],[36,32],[63,2],[53,-4]],[[58823,81855],[5,-1],[26,-17],[27,-14],[19,-1],[22,4],[27,18],[18,18],[22,91],[8,13],[12,7],[20,1],[39,-17],[44,-15],[26,2],[69,49],[39,7],[46,-11],[44,-1],[34,7],[24,-17],[28,-37],[26,-55],[27,-101],[79,-115],[2,-22],[-7,-15],[-39,-14],[-33,-7],[-1,-20],[9,-21],[15,-32],[2,-40],[-1,-37],[7,-32],[12,-14],[2,-16],[-15,-20],[-4,-12],[6,-7],[71,-4],[35,-20],[27,-17],[13,-2],[30,11],[34,8],[20,1],[8,-13],[7,-35],[12,-34],[11,-10],[19,1],[12,-1],[7,-13],[-8,-20],[2,-21],[9,-27],[10,-60],[10,-18],[6,-23],[0,-27],[-8,-23],[-6,-18],[6,-41],[21,-46],[16,-11],[13,-41],[23,-13],[34,34],[26,18],[33,-10],[30,-6],[20,-24],[15,-32],[17,-18],[18,9],[36,-9],[17,-26],[16,-15],[22,21],[17,27],[64,27],[40,7],[11,5],[23,20],[24,13],[23,-4],[21,-40],[23,-28],[6,-45],[28,-61],[68,-83],[27,-26],[18,5],[10,7],[4,8],[4,41],[9,15],[14,1],[53,-51],[28,-6],[27,-1],[36,-39],[39,-35],[30,-3],[25,13],[16,8],[11,-13],[9,-29],[16,-23],[18,-7],[26,-1],[46,-45],[43,-45],[26,-3],[23,14],[20,3],[14,-11],[4,-20],[-10,-26],[0,-38],[19,-36],[0,-36],[-5,-32],[-11,-29],[-26,-41],[-24,-38],[-36,-16],[-21,-16],[6,-28],[13,-26],[31,-21],[34,-15],[5,-17],[-6,-9],[-22,-7],[-31,8],[-10,-15],[-15,-25],[-9,-44],[-7,-41],[33,-11],[20,-17],[6,-34],[7,-37],[2,-34],[-11,-16],[-1,-17],[5,-9],[15,-3],[11,-8],[1,-18],[-21,-40],[-20,-76],[-11,-41],[1,-44],[-12,-25],[-21,-2],[-75,-4],[-64,2],[-28,6],[-44,4],[-22,-11],[-28,-70],[-22,-28],[-36,-25],[-40,-7],[-22,-30],[-8,-45],[-1,-41],[-3,-20],[-9,-18],[-3,-13],[2,-14],[9,-5],[11,-6],[0,-10],[-4,-13],[-13,-14],[-5,-22],[1,-23],[2,-25]],[[58892,78458],[38,-29],[-39,8],[-86,27],[-38,25],[-10,28],[-5,38],[21,-40],[15,-18],[104,-39]],[[59417,51265],[-30,0],[-50,0],[-49,0],[-49,0],[-50,0],[-49,0],[-50,0],[-49,0],[-49,0],[-50,0],[-49,0],[-50,0],[-49,0],[-49,0],[-50,0],[-49,0],[-49,0],[-30,0],[-5,2],[-4,3],[-19,-8],[-19,-25],[-21,-11],[-22,5],[-3,-3]],[[58474,51228],[-11,1],[-16,1],[-14,-6],[-11,-23],[-12,-37],[-20,-44],[-16,-38],[-13,-28],[-31,-45],[-17,-13],[-8,2],[-5,8],[-10,58],[-6,9],[-60,-29],[-9,-1]],[[58215,51043],[1,18],[-4,136],[-1,83],[8,52],[4,60],[1,52],[11,90],[-4,54],[14,189],[4,31],[5,91],[9,28],[8,11],[10,56],[20,90],[14,46],[-3,101],[2,68],[3,16],[29,25],[38,63],[15,75],[23,47],[43,31],[1,0],[129,256],[60,138],[26,70],[1,26],[5,33],[-11,26],[-12,24],[-4,21],[-11,11],[-16,0],[-10,15],[-11,31],[-12,20],[-37,-2],[-28,32],[0,43],[12,85],[21,98],[1,26],[-3,23],[-5,20],[-10,20],[-9,23],[7,70],[14,69],[11,34],[11,38],[-4,32],[-15,15]],[[58566,53853],[8,31],[17,52],[33,52],[29,35],[19,0],[38,-27],[34,-33],[19,-2],[22,14],[47,58],[11,-18],[14,-36],[15,-58],[30,-27],[14,-18],[10,-6],[6,5],[11,46],[13,25],[26,32],[55,25],[39,7],[17,6],[28,15],[44,47],[44,-61],[47,-12],[46,1],[14,18],[8,14],[48,100],[65,136]],[[59437,54274],[44,-191],[14,-11],[-2,-17],[-3,-16],[28,-46],[35,-24],[12,-23],[2,-26],[-12,-112],[2,-31],[11,-112],[21,-25],[19,-113],[37,-47],[5,-14],[9,-55],[11,-59],[9,-14],[5,-4],[11,-63],[-6,-36],[9,-108],[14,-96],[3,-116],[1,-51],[-1,-31],[-3,-44],[-7,-25],[-12,-25],[-13,-39],[-11,-41],[-7,-21],[5,-62],[-1,-16],[-3,-8],[-17,-10],[-22,-17],[-13,-16],[-18,-32],[-15,-34],[-20,-101],[-33,-78],[-5,-26],[-31,-47],[-14,-57],[-9,-71],[-12,-51],[-26,-69],[-6,-110],[1,-220],[-7,-249],[1,-99]],[[64752,74195],[-3,-27],[-15,81],[-7,89],[9,26],[11,-2],[-10,-32],[15,-135]],[[68478,73357],[-14,-2],[-34,13],[-67,27],[-58,54],[-38,35],[-6,-5],[-16,-24],[-12,-30],[-9,-57],[-15,-67],[-70,-3],[-59,-5],[-39,-26],[-37,-35],[-10,-42],[-8,-54],[-22,-124],[-20,-113],[-10,-73],[-15,-50],[-42,-66],[-49,-44],[-25,-21],[-12,-26],[-2,-25],[-9,-7],[-20,4],[-21,-4],[-46,-26],[-50,-31],[-60,-32],[-34,0],[-14,-7],[-6,-16],[6,-29],[6,-23],[5,-28],[-14,-24],[-9,-40],[-8,-70],[-21,-21],[-34,-35],[-38,-45],[-9,-9],[-22,-13],[-21,4],[-20,7],[-21,-12],[-22,-35],[-10,11],[-5,35],[-11,23],[-35,52],[-29,36],[-13,3],[-27,-10],[-33,-7],[-28,8],[-21,15],[-34,50],[-12,28],[-9,20],[-23,-5]],[[67017,72361],[-7,23],[-1,26],[7,33],[-2,61],[-13,43],[-15,20],[2,13],[7,30],[8,27],[0,53],[-11,57],[-4,82],[3,81],[-14,40],[-114,0],[-102,-3],[-6,9],[-39,102],[-33,77],[-31,45],[-73,56],[-35,23],[-29,43],[-25,46],[-6,64],[-5,21],[-7,17],[-8,8],[-9,-2],[-84,74],[-34,20],[-32,-16],[-14,-3],[-28,21],[-32,-28],[-13,-2],[-19,7],[-16,10],[-42,68],[-36,27],[-26,18],[-49,25],[-53,14],[-27,11],[-19,15],[-5,9],[0,25],[-1,32],[-7,24],[-13,28],[-19,22],[-31,-4],[-48,2],[-37,21],[-29,4],[-35,-4],[-29,0],[-20,-16],[-12,-18],[-8,-55],[-7,-9],[-12,-4],[-16,3],[-33,0],[-58,10],[-73,2],[-55,-28],[-43,-40],[-42,-45],[-49,-72],[-14,-32],[-29,-127],[-12,-18],[-17,-15],[-17,-2],[-33,-19],[-44,-31],[-30,-13],[-77,7]],[[64976,73354],[-5,40],[-14,148],[-7,148],[1,69],[8,138],[-1,69],[-3,63],[3,61],[6,69],[4,71],[-5,49],[-15,39],[-25,49],[-4,29],[-2,33],[-24,3],[-22,34],[-17,18],[-39,20],[-19,1],[-18,-14],[-13,-30],[-9,47],[0,49],[31,102],[19,-30],[24,-12],[30,-2],[29,8],[-6,35],[-13,20],[-17,15],[-6,46],[2,48],[8,45],[-9,18],[-14,11],[-32,-1],[-42,12],[-42,5],[-10,-53],[23,-70],[-19,34],[-19,46],[-26,81],[-16,96],[-3,103],[14,85],[18,80],[11,102],[15,101],[15,-45],[17,-40],[24,-38],[13,-9],[39,-15],[25,6],[27,22],[26,-7],[22,-42],[20,-46],[29,-10],[61,33],[29,8],[25,-15],[13,-3],[13,2],[-11,42],[-5,40],[15,21],[48,-23],[31,16],[8,8],[7,10],[3,35],[-1,36],[-4,33],[-9,29],[-22,42],[-86,98],[-28,39],[-24,50],[-16,72],[-12,74],[-11,55],[-30,129],[-12,15],[-14,7],[-36,4],[-36,-10],[-58,-22],[-34,7],[-15,-13],[-39,-55],[-18,-46],[-25,-106],[19,-34],[0,-22],[-15,-157],[9,-76],[-3,-6],[-7,18],[-22,78],[-38,94],[-32,145]],[[64581,75910],[56,94],[49,67],[39,40],[12,10],[54,34],[70,30],[51,22],[67,19],[22,4],[32,-1],[26,-18],[16,-14],[56,-57],[57,-59],[49,-65],[13,-26],[8,-32],[6,-31],[41,-99],[17,-45],[24,-59],[20,-29],[19,-35],[13,-29],[14,-14],[17,-6],[37,10],[44,18],[27,8],[12,-1]],[[57213,74963],[-64,-18],[-19,17],[20,35],[37,22],[12,2],[16,-34],[-2,-24]],[[61530,75758],[18,-11],[35,-15],[22,-18],[12,-5],[28,37],[43,-1],[37,-5],[19,-6],[23,-12],[29,-9],[11,18],[17,51],[6,7],[5,5],[21,4],[20,-4],[9,-9],[9,-41],[24,-15],[42,-66],[25,-26],[6,-11],[-8,-13],[3,-17],[15,-21],[20,-8],[23,3],[12,-8],[8,-12],[2,-17],[0,-11]],[[62066,75522],[4,-25],[18,-34],[20,-21],[11,-23],[18,-77],[8,-43],[-3,-42],[-13,-42],[-27,-53],[7,-22],[6,-29],[-2,-22],[19,-67],[9,-42],[-7,-10],[-5,-13],[35,-32],[41,-28],[18,-5],[48,13],[31,2],[31,-25],[44,-63],[48,-81],[10,-25]],[[62435,74713],[4,-11],[10,-19]],[[62449,74683],[-10,0],[-16,18],[-38,50],[-20,-22],[-17,-37],[-18,-141],[-15,-15],[-27,1],[-32,4],[-22,-7],[-6,-9],[3,-15],[7,-23],[4,-29],[2,-24],[11,-22],[16,-21],[1,-21],[-3,-30],[-3,-22],[-4,-13],[7,-35],[17,-41],[11,-15],[-4,-78],[6,-35],[5,-48],[-2,-79],[3,-19],[5,-7],[16,-3],[15,-7],[6,-13],[-1,-10],[-19,-36],[-2,-26],[-6,-37],[-6,-21],[-17,-41],[-11,-41],[-5,-34],[4,-16],[31,-5],[17,-24],[45,-49],[8,-20],[-12,-30],[0,-12],[6,-16],[3,-28],[-1,-31],[0,-41],[8,-7],[31,-38],[22,-39],[1,-12],[-11,-30],[3,-35],[-1,-8]],[[62434,73238],[-9,13],[-17,5],[-18,1],[-11,-10],[-20,-27],[-26,-30],[-21,-28],[-12,-19],[-10,3],[-8,17],[-4,23],[1,87],[-4,27],[-10,19],[-12,11],[-13,6],[-15,1],[-20,-26],[-29,-26],[-44,2],[-30,5],[-15,5],[-58,40],[-12,1],[-22,17],[-25,13],[-44,-25],[-19,6],[-26,21],[-9,-6],[-29,-64],[-50,-70],[-27,-11]],[[61766,73219],[-13,69],[-12,27],[-6,4],[-13,8],[-9,-5],[-30,-47],[-48,-29],[-40,-17],[-64,-22],[-48,-10],[-21,-1],[-45,9],[-40,14],[-40,-1],[-30,-6],[-71,-51],[-121,-105],[-92,-51],[-51,-21],[-40,-11],[-69,-1],[-56,8],[-39,-1],[-22,13],[-30,42],[-38,43],[-16,9],[-22,9],[-32,4],[-79,-61],[-25,-17],[-27,-13],[-54,-37],[-25,-21],[-30,2],[-39,6],[-33,-2],[-23,29],[-12,32],[-46,20],[-33,5],[-8,-14],[-9,-44],[-14,-112],[-2,-29],[29,-111],[-2,-17],[-20,-6],[-24,-2],[-16,-10],[-12,-18],[-8,-97],[-27,-18],[-14,-20],[-13,-60],[-7,-1],[-45,45],[-20,4]],[[59970,72532],[17,47],[-19,93],[-21,86],[20,56],[41,67],[44,79],[0,48],[-3,37],[-12,25],[-24,34],[-40,-36],[-29,-40],[-18,-8],[-21,-23],[-10,-41],[-24,-32],[-40,-13],[-60,35],[-65,52],[-37,42],[-30,10],[-28,-18],[-84,-104],[-77,-152],[-19,-26],[-72,-65],[-48,-22],[-22,5],[-95,-29],[-48,-4],[-37,-34],[-72,37],[-44,48],[-26,48],[-42,105],[-31,49],[-67,45],[-119,108],[-31,12],[-80,16],[-85,10],[-18,-40],[-6,-156],[-15,-43],[-6,-81],[-10,-24],[-17,-15],[-25,26],[-18,11],[-41,-33],[-82,-47],[-28,-7],[-94,59],[-35,38],[-22,42],[-8,71],[-14,40],[-2,28],[-5,31],[-19,13],[-21,-24],[-22,1],[-27,15],[-65,59],[-50,5],[-30,-73],[-24,-23],[-25,-7],[-2,21],[20,47],[-78,-9],[-41,-35],[-32,5],[-24,16],[3,20],[25,7],[21,16],[84,13],[20,13],[21,51],[40,44],[5,19],[-31,0],[-129,-13],[-89,7],[-10,-21],[-14,-4],[-3,60],[14,27],[19,-3],[46,24],[-4,49],[-33,34],[-7,19],[-24,5],[-20,23],[-4,59],[-15,65],[-23,31],[3,17],[41,22],[8,90],[-6,56],[-20,4],[-60,44],[-18,-4],[-20,48],[-35,34],[-17,-12],[-11,-16],[-16,7],[-26,30],[-27,17],[-12,20],[15,53],[20,-1],[4,42],[-16,70],[2,36],[17,9],[20,-6],[21,-42],[6,-41],[-4,-39],[13,-38],[9,-10],[6,41],[9,7],[12,-17],[25,-9],[66,24],[12,21],[-48,-2],[-17,19],[-20,44],[-11,40],[-3,19],[-6,29],[7,15],[33,23],[29,64],[-12,18],[-14,9],[-15,-6],[-14,22],[-2,30],[12,25],[1,34],[-38,83],[-10,18],[8,28],[29,45],[27,57],[-4,19],[-20,7],[-95,-24],[-37,-21],[-66,-10],[-5,31],[2,28],[15,50],[-2,125],[9,67],[37,20],[45,100],[73,117],[76,-3],[30,33],[45,2],[9,-24],[5,-22],[40,-33],[70,5],[17,13],[16,18],[-32,57],[10,17],[29,2],[32,-14],[2,-13],[-9,-18],[-10,-32],[10,-6],[90,19],[95,-15],[30,8],[75,0],[13,19],[-22,25],[-22,9],[-15,12],[-15,18],[47,55],[27,11],[126,34],[94,17],[1,13],[-14,0],[-121,28],[-29,22],[-40,52],[-9,15],[-10,25],[6,55],[7,43],[15,25],[48,4],[166,-44],[119,27],[129,-65],[123,13],[26,29],[31,93],[174,156],[61,80],[66,45],[112,49],[94,65],[27,7],[225,-31],[155,-4],[71,62],[42,-21],[-4,-22],[-8,-19],[3,-38],[24,-55],[24,-38],[73,-55],[100,46],[16,-5],[21,-13],[35,-147],[28,-52],[35,-36],[29,-7],[21,37],[17,15],[36,6],[60,-50],[21,-53],[101,-40],[93,-20],[40,-45],[131,-44],[49,7],[82,46],[159,51],[106,-71],[29,-9],[25,6],[35,-20],[38,11],[117,84],[37,48],[39,12],[34,29],[92,93],[27,54]],[[57781,76018],[-7,-65],[17,-73],[41,-100],[41,-51],[167,-126],[31,-11],[-7,-51],[-10,-46],[-11,-30],[-49,-20],[-135,56],[-34,6],[-24,-12],[-45,-40],[-49,13],[-69,-23],[-19,-77],[-48,-88],[-79,-71],[-56,-38],[-84,-136],[-39,-80],[-16,-15],[-19,-13],[6,39],[10,35],[-2,26],[0,38],[28,44],[26,31],[76,58],[20,47],[-60,-1],[-60,-11],[-38,7],[-33,-4],[-11,42],[-8,25]],[[57232,75303],[9,7],[11,6],[19,44],[18,33],[25,41],[6,24],[0,23],[-6,16],[-1,19],[-1,27],[2,55],[57,60],[18,6],[6,28],[-4,63],[-8,51],[-10,4],[-14,15],[-9,17],[-14,19],[-25,12]],[[57311,75873],[-1,16],[3,16],[9,17],[42,14],[5,12],[5,29],[9,29],[10,10],[17,-1],[34,7],[23,9],[24,21],[12,18],[50,11],[14,9],[14,-8],[19,-31],[31,-45],[17,-15],[13,6],[22,17],[22,0],[17,-3],[9,14],[13,3],[37,-10]],[[53195,70957],[0,-16],[-10,-109],[-2,-39],[-2,-67],[0,-80],[22,-68],[1,-30],[-9,-34],[-41,-39],[-52,-51],[-46,-49],[-49,-53],[-15,-34],[-25,-26],[-21,-27],[-3,-25],[-15,-48],[-19,-38],[-47,-18],[-8,-12],[-22,-57],[-10,-23],[-13,-47],[16,-123],[20,-126],[4,-52],[-1,-44],[-11,-47],[-25,-68],[-18,-49],[-35,-89],[-11,-22],[-24,-26],[-47,-35],[-33,-30]],[[52644,69256],[-17,136],[-15,116],[-12,95],[-21,169],[-17,143],[-18,143],[-16,129],[-16,130],[-7,19],[-49,62],[-45,57],[-46,64],[-51,70],[-8,88],[-26,133],[-27,74],[-10,19],[-55,48],[-32,35],[-9,20],[-6,55],[-23,107],[-26,97],[-9,66],[-1,83],[5,60],[11,26],[54,74],[25,90],[31,34],[26,25],[22,30],[19,47],[15,51],[2,54],[7,87],[9,61],[23,68],[-9,55],[-12,60],[3,103],[-3,42],[-10,37],[-10,48],[0,39],[10,104],[7,80],[12,103],[-5,29],[-8,21],[-26,23],[-1,14],[7,15],[38,50],[21,74],[17,16],[27,26],[-1,29],[-6,31]],[[52382,73120],[68,35],[66,91],[23,22],[152,84],[19,-6],[22,-12],[-6,-31],[-9,-25],[13,-44],[18,27],[-4,18],[-1,23],[31,2],[28,-3],[30,-26],[-2,-100],[40,-97],[-11,-48],[33,-29],[29,35],[15,51],[54,29],[52,74],[28,8],[6,-61],[14,-54],[-19,-18],[-25,-57],[-47,-144],[-43,-42],[-33,-56],[-10,-39],[-3,-46],[8,-82],[23,-84],[28,-51],[26,-15],[61,-80],[-1,-47],[9,-57],[3,-68],[21,-55],[-45,-119],[-25,-86],[-49,-118],[-43,-77],[-93,-115],[-23,-38],[-15,-39],[-7,-41],[3,-49],[30,-119],[41,-70],[41,-38],[72,16],[-2,-46],[5,-55],[29,3],[20,8],[16,54],[36,-37],[18,-111],[30,-35],[3,-13],[-10,-9],[-9,-13],[9,-9],[29,-14],[17,9],[29,-24]],[[53132,71862],[-43,-41],[9,36],[28,43],[7,-10],[-1,-28]],[[53043,71268],[-7,-3],[-13,-16],[-8,-1],[-20,17],[-7,0],[-10,12],[3,68],[3,19],[49,2],[27,-40],[4,-10],[1,-12],[-12,-22],[-10,-14]],[[33123,58282],[-15,-6],[2,23],[26,40],[41,26],[10,1],[-6,-35],[-58,-49]],[[33052,57680],[-45,-32],[-118,-8],[-48,12],[-37,-9],[67,70],[8,30],[29,6],[9,9],[9,155],[-4,38],[-5,20],[-12,15],[-26,20],[-5,11],[17,17],[35,9],[26,19],[55,4],[26,16],[45,5],[-22,-71],[-10,-27],[4,-65],[-5,-43],[6,-55],[13,-37],[-9,-35],[-1,-54],[-2,-20]],[[1344,39648],[4,0],[4,17],[15,7],[-1,-19],[-21,-59],[-12,23],[-37,38],[-8,29],[13,23],[-2,-18],[6,-8],[21,-4],[19,-15],[-12,-6],[11,-8]],[[1680,41106],[-11,-34],[-5,0],[-12,20],[-5,13],[19,40],[10,3],[12,-13],[0,-12],[-8,-17]],[[1413,39573],[-2,-87],[-13,40],[-2,18],[14,27],[3,2]],[[50250,58175],[-8,-62],[-14,-76],[-10,-25],[-6,-186],[4,-16],[4,-4],[46,-64],[60,-82],[43,-59],[4,-19],[0,-123],[1,-105],[9,-60],[1,-59],[11,-44],[40,-85],[9,-50],[1,-161],[1,-122],[5,-166],[0,-139],[0,-175],[0,-205],[0,-215],[-26,-2],[14,-67],[2,-60],[4,-20],[-7,-29],[6,-45],[11,-16],[29,-90],[9,-75],[-46,-26],[3,-19]],[[50450,55424],[-86,-41],[-35,-33]],[[50329,55350],[0,32],[-13,6],[-15,11],[-10,17],[-13,38],[-5,29],[-20,5],[-25,33],[-24,39],[-8,38],[2,17],[-3,18],[-9,7],[-21,86],[-13,35],[-7,28],[3,22],[-3,29],[4,23],[11,14],[4,17],[1,37],[7,74],[4,74],[-12,20],[-15,6],[-8,21],[-3,34],[0,30],[30,104],[-6,241],[4,37],[13,25],[12,29],[-1,29],[-19,72],[-37,55],[-19,45],[-10,40],[-2,21],[22,32],[10,21],[2,25],[-10,46],[2,81],[9,61],[8,79],[0,24],[-22,47],[-12,6],[-9,-3],[-23,-31],[-8,-4],[-5,10],[-3,12],[8,18],[-3,24],[7,20],[14,9],[5,10],[-20,10],[-2,13],[1,14],[6,2],[6,-1],[3,10],[3,67],[3,23],[2,47],[3,179],[5,19],[0,13],[-13,9],[-32,48],[-19,37],[-17,38],[-14,25],[-27,38],[-7,25],[-2,24],[9,49],[13,52],[6,75],[-4,20],[-18,35]],[[49980,58246],[64,-27],[90,-45],[2,-8],[0,-13],[16,0],[26,16],[72,6]],[[84901,47154],[-19,-99],[-20,21],[22,55],[10,17],[7,6]],[[84740,46363],[-9,75],[-10,33],[-8,18],[-3,23],[0,23],[5,11],[34,3],[14,38],[0,47],[-7,15],[-7,7],[-35,-35],[-10,7],[-6,12],[2,51]],[[84700,46691],[29,48],[25,88],[17,34],[40,33],[16,9],[118,48],[28,3],[74,-1],[100,10],[24,7],[32,21],[31,26],[16,21],[18,14],[25,-18],[44,-14],[11,-13],[11,-17],[-50,-92],[-56,-76],[-34,-23],[-35,-15],[-27,-29],[-23,-46],[-29,-26],[-32,-9],[-28,-14],[-26,-27],[-35,-46],[-14,-5],[-15,1],[-29,-17],[-91,-67],[-55,-73],[-40,-63]],[[84454,46462],[45,49],[68,38]],[[84567,46549],[-2,-28],[-7,-44],[-10,-20],[-16,-37],[-10,-8],[-41,8],[-5,-5],[-7,3],[-11,24],[-4,20]],[[78501,58569],[-5,-60],[-15,24],[3,31],[7,13],[10,-8]],[[78451,58749],[1,-14],[-14,10],[-5,-5],[-17,4],[-8,80],[2,19],[11,-6],[17,-40],[8,-27],[5,-21]],[[77335,56395],[-3,-43],[-11,1],[-12,-27],[-5,-4],[-10,86],[11,121],[6,18],[8,-32],[23,-15],[-10,-69],[3,-36]],[[77811,63546],[-2,-34],[7,-7],[9,15],[13,39],[13,22],[14,5],[16,-27],[16,-57],[17,-33],[7,-3],[6,-26],[1,-26],[-8,-53],[-13,-62],[-20,-76],[7,-64],[26,-53],[31,-31],[33,9],[17,15],[14,25],[14,12],[16,3],[53,-18],[16,-18],[2,-35],[-6,-92],[8,-67],[15,-70],[1,-65],[-18,-106],[-15,-101],[-17,-48],[-12,-32],[-4,-21],[1,-20],[12,-30],[12,-39],[3,-38],[-1,-46],[-9,-62],[-31,-137],[-26,-122],[14,-25],[24,-18],[17,-18],[17,12],[37,72],[32,54],[39,54],[2,5],[35,40],[15,36],[9,47],[12,18],[16,-11],[20,20],[24,51],[19,24],[13,-4],[23,-32],[33,-59],[30,-36],[26,-11],[13,-22],[-1,-33],[6,-21],[12,-9],[5,4],[-1,16],[12,23],[25,31],[25,18],[26,5],[17,25],[11,63],[16,48],[14,22],[17,11],[5,15],[-9,20],[1,19],[10,21],[22,8],[34,-3],[39,-20],[45,-38],[30,-13],[14,14],[28,-59],[41,-131],[35,-100],[29,-67],[31,-52],[32,-36],[24,-49],[21,-93],[-16,-128],[-4,-111],[2,-137],[19,-104],[36,-73],[21,-59],[6,-44],[28,-39],[51,-32],[21,-29],[-9,-26],[0,-30],[7,-35],[17,-28],[28,-23],[17,-24],[5,-25],[-1,-40],[-6,-57],[-12,-43],[-17,-30],[-2,-24],[-4,-36],[0,-74],[12,-50],[4,-63],[-7,-51],[-6,-105],[-1,-41],[-6,-34],[-15,-34],[-22,-32],[-27,-28],[-17,-12]],[[79217,60107],[-4,-6],[-12,-32],[-15,-31],[-11,0],[-8,16],[-6,20],[-4,44],[-25,22],[-28,14],[-56,-22],[-46,-12],[-51,15],[-48,-19],[-20,-3],[-23,3],[-22,0],[-22,7],[-39,27],[-15,-2],[-32,-23],[-33,-15],[-31,-11],[-47,-46],[-34,-67],[-10,-47],[-17,-48],[-23,-75],[-30,-72],[-21,-33],[6,-19],[-6,-24],[-32,-10],[-26,-4],[-5,-12],[3,-145],[9,-55],[17,-66],[11,-36],[8,-108],[2,-91],[36,-58],[21,-44],[14,-38],[-5,-25],[-8,-74],[8,-95],[51,-206],[4,-15]],[[78592,58586],[-6,-2],[-8,40],[-26,67],[-8,71],[-30,79],[-16,31],[-6,-26],[-9,-28],[-30,40],[-25,43],[-23,81],[-3,-19],[-6,-17],[-26,64],[-28,51],[-25,19],[-15,17],[-15,27],[-31,28],[-78,-40],[-98,31],[-38,-30],[-16,19],[-9,35],[9,59],[2,125],[12,88],[-6,67],[6,31],[4,43],[-15,17],[-70,34],[-15,27],[-18,-31],[-84,-17],[-31,-26],[-29,-49],[-8,-64],[17,-41],[11,-73],[-30,-158],[-5,-46],[12,-194],[-5,-106],[-16,-71],[-26,-63],[-11,-109],[-20,-50],[-28,-114],[-18,-143],[-13,-66],[-8,-122],[-56,-184],[-13,-104],[-20,-40],[7,-31],[1,-52],[-7,-139],[-2,-115],[8,-62],[27,-122],[-6,-36],[-3,-50],[22,-23],[17,-7],[91,58],[31,-15],[12,-54],[8,-47],[15,-254],[8,-48],[19,-45],[20,-47],[7,8],[1,18],[1,20],[19,-48],[14,-90],[48,-476],[14,-61],[11,-63],[-29,31],[-8,105],[-8,45],[-11,6],[-16,0],[-1,18],[12,35],[-2,41],[-17,34],[-27,-27],[1,-74],[12,-57],[46,-127],[15,-53],[18,-15],[27,8],[32,-54],[25,-50],[63,-77],[38,8],[41,19],[27,-5],[27,-20],[32,-64],[52,-161],[84,-134]],[[78361,55438],[-9,-33],[-4,-50],[-33,-68],[-5,-39],[-13,-50],[-23,-26],[-19,-5],[-12,4],[-8,10],[-13,47],[-7,14],[-6,4],[-42,-33],[-41,-35],[-7,-33],[-11,-37],[-12,-15],[-10,-3],[-9,22],[-15,28],[-12,27],[3,43],[23,64],[3,44],[-3,77],[-6,44],[-7,1],[-11,7],[-32,-7],[-16,50],[-7,54],[-10,20],[-11,12],[-24,-19],[-18,11],[-61,48],[-23,76],[-13,2],[-11,-8],[-4,-18],[-7,-88],[-5,-27]],[[77810,55553],[-69,178],[-48,73],[6,132],[-14,26],[-18,2],[-14,37],[12,79],[-19,-15],[-26,3],[-21,21],[-16,109],[-11,33],[-22,58],[-29,0],[-10,27],[2,70],[-21,43],[-28,36],[-23,20],[-24,114],[-19,28],[-16,22],[-22,-15],[-7,-41],[-15,-39],[-16,5],[-16,22],[-18,114],[-4,69],[5,129],[23,116],[13,185],[20,117],[13,39],[20,159],[39,204]],[[77417,57713],[4,43],[8,49],[6,46],[2,73],[-5,38],[0,22],[8,27],[28,46],[38,76],[46,107],[47,163],[23,95],[10,34],[10,10],[16,33],[11,36],[1,18],[-26,178],[-16,58],[-9,68],[-4,50],[-6,45],[3,43],[-9,26],[-21,34],[-22,50],[-13,82],[0,46],[-13,40],[-5,42],[8,40],[11,34],[-1,152],[-4,46],[-6,81],[-14,61],[-20,72],[-22,59],[-59,107],[-42,71],[-21,66],[-26,74],[-19,54],[-24,68],[-12,93],[-7,99],[4,33],[11,21],[15,18],[12,4],[34,45],[24,-4],[5,10],[2,21],[-3,90],[2,120],[4,98],[5,64],[63,75],[13,33],[6,35],[0,31],[-5,24],[-9,14],[-41,-65],[-8,15],[-19,106],[-8,32],[-11,39],[-13,54],[-2,94],[-9,46],[-50,99],[-23,53],[-31,77],[-37,92],[-38,86],[-18,54],[-6,12],[-2,21],[11,59],[-5,59],[-19,78],[-8,49],[2,19],[-9,7],[-21,-4],[-20,36],[-20,78],[-1,14],[6,-1],[24,-13],[9,2],[17,18],[26,19],[16,6],[5,9],[2,19],[-13,179],[2,37],[25,77],[-3,78],[7,112],[27,77],[21,35],[7,55],[9,12],[17,-5],[36,-41],[15,-2],[22,1],[23,3],[11,4],[74,40],[16,5],[16,-5],[11,2],[12,18],[8,33],[9,103],[5,19],[10,15],[16,10],[18,-1],[24,-20],[15,-1],[17,8],[15,15],[9,18],[5,22],[-4,41],[-11,53],[3,6],[20,-11],[30,-13],[22,3],[15,9],[14,25],[19,23],[17,-5],[14,-21],[33,-36]],[[77798,57428],[-3,-9],[-11,18],[-8,21],[-4,26],[17,-1],[8,-25],[1,-30]],[[77797,57365],[1,-33],[-6,-39],[-25,-23],[-9,31],[2,49],[4,12],[25,-3],[8,6]],[[77683,55599],[-5,-3],[-10,47],[13,67],[13,-82],[-11,-29]],[[77386,56413],[-3,-10],[-14,110],[20,-29],[-3,-71]],[[77307,57057],[-16,-7],[2,32],[4,20],[8,5],[3,-34],[-1,-16]],[[77521,56216],[7,-70],[-10,15],[-8,30],[0,44],[2,7],[9,-26]],[[60971,48286],[21,-123],[-3,-23],[-15,-14],[-8,-1],[-9,20],[-7,41],[-11,-10],[-19,50],[-20,2],[-17,59],[7,51],[-4,88],[21,45],[12,76],[13,-52],[3,-80],[18,-95],[15,-29],[3,-5]],[[61073,49017],[2,-30],[-5,-27],[1,-87],[-1,-58],[-16,-80],[-13,-28],[-12,8],[-9,13],[-8,22],[15,147],[-7,107],[30,-10],[23,23]],[[58541,47123],[-8,51],[-19,77],[-26,109],[-20,89],[-22,96],[-9,70],[-17,78],[-28,96],[-14,37],[-16,33],[-40,65],[-45,64],[-25,43],[-33,128],[-14,47],[-9,81],[-8,85],[3,34],[30,109],[3,31],[-4,42],[-14,87],[-11,56],[-8,49],[-15,81],[-22,111],[-5,49],[0,36],[12,96],[10,99],[0,28]],[[58167,49280],[87,-4],[15,22],[49,63],[56,128],[11,54],[22,82],[23,40],[8,29],[6,44],[7,37],[29,56],[28,42],[-2,18],[-4,12],[5,11],[15,22],[30,20],[6,43],[0,48],[-5,28],[1,31],[-5,17],[-19,5],[-29,24],[-25,10],[-17,14],[-6,11],[-2,29],[4,32],[3,9],[6,34],[-11,20],[-2,10],[5,16],[25,108],[6,15]],[[58487,50460],[11,2],[17,13],[16,6],[14,-5],[9,6],[9,14],[7,42],[6,70],[-3,57],[-13,44],[-3,68],[6,90],[-5,75],[-14,60],[-14,36],[-22,17],[-34,92],[-11,44],[2,28],[9,9]],[[59417,51265],[21,0],[20,-21],[22,-26],[60,-69],[59,-68],[59,-69],[59,-68],[59,-69],[60,-68],[59,-69],[59,-69],[59,-68],[59,-69],[60,-68],[59,-69],[59,-68],[59,-69],[60,-68],[59,-69],[28,-33],[4,-14],[5,-62],[3,-39],[-1,-35],[-16,-58],[-5,-31],[0,-21],[4,-8],[13,-3],[12,-14],[4,-11],[9,-44],[11,-22],[25,-37],[42,-64],[43,-64],[43,-63],[42,-64],[43,-64],[43,-63],[42,-64],[43,-64],[21,-31],[8,-8]],[[60894,49140],[-5,-49],[-22,-117],[-1,-49],[-9,-58],[-8,-38],[-22,-165],[-19,-62],[-25,-145],[-5,-111],[15,-78],[5,-72],[30,-72],[23,-25],[17,-33],[28,-74],[17,-75],[51,-37],[20,-83],[-7,-58],[-24,-48],[-22,-77],[-18,-102],[-1,-155],[13,23],[27,-38],[3,-114],[-28,-134],[-8,-62],[-2,-53],[21,-160],[30,-81],[-2,-26],[-8,-21],[53,-144],[-5,-125],[20,-97],[9,-84],[13,-65],[2,-44],[-16,-50],[39,-12],[22,-41],[11,-39],[28,2],[15,-26],[22,-22],[47,-65],[13,-33],[5,-19],[3,-12]],[[61239,45815],[-32,-50],[-50,-79],[-50,-77],[-47,-52],[-34,-25],[-37,-13],[-34,-33],[-33,-50],[-42,-26],[-51,0],[-53,-36],[-53,-67],[-31,-39],[-50,59],[-38,19],[-44,-2],[-27,-8],[-10,-12],[-8,-36],[-7,-59],[-29,-57],[-51,-55],[-47,-20],[-43,14],[-29,22],[-15,32],[-23,15],[-29,-3],[-28,-22],[-27,-43],[-44,-18],[-59,5],[-31,21],[-5,35],[-26,42],[-47,47],[-35,1],[-23,-45],[-20,-29],[-19,-12],[-16,-1],[-15,9],[-9,3],[-66,5],[-62,-2]],[[59710,45173],[-2,20],[-4,46],[-13,41],[-11,24],[-14,6],[-7,-1],[-6,19],[-7,41],[-11,35],[-14,29],[-8,27],[-3,25],[2,27],[13,67],[4,47],[-1,47],[-7,49],[-15,58],[2,16],[-5,40],[-1,28],[3,34],[-3,45],[-13,97],[0,25],[-13,47],[-41,111],[-2,14],[-65,112],[-25,24],[-10,-21],[-3,-19],[3,-36],[-2,-18],[-3,-8],[-15,1],[-10,4],[-24,30],[-19,8],[-47,-6],[-17,-7],[-13,7],[-25,51],[-29,11],[-27,3],[-43,58],[-10,-3],[-5,-4]],[[61030,47247],[-15,-7],[-6,7],[-9,24],[16,21],[16,39],[36,59],[12,38],[5,8],[-3,-45],[-20,-99],[-18,-7],[-14,-38]],[[69710,75022],[1,-11],[-4,-19],[-58,-32],[-26,-28],[-6,-49],[-7,-14],[-12,-11],[-11,-3],[-18,57],[-20,12],[-29,20],[-56,40],[-29,17],[-56,-26],[-66,-35],[-10,-21],[-7,-23],[1,-17],[4,-23],[-3,-18],[-12,-6],[-19,22],[-16,12],[-8,-29],[-9,-53],[-4,-38],[14,-54],[5,-82],[26,5],[20,0],[37,24],[19,0],[29,-10],[52,-2],[40,4],[10,-2],[9,16],[11,-6],[10,-18],[41,22],[30,3],[19,-6],[11,-7],[19,-53],[15,-34],[19,-11],[57,10],[17,47],[14,12],[24,3],[19,9],[16,20],[21,16],[18,4],[9,-13],[4,-16],[-3,-21],[-1,-22],[12,-15],[35,-3],[17,-14],[1,-26],[-3,-41],[15,-17],[7,-1],[52,43],[14,1],[12,-24],[17,-29],[23,-30],[6,4],[10,34],[20,36],[36,12],[21,11],[21,5],[65,-14],[21,-2],[44,3],[35,7],[28,22],[15,17],[23,10],[29,-1],[16,-5]],[[70453,74567],[1,-30],[-4,-57],[-4,-40],[23,-72],[15,-34],[14,-25],[3,-19],[-3,-16],[-18,-15],[-7,-17],[-3,-18],[6,-21],[11,-68],[13,-53],[19,-26],[28,-17],[15,4],[11,40],[18,30],[16,-2],[25,1],[66,-34],[64,-52],[18,-29],[7,-32],[-18,-75],[1,-47],[4,-51],[15,-38],[13,-65],[3,-53],[6,-16],[4,-19],[-7,-49],[-5,-50],[6,-16],[20,-25],[31,-45],[6,-38],[-11,-24],[-20,-29],[-25,-25],[-8,-11]],[[70802,73289],[-4,6],[-12,26],[-28,41],[-20,21],[-38,-7],[-22,8],[-26,13],[-25,-2],[-16,-24],[-10,-25],[-25,-8],[-35,-19],[-56,-30],[-26,5],[-8,13],[6,17],[19,22],[5,26],[-4,25],[-17,7],[-7,4],[-8,5],[-34,15],[-28,-6],[-47,-31],[-88,-81],[-38,-55],[-28,-82],[-83,-27],[-57,-47],[-59,-78],[-39,-41],[-19,-6],[-19,7],[-19,21],[-18,65],[-16,98],[-11,64],[6,84],[7,94],[7,96],[11,111],[10,40],[0,26],[-8,13],[-18,0],[-27,-15],[-20,-3],[-11,10],[1,52],[14,93],[-21,79],[-57,64],[-48,22],[-40,-20],[-33,-50],[-27,-82],[-28,-68],[-29,-52],[-21,-25],[-7,-10],[-4,-22],[16,-69],[-1,-58],[-18,-48],[-19,-22],[-21,2],[-16,11],[-13,20],[-33,5],[-54,-9],[-37,-23],[-20,-39],[-6,-50],[8,-62],[-4,-48],[-17,-34],[-14,-19],[-10,-5],[-24,29],[-36,62],[-25,34],[-14,5],[-7,-3],[-8,-7],[-5,-8],[-4,-18],[-12,-7],[-16,5],[-15,-5],[-9,-20],[-25,-23],[-44,-27],[-25,-28],[-4,-30],[-6,-14],[-14,5],[-40,-41],[-30,13],[-35,53],[-19,44],[-2,18]],[[69639,74783],[-25,-22],[-15,3],[-11,21],[-8,20],[-2,12],[4,-1],[19,-9],[27,-6],[10,-6],[1,-12]],[[83613,64873],[-17,-68],[-14,-71],[-6,-68],[1,-69],[-4,-63],[-7,-62],[-27,18],[-15,44],[-3,73],[-20,88],[-7,26],[-28,49],[-26,25],[-20,36],[3,-3],[-15,49],[-11,52],[-23,148],[-8,36],[-10,32],[-3,33],[3,36],[10,53],[6,54],[-5,74],[2,73],[8,32],[130,443],[36,94],[22,47],[18,52],[17,66],[22,60],[15,19],[75,54],[23,52],[19,16],[21,-1],[14,-25],[12,-29],[13,-16],[33,-28],[15,-28],[6,-48],[-20,-45],[-10,-41],[-2,-45],[4,-61],[0,-61],[-25,-143],[-27,-90],[-7,-44],[-9,-111],[-16,-111],[-13,-140],[-22,-145],[-13,-61],[-16,-58],[-37,-109],[-42,-90]],[[82890,65968],[12,-38],[-5,-24],[-38,13],[-2,23],[14,-4],[19,30]],[[61766,73219],[0,-8],[-3,-20],[-31,-57],[-43,-78],[-30,-49],[-52,-83],[-38,-18],[-65,-30],[-17,-29],[-17,-46],[-9,-64],[-3,-40],[-2,-75],[16,-77],[14,-75],[2,-49],[-1,-48],[-14,-52],[-16,-71],[-9,-80],[-4,-150],[0,-128],[-2,-21],[-26,-90],[-31,-106],[-15,-24],[-68,-32],[-74,-77],[-84,-87],[-75,-78],[-79,-83],[-83,-85],[-59,-61],[-78,-82]],[[60770,71066],[-72,-78],[-72,-79],[-56,-60],[-83,-95],[-49,-56],[-73,-82],[-63,-72],[-75,-85],[-94,25],[-30,15],[-25,40],[-18,22],[-44,22],[-29,77],[-17,27],[-30,12]],[[59940,70699],[4,27],[16,47],[15,50],[-8,28],[-3,23],[-1,29],[10,27],[-5,33],[-8,33],[-6,16],[0,30],[4,23],[5,36]],[[59963,71101],[13,19],[3,20],[11,20],[16,16],[3,13],[-2,7],[-15,15],[-9,25],[8,38],[5,11],[9,18],[20,28],[16,4],[14,0],[23,-2],[18,-5],[5,7],[-1,9],[-22,23],[-1,18],[5,19],[16,30],[19,23],[9,4],[22,44],[14,50],[-22,122],[-14,19],[-22,17],[-13,3],[-1,8],[17,30],[13,27],[-14,26],[-24,12],[-9,-27],[-32,-2],[-48,0]],[[59993,71790],[-22,129],[-3,55],[1,65],[15,94],[-7,43],[-1,30],[-4,40],[-38,87],[21,160],[15,39]],[[52645,79218],[8,-7],[20,-26],[-4,-43],[-23,-70]],[[52646,79072],[-12,-56],[-1,-44],[2,-20],[4,0],[22,-3]],[[52661,78949],[11,0],[34,-11],[28,-17],[6,-19],[3,-22],[33,-30],[38,-19],[13,6],[47,71],[19,-12],[11,-38],[-1,-19]],[[52903,78839],[-13,-75],[-2,-41],[11,-26],[1,-21],[-3,-19],[-19,-2],[-25,11],[-21,32],[-17,-4],[-14,-8],[-7,-31],[-6,-36],[2,-21],[10,-15],[8,-34],[5,-43],[5,-20],[-5,-8],[-13,-6],[-11,5],[-20,52],[-9,20],[-15,3],[-27,-12],[-41,-29],[-17,0],[-14,6],[-13,24],[-11,47],[-4,30],[-8,-1],[-26,9],[-12,-12],[0,-48],[-3,-61],[-13,-38],[-37,-68],[-13,-29],[-6,-21],[-1,-18],[6,-32],[7,-30],[-6,-18],[-19,-9],[-14,19],[-5,32],[-30,45],[13,37],[-2,10],[-49,19],[-21,28],[-30,50],[-6,21],[2,69],[-2,17],[-4,8],[-14,0],[-20,-24],[-19,-36],[-38,-41],[-4,-8],[13,-40],[-1,-15],[-30,-63],[-6,-21],[-39,-39],[-18,-15],[-54,29],[-15,4],[-25,-20],[-34,-18],[-55,-19],[-21,14],[-9,13]],[[51950,78298],[-5,19],[-14,33],[-16,20],[-11,22],[-14,24],[-9,19],[12,64],[-9,22],[-5,32],[3,22],[-5,5],[-50,12],[-42,-4],[-29,-21],[-25,-35],[-3,-8],[2,-6],[12,-32],[-20,-35],[-32,-26],[-22,-3],[-10,5],[0,37],[18,13],[17,24],[5,34],[2,23],[-17,29],[2,17],[11,34],[6,29],[9,25],[34,42],[35,41],[5,45],[3,54],[5,13],[47,32],[11,13],[6,18],[37,60],[37,60],[7,20],[6,12],[0,10],[-4,7],[-18,5],[-6,19],[19,34],[24,21],[23,0],[9,-9],[-1,-11],[10,-12],[18,-4],[21,4],[22,13],[13,30],[7,23],[34,26]],[[52115,79258],[23,-13],[63,-4],[47,7],[29,18],[36,0],[24,-10],[4,1],[7,3],[6,9],[23,7],[3,8],[-1,8],[-4,4],[-28,-4],[-11,6],[-2,15],[9,25],[20,20],[18,5],[12,-5],[31,-38],[7,-2],[5,7],[6,4],[11,-7],[11,-24],[2,-4],[69,9],[15,0],[47,-42],[48,-43]],[[55298,85158],[-23,-14],[-13,-40],[-19,-7],[-17,-14],[-7,-128],[33,-49],[-18,-7],[-17,-14],[-11,-22],[-12,-47],[-45,-26],[-17,-19],[-25,-44],[-13,-63],[-25,-27],[-29,-6],[17,52],[22,42],[-21,28],[-13,46],[-16,34],[13,39],[-7,63],[2,62],[19,32],[22,25],[34,59],[37,42],[51,19],[23,-17],[10,38],[17,9],[15,-9],[33,-37]],[[54591,84268],[-15,-29],[-12,2],[-9,39],[-2,99],[5,49],[61,178],[27,14],[38,109],[10,48],[17,44],[10,39],[8,15],[17,-7],[8,-7],[-18,-23],[2,-29],[-1,-13],[-48,-128],[-12,-83],[-17,-21],[-69,-296]],[[53163,85850],[23,-73],[20,-10],[28,19],[19,53],[11,81],[13,76],[-15,81],[-17,72],[-1,21],[43,60],[13,49],[14,47],[16,16],[23,4],[27,9],[34,31],[30,42],[24,38],[8,76],[0,39],[10,28],[10,55],[-9,55],[-31,83],[-36,117],[-5,63],[16,12],[32,11],[60,3],[6,7],[6,28],[13,38],[15,28],[10,39],[4,36],[-34,54],[-45,55],[-30,18],[-54,46],[-38,39],[22,148],[16,109],[3,27],[0,41],[-52,177],[2,39],[5,35],[-6,61],[-3,54],[9,16],[21,30],[-20,47],[-2,4],[-38,117],[59,115],[-11,60],[36,44],[64,99],[36,56],[7,9],[29,25],[54,29],[60,14],[27,0],[103,-20],[80,-15],[12,15],[17,32],[22,45],[1,50],[-7,73],[-12,44],[-57,29],[-62,39],[76,124],[53,86],[66,129],[21,54],[15,22],[19,198],[13,56],[11,29],[0,30],[-7,50],[-19,114],[104,14],[34,7],[32,14],[61,35],[31,31],[-17,106],[37,36],[91,125],[98,119],[46,46],[5,22],[4,35],[-21,56],[-22,35],[-43,65],[19,46],[31,9],[42,18],[32,39],[4,5],[55,154],[107,77],[43,43],[67,-32],[97,-48],[44,71],[14,26],[15,39],[-6,67],[-3,87],[5,34],[39,16],[21,4],[108,-36],[28,1],[51,-5],[57,-16],[120,-42],[50,-17],[28,-4],[24,20],[51,50],[-76,37],[50,38],[26,38],[22,46],[8,55],[-3,29],[-16,20],[-46,50],[105,7],[36,2]],[[55728,91610],[76,-33],[3,-7],[0,-17],[3,-18],[74,-45],[21,-23],[45,-37],[12,-19],[42,-23],[30,-24],[35,-20],[41,-31],[55,-25],[46,-8],[117,-42],[20,-13],[33,-30],[35,-34],[23,-69],[38,-4],[10,-24],[33,-41],[46,-36],[-2,-12],[-36,-34],[-4,-45],[3,-58],[12,-47],[-2,-14],[-9,-16],[-10,-26],[-4,-22],[1,-11],[3,-6],[20,0],[34,-5],[20,-10],[12,-55],[-4,-10],[-29,-25],[-9,-19],[-1,-29],[6,-31],[9,-36],[23,-37],[31,-40],[20,-32],[9,-23],[4,-16],[-14,-20],[-12,-40],[-3,-45],[-5,-30],[-27,-41],[-19,-14],[-5,-22],[-3,-36],[6,-44],[2,-29],[6,-22],[8,-14],[43,-25],[25,-50],[15,-41],[29,-106]],[[56709,89749],[-73,-13],[-56,26],[-27,-13],[-48,-1],[-55,-10],[-19,-21],[-14,-8],[-51,29],[-48,49],[-35,-37],[-23,-7],[-20,33],[-18,6],[-10,-12],[-8,-29],[-14,-24],[-3,-14],[-2,-60],[-4,-14],[-46,8],[2,-16],[10,-8],[5,-10],[-17,-13],[-47,2],[-4,-14],[13,-22],[-10,-19],[-10,-8],[-55,-12],[-32,3],[-9,-12],[-3,-16],[6,-16],[14,-9],[5,-10],[-1,-21],[-12,-4],[-33,38],[-10,-2],[7,-20],[19,-22],[11,-22],[10,-26],[-2,-21],[-41,-65],[-37,-41],[-27,-37],[-16,-39],[19,-20],[20,-29],[15,-55],[17,-49],[35,-46],[-7,-27],[-8,-21],[-58,-47],[-66,-70],[-71,-178],[-24,-24],[-62,-30],[-23,-30],[-46,-35],[-81,-29],[-37,-42],[-16,-43],[-19,-3],[-18,17],[-24,12],[-3,-28],[1,-21],[-39,31],[-19,-28],[-14,-47],[-56,-63],[-61,11],[-6,-11],[16,-8],[2,-10],[-11,-5],[-17,0],[-25,-12],[-17,1],[-8,-30],[-13,-37],[-34,-15],[-18,-3],[-9,-20],[53,-5],[-4,-17],[-1,-17],[-6,-19],[-60,-27],[-9,-21],[-12,-13],[-27,0],[1,13],[4,13],[-39,-1],[-12,31],[-8,-8],[4,-25],[11,-25],[11,-38],[-9,-24],[-10,-11],[7,-11],[21,-8],[9,-15],[-25,-13],[-32,-44],[-32,-1],[-20,-28],[-21,0],[-17,18],[-27,15],[-9,-27],[-2,-20],[16,-53],[29,-41],[28,-18],[-20,-12],[-15,-26],[-17,-83],[-10,-33],[-10,-57],[6,-49],[6,-24],[13,-32],[-36,4],[-39,19],[6,-39],[-24,-47],[4,-40],[5,-27],[-7,-44],[11,-14],[6,-26],[-10,-20],[5,-17],[1,-59],[8,-92],[-3,-20],[21,-80],[-5,-29],[-3,-36],[31,-34],[27,0],[27,1],[10,-9],[11,-24],[8,-29],[23,2],[36,24],[23,6],[16,-46],[42,-59],[24,-27],[42,-14],[43,-48],[-6,-58],[18,-20],[52,-22],[18,-31],[9,-27],[14,-21],[16,-66],[-6,-41],[-21,-14],[-49,-44],[-22,-32],[-17,-20],[-49,-44],[-18,-8],[-17,-22],[-16,-10],[-15,6],[-55,-41],[4,-18],[42,-7],[22,9],[17,20],[18,5],[16,-4],[18,16],[14,7],[14,-8],[16,-39],[-33,-20],[-23,-1],[-12,-64],[-14,-27],[-10,-13],[-52,-27],[-35,-35],[-40,-27],[-18,6],[-26,-29],[-59,-33],[-31,-45],[-68,-40],[-34,-32],[-95,-2],[-89,7],[-29,-16],[29,-4],[20,-16],[25,7],[57,-8],[29,-8],[38,-54],[-28,-19],[-48,-14],[18,-76],[15,-51],[-20,-31],[-1,-140],[-27,-2],[-12,-58],[9,-30],[-1,-69],[6,-42],[13,-39],[-6,-41],[-43,-95],[1,-44],[8,-27],[6,-42],[-20,-81],[-14,-69],[-16,-57],[-37,-69],[-18,-51],[-43,-160],[-21,-32],[-26,-24],[-29,22],[-27,13],[-32,-2],[-51,-18],[-77,12],[-74,-6],[-19,-16],[11,-58],[-28,-8],[-26,17],[-24,-20],[-20,-22],[-39,-51],[-13,-32],[-3,-59],[20,-54],[18,-62],[-46,-76],[-26,-2],[-76,20],[-135,-47],[-121,38],[15,40],[0,30],[6,45],[4,47],[-1,32],[-9,33],[-29,44],[-68,147],[-19,62],[-14,26],[10,1],[55,-33],[13,4],[13,13],[-16,47],[-14,22],[-10,32],[33,9],[23,-2],[17,37],[-10,58],[-25,19],[-21,7],[-40,93],[-42,48],[-75,184],[-27,127],[-26,-12],[-12,55],[-9,53],[-2,38],[-40,22],[-1,27],[-8,120],[-42,16],[-28,68],[-5,128],[-28,23],[-23,-7],[1,32],[5,30],[-13,117],[-4,108],[-11,32],[-6,38],[5,33],[8,19],[28,5],[26,-29]],[[55321,85208],[-5,-36],[-15,3],[-13,26],[27,41],[40,-2],[14,-9],[-48,-23]],[[55115,85846],[-12,-6],[-6,2],[7,27],[6,11],[19,11],[5,-2],[-19,-43]],[[55165,86100],[-7,-19],[-7,23],[3,5],[4,23],[14,12],[21,-7],[0,-6],[-20,-19],[-8,-12]],[[58874,36890],[6,-8],[25,-27],[2,-53],[-2,-60],[-5,-38],[2,-38],[8,-59],[8,-41],[2,-184]],[[58920,36382],[-9,9],[-16,7],[-8,-3],[-8,-83],[-6,-122],[4,-77],[-60,-2],[-76,8],[-54,33],[-59,73],[-35,113],[-15,71],[-21,4],[-4,12],[-2,87],[1,91],[4,25],[39,112],[25,69],[15,68],[33,79],[36,51],[13,7],[9,-2],[62,-70],[65,-66],[14,8],[7,6]],[[34956,54930],[-23,-41],[-25,-58],[-34,-100],[2,-32],[-8,-25],[-2,-45],[3,-51],[8,-33],[4,-62],[-6,-57],[2,-33],[7,-52],[6,-55],[-1,-23],[8,-18],[8,-18],[-3,-49],[27,-88],[16,-39],[23,-37],[9,-37],[13,-44],[8,-5],[4,-18],[-4,-34],[-1,-47],[-15,-55],[-35,-100],[-4,-24],[9,-83],[-5,-68],[-2,-33],[-17,-60],[-40,-145],[-23,-27],[-14,-42],[-9,0],[-10,-4],[-4,-5]],[[34828,53183],[-12,0],[-10,19],[-2,22],[-5,25],[-12,8],[-24,-9],[-7,6],[-14,27],[-11,30],[-3,28],[-8,-3],[-18,-25],[-12,-6],[-9,7],[-11,-2],[-28,-27],[-16,-7],[-11,-27],[-76,-13],[-20,-7],[-45,48],[-12,15],[-6,3],[-5,-3],[-5,-11],[-8,-60],[-6,-16],[-12,-14],[-12,-24],[-2,-23],[18,-13],[15,-45],[16,-36],[13,-33],[-2,-36],[-2,-51],[-10,-18],[-15,-8],[-58,25],[-44,22],[-19,5],[-8,5]],[[34310,52961],[-11,19],[-11,18],[-18,6],[-22,12],[-15,45],[-17,64],[-5,29],[-13,28],[-13,40],[-3,36],[-10,32],[-5,11],[-7,45],[-2,16],[-3,2],[-5,14],[-11,47],[-2,12],[-4,4],[-12,34],[-9,11],[-4,17],[1,47],[-5,23],[-2,43],[0,17],[-5,20],[-8,12],[-1,32],[-2,77],[-4,14],[-34,-1],[-3,-8],[-15,-4],[-16,-1],[-15,10],[-12,14],[-3,17],[2,54],[-20,41],[-31,50],[-9,64],[-12,40],[-34,84],[-7,57],[0,41],[13,37],[17,65],[6,60],[6,31],[8,40],[8,53],[-6,32],[-10,32],[-3,23],[10,35],[10,24],[11,4],[14,15],[12,21],[17,5],[22,2],[44,0],[22,9],[7,17],[-1,33],[12,29],[11,13],[5,9],[1,11],[-3,10],[-5,7],[-12,2],[-11,51],[7,22],[10,41],[2,23],[15,37]],[[34112,55039],[4,-12],[11,67],[2,53],[8,54],[14,63],[24,31],[140,-32],[64,-30],[82,-52],[12,-55],[0,55],[-4,56],[23,40],[50,14],[75,-19],[64,23],[87,-3],[133,-45],[59,-31],[25,-28],[4,-50],[-2,-64],[-10,-62],[-21,-82]],[[58566,53853],[-6,25],[-6,23],[-11,29],[-16,12],[-14,-6],[-17,-6],[-8,17],[-1,40],[-5,37],[-8,28],[-24,28],[-63,56],[-48,113],[-25,52],[-17,34],[-25,89],[-29,61],[-35,28],[-23,-14],[-23,-65],[-45,-61],[-20,-3],[-26,34],[-33,23],[-59,11],[-24,-29],[-32,-47],[-27,-28],[-17,-4],[-15,12],[-18,6],[-15,1],[-32,42],[-16,32],[-11,30],[-18,21],[-21,17],[-15,27],[-7,34],[-12,43],[-15,39],[-48,70],[-15,41],[-10,41]],[[57611,54786],[-19,44],[-21,60],[-7,87],[-1,70],[-4,32],[-9,33],[-11,27],[-16,31],[-40,45],[-40,52],[-20,31],[-36,11],[-23,30],[-18,65],[-8,53],[-18,41],[-8,29],[-5,34],[15,104],[-21,37],[-32,47],[-23,52],[-14,48],[-41,63],[-90,95],[-51,60],[-29,54],[-24,53],[-3,22],[16,53],[3,43],[-13,48],[-54,91],[-43,99],[-32,31],[-78,28],[-23,11],[-23,19],[-23,45],[-8,53],[11,84],[-7,26],[-13,7]],[[56707,56834],[4,18],[14,41],[24,27],[65,42],[3,16],[2,53],[5,26],[22,73],[3,29],[1,63],[3,29],[7,21],[17,37],[6,22],[3,48],[-2,94],[9,38],[41,86],[11,38],[3,34],[0,35],[2,35],[12,33],[11,11],[30,10],[20,-7],[143,59],[16,-8],[8,-35],[-1,-55],[3,-27],[7,-19],[23,-27],[15,-44],[9,-16],[23,-31],[106,-253],[30,-24],[29,9],[57,52],[29,14],[202,-15],[22,8],[1,-2],[31,-127],[15,-29],[221,-1],[-4,36],[2,40],[26,52],[13,26],[6,9],[34,38],[33,25],[64,29],[24,46],[13,42],[0,82],[9,14],[15,19],[74,74],[13,16],[131,-172],[73,-136],[5,-7],[3,-2],[4,4],[4,7],[5,4],[3,2],[32,1],[59,7],[20,16],[119,243],[31,78],[8,16],[17,55],[18,95],[4,11],[131,227],[4,18],[1,15],[-19,76],[-5,39],[0,60],[3,93],[-1,59],[0,7],[-2,9],[-1,3],[-73,168],[185,2],[0,14],[0,7],[0,7],[-4,20],[-2,26],[0,8],[0,7],[1,14],[0,7],[0,4],[0,3],[0,3],[1,3],[132,-4],[-1,-47],[-16,-112],[0,-66],[-4,-77],[-1,-6],[-3,-16],[-4,-10],[-3,-9],[-1,-3],[-2,-6],[0,-8],[28,-427],[-1,-11],[-1,-7],[-8,-27],[-1,-9],[-1,-6],[3,-5],[61,-46],[3,-3],[3,-4],[22,-55],[120,-202],[4,-10],[12,-64],[2,-10],[0,-15],[0,-12],[-3,-38],[1,-17],[2,-12],[2,-13],[0,-4],[-1,-3],[0,-6],[-18,-74],[-6,-52],[-2,-44],[1,-25],[2,-17],[1,-4],[1,-2],[1,-2],[1,-1],[51,0],[1,0]],[[59466,57293],[-1,-24],[2,-116],[2,-102],[3,-167],[0,-43],[-2,-55],[-6,-21],[-15,-31],[-18,-28],[-47,-7],[-39,1],[-27,6],[-38,3],[-36,-6],[-13,-24],[-19,-83],[-28,-122],[-14,-51],[-4,-30],[4,-18],[19,-26],[40,-36],[46,-21],[34,-9],[24,-10],[18,-12],[66,-93],[21,-43],[12,-38],[2,-41],[10,-41],[38,-81],[21,-47],[57,-61],[22,-68],[21,-33],[20,-36],[11,-53],[25,-154],[16,-81],[17,-66],[7,-108],[13,-48],[14,-58],[23,-53],[25,-41],[4,-11]],[[59796,55006],[-51,-104],[-57,-116],[-66,-135],[-73,-147],[-56,-116],[-56,-114]],[[56707,56834],[-28,15],[-35,11],[-67,13],[-27,19],[-12,29],[4,73],[-7,16],[-11,13],[-7,32],[1,38],[36,85],[7,45],[6,158],[4,55],[-3,65],[-28,119],[-25,83],[-40,123],[-16,41],[-81,169],[-9,25],[-20,72]],[[56349,58133],[10,63],[12,94],[1,43],[-5,45],[-21,33],[-18,4],[-8,17],[-16,25],[-15,19],[-14,37],[-10,52],[7,184],[-5,25],[-20,7],[-5,13],[1,36],[-12,105],[-12,87],[7,48],[-18,66],[-33,28],[-31,-9],[-33,-13],[-20,4],[-14,12],[-10,24],[-5,28],[5,43],[18,79],[23,64],[46,59],[13,31],[7,35],[1,40],[-3,42],[-5,38],[-14,51],[-13,60],[0,40],[6,29],[13,35],[24,39],[6,8],[16,21],[13,15],[34,42],[8,19],[-3,24],[-8,20],[-14,27],[-2,33],[-4,57],[-7,37],[-5,26],[9,20],[14,28],[18,17],[28,15],[11,19],[3,38],[-1,37],[10,27],[14,57],[10,27],[18,30],[19,38],[8,43],[2,43],[-10,127],[21,54],[27,44],[38,-3],[60,9],[40,19],[29,-1],[66,-24],[5,6],[2,5],[3,34],[0,85],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,256],[0,257]],[[56661,63073],[0,72],[0,72],[0,72],[0,72],[68,0],[69,0],[68,0],[69,0],[1,1],[0,1],[1,1],[1,1],[0,287],[0,287],[0,287],[0,287]],[[56938,64513],[107,0],[106,0],[106,0],[106,0],[106,0],[106,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[106,0],[106,-1],[106,0],[33,0],[14,5],[27,107],[12,8],[17,-6],[7,-25],[-6,-37],[-9,-51],[52,0],[91,0],[91,0],[92,0],[91,0],[91,0],[91,0],[91,0],[91,0],[91,0],[92,0],[91,0],[91,0],[91,0],[91,0],[91,0],[91,1]],[[60241,64514],[4,-132],[12,-105],[43,-150],[36,-81],[13,-44],[1,-21],[-1,-19],[-11,22],[-19,15],[-3,-70],[5,-50],[4,-94],[15,-101],[-11,-93],[2,-158],[19,-190],[-4,-120],[32,-283],[30,-156],[17,-39],[19,-20],[36,-14],[53,-79],[43,-85],[15,-44],[20,-48],[14,9],[9,12],[13,-39],[67,-84],[10,-39]],[[60724,62214],[-24,-38],[-28,-66],[-7,-26],[-3,-16],[-3,-20],[-8,-19],[-16,-27],[-6,-12],[-4,-18],[-9,-12],[-11,-1],[-9,-8],[-14,-12],[-20,6],[-21,-12],[-8,-14],[-16,-13],[-17,-3],[-5,-4],[-16,-22],[-19,-30],[-23,-19],[-8,-6],[-10,-21],[-16,-103],[-12,-27],[-19,-3],[-26,0],[-22,-9],[-30,12],[-14,-2],[-4,-22],[-6,-89],[1,-38],[-12,-45],[-13,-56],[5,-95],[2,-94],[-24,-142],[-4,-32],[-24,-113],[-13,-41],[-31,-210],[-13,-65],[-26,-68],[6,-110],[6,-118],[6,-110],[9,-166]],[[60145,60055],[-22,-155],[1,-84],[-16,-124],[-12,-58],[-11,-34],[-10,-35],[-17,-78],[-14,-102],[-7,-105],[0,-61],[-3,-28],[-5,-17],[-33,-12],[-46,-12],[-25,-14],[-17,-22],[-21,-49],[-40,-137],[-22,-83],[-33,-115],[-39,-81],[-8,-39],[-7,-73],[-14,-116],[-13,-83],[2,-66],[-12,-115],[2,-56],[-14,-31],[-18,-30],[-13,-7],[-27,34],[-20,34],[-8,9],[-18,-21],[-21,-32],[-25,-75],[-19,-75],[11,-159],[-1,-35],[-5,-38],[-30,-119],[-7,-37],[-11,-72],[-11,-124],[0,-30]],[[72213,57390],[-17,-6],[-14,38],[-3,17],[3,11],[4,6],[5,-2],[6,-36],[16,-28]],[[72187,57056],[8,-43],[-23,29],[-15,25],[-6,20],[32,-22],[4,-9]],[[72217,57495],[26,-3],[29,2],[20,-8],[34,-89],[93,-159],[51,-162],[4,-35],[7,-30],[12,-9],[11,-14],[50,-156],[6,-31],[-1,-34],[3,-25],[14,-13],[16,-6],[11,-24],[14,-124],[0,-39],[3,-17],[64,-193],[4,-24],[-1,-18],[2,-15],[12,-34],[20,-92],[9,-21],[12,-81],[1,-154],[-4,-69],[-12,-84],[-14,-81],[-16,-59],[-21,-50],[-71,-106],[-21,-22],[-93,-66],[-68,-63],[-64,-17],[-63,34],[-48,83],[-24,122],[-17,127],[-25,141],[-18,435],[-9,122],[-15,155],[2,67],[10,64],[0,-141],[9,-17],[7,18],[7,146],[5,62],[25,161],[1,29],[-5,61],[1,30],[38,113],[9,66],[5,67],[-2,73],[-7,72],[31,-23],[17,-25],[17,-17],[14,9],[16,0],[-11,39],[-36,36],[-59,22],[-18,29],[-7,25],[3,29],[5,11]],[[50442,74119],[-6,-7],[-18,7],[-28,0],[-1,23],[4,16],[5,17],[17,-33],[27,-6],[0,-17]],[[50873,74763],[27,-19],[28,17],[15,-5],[15,-9],[3,-37],[-13,-41],[-18,-41],[-16,-45],[-13,-52],[-25,-31],[-23,-18],[-48,38],[-28,10],[-8,14],[-7,58],[-12,18],[-19,8],[-16,-14],[-21,-31],[-12,31],[-17,5],[-7,19],[0,23],[115,139],[33,31],[71,36],[11,-5],[-9,-22],[0,-9],[9,-10],[-2,-17],[-9,-14],[-4,-27]],[[51192,74793],[-5,-7],[-85,67],[-28,7],[-7,10],[1,35],[2,15],[57,7],[46,-24],[25,-67],[2,-11],[-8,-32]],[[50401,74261],[-10,-35],[-42,12],[-10,15],[9,40],[13,5],[0,28],[13,29],[60,23],[14,-20],[3,-28],[-36,-61],[-14,-8]],[[49501,76847],[1,-20],[10,-28],[12,-10],[24,-14],[18,-2],[25,-7],[17,-16],[1,-24],[-5,-28],[-10,-25],[-6,-20],[6,-11],[9,-9],[9,-2],[7,3],[5,15],[9,19],[5,2],[0,-10],[4,-13],[31,-23],[67,-41],[26,-1],[22,-5],[6,-17],[43,-64],[10,2],[19,-1],[23,5],[16,12],[11,-2],[12,-13],[14,-10],[19,-21],[16,-26],[11,-9],[67,18],[15,-16],[16,0],[18,4],[39,-8],[32,2],[3,7],[3,57],[5,21],[7,5],[19,-4],[68,-34],[28,-21],[27,-17],[24,-2],[15,-11],[22,-55]],[[50396,76379],[-3,-27],[1,-10],[3,-19],[-1,-21],[6,-14],[10,-2],[14,5],[14,8],[26,23],[7,4]],[[50473,76326],[43,-27],[19,-17],[7,-20],[9,-19],[13,-3],[18,19],[29,20],[48,-18],[54,-26],[23,-3],[1,13],[4,18],[9,8],[13,3],[19,9],[21,16],[21,6],[23,-11],[28,-10],[17,0]],[[50892,76284],[7,-36],[14,-14],[5,-31],[-24,-17],[-15,-2],[-4,-54],[6,-16],[14,-14],[4,-16],[3,-80],[-28,-48],[-40,-54],[-193,-173],[-46,-84],[-17,-19],[-143,-53],[-101,-57],[-48,-20],[-60,-98],[-28,-40],[23,-11],[26,-47],[-9,-21],[-38,-32],[-17,-10],[-9,5],[-9,-4],[-64,-170],[-58,-123],[-32,-53],[-32,-79],[-70,-206],[-1,-59],[35,-204],[19,-54],[28,-45],[53,-38],[12,-38],[-18,-36],[-52,-64],[-91,-86],[-39,-68],[-8,-66],[-27,-30],[-10,-92],[-16,-61],[-4,-20],[-17,-47],[-2,-33],[28,-47],[-14,-20],[-14,-9],[-32,-5],[-108,-6],[-87,-100],[-44,-89],[-39,-165],[-48,-98],[-21,-18],[-33,43],[-41,7],[-40,-15],[-20,-33],[-33,-19],[-32,16],[-68,9],[-31,-2],[-48,-27],[-41,18],[-69,9],[-150,-21],[-18,-11],[-19,-41],[-48,-70],[-72,-3],[-66,-45],[-16,-29],[-28,-79],[-9,-58],[-5,-1],[-7,14],[-11,-4],[-5,-45],[-25,-20],[-20,-7],[-51,36],[-42,54],[-22,3],[-36,84],[-16,54],[-11,57],[2,22],[-3,19],[-32,23],[-8,53],[24,68],[19,30],[12,8],[-29,-3],[-21,-44],[-27,71],[-109,138],[7,31],[-1,18],[-18,-37],[-13,-10],[-56,6],[-64,-17]],[[47942,73259],[-17,144],[-8,55],[-2,35],[17,82],[18,34],[24,69],[30,58],[31,13],[14,9],[11,44],[7,38],[-5,4],[-36,-8],[-66,159],[2,26],[8,38],[6,47],[1,38],[17,32],[26,32],[22,46],[11,46],[3,41],[-13,29],[-36,16],[-37,117],[-8,73],[-8,8],[-23,33],[-22,62],[-3,10],[23,11],[93,1],[20,13],[3,5],[17,49],[18,80],[4,49],[-6,20],[-31,49],[-1,15],[5,23],[18,25],[25,28],[14,25],[-3,19],[-8,20],[-1,18],[5,23],[1,79],[4,20],[-5,71],[-6,58],[-20,75],[4,17],[9,14],[29,26],[24,62],[35,51],[45,41],[31,46],[13,35],[9,10],[-3,16],[-6,24],[-18,23],[-23,13],[-26,0],[-16,4],[-4,19],[1,49],[-1,49],[-5,22],[-12,17],[-24,-5],[-20,14],[-16,3],[-9,-10],[-45,3],[-19,8],[-14,9],[-8,-5],[-5,-10],[-1,-15],[-3,-19],[-17,-18],[-37,-18],[-30,2],[-28,12],[-9,10],[-13,8],[-57,-10],[-7,7],[-19,-18],[-29,-22],[-16,-1],[-6,4],[-2,10],[-12,34],[3,18],[23,53],[-2,12],[-10,17],[-8,25],[-3,12],[-15,2],[-15,-13],[-60,-26],[-14,-9],[-26,-26],[-27,-39]],[[47561,76002],[-20,-8],[-8,12],[-2,91],[32,60],[22,37],[-10,7],[-24,-1],[1,29],[12,13],[11,31],[-13,14],[-10,20],[0,53],[3,22],[-3,23],[-49,-32],[-13,5],[0,40],[27,60],[3,18],[-32,9],[-24,30],[-14,26],[-16,38],[0,34],[16,79],[23,24],[20,14],[42,55],[57,-10],[36,11],[32,28],[19,7],[29,24],[-1,33],[-10,25],[9,23],[33,29],[37,37],[42,7],[43,34],[29,-22],[25,7],[29,-25],[38,-58],[56,-24],[45,19],[78,3],[40,-7],[70,14],[40,-5],[64,29],[51,-36],[97,-17],[58,-30],[162,-49],[59,-1],[82,28],[35,21],[32,-13],[47,24],[23,-4],[29,-35],[104,-46],[27,39],[20,9],[74,-24],[75,-49],[39,-3],[57,13],[46,32],[9,4]],[[45462,68190],[-23,-131],[-22,-52],[-13,-17],[-32,-14],[-38,82],[-19,83],[-11,26],[17,21],[25,-3],[54,17],[11,7],[55,84],[55,10],[1,-27],[-60,-86]],[[46190,68497],[-19,-38],[-21,13],[10,83],[9,25],[39,36],[32,15],[9,38],[11,15],[11,-23],[-9,-26],[-6,-84],[-22,-26],[-44,-28]],[[46056,68069],[-38,-65],[-38,15],[-6,11],[38,16],[34,50],[22,110],[35,121],[7,52],[13,20],[19,2],[8,-4],[9,-27],[0,-61],[-10,-102],[-18,-89],[-75,-49]],[[45722,68057],[-2,-45],[6,-44],[-1,-69],[-13,-36],[-35,-37],[-26,6],[-15,15],[-27,60],[-1,61],[25,41],[10,51],[64,-9],[6,9],[4,3],[5,-6]],[[45226,67984],[-11,-5],[-14,15],[-14,45],[10,34],[8,16],[13,-3],[23,-25],[8,-25],[0,-16],[-23,-36]],[[45031,67862],[-27,-94],[-34,35],[-8,12],[-7,19],[33,4],[33,47],[10,-23]],[[45046,68256],[-7,-5],[-7,46],[-33,111],[20,50],[37,1],[15,-34],[5,-36],[-7,-21],[2,-42],[-4,-27],[-21,-43]],[[85175,73606],[9,11],[0,16],[0,51],[25,36],[34,73],[17,40],[20,38],[22,25],[22,11],[35,5],[66,-4],[13,4],[46,4],[11,-7],[33,-4],[38,5],[18,11],[18,18],[15,33],[15,62],[17,48],[10,9]],[[85659,74091],[68,-258],[64,-166],[56,-121],[79,-232],[23,-124],[2,-77],[13,-106],[-11,-60],[3,-96],[-5,-49],[-9,-36],[-1,-70],[3,-37],[1,-49],[6,-19],[9,-7],[14,18],[18,7],[-3,-59],[-22,-150],[-18,-109],[-25,-95],[-32,-87],[-38,-34],[-27,-13],[-51,-4],[-43,15],[-36,-11],[-15,-18],[-11,-31],[8,-48],[-1,-36],[-16,3],[-31,21],[-34,2],[-16,11],[-16,51],[-17,-2],[-29,-31],[-44,-6],[-15,-17],[-5,-21],[6,-26],[22,-35],[-7,-36],[-23,-18],[-19,44],[-12,43],[-13,2],[-20,-12],[-4,-46],[10,-32],[15,-36],[-22,-42],[-5,-30],[-16,-21],[-42,47],[6,34],[18,33],[3,34],[-6,20],[-61,-86],[-37,-96],[-19,7],[-9,25],[-11,10],[-40,-63],[-8,-49],[-14,-2],[-7,21],[0,45],[-7,37],[-41,56],[-19,48],[10,27],[34,-15],[28,2],[-6,23],[-9,11],[19,12],[15,27],[-13,7],[-19,-15],[-16,7],[-6,63],[-20,65],[-10,63],[19,36],[10,56],[18,81],[9,27],[25,19],[9,21],[-14,11],[-22,9],[1,24],[15,12],[16,26],[32,32],[10,59],[-9,15],[-20,14],[5,30],[8,23],[-3,14],[-24,38],[-16,36],[5,40],[-4,60],[2,51],[-1,28],[-11,62],[-5,63],[-16,-10],[-12,-15],[-44,22],[-14,1],[-5,47],[15,57],[38,50],[21,6],[16,22],[26,7],[30,-34],[27,-7],[15,-59],[9,-12],[2,22],[22,25],[5,19],[-4,11],[-25,10],[-23,73],[-3,32],[-9,20],[13,59],[-26,67],[-13,21],[2,59],[-14,39],[-8,21],[-4,36],[4,16],[12,6],[3,15]],[[85761,71888],[-27,-36],[-35,48],[-8,26],[26,39],[23,44],[15,3],[6,-124]],[[85573,71892],[-3,-56],[-20,-3],[-11,36],[-13,-17],[-6,-1],[-10,45],[-2,36],[23,26],[14,-16],[20,-8],[8,-42]],[[85064,71641],[-18,-9],[-10,20],[-7,6],[4,26],[29,51],[6,17],[27,-10],[10,-27],[-13,-42],[-28,-32]],[[85144,73580],[-2,-76],[-15,4],[-10,7],[-5,15],[-10,71],[11,29],[23,-23],[8,-27]],[[85208,71626],[5,-27],[-22,5],[-12,26],[1,23],[14,3],[14,-30]],[[85499,71782],[-3,-18],[-14,27],[14,30],[3,-39]],[[85115,72864],[-4,-38],[-18,25],[-5,82],[19,-24],[8,-45]],[[85047,71849],[-4,-14],[-12,4],[-12,40],[-5,31],[-13,18],[20,27],[25,-49],[1,-57]],[[86365,73432],[-13,-18],[-15,18],[-2,18],[8,15],[18,10],[9,-14],[-5,-29]],[[85090,70981],[-13,-13],[-11,8],[-3,6],[-14,33],[-4,17],[10,32],[38,53],[99,51],[18,2],[39,-21],[9,-42],[-7,-35],[-9,-24],[-46,-40],[-35,-19],[-71,-8]],[[58690,38938],[2,-30],[2,-14],[13,-80],[20,-119],[13,-111],[18,-151],[0,-84],[4,-33],[16,-41],[20,-70],[7,-39],[7,-30],[21,-56],[16,-85],[14,-113],[12,-54],[4,-27],[5,-49],[0,-102],[0,-118],[0,-133],[1,-109],[-2,-55],[1,-157],[-18,-82],[2,-64],[6,-42]],[[58920,36382],[24,4],[42,-17],[35,2],[31,2],[52,3],[30,0]],[[59134,36376],[-10,-133],[-40,-208],[-13,-95],[-34,-341],[-44,-172],[-25,-71],[-72,-126],[-20,-25],[-18,-17],[-31,-14],[-123,-254],[-46,-123],[-41,-178],[-40,-98],[-60,-210],[-53,-161],[-51,-147],[-88,-203],[-39,-59],[-27,-26],[-70,-118],[-99,-189],[-75,-168],[-113,-190],[-65,-84],[-99,-164],[-27,-24],[-111,-152],[-79,-93],[-129,-107],[-51,-30],[-122,28],[-51,-15],[-43,-65],[-4,-93],[-18,-14],[-27,4],[-85,39],[-46,-7],[-27,-50],[-22,-63],[-64,-3],[-115,65],[-135,40],[-31,4],[-65,-48],[-23,-7],[-95,10],[-53,31],[-51,0],[-38,-26],[-47,-8],[-127,-175],[-66,0],[-56,-21],[-28,1],[-53,24],[-19,-1],[-30,-11],[-30,-31],[-68,-13],[-26,-27],[-115,-159],[-26,6],[-22,11],[-59,1],[-68,86],[-26,-6],[7,26],[2,45],[-14,32],[-10,14],[-26,-3],[-14,39],[-41,3],[-14,-9],[-20,-2],[-1,39],[1,24],[-1,38],[-5,46],[-16,15],[-12,6],[-28,-3],[-20,-5],[-10,-14],[-10,-33],[0,-103],[-15,29],[-16,62],[-5,66],[6,78],[31,29],[-3,53],[-6,45],[-35,117],[-13,54],[-29,36],[-23,87],[-23,32],[-9,61],[-22,49],[-8,77],[12,44],[20,24],[20,-38],[24,15],[35,56],[21,85],[1,135],[-5,85],[-28,219],[-13,50],[-63,157],[-72,210],[-92,330],[-44,199],[-66,401],[-59,227],[-72,212],[-9,14]],[[54568,35358],[11,26],[39,49],[17,13],[10,-6],[9,13],[9,33],[2,31],[4,44],[9,27],[9,52],[16,34],[34,22],[26,-30],[11,-29],[5,-38],[11,-18],[18,1],[13,-24],[8,-48],[-2,-35],[-10,-22],[1,-28],[14,-35],[5,-34],[9,-45],[47,-25],[23,-15],[39,-5],[38,-20],[35,-34],[58,-9],[80,18],[66,-8],[52,-34],[38,-6],[24,21],[10,31],[-3,41],[11,25],[26,11],[21,31],[16,50],[37,40],[57,32],[29,-1],[0,81],[0,256],[0,256],[0,257],[0,256],[0,256],[0,256],[0,256],[0,242]],[[55550,37570],[13,-17],[88,-128],[24,-68],[11,-43],[38,-155],[28,-140],[23,-105],[2,-48],[3,-47],[4,-23],[-3,-25],[-16,-57],[-16,-44],[-20,-60],[-2,-79],[6,-93],[12,-46],[16,-15],[36,23],[23,-7],[32,-18],[107,11],[13,-6],[40,-6],[14,7],[12,20],[14,56],[12,18],[23,9],[27,15],[22,33],[35,110],[70,98],[22,23],[14,26],[11,36],[25,123],[19,103],[6,48],[17,79],[20,50],[19,27],[10,7],[26,13],[32,13],[34,-14],[37,-31],[42,-51],[42,-64],[20,-32],[21,-15],[37,-5],[25,1],[38,-63],[19,-4],[44,-19],[53,-20],[34,2],[36,34],[26,2],[33,-3],[37,10],[27,14],[21,30],[18,33],[21,97],[12,78],[19,89],[23,122],[8,85],[8,23],[33,26],[28,18],[74,33],[15,18],[14,40],[32,68],[40,57],[21,32],[37,275],[5,34],[27,73],[17,31],[11,0],[15,20],[20,37],[24,24],[28,9],[18,25],[8,41],[14,20],[21,-1],[11,13],[3,28],[12,24],[22,19],[11,23],[1,27],[26,66],[51,103],[47,58],[45,12],[42,21],[40,32],[30,49],[19,67],[32,38],[65,11]],[[57982,34503],[45,36],[21,23],[15,18],[19,28],[7,68],[5,58],[15,28],[15,19],[13,30],[15,72],[10,70],[2,29],[-6,30],[-10,31],[-9,43],[-12,6],[-23,24],[-33,48],[-29,42],[-27,61],[-11,9],[-26,42],[-12,23],[-8,28],[-7,10],[-12,-8],[-31,-12],[-66,-49],[-41,-46],[-35,-53],[-36,-21],[-26,-18],[-21,-61],[-20,-58],[-17,-51],[-10,-24],[-9,-15],[-10,-33],[-18,-55],[-18,-37],[-24,-20],[-31,-26],[-11,-15],[-1,-22],[11,-52],[11,-49],[17,-59],[13,-42],[20,-52],[12,-31],[-1,-51],[4,-18],[6,-21],[6,-6],[6,-7],[17,-15],[4,-10],[12,-17],[11,-32],[22,-44],[24,-33],[41,-14],[32,-10],[11,6],[11,27],[9,34],[3,43],[10,23],[39,111],[21,41],[13,2],[17,8],[21,4],[16,-4],[4,2],[25,14]],[[60515,24801],[-12,-11],[-56,10],[-6,22],[17,34],[9,14],[29,-7],[24,-28],[4,-9],[-9,-25]],[[61536,50866],[2,47],[-5,24],[-26,71],[-49,132],[-38,99],[-38,102],[0,82],[0,243],[-1,485],[-1,486],[-1,485],[0,243],[-1,99],[4,16],[44,89],[57,118],[76,224],[41,122],[34,101]],[[61634,54134],[9,31],[30,61],[56,37],[36,6],[121,46],[18,19],[11,21],[10,48],[23,68],[31,47],[58,61],[56,52],[13,8],[68,33],[17,11],[28,11],[10,1],[95,-12],[74,-9],[77,-9],[8,7],[53,121],[85,192],[54,123],[84,189],[64,137],[72,151],[69,139],[83,166],[52,105],[82,162],[77,155],[69,137]],[[63327,56449],[41,130],[40,127],[44,136],[52,165],[49,154],[40,126],[0,65],[0,140],[0,96],[0,265],[0,161],[0,155],[0,159]],[[63593,58328],[35,7],[90,41],[71,63],[130,45],[99,114],[17,55],[30,70],[43,23],[111,-82],[18,-6],[-7,-50],[-3,-50],[-23,-88],[-15,-98],[11,-149],[5,-242],[-3,-35],[-7,-34],[-3,-28],[-12,-9],[-5,-16],[9,-6],[34,26],[0,29],[2,14],[28,-32],[21,-13],[5,-31],[-1,-20],[-32,9],[-17,16],[-48,-26],[-29,-29],[-9,-47],[-7,-190],[-11,-123],[-3,-162],[-38,-108],[-14,-76],[-57,-152],[-31,-130],[-9,-64],[-51,-178],[-70,-137],[-25,-174],[-25,-110],[-28,-99],[-62,-177],[-31,-122],[-40,-213],[-12,-135],[-111,-391],[-115,-312],[-72,-263],[-129,-305],[-176,-393],[-230,-467],[-62,-95],[-252,-288],[-163,-241],[-83,-164],[-88,-143],[-69,-136],[-210,-460],[-22,-43],[-20,-41],[-27,-77],[-18,-31],[-50,-131],[-31,-69],[-36,-67],[-14,-47],[-11,-55],[-12,-31],[-31,-130],[-28,-86],[-28,-67]],[[63327,56449],[-95,0],[-92,0],[-91,0],[-16,17],[-77,53],[-97,67],[-120,84],[-85,59],[-92,62],[-92,63],[-73,50],[-90,61],[-79,54],[-11,13],[-44,82],[-57,107],[-11,2],[-27,23],[-25,58],[-25,74],[-23,93],[-11,63],[-31,26],[-15,50],[-28,74],[-20,36],[-7,31],[-9,65],[-17,70],[-15,44],[-4,19],[1,12],[29,95],[13,34],[15,33],[12,33],[4,23]],[[61922,58179],[35,112],[31,99],[24,77]],[[62012,58467],[54,-88],[53,-180],[62,-144],[85,-135],[33,-45],[30,-24],[155,4],[109,122],[100,89],[33,18],[58,-24],[64,-7],[57,-27],[29,7],[114,103],[71,101],[48,42],[20,1],[66,-36],[85,15],[117,87],[37,18],[28,1],[64,-39],[9,2]],[[94357,46942],[-13,-8],[-20,21],[-9,19],[4,30],[12,12],[13,-20],[1,-21],[12,-33]],[[96368,45123],[-24,-9],[-10,2],[-16,50],[12,11],[18,-4],[5,-29],[15,-21]],[[96147,45646],[-22,-10],[-7,3],[-17,-6],[-18,-41],[-13,6],[-10,-2],[-8,34],[0,17],[13,-3],[6,33],[14,17],[32,7],[28,-10],[10,-8],[-9,-30],[1,-7]],[[94604,45047],[-20,-20],[-17,10],[-14,15],[-11,44],[-23,28],[-34,11],[-14,19],[-3,10],[-24,8],[-6,24],[2,25],[3,13],[22,-12],[103,-117],[25,-36],[11,-22]],[[94873,46298],[4,-62],[-2,-21],[-21,45],[-10,-16],[-9,22],[1,46],[1,50],[-4,38],[-11,55],[12,-9],[39,-148]],[[94218,46587],[-4,-1],[-13,7],[-16,2],[-9,20],[11,29],[15,18],[6,-4],[7,-12],[14,-5],[2,-37],[-13,-17]],[[94490,46661],[16,-8],[8,1],[18,-31],[25,-46],[-10,-23],[-20,12],[-7,-5],[-2,3],[-4,23],[-22,23],[-19,2],[-3,27],[20,22]],[[93822,47095],[18,-47],[20,-105],[-4,-36],[-14,-3],[-4,-22],[-20,51],[-26,14],[-19,31],[-6,62],[-2,39],[-15,7],[-42,-10],[-14,-34],[-19,11],[-4,30],[3,29],[26,29],[5,38],[26,64],[15,11],[31,-23],[3,-92],[11,-30],[31,-14]],[[93944,46761],[-6,-2],[-7,23],[15,62],[8,-50],[4,-19],[-14,-14]],[[93918,46840],[-27,-45],[-20,15],[-17,39],[6,47],[3,13],[8,2],[8,10],[9,21],[29,-17],[8,-11],[-18,-29],[6,-9],[4,-14],[1,-22]],[[93718,46823],[0,-8],[-15,16],[-34,78],[6,26],[31,50],[10,7],[8,-31],[-7,-46],[-10,-12],[-5,-43],[16,-37]],[[93523,47279],[-5,-8],[-9,31],[-7,10],[0,34],[-28,57],[-2,39],[16,38],[22,-22],[22,-48],[25,-16],[-5,-32],[-23,-57],[-6,-26]],[[93500,47136],[-3,-15],[-15,71],[1,36],[3,23],[5,7],[12,-79],[-3,-43]],[[93658,47172],[-6,-9],[-30,4],[-23,59],[0,44],[18,40],[22,8],[12,-16],[11,-34],[4,-43],[-3,-38],[-5,-15]],[[93288,47754],[-28,-13],[-17,18],[7,44],[10,23],[35,-41],[-7,-31]],[[93789,46797],[0,-20],[-16,6],[-36,31],[-1,14],[20,5],[15,-4],[12,-18],[6,-14]],[[94374,46501],[61,-92],[27,8],[80,-2],[47,-66],[28,-30],[16,-59],[19,-14],[12,-30],[7,-55],[-5,-9],[-24,-20],[-18,-9],[-47,20],[-44,42],[-89,5],[-41,12],[-14,17],[-13,21],[-21,51],[-17,61],[-2,35],[-2,68],[5,24],[17,25],[18,-3]],[[94410,46927],[0,-14],[-37,48],[-28,59],[-81,64],[-17,33],[-15,4],[-41,54],[-41,36],[-25,47],[-6,19],[-15,11],[-25,51],[-25,34],[-9,62],[-24,43],[-6,19],[77,-35],[36,-68],[30,-38],[11,-28],[27,-38],[25,-4],[24,-38],[23,-10],[18,-20],[114,-172],[-14,-46],[15,-33],[9,-40]],[[93745,47620],[9,-20],[-21,-35],[-29,19],[-6,19],[0,11],[-20,-7],[-40,17],[-54,82],[-58,156],[-56,86],[-11,26],[-1,45],[8,17],[34,-19],[45,-71],[74,-73],[20,-38],[12,-90],[13,-27],[40,-69],[21,-16],[11,-3],[9,-10]],[[94652,47053],[69,-171],[-3,-31],[-9,-19],[-3,-58],[8,-22],[19,-10],[32,-62],[13,-75],[1,-23],[14,-34],[0,-72],[30,-100],[3,-48],[-3,-22],[-12,13],[-37,113],[-41,49],[-5,21],[-42,66],[-28,111],[-30,198],[14,47],[-34,96],[1,25],[15,-6],[10,2],[5,11],[13,1]],[[94920,45859],[35,-34],[20,6],[30,-23],[23,13],[15,-30],[36,-118],[0,-38],[24,-27],[-20,-5],[-28,14],[-22,-10],[-22,23],[-38,12],[-33,27],[-69,87],[0,43],[-11,21],[-3,54],[-25,17],[-29,3],[-2,26],[5,45],[21,-1],[26,-19],[50,-65],[12,-12],[5,-9]],[[56147,79726],[-6,-7],[-95,-32],[-13,5],[-13,18],[-7,14],[-5,9],[-8,26],[-11,19],[-16,15],[-15,17],[-19,1],[-52,-25],[-36,-2],[-23,8],[-32,15],[-62,2],[-43,-13],[-4,-18],[-39,-115],[-57,-43],[-50,-43],[-14,-9],[-25,14],[-28,25],[-23,14],[-17,-6],[-19,-29],[-8,-30],[-56,-22],[-98,-12],[-34,-29],[-11,-36],[-1,-26],[9,-23],[-11,-27],[-4,-11],[-69,-6],[-92,-8],[-55,2],[-52,2],[-35,23],[-43,45],[-45,59],[-5,2],[-6,6],[-29,4],[-7,-3]],[[54763,79496],[-17,19],[-5,25],[-27,66],[-30,109],[0,32],[11,35],[11,28],[1,21],[2,6]],[[54709,79837],[9,45],[21,60],[20,35],[15,11],[30,-10],[52,-9],[39,8],[37,27],[20,23],[18,25],[5,16],[8,7],[31,14],[9,17],[4,31],[3,35],[6,26],[8,19],[57,45],[5,16],[9,16],[17,17],[16,25],[17,15],[22,-1],[21,3],[16,9],[7,1]],[[55231,80363],[29,-8],[5,-28],[3,-30],[51,2],[28,64],[14,8],[24,22],[15,20],[10,-13],[16,-41],[16,-33],[9,-13],[1,-10],[10,-6],[18,-4],[12,-10],[4,-31],[0,-28],[-6,-20],[-3,-18],[13,-7],[19,7],[13,10],[39,-23],[14,51],[15,27],[21,12],[18,16],[17,11],[11,0],[5,4],[15,-1],[16,-5],[23,6],[31,-13],[20,-23],[19,-8],[22,1],[15,13],[22,45],[16,0],[24,7],[35,-1],[80,-9],[21,-18],[49,-22],[22,-25],[9,-31],[5,-21],[51,-32],[75,-42],[18,-5]],[[54587,78628],[-24,14],[-30,6],[-5,-7],[-12,-8],[-6,-14],[4,-55],[-7,-9],[-34,5],[-11,-6],[-18,-38],[-19,-16],[-23,-11],[-18,-14],[-22,-12],[-19,-7],[-8,-17],[-4,-18],[1,-18],[19,-35],[3,-37],[-2,-46],[-5,-24],[-7,-16],[-48,-21],[-49,-38],[-1,-8],[22,-34],[1,-8],[-18,-19],[-2,-19],[2,-22],[10,-22],[3,-21],[-27,-14],[-36,5],[-43,28],[-16,-4],[-14,-15],[-15,7],[-17,17],[-23,36],[-12,23],[-4,23],[-7,4],[-9,-7],[-8,-29],[-22,-51],[-16,-14],[-24,3],[-34,-1],[-21,-5],[-26,19],[-6,-4],[0,-12],[-10,-19],[-15,-12],[-74,28],[-10,23]],[[53771,78062],[17,11],[23,30]],[[53811,78103],[15,-4],[19,7],[9,12],[-13,38],[-30,47],[-16,17],[-22,12],[-4,13],[12,73],[-4,11],[-25,-4],[-6,8],[-2,13],[2,17],[17,29],[19,25],[5,14],[-1,11],[-24,12],[-15,11],[-11,4],[-8,-6],[-6,7],[-6,21],[6,32],[21,30],[24,26],[21,20],[11,8],[6,33]],[[53805,78640],[12,-3],[25,-2],[27,-8],[25,-9],[22,-12],[47,-12],[42,-7],[13,-7],[10,1],[13,-10],[8,7],[5,13],[23,16],[22,21],[14,26],[9,21],[14,14],[16,5],[14,7],[60,10],[62,-8],[30,14],[24,26],[35,7],[2,0],[53,-19],[4,11],[2,5],[-1,55],[17,25],[16,11]],[[54470,78838],[53,-4],[7,-17],[2,-26],[5,-35],[9,-10],[5,-14],[-1,-24],[10,-18],[24,-49],[3,-13]],[[78880,52610],[-42,-38],[-47,34],[15,57],[32,13],[25,-18],[14,-13],[10,-16],[-7,-19]],[[47143,56730],[-1,-17],[-8,-83],[-12,-71],[-8,-17],[-36,-19],[-15,-31],[-13,-101],[-8,-79],[-12,-13],[-52,-114],[-34,-43],[-24,-38],[-22,-48],[-28,-47],[-31,-80],[-21,-82],[-15,-26]],[[46803,55821],[-11,23],[-52,82],[-54,55],[-116,91],[-39,25],[2,33],[13,59],[-22,69],[9,51],[-9,0],[-16,-31],[-36,9],[-23,44],[-19,15],[-9,22],[-12,115],[-9,52],[-17,32],[-36,8],[-15,69],[-19,54],[3,34],[16,-2],[13,-24],[20,-10],[25,58],[23,32],[5,28],[-3,15],[-14,-24],[-37,6],[-9,-21],[-17,-7],[-13,69],[1,40],[5,45],[38,7],[3,14],[-26,10],[-33,52],[-6,35]],[[46307,57055],[16,12],[16,-5],[13,-8],[15,13],[14,20],[8,25],[11,67],[35,22],[21,41],[20,64],[9,45],[8,22],[6,19],[3,22],[9,19],[10,47],[6,44],[20,20],[42,19],[38,-32],[61,27],[3,41],[56,1],[66,0],[55,1],[19,-11],[7,-30],[18,-47],[19,-33],[23,-72],[28,-84],[29,-75],[19,-41],[2,-14],[-1,-17],[-10,-38],[-8,-42],[1,-15],[6,-8],[31,-13],[2,-46],[1,-64],[14,-60],[15,-44],[-1,-16],[-35,-75],[-13,-74],[-7,-21],[-3,-17],[7,-8],[9,5],[14,-6],[13,-2],[17,27],[28,68],[10,8],[21,-6]],[[46520,56126],[-4,-15],[-18,37],[-96,56],[27,29],[66,9],[20,-17],[9,-15],[3,-27],[-7,-57]],[[65427,49139],[1,-53],[-13,18],[-4,34],[-18,26],[-9,24],[20,29],[23,-78]],[[56306,77325],[-10,-10],[-11,-15],[-7,-26],[-1,-42],[-36,-33],[-14,-7],[-6,-21],[-9,-62],[1,-47],[5,-23],[2,-20],[12,-23],[10,-37],[7,-48],[16,-37],[39,-37],[20,-21],[14,-31],[11,-27],[33,-38],[-3,-26],[-7,-26],[-7,-12],[-16,-33],[-16,-19],[-26,-59],[-41,-3],[-10,-5],[-16,-16],[-7,-29],[7,-23],[-1,-24],[-7,-46],[10,-50],[14,-23],[2,-13],[-2,-23],[-22,-47],[-6,-17],[-22,-9]],[[56206,76217],[-7,4],[-11,17],[-11,4],[-26,-19],[-26,-11],[-21,9],[-20,1],[-14,-8],[-11,-3],[-21,-21],[-33,-14],[-16,3]],[[55989,76179],[-6,19],[-6,27],[3,13],[22,21],[3,21],[31,99],[6,32],[0,11],[-8,7],[-17,0],[-76,40],[4,46],[-22,25],[-24,22],[-4,25],[-27,50],[-19,28],[-25,14],[-22,21],[-12,12],[-6,23],[0,14],[-7,14],[-10,-2],[-17,-18],[-22,-16],[-4,-12],[8,-28],[6,-17],[-3,-17],[-7,-21],[-41,-47],[-5,-16],[8,-26],[-5,-13],[-34,-17]],[[55651,76513],[1,14],[-3,23],[-19,25],[-28,19],[-63,65],[-23,9],[-22,7],[-30,32],[-16,5],[-18,22],[-38,76],[-32,41],[-22,20],[-6,21],[-2,20],[1,7]],[[55331,76919],[17,30],[13,4],[16,1],[11,-15],[15,-3],[8,19],[4,27],[-2,35],[-35,82],[-29,57],[-4,12],[7,11],[10,5],[11,-4],[29,-4],[28,5],[9,14],[0,18],[-10,18],[-32,46],[-26,41],[-29,32],[-23,12],[-6,16],[-3,18],[3,31],[1,40],[5,25],[20,47],[19,51],[12,48],[6,45],[-2,13],[-10,9],[-21,10],[-29,-9],[-25,-16],[-10,-1]],[[55279,77689],[-3,20],[4,9],[8,-1],[6,-4],[7,9],[4,27],[-10,94],[18,9],[1,13],[1,12],[19,-16],[27,0],[24,3],[4,9],[-1,14],[-5,10],[-8,9],[-6,13],[-16,5],[-50,34],[-24,36],[0,39],[7,21],[9,7],[-2,7],[-29,18],[-10,24],[9,32],[-15,64],[-15,40],[15,17],[2,24],[1,14]],[[55251,78301],[6,0],[25,16],[8,13],[6,16],[5,4],[17,-17],[17,-2],[19,11],[15,15],[17,12],[8,8],[10,14],[21,39],[23,8],[30,-10],[34,-4],[25,9],[63,-11],[13,-9],[9,-10]],[[55622,78403],[17,-34],[16,-43],[22,-20],[26,-24],[13,-17],[20,-52],[16,-25],[5,1],[5,7],[4,5],[4,-5],[0,-16],[1,-34],[-3,-38],[5,-35],[0,-11],[-3,-10],[0,-9],[6,-9],[21,-23],[20,-36],[22,-26],[22,-16],[13,-1],[22,-29],[43,-21],[14,-7],[9,-12],[7,-14],[0,-14],[-6,-7],[-10,-20],[-3,-25],[-7,-6],[-7,0],[-5,-8],[1,-10],[6,-10],[9,-9],[17,-9],[17,-14],[0,-10],[-4,-11],[-21,-5],[-16,-2],[-8,-4],[1,-21],[45,-21],[21,-20],[10,-26],[29,-17],[47,-8],[33,-27],[18,-45],[30,11],[42,67],[41,17],[40,-32],[22,-26],[4,-20],[-10,-9],[-22,4],[-19,-13],[-14,-29],[-2,-31],[10,-33],[14,-23],[19,-13],[9,-17],[2,-22],[4,-6]],[[46588,60373],[26,-93],[-5,-44],[-6,-65],[15,-47],[17,-31],[12,-28],[14,-39],[2,-77],[-2,-56],[9,-26],[7,-32],[-1,-26],[-5,-24],[-17,-31],[-3,-58],[27,-71],[17,-38],[0,-22],[5,-24],[13,-28],[8,7],[8,23],[4,15],[24,-7],[11,-7],[14,-46],[6,-30],[4,-39],[15,-48],[14,-34],[2,-21],[13,-28],[-8,-64],[1,-32],[-8,-85],[-2,-41],[0,-15],[19,-30],[-2,-43]],[[46836,58988],[-19,8],[-32,5],[-65,-23],[-23,9],[-43,-3],[-30,-12],[-39,-28],[-30,7],[-16,22],[-21,-1],[-24,11],[-26,22],[-23,10],[-26,40],[-11,7],[-9,-11],[-7,-13],[-7,-8],[-14,7],[-5,27],[5,26],[1,19],[-7,11],[-15,4],[-25,-1],[-40,9],[-9,5],[-90,6]],[[46186,59143],[-93,1],[-79,1],[-100,1],[-70,0],[-66,1],[-50,-53],[-55,-56],[-73,-31],[-85,12],[-27,-9],[-28,-25],[-21,-18],[-29,-11],[-37,9],[-16,-6]],[[45357,58959],[-9,26],[-11,42],[7,31],[23,20],[34,26],[19,-14],[10,0],[2,16],[-3,9],[-26,22],[-14,30],[-11,-17],[-10,-37],[-8,-10],[-12,-11],[-6,25],[-3,24],[5,19],[-2,104],[3,55],[-2,49]],[[45343,59368],[16,32],[16,20],[60,2],[57,1],[54,-1],[55,-1],[6,97],[17,8],[26,10],[49,12],[54,11],[12,19],[9,33],[6,28],[11,13],[15,-10],[20,-15],[21,-24],[23,-21],[16,-14],[38,-34],[65,-48],[53,-19],[65,35],[46,22],[6,42],[-7,41],[-35,37],[-47,-4],[-15,-10],[-22,-13],[-13,-4],[-22,8],[-28,33],[-18,32],[-25,15],[-29,16],[-47,66],[-25,12],[-23,4],[-45,-13],[-44,-36],[-23,-81],[-43,1],[-93,3],[-86,2],[-70,-6]],[[45399,59669],[-7,59],[-17,47],[-27,40],[-6,37],[9,33],[26,26],[6,19],[-13,-2],[-21,-18],[-14,0],[-1,51],[-23,66],[-26,112],[-30,46],[-24,91],[-26,35],[-24,16],[-20,-3],[-7,-42],[-25,60],[34,21],[73,75],[85,215],[76,253],[9,60]],[[45406,60966],[10,46],[6,103],[11,62],[10,12],[13,47],[15,83],[18,46],[19,9],[16,-4],[11,-17],[31,-10],[53,-4],[41,12],[29,29],[38,14],[47,1],[25,12],[3,24],[6,7],[10,-10],[9,4],[8,17],[9,1],[9,-14],[39,-5],[70,6],[65,-44],[60,-93],[31,-62],[1,-31],[10,-31],[18,-31],[16,-6],[15,20],[12,-3],[8,-24],[17,-5],[19,15],[14,-5],[2,-14],[3,-8],[9,-3],[13,-19],[17,-49],[14,-69],[11,-88],[14,-48],[18,-8],[10,-18],[2,-22],[5,-14],[9,-8],[15,5],[18,-30],[19,-65],[3,-29],[-3,-16],[1,-11],[12,-11],[12,-21],[10,-32],[21,-29],[32,-24],[23,-37],[15,-50],[29,-41],[6,-5]],[[60250,66464],[-7,0],[-20,39],[-11,29],[-12,19],[-53,39],[-8,25],[9,25],[5,-25],[10,-14],[44,-36],[49,-76],[9,-7],[-15,-18]],[[61663,61471],[21,-3],[-9,19],[-2,9],[10,26],[30,-55],[-1,-64],[-2,-15],[-8,14],[-6,13],[-2,15],[-8,16],[-30,-10],[-18,17],[-27,55],[-7,39],[11,8],[12,19],[7,31],[-7,32],[16,-5],[9,-33],[1,-75],[3,-16],[-5,-17],[12,-20]],[[61888,61273],[-3,46],[-16,68],[-1,49],[-8,48],[-14,37],[-26,38],[-3,53],[-19,52],[-25,42],[-15,77],[-10,103],[-67,135],[-84,124],[-26,71],[-42,143],[-21,113],[-56,130],[-2,50],[-9,61],[-13,68],[-7,54],[-57,235],[-18,37],[-16,53],[-4,40],[-5,22],[-39,39],[-38,99],[-111,157],[-55,15],[-43,56],[-32,74],[-34,126],[-60,136],[-50,194],[16,71],[-1,49],[-16,84],[-17,64],[-12,61],[10,88],[3,98],[10,52],[7,57],[-9,115],[-17,61],[2,41],[-19,20],[-16,45],[16,-1],[-29,62],[-11,34],[-11,84],[-14,64],[-45,146],[-22,89],[-49,114],[-53,85],[-33,38],[-16,35],[-28,2],[-30,50],[-21,1],[-26,8],[-31,97],[-26,90],[-44,118],[11,31],[13,50],[-6,65],[-7,44],[-19,81],[-64,202],[-17,29],[-27,34],[-16,88],[-8,78],[-44,38],[-74,282],[-44,99],[-17,66],[-50,109],[-24,109],[-51,100],[-44,173],[-67,174],[-29,30],[-69,12],[-30,13],[-27,-38],[-2,48],[19,67],[26,140],[6,123],[42,364]],[[59708,68751],[59,-18],[49,-16],[71,-23],[74,-23],[43,-14],[14,6],[60,89],[54,81],[32,98],[31,96],[14,20],[48,17],[76,29],[75,28],[5,9],[18,77],[22,97],[5,10],[5,10],[54,55],[32,33],[-46,97],[-44,92],[-49,103],[-41,80],[-63,120],[-40,79],[71,37],[77,40],[78,41],[94,49],[73,38],[110,57],[53,28],[10,7],[41,68]],[[60873,70348],[62,-19],[93,-29],[90,-27],[95,-32],[31,-27],[91,-96],[60,-63],[69,-74],[87,-91],[59,-63],[77,-81],[59,-92],[76,-117],[82,-128],[68,-100],[94,-137],[93,-135],[90,-133],[73,-106],[91,-134],[8,-5],[92,-15],[125,-21],[125,-20],[113,-19],[49,19]],[[62925,68603],[53,-12],[72,-17],[43,-11],[82,-21],[25,-88],[9,-61],[8,-60],[24,-54],[56,1],[49,1],[61,2],[49,1]],[[63456,68284],[15,-54],[7,-54],[29,-128],[41,-100],[9,-36],[7,-55],[-7,-21],[-3,-23],[30,-55],[51,-46],[19,-12],[22,-21],[-17,-31],[30,-74],[34,-74],[37,-17],[50,-113],[74,-73],[46,-96],[-4,-2],[-14,10],[-16,13],[-5,-12],[0,-40],[5,-47],[23,-41],[21,-29],[8,-56],[-17,-120],[-5,1],[-11,10],[-12,2],[-6,-7],[14,-86],[13,-66],[17,-52],[14,-77],[11,-32],[49,-82],[14,-68],[14,-127],[30,-70],[17,-55],[22,-46]],[[64112,66122],[14,-63],[20,-49],[11,-12],[15,-5],[20,0],[23,12],[25,12]],[[64240,66017],[20,-24],[20,3],[2,-23],[-13,-31],[-17,-78],[24,-13],[22,-6],[17,-13],[9,0]],[[65329,64921],[20,-65],[17,-54],[23,-75],[25,-79],[24,-75],[17,-57],[-9,-58],[-10,-64],[-10,-63],[-11,-64],[-10,-64],[-10,-64],[-10,-64],[-10,-63],[-11,-64],[-10,-64],[-10,-64],[-10,-63],[-10,-64],[-10,-64],[-11,-64],[-10,-63],[-10,-64],[-12,-77],[-30,-20],[-47,-33],[-48,-33],[-48,-33],[-48,-34],[-48,-33],[-47,-33],[-48,-33],[-48,-33],[-48,-33],[-48,-33],[-47,-33],[-48,-33],[-48,-33],[-48,-33],[-47,-33],[-48,-33],[-39,-27]],[[60165,66654],[-3,-8],[-12,21],[1,44],[10,25],[-1,-34],[5,-35],[0,-13]],[[52062,52746],[-11,-15],[-12,12],[-3,23],[16,44],[7,11],[6,-9],[4,-12],[1,-18],[-8,-36]],[[51849,51912],[-28,-42],[-10,11],[-7,29],[-8,64],[3,30],[13,35],[28,34],[17,3],[17,-46],[0,-47],[-25,-71]],[[53468,77131],[-17,-4],[-8,24],[12,27],[18,4],[3,-21],[-8,-30]],[[2130,44086],[31,-54],[12,-72],[-13,-69],[-30,17],[-42,-15],[-15,5],[-34,85],[-23,38],[-10,35],[30,-4],[44,24],[50,10]],[[2374,43751],[-76,0],[-38,26],[-13,0],[-33,55],[-5,28],[17,19],[36,10],[70,-41],[11,-37],[16,-4],[13,-16],[3,-26],[-1,-14]],[[33007,59422],[-8,-9],[-21,39],[3,45],[12,25],[12,14],[12,2],[4,-38],[-3,-52],[-11,-26]],[[32992,59328],[-4,-6],[2,0],[-2,-5],[-1,5],[-3,2],[-2,1],[-4,0],[0,5],[4,-3],[7,3],[0,4],[-2,4],[-1,3],[2,5],[8,10],[3,5],[1,-2],[0,-2],[0,-2],[1,-2],[-4,-8],[-5,-17]],[[32962,59156],[-2,-1],[-3,2],[1,2],[3,1],[1,4],[0,5],[0,6],[2,3],[2,1],[1,-2],[1,-6],[-2,-4],[-1,-3],[-1,-5],[-2,-3]],[[33084,59805],[-15,-61],[-31,38],[-3,48],[3,29],[18,54],[15,36],[10,12],[6,-47],[-3,-109]],[[32630,61705],[-14,-12],[-12,17],[3,40],[11,1],[11,-18],[1,-28]],[[32602,61773],[-7,-8],[-13,35],[-20,10],[-18,21],[0,4],[0,11],[4,12],[9,9],[22,-28],[11,-36],[10,-17],[2,-13]],[[58487,50460],[-7,3],[-13,11],[-21,36],[-38,-20],[-10,1],[-14,-18],[-12,-21],[-7,-1],[-7,3],[-33,42],[-12,-1],[-5,-120],[-5,-67],[-7,-30],[-23,-29],[-24,-16],[-13,1],[-52,-9],[-21,0],[-11,10],[-15,68],[-27,30],[-27,14],[-10,-4],[-10,-35],[-4,-32]],[[58059,50276],[-26,22],[-7,27],[-1,46],[-10,62],[6,27],[10,17],[21,33],[33,46],[7,22],[4,37],[-2,84],[-3,72],[4,26],[15,55],[19,57],[24,59],[14,6],[18,23],[19,34],[11,12]],[[90522,76877],[4,-3],[5,0],[5,1],[2,-6],[1,-11],[-3,-1],[-7,-2],[-4,-1],[-2,8],[-1,6],[-4,4],[0,4],[4,1]],[[90654,76972],[-7,-3],[-12,3],[-4,3],[2,5],[8,8],[6,-3],[5,-2],[2,-11]],[[90567,76848],[-3,-1],[-2,7],[6,8],[11,9],[4,-5],[-4,-7],[-5,-4],[-7,-7]],[[88104,83582],[-34,-100],[-24,-1],[-18,21],[-39,-8],[-14,5],[23,31],[55,48],[23,-1],[22,10],[6,-5]],[[91830,85840],[-22,-7],[-11,16],[-1,11],[34,25],[21,36],[13,-22],[4,-15],[-38,-44]],[[83405,93945],[-70,-26],[-60,0],[-42,46],[33,18],[57,7],[31,-6],[44,-29],[7,-10]],[[84594,94383],[-17,-1],[-32,15],[-8,21],[0,10],[26,8],[33,-5],[25,-19],[4,-7],[-31,-22]],[[79519,96892],[-33,-4],[-36,12],[10,26],[81,4],[30,39],[51,-2],[14,-11],[8,-13],[-1,-17],[-11,0],[-48,-2],[-9,-9],[-56,-23]],[[79837,96337],[-32,0],[-9,27],[27,33],[34,0],[29,-10],[10,-5],[10,-12],[4,-18],[-73,-15]],[[77107,95967],[-15,-9],[-29,4],[-24,22],[-9,35],[20,9],[57,-61]],[[76903,95736],[-15,-6],[-13,4],[-4,7],[1,29],[25,38],[1,12],[12,6],[31,-7],[15,-16],[2,-7],[-21,-38],[-34,-22]],[[77815,97703],[-61,-7],[7,40],[4,11],[31,6],[20,-10],[44,-7],[-45,-33]],[[71320,94150],[-26,-4],[-118,22],[-43,27],[16,18],[31,0],[140,-63]],[[72974,94522],[-27,-20],[-37,11],[-27,13],[-14,19],[14,10],[40,7],[24,-7],[21,-22],[6,-11]],[[73543,94734],[-13,-34],[-78,17],[-11,14],[42,21],[38,12],[54,2],[-32,-32]],[[74070,95035],[23,-11],[73,17],[14,-6],[20,-24],[-31,-45],[-23,-18],[-66,10],[-83,1],[-37,25],[20,26],[48,16],[28,15],[14,-6]],[[66475,98677],[-60,-7],[-105,12],[-30,14],[7,13],[68,18],[54,4],[57,-19],[26,-23],[-17,-12]],[[86301,76210],[-8,15],[-2,26],[-9,25],[-18,34],[-7,35]],[[86257,76345],[16,18],[-3,32],[-15,30],[-23,6],[-5,8],[1,16],[8,16],[11,14],[24,19],[40,14],[22,12],[19,3],[20,-6],[18,18],[17,11],[4,31],[1,47],[6,14],[8,20],[11,26],[10,67],[8,46],[5,23],[1,32],[-5,20],[-10,13],[-7,8],[-1,36],[1,48],[-3,31],[11,172],[12,39],[-36,229],[-11,73],[-7,37],[-16,54],[-10,27],[4,26],[14,25],[14,12],[40,6],[12,9],[49,28],[11,17],[26,40],[10,31],[11,40],[24,21],[15,36],[16,13],[16,-31],[19,-17],[25,-11],[31,-13],[51,-25],[51,-21],[33,-17],[16,-7],[32,-12],[14,-8],[13,-10],[21,26],[28,33],[-5,51],[5,58],[20,100],[23,29],[12,5],[12,11],[23,19],[8,26],[-5,31],[8,31],[2,30],[8,39],[11,11],[15,13],[12,20],[10,31],[7,35],[-3,41],[14,26],[23,22],[8,14],[4,35],[1,16],[6,18],[-4,36],[-6,40],[26,66],[18,57],[4,84],[2,13],[7,40],[4,16],[14,52],[19,34],[-4,38],[-7,37],[1,25],[16,29],[10,15],[8,21],[14,9],[12,5],[28,5],[16,22],[15,22],[28,58],[9,35],[6,17],[-15,50],[-13,42],[-16,58],[-7,27],[11,35],[11,22],[6,19],[3,33],[-4,25],[-28,39],[-30,19],[-34,8],[-11,2],[-24,-7],[-101,-50],[-48,-38],[-27,-43],[-29,-21],[-47,3],[-43,2],[-35,-24],[-40,-49],[-29,-22],[-18,4],[-19,-33],[-21,-70],[-24,-31],[-27,9],[-64,-7],[-101,-22],[-63,1],[-26,24],[-40,3],[-55,-18],[-33,-3],[-12,10],[-8,29],[-4,48],[-19,50],[-32,51],[-6,63],[21,73],[5,50],[-12,27],[-4,24],[-25,31],[-17,52],[-12,16],[3,45],[15,54],[-18,50],[-55,3],[-44,15],[-44,46],[-68,131],[-34,46],[-22,5],[-16,21],[-10,37],[-16,1],[-16,0],[-9,-16],[-11,-5],[-18,15],[-17,1],[-18,-11],[-15,7],[-13,26],[-23,17],[-33,9],[-13,17],[5,28],[-6,20],[-18,13],[-49,-3],[-80,-20],[-66,5],[-52,31],[-29,28],[-5,26],[-15,25],[-24,24],[-14,42],[-2,58],[5,56],[22,79],[-54,51],[-16,30],[3,25],[-2,20],[-10,15],[1,23],[10,32],[0,41],[-11,50],[-30,70],[-49,90],[-27,66],[-4,42],[-6,33],[-10,18],[-5,31],[4,34],[-6,22],[-7,21],[1,33],[-9,22],[-18,13],[-6,25],[4,53],[-13,46],[-40,83],[-12,61],[-3,54],[-17,27],[-1,24],[-2,42],[-11,11],[-6,15],[5,17],[-8,22],[-21,26],[-9,22],[-3,21],[-10,15],[-31,16],[-8,21],[2,19],[6,17],[4,11],[-1,14],[-2,13],[-13,17],[-17,19],[-19,41],[-25,11],[-15,0],[-14,23],[5,14],[-1,28],[-12,22],[-15,9],[-14,-6],[-34,21],[-55,47],[-42,22],[-29,-4],[-18,-14],[-6,-25],[-20,3],[-48,44],[-48,11],[-27,24],[-21,40],[-20,17],[-19,-7],[-44,27],[-70,61],[-37,20],[-14,-11],[-7,0],[-12,2],[-18,0],[-32,15],[-43,-7],[-55,-27],[-59,-17],[-64,-6],[-37,3],[-12,13],[-69,-19],[-96,-40],[-94,-38],[-117,-19],[-78,-64],[-78,-118],[-57,-74],[-34,-30],[-14,-40],[6,-49],[29,-17],[53,14],[44,-7],[38,-28],[12,-42],[-14,-56],[4,-56],[22,-54],[2,-63],[-19,-71],[-48,-72],[-76,-72],[-47,-71],[-28,-102],[-42,-90],[-16,-50],[-3,-41],[-17,-45],[-31,-48],[-17,-48],[-3,-49],[-15,-44],[-29,-39],[-17,-42],[-7,-45],[-11,-29],[-15,-16],[8,-15],[30,-15],[13,-43],[-6,-71],[-18,-51],[-31,-31],[-47,-20],[-62,-9],[-85,-68],[-73,-88],[-87,-103],[-17,0],[-32,13],[-61,42],[-65,9],[-62,40],[-37,25],[-57,50]],[[82411,80543],[-14,31],[-22,25],[-56,33],[-37,18],[-23,1],[-58,-34],[-36,-27],[-22,-14],[-36,3],[-44,6],[-18,9],[-25,21],[-49,64],[-26,45],[-35,26],[-38,29],[-19,7],[-33,-2],[-47,8],[-25,10],[-21,-9],[-42,-31],[-52,-59],[-41,-23],[-44,-32],[-36,-37],[-35,-39],[-43,-44],[-20,-61],[-10,-44],[-40,-27],[-30,-26],[-30,-9],[-56,14],[-33,-10],[-83,-52],[-40,-5],[-28,-7],[-27,-3],[-45,-13],[-17,-9],[-23,-10],[-26,7],[-37,-29],[-104,-80],[-33,-13],[-22,-3],[-28,28],[-28,19],[-30,-2],[-34,-26],[-57,20],[-68,19],[-61,18],[-21,15],[-60,22],[-88,1],[-52,0],[-33,-8],[-26,11],[-32,32],[-54,74],[-32,21],[-17,19],[-7,30],[-12,4],[-8,21],[0,29],[-1,62],[4,44],[-9,13],[-36,7],[-43,14],[-79,2],[-32,1],[-25,25],[-28,31],[-28,64],[-24,29],[-40,37],[-38,10],[-57,-7],[-42,-7],[-37,16],[-24,20],[-34,22],[-51,5],[-42,16],[-44,18],[-32,-7],[-22,-18],[-26,-23],[-33,-4],[-81,-24],[-24,-14],[-36,-6],[-32,-18],[-26,-35],[-22,-26],[-28,-9],[-33,2],[-29,8],[-15,3],[-22,-13],[-25,-9],[-38,15],[-21,13],[-32,8],[-20,37],[-20,15],[-34,6],[-50,18],[-26,20],[-23,11],[-38,43],[-21,37],[-17,6],[-20,5],[-13,23],[-1,29],[5,18],[3,30],[-11,29],[-11,13],[-6,22],[3,42],[-4,42],[-4,44],[-12,32],[-3,63],[5,26],[-1,30],[-12,23],[-37,17],[-44,22],[-70,27],[-29,2],[-23,-11],[-22,13],[-22,22],[-39,23],[-50,30],[-54,33],[-48,29],[-19,8],[-66,2],[-54,4],[-32,11],[-37,41],[-19,26],[-30,12],[-22,4],[-35,13],[-64,44],[-23,21],[-16,0],[-21,38],[-18,9],[-13,-27],[-13,-65],[-11,-30],[-34,-60],[-80,-48],[-13,-25],[-8,-23],[-11,-32],[-4,-42],[-10,-12],[-23,-1],[-18,-19],[-14,-42],[-11,-17],[-7,-39],[1,-17],[-2,-19],[-2,-30],[-21,-66],[-3,-38],[8,-24],[18,-33],[9,-18],[3,-22],[0,-28],[11,-38],[8,-33],[13,-24],[19,-20],[21,-7],[16,-13],[4,-27],[-5,-37],[-7,-69],[-14,-43],[-8,-28],[-14,-42],[-5,-17],[-27,-36],[-19,-10],[-23,-29],[-19,-2],[-18,1],[-19,-7],[-18,-13],[-13,-39],[-34,-40],[-16,-19],[-42,-6],[-20,18],[-11,25],[-14,14],[-17,31],[-76,16],[-20,-7],[-12,-12],[-15,9],[-11,15],[-11,-5],[-23,-8],[-19,2],[-23,31],[-33,16],[-13,10],[-13,0],[-8,-15],[-15,-8],[-10,18],[-13,13],[-18,0],[-22,-27],[-39,-13],[-13,-19],[-22,3],[-16,15],[-15,1],[-46,0],[-15,-5],[-19,15],[-8,27],[-23,21],[-33,2],[-26,-3],[-12,-8],[-17,-3],[-14,37],[-19,26],[-10,19],[-16,8],[-13,24],[-2,47],[-8,59],[-9,61],[-10,26],[-49,9],[-23,-2],[-54,5],[-38,4],[-10,1],[-34,7],[-32,6],[-32,4],[-14,-5],[-33,-2],[-26,29],[-11,34],[-2,19],[-6,19],[-23,6],[-22,-6],[-11,-39],[-16,-16],[-15,3],[-13,21],[-26,23],[-17,22],[-20,35],[-16,-8],[-5,-22],[-3,-21],[-21,-43],[-24,-5],[-41,3],[-43,-2],[-27,-16],[-20,-29],[-10,-23],[-21,-8],[-21,-23],[-9,-31],[-20,1],[-11,-4],[-19,-6],[-48,-17],[-11,-4],[-29,-30],[-22,-23],[-21,-10],[-13,-27],[-17,-21],[-38,-6],[-42,-26],[-15,-9],[-24,-20],[-34,-8],[-14,-6],[-13,-14],[-8,-49],[-28,-17],[-37,-3],[-28,-26],[-2,-46],[9,-42],[-4,-19],[-21,-11],[-29,-22],[-22,-28],[-26,-1],[-16,10],[-11,-18],[-7,-37],[-19,-18],[-28,-16],[-11,6],[-7,14],[-12,18],[-10,-7],[-1,-26],[-8,-19],[-24,-2],[-18,11],[-13,12],[-25,-2],[-26,-5],[-16,6],[-15,-6],[-41,-12],[-16,-41],[0,-48],[-5,-24],[-24,-21],[-12,-19],[-14,-13],[-33,-1],[-1,0]],[[74392,80162],[-14,2],[-26,-11],[-26,-8],[-17,-6],[-11,-18],[-16,-8],[-26,5]],[[74256,80118],[-8,35],[-17,40],[-24,14],[-21,8],[-20,19],[-13,20],[-39,95],[-27,41],[-25,3],[-3,27],[14,27],[18,22],[0,31],[-15,16],[-18,-5],[-25,-35],[-29,-40],[-35,-29],[-14,-24],[-17,-27],[-24,4],[-18,-2],[-15,-2],[-11,29],[-15,4],[-106,28],[-35,11],[-23,-14],[-16,9],[-6,28],[-21,50],[-16,41],[-21,41],[-8,33],[7,34],[-3,30],[-18,15],[-23,2],[-65,64],[-30,9],[-27,12],[-22,0],[-18,28],[-17,86],[-6,48],[-21,49],[-27,41],[-16,57],[-23,25],[-40,39],[-38,28],[-62,34],[-23,0],[-32,-3],[-18,-16],[-21,-37],[-28,-2],[-44,0],[-11,-14],[-7,-25],[-23,-31],[-33,-25],[-46,8],[-32,-13],[-32,-5],[-45,32],[-51,-1],[-33,-15],[-46,1],[-10,18],[6,30],[-4,27],[-8,22],[-6,27],[-19,6],[-54,-11],[-15,12],[2,27],[9,33],[8,43],[-3,26],[-28,-4],[-17,3],[-9,30],[-16,23],[-18,1],[-21,5],[-24,-9],[-12,-30],[-16,-5],[-16,-8],[-12,-11],[-7,-27],[3,-25],[5,-55],[-8,-29],[-22,-16],[-20,3],[-14,-7],[-26,-31],[-12,-11],[-3,-19],[-2,-28],[-22,10],[-35,104],[-40,118],[-45,125],[-24,67],[-89,216],[-43,103],[-76,178],[-68,162],[-77,168],[-46,95],[-48,101],[-17,27],[-26,36],[-65,69],[-94,99],[-87,87],[-68,69],[-17,30],[-8,17],[-7,18],[-10,34],[0,22],[64,-4],[14,22],[24,80],[13,69],[-22,-3],[-40,-28],[-21,-21],[-12,-9],[-64,-14],[-35,-31],[-72,-52],[-52,-30],[-10,-5],[-61,-10],[-11,-12],[-1,-27],[-5,-30],[-43,-44],[-47,-38],[-17,-5],[-29,9],[-14,-5],[-43,-41],[-64,-62],[-6,-25],[0,-30],[-7,-27],[-14,-10],[-21,24],[-19,28],[-39,20],[-58,5],[-36,-10],[-24,-16],[-48,-61],[-18,-13],[-10,4],[-2,30],[-10,21],[-12,32],[6,63],[26,60],[43,33],[35,35],[10,38],[-1,27],[-13,12],[-13,2],[-8,-13],[-23,-26],[-35,-21],[-29,-4],[-13,1],[-31,13],[-57,73],[-48,10],[-33,6],[-11,-7],[-5,-18],[3,-20],[7,-19],[-4,-16],[-15,-11],[-24,-20],[-11,13],[-6,51],[1,40],[-16,34],[-17,52],[-23,31],[-22,-10],[-11,-44],[-17,-15],[-33,9],[-58,-25],[-95,-11],[-68,31],[-11,28],[28,59],[2,53],[0,48],[7,35],[-16,66],[-38,136],[-22,102],[-34,77],[-14,25],[-70,-13],[-19,-17],[-13,-23],[-22,-17],[-31,-12],[-26,8],[-29,13],[-31,27],[-36,36],[-69,28],[-68,9],[-75,10],[-38,-18],[-36,-29],[-52,-59],[-24,-6],[-38,-5],[-27,-15],[6,-26],[5,-36],[-10,-29],[-15,-15],[-22,-10],[-37,-3],[-31,-6],[-38,-41],[-58,-10],[-63,-15],[-44,-23],[-96,-29],[-55,-13],[-93,-28],[-74,-5],[-11,20],[-58,-43],[-64,3],[-11,-18],[-16,-16],[-17,-8],[-22,-20],[-13,-43],[-9,-45],[-20,-13],[-25,16],[-19,16],[-33,-16],[-44,-10],[-35,6],[-18,13],[-73,-21],[-37,-26],[-8,-13],[-9,-8],[-43,-17],[-35,5],[-6,-1],[-33,-13],[-47,-22],[-33,-7],[-29,0],[-18,-18],[-14,-20],[-123,-21],[-12,-14],[-25,-18],[-127,-6],[-11,-13],[-4,-15],[-16,-4],[-92,28],[-74,31],[-28,-17],[-24,-32],[-9,-47],[0,-40],[0,-34],[-11,-25],[-24,-31],[-2,-20],[33,-23],[42,-18],[24,8],[21,13],[17,-4],[13,-15],[4,-18],[-2,-13],[-8,-9],[-27,-17],[-25,6],[-23,-12],[-12,-22],[-6,-40],[10,-29],[31,-7],[35,-21],[39,-9],[23,3],[30,-31],[69,-38],[18,-29],[1,-30],[-13,-23],[-18,-13],[-23,7],[-47,8],[-52,5],[-37,10],[-54,-4],[-44,-9],[-11,-23],[-18,-42],[-14,-23],[-25,-44],[-8,-39],[13,-61],[44,-101],[4,-33],[-16,-33],[-30,-27],[-44,-48],[-47,-2],[-21,-12],[-53,-58],[-47,-28],[-10,-25],[11,-25],[59,-32],[30,-35],[8,-40],[13,-30],[46,-20],[95,-46],[6,-5],[6,-21],[97,-29],[13,-16],[40,-52],[8,-54],[-20,-54],[-13,-84],[-21,-75],[-45,-49],[-79,-46],[-85,-18],[-36,3],[-23,6],[-38,14],[-28,38],[-21,37],[-15,9],[-15,-6],[-13,-23],[-19,-63],[-21,-62],[-17,-22],[-63,-30],[-7,11],[7,41],[-8,13],[-12,9],[-78,16],[-30,11],[-22,5],[-28,10],[-19,25],[-42,76],[-32,59],[-53,53],[-47,11],[-4,-6],[-36,-2],[-57,13],[-3,-1],[-18,-25],[-13,-38],[-18,-32],[-26,-17],[-32,-4],[-37,34],[-37,51],[-46,17],[-45,-11],[-17,-8],[-47,-30],[-15,14],[-21,9],[-46,-48],[-50,-53],[-11,-39],[-15,-37],[-34,-34],[-36,-30],[-31,-11],[-40,11],[-51,37],[-46,45],[-50,72],[-41,42],[-39,32],[-23,8],[-19,-12],[-8,-26],[5,-20],[12,-18],[9,-57],[3,-69],[-4,-40],[-11,-23],[-11,-9],[-11,3],[-13,25],[-7,52],[-7,61],[-34,77],[-30,47],[-14,26],[-27,43],[-24,26],[-50,31],[-24,22],[-43,85],[-24,26],[-31,21],[-25,7],[-5,-5],[-53,-12],[-37,1],[-23,16],[-24,2],[-2,0],[-26,-10],[-5,0],[-13,1],[-20,17],[-21,48],[-25,50],[-31,16],[-59,-21],[-65,-68],[-46,-41],[-37,-1],[-22,-6],[-14,2],[-12,13],[-3,25],[-6,31],[-30,30],[-40,20],[-38,22],[-24,6],[-11,-32],[-31,-49],[-35,-48],[-45,-79],[-13,-27],[-17,-19],[-40,-20],[-48,-33],[-30,-38],[-43,-17],[-47,-10],[-21,-33],[-12,-53],[-16,-48],[-73,-72],[-40,-47],[-30,-25],[-20,3],[-22,7],[-9,-4],[12,-36],[9,-113],[14,-72],[10,-41],[9,-33],[7,-50],[-9,-29],[-14,-20],[-45,-31],[-46,-26],[-27,17],[-31,42],[-12,22],[-33,71],[-59,109],[-40,55],[-30,21],[-26,-7],[-21,-25],[-15,-23],[-13,-26],[-9,-32],[1,-45],[-1,-47],[-13,-33],[-33,-36],[-38,-49],[-29,-90],[-18,-112],[-6,-78],[14,-37],[28,-29],[18,-30],[4,-29],[-5,-30],[-15,-35],[-30,-39],[-42,-95],[-26,-133],[15,-93],[53,-51],[42,-23],[17,-30],[15,-60],[-2,-62],[-5,-42],[10,-41],[20,-48],[25,-30],[27,16],[26,20],[33,-8],[93,-16],[48,-9],[16,-21],[30,-69],[38,-77],[39,-78],[14,-34],[31,-93],[33,-84],[35,-104],[-2,-28],[-19,-11],[-30,2],[-23,16],[-13,12],[-11,4],[-13,-5],[-11,-13],[-5,-20],[2,-28],[9,-26],[12,-16],[7,-6],[46,-34],[51,-38],[63,-54],[13,-7]],[[63675,78534],[4,-26],[-34,-5],[-4,-31],[-8,-23],[-75,-51],[-19,0],[-16,-8],[1,-33],[4,-30],[13,-32],[-6,-14],[-11,-5],[-14,10],[-14,17],[-14,4],[-14,-4],[-64,-91],[-27,-23],[-30,-9],[-61,-34],[-19,2],[-17,12],[-15,-17],[-4,-42],[-17,29],[-18,23],[-8,7],[-4,-4],[17,-45],[1,-41],[-4,-23],[-7,-21],[-10,-12],[-11,-7],[-6,-73],[-12,-44],[-15,-40],[-21,-72],[-16,-31],[-13,-37],[-9,-51],[-12,12],[-10,22],[-6,-29],[-7,-25],[-32,-37],[-24,-36],[-11,-55],[-2,-33],[3,-30],[9,-17],[46,-20],[29,-25],[28,-47],[30,-40],[21,-51],[15,-64],[19,-123],[9,-129],[28,161],[24,29],[-6,-46],[-16,-69],[-17,-101],[-5,-74],[6,-64],[0,-30],[-13,-106],[7,-20],[11,-19],[29,-36],[21,-54],[5,-75],[12,-20],[14,-18],[72,-150],[41,-100],[21,-58],[22,-73],[12,-17],[14,-11],[27,-34]],[[63492,75947],[-15,-38],[-25,-67],[-11,-35],[-25,-33],[-44,-35],[-24,-15],[-25,-72],[-29,-69],[-19,-8],[-56,11],[-19,6],[-57,31],[-16,19],[-15,81],[-17,34],[-22,23],[-15,19],[-6,19],[-16,28],[-30,42],[-21,40],[-16,11],[-21,-14],[-12,-4],[-5,7],[-4,33],[-30,12]],[[62897,75973],[-6,8],[-39,32],[-16,17],[-14,2],[-31,9],[-27,16],[-12,20],[-18,22],[-33,29],[-24,26],[-1,17],[15,71],[10,68],[-6,13],[-14,11],[-25,11],[-61,-4],[-38,69],[-13,15],[-25,11],[-35,21],[-20,15],[-6,-6],[-22,-75],[-22,54],[-13,14],[-19,8],[-20,0],[-49,-26],[-36,-28],[-27,-22],[-27,-12],[-13,-17],[-37,3],[-18,13],[-6,14],[3,23],[13,26],[1,14],[-5,11],[-44,35],[-18,22],[-59,30],[-71,53],[-25,35],[-3,24],[-28,24],[-36,21],[-28,-6],[-26,-2],[-41,39],[-38,3],[-44,-12],[-10,-5],[-10,-5],[-130,16],[-34,33],[-28,33],[-77,24],[-39,25],[-39,36],[-42,31],[-36,-13],[-49,18],[-54,15],[-18,-9],[-17,-40],[-13,-37]],[[61104,76854],[-29,31],[-99,146],[-52,98],[-170,225],[-22,17],[-90,33],[-37,26],[-91,161],[-41,-22],[-37,6],[-21,14],[-24,23],[-16,30],[-19,68],[-22,38],[-72,56],[-82,33],[-6,14],[-3,20],[71,38],[19,22],[-36,29],[-14,5],[-11,13],[20,22],[20,10],[31,-25],[35,-46],[31,-18],[14,22],[106,39],[7,30],[0,34],[-11,-2],[-6,8],[0,38],[16,51],[48,84],[25,116],[23,27],[16,-18],[-1,-27],[3,-20],[15,39],[14,53],[36,0],[24,-9],[26,6],[-49,88],[-66,87],[-28,-6],[-18,13],[-29,73],[-12,60],[28,-2],[28,-9],[53,42],[20,6],[31,-13],[44,-8],[-3,39],[-14,47],[53,34],[47,19],[91,68],[40,12],[5,15],[1,20],[-13,54],[-14,40],[-48,2],[-26,-55],[-72,-19],[-33,4],[26,36],[25,13],[8,15],[-52,-13],[-25,-37],[-76,-48]],[[58823,81855],[-2,14],[-19,55],[-11,24],[-13,13],[-7,15],[0,66],[2,61],[9,8],[-25,50],[-2,38],[12,19],[0,16],[-8,22],[-25,37],[-25,41],[-16,33],[-11,15],[13,26],[17,45],[6,26],[9,6],[40,4],[29,-1],[22,-9],[8,-22],[21,-23],[57,-10],[24,1],[30,21],[49,48],[12,34],[30,24],[18,10],[17,4],[2,20],[-1,28],[-6,17],[-60,57],[-8,18],[-5,22],[8,21],[-1,23],[-69,51],[-58,9],[-47,-3],[-19,10],[8,26],[12,46],[3,38],[-3,17],[-9,15],[-46,32],[-62,48],[-29,56],[-15,57],[-17,35],[-31,23],[2,14],[21,54],[-1,9],[-9,13],[-38,27],[-51,51],[-3,13],[4,31],[7,32],[11,14],[30,64],[0,21],[-5,29],[-23,49],[-17,32],[-1,16],[3,14],[11,17],[11,22],[2,73],[0,26],[-7,15],[-7,7],[-16,-4],[-22,12],[-16,19],[-10,6],[-11,20],[-31,39],[-6,11],[-61,33],[-53,-5],[-30,6],[-15,-8],[-16,-21],[-22,-15],[-17,0],[-15,-11],[-41,-38],[-19,23],[-17,34],[6,29],[7,27],[-1,18],[-6,15],[-25,17],[-55,31],[-15,0],[-24,-11],[-42,-34],[-15,7],[-14,27],[-15,34],[-20,18],[-44,-2],[-4,-1],[-21,-20],[-9,2],[-38,50]],[[57818,84183],[7,27],[8,41],[-3,31],[-6,41],[-16,72],[-2,20],[-27,31],[-4,26],[-14,34],[-14,22],[-3,47],[-9,17],[-12,8],[-41,-14],[-5,2],[20,76],[2,44],[12,47],[15,18],[4,16],[2,30],[-2,27],[-9,13],[-35,30],[-37,35],[-8,45],[-11,10],[-33,2]],[[57597,84981],[1,13],[5,36],[8,31],[25,33],[6,23],[8,20],[59,24],[6,9],[1,8],[-3,8],[-13,12],[-14,17],[-8,46],[-20,71],[-19,48],[-4,28],[5,33],[7,31],[0,31],[-29,172],[2,31],[8,31],[14,26],[30,34],[38,62],[25,81],[14,49],[11,11],[22,3],[8,15],[4,8],[19,9],[6,9],[-5,17],[-19,29],[-14,18]],[[57781,86108],[14,40],[-5,54],[-9,44],[12,33],[21,3],[22,-36],[34,-18],[25,24],[8,46],[18,20],[24,-18],[40,-7],[33,3],[22,10],[10,15],[9,27],[18,34],[19,23],[145,-26],[126,-47],[9,18],[5,30],[-32,26],[-23,14],[-29,54],[-42,43],[-42,4],[-55,-15],[-84,9],[-71,81],[-47,25],[-34,62],[-8,33],[36,-28],[5,29],[3,40],[-20,24],[-18,14],[-93,-61],[-106,-20]],[[57721,86714],[98,120],[71,87],[14,14],[31,23],[26,24],[21,33],[71,63],[72,69],[67,90],[24,28],[31,30],[67,96],[22,26],[82,120],[48,59],[24,34],[103,113],[69,91],[28,50],[27,71],[15,49],[27,63],[1,21],[-8,19],[-20,30],[-28,35],[-25,43],[-18,38],[-57,53],[-89,67],[-66,50],[-101,107],[-18,26],[4,7],[57,33],[57,83],[25,42],[6,32],[0,37],[-4,34],[-7,21],[-27,27],[-78,48],[-19,44],[-15,47],[0,19],[37,50],[2,25],[-5,26],[-10,19],[-80,22],[-23,24],[-18,38],[-9,33],[-1,19],[6,22],[27,23],[25,16],[5,22],[-1,23],[-4,11],[-50,11],[-5,6],[-1,8],[2,10],[28,41],[3,79],[26,55],[-29,32],[2,5],[44,17],[41,4],[18,7],[2,25],[-4,35],[-42,136],[-9,39],[-28,50],[-23,33],[-14,24],[-22,47],[-13,47],[-22,54],[-26,48],[-22,46],[-55,88],[-8,25],[1,22],[5,23],[44,73],[40,60],[51,71],[49,59],[53,69],[13,70],[-2,12],[-44,37],[-82,101],[-51,77],[-78,32],[-104,41],[-35,93],[-25,79],[2,29],[76,134],[7,25],[-1,15],[-8,9],[-11,6],[-70,4],[-11,18],[42,14],[35,19],[58,28],[18,7]],[[58045,91602],[43,16],[14,12],[11,15],[40,100],[10,16],[123,36],[45,18],[26,23],[12,19],[9,21],[7,24],[2,22],[-10,28],[6,3],[13,-1],[42,-28],[66,-30],[48,-2],[20,5],[10,13],[7,26],[0,27],[-15,75]],[[58574,92040],[50,-8],[112,-46],[26,5],[34,13],[34,55],[25,9],[33,-12],[9,14],[-17,46],[4,22],[113,-48],[48,-36],[105,-32],[18,-17],[2,-30],[-5,-25],[-23,-14],[-44,2],[-161,39],[-23,-24],[19,-20],[47,-25],[13,-43],[72,6],[69,-16],[32,5],[6,-14],[-22,-36],[10,-9],[77,34],[36,10],[19,-9],[3,-29],[-13,-36],[-1,-28],[-24,-66],[-36,-21],[-16,-27],[54,17],[28,18],[53,92],[16,12],[152,1],[34,-5],[142,-44],[40,-3],[46,5],[16,20],[16,6],[158,-48],[211,-109],[309,-179],[174,-160],[20,-34],[63,-20],[14,14],[35,-12],[205,-146],[70,-7],[-9,31],[-12,29],[18,-7],[24,-21],[38,-57],[48,-42],[48,-64],[41,-24],[36,-9],[30,-18],[56,-17],[26,-155],[20,-34],[0,-68],[36,-28],[27,-5],[-1,-51],[-22,-119],[-24,-51],[-186,-219],[-116,-84],[-226,-97],[-176,-36],[-72,-3],[-138,18],[-75,20],[-93,55],[-86,27],[-60,12],[-110,5],[-239,54],[-41,19],[-150,105],[-60,-30],[-35,-5],[-24,36],[10,10],[5,12],[-85,30],[-70,2],[-37,26],[-46,19],[-20,-12],[-11,0],[-92,46],[-41,37],[-43,65],[10,23],[13,15],[-148,38],[-140,5],[25,-18],[60,-10],[39,-26],[44,-37],[-10,-50],[62,-50],[47,-48],[2,-14],[18,-10],[70,-14],[12,-44],[-11,-17],[9,-25],[53,-27],[31,-7],[38,-17],[-17,-33],[-32,-22],[-33,-10],[16,-8],[41,3],[152,-55],[80,-56],[81,-102],[26,-50],[2,-28],[-4,-27],[-12,-30],[-5,-31],[-28,-88],[-20,-31],[-38,-35],[36,-68],[37,-63],[37,-105],[7,-42],[1,-65],[33,-26],[-13,-10],[-13,-18],[3,-84],[46,-69],[70,-45],[41,-9],[59,18],[43,-25],[96,-84],[43,-89],[18,-18],[97,-34],[72,-20],[111,-54],[19,-2],[54,47],[92,32],[29,44],[-3,37],[-23,67],[-7,65],[-31,27],[-28,18],[-86,-14],[-39,3],[-30,17],[-40,47],[-75,113],[-40,37],[-13,24],[-14,32],[2,53],[33,-2],[37,30],[27,106],[46,14],[25,-1],[108,-50],[134,-132],[29,-14],[31,-2],[51,4],[9,-18],[27,-20],[20,-3],[123,-42],[142,-82],[53,3],[21,46],[4,20],[59,46],[40,8],[57,-17],[10,13],[-19,68],[-26,59],[-39,37],[-68,111],[-28,54],[-13,57],[9,50],[10,36],[142,89],[51,53],[50,69],[23,14],[83,19],[111,59],[85,78],[84,119],[36,31],[28,-2],[38,-19],[42,-35],[57,-6],[55,5],[64,-3],[88,-54],[14,-17],[14,-23],[-28,-45],[-3,-29],[23,14],[32,6],[29,-9],[28,-25],[20,-28],[25,-24],[7,32],[4,28],[-13,70],[34,99],[26,43],[48,110],[-14,71],[-2,82],[-7,38],[-31,55],[-61,39],[-61,13],[-20,38],[4,43],[17,63],[50,133],[52,188],[2,43],[-5,24],[4,24],[-7,57],[-9,42],[-213,163],[-13,15],[-7,22],[23,5],[16,-1],[160,-76],[35,-4],[251,21],[123,-18],[103,-39],[74,-108],[76,-99],[70,-86],[2,-70],[-73,-14],[-70,-4],[-180,-35],[-43,-39],[-120,-122],[-11,-37],[11,-36],[55,-38],[118,-57],[52,-113],[37,-57],[28,-22],[27,-5],[60,-1],[42,-13],[12,-11],[17,11],[38,4],[224,60],[44,26],[15,40],[16,133],[20,46],[19,57],[-7,35],[-2,40],[112,38],[104,26],[50,-8],[13,28],[-32,55],[-19,28],[16,12],[24,-15],[32,-9],[56,9],[215,113],[84,63],[50,25],[80,57],[38,19],[67,7],[71,23],[78,42],[105,36],[17,2],[21,-5],[43,-42],[-16,-24],[-12,-25],[21,-14],[17,-6],[21,7],[22,17],[54,26],[15,33],[-21,13],[-27,49],[-32,11],[-26,-2],[95,71],[202,105],[108,48],[107,4],[85,-6],[-32,-16],[-140,-22],[-21,-11],[0,-13],[34,-8],[14,-16],[-11,-18],[-11,-6],[-16,-54],[-21,-43],[44,-56],[4,-58],[-28,-31],[-39,12],[-34,-20],[-62,-14],[-14,-18],[-9,-26],[40,-6],[31,2],[110,-17],[15,-2],[37,18],[37,4],[45,6],[23,11],[23,-13],[44,-51],[40,10],[17,99],[63,62],[74,50],[72,5],[69,35],[33,7],[64,-14],[96,-3],[81,-30],[60,-8],[88,51],[203,143],[17,-33],[33,48],[157,50],[38,2],[1,-20],[14,-44],[30,-27],[42,-64],[-20,-17],[-21,-10],[-31,-43],[-3,-99],[59,-25],[81,-29],[34,1],[28,16],[9,9],[10,15],[8,29],[5,22],[-21,55],[8,58],[74,-4],[91,17],[41,33],[49,63],[33,52],[-21,92],[-53,-20],[-91,199],[-47,77],[30,36],[78,23],[71,74],[27,15],[29,3],[210,-51],[239,-12],[203,-39],[230,-81],[112,-57],[93,-63],[-9,-45],[38,13],[82,-40],[56,-16],[57,-24],[22,-32],[75,-23],[78,-43],[14,-8],[95,-32],[68,-11],[41,-69],[136,-100],[25,-38],[119,-63],[59,-52],[37,20],[91,126],[54,144],[32,77],[-60,3],[-45,-22],[-29,5],[-32,23],[-52,58],[-66,97],[-13,106],[-18,35],[-64,28],[-42,32],[-156,63],[-28,-22],[-8,-34],[-10,-25],[-16,32],[-10,29],[0,46],[8,59],[26,99],[40,-5],[21,15],[26,44],[-12,37],[-14,28],[3,43],[25,118],[11,138],[-21,34],[-19,23],[-89,-24],[-33,13],[-8,26],[-2,21],[25,35],[25,59],[-43,-13],[-15,23],[36,34],[42,82],[99,38],[74,37],[116,78],[86,77],[56,98],[38,93],[62,218],[58,160],[98,165],[61,15],[23,-3],[4,-12],[-14,-14],[-4,-20],[26,-7],[42,-1],[79,10],[134,-6],[234,14],[33,-7],[87,-48],[47,6],[96,-23],[52,-26],[50,-31],[-7,-120],[-10,-80],[-35,-152],[-14,-39],[-56,-110],[-26,-72],[-42,-50],[-60,-35],[-8,-21],[-5,-31],[59,-87],[140,-90],[34,-108],[8,-81],[-9,-210],[-13,-31],[-26,-34],[-25,-40],[16,-59],[20,-219],[4,-178],[-16,-61],[-8,-129],[0,-43],[14,-64],[28,-54],[37,-34],[105,-63],[99,-76],[7,-24],[5,-29],[-35,-30],[-55,-78],[-35,-65],[-3,-53],[12,-67],[-6,-63],[-23,-56],[-33,-41],[-99,-63],[-207,-334],[-50,-39],[-84,13],[23,-48],[29,-68],[-4,-45],[-54,3],[-77,-48],[-35,-32],[-60,-17],[-45,17],[-50,31],[7,26],[10,12],[35,19],[34,25],[-17,5],[-14,0],[-38,-32],[-45,-7],[-52,40],[-41,43],[-19,9],[-38,-18],[-146,8],[-38,-7],[-18,-16],[10,-13],[11,-24],[15,-48],[14,-36],[60,-39],[81,-15],[78,-48],[99,-34],[224,14],[59,-4],[58,-15],[97,-50],[42,4],[71,45],[17,101],[9,31],[257,142],[48,31],[77,77],[25,52],[29,140],[25,50],[167,161],[26,41],[5,76],[-3,51],[-10,50],[-30,84],[-34,49],[-33,67],[24,138],[28,53],[151,63],[129,23],[144,43],[58,9],[40,-7],[41,-47],[36,-69],[104,-105],[35,-72],[7,-89],[-4,-216],[-20,-94],[41,-24],[20,-22],[51,-31],[27,-31],[27,-11],[59,-7],[168,11],[92,6],[-9,14],[-14,11],[-78,4],[-110,23],[-159,42],[-19,91],[4,56],[36,106],[25,18],[31,7],[36,15],[-11,67],[-14,61],[-34,85],[-37,157],[-51,1],[-39,31],[-189,92],[-179,68],[-123,9],[-39,-7],[-102,-71],[-66,-15],[-125,31],[-107,-17],[-40,17],[-16,31],[32,127],[-17,49],[-47,66],[-28,51],[5,56],[70,214],[29,56],[75,100],[38,76],[-9,44],[-161,239],[-43,85],[-19,27],[-39,32],[-60,38],[-18,34],[163,231],[74,40],[103,25],[50,22],[87,47],[52,39],[17,31],[11,37],[2,91],[-11,73],[-14,41],[-31,52],[-31,59],[22,15],[22,9],[58,-1],[60,-32],[30,-64],[35,-60],[0,-40],[-3,-31],[15,-44],[13,-18],[14,-31],[-13,-25],[-14,-12],[-27,-35],[-43,-108],[-33,-14],[-8,-84],[71,-92],[-9,-69],[-14,-23],[-39,-37],[5,-30],[10,-21],[111,-44],[105,-27],[176,-9],[51,-43],[19,30],[165,-7],[133,-105],[70,-32],[57,-11],[116,13],[20,9],[19,30],[-54,-2],[-24,-14],[-22,1],[-38,11],[-27,18],[-29,35],[-48,104],[-84,33],[-57,-14],[-62,7],[-102,56],[-68,21],[-121,61],[-34,25],[-27,51],[-31,84],[-20,47],[26,9],[83,46],[124,15],[53,-16],[136,-94],[63,-3],[114,41],[13,26],[-26,53],[-34,27],[-66,13],[-80,-24],[-23,20],[8,28],[9,21],[43,5],[30,16],[65,58],[72,28],[71,10],[261,-8],[148,-91],[144,-41],[63,-31],[17,-5],[15,-21],[11,-48],[182,-129],[42,-17],[116,-6],[130,30],[59,3],[63,-9],[33,-16],[36,-30],[-19,-38],[-17,-23],[-36,-64],[-16,-18],[-118,-73],[-47,-19],[-13,-96],[-6,-21],[-5,-34],[22,-68],[5,-42],[-18,-58],[-30,-62],[6,-50],[10,-67],[5,20],[-2,30],[8,35],[54,85],[39,115],[40,30],[36,7],[40,-34],[11,-46],[2,-70],[-8,-65],[-30,-100],[-50,-70],[-16,-39],[23,-37],[25,-29],[29,-9],[33,3],[8,9],[6,28],[-10,36],[-6,33],[61,25],[57,14],[45,42],[11,28],[10,46],[-23,72],[-20,54],[-68,129],[-51,66],[32,99],[53,110],[20,27],[6,17],[6,30],[-5,31],[-6,20],[-54,83],[-39,27],[-123,16],[-31,13],[-90,85],[-11,19],[-20,61],[-7,15],[-25,16],[-83,35],[-58,15],[-84,4],[-51,18],[-76,56],[-8,19],[-22,73],[-17,37],[5,28],[27,58],[19,51],[-23,44],[-33,14],[-36,21],[-15,40],[-9,43],[-1,34],[-6,39],[17,33],[38,34],[-9,24],[5,31],[247,41],[96,11],[480,4],[34,12],[209,20],[89,24],[94,-25],[34,1],[69,7],[45,51],[102,20],[170,21],[84,-4],[19,-15],[19,-21],[-92,-62],[-92,-56],[-76,-24],[-74,-49],[-7,-19],[-2,-12],[2,-39],[5,-25],[77,-32],[59,-44],[57,-32],[45,-19],[11,11],[-165,104],[-42,23],[-17,25],[8,38],[17,17],[26,19],[17,9],[62,20],[206,27],[49,51],[21,30],[56,31],[-19,13],[-46,8],[-36,18],[-142,183],[-35,28],[-109,20],[-49,21],[50,62],[59,16],[40,-4],[35,-17],[65,-51],[92,22],[-35,23],[-58,26],[-54,42],[-77,37],[-86,24],[-90,10],[25,55],[50,-7],[16,17],[23,33],[125,-77],[59,21],[50,35],[104,93],[14,42],[-50,23],[-41,11],[-56,-2],[-5,25],[24,33],[45,13],[139,-36],[232,93],[63,45],[161,58],[79,-7],[164,77],[227,33],[132,1],[102,42],[156,15],[54,17],[263,43],[146,34],[23,27],[-131,-22],[-31,20],[-27,-13],[-20,-19],[-63,34],[-17,-9],[-13,-18],[-23,-6],[-27,4],[-9,41],[32,55],[37,-29],[43,42],[27,1],[81,-26],[54,27],[72,13],[79,-12],[33,3],[19,25],[129,-22],[89,15],[61,-2],[95,-13],[43,-18],[-25,-42],[-92,-68],[25,-11],[53,31],[159,46],[26,-9],[-18,-40],[-11,-17],[106,23],[91,50],[40,9],[41,-31],[39,28],[9,28],[69,6],[28,26],[49,19],[40,8],[89,36],[31,-11],[59,-9],[56,-17],[105,-40],[14,-15],[13,-3],[30,-28],[-22,-42],[-24,-60],[-45,-28],[27,-3],[19,8],[36,40],[32,28],[-8,119],[-57,60],[-44,20],[-102,63],[-34,27],[-46,28],[18,17],[196,-22],[100,11],[108,-7],[144,27],[61,-28],[69,1],[80,-23],[24,27],[-131,29],[-58,-3],[-21,15],[22,34],[25,51],[-25,44],[-24,24],[-4,45],[23,52],[54,22],[30,42],[63,55],[303,179],[145,68],[55,9],[64,-6],[126,57],[47,0],[175,-45],[42,-33],[96,-26],[111,-14],[51,-21],[25,-24],[21,-33],[-90,-22],[-97,-66],[-132,-36],[-163,-24],[-34,-18],[311,-5],[90,4],[19,-57],[30,-2],[90,27],[54,2],[102,-20],[21,11],[44,1],[94,-25],[42,-37],[-67,-60],[-69,-53],[-84,-90],[-26,7],[-44,2],[8,-45],[74,2],[40,-20],[92,25],[130,-8],[27,7],[50,28],[13,52],[22,33],[43,11],[47,-10],[80,0],[203,17],[170,-22],[136,27],[178,-20],[78,-21],[57,-37],[52,-11],[42,-29],[43,-42],[-21,-34],[-21,-23],[56,25],[43,6],[32,-15],[57,-15],[18,-95],[17,-18],[15,-33],[-21,-30],[-18,-14],[45,3],[63,32],[13,11],[16,24],[-24,23],[-21,14],[27,11],[52,-4],[26,-42],[17,-38],[38,-127],[81,17],[4,-38],[-34,-87],[-36,-64],[-14,-14],[-23,-3],[9,34],[-14,20],[-21,12],[-74,12],[-138,79],[-37,8],[-8,-4],[-4,-7],[77,-54],[63,-95],[57,28],[23,-5],[31,-45],[56,-18],[47,-30],[-31,-91],[-192,-160],[-203,-93],[-90,-65],[-158,-47],[-113,-64],[-144,-47],[-42,-51],[-107,-32],[8,-17],[12,-18],[-13,-30],[-15,-23],[-83,-47],[-121,-32],[-243,-195],[-121,-40],[-137,-2],[-29,-18],[-104,-123],[-32,-26],[-136,-13],[-142,-201],[-79,-68],[-69,-37],[72,7],[85,27],[99,65],[26,30],[14,34],[29,27],[45,19],[176,21],[72,-8],[106,6],[70,36],[41,13],[37,4],[19,26],[62,5],[143,34],[21,12],[46,51],[85,-19],[61,10],[159,91],[96,34],[26,24],[-19,17],[-22,12],[-92,-32],[-83,-10],[-94,8],[-13,13],[-11,32],[30,47],[26,28],[60,37],[49,13],[183,-40],[38,-5],[21,66],[58,-3],[58,-11],[-25,-14],[-64,-21],[20,-48],[28,-33],[112,-47],[95,-21],[70,1],[110,20],[17,14],[23,38],[-28,72],[27,-9],[27,-18],[42,-44],[40,-75],[25,-35],[-15,-37],[-57,-71],[33,-39],[59,-26],[0,-116],[-4,-56],[-29,-61],[-34,-26],[-33,-38],[8,-36],[8,-22],[35,-42],[98,-13],[13,11],[-23,13],[-66,20],[-26,16],[-23,38],[27,42],[29,31],[35,71],[11,50],[-7,52],[23,24],[35,25],[17,5],[16,11],[-25,13],[-23,6],[-48,32],[-8,41],[96,17],[57,29],[210,13],[144,55],[322,-15],[226,-45],[317,-5],[117,-30],[11,-11],[7,-22],[-50,-9],[-83,0],[-22,-56],[14,-70],[148,-74],[129,-31],[90,-49],[48,-4],[188,5],[110,-25],[100,19],[109,0],[38,-5],[40,-37],[64,-10],[77,-1],[43,7],[17,9],[-6,15],[-64,22],[7,27],[25,6],[107,-36],[44,-6],[39,27],[29,49],[16,33],[17,17],[14,2],[14,10],[-34,39],[-33,49],[-7,32],[-10,16],[-4,59],[30,60],[21,17],[85,-23],[38,36],[24,14],[102,24],[43,-2],[71,-23],[228,-110],[-5,-42],[54,12],[26,17],[61,11],[41,18],[11,-7],[14,-17],[-10,-25],[-14,-25],[9,-15],[12,-3],[61,-31],[79,57],[32,55],[22,11],[197,-38],[59,-21],[12,-12],[8,-20],[32,-22],[39,-12],[-5,-18],[-2,-19],[92,-3],[40,-16],[44,-25],[-5,-29],[11,-17],[41,-2],[11,3],[-13,-39],[-55,-42],[-33,-16],[-38,-28],[21,-5],[95,-8],[59,-56],[6,-41],[-37,-16],[-84,-52],[-50,-21],[-35,-2],[-25,-7],[36,-22],[158,-6],[46,-28],[36,-70],[0,-86],[-36,-43],[-97,-7],[-127,96],[-78,37],[-109,71],[-21,-12],[32,-60],[51,-34],[92,-93],[154,-192],[36,16],[21,24],[10,31],[-9,43],[25,-21],[23,-38],[46,-64],[-62,3],[-80,-21],[-29,-26],[22,-35],[59,-5],[25,-49],[46,-60],[103,-164],[73,-31],[71,-68],[71,-32],[37,-2],[25,42],[20,-15],[19,-76],[34,-33],[38,-2],[31,13],[45,36],[36,42],[58,116],[38,58],[36,24],[-13,28],[4,33],[26,77],[36,91],[27,49],[66,97],[25,18],[18,-32],[14,-42],[10,-18],[10,-7],[81,-85],[82,-67],[73,-33],[115,-32],[167,5],[30,42],[58,32],[94,16],[55,39],[91,11],[57,-6],[88,-28],[197,-89],[55,-33],[29,-35],[64,-52],[41,-25],[40,-18],[14,5],[-5,15],[-20,15],[-16,19],[47,19],[5,15],[17,12],[62,11],[-61,19],[-20,3],[-29,11],[2,27],[19,19],[15,36],[19,23],[32,18],[24,3],[57,-23],[41,42],[30,-3],[63,-43],[56,-64],[31,0],[87,26],[98,1],[-13,38],[-68,83],[8,106],[-47,24],[-54,14],[78,27],[58,87],[46,8],[48,16],[-15,11],[-143,9],[-31,-10],[-21,-26],[-71,0],[-8,59],[-2,37],[93,79],[35,17],[236,-2],[71,15],[104,39],[-27,25],[-3,50],[-89,73],[7,16],[9,11],[27,0],[140,-19],[58,-39],[151,-40],[404,-13],[45,-14],[174,-17],[73,-19],[175,-23],[80,-17],[63,-25],[103,-15],[47,-17],[-5,-53],[-213,7],[-71,17],[-88,2],[-33,-8],[-53,-44],[-63,-23],[-53,-4],[35,-38],[49,-10],[158,49],[432,24],[66,-4],[-7,-34],[-58,-65],[-55,-50],[-80,-52],[-30,0],[63,110],[-26,6],[-24,-3],[-70,46],[-11,2],[-14,-11],[0,-16],[-13,-64],[26,-27],[0,-46],[-97,-29],[-38,3],[-40,18],[-17,0],[-5,-15],[8,-27],[-1,-13],[-15,-22],[-8,-23],[24,-26],[31,-7],[171,29],[75,36],[82,65],[146,159],[65,54],[37,21],[48,8],[269,-17],[156,-34],[149,-51],[74,-42],[54,-57],[10,-24],[5,-32],[-37,-30],[-167,-10],[-64,-17],[-24,-19],[-3,-11],[-8,-17],[12,-14],[75,-2],[72,-13],[100,-36],[15,-12],[32,-35],[10,-6],[149,6],[10,-12],[9,-26],[-39,-40],[-39,-27],[-80,-64],[40,23],[161,55],[41,10],[49,-4],[121,-50],[50,-39],[92,-112],[-26,-12],[-66,-12],[208,-85],[80,1],[184,24],[93,1],[172,54],[171,35],[157,2],[83,33],[220,-1],[211,-11],[164,-20],[185,-60],[180,-83],[105,-82],[21,-25],[30,-57],[13,-48],[13,-65],[-6,-51],[-26,-36],[-16,-45],[2,-53],[-31,-69],[29,-49],[80,-32],[172,-42],[47,-29],[6,-85],[14,-71],[15,-136],[29,-35],[47,-32],[9,-45],[-59,-144],[-37,-27],[-39,-40],[69,14],[35,53],[38,97],[36,16],[19,31],[0,92],[-23,79],[0,57],[15,46],[114,95],[61,38],[58,22],[158,19],[72,19],[82,-13],[58,5],[67,20],[59,-10],[98,-63],[347,-14],[61,-22],[233,-27],[18,0],[52,31],[154,108],[64,-7],[26,-17],[27,-43],[28,-27],[23,-75],[20,-102],[33,-18],[46,-6],[100,-38],[101,-48],[29,-92],[54,-77],[126,7],[132,16],[127,126],[0,52],[-31,74],[-47,72],[-37,112],[-117,25],[11,33],[44,39],[40,61],[6,46],[-11,98],[106,-7],[106,-11],[201,-44],[163,-18],[86,-28],[52,-32],[62,-23],[21,57],[23,14],[82,-33],[60,-9],[103,4],[130,-15],[141,3],[127,25],[47,-5],[52,-20],[84,-53],[143,-71],[130,-20],[150,-66],[141,-25],[113,-38],[16,-14],[5,-21],[8,-18],[89,-20],[165,-143],[-99962,-16],[56,-25],[56,-20],[23,6],[12,-2],[32,-35],[21,-16],[113,-41],[51,-45],[42,-52],[-21,10],[-38,34],[4,-39],[12,-27],[61,-26],[64,-20],[40,-24],[14,-21],[8,-38],[-10,-33],[37,12],[35,30],[-18,23],[-117,81],[-25,27],[34,-14],[158,-103],[43,-39],[-18,-8],[-13,-23],[14,-10],[19,8],[31,4],[31,-13],[35,-27],[73,-32],[434,-254],[10,-44],[12,-21],[7,-26],[2,-43],[-39,-51],[61,5],[9,6],[16,21],[17,14],[24,-17],[19,-34],[-6,-46],[-17,-38],[-2,-63],[15,-54],[15,-22],[13,-26],[3,-76],[-27,-34],[-15,-59],[17,-6],[52,-5],[18,-11],[30,-27],[7,-26],[7,-36],[9,-34],[7,-16],[8,3],[30,46],[14,14],[34,12],[19,-53],[-13,-88],[11,0],[8,10],[11,23],[15,14],[19,32],[16,39],[-19,31],[-21,20],[-51,10],[-26,24],[-10,29],[26,12],[22,21],[15,52],[-4,28],[-6,27],[-12,39],[-19,23],[-36,11],[-16,22],[-25,-1],[-25,6],[-9,8],[1,16],[28,7],[157,2],[57,22],[25,-6],[26,-16],[94,-21],[-3,-10],[-16,-10],[-27,-46],[-6,-26],[-1,-34],[24,-6],[24,14],[-12,27],[-3,33],[10,14],[13,3],[24,-24],[27,-8],[89,-10],[26,3],[8,13],[-18,14],[-116,33],[-2,17],[108,-22],[48,-20],[48,-15],[67,5],[66,-24],[63,-65],[58,-82],[59,-49],[61,-36],[103,-99],[13,-8],[10,-14],[-19,-16],[-17,-25],[34,17],[33,12],[17,-3],[15,-12],[10,-21],[5,-20],[-14,-18],[99,-4],[30,-12],[14,-49],[-28,-34],[-17,5],[-16,14],[-15,1],[-44,-14],[-67,-46],[-38,-37],[-7,-24],[6,-65],[-5,-31],[-29,-20],[-64,12],[-29,13],[-33,17],[-31,24],[-41,39],[-12,4],[-8,-10],[13,-24],[28,-31],[47,-40],[22,-45],[-14,-23],[-18,-5],[-13,1],[-41,14],[-29,3],[-90,-13],[-32,-8],[-11,7],[-3,19],[-48,15],[-29,2],[-13,6],[-11,21],[-32,30],[-48,11],[-31,2],[-17,-7],[63,-39],[56,-67],[-11,-13],[-7,-14],[31,-1],[21,4],[5,-17],[-16,-71],[-11,-15],[-98,-16],[25,-12],[25,-3],[29,3],[26,-13],[17,-44],[3,-46],[-25,-27],[-27,-21],[-53,-33],[-56,-14],[-29,3],[-28,-7],[-19,-17],[-5,-17],[24,11],[28,-6],[27,-21],[-3,-17],[-26,-18],[-5,-14],[9,-24],[-3,-20],[13,-11],[30,-4],[36,-14],[36,-20],[14,-16],[12,-24],[4,-24],[-6,-11],[-82,-4],[-12,3],[-5,28],[-10,22],[-31,16],[-12,-11],[9,-79],[-12,-24],[-14,-18],[-41,-10],[-33,6],[-28,37],[0,32],[19,19],[0,26],[-6,30],[-18,-35],[-23,-29],[-35,-37],[-18,-4],[-17,4],[-47,26],[-29,23],[-56,74],[-32,34],[-70,46],[-72,34],[-57,22],[-31,-3],[-30,-9],[-39,5],[-13,8],[-11,19],[-11,10],[-54,46],[-38,37],[-2,25],[8,30],[-7,73],[-18,69],[-48,68],[-126,44],[-104,31],[-37,7],[-33,-6],[-87,-57],[-59,-8],[-170,-3],[-28,6],[-26,24],[-6,33],[8,59],[-1,25],[-7,9],[-9,-1],[-33,24],[-31,40],[-25,41],[-16,56],[22,3],[31,-14],[5,13],[10,51],[21,24],[9,18],[14,68],[2,49],[-24,-26],[-39,-68],[-18,-20],[-14,-9],[-13,-4],[-30,13],[-22,17],[-1,65],[-10,17],[-10,-12],[-4,-24],[-28,-4],[-13,-10],[7,-39],[-3,-33],[-27,-13],[-53,-7],[-19,32],[-16,-45],[-12,-51],[-2,-67],[17,-56],[25,-27],[53,-40],[23,-28],[6,-37],[-2,-33],[-28,-42],[-18,-34],[-33,-81],[-19,-33],[-82,-69],[99951,-19],[-49,-66],[-56,-57],[-83,-23],[-126,-87],[-49,-16],[-65,40],[-149,26],[-47,35],[-68,88],[-23,13],[-21,35],[-82,39],[-72,-25],[-58,19],[-20,-14],[30,-12],[54,-11],[82,5],[27,-9],[24,-31],[28,-49],[-21,-32],[-22,-11],[-66,36],[-76,-5],[-36,9],[-102,60],[-78,-67],[-107,-35],[-83,-4],[-152,-53],[41,-2],[111,38],[65,0],[96,21],[51,24],[24,23],[31,23],[31,-11],[22,-24],[14,-35],[14,-45],[-18,-24],[-18,-12],[-22,-33],[102,56],[62,-33],[31,5],[58,49],[93,32],[11,-6],[11,-16],[-15,-94],[6,-74],[71,-81],[73,-47],[26,-2],[24,9],[9,43],[18,32],[23,-29],[19,-31],[27,-76],[-1,-23],[-6,-45],[23,-20],[32,-6],[12,-71],[11,-101],[-14,-9],[-16,0],[-51,-26],[7,-18],[52,-10],[15,-21],[-11,-47],[3,-21],[18,-5],[12,28],[-3,39],[5,17],[35,-81],[0,-31],[30,-36],[85,-54],[15,-24],[5,-40],[-21,-12],[-20,-28],[12,-40],[22,-32],[36,-12],[17,-52],[0,-49],[-26,-43],[-53,-59],[-31,-24],[-12,-42],[-3,-44],[-21,2],[-23,19],[-262,110],[-99,21],[-87,2],[-16,7],[1,26],[5,24],[13,29],[-6,26],[-11,2],[-11,-20],[-24,0],[-23,23],[-19,-7],[-9,-32],[-7,-17],[0,-20],[12,-18],[50,-20],[-8,-18],[-70,-14],[-57,-18],[-74,-54],[-30,-38],[-198,-93],[-48,-32],[-21,-4],[-27,-11],[-21,-39],[-110,-55],[-23,5],[-29,-46],[-27,-26],[-63,-3],[-41,-13],[-88,-67],[-55,21],[-65,-91],[-72,-87],[-21,0],[-55,36],[-14,-19],[9,-35],[19,-37],[-11,-10],[-22,10],[-16,2],[-12,-11],[2,-27],[-31,-33],[-24,-3],[-28,-11],[-10,-29],[9,-32],[-50,-36],[-41,-48],[-19,-8],[-22,-21],[-24,-16],[-28,3],[-67,-67],[-150,-117],[-42,-15],[-53,-36],[-5,-23],[0,-30],[-21,-48],[-25,-122],[-8,-22],[-12,-25],[-55,12],[-48,46],[-15,22],[-8,25],[-3,40],[-9,19],[-11,9],[-55,99],[-95,68],[-14,23],[-121,-18],[-33,-1],[-58,17],[-90,-11],[-109,-37],[-33,-23],[-111,-36],[-73,-57],[-142,-208],[-34,-43],[-16,-9],[-24,-4],[-10,42],[-4,33],[9,63],[17,52],[17,96],[5,39],[12,41],[-48,-3],[-66,-71],[-100,-69],[-46,-18],[-36,-41],[-26,-5],[-30,-15],[-3,-89],[-15,-48],[-18,-10],[-28,-2],[-21,19],[-30,71],[-40,37],[-24,7],[-18,-9],[-35,-48],[-38,-44],[6,50],[-33,19],[-29,11],[-36,2],[-11,-7],[-14,-29],[-33,-37],[-22,-15],[-23,-30],[-13,-31],[-12,-44],[-14,-107],[1,-125],[-53,-99],[-20,10],[-10,-6],[-10,-13],[18,-55],[-10,-19],[-9,-13],[-25,-14],[-56,-81],[-53,-52],[-87,-151],[-25,-100],[-25,-113],[12,-55],[10,-36],[16,-25],[28,-27],[59,-29],[-5,-19],[0,-16],[21,28],[15,79],[37,26],[18,-1],[118,-63],[23,-27],[-4,-60],[-7,-28],[-22,-42],[-42,-50],[-49,-69],[-5,-43],[0,-23],[13,-81],[1,-46],[-6,-85],[3,-37],[13,-31],[20,-20],[35,11],[33,-9],[25,-22],[-4,-71],[15,-67],[11,-124],[-21,-34],[-20,-21],[-39,-54],[-21,-6],[-37,18],[-58,96],[23,57],[50,40],[23,28],[17,42],[-26,-8],[-18,-18],[-57,8],[-23,-20],[-28,-32],[11,-80],[-19,-15],[-35,-27],[-52,-34],[-17,-23],[-45,-143],[-41,-107],[-15,-92],[2,-79],[15,-88],[11,-38],[48,-82],[23,-64],[7,-77],[-38,-37],[-67,-89],[-28,-10],[-92,2],[-46,45],[-54,-11],[-45,-22],[-71,-63],[-63,-82],[-60,-57],[-18,-34],[-24,-71],[-22,-129],[8,-64],[12,-30],[11,-39],[-16,-61],[0,-38],[29,-61],[6,-84],[-21,-2],[-49,60],[-52,4],[-124,-69],[-52,-40],[-57,-80],[-17,15],[-12,46],[-21,20],[-26,-10],[-11,-43],[36,-20],[13,-28],[-21,-107],[-15,-36],[6,-95],[-2,-45],[-8,-45],[-37,-123],[-63,-162],[-78,-118],[-54,-41],[-27,-31],[-12,-41],[-80,-113],[-98,-119],[-28,-21],[-6,45],[-3,44],[-12,59],[-36,49],[-6,40],[-6,54],[-3,252],[-31,262],[-3,82],[-38,67],[-21,70],[-12,68],[-3,81],[-41,425],[-13,106],[-55,342],[-24,198],[-16,192],[-2,86],[24,257],[21,160],[74,359],[11,33],[12,17],[128,138],[56,75],[33,80],[36,101],[-4,55],[-4,31],[-14,36],[-30,41],[11,18],[12,14],[31,15],[64,-31],[65,13],[60,127],[86,-19],[65,22],[18,-9],[13,43],[36,46],[66,68],[97,82],[48,55],[27,52],[40,50],[39,62],[71,186],[140,154],[55,88],[45,31],[40,15],[101,126],[64,105],[85,72],[25,46],[44,108],[18,26],[55,41],[124,71],[72,71],[106,10],[31,28],[33,16],[35,23],[-43,63],[10,33],[8,16],[76,74],[31,60],[-4,25],[-5,19],[-47,24],[9,55],[13,48],[38,40],[13,94],[2,99],[37,142],[22,32],[87,71],[20,2],[60,-24],[66,-12],[23,-22],[5,19],[-3,24],[18,9],[38,-10],[-5,27],[-98,14],[-70,31],[-63,60],[-41,17],[-45,-5],[-257,-84],[-12,-23],[-12,-32],[16,-47],[-13,-21],[-12,-14],[-14,-31],[-12,-61],[3,-59],[-31,-92],[-3,-57],[55,-32],[14,-21],[-16,-32],[-17,-19],[-14,-24],[-11,-9],[-15,-6],[-20,31],[-18,62],[-29,4],[-10,-10],[-5,-24],[-25,-2],[-28,12],[-32,-5],[-57,-70],[-319,-333],[-34,-40],[-42,-80],[-79,-8],[-31,-18],[-23,-24],[-31,-16],[1,30],[6,22],[7,59],[43,111],[-27,12],[-27,1],[-50,-23],[-34,-37],[-26,8],[13,33],[31,66],[-9,61],[-9,33],[13,18],[65,123],[23,64],[20,84],[1,26],[-4,32],[-19,5],[-16,0],[-128,-83],[-47,-23],[-15,36],[-21,15],[-35,61],[-30,9],[-31,-4],[-70,-41],[-77,-23],[-59,8],[-51,-35],[-23,-6],[-75,24],[-91,2],[-28,-30],[-79,-41],[-54,-64],[-28,-20],[-31,-28],[-14,-120],[-41,-39],[-38,-29],[-80,-92],[-56,-126],[-38,-54],[-81,-76],[-126,-100],[-110,-162],[-38,-122],[-14,-4],[-27,-25],[-7,-60],[1,-41],[-17,-33],[-17,-42],[18,-26],[16,-5],[24,4],[63,34],[108,-52],[54,-52],[-4,-52],[2,-46],[-40,3],[-53,-4],[-34,-27],[-68,43],[-23,-16],[-36,-46],[-65,-19],[-33,23],[-55,63],[-93,-6],[-24,-71],[-21,2],[-33,-7],[-55,-82],[-18,-8],[-67,16],[-48,42],[-23,2],[-43,-19],[-21,-50],[-107,-25],[-105,5],[-57,119],[107,47],[63,-10],[72,8],[75,37],[-26,31],[-18,7],[-45,-4],[-40,23],[-87,116],[-38,21],[-49,13],[-38,1],[-14,-8],[-20,-28],[-13,-27],[-12,-9],[-26,5],[-31,22],[-37,-7],[16,17],[35,18],[-58,20],[-37,28],[-34,7],[-156,69],[-60,-6],[-37,-19],[-63,-56],[17,-41],[14,-19],[8,-22],[-20,-4],[-58,-4],[-35,33],[-25,-48],[10,-43],[40,15],[21,-18],[-14,-49],[-52,-15],[-65,3],[-65,87],[-107,-15],[-51,-56],[-49,-13],[-131,56],[-66,5],[-74,48],[-26,-15],[-47,-121],[-63,-29],[-32,16],[-29,76],[-20,25],[-56,23],[-298,-22],[-100,19],[-70,2],[-96,-39],[-92,15],[-170,-75],[-70,-50],[-84,-88],[-76,-147],[-42,-55],[-71,-70],[-100,-64],[-54,-65],[-30,-53],[-52,-200],[-14,-30],[-123,-72],[-39,-80],[-17,-20],[-51,-34],[-31,-56],[-17,-16],[-73,-40],[-60,-100],[-85,-70],[-123,-194],[-11,-23],[-10,-52],[-19,-38],[-106,-169],[-33,-16],[-53,-79],[-54,-47],[-49,-56],[-61,-59],[-92,-67],[-31,-39],[-48,-90],[-118,-111],[-59,-27],[-77,-98],[-8,-23],[-6,-36],[13,-63],[19,-14],[31,-9],[115,-62],[107,17],[95,0],[37,6],[23,-2],[8,-34],[-1,-63],[-14,-57],[-11,-168],[-13,-75],[10,-73],[23,-13],[23,33],[37,5],[38,-15],[28,117],[-23,18],[-22,42],[13,31],[66,57],[41,5],[39,-4],[-43,-73],[-17,-15],[-13,-4],[-18,-14],[38,-42],[41,-32],[59,-14],[-14,-25],[-39,-22],[-36,-91],[-56,-44],[-26,-30],[9,-19],[21,-4],[114,12],[59,25],[84,71],[35,105],[32,29],[9,0],[11,-7],[1,-74],[-45,-83],[-32,-47],[-12,-40],[19,0],[37,8],[16,19],[42,101],[11,72],[6,100],[-5,60],[3,43],[-16,43],[11,13],[113,-59],[60,-14],[108,48],[24,-12],[18,-29],[89,-89],[17,-29],[29,-108],[95,-125],[88,-59],[3,-23],[56,-69],[44,-24],[7,-62],[-20,-50],[-41,-48],[-82,44],[-13,-2],[10,-28],[59,-81],[47,-34],[3,-108],[-6,-59],[-31,-66],[10,-38],[44,-56],[22,-22],[22,-32],[-28,-70],[-5,-78],[-30,-35],[-36,-76],[-55,-62],[-26,-119],[-42,-105],[-5,-104],[-7,-37],[-34,-108],[-13,-146],[17,-239],[8,-14],[16,-14],[-3,-17],[-8,-11],[-33,-71],[0,-49],[13,-37],[2,-95],[-24,-153],[-9,-24],[-10,-39],[-4,-36],[-7,-22],[-4,-39],[7,-34],[12,-17],[-43,-110],[-15,-144],[-16,-58],[-31,-57],[-66,-83],[-24,-52],[-43,-66],[-41,-51],[-57,-145],[-46,-145],[-116,-188],[-15,-46],[-9,-50],[-30,-84],[-15,-116],[-35,-46],[-29,-122],[-94,-186],[-23,-63],[-72,-103],[-77,-142],[-96,-128],[-18,-53],[-37,-58],[-40,-90],[-58,-90],[-12,-60],[-19,-42],[-43,-28],[-31,-39],[-95,-231],[-12,-42],[-2,-37],[-62,-86],[-35,-92],[-60,-57],[-62,-78],[-149,-144],[-41,-54],[-83,-68],[-34,-1],[-72,-37],[-47,-38],[-28,14],[-17,50],[-21,-2],[-16,-7],[-43,48],[-37,-3],[-26,22],[-50,-15],[9,205],[-7,43],[-21,-40],[-57,-72],[-23,-14],[-22,0],[9,44],[31,62],[-10,10],[-10,3],[-40,-27],[-20,-30],[-58,-119],[-34,-100],[-28,-29],[-13,-43],[-24,-41],[-37,11],[-22,-7],[-53,23],[-13,-10],[35,-77],[-29,-113],[-12,-14]],[[63178,98417],[127,-23],[95,6],[29,-3],[28,-7],[28,-16],[38,-35],[0,-49],[-17,-2],[-161,22],[-74,51],[-20,5],[-29,-13],[-25,-31],[-27,-8],[-31,-39],[-29,5],[-15,-4],[-37,-27],[-93,0],[-15,-12],[-30,-38],[-38,-10],[-66,-6],[-22,21],[-10,33],[-15,17],[-92,-19],[-69,13],[-67,22],[-68,8],[61,23],[334,48],[131,12],[62,34],[92,22],[25,0]],[[63966,98460],[42,-10],[103,2],[32,-14],[149,-84],[38,-2],[31,-30],[-154,-49],[-52,-36],[-189,-8],[-121,-17],[-26,-15],[12,-26],[-58,-29],[-191,-4],[-24,-9],[-37,-31],[3,-5],[65,-8],[10,-6],[9,-14],[5,-20],[-9,-26],[-24,-4],[-26,3],[-60,20],[-7,-7],[-6,-14],[-19,-28],[-22,-8],[-61,21],[-20,-6],[-19,-13],[-24,-6],[-56,-4],[-29,17],[25,23],[70,35],[-23,15],[-70,4],[-55,-9],[-28,-24],[-26,-5],[-72,2],[-40,31],[-30,12],[-26,25],[211,83],[70,32],[67,16],[87,9],[27,10],[27,4],[17,-6],[44,-29],[129,5],[27,24],[2,56],[-13,33],[27,63],[74,25],[171,34],[43,2]],[[68823,95758],[-111,-44],[-66,-30],[-65,-21],[-66,-15],[-104,-36],[-184,-46],[-116,-37],[-127,-30],[-134,-39],[-134,-27],[-33,-2],[-96,-38],[-75,-16],[-272,-85],[-125,-63],[-36,-5],[-36,3],[-30,-20],[-28,-33],[-59,-34],[-30,-31],[-30,-24],[-18,-8],[-34,2],[-16,-2],[-55,-27],[-10,-22],[59,-14],[13,-24],[-17,-16],[-38,-23],[-22,-23],[-40,-23],[-27,-7],[-65,1],[-4,-29],[11,-18],[-6,-16],[-22,-15],[-21,2],[-99,45],[-16,-15],[-7,-32],[-3,-34],[-13,-25],[-17,-13],[-31,-13],[-109,21],[-9,-20],[17,-25],[23,-54],[5,-22],[-13,-36],[-49,-56],[-187,-67],[3,-23],[21,-44],[5,-27],[-8,-26],[-24,-21],[-28,0],[-15,4],[-43,29],[-37,7],[-7,-14],[49,-39],[21,-51],[-23,-27],[-90,-61],[-47,-80],[-92,-35],[-57,-5],[-56,10],[-53,18],[-135,7],[-75,20],[-76,36],[-66,-3],[-56,-18],[-74,-39],[-47,75],[20,35],[-101,90],[-22,40],[25,19],[31,13],[59,36],[59,29],[61,9],[10,5],[25,43],[27,35],[25,20],[28,33],[89,134],[21,10],[184,26],[16,8],[-53,27],[-54,-1],[-25,9],[-14,19],[-8,22],[21,16],[71,81],[84,58],[78,35],[-19,9],[-25,23],[-95,-6],[-37,32],[-12,19],[-3,19],[31,25],[32,15],[35,-4],[35,-13],[28,-15],[27,-24],[23,1],[85,84],[-13,19],[-5,29],[9,14],[41,13],[27,5],[59,-6],[85,-18],[7,9],[21,56],[21,30],[86,50],[-5,15],[-4,25],[100,33],[65,33],[63,45],[32,9],[32,2],[65,19],[121,22],[71,22],[23,48],[45,17],[90,7],[35,-3],[20,-20],[39,1],[15,11],[16,17],[-5,29],[-1,37],[34,23],[13,5],[102,9],[60,-4],[125,-28],[65,-7],[87,9],[52,-5],[154,42],[261,39],[68,28],[67,33],[34,7],[35,2],[31,11],[61,28],[30,7],[33,0],[30,20],[26,43],[29,33],[79,43],[134,60],[121,23],[75,25],[32,2],[102,-12],[130,-33],[59,-36],[49,-47],[10,-17],[9,-30],[-14,-28],[-9,-28],[11,-22],[-95,-71],[-93,-78],[-16,-17],[-111,-27]],[[65366,94071],[130,-23],[97,-7],[59,-18],[22,-14],[-9,-36],[-17,-14],[-41,-47],[-6,-28],[7,-45],[-6,-33],[-13,-24],[-11,-10],[-73,0],[-27,-13],[-1,-26],[-5,-29],[-24,-42],[-48,-13],[-11,-16],[4,-27],[-17,-21],[1,-32],[9,-18],[2,-37],[33,-54],[-6,-22],[-26,-43],[-8,-53],[-21,-46],[48,-38],[21,-50],[19,-53],[57,-105],[62,-94],[114,-137],[122,-104],[48,-29],[116,-48],[20,-16],[19,-21],[-49,-39],[-51,-14],[-5,-18],[-28,-10],[-138,34],[-7,5],[-15,24],[-16,18],[-35,3],[-35,-11],[21,-22],[23,-7],[40,-41],[-17,-16],[-18,-2],[-82,55],[-7,-7],[-8,-16],[-40,18],[-10,-13],[-31,-6],[-25,15],[0,19],[-5,10],[-125,-15],[-52,0],[-51,7],[-61,36],[-11,-16],[-2,-19],[-23,8],[-51,29],[-37,12],[-133,28],[-94,34],[24,16],[40,8],[1,21],[-7,29],[-1,29],[23,20],[52,-9],[-7,32],[25,6],[47,-18],[18,11],[-75,41],[-82,58],[8,21],[-29,5],[-30,-1],[-25,34],[4,45],[22,31],[-13,6],[-127,-27],[-64,6],[-72,18],[-66,-26],[-67,-9],[-35,9],[-34,20],[-28,26],[-22,45],[-20,74],[-3,28],[4,62],[11,27],[28,52],[19,16],[43,25],[22,6],[51,-12],[51,-1],[22,14],[21,25],[15,32],[35,18],[10,10],[11,20],[12,31],[2,27],[10,26],[32,39],[-12,24],[5,16],[21,29],[-64,7],[-22,13],[-21,19],[6,18],[8,13],[64,48],[28,15],[31,7],[31,0],[33,-5],[32,7],[-34,33],[-3,22],[-13,53],[3,25],[14,21],[30,24],[43,8],[34,12],[33,19],[31,3],[63,-12],[31,2],[34,11],[97,40],[36,11],[38,-3],[50,-15],[55,-28]],[[76812,98545],[10,-26],[36,-21],[18,-21],[183,-67],[80,-8],[36,-17],[10,-20],[-3,-37],[-31,0],[-22,-12],[-124,-15],[-30,-22],[-24,-45],[13,-9],[12,-13],[37,-77],[10,-12],[37,-11],[-33,-29],[-35,-19],[-366,-37],[-249,-15],[-83,-16],[-27,2],[-65,-29],[-127,-38],[-61,0],[-181,53],[-222,45],[-31,25],[-55,15],[-71,12],[-31,51],[45,35],[58,34],[97,12],[92,20],[69,49],[43,48],[78,51],[-135,-13],[-51,7],[5,17],[28,36],[15,12],[49,19],[35,36],[81,25],[39,4],[38,-1],[70,12],[70,18],[66,10],[65,5],[63,14],[62,28],[27,48],[179,5],[28,-11],[22,-29],[26,-10],[31,-6],[79,-48],[15,-14]],[[77131,98017],[64,-37],[31,-41],[-30,-11],[-28,-28],[-13,-34],[-37,-27],[-10,-43],[17,-8],[20,12],[41,41],[53,28],[58,-16],[23,6],[40,39],[-7,33],[16,20],[18,5],[75,-4],[119,-17],[21,-17],[29,-10],[17,-16],[53,-13],[26,-12],[35,-28],[32,-42],[-40,-22],[-22,-40],[-9,-9],[-7,-15],[-3,-35],[-6,-30],[-7,-13],[-5,-17],[5,-45],[-12,-35],[-40,-27],[-41,-1],[-61,18],[-18,-1],[-17,-7],[76,-38],[56,-56],[65,-13],[18,-6],[23,-52],[8,-26],[-108,-62],[-28,-11],[-172,-9],[-113,-18],[-36,4],[-63,15],[-42,-6],[-60,10],[-37,0],[-85,23],[-88,38],[-17,18],[-18,12],[-105,10],[-23,8],[-153,-9],[-26,6],[-47,50],[-27,1],[-84,-29],[-31,2],[-64,19],[-38,24],[-6,8],[-4,29],[-38,15],[-46,52],[-27,54],[-128,28],[-77,7],[-58,-2],[-56,21],[93,78],[123,41],[53,31],[61,42],[25,65],[103,40],[27,14],[36,31],[12,4],[81,-38],[16,7],[15,17],[29,19],[100,3],[85,-8],[32,8],[39,-3],[195,28],[130,8],[24,-5]],[[78578,97496],[-27,-45],[-11,-40],[-83,-133],[-10,-23],[49,20],[44,45],[27,38],[30,24],[34,0],[35,9],[65,31],[66,14],[36,-1],[34,-15],[22,-35],[24,-28],[87,-21],[13,-7],[8,-24],[-7,-25],[50,-25],[69,11],[37,-7],[36,-14],[17,-22],[14,-27],[15,-39],[9,-41],[-8,-55],[-134,-84],[-25,-8],[-62,6],[-61,-9],[-161,-44],[-199,-1],[-57,-39],[-17,1],[-17,7],[-16,13],[-121,-11],[-136,-7],[-136,-1],[-45,-28],[-139,-55],[-127,-42],[-66,-10],[-96,11],[-30,14],[-29,21],[42,27],[30,54],[37,32],[94,61],[11,24],[18,51],[11,20],[15,18],[11,22],[2,33],[6,28],[37,42],[27,20],[29,6],[71,-8],[22,3],[-16,13],[-11,50],[2,16],[10,31],[18,15],[18,10],[11,42],[-5,15],[27,20],[13,27],[32,16],[65,13],[3,34],[10,21],[14,7],[33,6],[18,-1],[24,-34],[26,-28],[34,-6],[34,2],[-20,33],[1,35],[12,22],[16,10],[34,2],[107,-24],[70,-35],[16,-18],[-13,-10],[-31,-6],[-16,-10]],[[88902,95523],[28,-11],[34,7],[32,-15],[30,-61],[14,-16],[15,-11],[15,-5],[45,-2],[20,12],[15,28],[-1,28],[-4,29],[0,39],[7,35],[10,21],[13,14],[74,43],[52,42],[71,-16],[72,-38],[127,-80],[59,-23],[71,-21],[72,-8],[35,5],[69,22],[35,2],[436,-160],[15,-13],[14,-19],[-94,-24],[-61,-42],[-21,-29],[24,-24],[20,-32],[-133,-96],[-53,-25],[-54,-8],[-110,23],[-64,-1],[-62,20],[-69,58],[-29,29],[-25,40],[-8,64],[10,55],[37,16],[32,35],[5,15],[-17,31],[-108,5],[-68,-17],[-61,-18],[18,-117],[13,-37],[18,-27],[98,-123],[22,-17],[65,-24],[55,-53],[-97,-59],[-43,-17],[-42,-10],[-26,5],[-26,12],[-28,28],[-24,30],[-31,23],[-66,-5],[-61,-20],[-61,-14],[-180,-24],[-55,-15],[-55,-5],[-71,28],[-70,39],[-22,1],[-20,-11],[-17,-24],[-9,-38],[-23,-51],[-29,-36],[-31,-16],[-32,-2],[-33,10],[-32,16],[-215,56],[-25,17],[-24,25],[-65,79],[-32,19],[-33,8],[-64,40],[-59,64],[-12,20],[-4,32],[10,23],[51,-11],[34,1],[-21,119],[15,112],[25,19],[97,-13],[-31,37],[-26,49],[16,27],[18,19],[42,15],[56,7],[17,12],[16,19],[31,20],[62,8],[107,40],[29,-1],[27,-21],[26,-30],[28,-16],[88,-39],[60,-35],[85,-71]],[[90776,95259],[73,-4],[107,43],[14,1],[260,-15],[22,-15],[2,-30],[-8,-15],[-4,-22],[32,-21],[84,-4],[53,19],[156,-10],[128,-14],[49,-32],[38,-17],[31,-20],[23,12],[22,20],[18,4],[18,-4],[-49,-122],[-18,-14],[-69,-30],[-137,-42],[-67,-13],[-152,0],[-209,16],[-57,15],[-34,18],[-64,43],[-31,16],[-103,14],[-32,8],[-60,37],[-62,30],[-154,49],[10,56],[20,56],[24,50],[26,45],[28,13],[59,-41],[-1,-47],[14,-33]],[[89655,83175],[60,-145],[2,-32],[-5,-33],[-11,-42],[-4,-44],[7,-39],[-5,-10],[49,-176],[35,-111],[11,-45],[7,-48],[11,-99],[2,-151],[-3,-50],[-8,-49],[-8,-29],[-18,-20],[-8,-54],[-4,-153],[9,-80],[17,-56],[12,-60],[2,-64],[5,-29],[27,-36],[11,-28],[3,-40],[2,-59],[4,-13],[13,-18],[56,-426],[22,-129],[64,-223],[26,-135],[17,-64],[11,-68],[9,-69],[19,-76],[25,-74],[49,-67],[22,-37],[5,-30],[2,-103],[-11,22],[-14,79],[-24,45],[-35,54],[-35,48],[-44,80],[-21,23],[-23,16],[-41,18],[-24,2],[-98,-12],[-40,-16],[-37,-37],[-21,-54],[-16,-108],[-89,-386],[-21,-101],[-8,-108],[3,-85],[6,-31],[26,-84],[21,-49],[15,-21],[18,-14],[11,-17],[10,-23],[18,-57],[23,-128],[25,-91],[11,-28],[28,7],[18,-1],[18,-8],[10,-23],[15,-101],[11,-98],[1,-26],[-20,-75],[-5,-32],[-3,-34],[-5,-27],[-9,-23],[-3,111],[-14,79],[-5,68],[-19,47],[-65,20],[-61,7],[-9,9],[-14,29],[-15,23],[-16,3],[-16,-9],[-27,-33],[-21,-51],[-15,-55],[-13,-59],[-27,-155],[-16,-51],[-20,-48],[-17,26],[-15,30],[-9,43],[-4,48],[-24,161],[10,140],[41,194],[7,63],[-6,60],[-9,60],[-6,113],[1,25],[14,65],[17,62],[20,54],[9,64],[-13,159],[-29,108],[-37,102],[-7,28],[-2,27],[32,128],[11,62],[13,134],[12,74],[9,74],[3,373],[-3,55],[-20,117],[-1,67],[9,84],[13,65],[17,63],[0,129],[-32,119],[-24,52],[-37,63],[-28,35],[-14,27],[14,9],[10,21],[-24,33],[-15,50],[-2,196],[6,49],[18,55],[16,59],[14,137],[5,141],[-9,57],[-4,116],[8,29],[31,38],[49,23],[11,-7],[38,-45],[14,-2],[15,5],[29,21],[16,52],[-21,29],[12,37],[35,13],[3,32],[-13,4],[11,46],[7,45],[-10,42],[-57,104],[-36,76],[60,-1],[18,14],[14,32],[7,33],[19,-13]],[[0,93051],[43,8],[43,15],[40,3],[40,-9],[41,2],[40,15],[32,-2],[33,-9],[122,-21],[23,-7],[39,-27],[22,-10],[22,-16],[23,-27],[43,-29],[65,-34],[14,-10],[10,-26],[-7,-30],[-83,-57],[-67,-15],[-129,-15],[-175,-43],[-72,-12],[-25,2],[-63,28],[-74,12],[99966,-10],[-65,-44],[-137,-11],[-81,-31],[-19,-2],[-40,103],[-6,26],[15,34],[41,42],[17,30],[96,54],[86,71],[47,11],[47,33],[-99967,8]],[[59948,89390],[9,-23],[3,-37],[-9,-24],[5,-20],[-18,-14],[-27,46],[-17,1],[-17,20],[-8,33],[15,9],[7,-6],[33,24],[24,-9]],[[61864,90265],[-10,-8],[-55,27],[-5,21],[2,8],[22,6],[23,-7],[17,-27],[6,-20]],[[64695,92951],[25,-42],[22,-31],[19,3],[14,-16],[4,-32],[-38,-54],[-6,-20],[16,-18],[4,-10],[-27,-8],[-5,25],[-15,24],[-32,19],[-13,16],[-14,38],[-53,40],[-34,-6],[-38,18],[-11,8],[-3,23],[16,19],[60,16],[29,-1],[31,-16],[-2,20],[3,8],[13,-3],[35,-20]],[[96677,83274],[11,-30],[-112,106],[-52,56],[-13,36],[19,0],[23,-34],[32,-16],[48,-46],[44,-72]],[[94643,92639],[-19,-10],[-40,8],[-19,18],[1,42],[2,6],[33,-6],[22,-23],[20,-35]],[[94851,91532],[-12,-1],[9,39],[1,17],[-27,28],[-50,21],[-13,17],[-3,50],[11,78],[-23,42],[8,37],[59,41],[24,31],[27,25],[4,-3],[27,-24],[-2,-52],[-20,-37],[-46,-14],[-6,-25],[6,-44],[1,-57],[5,-51],[28,-52],[6,-26],[-3,-25],[-11,-15]],[[92467,95691],[-27,-20],[-64,33],[24,18],[43,12],[10,-6],[8,-13],[6,-24]],[[91430,96001],[-209,-6],[14,16],[75,40],[191,21],[-38,-20],[-18,-41],[-15,-10]],[[88321,93034],[-69,-49],[-27,6],[-28,24],[-15,5],[-15,-4],[-17,-10],[-22,-2],[-51,26],[-5,16],[5,8],[14,8],[10,0],[32,13],[149,5],[11,-3],[21,-23],[7,-20]],[[79915,96849],[-25,-28],[-35,-14],[-38,23],[-95,-1],[-163,25],[47,16],[257,13],[18,-3],[34,-31]],[[81243,95979],[43,-39],[8,-25],[-13,-6],[-8,-9],[-3,-18],[-12,-1],[-38,19],[-27,31],[-40,7],[-42,31],[-9,13],[11,4],[75,-8],[32,14],[23,-13]],[[76814,95782],[22,-9],[-6,-24],[-29,7],[-38,-12],[1,-20],[-15,-33],[-53,20],[-73,3],[-46,19],[-102,12],[3,27],[16,16],[59,-23],[54,26],[101,-13],[33,19],[73,-15]],[[76745,96213],[-9,-11],[-12,-9],[-33,6],[-65,-16],[-25,9],[-24,18],[-88,-6],[-26,4],[42,22],[120,24],[188,62],[9,-30],[0,-14],[-38,-34],[-39,-25]],[[74864,96306],[-59,-3],[-34,15],[-10,10],[16,26],[23,17],[93,6],[17,-18],[-4,-15],[-42,-38]],[[70738,93820],[-6,-5],[-14,10],[-42,15],[-71,39],[-22,27],[11,30],[16,20],[58,12],[53,-5],[35,-7],[66,-27],[-61,-17],[-26,-37],[3,-22],[11,-13],[-11,-20]],[[70973,94156],[-45,-14],[9,26],[54,37],[100,19],[30,-8],[4,-6],[-42,-39],[-21,-13],[-89,-2]],[[73207,94511],[-14,-14],[-13,2],[-11,-7],[-70,21],[-95,9],[24,22],[68,13],[101,-17],[30,-19],[-20,-10]],[[68706,91894],[-22,-50],[-46,3],[-14,11],[-6,9],[52,54],[32,-2],[4,-25]],[[68488,92477],[3,-23],[-15,8],[-19,26],[-11,32],[-4,64],[7,17],[6,9],[6,-2],[-1,-40],[28,-91]],[[69450,90150],[-49,-7],[-54,44],[-51,86],[10,21],[31,-7],[51,-2],[33,-14],[44,-9],[-5,-40],[0,-16],[14,-17],[-14,-30],[-10,-9]],[[63903,97968],[-23,-8],[-106,44],[-9,13],[91,41],[102,-6],[16,-20],[3,-7],[-69,-36],[-5,-21]],[[64280,97893],[7,-7],[-1,-6],[-99,6],[-173,-4],[-100,32],[106,32],[56,7],[72,27],[89,-26],[-5,-23],[1,-11],[24,-10],[23,-17]],[[64098,98529],[-39,-4],[-27,3],[-29,22],[-10,11],[-2,11],[26,2],[12,11],[4,8],[20,6],[34,1],[45,-12],[19,-24],[-44,-21],[-9,-14]],[[65410,98083],[-79,-27],[-40,1],[-20,16],[32,23],[41,17],[31,-5],[23,-8],[12,-17]],[[65115,98198],[-39,-30],[-129,32],[11,16],[14,6],[0,16],[-12,12],[5,24],[83,-18],[8,-7],[56,-12],[9,-24],[-6,-15]],[[66580,97900],[-100,-19],[-35,6],[-10,9],[-19,9],[-50,12],[7,33],[16,7],[150,37],[72,-21],[30,-51],[-61,-22]],[[66283,98526],[39,-30],[15,-33],[24,-20],[8,-38],[-20,-31],[-60,-6],[-99,-2],[-97,16],[-52,56],[-96,15],[-54,58],[56,17],[68,-8],[109,50],[15,-3],[24,-11],[88,-19],[32,-11]],[[63328,78045],[-4,-10],[-13,53],[-1,32],[8,17],[11,-54],[-1,-38]],[[63962,91696],[5,-56],[-17,-23],[-16,-6],[-7,35],[-13,15],[-48,-41],[-22,-46],[-60,-66],[-123,-47],[-75,-20],[-68,-6],[-63,42],[-35,79],[-6,24],[-4,32],[1,33],[4,50],[7,49],[26,44],[60,52],[59,34],[31,8],[75,2],[214,-117],[48,-30],[27,-41]],[[67603,98329],[-52,-2],[-51,9],[-67,29],[-67,34],[20,18],[63,23],[82,42],[139,9],[67,0],[67,10],[19,21],[13,41],[12,22],[15,17],[74,14],[63,-1],[63,-16],[40,-14],[38,-28],[20,-23],[-6,-28],[3,-23],[18,-21],[-122,-65],[-125,-36],[-326,-32]],[[66098,97996],[-43,-11],[-113,21],[-17,11],[-14,20],[-19,78],[-1,23],[-7,16],[-28,28],[-20,13],[18,15],[124,-11],[266,-6],[136,-28],[40,-16],[39,-26],[-238,-14],[-32,-12],[1,-29],[-9,-26],[-25,-3],[-58,-43]],[[67268,98406],[17,-23],[-10,-37],[-22,-27],[-10,-38],[-86,-9],[-24,-9],[-23,-29],[-87,-18],[-65,-49],[-91,9],[-124,34],[-105,-28],[-69,-8],[-85,42],[-11,10],[-5,29],[5,26],[23,55],[30,31],[15,10],[12,19],[34,11],[105,7],[39,-6],[12,-21],[57,2],[94,13],[137,20],[79,18],[70,-4],[70,-11],[18,-19]],[[66983,98473],[-87,-12],[-141,15],[-73,17],[6,8],[19,10],[122,41],[242,9],[30,-30],[-26,-23],[-92,-35]],[[64866,98032],[-184,-7],[-62,4],[-8,7],[-15,6],[-58,6],[-36,29],[16,8],[85,12],[29,12],[10,17],[38,31],[92,6],[40,-6],[5,-20],[39,-25],[101,-32],[-20,-23],[-35,-3],[-37,-22]],[[65855,98128],[12,-20],[-1,-71],[-13,-31],[2,-26],[-26,-13],[-218,3],[-108,6],[-25,10],[61,34],[19,23],[-6,67],[10,12],[175,-6],[14,19],[66,1],[38,-8]],[[66058,98816],[14,-23],[43,-13],[117,-11],[35,-26],[-53,-19],[-143,-10],[15,-38],[29,-28],[-29,-33],[-40,-16],[-88,-19],[-81,24],[-94,35],[-42,-23],[-44,-14],[-41,2],[-48,27],[-132,-21],[-40,23],[-29,48],[87,10],[104,-15],[69,48],[88,21],[70,51],[33,17],[76,-3],[25,4],[73,13],[26,-11]],[[65199,98568],[209,-55],[194,5],[84,-17],[122,-50],[182,-53],[35,-16],[-31,-21],[-213,-53],[-138,-18],[-120,-3],[-48,6],[-48,38],[-117,28],[-125,-8],[-13,15],[-25,11],[-43,2],[-86,15],[-6,34],[54,17],[35,1],[14,48],[60,73],[24,1]],[[67680,98853],[-34,-8],[-179,7],[-86,14],[-12,8],[-4,7],[-114,12],[49,16],[142,7],[254,-19],[16,-13],[5,-8],[-37,-23]],[[66193,98914],[-92,-12],[-13,9],[-3,6],[10,15],[11,29],[42,17],[313,16],[41,-17],[-15,-26],[0,-12],[-294,-25]],[[75745,97744],[-68,-5],[-80,5],[-130,61],[-85,26],[-70,40],[-15,44],[44,28],[54,11],[91,2],[117,-4],[116,-29],[247,-31],[90,-21],[-56,-51],[-61,-19],[-63,-27],[-64,-19],[-67,-11]],[[75435,98583],[-96,-45],[-346,29],[-16,20],[-5,13],[47,25],[288,-9],[103,-9],[25,-24]],[[89169,94469],[-140,-47],[-27,2],[-63,48],[-23,103],[26,31],[29,11],[30,6],[123,4],[26,-5],[26,-13],[12,-19],[5,-24],[-14,-68],[-10,-29]],[[89495,94409],[69,-25],[57,-28],[196,-135],[18,-28],[15,-35],[8,-123],[-11,-9],[-72,-6],[-98,14],[-70,5],[-68,0],[-60,17],[-147,16],[-115,45],[-120,33],[-25,4],[-75,-10],[-102,-43],[-28,-3],[-39,0],[-27,40],[65,14],[65,5],[63,14],[59,47],[29,38],[51,85],[28,31],[28,20],[30,6],[33,-3],[103,19],[70,6],[70,-11]],[[87763,95281],[-57,-16],[-81,5],[6,42],[14,19],[19,46],[-9,35],[5,42],[10,33],[23,45],[25,-27],[17,-40],[15,-20],[62,-39],[12,-12],[-52,-48],[-5,-21],[16,-27],[-20,-17]],[[87832,94420],[-21,-17],[-20,25],[-93,76],[-23,35],[-51,34],[-13,12],[-4,30],[67,-19],[113,-75],[62,-60],[-17,-41]],[[88316,83578],[25,-23],[39,4],[10,-15],[-31,-25],[-22,-51],[-7,-47],[-9,-18],[-25,-23],[-22,-30],[-19,-19],[-17,-6],[-37,99],[-18,28],[-52,-47],[-12,-1],[12,58],[30,63],[15,9],[30,85],[9,19],[93,-50],[8,-10]],[[96999,91923],[-79,-5],[-158,54],[-56,28],[-42,36],[-48,25],[-9,10],[7,21],[14,16],[54,43],[38,19],[45,4],[283,-76],[12,-16],[4,-14],[-4,-30],[-24,-6],[-9,-20],[-10,-61],[-5,-16],[-13,-12]],[[95453,85600],[-45,-54],[-7,9],[-4,12],[-1,19],[41,36],[42,91],[16,75],[-5,25],[-2,24],[123,47],[87,75],[16,-3],[15,-63],[9,-81],[-12,-49],[-94,-28],[-88,-54],[-91,-81]],[[96291,83432],[-2,-84],[-34,43],[-16,34],[-23,6],[-16,16],[-26,41],[-31,54],[-10,27],[-4,34],[-21,31],[-67,60],[22,7],[28,26],[78,-16],[18,-7],[-13,-40],[5,-44],[43,-92],[21,-32],[28,-25],[20,-39]],[[93002,80248],[-27,-25],[-28,15],[0,50],[59,153],[21,-9],[-5,-37],[-22,-57],[7,-69],[-5,-21]],[[93445,81023],[-11,-13],[-11,3],[-36,36],[-8,17],[13,30],[45,45],[22,-1],[9,-10],[-1,-53],[-22,-54]],[[93310,80819],[-35,-58],[-52,-14],[-25,-19],[-19,-39],[-14,-21],[-30,12],[-13,19],[0,68],[-13,30],[6,19],[30,-3],[30,44],[69,18],[25,47],[31,117],[33,41],[26,9],[8,-58],[-7,-64],[-15,-62],[-35,-86]],[[92799,79948],[-10,-30],[-12,10],[-2,9],[27,35],[10,41],[20,1],[8,-8],[-6,-20],[-35,-38]],[[93234,81118],[-26,-7],[-11,16],[-8,18],[-5,26],[29,12],[19,-14],[4,-38],[-2,-13]],[[92527,79356],[-13,-33],[-14,4],[-5,9],[18,39],[8,7],[6,-26]],[[92222,78857],[-52,-63],[-17,0],[-9,24],[-2,13],[42,10],[48,84],[35,55],[19,19],[16,-1],[-80,-141]],[[91579,78134],[-41,-29],[-26,1],[61,142],[36,21],[46,84],[97,103],[11,7],[56,-3],[-88,-113],[-11,-45],[-39,-48],[-28,-16],[-20,-23],[-54,-81]],[[91277,77947],[-52,-40],[-42,-18],[-71,-84],[-26,-46],[-36,-19],[-35,11],[-10,-19],[-3,-33],[-13,-29],[-70,-91],[-29,-72],[-30,-13],[-56,-73],[10,63],[11,30],[47,56],[3,60],[26,51],[51,52],[35,67],[28,18],[31,56],[32,20],[-3,43],[14,48],[11,-3],[26,-67],[20,-2],[54,14],[80,116],[26,21],[19,4],[11,-10],[4,-14],[-1,-17],[-6,-25],[10,-29],[-13,-22],[-53,-4]],[[90753,77041],[-9,-16],[-20,14],[1,32],[2,9],[57,28],[16,-18],[4,-15],[-51,-34]],[[90612,77475],[42,-42],[58,9],[-14,-38],[-22,1],[-39,-55],[-34,-7],[-17,-13],[-55,-82],[-8,-32],[-33,-62],[-50,-55],[-9,-104],[-32,42],[-4,42],[10,35],[57,74],[23,41],[7,34],[22,36],[10,32],[14,14],[48,131],[26,-1]],[[81496,94700],[-10,-27],[-15,-21],[-11,-26],[-19,-19],[-59,-24],[-46,-54],[-8,-5],[-163,30],[-26,9],[-53,33],[-75,31],[-39,46],[19,8],[19,4],[67,-6],[19,14],[10,39],[1,23],[5,18],[22,13],[241,-40],[93,-23],[28,-23]],[[71180,97725],[34,-21],[26,16],[248,-50],[53,-18],[11,-13],[-217,-8],[-44,3],[-4,29],[-49,1],[-85,19],[-23,27],[-5,11],[27,11],[28,-7]],[[72229,98414],[-258,-21],[-25,13],[-8,8],[36,44],[30,21],[164,8],[131,-14],[41,-13],[-15,-26],[-8,-9],[-88,-11]],[[69631,93948],[-82,-27],[-22,-2],[-50,7],[-22,-11],[-33,27],[2,24],[16,25],[9,31],[-6,78],[42,49],[56,19],[164,22],[23,-6],[33,-15],[25,-18],[33,-43],[26,-18],[40,-34],[12,-33],[-2,-30],[-75,-6],[-130,-25],[-59,-14]],[[71564,93485],[-135,-5],[-67,9],[-10,11],[9,28],[69,42],[31,27],[32,46],[56,38],[47,0],[147,-45],[21,-28],[3,-13],[-58,-38],[-41,-14],[-63,-48],[-41,-10]],[[72083,93733],[-20,-6],[-152,23],[-53,30],[-16,27],[6,24],[141,117],[54,-33],[15,-31],[36,-38],[-1,-86],[-10,-27]],[[72825,95287],[10,-19],[4,-21],[-12,-6],[-36,1],[-20,-54],[-20,9],[-13,31],[-45,-21],[-12,5],[-21,24],[-13,5],[-9,16],[59,48],[36,-25],[24,1],[-5,29],[1,22],[30,9],[40,1],[2,-55]],[[66791,92128],[9,-29],[-1,-53],[-11,-39],[-31,-6],[-31,-16],[-53,17],[-29,-11],[-30,-1],[-24,6],[-25,8],[-16,11],[1,30],[-22,43],[-34,14],[-31,5],[-35,13],[-17,-6],[-22,-16],[-14,5],[-76,92],[-12,21],[-8,24],[-11,15],[-26,64],[13,29],[26,19],[18,5],[32,43],[59,18],[12,-3],[11,-13],[61,-44],[33,-29],[28,-35],[30,-30],[89,-51],[60,-50],[61,-35],[16,-15]],[[55821,83685],[-27,-55],[-74,-116],[23,-15],[27,-5],[32,-22],[30,-3],[53,18],[10,100],[3,90]],[[55898,83677],[17,0],[26,6],[16,-23],[30,-23],[35,-20],[54,-34],[55,-22],[18,-2],[58,3],[61,-3],[17,-51],[30,-24],[25,-34],[1,-18],[-33,-119],[-7,-40],[-2,-40],[13,-51],[11,-28]],[[56323,83154],[-9,-4],[-157,6],[-148,9],[-137,9],[-132,9],[-127,8],[-79,8],[-78,7],[-11,7]],[[55445,83213],[43,49],[28,52],[23,67],[3,46],[6,52],[37,21],[80,-3],[35,25],[44,62],[46,74],[15,32]],[[55805,83690],[16,-5]],[[59722,78187],[6,-19],[66,-146],[31,-54],[24,-22],[28,-3],[53,46],[23,7],[50,-18],[18,31],[26,16],[33,2],[38,-13],[41,-23],[-17,-52],[-17,-41],[-7,-45],[-9,-51],[-46,-23],[-48,3],[-52,-15],[-18,20],[-12,18],[-23,18],[-30,10],[-27,-12],[-32,-69],[-56,-47],[-19,-54],[-56,12],[-47,-10],[-69,-49],[-52,-106],[-57,-66],[-46,-21],[-43,7],[-28,20],[-57,69],[4,25],[8,13],[10,35],[23,131],[-3,43],[-13,66],[-45,52],[-36,-9],[-21,13],[-75,89],[-40,6],[-45,-18],[-16,13],[-13,31],[89,109],[88,90],[38,9],[52,42],[55,63],[-8,49],[-12,37]],[[58251,77914],[-5,-38],[-3,-24],[-12,-99],[-8,-37],[-13,-42],[-142,-49],[9,23],[-3,42],[-6,31],[13,29],[-31,10],[-14,-15],[-11,-28],[9,-62],[-15,-35],[-6,-19],[-1,-46],[-9,-20],[-2,-21],[23,5],[-10,-39],[-43,-76],[-15,-45],[4,-180],[-19,-107],[-1,-32]],[[57940,77040],[-45,-1],[-14,2],[-42,16],[-48,29],[-28,55],[-18,40],[-40,-18],[-8,5],[-11,19],[-31,13],[-37,0],[-85,72],[-9,13],[-67,-13],[-99,-35],[-76,-45],[-79,-78],[-32,-60],[-37,-32],[-52,-23],[-94,9],[-97,30],[-105,32],[-57,-18],[-77,13],[-115,39],[-86,12],[-85,-23],[-14,17],[-4,20],[4,28],[12,23],[20,17],[11,17],[1,18],[-23,29],[-47,39],[-20,24]],[[55622,78403],[11,14],[63,19],[29,-19],[14,7],[13,16],[7,12],[1,14],[6,16],[22,8],[56,-10],[23,23],[8,13],[5,27],[6,23],[20,12],[0,20],[-3,22],[12,50],[7,20],[11,8],[14,15],[24,33],[-6,28],[5,21],[25,51],[19,49],[0,25],[3,22],[16,23],[18,31],[23,96],[9,16],[15,18],[11,18],[1,63],[11,18],[21,21],[20,33],[17,38],[12,19],[17,4],[19,16],[20,5],[20,-7],[13,4],[19,19],[48,71],[7,14]],[[57394,79642],[26,2],[20,-4],[32,-26],[22,-32],[9,-26],[19,-36],[20,-51],[22,-68],[4,-34],[9,-37],[16,-45],[31,-50],[5,-10],[14,-35],[27,-78],[23,-31],[20,-34],[9,-34],[15,-31],[33,-41],[27,-37],[22,-107],[15,-50],[10,-38],[-5,-76],[6,-33],[-12,-60],[-23,-120],[-5,-95],[4,-52],[0,-33],[6,-21],[6,-44],[1,-38],[-8,-11],[-12,-9],[-4,-8],[10,-17],[14,-32],[14,-36]],[[64112,66122],[8,35],[3,22],[-19,167],[-6,128],[2,26],[11,30],[19,66],[9,65],[28,148],[29,57],[43,42],[35,-82],[43,-63],[8,-70],[-13,-57],[-11,-90],[7,-42],[2,-36],[12,-61],[11,-78],[2,-55],[-6,-51],[-15,-42],[-29,-129],[-9,-13],[-36,-22]],[[45224,70776],[38,-30],[35,14],[43,-39],[23,-9],[-20,-27],[-21,-36],[-50,9],[-42,34],[-15,26],[-5,23],[14,35]],[[47942,73259],[-24,-6],[-95,-94],[-29,0],[-55,41],[-96,14],[-32,12],[-39,-27],[-30,1],[-25,-35],[-17,10],[20,77],[31,152],[-1,93],[7,81],[-8,80],[-16,50],[21,130],[-2,67],[-19,84],[59,-13],[-19,34],[-18,20],[-17,-4],[-15,1],[-50,-33],[-25,-10],[-8,6],[3,52],[-13,68],[20,18],[24,5],[20,29],[12,33],[-7,57],[18,55],[40,46],[-21,-7],[-24,-29],[-38,-104],[-12,-53],[-33,-17],[-29,-9],[-14,6],[-18,13],[-2,39],[2,31],[12,62],[4,88],[18,78],[-2,21],[-5,31],[16,30],[19,20],[28,68],[40,160],[47,170],[-4,21],[-10,15],[4,46],[28,200],[11,26],[13,59],[3,94],[5,65],[-1,33],[-4,39],[-18,75],[-18,159],[-2,53],[15,26],[-25,4],[-11,35],[2,38],[28,63]],[[43048,73133],[-2,-11],[-15,5],[-20,-4],[-11,31],[10,13],[22,3],[11,-14],[5,-23]],[[41350,74542],[-12,-27],[-21,10],[-7,10],[6,59],[17,14],[17,-24],[0,-42]],[[42479,74103],[-6,-6],[-58,16],[-16,21],[-7,39],[10,13],[25,8],[37,-7],[24,-28],[0,-36],[-9,-20]],[[42283,74052],[-13,-7],[-74,44],[-26,21],[-34,51],[96,-62],[51,-47]],[[42044,74034],[-29,-1],[-27,44],[40,23],[12,-14],[8,-16],[6,-21],[-10,-15]],[[42181,73993],[23,-23],[-35,-5],[-11,-11],[-29,16],[-33,-3],[-22,31],[-5,33],[11,20],[30,0],[71,-58]],[[42875,73640],[17,-4],[89,9],[24,-6],[-3,-43],[-17,-17],[-52,-11],[-82,27],[-27,37],[-4,27],[0,12],[17,10],[38,-41]],[[55231,80363],[-1,17],[-6,42],[-59,83],[-8,35],[3,13],[-4,22],[-13,13],[-47,16],[-12,-9],[-11,9],[-17,20],[-29,16],[-3,9],[-11,14],[-6,2],[-3,-9],[-9,-12],[-30,-16],[-12,7],[-11,13],[-13,29],[-18,25],[-15,9],[-9,14],[-2,10],[34,21],[7,21],[-4,39],[-5,5],[-13,-13],[-28,-11],[-26,-6],[-13,0],[-73,71],[-48,22],[-28,6],[-3,-7],[13,-40],[22,-49],[-1,-13],[-26,-20],[-15,-9],[-18,-17],[-15,-24],[-12,-10],[-12,2],[-11,12],[-31,73],[-38,55],[-4,13],[-12,3],[-17,12],[-6,18],[9,17],[11,17],[21,10],[6,9],[4,14],[7,19],[-2,6],[-14,21],[-22,20],[-60,-15],[-16,-10],[-9,13],[-7,21],[-16,3],[-20,19],[-25,18],[-24,5],[-50,26],[-19,1],[-11,9],[-12,20],[-10,21],[-5,44],[-37,19],[-37,13],[-2,-7],[1,-43],[-2,-24],[-24,-14],[-24,-2]],[[54113,81139],[2,8],[28,78],[13,50],[15,91],[-18,72],[-5,33],[-8,16],[-50,35],[-4,12],[8,48],[-4,20],[-12,21],[-16,41],[-7,36],[21,42],[5,30],[9,42],[6,23],[1,7],[-13,16],[-3,23],[3,33],[-7,25],[-18,15],[-11,21],[-6,27],[5,41],[13,56],[-29,67],[-72,79],[-35,55],[3,32],[15,28],[28,26],[21,45],[11,54],[1,10],[1,39],[-33,157],[-5,39],[-4,48],[-2,13]],[[53960,82793],[64,-33],[26,-19],[-3,21],[-5,18],[3,27],[-2,40],[-57,20],[-38,7]],[[53948,82874],[-5,28],[4,18]],[[53947,82920],[11,-11],[37,-4],[92,54],[159,70],[170,66],[40,7],[40,14],[14,24],[15,17],[23,43],[51,68],[91,24],[34,32],[70,45],[162,50],[67,11],[66,1],[59,-39],[62,-49],[12,-30],[-34,19],[-49,44],[-18,2],[42,-134],[22,-47],[47,-36],[39,-11],[119,21],[43,28],[12,14]],[[56323,83154],[16,23],[20,-3],[23,-14],[11,-11],[4,-12],[3,-13],[13,-3],[23,-10],[31,-24],[24,-23],[23,-33],[8,-37],[0,-42],[-1,-27],[2,-11]],[[56523,82914],[32,-196],[53,-189],[19,-92],[8,-49],[6,-70],[2,-50],[0,-28],[-4,-38],[-16,-23],[-101,-65],[-20,-20],[-29,-51],[-28,-52],[-6,-18],[-2,-11],[6,-18],[36,-27],[37,-23],[12,-17],[26,-21],[10,-19],[6,-17],[-1,-39],[-12,-54],[5,-40],[-12,-27],[-10,-30],[-2,-53],[18,-58]],[[83638,62566],[43,-30],[94,-108],[34,-27],[36,-20],[28,-5],[26,24],[10,25],[20,67],[20,8],[13,-24],[9,-33],[5,-47],[-6,-50],[-20,-44],[-12,-54],[-8,-177],[0,-53],[7,-51],[17,-81],[9,-23],[26,-29],[7,-22],[1,-39],[4,-35],[17,-13],[14,-18],[-5,-38],[-9,-39],[-12,-97],[-55,-223],[-3,-48],[-22,-96],[-45,-16],[-52,-46],[-28,-36],[-25,-47],[-10,-62],[8,-28],[5,-30],[0,-32],[-8,-27],[-25,-65],[-10,-54],[-11,-24],[-6,-29],[2,-33],[10,-29],[30,-125],[33,-121],[7,-14],[2,-16],[-19,-32],[1,-58],[5,-58],[29,-142],[4,-38],[10,-31],[14,-30],[17,-24],[46,-42],[18,-9],[19,-1],[4,28],[17,10],[-4,28],[-20,38],[0,21],[10,16],[13,9],[28,42],[29,34],[38,-3],[37,-19],[27,-19],[22,-37],[22,-62],[16,-69],[-1,-33],[-3,-33],[0,-33],[12,-22],[36,-1],[18,51],[3,58],[-13,22],[6,28],[11,22],[16,-19],[15,-36],[56,-39],[14,-1],[11,-7],[25,-28],[12,-21],[-14,-45],[-56,-10],[-16,-34],[17,-68],[26,-55],[17,-45],[15,-49],[0,-45],[-9,-46],[24,3],[23,-9],[32,-40],[10,-3],[10,6],[-1,-141],[-22,-129],[-27,16],[-23,54],[4,67],[15,64],[-8,14],[-15,-6],[-17,-14],[-19,-5],[-30,8],[-62,70],[-26,7],[-6,31],[2,67],[-25,80],[-4,28],[-8,23],[-74,86],[-9,15],[-23,69],[-52,98],[-14,10],[-16,3],[-5,-25],[7,-38],[3,-33],[-1,-35],[2,-27],[25,-54],[3,-26],[17,-70],[2,-82],[-21,-34],[-24,38],[-1,31],[-4,29],[-25,74],[-8,16],[-48,74],[-37,80],[-82,86],[-9,5],[-15,-7],[-13,-10],[-40,-43],[-14,-29],[-1,-46],[-28,-36],[-39,-5],[-30,23],[-25,45],[-21,2],[-25,71],[-31,9],[-26,-55],[-5,109],[0,111],[7,33],[13,27],[65,116],[8,38],[-3,50],[-15,40],[-23,25],[-27,10],[-19,23],[-15,38],[-11,-67],[10,-98],[2,-65],[-9,-24],[-17,0],[-16,7],[-11,23],[-9,67],[-23,43],[-9,63],[-10,9],[-21,-5],[-16,29],[-10,74],[-2,78],[-9,66],[-13,64],[-7,52],[-12,235],[-2,21],[-6,18],[-15,27],[-11,32],[-2,27],[3,115],[5,28],[11,13],[16,-22],[12,-28],[15,-14],[14,-17],[25,-69],[10,-10],[31,2],[18,8],[9,25],[5,30],[1,35],[-18,103],[-6,74],[0,67],[5,67],[24,112],[3,77],[-2,104],[4,61],[-1,36],[-14,55],[-4,60],[41,302],[13,58],[9,61],[4,80],[31,22],[29,33],[15,-3],[15,-8],[36,17],[13,1]],[[82586,56704],[-26,-42],[3,52],[7,49],[26,99],[19,31],[31,78],[18,38],[42,75],[39,82],[13,6],[14,1],[12,9],[25,45],[63,147],[53,110],[54,139],[26,41],[7,15],[49,128],[16,18],[17,14],[12,17],[11,22],[17,56],[8,65],[-5,37],[-10,54],[13,74],[9,34],[35,150],[10,31],[14,-19],[2,-27],[-7,-64],[0,-31],[8,-33],[-10,-53],[25,-142],[19,-89],[1,-30],[-26,-53],[-15,-16],[-33,-15],[-15,-15],[-23,-44],[-15,-57],[-4,-30],[-7,-23],[-68,-39],[-31,-25],[-15,-19],[-7,-31],[5,-55],[-57,-199],[-18,-51],[-19,-45],[-24,-31],[-33,-19],[-27,-39],[-18,-68],[-22,-61],[-28,-45],[-30,-40],[-28,-30],[-30,-20],[-9,-27],[-6,-33],[-14,-16],[-15,-8],[-28,-33]],[[84026,58533],[32,-29],[32,25],[31,-7],[26,-38],[-9,-24],[-1,-27],[57,58],[16,-3],[-1,-54],[-3,-46],[-7,-44],[-12,-52],[-17,-46],[-21,-33],[-26,-21],[-12,-19],[-4,-28],[1,-35],[-6,-32],[-27,-14],[-42,-62],[-90,-40],[-25,-27],[-16,-36],[-17,-32],[-10,-8],[-4,15],[-1,13],[13,84],[-3,35],[-6,33],[4,66],[16,62],[8,68],[3,132],[12,182],[-1,22],[-9,25],[-35,20],[-14,19],[7,36],[13,25],[18,-1],[16,-23],[57,-48],[30,-40],[27,-51]],[[84202,57064],[-18,-6],[-20,3],[-13,28],[-22,122],[-26,30],[-30,22],[-15,19],[-14,23],[-42,122],[-3,74],[7,42],[13,38],[14,10],[35,1],[18,5],[40,56],[3,22],[0,92],[-4,64],[-10,62],[11,29],[14,28],[14,55],[3,39],[0,41],[4,29],[12,14],[54,45],[10,3],[71,-41],[14,-62],[1,-20],[-11,-69],[-9,-46],[-24,-71],[-18,-77],[-13,-115],[-8,-38],[-22,-72],[-7,-40],[0,-86],[-4,-32],[0,-31],[44,-143],[4,-23],[0,-26],[-8,-32],[-18,-55],[-10,-19],[-17,-14]],[[84603,58377],[20,-20],[22,8],[27,45],[30,-16],[18,-68],[9,-25],[5,-44],[-2,-106],[-7,-95],[6,-20],[14,-17],[12,-22],[10,-27],[7,-30],[2,-74],[18,-62],[2,-24],[-4,-25],[-29,5],[-3,-21],[1,-27],[-10,17],[-17,60],[-16,26],[5,-98],[5,-48],[1,-47],[-27,36],[-33,23],[-9,19],[4,61],[-1,31],[-14,64],[16,140],[0,29],[-3,28],[-13,57],[-21,47],[-13,0],[-32,-33],[-16,11],[-9,131],[-13,127],[-9,32],[-7,34],[6,28],[13,-11],[17,-34],[21,-19],[10,-16],[7,-30]],[[84788,59059],[20,-47],[4,-34],[-2,-38],[9,-16],[16,-5],[20,-19],[15,-35],[-9,-32],[3,-46],[-16,-59],[2,-105],[9,-33],[1,-33],[-2,-36],[4,-28],[24,-96],[5,-32],[-8,-25],[-2,-24],[15,-2],[21,-40],[12,-53],[-3,-13],[-17,41],[-13,6],[-55,-11],[-33,17],[-22,2],[-21,70],[-19,12],[-15,31],[-25,79],[-8,46],[18,46],[5,37],[-1,36],[-17,-6],[-14,12],[-17,44],[-7,25],[-13,22],[-20,50],[-30,20],[-11,14],[-24,42],[-16,53],[-17,92],[-9,95],[76,-25],[76,5],[86,22],[25,-26]],[[83528,59607],[14,-5],[45,18],[18,-9],[12,-33],[15,-10],[12,-17],[23,29],[22,-33],[20,-63],[24,-44],[22,-33],[5,-25],[-14,-40],[-4,-50],[2,-55],[16,-114],[-5,-31],[-18,-44],[-12,-49],[1,-20],[-5,-16],[-1,-35],[-11,7],[-9,-5],[-9,-16],[-15,-33],[-23,10],[-10,10],[-3,29],[-7,20],[-9,12],[-24,50],[-11,38],[-1,40],[-6,37],[-12,33],[-16,26],[-6,24],[-2,29],[-1,75],[-24,92],[-8,23],[-21,22],[-18,30],[-8,29],[-7,48],[-5,7],[-14,-3],[-13,7],[3,35],[14,25],[19,3],[51,-14],[14,-11]],[[85001,57212],[22,-35],[30,9],[-1,-87],[5,-26],[27,-74],[4,-61],[-16,-59],[-12,-27],[-22,-40],[0,-18],[9,-20],[31,-12],[23,-32],[4,-91],[22,-71],[-1,-31],[-9,-128],[3,-54],[16,-44],[14,-19],[8,-27],[6,-75],[-1,-128],[-2,-44],[-10,-42],[-30,-94],[-40,-75],[-22,5],[-6,-22],[13,-68],[-5,-145],[-9,-100],[-13,51],[-9,53],[-9,140],[-10,64],[-16,57],[-7,52],[-16,48],[-22,125],[-14,-7],[-23,-34],[-5,-23],[-3,-36],[-6,-32],[-27,-51],[-22,-60],[-17,-67],[-6,-61],[15,-47],[15,-20],[21,-42],[7,-20],[23,-139],[-1,-141],[-17,-63],[-42,-119],[-30,-37],[-17,19],[-13,72],[-2,29],[9,68],[1,62],[-10,21],[-12,-4],[-4,-9],[-27,-81],[-12,-21],[-17,-2],[-13,5],[-81,71],[-66,70],[-51,65],[-38,99],[-8,74],[0,77],[-17,113],[-2,38],[2,37],[16,70],[20,35],[12,25],[9,28],[6,37],[-2,37],[-7,23],[-32,82],[-27,50],[-57,45],[-13,24],[-14,19],[-16,8],[-16,0],[-16,-14],[-5,-29],[2,-27],[-2,-26],[-24,-148],[-30,32],[-29,38],[-7,26],[-4,32],[-5,21],[-6,19],[-14,-49],[-16,-39],[-20,-10],[-21,0],[-7,17],[-7,94],[-22,30],[-27,-7],[-33,-52],[-6,-19],[-7,-45],[-36,-127],[-19,-98],[-21,-96],[-9,-31],[-13,-21],[-19,9],[-18,23],[-17,61],[6,72],[19,45],[15,49],[19,171],[1,61],[4,26],[31,77],[26,48],[13,10],[57,28],[23,23],[36,0],[30,13],[24,37],[2,38],[-2,40],[6,24],[9,21],[12,27],[15,20],[40,15],[14,17],[10,26],[16,50],[17,-12],[18,-20],[33,-16],[28,-42],[19,-66],[3,-32],[5,-108],[-7,-25],[-28,-51],[13,-5],[36,46],[19,18],[45,24],[11,16],[7,24],[16,66],[12,71],[9,29],[13,23],[13,4],[47,-48],[31,23],[8,73],[7,106],[6,29],[17,28],[21,-9],[28,-38],[27,-13],[9,31],[10,61],[10,-1],[36,-20],[34,13],[10,73],[-7,78],[-27,226],[16,51],[14,1],[34,-60],[65,-81],[22,-50],[14,-61]],[[84269,57286],[-11,-15],[-4,38],[3,51],[21,179],[-5,45],[36,100],[22,93],[32,99],[5,51],[29,97],[27,134],[-1,45],[7,22],[4,33],[0,29],[20,50],[6,-33],[-6,-64],[1,-30],[3,-14],[0,-60],[-7,-91],[7,-105],[-13,-107],[-15,-48],[-21,-34],[-24,-21],[-25,-53],[-15,-62],[-3,-57],[-39,-192],[-34,-80]],[[83866,62727],[-17,-42],[-10,12],[10,40],[0,14],[8,31],[15,11],[13,-31],[-19,-35]],[[83755,62996],[3,-52],[-17,1],[-24,32],[-3,16],[1,13],[4,11],[36,-21]],[[83877,63574],[-5,-7],[-8,3],[8,55],[14,15],[11,-6],[-20,-60]],[[83854,63814],[-13,-47],[-11,0],[2,26],[14,55],[5,-1],[3,-33]],[[83655,55342],[15,-41],[19,11],[30,-12],[6,-22],[-1,-14],[-32,-40],[-21,42],[-38,-29],[-18,17],[-24,-15],[-15,33],[6,31],[39,51],[34,-12]],[[82521,56384],[-14,-44],[-16,50],[1,71],[5,19],[24,11],[0,-107]],[[83309,57883],[-34,-18],[-8,56],[24,51],[28,-21],[16,-20],[-8,-18],[-18,-30]],[[83360,58852],[15,-9],[11,8],[10,31],[9,-45],[22,-37],[-7,-38],[-20,-4],[-19,8],[-21,-15],[-25,9],[-14,35],[-17,63],[-9,12],[1,26],[6,16],[-3,4],[2,12],[3,8],[5,3],[13,-28],[32,-42],[6,-17]],[[83343,58584],[-21,-19],[-5,12],[-3,28],[0,20],[-20,104],[15,15],[11,-12],[12,-16],[10,-9],[10,-32],[-2,-23],[3,-22],[-10,-46]],[[84068,57875],[-7,-8],[-7,2],[-16,-21],[-6,39],[5,66],[25,50],[6,16],[7,10],[8,1],[8,-20],[2,-30],[-16,-90],[-9,-15]],[[84609,57480],[-3,-21],[-22,2],[-8,-3],[-20,-54],[-12,-14],[-66,-18],[-52,14],[-18,30],[-12,49],[-3,33],[13,35],[12,24],[42,46],[10,35],[22,43],[45,14],[4,-11],[6,-6],[9,-2],[23,-35],[25,-23],[-6,-85],[7,-28],[4,-25]],[[83402,54871],[-7,-35],[-9,-16],[-12,9],[-9,18],[-5,-27],[-24,-10],[-15,-41],[-23,-12],[-15,6],[2,37],[43,54],[27,21],[23,39],[12,5],[6,-33],[6,-15]],[[83914,55546],[-28,-8],[-9,0],[-22,59],[-2,26],[-18,29],[6,29],[23,7],[40,38],[64,-59],[10,-21],[-20,-13],[-14,-56],[-30,-31]],[[85016,57468],[-4,-3],[-15,45],[2,51],[21,76],[15,-67],[0,-30],[-2,-15],[14,-37],[-10,-19],[-21,-1]],[[84913,57554],[-5,-16],[-6,33],[-17,31],[-15,53],[-11,16],[7,42],[1,68],[16,31],[7,10],[11,33],[6,2],[5,-28],[-11,-85],[16,-100],[-6,-62],[3,-14],[-1,-14]],[[83408,59764],[0,-39],[-47,57],[-1,20],[1,14],[5,9],[25,-21],[17,-40]],[[83864,59642],[18,-1],[5,5],[33,-48],[-2,-24],[4,-33],[-19,-55],[-3,-19],[-11,-18],[-35,44],[-13,27],[-4,56],[14,81],[13,-15]],[[83914,58959],[-22,-143],[-15,49],[6,31],[-13,26],[-3,24],[5,31],[13,29],[3,94],[29,30],[11,1],[-4,-23],[1,-43],[-11,-106]],[[84070,58933],[-14,-13],[-29,56],[-17,26],[-4,15],[13,21],[37,0],[19,-39],[3,-24],[-8,-42]],[[84244,59247],[24,-88],[-26,60],[-30,41],[-31,67],[-23,24],[-6,14],[2,28],[17,5],[7,-2],[45,-119],[21,-30]],[[84381,59017],[1,-51],[-10,19],[-34,99],[-9,36],[9,24],[25,-37],[18,-90]],[[84365,58921],[53,-69],[37,-116],[4,-89],[-3,-35],[-17,39],[-38,54],[-26,12],[-8,10],[3,30],[-17,27],[-2,11],[-15,12],[-23,61],[-16,12],[-15,-13],[-35,-91],[-37,-64],[-1,25],[15,79],[10,128],[6,39],[-8,57],[-1,51],[28,-24],[35,-23],[27,-33],[4,-22],[40,-68]],[[84542,59695],[-8,-37],[-9,13],[-12,-2],[-21,-32],[-33,43],[-5,33],[24,73],[0,109],[8,27],[9,19],[11,11],[23,-75],[8,-10],[22,-34],[-5,-70],[2,-41],[-14,-27]],[[83937,59935],[-1,-23],[-60,85],[-3,15],[0,13],[4,14],[60,-104]],[[83897,60486],[5,-20],[-5,1],[-4,-4],[-13,-41],[14,-77],[-9,-56],[-16,-4],[-6,6],[3,28],[4,12],[-3,37],[-10,23],[-7,44],[-12,27],[6,43],[36,5],[17,-24]],[[84531,57952],[-7,-3],[13,61],[10,-9],[3,-6],[0,-28],[-19,-15]],[[84799,57593],[2,-29],[-35,75],[-8,53],[12,-2],[16,-20],[13,-77]],[[84148,56111],[3,-14],[-1,-14],[-29,-27],[-9,1],[-3,44],[7,21],[14,-18],[12,21],[6,-14]],[[84939,55853],[-4,-32],[-17,77],[-7,19],[9,65],[19,-32],[0,-97]],[[84613,58463],[-35,-4],[-15,26],[-19,78],[21,16],[21,-4],[15,-27],[15,-52],[-3,-33]],[[84668,57109],[-8,-34],[-31,28],[-8,25],[4,29],[15,10],[8,0],[15,-31],[5,-27]],[[83680,62835],[-1,-39],[-14,21],[-3,29],[1,21],[6,26],[9,-23],[2,-35]],[[83294,58482],[6,-31],[-8,-46],[-7,-10],[-8,19],[-20,14],[-1,24],[10,0],[18,24],[10,6]],[[84376,58342],[16,-76],[-22,0],[-8,56],[10,18],[4,2]],[[83974,59060],[-8,-18],[-5,3],[-4,31],[8,21],[3,-2],[6,-35]],[[84991,57369],[-5,-15],[-8,31],[7,68],[5,11],[7,-43],[-6,-52]],[[84681,58522],[-5,-30],[-8,8],[-7,14],[-11,44],[-3,33],[16,-18],[9,-33],[9,-18]],[[82598,56575],[-19,-14],[-4,36],[2,35],[14,-3],[6,-11],[1,-43]],[[84360,57164],[2,-60],[-25,-18],[-21,16],[-13,36],[0,13],[11,-1],[26,31],[8,7],[12,-24]],[[30565,49403],[-2,-38],[-9,-15],[-14,-3],[-21,26],[-15,-6],[-15,-2],[-22,31],[-7,31],[-17,25],[-35,-10],[-29,-1],[-24,6],[-22,-8],[-18,-33],[-14,-38],[-16,-31],[-48,-22],[-25,0],[-23,-21],[-33,-8],[-23,-18],[-41,-10],[-49,-10],[-28,-28],[-10,-12],[-28,-39],[-49,-62],[-26,-21],[-33,-67],[-38,-62],[-25,-33],[-37,-16],[-16,-16],[-5,-20],[3,-24],[-6,-60],[-12,-111],[-3,-54],[-2,-26],[-25,-89],[-26,-83],[-13,-55],[-8,-40],[9,-34],[10,-60],[9,-48],[3,-32],[-3,-38],[-11,-34],[-18,-22],[-23,-7],[-49,-60],[-54,-89],[-18,-41],[-5,-39],[-8,-62],[4,-31],[9,-22],[10,-52],[1,-27],[-8,-15],[-16,-3],[-13,-5],[-11,-14],[-10,4],[-10,-7],[0,-22],[3,-25],[-1,-26],[-7,-17],[-5,-12],[5,-17],[10,-15],[14,-25],[21,-48],[15,-9],[13,-16],[1,-27],[-4,-27],[-12,-12],[-1,-23],[16,-28],[10,-21],[11,-30],[9,-41],[0,-27],[11,-34],[6,-28],[0,-27],[17,-27],[15,-20],[10,-18],[11,-12],[2,-20],[-1,-30],[15,-50],[28,-38],[22,-55],[14,-39],[27,-64],[1,-73],[-33,-84],[-33,-84],[54,3],[56,-2],[58,-24],[39,-23],[23,-11],[17,-26],[8,-42],[7,-34],[1,-50],[25,-40],[-2,-38],[-1,-54],[11,-1],[71,0],[78,0],[74,10],[28,13],[34,65],[21,20],[20,30],[24,56],[19,25],[16,31],[23,31],[10,23],[8,8],[19,15],[-8,-30],[-6,-31],[-2,-44],[9,-49],[-8,-36],[-12,-32],[0,-85],[0,-121],[0,-104],[-1,-129],[0,-147],[0,-98],[13,20],[17,17],[23,-45],[16,-20],[14,-4],[15,1],[19,10],[43,37],[29,31],[34,-2],[46,-12],[26,1]],[[30672,45534],[35,-125],[25,-91],[29,-105],[24,-84],[35,-127],[31,-110],[32,-118],[37,-133],[-11,-34],[-10,-27],[1,-46],[-15,-24],[-15,-15],[-19,-38],[-12,-34],[-1,-47],[3,-242],[-3,-66],[-10,-56],[-10,-29],[-6,-22],[15,-56],[13,-113],[10,-22],[13,-46],[6,-44],[-3,-16],[-25,-21],[-9,-18],[-3,-64],[-11,-23],[-18,-31],[-12,-35],[-10,-24],[-10,-14],[-5,-42],[-7,-44],[-23,-28],[-4,-53],[0,-44],[12,-43],[40,-92],[4,-22],[-23,-56],[-13,-38],[-32,-117],[-1,-22],[8,-55],[49,-238],[8,-19],[15,-23],[24,3],[37,-26],[18,-29],[2,-15],[-4,-9],[-20,-20],[-22,-26],[-7,-24],[-2,-39],[5,-57],[-9,-18],[-22,-23],[-18,-32],[-19,-53],[-32,-81],[-11,-22],[-5,-28],[-18,-9],[-34,-55],[-5,-28],[5,-27],[17,-22],[12,-32],[3,-41],[0,-26]],[[30691,41759],[-21,-39],[-27,-44],[-34,-9],[-13,-22],[3,-47],[11,-66],[0,-52],[-10,-60],[-24,-65],[-37,-44],[-35,-24],[-27,0],[-27,-5],[-11,-7]],[[30439,41275],[-20,39],[-91,130],[-34,69],[-32,33],[-78,111],[-8,36],[-9,114],[-11,32],[-26,41],[-68,55],[-26,28],[-27,50],[-40,36],[-44,72],[-26,59],[-29,38],[-91,54],[-45,54],[-85,76],[-38,49],[-91,59],[-27,28],[-90,138],[-62,46],[-51,77],[-153,166],[-24,53],[-23,81],[-34,49],[-38,112],[-57,66],[-54,87],[-20,80],[-36,101],[-11,54],[-32,53],[-2,107],[-22,49],[16,24],[17,11],[21,165],[-12,83],[-56,151],[-21,72],[-15,93],[-22,55],[-34,116],[-21,102],[-45,75],[-12,27],[-7,38],[-25,26],[-1,79],[-17,150],[-25,76],[-90,140],[-2,55],[-7,99],[-20,106],[-99,332],[-26,99],[-25,161],[-22,91],[-25,162],[-37,123],[-24,107],[-25,133],[-2,71],[-45,122],[-24,112],[-42,94],[-42,72],[-18,50],[-58,240],[-8,71],[-40,132],[-40,95],[-25,76],[-32,69],[-195,212],[-69,88],[-23,42],[-10,66],[4,38],[20,36],[28,-27],[17,11],[13,47],[1,72],[-17,92],[-63,177],[5,38],[12,42],[-24,86],[-27,68],[-13,53],[15,200],[14,51],[95,203],[26,86],[40,54],[42,82],[49,62]],[[27687,49891],[8,-11],[7,-10],[0,-21],[2,-18],[5,-17],[1,-32],[6,-21],[1,-23],[0,-33],[-3,-16],[3,-28],[11,-52],[-4,-16],[-11,-11],[-10,-14],[-10,-32],[-15,1],[-22,14],[-15,-18],[-5,-35],[4,-28],[2,-27],[9,-23],[28,-2],[-25,-73],[-12,-33],[3,-21],[15,-18],[11,-2],[25,27],[17,39],[10,22],[16,9],[21,-18],[28,-36],[33,-32],[13,-18],[24,5],[20,7],[17,-26],[17,-22],[4,-76],[13,-55],[15,-42],[19,-51],[18,-17],[22,0],[31,-19],[12,12],[11,35],[5,20],[16,9],[1,23],[-3,28],[5,32],[13,28],[33,42],[15,18],[4,25],[6,35],[-3,19],[-6,23],[1,34],[9,45],[12,52],[11,67],[4,31],[12,20],[4,29],[6,34],[14,38],[0,41],[6,18],[0,46],[15,94],[0,20],[6,5],[11,-6],[9,-22],[3,-21],[4,-9],[9,2],[10,12],[-1,19],[-7,18],[-2,11],[3,18],[15,38],[17,44],[36,92],[22,38],[56,40],[42,30],[41,29],[55,42],[78,58],[56,42],[50,76],[39,58],[33,50],[42,64],[56,138],[40,95],[28,70],[20,44],[16,123],[18,142],[8,62],[3,22],[8,-9],[9,-15],[10,-1],[11,1],[6,8],[-9,141],[1,31],[5,37],[-1,20],[-17,28],[-28,56],[-11,50],[-7,43],[-19,27],[-20,25],[1,20],[12,0],[30,-20],[22,7],[16,2],[15,20]],[[29087,51781],[17,38],[11,0],[13,-5],[23,-39],[14,-22],[17,-19],[15,-6],[15,-2],[9,1],[6,-25],[7,-31],[18,-21],[21,-21],[17,-34],[11,-23],[14,-28],[13,-36],[12,-64],[6,-43],[7,-24],[-2,-24],[14,-45],[11,-24],[18,-16],[35,-18],[19,-40],[16,-16],[18,-41],[16,-12],[20,2],[19,-20],[15,-39],[10,-49],[15,-27],[8,-51],[-9,-58],[8,-32],[16,-25],[25,-27],[23,7],[12,-9],[7,-25],[5,-29],[10,-70],[5,-45],[-10,-43],[-3,-30],[5,-41],[24,-19],[22,-16],[13,-31],[15,-9],[21,2],[27,8],[15,18],[10,5],[11,-8],[24,-17],[29,-19],[26,11],[23,5],[23,11],[23,33],[19,-2],[14,22],[19,35],[17,36],[14,8],[23,-17],[31,-25],[18,-31],[13,-9],[14,-23],[27,0],[29,12],[23,39],[24,12],[16,10],[15,-6],[58,-71],[16,-37],[20,-7],[17,-20],[27,-22],[15,-22],[19,-14],[14,-31],[22,-19],[20,-11],[8,-25],[0,-16],[-2,-12],[-21,-65],[-39,-129],[-36,-116],[-56,-182],[-32,-102],[8,-4],[49,-45],[12,-1],[18,11],[12,18],[11,2],[11,-17],[17,-22],[11,-65],[9,-31],[20,-25],[21,-40],[15,-42]],[[33844,40227],[6,-42],[4,-32],[9,-23],[9,-31],[9,-17],[7,-28],[-2,-33],[4,-41],[4,-37],[5,-9],[13,-10],[7,-33],[-5,-16],[2,-19],[5,-19],[-5,-18],[2,-14],[9,-12],[9,-46],[1,-78],[-10,-42],[-7,-34],[-2,-21],[6,-31],[-9,-36],[-11,-44],[2,-30],[2,-29],[1,-30],[3,-29],[-4,-30],[-4,-27],[-1,-30],[4,-35],[-8,-32],[-5,-23],[-1,-23],[8,-36],[21,-15],[16,-4],[16,19],[12,6],[22,-17],[20,-31],[26,-4],[23,-5],[17,-10],[26,11],[27,-11],[31,-17],[26,-15],[25,3],[20,2],[20,17],[19,-1],[15,30],[8,27],[8,19],[21,15],[14,-10],[12,-49],[21,-29],[9,-21],[15,-9],[34,-2],[21,2],[24,-15],[16,0],[14,-27],[13,-32],[1,-59],[12,-46],[16,-17],[8,-29],[-2,-40],[-8,-40],[1,-44],[8,-40],[0,-40],[6,-40],[11,-34],[4,-55],[-2,-40],[7,-23],[3,-33],[-5,-26],[-2,-36],[1,-33],[6,-26],[16,-35],[5,-61],[0,-42],[7,-49],[14,-23],[22,-8],[26,-7],[31,11],[28,13],[15,14],[31,36],[26,21],[14,13],[13,10],[27,-23],[24,-29],[20,-40],[35,-43],[-6,-11],[-15,-36],[1,-42],[10,-61],[-9,-127],[-28,-196],[-11,-114],[4,-32],[-10,-57],[-38,-123],[-1,-82]],[[34829,37110],[-5,-248],[-13,-174],[-21,-129],[-20,-69],[-17,-8],[-13,-21],[-8,-33],[-14,-27],[-21,-22],[-11,-24],[-2,-26],[-20,-16],[-38,-8],[-23,-21],[-6,-34],[-13,-27],[-19,-20],[-9,-33],[1,-46],[-11,-40],[-23,-33],[-21,-1],[-19,31],[-25,21],[-33,10],[-26,-8],[-22,-26],[-19,-41],[-17,-57],[-18,-9],[-21,38],[-26,11],[-31,-15],[-25,5],[-18,26],[-28,3],[-39,-20],[-77,23],[-117,65],[-99,25],[-121,-23],[-11,68],[7,37],[19,27],[13,32],[5,35],[13,27],[23,18],[9,19],[-3,19],[4,16],[13,15],[7,23],[2,31],[5,15],[8,12],[1,21],[-4,67],[0,55],[6,43],[8,25],[5,7],[5,15],[2,26],[8,24],[38,49],[15,27],[1,24],[6,33],[23,71],[7,34],[1,16],[8,17],[27,40],[16,37],[2,35],[-7,39],[-16,45],[-49,110],[-38,50],[-49,42],[-33,13],[-15,-14],[-16,11],[-16,38],[-27,29],[-57,33],[-128,129],[-52,62],[-17,39],[-48,69],[-79,100],[-61,48],[-42,-2],[-67,29],[-93,61],[-54,59],[-14,57],[-35,57],[-54,57],[-28,38],[-2,18],[-16,24],[-31,29],[-33,50],[-36,71],[-38,109],[-41,148],[-44,100],[-47,51],[-23,35],[0,16],[-7,16]],[[32597,39035],[6,29],[17,112],[25,164],[25,169],[31,199],[0,141],[0,149],[43,122],[30,87],[27,83],[26,142],[18,94],[68,23],[116,49],[57,24],[122,52],[123,53],[130,3],[125,3],[97,-117],[74,-90],[82,-99],[5,-21],[6,-83],[-6,-96]],[[92490,49103],[-21,-44],[-13,41],[-16,36],[-13,36],[-17,79],[0,40],[4,42],[1,43],[-8,87],[-19,78],[-68,189],[-21,49],[-24,44],[-16,11],[-31,11],[-14,8],[-26,31],[-24,36],[-60,106],[-31,30],[-17,37],[-94,120],[-27,28],[-34,0],[-28,24],[22,15],[5,40],[-5,41],[47,-67],[50,-58],[14,-47],[25,-3],[45,-38],[30,-35],[29,-40],[33,-58],[62,-45],[9,-17],[32,-75],[42,-64],[14,-35],[177,-301],[30,-85],[2,-58],[-6,-22],[-19,-49],[1,-58],[-6,-51],[-16,-52]],[[92198,49368],[14,-12],[42,60],[22,-42],[28,-20],[30,-12],[-12,-86],[4,-40],[7,-40],[-1,-59],[-13,-52],[-26,-76],[-12,-15],[-13,-8],[-43,-6],[-8,-40],[3,-43],[23,-57],[18,-63],[-18,-59],[-30,-40],[-29,-21],[-47,12],[-50,-5],[-10,-22],[0,-37],[-7,-28],[-9,-25],[-25,-53],[-29,-46],[-38,-45],[-13,-10],[-35,-7],[-31,-26],[-13,-25],[-15,-20],[-33,-22],[-32,-43],[-12,-8],[-66,-7],[-95,-2],[-28,-5],[-27,6],[-15,17],[-32,79],[-28,26],[-30,0],[-41,-28],[-8,6],[-80,116],[-25,28],[-26,21],[-32,15],[-30,23],[-18,55],[2,72],[24,42],[37,-21],[14,0],[14,12],[16,-4],[17,-10],[60,15],[34,-22],[34,-29],[32,-6],[32,6],[43,33],[14,-4],[42,0],[36,44],[14,177],[9,60],[13,14],[9,-4],[13,-30],[-17,-38],[-8,-29],[-2,-71],[9,-69],[22,-54],[32,-7],[29,36],[32,7],[30,-35],[30,6],[14,23],[16,10],[16,4],[14,13],[20,60],[13,67],[19,52],[52,88],[15,11],[17,6],[37,-4],[27,32],[2,70],[-4,72],[-31,167],[-2,27],[4,30],[9,27],[31,0],[32,-9],[13,-26],[14,-20]],[[89159,46590],[0,8],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,118],[0,96],[-16,38],[-15,57],[3,74],[19,92],[9,61],[0,50],[0,117],[0,117],[0,117],[0,117],[0,118],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[-1,118],[0,117],[0,117],[0,70],[0,39],[0,2]],[[89158,50339],[9,0],[28,-1],[22,-9],[140,-125],[41,-50],[14,-12],[14,-1],[14,-5],[62,-70],[94,-69],[99,-67],[31,-14],[31,-6],[69,-23],[37,-21],[53,-82],[27,-25],[25,-46],[35,-50],[15,-12],[15,-6],[35,-2],[35,9],[15,-4],[14,-9],[13,-17],[6,-33],[22,-47],[31,-20],[29,-42],[27,-50],[19,-50],[22,-43],[34,-18],[35,-2],[120,-253],[6,-39],[1,-165],[-13,-129],[30,-40],[40,-15],[58,-28],[55,-41],[175,-174],[24,-15],[35,-6],[36,3],[13,-9],[26,-32],[14,-20],[24,-57],[21,-61],[9,-17],[11,-14],[6,-33],[9,-103],[-3,-64],[-9,-24],[-28,-11],[-99,-11],[-65,12],[-46,-65],[-2,-28],[4,-27],[40,-137],[23,-121],[20,-50],[29,-40],[26,-48],[24,-54],[50,-95],[27,-36],[31,-21],[53,-74],[7,-33],[16,-103],[6,-69],[1,-29],[4,-26],[46,-63],[11,-18],[20,-140],[16,-65],[27,-24],[31,2],[85,42],[12,1],[16,-10],[14,-23],[4,-63],[-13,-66],[-4,-64],[17,-52],[43,-41],[16,-12],[78,-13],[30,-11],[30,-17],[11,-16],[-8,-28],[-15,-14],[-18,-6],[-29,-20],[1,-36],[16,-38],[15,-45],[12,-17],[14,-11],[33,-15],[33,-22],[22,-22],[22,-15],[48,-10],[36,-29],[51,12],[-44,-47],[-15,-11],[-53,17],[-10,-18],[22,-50],[32,-34],[12,-19],[-9,-23],[-37,-46],[-16,-6],[-29,-4],[-50,20],[-35,25],[-9,34],[-10,20],[-31,49],[-23,26],[-28,9],[-30,-1],[-53,28],[-116,20],[-27,12],[-35,39],[-16,6],[-18,-12],[-44,-8],[-13,3],[-32,33],[-33,12],[-14,-9],[-14,-3],[-44,24],[-34,10],[-28,33],[-15,30],[-17,28],[-16,70],[-24,67],[-31,54],[-65,89],[-13,22],[-25,81],[1,54],[9,54],[-14,-19],[-16,3],[-44,36],[-18,42],[-30,116],[-19,62],[-44,108],[-13,64],[-18,56],[-12,21],[-9,24],[-9,32],[-12,21],[-62,49],[-11,15],[-12,8],[-46,5],[-26,8],[-50,39],[-26,12],[-31,7],[-30,15],[-15,15],[-10,25],[-6,59],[-25,-7],[-25,10],[-24,21],[-24,13],[-17,-18],[-5,-47],[-8,-2],[-14,9],[-7,-5],[-16,-22],[-12,-29],[-23,4],[-47,30],[-21,18],[-18,34],[-15,38],[-16,29],[-19,22],[24,-51],[56,-228],[-14,-4],[-14,6],[13,-44],[-15,-6],[-15,0],[-32,19],[-31,6],[-10,-9],[7,-16],[11,-49],[9,-50],[-46,-23],[-46,-14],[-52,-27],[-53,-2],[-27,16],[-28,9],[-26,-9],[-25,-20],[-21,3],[-14,36],[-6,27],[-8,23],[-20,-4],[-19,-12],[33,-2],[10,-30],[8,-36],[23,-32],[29,19],[61,-5],[60,-57],[14,-7],[13,-11],[31,-56],[24,-51],[19,-59],[4,-23],[-1,-61],[-6,-30],[-39,-43],[-41,-33],[-61,-63],[-59,-73],[-31,15],[-28,38],[-10,10],[-29,21],[-18,7],[-69,-16],[-70,-8],[-30,1],[-28,12],[-32,23],[-31,-11],[-21,-26],[-23,-4],[-44,59]],[[91117,48486],[-11,-4],[-5,26],[-26,23],[-26,70],[1,61],[3,17],[15,1],[57,-70],[6,-22],[-4,-66],[-10,-36]],[[90560,49120],[-19,-17],[-13,13],[-6,38],[5,36],[16,29],[10,9],[12,-20],[4,-38],[-9,-50]],[[92408,50038],[-7,-51],[-17,30],[-12,42],[8,20],[19,11],[9,-52]],[[92249,50145],[-3,-29],[-9,1],[-24,57],[-4,15],[5,14],[28,-41],[7,-17]],[[91601,50948],[-1,-21],[-20,11],[-6,-3],[-34,60],[0,37],[9,31],[15,-5],[25,-39],[12,-71]],[[91966,46071],[12,0],[20,43],[17,13],[11,-20],[-18,-137],[-16,21],[-60,38],[-2,54],[-15,18],[-10,53],[-20,58],[-4,38],[12,-16],[12,-38],[53,-79],[-2,-25],[10,-21]],[[91762,46374],[-4,-14],[-16,10],[-46,80],[7,59],[21,30],[31,-33],[10,-49],[3,-27],[-6,-56]],[[91973,46812],[5,-41],[-22,44],[10,50],[2,27],[-1,15],[-22,26],[11,42],[13,14],[7,4],[0,-59],[6,-27],[-9,-95]],[[92855,45298],[-4,-31],[-10,10],[-30,-16],[-16,4],[-9,28],[-3,13],[27,-10],[-5,31],[38,-16],[12,-13]],[[89884,46957],[-12,-2],[-49,39],[-12,29],[57,-7],[15,-7],[3,-40],[-2,-12]],[[90881,48714],[-15,-3],[-26,54],[-6,21],[3,28],[32,39],[21,-35],[4,-75],[-13,-29]],[[90851,50714],[93,-38],[6,1],[-1,13],[1,4],[6,-10],[-2,-27],[-15,-7],[-13,3],[-10,-15],[-26,-52],[-18,9],[-22,-12],[-38,-1],[-50,23],[-13,-20],[-18,6],[-17,-22],[-8,1],[-4,32],[1,16],[20,14],[-3,49],[17,25],[29,-3],[27,17],[58,-6]],[[91787,50309],[-55,-8],[-20,9],[-18,33],[-16,52],[-16,12],[-7,11],[39,39],[35,12],[56,-49],[6,-25],[0,-16],[-1,-53],[-3,-17]],[[91813,46459],[39,-48],[21,14],[12,-7],[25,-55],[1,-40],[4,-34],[-1,-15],[-14,-21],[1,24],[-10,4],[-37,-1],[-28,15],[-39,4],[16,36],[4,14],[-21,59],[0,28],[1,15],[17,8],[9,0]],[[92397,46682],[16,-9],[33,4],[11,-33],[16,-11],[13,-15],[12,-22],[0,-13],[-3,-12],[-7,-10],[2,-23],[-12,3],[-16,-12],[-30,27],[-11,6],[-3,24],[-19,39],[-35,28],[18,23],[15,6]],[[92648,45232],[46,-30],[16,-34],[-17,-15],[-40,-10],[-10,20],[-39,21],[-6,37],[-19,-13],[10,27],[-25,29],[-7,40],[-1,16],[28,-19],[64,-69]],[[89885,46869],[5,-25],[-40,35],[-39,58],[-19,15],[-13,38],[24,-28],[41,-27],[41,-66]],[[91076,50527],[-9,-30],[-21,3],[-9,9],[15,6],[6,25],[7,8],[11,-21]],[[92209,50212],[-6,0],[-1,46],[4,24],[16,-16],[2,-42],[-15,-12]],[[91915,45757],[-4,-45],[-22,13],[-5,10],[4,28],[20,1],[7,-7]],[[92682,49481],[-2,-13],[-17,15],[14,30],[6,2],[-1,-34]],[[93321,47991],[-7,-54],[-5,-9],[-7,20],[-24,-20],[-11,-22],[-13,-17],[-28,4],[-27,15],[-26,28],[-23,35],[-23,55],[-14,57],[7,66],[-9,60],[-44,43],[-10,14],[-19,59],[-19,26],[-25,52],[-6,23],[-11,66],[-3,40],[9,116],[-4,58],[12,-5],[13,-23],[15,-16],[35,-11],[27,-46],[25,-90],[4,-30],[8,-21],[26,-38],[14,-25],[26,-98],[15,-21],[17,-9],[16,-14],[27,-43],[24,-49],[17,-51],[12,-55],[9,-70]],[[92957,48713],[-6,-4],[-12,72],[-2,54],[-4,40],[-6,24],[18,43],[8,12],[13,-23],[2,-51],[11,-43],[-8,-95],[-14,-29]],[[28507,56830],[-5,-8],[-16,-45],[-8,-39],[20,-41],[6,-44],[11,-47],[17,-47],[20,-89],[4,-35],[-5,-23],[-19,-14],[-17,-41],[-5,-51],[3,-25],[-52,-80],[-13,-13],[-9,12],[-11,40],[-13,33],[-8,11],[-4,1],[-4,-8],[-2,-17],[7,-76],[-6,-30],[-17,-24],[-20,-123]],[[28361,56007],[-8,16],[-67,165],[-58,205],[-12,93],[15,6],[14,-3],[8,15],[9,27],[-7,63],[28,47],[11,32],[7,-3],[19,-55],[26,-31],[33,-46],[21,-10],[-26,47],[-44,63],[-13,42],[-12,57],[-17,-25],[-8,-21],[-9,-12],[-8,15],[-1,18],[-26,4],[-7,17],[-7,9],[3,-36],[5,-22],[-2,-27],[-9,-1],[-7,27],[-9,25],[-13,105],[-29,49],[-14,16],[-11,7],[-17,33],[-22,18],[-29,52],[-37,37],[-44,14],[-54,-9],[-19,-20],[-12,-27],[-6,-12],[-32,-30],[-12,-43],[-7,-37],[-16,-42],[18,-25],[-104,-142],[-21,-20],[-47,-15],[-11,-15],[-14,-28],[-2,-42],[2,-37],[14,-28],[12,-17],[29,-85],[52,-106],[9,-39],[8,-57],[-15,-27],[-12,-11],[-49,-5],[-17,-23],[-7,-35],[-18,-29],[-64,-28],[-49,-3],[-16,33],[-4,92],[-33,158],[-8,108],[-8,-13],[-18,-13],[-6,-27],[-5,-80],[-6,-27],[-14,2],[-28,29],[-37,26],[-48,170],[-5,32],[-9,38],[-37,16],[-32,29],[-34,4],[-17,-16],[-18,21],[-3,46],[-36,-21],[-47,7],[-41,20],[-28,-10],[-24,-33],[4,-85],[-7,-16]],[[26978,56492],[-1,34],[-9,40],[-10,33],[-20,34],[-1,12],[8,18],[38,49],[4,21],[1,43],[-4,41],[-17,60],[10,38],[19,30],[20,24],[4,10],[-4,20],[-12,22],[-27,38],[-16,3],[-1,108],[1,116],[4,11],[10,7],[8,18],[5,34],[11,12],[22,-26],[22,-24],[9,8],[7,11],[5,12],[1,10]],[[27065,57359],[18,-31],[36,-54],[2,-27],[-3,-26],[10,-74],[18,-10],[19,14],[5,-14],[-4,-13],[-9,-15],[-3,-64],[31,-30],[15,-26],[51,13],[19,-7],[13,7],[-14,51],[-19,38],[1,17],[15,-13],[11,-25],[25,-32],[46,-111],[53,-26],[42,3],[39,15],[63,43],[45,78],[36,34],[116,74],[42,77],[17,10],[17,10],[36,58],[20,46],[21,22],[62,-16],[39,-22],[28,3],[27,-15],[11,-33],[12,-14],[65,3],[54,-16],[117,-98],[70,-97],[37,-103],[90,-133]],[[28084,56609],[-6,-24],[-13,54],[2,14],[-1,49],[13,13],[9,1],[7,-7],[5,-58],[-4,-26],[-12,-16]],[[27332,56067],[-15,-3],[-31,24],[-23,48],[-2,15],[1,16],[12,49],[17,17],[6,0],[16,-57],[-11,-21],[5,-35],[22,-26],[3,-27]],[[27157,57246],[-3,-27],[-21,49],[12,8],[5,-1],[7,-29]],[[28037,56597],[-12,-25],[-5,24],[9,25],[3,0],[5,-24]],[[86436,53586],[-6,-3],[-4,2],[0,8],[4,9],[6,4],[4,-3],[0,-8],[-4,-9]],[[87387,56095],[-17,-12],[-8,44],[3,51],[11,39],[12,13],[2,4],[12,51],[3,-28],[-8,-93],[-9,-37],[-1,-32]],[[71323,72385],[13,-52],[19,-78],[13,-51],[14,-58],[7,-29],[13,-50]],[[71402,72067],[-5,-27],[-9,-41],[-30,-30],[-30,-23],[-7,-12],[-3,-18],[-14,-35],[-28,-29],[-24,3],[-15,8],[-79,-51],[-36,2],[-29,-33],[-21,-30],[-42,-33],[-29,-1],[-43,20],[-52,37],[-21,22],[-19,-1],[-47,5],[-45,18],[-54,22],[-27,10],[-55,19],[-35,-26],[-33,-23],[-26,-16],[-22,-71],[-9,-26],[-10,-36],[-5,-25],[4,-31],[32,-21],[13,-30],[2,-26],[-11,-27],[-10,-21],[0,-19],[5,-18],[8,-14],[45,-9],[27,0],[10,-8],[2,-25],[-10,-34],[-38,-28],[-22,-29],[-7,-39],[1,-30],[7,-21],[18,-23],[17,-27],[6,-22],[-3,-30],[-6,-41],[-19,-48],[-16,-34],[-1,-12],[4,-18],[12,-27],[22,-39],[27,-31],[17,-9],[5,-8],[6,-37],[2,-38],[-7,-29],[13,-24],[36,1],[29,-10],[13,10],[8,-8],[-5,-86],[4,-51],[7,-15],[29,-21],[55,3],[33,-24],[36,-28],[19,-31],[8,-22],[-2,-37],[-20,-43],[-32,-21],[-19,-9],[-92,-81],[-29,-34],[-22,-41],[-8,-31],[-4,-30],[19,-108],[4,-34],[-17,-118],[-4,-43],[6,-31],[19,-11],[5,-26],[2,-19],[-35,-43],[-35,-39],[-12,0],[-34,-71],[-58,-144],[-30,-49],[-2,-23],[-3,-24],[12,-41],[2,-34],[-13,-35],[-21,-40],[-42,-34],[-53,-36],[-24,-21],[-18,-93],[-16,-94],[-8,-34],[-28,-108],[-50,-158],[-13,-35],[-77,-76],[-79,-83],[-14,-32],[-16,-75],[-15,-83],[-14,-44],[-50,-97],[-17,-75],[-5,-49],[-42,-27],[-49,-26],[-70,-9],[-29,-13],[-86,-68],[-22,-3],[-16,12],[-13,23],[-12,38],[-6,59],[-16,26],[-23,23],[-23,1],[-24,-25],[-20,-27],[-14,-23],[-14,-26],[-26,-89],[-43,-128],[-48,-92],[-17,-28],[-11,-21],[-15,-31],[-9,-30],[-12,-97],[-6,-86],[3,-19],[7,-17],[26,-25],[37,-41],[49,-24],[41,-4],[16,-18],[9,-24],[2,-20],[-2,-71],[-4,-77],[-16,-82],[1,-47],[6,-46],[45,-117],[17,-12],[34,-3],[16,2],[18,12],[13,-8],[9,-14],[2,-24],[-1,-117],[14,-53],[27,-72],[22,-82],[20,-99],[19,-77],[8,-40],[-13,-20],[-7,-20],[-2,-27],[3,-29],[-2,-20],[9,-25],[11,-8],[0,-17],[-17,-23],[-15,1],[-12,-10],[-23,-48],[-10,-9],[-14,-4],[-16,4],[-22,19],[-7,30],[3,32],[-5,18],[-16,-3],[-56,-32],[-53,-40],[-9,-27],[-12,-28],[-25,-12],[-35,-3],[-25,4],[-23,30],[-21,28],[-32,1],[-58,-4],[-32,0],[-19,10],[-18,-7],[-24,11],[-10,-15],[-10,-1],[-8,26],[-5,2],[-6,-4],[-5,-8],[-4,-15],[-1,-174],[-38,1],[-27,1],[-30,-10],[-27,-13],[-14,-16],[-19,-25]],[[68934,65585],[-4,-34],[-10,-26],[-13,38],[-9,17],[-9,-13],[-14,2],[-26,42],[-11,-43],[-42,-9],[-5,32],[-1,30],[-23,-22],[-17,34],[-7,45],[-6,12],[-8,15],[-17,15],[-16,48],[-1,51],[-4,60],[-33,224],[-20,21],[-110,39],[-6,40],[8,105],[-3,66],[-36,88],[-10,61],[-29,52],[-29,15],[-30,-7],[-15,-20],[-9,-35],[63,8],[14,-13],[17,-23],[-18,1],[-21,11],[-26,-1],[-98,-26],[-56,-37],[-76,11],[-96,-36],[-79,-2],[-33,-71],[-18,12],[-14,18],[-109,56],[-7,23],[-18,17],[-20,-30],[-15,-5],[-59,25],[-46,-19],[-17,-32],[-1,-50],[-57,10],[-32,15],[-43,-17],[-98,23],[-25,-6],[-36,-33],[-15,-26],[-21,-10],[-18,36],[-14,16],[-13,-10],[-18,-30],[-50,-14],[-46,4],[-49,28],[6,9]],[[67107,66360],[8,48],[7,172],[8,62],[-2,34],[2,10],[19,31],[4,12],[8,88],[8,98],[9,35],[7,9],[61,44],[11,29],[31,-7],[3,7],[3,34],[14,36],[21,30],[15,11],[54,19],[32,26],[10,2],[85,-6],[18,10],[3,9],[5,99],[15,16],[3,8],[-5,69],[3,45],[17,27],[-1,16],[-12,32],[-17,21],[-8,5],[-70,-20],[-29,7],[-14,12],[-2,9],[2,20],[1,32],[10,51],[3,30],[-8,175],[-12,116],[6,115],[-1,24],[-2,5],[-9,0],[-43,-10],[-36,74],[-22,30],[-62,36],[-27,7],[-40,32],[-37,70],[-37,72],[-15,45],[-17,78],[-47,149],[0,39],[-6,23],[-46,98],[-33,70],[-53,112]],[[66900,69042],[106,-63],[83,-48],[133,-78],[103,-60],[29,-10],[303,52],[112,-40],[36,-22],[5,13],[15,27],[26,27],[35,21],[36,12],[51,1],[34,-1],[25,-7],[49,4],[24,10],[81,43],[54,29],[82,44],[60,33],[15,17],[15,32],[8,28],[-19,43],[-2,38],[12,48],[7,74],[-2,104],[-4,61],[17,112],[14,63],[28,30],[19,19],[8,13],[8,15],[30,86],[27,40],[26,24],[29,-3],[25,-33],[47,-15],[46,10],[40,25],[18,20],[21,18],[-1,20],[-24,18],[-14,25],[-5,31],[14,18],[31,6],[77,74],[31,49],[9,23],[15,3],[29,-23],[34,-8],[22,23],[21,5],[21,-25],[11,-29],[20,-36],[24,-7],[29,19],[30,41],[29,58],[26,56],[-7,180],[-4,107],[14,55],[19,35],[13,53],[-1,47],[14,40],[13,107],[19,26],[37,17],[61,11],[47,49],[47,52],[7,46],[-18,50],[-24,95],[-22,57],[-52,103],[6,63],[29,26],[72,-44],[20,-9],[25,-6],[66,1],[54,17],[57,39],[11,41],[-1,48],[1,40],[1,56],[-20,35],[-12,32],[-4,25],[14,14],[14,26],[13,47],[31,57],[19,51],[18,24],[27,33],[17,48],[8,29],[16,29],[5,18],[-4,17],[-8,21],[-9,23],[0,23],[7,24],[8,22],[-3,30],[-5,50],[-14,29],[-10,68],[-16,68],[-8,27],[-15,34],[-34,35],[-10,24],[13,46],[22,29],[42,70],[23,48],[21,34],[27,-5],[15,3],[14,31],[27,28],[49,57],[17,39],[26,19],[21,5],[29,13],[28,21],[25,16],[40,3],[63,9],[35,10],[81,8],[89,3],[11,1],[38,-21],[26,-17],[11,2],[43,41],[66,50],[30,22]],[[70705,73169],[17,8],[25,0],[21,-14],[21,-19],[13,-15],[16,9],[30,11],[25,-8],[56,-35],[8,-17],[13,-84],[10,-7],[32,19],[26,-10],[29,-27],[19,-26],[12,-28],[14,-46],[5,-36],[6,-44],[-1,-123],[-10,-20],[-8,-26],[2,-23],[9,-18],[18,-12],[17,-8],[9,-19],[12,-70],[9,-10],[20,0],[38,15],[32,24],[14,5],[3,-66],[19,-25],[26,-29],[11,-10]],[[66311,63489],[-17,-8],[-6,4],[1,73],[40,91],[27,106],[19,-94],[-33,-53],[-17,-91],[-14,-28]],[[65663,66232],[28,-152],[42,-142],[37,-78],[38,-106],[59,-98],[27,-33],[108,-69],[60,-25],[82,-25],[57,-53],[19,-3],[29,15],[22,-1],[54,-73],[16,-69],[23,-36],[20,-57],[13,-60],[45,-92],[33,-103],[33,-76],[29,-47],[44,-19],[36,-21],[4,-51],[-4,-67],[-7,-49],[-33,-96],[-8,-59],[-37,-97],[-41,-163],[-18,-37],[-66,-84],[-48,-102],[-57,-176],[-43,-174],[-17,-56],[-35,-12],[-23,5],[-15,17],[6,47],[4,54],[-21,-6],[-19,-11],[-43,-131],[-24,-57],[-5,-73],[-12,-94],[-16,-86],[-8,-73],[0,-41],[13,-101],[1,-103],[7,-62],[6,-74],[-20,-23],[-18,-11],[-68,-8],[-70,-24],[-61,-43],[-37,-43],[-47,-95],[-29,-243],[-47,-103],[-31,-21],[-76,-9],[-106,-28],[-38,-25],[-62,-148],[-5,-47],[12,-34],[4,-37],[-5,-35],[-29,-94],[-30,-68],[-81,-43],[-30,25],[-27,13],[-53,2],[-86,-17],[-31,-50],[-50,-36],[-46,-55],[-87,-21],[-59,-43]],[[65577,66856],[24,83],[9,13],[8,-6],[22,9],[11,45],[9,25],[10,-3],[4,-14],[-3,-69],[0,-57],[-12,-175],[-13,-30],[-6,-25],[-2,-34]],[[53163,85850],[-1,17],[-5,22],[-65,22],[-12,-1],[-25,13],[-15,4],[-31,8],[-25,64],[-28,54],[-3,22],[0,101],[-8,44],[-2,49],[-17,-39],[9,-63],[-21,-26],[-26,-13],[2,-37],[11,-7],[3,-38],[-7,-56],[-52,-126],[-11,-13],[-7,-17],[-27,11],[-34,-35],[-32,-5],[-12,39],[-46,53],[-22,-3],[20,-26],[19,-34],[-11,-22],[-11,-14],[-18,-8],[-67,-44],[23,-29],[-20,-34],[-23,-5],[-13,-15],[-4,-21],[-69,-61],[-113,-155],[-59,-44],[-40,-46],[-36,2],[-45,-39],[-114,-34],[-75,15],[-53,-13],[-28,26],[-4,19],[2,10],[5,13],[-10,5],[-21,2],[-9,-13],[-1,-29],[-10,-8],[-39,17],[-10,15],[14,30],[25,28],[-5,5],[-5,17],[-11,2],[-35,-4],[-29,5],[-93,62],[-21,33],[-75,52],[-34,56],[-19,61],[2,56],[9,87],[15,22],[68,-31],[68,-51],[10,3],[22,40],[41,32],[-12,9],[-61,-37],[-23,21],[-36,42],[0,21],[17,22],[5,29],[-8,28],[4,37],[27,40],[41,40],[30,39],[31,24],[-4,8],[-34,-15],[-34,-26],[-39,-44],[-48,-35],[-35,-13],[-17,-12],[-26,-11],[-27,-50],[-29,-21],[-53,-3],[-11,37],[15,131],[16,64],[17,45],[27,7],[20,34],[16,0],[13,-16],[54,-15],[26,43],[35,6],[62,42],[-1,8],[-42,-9],[-26,-2],[-37,-10],[-20,7],[-9,32],[15,29],[59,68],[21,30],[11,28],[-2,19],[10,39],[58,69],[47,32],[15,-28],[-13,-84],[0,-35],[38,123],[16,30],[19,20],[45,14],[13,20],[-53,-7],[-127,-47],[-54,-42],[-15,-32],[-37,-49],[-17,-31],[-8,-47],[-21,-25],[-29,-9],[-39,-59],[-17,-48],[-39,-37],[-25,-29],[-8,-11],[-14,-28],[-11,-2],[-10,16],[-1,37],[3,59],[19,42],[9,42],[-12,38],[9,24],[16,0],[31,-11],[33,1],[54,31],[-9,18],[-23,2],[-44,-2],[-36,29],[-29,59],[-13,79],[9,23],[105,81],[28,36],[-16,4],[-39,-45],[-57,-27],[-35,38],[-19,41],[-11,87],[4,45],[-4,59],[24,19],[27,-10],[26,-4],[61,5],[133,35],[85,-21],[35,2],[54,31],[46,3],[35,-23],[19,-27],[3,-36],[16,-23],[11,7],[-9,29],[-2,43],[140,50],[17,19],[-56,7],[-16,45],[30,68],[-3,9],[-31,-36],[-15,-51],[6,-40],[-6,-19],[-29,-9],[-64,-3],[-41,17],[-38,10],[-13,13],[4,29],[-7,6],[-16,-26],[-14,-52],[-30,-12],[-84,19],[-121,-11],[-54,-26],[-35,3],[-61,46],[-24,36],[-8,73],[3,33],[47,13],[24,-1],[22,17],[-19,12],[-28,22],[-19,44],[-29,14],[-19,38],[-5,57],[6,40],[15,13],[37,-9],[97,6],[91,-40],[62,-23],[125,12],[73,36],[-13,10],[-80,-21],[-73,1],[-130,40],[-53,14],[-57,-6],[-30,12],[-18,40],[13,77],[27,17],[15,-20],[18,-2],[18,32],[17,19],[14,41],[51,39],[22,3],[31,18],[20,-5],[12,-18],[16,-15],[35,2],[103,31],[11,10],[20,25],[-65,-11],[-54,-18],[-35,-5],[-5,22],[13,21],[20,21],[10,37],[22,16],[24,-1],[50,7],[35,9],[60,-6],[90,-14],[58,-34],[21,3],[23,9],[11,12],[-46,14],[-2,21],[5,15],[74,28],[81,6],[-14,23],[-177,-34],[-46,23],[-36,0],[-24,-13],[-68,-16],[-13,11],[13,40],[41,65],[3,16],[19,16],[106,37],[51,44],[23,6],[22,-3],[35,5],[67,-13],[30,-55],[28,-17],[87,-69],[-4,20],[-75,93],[-29,23],[-21,46],[7,43],[24,29],[86,15],[15,17],[2,29],[-13,19],[-32,-1],[-26,12],[-7,31],[10,21],[50,38],[27,13],[47,13],[81,-30],[6,-16],[-22,-38],[2,-21],[20,-3],[46,64],[55,9],[23,14],[26,9],[38,-58],[16,-19],[12,-7],[12,-48],[12,-3],[17,24],[30,13],[42,8],[69,-12],[32,9],[15,-1],[-14,43],[-10,12],[15,39],[15,15],[48,27],[46,12],[30,26],[40,24],[-6,18],[-12,22],[-26,2],[-10,12],[33,28],[45,32],[-8,12],[-34,14],[-26,-10],[-38,-25],[-45,-39],[15,-11],[22,-32],[-31,-43],[-166,-115],[-78,-34],[-37,5],[-9,32],[-16,23],[-18,48],[-31,-1],[-17,-11],[-8,16],[13,51],[26,40],[44,31],[20,36],[20,59],[63,55],[91,138],[75,44],[27,48],[44,21],[38,37],[29,4],[54,34],[30,40],[-20,2],[-47,-26],[-27,-10],[2,43],[13,44],[39,40],[186,117],[19,-19],[22,-35],[56,8],[64,66],[49,72],[-26,-12],[-29,-30],[-57,-41],[-26,-6],[-15,5],[-8,28],[-20,8],[-18,-6],[-18,20],[-3,48],[23,71],[19,47],[20,36],[78,101],[17,56],[36,29],[46,-7],[14,9],[-16,36],[-50,29],[-3,18],[167,47],[80,-1],[24,23],[43,15],[33,29],[-17,13],[-81,-26],[-51,-13],[-23,0],[-18,-9],[-64,-3],[-14,115],[10,63],[24,-2],[5,60],[28,35],[39,8],[19,15],[28,31],[46,-7],[48,7],[-12,14],[-59,19],[-14,32],[20,17],[23,13],[20,3],[40,62],[24,27],[26,-5],[38,28],[37,-10],[35,18],[49,12],[178,5],[5,25],[-38,6],[-132,7],[-67,-1],[-29,-7],[-10,9],[2,16],[24,24],[12,26],[49,65],[58,44],[44,-11],[46,-42],[34,-5],[15,-13],[25,-57],[11,-2],[-5,55],[32,44],[-8,13],[-49,-16],[-37,16],[-29,34],[-8,31],[18,30],[17,15],[-11,18],[-74,-48],[-51,-11],[-21,7],[11,43],[-6,34],[70,85],[23,9],[39,-6],[35,-24],[30,4],[32,12],[-5,23],[-69,9],[-18,19],[7,19],[47,19],[48,36],[54,10],[43,27],[8,-6],[8,-11],[15,-99],[39,-81],[15,-3],[-15,69],[14,20],[17,15],[6,17],[-20,6],[-17,24],[-24,79],[9,21],[51,41],[64,10],[68,-29],[24,-1],[40,8],[67,24],[40,10],[20,0],[5,12],[-19,8],[-6,7],[-15,5],[-62,-13],[-172,4],[-16,14],[-3,24],[18,34],[20,20],[65,34],[68,5],[72,61],[28,45],[15,71],[44,57],[111,32],[4,14],[-12,30],[1,53],[31,63],[20,21],[9,3],[24,-21],[29,-43],[45,-24],[59,-5],[16,12],[-46,25],[-35,32],[-3,33],[17,17],[25,-2],[33,4],[30,21],[4,16],[1,20],[8,22],[44,50],[136,33],[10,-14],[-7,-97],[-16,-63],[0,-46],[27,46],[35,126],[27,59],[30,34],[22,8],[21,17],[28,11],[9,-14],[9,-31],[-16,-110],[2,-35],[-17,-46],[-65,-104],[3,-13],[15,5],[25,17],[80,98],[70,-12],[1,8],[-22,29],[-28,28],[-8,34],[4,91],[21,37],[60,-4],[37,5],[17,-17],[36,1],[25,66],[50,6],[44,-44],[52,-29],[43,-42],[12,12],[-23,98],[-25,35],[-54,19],[-58,44],[-15,19],[3,15],[50,14],[68,-16],[59,36],[17,-10],[46,19],[28,-25],[17,7],[11,35],[73,21],[46,-20],[25,-20],[12,-39],[17,-78],[36,-42],[23,-21],[27,-5],[12,21],[-24,25],[-7,24],[12,59],[14,23],[78,87],[66,46],[39,4],[68,102],[20,18],[18,5],[-5,24],[-37,16],[-2,31],[50,38],[60,63],[30,4],[18,-17],[59,-29],[35,-33],[26,-16],[17,3],[14,25],[17,11],[37,-6],[22,-16],[18,-2],[15,-9],[4,-21],[-32,-23],[-55,-61],[-54,-69],[-18,-36],[-17,-95],[-43,-61],[-3,-43],[17,-20],[47,16],[57,57],[15,60],[143,164],[68,91],[76,75],[43,15],[21,-49],[-17,-65],[-32,-41],[24,-19],[-5,-50],[-7,-27],[-5,-28],[0,-26],[23,7],[89,52],[23,56],[21,42],[10,36],[35,34],[66,0],[3,14],[-80,47],[-9,22],[27,28],[73,55],[38,-6],[23,-13],[91,-9],[69,-39],[-2,-61],[-16,-26],[-15,-15],[-89,-47],[-15,-22],[28,-8],[60,23],[16,-21],[-19,-53],[-4,-78],[-7,-46],[0,-42],[8,-23],[24,90],[8,22],[36,34],[13,68],[34,81],[39,47],[23,13],[75,-2],[33,-18],[28,-39],[21,-16],[67,-17],[24,-21],[4,-12],[16,-3],[45,30],[30,5],[48,-46],[-10,-35],[3,-11],[58,2],[48,-13],[92,-71],[10,-33],[-5,-40],[-132,-44],[-57,-42],[-94,-16],[-318,28],[7,-31],[221,-66],[13,-19],[-7,-40],[-1,-33],[5,-22],[16,-20],[27,-10],[55,5],[27,-11],[19,17],[7,55],[16,12],[31,-16],[13,-59],[9,-6],[15,42],[31,-3],[33,3],[43,-7]],[[58045,91602],[-20,22],[-17,34],[4,33],[50,64],[46,45],[13,16],[27,46],[-54,114],[-94,34],[-108,53],[-40,28],[-62,58],[-43,52],[-40,1],[-43,-13],[-68,-47],[-39,-24],[-22,-7],[-5,-1],[-49,14],[-54,3],[-43,-4],[-16,-7],[-61,-76],[-42,-39],[-23,-14],[-17,-22],[-14,-37],[-31,-128],[-23,-48],[-5,-30],[5,-89],[-5,-50],[-28,-40],[-20,-19],[-27,-4],[-34,-10],[-30,-24],[-21,-32],[-24,-73],[-40,-26],[-39,7],[-28,27],[-59,21],[-44,13],[-49,28],[-44,22],[-39,4],[-23,-27],[-18,-26],[-68,-21],[-39,-16],[-50,-4],[-20,19],[-72,12],[-86,14],[-25,0],[-8,32],[-23,46],[-61,79],[-25,28],[-48,65],[-55,67],[-7,2],[-37,2],[-54,-2],[-34,-15],[-22,-20],[-4,-15],[21,-61],[-6,-16],[-11,-7],[-49,17],[-59,-1],[-15,-19]],[[51377,87030],[-25,-8],[-19,6],[7,55],[10,9],[15,4],[16,-30],[-4,-36]],[[51412,86582],[1,-68],[-25,5],[-12,26],[-3,17],[2,39],[-6,41],[7,20],[10,3],[16,-36],[10,-47]],[[58321,92048],[-53,-17],[-6,14],[11,22],[14,44],[22,-2],[22,-17],[17,-20],[-27,-24]],[[53324,89646],[-18,-18],[-35,5],[-3,15],[9,31],[21,13],[27,-3],[9,-13],[-10,-30]],[[52352,88517],[-31,-1],[-20,13],[46,25],[72,25],[6,15],[9,2],[12,-19],[2,-26],[-8,-13],[-88,-21]],[[52250,88327],[-27,0],[-32,9],[-21,19],[-3,16],[38,21],[37,12],[18,-23],[1,-37],[-11,-17]],[[56511,92635],[-6,-18],[-9,-18],[-23,-18],[-66,-74],[-38,-11],[-13,-12],[-15,-7],[-48,10],[-14,-15],[-14,-10],[-34,-4],[-21,4],[-53,27],[-31,29],[-17,26],[49,-1],[17,6],[33,-5],[19,26],[42,-3],[80,18],[29,-10],[67,60],[21,-2],[32,17],[13,-15]],[[57107,92823],[74,-22],[25,0],[37,-41],[19,4],[-3,-25],[-37,-12],[-58,-7],[-9,-5],[-49,4],[-28,33],[-47,9],[0,11],[30,25],[46,26]],[[56559,92482],[5,-27],[2,-23],[-26,-32],[-59,-42],[3,-11],[-20,-11],[-31,-8],[-17,8],[2,36],[-5,11],[-23,-15],[-24,19],[-1,18],[7,16],[23,25],[37,16],[25,-6],[83,65],[9,-14],[10,-25]],[[56671,92492],[-53,-23],[-31,20],[-13,20],[-1,45],[7,27],[25,15],[16,-11],[4,-8],[29,-9],[34,-28],[-17,-48]],[[53853,91166],[17,-10],[43,3],[8,-4],[-6,-16],[-19,-18],[-39,-11],[-18,-27],[-12,-9],[-34,-1],[-20,-6],[-25,-24],[-20,18],[-5,-13],[-4,-23],[-11,-6],[-34,-9],[-8,53],[16,20],[12,22],[19,4],[17,-2],[30,50],[42,14],[26,1],[25,-6]],[[53603,90941],[-41,-31],[15,56],[22,56],[30,32],[16,-12],[-7,-27],[0,-27],[-7,-13],[-28,-34]],[[54224,91556],[36,-58],[16,-34],[-13,-64],[-35,-32],[-54,-6],[-38,3],[-24,16],[-3,17],[-14,5],[-37,-22],[-25,-3],[-32,17],[-9,28],[34,35],[16,27],[38,-3],[10,-8],[21,-5],[13,32],[-3,23],[10,15],[46,-11],[0,61],[17,5],[8,-3],[13,-13],[9,-22]],[[55490,92290],[15,-7],[14,4],[11,-6],[23,-30],[25,-12],[2,-15],[-23,-15],[-31,-4],[-32,5],[-9,19],[-10,31],[-27,31],[-4,27],[23,5],[23,-33]],[[55771,92217],[-15,-14],[-23,-5],[-12,8],[-17,6],[-20,-3],[-16,25],[1,20],[23,28],[45,16],[36,-6],[10,-9],[-12,-66]],[[55348,92203],[25,-31],[22,3],[6,12],[15,6],[30,-17],[-4,-28],[-42,-36],[-30,-50],[-38,-12],[-18,6],[-35,-29],[-27,-31],[-28,-38],[-2,-20],[-5,-15],[-104,-15],[-37,-10],[-40,12],[-19,26],[6,14],[40,5],[1,24],[10,14],[13,8],[9,30],[16,8],[30,-7],[20,22],[11,3],[14,-18],[6,25],[-6,23],[3,15],[38,40],[17,29],[24,19],[22,-3],[7,28],[-7,28],[3,18],[20,45],[22,2],[11,-40],[1,-65]],[[53474,89805],[-22,-2],[0,23],[13,22],[20,14],[26,4],[29,2],[9,-12],[-17,-16],[-58,-35]],[[53449,89886],[-25,-4],[4,26],[21,24],[8,16],[4,20],[18,14],[26,-19],[1,-31],[-13,-30],[-44,-16]],[[53119,89208],[-14,-16],[-33,13],[-63,-10],[-26,15],[20,31],[58,32],[31,-2],[31,-39],[-4,-24]],[[54861,91933],[34,-33],[15,10],[29,3],[22,-11],[18,-21],[22,-1],[13,-27],[7,-36],[-16,-27],[-22,-12],[-6,-31],[9,-44],[-49,-15],[-58,-7],[-22,21],[-45,-38],[-46,-60],[-21,-7],[-2,19],[-32,13],[-42,1],[1,14],[8,10],[36,15],[7,30],[-7,54],[7,26],[1,19],[23,21],[77,-10],[9,20],[-6,13],[-39,22],[6,15],[28,14],[28,2],[8,22],[1,10],[4,6]],[[54377,91336],[4,-4],[38,56],[41,17],[3,19],[16,19],[-2,31],[9,24],[21,7],[13,8],[15,5],[27,-20],[15,-22],[19,-50],[-8,-48],[-50,-38],[-40,-17],[-41,-43],[-20,-35],[-17,-8],[-11,3],[-10,9],[-21,0],[-22,-31],[-68,-25],[-27,7],[-1,31],[-16,-3],[-26,-36],[-25,-12],[-16,-4],[-31,14],[-83,-63],[-78,-11],[-25,7],[0,38],[50,49],[41,34],[142,23],[88,101],[21,109],[21,39],[-10,23],[-24,4],[-1,34],[12,37],[47,51],[25,22],[42,62],[20,14],[23,0],[23,-16],[-4,-33],[-34,-60],[-50,-51],[6,-37],[20,-30],[5,-51],[1,-50],[-38,-66],[-9,-33]],[[47512,92649],[-25,-4],[-15,13],[37,35],[124,66],[49,63],[95,22],[6,-35],[-6,-44],[-84,-35],[-92,-23],[-89,-58]],[[55338,94695],[-33,-23],[-51,34],[-33,43],[18,16],[89,3],[22,-23],[4,-13],[-16,-37]],[[57465,97147],[-41,-1],[-75,42],[-14,37],[13,15],[36,1],[57,-51],[61,-15],[-37,-28]],[[59034,97994],[-263,-22],[-27,16],[427,63],[22,6],[80,8],[68,-14],[-20,-11],[-287,-46]],[[56002,97117],[38,-14],[83,3],[45,-98],[26,-103],[41,-8],[80,15],[70,7],[36,-8],[65,-30],[28,-21],[-24,-17],[-59,-19],[-10,-55],[59,-20],[98,-47],[56,-6],[98,19],[93,-37],[92,-45],[-215,-56],[-19,-16],[-29,-42],[-32,-35],[-29,-20],[-64,-35],[-35,-13],[-78,3],[-29,-14],[-27,-28],[-27,-21],[-69,-5],[-35,28],[12,9],[5,17],[-13,40],[66,40],[15,23],[-13,8],[-18,-2],[-48,12],[-14,0],[-40,-24],[-55,-16],[-55,-4],[-224,-31],[-34,11],[-15,61],[91,31],[14,53],[23,35],[26,23],[50,60],[12,4],[-123,48],[-48,31],[-53,61],[-17,50],[-71,42],[9,54],[-52,-4],[-41,38],[38,21],[190,24],[113,24],[43,-1]],[[55804,98069],[28,-6],[153,2],[30,-14],[11,-34],[24,-12],[32,-3],[81,-42],[28,-6],[24,23],[19,58],[0,68],[-7,33],[9,21],[27,8],[34,-2],[34,12],[29,21],[31,3],[67,-16],[18,-13],[-18,-25],[-7,-37],[-31,-75],[66,-4],[93,15],[24,22],[50,35],[53,-5],[25,4],[13,15],[5,18],[29,-3],[40,-34],[19,-6],[34,9],[13,0],[34,-14],[157,-25],[54,-14],[24,-12],[23,-8],[167,1],[118,-9],[43,-20],[37,-38],[14,-88],[-33,-24],[-239,-108],[-60,-35],[-29,-32],[-48,-70],[-24,-21],[-112,-34],[-26,-3],[-84,16],[-25,-2],[-102,-36],[-36,-22],[-34,-27],[-51,-13],[-53,7],[-237,14],[-32,20],[-26,37],[47,48],[-265,-18],[-292,10],[-15,6],[-13,19],[-100,12],[-75,15],[-64,26],[-62,33],[20,15],[20,9],[54,4],[48,-4],[85,0],[20,33],[34,10],[27,24],[-90,15],[-94,2],[-62,-20],[-73,-9],[-66,-1],[-127,6],[-60,14],[-83,36],[-28,21],[-11,16],[-9,24],[95,21],[36,17],[36,24],[-142,13],[-60,19],[-59,29],[48,16],[192,13],[51,-11],[50,-21],[56,-12],[53,27],[-50,12],[-46,45],[-9,22],[6,17],[23,3],[18,-7],[67,-42],[51,-14],[14,39],[2,19],[-9,15],[-24,28],[-21,35],[33,9],[33,-4],[70,-24],[71,-17],[32,-16],[61,-42],[56,-29]],[[54662,97872],[15,-1],[14,6],[10,16],[11,9],[71,-11],[99,-32],[30,-16],[41,-33],[34,-55],[-27,-40],[-35,-37],[-12,-21],[13,-30],[-6,-29],[-13,-26],[54,29],[114,94],[17,6],[18,-3],[51,-19],[46,-48],[11,-16],[8,-20],[5,-24],[-3,-28],[-4,-19],[-25,-12],[-11,-12],[26,-1],[30,-15],[27,-31],[31,-13],[111,11],[73,-17],[39,-52],[62,12],[0,27],[13,12],[82,-9],[43,-13],[43,-27],[-74,-45],[61,-43],[103,-31],[61,-33],[12,-14],[10,-18],[-40,-24],[-41,-13],[-104,-2],[-93,-17],[-172,-12],[-26,-7],[-6,-7],[-10,-21],[-66,-47],[-64,-58],[-26,-35],[-20,-49],[-8,-29],[15,-29],[-4,-30],[-48,-23],[-31,0],[-38,4],[-38,-13],[-2,-20],[2,-28],[-9,-85],[-12,-65],[-18,-59],[-19,-33],[-25,-9],[-81,-5],[-62,-57],[-50,-100],[-26,-39],[-55,-62],[10,-22],[17,-24],[-30,-43],[-46,-48],[1,-19],[16,-34],[7,-35],[-35,-30],[-66,-16],[-66,17],[-32,21],[-30,32],[-32,22],[-33,13],[-127,72],[-117,114],[-108,45],[-69,21],[-34,20],[-33,28],[-28,31],[-27,39],[-12,24],[-3,36],[9,21],[12,11],[85,9],[31,-5],[30,-19],[27,-7],[63,94],[357,54],[115,9],[115,0],[-18,25],[-15,33],[-17,7],[-87,-18],[-133,-19],[-65,0],[-67,13],[-67,-7],[-69,-28],[-69,-17],[-68,-7],[-143,3],[-35,14],[-48,33],[-11,17],[-10,21],[-9,63],[10,17],[14,9],[15,6],[32,1],[31,-11],[72,-36],[-17,39],[208,46],[96,40],[49,6],[50,-2],[-11,21],[0,20],[35,16],[25,7],[77,8],[174,-2],[62,11],[47,28],[-50,-10],[-50,-2],[-23,6],[-53,24],[-24,31],[68,63],[24,30],[-70,-5],[-23,-10],[-80,-58],[-60,-26],[-73,-12],[-73,1],[-16,8],[-22,39],[-7,20],[3,11],[23,31],[12,34],[-2,29],[-17,5],[-27,-28],[-25,-39],[-33,-20],[-35,6],[-15,15],[-13,23],[-13,9],[-15,0],[-31,-9],[-31,-18],[11,-25],[3,-29],[-14,-23],[-10,-28],[32,-17],[26,-28],[-39,-13],[-38,-18],[-34,-29],[-36,-23],[-56,-2],[-70,-12],[-141,-5],[-66,37],[-12,17],[-13,12],[-44,19],[-63,57],[-50,64],[-33,6],[-49,21],[-27,19],[-25,24],[-8,29],[3,26],[29,12],[-69,29],[-68,39],[25,13],[25,6],[202,-46],[14,6],[22,23],[-8,7],[-34,5],[-46,0],[-11,5],[-18,24],[-16,30],[-6,20],[-3,23],[34,35],[19,32],[-29,14],[-83,-1],[-28,-4],[10,-45],[-26,-31],[-51,-25],[-36,12],[-28,60],[-37,41],[-14,26],[-10,38],[-15,27],[-27,33],[-3,20],[3,16],[20,34],[-15,28],[-19,25],[-1,14],[18,18],[16,6],[17,-2],[51,-21],[28,-25],[9,2],[19,38],[25,8],[100,12],[111,-48],[29,-10],[23,-4],[-12,21],[-7,28],[17,10],[89,-24],[42,1],[98,33],[163,16],[62,-25],[3,-14],[-2,-18],[-3,-5],[-36,-22],[-206,-17],[-134,-66],[183,10],[33,-7],[14,-55],[13,-5],[48,-8],[32,-16],[32,-31],[34,-21],[21,3],[7,22],[-8,27],[-5,30],[3,33],[5,27],[39,19],[56,62],[59,42],[66,-19],[62,-53],[55,-74],[53,-80],[60,-99],[29,-35],[27,-8],[121,-103],[13,-3],[-25,78],[-62,133],[-43,102],[-9,39],[-7,54],[3,16],[5,14],[31,59],[40,28],[-12,40],[10,31],[42,24],[39,2],[38,-19],[73,-65]],[[53125,97125],[3,-40],[45,4],[53,-42],[58,-22],[17,-16],[12,-20],[35,-40],[17,-42],[-42,-4],[-58,60],[-47,34],[-60,29],[-48,2],[-21,12],[-78,105],[-15,24],[-44,39],[-20,48],[0,38],[60,-9],[52,-24],[45,-54],[9,-16],[-21,-22],[21,-27],[27,-17]],[[55205,98099],[-60,-32],[-100,25],[12,25],[23,15],[64,-6],[61,-27]],[[58068,97299],[83,-4],[83,9],[14,-9],[-107,-31],[-119,16],[-107,4],[-127,-33],[-42,13],[65,33],[70,10],[11,20],[27,4],[93,2],[56,-34]],[[85175,73606],[-3,5],[-14,4],[-56,47],[-46,-29],[-12,-37],[-12,-12],[-19,73],[-30,2],[-48,65],[-21,-13],[-5,-26],[-26,-60],[-37,-48],[-12,-7],[-13,3],[2,14],[-15,55],[-58,22],[-21,23],[-11,6],[57,61],[15,11],[-11,14],[-12,7],[-47,-9],[-24,20],[-36,-7],[-24,16],[51,60],[2,36],[-1,27],[26,80],[26,44],[67,62],[30,9],[21,-3],[17,6],[-18,24],[-18,11],[-35,-2],[-36,36],[-3,38],[70,240],[1,22],[-11,58],[-3,57],[-51,33],[-22,4],[-64,64],[-26,33],[-10,-10],[-2,-51],[-9,-12],[-17,-10],[-9,59],[-14,42],[-42,44],[-16,23],[8,52],[-4,4]],[[84544,74886],[7,58],[26,45],[64,79],[17,37],[33,44],[14,-1],[16,4],[4,19],[4,15],[13,13],[31,25],[36,31],[28,9],[35,48],[14,21],[15,0],[3,10],[9,24],[11,16],[15,3],[25,12],[32,7],[22,40],[7,29],[14,31],[31,34],[20,51],[24,55],[11,18],[10,3],[7,21],[7,59],[11,56],[6,27],[27,30],[7,14],[6,5],[12,-4],[16,17],[16,19],[14,-7],[15,-15],[15,-32],[7,-25],[12,-21],[2,-30],[12,-14],[25,-6],[42,-21],[27,-1],[15,-16],[32,-8],[64,12],[26,-7],[11,-19],[17,-16],[10,-1],[14,27],[16,42],[10,32],[-1,26],[-9,28],[-21,25],[-14,40],[-13,41],[-8,14],[-6,20],[-1,30],[4,21],[32,14],[41,8],[33,-9],[56,6],[34,12],[25,-2],[23,0],[11,18],[32,42],[16,15],[17,29],[3,30],[3,24],[10,26],[17,32],[14,15],[16,-2],[17,-15],[11,-14],[12,4],[10,25],[7,5],[19,2],[6,16],[8,74],[7,59],[2,40],[17,68],[6,41],[10,19],[12,-1],[10,-12],[12,-7],[17,6],[12,-10],[7,-22],[25,-15],[2,-11],[0,-74],[13,-34],[18,-31],[25,-29],[14,-6],[8,-20]],[[86301,76210],[-14,-16],[-19,10],[-31,6],[-39,-51],[-22,-17],[-16,-50],[-31,-30],[-17,-31],[-22,-54],[-14,-53],[-33,-54],[-20,-67],[-1,-58],[21,-59],[2,-51],[-15,-104],[9,-110],[-10,-43],[-102,-76],[-26,-37],[-38,-98],[-46,-36],[-28,-40],[-39,-24],[-26,-69],[-27,-39],[-33,-24],[-25,-30],[-55,-2],[-39,-21],[-27,-58],[-83,-66],[-12,-49],[6,-77],[0,-58],[-7,-49],[-18,14],[-10,-16],[-11,-44],[4,-51],[28,-17],[23,-20],[33,-11],[24,-24],[52,-107],[42,-47],[11,-17],[24,-24],[22,-37],[13,-33]],[[84695,74617],[-16,-17],[0,30],[12,25],[12,3],[-8,-41]],[[52027,54388],[-26,-18],[-18,4],[24,77],[12,-17],[16,-7],[-8,-39]],[[53779,59737],[44,-124],[47,-133],[36,-104]],[[53906,59376],[27,-268],[3,-51],[2,-23],[2,-21],[3,-37],[21,-16],[40,-7],[29,-26],[17,-44],[1,-7],[9,-34],[3,-24],[-3,-71],[-6,-90],[-10,-58],[6,-79],[-2,-34],[-4,-23],[-18,-27],[-24,-26],[-57,-76],[-17,-12],[-24,-2],[-21,-19],[-25,-41],[-53,-154],[-46,-154],[-16,-128],[-17,-122],[-40,-78],[-6,-44],[-2,-25],[-1,-59],[-5,-97],[-6,-47],[-7,-14],[-43,-30],[-25,-35],[-15,-71],[-5,-77],[-9,-87],[-5,-76],[-7,-40],[-14,-42],[-22,-44],[-19,-26],[-50,-16],[-26,-101],[-21,-79],[-1,-32],[-21,-164],[-36,-124],[-3,-44],[0,-35],[-45,-109],[-12,-32],[-12,-42],[12,-41],[12,-37],[2,-12],[-20,-35],[-36,-60],[-22,-36],[-5,-20],[-3,-90],[-6,-25],[-14,-33],[-21,-37],[-22,-28],[-24,-20],[-23,-7],[-13,12],[-8,27],[-13,111],[-7,24],[-15,21],[-30,61],[-30,61],[-36,43],[-8,-3],[-6,-12],[-11,-61],[-10,-23],[-19,-8],[-33,0],[-25,8],[-5,13],[-5,26],[-7,22],[-29,-43],[-46,-68],[-15,-12],[-11,-13],[-15,-64],[-18,-68],[-24,-35],[-23,-30],[-14,-26],[-19,-31],[-37,-77],[-50,-102],[-17,-53],[-18,-78],[-10,-87],[-11,-96],[-16,-153],[-24,-87],[-20,-69],[-16,-54],[-8,-45]],[[52376,54582],[-3,1],[-8,-19],[-23,13],[-11,39],[-14,6],[-25,57],[-5,-9],[26,-145],[-10,-57],[-73,-1],[-64,-19],[-43,1],[-22,21],[-10,54],[-3,-5],[-3,-30],[-13,-22],[-49,-5],[-22,37],[-17,42],[-19,18],[3,-17],[22,-41],[-3,-58],[-39,-67],[-25,-4],[-16,29],[-8,47],[-4,70],[-10,46],[-6,0],[5,-42],[2,-34],[0,-71],[19,-55],[-29,-17],[-11,-1],[-23,-1],[-4,20],[-5,46],[-6,12],[-7,-78],[-15,-5],[-10,1],[-46,-17],[-10,3],[-2,14],[6,22],[-2,35],[-15,-27],[-3,-54],[-9,-8],[-27,7],[-29,28],[-18,28],[-30,39],[-58,111],[-10,49],[-17,61],[-12,62],[-18,105],[5,8],[14,-9],[7,15],[-25,12],[-5,12],[-1,37],[1,45],[19,16],[18,8],[8,27],[5,28],[-45,-42],[-43,47],[-9,29],[4,22],[21,3],[29,-1],[17,21],[-10,8],[-19,-1],[-7,14],[0,34],[-6,-7],[-8,-31],[-29,-22],[-16,22],[-2,50],[-4,23],[-14,17],[-50,132],[-63,110],[-57,76],[-84,36],[-178,-2],[-10,11],[11,17],[16,12],[57,61],[-10,8],[-59,-38],[-21,-4],[-26,-74],[-156,-12],[-19,-3]],[[50751,55512],[1,33],[7,97],[5,38],[6,29],[-6,34],[-6,47],[-3,74],[8,22],[2,28],[-1,43],[0,145],[4,16],[5,12],[0,20],[-9,37],[-9,43],[0,61],[-3,60],[-6,27],[4,102],[3,128],[-3,57],[6,40],[3,100],[0,97],[11,153],[35,7],[40,13],[19,60],[10,77],[-3,75],[8,25],[16,41],[29,58],[-1,64],[8,20],[14,15],[20,8],[23,32],[12,56],[12,89],[-19,63],[0,13],[8,34],[11,34],[10,10],[22,-8],[3,3],[4,10],[14,99],[-2,27],[-20,66],[-3,47],[-3,70],[-5,62],[-6,23],[-11,20],[-5,13],[-42,126],[1,60],[18,76],[11,37]],[[50998,58580],[16,21],[3,17],[-4,22],[-8,16],[-2,34],[2,23],[6,25],[-2,53],[0,80],[3,118],[0,71],[35,53],[49,89],[25,91],[14,70],[17,232],[12,14],[14,11],[50,84],[38,31],[29,18],[44,16],[28,-6],[49,-4],[40,8],[33,46],[15,13],[21,8],[96,-62],[96,-59],[18,6],[14,-8],[24,-32],[36,-68],[21,-44],[10,-26],[50,-148],[18,-37],[18,-20],[19,-7],[15,2],[13,17],[19,33],[28,15],[23,-3],[120,133],[12,1],[34,-10],[39,-18],[100,-134],[82,-87],[58,-29],[67,-21],[116,-6],[87,187],[32,41],[39,37],[12,6],[68,28],[135,24],[125,-10],[25,-8],[54,-24],[82,-61],[36,-59],[55,-9],[40,11],[14,58],[40,76],[29,31],[31,40],[49,49],[40,22],[37,57],[28,17],[50,2]],[[50998,58580],[-17,53],[-23,37],[-25,16],[-17,27],[-9,37],[-33,73],[-75,144],[-8,3],[-12,6],[-22,-17],[-13,-24],[-9,-9],[-14,-1],[-36,-19],[-28,-23],[-1,-19],[14,-109],[-7,-59]],[[50663,58696],[-13,28],[-41,110],[-29,81],[-5,18],[-4,28],[3,12],[11,9],[27,11],[5,8],[1,23],[-4,41],[-15,57],[-15,37],[-8,7],[-16,2],[-17,-5],[-32,-46],[-14,-9],[-33,4],[-30,9],[-18,24],[-53,91],[-59,96],[-25,13],[-5,10],[-4,74],[1,89],[3,23],[25,-14],[26,-6],[8,16],[-21,32],[-30,32],[-11,48],[-9,17],[-13,17],[-16,9],[-15,14],[-11,14],[-17,6],[-19,10],[-26,79],[-26,76],[-16,60],[-5,36],[8,62],[-8,24],[-29,62],[-24,59],[6,89],[5,75],[0,47],[4,27]],[[50060,60432],[3,30],[16,10],[41,-1],[79,-14],[64,16],[3,3],[45,80],[50,84],[74,8],[81,9],[64,4],[92,7],[75,5],[86,7],[3,38],[5,10],[9,1],[63,-21],[60,-20],[4,73],[53,92],[30,18],[7,16],[9,31],[6,48],[3,34],[11,28],[8,52],[11,90],[29,95],[17,129],[3,125],[3,95],[9,19],[0,168],[-1,170],[0,143],[0,178],[-1,156],[0,169],[0,152],[0,101]],[[51174,62870],[60,24],[63,25],[92,36],[99,39],[108,43],[25,26],[81,146],[37,66],[74,130],[56,101],[72,128],[76,129],[61,103],[95,117],[144,176],[144,176],[144,175],[143,176],[144,176],[144,176],[144,176],[144,176]],[[53324,65390],[145,-67],[137,-64],[138,-64],[33,-35],[73,-125],[94,-160],[4,-3],[4,0],[91,94],[117,123]],[[54160,65089],[31,-333],[23,-285],[2,-183],[1,-47],[9,-32],[22,-33],[87,-263],[-19,-46],[13,-81],[23,-35],[72,-157],[10,-31],[-4,-25],[-51,-185],[-9,-45],[-10,-235],[-7,-167],[-10,-228],[-11,-273],[-10,-230],[-12,-304],[-12,-289],[-73,-158],[-129,-280],[-105,-229],[-53,-153],[-103,-298],[-46,-194],[-36,-100],[-18,-44],[16,-141],[28,-248]],[[26900,60479],[-7,-21],[-9,-14],[-18,-69],[-6,-6],[-1,51],[-10,7],[-13,-18],[-7,-26],[11,-35],[10,0],[11,-9],[31,-236],[-7,-42],[-19,-65],[-18,-56],[-18,-35],[-23,-148],[-20,-241],[14,-217],[-7,-200],[6,-48],[2,-59],[-15,-10],[-8,1],[-9,37],[1,31],[9,38],[4,50],[-5,27],[-9,-58],[-15,-26],[-10,-9],[-10,-29],[10,-55],[14,-40],[4,-29],[-5,-34],[-3,-117],[-5,3],[-5,16],[-14,1],[-2,-47],[1,-26],[-12,-21],[-4,-20],[10,-14],[11,-9],[13,2],[12,-58],[3,-47],[-26,-44],[-9,-36],[-14,-43],[-8,-43],[-3,-31],[10,-98],[18,-69],[15,-44],[20,-10]],[[26766,58131],[-5,-46],[-15,-29],[-27,-25],[-30,-4],[-49,23],[-20,3],[-8,12],[-3,23],[-14,34],[-25,45],[-15,-3],[-24,10],[-41,31],[-18,4],[-27,-27],[-31,-34],[-75,54],[-53,38],[-47,35],[-13,13],[-10,-3],[-9,-18],[-10,-32],[-4,-9],[-5,-9],[-6,-2]],[[26182,58215],[0,15],[-24,64],[-36,76],[-141,234],[-52,140],[-28,101],[-27,53],[-76,107],[-17,43],[-76,143],[-57,85],[-1,35],[24,45],[11,-2],[13,-32],[20,-36],[10,-1],[14,17],[0,17]],[[25739,59319],[78,7],[13,10],[14,26],[8,37],[1,35],[3,26],[12,25],[23,7],[17,3],[5,17],[-5,54],[-9,131],[-2,37],[3,27],[7,10],[34,6],[65,-11],[13,9],[26,74],[24,55],[17,25],[14,7],[15,-49],[55,-69],[9,4],[6,4],[1,10],[0,32],[13,29],[29,26],[28,47],[29,66],[25,39],[21,12],[8,18],[-5,24],[1,35],[9,46],[12,26],[16,7],[6,14],[-3,22],[3,23],[15,39],[34,33],[20,-12],[17,-44],[23,-30],[30,-16],[23,6],[17,28],[15,8],[13,-11],[7,6],[1,24],[7,5],[13,-13],[12,-3],[10,6],[4,12],[2,11],[7,9],[26,-9],[29,14],[33,35],[21,16],[11,-4],[12,18],[15,40],[34,18],[71,-9]],[[98087,28064],[32,-3],[29,43],[31,34],[32,28],[49,66],[12,9],[32,13],[14,15],[15,4],[-14,-39],[-17,-13],[-3,-14],[10,-22],[-15,-31],[0,-39],[-18,-46],[28,18],[10,30],[-5,17],[12,34],[18,16],[-7,25],[0,20],[23,-7],[11,0],[9,8],[16,4],[4,-23],[21,3],[-8,-28],[-16,-33],[-4,-20],[-27,-33],[-18,-14],[28,-4],[40,44],[24,39],[-1,-48],[-19,-44],[-17,-28],[-19,-8],[-18,-23],[-9,-36],[1,-25],[5,-19],[19,-32],[-21,-63],[24,8],[13,-12],[18,-36],[-11,-42],[-8,-22],[-47,-88],[-20,-44],[-24,-29],[1,-47],[-14,-34],[-70,-117],[-12,-25],[-55,-186],[-35,-78],[-20,-27],[-21,-22],[-51,-36],[-23,-43],[-25,-35],[-26,-8],[1,-15],[17,-9],[13,-23],[-10,-26],[-19,-16],[-19,-5],[-10,-17],[46,12],[13,-13],[3,-29],[5,-26],[11,-34],[39,-21],[35,-10],[7,-16],[5,-54],[-6,-27],[-8,-18],[-12,-6],[-28,-3],[-29,12],[-19,33],[-54,-11],[-15,-7],[-7,6],[30,35],[-16,19],[-13,8],[-14,-12],[-9,-18],[-3,-30],[-10,-17],[-15,-5],[-21,25],[-21,35],[-30,36],[4,-22],[24,-54],[12,-36],[-28,-29],[-28,-22],[-25,-13],[-22,-20],[-27,-32],[-15,-11],[-39,-1],[-21,-10],[-7,-42],[-15,-27],[-34,-5],[12,-8],[8,-14],[-23,-126],[-5,-53],[-4,-89],[-14,-83],[-41,0],[6,-15],[31,-23],[-6,-36],[-34,-64],[-14,-38],[-14,-90],[-20,-84],[-32,-95],[0,-17],[11,-24],[13,-21],[1,-30],[-4,-16],[-15,-4],[-13,-10],[-71,-26],[-24,-29],[-19,-53],[-22,-45],[-74,-100],[-44,-83],[-9,-24],[-12,-18],[-95,-39],[-68,-6],[-37,10],[-36,20],[-19,7],[-38,-12],[-16,-14],[-30,13],[-23,-10],[-7,10],[-9,25],[5,32],[-6,24],[-15,17],[-10,19],[-12,13],[-31,6],[-49,-9],[-16,1],[-34,80],[-11,20],[-39,25],[-14,-3],[-21,-43],[-13,-7],[-74,-5],[-75,14],[-28,16],[-5,37],[57,102],[-17,-14],[-35,-41],[-22,6],[21,45],[2,20],[-4,23],[-30,-38],[-33,-5],[-4,35],[3,41],[7,11],[89,22],[33,14],[14,22],[-54,7],[-3,31],[7,25],[46,41],[-33,-11],[-38,4],[3,43],[9,34],[40,1],[-13,23],[-1,33],[11,2],[39,-44],[29,-16],[-12,33],[2,21],[7,9],[24,7],[-7,6],[-22,8],[-26,25],[-3,26],[1,31],[28,42],[17,-25],[20,7],[-15,19],[-9,30],[6,19],[60,78],[15,-75],[4,25],[1,24],[-7,20],[1,21],[7,18],[25,17],[34,58],[25,26],[20,-17],[13,-23],[-2,23],[-9,19],[-3,53],[45,81],[49,78],[48,82],[25,29],[54,34],[34,-14],[9,3],[51,58],[21,16],[19,-21],[12,-8],[-12,54],[10,24],[42,44],[54,45],[40,19],[30,30],[18,1],[-3,23],[3,22],[16,-2],[5,9],[-14,12],[44,44],[24,48],[13,11],[11,14],[14,34],[17,11],[15,-5],[11,-17],[-6,28],[-20,15],[22,24],[22,16],[21,-12],[21,-19],[-21,30],[-3,18],[25,21],[14,6],[19,-39],[-2,31],[4,28],[28,45],[36,75],[11,-26],[2,-31],[-2,-39],[8,14],[2,34],[-5,61],[45,113],[8,12],[10,8],[16,3],[-5,17],[-12,17],[12,57],[8,65],[10,63],[17,62],[18,102],[14,22],[38,7],[16,15],[28,37],[32,67],[18,54],[23,140],[13,147],[37,108],[54,79],[48,60],[19,12],[33,4],[32,-17],[-59,-14],[-6,-36],[-2,-35],[7,-33],[11,-28],[28,-27],[33,-16],[15,-61],[3,-72],[5,-62],[13,-54]],[[98309,28304],[-38,-34],[2,23],[7,51],[17,26],[8,1],[17,20],[-1,-43],[-12,-44]],[[96317,25543],[-1,-28],[-3,-14],[-10,0],[-14,3],[-14,13],[-10,-4],[-7,5],[10,32],[33,17],[12,-14],[4,-10]],[[96382,25818],[12,-70],[-25,14],[-11,20],[20,35],[4,1]],[[96706,24848],[0,-23],[-29,9],[1,-26],[23,-14],[8,-18],[24,5],[5,-28],[-5,-24],[-16,-19],[-47,-9],[-31,-36],[-26,6],[-7,-3],[-30,-39],[-34,-12],[-9,3],[5,34],[25,33],[0,31],[7,25],[24,18],[0,33],[16,29],[-10,63],[6,56],[47,3],[53,-97]],[[98761,30944],[2,-31],[-21,11],[-8,24],[-24,24],[-4,8],[-2,48],[12,23],[2,10],[6,4],[10,-26],[19,-36],[8,-59]],[[98129,31719],[5,-26],[15,18],[11,30],[19,30],[-3,-48],[10,-11],[61,-34],[13,-28],[13,-8],[7,16],[9,8],[22,-18],[50,-49],[4,-17],[-2,-25],[2,-27],[7,-21],[17,-5],[22,31],[10,4],[15,-45],[6,-25],[-3,1],[10,-25],[12,-25],[22,-74],[-3,-26],[-6,-23],[20,-68],[-13,-5],[-40,12],[1,-14],[23,-50],[20,-70],[15,-43],[55,-132],[-8,-47],[1,-31],[-7,-26],[19,-70],[-12,-22],[-8,-72],[-8,-12],[1,-26],[22,-7],[13,-11],[12,-21],[7,25],[10,7],[26,-34],[55,-34],[15,-13],[8,-27],[5,-67],[11,-29],[21,-6],[23,9],[7,25],[-5,65],[-16,104],[0,34],[2,33],[-3,34],[-9,32],[-8,24],[-12,21],[4,32],[17,14],[10,-27],[9,-32],[42,-97],[26,7],[2,-40],[17,-41],[10,-47],[12,-143],[19,-133],[35,-59],[4,-28],[-21,15],[-7,-9],[2,-14],[20,-25],[23,-13],[14,2],[14,-9],[90,-87],[43,-34],[109,-56],[31,-4],[17,2],[33,19],[29,34],[25,52],[22,59],[23,28],[27,23],[14,21],[14,15],[73,-7],[25,-30],[32,-24],[16,-18],[-5,-38],[-19,-56],[-15,-61],[-13,-138],[-9,-141],[-13,-61],[-24,-48],[-27,-34],[-30,-17],[-12,-79],[-6,-93],[1,-24],[10,-18],[4,-28],[-16,-56],[-9,8],[-13,47],[-12,19],[-36,15],[-37,7],[-32,-5],[-31,-19],[-47,-41],[-14,-21],[-13,-25],[-21,-58],[-5,-71],[1,-38],[7,-28],[40,-40],[-39,-136],[-35,-143],[-20,-40],[-23,-38],[-21,-85],[-38,-74],[-25,-56],[-20,-59],[-17,-62],[-37,-88],[-16,-58],[-22,-48],[-40,-61],[-42,-53],[-67,-73],[-18,-24],[-20,-18],[-24,21],[-5,23],[-6,50],[-5,18],[-31,15],[-41,-24],[-7,5],[-2,11],[0,73],[7,20],[-9,12],[-10,-5],[-3,-18],[6,-16],[-23,-20],[-25,-1],[-7,8],[-2,13],[6,22],[8,20],[45,91],[47,122],[40,130],[11,67],[15,125],[-12,51],[-16,49],[-40,94],[-55,53],[-35,7],[-33,20],[-31,45],[-29,53],[-56,43],[-60,34],[-34,48],[-8,29],[-5,33],[0,30],[5,32],[6,24],[11,17],[63,62],[67,35],[12,-1],[12,6],[17,21],[30,48],[8,33],[6,104],[10,102],[17,116],[26,73],[9,44],[-11,73],[10,27],[12,17],[13,9],[-23,69],[-26,104],[-6,32],[4,32],[7,31],[-17,8],[-10,30],[-24,101],[7,16],[14,-11],[20,-73],[4,38],[16,23],[16,12],[18,2],[-40,82],[-14,-4],[-18,-12],[-19,-8],[-18,7],[-17,18],[-8,34],[-11,66],[-7,24],[-53,135],[16,4],[43,-67],[8,21],[7,31],[-3,35],[-10,26],[-15,17],[-1,30],[12,28],[-1,20],[-24,40],[-10,4],[-5,-18],[7,-28],[-6,-3],[-61,73],[-18,58],[-15,65],[-2,-26],[2,-37],[24,-74],[39,-82],[7,-22],[-6,-29],[-14,-8],[-11,18],[-18,71],[-13,35],[-148,365],[19,48],[29,41],[7,18],[5,22],[-13,3],[-11,-10],[-13,-18],[-11,-22],[-15,-47],[-7,-11],[-17,33],[-7,20],[0,24],[-4,16],[-13,5],[-19,48],[-12,24],[20,47],[1,62],[-21,65],[-24,60],[-47,96],[-43,102],[47,13],[47,2],[-22,-61],[10,-35],[15,-30],[32,-91],[3,-27],[16,-26],[8,-21]],[[96993,21602],[15,-29],[-29,-13],[-14,11],[-10,13],[-5,19],[15,-2],[14,8],[14,-7]],[[96172,22602],[6,-48],[-16,-1],[-32,14],[-9,21],[-7,5],[-12,-24],[-18,-1],[-5,8],[8,25],[44,49],[8,61],[-1,19],[35,5],[8,-7],[3,-9],[-2,-11],[-14,-20],[0,-23],[3,-24],[-11,-12],[6,-21],[6,-6]],[[1062,26647],[-10,-15],[-17,1],[-30,-59],[2,44],[-9,17],[-26,-4],[-4,-10],[17,-12],[4,-6],[-17,-25],[17,-55],[15,2],[14,-43],[0,-13],[-33,-16],[-17,-23],[-16,1],[-7,4],[-9,41],[0,17],[19,31],[11,30],[-9,28],[-22,19],[-48,-9],[-11,6],[24,39],[26,-5],[28,28],[108,-13]],[[1062,26312],[-12,-5],[1,33],[-4,21],[21,7],[9,-26],[-15,-30]],[[2089,46900],[-1,-1],[-1,6],[-2,7],[-1,7],[0,1],[3,-6],[2,-7],[0,-7]],[[2448,46454],[0,-2],[-2,3],[-2,5],[-1,6],[1,1],[2,-4],[1,-4],[1,-5]],[[2832,40850],[-28,-31],[-12,37],[11,48],[13,12],[8,2],[11,-45],[-3,-23]],[[5628,39602],[-9,0],[-12,4],[-7,3],[-1,5],[3,16],[6,9],[12,-2],[8,-11],[1,-19],[-1,-5]],[[51664,81077],[-28,1],[-26,1],[-14,3],[-15,9],[-7,18],[-8,21],[2,14],[25,37],[4,11],[-3,5],[3,17],[19,56],[2,23],[-8,16],[-13,9],[-40,17],[-19,23],[-8,21],[-9,6],[-13,-7],[-33,-8],[-27,11],[-32,39],[-7,35],[-4,26],[-8,10],[-11,-14],[-13,-22],[-27,-2],[-7,5],[-2,12],[-1,11],[-8,14],[-7,8],[-34,-40],[-13,1],[-16,15],[-8,15],[-17,-9],[-16,-18],[6,-35],[-9,-6],[-19,3],[-22,14]],[[51173,81443],[-24,9],[-37,24],[-51,-20],[-36,24],[-29,2],[-19,19],[-19,31],[14,21],[13,7],[54,4],[40,-13],[71,-68],[18,1],[19,8],[-10,19],[-18,9],[-26,18],[-21,26],[49,8],[-7,13],[-6,23],[-52,79],[9,22],[13,46],[16,38],[13,10],[22,27],[46,80],[30,65],[22,76],[32,212],[10,36],[15,40],[20,-8],[13,-11],[48,30],[83,78],[24,68],[24,31],[95,62],[52,18],[81,5],[59,11],[70,4],[27,-38],[15,-28],[25,-15],[39,-11]],[[51999,82535],[-3,-55],[1,-108],[-3,-19],[-18,-46],[-18,-81],[-5,-54],[-5,-11],[-74,1],[-10,-10],[-2,-11],[4,-14],[-2,-14],[-6,-11],[3,-18],[13,-20],[23,-13],[25,-1],[13,2],[9,-14],[10,-22],[-1,-29],[-4,-37],[-11,-35],[-34,-40],[-16,-14],[-14,-8],[-7,-10],[-3,-14],[1,-12],[24,-32],[-1,-7],[-7,-17],[-9,-16],[-62,-33],[-26,3],[-14,-16],[-5,-4],[-16,16],[-37,17],[-13,-6],[-8,-10],[-23,-11],[-16,-18],[0,-23],[29,-60],[10,-12],[0,-23],[14,-28],[15,-35],[1,-22],[-1,-23],[-8,-32],[-25,-75],[0,-15],[2,-11],[9,-3],[6,-6],[-2,-10],[-47,-52],[-6,-9],[-19,3],[-3,-9],[2,-14],[8,-13],[17,-6],[14,-13],[12,-26],[-16,-89]],[[51173,81443],[-4,-22],[-10,-24],[-37,-34],[-39,-23],[-19,3],[-14,12],[-7,12],[-21,12],[-28,6],[-18,-13],[-12,-12],[-11,2],[-8,10],[-7,16],[-8,50]],[[50930,81438],[21,9],[46,4],[35,-18],[46,-8],[36,24],[28,-21],[31,15]],[[51759,82667],[-39,-20],[-10,4],[3,6],[34,12],[12,-2]],[[51647,82637],[-55,-9],[-19,7],[-3,6],[15,4],[47,1],[14,-6],[1,-3]],[[51419,82550],[-52,-42],[-4,6],[33,37],[23,-1]],[[51479,82595],[-26,-5],[-12,8],[63,23],[39,7],[7,-3],[-71,-30]],[[51357,82413],[-28,-41],[-17,12],[-4,9],[8,32],[41,53],[0,-65]],[[51096,81646],[28,-31],[5,-10],[2,-11],[-34,-12],[-37,38],[-24,-9],[-9,18],[0,12],[25,9],[44,-4]],[[51870,82708],[-25,-2],[7,15],[24,12],[13,0],[-19,-25]],[[31054,58838],[-14,-64],[-8,28],[-1,52],[-6,20],[-11,12],[-6,17],[0,26],[42,-41],[4,-50]],[[32517,61921],[-7,-12],[-6,1],[-4,11],[0,20],[5,-6],[3,-2],[1,-4],[8,-8]],[[32435,61994],[-2,-2],[-4,5],[1,10],[3,4],[2,-3],[2,-7],[-2,-7]],[[30583,59015],[1,-16],[-13,9],[-17,35],[-17,27],[4,29],[4,10],[18,-27],[17,-50],[3,-17]],[[30902,58789],[-14,-8],[-54,56],[-44,90],[-1,47],[11,-4],[12,-18],[17,-64],[52,-42],[21,-57]],[[74474,67897],[11,-16],[2,-25],[-2,-29],[-12,-61],[-10,-44],[-13,-91],[-11,-158],[3,-28],[33,-91],[12,-69],[2,-48],[-14,-80],[-16,-90],[-8,-20],[-9,-7],[-40,31],[-28,-4],[-32,-18],[-34,4],[-27,10],[-35,-36],[-34,20],[-21,22],[-15,63],[-6,8],[-70,-66],[-17,-4],[-44,35],[-36,35],[-13,10],[-35,14],[-31,8],[-34,22],[-42,-29],[-17,3],[-16,20],[-8,42],[-2,40],[-15,27],[-22,6],[-31,-24],[-45,-33],[-15,6],[-13,9],[-5,9],[-7,37],[-7,9],[-10,1],[-19,9],[-23,27],[-70,66],[-9,29],[0,65],[-3,27],[-9,28],[-36,28],[-70,46],[-38,37],[-19,-17],[-35,-16],[-19,-33],[-23,11],[-54,34],[-29,6],[-18,-12],[-4,-20],[-22,-23],[-21,18],[-41,25],[-37,13],[-55,30],[-6,44],[-10,45],[-13,7],[-50,-8],[-45,48],[-49,63],[-21,20],[-13,8],[-12,-8],[-14,-15],[-12,-4],[-26,27],[-34,38],[-42,47],[-48,66],[-20,37],[-9,28],[-11,27],[-42,43],[-34,34],[-40,41],[-7,8],[-15,24],[-23,31],[-20,9],[-6,-17],[-4,-18],[-17,4],[-26,32],[-28,32],[-21,31],[-22,31],[-5,23],[9,71],[13,62],[11,13],[17,41],[7,71],[-1,61],[18,85],[23,91],[41,98],[18,32],[20,22],[37,72],[8,12],[17,19],[16,4],[12,-9]],[[72502,69218],[13,-37],[15,-36],[18,2],[22,30],[45,141],[63,29],[59,-15],[52,-20],[16,-47],[10,-50],[6,-25],[17,-29],[74,-71],[43,-64],[59,-85],[45,-37],[39,-3],[22,-34],[33,-66],[29,-77],[35,-71],[24,3],[33,23],[41,30],[24,-15],[22,-20],[7,-36],[13,-69],[15,-72],[23,-25],[28,-37],[15,-30],[51,-53],[8,-22],[10,-15],[13,-10],[10,-11],[16,-3],[60,32],[15,-4],[10,-6],[0,-12],[-11,-50],[-9,-65],[9,-32],[25,-14],[55,-9],[75,0],[22,-32],[23,-49],[22,-84],[9,-36],[12,-10],[19,14],[3,35],[1,51],[16,18],[11,-14],[12,-40],[30,-36],[23,-17],[21,6],[9,14],[10,70],[17,10],[21,-5],[8,-14],[9,-28],[25,-13],[26,-18],[24,-22],[33,-52],[42,-10],[48,1],[25,-1],[19,-4],[17,4],[49,37],[20,3],[25,-5],[24,-7]],[[96376,51545],[-5,-20],[-6,3],[-3,13],[2,14],[7,6],[5,-5],[0,-11]],[[57016,41593],[-12,3],[-85,-19],[-33,-25],[-73,-108],[-15,14],[-17,22],[-15,7],[-32,-27],[-32,-31],[-35,-44],[-29,-43],[-10,-23],[-45,-89],[-15,-15],[-13,-6],[-5,4],[-6,38],[-28,90],[-45,117],[-13,12],[-9,4],[-33,-6],[-96,-33],[-82,-28],[-124,-47],[-134,-39],[-83,-24],[-71,-7],[0,-116],[0,-235],[0,-235],[0,-235],[0,-235],[1,-235],[0,-235],[0,-235],[0,-235],[0,-102],[-2,-22],[-41,0],[-94,0],[-78,0],[-63,0],[0,-140],[0,-165],[0,-165],[0,-165],[0,-165],[0,-165],[0,-166],[0,-165],[0,-165],[1,-124],[0,-15]],[[54568,35358],[-31,47],[-91,175],[-32,46],[-48,107],[-105,334],[-15,64],[-20,161],[-23,120],[-3,69],[11,39],[-6,53],[-12,47],[-36,62],[-10,208],[-24,134],[5,110],[-11,101],[-1,65],[5,123],[-19,141],[-39,138],[-35,199],[-5,88],[3,235],[-6,95],[0,113],[-14,117],[-6,63],[10,51],[6,-16],[10,-8],[7,67],[1,59],[-17,146],[-39,149],[-97,244],[-24,92],[-13,77],[-108,321],[-46,226],[-33,196],[-35,90],[-162,634],[-36,101],[-65,121],[-15,41],[-25,115],[-48,155],[-12,144],[-4,164],[6,125]],[[53261,41906],[45,14],[31,33],[28,2],[27,-26],[29,-2],[12,4],[52,-3],[30,30],[36,30],[20,26],[29,27],[39,28],[21,-3],[27,-10],[36,-10],[20,-19],[24,-58],[36,-53],[28,-32],[31,-42],[9,-16],[14,-9],[8,-3],[58,7],[53,6],[56,0],[106,-1],[107,0],[106,0],[106,-1],[106,0],[107,0],[106,-1],[106,0],[44,0],[76,-2],[80,-2],[8,-3],[9,-12],[8,-10],[28,-73],[36,-77],[30,-36],[36,-22],[33,-8],[32,5],[52,-9],[73,-25],[76,-8],[78,11],[55,-14],[32,-38],[33,-25],[33,-13],[45,8],[57,28],[49,-4],[22,-21],[14,0],[83,30],[68,25],[101,39],[83,32],[123,47],[87,34]],[[59222,43770],[12,-17],[40,-142],[32,-83],[37,-77],[6,4],[10,18],[19,7],[57,18],[23,1],[14,20],[30,15],[34,9],[12,-10],[36,-99],[5,-77],[8,-110],[2,-54],[-1,-72],[-4,-90],[-29,-104],[-6,-51],[-16,-80],[-21,-39],[-10,-33],[1,-33],[11,-28],[24,-51],[8,-32],[-2,-29],[0,-40],[6,-27],[6,-16],[25,-26],[23,-65],[41,-78],[48,-111],[23,-34],[18,-8],[9,-38],[-5,-43],[-14,-25],[6,-35],[7,-19],[9,-9],[22,-2],[19,7],[5,12],[-2,167],[-15,97],[-14,38],[-3,7],[5,32],[16,75],[14,74],[8,31],[10,19],[67,20],[31,17],[12,21],[10,58],[8,160],[3,151],[-7,88],[10,133],[15,82],[-8,17],[-5,111],[-44,118],[-56,152],[-31,82],[-36,94],[-65,146],[-29,52],[-16,21],[-52,17],[-14,28],[-14,45],[-5,83],[0,62],[-6,105],[-11,149],[-5,44],[-15,112],[-14,107],[-1,26],[5,26],[24,79],[18,55],[8,31],[14,83],[4,40],[11,18],[46,8],[37,-2]],[[61239,45815],[15,-60],[26,-54],[-15,-31],[-19,-28],[30,-38],[-22,-57],[-3,-40],[6,-15],[5,-24],[-15,-65],[-20,-50],[-5,-38],[18,-68],[-9,-119],[17,-108],[4,-55],[6,-37],[-8,-67],[2,-111],[4,-46],[-10,-57],[17,-20],[9,-63],[-3,-71],[-5,-38],[-29,-46],[-4,-18],[1,-27],[36,-1],[2,-42],[-3,-33],[2,-63],[-5,-40],[8,-46],[-10,-51],[4,-40],[0,-51],[9,-130],[1,-160],[2,-25],[13,-18],[18,-9],[0,-44],[-21,-58],[-1,-35],[3,-50],[22,68],[14,-1],[12,-26],[-2,-39],[4,-20],[-2,-38],[7,-48],[-3,-42],[-16,-29],[-21,-50],[-4,-48],[2,-30],[-14,-10],[-7,-19],[10,-45],[-1,-39],[-25,-123],[-68,-167],[-30,-59],[-27,-65],[0,-27],[-3,-23],[-32,-92],[-34,-15],[-20,-25],[15,-81],[-22,-19],[-39,-64],[-106,-122],[-17,-29],[-27,-75],[-35,-19],[-20,-21],[-36,-8],[-12,6],[-12,-3],[-10,-16],[-70,-53],[-66,-42],[-16,-19],[-11,-26],[-58,-41],[-91,-103],[-74,-97],[-54,-98],[-14,-15],[-17,-33],[-5,-50],[-6,-28],[-40,-103],[-60,-121],[-11,-34],[-24,-67],[-2,-44],[-22,-14],[-18,42],[-7,-81],[-15,-6],[-16,17],[-40,-41],[-35,-46],[-56,-98],[-80,-191],[-116,-183],[-16,-5],[-10,0],[-37,64],[-20,5],[18,-38],[12,-32],[-3,-61],[1,-93],[-14,-181],[2,-40],[16,-51],[31,-62],[30,-79],[37,-224],[3,-115],[39,-147],[1,-64],[16,-159],[-1,-128],[-3,-79],[19,-33],[7,30],[-2,50],[5,80],[10,35],[11,-5],[3,-38],[7,-33],[3,-31],[0,-43],[-14,-162],[4,-66],[19,-110],[-22,-128],[-33,-301],[-1,-52],[7,-23],[18,-7],[6,38],[11,0],[5,-23],[-14,-139],[-15,-61],[-51,-149],[-27,-64],[-46,-63],[-106,-98],[-215,-142],[-85,-70],[-50,-42],[-108,-132],[-47,-88],[-19,-102],[-19,-47],[-18,-59],[16,-50],[16,-39],[18,-25],[10,-22],[12,-16],[13,80],[6,25],[11,2],[-6,-98],[-13,-333],[-1,-11]],[[59622,44922],[-5,17],[-9,8],[-10,-7],[-4,-21],[11,-27],[12,0],[5,30]],[[59644,44866],[7,13],[3,17],[0,16],[-5,11],[-7,6],[-9,-4],[-4,-22],[-1,-31],[6,-10],[10,4]],[[49383,72064],[8,-43],[16,-34],[59,-78],[35,-48],[1,-17],[-12,-39],[-4,-27],[9,-29],[21,-35],[2,-17],[-5,-20],[-11,-37],[23,-111],[4,-107],[-6,-76],[0,-44],[3,-37],[20,-87],[-13,-143],[15,-78],[21,-63],[11,-113],[17,-53],[27,-47],[15,-16],[30,-39],[22,-32],[13,-48],[-27,-40],[-22,-36],[-6,-38],[10,-61],[0,-33],[-14,-11],[-56,3],[-44,3],[-50,3],[-71,6],[-44,4],[-61,5],[-20,-3],[-56,-17],[-39,-12],[-6,-4],[-13,-15],[-8,-45],[-8,-52],[-8,-23],[-117,-74],[-46,-11],[-26,8],[-19,-6],[-16,-16],[-6,-24],[-1,-31],[4,-31],[11,-43],[2,-44],[-7,-30],[-2,-31],[-3,-33],[6,-18],[11,-3],[11,-15],[16,-14],[14,-26],[-1,-38],[-11,-21],[-10,-11],[-44,-10],[-35,-8],[-45,-60],[-48,-64],[-58,-42],[-25,-12],[-44,-30],[-53,-50],[-26,-80],[-32,-93],[-32,-62],[-43,-58],[-40,-23],[-51,-28],[-63,-21],[-45,-8],[-14,-4],[-39,-2],[-20,5],[-14,2],[-6,-6],[-2,-15],[-1,-33],[-3,-38],[-12,-32],[-9,-15],[-11,-6],[-33,9],[-28,10],[-66,14],[-13,-3],[-5,-4],[-21,-22],[-32,-46],[-22,-41],[-16,-18],[-38,-10],[-17,-15],[-72,-101],[-15,-24],[-74,-88],[-21,-29],[-17,-28],[-44,-65],[-28,-28],[-5,-17],[-2,-40],[0,-87],[0,-84],[0,-122],[0,-122],[0,-140]],[[47587,67774],[-37,0],[0,-1],[1,-24],[8,-48],[3,-40],[-4,-25],[-4,-32],[2,-31],[6,-33],[6,-34],[0,-23],[-11,-18],[-27,-9],[-31,-8],[-23,0],[-34,5],[-22,-1],[-19,0],[-16,-5],[-21,-22],[-23,-35],[-29,-46],[-17,-29],[-23,-6],[-23,0],[-22,23],[-14,12],[-10,-1],[-15,-16],[-19,-12],[-17,0],[-29,24],[-34,34],[-20,17],[-29,6],[-29,11],[-20,-5],[-26,0],[-34,-23],[-29,-17],[-31,-18],[-36,-16],[9,-51],[12,-28],[0,-35],[-6,-30],[-17,-28],[-20,-37],[-11,-29],[-12,-39],[-8,-24],[-15,-37],[-13,-47],[-4,-30],[-6,-33],[-10,-11],[-35,-9],[-22,-11],[-19,-12],[-8,-20],[-1,-3],[-5,-40],[0,-29],[-6,-23],[-8,-57],[-11,-53],[-9,-69],[-8,-57],[-11,-93],[-11,-86],[-14,-81],[-11,-51],[-9,-29],[-19,-35],[-17,-22],[-19,-30],[-22,-28],[-31,-35],[-25,-29],[-10,-13],[-12,-16],[-20,-40],[-16,-57],[-11,-47],[-20,-74],[-14,-41],[-8,-22],[-22,-23],[-25,-18],[-28,-23],[-22,-23],[-31,-23],[-19,-23],[-14,-34],[-11,-41],[-14,-58],[-11,-63],[-6,-40],[-16,-139],[-6,-80],[-6,-52],[-8,-64],[-5,-97],[0,-81],[-6,-46],[-3,-35],[-14,-40],[-11,-29],[-19,-40],[-17,-23],[-5,-23],[-17,-29],[-17,-46],[-14,-29],[3,-23],[3,-40],[-8,-41],[-9,-46],[-22,-57],[-25,-29],[-36,-6],[-50,0],[-39,6],[-47,0],[-42,11],[-39,12],[-47,6],[-33,0],[-42,-12],[-108,0],[-42,-6],[-61,-23],[-15,-5]],[[45276,64182],[21,276],[38,149],[30,66],[47,35],[43,150],[16,138],[28,64],[9,50],[-11,38],[27,75],[32,114],[15,73],[38,113],[5,25],[-4,29],[-15,-25],[-16,-41],[-19,-33],[8,40],[15,60],[34,62],[53,69],[110,234],[42,41],[37,98],[14,88],[4,200],[13,106],[24,83],[29,150],[22,68],[15,136],[16,53],[28,24],[40,69],[60,42],[71,89],[33,53],[23,79],[24,158],[42,166],[22,125],[1,2],[37,66],[26,83],[43,37],[90,18],[134,69],[120,104],[34,42],[37,83],[60,108],[114,130],[52,72],[79,182],[53,150],[44,97],[30,86],[21,87],[12,140],[-8,55],[-33,89],[-23,24],[-6,42],[12,75],[0,128],[7,204],[37,165],[91,217],[17,88],[10,142],[1,50],[114,200],[67,154],[23,37],[59,70],[205,154],[116,109],[68,80],[40,94],[112,371],[110,521],[9,61],[49,17],[35,7],[28,19],[34,40],[33,-16],[-16,-27],[0,-64],[23,-75],[41,-85],[75,-107],[58,-43],[83,-26],[96,47],[54,1],[27,20],[28,-30],[55,-9],[52,16],[40,45],[25,51],[4,-25],[1,-28],[8,-16],[15,-66],[9,-25],[30,4],[26,-13],[59,6],[57,-11]],[[47587,67774],[0,-96],[0,-118]],[[47587,67560],[1,-96],[0,-114],[0,-114],[0,-130],[0,-129],[0,-94],[0,-66],[-57,0],[-51,0],[-52,0],[-52,0],[-52,0],[-51,0],[-52,0],[-52,0],[-52,0],[-51,0],[-52,0],[-52,0],[-52,0],[-52,0],[-51,0],[-52,0],[-52,0],[-41,0],[0,-69],[0,-78],[0,-79],[0,-78],[0,-78],[0,-79],[0,-78],[0,-79],[0,-78],[0,-79],[0,-78],[0,-78],[0,-79],[0,-78],[0,-79],[0,-78],[0,-79],[0,-69],[-2,-63],[-17,-19],[-40,-33],[-40,-34],[-52,-16],[-17,-11],[-33,-46],[-44,-59],[-37,-51],[-25,-67],[-9,-37],[-4,-39],[3,-37],[14,-74],[3,-37],[2,-65],[3,-71],[2,-76],[3,-76],[2,-81],[3,-81],[2,-82],[2,-61],[3,-76],[-42,0],[-64,0],[-63,-1],[-64,0],[-64,0],[-64,0],[-63,0],[-64,0],[-64,-1],[-63,0],[-64,0],[-64,0],[-63,0],[-64,0],[-64,-1],[-64,0],[-63,0],[-36,0],[-11,-108],[-10,-77],[-6,-63],[4,-53]],[[45264,63828],[-14,29],[25,300],[1,25]],[[55651,76513],[-36,-17],[-7,-25],[-17,3],[-21,0],[-7,-16],[10,-27],[7,-31],[-5,-43],[-2,-6]],[[55573,76351],[-5,2],[-30,-25],[-22,-12],[-20,-6],[-9,12],[-5,17],[1,47],[-4,16],[-6,7],[-14,-11],[-16,-36],[-15,-42],[-22,-45],[-18,-42],[-19,-53],[-14,-44],[14,-25],[9,-35],[-3,-26],[3,-15],[-5,-46],[-1,-28]],[[55372,75961],[-43,46],[-18,64],[-63,109],[-73,74],[-4,12],[4,14],[4,11],[-15,1],[-11,-9],[-10,3]],[[55143,76286],[-11,27],[-11,24],[0,22]],[[55121,76359],[5,2],[7,9],[15,23],[3,13],[-1,18],[-21,60],[-3,38],[-3,72],[4,17],[8,8],[38,9],[-1,56],[2,17],[8,23],[5,21],[21,31],[28,36],[12,1],[11,-5],[12,-31],[14,4],[2,37],[-17,49],[-9,31],[3,18],[6,9],[15,-6],[14,-9],[10,6],[14,5],[8,-2]],[[82411,80543],[-26,-80],[-52,-161],[-44,-135],[-23,-77],[-17,-58],[-18,-56],[-3,-33],[-19,-54],[-37,-64],[-8,-70],[1,-63],[-3,-57],[-41,-35],[-32,-32],[10,-107],[16,-41],[26,-43],[28,-35],[24,-30],[27,14],[22,45],[44,40],[24,1],[16,-9],[38,-3],[38,14],[31,3],[39,-9],[14,-10],[33,-17],[35,-38],[25,-43],[18,-8],[9,14],[20,37],[27,37],[34,60],[26,45],[20,7],[38,0],[18,11],[29,6],[26,-17],[71,-9],[20,-23],[34,-70],[19,-37],[33,-19],[21,-13],[18,-10],[17,-18],[5,-22],[7,-33],[11,-19],[20,-19],[16,-11],[4,-25],[5,-11],[14,-17],[42,-72],[20,-20],[31,-41],[13,-35],[1,-36],[8,-28],[20,-41],[10,-29],[-4,-38],[4,-34],[-8,-35],[-34,-25],[-11,-13],[-24,-1],[-41,13],[-39,-7],[-47,14],[-37,31],[-20,25],[-32,14],[-15,-7],[-18,-32],[-21,5],[-19,-5],[-49,6],[-26,8],[-42,-22],[-24,-7],[-45,-27],[-27,-47],[-20,-11],[-19,2],[-14,17],[-21,21],[-30,-1],[-9,-9],[-4,-19],[-10,-58],[0,-26],[-6,-17],[-18,-6],[-32,2],[-49,4],[-33,15],[-20,-7],[-27,-31],[-20,-5],[-15,-14],[-13,-46],[-20,-29],[-24,-36],[-26,-77],[-14,-44],[4,-24],[3,-28],[-12,-33],[-24,-30],[-20,-6],[-29,-29],[-40,-53],[-30,-44],[-40,-11],[-27,-11],[-62,-14],[-15,-3],[-68,-7],[-50,24],[-26,-4],[-24,-13],[-11,-15],[-5,-28],[-4,-25],[-19,-40],[-38,-53],[-32,-35],[-24,-45],[-14,-17],[-27,-17],[-15,-10],[-35,-40],[-28,-36],[-18,-10],[-22,9],[-14,3],[-43,14],[-29,2],[-41,9],[-95,42],[-31,20],[-27,54],[-24,27],[-34,3],[-49,0],[-23,10],[-37,-10],[-41,-54],[-19,-41],[-17,-41],[-20,-89],[-9,-60],[-8,-33],[-21,-53],[-3,-30],[8,-26],[16,-29],[9,-46],[23,-49],[22,-38],[43,-61],[12,-33],[14,-36],[3,-36],[-2,-24],[-16,-18],[-29,-9],[-15,-25],[-21,-33],[-26,-39],[-13,-2],[-14,-10],[-74,-48],[-27,-13],[-22,-16],[-27,-49],[-20,-36],[-25,-48],[-11,-21],[-23,-48],[-30,-55],[-16,-30],[-9,-17],[-8,-23],[-31,-18],[-26,-19],[-38,-28],[-55,-32],[-45,-30],[-29,-25],[-42,-31],[-29,-10],[-57,1],[-72,-8],[-52,-6],[-39,7],[-59,5],[-45,6],[-30,-12],[-72,-12],[-16,-3],[-126,-30],[-56,-16],[-52,-7],[-37,-12],[-22,-14],[-31,-21],[-17,-9],[-56,-41],[-125,-84],[-84,-69],[-13,-12],[-57,-48],[-32,-19],[-23,-43],[-18,-27],[-19,-12],[-34,28],[-24,-2],[-77,11],[0,125],[-53,-17],[-86,-29],[-79,-26],[-73,60],[-56,47],[-48,40],[-74,26],[-65,23],[-116,38],[-51,33],[-26,45],[-46,99],[-15,20],[-22,14],[-24,8],[-50,0],[-62,8],[-88,21],[-71,16],[-120,32],[-29,3],[-62,-27],[-81,-36],[-145,28],[-64,13],[-130,26],[-147,30],[-142,31],[-104,-17],[-57,-9],[-67,-14],[-9,15],[-3,59],[-12,46],[-36,50],[-25,47],[-46,63],[-15,40],[-5,62],[-43,162],[-27,109],[-6,22],[-12,36],[-15,18],[-32,12],[-8,19],[0,38],[5,52],[6,38],[-5,9],[-83,-10],[-51,25],[-43,27],[-60,70],[-36,27],[-46,73],[-67,17],[-25,28],[-32,62],[-27,40],[-39,25],[-62,23],[-105,21],[-35,9],[-58,-14],[-43,-2],[-70,16],[-40,19],[-49,0],[-32,0],[-43,4],[-20,13],[-19,15],[-36,-4],[-25,16],[-24,28],[-24,13],[-27,0],[-11,-13],[-10,1],[-7,39],[-25,62],[-4,28],[-15,32],[-9,29],[3,40],[10,78],[24,71],[16,18],[10,21],[20,37],[12,29],[-2,40],[-14,41],[-10,54],[2,31],[15,37],[17,81],[-1,21],[-7,17],[-2,38],[-3,51],[-21,77],[-11,41],[-20,18],[-23,11],[-20,55],[-25,66],[-16,41],[-5,25],[-3,45],[-12,56],[-12,30],[-9,23],[-5,34],[-5,12],[-34,15],[-24,25],[-10,33],[-4,27],[-7,16],[-19,5],[-14,-24],[-22,-12],[-14,2],[-15,14],[-9,16],[-15,17],[-22,55],[-22,14],[-42,-2],[-37,-26],[-22,4],[-19,9],[-22,27],[-14,23],[-22,7],[-44,40],[-29,28],[-3,56],[-14,39],[-28,11],[-29,39],[-42,22],[-27,16],[-23,10],[-3,15],[1,13],[11,21],[11,20],[2,19],[-9,16],[-23,17],[-31,15],[-6,26],[-19,26],[4,21],[14,16],[15,12],[3,19],[-10,19],[-5,28],[2,20],[-3,27]],[[52066,77044],[-17,-10]],[[52049,77034],[1,12],[4,7],[5,3],[6,-5],[1,-7]],[[23015,66797],[-5,-119],[-17,-97],[-55,-203],[-24,-126],[-44,-360],[-14,-236],[-3,-111],[-4,-15],[4,-17],[-10,-245],[5,-210],[-3,-32],[-17,-63],[-11,-88],[5,-39],[-1,-27],[17,-133],[5,-100],[50,-171],[28,-60],[34,-51],[13,-30],[-6,-72],[-14,-37],[-6,-59],[-7,49],[2,62],[11,34],[1,25],[-21,26],[-37,86],[-45,153],[32,-244],[11,-39],[9,-16],[14,-17],[4,-27],[0,-19],[40,-170],[45,-175],[3,-48],[18,-58],[114,-246],[70,-184],[25,-174],[15,-54],[7,-75],[46,-83],[14,-54],[24,-30],[20,-90],[38,-53],[-9,-1],[-33,27],[2,-18],[28,-37],[54,-37],[13,0],[-21,19],[-18,26],[6,4],[38,-32],[105,-11],[47,-75],[60,-32],[32,-96],[38,-100],[24,-5],[19,0],[56,17],[88,63],[30,30],[59,42],[90,8],[28,-12],[67,26],[33,32],[11,29],[5,22],[62,30],[13,6],[63,6],[31,11],[35,7],[26,-45],[0,-22],[-17,-21],[8,-20],[31,-34],[56,-13],[19,5],[26,49],[46,48],[-1,55],[-9,31],[-13,2],[-3,17],[9,40],[-2,14],[-29,-39],[-6,0],[3,18],[6,15],[83,85],[22,35],[28,31],[60,115],[13,218],[12,38],[40,67],[4,20],[3,45],[-1,114],[2,90],[-2,102],[7,90],[7,26],[23,145],[47,64],[82,76],[19,13],[261,80],[37,20],[45,52],[33,17],[60,-1],[18,7],[4,7],[0,7],[11,7],[34,-7],[65,-31],[24,-8],[58,-36],[63,-15],[10,6],[8,11],[6,22],[-6,18],[-6,-1],[-11,-10],[-13,-1],[-25,15],[5,13],[25,-1],[17,6],[24,22],[26,-16],[35,-75],[24,-24],[2,-108],[4,-19],[8,-29],[-12,-84],[-13,-69],[-17,-57],[-37,-89],[-45,-71],[-56,-159],[-13,-75],[1,-59],[9,-58],[-3,-21],[-6,-22],[-12,2],[-22,-28],[-28,-82],[-1,-25],[13,-23],[16,11],[21,1],[12,7],[12,-2],[-3,-47],[-13,-33],[-8,-11],[-15,-5],[-17,-19],[-9,-18],[1,-54],[9,-4],[20,40],[12,-2],[2,-17],[-26,-139],[-16,-143],[-23,-82],[-8,-121],[-11,-51],[-14,-51],[-8,3],[-21,96],[-23,25],[-4,23],[12,117],[-6,65],[-11,-3],[-15,-35],[-19,-31],[0,-45],[-22,-73],[-6,-25]],[[25473,62483],[-21,6],[-25,-3],[-17,-18],[-18,-89],[-43,-126],[-18,-62],[-14,-21],[-11,-8],[-13,15],[-29,34],[-24,-17],[-8,-39],[1,-50]],[[25233,62105],[-59,0],[-99,0],[-126,0],[-122,0],[-102,1],[0,-113],[-1,-100],[0,-112],[-56,1],[-60,1],[5,-12],[20,-21],[27,-50],[31,-78],[38,-63],[44,-46],[29,-46],[14,-44],[8,-38],[0,-32],[16,-24],[29,-17],[15,-28],[0,-22],[-9,-52],[-3,-57],[4,-52],[-21,-1],[-51,0],[-76,0],[-71,0],[-56,0],[-84,0],[-23,-80],[-38,-132],[-35,-119],[-29,-101],[-5,-26],[0,-22],[36,-94],[-6,-27],[-13,-15],[-4,-22],[1,-36],[-9,-47],[3,-33],[5,-41],[-8,-35],[-6,-34],[-7,-15]],[[24379,60221],[-8,13],[-74,157],[-78,172],[-30,56],[-29,43],[-40,79],[-104,174],[-54,80],[-50,95],[-45,53],[-45,34],[-20,20],[-17,26],[-10,2],[-5,-35],[16,-18],[19,-15],[14,-1],[16,-13],[46,-48],[7,-25],[-130,97],[-53,9],[-6,15],[27,50],[-9,18],[-9,3],[-28,-35],[-11,-2],[-2,23],[1,21],[-18,32],[-11,-1],[-10,-22],[-25,-42],[1,-17],[49,-18],[16,-10],[-3,-11],[-42,0],[-51,-19],[-92,-116],[-86,-50],[-122,-113],[-54,-5],[-29,-18],[-82,43],[-105,105],[-158,33],[-107,138],[-106,57],[-67,132],[-41,6],[-26,21],[-96,48],[-95,32],[-93,115],[-61,37],[-52,46],[-115,79],[-43,43],[-41,68],[-66,69],[-28,59],[-32,21],[-45,109],[-23,47],[-20,21],[-21,8],[-62,-9],[-91,48],[-43,12],[-88,72],[-118,80],[-39,91],[-32,86],[-60,113],[-37,48],[-64,57],[-36,46],[-55,35],[-93,91],[-29,77],[-18,68],[-49,83],[-55,156],[-14,57],[-10,88],[-13,51],[-15,39],[8,29],[27,36],[46,8],[33,39],[4,32],[-2,19],[-21,49],[-26,13],[-20,1],[-5,18],[15,20],[18,48],[25,58],[18,53],[4,75],[-3,76],[7,63],[-62,74],[-7,31],[-19,84],[-34,98],[1,195],[-41,173],[-42,86],[-22,30],[-59,134],[-46,77],[-46,146],[-45,93],[-58,156],[-41,78],[-189,262],[11,0],[55,-64],[9,5],[2,32],[-7,37],[-10,9],[-15,-8],[-20,8],[-10,12],[-29,8],[-38,44],[-16,45],[-1,52],[-54,110],[-20,62],[10,-5],[14,-25],[15,-7],[17,0],[12,10],[-4,18],[-12,15],[-78,58],[-26,41],[-64,68],[-15,24],[-10,65],[-16,3],[-13,-18],[-38,-18],[-10,21],[-1,20],[27,22],[24,61],[0,22],[-14,-25],[-20,-28],[-21,-15],[-32,-13],[-16,9],[-14,14],[-22,54],[-11,176],[20,61],[23,61],[20,35],[11,-27],[12,-3],[-9,31],[-19,28],[-7,29],[-1,26],[-9,48],[-57,102],[-54,-8],[-22,3],[-20,39],[-17,65],[-9,55],[-1,29],[-5,29],[-93,48],[-28,41],[-27,51],[-12,42],[-11,32],[-9,54],[-7,63],[11,82],[13,39],[-64,30],[-24,1],[-21,-16],[-18,21],[-37,24],[-45,85],[-53,155],[-57,50],[-19,54],[-24,48],[-20,60],[-4,26],[-6,15],[-29,42],[-32,71],[-9,57],[-8,87],[-22,31],[-21,14],[-5,41],[2,24],[-7,44],[-44,105],[-23,87],[-12,27],[-11,39],[-6,81],[-18,101],[-36,120],[-29,82],[-15,82],[7,83],[-5,51],[-4,12],[3,17],[10,-9],[8,15],[-1,53],[-10,16],[-29,17],[-12,11],[-70,22],[-39,30],[-3,70],[-19,32],[-16,20],[-52,41],[-9,-21],[-7,-39],[-21,-8],[-19,-2],[-32,27],[-79,103],[-17,17],[-25,9],[-12,16],[-53,55],[11,-29],[15,-30],[14,-87],[-16,-63],[-10,-220],[11,-44],[23,-70],[16,-112],[5,-82],[14,-66],[-4,-155],[5,-47],[22,-77],[41,-73],[9,-38],[53,-55],[33,-72],[65,-98],[20,-42],[58,-152],[2,-46],[11,-56],[33,12],[15,-42],[-2,-20],[4,-15],[17,3],[15,-11],[31,-166],[17,-22],[21,-10],[24,-18],[1,-42],[-1,-34],[21,-49],[-4,-66],[17,-56],[-3,-55],[7,-43],[50,-97],[62,-77],[13,-101],[26,-93],[25,-23],[27,-39],[-4,-40],[2,-24],[35,-73],[6,-94],[30,-61],[9,-4],[6,9],[-22,61],[-10,40],[-2,63],[8,8],[62,-99],[7,-74],[21,-42],[1,-56],[13,-34],[4,-49],[20,-80],[1,-112],[10,-82],[40,-125],[32,-26],[6,-61],[33,-159],[38,-87],[19,-73],[3,-45],[-14,-68],[-2,-47],[21,-143],[31,-73],[35,-18],[6,-10],[-3,-20],[12,-18],[13,23],[7,32],[-7,37],[-1,27],[6,19],[11,3],[67,-98],[11,-38],[25,-43],[23,-55],[9,-42],[19,-36],[9,-81],[46,-37],[25,-68],[2,-43],[-12,-110],[-11,-31],[-37,-47],[-27,-56],[-27,-34],[-27,-21],[-23,4],[-23,65],[-26,193],[-18,41],[-12,61],[-20,50],[-75,76],[-37,81],[-37,53],[-39,78],[-106,129],[-44,66],[-29,65],[-19,-1],[-14,-7],[-6,18],[-1,33],[-6,22],[-62,98],[-13,55],[-3,62],[14,162],[6,95],[-4,49],[-6,6],[-6,27],[-2,78],[-15,84],[-56,174],[-41,34],[-37,25],[-101,154],[-27,76],[-7,44],[-3,89],[-14,-52],[-19,-38],[-42,3],[-48,-43],[-29,40],[-15,46],[-24,55],[-26,11],[-17,2],[-31,68],[-26,21],[-36,9],[-32,34],[-9,38],[-5,53],[-12,32],[-49,62],[-39,69],[-38,45],[-11,36],[-1,25],[59,-7],[71,-27],[34,8],[21,25],[20,18],[3,-19],[-4,-37],[20,-33],[26,-27],[19,3],[-18,29],[-12,60],[5,22],[0,29],[-26,-6],[-4,15],[23,45],[25,120],[13,118],[-27,103],[-46,72],[-98,210],[-59,108],[-17,40],[-16,19],[-48,25],[-40,60],[-71,85],[-30,44],[-21,104],[-16,14],[5,71],[-7,127],[-12,32],[-38,31],[-9,86],[-2,82],[-8,57],[-65,96],[-3,46],[0,44],[-7,44],[-35,91],[-42,79],[-14,38],[-2,77],[-15,21],[6,5],[13,-2],[8,10],[1,54],[-63,84],[-18,116],[-34,61],[-8,23],[-18,109]],[[25850,63538],[-15,-18],[-7,64],[11,61],[14,36],[28,4],[18,12],[2,-16],[-15,-48],[-36,-95]],[[20416,64291],[-8,-47],[-21,19],[-8,30],[-1,48],[11,9],[17,-21],[4,-14],[6,-24]],[[19190,62638],[-17,-12],[-24,36],[6,27],[14,19],[14,-35],[7,-35]],[[19287,66246],[8,-65],[-15,10],[-18,35],[-13,44],[1,20],[3,4],[26,-26],[8,-22]],[[18568,68578],[-2,-10],[-29,35],[-64,122],[-23,61],[-4,28],[2,64],[22,-8],[25,-42],[12,-40],[0,-45],[48,-21],[7,-98],[6,-46]],[[18008,68012],[-4,-19],[-47,39],[26,67],[-4,70],[12,15],[10,-23],[13,-90],[-6,-59]],[[18832,68551],[-21,-136],[-21,2],[-44,43],[-5,27],[17,157],[13,21],[39,21],[6,-19],[4,-47],[12,-69]],[[17155,68514],[-12,-22],[-32,120],[0,29],[9,15],[15,-3],[0,-30],[13,-26],[5,-24],[2,-59]],[[25913,64077],[4,-28],[-4,4],[-7,21],[-4,26],[4,1],[3,-9],[4,-15]],[[24532,62601],[-31,-13],[-6,13],[63,58],[11,-2],[4,-8],[-33,-28],[-8,-20]],[[19498,65755],[-6,-3],[-14,31],[-6,75],[3,8],[27,-93],[-1,-11],[-3,-7]],[[18140,70106],[-9,-2],[-17,26],[1,25],[4,2],[17,-21],[6,-19],[-2,-11]],[[19139,66831],[3,-20],[-2,-6],[-11,14],[-19,-86],[-6,-8],[12,118],[12,17],[13,3],[-2,-32]],[[18972,65894],[-3,-27],[-84,108],[20,10],[23,-8],[44,-83]],[[18873,65982],[-6,-7],[-24,67],[-3,46],[-10,19],[-24,15],[21,93],[17,193],[8,-35],[-18,-195],[1,-26],[8,-24],[10,-40],[1,-44],[16,-40],[3,-22]],[[66014,40043],[-36,-17],[-39,6],[-15,31],[-3,13],[13,12],[-1,39],[7,63],[8,26],[20,23],[8,51],[17,34],[22,4],[22,-63],[16,-66],[-3,-65],[-16,-25],[-5,-38],[-15,-28]],[[45451,63194],[-17,-56],[-8,22],[-3,37],[15,52],[8,28],[14,9],[-9,-92]],[[45406,60966],[0,258],[15,97],[5,85],[33,187],[38,153],[36,204],[14,197],[-5,193],[-11,172],[-18,113],[-17,164],[-26,87],[-47,76],[-11,44],[11,16],[29,12],[18,59],[-38,-23],[44,181],[14,123],[-2,81],[9,50],[-35,108],[-26,136],[-14,22],[-14,11],[-1,-32],[-8,-29],[-17,18],[-29,99],[-41,161],[-15,17],[-12,-23],[-7,-21],[-14,-134]],[[47587,67560],[53,-63],[52,-64],[52,-64],[52,-64],[53,-63],[52,-64],[52,-64],[52,-63],[53,-64],[52,-64],[52,-63],[52,-64],[53,-64],[52,-64],[52,-63],[52,-64],[44,-53],[67,-86],[63,-80],[63,-81]],[[48660,66241],[-97,0],[-130,0],[-89,0],[-91,0],[-85,-1],[7,-131],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[8,-143],[8,-144],[7,-143],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[7,-144],[8,-143],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[8,-143],[8,-144],[8,-143],[7,-143],[8,-143],[8,-139],[33,-73],[42,-92],[-12,-129],[-15,-155],[-16,-169],[-58,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-53,0],[-32,4],[-12,13],[-4,87],[-10,-5],[-11,-26],[-6,-28],[2,-36],[-2,-31],[-36,-12],[-49,-21],[-52,-16],[-52,6],[-18,7],[-19,12],[-42,12],[-22,2],[-26,-3],[-31,-7],[-10,-16],[-23,-66],[-22,-75],[-15,0],[-16,42],[-45,78],[-55,102],[-24,51],[-14,7],[-26,-37],[-22,-35],[-23,-50],[-11,-47],[-8,-57],[-4,-66],[-8,-78],[-19,-62],[-23,-47],[-16,-22],[-7,-13],[-49,37]],[[54046,72495],[-10,-19],[-26,1],[-24,29],[0,61],[27,-12],[25,-41],[8,-19]],[[53975,72596],[-16,-9],[-17,17],[-4,11],[23,9],[12,-8],[4,-15],[-2,-5]],[[48660,66241],[85,-110],[77,-104],[91,-124],[91,-123],[91,-123],[91,-124],[90,-123],[91,-123],[91,-124],[91,-123],[91,-123],[91,-124],[91,-123],[91,-123],[91,-124],[91,-123],[91,-123],[91,-124],[41,-55],[3,-23],[4,-46],[-2,-52],[0,-43],[12,-29],[23,-31],[89,-91],[7,-18],[3,-37],[11,-47],[19,-27],[22,-20],[26,-14],[81,-14],[17,-22],[35,-84],[19,-16],[54,-25],[38,-13],[17,-8],[35,-23],[38,-38],[20,-35],[0,-11],[0,-30],[0,-91],[7,-50],[8,-36],[-1,-22],[-9,-16],[-8,-19],[-4,-25],[-11,-32],[-9,-36],[4,-27],[15,-18],[23,-34],[19,-14],[9,-1],[12,1],[11,4],[68,26],[63,25],[88,34]],[[50060,60432],[-58,42],[-68,43],[-47,-27],[-8,10],[-6,18],[-23,10],[-36,-5],[-26,-12],[-41,-64],[-31,-55],[-8,-13],[-43,-33],[-80,-78],[-46,-57],[-10,-11],[-21,-13],[-31,-3],[-26,-14],[-23,-151],[-16,-15],[-95,61],[-19,-9],[-17,-18],[-53,-88],[-27,-71],[-14,-95],[2,-29],[0,-32],[-9,-18],[-13,-7],[-12,1],[-44,20],[-14,-9],[-6,-46],[1,-102],[-10,-69],[-26,-22],[-20,-27],[-16,-8],[-14,7],[-77,103],[-26,17],[-29,-12],[-28,-44],[-12,-28],[-17,-34],[-20,-45],[5,-39],[14,-44],[10,-55],[-1,-50],[-70,-70],[6,-24],[10,-28],[0,-51],[-2,-89],[-14,-33],[-18,-31],[-12,-42],[-11,-20],[-20,-25],[-27,-25],[-48,-23],[-38,-15],[-14,-14],[-20,-30],[-16,-36],[-4,-39],[3,-44],[6,-37],[7,-25],[4,-31],[-6,-85],[-14,-97],[-13,-44],[-21,-24],[-19,-27],[6,-64],[4,-92],[-6,-73],[0,-45],[-8,-48],[-5,-33]],[[48465,57848],[-9,8],[-38,-3],[-42,-26],[-14,-20],[-3,-27],[-10,-19],[-13,-20],[-13,-26],[-23,4],[-22,18],[-11,17],[-1,10],[7,25],[6,27],[1,18],[-8,43],[-6,47],[3,23],[-6,70],[-3,3],[-29,-18],[-10,-4],[-6,-8],[-2,-13],[7,-44],[-5,-8],[-16,1],[-23,15],[-25,40],[-6,-13],[-3,-32],[-1,-38],[6,-69],[-7,-25],[-16,5],[-23,0],[-19,-7],[-13,-2],[-8,-24],[-4,-28],[8,-31],[-1,-12],[-6,-12],[-8,-7],[-6,0],[-18,34],[-22,13],[-50,19],[-6,47],[-8,1],[-12,24],[-11,32],[-10,-1],[-8,-9],[-28,3],[-24,-49],[-18,-61],[-20,-29],[-21,-13],[-8,0]],[[47780,57697],[4,38],[-3,28],[-6,25],[-62,67],[-10,28],[-9,76],[-7,76],[1,44],[4,40],[-2,31],[-6,24],[-19,22],[-20,11],[-24,-30],[-12,-5],[-11,2],[-6,10],[1,16],[27,81],[13,34],[16,26],[10,14],[7,20],[1,15],[-3,12],[-17,14],[-28,38],[-14,4],[-12,18],[-13,59],[-6,11],[-13,6],[-12,15],[1,77],[0,66],[-27,108],[-10,67],[-13,69],[-12,33],[-22,27],[-26,19],[-24,4],[-18,-6],[-8,-8],[0,-13],[15,-44],[2,-24],[-2,-24],[-5,-16],[-13,-2],[-23,-13],[-28,-27],[-19,-22],[-16,-58],[-11,-8],[-18,8],[-53,42],[-44,35],[-30,21],[-18,-13],[-9,-7],[-26,-23],[-34,-86],[-8,-28],[-7,-9],[-9,-15],[-9,0],[-7,10],[-3,6],[-17,62],[-20,68],[-15,30],[-20,2],[-17,-22],[-18,-43],[-22,-41],[-14,-12],[-13,7],[-30,51],[-22,36],[-3,18],[8,28],[8,42],[8,34],[8,15]],[[70393,53704],[-6,-1],[-4,10],[1,14],[5,10],[7,1],[4,-9],[-2,-14],[-5,-11]],[[70419,54242],[-4,-6],[-5,2],[-2,7],[3,10],[3,13],[3,14],[4,7],[3,-2],[0,-8],[-2,-11],[-1,-14],[-2,-12]],[[78361,55438],[48,-22],[18,-18],[54,-178],[71,-126],[30,-46],[23,-23],[32,-67],[28,-84],[61,-237],[10,-105],[5,-159],[-14,-240],[-16,-119],[3,-57],[22,-86],[-6,-82],[4,-68],[-2,-189],[13,-55],[15,-36],[76,-112],[6,-41],[37,-143],[70,-310],[19,-139],[-2,-38],[-8,-15],[-21,-14],[-17,27],[-6,20],[2,24],[-7,24],[-16,28],[-10,26],[3,-42],[0,-55],[-21,-5],[-28,17],[-34,-15],[-40,-68],[-19,-2],[-15,58],[-8,39],[-12,28],[-127,142],[-47,37],[-50,107],[-112,119],[-71,116],[-30,71],[-73,64],[-31,74],[-16,15],[-15,27],[16,72],[-7,76],[-8,64],[-51,126],[-25,88],[-49,87],[-19,51],[-18,58],[11,21],[11,12],[-10,43],[-27,74],[-13,85],[0,160],[-39,226],[-34,313],[6,110],[-9,119],[-22,114],[-29,82],[-11,67]],[[82659,54245],[-11,1],[-24,12],[-48,61],[-49,22],[-71,2],[-41,8],[-16,-9],[-14,0],[-10,12],[-11,6],[-27,-36],[-13,11],[-14,16],[-23,5],[-28,-5],[-32,-37],[-34,34],[-10,-1],[-7,-8],[-15,-46],[-29,-35],[-14,-64],[-9,-61],[-7,-21],[-3,-119],[-4,-57],[7,-76],[-1,-32],[-13,-49],[-2,-11],[-6,-77],[2,-21],[-1,-25],[-11,-54],[-20,-15],[-20,-9],[-18,19],[-16,-30],[-20,-46],[-8,-31],[0,-29],[2,-19],[-4,-20],[-1,-21],[1,-30],[14,-13],[14,-26],[-1,-25],[-7,-17],[-18,-27],[-33,-55],[-37,-47],[-14,-11],[-5,-22],[-2,-29],[8,-64],[7,-18],[5,-23],[-5,-26],[-4,-23],[-14,-15],[-13,-10],[-5,-19],[-7,-76],[-8,-40],[-18,-59],[-6,-27],[-9,-9],[-35,28],[-31,-17],[-41,-11],[-35,2],[-27,-12],[-19,-31],[-21,-40],[-22,-29],[-16,-14],[-30,41],[-16,-3],[-27,14],[-65,47],[-16,13],[-17,2],[-5,13],[3,23],[-3,29],[-13,11],[-129,-4],[-38,-26],[-25,-20],[-18,-23],[-5,-59],[-11,-54],[-14,-58],[-43,-17],[-32,-59],[-11,-7],[-21,9],[-24,5],[-17,-17],[-17,1],[-55,28],[-51,4],[-30,-14],[-16,-5],[-89,-81],[-31,-9],[-12,12],[-17,33],[-24,32],[-55,112],[-21,26],[-14,27],[-13,32],[-18,35],[-17,24],[-23,48],[-22,53],[-5,93],[-18,17],[-7,24],[-2,28],[25,76]],[[80452,53011],[18,-80],[7,-18],[40,-54],[33,-27],[36,-11],[37,-2],[15,4],[14,10],[14,-11],[76,-88],[30,-15],[31,6],[13,-8],[44,-67],[13,-8],[22,5],[-28,30],[-18,22],[-8,41],[4,44],[18,29],[12,31],[5,94],[8,48],[14,46],[5,43],[-16,34],[-4,57],[3,47],[10,33],[15,-22],[15,-19],[15,2],[11,7],[2,25],[-3,43],[1,78],[19,63],[31,43],[29,21],[108,35],[172,89],[51,35],[19,18],[15,25],[27,80],[50,125],[35,103],[74,151],[59,139],[8,26],[9,76],[1,36],[-2,36],[8,17],[12,10],[3,0]],[[81684,54488],[8,-16],[21,-22],[15,-28],[10,-37],[8,-34],[0,-29],[10,-24],[26,-4],[8,-30],[18,-52],[17,-37],[10,-14],[13,7],[19,34],[14,42],[10,56],[-8,9],[14,42],[2,22],[-6,21],[-8,20],[-3,51],[-5,66],[-4,29],[11,22],[22,27],[22,31],[23,25]],[[81951,54665],[1,-45],[-1,-75],[7,-63],[15,-110],[18,-15],[21,-10],[12,3],[8,7],[2,9],[-13,44],[-3,102],[-11,67],[-17,67],[-7,19]],[[81983,54665],[65,19],[14,21],[26,46],[10,26],[7,58],[-32,34],[-12,44],[-1,48],[38,88],[13,21],[6,-31],[17,-8],[15,-1],[16,2],[22,44],[12,64],[39,91],[14,70],[8,72],[99,226],[12,36],[59,227],[7,7],[16,-22],[4,-72],[-2,-31],[-9,-47],[-6,-49],[7,1],[28,30],[29,79],[17,69],[14,30],[28,-17],[6,-12],[-2,-49],[3,-29],[11,-61],[24,-37],[33,-24],[31,-34],[10,-22],[6,-27],[7,-45],[0,-44],[-22,-44],[10,-71],[-2,-41],[-7,-35],[-33,-33],[88,33],[22,18],[30,47],[16,-41],[15,-69],[-12,-18],[-38,-26],[-2,-10],[13,-36],[16,3],[31,24],[29,38],[14,0],[15,-8],[29,-24],[16,-20],[13,-26],[9,-53],[33,-19],[68,-75],[12,-7],[14,-1],[35,9],[13,-10],[9,-27],[3,-34],[-1,-36],[-4,-27],[-8,-22],[-25,-34],[-61,-45],[-66,-34],[-34,2],[-47,29],[-17,-3],[-17,-14],[-21,-92],[39,-92],[66,-96],[9,-24],[-2,-29],[-11,-18],[-14,-9],[-37,-16],[-38,-11],[-30,-17],[-31,-21],[-31,7],[-43,43],[-12,3],[-13,-22],[-13,-60],[-8,-17]],[[78950,53416],[-14,-6],[-7,4],[-5,23],[11,51],[4,9],[11,-56],[0,-25]],[[77857,54893],[-7,-16],[-20,9],[4,94],[11,12],[18,-17],[8,-16],[-14,-66]],[[77735,55567],[19,-62],[-9,-27],[-5,-8],[-12,9],[-11,-24],[-11,-4],[-11,42],[-13,17],[-3,30],[18,5],[10,-10],[20,20],[8,12]],[[82539,55972],[-17,-31],[-6,37],[1,47],[23,44],[33,8],[4,-35],[-4,-40],[-7,-21],[-27,-9]],[[78143,53564],[-14,-10],[0,15],[2,21],[10,20],[5,-12],[-3,-34]],[[80941,53234],[-9,-8],[-13,21],[-3,175],[9,15],[6,-2],[7,-32],[-1,-76],[1,-68],[3,-25]],[[82745,54254],[-39,-11],[-27,1]],[[82679,54244],[5,20],[-1,27],[13,7],[15,-6],[34,-38]],[[63760,44681],[13,-60],[15,-58],[46,-140],[20,-53],[17,-57],[8,-114],[30,-178],[28,-266],[8,-273],[9,-126],[21,-118],[36,-122],[11,-136],[-21,-140],[-32,-132],[-8,-25],[-15,-34],[-6,1],[-26,34],[-20,56],[-26,132],[-10,66],[-10,11],[-31,-6],[-22,-41],[-4,-27],[5,-74],[8,-66],[4,-68],[0,-85],[9,-26],[12,-22],[12,-55],[3,-133],[-8,-67],[-22,-58],[2,-32],[8,-32],[-8,-20],[-29,-25],[-11,-22],[-16,-59],[-25,-120],[-3,-61],[16,-186],[-5,-132],[-32,-252],[-18,-119],[-26,-143],[-40,-189],[-39,-237],[-34,-243],[-25,-147],[-28,-144],[-38,-255],[-33,-258],[-48,-285],[-68,-317],[-7,-41],[-14,-163],[-15,-140],[-18,-140],[-37,-230],[-5,-71],[-8,-68],[-36,-144],[-16,-54],[-10,-57],[-6,-72],[-11,-70],[-27,-129],[-39,-110],[-27,-40],[-58,-59],[-30,-11],[-65,-2],[-64,-33],[-66,-64],[-63,-73],[-25,-35],[-27,-20],[-83,-4],[-26,16],[-84,120],[-32,20],[-62,17],[-18,10],[-17,16],[-25,62],[-50,54],[-12,16],[-7,37],[-5,39],[-13,45],[-10,84],[-16,59],[-45,104],[-5,33],[-4,110],[2,75],[-5,136],[5,65],[16,58],[-6,62],[-17,66],[-6,68],[-13,62],[-48,112],[-11,55],[-8,57],[-18,178],[-2,62],[3,130],[7,68],[11,47],[3,35],[8,30],[11,24],[7,28],[18,168],[23,37],[33,21],[27,44],[16,59],[15,121],[42,121],[15,63],[34,96],[30,135],[9,64],[7,65],[8,143],[5,71],[-1,70],[-17,72],[-41,132],[-1,24],[3,98],[-4,70],[-15,71],[-19,66],[-19,124],[-10,205],[2,74],[-5,65],[-14,63],[10,109],[123,397],[4,47],[-5,121],[2,71],[5,26],[9,15],[21,7],[99,18],[13,12],[25,33],[34,65],[15,19],[14,-7],[8,-28],[11,-15],[40,29],[16,1],[16,-5],[7,27],[4,36],[6,26],[11,14],[51,8],[33,11],[43,25],[9,-5],[34,-91],[11,-8],[13,-4],[12,17],[-28,48],[-4,26],[1,31],[15,65],[25,50],[56,76],[57,88],[17,6],[14,-14],[11,-103],[-1,-17],[9,-3],[10,13],[10,42],[0,34],[-7,34],[-4,28],[0,26],[29,61],[23,58],[10,70],[10,32],[24,36],[7,-6],[6,-29],[3,-31],[-6,-31],[-9,-31],[-4,-40],[14,-8],[13,10],[19,73],[21,70],[13,36],[16,25],[27,-5],[26,-15],[-43,73],[-10,101],[50,174],[1,37],[7,11],[3,14],[-26,59],[-5,29],[4,44],[12,40],[12,27],[16,11],[13,-15],[28,-49],[19,-7],[23,46],[18,58],[28,40],[32,25],[49,91],[32,191],[2,56],[-7,67],[-11,65],[-19,80],[5,18],[27,-11],[9,11],[28,71],[48,136],[16,0],[13,-25],[5,-37],[10,-28],[32,-65],[16,-48]],[[63428,44145],[0,-21],[-36,8],[-6,72],[18,3],[4,29],[11,4],[11,-64],[-2,-31]],[[63871,42106],[-32,-106],[9,89],[36,127],[11,10],[-24,-120]],[[56206,76217],[43,-86],[23,-34],[28,-27],[32,-19],[11,-19],[20,-91],[10,-34],[13,-11],[3,-10],[1,-13],[-15,-64],[-6,-144],[-4,-11]],[[56365,75654],[-16,0],[-21,-3],[-8,-11],[-8,-77],[-34,-22],[-30,-13],[-26,3],[-45,18],[-15,2],[-13,-10],[-40,-5],[-18,-14],[-42,-90],[-42,-32],[-14,-15],[-33,20],[-15,2],[-22,-23],[-49,-3],[-13,-4],[-38,-3]],[[55823,75374],[-2,12],[-7,18],[-17,9],[-36,-7],[-9,13],[-15,77],[-11,12],[-13,26],[-22,83],[-1,37],[2,32],[-12,74],[7,19],[11,12],[0,30],[-3,46],[14,90],[3,6]],[[55712,75963],[4,-4],[32,-7],[8,11],[6,18],[1,66],[8,30],[78,58],[23,2],[18,-27],[14,-17],[8,1],[3,17],[10,33],[16,19],[48,16]],[[51699,80714],[-3,-15],[1,-35],[8,-34],[18,-34],[14,-25],[19,-20],[33,-19],[13,-4],[1,-25],[-2,-27],[-11,-15],[-11,-21],[-8,-26],[-8,-50],[-1,-35]],[[51762,80329],[-19,14],[-10,10],[-17,3],[-17,-8],[-12,-18],[-18,-5],[-14,5],[-9,13],[-7,8],[-22,8],[-9,19]],[[51608,80378],[7,9],[6,15],[5,19],[7,19],[-21,50],[-5,16],[-17,28],[0,14],[4,14],[-1,11],[2,25],[12,24],[8,30],[14,40],[31,49],[21,-8],[10,0],[6,-17],[2,-2]],[[55805,83690],[32,66],[12,43],[8,61],[8,20],[0,-28],[-3,-46],[-20,-80],[-21,-41]],[[55898,83677],[0,4],[-9,42],[10,64],[-19,93],[-30,113],[-2,121],[-2,27]],[[55846,84141],[74,68],[94,73],[22,6],[86,44],[12,3],[78,-8],[62,-10],[51,1],[29,11],[26,-9],[20,-33],[22,4],[21,21],[116,-19],[26,0],[29,-3],[54,-19],[32,-18],[68,11],[30,0],[15,7],[47,49],[21,9],[19,8],[17,-7],[11,-42],[35,-72],[38,-13],[106,-27],[21,-15],[59,-64],[36,-31],[22,-25],[35,-49],[20,-35],[33,-27],[39,-18],[15,-3]],[[57387,83909],[-1,-26],[-7,-44],[-13,-56],[-14,-44],[-3,-17],[10,-14],[52,-7],[22,-7],[4,-12],[-11,-15],[-17,-13],[-7,-12],[-13,-42],[-86,5],[-12,-9],[-5,-19],[-4,-23],[-12,-28],[-23,-23],[-35,-9],[-29,-16],[-22,-49],[-16,-67],[0,-47],[2,-26],[-2,-15],[-11,-17],[-18,-43],[-14,-48],[-6,-26],[3,-12],[16,-1],[24,-10],[13,-19],[4,-22],[0,-24],[-4,-13],[-19,-10],[-30,0],[-17,12],[-4,9],[8,22],[-6,29],[-12,16],[-25,-24],[-24,0],[-29,-21],[-19,-34],[-18,-13],[-49,7],[-13,-15],[-10,-69],[-6,-14],[-40,3],[-40,-28],[-45,-22],[-22,15],[-13,18],[-24,-3],[-27,-8],[-17,4],[-20,-1],[-39,-14],[-48,4],[-21,12]],[[52646,79072],[3,-9],[1,-12],[3,-12],[1,-16],[4,-16],[8,-15],[3,-14],[-4,-18],[-4,-11]],[[53195,70957],[43,-37],[43,-14],[130,-136],[40,-17],[91,-16],[107,56],[40,10],[71,-52],[31,-15],[52,-4],[89,-47],[22,-17],[52,-75],[25,-23],[184,-69],[25,-46],[26,-87],[1,-109],[14,-79],[23,-102],[28,-72],[30,-61],[35,-37],[81,-56],[91,-21],[92,-8],[158,-76],[133,-89],[33,-44],[67,-43],[134,-208],[74,-72],[52,-14],[46,13],[83,72],[34,43],[84,180],[27,94],[11,66],[-3,67],[-10,61],[-23,63],[-17,84],[-9,151],[13,104],[16,63],[25,64],[69,122],[70,86],[122,113],[71,1],[30,12],[58,80],[24,3],[33,-20],[97,6],[42,-22],[51,-50],[64,-31],[45,-30],[48,-40],[11,-98],[-5,-29],[-1,-38],[50,-68],[142,-32],[28,-18],[39,-52],[25,-16],[97,-7],[57,11],[54,-18],[20,-18],[21,-40],[25,-99],[10,-33]],[[56986,70077],[-11,-16],[-15,-35],[-10,-30],[-26,-50],[-21,-53],[2,-79],[5,-79],[14,-78],[13,-86],[-4,-56],[-11,-70],[-12,-58],[-42,-119],[-7,-28],[3,-41],[25,-141],[2,-44],[16,-138],[14,-112],[15,-87],[2,-25],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129]],[[56661,63073],[-133,137],[-134,136],[-133,136],[-133,136],[-133,137],[-133,136],[-133,136],[-133,137],[-133,136],[-133,136],[-133,136],[-133,137],[-133,136],[-133,136],[-134,137],[-133,136],[-92,94],[-99,-92],[-77,-72],[-103,-95]],[[53324,65390],[-26,102],[-30,114],[-40,142],[-24,87],[-8,14],[-111,69],[-117,67],[-69,-41],[-12,3],[-19,26],[-20,35],[-10,49],[-28,66],[-25,150],[-2,119],[-6,43],[-61,168],[-55,153],[-37,102],[-7,46],[4,57],[15,51],[54,60],[48,66],[7,45],[3,125],[-16,39],[-12,74],[-11,101],[-2,64],[22,128],[25,134],[-16,149],[-12,297],[8,235],[-7,85],[-4,36],[-16,110],[-21,114],[-9,40],[-26,92],[-43,114],[-22,70],[30,37],[28,29]],[[47143,56730],[14,3],[24,17],[14,-8],[6,-23],[3,-20],[72,51],[6,11],[4,-2],[9,-47],[5,3],[5,14],[5,1],[5,-6],[6,-22],[9,-19],[16,-14],[10,-19],[-2,-49],[4,-49],[7,-11],[4,-28],[1,-32],[4,-17],[3,-32],[-1,-34],[2,-24],[12,-41],[7,-53],[0,-37],[-4,-39],[-8,-35],[-13,-39],[-1,-16],[8,-10],[12,-2],[10,8],[25,-18],[14,-25],[12,-32],[10,-16],[5,-20],[18,6],[21,19],[4,9],[7,-5],[13,-2],[10,35],[7,40],[17,43],[8,16],[2,28],[1,36],[6,30],[13,17],[15,0],[8,-6],[4,-30],[11,-23],[10,-15]],[[47642,56197],[5,-7],[9,-18],[8,-60],[31,-194],[-2,-54],[-6,-35],[0,-35],[-2,-33],[-19,-56],[-56,-114],[4,-10],[13,-13],[14,-6],[11,3],[14,-28],[16,-36],[16,-18],[23,-17],[20,-2],[17,7],[24,-7],[26,-30],[9,-49],[7,-42],[9,-22],[1,-36],[18,-33],[26,-6],[34,-38],[9,2],[4,5],[4,-8],[8,-109],[7,-58],[-3,-23],[-5,-19],[0,-88],[-16,-51],[-2,-56],[-5,-18],[-16,-16],[0,-42],[-4,-52],[-2,-55],[4,-144],[1,-107],[8,-20]],[[47904,54349],[-32,9],[-94,82],[-73,47],[-242,267],[-68,108],[-77,160],[-173,322],[-39,51],[-50,25],[-31,28],[-21,30],[-18,89],[-43,53],[-80,75],[-60,126]],[[59963,71101],[-8,-10],[-15,-26],[-14,-22],[-30,-33],[-7,-20],[-6,18],[-13,-12],[-11,-75],[-23,-26],[-29,3],[-23,7],[-32,-5]],[[59752,70900],[13,44],[13,57],[13,77],[24,64],[49,217],[28,87],[10,125],[43,109],[33,32],[15,31],[0,47]],[[55846,84141],[-9,109],[5,217],[11,108],[51,63],[26,49],[15,65],[5,61],[10,49],[75,144],[60,15],[80,40],[90,33],[17,-42],[9,-32],[108,-117],[27,-40],[42,-135],[100,-68],[79,22],[34,33],[63,61],[28,45],[6,43],[-11,184],[-17,80],[6,50]],[[56756,85178],[11,-2],[27,24],[88,44],[17,2],[20,9],[56,34],[18,-18],[14,-20],[9,-1],[4,8],[-2,13],[4,10],[16,-6],[65,-55],[24,-13],[17,-4],[20,-26],[55,-18],[7,-13],[4,-17],[51,-71],[23,-35],[46,-33],[20,-7],[79,33],[23,11],[18,1],[19,-18],[42,-23],[39,-8],[7,2]],[[57818,84183],[-8,2],[-24,-8],[-38,-32],[-56,-78],[-14,-17],[-15,-59],[-3,-6],[-33,2],[-9,2],[-33,-1],[-71,15],[-28,-10],[-36,-60],[-14,-9],[-42,-8],[-7,-7]],[[79866,60313],[-15,-23],[-14,-59],[-10,-4],[-24,21],[-9,-11],[-15,-43],[-27,-47],[-13,0],[-9,5],[-11,-20],[-15,-36],[-7,1],[-26,-9],[-10,12],[-12,30],[-21,31],[-18,22],[-10,15],[-9,26],[-8,16],[-15,-36],[-26,-35],[-24,7],[-12,5],[-9,-50],[-7,-9],[-44,-9],[-8,-8],[7,-46],[26,-79],[7,-45],[-16,-73],[-45,2],[-20,30],[-19,41],[-7,21],[-57,41],[-39,-28],[-12,1],[-18,30],[-11,23],[-11,34],[-6,34],[0,16]],[[77811,63546],[2,32],[15,125],[18,81],[22,38],[22,16],[24,-6],[20,7],[16,19],[-1,12],[-19,3],[-8,21],[4,41],[8,26],[13,13],[13,40],[12,70],[15,35],[18,1],[30,30],[42,59],[16,57]],[[78093,64266],[16,-26],[-6,-66],[9,-14],[4,-23],[-2,-37],[3,-32],[7,-15],[9,-8],[45,27],[27,2],[12,-17],[10,-11],[13,-9],[11,-11],[6,3],[15,28],[5,5],[1,13],[-11,25],[-11,21],[0,46],[5,80],[1,41],[-1,100],[-2,27],[-10,33],[-27,61],[-7,38],[-5,38],[1,24],[-7,27],[-4,26],[13,13],[14,29],[7,45],[7,33],[10,14],[9,5],[6,-3],[23,-59],[28,30],[22,-1],[19,-15],[10,-19]],[[69707,76179],[-15,26],[0,27],[16,46],[14,23],[6,44],[20,29],[20,47],[25,38],[46,28],[25,-9],[24,7],[38,23],[7,1],[15,1],[96,-36],[32,-1],[74,-46],[34,-10],[24,-13],[11,-20],[18,-25],[93,-19],[26,-13],[9,-22],[26,-27],[23,-6],[-20,106],[8,63],[30,173],[15,26],[30,23],[46,26],[18,36],[38,-4],[16,3],[12,6],[6,21],[43,-35],[72,-71],[54,-45],[64,-43],[88,-39],[75,-13],[13,10],[30,59],[14,2],[26,-5],[79,-3],[81,-3],[38,6],[83,25],[12,1],[19,-2],[50,-33],[37,-5],[25,0],[14,-2],[31,1],[50,-4],[61,-22],[75,4],[23,4],[42,-4],[32,-20],[42,-22],[26,-9],[17,-5],[31,-2],[19,7],[11,-10],[10,-53],[26,-35],[20,-34],[17,-36],[17,-15],[30,-1],[57,-10],[33,-15],[41,-63],[39,-65]],[[72280,76146],[5,-35],[5,-40],[-3,-10],[-5,-6],[-86,-10],[-19,-11],[-20,-56],[-73,-45],[-42,-23],[-17,1],[-40,-37],[-113,-91],[-55,-58],[-28,-24],[-22,-27],[-4,-27],[-1,-25],[-62,-118],[-46,-15],[-39,3],[-27,-18],[-38,-18],[-83,12],[-28,-2],[-55,17],[-21,-9],[-24,-24],[-32,-95],[-13,-22],[-6,-21],[-5,-46],[-12,-49],[-16,-38],[-11,-36],[-23,-34],[-22,-22],[-17,45],[-14,-13],[-14,-18],[-26,6],[-16,-9],[-37,-39],[-54,1],[-6,14],[-11,108],[-9,51],[-8,11],[-10,2],[-77,-85],[-36,-15],[-30,-3],[-39,25],[-8,-6],[-7,-14],[-3,-17],[12,-48],[-3,-10],[-18,1],[-24,-11],[-19,-22],[-56,-78],[-47,-26],[-43,-10],[-18,-9],[-8,-9],[-15,-37],[-15,-58],[-8,-29],[-6,-16],[1,-22],[12,-27],[9,-63],[-2,-16],[-9,-26],[-14,-25],[-30,-16],[-23,-7]],[[63409,68907],[-16,-13],[-10,6],[-11,31],[-17,77],[10,29],[-1,12],[2,9],[5,6],[6,36],[7,12],[12,-25],[33,-88],[0,-37],[-2,-14],[-18,-41]],[[62925,68603],[45,94],[21,51],[38,109],[19,78],[19,87],[16,67],[4,12],[9,23],[21,24],[30,22],[51,9],[36,1],[8,-1],[22,-11],[63,-54]],[[63327,69114],[-2,-21],[9,-64],[20,-69],[17,-56],[2,-27],[-15,4],[-12,11],[-22,11],[-42,-75],[-26,-40],[0,-14],[34,-16],[25,1],[17,11],[15,-18],[10,-46],[4,-37],[23,-133],[19,-45],[24,-80],[9,-41],[5,-35],[15,-51]],[[55712,75963],[5,26],[-2,55],[-15,91],[-10,30],[-22,30],[-16,19],[-30,17],[-15,50],[-23,57],[-11,13]],[[98046,53645],[-17,-19],[-6,3],[21,27],[0,-3],[2,-8]],[[98011,53600],[-20,-22],[-6,12],[8,0],[14,22],[16,1],[-2,-11],[-10,-2]],[[98060,52906],[1,-14],[-16,37],[-9,23],[0,10],[5,-6],[5,-12],[3,-9],[11,-29]],[[98063,52832],[-10,-3],[7,9],[2,11],[-1,36],[4,-3],[1,-15],[1,-21],[-4,-14]],[[98064,52426],[15,-23],[-2,-15],[-5,-18],[-20,-46],[-6,4],[19,42],[8,27],[-11,21],[-5,-5],[-1,0],[-4,20],[4,0],[8,-7]],[[98474,51381],[-9,-16],[-4,14],[5,18],[-8,73],[-12,10],[-8,22],[4,0],[12,-20],[10,-9],[6,-48],[4,-44]],[[98547,51145],[2,-30],[-7,4],[-2,11],[-2,30],[-7,30],[8,-8],[6,-23],[2,-14]],[[98065,52616],[-7,-2],[5,11],[31,13],[3,4],[5,-7],[0,-7],[-2,-3],[-16,-1],[-12,-6],[-7,-2]],[[97097,51339],[-3,-1],[-5,6],[0,7],[4,4],[5,-6],[-1,-10]],[[2163,49244],[1,-4],[4,1],[4,1],[-2,-4],[-8,-2],[-3,10],[4,8],[4,1],[1,-2],[-1,-2],[-1,0],[-3,-2],[0,-5]],[[2476,50037],[-1,-5],[-2,4],[1,6],[2,6],[1,-3],[-1,-8]],[[2435,49272],[-3,-3],[-3,1],[-2,4],[0,6],[3,4],[3,-1],[3,-6],[-1,-5]],[[1524,49150],[3,-8],[0,-4],[-1,1],[-5,2],[-1,5],[3,-3],[2,1],[-4,6],[-2,5],[-3,2],[0,3],[3,-1],[5,-9]],[[6957,49488],[-1,-4],[-4,5],[-6,9],[-6,9],[0,4],[8,5],[10,5],[2,-6],[-2,-9],[-1,-18]],[[7838,45252],[-2,-9],[-5,3],[-2,12],[-1,12],[2,11],[2,-1],[4,-12],[2,-16]],[[6704,48601],[-6,-2],[-8,0],[-3,7],[-1,6],[3,1],[2,-2],[11,-1],[3,-4],[-1,-5]],[[6294,52912],[46,-67],[-20,-5],[-48,32],[-44,66],[13,15],[7,-24],[20,-22],[12,46],[7,11],[-35,48],[14,-3],[33,-32],[-5,-65]],[[5739,54103],[22,-49],[-4,-24],[-16,2],[-7,8],[12,5],[2,9],[-6,14],[-7,10],[-5,0],[-2,-20],[-8,16],[5,15],[6,10],[8,4]],[[2306,50249],[9,-11],[7,-15],[4,-20],[-1,-5],[-5,0],[-6,6],[-5,9],[-2,2],[-1,2],[6,-1],[6,-9],[5,-4],[-1,10],[-5,18],[-4,6],[-4,5],[-5,3],[-4,-3],[-1,-2],[-1,5],[1,3],[1,4],[6,-3]],[[61387,50599],[-11,-5],[6,33],[30,43],[13,-10],[2,-10],[-1,-8],[-5,-9],[-34,-34]],[[59796,55006],[-1,-19],[0,-27],[7,-16],[10,-11],[15,12],[12,16],[13,3],[77,-43],[12,-38],[0,-40],[3,-30],[-6,-29],[-6,-90],[2,-82],[23,-60],[20,-48],[16,-67],[13,-21],[16,-10],[53,-3],[78,-4],[75,-4],[7,-2],[16,-9],[69,-91],[63,-82],[54,-72],[52,-70],[51,-68],[39,-57],[39,-17],[62,-8],[44,-3],[40,-23],[60,-22],[44,-12],[27,-12],[75,-14],[12,8],[33,63],[37,101],[15,56],[47,56],[84,77],[59,55],[66,55],[30,-48],[41,-76],[18,-38],[15,-17],[23,-11],[27,0],[15,2],[30,10],[71,9],[41,-1]],[[61536,50866],[-40,-99],[-33,-45],[-45,-21],[-13,4],[-18,14],[-7,-24],[-5,-37],[-10,8],[-7,11],[4,-66],[5,-32],[-7,-44],[-22,-38],[-2,-32],[-47,-85],[-66,-10],[-35,-42],[-16,-34],[-12,-75],[5,-116],[-19,-88],[-3,-45],[-35,-57],[-15,-53],[-11,-54],[-10,-24],[-12,-120],[-16,-73],[-4,-25],[-4,-22],[-12,-43],[-8,-29],[-6,-20],[-41,-187],[-32,-85],[-24,10],[-17,-33],[-2,-15]],[[63939,77681],[-9,-17],[-15,3],[-28,61],[8,62],[10,13],[14,8],[2,-13],[-20,-28],[-2,-35],[17,-39],[23,-15]],[[63975,77748],[-10,-8],[-6,37],[11,31],[15,4],[-5,-49],[-5,-15]],[[64633,78001],[-5,-6],[-18,16],[-12,26],[15,31],[14,-5],[9,-33],[-3,-29]],[[64581,75910],[-7,60],[-3,94],[1,30],[15,79],[16,54],[13,56],[5,73],[-11,118],[-13,26],[-16,9],[-17,2],[-30,-5],[-14,-9],[-25,40],[-30,6],[-16,-11],[-16,-6],[-17,11],[-15,24],[-10,25],[-7,29],[-23,57],[-24,31],[-28,7],[-46,-1],[-15,3],[-1,33],[6,72],[0,38],[-3,35],[-8,29],[-10,25],[-27,42],[-21,58],[-35,120],[-30,135],[-13,21],[-27,21],[-60,17],[-39,18],[-15,17],[-7,29],[1,32],[3,38],[9,31],[31,25],[67,5],[58,-3],[53,-56],[17,-13],[18,-4],[37,18],[19,5],[46,-6],[-14,27],[-17,14],[-18,-1],[-16,11],[-25,52],[-45,59],[-10,24],[-3,39],[8,34],[32,34],[26,47],[13,63],[11,28],[23,45],[34,-8],[54,32],[87,-6],[105,9],[29,-3],[67,-32],[39,-14],[46,-7],[34,14],[-32,44],[-69,51],[-17,44],[31,119],[43,109],[26,129],[-7,128],[-13,35],[4,42],[15,35],[11,35],[-9,42],[-19,65],[-10,22],[-33,35],[-66,2],[-54,19],[-17,-16],[-10,-24],[-13,-15],[-42,-32],[-14,-6],[-14,6],[-21,36],[-18,-4],[-56,22],[-26,49],[-10,7],[-90,38],[-32,8],[-71,-40],[-52,-52],[-15,-7],[-27,-32],[-15,-6],[-16,6],[-14,-2],[-32,-49],[-57,-57],[-28,-35],[-31,-23],[-35,-14],[-36,-2],[-13,-13],[-41,-4],[-25,-11],[-1,-19],[5,-43],[-21,15],[-22,-30],[7,-28]],[[74256,80118],[-26,11],[-51,3],[-30,-7],[-15,-4],[-21,-24],[-16,-24],[-6,-40],[8,-45],[-11,-94],[-15,-36],[-32,-61],[-19,-14],[-30,-11],[-30,-18],[-58,-18],[-63,-9],[-22,-13],[-16,-42],[-12,-35],[-7,-27],[-17,-88],[-11,-78],[10,-98],[8,-108],[-1,-37],[16,-56],[7,-34],[-3,-48],[-22,-38],[-13,-51],[-13,-21],[-36,-10],[-34,-6],[-34,-43],[-27,-30],[-43,-38],[-20,-7],[-11,19],[-8,43],[-14,19],[-21,2],[-17,0],[-53,12],[-35,-1],[-25,-9],[-30,-5],[-51,16],[-33,13],[-22,13],[-53,38],[-70,45],[-28,13],[-17,-14],[-3,-25],[-4,-62],[-8,-39],[-49,-197],[-30,-137],[-38,-131],[-12,-88],[-23,-112],[-22,-81],[-9,-44],[-1,-18],[4,-25],[35,-28],[36,-17],[8,-10],[4,-29],[-1,-47],[-7,-44],[-11,-35],[-10,-17],[-12,-2],[-23,23],[-20,25],[-16,7],[-40,-13],[-37,-20],[-12,0],[-22,12],[-21,25],[-9,49],[-19,22],[-24,-22],[-75,-37],[-82,-44],[-51,-23],[-21,3],[-40,-5],[-35,-12],[-26,-17],[-52,-24],[-47,-16],[-30,-36],[-22,-35],[1,-13],[16,-20],[18,-17],[36,4],[35,3],[30,-22],[26,-14],[7,-18],[-7,-18],[-15,-4],[-6,-12],[3,-17],[-10,-43],[-5,-65],[5,-65],[3,-59],[-2,-30],[-1,-43],[11,-29],[10,-55],[18,-34],[27,-119],[16,-70],[15,-79],[-11,-42],[1,-25],[17,-21],[8,-40],[8,-25],[-2,-24],[-8,-10],[-37,15],[-31,-24],[-32,-25],[-4,-13],[-1,-14],[3,-13],[19,-22],[26,-14],[-2,-22],[-32,-10],[-48,-34],[-13,-36],[-11,-39],[-1,-24],[5,-61],[8,-69],[13,-72],[1,-22],[-7,-16],[-6,-10]],[[60770,71066],[20,-127],[19,-125],[20,-129],[20,-125],[-21,-12],[16,-96],[28,15],[29,11],[13,-62],[-41,-68]],[[59708,68751],[9,76],[-3,40]],[[59714,68867],[14,134],[8,63],[5,47],[20,94],[-3,31],[5,109],[-2,21],[9,60],[17,86],[17,74],[7,33],[17,71],[16,86],[-9,47],[-2,10],[6,54],[8,89]],[[59847,69976],[4,48],[9,63],[17,54],[-8,126],[1,68],[11,78],[-6,91]],[[59875,70504],[5,129],[1,12],[6,16],[4,8],[35,27],[14,3]],[[87046,72697],[-12,-21],[-24,7],[-14,31],[5,35],[25,27],[23,-54],[-3,-25]],[[88428,73630],[-26,-2],[-7,6],[16,14],[1,24],[10,42],[0,13],[-21,2],[1,48],[16,48],[43,75],[11,14],[2,-33],[-13,-77],[-3,-28],[34,-6],[-22,-93],[-42,-47]],[[87480,71594],[-30,-49],[-26,3],[-13,22],[-4,27],[25,43],[21,60],[19,27],[16,15],[12,-1],[-27,-84],[7,-63]],[[86283,69275],[-32,-12],[-17,13],[-16,71],[30,45],[41,-44],[8,-13],[-14,-60]],[[86377,69352],[-24,-6],[-1,34],[19,75],[2,55],[18,70],[8,15],[6,6],[6,-22],[-7,-85],[-18,-65],[-9,-77]],[[86133,70408],[-22,-20],[-3,19],[-9,9],[16,28],[0,12],[-11,19],[12,71],[-3,30],[44,12],[8,-29],[1,-87],[-33,-64]],[[85910,71499],[-18,-23],[-8,35],[8,102],[34,-21],[0,-31],[-16,-62]],[[85940,71632],[-6,-28],[-19,19],[-8,18],[17,87],[-2,34],[1,16],[35,45],[6,-8],[2,-13],[-3,-20],[2,-43],[-27,-71],[2,-36]],[[85740,70727],[10,-15],[16,9],[13,2],[9,-8],[11,-40],[4,-24],[-20,-3],[-9,-5],[-11,-30],[-16,11],[-10,14],[-2,19],[5,70]],[[86216,70520],[-24,-3],[-11,7],[-4,18],[35,37],[26,-6],[-11,-34],[-11,-19]],[[89186,77956],[-11,-37],[-14,55],[-3,58],[8,0],[16,-9],[3,-28],[1,-39]],[[89248,77833],[-19,-4],[-23,24],[-3,30],[17,24],[16,-9],[16,-31],[5,-16],[-9,-18]],[[88744,76083],[-6,-3],[-7,5],[-6,43],[5,23],[18,16],[17,5],[-14,-80],[-7,-9]],[[87319,71706],[-5,-11],[-5,3],[-18,-26],[-4,25],[-13,17],[-2,13],[40,9],[13,-7],[-6,-23]],[[88737,71846],[-3,-27],[-15,6],[-7,18],[1,32],[16,0],[8,-29]],[[85854,70760],[-7,-6],[-9,52],[-6,18],[10,10],[21,94],[4,-37],[8,-37],[8,-6],[-8,-27],[-12,-10],[-9,-51]],[[85969,70980],[-19,-27],[-15,0],[13,32],[2,15],[11,43],[21,15],[9,2],[-17,-44],[-5,-36]],[[86054,71283],[-20,-24],[-14,19],[7,51],[5,17],[16,-17],[6,-46]],[[86826,71494],[-8,-23],[-24,7],[10,20],[7,24],[6,5],[4,-26],[5,-7]],[[86740,71396],[13,-21],[32,9],[4,-6],[-9,-19],[-14,-19],[-26,14],[-16,1],[-2,31],[2,12],[16,-2]],[[86032,70078],[-9,-10],[6,45],[22,40],[2,-26],[-21,-49]],[[89496,67175],[-5,-1],[-18,61],[5,3],[10,-9],[12,-36],[-4,-18]],[[89950,77256],[35,-3],[16,2],[26,-8],[106,-88],[32,-11],[33,-1],[23,7],[20,24],[64,106],[67,97],[8,-4],[0,-27],[-5,-29],[-30,-89],[-33,-119],[-7,-60],[11,-59],[20,-49],[17,-66],[19,-93],[26,-11],[14,-2],[27,28],[25,35],[22,4],[22,-6],[-30,-24],[-28,-30],[-24,-57],[-9,-10],[-28,3],[-16,-2],[-32,-24],[-29,-27],[-27,-33],[-30,-17],[-32,-4],[-49,-27],[-32,-2],[-59,23],[-29,-6],[-63,-53],[-58,-77],[-50,-86],[-42,-104],[-17,-54],[-10,-60],[-2,-40],[-4,-38],[-9,-27],[-12,-22],[-35,13],[-57,55],[-110,81],[-117,123],[-66,62],[-123,-19],[-117,-118],[-11,10],[-44,81],[-22,32],[-26,9],[-19,-1],[-19,-6],[-26,-41],[-10,-30],[-7,-34],[-2,-24],[3,-24],[25,-53],[31,-40],[13,-8],[30,3],[14,-4],[49,-80],[55,-74],[12,-25],[-20,-26],[-22,-13],[-26,3],[-25,10],[-44,32],[-18,-27],[-29,-56],[-16,-60],[-13,-28],[-32,-36],[-34,-19],[-17,6],[-14,23],[-7,27],[-4,32],[7,69],[17,62],[7,63],[-14,89],[-9,18],[-36,53],[-17,50],[-4,63],[2,35],[9,77],[9,39],[16,13],[18,8],[28,27],[30,36],[29,41],[29,51],[15,55],[-25,68],[-5,40],[4,38],[26,20],[27,-15],[55,-56],[11,-5],[37,-3],[51,-12],[30,3],[14,8],[22,46],[10,59],[-4,75],[0,75],[14,61],[43,99],[12,57],[4,141],[16,62],[12,64],[6,135],[-17,129],[-18,64],[-20,60],[3,58],[16,53],[0,16],[4,14],[31,11],[14,11],[14,26],[16,15],[12,-15],[10,-26],[43,-65],[68,-116],[80,-176],[50,-86],[53,-78],[59,-79],[63,-69],[39,-32],[29,-52],[18,-8]],[[86437,71199],[37,-17],[16,-1],[14,7],[23,23],[23,17],[17,-9],[14,-20],[8,-28],[-4,-30],[-26,-63],[-22,-68],[50,-13],[50,1],[-12,-42],[-1,-36],[15,-18],[13,-23],[-4,-21],[-7,-21],[27,-32],[-2,-21],[-7,-22],[-68,-145],[-20,-73],[-13,-81],[-13,-59],[-9,-61],[-8,-66],[-12,-68],[4,-61],[-4,-62],[-34,-153],[-25,3],[-30,18],[-19,-3],[-10,-34],[17,-70],[-54,-83],[-60,-56],[-1,26],[6,20],[9,16],[6,19],[9,66],[-5,65],[-18,83],[-1,29],[12,12],[9,4],[4,11],[1,27],[-6,21],[-17,6],[-17,1],[-11,-31],[-16,-59],[-8,-59],[3,-33],[7,-29],[22,-49],[-6,-29],[-9,-22],[-77,50],[-17,4],[-14,11],[-15,67],[32,16],[9,8],[3,22],[5,65],[-15,55],[-12,19],[-11,23],[7,46],[-4,58],[-1,81],[6,14],[29,16],[21,44],[19,49],[27,87],[22,94],[-21,5],[-18,17],[19,45],[-6,56],[-29,69],[-17,81],[-26,36],[-14,13],[-17,-19],[-14,-23],[13,-53],[-1,-46],[2,-47],[13,-2],[16,11],[13,-8],[7,-24],[2,-32],[-5,-31],[-12,-15],[-15,1],[-14,17],[-12,24],[-27,13],[-28,-28],[-28,-58],[-23,-29],[11,42],[5,47],[-11,32],[-27,54],[-6,31],[-2,38],[5,37],[28,-43],[14,-53],[20,-23],[25,-1],[-19,79],[-7,20],[-28,35],[-37,59],[-23,29],[8,62],[14,12],[12,-3],[39,-22],[4,31],[-6,16],[-3,20],[26,26],[42,22],[9,11],[8,22],[10,11],[30,0],[25,21],[20,58],[5,31],[8,27],[51,46],[13,7],[34,-6],[32,-26],[16,-55],[13,-60],[33,-40]],[[87321,71576],[38,-24],[39,6],[0,-105],[5,-35],[11,-32],[-5,-46],[18,-16],[-53,-52],[-48,-70],[-20,-47],[-17,-50],[-11,-53],[-6,-58],[-16,23],[-46,93],[-29,26],[-47,13],[-15,-3],[-96,-87],[-13,-63],[-26,-96],[-12,-32],[-14,-9],[-10,-16],[-11,-82],[-30,-51],[-18,-1],[-31,14],[-14,-8],[19,81],[-30,9],[-30,-1],[0,52],[-18,30],[13,39],[0,31],[8,18],[3,25],[-1,22],[-18,6],[-12,16],[2,57],[-10,2],[-26,-10],[-54,-44],[-15,0],[23,31],[48,43],[21,25],[48,69],[29,33],[16,58],[5,36],[10,31],[9,49],[15,17],[27,43],[15,-4],[17,-53],[23,-40],[16,3],[30,21],[14,5],[34,-3],[30,26],[13,30],[4,37],[-11,63],[15,-6],[14,3],[33,40],[34,23],[35,6],[40,-22],[39,-36]],[[89229,75675],[11,-11],[52,29],[-10,-88],[-5,-89],[4,-148],[4,-67],[9,-65],[22,-46],[29,-33],[42,-105],[23,-129],[16,-63],[11,-66],[4,-30],[0,-30],[-3,-41],[4,-33],[-5,-105],[-19,-121],[-2,-62],[-16,-12],[-10,-29],[-9,-13],[-9,-10],[-14,-3],[-9,-11],[-4,-33],[-6,-31],[-12,-28],[-9,-31],[-8,-75],[-3,-77],[-11,-54],[-28,-14],[-32,1],[-40,-25],[-9,-15],[-32,-94],[-9,-56],[0,-59],[9,-73],[12,-72],[9,-133],[-10,-203],[-9,-65],[-20,-44],[-16,-20],[-13,-25],[-17,-66],[-29,-132],[-2,-34],[0,-34],[-8,-45],[-5,-44],[5,-51],[9,-48],[38,-123],[15,-36],[17,-34],[-65,-36],[-12,-17],[-39,-70],[-12,-67],[1,-73],[-7,-27],[-10,-23],[-12,-15],[-43,-34],[-28,-33],[-27,-52],[-11,-28],[-21,9],[-13,24],[12,31],[-3,35],[6,93],[-7,37],[22,28],[10,45],[24,35],[16,32],[3,26],[-15,28],[-15,20],[-22,0],[-21,-6],[-13,-27],[-5,-36],[1,-16],[-2,-15],[-32,-49],[4,-52],[10,-26],[12,-13],[-4,-17],[-15,-42],[-11,-4],[-20,58],[-25,32],[-31,0],[-31,-12],[-25,-39],[-8,-32],[-5,-33],[2,-81],[-10,-68],[-19,-59],[-10,-22],[-23,-40],[-17,-5],[-12,18],[-9,28],[12,101],[-1,57],[28,29],[-23,41],[-28,16],[-39,-21],[-11,-25],[-8,-33],[-21,-41],[-24,-39],[-26,-66],[-18,-79],[-58,26],[-32,6],[-32,-2],[-57,9],[-63,-16],[-71,-30],[4,22],[59,47],[2,14],[-6,26],[-14,1],[-35,-9],[-18,4],[-8,28],[-12,12],[-7,-12],[2,-54],[-9,-7],[-11,14],[4,42],[-8,61],[-1,39],[12,32],[-12,14],[-14,-5],[-17,-16],[-14,-22],[-32,-112],[-12,-64],[23,-52],[63,-72],[10,-17],[1,-31],[-8,-32],[-17,-15],[-69,-24],[-59,-46],[-18,-47],[-54,-183],[-43,-125],[-62,-43],[-67,39],[-16,43],[-14,54],[-25,48],[-22,53],[-13,63],[2,101],[-10,61],[9,16],[37,37],[12,21],[21,48],[8,27],[1,41],[-17,21],[-44,-1],[-43,-13],[-31,18],[-41,49],[-12,11],[-43,3],[-31,-9],[-31,-18],[-32,-6],[-11,-9],[-37,-60],[-29,-38],[-26,-19],[-55,-5],[-28,-12],[-29,-20],[-8,1],[-30,-27],[-35,-24],[-19,-24],[-34,16],[-68,-43],[-33,-5],[-34,23],[-31,38],[-30,-16],[-21,-56],[-10,-113],[-12,-50],[-4,-61],[-15,10],[-91,109],[-6,4],[-74,-19],[-19,-9],[-23,-22],[-25,-10],[-23,16],[-22,26],[-21,-8],[-22,-18],[-8,165],[4,21],[14,29],[14,25],[36,9],[36,-9],[25,12],[22,32],[23,47],[26,37],[35,30],[34,34],[30,48],[28,52],[26,39],[28,32],[43,77],[57,87],[22,64],[13,18],[49,35],[65,28],[31,-2],[30,-56],[17,8],[16,14],[34,8],[34,-9],[34,0],[33,7],[65,19],[34,22],[33,29],[118,20],[82,48],[12,-3],[13,-11],[1,-36],[-10,-39],[10,-24],[16,-14],[76,-5],[22,-8],[32,26],[30,33],[31,44],[22,49],[-20,61],[-4,67],[17,73],[24,62],[30,37],[27,42],[54,121],[40,98],[14,121],[-8,142],[34,106],[33,18],[66,49],[34,14],[5,-21],[-1,-28],[-51,-89],[-30,-36],[-17,-12],[-16,-16],[-7,-31],[26,-53],[7,-38],[-2,-37],[1,-34],[30,-36],[34,-12],[14,0],[13,10],[39,89],[8,15],[111,65],[55,50],[30,13],[28,26],[64,100],[23,46],[21,51],[18,59],[13,64],[18,40],[101,95],[32,52],[11,25],[12,73],[9,75],[12,59],[16,56],[22,57],[25,52],[15,54],[21,128],[10,72],[7,25],[11,22],[9,27],[7,31],[3,30],[5,93],[-3,72],[-16,61],[-14,17],[-15,1],[-23,-5],[-19,24],[4,22],[20,4],[13,12],[9,21],[18,66],[11,71],[1,31],[-14,58],[-11,69],[0,37],[12,43],[17,34],[16,9],[17,2],[15,13],[14,20],[8,21],[13,59],[4,33],[-7,90],[8,24],[11,15],[16,-11],[15,-2],[19,3],[17,-9],[4,-23],[11,-151],[6,-21],[13,-16],[14,3],[13,23],[8,32],[17,6],[51,-34],[18,24],[11,37],[11,66],[-5,60],[-13,21],[-12,-4],[-11,-16],[-13,-9],[-75,-31],[1,66],[16,99],[9,31],[12,15],[32,-17],[15,-11],[34,-48]],[[84525,65965],[-16,-91],[-14,-13],[-14,7],[-14,51],[10,19],[14,-10],[11,4],[25,74],[7,-12],[-9,-29]],[[84413,65829],[-18,-8],[-21,10],[-19,2],[0,18],[20,17],[0,25],[5,13],[46,-30],[-2,-22],[-11,-25]],[[84845,66096],[-24,-15],[-25,8],[4,81],[9,-11],[5,-28],[19,-16],[12,-19]],[[85627,67196],[-27,-27],[-10,-31],[-25,-11],[-24,-44],[-23,-9],[0,-35],[10,-30],[-15,-6],[-17,-36],[-1,-27],[6,-22],[-1,-11],[-20,-31],[-22,-2],[-1,35],[2,25],[20,63],[0,73],[19,8],[7,10],[29,52],[6,22],[-16,21],[1,25],[4,11],[24,-8],[10,-19],[5,-2],[14,14],[6,25],[27,50],[11,49],[21,-41],[-6,-52],[-14,-39]],[[85832,67811],[-12,-11],[-15,15],[-5,66],[7,32],[12,7],[11,-57],[7,-24],[-5,-28]],[[85958,68092],[-24,-47],[-25,42],[-31,29],[15,7],[8,11],[1,18],[20,27],[40,20],[12,2],[14,19],[5,17],[6,9],[25,24],[7,-28],[-1,-21],[-19,-12],[-19,-29],[-17,-36],[-16,-15],[-5,-11],[4,-26]],[[85922,68032],[2,-13],[-27,11],[-11,53],[18,-10],[6,-18],[12,-23]],[[88844,70884],[-5,-6],[-13,19],[-2,17],[2,10],[9,2],[18,-20],[-9,-22]],[[28538,62475],[34,-21],[35,-11],[15,0],[14,-7],[32,-49],[26,-28],[97,-60],[33,-105],[6,-33],[-25,-19],[-32,-7],[-30,-1],[-28,20],[-12,16],[-29,7],[7,14],[-13,7],[-16,-2],[-12,-40],[-14,-32],[-25,3],[-10,27],[-13,-12],[-11,-20],[-13,-75],[-21,37],[-23,31],[-28,13],[-57,2],[-28,11],[-22,63],[-9,18],[-23,17],[-22,72],[-8,10],[-62,16],[-12,40],[4,36],[20,44],[10,12],[34,-1],[32,13],[14,19],[15,12],[117,-32],[27,0],[26,-5]],[[52903,78839],[7,-6],[28,-1],[31,-4],[19,-31],[19,-10],[28,-3],[18,4],[9,11],[11,36],[19,45],[31,22],[52,5],[27,8],[27,-1],[20,-7],[21,1],[54,31],[56,25],[8,-4],[1,-9],[-10,-18],[-10,-25],[7,-29],[31,-57],[17,-44],[17,-33],[25,-17],[33,-11],[28,-4],[30,-12],[100,-31],[51,-8],[39,-2],[58,-20]],[[53811,78103],[17,23],[-43,82],[-19,0],[-26,-35],[-72,36],[-14,-15],[-10,-28],[-25,-35],[-35,-15],[-40,-38],[-41,-27],[-32,-21],[-18,4],[29,44],[-13,1],[-38,-31],[-22,-27],[-7,-44],[-7,-74],[17,-19],[30,-97],[36,-41],[-7,-40],[-9,-31],[-22,-27],[-19,20],[-11,0],[-8,-64],[16,-168],[25,-119],[25,-51],[57,-81],[60,-42],[108,-136],[59,-42],[15,-24],[36,-104],[31,-121],[33,-189],[24,-94],[48,-105],[100,-151],[90,-111],[84,-68],[66,-12],[155,15],[27,-6],[29,-19],[6,-47],[-10,-32],[-33,-33],[-33,-46],[-4,-63],[31,-44],[150,-117],[153,-98],[48,-50],[55,-78],[134,-107],[22,-52],[82,-111],[36,-87],[7,-67],[-17,-67],[-8,-48],[-14,-48],[-35,18],[-39,49],[-59,197],[-108,20],[-22,15],[-39,34],[-2,22],[-10,28],[-9,10],[-42,6],[-28,-32],[-34,-76],[-38,-109],[-39,-160],[-2,-64],[21,-63],[63,-35],[48,-56],[32,-58],[3,-140],[14,-80],[-21,-45],[-41,11],[-54,-29],[-39,-51],[-16,-49],[4,-128],[-8,-48],[-73,-92],[-38,-94],[-10,-39],[-14,-45],[-93,-1],[-21,55],[-1,81],[16,50],[34,24],[22,104],[-7,75],[14,33],[12,23],[26,14],[37,13],[3,105],[-28,48],[-10,66],[-14,124],[-47,157],[-25,140],[-19,69],[-30,37],[-54,-1],[-27,10],[-96,98],[-6,15],[0,25],[16,40],[-10,52],[-12,50],[-18,43],[-21,22],[-43,-14],[-15,-10],[-27,4],[-21,-19],[-12,-1],[33,75],[-9,17],[-33,31],[-45,5],[-12,4],[-8,-20],[-8,11],[1,33],[-53,150],[-35,61],[-17,11],[-32,-13],[-54,27],[-32,6],[-17,-7],[-27,-19],[-13,12],[-5,20],[-48,63],[-61,35],[-118,197],[-36,74],[-75,81],[-47,119],[-39,43],[-56,35],[-13,-4],[-17,-13],[-13,-2],[-10,15],[10,16],[12,7],[-4,45],[-64,118],[-38,37],[-10,24],[-8,32],[-8,20],[-18,13],[-15,-3],[-21,8],[1,57],[4,43],[-3,37],[-20,96],[-36,82],[-20,195],[-17,55],[-39,42],[-88,46],[-122,126],[-26,2],[-74,49],[-46,8],[-59,-43],[-72,-121],[-59,-125],[-21,-25],[-75,-43],[-67,-20]],[[52081,77054],[-1,32],[-2,24],[11,27],[19,31],[17,40],[7,28],[-3,19],[-8,28],[-11,2],[-63,-23],[-15,6],[-47,36],[-50,46],[-19,32],[-7,32],[5,21],[-4,20],[-10,27],[9,31],[16,39],[8,26],[13,7],[6,16],[-10,64],[-6,10],[-9,8],[-14,1],[-24,13],[-18,22],[-4,30],[-9,28],[-16,27],[-1,28],[17,15],[25,1],[17,-6],[39,46],[14,4],[13,10],[10,63],[9,19],[2,11],[-8,13],[-31,45],[-15,46],[-22,51],[-21,23],[-4,18],[-1,23],[5,19],[37,31],[23,34]],[[52887,76530],[9,-22],[1,-13],[-6,-15],[3,-33],[-24,28],[-35,-14],[-21,3],[-6,24],[5,15],[33,3],[11,7],[20,-3],[10,20]],[[53871,75291],[-12,-5],[-7,6],[-4,9],[5,22],[25,-13],[-1,-12],[-6,-7]],[[53347,73016],[-13,-6],[-18,19],[-1,28],[3,9],[22,-13],[6,-26],[1,-11]],[[54326,73859],[-19,-66],[-9,-25],[-67,-160],[-7,-37],[-5,-40],[-7,-35],[-9,-34],[-9,-42],[1,-48],[4,-23],[8,-16],[13,-14],[10,-22],[-16,-21],[18,-40],[14,-24],[2,-24],[0,-24],[-30,-46],[-12,-24],[-8,-31],[-3,-31],[3,-28],[-1,-28],[-30,4],[-32,17],[-31,-8],[-45,33],[-16,5],[-15,13],[-38,100],[-30,43],[-32,33],[-33,2],[-33,-4],[-29,20],[-59,68],[-63,55],[-27,35],[-12,24],[-14,16],[-36,16],[-33,37],[-14,2],[-32,-4],[-16,2],[-16,13],[-32,44],[-20,60],[-5,26],[14,69],[17,65],[15,19],[17,13],[11,20],[9,23],[32,-68],[15,-17],[14,4],[26,24],[2,27],[29,35],[36,0],[17,-6],[9,-31],[14,-9],[16,-5],[53,-59],[15,-9],[15,-2],[41,25],[31,9],[66,-13],[36,15],[25,1],[36,23],[28,38],[15,9],[15,3],[38,-2],[38,-9],[16,9],[13,25],[16,11],[17,-8],[44,43],[19,2],[18,-16],[-16,-27]],[[52675,75392],[14,-37],[31,-151],[3,-32],[-6,-34],[-8,-23],[-31,-76],[5,-63],[11,-39],[2,-43],[-6,-54],[-19,-328],[-9,-58],[-6,-50],[-21,-16],[-28,17],[-34,28],[-16,-2],[-16,-10],[-13,9],[-13,16],[-9,-113],[-16,-46],[-23,-29],[-23,-2],[-23,10],[-19,0],[-15,21],[-12,38],[-18,47],[-19,55],[-2,49],[-3,109],[5,24],[8,23],[4,49],[-3,43],[6,15],[11,-15],[8,5],[-1,22],[3,40],[-15,34],[-24,11],[-2,35],[2,35],[13,23],[4,30],[1,94],[-18,34],[-6,52],[-9,33],[-16,34],[-18,27],[-12,26],[-2,69],[6,58],[6,24],[6,-3],[18,-29],[15,-6],[29,-7],[29,9],[35,26],[34,31],[49,93],[30,18],[16,25],[5,33],[13,8],[15,-32],[19,-3],[29,-26],[12,-26],[11,-30],[10,-13],[11,-8],[2,-7],[-9,-7],[-10,-35],[6,-10],[16,-19]],[[52355,74347],[-16,-57],[-17,40],[-1,35],[3,10],[20,-15],[11,-13]],[[52301,75483],[-9,-26],[-13,2],[5,19],[12,39],[15,13],[6,-11],[-7,-23],[-9,-13]],[[59875,70504],[-19,3],[-23,28],[-4,25],[-7,8],[-16,3],[-31,13],[-35,-43],[-15,-70],[-4,-33],[-12,-70],[5,-42],[2,-55],[3,-45],[-3,-27],[-7,-15],[2,-10],[6,-4],[19,12],[21,-12],[20,-23],[1,-15],[-14,-9],[-33,-35],[-23,-41],[-6,-38],[-16,-81],[2,-16],[8,-10],[54,9],[48,32],[37,35],[12,-2]],[[59714,68867],[-19,-44]],[[59695,68823],[-10,50],[-21,142],[-16,98],[-21,121],[-36,147],[-3,35],[-8,51],[-25,134],[-20,96],[-23,123]],[[59512,69820],[29,48],[0,41],[49,94],[-1,9],[-13,25]],[[59576,70037],[2,4],[54,175],[35,173],[33,241],[23,122],[20,81],[9,67]],[[59512,69820],[-9,48],[-4,18]],[[59499,69886],[52,92],[25,59]],[[47236,82899],[-1,-17],[-21,21],[-10,22],[-56,11],[23,22],[12,-6],[40,-1],[11,-10],[2,-42]],[[48272,83000],[12,-21],[5,-21],[-20,-7],[-22,4],[-10,-14],[-1,-26],[8,-34],[14,-24],[11,-55],[10,-60],[14,-37],[3,-45],[-2,-22],[3,-40],[-6,-14],[4,-38],[18,-78],[7,-43],[5,-94],[-12,-36],[-16,-33],[-11,-40],[-8,-43],[-5,-70],[-36,-81],[-15,-20],[-18,-13],[39,-56],[-32,-26],[-34,-8],[-38,14],[-23,-1],[-22,-19],[-8,-11],[-7,6],[-14,46],[-11,-48],[-22,-15],[-37,3],[-62,-13],[-24,-14],[-10,-21],[-8,-25],[-10,-14],[-11,-8],[-48,-18],[-9,-8],[-23,-40],[-29,-23],[-24,-7],[-21,23],[-9,14],[-10,8],[-33,-2],[10,-7],[7,-16],[3,-32],[-4,-31],[-16,-15],[-19,-3],[-31,-32],[-41,-9],[-22,-30],[-134,-50],[-7,0],[-19,13],[-20,5],[-20,-4],[-56,-28],[-28,6],[35,69],[47,35],[5,10],[-16,4],[-88,-24],[-31,-21],[-31,-6],[14,32],[40,43],[21,21],[14,8],[14,25],[42,29],[-135,-59],[-35,7],[-8,16],[-28,-7],[-10,40],[40,61],[24,26],[29,14],[27,20],[10,25],[-13,8],[-82,-6],[-39,5],[2,20],[8,22],[40,37],[22,6],[20,-4],[19,-9],[15,-13],[46,8],[-19,23],[-3,49],[-15,16],[19,22],[21,14],[36,47],[13,7],[71,11],[76,24],[76,34],[-39,19],[-19,25],[-30,-51],[-21,-19],[-61,-10],[-19,6],[-27,15],[-9,-6],[-8,-12],[-40,-24],[-42,-6],[49,45],[62,76],[14,25],[20,42],[-6,18],[-13,11],[45,87],[16,15],[29,3],[22,14],[9,0],[8,5],[19,26],[-29,16],[-29,9],[-92,-9],[-12,2],[-12,8],[-7,11],[-6,30],[-6,6],[-21,0],[-20,-9],[-15,1],[-14,13],[23,30],[-29,7],[-29,-6],[-25,9],[0,19],[11,19],[-15,18],[-3,23],[16,11],[16,-4],[35,17],[43,8],[-37,16],[-15,14],[-1,22],[3,18],[44,32],[46,13],[-4,21],[4,22],[-47,7],[-46,-16],[5,43],[11,38],[2,25],[-2,27],[-22,-11],[-3,38],[-9,26],[-32,-18],[1,35],[9,24],[17,11],[17,-5],[30,0],[30,19],[43,4],[69,-5],[47,-52],[12,9],[19,33],[9,3],[71,-14],[44,-18],[12,6],[-7,35],[-15,25],[19,33],[23,22],[16,11],[36,14],[15,13],[11,42],[16,35],[-90,-18],[-85,41],[14,29],[18,17],[31,13],[3,15],[15,13],[26,33],[-9,43],[5,32],[19,21],[6,30],[8,22],[38,8],[37,20],[13,-2],[43,5],[15,-8],[-4,36],[27,4],[10,-7],[5,-25],[12,-17],[3,-28],[-8,-22],[-13,-17],[12,-17],[-19,-31],[21,13],[29,31],[-1,25],[-5,31],[-9,28],[4,31],[17,20],[43,10],[-18,35],[16,3],[18,-7],[25,-28],[26,-21],[28,-17],[-27,-35],[-32,-23],[-13,-26]],[[62434,73238],[0,-4],[9,-41],[23,-153],[13,-19],[15,-16],[11,-23],[4,-23],[-1,-35],[0,-41],[6,-31],[9,-24],[8,-12],[12,-1],[14,-6],[9,-24],[31,-174],[3,-22],[13,-7],[21,3],[21,-18],[24,-28],[21,-53],[15,-9],[46,8],[63,-8],[29,-28],[-3,-16],[-23,-19],[-39,-22],[-12,-38],[-7,-48],[1,-27],[10,-30],[28,-60],[2,-21],[5,-30],[5,-21],[-6,-40],[-25,-27],[-34,-30],[-67,-132],[-5,-29],[0,-78],[-7,-23],[-21,1],[-17,4],[0,-28],[-11,-36],[-6,-32],[25,-75],[4,-40],[-4,-36],[-23,-63],[-13,-42],[3,-9],[18,-17],[56,-138],[17,-48],[24,13],[9,-1],[7,-8],[4,-16],[0,-21],[-6,-31],[30,-12],[11,-32],[35,-107],[-2,-32],[-16,-50],[0,-34],[3,-30],[5,-11],[52,-4],[22,-12],[53,-55],[61,-84],[50,-69],[43,-58],[45,4],[13,-11],[11,-18],[13,-48],[26,-109],[22,-37],[34,-87],[32,-82],[-21,-111],[-20,-116],[0,-149],[0,-80],[43,-3],[49,-4],[0,-96],[0,-96],[1,-110],[14,-5],[23,-23],[9,-36],[13,-19],[14,-3],[15,-18],[14,-32],[5,-24],[-4,-16],[3,-29],[10,-42],[13,-19],[18,-24]],[[63484,69102],[-25,-14],[-28,11],[-59,48],[-19,2],[-25,-19],[-1,-16]],[[65607,67350],[-26,-69],[-39,-58],[-17,18],[-12,0],[-28,-23],[-20,-3],[-37,-40],[-33,-20],[-23,2],[-8,4],[-5,27],[0,10],[15,-5],[51,36],[64,58],[6,26],[-10,43],[3,9],[41,-21],[46,42],[39,11],[19,-29],[-26,-18]],[[67017,72361],[5,-38],[-1,-23],[-9,-23],[-6,-29],[-7,-36],[-3,-28],[-13,-14],[-11,-9],[1,-36],[6,-31],[6,-36],[-7,-25],[-5,-28],[-10,-46],[3,-38],[-11,-33],[-14,-28],[-9,-23],[-2,-33],[-10,-11],[-19,-27],[-12,-19],[-18,-5],[-3,-16],[2,-15],[8,-9],[11,-33],[24,-57],[-68,-7],[-21,-51],[-23,-72],[11,-145],[-11,-75],[7,-42],[17,-29],[23,-16],[42,-1],[28,-12],[3,-19],[-16,-28],[-26,-54],[-14,-23],[-43,-107],[0,-45],[4,-37],[19,-116],[18,-112],[33,-202],[0,-46],[-11,-105],[0,-63],[4,-82],[-3,-43],[8,-95],[9,-7],[72,-18],[65,-17],[87,-23],[27,-56],[16,-122],[-1,-92],[-7,-47],[-63,-134],[-63,-136],[-63,-135],[-73,-156]],[[67107,66360],[-15,-4],[-12,-24],[-22,-30],[-47,23],[-37,24],[-124,57],[-13,28],[-8,48],[-21,13],[-31,-72],[-104,42],[-36,-13],[-21,22],[-57,2],[-44,45],[-64,-31],[-50,-6],[-69,79],[-74,22],[-60,-7],[-31,6],[-50,29],[-24,29],[-39,-22],[-18,41],[-110,38],[-21,74],[-15,68],[-1,70],[-27,123],[-9,177],[-10,70],[-15,60],[-20,51],[-27,55],[-24,22],[-103,42],[-20,-6],[-46,-27],[-49,-61],[-81,-34],[-17,-26],[-20,-59],[-26,-35],[-36,9],[-39,-35],[-72,-97],[-38,-29],[-32,2],[-34,46],[-76,62],[-49,20],[-69,-14],[-32,11],[-56,72],[-14,53],[-32,35],[-99,79],[-81,105],[-15,39],[-10,59],[-35,71],[-79,58],[-45,61],[-52,14],[-49,-2],[-21,11],[-20,27],[-67,127],[0,51],[-41,124],[-10,45],[-9,123],[-11,32],[-43,51],[-7,33],[10,44],[0,34],[-23,31],[-33,17],[-8,38],[6,73],[-5,47],[-30,73],[-43,76],[-44,111],[-17,28],[-11,73],[-16,87],[-24,6],[-119,-104],[-35,59],[-104,102],[-8,15],[-7,23],[13,14],[13,5],[26,-18],[16,21],[-6,35],[-26,21],[-36,-2],[10,-32],[-34,-30],[-7,-41],[5,-49],[3,-70],[-14,-33],[-10,-16],[-45,-4],[-21,-31],[-14,-7]],[[62449,74683],[5,-13],[45,-118],[20,-35],[12,-29],[8,-33],[13,-23],[18,-12],[23,-32],[15,-25],[25,-51],[26,-20],[96,-37],[54,-17]],[[62809,74238],[15,-5],[41,25],[48,-4]],[[62913,74254],[18,-1],[64,105],[19,36],[38,18],[21,42],[34,50],[42,48],[38,43],[30,26],[53,61],[33,21],[29,-1],[43,-71],[36,-65],[11,-28],[-18,-25],[-34,-25],[-6,-18],[-2,-23],[1,-22],[5,-18],[41,-42],[5,-23],[0,-23],[-5,-15],[-9,-8],[-29,-12],[-24,-13],[-9,-14],[-7,-16],[1,-17],[7,-20],[51,-55],[5,-20],[10,-27],[13,-17],[21,-4],[10,-11],[48,-101],[12,-7],[57,22],[8,-1]],[[63574,73983],[1,-25],[8,-143],[7,-74],[9,-72],[16,-66],[18,-62],[25,-39],[56,-47],[27,-13],[71,-9],[71,-21],[41,-22],[13,-15],[11,-23],[34,-110],[54,-78],[110,-117],[53,-39],[179,-74],[119,4],[328,142],[110,36],[41,0],[-25,-28],[-41,-17],[25,-20],[38,-3],[18,3],[13,18],[2,30],[-2,30],[-18,132],[-10,93]],[[77077,52687],[61,-162],[24,-22],[33,-74],[8,-25],[-9,-52],[-7,-147],[-15,-37],[-38,18],[-1,26],[-22,111],[-39,62],[-16,3],[-10,63],[-20,76],[-60,137],[46,-1],[22,33],[5,27],[4,7],[34,-43]],[[77545,50818],[-26,-3],[-55,69],[-13,31],[-3,42],[-52,159],[-7,37],[20,131],[54,31],[18,-22],[6,-59],[30,-106],[10,-57],[8,-26],[3,-19],[-2,-14],[22,-68],[15,-39],[2,-64],[-30,-23]],[[82399,46881],[-35,-120],[13,-19],[7,-18],[-58,-25],[-24,13],[-14,-3],[-59,22],[-42,28],[-5,21],[3,26],[13,-8],[32,-4],[13,11],[0,77],[-5,100],[44,82],[24,33],[27,20],[68,-46],[11,-12],[9,-18],[4,-30],[-26,-130]],[[82068,47145],[28,-31],[40,-89],[3,-25],[-12,-24],[-28,-38],[-63,-58],[-10,-28],[-14,-54],[-3,-23],[-4,-13],[-7,-9],[-14,-8],[-15,12],[13,34],[1,42],[-10,39],[-14,32],[-29,44],[-30,40],[-31,19],[-33,9],[-12,19],[-19,49],[-6,27],[-3,28],[2,27],[8,1],[32,-6],[59,-32],[30,-2],[16,7],[43,62],[11,-1],[41,-27],[30,-23]],[[79456,50881],[10,-40],[13,-35],[10,-39],[13,-185],[43,-159],[126,-63],[-21,-25],[-10,-23],[-8,-27],[-18,-110],[1,-24],[11,-37],[3,-41],[-16,0],[-17,10],[-15,15],[-13,20],[-14,16],[-15,10],[-26,32],[-34,22],[-36,17],[-17,47],[-8,58],[9,86],[-9,24],[-13,21],[-15,62],[-6,73],[-22,28],[-30,17],[-13,14],[-58,-26],[-14,6],[-12,20],[-32,21],[1,40],[15,32],[35,33],[16,27],[3,36],[-6,26],[3,28],[11,27],[13,21],[34,27],[16,-48],[7,-40],[10,-30],[14,42],[-9,72],[27,16],[26,1],[19,-20],[13,-31],[5,-44]],[[84216,49221],[6,-124],[-2,-32],[-15,47],[-6,10],[-4,-10],[-6,-5],[-8,0],[-10,-48],[-1,-45],[-8,-30],[-4,-101],[3,-28],[12,14],[7,3],[27,-39],[15,-28],[-4,-34],[-19,-35],[-21,-15],[-16,15],[-5,-7],[-9,-18],[-8,-24],[3,-24],[-19,-68],[-10,-19],[-22,21],[-14,-18],[-11,1],[-16,69],[0,32],[15,36],[1,26],[7,29],[17,40],[10,29],[0,19],[8,72],[2,30],[5,32],[8,66],[1,122],[26,101],[25,28],[11,5],[-2,-27],[31,-68]],[[84067,48807],[-7,-38],[-15,-30],[-13,-2],[-12,6],[-23,26],[-6,-27],[-18,1],[-6,35],[12,105],[19,39],[-2,41],[-15,88],[10,46],[43,34],[37,42],[12,9],[11,-32],[5,-149],[-40,-118],[8,-76]],[[80087,53968],[-38,-21],[-22,30],[24,36],[8,3],[6,7],[2,15],[-43,24],[-12,21],[-12,54],[0,34],[55,91],[13,10],[2,-38],[38,-95],[2,-64],[-1,-23],[-22,-84]],[[80057,50116],[-5,-61],[-6,-23],[-24,-30],[-7,-18],[-22,3],[-3,32],[-7,21],[-23,25],[-6,-6],[-4,-37],[-45,-26],[-13,-2],[6,49],[-11,38],[-1,47],[-2,21],[-6,12],[11,32],[-1,37],[12,39],[7,95],[47,21],[10,-17],[56,-21],[39,-58],[21,-77],[-23,-96]],[[87606,51467],[59,-22],[21,1],[21,-25],[26,12],[14,-8],[49,-88],[24,-58],[35,-50],[26,-17],[-19,-45],[-39,-24],[-15,-1],[-30,27],[-25,-5],[-21,34],[-4,52],[-21,119],[-29,-34],[-33,54],[-9,1],[-3,-9],[-14,19],[-12,37],[-1,30]],[[87631,50926],[110,-29],[29,4],[63,-12],[52,-38],[91,-7],[28,-12],[21,-26],[-51,-22],[-24,-20],[-45,-10],[-38,10],[-27,-12],[-10,20],[-39,20],[-51,41],[-105,49],[-5,30],[1,14]],[[86336,51840],[48,-24],[11,4],[70,-64],[11,-31],[-4,-21],[10,-29],[-22,-43],[-11,-5],[-12,16],[-22,10],[-25,-18],[-17,13],[-14,40],[-24,24],[-35,84],[-17,-3],[5,-33],[14,-21],[20,-64],[11,-6],[11,2],[16,-27],[-1,-41],[-40,-16],[-14,30],[-3,55],[-23,-19],[-9,-19],[-7,-2],[-15,57],[-43,3],[-29,30],[14,32],[2,30],[19,17],[19,-15],[19,22],[14,-6],[10,14],[38,9],[25,15]],[[85681,53025],[-44,-10],[-10,27],[-12,124],[31,99],[40,58],[27,15],[9,1],[24,-71],[-18,-144],[-21,-73],[-26,-26]],[[85597,50886],[-17,-23],[-8,-7],[-41,16],[-48,-3],[-50,-22],[-29,18],[-18,30],[1,32],[17,78],[37,60],[16,10],[26,-16],[45,-45],[36,-54],[32,-41],[1,-33]],[[85014,50431],[-4,-11],[-17,31],[-11,88],[-10,24],[-11,83],[3,24],[14,35],[11,0],[8,-21],[-5,-90],[25,-114],[-3,-49]],[[85006,50812],[85,-19],[-12,-21],[-92,-33],[-33,6],[-100,-20],[-12,1],[-2,32],[-11,23],[16,20],[21,4],[55,-7],[85,14]],[[84713,50860],[26,-20],[9,0],[9,24],[5,4],[12,-12],[2,-39],[17,6],[13,-14],[4,-9],[-1,-39],[-50,-6],[-36,-32],[-48,28],[-54,-48],[-33,-16],[-28,1],[-25,84],[14,99],[11,16],[18,8],[50,5],[85,-40]],[[86478,47235],[-4,-7],[-35,8],[-19,0],[2,43],[-10,33],[14,48],[0,56],[15,7],[2,32],[17,84],[10,19],[15,7],[17,49],[10,15],[10,37],[15,17],[-2,32],[9,17],[23,13],[16,-15],[10,-33],[-26,-40],[13,-99],[-19,-108],[-12,-33],[-23,-27],[-6,-27],[-27,-53],[-8,-46],[-2,-19],[-5,-10]],[[85222,47426],[3,-28],[0,-13],[-33,-9],[-32,-31],[-17,-36],[-13,-46],[-44,19],[-39,3],[-18,16],[-19,-1],[-24,-14],[-35,-40],[-8,-3],[3,60],[10,37],[36,88],[31,-19],[36,-6],[40,18],[29,39],[40,21],[33,-52],[21,-3]],[[84603,47153],[7,-35],[22,20],[21,4],[47,-3],[35,-8],[21,-15],[2,-70],[-10,-15],[-181,-53],[-18,17],[-7,17],[20,52],[-9,25],[10,40],[22,27],[18,-3]],[[86389,51085],[-10,-16],[-34,15],[-17,35],[-12,48],[-8,39],[-2,32],[-10,38],[1,14],[62,40],[12,-15],[26,-1],[12,-29],[-8,-127],[-12,-73]],[[76803,54855],[34,-5],[63,31],[35,-3],[32,-23],[30,-13],[72,17],[14,-5],[13,-13],[11,-20],[33,-75],[56,-92],[16,-59],[9,-67],[6,-15],[63,-127],[7,-54],[-9,-73],[19,-59],[61,-55],[36,-40],[8,-24],[5,-29],[21,-44],[25,-28],[78,-74],[103,-156],[59,-74],[48,-112],[18,-54],[14,-58],[29,-84],[50,-105],[13,-31],[13,-46],[16,-43],[19,-39],[22,-30],[22,-10],[37,-75],[20,-24],[-3,59],[-17,51],[0,32],[3,27],[14,24],[16,6],[31,-21],[49,-89],[21,-52],[16,-72],[13,-75],[20,-37],[27,-13],[31,-5],[28,-23],[65,-104],[22,-48],[16,-57],[12,-68],[7,-71],[4,-16],[42,-85],[22,-36],[27,-18],[78,-19],[28,-30],[23,-49],[10,-50],[-17,-44],[-61,-68],[-66,-47],[64,16],[32,20],[30,31],[30,39],[46,55],[17,11],[21,-4],[18,-16],[28,-53],[26,-57],[20,-66],[12,-73],[-22,-39],[-33,-28],[-45,-71],[-4,-28],[9,-18],[-11,-52],[25,-32],[4,-28],[-22,-39],[2,-24],[26,-103],[13,-24],[40,-52],[60,-53],[34,-25],[38,-19],[17,1],[28,8],[6,-20],[12,-102],[6,-64],[9,-137],[11,-57],[-1,-69],[15,-59],[30,-38],[32,-31],[15,-30],[0,-45],[-5,-36],[-11,-28],[-33,-60],[-6,-25],[-5,-65],[6,-30],[13,-2],[10,16],[40,87],[11,16],[15,12],[15,8],[72,0],[31,-13],[27,-29],[25,-36],[88,-228],[40,-126],[3,-31],[1,-33],[-7,-25],[-37,-86],[-4,-23],[-12,-94],[2,-67],[13,-29],[9,-30],[0,-28],[-25,-139],[-2,-23],[15,-226],[1,-61],[-3,-77],[2,-124],[-19,-384],[-4,-23],[-15,-59],[-20,1],[-16,10],[-12,22],[-6,28],[-9,23],[-48,71],[-13,-12],[-49,-88],[-13,-13],[-16,11],[-25,26],[-81,93],[-5,-30],[-1,-40],[16,-101],[2,-44],[-15,-9],[-8,2],[-33,59],[-31,65],[-35,87],[-26,42],[-23,46],[-66,177],[-17,27],[-101,124],[-20,30],[-26,51],[-28,46],[-61,72],[-106,184],[-46,105],[-51,170],[-17,43],[-86,128],[-47,77],[-20,44],[-45,155],[-14,52],[-16,46],[-28,37],[-24,44],[-49,140],[-15,55],[-11,61],[2,120],[-103,366],[-26,114],[-23,158],[-6,16],[-56,142],[-19,45],[-24,43],[-20,50],[-38,162],[-15,45],[-20,33],[-73,61],[-27,34],[-22,48],[-13,62],[-14,131],[-35,199],[-38,267],[-26,119],[-30,94],[-9,21],[-133,169],[-22,25],[-24,15],[-34,11],[-27,43],[-10,78],[-6,105],[-7,63],[-7,35],[-56,75],[-21,58],[-18,65],[-17,50],[-61,172],[-21,45],[-26,32],[-76,33],[-23,29],[-37,98],[-22,50],[-67,109],[-114,230],[-23,57],[-18,60],[-14,64],[-48,177],[3,36],[8,37],[-1,31],[-6,31],[1,27],[15,16],[32,21],[34,-2],[31,-9],[30,-17],[29,-38],[51,-94],[30,-33],[33,-15],[67,-22]],[[84106,46882],[-40,-20],[-24,-20],[-23,-26],[-15,-5],[-27,-2],[-37,5],[-26,-9],[-71,-66],[-28,-6],[-24,-16],[-8,26],[-10,19],[-24,4],[-24,-1],[-24,-59],[-38,13],[-15,-6],[-14,-12],[-14,-5],[-15,4],[-56,45],[-64,27],[-64,-10],[-55,25],[-30,-19],[-29,-28],[-8,29],[-11,26],[-9,37],[0,44],[3,30],[8,27],[5,29],[3,31],[12,-15],[12,5],[38,34],[37,50],[34,19],[20,5],[16,-10],[17,4],[18,11],[28,-39],[11,-8],[38,-3],[34,-22],[30,-34],[44,-31],[27,-42],[20,-15],[15,-5],[13,6],[18,28],[20,12],[18,0],[32,7],[14,7],[15,15],[15,-9],[13,-15],[54,-74],[17,-2],[30,16],[10,20],[4,31],[9,25],[11,22],[14,17],[40,28],[28,28],[19,48],[-44,20],[9,34],[15,20],[20,-7],[17,-27],[7,-102],[-14,-15],[-8,-15],[-6,-20],[-26,-38],[10,-46],[-7,-20],[-10,-9]],[[83336,46442],[13,-25],[45,-50],[7,-21],[3,-35],[9,-26],[21,-4],[22,5],[16,-16],[15,-26],[21,-50],[19,-56],[23,-31],[14,-46],[-8,-41],[-30,-57],[-16,-12],[-21,-4],[-35,-34],[-12,18],[-39,12],[-30,24],[-26,45],[-15,47],[-19,43],[-33,28],[-58,83],[-37,7],[-15,-6],[-15,0],[-77,37],[-12,22],[-9,28],[-9,27],[-5,31],[10,27],[10,19],[43,32],[31,10],[35,-2],[53,10],[51,-16],[15,12],[25,34],[9,-12],[11,-31]],[[82844,47051],[14,-22],[13,2],[26,34],[16,13],[17,1],[17,-6],[16,-25],[6,-40],[6,-13],[10,49],[13,14],[14,8],[22,-3],[17,-23],[16,-69],[-1,-60],[6,-22],[11,-17],[8,-23],[-7,-24],[-7,-11],[-21,-11],[-9,4],[-9,17],[-10,6],[-23,-6],[-21,-13],[3,-22],[17,-10],[5,-11],[-1,-14],[-7,-3],[-22,19],[-15,-3],[-54,-26],[-14,1],[-9,24],[1,63],[-6,17],[-40,-77],[-12,-19],[-17,-9],[-16,3],[-59,-46],[-18,6],[-18,0],[-62,-50],[-33,-14],[-17,-1],[-17,4],[-15,-4],[-14,-21],[-28,-17],[-28,13],[-25,18],[-23,23],[-5,29],[1,35],[10,48],[-7,84],[5,39],[9,38],[15,14],[18,2],[31,34],[28,45],[16,-4],[37,-31],[22,-4],[37,5],[15,-19],[6,-44],[8,-16],[11,-11],[26,-74],[24,4],[21,-14],[38,45],[28,-1],[8,34],[-17,37],[-20,31],[-11,6],[-12,-2],[-11,5],[-45,67],[-14,37],[-8,43],[5,31],[31,28],[15,7],[55,-19],[9,-16],[14,-68],[11,-29]],[[84691,52416],[-53,-98],[-17,-47],[-14,-51],[-21,-56],[-24,-50],[-12,-15],[-29,-27],[-17,-10],[-32,-4],[-97,-39],[-31,-5],[-32,2],[-60,10],[-12,5],[-24,51],[-27,40],[-24,5],[-24,-4],[-175,-3],[-61,-8],[-61,-18],[-33,8],[-33,21],[-24,7],[-25,-2],[-115,-31],[-29,3],[-58,39],[-34,8],[-33,-10],[-31,-36],[-11,-23],[-32,-81],[-18,-58],[-14,-73],[-11,-75],[-7,-61],[0,-64],[5,-72],[9,-71],[10,-55],[39,-126],[8,-17],[44,-36],[25,-45],[25,-126],[17,-65],[17,0],[19,4],[33,-8],[33,-17],[32,39],[17,73],[18,55],[43,103],[25,48],[15,15],[16,-6],[13,-28],[16,-22],[32,-11],[33,7],[34,34],[12,20],[11,26],[29,22],[69,0],[36,-8],[64,9],[-1,19],[-12,20],[-4,16],[12,11],[41,23],[42,17],[31,-12],[27,-33],[11,-34],[4,-41],[-10,-105],[-5,-25],[-22,-12],[-20,14],[-21,54],[-28,20],[-41,-16],[-14,-16],[-13,-22],[-23,-56],[-19,-64],[-41,-100],[-48,-86],[-23,-33],[-26,-23],[-83,-57],[-22,-42],[-17,-55],[-19,-19],[-22,-6],[-16,10],[-33,31],[-11,-25],[-2,-39],[16,-14],[27,-43],[20,-61],[13,-13],[29,-20],[12,-19],[22,-52],[34,-122],[12,-66],[19,-53],[58,-91],[3,-26],[-3,-30],[4,-27],[21,-52],[5,-34],[-23,-43],[-1,-62],[-14,-83],[-3,-28],[0,-26],[10,-24],[11,-18],[16,-10],[14,-17],[26,-65],[14,-17],[8,-23],[0,-36],[12,-20],[11,-37],[16,-9],[8,10],[6,16],[14,-6],[8,-25],[4,-33],[2,-37],[-1,-69],[-7,-24],[-15,1],[-27,28],[-1,-20],[2,-20],[-14,-7],[-16,3],[-40,-3],[-73,-42],[-26,-26],[-17,-46],[-1,-31],[6,-68],[-9,-23],[-34,-9],[-47,18],[-28,18],[-16,15],[-21,45],[-8,58],[16,172],[4,22],[7,19],[8,31],[2,37],[-22,45],[-34,18],[-29,37],[-111,209],[-6,21],[0,34],[4,33],[37,114],[4,22],[5,91],[-1,74],[-4,75],[-17,46],[-31,15],[-32,2],[-31,-15],[-30,-37],[-57,-79],[-22,-46],[-2,-60],[13,-58],[17,-54],[8,-58],[13,-207],[-1,-23],[-14,-60],[-6,-135],[6,-190],[10,-116],[-4,-63],[-26,-136],[-8,-75],[-1,-31],[31,-142],[7,-56],[4,-58],[-33,28],[-15,-1],[-16,-9],[-34,-9],[-35,-1],[-12,-11],[-25,-38],[-15,-15],[-13,-3],[-44,47],[-27,52],[-24,56],[-4,63],[8,66],[12,70],[24,116],[-1,78],[8,64],[14,62],[5,58],[3,224],[-3,20],[-33,133],[-4,22],[0,36],[3,34],[1,31],[-7,24],[-14,22],[-16,9],[-34,-9],[-68,-36],[-20,31],[-15,49],[-10,68],[-5,71],[2,67],[10,65],[-8,45],[-12,49],[0,25],[7,23],[12,18],[15,11],[14,19],[37,66],[12,58],[1,72],[10,68],[19,63],[22,58],[7,60],[-11,96],[5,43],[-4,51],[0,50],[13,95],[42,194],[40,103],[16,27],[21,-47],[16,-57],[1,51],[-5,50],[-16,117],[-14,228],[4,21],[14,-3],[15,20],[7,36],[-15,84],[0,30],[28,119],[24,43],[10,27],[6,73],[12,27],[16,20],[20,50],[11,63],[7,5],[8,2],[12,-55],[14,-22],[28,-18],[24,21],[7,27],[9,24],[14,25],[12,28],[14,66],[18,59],[12,21],[15,13],[16,8],[16,1],[35,-37],[21,-7],[20,2],[14,-6],[10,-17],[9,-34],[11,-29],[10,-14],[12,-7],[76,12],[67,-33],[91,-8],[32,-19],[30,-26],[36,-44],[14,-10],[15,2],[19,42],[14,10],[15,1],[59,-8],[158,-52],[23,8],[96,99],[38,93],[34,26],[11,43],[7,51],[12,13],[29,15],[11,15],[21,62],[24,56],[11,16],[34,-8],[15,-25],[19,-81],[-3,-14],[-22,-40],[-7,-17],[-25,-115],[-17,-56],[-21,-50]],[[79825,48382],[28,-66],[25,-35],[29,-19],[30,-2],[30,-8],[35,-25],[35,-11],[17,4],[16,13],[11,1],[10,-12],[25,-56],[27,-51],[6,-26],[18,-123],[20,-35],[29,-10],[33,0],[33,-5],[77,-29],[30,4],[27,29],[24,-19],[65,-34],[32,-8],[36,10],[37,2],[17,-10],[17,-15],[14,-6],[15,1],[26,29],[18,52],[14,67],[11,69],[7,30],[10,26],[14,17],[14,11],[38,-7],[8,-16],[42,-118],[8,-10],[45,-8],[12,4],[27,24],[16,2],[28,-29],[13,-25],[13,-18],[70,-19],[28,-50],[13,-7],[49,6],[34,-5],[29,-13],[13,-72],[11,-73],[7,-25],[28,-25],[12,-23],[-3,-73],[3,-70],[61,-60],[65,-35],[69,-4],[70,12],[35,15],[45,26],[9,0],[87,-80],[8,-12],[9,-60],[0,-62],[-16,-149],[-1,-41],[1,-41],[18,-89],[9,-25],[31,-47],[1,-25],[-4,-24],[-35,17],[-21,20],[-12,33],[-17,19],[-33,-7],[-61,34],[-69,52],[-122,110],[-33,-1],[-32,-14],[-33,-28],[-35,-20],[-26,-7],[-26,5],[-65,27],[-66,17],[-168,11],[-47,25],[-79,12],[-63,22],[-62,30],[-158,149],[-51,36],[-159,71],[-24,6],[-58,-5],[-36,21],[-32,0],[-47,-23],[-15,-17],[-18,-35],[-33,2],[-32,7],[-84,33],[-31,21],[-30,30],[-28,40],[-14,14],[-72,41],[-60,14],[-122,18],[-27,12],[-22,15],[-12,33],[1,42],[9,36],[12,36],[8,34],[-89,73],[-71,40],[-30,7],[-31,0],[-34,-8],[-34,4],[-16,11],[-17,5],[-16,-9],[-13,3],[-4,33],[9,28],[17,32],[10,6],[4,-50],[5,-10],[16,-11],[6,3],[27,64],[8,31],[13,85],[14,-16],[14,10],[8,13],[23,196],[19,58],[26,47],[12,12],[26,-29],[51,-11],[30,-20],[31,-2],[29,-10],[42,-34],[15,3],[14,11],[23,38],[9,60],[32,-31],[48,-12],[11,-17]],[[82659,54245],[-3,-5],[-19,-16],[-9,-33],[27,-51],[1,-34],[21,-30],[24,-46],[1,-16],[9,-21],[4,-25],[-17,-26],[-24,-5],[-17,24],[-16,30],[-4,-37],[-13,-21],[-45,6],[-32,0],[-32,-10],[16,-5],[14,-12],[50,-96],[11,-35],[-17,-70],[8,-29],[19,-16],[24,-35],[17,-4],[12,-19],[0,-34],[7,-32],[-19,-12],[19,-8],[17,-16],[-9,-16],[-7,-20],[7,-10],[23,-19],[10,-16],[6,-45],[22,-73],[41,-95],[9,-34],[0,-32],[-6,-27],[-24,-32],[-19,-42],[-2,-15],[-26,-20],[12,-14],[9,-19],[18,-59],[42,-95],[22,-35],[87,-129],[46,-57],[60,-128],[31,-30],[6,-36],[-26,-54],[-38,-28],[-62,-15],[-62,20],[-32,15],[-28,32],[-22,63],[-29,35],[12,-39],[7,-39],[-4,-43],[-11,-33],[-20,-25],[-21,-20],[-9,-14],[-53,-224],[-9,-60],[-16,-252],[0,-71],[24,-133],[2,-69],[5,-30],[-4,-25],[-11,-15],[-46,-41],[-32,-34],[-26,-48],[-21,-59],[-19,-44],[-25,-20],[-18,3],[-14,20],[-10,38],[-6,42],[-4,-31],[1,-30],[8,-33],[4,-34],[-5,-35],[-11,-28],[-29,-30],[-16,-26],[-2,-46],[-8,-26],[-11,-20],[-40,-46],[-9,-18],[-7,-24],[22,4],[19,-4],[2,-45],[6,-34],[-8,-75],[-30,-50],[15,-11],[14,-16],[30,-12],[10,-53],[-4,-64],[-6,-58],[-21,-16],[-14,11],[-14,-1],[-10,-17],[-2,-30],[19,15],[-1,-75],[-5,-72],[-7,-40],[-11,-33],[-18,-10],[-16,24],[-4,-28],[5,-24],[24,-58],[-15,-13],[-10,-20],[-5,-29],[-26,-66],[-11,-49],[-5,-52],[-12,-41],[-194,-180],[-156,-151],[-12,10],[-7,23],[-6,235],[-19,121],[-3,68],[-22,-61],[-14,6],[-15,16],[-11,19],[0,26],[11,75],[-14,-41],[-16,-31],[-16,3],[-14,16],[-5,24],[-7,4],[-35,-67],[-45,-35],[-25,0],[-20,21],[1,50],[-2,50],[-5,29],[-13,10],[-11,-4],[-32,-25],[-12,3],[-7,-13],[-85,180],[-18,-146],[-59,-78],[-44,-45],[-43,17],[-45,29],[-44,-35],[-47,-86],[-13,-13],[-14,1],[-10,11],[3,65],[1,64],[-4,145],[-4,28],[-13,40],[-18,28],[-11,-21],[-9,-28],[-36,1],[-35,23],[-30,-13],[-60,-58],[-32,-8],[-17,12],[-11,31],[6,29],[14,21],[-25,-17],[-21,-29],[-9,-19],[-10,10],[-26,65],[-54,-24],[-8,-8],[-13,-22],[-13,11],[-7,24],[-2,136],[-28,262],[-7,134],[-6,31],[-32,49],[1,69],[16,57],[4,68],[-5,73],[-10,71],[-12,54],[-18,46],[-24,52],[-30,39],[-63,43],[-33,-4],[-13,17],[-8,23],[3,43],[12,30],[15,7],[2,17],[-33,35],[-26,48],[-9,28],[-2,31],[0,73],[8,46],[4,25],[8,76],[18,24],[-3,14],[-8,10],[-11,25],[-9,29],[-20,49],[-36,60],[-6,102],[-5,150],[3,68],[11,128],[21,40],[16,12],[12,17],[-10,2],[-9,-6],[-15,-4],[12,114],[6,33],[25,64],[30,57],[12,67],[17,58],[70,61]],[[85480,52331],[21,-13],[21,4],[10,26],[3,33],[11,62],[24,42],[17,7],[12,18],[-2,46],[1,45],[18,48],[57,68],[31,24],[42,7],[5,-25],[-5,-37],[8,-56],[-4,-150],[-10,-21],[-42,-52],[-47,-42],[-13,-17],[-12,-42],[1,-41],[38,-54],[59,-52],[13,-24],[8,-40],[2,-45],[14,-21],[20,-10],[13,-22],[11,-30],[-100,70],[-26,31],[-32,4],[-31,9],[-32,27],[-34,6],[-16,-19],[-7,-38],[-4,-43],[8,-53],[-1,-32],[-6,-58],[25,-171],[31,-137],[45,-142],[23,-49],[25,-44],[-41,13],[-12,48],[-52,47],[-10,28],[-34,135],[-10,25],[-31,46],[-14,33],[-5,46],[4,48],[-2,66],[1,65],[7,81],[-11,28],[-15,26],[-17,62],[-5,70],[1,40],[7,35],[10,31],[2,30],[-25,44],[-25,124],[-2,65],[32,124],[-1,60],[7,36],[3,38],[17,83],[28,70],[47,99],[18,21],[20,14],[2,-24],[-4,-21],[-34,-101],[-5,-22],[-1,-43],[17,-24],[18,-51],[3,-68],[1,-72],[-4,-73],[-7,-25],[-28,-73],[-65,-85],[-5,-21],[0,-24],[12,-29],[15,-22]],[[86042,50192],[64,-64],[33,-9],[56,8],[21,-6],[53,-82],[15,-56],[4,-48],[9,-46],[13,-11],[15,-5],[20,-66],[4,-21],[-15,-166],[-63,63],[-60,71],[-26,27],[-69,60],[-11,21],[-8,27],[-30,37],[-60,6],[-23,-1],[-9,-6],[2,-20],[0,-40],[-15,-12],[-37,26],[-34,9],[-29,25],[-39,14],[-4,12],[3,19],[-1,18],[-9,6],[-18,-3],[-17,-17],[-14,-21],[-20,-55],[-11,-21],[-34,-9],[-14,5],[-13,14],[-39,101],[-13,22],[-14,18],[-14,8],[-13,-16],[-8,-31],[-3,-37],[-4,-22],[-17,-59],[-13,-36],[-5,6],[7,57],[0,32],[-9,34],[-5,35],[65,165],[24,40],[103,13],[61,-8],[34,4],[22,12],[19,-5],[4,-33],[12,-24],[16,2],[29,25],[26,40],[15,17],[16,3],[16,-3],[16,-9],[43,-34]],[[85238,50064],[46,-45],[10,-29],[9,-35],[9,-20],[10,-15],[18,-31],[5,-46],[-4,-93],[-21,-8],[-19,-14],[-40,-54],[-20,-10],[-21,-4],[-15,-14],[-15,-6],[-39,30],[-38,35],[-54,61],[-10,15],[-9,32],[-25,59],[-6,38],[-2,106],[6,25],[11,13],[36,-25],[24,26],[69,22],[71,-2],[14,-11]],[[84740,46363],[-19,-30],[-10,-58],[-34,-54],[-37,-89],[-29,-46],[-26,-53],[-23,-36],[-28,-13],[-42,-7],[-56,-65],[-32,-28],[-31,-2],[-28,21],[-11,24],[2,31],[10,28],[12,22],[7,29],[-33,37],[-2,27],[12,75],[9,76],[12,52],[46,93],[28,46],[17,19]],[[84567,46549],[36,20],[20,22],[17,32],[51,53],[9,15]],[[87429,48555],[-2,-22],[-1,-41],[5,-38],[-12,-39],[11,-57],[2,-29],[-1,-41],[-3,-18],[-8,-54],[-9,-19],[-6,-5],[-7,-16],[-54,18],[-24,37],[-21,40],[-4,17],[-25,46],[-6,16],[0,25],[20,7],[21,-1],[-1,22],[13,80],[-33,51],[-6,21],[12,15],[26,-18],[32,89],[10,19],[4,50],[18,6],[13,-6],[8,-31],[3,-27],[-3,-24],[15,-13],[13,-60]],[[87370,48132],[-4,-41],[-5,-45],[-25,-51],[-16,-78],[-9,-19],[-34,-35],[-30,43],[-9,37],[13,172],[13,-6],[9,1],[2,12],[-19,19],[-4,98],[1,38],[15,8],[18,-29],[24,-52],[27,-40],[33,-32]],[[88481,47077],[-66,-76],[-87,13],[-31,2],[-51,-19],[-11,15],[10,71],[41,190],[49,168],[20,43],[29,41],[31,33],[69,34],[62,-7],[9,-13],[27,-56],[18,-44],[7,-63],[-27,-107],[-29,-102],[-49,-80],[-21,-43]],[[89159,46590],[-14,19],[-39,64],[-34,74],[-23,68],[-25,62],[-108,184],[-27,61],[-6,16],[3,16],[12,32],[22,92],[-23,-57],[-27,-45],[-40,-3],[-39,-11],[-37,-27],[-37,-10],[-18,14],[-11,34],[-6,35],[-3,36],[-15,-59],[-31,-33],[-41,-69],[-12,14],[-7,27],[-3,27],[8,29],[6,31],[8,73],[19,44],[12,84],[8,30],[4,30],[-11,34],[-18,12],[-13,20],[-15,57],[-9,20],[-16,23],[-13,28],[14,20],[19,8],[15,-1],[27,-13],[13,0],[31,21],[-17,-7],[-18,1],[-57,37],[-35,38],[-33,77],[0,15],[23,14],[51,16],[-16,39],[-23,34],[-8,61],[-15,38],[-34,61],[-23,64],[-19,129],[-20,98],[5,35],[17,25],[-26,3],[-23,19],[12,47],[27,28],[-25,-7],[-23,-14],[-11,-2],[-11,4],[-6,19],[-1,27],[3,48],[-4,46],[-21,22],[-17,33],[-10,13],[-13,-1],[-12,22],[-10,32],[-126,139],[-8,40],[-11,-18],[-12,-8],[-14,23],[-16,15],[-16,-2],[-15,12],[-16,7],[-17,1],[-66,43],[-63,68],[-51,29],[-31,38],[-33,31],[-73,30],[-74,20],[-27,1],[-22,-7],[-22,2],[-122,147],[-21,67],[2,39],[6,33],[50,9],[-36,9],[-14,-4],[-29,-27],[-16,-2],[-22,18],[-21,22],[-35,-20],[-17,34],[-7,35],[-9,17],[-13,-2],[-17,-13],[-18,2],[-11,25],[-8,32],[-12,23],[-15,17],[-24,42],[-12,56],[1,98],[4,36],[24,57],[16,54],[-20,6],[-19,-25],[-8,-25],[-3,-31],[-2,-103],[-15,-30],[-22,2],[6,-60],[-9,-57],[-26,-67],[-2,-31],[4,-33],[-6,-32],[-42,-94],[-14,-5],[-32,1],[-32,-15],[-15,22],[-13,28],[-9,34],[-13,70],[-10,71],[32,88],[-11,80],[-21,68],[-55,94],[-57,90],[-26,18],[-43,8],[-13,9],[-13,33],[-10,39],[26,17],[46,46],[26,-3],[70,-24],[21,-23],[20,-13],[48,75],[38,99],[24,21],[20,7],[20,-9],[41,-34],[32,-16],[23,-4],[12,-30],[13,-14],[3,46],[12,54],[22,17],[12,3],[8,14],[-2,50],[-30,6],[17,43],[14,21],[5,21],[1,26],[-59,-50],[-62,-21],[-36,5],[-37,1],[-73,-33],[-27,1],[-65,13],[-36,17],[-27,-13],[-27,-1],[-28,38],[-23,48],[-12,34],[-16,25],[-7,33],[-17,126],[-2,89],[-27,2],[-28,9],[-121,85],[-15,-21],[-17,-11],[-17,-4],[-17,5],[-17,13],[1,23],[13,58],[12,21],[17,17],[11,30],[18,92],[1,31],[-2,32],[1,24],[11,12],[46,30],[95,45],[24,27],[20,43],[24,26],[10,27],[12,21],[74,57],[32,4],[32,-6],[65,-34],[61,-54],[53,-72],[57,-52],[70,-8],[35,5],[34,-7],[14,-15],[24,-44],[-7,-29],[-4,-60],[13,-58],[20,-58],[16,-62],[3,-30],[-6,-65],[-5,-31],[-20,-53],[-11,-58],[7,-71],[4,-71],[-1,-66],[4,-65],[10,-65],[47,-180],[27,-122],[9,68],[-2,76],[9,27],[14,15],[17,-16],[4,-30],[2,-67],[14,-131],[19,-6],[21,20],[3,-40],[-1,-74],[10,-59],[8,-23],[34,-48],[15,-9],[44,-12],[33,-3],[32,17],[21,44],[18,47],[65,110],[18,53],[18,80],[7,18],[63,87],[8,31],[9,59],[14,58],[10,30],[62,28],[64,16],[64,53],[27,46],[2,30],[-14,53],[-1,23],[15,23],[56,67],[66,69],[53,47],[29,0],[27,-42],[28,-34],[150,-101],[24,-31],[21,-42],[30,-29],[33,-14],[31,-27],[28,-35],[64,-64],[86,-79],[21,-5],[80,4],[14,-15],[13,-21],[12,-5],[91,-14],[14,-15],[13,-21],[8,-57],[62,-2]],[[88581,47010],[-14,-7],[-69,17],[-8,24],[-1,12],[16,24],[15,40],[24,14],[10,0],[28,-94],[-1,-30]],[[78251,53040],[16,-47],[3,-31],[-11,-35],[-4,-54],[-33,-42],[-28,10],[-9,15],[-18,82],[2,69],[11,27],[26,-4],[27,38],[18,-28]],[[78451,52413],[-13,-18],[-15,28],[-13,39],[-6,41],[-6,68],[-2,48],[8,28],[5,-1],[23,-28],[15,-49],[9,-15],[1,-45],[-5,-52],[-1,-44]],[[78469,52683],[2,-74],[-20,20],[-17,29],[-25,22],[-32,7],[-23,19],[-16,34],[0,16],[1,13],[5,10],[119,-67],[6,-29]],[[78618,52273],[-5,-22],[-11,16],[-54,25],[-18,2],[-47,28],[-14,14],[-10,19],[3,35],[7,21],[4,59],[12,24],[23,-44],[26,-38],[15,-17],[46,-38],[16,-19],[7,-65]],[[78657,52344],[-9,-17],[-14,4],[-14,20],[-20,35],[-21,31],[-28,20],[-17,5],[-6,8],[6,60],[18,4],[58,-56],[19,-31],[28,-83]],[[78689,52155],[-31,-4],[-9,8],[4,54],[9,33],[14,-1],[16,-49],[-3,-41]],[[78735,52225],[-5,-7],[-24,73],[6,42],[6,11],[13,-26],[10,-27],[8,-32],[-14,-34]],[[78895,52523],[18,-25],[14,16],[-1,-21],[-3,-21],[-17,-59],[-28,13],[-7,19],[-2,15],[4,9],[3,29],[12,0],[7,25]],[[79051,52543],[1,-43],[16,-21],[4,-32],[-3,-51],[-14,-59],[-7,-15],[-20,12],[-6,19],[-3,16],[3,11],[-15,14],[10,22],[-7,32],[-40,-20],[-12,-1],[-2,36],[2,15],[31,45],[18,9],[20,-10],[24,21]],[[79104,51741],[8,-9],[10,30],[19,-41],[11,-21],[15,-20],[-15,-1],[-6,-19],[-4,-4],[-59,66],[-38,-21],[-25,19],[-8,14],[14,36],[13,83],[26,-21],[6,-26],[-2,-7],[17,-16],[18,-42]],[[79020,51650],[26,-56],[6,-20],[-13,-31],[-10,-44],[-6,-9],[-20,16],[-14,-43],[-9,69],[-20,44],[12,44],[5,4],[6,-2],[6,-11],[31,39]],[[78815,51642],[-36,-20],[-41,15],[5,34],[20,41],[17,-2],[31,-27],[12,-23],[-8,-18]],[[80474,51163],[-55,-59],[-13,3],[-10,21],[6,113],[7,34],[39,4],[23,-17],[12,-18],[5,-38],[-2,-23],[-12,-20]],[[81623,47750],[-6,-9],[-47,5],[-30,-47],[-21,-14],[-76,0],[-9,6],[-7,0],[-4,-10],[-24,7],[-77,42],[-10,38],[12,42],[27,58],[56,12],[252,4],[27,-51],[3,-16],[-55,-35],[-11,-32]],[[87489,51200],[-13,-11],[-15,12],[-15,44],[5,34],[17,23],[15,-23],[4,-30],[11,-2],[-9,-47]],[[85346,51557],[-17,-15],[-19,1],[-4,61],[6,78],[18,13],[27,-16],[-10,-20],[8,-42],[-9,-60]],[[85434,51659],[32,-86],[-21,-82],[15,-46],[40,-2],[10,-17],[7,-21],[4,-28],[-10,-23],[-23,-20],[-26,29],[-7,28],[-5,10],[-35,-21],[-10,-2],[-6,39],[8,55],[-24,25],[-23,57],[-1,24],[9,39],[-1,32],[13,3],[23,-43],[11,40],[9,17],[11,-7]],[[86923,48443],[-22,-50],[21,117],[4,59],[20,36],[29,179],[7,-5],[10,-17],[-15,-131],[-41,-92],[-13,-96]],[[86890,48472],[-17,-55],[-11,19],[-7,1],[-4,32],[4,68],[-14,76],[19,-1],[5,-23],[6,-8],[18,-73],[1,-36]],[[85631,49726],[-7,-21],[-16,-14],[-14,1],[5,21],[-4,11],[-10,-5],[-16,-16],[-20,-33],[-13,16],[-2,26],[1,11],[24,45],[29,8],[40,43],[18,-2],[-4,-27],[-6,-20],[-4,-20],[-1,-24]],[[85226,54166],[-11,-12],[-18,4],[-2,30],[18,52],[12,56],[-13,14],[-12,35],[-1,41],[11,76],[15,-6],[14,-33],[6,-62],[10,-47],[-20,-64],[-9,-84]],[[84904,53822],[-7,-18],[-34,32],[2,51],[-4,25],[-9,27],[-4,26],[4,28],[20,-36],[12,-57],[16,-55],[4,-23]],[[86350,47051],[-24,-18],[16,45],[52,104],[18,-19],[25,-4],[-37,-47],[-38,-19],[-12,-42]],[[86065,47261],[-16,-53],[-18,3],[-34,71],[2,50],[3,16],[13,5],[43,-15],[9,-40],[-2,-37]],[[85506,47177],[48,-23],[28,3],[6,-21],[-27,-49],[-56,38],[-10,40],[11,12]],[[86208,50869],[4,-34],[16,-32],[-5,-49],[-7,-7],[4,-23],[7,-17],[-13,-12],[-10,6],[-15,-16],[-10,-22],[-32,-9],[-11,20],[-57,24],[-37,53],[-5,16],[71,62],[32,17],[26,-1],[33,23],[9,1]],[[78435,48687],[-23,-3],[-42,71],[-7,22],[12,21],[13,-2],[48,-45],[9,-22],[-10,-42]],[[77895,50009],[11,-84],[-33,58],[1,40],[-5,26],[-20,33],[-15,40],[-7,96],[5,20],[13,1],[58,-126],[4,-21],[-1,-45],[-8,-14],[-3,-24]],[[77834,50264],[-20,-47],[-33,1],[-6,29],[1,70],[-8,22],[0,9],[6,40],[6,9],[53,-98],[1,-35]],[[77733,50493],[2,-15],[-45,50],[-22,14],[-19,56],[5,26],[1,37],[3,15],[14,5],[18,-27],[13,-66],[23,-61],[7,-34]],[[77349,51537],[-17,-27],[-25,26],[9,37],[4,51],[15,41],[5,47],[-29,130],[14,5],[12,-14],[19,-87],[17,-52],[-7,-70],[-17,-87]],[[76795,53202],[-18,-5],[-16,12],[-14,33],[-75,96],[-23,1],[-16,25],[-20,8],[-21,64],[-5,35],[16,16],[9,35],[25,-15],[28,-62],[29,-23],[8,-12],[14,-34],[66,-85],[7,-28],[5,-29],[1,-32]],[[83900,48710],[-18,-15],[-33,66],[-14,54],[3,31],[10,26],[5,7],[-2,28],[13,14],[15,-2],[9,-38],[11,-10],[6,-36],[-5,-125]],[[84225,51168],[6,-36],[-10,-31],[11,-59],[28,78],[27,10],[15,-13],[10,-15],[6,-30],[-10,-63],[-18,-30],[-22,-5],[-11,37],[-15,4],[-10,-81],[-5,-12],[-13,-10],[-12,22],[-2,12],[17,37],[-9,108],[-13,-20],[-34,-99],[-26,-44],[-8,23],[-14,67],[6,86],[21,58],[18,-4],[52,18],[15,-8]],[[83850,51608],[12,-25],[-7,-30],[-9,7],[-26,0],[-9,-2],[-12,-18],[-7,0],[5,27],[21,41],[14,-6],[18,6]],[[83479,48215],[-11,-96],[-6,33],[-2,88],[-7,43],[5,49],[-1,126],[8,58],[16,-74],[4,-38],[-6,-189]],[[82048,47827],[-22,-10],[-21,21],[0,27],[5,25],[32,13],[17,0],[18,-18],[12,-18],[6,-21],[-34,-1],[-13,-18]],[[82306,49614],[-59,-107],[-9,28],[5,109],[-17,67],[2,51],[11,89],[15,68],[34,46],[8,5],[-2,-83],[7,-31],[2,-27],[-3,-23],[6,-105],[4,-26],[-8,-33],[4,-28]],[[84152,45559],[-26,-1],[-8,6],[-3,51],[8,28],[60,37],[23,34],[34,70],[20,18],[5,8],[4,-1],[3,-54],[9,-31],[1,-17],[-30,-27],[-26,-62],[-59,-41],[-15,-18]],[[84523,47045],[-17,-36],[-11,-62],[-11,-19],[-22,-11],[-14,62],[-24,-3],[12,54],[11,21],[16,0],[7,-22],[4,-4],[36,92],[7,1],[6,-4],[5,-11],[-5,-58]],[[84423,47077],[-39,-15],[-24,-72],[-19,1],[-11,-32],[-2,-14],[1,-12],[-2,-13],[-8,-12],[-17,20],[-16,-25],[-6,-7],[-23,30],[-21,-2],[-6,5],[26,52],[36,50],[6,18],[-14,5],[-8,7],[-2,12],[23,7],[16,2],[12,-16],[8,1],[48,58],[20,-14],[14,-14],[8,-20]],[[84254,47030],[-6,-25],[-75,2],[2,33],[21,36],[7,12],[23,11],[33,-20],[-5,-49]],[[87420,48070],[-15,-6],[-8,48],[13,12],[14,-29],[-4,-25]],[[78728,52447],[2,-32],[-19,8],[-13,37],[11,26],[7,10],[7,-36],[5,-13]],[[78840,52304],[2,-17],[-25,34],[-1,24],[3,11],[15,-26],[6,-26]],[[78955,52323],[-18,-17],[-22,53],[1,12],[2,9],[4,6],[13,-27],[16,-10],[4,-26]],[[79080,51877],[2,-14],[-13,16],[-8,10],[-5,8],[-29,79],[12,-5],[32,-69],[9,-25]],[[79523,53661],[-1,-39],[-19,23],[-4,44],[7,14],[13,-8],[4,-34]],[[79377,53492],[-12,-2],[-3,17],[1,29],[-2,24],[-3,17],[0,30],[11,-15],[8,-14],[10,-10],[7,-6],[4,-5],[-7,-42],[-14,-23]],[[80246,53516],[-14,-30],[-14,19],[22,61],[5,4],[1,-54]],[[80264,50910],[-32,-25],[-10,55],[21,16],[22,-14],[-1,-32]],[[79853,50172],[-11,-14],[-7,14],[-2,16],[5,20],[15,2],[7,-6],[-7,-32]],[[79690,50111],[-5,-11],[-15,6],[-11,16],[-7,15],[-2,16],[15,20],[32,-20],[-7,-42]],[[81780,47733],[-4,-22],[-14,5],[-13,38],[6,10],[8,4],[9,-4],[8,-31]],[[81310,48495],[-6,-20],[-26,1],[-5,24],[17,41],[12,3],[10,-15],[-2,-34]],[[79236,48018],[-17,-13],[-13,11],[-6,16],[19,40],[10,10],[9,3],[5,-22],[-7,-45]],[[77037,53038],[-2,-13],[-29,61],[-32,34],[13,8],[27,-9],[11,-9],[10,-30],[2,-42]],[[76489,55191],[-6,-16],[-16,8],[-18,52],[6,10],[12,-5],[21,-12],[2,-20],[-1,-17]],[[84332,50861],[-19,-4],[-13,17],[1,85],[12,18],[5,-3],[4,-25],[5,-23],[10,-21],[-5,-44]],[[84233,49473],[-27,-69],[-19,4],[-23,45],[-6,50],[-1,18],[16,28],[52,-9],[9,-25],[-1,-42]],[[84401,50716],[5,-23],[-17,1],[-7,43],[1,24],[18,-45]],[[84208,50796],[-20,-47],[-2,25],[4,23],[5,16],[9,9],[4,-26]],[[83184,46808],[-11,-6],[-11,8],[4,52],[-6,34],[11,28],[3,48],[5,15],[6,-15],[4,-10],[5,-5],[13,-1],[3,-21],[-1,-19],[-5,-21],[-15,-23],[-11,-25],[6,-39]],[[83075,47097],[-12,-1],[-2,23],[4,24],[12,11],[5,0],[8,-22],[2,-11],[-8,-15],[-9,-9]],[[82113,46791],[-8,-20],[-22,35],[-6,16],[17,23],[6,3],[14,-24],[-1,-33]],[[82745,54254],[9,-55],[2,-21],[-52,-29],[-31,68],[6,27]],[[82682,53732],[-3,-19],[-24,47],[-7,33],[3,27],[25,2],[12,-17],[-6,-73]],[[84458,48402],[-3,-28],[-10,32],[-9,15],[1,34],[13,-12],[8,-41]],[[84340,48806],[-1,-58],[-11,3],[-9,20],[-3,20],[1,15],[5,13],[18,-13]],[[83548,47742],[-29,-3],[-8,5],[-3,56],[32,-24],[10,-2],[-2,-32]],[[82654,47023],[-7,-1],[-12,11],[5,24],[-7,40],[2,32],[16,18],[33,2],[1,-24],[-31,-102]],[[82339,49847],[-10,-99],[-17,56],[19,67],[9,13],[-1,-37]],[[85380,52298],[-9,-18],[-9,6],[-6,24],[2,18],[8,11],[9,-8],[5,-33]],[[87325,50619],[-8,-8],[-3,25],[5,33],[5,6],[6,-2],[8,-12],[-13,-42]],[[87102,49397],[14,-31],[-33,24],[-47,51],[-3,34],[40,-52],[29,-26]],[[86362,51395],[-7,-30],[-14,-19],[-119,-36],[10,21],[5,21],[8,11],[12,-3],[6,7],[5,2],[7,-3],[12,9],[24,-6],[25,5],[-2,28],[28,-7]],[[86284,51538],[-16,-1],[-28,25],[16,22],[11,5],[9,13],[5,0],[12,-11],[7,-19],[-16,-34]],[[85985,51735],[-12,-2],[-10,34],[-28,37],[-17,65],[65,-107],[2,-27]],[[85403,51839],[-1,-17],[-9,24],[-6,6],[6,62],[4,11],[5,-43],[1,-43]],[[85394,52213],[-10,-7],[-3,2],[-3,24],[5,39],[12,0],[5,-6],[1,-29],[-7,-23]],[[85360,51393],[-3,-12],[-29,15],[-8,8],[15,82],[14,-2],[12,-78],[-1,-13]],[[85755,49800],[0,-25],[-2,-8],[-15,9],[-11,-1],[-10,44],[3,10],[20,-12],[7,-5],[8,-12]],[[85711,49777],[-48,-30],[11,56],[6,15],[24,-15],[7,-26]],[[85199,54075],[1,-25],[-17,56],[-7,65],[14,-23],[15,-49],[-6,-24]],[[85236,54013],[-5,-6],[-10,15],[-6,17],[1,17],[7,9],[14,-26],[0,-15],[-1,-11]],[[84835,53370],[-3,-13],[-11,68],[9,34],[12,-13],[3,-12],[-11,-32],[1,-32]],[[86661,47694],[-4,-28],[-12,15],[-11,33],[-17,5],[-13,8],[-7,16],[47,7],[17,-56]],[[85741,47705],[-13,-15],[-20,30],[-6,13],[13,29],[14,9],[9,-13],[4,-13],[-2,-14],[1,-26]],[[85393,47451],[-17,-13],[5,43],[-1,34],[29,-11],[0,-27],[-3,-10],[-13,-16]],[[84281,45908],[-25,-20],[0,42],[20,54],[17,18],[10,-22],[1,-9],[-26,-20],[3,-43]],[[83856,45742],[-14,-7],[-30,17],[-6,10],[25,28],[20,39],[23,4],[14,-8],[-5,-47],[-27,-36]],[[87449,48136],[-7,-4],[0,28],[8,25],[8,14],[9,1],[-18,-64]],[[87409,47955],[-5,-9],[-7,18],[-1,12],[10,32],[9,18],[11,1],[-3,-26],[-14,-46]],[[85551,50151],[-14,-48],[-24,2],[-4,7],[29,30],[13,9]],[[85445,49933],[7,-25],[-28,16],[-12,25],[12,15],[7,4],[14,-35]],[[84160,46920],[-9,-34],[-16,10],[4,33],[8,19],[22,28],[22,5],[13,-10],[4,-11],[-34,-11],[-14,-29]],[[71402,72067],[33,36],[35,37],[36,38],[41,44],[35,37],[28,31]],[[71610,72290],[1,-2],[2,-5],[12,-14],[12,-6],[14,13],[18,10],[9,-6],[1,-17],[-11,-82],[1,-33],[18,-66],[23,-109],[22,-102],[12,-66],[13,-28],[52,-28],[43,-23],[26,-37],[28,-36],[20,-22],[9,-29],[2,-25],[-1,-18],[-11,-22],[-50,-59],[-6,-18],[-1,-24],[10,-73],[6,-45],[1,-92],[4,-86],[17,-40],[15,-25],[8,-24],[18,-31],[15,-24],[13,-14],[6,-31],[-3,-37],[-6,-32],[2,-17],[10,-12],[16,-32],[2,-47],[-1,-32],[6,-29],[2,-32],[-5,-80],[1,-33],[0,-4],[-14,-2],[-12,-12],[-17,-51],[-19,-13],[-22,-4],[-22,31],[-19,32],[-5,18],[-4,34],[-10,23],[-20,-11],[-29,-4],[-31,-8],[-6,-7],[-1,-15],[8,-30],[7,-40],[3,-56],[9,-37],[3,-12],[50,-111],[13,-23],[3,-14],[-4,-41],[-9,-47],[2,-38],[16,-41],[14,-29],[-13,-39],[-8,-45],[9,-21],[-5,-65],[4,-12],[10,-5],[15,4],[15,18],[13,3],[7,-5],[11,49],[9,7],[17,-13],[35,-93],[30,-78],[8,-15],[6,-9],[29,-41],[20,-26],[27,10],[36,1],[22,-25],[12,-17],[1,-3],[2,0],[43,-62],[19,5],[12,-18],[4,-43],[-6,-46],[2,-21],[19,-4],[41,-30],[37,-26],[19,-9],[20,-19],[18,-32],[35,-40],[31,-31],[7,-42]],[[74474,67897],[-3,20],[3,16],[9,9],[37,12],[42,24],[17,13],[12,14],[13,20],[12,0],[38,-30],[13,-19],[7,-58],[5,-22],[-5,-58],[-22,-142],[4,-53],[19,-38],[16,-27]],[[74691,67578],[-2,-11],[-34,-46],[-6,-24],[7,-24],[14,-20],[6,-20],[6,-60],[17,-16],[34,-39],[30,-28],[51,18],[14,-12],[25,-14],[20,-4],[11,-10],[7,-9],[-1,-13],[1,-12],[28,-3],[15,-7],[49,13],[50,17],[23,54],[11,4],[28,20],[29,-22],[31,-32],[17,-9],[33,-5],[32,4],[77,14],[43,-7],[39,44],[8,0],[17,-34],[43,-3],[22,16],[25,13],[16,4],[12,0],[15,-3],[15,12],[6,23],[-1,34],[-11,38],[-9,22],[-1,12],[3,27],[7,39],[15,44],[-11,43],[-15,49],[-11,5],[-28,-12],[-30,3],[-23,29],[-18,37],[-4,31],[5,38],[8,34],[2,13]],[[75453,67833],[22,0],[31,-7],[24,-10],[19,0],[34,45],[16,2],[18,9],[7,8],[6,-6],[20,-6],[20,3],[18,12],[19,19],[32,40],[7,23],[0,21],[-6,14],[-6,7],[2,18],[14,31],[50,47],[42,57],[24,43],[10,52],[14,57],[13,22],[30,14],[84,21],[27,23],[39,42],[20,33],[11,27],[1,30],[26,10],[23,48],[28,49],[48,41],[43,56],[15,-9],[16,-26],[8,-29],[2,-15],[55,-18],[9,3],[40,-26],[38,-32],[20,-8],[10,1],[9,10],[10,28],[10,20],[7,8],[-1,32],[54,61],[49,45],[42,32],[12,-13],[14,-25],[18,-62],[11,-16],[29,9],[5,-7],[-5,-22],[-19,-28],[-25,-26],[-16,-20],[5,-68],[-1,-24],[7,-7],[51,67],[25,14],[9,-16],[2,-37],[21,-74],[8,-38],[-51,-91],[-19,-47],[1,-16],[-1,-16],[-14,-24],[1,-9],[11,-15],[13,-11],[6,1],[11,22],[48,31],[14,-6],[34,-48],[16,-3],[41,-14],[27,18],[19,-16],[40,-60],[9,-11]],[[77033,68097],[-3,-36],[-2,-40],[10,-32],[1,-28],[-2,-25],[-8,-18],[-23,-10],[-18,-30],[-31,-45],[-24,-35],[-17,-32],[-7,-32],[2,-42],[5,-43],[56,-159],[0,-28],[-18,-8],[-23,18],[-21,26],[-22,68],[-19,21],[-18,4],[-109,-35],[-23,-10],[-36,-25],[-25,-52],[-18,-47],[-19,-18],[-28,-37],[-76,-112],[-44,-48],[-29,-18],[-20,-25],[-11,-42],[-8,-29],[-3,-73],[5,-90],[11,-58],[6,-12],[1,-17],[-11,-31],[-15,-26],[-7,-17],[-6,-82],[-13,-40],[-23,-59],[-21,-45],[-33,-35],[-13,-28],[-12,-52],[-7,-44],[0,-16],[4,-14],[13,-16],[17,-15],[8,-23],[1,-28],[-12,-68],[-22,-95],[-26,-74],[-26,-71],[-6,-24],[-23,-87],[-21,-120],[-13,-81],[-12,-56],[-15,-2],[-18,18],[-43,23],[-27,19],[-21,17],[-14,0],[-19,-12],[-19,-7],[-12,8],[-27,50],[-8,-6],[-5,-24],[18,-143],[12,-53],[-2,-88],[-5,-109],[-7,-119],[-4,-28],[-12,-31],[-15,-9],[-14,13],[-11,-3],[-3,-20],[3,-52],[-14,-58],[-10,-51],[3,-49],[5,-49],[16,-108],[0,-39],[-3,-36],[-9,-14],[-14,2],[-7,-15],[-6,-22],[-16,-81],[-16,-9],[-15,12],[-23,55],[-14,16],[-9,-1],[-4,-15],[-6,-32],[-6,-22],[-16,-19]],[[75714,64503],[-3,40],[-8,209],[-7,66],[-5,92],[-7,28],[-10,51],[-10,43],[-9,19],[-5,81],[-2,99],[0,47],[-13,97],[-12,110],[-16,-4],[-10,26],[-7,0],[-23,-25],[-18,8],[-14,-3],[0,-51],[3,-54],[-6,-19],[-36,-64],[-9,-42],[1,-45],[4,-59],[-6,-31],[-16,-28],[-21,-14],[-18,7],[-12,24],[-11,62],[-10,34],[-10,8],[-8,-9],[-1,-39],[0,-33],[-2,-3],[-6,5],[-6,16],[-17,155],[-25,119],[-1,46],[8,59],[11,91],[29,56],[4,24],[5,19],[7,4],[37,-5],[13,9],[11,27],[16,21],[16,9],[13,3],[20,-21],[9,12],[6,38],[9,37],[5,18],[14,8],[18,2],[5,7],[5,13],[4,49],[23,111],[8,49],[1,8],[-1,55],[7,8],[37,-27],[16,1],[9,11],[3,20],[-5,23],[-26,41],[-47,55],[-43,34],[-80,-5],[-79,-11],[-23,6],[-29,15],[-70,-2],[-86,-9],[-32,5],[-17,0],[-32,-6],[-52,16],[-37,20],[-32,22],[-38,20],[-9,0],[-5,7],[-4,18],[-1,23],[8,106],[-7,161],[6,59],[-31,132],[-11,25],[-15,1],[-9,-17],[-3,-31],[5,-35],[-12,-38],[-23,-13],[-27,13],[-22,18],[-29,40],[-21,55],[-2,61],[-10,40],[-13,19],[-10,5],[-9,-4],[-8,-21],[7,-22],[9,-30],[-3,-20],[-8,-3],[-12,9],[-19,-5],[-19,16],[-11,1],[-11,6],[0,35],[-17,45],[-28,50],[-28,31],[-14,-4],[-6,-35],[1,-12],[10,-7],[14,-20],[3,-20],[-2,-19],[-17,-33],[-13,-31],[-27,-46],[-23,-52],[-6,-40],[-9,-36],[-4,-39],[6,-27],[12,-17],[29,-13],[31,-52],[24,-72],[14,-21],[26,-24],[48,-3],[8,-20],[7,-52],[9,-18],[25,-25],[2,-18],[-6,-21],[-11,-16],[-20,-11],[-20,-4],[-19,6],[-29,5],[-33,0],[-23,-131],[-16,-46],[-10,1],[-25,22],[-11,-4],[-29,-116],[-4,-28],[-2,-21],[16,-45],[18,-37],[22,-14],[17,11],[14,-15],[17,-37],[28,-25],[40,-12],[23,-29],[2,-25],[-1,-26],[-4,-67],[-4,-39],[-21,-102],[-16,-87],[8,-42],[6,-17],[5,-13],[17,-33],[12,-32],[-10,-83],[6,-22],[23,-14],[25,-11],[9,-14],[-22,-84],[5,-59],[9,-55],[6,-90],[1,-9],[-2,-23],[15,-69],[21,-136],[2,-51],[-1,-54]],[[74736,64569],[-7,-90],[-22,1],[20,-60],[6,-44],[3,-60],[-24,-7],[-16,7],[-14,52],[-7,-48],[-24,-44],[-9,22],[-5,23],[-1,41],[13,157],[-2,17],[-7,12],[-13,6],[-5,32],[-21,-167],[9,-68],[-4,-32],[-38,-26],[-39,63],[-5,20],[-3,-35],[-7,-43],[-36,8],[-19,33],[12,58],[23,137],[4,62],[-30,45],[-26,27],[-15,63],[6,-69],[14,-24],[20,-17],[21,-35],[-15,-43],[-15,-27],[-29,-101],[-34,-57],[-41,-42],[-132,-63],[-28,-25],[-41,-78],[-26,-74],[-5,-75],[15,-81],[12,-127],[10,-26],[-14,-47],[-25,-49],[-20,-66],[2,-37],[-5,-24],[-70,-82],[-15,-47],[-19,-48],[-23,27],[-14,0],[19,-38],[-3,-25],[-6,-14],[-18,-14],[-101,-60],[-77,-57],[-22,3],[4,17],[14,15],[-1,66],[-15,12],[-12,4],[-59,-79],[-23,-79],[5,-15],[13,4],[39,44],[19,-12],[1,-18],[-60,-68],[-126,-220],[-6,-44],[-17,-49],[-22,-46],[-41,-112],[-78,-167],[-21,-62],[-125,-128],[-23,-39],[-51,-125],[-53,-102],[-62,-85],[-106,-108],[-65,-102],[-20,-68],[-2,-25],[7,-33],[12,-30],[3,-25],[-6,-44],[-3,-24],[-19,-60],[-33,-43],[-105,-90],[-14,3],[-86,18],[-32,-17],[-13,-42],[-30,-174],[-28,-46],[-11,-42],[-4,-29],[-17,1],[-14,13],[-11,-10],[-12,59],[-21,12],[-17,4],[-73,-59],[-25,-47],[-53,-223],[-14,-144],[13,-159],[18,-127],[4,-57],[-2,-75],[-10,-36],[-6,-43],[8,-88],[23,-116],[5,-48],[1,-51],[17,-115],[-12,20],[-9,49],[-21,62],[-26,-62],[14,-44],[49,-53],[15,-44],[-32,-386],[-24,-138],[-29,-90],[-16,-34],[-34,-142],[-24,-172],[-5,-67],[11,-74],[-12,-43],[-16,-34],[30,15],[10,-40],[3,-42],[1,-246],[-3,-257],[-23,-11],[-25,-2],[-22,7],[-16,10],[-39,-14],[-21,-28],[-17,-47],[1,-81],[-72,-203],[-16,-67],[-6,-65],[10,-34],[18,-35],[24,-14],[47,-14],[23,-19],[15,-34],[-55,36],[-65,8],[-155,-95],[-41,-66],[-23,-57],[-15,-131],[-3,-88],[-18,-73],[-81,-112],[-51,-34],[-19,-30],[-60,39],[-66,98],[-27,53],[-97,253],[-18,32],[-19,108],[-4,41],[-5,16],[-9,11],[-5,16],[-21,124],[-9,130],[-14,144],[11,-10],[17,-47],[8,-70],[1,-96],[12,-11],[11,9],[-31,222],[-28,55],[-7,4],[-7,36],[-1,44],[2,22],[-21,72],[-8,44],[-48,220],[-22,157],[-33,175],[-22,62],[-34,135],[-28,63],[-30,84],[-24,38],[-9,19],[-70,292],[-21,162],[-18,76],[-9,58],[-25,247],[0,44],[-3,49],[-17,105],[-31,113],[-9,70],[1,28],[-20,110],[-4,50],[-13,47],[-15,42],[-16,34],[-37,112],[-14,27],[-25,72],[-18,134],[-23,52],[36,0],[-22,49],[-11,32],[-12,20],[17,50],[-27,-1],[-15,30],[-20,93],[-37,105],[-6,57],[-32,177],[-27,426],[-26,189],[2,54],[-30,165],[-15,110],[-6,93],[-8,61],[-7,121],[-12,39],[-1,23],[8,55],[22,85],[8,54],[-10,77],[-20,-80],[-18,-23],[-9,60],[0,80],[-2,20],[5,27],[49,-13],[-56,49],[-6,29],[-3,22],[12,40],[-20,33],[-8,103],[-6,24],[-2,19],[11,142],[48,280],[4,63],[-5,90],[-10,71],[-5,76],[-3,19],[-17,7],[-16,28],[-19,112],[17,36],[13,21],[-18,-9],[-15,3],[29,52],[25,39],[59,46],[25,30],[-37,-27],[-38,-10],[-83,6],[14,104],[14,35],[16,19],[-23,-6],[-27,9],[9,106],[21,22],[22,5],[28,15],[-30,17],[-31,9],[-37,-18],[-34,13],[-42,0],[17,-14],[17,-33],[-8,-57],[-9,-36],[-23,-24],[-18,-38],[-6,-32],[-10,-24],[18,-16],[19,-12],[11,-26],[13,-39],[-1,-75],[-49,-177],[-17,-39],[-124,-107],[-48,-58],[-104,-75],[-40,-14],[-44,15],[-66,57],[-99,147],[-26,48],[-79,189],[-57,99],[-44,93],[-54,88],[-51,118],[-10,54],[3,54],[19,30],[22,-12],[18,-46],[12,-21],[11,-8],[76,71],[29,-3],[20,35],[25,-7],[52,55],[22,3],[26,11],[42,140],[31,89],[20,19],[-1,22],[-5,28],[-16,-7],[-10,-27],[-8,-33],[-8,-19],[-24,18],[-17,-3],[-20,-11],[-75,-52],[-31,-47],[-20,-9],[-119,51],[-117,118],[-49,79],[-31,100],[-31,120],[10,33],[48,72],[42,56],[-37,-25],[-41,-35],[-20,-24],[-22,-51],[-31,-12],[-11,76],[-8,74]],[[76080,55778],[-17,-48],[-33,145],[-15,9],[0,69],[8,28],[38,30],[10,-17],[20,-134],[-11,-82]],[[76036,56080],[-26,-54],[-12,33],[5,22],[11,13],[11,17],[11,-31]],[[75872,56595],[8,-22],[-15,4],[-15,32],[4,31],[6,12],[12,-57]],[[75956,56381],[-22,-1],[-6,24],[-9,26],[6,25],[12,6],[16,-40],[4,-28],[-1,-12]],[[75982,56484],[-13,-22],[-4,3],[-1,16],[-1,12],[-2,20],[-2,37],[11,30],[10,-6],[-5,-31],[7,-59]],[[75774,57106],[-13,-4],[-7,20],[-1,23],[7,15],[6,7],[7,-1],[7,-39],[-6,-21]],[[75694,57923],[-8,-20],[-29,15],[3,60],[-7,58],[5,24],[21,42],[18,18],[12,-56],[5,-55],[-20,-86]],[[75747,58399],[-13,-12],[-14,15],[11,23],[2,47],[13,-26],[0,-30],[1,-17]],[[75756,58488],[-7,-14],[-9,15],[-25,104],[-5,66],[-7,23],[9,33],[12,11],[6,37],[3,57],[10,46],[5,13],[20,0],[6,6],[-3,44],[-12,20],[-4,12],[0,106],[3,43],[8,30],[-6,64],[4,24],[15,33],[7,72],[-6,21],[14,110],[-1,73],[19,74],[29,33],[9,1],[1,-62],[3,-21],[-17,-37],[16,-49],[-2,-17],[-6,-39],[-11,-37],[-15,-16],[-11,-50],[-7,-19],[22,-53],[7,-180],[-16,-49],[-19,-10],[4,-120],[-3,-26],[-19,-59],[-4,-26],[-11,-24],[5,-30],[9,-13],[0,-25],[-8,-64],[-1,-72],[-11,-59]],[[75837,58776],[13,-79],[-22,35],[-8,24],[11,17],[6,3]],[[75754,59253],[-9,-37],[-1,80],[4,10],[4,3],[6,-8],[-4,-48]],[[70216,58296],[-2,-4],[0,10],[2,17],[3,11],[1,-1],[0,-11],[-2,-15],[-2,-7]],[[70296,56606],[-4,-7],[-4,-3],[-3,1],[-1,7],[0,6],[4,-7],[5,6],[5,18],[1,6],[1,-3],[-1,-10],[-3,-14]],[[45682,89993],[32,-3],[52,20],[22,13],[53,45],[32,13],[49,-3],[23,3],[1,-5],[-30,-18],[-24,-6],[-35,-27],[-32,-62],[-25,-30],[1,-13],[29,-24],[32,-13],[30,12],[13,-5],[12,-17],[6,-18],[2,-17],[-6,-36],[-17,-37],[-24,-30],[3,-10],[19,-5],[92,20],[10,-1],[5,-10],[1,-19],[5,-16],[9,-15],[-3,-15],[-40,-48],[48,30],[37,9],[65,-15],[26,-18],[15,-30],[23,10],[9,-1],[15,-17],[0,-18],[-10,-27],[-4,-24],[-11,-10],[-21,-7],[-6,-9],[9,-18],[14,-18],[19,-1],[3,-9],[1,-10],[-3,-12],[-6,-8],[-10,-4],[-13,-13],[48,-29],[6,-10],[1,-16],[-4,-17],[-8,-18],[-15,-11],[-34,-2],[-22,-12],[7,-20],[0,-26],[-6,-29],[-28,-46],[-26,-24],[-25,-15],[-45,5],[-24,12],[2,-39],[-25,-24],[5,-20],[9,-10],[-5,-26],[-11,-26],[-20,-27],[-23,-17],[-45,-21],[-38,-35],[-26,-14],[-65,1],[-67,-22],[-93,-47],[-64,-38],[-48,-43],[-65,-69],[-48,-30],[-27,-7],[-54,-7],[-45,-19],[-150,-35],[-50,-19],[-7,-18],[-21,-27],[-1,-9],[9,-8],[2,-9],[-19,-32],[-37,-22],[-17,0],[-21,20],[-10,-1],[-3,-3],[0,-6],[12,-24],[-23,-10],[-97,-28],[-166,20],[-65,22],[-81,33],[-49,9],[-68,2],[-56,47],[-26,29],[-2,12],[3,14],[5,9],[9,5],[19,0],[2,5],[-14,23],[-14,-8],[-36,-33],[-16,2],[-21,16],[-1,16],[-41,6],[-36,20],[-36,28],[-5,11],[17,16],[-3,3],[-13,3],[-26,-5],[-39,-36],[-17,-9],[-257,-8],[-65,-4],[-13,-5],[-11,23],[-10,53],[-4,34],[3,17],[9,20],[14,-4],[13,-15],[12,-23],[14,-11],[89,28],[37,18],[15,18],[18,29],[20,16],[9,14],[18,46],[13,21],[14,16],[18,10],[40,7],[-27,11],[-24,0],[-85,-48],[-28,0],[1,7],[12,14],[29,24],[-20,1],[-8,11],[-1,22],[15,37],[69,47],[24,7],[7,10],[-9,7],[-14,5],[-70,-49],[-50,-17],[-15,3],[-26,19],[-8,9],[-12,22],[2,13],[24,38],[-4,8],[-17,3],[-44,36],[-71,-4],[-174,21],[-36,-9],[-59,-30],[-36,-10],[-16,6],[-15,16],[-14,22],[-12,27],[5,19],[23,11],[17,5],[47,-6],[58,19],[37,4],[10,3],[22,20],[11,5],[16,-7],[8,-14],[59,22],[20,10],[2,7],[9,8],[28,-12],[24,0],[29,8],[52,3],[115,2],[18,18],[8,15],[10,39],[-4,8],[-73,-36],[-16,1],[-84,19],[-30,21],[10,18],[44,37],[46,30],[67,32],[16,13],[2,15],[-45,26],[-85,-7],[-22,31],[-70,19],[-47,-12],[-25,19],[-61,-26],[-134,-38],[-54,-27],[-28,-8],[-33,21],[-57,25],[-64,7],[-6,14],[37,44],[26,8],[26,-4],[49,-30],[34,-10],[-43,45],[1,17],[-3,26],[-13,11],[-13,29],[5,9],[17,4],[34,-10],[82,-50],[40,9],[22,18],[29,14],[-8,7],[-70,1],[-38,10],[-19,14],[-17,25],[6,11],[20,10],[60,-3],[-40,43],[-27,24],[-3,12],[2,15],[3,10],[6,5],[69,-25],[15,-1],[-14,16],[-30,24],[-2,9],[13,7],[6,14],[1,11],[21,9],[21,1],[21,-9],[66,-46],[10,-13],[3,-17],[-3,-22],[2,-8],[26,7],[21,-9],[10,2],[26,32],[17,-7],[11,-15],[3,-14],[2,-18],[-5,-39],[1,-5],[18,22],[31,1],[4,11],[1,41],[-3,34],[-3,7],[-101,48],[-17,11],[-22,24],[5,11],[19,11],[30,4],[68,-1],[7,5],[-13,13],[-32,8],[-7,7],[-4,14],[-38,-8],[-42,0],[-40,8],[-1,11],[16,15],[33,26],[15,7],[46,-5],[46,8],[37,-9],[29,-26],[42,-45],[57,-29],[5,-9],[30,-24],[60,-63],[60,-37],[3,-10],[-10,-11],[-23,-13],[5,-7],[31,-9],[21,-25],[2,-11],[-20,-78],[-10,-16],[-13,-9],[-56,15],[14,-25],[40,-26],[9,-15],[-6,-14],[4,-4],[15,8],[6,-8],[-3,-24],[-6,-20],[-10,-16],[3,-7],[16,2],[14,-4],[23,-22],[19,-67],[9,-21],[7,19],[8,49],[8,25],[7,1],[7,8],[5,15],[11,55],[38,41],[18,12],[16,3],[9,-5],[28,-43],[17,-7],[9,2],[12,29],[15,56],[3,63],[-8,69],[5,49],[18,30],[23,9],[29,-12],[22,-18],[42,-68],[34,-36],[29,-39],[15,-12],[29,-7],[7,3],[6,9],[2,15],[-6,98],[8,31],[12,22],[53,12],[28,14],[28,22],[22,12],[19,2],[19,-9],[19,-19],[31,-37],[39,-61],[50,-46],[26,-73],[5,-13],[6,-1],[7,9],[4,14],[1,32],[-14,43],[-46,109],[-1,20],[6,17],[33,1],[75,-9],[25,-17],[51,-66],[15,-16],[8,-5],[4,9],[20,12],[13,15],[23,36],[51,66],[10,2],[15,-5],[26,-18],[12,-13],[24,-11],[25,4],[35,23],[38,14],[14,32],[2,15],[-31,97],[13,20],[68,24],[59,2],[14,-7],[38,-47],[25,-23],[13,-19],[3,-42],[15,-16],[29,-17]],[[55251,78301],[-1,0],[-19,-12],[-31,-7],[-16,5],[-28,-54],[-8,-10],[-27,-17],[-22,-8],[-19,7],[-7,0],[-84,3],[-43,12],[-28,21],[-19,23],[-9,27],[-21,15],[-34,6],[-27,26],[-19,46],[-26,37],[-32,27],[-26,38],[-19,50],[-34,44],[-50,40],[-15,8]],[[54470,78838],[44,62],[22,18],[26,-3],[8,5],[2,9],[4,21],[3,19],[2,18],[-3,10],[-12,3],[-6,45],[6,17],[6,12],[-7,54],[2,18],[20,3],[16,12],[14,13],[4,17],[11,34],[-10,42],[-58,27],[-3,11],[13,12],[15,17],[8,13],[11,2],[16,-7],[28,-30],[10,-5],[11,9],[11,2],[30,-1],[26,7],[-6,32],[0,24],[-4,19],[3,20],[10,16],[3,36],[17,25]],[[25739,59319],[2,61],[-23,25],[-12,50],[-11,34],[3,21],[-1,24],[-31,19],[-30,-14],[-17,9],[-12,13]],[[25607,59561],[21,30],[2,18],[-7,14],[-7,8],[2,34],[4,40],[12,94],[-4,17],[-20,28],[-25,3],[-27,-9],[-13,14],[-12,32],[-20,16],[-34,-26],[-37,-39],[-11,-14],[-10,2],[-4,29],[-2,35],[-2,8],[-20,12],[-23,9],[-11,10],[-11,23],[-28,30],[-6,22],[-37,52],[-7,25],[-8,19],[-18,23],[-14,-5],[-46,29],[-7,3]],[[25177,60147],[6,26],[15,39],[32,45],[2,36],[-8,68],[-8,45],[4,20],[10,80],[8,19],[46,40],[4,6],[37,57],[40,63],[42,69],[47,78],[26,45],[12,20]],[[25492,60903],[27,-16],[21,37],[12,12],[29,44],[9,10],[48,18],[23,-1],[21,-44],[16,-25],[30,21],[26,5],[105,-42],[42,19],[76,4],[35,-11],[49,59],[31,12],[37,27],[-5,29],[-9,12],[56,-12],[83,-60],[89,11],[32,32],[21,9],[91,-61],[24,-47],[19,-4],[14,10],[4,10],[-18,10],[-8,15],[72,-29],[135,-222],[3,-18],[-58,65],[-31,-5],[-8,-10],[2,-36],[3,-17],[13,-2],[10,10],[24,-12],[15,-24],[19,-36],[12,-40],[12,-1],[12,24],[23,3],[15,-26],[11,1],[-15,42],[-35,41],[9,1],[77,-74],[21,-92],[19,-21],[18,-29]],[[25994,61277],[-44,-45],[-14,1],[20,35],[33,30],[28,14],[23,-6],[-46,-29]],[[26147,61325],[-21,-33],[-4,15],[10,31],[13,17],[12,-1],[-3,-14],[-7,-15]],[[30061,63201],[6,-17],[13,-116],[1,-38],[-13,-56],[2,-22],[28,-52],[0,-18],[-3,-19],[-24,-49],[-18,-34],[6,-39],[15,-36],[2,-31],[-5,-41],[-22,-50],[-12,-18],[-34,-2],[-3,-7],[16,-49],[19,-56],[31,-43],[7,-41],[-8,-38],[-1,-95]],[[30064,62234],[-23,46],[-26,38],[-16,15],[-16,10],[-123,-5],[-14,-7],[-11,-12],[-11,-6],[-34,-12],[-34,-2],[-79,31],[-31,16],[-31,10],[-36,-3],[-36,-10],[-29,-22],[-21,-40],[-4,-36],[-13,-10],[-29,59],[-27,41],[-30,31],[-62,45],[-12,27],[-5,32],[26,101],[28,19],[16,3],[35,-12],[35,-23],[31,-15],[49,-6],[27,-25],[187,-38],[35,-12],[14,4],[12,15],[10,27],[12,21],[56,4],[11,9],[8,29],[0,29],[-33,40],[-51,86],[-45,103],[20,34],[-8,63],[8,58],[10,57],[-44,49],[-53,49],[-73,15],[-22,13],[-12,36],[11,49],[23,28],[27,16],[28,12],[67,14],[67,-16],[57,-50],[59,-40],[73,-13],[34,-14],[15,12]],[[29776,62659],[-5,-40],[-71,48],[-57,61],[2,33],[30,7],[28,-20],[41,-40],[32,-49]],[[29815,63385],[12,-13],[-5,-17],[-28,10],[-29,19],[-9,-5],[-6,2],[-17,18],[15,14],[15,4],[17,-1],[35,-31]],[[33328,56767],[10,-9],[40,-92],[23,-20],[4,0],[0,24],[21,-10],[52,-63],[77,-103],[108,-195],[31,-75],[20,-35],[33,-85],[9,-41],[-1,-166],[-28,-112],[-7,-84],[-2,-113],[-16,-64],[22,35],[6,101],[19,62],[24,67],[33,16],[35,-28],[28,-5],[24,-20],[53,-108],[52,-86],[18,-68],[55,-34],[32,-54],[10,-47],[7,-122],[-11,-185],[3,-9]],[[34310,52961],[-12,-8],[-10,-12],[-15,9],[-21,-5],[-21,-12],[-19,-7],[-37,21],[-11,2],[-8,9],[-15,40],[-8,5],[-19,-19],[-24,-13],[-12,3],[-14,-14],[-12,-18],[-25,-78],[-12,-27],[-14,-13],[-27,1],[-29,-3],[-21,-19],[-21,-10],[-10,-1],[-3,-42],[-5,-20],[-6,-12],[-16,-3],[-14,1],[-9,18],[-15,9],[-15,7],[-9,10],[-7,-3],[-6,-18],[-5,-15],[-4,-28],[-22,-9],[-9,-16],[5,-52],[-2,-20],[-5,-16],[-26,-4],[-22,2],[-12,-20],[-16,-22],[-10,-4],[-11,1],[-15,26],[-14,32],[-37,23],[-36,18],[-24,51],[-6,25],[-11,11],[-28,61],[-16,39],[-17,10],[-19,17],[0,28],[-1,27],[-8,11],[-12,7],[-4,15],[1,36],[2,92],[-3,88],[-26,30],[-11,21],[-20,130],[-9,58],[-1,44],[7,129],[7,56],[20,113],[12,38],[1,28],[-2,37],[-6,72],[35,46],[14,19],[3,30],[18,39],[8,37],[7,29],[-2,15],[-8,9],[-10,27],[-19,79],[-7,16],[-6,22],[3,35],[7,38],[-1,16],[-11,21],[-25,34],[-20,2],[-16,13],[-23,1],[-18,4],[-10,13],[2,21],[4,16],[16,40],[10,42],[2,42],[3,55],[4,47],[3,54],[-25,35],[-7,29],[-10,25],[-11,0],[-17,11],[-26,-33],[-21,6],[-14,-13],[-32,3],[-21,16],[-25,-11]],[[46186,59143],[-1,-46],[16,-66],[-2,-49],[-7,-47],[-6,-18],[-9,-11],[-25,1],[-10,-10],[-17,-18],[0,-21],[13,-21],[11,-28],[13,-23],[21,-25],[2,-29],[1,-72],[-1,-57],[-61,-41],[-47,-7],[-40,4],[-17,-17],[-35,-43],[-42,-25],[-22,-2],[-10,-15],[-17,-44],[-46,-192],[-15,-46],[-12,-30]],[[45821,58145],[-14,40],[11,76],[-12,-1],[-23,-61],[-12,-2],[2,72],[-13,3],[-15,-5],[-21,37],[-2,28],[1,40],[13,25],[-2,10],[-12,3],[-14,-6],[-8,11],[14,51],[49,43],[24,5],[26,9],[-14,37],[-30,15],[-24,-10],[-12,-27],[-15,-5],[-25,63],[1,31],[9,38],[14,16],[57,0],[22,21],[9,4],[8,19],[-2,12],[-9,1],[-21,-25],[-69,10],[-22,-15],[-38,-58],[-47,-31],[-34,13],[11,77],[-5,10],[-10,13],[-50,-25],[-38,35],[-15,43],[3,53],[17,36],[3,18],[-19,3],[-34,-22],[-77,86]],[[45523,58213],[-22,-8],[-10,28],[-2,11],[12,10],[5,0],[9,21],[11,14],[5,5],[5,-1],[4,-46],[-5,-20],[-12,-14]],[[45584,58227],[-3,-16],[-16,2],[4,16],[-4,5],[5,49],[2,7],[8,-18],[1,-8],[3,-37]],[[45631,58303],[0,-23],[-11,4],[-4,7],[7,43],[11,19],[12,-3],[4,-6],[-2,-16],[-6,-14],[-11,-11]],[[45679,58488],[-2,-13],[-16,11],[23,49],[15,8],[-1,-37],[-11,-8],[-8,-10]],[[45582,58447],[-13,-18],[-13,9],[-7,16],[1,29],[15,41],[14,-6],[3,-71]],[[45559,58687],[-15,-70],[-17,7],[-13,42],[-1,18],[36,6],[10,-3]],[[46307,57055],[-3,17],[10,53],[-8,28],[-28,55],[-2,27],[-9,34],[-36,71],[-35,-4],[10,59],[-1,79],[-11,43],[3,44],[-7,-2],[-11,-31],[-18,10],[-38,47],[-18,46],[-3,38],[-4,15],[-11,-8],[-24,1],[-71,69],[-51,174],[-1,39],[7,67],[-1,19],[-23,-45],[-5,30],[-18,70],[-5,40],[-17,17],[-14,4],[-10,-14],[-14,-81],[-11,0],[-10,18],[2,61]],[[47780,57697],[-6,-22],[-18,-33],[-17,-26],[-5,-28],[3,-53],[0,-119],[2,-103],[14,-38],[16,-19],[19,4],[18,7],[-1,-62],[-5,-69],[22,-22],[11,-21],[6,-19],[-35,-37],[-10,-22],[-4,-57],[1,-54],[46,-38],[18,-45],[8,-46],[3,-88],[-4,-20],[-12,0],[-14,27],[-10,26],[-12,0],[-24,6],[-26,10],[-33,-2],[-12,-5],[-8,-16],[-2,-27],[-3,-89],[11,-20],[21,-22],[14,-9],[12,3],[9,-15],[2,-38],[-7,-28],[-11,-26],[-15,-67],[3,-25],[0,-37],[-25,-98],[-7,-19],[-33,19],[-22,7],[-16,-25]],[[25233,62105],[-3,-140],[-3,-162],[-2,-119],[-3,-159],[-3,-162],[-5,-222],[-2,-143],[1,-3],[33,7],[49,-6],[12,0]],[[25307,60996],[15,-12],[12,-4],[24,-32],[30,-25],[18,50],[-9,29],[-8,15],[1,14],[102,-128]],[[25177,60147],[-6,6],[-10,2],[-23,-10],[-11,-2],[-9,-11],[-1,-25],[6,-40],[3,-21],[-7,-9],[-28,-25],[-11,-23],[-11,-38],[-12,-15],[-13,3],[-9,-6],[-19,-27],[-30,-54],[-15,-40],[-1,-30],[3,-27]],[[24973,59755],[-106,95],[-36,16],[-150,-2],[-64,37],[-73,72],[-50,66],[-115,182]],[[32856,58762],[-18,-2],[7,21],[2,37],[10,44],[15,30],[15,-8],[-6,-98],[-25,-24]],[[57738,72899],[-6,-9],[-14,26],[0,14],[14,16],[7,3],[2,-10],[0,-23],[-3,-17]],[[55725,73953],[4,-67],[19,-12],[26,-60],[-2,-31],[-6,-10],[-43,28],[-10,-13],[-13,5],[-7,34],[1,11],[-8,20],[-5,9],[-17,-26],[-11,-5],[0,24],[16,66],[7,11],[13,-22],[10,8],[8,36],[1,36],[3,11],[14,-53]],[[55802,73620],[29,-56],[-23,14],[-26,-39],[-31,45],[-20,46],[-4,18],[20,43],[19,-44],[22,-7],[14,-20]],[[55746,74083],[-11,-5],[-9,3],[-9,-2],[-8,-11],[1,45],[10,57],[11,33],[17,15],[7,-26],[-1,-92],[-8,-17]],[[55766,73922],[-14,-6],[-17,55],[-7,38],[7,2],[7,-5],[8,-14],[0,-15],[3,-15],[7,-19],[6,-21]],[[55577,74557],[6,-32],[-35,20],[-25,29],[-21,71],[-45,81],[0,24],[17,18],[36,12],[15,-13],[9,-13],[3,-16],[-20,-31],[-5,-14],[16,-28],[0,-11],[7,-55],[8,-20],[20,-16],[14,-6]],[[56504,74284],[15,-62],[15,-21],[31,-25],[15,-4],[52,-45],[62,-8],[8,-13],[7,-35],[13,-27],[3,-22],[-7,-23],[9,-72],[16,-68],[23,-33],[29,-10],[28,1],[7,-14],[-3,-59],[-12,-24],[-9,-5],[-9,6],[-7,14],[-8,7],[-16,1],[-12,24],[-29,33],[-5,19],[-1,31],[-13,22],[-11,43],[-11,11],[-6,22],[-1,9],[-43,6],[-35,0],[-30,24],[-9,63],[-18,17],[-13,18],[-11,25],[-29,45],[-31,39],[-30,25],[-32,16],[-26,-19],[-15,4],[-3,13],[33,27],[44,50],[31,16],[15,2],[29,-44]],[[56605,74374],[-12,-20],[-20,9],[-20,65],[52,-54]],[[56635,74399],[-13,-7],[13,46],[23,24],[-9,-38],[-14,-25]],[[56854,74198],[-30,-14],[-8,2],[7,18],[0,7],[-29,33],[4,42],[3,11],[22,-22],[5,-37],[26,-40]],[[56881,75238],[-35,-20],[-37,39],[1,23],[19,47],[10,14],[27,-4],[15,-32],[4,-15],[-5,-26],[1,-26]],[[56541,73689],[-11,-14],[-12,1],[-9,5],[-4,11],[5,6],[7,23],[6,6],[9,-3],[5,-9],[4,-26]],[[56403,72689],[-3,-25],[-28,17],[-8,26],[-2,57],[8,28],[5,9],[13,-32],[27,-47],[-12,-33]],[[57548,72272],[-10,-32],[-11,27],[5,31],[-13,50],[24,74],[0,36],[18,19],[-4,-62],[-14,-49],[14,-40],[7,-46],[-16,-8]],[[57505,73132],[-28,-8],[5,46],[-13,36],[21,-20],[14,-24],[7,-5],[-2,-15],[-4,-10]],[[57485,72999],[-8,-1],[10,28],[29,38],[43,34],[14,3],[24,-21],[-44,-34],[-12,-18],[-32,-4],[-24,-25]],[[57096,73137],[-25,-22],[-17,32],[-10,50],[46,72],[11,-6],[6,-19],[-1,-65],[-10,-42]],[[57021,73195],[-22,-44],[-18,5],[-8,20],[12,42],[24,24],[11,-7],[-1,-31],[2,-9]],[[57078,72806],[-13,-30],[-18,11],[7,11],[5,15],[0,22],[-5,13],[3,5],[17,-22],[4,-25]],[[57050,72968],[-5,-9],[-21,37],[-8,21],[10,18],[31,-42],[-7,-25]],[[57451,73623],[34,-19],[9,2],[16,-6],[5,-35],[-22,-6],[-37,-32],[-15,7],[-19,28],[-30,3],[-9,8],[16,33],[29,16],[23,1]],[[57230,73461],[-13,-2],[4,23],[25,40],[34,2],[32,20],[7,0],[-15,-31],[-25,-30],[-49,-22]],[[57183,73035],[-25,-4],[-8,4],[15,10],[11,10],[5,13],[25,23],[16,29],[18,-20],[-23,-13],[-34,-52]],[[57350,72917],[-22,-14],[-14,-29],[-17,21],[0,28],[18,-9],[13,16],[-4,18],[15,-9],[11,-22]],[[56765,73488],[-19,-28],[-3,42],[12,44],[16,3],[6,-19],[-12,-42]],[[56787,73354],[-16,-17],[6,40],[-8,21],[7,17],[10,15],[5,-15],[9,-24],[-13,-37]],[[56815,73020],[0,-34],[-1,-12],[-57,-16],[5,38],[3,13],[19,-18],[7,9],[3,10],[21,10]],[[56928,73440],[-1,-60],[-8,1],[-4,9],[0,23],[3,36],[10,-9]],[[56942,73594],[-9,-39],[-21,45],[-24,31],[-9,27],[-14,16],[-4,36],[17,15],[8,1],[18,-44],[28,-5],[-2,-27],[8,-35],[4,-21]],[[57015,73501],[-10,-37],[-18,6],[-29,40],[-10,18],[-5,18],[12,2],[14,-19],[37,-10],[9,-18]],[[56866,73111],[-5,-3],[-7,25],[-2,22],[3,13],[10,2],[13,-43],[-12,-16]],[[57248,73858],[-27,-33],[-29,47],[-5,15],[21,19],[11,30],[-8,36],[-31,53],[-1,38],[46,16],[27,-33],[14,-3],[-5,-31],[2,-10],[2,-96],[-13,-13],[-2,-26],[-2,-9]],[[57336,74498],[-5,-34],[38,-57],[13,-36],[5,-35],[-3,-10],[-15,19],[-12,6],[4,-25],[13,-21],[-22,-13],[-22,1],[-64,30],[-14,32],[38,48],[8,19],[-27,-2],[-29,-57],[-46,25],[-14,23],[-4,12],[19,51],[32,-2],[17,11],[21,16],[1,24],[50,6],[18,-31]],[[57134,75130],[-31,-15],[-35,47],[34,19],[15,-14],[11,-16],[6,-21]],[[57065,74874],[-10,-19],[-8,-34],[-4,-47],[-16,-2],[-10,10],[-3,18],[-1,23],[-7,-1],[-6,-25],[-5,-11],[-16,-2],[-18,15],[1,33],[-4,38],[2,14],[49,3],[14,-28],[18,16],[7,18],[21,11],[-4,-30]],[[57056,73397],[-27,-3],[2,44],[10,11],[31,-22],[-1,-14],[-15,-16]],[[56812,73228],[-11,-9],[-17,13],[5,32],[11,13],[13,-10],[2,-14],[-3,-25]],[[57734,72539],[-21,-12],[-6,2],[-9,26],[12,65],[-11,41],[-1,18],[17,24],[11,36],[27,40],[72,46],[17,5],[-1,-37],[-24,-92],[-21,-46],[6,-37],[-34,-11],[-34,-68]],[[56625,72312],[19,-4],[26,1],[6,3],[16,34],[20,1],[9,-34],[-20,-15],[-5,-9],[4,-7],[16,-13],[21,5],[1,-26],[4,-22],[11,-13],[11,-2],[26,4],[25,8],[25,17],[26,9],[79,-9],[28,-36],[53,-5],[50,-19],[26,13],[45,12],[7,-13],[-6,-82],[3,-24],[13,-11],[12,5],[16,27],[37,21],[39,0],[33,54],[10,3],[-6,-26],[-5,-63],[-7,-37],[-3,-29],[-22,-15],[-33,-3],[-61,6],[-60,-10],[-113,-28],[-113,-14],[-15,9],[0,37],[-3,25],[-7,18],[-35,15],[-33,26],[-130,36],[-31,14],[-50,-8],[-18,1],[-13,13],[-9,22],[-4,69],[7,69],[10,18],[5,-21],[13,-9],[12,21],[0,31],[6,29],[9,-12],[7,-45],[16,-12]],[[57232,75303],[-7,24],[-43,43],[-100,25],[-48,32],[-21,-6],[-40,36],[-28,-16],[-59,-63],[-31,7],[-34,38],[-22,7],[-26,-20],[-42,-73],[-42,-36],[-38,14],[-51,0],[-5,-41],[10,-28],[27,-48],[-13,-37],[10,-36],[18,-7],[28,2],[50,-47],[22,-50],[14,-54],[-30,39],[-21,37],[-28,14],[-40,32],[-25,5],[-26,-22],[-3,-25],[29,-47],[26,-29],[14,-23],[9,-52],[-5,-17],[-10,-17],[-31,33],[-47,116],[-66,23],[-11,-24],[13,-61],[9,-24],[58,-67],[-5,-14],[-8,-6],[-65,38],[-19,58],[-4,73],[-59,50],[-56,55],[-13,53],[12,19],[8,38],[-31,-7],[-19,-24],[-32,-23],[-1,-39],[5,-36],[-10,-52],[-10,-90],[6,-48],[68,-136],[23,-99],[16,-37],[35,-42],[36,-76],[15,-41],[11,-65],[-30,-41],[-18,-2],[-9,19],[13,44],[-2,28],[-47,42],[-20,-15],[-22,-27],[13,-51],[14,-34],[8,-46],[28,4],[-38,-52],[-35,-27],[-35,-1],[-23,-5],[-7,-13],[18,-10],[15,-1],[24,-28],[68,-34],[33,-42],[32,-4],[32,-78],[56,-21],[31,-79],[43,-16],[36,-29],[11,-27],[5,-50],[2,-107],[8,-79],[0,-25],[-2,-37],[-9,-19],[-14,0],[-26,58],[-40,61],[-42,73],[-12,13],[-10,1],[-23,-25],[-63,-19],[-29,-26],[-11,-6],[-4,-14],[14,-15],[17,-33],[0,-45],[14,-56],[18,-14],[24,1],[13,-10],[4,-22],[14,-26],[9,-19],[-1,-13],[-66,-37],[-13,-16],[-12,-9],[-17,18],[-1,44],[-22,23],[-21,21],[-25,9],[-21,30],[-14,-25],[11,-85],[24,-60],[40,-158],[18,-93],[4,-46],[-9,-75],[19,-56],[14,-57],[-15,2],[-13,20],[-21,24],[-42,92],[-15,57],[-17,4],[-30,-8],[-34,-122],[1,-70],[-18,17],[-14,22],[1,76],[-1,32],[-40,104],[-19,12],[-8,35],[-15,38],[-19,-8],[-16,-15],[-4,-56],[-2,-51],[-11,-38],[-43,72],[-43,126],[-1,68],[31,63],[-4,45],[-30,89],[-43,57],[-24,17],[-11,60],[-23,31],[-19,15],[-4,22],[6,16],[45,62],[27,97],[13,5],[27,-23],[31,6],[25,57],[21,31],[36,-4],[80,-76],[87,-44],[43,-38],[25,-38],[13,-8],[20,-5],[-1,28],[-6,25],[17,14],[46,-1],[9,14],[8,21],[-9,24],[-16,12],[-16,3],[-11,8],[-17,-8],[-28,19],[-14,16],[-8,16],[-47,32],[-45,54],[-10,-31],[-19,-16],[-25,-3],[-73,35],[-45,-27],[-24,-6],[-19,-1],[-23,-12],[-26,-7],[-23,50],[-9,39],[-7,7],[-1,-37],[-7,-29],[-33,-16],[-20,23],[-15,68],[-18,87],[-33,70],[-27,18],[-3,39],[3,30],[32,8],[50,-32],[11,6],[11,15],[-2,33],[-7,29],[-14,2],[-10,-4],[-31,6],[-39,-16],[-19,15],[-6,19],[-33,46],[-29,62],[-46,41],[-31,126],[-25,55],[-28,40]],[[55555,74717],[6,0],[11,-6],[19,-22],[21,-5],[12,15],[7,13],[4,21],[2,26],[3,8],[16,-3],[5,6],[0,23],[-10,28],[-10,35],[0,16],[8,7],[13,15],[6,19],[14,9],[19,2],[22,8],[15,20],[2,19],[9,55],[5,27],[10,24],[5,33],[10,31],[21,13],[19,15],[14,40],[8,34],[0,20],[-12,35],[-9,33],[3,43]],[[56365,75654],[30,-6],[37,-2],[23,36],[37,3],[17,5],[28,-8],[28,1],[35,15],[33,25],[26,-2],[10,4],[6,5],[7,34],[48,2],[17,-3],[27,-1],[28,18],[8,-2],[14,-49],[8,-14],[15,-13],[34,-37],[6,10],[14,12],[41,-17],[39,-28],[33,-42],[36,12],[40,21],[27,6],[28,3],[17,8],[38,-10],[40,22],[19,20],[6,29],[-3,50],[-9,49],[-10,19],[-3,19],[5,18],[6,12],[26,11],[34,-16]],[[50329,55350],[-22,-22],[-16,-33],[-12,-50],[-16,-55],[-55,-29],[-22,-1],[-114,-1],[-108,-109],[-61,-39],[-38,-61],[-51,-44],[-36,-53],[-74,-25],[-122,-83],[-38,-33],[-38,-58],[-63,-68],[-24,1],[-49,63],[-37,32],[-90,49],[-67,18],[-33,21],[-8,4]],[[49135,54774],[7,23]],[[49142,54797],[19,1]],[[49161,54798],[20,-7],[14,18],[22,2],[6,18],[2,46],[0,37],[7,16],[2,44],[-11,96],[-7,11],[-39,14],[-3,19],[-7,21],[-8,49],[-8,74],[-14,92],[-27,151],[-6,54],[-5,54],[-1,66],[6,24],[-1,33],[-2,34],[18,77],[37,94],[7,34],[7,24],[1,34],[7,110],[17,132],[11,51],[7,27],[9,44],[3,21],[33,52],[16,14],[3,20],[-5,23],[2,15],[8,8],[12,6],[9,21],[-14,164],[-11,163],[-1,14],[-7,23],[-6,67],[-12,39],[-16,12],[1,37],[16,63],[4,37],[-8,11],[-1,28],[5,47],[-2,28]],[[49251,57304],[-3,31],[-17,71],[-4,51],[9,29],[-1,65],[-9,100],[-1,63],[6,26],[-3,25],[-12,24],[-1,23],[10,23],[-1,17],[-13,13],[-11,31],[-10,48],[2,78],[19,144],[2,12],[22,-1],[0,-6],[68,2],[77,1],[92,2],[83,2],[4,6],[14,8],[84,-15],[53,8],[22,-5],[17,-10],[36,6],[20,-3],[14,-36],[6,0],[8,15],[15,18],[15,13],[11,28],[6,22],[10,-5],[13,2],[10,18],[3,27],[64,-29]],[[52115,79258],[-14,8],[-10,38],[3,58],[15,76],[4,56],[-7,35],[9,54],[25,71],[16,75],[9,78],[12,52],[23,36],[56,100],[5,8],[-2,50],[-15,7],[-22,15],[-56,18],[-52,11],[-24,14],[-21,38],[-13,1],[-25,-14],[-32,-9],[-22,8],[-15,-2],[-8,-7],[-4,6],[-6,33],[-12,9],[-18,7],[-12,-3],[-8,-16],[-12,-12],[-12,4],[-35,75],[-9,17],[-3,15],[-8,28],[-22,27],[-21,9],[-10,-3]],[[51699,80714],[1,11],[15,53],[52,49],[-5,48],[-1,30],[-13,19],[-25,8],[-7,13],[-3,14],[19,29],[-23,24],[-10,24],[-31,30],[-4,11]],[[51999,82535],[-13,26],[-27,28],[6,59],[9,45],[27,57],[22,15],[96,9],[105,-4],[44,-84],[-16,-44],[25,-20],[13,7],[9,38],[6,42],[9,13],[33,-32],[12,-21],[0,-69],[12,93],[-9,66],[6,63],[14,34],[12,21],[77,-23],[86,12],[32,-25],[73,-123],[24,-20],[31,-6],[-42,26],[-89,149],[-26,19],[-41,5],[-26,15],[-16,23],[-4,20],[1,150],[-16,22],[-20,8],[-12,-10],[-25,-1],[-5,34],[6,26],[51,17],[33,23],[2,41],[-22,32],[-25,58],[-30,56],[-3,64]],[[52408,83469],[52,-1],[13,-3],[78,-30],[19,-21],[24,-1],[44,20],[33,8],[12,-12],[18,-5],[4,0]],[[52705,83424],[2,-10],[40,-16],[17,-24],[19,-37],[2,-54],[-24,-38],[-20,-24],[76,9],[8,-22],[11,-24],[41,17],[103,-70],[63,34],[16,2],[14,-57],[-16,-57],[-55,-61],[13,-38],[17,-8],[52,8],[82,-37],[17,11],[67,86],[26,18],[88,14],[16,33],[35,33],[23,36],[55,70],[56,-13],[33,-13],[37,-7],[33,-74],[83,-81],[77,7],[27,-77],[12,-96],[24,-30],[20,-19],[63,-21],[2,-1]],[[54113,81139],[-3,-9],[-9,-14],[-12,-2],[-18,10],[-12,13],[3,34],[-8,3],[-10,20],[-4,23],[-11,9],[-39,10],[-13,6],[-10,-5],[-8,-15],[5,-15],[8,-14],[21,-22],[-2,-9],[-47,-21],[-29,-23],[-27,-12],[-28,-23],[-55,-26],[-40,-7],[-8,-6],[-15,-44],[-10,-9],[-10,4],[-7,8],[-10,-6],[-9,-15],[-11,-6],[-8,1],[-16,-39],[-46,-11],[-5,-20],[-9,-23],[-6,-5],[-21,9],[-29,5],[-16,-13],[-20,-7],[-24,-2],[-26,-25],[-27,-44],[-14,-39],[-8,-14],[-13,36],[-16,26],[-11,13],[-10,0],[-2,-6],[0,-19],[10,-32],[13,-21],[2,-16],[8,-29],[19,-32],[30,-25],[20,-25],[15,-35],[0,-10],[-4,-14],[-7,-13],[-6,-18],[-17,-35],[5,-15],[14,-19],[12,-23],[15,-37],[21,-66],[14,-27],[19,-28],[18,-21],[28,1],[30,-41],[33,-58],[24,-27],[17,-8],[14,-22],[12,-30],[5,-18],[11,-12],[30,2],[38,-48],[23,-35],[13,-28]],[[53837,79934],[-3,-11],[-2,-35],[0,-38],[-3,-19],[-17,-26],[-9,-6],[-5,-5],[-52,34],[-4,-6],[-4,-4],[-14,-99],[-9,-18],[-15,-18],[-30,-17],[-20,-7],[-17,-8],[-51,-41],[-23,-25],[-15,-31],[0,-18],[25,-52],[29,-55],[0,-47],[-13,-36],[-3,-14],[9,-5],[16,-2],[13,-6],[6,-25],[-2,-44],[-5,-41],[-4,-17],[-13,-2],[-25,18],[-19,21],[-8,12],[0,15],[4,10],[-7,19],[-24,17],[-25,-8],[-19,-11],[-12,0],[-13,17],[-20,13],[-27,8],[-16,9],[-4,-5],[2,-36],[-5,-16],[-130,-21],[-40,-19],[-28,-25],[-22,-11],[-5,-16],[-21,-20],[-24,-6],[-6,6],[-15,-9],[-26,-9],[-17,3],[-8,16],[-16,25],[-7,18],[1,11],[-37,2],[-23,14],[-49,-4],[-12,6],[-2,-6],[-8,-71],[-9,-30],[-16,-30],[-20,-17],[-16,-3],[1,22],[4,27],[-12,6],[-17,3],[-8,8],[2,20],[-4,12],[-7,14],[-18,18],[-36,27],[-25,14],[-10,-14],[-18,-15],[-28,5],[-7,-6]],[[53808,83169],[7,-39],[-8,-19],[-31,32],[-32,0],[-18,-51],[-14,-2],[-49,46],[-7,23],[-2,18],[7,65],[-1,20],[15,22],[2,32],[27,34],[24,1],[8,-28],[11,-20],[40,-22],[6,-10],[4,-14],[-19,-27],[-6,-14],[6,-23],[30,-24]],[[53948,82874],[-12,2],[-34,-6],[-34,9],[-7,34],[6,34],[-14,22],[-13,14],[-2,19],[2,20],[59,-54],[48,-48]],[[53134,83189],[-43,-1],[-16,23],[-17,6],[9,29],[12,10],[41,-19],[13,-36],[1,-12]],[[52307,83402],[-6,-12],[3,82],[30,86],[13,-2],[-13,-23],[-4,-16],[-5,-33],[2,-17],[70,-5],[-8,-15],[-71,-10],[-11,-35]],[[52385,83359],[-11,-14],[-26,2],[-15,13],[5,14],[14,11],[11,2],[18,-7],[4,-21]],[[61530,75758],[53,108],[16,65],[1,39],[0,49],[-27,102],[-24,144],[-25,151],[-19,45],[-81,52],[-19,59],[-62,77],[-87,33],[-17,14],[-76,96],[-59,62]],[[62897,75973],[-7,-20],[-16,-38],[-13,-19],[-14,-3],[-14,-8],[-5,-20],[0,-26],[2,-19],[4,-7],[14,-6],[14,-54],[22,-28],[34,-31],[31,-36],[15,-33],[-3,-23],[-10,-50],[-25,-41],[-22,-10],[-7,3],[-14,13],[-28,32],[-30,25],[-24,-8],[-15,-10],[-31,12],[-35,21],[-19,22],[-8,16],[5,28],[-81,50],[-40,14],[-17,-15],[-60,-76]],[[62500,75628],[-7,-8],[-46,-10],[0,-7],[10,-16],[-2,-5],[-77,-2],[-25,-10],[-68,13],[-23,-6],[-19,-12],[-47,-13],[-32,-16],[-41,-9],[-43,0],[-14,-5]],[[45343,59368],[-2,49],[-15,111],[21,48],[22,29],[15,-23],[5,-45],[12,-31],[39,-20],[40,14],[24,-6],[-1,25],[8,33],[48,15],[50,9],[52,20],[41,-1],[12,6],[-3,8],[-36,10],[-78,-23],[-80,-7],[-60,-60],[-24,6],[-25,60],[-9,74]],[[53692,53088],[-1,-40],[-22,-99],[-11,-76],[-2,-81],[6,-65],[10,-46],[7,-51],[-5,-35],[-11,-15],[8,-18],[16,-4],[27,15],[42,27],[55,39],[36,21],[60,-13],[32,-15],[16,-28],[18,-116],[8,-17],[15,-50],[12,-59],[2,-30],[-1,-22],[-12,-32],[-14,-47],[-5,-29],[-11,-21],[-14,-21],[-40,-8],[-6,-13],[-12,-50],[-21,-43],[-9,-40],[-9,-53],[2,-67],[-4,-96],[-5,-64],[11,-23],[48,-16],[9,-13],[13,-40],[16,-38],[43,-23],[17,-29],[14,-32],[2,-26],[-10,-104],[-10,-99],[4,-76],[4,-73],[5,-105],[-2,-65],[-13,-39],[0,-31],[6,-37],[-11,-103],[-7,-17],[-20,-20],[-10,-27],[-3,-44],[-11,-59],[-10,-22],[0,-27],[10,-21],[0,-30],[-20,-37],[-11,-28],[-26,-14],[-30,14],[-7,21],[7,32],[-2,25],[-11,27],[-16,69],[-14,15],[-7,-28],[-25,-53],[-42,-67],[-30,-6],[-55,21],[-47,32],[-21,79],[-14,65],[-20,76],[-22,36],[-24,23],[-10,1],[-34,-42],[-10,-16],[0,-36],[3,-33],[5,-16],[5,-21],[-1,-33],[-6,-44],[-2,-49],[-106,-47],[-19,17],[-13,22],[-16,-4],[-46,-25],[-17,18],[-17,12],[-7,-10],[-1,-21],[8,-114],[-3,-44],[-10,-57],[-6,-38],[29,-11],[10,-18],[10,-29],[13,-27],[1,-16],[-15,-30],[-6,-37],[8,-28],[19,-30],[28,-32],[14,-20],[-2,-19],[-13,-40],[-5,-33],[-9,-31],[2,-28],[13,-26],[-2,-23],[-8,-18],[-18,4],[-14,-3],[-13,8],[-42,90],[-9,3],[-60,-70],[-15,-28],[-12,-41],[-17,-89]],[[53091,49587],[-27,51],[-24,95],[-27,58],[-58,94],[-15,69],[-66,153],[-95,152],[-69,133],[-10,29],[12,-3],[66,-66],[9,7],[7,15],[-28,34],[-27,28],[-26,17],[-26,-2],[-14,28],[-9,43],[-5,36],[-11,38],[-37,79],[-9,30],[-19,41],[12,6],[39,-40],[3,16],[-3,23],[-39,38],[-22,2],[-5,27],[3,30],[-28,115],[-29,85],[-4,41],[78,-186],[11,-4],[13,2],[33,21],[-6,25],[-15,26],[-14,-12],[-19,-2],[-9,11],[-5,19],[19,90],[-8,-4],[-6,-16],[-10,-8],[-16,-5],[-39,49],[-34,130],[-9,27],[-9,46],[-9,18],[-39,186],[15,-14],[18,-53],[35,11],[13,31],[12,-1],[12,7],[15,29],[45,128],[12,169],[-4,100],[-7,100],[15,32],[6,-21],[3,-36],[7,-26],[16,-23],[29,-7],[46,-36],[16,-24],[4,47],[53,40],[-16,14],[-47,-15],[-64,59],[-21,38],[-20,72],[-20,38],[1,34],[46,31],[12,-4],[5,-37],[12,-15],[5,5],[2,31],[0,86],[-14,122],[5,23]],[[52664,52437],[12,9],[11,16],[8,3],[16,-3],[8,-29],[4,-15],[15,-7],[13,-15],[11,4],[10,17],[13,4],[42,0],[38,-1],[75,0],[76,-1],[75,0],[57,0],[0,69],[0,108],[-1,127],[0,122],[0,113],[-1,133]],[[53146,53091],[3,38],[4,16],[-1,22],[58,2],[106,-10],[46,1],[13,-1],[58,6],[47,-8],[20,-10],[18,-4],[56,-6],[73,7],[25,-2],[14,-18],[6,-36]],[[52633,76500],[-7,-84],[5,-25],[10,-18],[5,-19],[8,-225],[-2,-18],[-34,-91],[-7,-26],[-2,-113],[-6,-30],[-12,-30],[-21,-96],[-19,-43],[-51,53],[-30,22],[-14,25],[-10,17],[6,23],[14,23],[2,19],[-32,21],[-15,14],[0,24],[11,38],[-5,32],[-18,-2],[-15,5],[-1,17],[10,21],[14,27],[-1,30],[-16,13],[-15,25],[-6,33],[12,23],[18,15],[-13,34],[-10,1],[-7,7],[6,16],[14,24],[21,71],[28,33],[50,22],[14,9],[12,25],[14,16],[16,-2],[16,-9],[9,-11],[8,11],[6,31],[-4,27],[2,75],[9,42],[15,3],[13,-24],[-1,-20],[5,-49],[1,-32]],[[52081,77054],[-15,-10]],[[52049,77034],[-32,-21],[-23,-21],[-88,-127],[-41,-38],[-8,-22],[-8,-42],[-24,-36],[-22,-17],[-52,-18],[-53,-38],[-23,16],[-62,-1],[-38,46],[-74,29],[-24,67],[-33,4],[-22,-2],[-13,10],[-4,23],[0,22],[-23,-10],[-18,0],[-11,-9],[-8,-10],[-10,7],[-6,-3],[1,-13],[-22,-3],[-23,8],[-61,35],[-9,5],[-42,13],[-17,14],[-14,35],[-11,10],[-6,7],[-39,-17],[-14,-27],[-21,-32],[-146,-155],[-27,-64],[-31,-96],[-2,-44],[13,-142],[30,-75],[4,-18]],[[50473,76326],[3,13],[7,18],[0,11],[-9,16],[-39,18],[-18,4],[-12,-12],[-9,-15]],[[49501,76847],[45,17],[41,73],[39,263],[28,311],[20,58],[26,17],[-21,42],[-13,-21],[-5,-23],[-7,-12],[15,285],[11,105],[19,109],[39,-43],[32,-44],[17,-39],[21,-127],[15,-27],[24,-26],[-9,29],[-17,22],[-25,170],[-16,48],[-25,40],[-80,85],[-8,17],[-4,32],[27,-1],[23,-16],[-3,18],[-7,19],[-10,69],[-9,161],[1,28],[-4,34],[-26,7],[-20,2],[-22,13],[-110,95],[-37,98],[-39,72],[-9,32],[1,32],[20,67],[-18,43],[-17,8],[-15,21],[14,35],[11,23],[22,6],[30,-8],[28,-20],[21,-5],[-64,54],[-105,-18],[-23,7],[-19,12],[-7,40],[15,18],[13,34],[-15,23],[-20,9],[-31,-1],[-29,-7],[-7,14],[17,37],[-15,14],[-20,-7],[-29,-7],[-28,11],[-26,42],[-17,0],[-12,-5],[-18,16],[-19,4],[-13,-5],[-18,24],[-109,49],[-47,6],[-43,-22],[-24,7],[-18,32],[-14,52],[-70,41],[14,27],[32,6],[37,19],[14,23],[-29,28],[-22,7],[-9,10],[-9,24],[13,12],[9,-6],[26,-4],[45,6],[-16,25],[-18,6],[-8,6],[-36,3],[-17,-9],[-37,4],[-9,27],[-3,23],[11,51],[53,46],[131,51],[56,-7],[40,9],[47,31],[20,28],[67,16],[63,-29],[59,-109],[28,-37],[68,64],[102,-2],[21,-36],[8,30],[19,36],[15,-16],[8,-22],[107,6],[17,6],[-29,26],[-23,62],[-5,229],[-30,64],[-34,102],[-16,60],[-1,21],[5,30],[42,-1],[32,-8],[62,23],[30,-16],[-2,-47],[9,-60],[11,-28],[15,-33],[50,3],[54,-19],[68,-3],[99,-34],[42,20],[41,41],[78,27],[7,14],[-45,-6],[-42,26],[-5,29],[5,25],[16,58],[120,92],[85,28],[89,50],[45,52],[30,68],[10,14],[12,13],[-12,24],[8,256],[9,46],[17,38],[27,29],[40,32],[148,44],[22,17]],[[50701,81276],[3,-27],[11,-35],[7,-19],[-6,-25],[5,-21],[20,-37],[25,-35],[22,-23],[7,3],[16,6],[28,23],[24,7],[13,-17],[7,-10],[15,-40],[4,-41],[7,-34],[12,-14],[44,-5],[33,-13],[9,-11],[11,-76],[6,-11],[9,9],[8,12],[11,2],[19,-5],[26,-1],[26,-8],[36,-44],[-1,-14],[-7,-25],[-3,-20],[6,-8],[10,-20],[-2,-24],[-10,-17],[-3,-14],[0,-9],[3,-7],[8,-6],[53,-9],[49,9],[31,24],[5,25],[9,29],[18,25],[13,8],[12,-10],[-20,-102],[14,-26],[2,-39],[6,-34],[17,1],[21,-6],[15,-13],[18,-20],[25,-19],[18,-6],[6,-16],[15,-18],[22,-37],[20,-25],[10,0],[19,10],[28,6],[22,-1]],[[49672,78285],[-10,-50],[-18,46],[-25,41],[-5,37],[0,10],[29,-27],[29,-57]],[[62549,44368],[-17,-5],[-8,15],[-5,36],[5,35],[1,28],[-14,49],[14,28],[12,-32],[6,-2],[18,-23],[-5,-42],[1,-13],[-8,-42],[0,-32]],[[65499,39550],[-40,-17],[-27,6],[-54,49],[-15,33],[-21,91],[5,32],[17,57],[38,23],[41,-9],[18,-15],[21,-66],[28,-68],[-4,-80],[-7,-36]],[[33103,60192],[-2,-33],[-7,-6],[-11,27],[-45,-4],[-7,25],[-1,11],[22,42],[-26,11],[-10,18],[-22,87],[2,26],[9,13],[15,2],[28,-28],[20,-40],[7,-1],[3,-11],[-4,-29],[12,-24],[5,-17],[12,-69]],[[32964,61192],[-32,-6],[-22,5],[-5,41],[11,35],[-8,42],[5,25],[11,17],[18,-22],[3,-32],[11,-29],[51,-61],[-43,-15]],[[32891,61063],[-22,-26],[-11,8],[-14,50],[-9,138],[7,22],[5,9],[30,-17],[12,-19],[13,-13],[-7,-25],[4,-103],[-8,-24]],[[32991,60996],[-15,-2],[-7,5],[-2,34],[12,24],[7,6],[10,-27],[3,-22],[-8,-18]],[[34956,54930],[20,30],[27,152],[19,54],[20,7],[109,-126],[51,-11],[103,-68],[38,-88],[86,-145],[45,-45],[1,-39],[-10,-60],[29,53],[45,-84],[13,-41],[14,-76],[-5,-49],[-6,-25],[-1,-19],[14,27],[7,21],[3,51],[10,63],[15,1],[12,-38],[24,-163],[9,-33],[4,-52],[-2,-23],[2,-22]],[[35652,54182],[-9,-12],[-23,-27],[-11,-37],[-6,-34],[-14,-24],[-14,-30],[-4,-24],[-13,-19],[-3,-32],[-32,-112],[-13,-50],[-19,-54],[-11,-20],[-16,-32],[-8,-36],[0,-39],[-11,-45],[-6,-40],[-10,-23],[-28,-124],[-1,-43],[-7,-26],[-19,-59],[-13,-36],[-23,-27],[-25,-29],[-9,-31],[-17,-17],[-12,-1],[-20,12],[-28,5],[-13,-3],[-7,16],[-9,36],[-13,25],[-9,-9],[-19,-25],[-21,-15],[-15,5],[-33,17],[-15,9],[-4,16],[-5,11],[-7,-5],[-10,-19],[-13,-20],[-19,-26],[-40,-48],[-11,-17],[-11,10],[-17,9],[-18,1],[-39,30],[-22,22],[-10,28],[-12,11],[-7,8]],[[34402,78779],[-6,-5],[-19,8],[9,18],[7,5],[9,2],[4,-5],[-1,-13],[-3,-10]],[[34370,78823],[-24,-25],[-9,14],[2,17],[13,39],[-1,11],[-14,76],[2,13],[4,5],[21,-16],[3,-21],[-10,-46],[7,-31],[9,-23],[-3,-13]],[[1066,44162],[-4,-4],[-5,22],[7,34],[6,12],[6,-26],[-10,-38]],[[543,43595],[-16,-4],[-16,7],[-9,33],[4,14],[10,-7],[10,-24],[17,-11],[0,-8]],[[32497,62251],[-32,0]],[[32465,62251],[3,13],[14,14],[11,-2],[4,-5],[0,-20]],[[32546,62140],[-4,-1],[-3,5],[-3,9],[-2,8],[1,6],[2,-3],[18,-5],[-2,-7],[-3,-7],[-4,-5]],[[7926,42247],[-5,-4],[-6,10],[-2,16],[2,26],[13,-17],[6,-11],[-8,-20]],[[8385,41736],[-9,-15],[-11,11],[-5,14],[-2,15],[2,19],[26,-3],[8,-8],[-9,-33]],[[7942,42120],[-11,0],[-10,9],[2,59],[3,12],[15,-20],[13,-52],[-12,-8]],[[8522,41653],[40,-27],[7,-44],[-8,-29],[-21,7],[-10,16],[-14,52],[-39,-12],[-27,11],[-15,67],[0,31],[6,19],[29,20],[36,-15],[13,-38],[3,-58]],[[11382,46258],[42,-30],[13,3],[-13,-29],[-42,-16],[-14,-15],[-16,10],[-9,34],[39,43]],[[11372,46122],[-20,-45],[-1,48],[8,6],[7,0],[6,-9]],[[11486,45785],[-10,-9],[-1,61],[13,-12],[5,-9],[-2,-17],[-5,-14]],[[11091,46710],[-27,-14],[-13,3],[-10,47],[3,29],[5,9],[46,-11],[4,-22],[-1,-20],[-7,-21]],[[11090,46413],[-6,-11],[-11,35],[-2,14],[20,18],[11,-9],[-12,-47]],[[10886,41557],[2,-11],[-11,1],[-3,4],[1,20],[7,25],[6,21],[11,20],[21,19],[11,8],[3,-5],[-4,-2],[-35,-41],[-10,-29],[-5,-20],[1,-6],[5,-4]],[[11234,46693],[-18,-5],[-3,29],[6,15],[8,7],[13,-9],[8,-12],[-1,-11],[-13,-14]],[[10921,41255],[3,-21],[-6,10],[-22,20],[-2,17],[27,-26]],[[10880,41365],[2,-16],[-10,11],[-10,29],[-17,36],[-4,15],[13,-14],[9,-21],[17,-40]],[[12140,41160],[-5,-12],[-1,12],[-7,6],[-11,12],[-15,14],[-8,3],[-4,8],[6,4],[9,-6],[12,-13],[15,-13],[9,-15]],[[11952,41277],[0,-11],[-26,55],[10,-4],[16,-40]],[[11526,39828],[-8,-11],[3,15],[-6,32],[-6,5],[6,9],[9,-25],[2,-25]],[[10413,42571],[-5,-7],[7,46],[7,6],[-9,-45]],[[10155,42269],[15,-28],[-20,19],[-25,8],[9,5],[15,0],[6,-4]],[[10119,42260],[-11,-3],[-27,34],[11,0],[15,-21],[12,-10]],[[9708,42709],[-2,-26],[-5,25],[-17,40],[-7,18],[8,-3],[23,-54]],[[9587,42436],[1,-10],[-6,1],[-10,29],[-4,25],[-6,29],[-9,21],[-1,19],[0,30],[10,-46],[9,-37],[8,-31],[8,-30]],[[95611,40180],[31,-36],[34,15],[42,-57],[108,-172],[37,-37],[23,-14],[16,-28],[16,-40],[20,-28],[9,-26],[2,-36],[8,-22],[37,-57],[22,-50],[32,-26],[13,-30],[17,-14],[18,-31],[30,-24],[68,-88],[53,-84],[26,-52],[29,-46],[36,-37],[34,-42],[17,-99],[-9,-35],[-20,-18],[-18,-1],[-17,-12],[-56,64],[-14,9],[-15,-4],[-8,14],[-6,21],[-35,24],[-32,37],[-9,26],[-5,32],[-8,19],[-45,28],[-31,31],[-22,44],[-34,31],[-54,63],[-27,20],[-24,31],[-65,115],[-23,21],[-20,51],[-55,120],[-27,50],[-29,44],[-22,52],[-17,61],[-40,88],[-5,38],[2,38],[-10,25],[-16,15],[-8,26],[1,35],[5,18],[40,-60]],[[96539,38811],[-9,-22],[-11,5],[-8,8],[-6,12],[6,44],[24,-22],[4,-25]],[[94430,40718],[-4,-12],[-2,92],[8,34],[5,-71],[-7,-43]],[[96669,39498],[13,-10],[22,1],[-5,-98],[-32,-16],[-11,1],[-7,21],[-18,14],[1,33],[-18,76],[31,11],[17,20],[0,-18],[2,-22],[5,-13]],[[96262,39919],[-15,-5],[18,52],[1,33],[7,63],[-1,22],[12,-3],[12,-18],[-14,-16],[-5,-28],[0,-34],[6,-7],[-9,-37],[-12,-22]],[[96499,39653],[-15,-4],[-20,41],[-39,21],[-17,36],[-11,43],[22,11],[22,58],[-15,22],[-26,3],[3,23],[42,27],[18,-16],[8,-18],[-2,-92],[19,-29],[20,-65],[-1,-18],[-8,-43]],[[69217,23554],[23,-4],[13,6],[62,76],[16,2],[-2,-59],[16,-26],[-20,-6],[-38,2],[-9,-33],[39,-42],[19,-6],[15,0],[29,10],[23,15],[36,36],[22,14],[41,0],[21,34],[10,10],[24,-1],[21,-13],[13,-31],[7,-37],[-5,-37],[-15,-36],[-26,-22],[6,-26],[-7,-13],[-13,-1],[-12,6],[-16,31],[-20,16],[-48,-1],[-22,-2],[-3,-23],[-12,-18],[-12,-10],[-16,4],[-3,-10],[9,-24],[21,-31],[36,-22],[21,-5],[3,42],[26,4],[23,-12],[16,-30],[-13,-10],[-12,-16],[-3,-21],[-23,-23],[-13,-2],[-44,11],[-26,25],[-6,18],[-16,7],[-18,-23],[-19,-5],[-37,19],[-35,31],[-22,12],[-33,8],[-19,-71],[-26,-30],[-33,-3],[-16,6],[-9,28],[2,29],[5,29],[11,29],[6,32],[-2,30],[-12,22],[6,40],[-12,30],[4,23],[20,16],[-9,13],[-10,4],[-7,18],[-6,22],[7,41],[12,39],[-2,45],[19,42],[17,47],[12,19],[15,3],[7,-13],[3,-26],[-6,-17],[14,-7],[4,-55],[-9,-22],[-1,-22],[-19,-46],[5,-37],[37,-16]],[[69244,23583],[-17,-5],[-5,19],[1,25],[-10,20],[-5,22],[4,20],[28,3],[28,-7],[8,-35],[-21,-48],[-11,-14]],[[64398,25092],[-20,-5],[-18,11],[-11,32],[23,27],[12,-19],[9,-20],[5,-26]],[[55552,86607],[9,0],[3,5],[15,-4],[23,-22],[4,-12],[16,-6],[5,-13],[-18,-39],[-11,0],[-8,4],[-15,-4],[-8,-7],[-3,-16],[0,-34],[-65,-7],[-15,10],[-20,77],[4,20],[14,8],[12,2],[1,-41],[18,4],[5,27],[1,20],[-4,9],[-12,8],[-7,13],[10,21],[18,9],[16,-28],[12,-4]],[[55461,86513],[2,-13],[-11,3],[-8,-4],[-6,-16],[-12,5],[-5,23],[9,34],[22,2],[9,-34]],[[55725,86428],[-2,-13],[-23,-3],[-10,12],[-21,-2],[-3,6],[8,12],[17,8],[22,-3],[12,-17]],[[57721,86714],[-10,-2],[-26,-20],[-40,-5],[-17,-14],[-61,42],[-11,3],[-36,-11],[-34,-31],[-64,-9],[-32,-10],[-20,-14],[-4,33],[9,43],[14,29],[1,18],[-10,-1],[-21,-42],[-11,-49],[-21,-25],[-48,-10],[-47,39],[-23,0],[14,-28],[10,-31],[-1,-17],[-25,3],[-28,-19],[-25,-27],[-11,0],[-17,38],[-30,-18],[-26,-24],[-52,-7],[-31,-31],[-55,-22],[-30,1],[-69,-25],[-23,-40],[-20,-14],[-29,12],[-88,-19],[-84,-25],[-36,1],[-36,11],[-38,-35],[-40,-47],[-45,-16],[-16,6],[13,24],[29,25],[21,35],[2,28],[-13,12],[-19,3],[-24,30],[-23,64],[-13,3],[-6,-17],[-7,-49],[-7,-14],[-12,-11],[-15,-12],[-14,-5],[-51,1],[-7,24],[0,11],[9,32],[-7,6],[7,26],[12,-2],[14,4],[7,13],[0,16],[-20,4],[-1,11],[18,45],[2,12],[-7,3],[-11,-5],[-73,14],[-90,57],[-22,3],[-14,51],[-21,-6],[-32,-30],[-24,22],[-25,15],[-7,24],[0,34],[-2,41],[-7,47],[-5,68],[5,53],[20,39],[8,25],[9,64],[3,74],[-6,26],[2,17],[16,0],[-4,14],[-7,8],[-8,17],[7,9],[19,0],[2,6],[2,8],[-15,43],[-2,21],[-21,62],[-23,60],[-36,43],[13,71],[14,64],[-3,31],[-5,37],[-44,41],[-7,58],[-10,63],[4,38],[7,29],[14,29],[73,92],[4,48],[50,4],[-23,42],[-6,24],[-1,29],[71,19],[27,-16],[62,20],[55,38],[-1,20],[-8,18],[-12,35],[8,10],[21,-7],[-10,17],[2,18],[22,-7],[36,51],[1,39],[63,21],[71,79],[33,25],[32,18],[69,80],[29,3],[15,54],[58,72],[17,9],[27,64],[71,75],[45,95],[25,33],[8,36],[28,3],[25,27],[54,18],[53,-5],[22,-12],[21,4],[-2,32],[-15,20],[12,19],[28,14],[-2,32],[-7,20],[-23,25],[12,58],[2,63],[11,73],[-29,39],[-112,65],[-21,-2],[-24,8],[-26,50],[11,43],[2,16],[-11,-1],[-16,-21],[-36,-23],[-46,18],[-23,-4]],[[56109,86599],[-20,-3],[-29,29],[-3,11],[11,6],[-8,23],[3,10],[22,-18],[12,-21],[-12,-5],[20,-22],[4,-10]],[[55893,88272],[3,-11],[17,3],[21,20],[16,-9],[-2,-28],[-10,1],[-3,4],[-14,-16],[-2,-9],[-16,-7],[-29,28],[-18,45],[42,0],[-4,-11],[-1,-10]],[[56159,86618],[35,-13],[15,5],[17,-30],[-29,-20],[-2,-24],[12,-14],[4,-22],[-29,0],[-13,18],[-6,23],[-13,16],[-18,13],[9,16],[5,24],[13,8]],[[55958,86710],[-4,-27],[-19,3],[-19,-5],[-15,27],[-9,45],[3,9],[12,10],[9,-24],[42,-38]],[[56064,86486],[-28,-20],[-10,5],[3,33],[16,15],[28,2],[-9,-35]],[[56007,86467],[-24,-6],[-15,17],[6,12],[17,14],[18,-2],[4,-16],[-6,-19]],[[56902,89280],[-42,-19],[-33,12],[-1,37],[21,18],[37,7],[52,-18],[7,-10],[-29,-7],[-12,-20]],[[99999,42529],[-42,-77],[-15,-39],[-13,-44],[-36,-47],[-15,-63],[1,-63],[36,66],[40,54],[12,11],[13,0],[-1,-19],[-6,-18],[-5,-48],[11,-45],[-30,5],[-29,-4],[-35,-25],[-34,-11],[-13,-1],[-13,9],[-8,13],[-6,29],[-6,5],[-28,-1],[-40,-59],[-14,-49],[-16,-3],[-18,11],[-23,-38],[-26,-14],[-12,32],[-7,40],[-10,29],[-29,7],[4,36],[8,15],[7,21],[5,24],[14,-16],[14,-9],[16,18],[17,1],[17,53],[26,33],[37,26],[37,19],[19,3],[18,11],[32,50],[21,25],[24,15],[22,9],[20,-8],[17,5],[42,35],[0,-9]],[[99521,41836],[0,-26],[8,-11],[8,-2],[21,-48],[31,-42],[19,-32],[1,-28],[-6,-29],[8,-51],[4,-54],[14,-86],[-20,-16],[-30,-2],[-7,-15],[-11,8],[-25,-6],[-25,-28],[-23,-38],[-27,0],[-30,-8],[-30,5],[-21,21],[-38,22],[-49,19],[-21,15],[-17,25],[-16,63],[-3,31],[3,30],[15,10],[12,15],[1,19],[6,14],[7,5],[3,9],[-5,32],[-1,29],[29,53],[31,45],[56,42],[34,-4],[52,33],[17,15],[16,-10],[9,-24]],[[0,42174],[30,49],[9,7],[10,-45],[-12,-49],[-30,-43],[-7,-22],[0,103]],[[99999,42071],[-21,-21],[-8,21],[10,50],[19,52],[0,-42],[0,-60]],[[99579,40913],[0,-25],[-36,-16],[-12,20],[-8,4],[-21,-36],[-6,-15],[-2,-11],[-6,-6],[-39,-17],[-17,17],[12,12],[14,23],[14,-3],[15,22],[14,33],[21,8],[14,13],[24,-10],[19,-13]],[[281,41487],[-8,-8],[-6,2],[-7,9],[-4,16],[9,14],[13,-16],[3,-17]],[[344,41339],[-3,-10],[-15,17],[-6,12],[16,9],[8,-3],[0,-25]],[[486,41501],[-16,-6],[-14,25],[9,26],[13,-7],[7,-25],[1,-13]],[[290,41893],[-7,-20],[-6,7],[8,33],[1,15],[-12,17],[-1,12],[3,8],[15,-20],[9,-15],[1,-8],[-2,-15],[-9,-14]],[[407,40802],[-3,-5],[-8,6],[-6,8],[-1,8],[3,10],[6,6],[3,-2],[-2,-3],[-3,-4],[0,-11],[5,-6],[4,-1],[2,-6]],[[56,40932],[0,-17],[-4,1],[-5,8],[-2,-4],[-2,-5],[-1,-12],[-1,-7],[-4,3],[0,11],[1,9],[2,12],[7,11],[9,-10]],[[99231,41965],[-15,-9],[8,45],[8,15],[5,3],[9,3],[-4,-32],[-11,-25]],[[99839,41839],[-10,-16],[-4,79],[9,0],[7,-8],[4,-20],[-6,-35]],[[99818,41415],[-2,-5],[-24,46],[0,19],[5,16],[9,15],[9,-26],[7,-44],[-4,-21]],[[99673,41630],[-14,-10],[-8,35],[11,35],[12,4],[6,-36],[-7,-28]],[[99999,42315],[-4,-1],[0,11],[-99995,19],[16,28],[12,5],[-8,-27],[0,-14],[-20,-21],[99999,0]],[[0,42538],[9,15],[6,0],[-3,-13],[-12,-11],[0,9]],[[99199,44639],[-10,-6],[-18,5],[-4,9],[6,2],[11,6],[14,-3],[3,-6],[-2,-7]],[[98507,39346],[-2,-7],[-8,2],[-2,13],[5,7],[7,-4],[0,-11]],[[358,39937],[0,-1],[-1,0],[-2,2],[-2,4],[0,4],[0,4],[1,0],[2,-4],[1,-4],[1,-5]],[[60145,60055],[5,1],[38,28],[37,5],[36,-20],[23,-5],[11,10],[10,26],[9,41],[15,23],[20,5],[26,-47],[43,-125],[11,-7],[7,3],[21,100],[17,78],[31,144],[18,83],[16,-24],[17,-42],[18,-20],[20,-12],[10,-2],[12,-17],[44,-103],[15,-24],[20,-2],[86,33],[51,60],[7,24],[14,0],[17,-27],[7,-25],[11,-34],[20,-5],[49,24],[23,14],[21,-12],[26,-9],[16,0],[38,-34],[47,11],[22,-2],[22,-15],[37,-53],[47,-65],[68,-47],[14,-19],[33,-74],[51,-142],[67,-136],[73,-107],[39,-75],[26,-91],[26,-83],[26,-35],[24,-29],[26,-63],[18,-52],[24,-60]],[[61771,59024],[-27,-82],[-37,-110],[-42,-127],[-13,-32],[-37,-77],[-7,-22],[-7,-56],[0,-101],[5,-130],[4,-119],[21,-14],[23,-9],[27,16],[31,13],[40,8],[43,24],[26,20],[27,-2],[24,-21],[12,-19],[17,-6],[21,1]],[[56756,85178],[2,23],[37,113],[7,89],[13,13],[4,12],[-6,29],[-38,18],[-15,-3],[-14,-30],[-14,-22],[-34,-14],[-29,23],[-67,32],[-18,41],[-4,42],[-35,40],[-15,48],[6,33],[32,22],[9,19],[-40,-3],[-9,5],[-2,17],[-18,58],[16,23],[7,22],[-13,19],[4,22],[10,22],[-6,50],[40,27],[40,19],[83,10],[-8,46],[34,2],[57,56],[56,-10],[82,38],[157,0],[22,22],[-4,22],[0,24],[30,-7],[49,4],[186,-46],[45,0],[63,-47],[34,-13],[101,0],[154,-21],[31,32],[3,9]],[[56282,85611],[20,-14],[18,4],[18,10],[40,-9],[92,-71],[8,-19],[-54,-8],[-13,-22],[-13,-15],[-15,-5],[-27,-30],[-35,-29],[-8,-17],[-64,3],[-35,-11],[-29,-33],[-11,-62],[-21,-49],[-21,-18],[-22,-3],[-6,19],[3,18],[46,69],[10,23],[-23,10],[-20,24],[-42,28],[-8,22],[10,2],[10,7],[11,19],[5,21],[-34,64],[18,10],[21,-2],[22,-19],[24,22],[11,3],[17,-8],[17,42],[40,14],[20,13],[20,-3]],[[56367,85729],[-23,-28],[-13,11],[-7,14],[-30,-65],[-33,-11],[-19,13],[2,24],[-19,63],[-29,19],[-40,1],[-30,26],[113,18],[12,30],[23,32],[17,3],[15,-7],[2,-25],[4,-10],[51,-13],[20,-41],[8,-50],[-24,-4]],[[56484,85570],[-23,-6],[-55,41],[13,27],[15,11],[47,-17],[6,-42],[-3,-14]],[[60724,62214],[84,-333],[34,-196],[30,-206],[23,-308],[21,-157],[34,-78],[23,-146],[21,-6],[14,-40],[25,-138],[18,-51],[9,44],[-1,25],[-7,43],[7,54],[14,33],[31,-44],[18,-34],[5,-68],[7,-37],[33,-80],[28,-23],[37,-6],[30,-17],[25,-29],[46,-81],[104,-71],[85,-216],[49,-151],[163,-227],[28,-110],[15,-106],[34,5],[59,-117],[17,-89],[48,-32],[9,52],[23,-43],[9,-67]],[[61976,59163],[-31,-26],[-34,-24],[-4,1],[-12,-31],[-16,-84],[-17,-25],[-10,-2],[-53,79],[-8,4],[-11,-15],[-9,-16]],[[61132,61107],[9,-56],[-27,21],[-5,12],[12,22],[3,13],[8,-12]],[[61150,60884],[11,-30],[8,3],[7,10],[4,21],[44,-42],[-3,-29],[-26,-1],[-30,12],[-28,-4],[-33,12],[-8,48],[21,-23],[11,6],[2,6],[-15,33],[-21,6],[1,26],[10,10],[6,12],[-13,36],[24,-9],[15,-21],[10,-25],[3,-57]],[[52426,54008],[7,-3],[41,2],[12,-30],[-1,-45],[-43,-131],[-8,-55],[-17,-46],[-14,-4],[-49,27],[-9,17],[-3,22],[5,52],[4,16],[23,10],[8,9],[13,56],[4,51],[10,39],[17,13]],[[52664,52437],[2,13],[-25,35],[-18,3],[-16,11],[13,90],[17,80],[25,61],[13,14],[4,30],[20,99],[25,80],[-8,81],[6,136]],[[52722,53170],[7,-4],[1,-13],[2,-19],[9,-16],[31,-27],[91,0],[54,0],[80,0],[85,0],[64,0]],[[25607,59561],[-7,-8],[5,-58],[-16,-35],[-14,-25],[-26,-7],[-44,-2],[-66,28],[-48,39],[-26,0],[8,-13],[21,-8],[27,-27],[-8,-8],[-99,57],[-114,112],[-68,18],[-78,30],[-46,71],[-35,30]],[[56986,70077],[21,-70],[43,-12],[142,62],[157,-62],[86,-24],[133,-54],[81,-95],[23,-12],[58,2],[38,-56],[152,-27],[81,-62],[46,-50],[28,-15],[24,2],[33,19],[42,35],[45,48],[94,125],[33,22],[22,-6],[27,2],[11,33],[14,23],[8,27],[15,31],[48,9],[98,54],[-11,-25],[-89,-61],[38,-8],[39,21],[45,13],[8,26],[6,49],[9,6],[30,-9],[92,-74],[23,-2],[65,41],[13,9],[21,-23],[48,-93],[-17,2],[-51,80],[-4,-40],[-29,-70],[36,-30],[30,-11],[16,-39],[10,-35],[29,15],[21,47],[-11,27],[-8,27],[10,1],[20,-23],[58,-89],[20,-19],[22,3],[48,26],[13,-4],[63,33],[8,-25],[10,-24],[51,27],[80,0],[66,29],[76,71],[6,11]],[[59695,68823],[-15,-26],[-32,-93],[-33,-296],[-47,-231],[-5,-144],[-8,-52],[-23,-73],[-27,-72],[-49,37],[-79,126],[-46,120],[-49,77],[-47,103],[-13,73],[1,48],[-21,115],[-15,55],[-57,123],[-16,65],[-13,29],[-12,41],[-21,160],[-23,101],[-25,-28],[4,-43],[-22,-59],[-14,-68],[11,-56],[46,-85],[10,-37],[11,-80],[-2,-110],[7,-37],[35,-81],[13,-48],[7,-42],[12,-38],[34,-71],[50,-134],[47,-91],[35,-44],[14,-44],[3,-113],[-2,-55],[30,-101],[11,-52],[29,-42],[13,-48],[12,-78],[18,-231],[26,-56],[77,-303],[66,-192],[32,-144],[48,-174],[95,-383],[56,-118],[22,-66],[41,-51],[44,-74],[-42,7],[-10,-5],[-15,-12],[-7,-45],[-3,-37],[5,-194],[11,-98],[37,-188],[28,-56],[14,-36],[18,-27],[88,-63],[52,-136],[115,-170],[11,-47],[0,-11]],[[27687,49891],[6,8],[40,29],[17,29],[20,26],[18,41],[11,39],[28,180],[26,114],[-5,54],[-21,74],[-5,109],[2,33],[-3,25],[-14,-45],[4,-160],[-13,-72],[-17,-18],[-12,13],[7,117],[-13,-22],[-21,-79],[-34,-59],[-1,-19],[-9,-25],[-26,23],[-20,24],[-65,132],[-43,28],[-25,46],[-6,19],[-3,27],[26,27],[28,37],[2,82],[0,65],[-20,109],[9,144],[-5,56],[-23,119],[17,60],[60,44],[20,29],[13,95],[14,56],[27,-22],[21,2],[-28,21],[-24,85],[-3,40],[44,116],[24,30],[28,62],[25,93],[6,147],[-10,105],[-8,111],[15,28],[36,15],[30,36],[15,33],[36,-5],[41,51],[66,26],[91,58],[20,52],[-9,92]],[[28094,52681],[9,-12],[25,-44],[16,-43],[26,-27],[21,-22],[55,-88],[37,-44],[40,-41],[57,-42],[36,7],[8,-32],[7,-34],[13,-19],[21,-17],[12,-5],[4,-9],[12,-122],[8,-17],[29,-20],[35,-7],[14,4],[31,-34],[23,-16],[25,-12],[17,-3],[8,5],[3,12],[14,-2],[21,-16],[30,-3],[19,15],[2,25],[2,43],[7,15],[21,25],[11,-5],[57,-54],[11,-19],[15,-38],[26,-55],[29,-36],[44,-15],[42,-58],[50,-40]],[[27741,50130],[-5,-22],[-27,2],[-7,7],[0,25],[6,81],[7,34],[22,32],[18,16],[23,-3],[25,-29],[-29,-55],[-16,-8],[-6,-7],[-11,-73]],[[28080,52564],[-15,-4],[-7,28],[19,32],[6,6],[-3,-62]],[[24907,51398],[-15,-1],[-43,56],[3,55],[17,37],[56,18],[23,-34],[-2,-66],[-19,-48],[-15,-9],[-5,-8]],[[25161,51318],[-33,-24],[-11,11],[-7,11],[-2,15],[19,35],[17,20],[16,41],[29,24],[9,-6],[5,-8],[2,-14],[-9,-33],[-18,-23],[-17,-49]],[[24604,51577],[-28,-10],[-24,20],[-10,31],[-2,46],[2,15],[52,16],[17,-38],[0,-57],[-7,-23]],[[24882,51071],[-11,-1],[-16,24],[12,45],[13,-11],[9,-12],[5,-18],[-12,-27]],[[24646,51857],[18,-37],[9,-106],[56,-112],[7,-62],[-5,-29],[2,-11],[27,-44],[18,-47],[-30,-108],[-62,-46],[-67,2],[-13,12],[-18,41],[-4,37],[11,35],[34,54],[53,48],[6,37],[-21,35],[-14,71],[-34,50],[-16,152],[-11,8],[-23,-21],[-11,18],[-2,10],[25,35],[5,24],[36,12],[15,-20],[9,-38]],[[24840,51650],[-13,-17],[-52,20],[-16,33],[13,46],[11,18],[31,-17],[32,-51],[-6,-32]],[[30061,63201],[12,10],[8,34],[11,31],[14,17],[17,10],[32,-1],[44,-27],[13,1],[43,24],[35,14],[34,-16],[13,-21],[28,-33],[14,-10],[43,1],[12,-3],[37,-55],[30,-22],[18,-1],[32,21],[16,-1],[18,-47],[4,-67],[15,-61],[24,-39],[115,16],[25,-32],[-8,-27],[-17,-14],[-54,6],[-24,-3],[-5,-26],[0,-25],[32,-6],[31,-12],[32,-20],[33,-13],[36,-9],[36,-14],[61,-49],[66,-109],[18,-25],[12,-34],[-6,-43],[-24,-69],[-13,-22],[-20,-14],[-13,-28],[-13,-49],[-8,-4],[-9,2],[-16,28],[-12,42],[-32,39],[-38,-5],[-56,24],[-34,-12],[-34,-2],[-35,12],[-35,4],[-35,-15],[-34,-25],[-12,-17],[-22,-39],[-12,-15],[-82,-20],[-24,29],[-22,40],[-32,5],[-46,-30],[-28,-11],[-12,-14],[-3,-14],[0,-56],[-7,-33],[-45,-127],[-25,-90],[-10,-28],[-12,-6],[-23,52],[-14,19],[-17,9],[-7,27],[0,39],[-5,38],[-10,29],[-16,20]],[[32977,60627],[-26,-13],[-11,100],[-18,72],[3,45],[3,17],[38,-28],[12,-33],[7,-89],[-8,-71]],[[61976,59163],[4,-27],[47,-114],[15,-56],[16,-102],[-9,-56],[-12,-37],[-18,-33],[-62,-81],[-69,-52],[-44,-103],[-33,7],[5,-39],[12,-5],[19,8],[38,30],[34,14],[37,1],[33,-13],[23,-38]],[[41679,99979],[267,-35],[141,-40],[30,1],[191,-15],[182,-19],[302,-51],[42,-16],[-32,-14],[-75,-9],[-386,-16],[-700,-21],[-401,-39],[-127,-2],[-11,-59],[54,-3],[89,8],[314,59],[117,9],[219,-5],[285,-22],[114,8],[205,-6],[239,17],[283,37],[77,-82],[104,-81],[83,9],[70,-5],[24,-26],[39,-12],[80,6],[245,-23],[168,-42],[63,-19],[30,-28],[18,-22],[-27,-28],[-105,-49],[-133,-45],[-179,-34],[-207,-22],[-1588,-73],[-54,-17],[-31,-44],[21,-57],[74,-9],[173,32],[300,31],[221,-2],[527,-26],[155,-68],[82,-105],[183,24],[39,18],[29,31],[22,33],[18,36],[19,24],[21,13],[45,11],[105,13],[274,13],[66,-4],[48,-49],[10,-28],[3,-38],[-1,-45],[-6,-55],[-24,-54],[-76,-94],[-61,-52],[-66,-37],[-126,-84],[-44,-23],[-138,-99],[-35,-45],[-2,-34],[24,-6],[40,31],[15,23],[26,23],[205,62],[44,17],[133,74],[86,28],[70,29],[37,20],[206,146],[107,43],[112,0],[20,-73],[135,-12],[59,3],[94,-18],[41,-14],[70,-8],[73,-17],[63,18],[19,12],[62,54],[83,47],[77,59],[26,15],[41,13],[42,5],[115,28],[29,2],[62,-9],[273,-5],[150,-14],[208,-40],[145,-21],[67,-20],[97,-41],[79,-43],[37,-13],[-2,-13],[-27,-19],[-195,-66],[-64,-45],[-185,-83],[-90,-29],[-98,-11],[-109,-2],[-71,-12],[-10,-12],[50,-34],[22,-25],[-3,-22],[-53,-32],[-20,-8],[-192,-24],[-97,-41],[-126,-5],[-89,5],[-123,-44],[48,-36],[44,-16],[137,-32],[1,-19],[-66,-38],[-89,-44],[-105,-31],[-40,-5],[-50,8],[-46,-2],[-101,-14],[-97,-2],[-173,20],[-93,23],[-49,8],[-62,-2],[-24,-9],[-98,-56],[-48,-38],[-31,-39],[-13,-42],[5,-46],[12,-32],[19,-17],[23,-10],[41,-6],[89,6],[35,-3],[11,-10],[19,-29],[-3,-28],[-17,-39],[-12,-45],[-9,-52],[5,-29],[36,-6],[17,2],[19,-9],[23,-21],[17,-22],[11,-23],[-6,-19],[-23,-15],[-52,-17],[-128,-33],[-13,-10],[-10,-21],[-7,-30],[-16,-28],[-23,-25],[-22,-15],[-42,-6],[-54,-1],[-61,-14],[-144,-84],[-2,-9],[54,-27],[-2,-24],[-67,-101],[-18,-50],[-14,-68],[-24,-58],[-33,-47],[-33,-55],[-31,-61],[5,-47],[41,-33],[56,26],[69,86],[74,38],[81,-12],[70,-17],[90,-34],[76,-21],[65,-28],[26,-23],[27,-33],[1,-20],[-48,-12],[-16,4],[-119,54],[-58,14],[-77,-16],[-67,-25],[60,-99],[65,-45],[117,-21],[62,-22],[44,-28],[35,-14],[47,6],[64,28],[88,1],[40,-13],[28,-26],[13,-47],[-3,-70],[-9,-52],[-16,-35],[-32,-47],[-27,-9],[-37,3],[-35,9],[-32,17],[-49,13],[-98,14],[-98,31],[-56,8],[-117,-4],[-127,-20],[-5,-25],[-182,-89],[-37,1],[-50,30],[-71,30],[-41,0],[-62,-38],[-15,-14],[1,-14],[45,-32],[18,-7],[24,-6],[80,-8],[36,-8],[33,-100],[52,-61],[23,-13],[19,-5],[65,3],[83,20],[28,-16],[61,-20],[36,-6],[43,1],[49,-7],[67,-57],[-26,-72],[42,-57],[67,-59],[15,-21],[7,-39],[1,-26],[5,-24],[9,-21],[9,-42],[9,-62],[-2,-51],[-15,-39],[-27,-29],[-42,-18],[-34,5],[-26,27],[-37,29],[-48,31],[-80,3],[-117,-90],[-52,-5],[-42,-9],[-46,-39],[-66,-24],[-59,9],[-103,46],[37,-30],[54,-36],[33,-19],[25,-4],[27,4],[39,15],[88,41],[23,6],[20,-3],[16,-12],[19,-35],[21,-58],[-3,-49],[-26,-41],[-23,-26],[-18,-12],[0,-9],[49,-10],[69,53],[22,66],[32,76],[56,25],[64,-25],[52,-71],[72,-131],[31,-14],[39,-31],[17,-39],[-4,-45],[-9,-33],[-12,-21],[-15,-13],[-27,-8],[-50,-7],[-111,14],[-58,0],[7,-45],[-117,-39],[-133,-15],[-125,30],[-104,47],[34,65],[20,72],[-51,48],[-11,1],[18,-74],[-15,-28],[-57,-35],[-40,-15],[-3,-10],[19,-8],[13,-15],[6,-23],[-7,-23],[-19,-24],[-11,-19],[-2,-16],[18,-20],[38,-22],[41,-11],[191,-5],[77,-13],[182,-53],[8,-17],[-31,-96],[-17,-92],[-35,-17],[-191,-4],[-62,-14],[-90,-42],[-87,-51],[-45,-1],[-178,45],[-68,29],[-147,84],[-110,128],[-51,-53],[-30,-26],[-32,-13],[-31,-2],[-30,9],[-34,20],[-56,47],[-68,46],[-47,22],[-1,-6],[27,-27],[41,-32],[103,-92],[37,-23],[-4,-16],[-65,-15],[-79,-31],[-39,-24],[-60,-56],[-20,-9],[-90,-14],[-29,3],[-67,32],[-99,20],[-59,18],[-82,33],[29,-36],[157,-55],[17,-17],[-32,-33],[-20,-12],[-37,-3],[-56,7],[-56,-1],[-58,-10],[-24,-12],[8,-15],[13,-14],[20,-12],[18,0],[44,38],[33,2],[88,-9],[89,29],[64,13],[48,3],[175,44],[37,50],[58,20],[131,15],[126,-8],[65,-6],[53,-47],[70,-34],[59,-37],[69,-13],[40,-50],[111,-57],[71,-12],[44,-27],[4,-114],[5,-49],[-19,-136],[-57,-31],[11,-72],[-15,-58],[-57,22],[-58,38],[-139,59],[-130,38],[-50,35],[-59,26],[-81,109],[-52,135],[-23,67],[-44,4],[-57,-18],[-49,-19],[-24,-32],[-168,-45],[-61,-30],[-35,0],[-125,-45],[50,-22],[23,-3],[51,12],[31,16],[114,44],[92,7],[33,19],[70,26],[48,8],[7,-7],[5,-12],[33,-165],[-14,-44],[-38,-19],[-80,-31],[-21,-15],[23,-27],[76,25],[50,27],[26,-10],[43,-41],[49,-21],[123,-64],[59,-35],[82,-34],[93,-47],[24,-17],[85,-24],[18,-8],[36,-83],[29,-10],[85,-5],[-15,-32],[-83,-72],[-43,-22],[-10,-15],[4,-25],[2,-42],[17,-78],[20,72],[13,34],[19,10],[17,2],[58,32],[58,-17],[15,-81],[8,-76],[-5,-66],[6,-101],[-2,-35],[14,-29],[14,-124],[14,-37],[-29,-33],[-88,-14],[-35,16],[-87,-6],[0,30],[-5,33],[0,24],[-6,21],[-4,122],[-25,-31],[-1,-24],[-7,-25],[-15,-132],[-22,-32],[-70,8],[-69,-5],[-38,5],[-129,60],[-50,54],[-44,82],[-28,76],[-10,71],[-31,57],[-51,45],[-61,36],[-70,28],[-62,35],[-53,44],[-58,33],[-64,25],[-90,10],[-133,-4],[-89,27],[-22,-2],[-21,-14],[16,-40],[103,-18],[79,-5],[105,3],[64,-10],[24,-23],[16,-42],[9,-59],[-21,-47],[-76,-52],[-39,-25],[-117,-47],[-39,-10],[-97,-4],[-75,5],[-98,23],[-55,5],[-115,3],[-27,-8],[30,-25],[49,-14],[34,-17],[4,-32],[-13,-48],[-13,-33],[-21,-25],[-75,-47],[-31,-15],[-141,-50],[-10,-10],[33,2],[89,17],[26,0],[146,-43],[116,2],[236,40],[19,-1],[16,-6],[15,-15],[16,-23],[-19,-23],[-54,-22],[-84,-22],[-36,-15],[-35,-22],[-64,-53],[-19,-56],[68,-21],[30,27],[36,59],[33,35],[76,24],[94,-12],[72,14],[148,58],[26,4],[217,-34],[197,-65],[103,-25],[138,-14],[246,7],[22,-11],[-8,-23],[-14,-20],[-41,-27],[-50,-18],[-31,-5],[-27,-13],[-59,-13],[-15,-10],[21,-45],[-10,-7],[-52,-1],[-88,-29],[-72,2],[-15,-5],[14,-10],[14,-21],[16,-32],[-9,-22],[-32,-13],[-24,-4],[-85,18],[-14,-3],[13,-13],[7,-20],[2,-28],[-21,-23],[-43,-18],[-81,-51],[-35,-15],[-74,-12],[-15,-7],[30,-39],[-4,-16],[-49,-42],[-76,-27],[-10,-14],[-7,-38],[-6,-15],[-20,-22],[-71,-42],[-51,-21],[-25,-17],[-31,-28],[-40,-16],[-47,-1],[-45,-11],[-74,-30],[-51,-10],[-163,-53],[-76,-8],[-66,-19],[-137,-50],[-64,-16],[-45,-19],[-49,-5],[-80,12],[-43,1],[-27,-8],[-24,-15],[-40,-42],[-34,-4],[-112,34],[3,-15],[29,-36],[-1,-26],[-67,-26],[-36,-7],[-52,11],[-70,28],[-90,59],[-109,89],[-53,30],[4,-29],[12,-28],[20,-27],[5,-20],[-13,-12],[-16,-6],[-20,0],[-3,-7],[33,-43],[25,-44],[-2,-41],[-31,-39],[-26,-23],[-22,-7],[-130,-98],[-37,-13],[-16,-12],[-14,-18],[-38,-81],[-15,-25],[-30,-32],[-13,-6],[-4,-13],[6,-21],[-9,-34],[-22,-49],[-76,-133],[-61,-125],[-27,-41],[-20,-17],[-12,6],[-30,-3],[-15,-22],[-13,-40],[-15,-30],[-16,-21],[-122,-89],[-32,-17],[-28,11],[-34,-4],[-70,47],[-12,17],[-45,39],[2,-20],[8,-11],[6,-17],[16,-20],[34,-105],[-27,-22],[-25,-25],[-63,-42],[-68,-70],[-25,-19],[-5,57],[3,17],[-39,27],[1,-19],[-4,-19],[-27,-74],[-8,-13],[-14,3],[-30,-14],[-30,7],[-26,33],[-11,18],[-47,-48],[-23,1],[-4,-40],[-22,-37],[-30,-16],[-41,1],[-25,-21],[-55,23],[-13,44],[44,60],[12,25],[-8,30],[11,39],[84,125],[57,63],[-3,12],[-77,13],[-68,22],[-66,8],[-29,-8],[46,-36],[66,-35],[-33,-34],[-27,-36],[-29,-97],[-19,-40],[-72,46],[-33,16],[21,-51],[63,-48],[4,-16],[0,-57],[-121,-50],[-125,-8],[-91,-14],[-152,-18],[-59,0],[-5,-19],[149,-89],[22,-16],[-21,-30],[-31,-19],[-48,-65],[-25,-23],[-63,-31],[-115,35],[-59,-16],[-57,11],[-1,-38],[17,-27],[17,-69],[38,6],[48,21],[38,-52],[24,-87],[43,-45],[19,-34],[8,-33],[-27,-32],[-55,-46],[-62,-8],[4,-36],[-27,-26],[-56,7],[-26,18],[-28,9],[-112,10],[113,-70],[40,-32],[18,19],[39,5],[58,-18],[-10,-118],[26,-95],[3,-21],[-62,-57],[-1,-54],[-36,-15],[-40,4],[-2,-59],[-27,-36],[5,-23],[8,-20],[-25,-38],[-22,-45],[-31,-39],[-17,4],[-50,-3],[-60,3],[-49,52],[-20,17],[-23,11],[9,-33],[14,-20],[45,-37],[82,-46],[-2,-33],[-22,-14],[-52,-89],[-18,-1],[-23,-23],[-72,7],[-30,9],[-88,-5],[-30,7],[-26,-3],[24,-25],[51,-23],[57,-23],[87,-17],[-3,-32],[-22,-27],[13,-39],[-10,-29],[-4,-34],[-20,-78],[23,-54],[26,-26],[-3,-35],[12,-55],[-38,-50],[-33,2],[-45,-11],[-16,-22],[73,-20],[-7,-38],[-19,-46],[-21,-100],[-42,-172],[-20,-171],[-91,-141],[-32,-3],[-8,-6],[-45,7],[-69,33],[-54,10],[-36,1],[-5,-16],[30,-27],[46,-10],[37,-18],[66,-16],[23,-31],[16,-33],[-3,-19],[0,-21],[12,-117],[-31,-40],[-24,-37],[-82,5],[-15,13],[-79,38],[5,-18],[57,-52],[20,-26],[-13,-5],[-23,-2],[-33,-18],[-58,10],[3,26],[11,27],[-27,-4],[-29,-14],[-18,5],[-14,-1],[-8,13],[-12,53],[14,27],[48,69],[15,37],[-13,16],[-34,-39],[-36,-63],[-16,-38],[-22,-8],[-55,20],[-158,88],[5,53],[-2,45],[46,5],[34,20],[30,23],[33,43],[31,71],[-4,6],[-90,-91],[-56,-30],[-27,-6],[-14,14],[-44,29],[-29,13],[-67,22],[-12,11],[-19,9],[-27,93],[35,113],[23,32],[15,38],[9,50],[-6,22],[-20,-8],[-9,-17],[1,-27],[-11,-18],[-80,-43],[-79,-35],[-38,-33],[-24,-26],[-19,-25],[-29,2],[-41,-5],[-27,-16],[-41,10],[-26,24],[-32,3],[-35,-12],[-25,1],[2,-16],[16,-41],[-27,-3],[-52,-1],[-26,11],[-20,16],[-17,22],[10,28],[83,52],[38,30],[-24,10],[-80,-9],[-14,7],[-53,-4],[2,77],[-13,19],[-1,9],[-18,21],[-18,6],[-11,7],[-90,18],[-12,43],[-6,44],[-17,55],[-43,14],[-24,24],[19,24],[8,31],[-20,14],[-13,22],[2,14],[-16,38],[-5,30],[18,27],[51,32],[17,13],[9,14],[58,23],[-50,16],[-31,3],[-23,-8],[-21,-31],[-19,-20],[-77,-7],[-11,11],[-5,43],[4,34],[32,47],[-37,23],[-33,8],[-39,22],[-35,23],[-30,27],[-29,31],[-10,4],[11,34],[6,27],[1,58],[-12,25],[26,50],[36,54],[78,82],[-83,-39],[-68,-86],[-15,-4],[-5,16],[-26,55],[-19,15],[-9,17],[-39,29],[-17,23],[-24,44],[-34,52],[-48,103],[-78,119],[-20,67],[25,84],[-27,58],[74,27],[106,31],[55,25],[32,7],[68,5],[22,25],[-37,-6],[-25,3],[-2,12],[9,21],[6,27],[-13,-5],[-66,-46],[-97,-37],[-76,-21],[-13,1],[-26,-13],[-16,-3],[-11,3],[-27,36],[-8,23],[49,63],[36,86],[48,56],[33,7],[57,-3],[20,-5],[-7,33],[3,16],[46,20],[53,8],[38,-6],[24,-39],[31,-72],[41,-24],[-2,34],[-21,45],[-8,68],[-27,29],[-22,14],[-61,-7],[-36,50],[-9,19],[0,24],[-37,72],[-12,36],[-19,47],[-10,3],[13,-60],[17,-42],[24,-93],[12,-38],[-16,-29],[-31,-30],[-27,-17],[-64,-21],[14,46],[8,45],[-32,-16],[-30,-33],[-10,-45],[-20,-41],[-57,-101],[-23,-56],[-21,-27],[-24,-8],[-21,22],[-18,51],[-9,41],[-1,104],[3,49],[-10,65],[-31,153],[-7,54],[-52,29],[-1,9],[-14,31],[-10,31],[9,12],[12,8],[78,46],[58,51],[70,80],[28,25],[102,19],[45,3],[-1,14],[-15,6],[-68,-4],[-92,-32],[-16,-12],[-40,-50],[-31,-27],[-87,-62],[-56,0],[-58,74],[-65,-14],[-44,5],[-13,11],[-10,102],[36,119],[-38,1],[-8,5],[-20,27],[-13,8],[9,14],[94,56],[141,111],[61,43],[37,19],[29,21],[34,47],[11,20],[20,16],[40,19],[44,28],[72,63],[9,23],[-15,5],[-34,-21],[-68,-58],[-49,-32],[-166,-145],[-71,-52],[-38,-34],[-30,-32],[-32,-23],[-33,-14],[-71,-10],[-35,-12],[-21,9],[-10,69],[7,40],[-3,40],[18,58],[26,40],[11,22],[5,16],[55,42],[30,18],[21,42],[121,15],[31,-1],[16,5],[13,13],[-12,9],[-36,7],[-97,-2],[-89,8],[-40,7],[-20,-4],[-32,12],[-35,23],[-55,86],[22,110],[2,53],[69,46],[37,15],[53,35],[71,59],[84,36],[43,7],[36,-6],[131,-51],[68,-10],[60,13],[75,-18],[132,-74],[25,11],[-7,18],[-148,78],[1,23],[38,6],[40,22],[-22,14],[-98,-12],[-29,-18],[-95,-10],[-49,16],[-45,8],[-67,33],[-56,-11],[-35,-13],[-62,-13],[-23,-8],[-122,-106],[-51,-22],[-37,7],[26,69],[7,27],[0,30],[11,40],[62,77],[40,84],[16,53],[31,6],[42,-8],[126,-34],[105,-40],[77,-11],[51,-1],[22,13],[17,22],[7,15],[5,32],[6,12],[17,13],[34,49],[11,34],[-11,20],[-24,-2],[-45,-13],[-6,-6],[1,-10],[-44,-54],[-47,-12],[-110,-18],[-50,-1],[-89,25],[-13,9],[-9,19],[-109,-5],[-33,-5],[-26,2],[13,32],[34,35],[48,114],[41,29],[80,27],[84,-4],[145,-88],[44,-8],[40,7],[96,30],[18,12],[34,36],[40,63],[-2,15],[-61,-35],[-33,-10],[-28,0],[26,115],[10,87],[9,22],[82,-7],[111,12],[26,19],[0,9],[-45,11],[-21,25],[-38,-8],[-50,-16],[-62,2],[5,37],[46,79],[5,36],[18,72],[1,37],[24,36],[72,25],[31,16],[1,16],[-43,64],[11,18],[34,16],[13,11],[-9,8],[-31,7],[-49,-14],[-53,-7],[-47,21],[-37,10],[-24,-3],[-63,-36],[-23,-1],[-27,10],[-183,31],[-22,11],[-65,54],[-54,36],[-72,39],[-93,30],[-114,20],[-68,19],[-34,27],[-58,59],[-44,50],[-8,24],[26,30],[26,22],[50,18],[85,-6],[46,-8],[50,-17],[38,-3],[79,4],[80,-10],[48,-12],[63,-25],[172,-106],[72,-37],[32,-4],[129,-39],[20,0],[53,19],[6,12],[-18,11],[-57,10],[-67,43],[-42,34],[-4,57],[5,32],[10,15],[8,48],[-39,29],[-27,9],[-72,43],[-6,10],[34,5],[34,-3],[73,-21],[38,-3],[28,8],[3,9],[-44,24],[-56,44],[-115,6],[-75,-5],[-48,15],[-51,24],[-32,7],[-67,-16],[-34,-1],[-31,5],[-30,76],[8,23],[24,10],[18,25],[12,26],[40,25],[217,56],[55,42],[-2,7],[-37,-8],[-48,-19],[-31,-4],[-128,24],[-20,-5],[-52,-35],[-70,-38],[-32,2],[-44,23],[-7,16],[-3,19],[48,26],[15,14],[31,38],[-2,18],[-52,-10],[-7,17],[1,30],[-5,37],[-13,37],[-43,57],[-18,14],[-15,21],[-33,77],[10,19],[29,14],[5,7],[-69,-12],[-7,-13],[13,-20],[9,-26],[6,-32],[9,-29],[25,-31],[20,-16],[33,-43],[14,-48],[-4,-25],[-26,-26],[-40,-27],[-13,-23],[-5,-23],[-32,-21],[-19,8],[-16,1],[18,-37],[12,-39],[-14,-38],[-38,-24],[-20,0],[-41,-19],[-103,-10],[-36,4],[-66,20],[-78,10],[-31,26],[-40,47],[-21,42],[0,38],[11,27],[22,17],[27,109],[38,88],[96,91],[27,33],[9,17],[0,14],[-15,8],[-118,-112],[-73,-12],[-21,25],[6,45],[13,11],[59,-5],[23,25],[-37,38],[-39,10],[-9,9],[40,29],[93,-2],[21,20],[34,22],[37,40],[14,34],[3,29],[-8,23],[-1,23],[7,24],[-10,26],[-26,28],[-57,28],[-17,-31],[-18,-13],[-25,-3],[-24,13],[-24,5],[-24,12],[-24,3],[-10,10],[-6,26],[-1,34],[28,16],[39,13],[26,23],[17,34],[3,38],[-12,40],[-32,37],[-58,-36],[-23,-9],[-6,26],[-8,19],[-24,25],[-33,18],[-31,13],[-1,19],[7,21],[14,24],[18,52],[20,-5],[16,5],[-9,42],[-16,36],[-19,20],[-1,9],[-4,10],[-14,25],[-16,19],[-29,52],[-20,19],[-26,11],[-28,0],[-45,-13],[-83,-16],[-66,-8],[-11,4],[33,20],[49,21],[64,14],[19,34],[-7,29],[2,28],[-17,30],[17,16],[58,16],[27,3],[26,21],[-74,50],[-77,33],[-20,14],[-17,22],[-15,30],[-24,31],[-33,31],[-48,30],[-125,54],[-42,38],[-40,57],[-19,25],[-21,18],[-87,43],[-10,18],[89,50],[9,20],[-36,61],[-38,44],[-41,16],[-60,8],[-56,20],[-50,31],[-51,23],[-76,22],[-126,56],[-195,59],[-87,35],[-52,13],[-68,3],[-132,33],[-111,10],[-69,-4],[-22,5],[-51,33],[-79,19],[-41,-7],[-51,-36],[-62,-35],[-32,-4],[-49,32],[-24,22],[-23,8],[-23,-8],[-43,-29],[-41,-21],[-61,-25],[-49,-12],[-63,-3],[-16,-9],[-24,-1],[-32,8],[-31,17],[-28,24],[-25,14],[-22,2],[-50,-13],[-63,-37],[-29,-9],[-24,3],[-30,12],[-59,30],[-33,-3],[-24,-10],[6,-25],[56,-59],[50,-42],[-42,-5],[-368,57],[-46,14],[-68,34],[-56,21],[-96,54],[-74,30],[-24,22],[-6,16],[23,22],[149,72],[56,14],[116,18],[27,11],[9,8],[-30,16],[-151,-6],[-135,11],[-117,28],[-21,10],[-19,17],[-20,26],[5,28],[28,32],[16,22],[5,11],[-147,-77],[-60,-28],[-48,9],[-34,13],[-16,14],[1,16],[5,11],[10,7],[-78,33],[-35,25],[-4,26],[28,27],[27,19],[27,12],[72,11],[263,20],[188,-19],[64,64],[43,21],[127,21],[195,3],[138,-12],[64,-15],[88,-33],[5,10],[-21,30],[-2,25],[36,43],[16,27],[-11,29],[-38,29],[-69,38],[-36,3],[-41,-9],[-49,-21],[-102,-53],[-49,-11],[-80,-3],[-44,7],[-43,8],[-67,28],[-25,5],[-29,-12],[-35,-30],[-34,-21],[-32,-12],[-30,-5],[-43,2],[-173,47],[-40,21],[-2,31],[-53,30],[-60,5],[-8,11],[77,46],[57,19],[-10,6],[-82,1],[-56,-25],[-32,-4],[-74,-1],[-77,13],[-33,11],[-34,25],[-38,14],[-115,21],[-26,12],[-25,19],[-94,55],[-57,40],[-8,22],[66,49],[3,12],[-28,21],[-12,15],[10,22],[57,47],[22,13],[103,28],[104,40],[37,9],[34,3],[136,-3],[42,10],[36,20],[58,20],[123,30],[272,46],[18,6],[1,8],[-24,24],[-5,12],[55,21],[126,33],[86,16],[55,2],[45,7],[63,21],[35,4],[214,8],[95,-12],[46,1],[30,8],[40,24],[74,59],[38,36],[37,56],[48,88],[35,85],[24,83],[18,51],[13,18],[44,23],[47,18],[79,16],[-7,7],[-34,12],[-31,5],[-29,-3],[-53,-18],[-69,-13],[-67,2],[-48,-5],[-44,-17],[-71,-14],[-48,3],[-86,25],[-43,5],[-110,-3],[-32,10],[-28,17],[-23,25],[-16,32],[2,34],[40,60],[15,16],[107,68],[66,31],[66,24],[48,13],[45,7],[43,14],[80,47],[82,40],[102,75],[50,20],[173,32],[47,1],[40,-9],[38,-16],[106,-74],[9,2],[-19,28],[-39,84],[7,34],[61,37],[25,6],[64,-2],[103,-11],[70,-13],[52,-20],[63,-13],[32,1],[23,9],[33,32],[43,54],[17,66],[-8,78],[-13,58],[-16,36],[9,30],[52,36],[48,26],[114,38],[92,9],[55,-2],[72,-18],[100,-10],[91,-34],[146,-78],[97,-39],[81,-18],[79,-29],[117,-64],[62,-27],[36,-10],[32,-1],[-12,18],[-56,37],[-85,42],[-191,75],[-104,53],[-94,60],[-69,36],[-126,35],[2,14],[151,50],[278,44],[313,33],[105,-3],[184,14],[18,22],[39,9],[172,30],[49,0],[76,-15],[80,-27],[37,-24],[51,-42],[25,-59],[-4,-186],[1,-36],[10,-13],[35,20],[42,38],[37,26],[29,41],[20,56],[12,41],[-49,46],[-2,76],[24,41],[69,0],[284,-140],[111,-31],[127,-75],[149,8],[137,-9],[60,3],[30,11],[-42,32],[-195,85],[-88,67],[-62,84],[-15,45],[47,8],[217,-1],[327,-39],[418,-133],[205,-45],[369,-154],[111,-23],[45,-5],[34,19],[21,21],[1,27],[-18,35],[-10,39],[-3,46],[25,89],[60,30],[26,33],[-24,59],[-70,41],[-271,105],[-1,13],[55,14],[81,8],[671,-25],[116,-10],[50,-9],[21,-11],[28,-6],[144,15],[-3,26],[-18,16],[-779,45],[-145,16],[-74,1],[-77,-12],[-158,-6],[-73,2],[-95,54],[86,64],[72,-1],[137,-25],[82,35],[129,29],[128,10],[278,63],[52,5],[65,-3],[143,-16],[57,-15],[65,-33],[38,-10],[45,-2],[61,-15],[89,48],[81,52],[92,33],[131,-19],[83,-25],[75,-30],[107,-16],[182,-102],[34,0],[16,8],[17,19],[6,28],[22,38],[-16,14],[-152,42],[-29,17],[-29,26],[0,22],[28,18],[30,8],[98,-8],[32,6],[31,15],[37,27],[29,7],[66,1],[101,-18],[88,-1],[32,8],[5,17],[8,11],[10,5],[321,1],[79,4],[63,13],[76,2],[66,-8],[83,-17],[81,1],[122,27],[115,13],[634,-4],[208,-16]],[[35352,92133],[93,-47],[98,-32],[9,-15],[8,-22],[2,-12],[-3,-11],[-6,-10],[7,-12],[21,-16],[2,-19],[-25,-31],[-34,-35],[-183,-72],[-64,-13],[-160,-49],[-49,2],[-11,2],[-30,22],[-42,20],[-19,16],[-17,23],[7,14],[30,5],[44,0],[65,16],[-18,15],[-17,9],[-12,19],[-27,-3],[-20,11],[-38,7],[-101,7],[-66,19],[-20,11],[-17,20],[-15,28],[22,109],[15,27],[34,9],[84,-24],[11,11],[-92,40],[-33,23],[-10,19],[-6,28],[0,16],[4,16],[8,17],[23,22],[92,35],[102,-12],[175,-43],[22,-10],[54,-37],[103,-113]],[[35829,91907],[-43,-20],[-9,5],[-9,15],[-22,70],[-7,34],[5,41],[-8,29],[39,35],[32,5],[43,-8],[72,-35],[-5,-11],[-16,-18],[-44,-24],[-15,-53],[-3,-27],[2,-20],[-12,-18]],[[35129,92765],[-26,-4],[-75,29],[-12,11],[-5,14],[3,16],[24,30],[45,43],[32,8],[20,-27],[20,-37],[2,-18],[-1,-22],[-5,-19],[-9,-15],[-13,-9]],[[34717,93773],[-39,-39],[-32,-23],[-70,-66],[-12,-3],[-18,9],[-15,18],[-26,4],[-9,11],[-4,9],[-12,6],[-18,3],[-30,-7],[-27,7],[-21,29],[38,20],[24,17],[91,6],[25,-7],[16,0],[25,4],[54,21],[8,10],[48,-12],[4,-17]],[[30092,96385],[-99,-5],[-97,22],[-34,17],[2,27],[14,9],[53,9],[44,2],[29,-4],[70,-16],[50,-16],[33,-5],[-9,-24],[-56,-16]],[[37537,99126],[-56,-10],[-118,61],[-186,61],[-164,40],[-154,107],[-12,38],[21,33],[135,5],[108,15],[274,-66],[138,-56],[46,-45],[-7,-92],[-25,-91]],[[42935,92696],[10,-34],[1,-16],[-2,-14],[-6,-9],[-13,-9],[25,-22],[7,-15],[2,-12],[-16,-24],[-110,-31],[-31,-15],[-38,-37],[-47,-31],[-16,0],[-18,33],[-74,24],[-139,-13],[-162,-30],[-58,-14],[-29,7],[-9,12],[0,15],[19,47],[8,12],[37,15],[25,41],[-8,44],[10,62],[25,10],[64,-22],[41,-5],[73,-3],[99,8],[79,25],[144,71],[25,-1],[19,-25],[13,-12],[43,-20],[7,-12]],[[44815,98989],[-29,-18],[-73,7],[-94,52],[-62,43],[-5,50],[32,22],[50,4],[69,-43],[71,-58],[41,-59]],[[45107,97825],[-117,-66],[-174,5],[-103,31],[-30,45],[40,51],[125,41],[156,25],[142,-15],[20,-51],[-59,-66]],[[44723,96758],[-37,-20],[-25,61],[-22,81],[-5,92],[57,45],[29,11],[20,-11],[-5,-40],[0,-82],[19,-55],[-31,-82]],[[44838,95646],[-32,-16],[-108,239],[0,87],[7,66],[49,5],[42,-36],[20,-137],[22,-208]],[[44999,95280],[22,-61],[10,-56],[35,-35],[73,5],[29,-66],[-53,-26],[-214,10],[-88,-5],[-61,41],[2,71],[8,71],[61,41],[51,-36],[62,26],[63,20]],[[45012,96567],[-54,0],[-20,15],[13,27],[75,85],[25,7],[37,-9],[11,-44],[-24,-44],[-63,-37]],[[39713,89591],[-43,0],[-14,45],[4,50],[49,15],[26,-34],[-10,-50],[-12,-26]],[[37148,86855],[-32,-70],[-32,15],[-16,31],[-31,15],[-34,-4],[-1,12],[110,74],[53,20],[-4,-31],[-10,-27],[-3,-35]],[[35645,92658],[-37,-2],[-86,11],[-7,6],[-1,13],[12,37],[38,5],[45,-20],[49,-29],[6,-13],[-19,-8]],[[48160,87445],[-6,-22],[-7,1],[-26,26],[-21,15],[-7,13],[-6,21],[12,2],[14,-4],[36,-20],[10,-20],[1,-12]],[[48139,87237],[5,-18],[-6,2],[-19,20],[-33,48],[-11,39],[-2,18],[8,-2],[7,-16],[31,-11],[8,-8],[0,-19],[10,-23],[2,-30]],[[48003,87637],[25,-22],[9,-16],[-14,-15],[-18,-4],[-21,3],[-34,17],[-12,38],[24,-1],[28,7],[13,-7]],[[48158,87688],[-7,-77],[-12,0],[-20,22],[-15,4],[-5,-11],[1,-14],[8,-9],[24,-52],[2,-15],[-3,-7],[-23,15],[-57,67],[-44,110],[60,18],[43,-29],[48,-22]],[[48220,87706],[-13,-42],[-20,7],[-5,4],[-5,11],[3,31],[-1,45],[22,-37],[19,-19]],[[53491,83977],[0,-58],[-7,-17],[-10,-11],[-28,-11],[-24,-17],[-22,-29],[-7,-41],[16,-30],[31,-16],[8,-58],[-26,-28],[-64,-28],[-7,-68],[2,-54],[-1,-39],[-5,-54],[-52,-24],[-34,82],[0,33],[-11,38],[-1,33],[-12,52],[-50,14],[-19,2],[-27,-9],[-6,3],[-33,72],[6,79],[-17,40],[-3,18],[1,20],[-14,16],[-18,9],[-8,44],[20,11],[48,-5],[15,3],[13,9],[39,73],[-1,16],[4,21],[42,8],[19,-28],[-3,-46],[2,-57],[26,-16],[10,-3],[10,43],[8,21],[10,12],[4,39],[-6,24],[-13,17],[48,49],[50,38],[29,2],[29,-9],[27,-13],[15,-11],[8,-18],[-18,-43],[-5,-23],[12,-77]],[[52408,83469],[-3,48],[-6,34],[-18,51],[27,12],[-5,100],[-10,52],[-75,53],[-60,51],[14,174],[6,46],[-23,91],[3,105],[9,164],[19,7],[14,-1],[53,-30],[22,-3],[15,-26],[18,-11],[13,28],[5,48],[42,62],[30,23],[20,11],[20,-25],[16,-28],[4,61],[12,117],[-40,19],[-33,-16],[-32,-74],[-29,-94],[-47,-8],[-37,-27],[-34,28],[-22,24],[0,35],[5,22],[39,76],[54,73],[53,-1],[39,23],[24,3],[72,-5],[38,16],[33,34],[73,141],[41,59],[82,21],[76,68],[22,1],[-36,-51],[-6,-19],[-4,-30],[25,-66],[-5,-40],[2,-78],[-24,-41],[-28,-87],[-12,-13],[-2,-101],[3,-25],[-4,-92],[28,-38],[29,-20],[99,1],[10,-16],[13,-29],[-9,-49],[-11,-36],[-28,-31],[-37,-23],[-23,-1],[-31,44],[-15,-14],[-15,-23],[-26,-119],[-12,-81],[-6,-7],[-15,12],[-25,1],[-31,-19],[16,-17],[17,-30],[-7,-15],[-28,-16],[-24,-32],[-11,-25],[-31,-29],[-19,-37],[9,-46],[4,-40],[9,-45],[-8,-35],[-38,-51],[-14,-45],[32,1],[21,-10],[12,-13],[12,-19],[-8,-23],[10,-59]],[[52956,83876],[12,-30],[14,-64],[23,-72],[-10,-30],[7,-38],[-7,-41],[-44,-46],[-51,-2],[-52,22],[-74,44],[-6,24],[-10,13],[-20,74],[1,92],[37,11],[81,43],[18,-6],[20,-23],[23,-1],[32,32],[6,-2]],[[53155,83462],[50,-36],[33,2],[22,-14],[6,-23],[2,-51],[-24,-15],[-26,5],[-36,-19],[-117,83],[2,69],[4,27],[56,7],[28,-35]],[[52981,83381],[-12,-3],[-17,46],[-2,15],[20,30],[12,34],[33,52],[19,61],[7,-1],[-8,-55],[-43,-151],[-9,-28]],[[53485,83505],[-10,-9],[-43,7],[-48,-40],[-18,12],[7,26],[5,9],[16,11],[11,16],[4,25],[10,-14],[30,-5],[14,-8],[12,-12],[10,-18]],[[53518,83868],[-26,-24],[-6,1],[-9,34],[14,20],[8,17],[6,0],[8,-19],[5,-29]],[[52912,83437],[-19,-6],[-21,12],[-35,48],[-4,12],[18,-8],[23,-25],[18,-5],[25,-21],[-5,-7]],[[52794,83459],[-29,-8],[-14,14],[-28,5],[-9,89],[2,5],[14,-6],[47,-41],[16,-45],[1,-13]],[[52946,83976],[-5,-11],[-17,11],[-2,37],[6,34],[-7,30],[8,19],[25,-45],[7,-21],[-9,-25],[-6,-29]],[[53070,84822],[-12,-13],[-38,19],[17,26],[42,13],[24,-4],[-27,-27],[-6,-14]],[[54190,83537],[-10,-10],[-46,17],[-56,40],[9,78],[14,34],[102,-88],[1,-33],[-14,-38]],[[54709,79837],[-7,13],[-13,48],[-14,6],[-19,4],[-14,7],[-31,28],[-16,8],[-18,2],[-18,-16],[-13,-19],[-41,0],[-45,9],[-65,63],[-16,1],[-18,-3],[-28,15],[-55,41],[-26,9],[-16,-5],[-14,-9],[-11,-2],[-6,14],[-20,16],[-21,2],[-6,-10],[-6,-90],[-7,-32],[-28,1],[-10,-15],[-22,-44],[-5,-41],[-38,8],[-18,7],[-16,-6],[-18,-23],[-49,2],[-39,13],[-17,52],[-18,21],[-22,18],[-8,4]],[[59445,72041],[-11,-4],[-17,16],[-10,5],[-10,-15],[-11,-11],[-10,-5],[-8,-2],[-14,-11],[-17,3],[-25,9],[-14,-22],[-3,3],[-2,55],[-9,23],[-11,13],[-16,-6],[-22,2],[-16,10],[-31,-16],[-26,-17],[-18,-17],[-14,1],[-24,16],[-18,17],[-2,14]],[[59086,72102],[17,-6],[30,12],[13,56],[4,65],[50,-19],[52,-9],[42,-4],[41,11],[126,69],[36,41],[23,14],[38,34],[40,19],[-25,-39],[-145,-174],[-10,-52],[7,-35],[20,-44]],[[59445,72041],[5,-11],[8,-33],[-32,-10],[-31,-3],[-18,4],[-17,-1],[-51,-95],[-28,-32],[-33,-19],[-33,-11],[-17,-1],[-15,-12],[-10,-22],[0,-22],[-5,-17],[-18,4],[-8,34],[-13,15],[-32,-8],[-16,1],[-52,33],[-16,13],[-10,28],[-27,101],[-4,75],[25,-19],[23,23],[23,38],[27,15],[16,-7]],[[27267,65185],[73,-26],[59,7],[28,16],[-3,-16],[26,-40],[10,-3],[38,20],[99,8],[10,-11],[18,-39],[25,-24],[26,-18],[28,-5],[27,8],[26,-4],[32,-37],[10,-5],[28,10],[-8,-34],[48,-49],[36,-95],[25,-39],[28,-35],[23,-24],[25,-11],[79,5],[18,-3],[17,-14],[15,-5],[9,5],[151,-149],[48,-79],[30,-41],[63,-59],[25,-13],[14,7],[-3,14],[-18,33],[-3,12],[24,-11],[43,-67],[12,-24],[21,-23],[22,-17],[-11,-26],[-17,-3],[-34,11],[27,-43],[5,-31],[12,-3],[19,35],[11,29],[48,-75],[25,-34],[-6,-20],[-2,-20],[28,18],[11,-2],[10,-11],[12,-32],[26,-7],[27,1],[55,-27],[51,-54],[49,-11],[49,-2],[24,-28],[11,-39],[-12,-27],[-7,-28],[18,-35],[-39,-15],[-6,-21],[2,-23],[8,-12],[23,11],[33,-10],[51,-8],[35,7],[71,-24],[21,-13],[42,-44],[19,-30],[42,-79],[35,-31],[31,-8],[11,5],[10,-8],[9,-11],[8,-35],[-5,-37],[-17,-29],[-10,-22],[-44,-2],[-62,-10],[-60,-32],[-29,-26],[-14,-17],[-31,-15],[-2,13],[0,17],[-8,31],[-7,-28],[-12,-21],[-19,-17],[-73,-1],[-29,23],[-30,17],[-109,16],[-27,-1],[-73,-18],[-73,-9],[-31,-11],[-30,-16],[-59,0],[-70,-18],[-70,-4],[45,131],[95,125],[17,27],[13,35],[3,26],[-4,23],[-23,39],[-4,29],[-7,19],[-33,17],[-33,10],[-35,0],[-73,13],[-39,1],[-33,27],[-55,96],[-26,26],[-13,22],[-10,24],[-13,140],[-11,68],[-17,58],[-25,45],[-27,15],[-101,-38],[-24,5],[-23,13],[-154,91],[-63,50],[-26,25],[-22,35],[-23,58],[-25,52],[0,-21],[-4,-14],[-129,-6],[-20,12],[-13,14],[-10,21],[-7,42],[-12,35],[-4,-38],[-6,-34],[-17,-20],[-20,-3],[-24,46],[-104,10],[-9,8],[-34,44],[-30,56],[29,19],[60,26],[13,18],[8,21],[-5,33],[-12,24],[-13,14],[-13,9],[-18,4],[-232,5],[-13,-17],[-21,-37],[-41,-46],[-28,-49],[-10,-25],[-12,-18],[-29,-30],[-24,-46],[-30,-21],[-16,13],[-16,0],[-11,-12],[-13,-5],[-59,-6],[-9,-11],[-8,-34],[-10,-64],[-9,-21],[-30,-8],[-28,-18],[-58,-62],[-15,-9],[3,45],[-3,44],[-16,2],[-19,-7],[-15,-13],[-29,-32],[-14,-9],[-14,17],[3,21],[95,79],[11,6],[17,-6],[17,3],[13,22],[-16,105],[6,71],[22,55],[45,83],[21,27],[219,174],[22,9],[142,35],[22,12],[66,51],[69,21],[73,-16]],[[28425,64488],[-11,-18],[-13,26],[-8,2],[-11,10],[-21,29],[-5,29],[17,2],[23,-5],[39,-16],[-4,-34],[-6,-25]],[[28326,64680],[-6,-10],[-15,22],[-22,9],[-13,33],[-12,13],[-1,12],[20,9],[14,-4],[16,-26],[9,-46],[10,-12]],[[28158,64834],[38,-13],[13,8],[13,2],[13,-5],[19,-48],[-16,-6],[-13,0],[-10,8],[-34,3],[-23,14],[-12,12],[-6,14],[18,11]],[[28367,64589],[-10,-2],[-27,24],[-9,20],[10,27],[2,30],[4,1],[4,-35],[22,-15],[1,-8],[13,-30],[-10,-12]],[[27066,64269],[-26,-31],[-55,-43],[-30,-1],[-30,16],[-20,36],[-12,35],[1,17],[19,-28],[16,-14],[13,9],[10,16],[-31,114],[2,25],[24,62],[65,-19],[11,-11],[10,-40],[14,-31],[17,-83],[2,-29]],[[27958,64898],[1,-15],[-49,42],[-21,44],[-8,10],[13,1],[55,-72],[9,-10]],[[55279,77689],[-18,-2],[-29,10],[-14,18],[-2,19],[0,17],[-9,29],[-23,29],[-49,5],[-18,9],[-18,11],[-20,8],[-19,-1],[-22,-8],[-40,13],[-13,-17],[-20,-20],[-18,0],[-34,46],[-10,3],[-30,-23],[-12,-1],[-9,7],[-40,18],[-18,3],[-14,-8],[-23,9],[-58,61],[-35,-46],[-73,11],[-21,-31],[-25,-60],[-20,-29],[-17,11],[-20,26],[-36,67],[-18,13],[-21,3],[-18,-8],[-10,-14],[-7,-98],[-7,-87],[0,-53],[40,-48],[47,-83],[15,-10],[7,-27],[11,-70],[12,-79],[24,-52],[22,-37],[26,-33],[33,-52],[27,-56],[7,-21],[52,-75],[51,-76],[46,-27],[7,-14],[0,-59],[5,-22],[30,-61],[62,-90],[7,-21],[2,-15],[-4,-12],[-16,-12]],[[54884,76577],[-13,13],[-58,88],[-55,56],[-63,104],[-84,41],[-58,46],[-34,-7],[-39,-14],[-23,-1],[-17,9],[-12,28],[2,22],[-2,28],[-34,46],[-46,44],[-43,56],[-87,151],[-18,49],[17,9],[13,0],[15,10],[24,0],[28,-10],[-25,32],[-31,32],[-80,127],[-24,59],[-3,65],[6,88],[-14,63],[-62,82],[-23,43],[-45,25],[-21,-2],[-12,-32],[-9,-71],[-40,-93],[-14,-41],[-21,-52],[-18,-4],[-11,5],[-33,88],[-32,68],[-4,31],[-3,40],[-24,144],[17,20]],[[54625,76610],[51,-16],[38,8],[34,-10],[21,-19],[5,-9],[-28,-1],[-31,8],[-35,-19],[-31,10],[-12,12],[-8,15],[-4,21]],[[54776,76685],[-20,-6],[-123,4],[-36,12],[-40,31],[-9,9],[41,9],[37,-9],[12,-22],[101,-18],[37,-10]],[[54662,76768],[-44,-1],[-38,10],[-19,18],[2,15],[6,25],[42,-3],[65,-18],[15,-21],[-4,-9],[-25,-16]],[[54230,77224],[5,-20],[-35,38],[-13,26],[-3,11],[46,-55]],[[54113,77751],[-34,-12],[-16,22],[-4,18],[-29,6],[-17,25],[-3,11],[24,28],[13,45],[16,-27],[20,-51],[11,-14],[19,-51]],[[54119,77625],[7,-25],[-26,23],[-23,9],[-5,17],[3,14],[5,14],[18,-2],[3,-14],[18,-36]],[[54218,77382],[-7,-16],[-18,29],[-16,20],[-12,23],[-23,30],[-8,34],[-34,69],[-6,19],[18,-28],[14,-18],[12,-4],[30,-44],[30,-57],[35,-49],[-8,-2],[-7,-6]],[[54219,77143],[4,-8],[-1,-6],[-14,8],[-4,-2],[-68,126],[-7,24],[24,-29],[66,-113]],[[54269,77173],[19,-43],[-18,9],[-18,27],[-11,28],[28,-21]],[[54024,77568],[-2,-22],[-17,28],[-9,51],[-21,82],[-3,23],[11,23],[0,23],[-15,72],[12,11],[8,2],[3,-50],[7,-29],[20,-35],[-4,-58],[4,-83],[4,-18],[2,-20]],[[54891,76479],[37,-39],[-111,51],[13,5],[12,1],[49,-18]],[[55143,76286],[-51,54],[-48,61],[-93,94],[-67,23],[-91,76],[-59,27],[23,6],[26,0],[140,-101],[-16,27]],[[54907,76553],[20,10],[17,-7],[11,-33],[22,-22],[35,-38],[22,-29],[50,-53],[12,-7],[25,-15]],[[49135,54774],[-37,15],[8,19],[36,-11]],[[48465,57848],[17,-38],[22,-26],[34,3],[24,-15],[21,-30],[14,-65],[15,-47],[7,-67],[24,-35],[19,-17],[26,-48],[27,-25],[27,6],[13,-26],[21,-18],[20,-1],[18,56],[24,22],[61,45],[23,20],[25,13],[58,4],[54,-13],[27,-11],[18,8],[18,-27],[18,-56],[14,-18],[15,-19],[12,-44],[13,-44],[7,-19],[16,-44],[14,0],[14,18],[6,14]],[[49161,54798],[-2,12],[-11,4],[-29,26],[5,83],[-13,4],[-11,-11],[-20,-101],[-10,-17],[-146,52],[-31,42],[-38,9],[-66,-5],[-54,-12],[-16,-25],[137,15],[15,-3],[7,-16],[-173,-33],[-67,-19],[-19,5],[-15,32],[-72,4],[-15,-11],[-8,-23],[28,5],[44,1],[12,-18],[-139,-24],[-97,-45],[-41,-33],[-135,-110],[-83,-52],[-22,-20],[-37,-53],[-48,-34],[-54,-64],[-33,-14]],[[26978,56492],[-19,64],[-26,61],[-23,37],[-2,88],[-9,48],[-34,44],[-30,30],[-21,-6],[13,-50],[34,-65],[3,-25],[-1,-33],[-23,5],[-21,14],[-26,4],[-17,20],[-36,77],[26,66],[8,43],[-1,90],[-6,43],[-28,67],[-44,72],[-61,60],[-29,47],[-73,37],[-27,24],[-22,45],[-3,33],[8,50],[-20,63],[-86,125],[-48,46],[-11,26],[-7,9],[7,-86],[21,-52],[55,-48],[15,-28],[6,-37],[-32,-70],[-16,-18],[-5,-38],[-10,-12],[-11,22],[-45,110],[-86,53],[-16,32],[-32,101],[-14,91],[5,61],[35,96],[11,41],[-2,26],[1,37],[-13,26],[-33,35],[-21,27],[6,14],[38,37],[2,33],[0,11]],[[26766,58131],[7,-23],[8,-36],[3,-46],[36,-155],[28,-86],[62,-158],[26,-29],[45,-127],[16,-21],[9,-37],[46,-31],[13,-23]],[[56657,45580],[-11,-11],[-6,-30],[-1,-23],[-19,-18],[-38,4],[-38,17],[-27,5],[-18,-4],[-67,-57],[-22,-7],[-73,4],[-41,12],[-30,2],[-20,-18],[-26,-42],[-22,-22],[-10,2],[-6,18],[-9,24],[-2,63],[-11,69],[7,36],[21,27],[8,53],[-7,81],[0,56],[6,33],[-8,79],[-22,126],[-30,102],[-39,79],[-25,76],[-12,72],[4,173],[12,153],[9,121],[-2,203],[-27,132],[-6,142],[15,152],[3,104],[-10,53],[-7,8],[-9,5],[-66,5],[-89,7],[-78,2],[-84,2],[-14,20],[-6,35],[0,35],[17,108],[-2,9],[-30,2],[-81,-18],[-54,-17],[-34,-6],[-59,-29],[-37,-62],[-12,-78],[1,-64],[-2,-47],[-17,-49],[-14,-56],[0,-30],[-8,-149],[-55,-20],[-55,0],[-13,1],[-68,36],[-25,0],[-22,-19],[-42,-18],[-39,-13],[-40,-45],[-11,-4],[-27,23],[-37,-2],[-38,-11],[-17,-5],[-12,14],[-35,111],[-46,149],[-25,94],[-10,24],[-16,32],[-22,61],[-9,58],[4,55],[-13,73],[-29,93],[-20,89],[-9,85],[-2,72],[4,60],[-5,45],[-16,28],[-9,37],[-7,15],[-13,34],[-29,38],[-33,20],[-70,0],[-93,1],[-84,-3],[-93,-3],[-94,-3],[-26,-6],[-72,-2],[-58,10],[-21,6],[-38,5],[-59,1],[-32,-4],[-77,0],[-7,-1],[-12,-11],[-33,15],[-32,-5]],[[53630,48464],[-19,17],[-39,-11],[-19,-13],[-31,-48],[-46,-25],[-17,2],[-12,8],[-27,53],[-20,50],[-8,28]],[[53392,48525],[12,7],[36,11],[27,5],[6,14],[4,156],[1,159],[-10,21],[-9,12],[-1,11],[14,20],[20,23],[6,11],[22,42],[43,97],[33,24],[30,25],[5,10]],[[53631,49173],[4,19],[14,-2],[4,-9],[7,-20],[12,-29],[21,-34],[22,-37],[11,-5],[17,19],[21,28],[30,20],[7,19],[4,40],[2,44],[3,51],[6,7],[11,5],[20,-15],[9,-15],[16,0],[10,14],[19,25],[25,10],[25,24],[25,31],[12,3],[12,-40],[11,-29],[2,-17],[-11,-34],[-12,-45],[10,-55],[3,-54],[-1,-32],[9,-13],[6,-7],[9,8],[17,-2],[21,-17],[21,2],[20,20],[37,81],[54,141],[44,88],[36,36],[24,43],[12,48],[21,33],[43,26],[32,29],[33,97],[44,174],[12,156],[7,94],[-4,326],[-3,107],[7,58],[16,40],[44,85],[30,70],[23,81],[44,186],[19,60],[8,26],[27,50],[37,43],[47,38],[73,129],[59,130],[-8,157],[13,129],[32,166],[11,174],[-11,184],[4,151],[31,175],[13,65],[4,106],[-1,169],[39,232],[37,138],[41,155],[15,94],[21,125],[-3,100]],[[55169,53846],[-4,116],[10,158],[-3,94],[-15,81],[7,51],[30,21],[36,81],[66,212],[71,104],[49,32],[52,-3],[33,-19],[16,-33],[39,-50],[62,-66],[46,-83],[26,-83],[20,-46],[25,-15],[40,6],[45,-19],[48,-47],[29,-17],[10,12],[23,-7],[52,-38],[42,21],[61,-16],[143,-68],[7,11],[4,3],[12,27],[31,137],[26,85],[12,31],[31,45],[35,11],[35,-4],[28,-19],[26,-23],[29,0],[30,22],[44,40],[46,26],[40,29],[65,50],[26,23],[33,10],[91,-46],[59,30],[24,-9],[51,33],[10,22],[32,111],[35,33],[52,-17],[30,-17],[98,-48],[127,-49],[38,-8],[15,-5],[13,7],[42,63],[14,9],[12,-1],[80,-51]],[[58059,50276],[0,-22],[1,-24],[13,-30],[25,-60],[19,-56],[1,-49],[-4,-82],[-1,-48],[2,-64],[0,-121],[-1,-86],[3,-44],[30,-106],[13,-118],[7,-86]],[[53692,53088],[67,-1],[66,-2],[73,1],[70,1],[55,-3],[26,25],[25,-38],[12,-9],[5,3],[9,-27],[31,3],[5,-6],[3,-33],[29,1],[14,-8],[12,1],[17,19],[12,-6],[22,-25],[15,-21],[22,7],[51,-4],[39,-20],[39,-57],[26,-33],[23,-48],[9,9],[8,13],[5,6],[-1,41],[-13,71],[-5,59],[3,49],[10,35],[17,22],[2,33],[0,4]],[[54495,53150],[19,79],[19,78],[22,92],[19,75],[-2,37],[1,56],[4,62],[-1,37],[6,25],[13,93],[7,53],[12,25],[17,17],[25,1],[66,11],[62,24],[21,11],[38,39],[15,2],[13,-15],[75,-45],[20,-17],[8,2],[11,-3],[17,-1],[18,6],[10,-6],[14,-29],[9,3],[12,21],[23,22],[43,25],[7,-11],[15,-54],[16,-19]],[[53631,49173],[-7,9],[-21,39],[-25,61],[-10,9],[-13,-1],[-22,-22],[-22,-35],[-39,-33],[-32,-18],[-3,-22],[-8,-39],[-11,-23],[-28,-8],[-11,-34],[-25,-66],[-16,-30]],[[53338,48960],[-4,13],[-10,16],[-21,51],[-20,63],[-5,29],[-6,17],[-1,64],[-30,75],[-77,135],[-8,40],[-65,124]],[[62354,44883],[14,-79],[0,-60],[-6,-19],[-13,12],[-23,48],[-43,46],[20,4],[12,-4],[12,4],[8,26],[1,16],[11,12],[7,-6]],[[62163,44753],[19,-35],[-54,15],[-8,31],[-1,24],[20,-5],[24,-30]],[[62073,44987],[-5,-8],[-25,33],[-15,8],[-21,53],[8,184],[7,24],[5,10],[12,3],[14,-23],[-4,-119],[19,-79],[12,-63],[-7,-23]],[[31423,52547],[-53,-26],[-4,4],[-3,15],[1,109],[0,124],[-9,51],[-24,81],[-31,108],[-9,31],[-14,18],[-16,2],[-11,-7],[-16,-20],[-15,-22],[-28,-65],[-29,-76],[-17,-17],[-16,-7],[-15,2],[-12,21],[-13,41],[-14,55],[-18,18],[-7,-17],[-6,-32],[-4,-32],[12,-41],[10,-32],[-18,1],[-56,0],[-66,0],[-65,0],[-58,0],[-55,0],[-21,3],[-21,18],[-20,9],[-10,-1],[-20,-18],[-24,-3],[-17,-17],[-14,2],[0,-95],[0,-135],[-1,-144],[15,11],[13,-1],[10,-10],[27,8],[14,-4],[14,-4],[13,-1],[8,-11],[11,2],[12,13],[13,-8],[15,-20],[10,-31],[8,-37],[9,-20],[-1,-35],[0,-28],[-3,-24],[4,-15],[2,-16],[0,-9],[-5,-4],[-11,-3],[-12,-3],[-8,1],[-6,14],[-6,2],[-9,-2],[-9,9],[-8,18],[-14,18],[-15,-8],[-11,-9],[-11,-11],[-9,-12],[-10,3],[-13,-9],[-10,-14],[-14,-10],[-15,-6],[-18,-5],[-17,-2],[-19,-4],[-1,-76],[-2,-148],[-1,-99],[0,-90],[7,-33],[34,-70],[26,-37],[22,-41],[23,-17],[9,-16],[6,-25],[3,-27],[3,-23],[-3,-24],[-5,-23],[2,-24],[8,-19],[2,-24],[6,-23],[3,-23],[7,-16],[8,-12],[11,-19],[2,-17],[-2,-21],[0,-15],[11,-35],[3,-25],[-5,-29],[-5,-101],[-12,-116],[-8,-88],[-12,-143],[-15,-167],[-18,-204],[-17,-201],[-18,-195],[-15,-176],[-17,-194],[-10,-117],[-5,-20]],[[28094,52681],[-8,40],[-38,57],[19,74],[46,56],[60,-44],[7,87],[-22,76],[4,144],[7,29],[16,39],[20,26],[12,8],[21,-13],[13,29],[49,-13],[15,12],[10,20],[12,14],[15,35],[9,40],[7,16],[17,-6],[1,18],[9,23],[30,53],[-1,23],[-8,51],[2,19],[17,6],[21,15],[10,48],[14,42],[15,63],[17,4],[9,72],[22,64],[46,189],[-13,-4],[-11,-26],[-13,3],[-14,15],[4,85],[-8,10],[-23,-65],[-19,67],[-2,40],[8,40],[-1,27],[-31,-20],[2,25],[19,26],[9,27],[17,29],[7,44],[4,69],[7,74],[-5,36],[-9,31],[-8,137],[2,80],[-4,62],[-8,54],[-37,69],[59,80],[21,60],[-27,124],[-35,105],[-1,62],[10,-8],[11,2],[11,132],[-3,41],[-19,67],[-24,1],[-21,83],[-13,19],[-9,52],[-34,102],[-27,53]],[[28507,56830],[8,-12],[23,-83],[37,-53],[38,-87],[16,-59],[12,-11],[11,-22],[-5,-16],[-12,-17],[-3,-35],[8,-19],[8,-12],[22,8],[12,40],[-8,178],[-13,89],[-15,27],[-13,35],[9,27],[24,12],[31,31],[115,170],[39,159],[30,58],[34,37],[41,-9],[33,20],[10,51],[-9,69],[-13,41],[12,61],[13,91],[-1,76],[16,46],[-6,18],[-23,-37],[-18,-16],[10,30],[33,76],[16,115],[13,48],[46,67],[10,32],[34,50],[56,108],[22,30],[108,-69],[34,4],[-6,-13],[-16,-4],[-23,-19],[-6,-41],[15,-44],[17,-12],[14,28],[14,80],[22,88],[6,92],[15,32],[24,11],[41,-18],[32,-19],[33,-3],[101,14],[164,240],[77,52],[47,50],[31,99],[8,74],[22,28],[24,0],[11,18],[3,23],[57,64],[33,8],[28,-1],[65,-56],[29,-98],[5,-68],[-40,-74],[-10,-32]],[[28301,53307],[-7,-13],[-14,23],[-5,29],[8,21],[12,-7],[5,-18],[1,-35]],[[82828,65953],[-10,-34],[-16,5],[0,25],[-4,7],[5,23],[3,7],[18,-20],[4,-13]],[[83850,69983],[-23,-16],[-72,49],[-51,55],[-31,65],[-4,28],[35,-5],[35,-24],[8,-36],[14,-11],[9,-21],[65,-49],[10,-15],[5,-20]],[[83970,69103],[-4,-12],[-34,33],[-37,7],[-13,29],[-2,46],[39,-2],[48,-41],[11,-21],[-8,-39]],[[83936,68939],[-1,-11],[-24,37],[-11,7],[5,21],[16,5],[13,-47],[2,-12]],[[84000,69062],[-2,-27],[-8,4],[-10,47],[6,12],[14,-3],[0,-33]],[[83283,66507],[-21,-27],[-13,13],[0,36],[7,32],[-8,23],[7,28],[16,8],[5,-17],[9,-10],[3,-9],[0,-18],[-9,-30],[7,-16],[-3,-13]],[[80662,63993],[10,-20],[28,14],[5,-25],[-1,-12],[-9,-29],[-23,22],[-23,-5],[-16,2],[-5,14],[13,28],[21,11]],[[83680,68021],[-24,-13],[-9,0],[0,42],[20,39],[8,-13],[5,-21],[0,-34]],[[81542,64979],[3,-27],[-22,41],[-6,2],[-11,15],[-6,25],[17,1],[16,-30],[9,-27]],[[81330,64286],[-6,-11],[-8,20],[-2,30],[-6,16],[14,21],[6,22],[15,-4],[7,-7],[-14,-23],[-3,-10],[-3,-54]],[[81289,64308],[-27,-12],[-6,2],[10,30],[24,21],[-1,-41]],[[78093,64266],[3,8],[-6,72],[1,17],[-3,6],[-11,6],[-17,-11],[-51,-47],[-44,-87],[-20,-19],[-20,-8],[-24,15],[-27,10],[-37,-22],[-19,10],[-9,18],[-7,27],[4,34],[-2,25],[-16,13],[-17,11],[-10,32],[-5,36],[4,47],[3,50],[-9,23],[-26,12],[-64,23],[-57,12],[-24,-6],[-19,6],[-11,9],[-6,16],[0,22],[9,52],[11,51],[26,73],[2,51],[-2,59],[13,79],[23,59],[11,18],[-3,26],[-9,24],[-13,13],[-21,16],[-34,4],[-45,16],[-54,35],[6,67],[0,42],[-7,34],[-11,24],[-6,22],[10,60],[-13,65],[-14,27],[-15,33],[-2,37],[7,34],[37,73],[0,17],[-9,-1],[-10,-2],[-50,-26],[-6,16],[-18,10],[-37,2],[-43,-5],[-54,-26],[-50,-45],[-22,-32],[-20,-19],[-15,-7],[-19,14],[2,45],[34,82],[4,56],[-10,49],[-1,38],[-12,25],[-17,12],[-9,28],[0,80],[15,83],[24,26],[15,13],[4,16],[-8,57],[1,37],[15,72],[14,54],[28,-9],[12,13],[13,19],[15,33],[10,38],[12,90],[8,13],[35,-15],[10,11],[19,52],[18,64],[26,20],[18,2],[9,21],[-1,31],[-17,50],[-8,39],[2,24],[26,15],[6,29],[-4,63],[11,75],[6,89],[2,66],[0,50],[-3,53],[-4,96],[-11,84],[2,32],[-2,102],[-7,86],[-14,16],[-26,28],[-15,5],[-12,-10],[-5,-30],[-11,-28],[-15,6],[-6,29],[-10,37],[-30,175],[-4,50],[-5,51],[-10,25],[-11,14],[-25,59],[-13,25],[-6,4],[-14,-4],[-13,0],[-11,29],[-9,36],[-10,18],[-17,9],[-17,-3],[-10,-31],[-7,-18],[-12,-41],[-21,-58],[-10,-21]],[[75453,67833],[-1,24],[3,70],[-10,17],[-31,17],[-35,23],[-17,25],[-9,8],[-13,-4],[-21,-26],[-20,-30],[-16,-3],[-16,15],[-16,18],[-53,26],[-24,4],[-42,-5],[-35,6],[-5,8],[0,14],[5,29],[3,27],[-4,16],[-35,20],[-33,14],[-34,5],[-23,-10],[-23,-22],[-18,-39],[-27,-17],[-32,-29],[-16,-28],[-24,-58],[-34,-72],[-31,-71],[-16,-68],[-21,-43],[-22,-31],[-16,-85]],[[71610,72290],[-21,-9],[-42,-5],[-14,1],[-21,1],[-42,19],[-57,25],[-58,35],[-32,28]],[[70705,73169],[-4,5],[-8,15],[-34,46],[-1,12],[52,45],[31,18],[16,13],[3,-2],[8,-22],[20,-13],[14,3]],[[84544,74886],[-3,5],[-23,-51],[-45,-48],[-96,-10],[-30,34],[-11,-24],[-9,-31],[-25,-11],[-39,-2],[-22,-21],[-12,-23],[-54,-8],[-20,-31],[-34,-11],[-140,-135],[-30,-57],[-29,-66],[-21,-34],[-18,-23],[-16,-10],[-17,-23],[-16,-3],[-17,11],[-19,-4],[-12,-28],[10,-36],[-5,-16],[-37,-19],[-55,-13],[-23,-24],[-8,-14],[-12,-7],[-12,47],[-4,62],[23,15],[20,8],[116,86],[-14,64],[10,28],[26,45],[17,23],[-10,8],[-75,-15],[-44,1],[-22,5],[7,39],[-4,38],[-5,15],[38,44],[18,11],[13,-1],[-1,27],[-11,40],[12,52],[79,61],[19,55],[31,51],[58,128],[4,22],[16,60],[3,24],[-26,35],[-11,49],[-78,89],[-7,76],[-7,-3],[-12,-53],[-10,-18],[-36,-1],[-18,20],[-100,13],[-25,-34],[-23,-53],[-22,-38],[-23,-20],[-19,-35],[-81,-206],[-31,-16],[-144,-124],[-72,-49],[-56,-87],[-19,-52],[-17,-58],[-10,-88],[-51,-107],[-18,-23],[-18,-9],[-23,3],[-21,-7],[-35,10],[-43,-34],[-48,-29],[-42,73],[-30,19],[-48,-21],[-23,-33],[-47,-162],[-17,-93],[1,-38],[27,-116],[31,-64],[69,-74],[147,-51],[34,18],[37,0],[39,-48],[24,-80],[3,-55],[0,-19],[9,-16],[5,-27],[-15,-23],[-12,-12],[-10,-84],[0,-94],[12,-31],[32,-44],[49,-36],[45,-8],[86,17],[35,57],[-2,24],[1,32],[76,83],[43,74],[-7,19],[-8,13],[8,8],[23,5],[106,76],[83,-62],[47,-72],[47,-13],[33,-36],[37,-32],[49,-2],[41,-7],[13,30],[13,19],[14,-4],[17,-38],[47,-30],[43,2],[30,11],[18,-14],[-26,-49],[4,-79],[-20,-25],[-19,-40],[11,-26],[10,-12],[-1,-32],[-17,-18],[-32,-48],[-19,1],[-9,9],[-6,18],[-4,27],[-12,18],[-31,7],[-33,-6],[-73,-71],[-71,-57],[-75,-45],[-25,-28],[-18,-8],[-30,22],[-19,-2],[-4,-14],[24,-40],[6,-31],[-3,-23],[-13,-11],[-20,18],[-18,-25],[-8,-42],[0,-99],[-12,-22],[-33,-12],[-35,-32],[-13,15],[-5,17],[4,46],[-4,22],[-16,-1],[-25,-13],[-18,-31],[-6,-18],[24,-58],[23,-6],[6,-13],[-19,-29],[-45,-42],[-8,-36],[-13,-34],[-19,-27],[-13,-28],[-15,-15],[-25,-17],[-31,-68],[-23,-65],[-27,-32],[-21,-109],[-38,-58],[-14,-94],[10,-58],[41,1],[21,-21],[44,-76],[52,-49],[53,-28],[66,-71],[19,-29],[15,-61],[29,-174],[20,-86],[2,-46],[31,-85],[33,-146],[37,-127],[8,-99],[-13,-46],[1,-59],[37,-55],[85,-63],[13,-18],[17,-31],[0,-95],[13,-31],[12,-18],[51,-41],[21,-33],[23,-54],[6,-48],[3,-65],[-29,-2],[-23,7],[-91,84],[-24,3],[-33,-12],[-48,16],[-51,93],[-36,28],[-39,15],[-93,-81],[-24,6],[-7,-9],[-11,-14],[44,-17],[43,26],[42,39],[60,-21],[10,-35],[10,-59],[42,-40],[33,-18],[41,-52],[41,-83],[86,-95],[35,-90],[13,-59],[12,-83],[-30,-27],[-26,-4],[-41,-13],[-30,-29],[-31,-52],[-86,-82],[-17,-51],[-11,-44],[-21,-22],[-54,21],[-50,-2],[-56,-60],[-14,-24],[9,4],[9,8],[25,-9],[40,32],[38,-98],[76,16],[71,82],[27,1],[23,-13],[25,-32],[69,-142],[37,-16],[37,-33],[20,-4],[18,-10],[-49,-52],[-64,-113],[-28,-27],[-19,-30],[51,15],[37,54],[18,13],[15,-12],[7,-67],[-14,-205],[-18,-3],[-17,56],[-20,17],[-18,-11],[-33,0],[-13,-25],[-11,-36],[20,-7],[40,-62],[4,-33],[-11,-22],[-28,9],[34,-46],[-9,-48],[-11,-19],[-20,-12],[-12,-42],[18,-69],[18,-89],[2,-43],[-28,18],[-43,-54],[-23,-4],[-16,71],[-19,-11],[-13,-21],[-18,-77],[-21,-69],[-19,-19],[-22,5],[-18,-2],[5,-18],[19,-23],[0,-27],[-41,-84],[-7,-33],[1,-28],[-21,-34],[11,-57],[-6,-40],[-19,-54],[-19,-36],[-24,-58],[-29,-33],[-39,-122],[-11,-61],[-3,-63],[-13,-21],[-20,-28],[-24,14],[-1,42],[-10,4],[-6,27],[-2,35],[3,28],[-10,-8],[-6,-33],[-16,-27],[-16,11],[-18,22],[1,-32],[9,-31],[4,-32],[24,-6],[17,-37],[13,-55],[2,-21],[10,-25],[1,-21],[-23,-20],[-29,-36],[-35,-63],[-29,-42],[-26,0],[-15,5],[-23,24],[-26,10],[35,-85],[19,-15],[24,3],[23,32],[33,-3],[8,-49],[-9,-55],[-18,-72],[-3,-62],[22,-88],[1,-27],[-9,-13],[-26,23],[-21,29],[-22,-7],[-22,12],[-23,-10],[-10,-21],[7,-34],[20,-28],[12,-43],[-14,-15],[-58,10],[-14,-8],[-17,-47],[11,-71],[-13,-43],[-24,-11],[-32,-35],[-19,-8],[1,-15],[14,-16],[8,-21],[-18,-72],[-26,-23],[-42,12],[-32,-17],[-28,31],[-30,1],[-20,-39],[-2,-45],[-20,-4],[-11,3],[-15,-3],[2,-24],[8,-21],[41,-10],[7,-30],[2,-47],[-43,-80],[-18,-54],[-27,1],[-20,-43],[-11,-60],[-14,12],[-31,-9],[-10,-28],[8,-12],[1,-20],[-13,-67],[-14,-18],[-6,27],[-4,42],[-11,3],[-18,-39],[-22,-28],[-18,-11],[-14,26],[-34,13],[-13,-112],[-29,-40],[-13,-13],[-23,-4],[15,-15],[5,-29],[-9,-28],[-23,-6],[-13,-22],[-5,-100],[-14,-35],[-35,-2],[-26,23],[-8,-19],[-4,-17],[-14,-18],[-26,-5],[-59,-45],[-26,13],[-32,17],[-23,-17],[-7,-34],[-10,-26],[-32,0],[-26,32],[-26,24],[-29,-20],[-22,-42],[-27,-14],[-5,-26],[-12,-13],[-29,5],[-11,65],[-16,9],[-16,-32],[-6,-26],[-8,-19],[3,-53],[-16,-1],[-21,32],[-23,6],[-20,-30]],[[81740,64827],[-11,8],[-11,6],[-18,0],[-7,-8],[-13,-5],[-9,-16],[-1,-2]],[[81670,64810],[-23,11],[-29,44],[-20,73],[-26,39],[-12,35],[-4,62],[-5,29],[2,33],[7,29],[-28,-15],[-20,-27],[4,-34],[-5,-32],[-31,-16],[2,-14],[2,-14],[24,-43],[5,-36],[10,-20],[19,-56],[-1,-110],[11,-31],[-4,-30],[-7,-42],[-1,0],[-6,12]],[[81534,64657],[-9,-2],[-3,-14],[-1,-13]],[[81521,64628],[-1,-1],[-16,-9],[-14,-8],[-11,-11],[-17,-32],[-33,-8],[-16,76],[-23,-51],[-6,-104],[-9,-18],[-14,-15],[-26,37],[-23,-25],[-18,-25],[-8,-22],[-13,-25],[-25,24],[-21,36],[5,27],[-2,17],[-10,14],[-10,-2],[5,-35],[4,-67],[-10,-19],[-14,-15],[-31,12],[-21,25],[-26,21],[-22,4],[-5,-42],[-15,-35],[-13,-4],[-14,6],[-18,-37],[-8,-27],[-22,-29],[-58,-13],[-21,-29],[-27,5],[-21,-7],[-13,2],[-10,15],[-13,0],[-5,-47],[-33,-20],[-30,-5],[-33,-62],[-24,-37],[-17,-4],[-13,13],[-7,56],[-6,6],[-4,-52],[-6,-43],[-12,-24],[-38,-54],[-11,-54],[7,-49],[51,-12],[7,-27],[-5,-22],[-13,-19],[-3,-28],[55,-88],[2,-34],[-9,-19],[-10,-41],[-29,-35],[-62,-18],[-51,18],[-16,40],[1,28],[13,-8],[14,3],[-4,26],[-6,15],[-24,23],[-19,62],[4,51],[-11,40],[-11,34],[-12,20],[-6,25],[12,78],[-7,45],[22,56],[6,63],[39,22],[3,60],[-29,2],[-19,44],[-5,-18],[-15,-2],[-26,84],[-8,11],[-12,2],[6,-90],[-30,-33],[-25,-15],[-35,-6],[-20,-10],[-18,8],[4,27],[10,33],[-9,27],[-20,20],[-30,-1],[-21,6],[-20,-2],[-8,12],[-19,42],[-17,26],[-7,26],[7,31],[-6,18],[-32,2],[1,-43],[3,-52],[9,-39],[-6,-22],[-16,-15],[-17,42],[-8,10],[-9,-2],[-6,-41],[-15,-37],[-28,4],[-22,-23],[-26,-10]],[[80802,63359],[13,-26],[9,-37],[8,-68],[4,-63],[-28,-40],[-25,-16],[-50,-154],[-11,-48],[-8,-21],[-3,-21],[1,-21],[-13,-74],[-12,-91],[-7,-37],[-14,-28],[-19,-15],[-11,-2],[-11,-8],[-27,-49],[-30,-38],[5,-17],[0,-16],[-13,-18],[-14,3],[-42,-14],[-16,-28],[-16,-51],[-6,-7],[-25,-12],[-20,-5],[-33,36],[-16,11],[-44,15],[-43,24],[-30,28],[-61,69],[-7,123],[-11,67],[0,24],[4,206],[4,22],[8,20],[27,46],[31,37],[44,76],[33,35],[27,50],[-16,-2],[-12,6],[12,43],[12,23],[14,12],[29,-9],[27,9],[19,38],[19,8],[71,-12],[49,17],[24,35],[12,2],[36,-10],[14,-37],[-1,25],[1,23],[7,-2],[47,-45],[0,55],[3,15],[15,23],[7,-1],[19,-44],[17,-26],[23,-13]],[[81534,64657],[6,-13],[0,-1],[-13,-11],[-4,-3],[-2,-1]],[[81740,64827],[1,-2],[6,-22],[-2,-24],[11,-12],[3,-23],[-12,-13],[-1,-28],[-6,-17],[-36,30],[-29,16],[-27,-6],[-9,18],[-2,18],[31,32],[2,16]],[[81730,64637],[-7,-9],[-19,42],[-1,14],[15,2],[16,-19],[0,-17],[-4,-13]],[[81665,64637],[-33,0],[-7,5],[-4,13],[12,22],[45,30],[-11,-32],[-2,-38]],[[19644,36209],[-43,-18],[2,32],[11,27],[31,-16],[15,-3],[-16,-22]],[[28110,32461],[-50,-12],[-2,3],[3,10],[11,18],[14,21],[3,1],[5,-2],[6,-4],[15,-14],[4,-10],[-1,-8],[-8,-3]],[[30691,41759],[5,-66],[38,-87],[12,-99],[9,-13],[52,-49],[1,-12],[-8,-18],[-7,-24],[5,-34],[9,-46],[4,-42],[5,-44],[6,-68],[4,-61],[13,-90],[3,-56],[0,-34],[10,-33],[20,-39],[28,-39],[22,-47],[16,-31],[21,-26],[15,-23],[6,-16],[2,-13],[-6,-13],[-25,-61],[-34,-92],[0,-12],[33,-66],[5,-27],[0,-37],[-11,-45],[-35,-14],[-8,-12],[-1,-15],[8,-19],[-1,-44],[13,-49],[-7,-16],[-13,-23],[0,-22],[4,-24],[14,-20],[54,-69],[4,-9],[-1,-7],[-21,-46],[-2,-28],[1,-47],[3,-30],[7,-12],[27,-14],[34,-105],[32,-98],[0,-85],[3,-98],[21,-78],[3,-62],[6,-70],[25,-43],[10,-85],[2,-45],[-1,-29],[19,-92],[2,-79],[-5,-57],[1,-32],[2,-22],[17,-20],[7,-13],[24,-5],[35,-2],[61,21],[46,20]],[[31334,38697],[52,-104],[-22,-140],[-36,-224],[-28,-174],[-5,-23],[-5,-34],[-60,-49],[-88,-71],[-44,-38],[-57,-48],[-13,-39],[-17,-22],[-18,-27],[-6,-30],[-17,-19],[-15,-68],[0,-52],[9,-35],[17,-15],[6,-43],[5,-30],[12,-23],[-3,-19],[-10,-14],[-18,-8],[-12,-43],[-15,-105],[-2,-38],[16,-96],[9,-51],[23,-187],[4,-51],[-32,-71],[-13,-43],[-5,-38],[0,-30],[3,-28],[27,-87],[31,-79],[15,-41],[0,-55],[-7,-31],[-17,-12],[-36,-21],[-16,-32],[-16,-5],[-16,25],[-17,-6],[-21,-22],[-8,-53],[-19,-92],[-16,-25],[-12,-70],[-21,-100],[-10,-60],[-5,-44],[-22,-28],[-25,-56],[-19,-55],[-7,-15],[-15,-5],[-10,-49],[-36,-74],[-9,-85],[-13,-46],[-2,-82],[-20,-151],[-4,-33],[-20,-26],[-27,-58],[-8,-43],[12,-128],[15,-128],[1,-61],[-6,-82],[-4,-36],[10,-14],[17,-10],[6,-31],[-13,-22],[-5,-40],[-14,-44],[-40,-17],[-14,16],[-5,-15],[2,-31],[-9,-37],[-21,-100],[-13,-90],[-8,-39],[3,-33],[7,-19],[0,-18],[-11,-21],[-11,-35],[-11,-5],[-12,10],[-13,-21],[-3,-43],[-7,-54],[-3,-64],[-5,-81],[16,-56],[21,-101],[16,-25],[17,2],[14,-20],[8,-24],[-11,-42],[-18,-7],[-2,-24],[6,-53],[6,-52],[18,-25],[7,-70],[17,-23],[-2,-89],[17,-105],[18,-30],[8,-14],[-5,-46],[-15,-36],[-3,-58],[6,-43],[18,-40],[14,-4],[20,16],[21,-19],[3,-35],[3,-31],[-11,-41],[-12,-76],[-3,-75],[3,-114],[6,-89],[1,-56],[1,-25],[-7,-17],[-19,-9],[-16,-4],[-13,-14],[-3,-28],[-11,-47],[-11,-35],[-19,-51],[-12,-53],[-10,-35],[1,-24],[-7,-46],[-8,-39],[-15,-129],[-20,-27],[-17,-13],[-8,-18],[6,-35],[18,-10],[6,-29],[-3,-44],[12,-41],[-1,-50],[11,-93],[-10,-62],[3,-53],[0,-52],[-15,-41],[-29,-8],[-16,-38],[-28,-41],[-3,-33],[-5,-30],[-11,-11],[-18,0],[-14,-5],[-20,-38],[-22,-21],[-5,-32],[2,-38],[-11,-23],[-15,-44],[-9,-48],[9,-44],[10,-78],[2,-34],[-13,-65],[-10,-42],[10,-53],[8,-30],[-8,-66],[-6,-41],[5,-76],[20,-85],[19,-75],[2,-88],[5,-70],[9,-76],[19,-29],[15,-26],[-3,-36],[-11,-44],[-15,-33],[-38,-11],[-30,-30],[-25,-21],[-19,-25],[-13,-26],[-7,-29],[5,-127],[-3,-47],[-13,-67],[-12,-53],[-5,-16],[-1,-24],[-2,-22],[-14,-5],[-18,10],[-11,-6],[-8,-18],[7,-41],[7,-73],[9,-31],[-2,-24],[-4,-53],[-12,-42],[-17,0],[-10,-18],[-5,-30],[5,-39],[22,-31],[7,-21],[-3,-27],[-17,-11],[-10,-22],[-9,-49],[-13,-55],[-13,-41],[-3,-56],[19,-60],[-2,-59],[-2,-171],[-1,-58],[5,-97],[-7,-26],[-4,-25],[19,-71],[21,-113],[5,-45],[-3,-31],[-28,-27],[-23,-11],[-13,19],[-10,-8],[-10,-33],[-12,-27],[-5,-27],[13,-34],[7,-66],[-15,-29],[-10,-31],[4,-41],[4,-74],[-9,-123],[12,-44],[14,-21],[43,-25],[32,-12],[9,-41],[-4,-33],[-15,-16],[-24,-14],[0,-53],[20,-51],[23,-36],[5,-32],[-1,-34],[-16,-28],[22,-60],[10,-41],[-10,-32],[-15,-47],[-12,-23],[0,-26],[-5,-52],[-1,-51],[4,-31],[137,-24],[31,-9],[18,-31],[-3,-38],[-17,-40],[-11,-76],[-27,-13],[-27,20],[-29,-7],[-26,-5],[-36,-2],[-48,-10],[-30,11],[-2,-28],[8,-48],[64,-15],[60,-28],[18,-51],[24,-58],[25,-36],[1,-58],[-39,-61],[-5,-43],[-51,-13],[-15,-25],[-7,-84],[6,-66],[20,-23],[13,-43],[-15,-51],[-34,-35],[-19,-33],[12,-27],[15,-42],[5,-23],[8,-62],[10,-87],[-1,-42],[-9,-32],[-34,-49],[-24,-23],[-4,-61],[-2,-45],[2,-41],[15,-33],[-1,-33],[-20,-7],[-18,-16],[-17,-58],[-50,-60],[-17,-27],[1,-46],[-20,-65],[-16,-57],[-13,-53],[2,-56],[28,-24],[23,-54],[9,-69],[-17,-79],[-40,-30],[-23,-33],[-7,-25],[6,-83],[-2,-38],[-6,-37],[-10,-28],[-22,-31],[-38,-28],[-32,-19],[-14,-21],[-17,-48],[-15,-52],[3,-65],[-90,-8],[-6,-48],[-20,-38],[-6,-69],[20,-66],[9,-56],[-16,-67],[6,-69],[2,-54],[32,-61],[20,-76],[11,-63],[6,-50],[8,-30],[13,-34],[6,-39],[20,-13],[35,37],[25,25],[17,9],[51,-6],[31,23],[14,-3],[19,-13],[14,-27],[11,-62],[7,-69],[-9,-71],[-14,-16],[-5,-20],[5,-43],[16,-31],[-1,-43],[-17,-99],[-12,-41],[21,-46],[18,-40],[37,-31],[30,-43],[21,-35],[-5,-49],[14,-14],[56,-1],[84,-2],[131,-2],[128,-3],[145,-3],[69,-39],[62,-35],[79,0],[78,-41],[58,-27],[35,-11],[36,-10],[5,-38]],[[30988,21683],[-157,54],[-35,30],[-30,3],[-57,-36],[-32,-88],[-16,-25],[-40,-23],[-40,-5],[-134,-85],[-48,-7],[-33,-23],[-32,-32],[-12,-70],[5,-42],[-36,-152],[-9,-84],[0,-44],[10,-70],[-13,-120],[-25,-26],[-59,-34],[-41,24],[-69,22],[-50,46],[-63,33],[-21,20],[-56,92],[-6,31],[-4,39],[30,56],[16,4],[46,-2],[39,9],[25,-30],[6,-65],[-10,-34],[-10,-22],[3,-16],[28,23],[14,145],[94,72],[31,42],[30,66],[5,18],[2,25],[-20,20],[-44,27],[-142,-137],[-64,-36],[-42,-39],[-50,-71],[-9,-21],[-11,-46],[-5,-52],[-49,24],[-76,74],[-15,28],[15,38],[23,31],[2,107],[6,38],[16,30],[29,33],[14,7],[12,-14],[2,-25],[48,2],[93,94],[38,3],[51,-22],[57,13],[11,10],[11,22],[-42,26],[-41,13],[-115,10],[-25,-10],[-34,-51],[-11,13],[-7,25],[-39,18],[-19,-4],[-18,-24],[3,-37],[-10,-41],[-36,-39],[-25,-64],[1,-49],[-1,-26],[-9,-14],[-19,-16],[-60,11],[-34,52],[-13,35],[-38,39],[83,47],[29,27],[27,61],[20,39],[-14,27],[-17,0],[1,-43],[-18,-36],[-38,17],[-57,-52],[-35,14],[-56,-16],[-28,28],[-6,36],[10,38],[-10,63],[-16,15],[-16,-4],[-7,38],[-17,66],[-8,18],[-8,31],[9,7],[19,-8],[17,-20],[26,-3],[57,-43],[24,10],[13,10],[5,36],[0,34],[10,0],[32,-43],[21,4],[36,-12],[19,5],[34,16],[54,48],[27,49],[14,7],[16,-6],[12,-15],[0,-34],[12,-32],[17,-26],[5,-31],[-3,-32],[-31,-43],[-6,-16],[11,-16],[12,8],[18,21],[10,30],[2,16],[1,22],[-1,27],[-25,76],[-3,18],[0,35],[28,32],[8,25],[2,48],[-15,33],[-61,77],[-101,76],[-12,-8],[-8,-14],[10,-10],[13,-5],[90,-63],[24,-37],[15,-10],[19,-24],[-5,-36],[-91,-34],[-72,-76],[-55,-46],[-37,17],[-18,47],[-19,60],[-28,35],[-16,-4],[-13,7],[-11,18],[-21,-15],[-49,42],[-13,18],[35,58],[39,-22],[9,165],[-12,37],[-51,41],[-24,-5],[-34,5],[-23,19],[-26,8],[-22,11],[-29,25],[-34,14],[-47,104],[-20,55],[-11,60],[72,2],[42,10],[10,25],[-15,47],[-20,38],[15,36],[21,27],[22,-12],[56,-61],[9,-41],[39,-126],[10,-12],[4,-11],[82,-71],[11,1],[-5,59],[23,81],[23,26],[11,0],[1,13],[-22,34],[11,44],[-7,1],[-19,-28],[-40,-140],[-24,-26],[-33,64],[-18,45],[-10,17],[4,71],[65,-14],[-22,23],[-77,42],[-19,20],[-14,7],[-25,49],[-32,41],[55,74],[27,52],[88,-27],[17,16],[-15,38],[-17,-12],[-27,24],[-43,72],[2,36],[7,67],[17,14],[36,14],[41,-22],[17,-17],[16,8],[-16,49],[-27,19],[-29,35],[3,39],[9,33],[8,35],[5,50],[-3,39],[8,17],[13,8],[1,15],[-26,-3],[-9,-49],[-3,-45],[-19,-35],[-7,-41],[-5,-48],[-10,-55],[-23,21],[-13,21],[-5,15],[3,28],[-6,175],[-1,147],[11,114],[32,45],[14,13],[13,-6],[20,1],[14,16],[-45,28],[-28,-16],[-20,-22],[-37,17],[-7,58],[-21,51],[-4,65],[2,93],[51,-8],[42,-18],[110,2],[90,-90],[40,12],[-2,18],[-30,22],[-19,51],[-11,14],[-6,31],[-1,35],[-23,129],[-9,-3],[-9,-44],[-18,-74],[-26,-36],[-40,-15],[-40,-8],[-34,14],[-8,31],[1,35],[-15,17],[-39,16],[-11,8],[-13,32],[19,49],[15,29],[18,-6],[18,-13],[23,-38],[22,-7],[25,30],[5,21],[-16,13],[-14,5],[-23,16],[-44,58],[22,59],[52,68],[16,16],[-14,57],[16,63],[-16,51],[-29,56],[-39,12],[-8,-16],[-2,-23],[6,-17],[-3,-12],[-9,0],[-50,12],[-33,37],[-54,34],[-7,26],[-6,39],[19,67],[-10,1],[-35,-52],[-53,-27],[-40,-9],[-17,-20],[-7,-18],[11,-10],[22,-2],[17,-65],[-4,-25],[-8,-16],[-19,-4],[-38,45],[-20,51],[0,40],[14,54],[61,74],[17,31],[36,34],[48,78],[41,43],[-20,36],[-21,53],[2,75],[84,30],[37,-13],[47,3],[26,18],[18,3],[40,21],[17,29],[4,22],[0,20],[-4,23],[-7,62],[7,21],[17,24],[22,8],[10,-2],[27,-22],[-6,-32],[-10,-39],[-22,-153],[-11,-35],[-17,-30],[12,-62],[-18,-44],[-76,-47],[-10,-2],[6,-17],[44,4],[34,10],[34,39],[11,60],[14,117],[18,17],[22,3],[11,-27],[-4,-62],[0,-60],[-28,-176],[-35,-71],[-4,-19],[2,-22],[27,3],[21,38],[15,49],[15,68],[-2,49],[5,30],[6,100],[11,50],[-1,71],[-19,26],[-26,16],[-7,43],[14,86],[50,-3],[48,59],[31,21],[18,-5],[62,-56],[12,-1],[-2,21],[-9,14],[-25,19],[-45,60],[-61,10],[11,78],[12,72],[30,9],[49,24],[94,107],[17,81],[4,91],[-45,23],[-48,60],[-39,31],[-35,40],[7,59],[5,97],[43,21],[20,132],[-29,102],[7,76],[38,64],[6,45],[11,49],[33,5],[1,27],[-3,49],[-22,58],[-1,80],[21,94],[33,-6],[6,4],[-23,57],[-19,63],[3,25],[18,21],[21,12],[23,-32],[33,-103],[5,27],[-13,104],[-11,130],[-35,-17],[-31,9],[-12,20],[-12,30],[11,35],[11,27],[23,33],[49,12],[35,42],[11,87],[-11,-9],[-19,-76],[-32,-26],[-16,4],[-19,14],[-38,67],[-21,15],[-20,2],[-17,-17],[-44,-117],[-19,-20],[-78,-9],[-28,14],[-31,17],[3,29],[10,31],[17,16],[1,17],[-24,5],[-28,32],[-13,41],[-5,73],[-25,116],[-5,83],[17,59],[38,232],[12,119],[20,104],[0,68],[52,63],[20,38],[45,211],[6,114],[-71,346],[-11,66],[-3,82],[17,136],[2,52],[-15,75],[-40,122],[-1,62],[17,64],[-16,80],[8,49],[9,39],[63,-21],[29,10],[15,23],[12,65],[6,103],[4,44],[5,64],[31,26],[11,61],[26,84],[26,238],[27,58],[27,68],[-11,100],[18,46],[15,34],[14,61],[19,58],[46,83],[11,101],[35,176],[7,112],[11,76],[-3,71],[21,86],[20,73],[7,40],[46,97],[8,76],[-17,52],[0,81],[-13,112],[30,41],[12,31],[39,179],[-3,70],[11,87],[-25,103],[-4,231],[-14,179],[-23,188],[2,105],[-15,131],[0,76],[11,171],[74,108],[15,121],[9,163],[-3,119],[-8,54],[-36,87],[-10,157],[7,41],[31,44],[21,61],[11,95],[23,75],[9,181],[18,144],[10,50],[30,63],[5,17],[5,48],[-2,113],[5,70],[23,136],[3,63],[26,141],[6,101],[12,53],[-5,60],[8,134],[-18,76],[-4,44],[22,137],[16,34],[24,64],[11,72],[2,45],[-32,227],[-4,78],[7,180],[11,116],[-3,93],[3,48],[6,60],[21,72],[5,52],[-7,21],[-26,27],[-21,66],[-2,65],[7,47],[2,67],[31,13],[17,37],[16,70],[20,169],[9,209],[12,125],[8,63],[7,130],[12,85],[2,78],[-2,60],[-30,304],[0,112],[13,174],[0,244],[-2,57],[-12,54],[-3,72],[-18,127],[-17,253],[0,134],[-7,114],[-16,30]],[[30936,21513],[-1,-171],[0,-169],[-1,-157],[0,-158],[0,-152],[-1,-156],[-2,-175],[-2,-130]],[[30929,20245],[-41,0],[-12,-13],[-66,-19],[-112,29],[-28,27],[-38,58],[-13,-16],[-36,-25],[-36,-19],[-30,-2],[-28,24],[-6,12],[-6,3],[-60,-34],[-66,34],[-53,21],[-84,12],[-59,43],[-109,-4],[-19,14],[-7,42],[6,20],[23,11],[6,24],[24,-6],[30,-31],[9,1],[20,29],[30,26],[11,3],[54,-32],[22,4],[32,14],[5,12],[5,22],[9,13],[28,6],[27,-12],[3,-38],[-4,-41],[36,-11],[43,1],[30,-15],[4,25],[-48,65],[-20,40],[-26,24],[-35,12],[-28,75],[1,66],[-3,64],[62,36],[-14,55],[21,41],[25,16],[24,-153],[18,-54],[-23,-11],[-47,1],[27,-76],[43,-25],[37,-56],[1,-41],[20,-18],[50,-1],[34,8],[16,27],[19,9],[33,-34],[57,-25],[15,-17],[11,-30],[0,-31],[3,-16],[17,8],[23,42],[12,15],[14,7],[8,10],[1,12],[-42,31],[-220,141],[-28,56],[-18,71],[1,73],[16,23],[39,29],[72,41],[84,58],[10,11],[-1,37],[-10,25],[-33,18],[-35,4],[-33,-1],[-33,-8],[-60,-39],[-34,2],[-32,21],[-24,42],[-13,57],[0,36],[5,33],[15,35],[19,14],[18,-2],[17,8],[10,12],[8,16],[-3,13],[-6,12],[-27,24],[-10,23],[-23,38],[12,10],[41,6],[28,-26],[26,-30],[16,0],[15,13],[33,38],[28,49],[25,56],[21,34],[23,3],[69,-105],[24,-4],[80,57],[9,-3],[28,-29],[8,-12]],[[31366,20072],[-8,-22],[-17,-29],[-24,-23],[-23,-6],[-16,12],[-9,20],[-4,21],[-5,11],[-9,2],[-11,0],[-14,-8],[-29,-29],[-13,-8],[-9,-2],[-84,22],[-8,9],[-10,19],[-11,59],[-35,52],[54,29],[65,0],[125,-22],[49,-5],[39,-50],[6,-30],[1,-22]],[[29507,26874],[-21,-12],[-19,-3],[-20,9],[-35,-1],[-34,22],[-32,32],[-9,19],[3,26],[24,61],[22,116],[15,166],[-12,63],[1,26],[6,31],[2,33],[-1,32],[3,30],[24,64],[4,29],[0,31],[11,64],[-3,21],[-9,18],[7,16],[85,-47],[56,-11],[3,-49],[11,-38],[7,-68],[8,-16],[-4,-49],[-26,-21],[2,-45],[15,-42],[-22,-16],[-23,-9],[-6,-11],[-17,-10],[-20,-23],[6,-21],[26,-48],[29,-33],[16,-49],[21,-51],[-10,-33],[-19,-46],[-31,-31],[-27,-19],[3,-76],[-10,-31]],[[29312,23532],[2,-85],[-4,-85],[-11,-104],[2,-21],[12,-5],[4,-13],[-4,-55],[-7,-42],[-13,-35],[-7,-41],[-7,-9],[-30,-7],[-17,4],[-13,47],[-4,29],[1,38],[-16,51],[-1,19],[6,34],[14,16],[2,52],[6,15],[15,21],[2,9],[-1,8],[-5,1],[-61,-64],[-5,-18],[-3,-24],[-1,-84],[-10,-49],[-10,-9],[-28,-2],[-37,5],[-42,44],[-27,-12],[-6,54],[14,44],[51,-4],[8,77],[-16,18],[-18,32],[-10,28],[9,21],[30,31],[15,3],[15,-17],[36,13],[-2,49],[-32,22],[7,37],[41,35],[24,36],[2,41],[-10,40],[3,16],[20,34],[29,16],[13,-2],[26,-24],[24,-3],[5,-7],[5,-26],[15,-193]],[[29025,23753],[-32,-1],[-7,103],[36,149],[3,56],[-12,43],[-5,35],[3,14],[47,30],[14,-32],[18,-83],[33,-119],[-1,-114],[-18,-28],[-58,-29],[-21,-24]],[[29337,21357],[5,-5],[10,1],[16,-9],[58,-11],[52,-27],[27,-26],[35,-7],[29,-33],[13,-8],[15,-2],[39,-60],[2,-7],[44,-47],[2,-7],[-25,-3],[-51,22],[-25,1],[-19,7],[-4,4],[-4,27],[-5,13],[-49,63],[-21,14],[-35,12],[-40,-8],[-28,8],[-9,-3],[-40,50],[-40,42],[-17,50],[-25,38],[-1,11],[12,9],[27,-22],[27,-37],[15,-14],[10,-36]],[[29287,23852],[-6,-14],[-34,9],[-59,-15],[-25,52],[-11,83],[-8,18],[-14,47],[-8,31],[-15,48],[-6,51],[-3,16],[13,30],[62,29],[22,48],[19,-6],[-5,-98],[11,-33],[22,-28],[3,-11],[4,-35],[11,-53],[13,-26],[4,-15],[0,-13],[-5,-19],[15,-96]],[[29743,21035],[8,-46],[4,-9],[20,7],[34,4],[57,-17],[6,-6],[24,-51],[19,-22],[28,-47],[-28,-32],[-17,-45],[-1,-23],[-11,-13],[-17,-14],[-26,-27],[-31,-3],[-31,-14],[-15,-12],[-8,-1],[-10,7],[-11,13],[-4,15],[22,14],[28,50],[5,52],[-30,9],[-18,-7],[-14,0],[-15,16],[-9,-24],[-4,-24],[4,-36],[-3,-11],[-10,-7],[-26,14],[-26,24],[-2,14],[6,48],[-1,25],[-5,37],[-3,3],[-10,0],[-31,-7],[-31,46],[-16,49],[-57,14],[44,69],[67,10],[22,-35],[74,-24],[-4,37],[1,13],[10,16],[6,2],[9,-12],[14,-5],[7,-11],[6,-23]],[[29216,22102],[11,-112],[9,-16],[28,-8],[31,-57],[1,-16],[-37,-96],[-8,-69],[-43,5],[-19,68],[-27,66],[-10,77],[-15,66],[27,38],[26,-8],[1,50],[25,12]],[[30638,20207],[223,-57],[68,35],[55,-1],[16,-48],[-55,-49],[-5,-16],[8,-13],[57,-8],[14,-16],[13,-20],[-11,-31],[-1,-14],[6,-14],[42,-46],[18,-24],[9,-23],[3,-40],[-1,-32],[-9,-4],[-21,10],[-20,18],[-18,46],[-12,10],[-36,9],[-35,22],[-28,-1],[-25,10],[-23,-9],[-8,16],[-10,30],[0,14],[12,48],[0,13],[-7,1],[-26,-10],[-11,7],[-29,35],[-11,7],[-29,3],[-17,-62],[-1,-16],[17,-39],[33,-61],[-17,-1],[-47,19],[-13,11],[-14,31],[-28,18],[-10,11],[-3,13],[-1,40],[-6,6],[-40,-11],[-8,10],[-3,17],[-6,9],[-26,16],[-2,9],[11,12],[7,28],[10,104],[51,-22]],[[30169,20718],[62,-46],[40,0],[0,-28],[5,-49],[-6,-20],[-16,-20],[-9,-29],[-7,-5],[-45,35],[-47,48],[-24,-9],[-31,12],[-25,-3],[-16,-27],[-36,-14],[-7,54],[-33,51],[-33,41],[18,63],[22,10],[20,21],[81,-22],[42,-19],[45,-44]],[[29518,26270],[-14,-25],[-22,-4],[-33,-29],[-4,-25],[-1,-30],[23,-37],[11,-43],[14,-64],[10,-61],[-1,-19],[2,-31],[17,-50],[1,-22],[-1,-22],[-7,-41],[-5,-5],[-17,-4],[-1,-25],[-4,-8],[-46,-3],[-23,12],[2,74],[-29,30],[-20,49],[-23,85],[-19,27],[-22,67],[-33,58],[38,36],[-6,64],[22,22],[33,23],[25,-18],[22,6],[10,16],[-3,65],[7,52],[25,26],[26,3],[10,-29],[13,-28],[32,-23],[-1,-29],[-8,-40]],[[29726,26048],[-68,-46],[-33,15],[-13,34],[-7,29],[-7,48],[12,26],[24,37],[10,24],[4,28],[-2,27],[4,25],[14,9],[50,-28],[52,-43],[18,-29],[3,-23],[-22,-52],[-15,-42],[-24,-39]],[[29155,25984],[-7,-9],[-9,3],[-7,18],[-5,31],[10,12],[7,0],[9,-17],[4,-26],[-2,-12]],[[29082,22649],[-7,-53],[-23,5],[-7,13],[-4,34],[-7,16],[9,34],[7,37],[-2,29],[34,-2],[41,-7],[11,-8],[-12,-25],[-12,-16],[-25,-9],[-3,-48]],[[29137,23711],[-3,-46],[-41,-88],[-35,-52],[-32,-41],[-21,0],[-17,20],[19,33],[24,32],[-8,42],[-7,13],[-10,4],[-17,22],[5,33],[10,15],[14,12],[12,-7],[54,23],[17,18],[32,4],[4,-37]],[[29135,24286],[-20,-7],[-3,19],[-18,31],[16,21],[31,21],[24,-2],[22,-17],[3,-19],[-38,-25],[-9,-14],[-8,-8]],[[29258,26723],[-39,-10],[-9,17],[0,15],[7,12],[20,7],[13,-9],[7,-15],[2,-12],[-1,-5]],[[29546,26024],[-9,-7],[-8,1],[-8,20],[-3,26],[-18,39],[-5,18],[0,22],[10,32],[16,9],[10,-2],[13,-37],[3,-40],[4,-42],[-5,-39]],[[29289,22305],[-1,-48],[-8,-15],[-8,-5],[-20,15],[-11,1],[-18,-25],[-16,-13],[-23,3],[-31,17],[-27,-72],[-13,-25],[-27,-33],[-3,39],[17,60],[8,40],[16,60],[31,-22],[44,22],[41,41],[34,1],[12,-23],[3,-18]],[[29151,22870],[-54,-46],[-16,19],[-39,0],[10,50],[4,37],[6,14],[2,32],[12,58],[32,-19],[24,-6],[33,-19],[36,-12],[10,-51],[-34,-23],[-26,-34]],[[29497,26597],[6,-29],[-13,-4],[-19,5],[-10,-23],[-5,-4],[-45,20],[-7,9],[1,29],[48,3],[31,19],[4,-3],[9,-22]],[[29405,21928],[-9,-6],[-30,14],[-16,12],[-24,30],[-3,31],[-11,38],[7,0],[25,-15],[10,-11],[13,-24],[40,-34],[5,-10],[-1,-13],[-6,-12]],[[29357,25523],[-15,-26],[-27,-12],[-27,20],[-32,-9],[-3,43],[12,36],[24,43],[18,58],[-2,81],[14,18],[8,29],[31,18],[7,-61],[-8,-107],[20,-64],[3,-21],[-4,-24],[-19,-22]],[[31229,19648],[-10,-1],[-25,11],[-36,4],[-5,5],[0,8],[4,9],[20,7],[60,-6],[8,-4],[2,-7],[-10,-19],[-8,-7]],[[31535,20029],[-22,-25],[-16,1],[-6,9],[-1,12],[3,12],[7,11],[16,14],[5,2],[24,-14],[-10,-22]],[[30280,20237],[13,-37],[4,-6],[35,-15],[15,9],[37,4],[23,14],[32,7],[38,-90],[-4,-28],[-30,-30],[-20,-6],[-19,9],[2,15],[-4,13],[-13,17],[-12,-1],[-19,-13],[-10,2],[-19,14],[-35,10],[-7,13],[0,19],[-7,9],[-36,31],[-23,25],[-20,4],[-7,-3],[-7,-13],[-17,-11],[-5,2],[-6,9],[-3,14],[7,29],[11,3],[49,-6],[30,-13],[27,0]],[[31308,19713],[-10,-4],[-7,10],[-12,8],[-46,16],[-1,10],[5,14],[9,12],[18,13],[14,32],[7,-3],[6,-13],[11,-44],[14,-32],[-2,-11],[-6,-8]],[[56349,58133],[-11,4],[-25,16],[-29,13],[-36,11],[-35,-26],[-37,-33],[-12,-25],[-10,-14],[-16,2],[-15,-4],[-9,-24],[-13,-26],[-54,-54],[-11,-19],[-7,-20],[0,-21],[5,-44],[0,-55],[-12,-44],[-13,-30],[-16,-11],[-14,-6],[-8,-19],[-28,-100],[-12,-19],[-25,3],[-71,-150],[-7,-45],[-25,-62],[-33,-70],[-29,-34],[-3,-13],[-8,-13],[-18,-16],[-62,-85],[-75,4],[-33,-34],[-32,-15],[-47,-16],[-14,2],[-61,-7],[-70,2],[-27,-12],[-26,-32],[-19,-29],[-3,-9],[3,-12],[0,-9],[49,-70],[12,-34],[-12,-33],[-6,-5],[-1,-2],[-8,-26],[-29,-79],[-44,-93],[-22,-26],[-10,-17],[-11,-62],[-8,-9],[-30,-8],[-60,-6],[-83,-20],[-50,-7],[-31,5],[-43,-42],[-16,-11],[-10,-4],[-43,-41],[-36,-64],[-12,-12],[-51,-27],[-20,-44],[-9,-4],[-32,58],[-23,53],[-10,53],[-2,17],[-6,-3],[-17,-23],[-16,-27],[-7,-51],[-52,-35],[-45,-30],[-20,-37],[-31,-18],[-40,7],[-31,16],[-31,5]],[[54299,56177],[15,46],[6,35],[1,42],[-2,29],[-18,14],[-12,23],[-26,133],[-27,138],[-38,135],[-41,86],[-30,53],[-9,7],[-15,16],[-11,16],[-55,92],[-56,102],[-15,47],[-28,70],[-32,72],[-16,33],[-8,59],[22,54],[23,67],[29,45],[37,3],[61,-18],[67,-7],[65,14],[17,10],[17,-1],[35,-15],[61,3],[32,27],[-34,47],[-37,74],[-34,81],[-21,73],[-19,95],[-18,116],[-11,152],[2,85],[6,61],[18,100],[-12,58],[2,47],[-1,70],[-6,36],[-24,115],[-5,13],[-21,80],[-9,134],[-24,89],[-39,43],[-21,52],[-8,91],[-15,25],[-61,32],[-50,0]],[[54495,53150],[-13,54],[-8,63],[-4,73],[2,19],[-5,22],[0,4],[-7,55],[7,38],[-5,40],[-16,39],[-14,30],[-8,27],[-7,12],[-15,4],[-21,14],[-27,59],[-27,57],[-34,74],[-27,63],[-33,78],[-31,72],[-19,69],[-7,40],[9,4],[13,1],[6,7],[0,19],[-14,54],[-6,70],[-12,42],[-35,66],[-35,49],[-11,26],[-6,36],[-13,231],[-6,65],[-10,29],[-8,13],[-3,16],[1,41],[5,37],[-1,14],[10,32],[0,213],[-5,11],[-6,18],[-10,-1],[-11,2],[-11,31],[-9,39],[3,28],[9,23],[11,20],[13,17],[39,34],[11,17],[7,21],[4,29],[23,109],[33,109],[15,23],[14,72],[20,89],[8,41],[6,41],[10,33],[37,54],[28,96]],[[43008,61604],[-27,-11],[-12,5],[-3,46],[-6,30],[1,14],[63,59],[21,-10],[16,-47],[-11,-26],[-42,-60]],[[43487,60488],[-17,-53],[-36,4],[-19,22],[-22,66],[0,52],[8,44],[-1,39],[3,10],[11,-6],[2,-26],[34,-64],[12,-13],[25,-75]],[[43086,61530],[-22,-13],[-14,1],[-21,21],[7,22],[22,24],[15,5],[12,-43],[1,-17]],[[43634,61196],[23,-11],[8,4],[15,-2],[16,-30],[3,-33],[-8,-40],[-30,-33],[-18,4],[-21,30],[12,60],[0,51]],[[43247,60400],[-21,-22],[-15,10],[-15,23],[-7,33],[6,28],[29,33],[17,-11],[10,-51],[-4,-43]],[[43309,61418],[11,-17],[4,-12],[-17,-7],[-42,22],[-11,-13],[-11,-48],[-21,72],[2,27],[4,8],[30,-19],[51,-13]],[[43642,61439],[-9,-30],[-11,44],[-6,10],[-3,62],[16,19],[8,1],[0,-64],[5,-42]],[[43560,60562],[-8,-2],[-11,26],[2,36],[-1,9],[10,39],[20,-4],[6,-28],[0,-59],[-18,-17]],[[13151,83022],[26,-34],[61,22],[11,-4],[12,-13],[12,-28],[14,-42],[3,-46],[-5,-17],[-11,-18],[-98,-73],[-2,-7],[2,-7],[9,-7],[19,1],[77,18],[5,13],[5,57],[11,31],[0,23],[-7,55],[1,22],[54,5],[33,20],[35,38],[8,-1],[-5,-68],[-5,-21],[-33,-84],[-19,-73],[-9,-73],[-2,-120],[-8,-41],[-15,-25],[-93,-43],[-48,2],[-43,40],[-20,27],[15,33],[10,2],[30,-7],[24,-12],[10,0],[-2,7],[-66,63],[-49,28],[-14,32],[-1,24],[-4,14],[-38,86],[-8,34],[-5,48],[0,49],[10,80],[4,8],[16,-1],[27,-9],[66,-8]],[[13402,82485],[28,-53],[8,-48],[-3,-56],[-45,-22],[-23,17],[-11,-3],[-15,-17],[19,-7],[26,-28],[23,-36],[32,-6],[44,-25],[-33,-45],[-5,-26],[41,-72],[4,-18],[13,-4],[30,6],[4,-6],[0,-15],[-19,-42],[2,-8],[17,-7],[32,0],[8,-41],[-30,-38],[-55,49],[-25,48],[-14,45],[-17,25],[-52,57],[-78,121],[-21,18],[-20,48],[-6,23],[1,15],[7,9],[24,5],[0,24],[-90,42],[-10,8],[-12,30],[7,4],[49,-5],[53,14],[33,11],[13,13],[27,17],[11,-1],[28,-20]],[[14667,81013],[138,-72],[138,-35],[102,-42],[62,-13],[22,-9],[15,-15],[17,-36],[29,-85],[23,-55],[46,-94],[37,-67],[8,-27],[-8,-8],[1,-16],[28,-65],[52,-59],[41,-28],[86,-45],[53,-45],[16,-30],[23,-30],[9,-21],[19,-76],[35,-73],[36,-139],[7,11],[4,42],[4,9],[8,5],[7,-17],[6,-36],[23,-87],[-7,-26],[-7,-2],[-31,11],[-10,-15],[-15,-32],[-10,-13],[-6,6],[-90,31],[-55,29],[-72,45],[-87,47],[-50,33],[-41,33],[-29,29],[-5,24],[1,11],[56,77],[23,42],[9,31],[5,34],[-3,41],[-3,-3],[-5,-40],[-8,-34],[-10,-28],[-6,-9],[-67,-14],[-54,4],[-27,-33],[-8,-4],[-15,11],[-33,44],[-47,36],[5,9],[31,19],[16,26],[-3,5],[-11,-2],[-10,6],[-19,34],[-10,10],[-23,-16],[-10,-1],[-9,23],[13,53],[1,13],[-24,-20],[-8,7],[-7,17],[-7,7],[-19,-3],[-21,15],[-7,-6],[-3,-23],[-7,-6],[-31,39],[-8,1],[-15,-29],[-5,-2],[-9,13],[-4,71],[2,21],[4,7],[28,16],[79,18],[7,13],[-60,-7],[-15,10],[-17,24],[-17,0],[-9,8],[-10,18],[-25,64],[-17,17],[-29,10],[-15,12],[-6,-5],[-6,-19],[-9,-11],[-19,-7],[-19,5],[-14,18],[-8,22],[-4,25],[8,33],[0,14],[-3,15],[-7,12],[-9,10],[-5,-5],[-1,-20],[-5,-14],[-17,-11],[-13,19],[-9,27],[-11,19],[-57,0],[-27,-25],[-13,-2],[-13,6],[-2,13],[12,35],[-3,47],[-3,12],[-27,7],[-4,12],[15,57],[9,11],[12,4],[53,4],[17,-8],[26,-34],[-1,13],[-9,39],[-2,24],[18,26],[-17,8],[-63,6],[1,-17],[5,-24],[-37,-21],[-28,-4],[-26,4],[-21,12],[-37,51],[-23,51],[1,27],[13,29],[16,19],[39,18],[51,1],[57,-23],[143,-104]],[[10833,91964],[39,-9],[126,-19],[119,11],[221,-61],[137,-114],[111,-57],[45,-38],[72,-34],[169,-75],[53,-7],[98,-36],[61,5],[104,-9],[71,-28],[140,-79],[29,-7],[8,6],[-49,78],[-8,7],[-56,29],[-67,14],[-5,6],[-12,27],[4,11],[14,5],[50,-1],[29,5],[4,11],[-21,2],[-25,11],[-30,18],[-17,17],[61,115],[21,-11],[32,26],[58,-17],[10,10],[7,58],[9,14],[16,11],[80,10],[99,-10],[11,5],[-10,39],[-1,16],[6,35],[6,18],[12,10],[46,-8],[15,-17],[15,-30],[16,-17],[49,-17],[6,-11],[-19,-45],[-19,-24],[-41,-62],[-3,-16],[63,28],[71,38],[60,22],[51,4],[36,12],[22,21],[16,22],[31,70],[21,12],[87,-4],[21,2],[13,7],[-2,8],[-19,11],[-25,3],[0,5],[9,12],[14,6],[42,8],[29,-25],[19,-2],[63,28],[98,74],[39,21],[34,3],[29,-13],[22,4],[29,41],[12,23],[17,19],[73,43],[46,10],[29,-8],[33,-18],[28,-7],[37,5],[27,-2],[13,8],[47,50],[15,0],[14,-14],[24,-36],[0,-18],[-31,-44],[-225,-126],[-69,-54],[-34,-20],[-36,-11],[-69,-9],[-27,-11],[-46,-10],[-109,-17],[-21,-9],[-14,-10],[-39,-66],[-18,-22],[-38,-33],[-41,-20],[-58,-7],[-36,-31],[-42,-60],[-33,-42],[-39,-36],[-42,-46],[-11,-25],[13,-32],[7,-10],[42,-18],[16,4],[-15,17],[-35,25],[-5,9],[9,7],[166,-19],[36,19],[12,16],[-2,9],[-45,3],[-10,15],[-7,29],[-2,23],[4,17],[10,22],[49,35],[52,15],[40,20],[22,19],[60,32],[23,27],[13,20],[2,10],[-11,7],[9,18],[43,16],[20,1],[61,-15],[11,-12],[-6,-31],[8,2],[24,39],[13,13],[14,3],[13,-5],[14,-13],[8,-38],[1,-63],[3,-25],[16,43],[11,20],[59,93],[40,51],[46,50],[65,37],[152,61],[85,17],[43,15],[21,13],[14,17],[24,19],[4,-2],[-9,-39],[-6,-12],[-56,-24],[-5,-19],[6,-29],[9,-19],[13,-9],[23,6],[33,23],[41,34],[89,86],[8,16],[22,69],[51,31],[92,35],[22,22],[-80,19],[-17,13],[-3,8],[15,19],[-36,20],[-14,12],[1,36],[11,25],[24,24],[14,5],[36,-15],[30,-18],[104,-85],[42,-42],[25,-33],[58,-102],[26,-59],[21,-61],[21,-44],[20,-27],[100,-107],[52,-45],[44,-28],[49,-22],[57,-16],[38,-2],[60,46],[1,29],[-26,50],[-27,35],[4,21],[35,40],[-3,14],[8,42],[24,-8],[10,1],[13,15],[17,29],[22,24],[27,19],[7,12],[-26,9],[-16,0],[-12,4],[-8,8],[11,9],[57,22],[11,22],[19,14],[23,5],[15,-6],[16,-17],[1,-28],[-7,-46],[-2,-37],[18,-87],[16,-19],[63,-25],[-4,-22],[-72,-91],[-16,-23],[-7,-17],[2,-14],[13,-12],[24,-9],[63,-3],[18,8],[122,3],[22,6],[19,18],[28,44],[31,14],[10,12],[19,52],[10,61],[9,26],[14,16],[19,5],[48,-6],[22,5],[88,-5],[88,4],[92,-11],[58,-12],[54,-20],[104,-46],[41,-26],[145,-113],[43,-23],[79,-22],[274,-49],[34,-13],[72,-51],[50,-30],[59,-29],[73,-25],[144,-37],[24,-13],[26,-3],[30,5],[132,-22],[35,1],[25,-4],[31,-15],[45,-6],[-2,11],[-51,59],[2,9],[21,1],[64,-10],[15,17],[21,-1],[49,-8],[53,-18],[56,-28],[68,-24],[104,-60],[57,-50],[55,-62],[29,-43],[6,-24],[11,-12],[17,0],[7,-9],[-16,-53],[-9,-14],[-12,-9],[-49,-11],[-136,13],[-25,-43],[-76,-37],[-13,-16],[-4,-11],[6,-38],[-10,-12],[-62,-43],[-2,-12],[40,-18],[43,-30],[34,-7],[43,4],[54,-11],[65,-25],[45,-12],[25,2],[35,-4],[44,-12],[59,-4],[129,1],[39,-8],[54,-4],[105,1],[19,1],[33,21],[22,6],[38,1],[108,14],[38,0],[34,11],[45,23],[27,4],[10,-14],[19,-6],[27,2],[52,23],[120,71],[43,0],[32,22],[8,0],[8,-9],[30,-52],[9,-8],[20,-4],[20,-27],[20,-39],[16,-11],[113,-2],[39,-11],[12,-11],[13,-31],[7,-60],[5,-22],[16,-33],[11,-9],[10,9],[28,84],[10,13],[18,-4],[6,-5],[28,-62],[40,-46],[100,-84],[16,-31],[6,-23],[-6,-21],[-17,-18],[-27,-15],[-37,-11],[-34,4],[-32,19],[-10,1],[11,-17],[66,-70],[17,-28],[16,-18],[14,-10],[13,-15],[12,-21],[55,-56],[16,-27],[62,-84],[30,-33],[23,-19],[8,-1],[-5,15],[-79,111],[-41,70],[-5,17],[-3,26],[-2,85],[6,13],[28,11],[35,-39],[13,-5],[9,2],[5,10],[20,-9],[36,-29],[12,0],[-27,54],[-19,27],[-7,19],[18,28],[-10,14],[-45,41],[-24,42],[-21,65],[-2,25],[3,26],[-3,22],[-29,43],[-31,30],[-24,35],[-5,19],[3,50],[19,21],[36,29],[9,30],[-16,31],[-3,14],[10,-2],[70,15],[18,-5],[26,6],[35,19],[28,9],[36,-2],[20,5],[24,8],[13,9],[22,36],[12,6],[37,-4],[21,-8],[9,3],[-1,50],[7,18],[37,37],[39,4],[25,10],[30,20],[21,19],[21,29],[9,38],[-7,11],[-44,15],[-26,-8],[-59,-27],[-61,-34],[-24,-33],[-6,-41],[-12,-18],[-47,17],[-21,0],[-25,-7],[-27,-16],[-29,-25],[-42,-4],[-56,15],[-33,5],[-34,-26],[2,-20],[15,-28],[-15,-17],[-82,-6],[-21,4],[-44,-12],[-17,3],[-12,13],[-89,58],[-9,11],[22,47],[82,126],[9,8],[152,22],[91,23],[169,69],[32,6],[108,46],[45,12],[41,-8],[60,-24],[32,-21],[22,-26],[18,-37],[23,-81],[8,-69],[14,-26],[51,-48],[26,-18],[16,-6],[14,11],[9,2],[7,-4],[7,-31],[9,-3],[30,4],[32,-12],[5,-10],[-7,-37],[9,-16],[40,-34],[37,-12],[44,-6],[81,6],[68,16],[51,26],[42,-29],[84,-71],[50,-51],[41,-23],[84,-29],[19,-15],[31,-2],[43,12],[48,-5],[54,-21],[37,-9],[127,40],[20,2],[47,19],[31,6],[36,0],[27,5],[17,13],[68,-1],[122,-14],[84,-17],[49,-23],[41,-12],[32,-3],[31,4],[30,11],[32,20],[68,11],[11,5],[-1,11],[-14,17],[-39,32],[-27,31],[-5,20],[1,24],[8,14],[16,4],[26,-15],[34,-34],[98,-126],[24,-17],[13,-17],[90,-45],[42,-9],[50,29],[22,17],[11,17],[0,17],[4,24],[-5,14],[-13,20],[-36,26],[-59,34],[-53,10],[-48,-14],[-55,-29],[-23,12],[-68,81],[-17,31],[0,8],[31,-9],[2,9],[-19,40],[-12,13],[-39,62],[-5,18],[24,5],[11,7],[15,-1],[70,-37],[35,17],[83,23],[-33,36],[-7,35],[3,8],[27,5],[53,-29],[25,-4],[19,11],[19,1],[21,-10],[19,-15],[37,-43],[17,-26],[20,-39],[7,-6],[97,-3],[54,35],[-1,-12],[-12,-27],[-68,-105],[1,-13],[36,6],[17,8],[10,13],[9,29],[6,9],[101,49],[29,8],[-18,-53],[-37,-188],[-8,-65],[-8,-23],[-40,-72],[1,-25],[43,-61],[8,-17],[4,-50],[8,-9],[36,-1],[37,16],[44,11],[7,-11],[-24,-60],[1,-6],[42,16],[19,2],[8,-3],[31,-31],[3,-23],[0,-35],[-3,-24],[-11,-14],[-13,-6],[-16,-4],[-14,2],[-44,-5],[-26,6],[-25,19],[-18,5],[-21,-15],[-34,3],[-37,41],[-15,-4],[-5,-6],[0,-9],[17,-27],[132,-143],[20,-29],[4,-43],[3,0],[12,43],[-8,20],[-67,83],[-9,31],[3,8],[18,9],[96,-21],[38,4],[25,15],[13,18],[9,99],[17,63],[-10,57],[-26,90],[-21,54],[-47,53],[-5,20],[53,163],[9,14],[12,6],[42,2],[30,14],[47,-19],[26,-5],[33,17],[72,69],[28,21],[36,40],[43,59],[48,43],[76,40],[47,32],[10,12],[-44,2],[-10,6],[-9,30],[4,57],[-1,31],[-5,28],[-9,25],[-14,23],[-13,13],[-11,4],[-8,-2],[-4,-8],[-12,-54],[-15,-39],[-20,-21],[-43,-14],[-72,-10],[-30,19],[-4,16],[10,62],[25,27],[66,53],[42,42],[1,7],[-39,1],[-9,8],[-9,52],[3,20],[6,22],[27,16],[84,20],[65,23],[2,-8],[-52,-70],[-5,-16],[20,-16],[50,41],[32,34],[6,11],[-30,4],[-1,14],[5,26],[-2,17],[-33,22],[-40,-12],[-34,-23],[-28,-7],[-41,0],[-30,5],[-18,11],[-23,25],[-26,38],[-33,38],[-12,4],[-10,-4],[-22,-37],[-9,-4],[-130,52],[-56,28],[-26,22],[-34,13],[-39,4],[-32,11],[-24,16],[-19,23],[-15,31],[-27,38],[-62,77],[-16,49],[-2,19],[4,49],[58,82],[10,24],[20,17],[29,11],[21,4],[47,-11],[-28,26],[-3,13],[29,45],[-6,2],[-78,-34],[-20,2],[-28,21],[-52,75],[-1,47],[17,65],[5,38],[-15,33],[6,10],[16,9],[7,10],[-7,36],[11,20],[38,38],[36,33],[22,10],[19,-2],[19,-10],[21,-19],[34,-19],[26,-5],[19,10],[33,71],[11,18],[-11,8],[-63,0],[-28,5],[-16,7],[-11,27],[9,15],[62,50],[29,53],[86,73],[87,34],[43,11],[34,3],[15,-5],[18,-36],[4,-39],[47,-48],[38,-4],[24,7],[76,-2],[18,-14],[-1,-15],[-9,-24],[6,-21],[51,-40],[47,-28],[42,-34],[63,-72],[13,-21],[10,-22],[16,-80],[2,-31],[-6,-88],[-5,-17],[-16,-20],[5,-8],[50,-23],[39,-46],[21,-15],[49,-24],[9,-9],[12,-16],[28,-66],[46,-59],[3,-13],[-10,-28],[7,-9],[18,-10],[16,5],[14,21],[15,6],[17,-9],[12,-16],[17,-38],[25,-31],[-2,-10],[-12,-8],[-68,-8],[-37,6],[-35,15],[-25,16],[-22,24],[-9,-2],[-12,-20],[-25,-29],[-16,-27],[18,-12],[89,1],[19,-8],[23,-19],[-26,-31],[-60,-53],[-129,-103],[-38,-26],[9,-8],[14,-2],[45,5],[41,14],[51,-6],[22,-12],[-8,-11],[14,-17],[83,-42],[52,8],[53,40],[41,20],[51,-2],[14,-5],[-5,-10],[-38,-22],[-34,-25],[-3,-7],[42,10],[94,-16],[45,-4],[34,4],[31,-6],[29,-17],[9,-11],[-27,-6],[-25,0],[-22,-11],[-18,-20],[-13,-26],[-8,-33],[-19,-13],[-31,6],[-13,9],[7,13],[-9,2],[-25,-10],[-20,0],[-5,-9],[137,-104],[44,-91],[30,-38],[3,-10],[-20,-26],[-1,-19],[9,-56],[-4,-45],[-14,-78],[13,-25],[29,-22],[18,-27],[12,-10],[9,-22],[10,-14],[12,-6],[8,8],[5,20],[11,19],[31,34],[30,54],[5,17],[-5,42],[4,18],[28,64],[9,44],[8,69],[15,48],[32,40],[56,82],[20,16],[22,8],[40,-2],[28,-26],[39,-49],[49,-44],[90,-60],[25,-23],[51,-59],[21,-59],[15,-84],[13,-50],[10,-17],[5,-25],[-1,-34],[-4,-26],[-7,-19],[-11,-11],[-27,-4],[-34,6],[-9,8],[-18,40],[-7,2],[-31,-29],[-4,-16],[12,-54],[-2,-102],[3,-23],[33,-106],[55,-81],[138,-155],[8,-18],[15,-64],[7,-13],[9,-8],[11,-2],[15,6],[51,48],[44,51],[31,27],[18,2],[18,9],[21,17],[13,18],[7,19],[9,77],[8,37],[21,50],[8,14],[107,127],[9,16],[45,147],[17,67],[2,41],[-6,36],[3,30],[12,24],[13,16],[22,17],[13,24],[7,2],[19,0],[24,-16],[17,-3],[113,19],[0,9],[-66,31],[1,16],[5,21],[21,24],[26,7],[6,15],[0,19],[9,31],[-8,11],[-62,42],[-36,-2],[-9,5],[-31,35],[-11,50],[-1,20],[4,33],[4,9],[-2,15],[-8,20],[0,19],[6,16],[-4,19],[-14,22],[-6,18],[15,56],[1,17],[-15,24],[-10,9],[8,6],[25,2],[31,-7],[36,-18],[43,0],[52,17],[52,9],[91,-4],[21,-5],[90,-52],[70,-26],[32,3],[156,-11],[68,6],[35,-3],[68,-28],[-4,-24],[-30,-39],[-38,-8],[-34,-14],[32,-21],[92,-28],[22,-44],[6,-21],[-11,-18],[6,-10],[21,0],[55,16],[61,-10],[89,-35],[10,-7],[15,-27],[-2,-11],[-78,-67],[-41,-27],[-54,-27],[-1,-15],[75,-3],[58,-7],[27,-9],[14,-13],[19,-27],[3,-22],[-2,-29],[-6,-20],[-69,-59],[-31,-18],[-53,-21],[-23,-17],[-26,3],[-28,20],[-28,5],[-52,-17],[-29,1],[-13,-6],[-2,-13],[25,-37],[14,-14],[6,-11],[-11,-18],[3,-6],[8,-7],[47,-80],[10,-6],[10,3],[20,23],[13,9],[5,-1],[0,-12],[-22,-70],[-2,-19],[0,-17],[11,-35],[23,-38],[30,-35],[45,-46],[60,-49],[22,-24],[33,-56],[7,-22],[-9,-59],[-24,-97],[-15,-55],[-7,-14],[-45,-39],[-26,-9],[-42,1],[-14,-8],[-22,-31],[-30,-55],[-24,-35],[-17,-14],[-32,-17],[-50,-51],[-24,-20],[-86,-21],[-69,-68],[-28,-23],[-30,-12],[-32,-2],[-19,11],[-10,42],[-7,14],[-24,29],[-50,83],[-22,29],[-14,6],[-30,-5],[-14,3],[-33,26],[-11,17],[1,7],[25,9],[-11,14],[-43,37],[-18,20],[-2,6],[-43,26],[-43,7],[-53,-42],[-21,-29],[1,-9],[26,-11],[11,6],[22,26],[11,8],[33,-4],[28,-18],[10,-16],[4,-11],[75,-83],[26,-17],[12,-20],[8,-33],[16,-37],[36,-61],[39,-75],[8,-30],[-20,-14],[-10,-1],[-30,11],[-78,35],[-9,-1],[-20,-18],[-17,-42],[-5,-4],[-42,17],[-78,36],[-52,31],[-27,26],[-32,41],[-37,56],[-45,17],[-52,-20],[-76,-7],[-158,6],[-21,-5],[-8,-7],[14,-30],[-4,-9],[-10,-6],[-3,-9],[18,-32],[27,-23],[79,-30],[52,-25],[32,-22],[10,-19],[1,-20],[-15,-41],[-8,-15],[-183,-203],[-70,-82],[-35,-50],[-32,-33],[-27,-17],[-45,-9],[-62,-2],[-81,8],[-42,26],[-76,70],[-54,41],[-23,14],[-20,39],[-18,7],[-39,7],[-39,21],[-92,70],[-48,28],[-44,15],[-39,3],[-15,-4],[27,-36],[-12,-2],[-31,8],[-32,0],[-55,26],[-55,-4],[-39,5],[-48,14],[-51,7],[-82,0],[-29,-3],[-5,-7],[40,-31],[68,-37],[-9,32],[2,8],[23,11],[107,-19],[122,-42],[31,-4],[34,-15],[38,-25],[52,-51],[99,-116],[32,-29],[43,-27],[215,-40],[75,0],[149,-11],[79,-21],[22,-15],[7,-51],[-7,-26],[-43,-79],[-27,-58],[-168,-245],[-22,-57],[-9,-34],[-30,-34],[-76,-55],[-76,-46],[-46,-10],[-41,11],[-26,14],[-39,45],[-3,-4],[29,-72],[-7,-7],[-23,9],[-53,32],[-17,-6],[-10,-9],[-14,0],[-18,10],[-32,26],[-9,13],[-7,40],[-6,7],[-64,-23],[-10,-7],[26,-16],[9,-12],[25,-58],[2,-13],[-19,-8],[-61,23],[-7,-2],[30,-59],[12,-27],[1,-15],[-39,-66],[-25,-27],[-35,-10],[-21,6],[-24,17],[-18,-2],[-11,-22],[-20,-15],[-29,-9],[-37,4],[-45,17],[-120,62],[-37,9],[-70,9],[-9,9],[1,8],[10,8],[-3,7],[-15,6],[-15,-6],[-16,-16],[-28,-5],[-40,7],[-59,24],[-116,62],[-128,53],[-74,68],[28,-62],[-3,-20],[-14,-19],[-2,-18],[29,-44],[40,-15],[40,1],[1,7],[-16,11],[-15,16],[-7,24],[7,4],[36,-12],[23,-15],[177,-81],[53,-15],[40,-15],[11,-10],[-14,-20],[-71,-50],[-1,-8],[49,4],[59,45],[33,20],[32,13],[43,-22],[55,-56],[44,-32],[63,-18],[37,-19],[62,-53],[10,-27],[6,-111],[-2,-27],[-8,-27],[-14,-26],[-26,-15],[-38,-3],[-30,-11],[-65,-59],[-28,-9],[-117,18],[-45,16],[-21,-1],[-12,-13],[-12,-6],[-46,-5],[-8,-11],[3,-16],[9,-22],[11,-13],[18,-16],[26,-11],[53,-12],[6,-30],[-2,-10],[-18,-20],[-20,2],[-35,24],[-18,1],[-15,-13],[-21,-4],[-27,4],[-15,-10],[-3,-25],[-9,-19],[-31,-30],[-17,-22],[0,-18],[18,-12],[21,-28],[23,-45],[5,-19],[-15,5],[-19,18],[-24,29],[-36,27],[-80,35],[-15,-1],[8,-9],[53,-36],[20,-24],[3,-17],[-45,-38],[-1,-13],[12,-11],[3,-9],[-16,-18],[-26,-16],[-51,-2],[-4,-9],[19,-19],[6,-12],[-16,-16],[-11,-2],[-58,7],[15,-40],[9,-14],[18,-20],[32,-19],[1,-7],[-11,-16],[-19,-20],[-81,-59],[-56,-70],[-8,-22],[14,-45],[1,-12],[-15,-21],[-33,6],[-7,-8],[8,-22],[2,-31],[-5,-42],[-24,-66],[-43,-88],[-33,-81],[-23,-73],[-16,-36],[-31,-2],[-23,-23],[16,-12],[9,-14],[7,-21],[-7,-67],[-19,-111],[-13,-89],[3,-274],[-3,-121],[-9,-67],[-14,-37],[-24,-11],[30,-10],[20,-17],[9,-26],[8,-42],[12,-19],[13,3],[13,-4],[11,-12],[33,-59],[37,-17],[2,-33],[-15,-184],[0,-24],[17,46],[18,144],[23,63],[19,14],[77,7],[81,-16],[31,-2],[27,8],[28,-17],[6,-18],[8,-75],[8,-43],[48,-153],[23,-86],[29,-133],[10,-38],[59,-178],[11,-49],[5,-37],[-2,-26],[-11,-40],[-19,-54],[-18,-42],[-17,-28],[-18,-22],[-18,-14],[1,-3],[21,6],[20,15],[39,37],[15,8],[43,5],[1,-13],[-20,-28],[4,-2],[30,22],[64,31],[252,103],[59,9],[85,-19],[69,-43],[75,-56],[79,-41],[124,-38],[37,-18],[73,-19],[34,-21],[40,-52],[65,-67],[49,-42],[54,-39],[55,-73],[88,-164],[22,-20],[54,-27],[102,-35],[151,-81],[66,-32],[43,-13],[43,-22],[43,-32],[32,-35],[23,-38],[19,-25],[35,-28],[18,-19],[2,-30],[-42,-116],[-1,-10],[42,84],[24,24],[19,11],[39,-1],[59,-14],[53,0],[44,13],[39,6],[31,-1],[23,4],[14,10],[17,0],[68,-29],[27,-2],[99,-27],[63,10],[11,-5],[22,-36],[19,-3],[31,6],[31,-10],[51,-46],[23,-40],[23,-82],[2,-25],[-42,-190],[-13,-73],[-2,-65],[8,-36],[37,-62],[6,-17],[22,-91],[6,-39],[-3,-45],[-11,-75],[3,-56],[9,-85],[-3,-58],[-17,-31],[-11,-29],[-9,-54],[0,-21],[9,-40],[16,-23],[26,-25],[24,-38],[45,-92],[33,-51],[39,-75],[8,-38],[-11,-25],[-14,-17],[-32,-23],[-14,-17],[3,-4],[47,12],[27,-1],[23,-19],[19,-36],[32,-30],[43,-25],[44,-43],[74,-100],[13,-23],[19,-52],[26,-82],[13,-54],[1,-25],[-14,-25],[-49,-46],[-50,-81],[16,4],[32,34],[56,67],[30,13],[29,-7],[45,-20],[39,-27],[35,-36],[51,-95],[55,-76],[30,-65],[-9,41],[-20,48],[-51,76],[-22,39],[-5,19],[-2,21],[4,37],[10,55],[13,39],[16,22],[10,24],[6,25],[8,19],[44,33],[12,-3],[9,-41],[10,-8],[21,-6],[17,-15],[14,-21],[10,-23],[6,-22],[13,-73],[9,-34],[2,41],[11,65],[8,26],[27,39],[-2,17],[-11,22],[-56,97],[-1,24],[15,14],[11,26],[5,40],[12,28],[35,40],[30,62],[16,42],[12,23],[13,5],[-18,17],[-4,11],[-1,51],[-8,54],[-12,25],[-34,53],[-6,16],[-6,60],[4,30],[9,26],[-5,24],[-32,45],[-12,39],[-14,93],[-13,118],[-14,86],[-16,56],[-3,35],[9,14],[11,44],[10,10],[16,-2],[1,5],[-25,23],[-12,30],[1,11],[21,29],[-3,12],[-16,16],[-49,28],[18,10],[11,23],[-2,7],[-20,10],[-22,17],[-17,27],[-20,42],[-13,34],[-12,56],[-22,63],[-9,16],[-11,10],[-12,5],[0,10],[13,14],[210,106],[18,16],[103,59],[48,33],[48,48],[66,49],[32,31],[21,31],[105,122],[44,62],[26,53],[37,64],[49,75],[31,63],[13,54],[16,91],[4,82],[3,119],[-1,106],[-14,167],[-7,53],[-15,62],[-37,125],[-6,35],[-23,57],[-74,151],[-92,101],[-18,26],[-36,30],[-56,34],[-36,28],[-94,104],[-31,13],[-11,27],[-3,19],[4,50],[5,34],[7,26],[7,16],[52,77],[29,61],[20,34],[22,26],[41,34],[23,44],[-6,17],[-18,19],[-4,19],[31,47],[4,13],[-4,45],[6,10],[38,3],[54,-64],[13,5],[-17,18],[-21,43],[3,18],[40,47],[1,21],[-12,29],[-1,24],[23,55],[-6,12],[-65,11],[-11,16],[4,7],[31,19],[2,7],[-54,125],[-9,37],[23,46],[26,20],[-3,12],[-35,2],[-21,7],[-21,35],[8,23],[8,10],[20,54],[20,11],[-4,9],[-74,-23],[-35,19],[-35,-5],[-16,6],[6,19],[62,86],[29,47],[18,43],[10,28],[1,14],[-6,93],[3,26],[25,24],[37,44],[-51,41],[-32,39],[-21,20],[-16,19],[-21,40],[-15,53],[-17,106],[-3,58],[4,42],[7,21],[11,22],[47,41],[82,60],[64,24],[47,-13],[90,-15],[73,-34],[222,-86],[40,-38],[-37,-33],[5,-8],[84,62],[22,12],[19,3],[63,-24],[25,-4],[32,-20],[76,-66],[6,6],[-21,34],[12,15],[60,35],[62,29],[44,28],[47,37],[32,20],[16,2],[21,-11],[56,-49],[36,-25],[29,-26],[40,-47],[16,-10],[31,-32],[41,3],[13,-3],[4,-7],[7,-21],[4,-14],[0,-14],[-9,-42],[-30,-66],[13,-1],[18,14],[24,25],[19,9],[40,-20],[38,-32],[13,-17],[15,-28],[12,-15],[12,-27],[-1,-9],[-11,-14],[-46,-22],[9,-9],[53,14],[17,14],[11,24],[16,6],[63,-41],[9,-14],[-4,-11],[-10,-13],[-27,-14],[-24,-35],[-4,-15],[17,-11],[41,-4],[0,-8],[-24,-16],[-3,-20],[53,-71],[36,-32],[21,-5],[48,-2],[39,-12],[86,-40],[51,-8],[44,13],[29,2],[25,-16],[8,-11],[4,-23],[0,-34],[14,-24],[28,-14],[23,2],[31,27],[25,5],[9,20],[7,37],[8,20],[18,6],[15,-11],[9,-17],[16,-51],[4,-23],[-1,-20],[-8,-19],[-16,-20],[-23,-21],[-19,-31],[-22,-70],[-9,-46],[-2,-28],[1,-29],[4,-33],[9,-27],[21,-37],[1,-13],[2,-30],[-2,-14],[-12,-27],[-34,-26],[-46,-7],[-152,-1],[-41,6],[10,-24],[43,-8],[38,0],[145,-15],[20,-15],[17,-28],[12,-28],[12,-57],[2,-27],[-6,-31],[-15,-33],[-10,-44],[-5,-55],[8,-29],[78,-3],[15,-20],[-1,-15],[-28,-56],[-3,-15],[13,-38],[-2,-11],[-7,-11],[-8,-28],[-7,-46],[-9,-30],[-21,-22],[-11,-5],[-8,6],[-21,62],[-9,9],[-8,-6],[-4,-9],[0,-14],[-4,-14],[-7,-14],[-31,-23],[-50,-16],[1,-16],[34,-9],[43,-28],[25,-4],[38,22],[75,71],[31,19],[27,7],[30,1],[34,-5],[68,9],[17,-7],[20,-15],[25,-25],[17,-23],[9,-23],[15,-85],[21,-23],[4,-16],[2,-25],[-1,-49],[-23,-100],[-11,-36],[-31,-50],[-36,-23],[-64,-21],[-33,-18],[-25,-25],[-1,-13],[72,42],[79,20],[23,24],[17,22],[17,50],[32,130],[18,40],[25,7],[11,-14],[26,-76],[0,-19],[-7,-16],[-42,-74],[15,7],[43,70],[9,21],[5,32],[14,23],[5,-11],[13,-82],[0,-60],[3,-19],[-5,-56],[5,-10],[13,49],[4,37],[6,26],[7,16],[52,50],[61,40],[40,36],[33,17],[50,17],[31,33],[14,50],[12,35],[10,20],[33,34],[17,2],[17,-12],[20,-26],[21,-40],[13,-30],[4,-23],[4,-78],[4,0],[19,60],[3,21],[-2,23],[-6,22],[-20,49],[-7,31],[1,18],[22,11],[31,4],[5,8],[-23,21],[-1,11],[22,36],[13,1],[26,-5],[-5,18],[0,12],[7,5],[42,-11],[5,14],[36,1],[4,12],[-32,18],[-30,12],[-10,9],[-7,15],[-9,35],[2,9],[9,0],[14,-9],[9,18],[9,43],[9,18],[28,-21],[1,9],[-23,68],[4,13],[35,5],[21,-9],[55,-49],[11,5],[-9,14],[-28,29],[-26,19],[-23,9],[-17,16],[-19,45],[-3,18],[2,24],[13,50],[7,11],[14,8],[19,5],[21,-5],[44,-33],[7,11],[-23,18],[-13,16],[-6,21],[2,24],[19,49],[9,40],[39,109],[12,20],[12,12],[8,13],[31,3],[57,-39],[18,-23],[4,-32],[-30,-45],[-51,-33],[-16,-14],[10,-9],[49,27],[42,12],[34,0],[28,-53],[4,-73],[-16,-60],[21,30],[26,17],[22,-40],[2,-32],[12,-31],[24,-40],[25,-36],[-28,-37],[-33,-23],[7,-16],[46,-18],[6,-18],[-5,-24],[7,1],[32,36],[27,-5],[34,-79],[-25,-46],[-39,-21],[-30,-9],[-43,2],[-17,-7],[8,-15],[41,-1],[63,12],[47,19],[20,1],[22,-8],[7,-6],[-23,-13],[-1,-5],[8,-13],[18,-44],[-2,-10],[-17,-25],[27,-5],[38,12],[11,-14],[23,-52],[15,-53],[-64,-73],[-32,-15],[-48,-39],[-13,-31],[-28,-39],[18,0],[49,64],[24,15],[18,-4],[7,-11],[-3,-18],[16,3],[66,37],[28,7],[36,3],[3,-13],[-22,-89],[-38,-69],[-70,-42],[-24,-25],[-31,-40],[12,-7],[66,52],[45,21],[64,17],[28,-3],[51,-104],[28,-10],[24,5],[44,-30],[16,-29],[-4,-21],[-15,-13],[-7,-19],[18,-58],[-11,-33],[-32,-29],[-23,-14],[-24,-5],[-24,-25],[-10,-4],[-33,6],[11,-15],[16,-8],[26,-4],[30,8],[30,-1],[46,-19],[20,-23],[0,-6],[-10,-13],[-15,-42],[-10,-15],[9,-12],[23,-18],[17,-6],[23,6],[25,-8],[82,-99],[-4,-51],[-12,-40],[5,-44],[0,-55],[-44,-15],[-148,25],[-84,39],[-5,12],[24,26],[-21,2],[-24,-10],[-11,-10],[29,-41],[77,-36],[35,-44],[38,-4],[11,-8],[21,-25],[-6,-9],[-39,-3],[-30,-30],[19,-17],[69,-16],[49,-4],[25,-17],[-20,-19],[-58,-22],[-2,-33],[43,-14],[38,8],[16,-3],[11,-80],[7,-17],[-41,-14],[-1,-16],[28,-13],[45,-10],[15,-15],[3,-24],[9,-12],[26,-3],[29,30],[17,25],[25,-9],[1,-31],[30,-36],[10,-6],[9,-51],[24,45],[17,-9],[20,-2],[-7,-44],[-11,-34],[15,-22],[12,-32],[33,-43],[-9,-21],[-38,-45],[-20,-72],[-5,-24],[-20,-41],[-26,-40],[16,4],[60,73],[36,25],[78,13],[19,20],[29,9],[18,-23],[1,-42],[24,-14],[24,14],[22,-12],[-13,-26],[-71,-108],[-21,-44],[-6,-31],[24,43],[90,97],[9,14],[20,42],[18,27],[48,-10],[25,-19],[11,-55],[19,-59],[30,-65],[78,-32],[28,-6],[49,23],[7,30],[38,10],[27,-4],[9,-59],[29,-31],[28,-26],[27,-14],[40,-6],[22,-28],[0,-12],[-22,-30],[-22,-45],[-38,-31],[-53,-1],[-72,-20],[-3,-17],[-16,-19],[-39,-20],[-21,-14],[-35,-72],[-20,-31],[-24,-6],[-34,3],[-22,-6],[-16,-14],[-10,-19],[-7,-7],[-45,-20],[-82,-55],[-44,-2],[-26,7],[-21,-5],[-14,-15],[-39,-27],[-12,-16],[-7,-19],[-5,-38],[-5,-14],[-7,-8],[-33,8],[-37,25],[7,-27],[58,-44],[17,-25],[-16,-21],[-37,-34],[-4,-18],[15,-10],[-6,-15],[-20,-16],[2,-7],[2,-6],[51,23],[45,50],[29,50],[14,14],[58,19],[34,22],[49,39],[54,58],[58,76],[74,59],[91,42],[66,22],[42,1],[2,7],[-37,14],[-32,2],[-39,-10],[-12,24],[2,10],[12,17],[33,15],[161,-21],[55,-17],[60,-137],[14,-44],[4,-32],[-6,-20],[-24,-24],[-69,-48],[-9,-12],[-1,-7],[30,-9],[9,-14],[15,-52],[31,34],[58,83],[48,38],[40,11],[47,5],[17,-1],[6,-27],[25,-54],[23,-14],[45,-7],[40,-67],[15,-46],[14,-27],[-1,-19],[2,-15],[11,-23],[5,-19],[-3,-45],[-23,-77],[17,-71],[-7,-31],[-4,-51],[14,-33],[5,-20],[-13,-11],[-88,-28],[-35,-1],[-9,-17],[27,-5],[48,1],[59,-17],[27,-19],[11,-27],[-3,-21],[-17,-16],[-33,3],[-32,15],[2,-14],[47,-35],[14,-17],[26,-22],[5,-30],[-6,-30],[-90,-120],[-73,-76],[-74,-67],[-119,-129],[-12,-6],[-21,-3],[-57,21],[-45,-5],[-85,-25],[-24,-15],[-47,-45],[-18,-6],[-51,-9],[-47,6],[-19,-7],[-23,-21],[-6,-12],[-7,-38],[-115,-168],[-31,-57],[-59,-60],[-65,-106],[-57,-43],[-19,-58],[-54,-36],[-100,-9],[-47,-10],[-55,16],[-42,-25],[-62,-8],[-30,6],[-121,-57],[-31,54],[-23,21],[-68,3],[-55,22],[-50,4],[-48,10],[-32,0],[-33,-6],[-52,2],[-29,-30],[-96,9],[-41,27],[-34,6],[-44,-6],[-43,-20],[-94,22],[-100,-19],[-87,13],[-24,13],[-138,-35],[-53,20],[-48,-54],[-32,11],[-35,-8],[-12,11],[-23,-8],[-15,-29],[-20,-3],[-33,-52],[-56,-41],[-82,-226],[-7,-87],[-31,-59],[-27,-8],[-22,-1],[-141,-44],[-63,-34],[18,-27],[-21,-21],[-33,-8],[-36,-25],[-24,-28],[-11,-39],[-72,-64],[-84,-147],[-40,-108],[-49,-78],[-34,-30],[-25,-5],[-25,10],[-41,36],[-30,4],[-76,51],[-177,52],[27,-19],[23,-32],[47,-8],[47,0],[99,-63],[48,-22],[30,-19],[25,-43],[-18,-84],[-19,-69],[-24,-53],[-85,-137],[-41,-46],[-72,-163],[-74,-77],[-40,-47],[-42,-74],[-99,-56],[-37,-15],[-34,8],[-41,-46],[-49,-28],[-15,-42],[-117,-114],[-45,-15],[-39,-30],[-11,-51],[-34,-32],[-10,-23],[-29,-72],[-53,-94],[-66,-15],[-24,-32],[-27,-53],[-39,-36],[-77,17],[18,-22],[69,-34],[7,-51],[-34,-12],[-72,-68],[-98,-117]],[[15892,80064],[-11,21],[-27,26],[-10,0],[-11,-8],[-7,-12],[-6,-27],[-4,-8],[-4,1],[-3,7],[-8,37],[2,16],[9,20],[-1,7],[-20,-6],[-8,5],[-4,10],[1,42],[-11,23],[13,10],[32,8],[34,1],[9,18],[10,43],[-24,-40],[-14,-4],[-44,15],[-29,-2],[-4,8],[2,9],[6,9],[4,31],[7,85],[9,31],[3,16],[-2,4],[-38,-59],[-3,-19],[4,-16],[-4,-33],[-18,-10],[-10,5],[-20,-28],[-6,-3],[-91,50],[-10,6],[-15,23],[-23,40],[-7,34],[9,28],[8,14],[10,0],[10,-10],[21,-47],[8,-29],[22,4],[35,37],[8,14],[-35,-14],[-15,1],[-15,15],[-16,30],[-8,34],[0,107],[5,20],[17,16],[11,25],[-1,11],[-10,22],[-15,16],[-15,9],[-4,-3],[23,-46],[0,-18],[-26,-46],[-4,-13],[0,-45],[-3,-9],[-21,-13],[-23,-35],[-39,-12],[-36,4],[-20,17],[-61,86],[-22,36],[0,30],[-42,107],[0,23],[-14,33],[-16,5],[-4,32],[33,68],[21,58],[2,18],[-1,28],[-5,62],[5,27],[-21,-36],[-4,-26],[5,-27],[-3,-30],[-12,-43],[-21,-45],[-42,-21],[-74,12],[-8,6],[-5,15],[-4,66],[-5,-8],[-8,-35],[-7,-51],[-9,-11],[-15,-1],[-12,8],[-9,17],[-19,2],[-34,-14],[-17,6],[-19,0],[-40,15],[-47,4],[-12,11],[1,22],[8,11],[49,10],[48,23],[47,12],[-2,11],[-21,4],[-108,-26],[-34,4],[-6,4],[-1,26],[13,24],[21,23],[6,18],[-12,7],[-20,-5],[-9,14],[10,55],[-9,55],[-13,-52],[-19,-29],[-91,-13],[-15,-15],[-12,0],[-58,28],[-25,17],[-23,25],[-42,57],[-33,37],[-1,67],[7,43],[15,49],[59,104],[21,19],[18,7],[87,9],[65,13],[12,7],[-95,7],[-85,-5],[-29,-16],[-37,-67],[-9,-28],[-10,-21],[-7,0],[-12,7],[-4,9],[-6,22],[-19,34],[-9,40],[-5,59],[1,26],[10,34],[28,66],[-36,-2],[4,55],[13,61],[34,35],[34,26],[31,34],[55,22],[18,-46],[47,-14],[13,-21],[17,-38],[20,-36],[25,-35],[7,-3],[-11,30],[-40,65],[-2,23],[-10,25],[-52,36],[-10,14],[-9,36],[-4,24],[6,22],[53,69],[13,37],[0,17],[-5,19],[-11,34],[-3,0],[3,-51],[-2,-20],[-6,-22],[-8,-17],[-12,-11],[-114,-158],[-12,-9],[-42,-14],[-22,-17],[-12,-22],[-19,-58],[-25,-115],[-30,-93],[-25,121],[-46,92],[89,92],[2,14],[-8,49],[2,15],[8,21],[23,32],[-1,3],[-26,-12],[-41,-71],[-16,-22],[-8,-3],[-1,41],[22,109],[18,105],[6,30],[16,30],[-15,-2],[-72,-47],[-24,29],[-20,153],[-36,59],[-60,49],[-59,22],[-13,43],[-12,53],[16,62],[26,29],[23,14],[23,-7],[1,-22],[-15,-61],[20,-6],[81,-74],[17,-6],[34,28],[18,-1],[44,-23],[15,-28],[42,-54],[-6,32],[-46,66],[-25,22],[-45,4],[-28,-11],[-12,3],[-24,17],[-21,28],[-21,61],[-5,29],[1,21],[5,19],[9,17],[17,13],[26,7],[7,8],[-32,35],[-15,0],[-52,-51],[-10,-5],[-5,10],[-4,1],[-15,-25],[-12,-11],[-42,-79],[-7,-37],[-2,-57],[-5,-35],[-7,-14],[-50,-27],[-28,-55],[-34,48],[-38,45],[-25,80],[-45,14],[-52,45],[-20,41],[28,82],[41,63],[6,74],[6,16],[70,19],[46,37],[-47,4],[-29,-6],[-52,-26],[-57,51],[-29,47],[-10,40],[10,34],[2,34],[5,47],[5,20],[12,26],[25,17],[22,54],[9,37],[44,111],[16,48],[31,67],[61,105],[-20,-6],[-10,-9],[-9,1],[-9,11],[-9,24],[-8,35],[-5,-16],[-1,-66],[-6,-57],[-11,-39],[-30,-80],[-18,-31],[-12,29],[10,50],[17,40],[3,54],[-16,65],[-10,53],[-4,40],[-1,36],[3,33],[7,35],[11,39],[-1,4]],[[19495,97148],[49,-34],[17,1],[21,-6],[10,-9],[29,-43],[6,-21],[2,-27],[-5,-23],[-10,-19],[-27,-11],[-62,-8],[-87,11],[-75,-14],[-35,-2],[-93,9],[-24,7],[-52,26],[-40,11],[-16,-6],[-20,-23],[-37,-28],[-23,-7],[-68,4],[-103,48],[-118,-14],[-123,-28],[-48,-5],[-14,8],[-19,21],[3,11],[36,32],[82,33],[60,19],[118,28],[141,15],[52,17],[33,23],[92,37],[53,16],[73,13],[58,-1],[74,-30],[56,-15],[34,-16]],[[19317,96833],[223,-14],[9,-3],[1,-10],[-17,-33],[-25,-24],[-119,-30],[-153,-28],[-32,-13],[2,-8],[13,-10],[25,-12],[119,2],[29,-5],[10,-8],[6,-12],[4,-15],[0,-53],[-6,-30],[-17,-27],[-48,-20],[-86,-26],[-59,-11],[-46,4],[-46,-3],[-202,-48],[-62,-1],[-55,12],[-75,46],[-78,18],[-34,21],[-33,11],[-9,16],[-3,13],[6,11],[14,10],[4,9],[-13,25],[-6,24],[-22,35],[-4,20],[0,13],[4,14],[15,25],[8,5],[46,4],[60,13],[139,37],[305,47],[93,-4],[40,9],[75,4]],[[17902,96407],[21,-23],[2,-9],[-10,-9],[-33,-15],[-164,-51],[-32,-24],[12,-20],[59,-41],[60,-35],[13,-18],[-28,-17],[-55,5],[-20,-1],[-20,-8],[6,-16],[60,-52],[20,-28],[0,-14],[-11,-14],[-26,-19],[-40,-25],[-68,-19],[-148,-26],[-5,-21],[1,-15],[-3,-38],[-6,-18],[-17,-29],[-13,-14],[-22,-9],[-32,-6],[-40,0],[-67,26],[-30,16],[-42,35],[-8,24],[5,28],[11,45],[18,46],[25,46],[8,29],[-10,12],[-18,0],[-54,-19],[-35,-7],[-27,-13],[-20,-21],[-11,-22],[-6,-43],[-10,-23],[-29,-13],[-44,0],[-17,-7],[-8,-16],[6,-12],[43,-27],[6,-30],[-6,-18],[-46,-33],[-11,-11],[-29,-52],[-11,-13],[-24,-12],[-24,1],[-23,19],[-33,36],[-22,31],[-12,26],[-9,11],[-16,-8],[-19,-26],[0,-21],[4,-31],[-1,-19],[-28,-23],[4,-10],[49,-28],[6,-12],[0,-19],[-3,-9],[-20,1],[-16,-22],[-19,-17],[-49,-33],[-69,-4],[-57,-16],[-12,1],[-14,26],[-15,50],[-14,29],[-20,15],[-26,58],[-12,18],[-11,8],[-10,2],[-15,-12],[-33,-82],[-54,-21],[-29,-4],[-30,2],[-74,23],[-60,8],[-41,-9],[-68,-34],[-27,-9],[-37,4],[-16,13],[-14,21],[-1,12],[10,5],[17,24],[0,9],[-17,14],[0,11],[6,7],[-2,6],[-8,3],[-17,-3],[-61,-16],[7,17],[29,37],[71,72],[26,21],[16,6],[209,24],[15,7],[99,97],[28,22],[29,18],[143,58],[13,14],[22,40],[13,10],[31,16],[102,82],[94,59],[47,37],[65,37],[75,16],[227,28],[163,-37],[38,-2],[19,10],[17,17],[25,-7],[60,-5],[14,4],[25,19],[-17,11],[-73,19],[-5,10],[2,9],[26,23],[31,14],[90,11],[41,-3],[43,-15],[55,-32],[127,-56]],[[19919,95654],[35,-1],[41,6],[46,-4],[21,-13],[15,-23],[0,-13],[-3,-10],[-6,-9],[-60,-58],[-14,-20],[19,-5],[10,3],[59,44],[45,13],[34,4],[57,-9],[22,-8],[15,-8],[9,-11],[22,-41],[16,-54],[2,5],[1,31],[3,23],[55,16],[1,5],[-20,13],[-16,18],[-12,33],[4,12],[12,14],[35,28],[42,17],[36,4],[137,-29],[54,-25],[21,-12],[8,-9],[12,-28],[23,-78],[-1,-25],[-10,-40],[-44,-76],[-7,-51],[-44,-127],[-31,-35],[-33,-24],[-138,-43],[-104,-43],[-26,-7],[-27,-1],[-86,15],[-99,27],[-57,-7],[-56,-20],[-36,-6],[-33,3],[-33,7],[-44,19],[23,8],[10,10],[-9,10],[-46,14],[-48,-32],[-139,-73],[-187,-25],[-58,-15],[-44,-19],[-22,-16],[-35,-38],[-53,-28],[-96,-31],[-123,-48],[-220,-49],[-138,-8],[-138,16],[-44,13],[-46,21],[-93,49],[-26,17],[-31,39],[18,25],[50,30],[75,26],[150,36],[135,58],[49,11],[130,9],[66,-5],[48,3],[31,8],[47,20],[68,42],[50,39],[12,18],[-16,17],[-25,2],[-81,-40],[-41,-13],[-44,-1],[-61,-14],[-60,-5],[-11,0],[-62,39],[-33,6],[-16,-4],[-14,-10],[-26,-28],[-16,-10],[-27,-8],[-107,-8],[-104,-14],[-23,9],[-14,16],[-3,10],[-1,33],[-7,14],[9,28],[12,21],[14,15],[71,43],[10,11],[-34,-2],[-80,-21],[-11,7],[-18,24],[-9,2],[-11,-10],[-6,-14],[-13,-58],[-13,-30],[-32,6],[-40,18],[-15,3],[-9,-6],[3,-10],[41,-50],[0,-17],[-26,-31],[-114,-51],[-44,-13],[-16,5],[-14,14],[-13,22],[-29,31],[-18,7],[-19,1],[-18,-7],[-17,-13],[-10,-15],[-10,-26],[-20,-21],[-13,-3],[-115,42],[-93,75],[-101,-11],[-46,2],[-138,28],[-17,17],[-10,22],[1,12],[6,12],[17,25],[35,37],[15,12],[21,10],[29,8],[73,4],[189,2],[37,5],[206,72],[24,12],[30,23],[7,10],[-1,6],[-254,-57],[-109,-12],[-166,9],[-31,9],[-8,16],[35,42],[18,16],[48,15],[114,21],[154,19],[100,0],[84,15],[51,17],[-170,-1],[-204,-8],[-30,5],[-58,23],[-3,16],[23,19],[9,15],[-17,33],[5,13],[38,27],[68,29],[42,5],[81,-11],[230,-10],[45,4],[-28,13],[-40,9],[-178,17],[-37,7],[-7,10],[-3,15],[2,19],[13,20],[55,42],[162,35],[64,5],[65,-3],[65,-15],[29,-14],[15,-16],[7,-16],[1,-26],[3,-11],[12,-17],[37,-42],[28,-13],[128,24],[53,6],[54,-8],[78,-24],[101,-75],[130,-77],[-1,-16],[-49,-26],[-10,-11],[7,-7],[50,-5],[46,4],[45,-6],[10,-7],[16,-28],[23,-49],[27,-37],[31,-24],[31,-13],[45,-1],[46,8],[74,-3],[381,-28],[23,5],[16,15],[9,26],[4,22],[-5,29],[-8,14],[-236,94],[-21,38],[116,54],[8,12],[2,17],[-4,21],[-15,21],[-62,39],[-55,6],[-82,38],[-12,10],[-11,15],[-8,21],[1,16],[11,12],[80,39],[33,21],[100,98],[46,39],[33,19],[34,11],[74,5],[77,-36],[17,-2],[7,-10],[-3,-17],[-10,-16],[-27,-29],[-7,-12],[2,-13],[19,-29],[6,-19],[4,-32],[3,-5],[47,-27],[42,-36],[20,-55],[-16,-19],[-35,-27],[-21,-22],[-7,-18],[5,-10],[27,-6]],[[18188,93659],[18,-7],[32,6],[47,19],[60,15],[74,13],[19,-15],[12,3],[22,24],[4,16],[-3,18],[1,40],[12,23],[44,50],[23,18],[37,9],[89,-6],[84,-28],[112,-28],[165,-71],[52,-30],[5,-26],[-29,-55],[-71,-79],[-57,-28],[-22,-18],[37,-12],[24,-20],[36,29],[27,33],[38,27],[13,3],[3,-6],[-7,-14],[-2,-14],[1,-13],[4,-8],[23,-4],[13,5],[50,38],[49,59],[75,38],[20,19],[65,16],[-1,12],[3,44],[-22,19],[-77,40],[-37,48],[8,37],[42,-5],[115,-4],[24,-5],[111,-62],[39,-39],[31,-19],[65,-28],[22,-23],[16,-9],[5,-10],[-5,-10],[-2,-23],[12,-8],[42,-9],[12,-9],[16,-30],[19,-50],[17,-55],[27,-103],[54,-137],[18,-86],[7,-16],[12,-11],[34,-16],[27,-22],[31,-7],[7,2],[8,19],[20,31],[94,59],[5,9],[-11,14],[-3,9],[1,7],[20,5],[-66,75],[-43,71],[-27,89],[-4,25],[-4,55],[-9,15],[-15,13],[-6,17],[2,21],[-3,18],[-17,37],[-67,261],[0,26],[9,19],[24,11],[38,2],[13,6],[-15,10],[-25,27],[-3,13],[17,26],[86,-11],[62,-24],[106,-55],[11,3],[12,28],[22,17],[34,-6],[96,-40],[112,-71],[74,-36],[53,-48],[35,-45],[23,-35],[1,-13],[-5,-14],[5,-19],[16,-22],[8,-20],[7,-43],[15,-56],[3,-28],[99,-250],[19,-45],[12,-20],[69,-97],[37,-70],[3,-48],[5,-13],[2,-22],[-2,-30],[-8,-25],[-14,-22],[-14,-30],[-22,-67],[-1,-16],[15,-23],[97,-79],[59,-95],[28,-16],[74,-59],[81,-34],[27,-15],[26,-21],[7,-1],[16,4],[4,6],[1,9],[-22,45],[-2,17],[11,3],[83,-76],[45,-31],[61,-32],[105,-74],[15,-6],[57,7],[15,-5],[10,-7],[4,-10],[2,-44],[16,-21],[90,9],[25,-2],[16,-7],[13,-14],[20,-47],[17,-92],[1,-33],[-8,-56],[-13,-20],[-17,-7],[-48,7],[-33,17],[-18,23],[-16,48],[-7,10],[-7,-10],[-16,-45],[-10,-19],[-13,-14],[-24,4],[-35,19],[-66,50],[-23,12],[-15,-2],[-31,-17],[-49,-31],[-20,-23],[8,-15],[6,-19],[3,-22],[-2,-17],[-6,-10],[-16,-13],[-34,-2],[-49,9],[-39,18],[-68,46],[-15,6],[-21,-10],[-8,-14],[13,-19],[34,-24],[42,-41],[11,-8],[11,0],[4,-7],[5,-22],[-2,-38],[-21,-76],[-2,-18],[9,4],[57,75],[29,21],[65,32],[27,24],[82,7],[30,-13],[18,-23],[1,-10],[-21,-27],[-4,-14],[-1,-17],[2,-15],[5,-13],[14,-13],[26,6],[8,-4],[14,-13],[9,-20],[0,-29],[-19,-62],[-34,-21],[-105,-37],[-36,-20],[-70,-14],[-26,-18],[-17,-5],[-74,2],[-85,-11],[-98,23],[-69,10],[-79,36],[-30,-9],[-31,-24],[-148,28],[-18,20],[6,14],[35,42],[2,9],[-1,8],[-68,7],[-75,23],[-75,11],[-57,-3],[-37,8],[-36,19],[-19,17],[-4,16],[0,17],[3,34],[-5,24],[-16,18],[-34,17],[-33,-2],[-28,-18],[-26,-35],[-50,-96],[-24,-16],[-65,-70],[-24,-17],[-117,-27],[-140,-11],[-52,-22],[-49,-40],[-60,-39],[-146,-48],[-135,-27],[-142,-12],[-105,-18],[-31,9],[-47,-3],[-51,-27],[-57,-5],[-219,-10],[-100,-17],[-55,-5],[-44,2],[-30,8],[-28,23],[-30,37],[-60,97],[-17,41],[6,70],[-4,40],[-20,88],[-4,7],[-105,33],[-70,10],[-104,2],[-128,-4],[-127,10],[-68,12],[-67,19],[-114,51],[-7,5],[-8,17],[-12,28],[-28,37],[-78,82],[-31,49],[-5,13],[-7,36],[-10,59],[-3,36],[9,22],[7,5],[162,43],[284,47],[261,32],[118,-3],[69,-15],[70,-7],[126,-3],[160,-22],[31,2],[72,15],[21,12],[113,-2],[22,8],[20,13],[-26,25],[-108,55],[-286,97],[-70,21],[-100,22],[-58,3],[-74,-12],[-28,0],[-72,-19],[-69,-12],[-131,-12],[-189,-8],[-26,2],[-39,15],[-28,4],[-185,-11],[-165,15],[-188,149],[-32,46],[7,18],[23,20],[93,58],[34,13],[139,31],[138,38],[110,35],[53,12],[52,2],[42,11],[-9,11],[-34,13],[0,18],[18,9],[69,9],[72,-11],[37,3],[10,13],[-10,9],[-69,21],[-331,-59],[-155,-5],[-107,-26],[-59,1],[-70,25],[-10,8],[-1,10],[22,34],[75,20],[38,57],[-41,1],[-134,-12],[-59,5],[-79,22],[-23,26],[-10,18],[-2,23],[3,63],[6,34],[5,8],[98,105],[62,22],[43,33],[1,13],[-10,14],[-40,34],[-17,17],[-9,17],[7,25],[23,36],[67,57],[162,114],[82,48],[79,26],[110,55],[284,91],[254,92],[93,-24],[27,-19],[12,-16],[10,-23],[9,-29],[12,-63],[1,-32],[-2,-33],[-6,-29],[-9,-27],[-19,-32],[-29,-38],[-60,-65],[-7,-19]],[[16740,94534],[2,-2],[71,53],[44,3],[30,-5],[10,-6],[6,-11],[3,-23],[2,-58],[4,-7],[9,3],[16,14],[78,85],[33,23],[23,7],[96,13],[65,0],[71,-8],[54,-12],[88,-35],[69,-40],[63,-43],[212,-161],[90,-47],[35,-27],[15,-20],[13,-25],[4,-23],[-5,-21],[-10,-15],[-21,-13],[-130,-54],[-69,-16],[-67,-24],[-162,-84],[-111,-40],[-144,-78],[-272,-126],[-32,-25],[-15,-18],[-77,-143],[-29,-33],[-71,-34],[-89,-9],[-25,-9],[-5,-50],[-32,-82],[-15,-55],[-22,-148],[-5,-15],[-16,-28],[-28,-29],[-86,-35],[-64,-18],[-86,-15],[-21,10],[-21,24],[-22,2],[-13,-4],[-114,-103],[-109,-41],[-47,-38],[-33,-18],[-27,-5],[-44,3],[-32,17],[-29,27],[-22,28],[-56,118],[-24,40],[-21,20],[-55,72],[-15,14],[-209,91],[-101,51],[-25,18],[-23,11],[-130,-7],[-18,2],[-4,8],[15,27],[6,16],[2,17],[-2,27],[2,4],[49,27],[-8,5],[-5,10],[-4,15],[5,11],[15,6],[17,24],[21,43],[15,24],[22,16],[38,41],[27,17],[23,21],[1,9],[-10,8],[-3,16],[5,50],[-1,25],[5,22],[8,17],[11,11],[97,37],[4,10],[2,12],[-3,14],[-5,9],[-15,8],[-26,2],[-23,21],[-5,10],[9,29],[44,45],[14,22],[48,101],[86,63],[23,67],[65,72],[0,10],[-21,24],[-60,17],[-29,26],[-19,29],[-87,170],[-15,13],[-5,20],[-18,13],[4,12],[341,51],[235,16],[243,44],[68,2],[52,-8],[52,-23],[69,-40],[90,-39],[170,-58],[106,-12],[-42,-45],[-6,-14],[0,-10]],[[30697,99663],[227,-10],[73,4],[84,-26],[51,-3],[83,5],[61,-6],[226,-6],[47,-10],[-1,-11],[-48,-26],[-66,-25],[-423,-82],[-31,-13],[83,-4],[121,3],[94,9],[111,28],[37,2],[70,13],[137,38],[109,20],[49,-9],[42,-14],[28,-2],[15,11],[23,30],[14,11],[36,7],[22,-1],[35,-14],[40,-33],[36,-23],[20,0],[83,26],[41,3],[96,-9],[39,-12],[7,-12],[-25,-13],[-16,-11],[-6,-10],[14,-11],[58,-23],[83,-51],[-1,-19],[-45,-38],[1,-9],[214,40],[217,-18],[61,-12],[23,-15],[25,-24],[27,-34],[-19,-35],[-95,-55],[-98,-43],[-58,-38],[-88,-22],[-305,-92],[-149,-30],[-85,-30],[-39,-5],[-181,6],[-48,-16],[-26,-28],[-58,-13],[-84,-9],[-172,-7],[-39,-31],[-10,-21],[-17,-16],[-15,-8],[-492,-111],[-10,-18],[50,-8],[63,8],[717,134],[137,9],[128,-10],[-14,-31],[-181,-88],[-231,-80],[-115,-61],[-291,-104],[-237,-105],[-92,-52],[-122,-95],[-42,-23],[-51,-9],[-60,4],[-54,14],[-72,35],[-65,39],[-21,7],[13,-19],[126,-132],[-14,-25],[-232,-27],[-103,-23],[-53,-6],[-38,4],[-36,-2],[-36,-10],[-2,-10],[32,-11],[92,-9],[206,30],[33,-2],[52,-15],[3,-13],[-55,-42],[-166,-50],[21,-2],[48,-18],[-1,-16],[-52,-38],[-25,-12],[-160,-35],[-70,-8],[-62,4],[-281,77],[-99,11],[-94,19],[-69,-3],[-74,-22],[33,-12],[136,-21],[114,-4],[47,-9],[18,-14],[49,-51],[8,-27],[-11,-25],[-15,-18],[-18,-10],[-30,-5],[-111,3],[-41,-6],[-48,-15],[-61,-6],[-109,3],[-128,-22],[-67,-4],[-76,10],[-81,24],[-86,12],[-145,11],[12,-14],[51,-6],[104,-37],[50,-51],[47,-8],[96,-42],[69,-6],[72,-14],[102,18],[68,-3],[-14,-102],[-30,-10],[-164,0],[-79,15],[-34,15],[-76,17],[-68,-10],[-62,2],[-42,-10],[-67,1],[-174,-18],[-92,0],[-68,11],[-79,4],[-90,-4],[7,-12],[38,-4],[55,-19],[52,-29],[43,-13],[51,7],[52,14],[190,23],[84,3],[75,-10],[49,-12],[35,-15],[44,-40],[109,-5],[84,-13],[133,-58],[37,-4],[15,-15],[-28,-38],[-4,-22],[-92,-44],[-144,-12],[-158,4],[-113,-5],[-12,-6],[78,-11],[180,-51],[69,-28],[13,-16],[-100,-61],[-87,-122],[-29,-10],[-30,-3],[-77,2],[-98,-30],[-74,-6],[-134,11],[-154,-1],[-13,-19],[-7,-38],[1,-57],[9,-76],[-8,-56],[-26,-35],[-32,-26],[-58,-25],[-60,-16],[-44,-5],[-75,-1],[-213,-18],[-105,1],[-81,8],[-83,25],[-140,71],[-40,16],[-38,9],[1,-15],[42,-40],[35,-26],[28,-11],[-7,-12],[-62,-20],[-67,-8],[-81,0],[-2,-7],[27,-21],[35,-19],[24,-6],[61,6],[72,24],[44,8],[89,-6],[35,-9],[110,-54],[16,-2],[82,27],[118,1],[44,-21],[16,-43],[2,-34],[-12,-26],[27,-25],[67,-25],[52,-6],[37,14],[56,35],[24,8],[23,-2],[34,-25],[46,-48],[5,-56],[-38,-64],[-46,-42],[-180,-69],[-55,-27],[-43,-28],[-63,-26],[-123,-34],[-64,-6],[-140,-37],[-31,-2],[-45,6],[-9,18],[11,32],[15,30],[19,27],[0,23],[-39,35],[-28,16],[-27,9],[-54,-5],[-30,-10],[-33,-2],[-35,6],[-29,15],[-59,63],[-22,8],[-29,-2],[-25,9],[-23,20],[-38,19],[10,-15],[38,-35],[26,-36],[15,-35],[-7,-27],[-321,-16],[-138,8],[-28,25],[-66,103],[-14,-183],[-241,-30],[-56,5],[-93,20],[-121,50],[-50,33],[-20,32],[-15,18],[-9,3],[-30,-39],[-33,-81],[-83,21],[-104,20],[-38,80],[-2,-115],[-169,15],[-81,-4],[-23,100],[-4,112],[-33,-71],[14,-59],[5,-73],[-72,21],[-157,10],[-56,10],[7,96],[13,97],[202,96],[60,45],[44,18],[69,12],[89,7],[60,-6],[70,6],[82,17],[59,5],[11,6],[-17,9],[-63,62],[-23,14],[-23,6],[-45,3],[-45,27],[-25,24],[-28,32],[-43,62],[-44,69],[22,37],[72,30],[72,21],[73,11],[60,0],[73,-16],[103,-32],[59,-36],[74,-76],[49,-61],[39,-27],[177,-50],[59,-8],[70,4],[143,13],[70,14],[31,16],[16,23],[21,18],[63,41],[96,85],[54,68],[12,22],[11,28],[9,32],[-30,-17],[-167,-167],[-35,-30],[-97,-51],[-42,-8],[-66,2],[-89,23],[-104,-36],[-63,9],[-56,25],[0,118],[-71,95],[78,48],[65,29],[115,77],[26,1],[84,-12],[-46,17],[-45,26],[-100,-7],[35,166],[-67,-124],[-68,-65],[-42,-33],[-46,-18],[-176,-17],[43,61],[40,90],[-42,-34],[-99,-50],[-74,-27],[-61,-14],[-118,4],[-59,25],[17,62],[0,77],[36,35],[54,46],[59,61],[40,63],[158,29],[153,11],[128,34],[63,6],[60,-16],[244,-26],[100,-20],[44,-15],[33,-5],[34,22],[44,21],[152,-2],[42,3],[39,10],[47,20],[56,30],[8,15],[-38,-1],[-39,-8],[-58,-21],[-56,-12],[-57,2],[-115,19],[-200,3],[-102,8],[-47,9],[-27,12],[-23,19],[-20,25],[10,17],[41,10],[35,2],[57,-14],[63,-23],[69,-3],[-24,21],[-88,42],[-60,36],[-51,44],[-40,43],[-87,68],[-70,68],[-50,30],[-52,15],[-160,18],[-32,12],[-76,59],[-20,100],[-34,61],[32,77],[54,35],[318,-27],[135,4],[172,-10],[92,-19],[106,-47],[94,-53],[91,-36],[83,-48],[91,-73],[54,-34],[47,-21],[62,-19],[118,-23],[103,-7],[53,3],[57,16],[41,20],[-45,6],[-119,-3],[-82,11],[-47,23],[-50,31],[-79,59],[-60,39],[-131,63],[-97,62],[-78,60],[-7,25],[56,18],[69,13],[432,40],[258,48],[105,56],[12,13],[346,78],[244,29],[94,5],[85,13],[3,7],[-74,11],[-75,5],[-171,0],[-152,9],[-46,18],[10,28],[14,25],[46,40],[49,31],[209,88],[140,38],[41,25],[-302,-57],[-106,-41],[-106,-62],[-55,-19],[-39,5],[-35,-6],[-31,-16],[-25,-30],[-21,-44],[-19,-30],[-17,-16],[-43,-23],[-104,-44],[-242,-63],[-82,-16],[-70,-3],[-226,-35],[-68,-2],[-76,11],[33,31],[119,56],[32,25],[-77,-5],[-78,-16],[-172,-12],[-69,-23],[-66,-42],[-53,-26],[-40,-11],[-55,-6],[-202,-3],[-45,2],[-116,32],[-103,-11],[-43,2],[-78,23],[-23,14],[3,20],[45,37],[53,35],[170,78],[109,37],[158,31],[369,35],[17,26],[-374,-29],[-318,-36],[-52,-14],[-74,-35],[-235,-129],[-70,-33],[-106,-7],[-81,11],[-63,16],[-109,38],[-83,21],[-39,13],[-23,14],[-18,17],[-15,18],[27,16],[210,33],[284,-6],[128,7],[125,20],[186,51],[201,71],[40,22],[-74,5],[-54,-5],[-131,-26],[-208,-68],[-181,-24],[-448,-13],[-142,-19],[-63,4],[-47,19],[-52,34],[9,28],[107,31],[84,7],[15,7],[-119,30],[-11,15],[69,34],[148,50],[76,15],[137,10],[142,-5],[5,9],[-140,19],[-105,4],[-138,-14],[-369,-80],[-31,2],[-53,14],[15,20],[197,85],[6,13],[-141,-2],[-42,4],[-40,10],[-58,-9],[-75,-27],[-52,-12],[-31,4],[-78,33],[10,27],[62,35],[57,25],[77,23],[126,29],[90,10],[148,0],[70,13],[62,22],[78,36],[86,25],[140,20],[118,-6],[65,-18],[51,-31],[56,-24],[5,19],[46,24],[58,10],[69,-3],[61,-12],[79,-28],[63,-13],[30,0],[38,16],[99,1],[-2,6],[-32,17],[-40,12],[-352,82],[-10,18],[119,17],[74,21],[35,5],[87,43],[57,22],[105,25],[43,-7],[53,-22],[51,-14],[151,-13],[65,-14],[115,-81],[46,-26],[66,-27],[39,-10],[77,-6],[8,15],[-92,38],[-25,22],[11,18],[20,10],[28,1],[72,-17],[192,-56],[288,-67],[110,-15],[68,-24],[62,-29],[61,-20],[11,2],[-57,45],[-139,55],[-371,94],[-147,50],[-72,33],[-53,34],[-1,19],[50,21],[68,17],[85,7],[11,7],[-78,26],[-45,22],[1,16],[93,12],[57,-4],[108,-28],[91,-13],[15,8],[-94,75],[-9,17],[14,9],[33,10],[98,-5],[161,-37],[290,-18],[79,3],[-12,8],[-115,23],[-121,30],[-53,18],[-39,24],[-47,21],[-4,9],[75,16],[196,-3],[182,-24],[155,9],[97,-6],[39,-8],[70,-26],[224,-96],[23,-15],[26,-23],[27,-32],[38,-8],[74,21],[49,21],[-21,20],[-124,46],[-28,20],[-61,34],[-139,59],[-37,28],[-23,24],[383,22],[370,-20],[60,-14],[40,-19],[38,-30],[60,-30],[119,-46],[171,-29],[-33,20],[-127,51],[-58,35],[1,23],[10,18],[20,13],[144,47],[206,15],[24,-3],[161,-73],[76,-30],[53,-12],[2,5],[-74,34],[-56,18],[-6,12],[94,35],[59,9],[251,10],[28,-3],[24,-10],[59,-39],[22,-5]],[[23476,96654],[70,-22],[76,11],[81,2],[182,-10],[120,6],[31,-3],[47,-14],[25,-18],[23,-28],[-59,-18],[-50,-89],[-7,-5],[-54,-1],[-27,-7],[-159,13],[-438,5],[-19,11],[-58,53],[-4,21],[11,24],[12,16],[14,8],[128,39],[55,6]],[[24016,95061],[18,-43],[3,-18],[1,-37],[-8,-49],[-5,-9],[-7,-4],[-4,-13],[0,-21],[-7,-12],[-15,-5],[-99,-10],[-62,2],[-91,-6],[-45,3],[-30,11],[-43,22],[-91,55],[-45,2],[-116,19],[-63,58],[-24,11],[-25,-18],[-7,4],[-6,12],[-7,20],[-12,10],[-48,-5],[-9,6],[-2,18],[0,15],[9,23],[51,65],[25,5],[31,12],[17,35],[-2,33],[48,49],[28,15],[51,34],[172,54],[48,4],[63,-4],[62,-17],[47,-28],[97,-70],[44,-43],[23,-43],[21,-25],[26,-54],[-9,-21],[-6,-28],[3,-14]],[[22221,94438],[235,-123],[33,10],[71,6],[73,19],[102,15],[63,27],[26,8],[45,5],[25,0],[70,-15],[29,-11],[15,-11],[16,-19],[28,-49],[4,-18],[-1,-5],[-26,-30],[-17,-13],[-36,-12],[-30,-4],[-27,-21],[-29,5],[-9,-19],[4,-12],[8,-6],[15,1],[17,8],[33,-4],[18,-13],[15,-21],[-11,-20],[-59,-27],[-87,-31],[-105,-98],[-56,-41],[-11,-13],[-6,-13],[2,-24],[2,-10],[16,-4],[51,34],[34,16],[33,9],[60,0],[25,-5],[44,-20],[41,-32],[9,-11],[-4,-11],[-17,-12],[-2,-8],[39,-15],[43,-43],[3,-26],[-19,-26],[-5,-18],[9,-8],[21,5],[51,29],[55,15],[22,-2],[14,-6],[14,-40],[12,-45],[2,-37],[-9,-31],[-13,-23],[-33,-30],[-30,-11],[-16,0],[2,-5],[35,-25],[15,-19],[6,-19],[-2,-18],[-5,-16],[-41,-57],[2,-9],[12,-3],[26,-33],[3,-78],[-93,-24],[-22,-18],[-25,-28],[-29,-22],[-67,-22],[-33,-3],[-167,19],[-17,11],[-11,19],[-7,29],[-1,22],[2,16],[0,9],[-5,3],[-19,-16],[-19,-29],[11,-33],[52,-91],[10,-39],[2,-16],[-3,-13],[-59,-53],[-34,-18],[-36,-9],[-33,7],[-32,22],[-24,10],[-51,-1],[-15,11],[-15,22],[-35,76],[-50,54],[-42,61],[-108,89],[-56,53],[-75,86],[-31,19],[-26,8],[-51,6],[-12,11],[-19,29],[-32,22],[-11,3],[-19,-6],[-50,-20],[-63,22],[-14,15],[-8,25],[-8,14],[-21,13],[-18,31],[-119,63],[-71,72],[-14,26],[-2,10],[7,35],[17,39],[21,39],[14,16],[46,33],[37,8],[51,-4],[27,-8],[24,-22],[11,-26],[12,-18],[38,-19],[20,-15],[30,-36],[24,-43],[21,-14],[52,-5],[53,7],[114,27],[5,4],[7,16],[13,98],[8,0],[39,-45],[11,-5],[16,9],[10,23],[-1,10],[-24,53],[-15,23],[-13,15],[-14,4],[-31,-4],[-24,10],[-5,15],[4,19],[13,21],[14,12],[27,6],[32,-6],[44,-25],[28,-6],[40,7],[-51,15],[-70,58],[-30,11],[-36,-25],[-25,-9],[-47,-12],[-37,-2],[-156,89],[-9,9],[-11,23],[1,11],[16,17],[38,22],[58,13],[39,3],[34,-17],[49,-44],[43,-26],[4,9],[-8,26],[-20,38],[-14,10],[-34,11],[-33,26],[-15,20],[-8,20],[-1,22],[7,15],[13,8],[120,22],[83,-24],[53,-4],[22,30],[-7,6],[-28,-8],[-32,0],[-19,17],[-1,9],[25,23],[37,10]],[[26411,89435],[10,-7],[11,4],[20,29],[44,82],[13,7],[18,-1],[65,-52],[24,-30],[13,-41],[14,-16],[51,-21],[49,-7],[65,-21],[23,-16],[51,-78],[6,-5],[59,-32],[89,-72],[23,-10],[87,-24],[32,-17],[30,-27],[34,-49],[39,-77],[31,-123],[2,-24],[-3,-14],[-12,-16],[-50,-50],[4,-9],[48,4],[105,31],[65,-23],[22,-3],[5,1],[24,39],[25,-6],[38,-38],[24,-30],[10,-23],[-2,-13],[-25,-5],[60,-22],[53,-35],[-11,-23],[-57,-51],[-57,-45],[-67,-66],[-17,-11],[-9,0],[-37,12],[-54,32],[-164,73],[-51,15],[-64,9],[-9,17],[-16,110],[-29,19],[-99,23],[-29,13],[-2,22],[7,38],[-14,19],[-33,-1],[-33,-8],[-53,-26],[-25,-24],[-9,-25],[-6,-55],[-7,-26],[-18,-35],[-82,-88],[-33,-27],[-33,-7],[-13,-9],[-22,-32],[-33,-80],[-14,-23],[-21,-24],[-46,-36],[-46,-29],[-77,-33],[-42,-11],[-29,11],[-20,76],[-41,223],[-7,15],[-8,9],[-10,4],[-138,-29],[-76,3],[-75,-50],[-19,-3],[-39,1],[-27,8],[-7,6],[-5,21],[2,23],[9,25],[34,66],[28,41],[13,13],[129,74],[31,24],[16,25],[0,25],[-6,33],[-23,80],[-5,73],[0,36],[8,55],[33,135],[11,66],[20,234],[11,67],[16,62],[15,37],[42,73],[31,30],[41,20],[8,-2],[8,-9],[15,-31],[56,-29],[18,-28],[12,-31],[7,-40],[-7,-18],[-26,-27],[-5,-11],[1,-9],[51,-42],[38,-102]],[[22861,95890],[3,-26],[-4,-19],[-9,-14],[-1,-17],[9,-18],[37,-45],[12,-25],[2,-25],[-2,-17],[-23,-32],[-10,-43],[-1,-22],[14,-35],[0,-16],[-26,-28],[-54,-25],[8,-13],[117,-30],[9,-7],[0,-70],[20,-76],[-8,-1],[-28,24],[-52,28],[-63,-53],[7,-90],[42,-40],[12,-23],[-4,-13],[-35,-6],[-12,2],[-35,19],[-21,27],[-7,-1],[-6,-13],[4,-14],[24,-24],[11,-29],[-11,-8],[-36,-8],[-48,0],[-76,-13],[-38,-2],[-36,7],[-49,1],[-41,-3],[-24,6],[-23,14],[-26,-3],[-57,-35],[-89,11],[-80,3],[-16,11],[-18,23],[-35,70],[6,18],[86,9],[2,6],[-61,25],[-70,18],[-32,15],[7,27],[-2,7],[120,32],[88,62],[54,25],[4,12],[46,13],[106,7],[4,18],[-200,-10],[-274,-35],[-85,-18],[-71,10],[-300,-54],[-13,0],[-31,17],[-27,33],[19,22],[88,43],[44,37],[-5,21],[35,35],[56,5],[96,-29],[49,-29],[45,-14],[39,3],[41,20],[-11,3],[-69,-11],[-8,3],[-35,33],[-15,20],[-10,21],[-1,15],[21,28],[-79,9],[-29,19],[-14,24],[3,11],[25,28],[67,39],[-8,10],[-97,-1],[-22,5],[-42,24],[9,27],[39,39],[30,23],[19,7],[31,0],[73,-15],[21,-8],[56,-38],[14,-21],[-2,-21],[11,-15],[43,-22],[186,-115],[35,-27],[23,-12],[43,-9],[26,2],[20,8],[3,10],[-80,40],[-20,22],[-17,29],[7,9],[24,4],[58,-4],[69,8],[-76,12],[-50,16],[-52,1],[-64,26],[0,8],[16,9],[87,11],[17,5],[1,7],[-29,18],[-26,9],[-132,21],[-47,24],[-15,11],[-4,11],[17,28],[71,35],[51,17],[89,12],[71,-1],[40,-5],[94,-59],[45,-39],[77,7],[-22,40],[-15,45],[23,17],[64,29],[51,-15],[66,-40],[15,-13],[75,-25],[44,-8],[23,-13],[7,-17]],[[21270,97531],[65,-11],[77,-37],[73,-79],[4,-10],[0,-13],[-3,-16],[-9,-21],[-13,-12],[37,-15],[4,-8],[-3,-17],[4,-12],[23,12],[19,19],[5,12],[4,32],[57,17],[60,23],[28,5],[47,-5],[112,-56],[43,-5],[16,-7],[14,-13],[1,-14],[-23,-32],[-9,-20],[6,-13],[58,-11],[134,22],[117,-53],[65,-63],[47,-21],[8,-11],[-14,-11],[-13,-29],[-39,-22],[-8,-10],[21,-26],[1,-17],[-2,-22],[7,-13],[53,-14],[119,-93],[22,-26],[14,-32],[1,-11],[-17,-18],[-19,-51],[-10,-12],[-49,-10],[-88,-9],[-83,-17],[-88,22],[-87,34],[-26,22],[-22,28],[-5,10],[-9,44],[-4,9],[-37,24],[-32,37],[-63,3],[-147,38],[-63,8],[-64,-2],[-89,-15],[-17,4],[-15,11],[-14,18],[-3,14],[14,23],[-262,-29],[-75,-35],[-105,6],[-53,14],[-69,33],[-32,29],[-30,38],[-3,29],[24,20],[25,11],[26,4],[142,-23],[125,-11],[54,11],[25,32],[-30,16],[-120,7],[26,17],[101,16],[53,26],[-10,8],[-30,10],[-137,-2],[-48,9],[-3,9],[11,10],[77,51],[-3,10],[-33,16],[-29,22],[-11,3],[-68,-20],[-95,-75],[-22,-11],[-22,1],[-21,12],[1,16],[21,19],[44,58],[-4,21],[-42,14],[-114,-10],[-63,-1],[-9,17],[-3,30],[3,29],[15,45],[22,35],[13,12],[151,-7],[245,21],[71,2],[78,-21]],[[24476,98578],[36,-48],[134,-115],[61,-42],[103,-51],[13,-19],[1,-8],[-3,-28],[30,-10],[88,-16],[99,-28],[18,1],[34,17],[42,5],[54,-4],[26,-12],[19,-18],[8,-13],[1,-10],[-19,-19],[2,-8],[12,-8],[2,-11],[-20,-41],[5,-15],[50,-37],[45,-19],[89,-20],[58,2],[36,-13],[1,8],[-17,23],[-34,34],[-65,18],[-9,19],[-5,34],[6,22],[33,18],[27,6],[84,1],[45,-8],[80,-25],[8,-14],[4,-27],[3,-54],[-2,-12],[-67,-30],[-15,-21],[17,-6],[58,-5],[90,-19],[35,-2],[35,-44],[27,-41],[-20,-52],[-26,-82],[-21,-19],[-21,-28],[15,-6],[88,12],[18,4],[59,28],[86,-7],[29,-7],[15,-10],[26,-31],[22,-41],[16,3],[40,51],[15,12],[20,12],[9,-2],[40,-47],[91,-82],[31,-34],[6,-26],[-39,-29],[-30,-15],[-223,-62],[-99,-35],[-50,-28],[-25,-9],[-54,5],[-12,-5],[-16,-44],[-18,-19],[-46,-30],[-65,-55],[-38,-24],[-68,18],[-17,25],[-10,58],[-1,24],[2,13],[9,20],[29,49],[-3,6],[-14,-5],[-45,-24],[-18,-13],[-16,-23],[-8,-38],[7,-70],[-6,-28],[-18,-14],[7,-11],[53,-15],[9,-7],[6,-12],[3,-17],[-3,-16],[-16,-25],[-30,-10],[-38,11],[-82,61],[-36,-3],[-9,-7],[8,-22],[25,-48],[5,-41],[-12,-33],[-23,-53],[-16,-29],[-9,-3],[-41,-1],[-35,14],[-104,93],[-51,39],[-76,78],[-19,15],[-12,4],[-10,-33],[20,-31],[68,-72],[41,-53],[29,-43],[4,-19],[-9,-7],[-15,4],[-20,16],[-62,25],[-26,15],[-16,16],[-31,13],[-45,8],[-45,2],[-45,-5],[-8,-8],[50,-23],[18,-12],[13,-17],[9,-19],[-17,-13],[-63,-7],[-84,5],[-137,17],[-136,28],[-125,44],[-91,44],[-36,23],[-11,17],[34,16],[119,19],[119,13],[-19,11],[-217,25],[-71,4],[-38,-6],[-44,4],[-34,20],[-45,37],[-23,25],[3,10],[17,5],[99,-4],[13,3],[-49,19],[-157,37],[-59,33],[-11,12],[-4,13],[1,12],[59,25],[183,59],[62,9],[63,1],[44,16],[38,56],[189,20],[146,25],[12,7],[-109,-4],[-155,5],[-65,37],[-45,7],[-49,0],[-57,-12],[-98,-35],[-47,-9],[-107,-36],[-29,3],[-15,4],[-5,7],[19,24],[28,17],[-5,5],[-42,4],[-48,-1],[-34,-6],[-122,-32],[-55,-23],[-17,-3],[-59,38],[-95,20],[-21,16],[20,63],[27,13],[73,11],[217,57],[13,11],[20,29],[-50,-7],[-109,-27],[-90,-14],[-71,0],[-51,4],[-33,8],[-40,17],[-128,83],[-36,39],[-4,36],[-9,26],[-38,65],[276,-40],[107,-8],[208,-2],[10,3],[3,11],[-4,17],[2,13],[7,9],[77,23],[12,8],[-91,4],[-168,-39],[-59,0],[-67,56],[-71,-10],[-34,4],[-53,14],[-26,12],[-16,15],[-7,13],[2,10],[14,12],[62,16],[28,1],[73,-10],[55,1],[-18,17],[-79,43],[-70,47],[5,80],[57,17],[60,2],[58,-20],[77,-2],[56,-23],[37,-44],[44,1],[69,-8],[155,1],[-28,15],[-49,14],[-109,18],[-53,63],[-114,33],[-88,17],[1,15],[67,79],[80,28],[128,-10],[85,14],[108,28],[106,-13],[28,2],[16,8],[14,17],[0,15],[-14,14],[-34,17],[-135,2],[-60,7],[-23,9],[-7,14],[-4,14],[0,15],[4,9],[11,5],[33,6],[126,0],[76,8],[83,-10],[173,-39],[55,-20],[60,-34],[31,-30]],[[23807,96147],[52,-5],[44,8],[38,-2],[56,-23],[53,-36],[40,-16],[13,-8],[5,-9],[6,-27],[0,-12],[-3,-10],[-18,-25],[-15,-30],[-30,-27],[-16,-20],[-14,-26],[31,15],[119,85],[77,-10],[117,7],[141,35],[67,5],[67,-3],[50,-10],[108,-47],[37,-22],[14,-16],[3,-11],[-22,-18],[-67,11],[-111,10],[-20,5],[-18,0],[-12,-6],[8,-25],[22,-5],[133,-6],[436,-78],[19,-25],[-5,-11],[-16,-12],[-31,-17],[-252,-18],[-143,16],[-120,26],[-41,-6],[35,-35],[72,-10],[61,-21],[25,-17],[128,-13],[21,-13],[40,-34],[33,-3],[33,-24],[27,-41],[13,-5],[39,7],[64,-36],[21,-19],[0,-14],[-15,-22],[-29,-31],[-73,-35],[-6,-11],[86,4],[16,-5],[101,-63],[13,-1],[8,6],[10,23],[-4,21],[-13,28],[4,21],[19,13],[19,7],[19,0],[21,-8],[102,-77],[131,37],[24,-17],[20,-30],[9,-5],[49,61],[30,15],[123,-73],[75,-16],[30,-15],[55,-18],[79,-6],[13,27],[-45,35],[26,15],[109,29],[58,-4],[107,42],[66,5],[40,0],[133,63],[31,10],[23,22],[52,-3],[141,-36],[40,3],[150,36],[56,8],[55,-1],[141,-21],[105,-22],[33,-12],[-12,-29],[6,-9],[13,-7],[35,-8],[131,-1],[57,-7],[46,-28],[10,-11],[-1,-11],[-45,-30],[7,-7],[45,-6],[100,-4],[22,-7],[21,-37],[21,-52],[0,-20],[-35,-35],[-95,-46],[-106,-39],[-7,-10],[34,-18],[35,-9],[27,2],[85,18],[19,-1],[38,-18],[18,-17],[17,-24],[-30,-22],[-121,-27],[-72,36],[-24,7],[-16,-3],[9,-15],[35,-28],[11,-18],[-12,-9],[-6,-18],[1,-26],[-3,-27],[-11,-42],[-5,-2],[-263,-8],[-32,-8],[-74,-29],[-56,-15],[-36,-2],[-36,5],[-96,31],[-64,-6],[-25,3],[-55,20],[-13,10],[-22,27],[-16,37],[1,22],[7,32],[-4,17],[-16,0],[-17,6],[-52,33],[-32,10],[-6,-6],[10,-25],[6,-8],[34,-19],[6,-21],[-14,-55],[-5,-8],[-34,-40],[-25,-12],[-68,-1],[-105,-28],[-50,-4],[-67,7],[-42,12],[-27,15],[-27,21],[-13,2],[-7,-46],[-13,-6],[-23,1],[-35,14],[-28,33],[-9,0],[-4,-19],[-7,-13],[-8,-6],[-74,-20],[-41,0],[-43,23],[-28,-2],[-36,-13],[-87,24],[-21,1],[18,-39],[-29,-6],[-62,1],[-103,13],[-64,-19],[-114,11],[-116,3],[-22,9],[-15,18],[-1,16],[6,23],[17,33],[28,45],[10,23],[-26,11],[-15,15],[-13,1],[-41,-17],[-27,-50],[-20,-14],[-9,12],[-7,30],[-9,15],[-11,-1],[-11,-8],[-11,-15],[-15,-6],[-22,4],[-7,-7],[6,-20],[2,-18],[-2,-16],[-18,-17],[-52,-24],[-31,-7],[-79,-4],[-48,7],[-96,29],[-53,1],[-64,48],[-51,11],[3,18],[22,32],[-1,9],[-69,-47],[-10,-15],[9,-34],[-10,-3],[-47,13],[-47,-10],[-12,3],[-32,25],[-57,26],[-25,28],[-39,90],[-20,59],[2,12],[29,16],[-4,13],[-36,34],[-39,28],[-12,19],[-5,20],[-5,28],[-1,21],[5,13],[22,42],[62,76],[8,14],[3,13],[-8,40],[-12,40],[-12,29],[-34,39],[-46,42],[-66,73],[-48,58],[-58,80],[-28,7],[-32,-3],[-70,-28],[-24,-13],[-5,-9],[-52,-2],[-148,7],[-56,9],[-42,-3],[-72,-20],[-77,4],[-48,56],[-110,31],[-33,17],[-22,24],[7,15],[63,14],[26,15],[12,12],[-62,-10],[-27,1],[-186,77],[-57,14],[-10,7],[-4,9],[0,11],[5,17],[55,-22],[25,-1],[39,6],[14,14],[-9,7],[-64,26],[-30,19],[-12,15],[12,20],[3,13],[21,8],[37,1],[48,10],[88,26],[59,10],[59,-2],[142,-27],[142,-34],[89,-26]],[[23276,97079],[66,-15],[113,7],[41,-11],[106,-39],[32,-23],[8,-17],[0,-9],[-35,-19],[-71,-28],[-17,-22],[63,-27],[32,-24],[15,-17],[0,-18],[-42,-48],[-31,-14],[-48,2],[-23,-5],[-60,-22],[-95,-21],[-129,-9],[-35,-13],[-65,-22],[-43,-3],[-14,12],[-6,18],[3,13],[9,15],[-21,15],[-92,28],[-54,39],[-8,13],[-2,11],[119,7],[52,8],[23,13],[4,7],[-23,3],[-82,26],[-138,16],[-7,19],[-57,36],[-6,35],[-12,10],[-39,15],[-6,5],[-12,22],[-1,12],[2,12],[71,23],[-10,16],[-54,61],[-14,34],[2,13],[34,18],[47,0],[124,-5],[59,-8],[59,-14],[65,-22],[97,-19],[31,-12],[58,-41],[7,-12],[-4,-13],[14,-12]],[[24119,94562],[109,-27],[53,-18],[26,-12],[50,-40],[25,-12],[97,24],[68,8],[151,-10],[127,-34],[48,-24],[28,-23],[-7,-26],[-24,-41],[-27,-38],[-56,-61],[-47,-31],[-11,-14],[-8,-21],[-18,-29],[-50,-65],[-14,-11],[-71,-28],[25,-12],[11,-11],[-10,-29],[-45,-69],[-46,-63],[-33,-39],[-59,-55],[-32,-15],[-44,-5],[-263,48],[-66,-1],[-176,-25],[17,-12],[64,-19],[41,-20],[55,-63],[8,-16],[3,-18],[-2,-36],[-4,-9],[-87,-97],[-29,-71],[-18,-58],[-29,-16],[-98,24],[-32,0],[-110,-17],[-52,8],[8,88],[-8,95],[-16,90],[-82,161],[-9,29],[-6,31],[-3,33],[0,33],[6,67],[0,34],[-4,88],[-11,132],[-1,47],[1,19],[3,14],[18,19],[34,13],[17,2],[108,-40],[50,-13],[33,0],[2,5],[-30,8],[-27,18],[-46,51],[-20,44],[-5,14],[-1,16],[3,15],[6,15],[23,22],[18,10],[68,26],[69,15],[151,11],[42,-8],[66,29],[38,6],[67,-10]],[[22933,91959],[9,-7],[16,6],[12,19],[8,4],[12,-4],[39,-34],[29,-35],[32,-25],[50,-23],[110,-73],[32,-49],[34,-77],[31,-58],[26,-41],[29,-32],[46,-36],[41,26],[18,7],[15,-11],[14,-27],[-7,-12],[-18,-16],[-29,-17],[-42,-2],[-20,-5],[-32,-28],[-26,-35],[-36,-11],[-67,-57],[-37,-22],[-55,-5],[-114,44],[-71,-6],[-58,9],[-64,48],[-51,26],[-97,39],[-6,6],[-4,13],[-2,20],[-5,14],[-6,7],[-16,-1],[-15,-14],[-30,-11],[-46,2],[-20,9],[-15,12],[-8,15],[-1,17],[-5,13],[-7,9],[-16,0],[-26,-8],[-10,-11],[5,-13],[-4,-8],[-46,0],[-18,8],[-34,24],[-15,24],[-19,43],[2,11],[12,26],[16,19],[103,10],[48,11],[53,29],[61,52],[13,15],[1,11],[-4,12],[-19,30],[-7,20],[6,9],[25,1],[-13,12],[-11,16],[-4,10],[1,16],[19,4],[24,-8],[47,-47],[18,-9],[32,-7],[-34,32],[-35,67],[-4,24],[1,13],[9,36],[8,14],[11,10],[33,21],[53,14],[28,2],[27,-11],[24,-23],[54,-37],[8,-15],[-1,-7],[-20,-10],[-3,-9],[8,-14]],[[33026,78308],[9,-4],[38,28],[20,-1],[-1,-20],[-32,-22],[-15,-17],[18,-15],[0,-10],[-22,-25],[-11,-27],[9,-26],[36,26],[14,0],[20,-6],[19,8],[11,13],[63,99],[3,13],[-68,-20],[-8,13],[45,61],[-4,31],[23,51],[20,30],[15,16],[22,16],[15,-24],[5,-43],[37,6],[37,-9],[26,-18],[5,-10],[0,-17],[-9,-29],[-15,-25],[30,-31],[-4,-13],[-48,-36],[-28,-35],[-25,-44],[-50,-51],[-80,-36],[-25,0],[-30,11],[-30,-3],[-29,-13],[-29,1],[-13,-7],[-14,1],[-11,14],[-23,41],[-12,27],[-12,130],[4,68],[20,63],[29,43],[17,34],[72,200],[14,45],[17,39],[31,39],[40,64],[12,14],[23,6],[23,-4],[-7,-23],[2,-23],[26,-89],[0,-18],[-15,-71],[-27,-116],[-7,-63],[4,-19],[-11,-32],[-12,-25],[-47,-45],[-24,-11],[-22,-17],[-54,-58]],[[29247,77766],[40,22],[82,85],[61,30],[80,89],[57,17],[11,20],[9,73],[6,26],[26,73],[33,61],[26,84],[47,54],[71,45],[66,98],[36,30],[35,22],[15,40],[21,23],[58,46],[64,13],[64,38],[50,21],[30,36],[44,19],[132,104],[36,49],[48,99],[41,51],[14,54],[60,87],[62,116],[30,83],[46,45],[89,132],[47,52],[20,6],[53,47],[34,48],[54,49],[97,60],[91,72],[123,63],[144,93],[117,50],[82,7],[100,24],[35,-3],[156,-40],[74,-50],[85,-106],[13,-27],[2,-39],[-45,19],[-40,1],[28,-22],[47,-65],[-3,-81],[-26,-73],[-79,-36],[-20,-29],[-16,-47],[-16,-18],[-39,-22],[-21,-30],[-62,-49],[-28,-6],[-32,11],[-78,47],[-47,44],[-24,-24],[-20,-25],[-46,8],[-21,-11],[-34,12],[-71,-56],[20,-6],[56,32],[19,-4],[42,-41],[100,-45],[26,-29],[25,-95],[16,-15],[35,10],[39,47],[32,25],[63,20],[-13,-31],[48,3],[48,-42],[-18,-30],[-24,-59],[-16,-116],[-49,-78],[-64,-76],[16,-19],[19,-11],[41,22],[28,-1],[31,-15],[-10,-59],[-11,-40],[7,-38],[18,-71],[25,-16],[10,-92],[14,-50],[-2,-40],[25,-25],[4,-41],[92,-12],[19,-16],[63,-15],[12,-12],[12,-22],[-63,-49],[51,-36],[47,-59],[38,12],[16,-2],[42,-36],[12,-19],[6,-16],[21,4],[31,14],[54,-4],[59,-20],[-5,-32],[-9,-21],[46,7],[28,-23],[10,11],[7,14],[57,38],[73,79],[9,-9],[3,-30],[10,-49],[28,-34],[33,-8],[45,26],[18,-22],[22,-43],[20,-57],[-1,-20],[-26,-17],[-24,-26],[99,-10],[10,-11],[10,-22],[-10,-22],[-9,-11],[-18,13],[-33,-12],[-28,-29],[-31,-16],[-20,-2],[-22,-14],[-20,-20],[-20,-6],[-65,-52],[-66,-33],[-69,-54],[-71,-34],[-73,-40],[-16,-4],[-19,2],[-41,-40],[-21,6],[-21,-7],[-25,9],[-16,16],[13,-42],[3,-39],[-6,-16],[-12,-20],[-42,3],[-16,14],[-20,21],[-9,33],[-21,24],[-13,-33],[1,-25],[-16,-33],[-18,57],[-34,-21],[-14,-61],[7,-17],[10,-46],[-16,-25],[-12,7],[-25,-68],[-31,-25],[-31,-69],[-37,-53],[-11,-36],[-62,-81],[-24,2],[-17,-2],[-26,-34],[-5,-68],[-11,9],[-12,-2],[-6,-22],[-9,-3],[-23,20],[-27,-11],[-21,15],[-27,100],[-14,35],[-26,12],[-6,-22],[-10,-20],[-25,41],[-18,153],[0,37],[26,129],[64,116],[-21,4],[-56,-81],[6,20],[9,20],[19,33],[29,31],[39,17],[27,3],[18,17],[27,30],[5,16],[-24,-18],[-39,-18],[10,23],[10,13],[209,208],[42,34],[84,44],[12,28],[-12,19],[33,-17],[-3,-23],[-5,-18],[-2,-29],[3,-28],[34,-14],[27,-52],[-13,71],[25,40],[96,54],[80,6],[25,25],[-68,17],[-81,-9],[-50,19],[-70,-12],[-73,11],[-22,-15],[-19,-34],[-23,15],[-12,3],[-11,11],[24,58],[74,87],[46,75],[12,15],[10,31],[-24,-5],[-22,-12],[-15,34],[-27,47],[-2,-20],[13,-57],[-51,-101],[-34,-7],[-44,-47],[-62,-41],[-73,-78],[-95,-66],[-19,-1],[-43,55],[12,24],[11,34],[-11,-10],[-7,-14],[-25,-24],[21,-45],[-11,-17],[-30,-22],[-27,-32],[-25,-22],[-20,28],[-54,-35],[-46,-9],[-10,17],[-3,28],[-16,7],[-30,-8],[-11,15]],[[34594,81530],[-20,-58],[-14,-28],[-13,-9],[-28,-8],[-59,-9],[-25,-8],[-3,-39],[4,-20],[8,-16],[11,-4],[24,9],[9,-1],[7,-8],[6,-15],[3,-20],[0,-25],[-4,-31],[-20,-73],[-25,-40],[-33,-33],[-7,-12],[-5,-15],[-4,-48],[-16,-38],[-52,-96],[-20,-22],[0,-17],[-8,-46],[-16,-36],[-43,-85],[-10,-30],[-5,-24],[1,-33],[-2,-15],[-10,-28],[-14,-27],[-3,-13],[6,-23],[5,-8],[1,-22],[-4,-34],[18,22],[40,78],[31,47],[20,16],[15,21],[15,46],[20,44],[19,15],[9,-9],[7,-21],[-1,-28],[-10,-33],[0,-10],[24,24],[41,21],[15,-3],[30,-30],[26,3],[40,18],[7,-8],[-7,-27],[-15,-26],[-37,-36],[-90,-72],[-28,-49],[5,2],[20,21],[20,11],[21,2],[9,-7],[-3,-14],[-3,-37],[-54,-74],[13,3],[62,33],[39,-46],[52,16],[31,16],[0,-10],[6,-20],[0,-33],[3,-5],[15,11],[3,12],[-1,58],[5,6],[10,-9],[6,-15],[2,-42],[-7,-43],[-9,-39],[-23,-57],[3,-24],[-6,-27],[5,-1],[23,25],[1,10],[-2,24],[3,11],[19,26],[31,31],[11,4],[4,-7],[-2,-19],[10,5],[20,28],[18,16],[17,6],[18,19],[19,32],[20,27],[21,21],[9,2],[-3,-35],[4,-40],[1,-34],[4,-7],[17,36],[9,13],[11,6],[12,-3],[87,13],[27,-9],[30,-24],[37,-36],[14,-33],[3,-42],[-4,-29],[-27,-37],[-24,-24],[-14,-24],[-5,-25],[-5,-15],[-16,-20],[-72,-59],[17,-2],[41,13],[28,3],[1,-9],[-11,-16],[-21,-17],[-2,-8],[1,-11],[22,-12],[29,6],[24,-9],[-3,-14],[-19,-46],[-5,-28],[-26,-25],[-50,-37],[-13,-15],[3,-3],[46,28],[24,7],[14,0],[17,27],[26,9],[26,-17],[39,46],[14,6],[24,-5],[15,8],[26,32],[20,15],[4,-1],[4,-13],[2,-36],[-5,-32],[-6,-21],[-21,-45],[-13,-16],[-12,-6],[-21,2],[-9,-7],[-20,-35],[-35,-36],[-22,-14],[14,-20],[5,-37],[-8,-12],[-37,-12],[-2,-6],[-13,-8],[-31,-13],[21,-6],[39,9],[4,-6],[-5,-27],[-11,-27],[-46,-70],[0,-7],[7,-35],[9,-26],[11,-18],[26,-1],[19,8],[27,47],[62,146],[55,41],[45,45],[11,-9],[5,-11],[-2,-11],[-23,-37],[-12,-31],[-31,-94],[-12,-45],[-6,-47],[1,-81],[4,-14],[9,-19],[19,17],[31,40],[20,38],[15,63],[10,24],[10,-1],[10,-13],[2,-30],[8,-42],[6,-41],[-4,-46],[-5,-25],[-63,-186],[6,-33],[2,-20],[-2,-22],[-20,-89],[-19,-55],[-11,-24],[-12,-15],[-15,-5],[-13,8],[-11,21],[-10,11],[-9,1],[-17,-4],[-42,-45],[-9,-3],[-6,6],[-8,24],[6,120],[4,40],[-9,30],[9,52],[1,19],[-6,7],[-10,-4],[-17,-26],[-22,-47],[-23,-42],[-42,-57],[-18,-11],[-8,2],[-8,8],[-12,24],[1,22],[5,29],[17,68],[34,101],[28,72],[5,31],[-7,13],[-7,27],[-11,78],[-13,64],[-16,28],[-41,32],[-7,-8],[-4,-43],[-48,-124],[-8,-54],[-6,-20],[-9,-14],[-21,-17],[6,29],[22,64],[-3,6],[-28,-51],[-21,-29],[-26,-7],[-16,2],[-15,-8],[-65,-121],[-3,-41],[-11,-33],[-32,-60],[-17,-21],[-24,-4],[-21,11],[-15,-2],[-33,-19],[-38,-8],[-16,4],[-10,7],[-19,24],[-2,16],[1,10],[10,25],[22,32],[18,11],[45,16],[33,24],[25,35],[12,21],[47,110],[60,39],[29,31],[21,40],[3,14],[-30,-20],[-15,-5],[-25,7],[-11,14],[-34,-4],[-47,6],[-7,-10],[-6,-54],[-6,-28],[-7,-9],[-11,-6],[-21,-6],[-55,19],[-11,11],[-14,8],[-60,-18],[-13,2],[12,12],[60,40],[6,112],[-3,18],[-17,-16],[-28,-16],[-20,5],[-9,10],[-8,-9],[-19,-59],[-12,-7],[-17,-3],[-38,-21],[-73,-15],[-14,-15],[-49,5],[-145,33],[-52,-3],[-62,20],[-12,8],[-87,-3],[-26,4],[2,25],[-3,6],[-25,-27],[-23,-18],[-29,-15],[-91,-26],[-49,-6],[-28,18],[-11,19],[-17,59],[-12,74],[0,13],[6,26],[19,36],[87,94],[69,96],[30,49],[28,18],[46,41],[2,5],[-45,-5],[-32,11],[-32,5],[-62,-11],[-62,0],[0,21],[29,40],[62,68],[6,1],[-19,-32],[-5,-24],[8,-16],[9,-10],[36,-4],[8,14],[12,73],[27,85],[14,61],[25,47],[13,7],[11,-9],[37,-11],[38,-43],[12,-3],[4,3],[-14,13],[-11,20],[-5,19],[14,59],[16,17],[3,12],[-32,0],[-26,16],[-8,27],[1,47],[9,28],[21,37],[25,25],[15,-6],[30,-34],[18,10],[-3,10],[-27,53],[-9,39],[1,19],[59,187],[29,100],[40,153],[9,24],[20,45],[9,12],[25,0],[16,6],[-23,19],[-8,14],[-1,15],[6,15],[9,12],[31,24],[22,40],[13,48],[-2,16],[-7,16],[0,9],[17,10],[42,56],[5,11],[16,75],[19,33],[17,17],[28,21],[86,52],[51,46],[34,-3],[10,-32],[49,-21],[9,23],[-12,28],[10,11],[40,10],[7,-4],[12,-16],[-2,-14]],[[25947,92747],[11,-12],[64,16],[54,18],[84,45],[50,15],[152,0],[26,-9],[-11,-26],[-7,-8],[5,-11],[17,-16],[33,-17],[13,16],[9,37],[23,153],[9,46],[5,44],[-1,41],[-11,26],[-39,16],[-53,-3],[-28,4],[-33,8],[-25,13],[-16,17],[-31,52],[-24,28],[-60,52],[-28,17],[14,21],[55,23],[33,23],[39,65],[23,11],[84,-9],[114,-51],[72,-44],[19,-5],[0,8],[-18,21],[-82,54],[-38,40],[-17,29],[8,12],[46,13],[6,14],[-63,17],[-31,0],[-26,-12],[-28,-1],[-51,22],[-14,13],[-30,38],[-15,34],[-17,21],[-7,16],[-3,51],[2,30],[7,26],[12,22],[33,39],[19,12],[35,5],[76,-20],[203,-71],[-5,23],[-227,96],[-81,24],[-20,35],[122,133],[111,31],[56,38],[91,2],[85,-25],[1,7],[-38,46],[3,12],[48,27],[89,32],[108,26],[22,13],[28,9],[51,9],[127,3],[71,-3],[95,-20],[55,-35],[17,-21],[30,-69],[24,-95],[35,-40],[56,-21],[39,-24],[22,-26],[6,-32],[-10,-39],[7,-40],[25,-41],[20,-24],[42,-26],[1,-14],[-13,-16],[-28,-23],[-70,-69],[-90,-76],[-64,-66],[-3,-20],[133,104],[42,-4],[2,-15],[-28,-50],[-33,-45],[-33,-29],[6,-11],[63,-50],[-11,-9],[-31,5],[-12,-5],[-9,-9],[-6,-14],[0,-20],[5,-25],[-1,-18],[-6,-13],[7,-5],[18,2],[16,10],[27,34],[88,93],[57,34],[18,4],[52,-23],[13,1],[-58,72],[-5,18],[12,26],[7,9],[32,20],[26,10],[15,-4],[24,-36],[11,-25],[19,-11],[44,14],[28,30],[36,-20],[54,-48],[-5,-48],[0,-49],[3,-35],[65,-65],[44,-28],[9,-1],[-2,10],[-9,22],[-24,21],[-23,34],[-20,40],[12,95],[34,50],[32,-13],[43,-29],[34,-2],[53,3],[108,-58],[58,-1],[-5,23],[-44,12],[-64,31],[-101,38],[-46,44],[-8,20],[1,22],[6,20],[10,16],[20,17],[97,50],[69,22],[51,7],[87,-1],[100,-9],[55,-14],[62,-36],[79,-35],[28,-6],[33,0],[38,8],[36,-3],[114,-52],[30,-27],[18,-32],[14,-32],[8,-31],[-3,-24],[-95,-108],[-41,-18],[-28,-41],[-40,-77],[-35,-42],[-3,-8],[7,-2],[21,19],[36,53],[26,46],[47,38],[78,45],[68,22],[58,-2],[49,-6],[39,-11],[24,-10],[7,-7],[16,-34],[-1,-23],[-10,-26],[-19,-29],[-84,-33],[-47,-25],[-29,-10],[-87,-9],[4,-10],[65,-14],[71,4],[-1,-16],[-34,-44],[-11,-38],[9,-31],[-1,-26],[-26,-53],[-28,-48],[10,-7],[66,69],[18,76],[27,66],[31,37],[23,14],[74,5],[40,39],[35,12],[15,1],[29,-15],[-1,-15],[-43,-70],[-92,-112],[38,13],[25,27],[34,26],[38,40],[25,-36],[39,-27],[23,-61],[38,-29],[23,-23],[-3,39],[-33,77],[9,31],[25,16],[79,65],[55,-22],[34,-19],[17,5],[43,-3],[69,-10],[67,-19],[66,-25],[50,-31],[35,-34],[21,-24],[8,-14],[12,-34],[-9,-23],[-50,-53],[-27,-24],[-27,-11],[-73,11],[-23,-7],[-24,-16],[-76,-73],[-42,-32],[-41,-20],[-10,-10],[89,1],[24,21],[21,41],[39,42],[74,19],[103,-41],[52,2],[39,41],[44,28],[17,6],[9,-3],[33,-30],[10,-26],[0,-60],[-5,-18],[-29,-46],[-73,-68],[-47,-25],[-52,-14],[-57,-23],[-20,-19],[-20,-26],[-20,-18],[-25,-14],[33,-22],[12,1],[13,13],[33,50],[24,23],[14,4],[14,-2],[14,-10],[14,-18],[-1,-43],[-42,-171],[7,0],[26,47],[74,178],[18,36],[36,36],[80,54],[63,29],[70,24],[37,9],[43,-6],[28,-28],[37,-5],[46,7],[30,-4],[33,-11],[29,-20],[48,-24],[110,-44],[14,-10],[12,-16],[12,-25],[-1,-24],[-15,-23],[-18,-15],[-22,-5],[-23,-13],[-42,-34],[-13,-6],[-66,-14],[-61,-7],[-38,-14],[-73,-37],[-101,-68],[1,-16],[40,-8],[33,10],[45,47],[42,18],[66,15],[91,12],[39,-2],[7,-2],[5,-11],[3,-20],[-15,-26],[-17,-12],[-47,-58],[31,-15],[42,-7],[24,16],[22,36],[25,19],[27,4],[24,9],[21,15],[5,9],[-30,19],[-2,11],[12,28],[22,30],[23,19],[17,2],[57,-21],[39,-35],[98,-107],[12,-21],[34,-79],[7,-35],[-6,-25],[-8,-15],[-10,-5],[-22,-1],[-130,33],[-60,-4],[-26,-9],[-21,-14],[-16,-17],[-12,-21],[-23,-12],[-82,0],[-47,-12],[-80,-28],[-28,-16],[-7,-20],[49,4],[81,26],[75,8],[127,-59],[41,-9],[23,9],[28,2],[101,-4],[35,-7],[51,-22],[78,-49],[15,-14],[9,-15],[2,-16],[0,-39],[-8,-13],[-27,-9],[-112,10],[-35,9],[-42,-11],[-34,4],[-44,15],[-48,28],[-72,-26],[-58,17],[-59,-15],[-117,-62],[13,-11],[160,53],[31,-3],[51,-20],[80,-38],[23,-16],[0,-60],[-12,-41],[-25,-45],[-37,6],[-85,28],[-35,4],[-26,-4],[-34,-19],[-17,0],[-137,36],[-31,2],[-3,-4],[6,-7],[125,-56],[92,-6],[57,-10],[34,-17],[16,-13],[2,-37],[30,-38],[28,-15],[18,-1],[30,14],[30,2],[25,-9],[31,-21],[37,-6],[33,-13],[26,-2],[71,6],[31,-8],[8,-7],[-13,-12],[-66,-29],[-10,-28],[37,-36],[20,-28],[-1,-20],[-20,-47],[-5,-19],[6,-2],[48,38],[7,-4],[5,-53],[6,3],[16,43],[-7,58],[28,23],[88,18],[-15,-91],[-2,-47],[-39,-79],[-32,-25],[1,-6],[23,-10],[14,-1],[14,13],[33,60],[66,64],[12,1],[0,-23],[-9,-42],[31,-20],[29,19],[16,17],[37,-2],[17,-8],[5,-19],[-17,-79],[3,-19],[39,-52],[4,3],[-8,25],[-8,62],[8,28],[32,34],[65,50],[25,10],[15,-7],[24,-24],[-8,-14],[-26,-15],[-19,-27],[-13,-39],[14,-21],[53,-2],[54,32],[30,-16],[37,-42],[66,-67],[39,18],[47,-51],[-64,-40],[20,-86],[-82,4],[-46,-7],[-31,8],[-34,-3],[31,-20],[59,-9],[6,-25],[46,0],[35,5],[63,-1],[4,30],[41,17],[23,19],[20,-12],[57,-12],[77,-59],[-34,-35],[-9,-33],[-12,-28],[-6,-25],[-14,-17],[-109,-99],[18,-1],[46,24],[91,35],[50,15],[36,-10],[18,0],[16,13],[30,-15],[62,-13],[71,81],[43,-16],[40,-50],[86,-89],[45,-51],[15,-23],[-2,-23],[-41,-25],[-20,-5],[-55,46],[-50,24],[-31,-3],[-30,-18],[10,-9],[121,-71],[21,-52],[2,-23],[-81,-35],[-26,-2],[-57,17],[-32,31],[-28,11],[-37,3],[-12,-6],[41,-52],[-4,-16],[-21,-10],[-11,-25],[81,-46],[61,-46],[9,-19],[-41,-13],[-29,-4],[-62,7],[-35,10],[-9,-11],[35,-24],[14,-16],[10,-23],[7,-22],[1,-20],[-28,-17],[-35,-46],[-14,-48],[-31,-5],[-13,9],[-42,-15],[-55,21],[-20,22],[-61,90],[-1,-10],[15,-46],[-3,-27],[-64,-20],[0,-7],[39,-15],[48,-11],[-8,-42],[1,-181],[-11,-64],[-23,-56],[-34,-53],[-36,35],[-15,36],[-12,18],[-17,15],[-23,7],[-23,0],[-25,-32],[-28,28],[-26,33],[10,88],[11,44],[-4,-1],[-16,-20],[-36,-64],[-23,-79],[-31,30],[-28,38],[-22,38],[-37,43],[-36,51],[-19,60],[-8,13],[-21,50],[-8,14],[-8,5],[-17,31],[6,34],[28,39],[26,28],[42,28],[50,16],[22,36],[28,66],[30,46],[33,26],[-16,4],[-42,-22],[-30,-32],[-35,-54],[-32,-34],[-84,-40],[-30,-8],[-36,-4],[-78,5],[-18,14],[9,38],[56,68],[-9,5],[-20,-24],[-27,-17],[-23,-9],[-34,3],[-41,43],[-19,13],[-39,15],[-16,14],[-66,104],[-13,28],[-7,27],[-21,23],[-35,18],[-8,-3],[13,-23],[0,-20],[-30,-12],[-31,4],[-33,21],[-3,-28],[35,-51],[1,-64],[-10,-6],[-24,-4],[-16,8],[-53,48],[-50,33],[-36,18],[-4,-13],[23,-57],[27,-57],[44,-47],[69,-56],[32,-32],[-25,-46],[-22,-14],[-13,-5],[-42,0],[-77,25],[-37,28],[-52,67],[-87,69],[-19,-1],[-61,-28],[9,-4],[40,-2],[29,-9],[69,-55],[6,-23],[-18,-25],[1,-32],[20,-39],[20,-25],[41,-18],[20,-2],[8,-11],[-25,-87],[-2,-24],[7,-10],[9,0],[52,35],[22,9],[19,2],[22,-10],[26,-22],[14,-23],[5,-23],[7,-15],[52,-24],[-5,-12],[-53,-37],[-3,-5],[11,-3],[33,-22],[31,-34],[19,-41],[4,-21],[0,-19],[4,-11],[16,-2],[7,7],[7,-1],[9,-10],[8,-32],[19,-92],[10,-25],[5,-1],[3,92],[9,15],[33,-16],[47,-36],[34,-32],[4,-15],[-25,-29],[5,-13],[19,-19],[17,7],[12,33],[22,32],[25,22],[48,-18],[39,-48],[6,-16],[26,-21],[22,11],[44,-54],[-21,-25],[-45,-36],[-5,-12],[11,2],[87,1],[23,-15],[5,-28],[-38,-76],[-35,6],[-47,2],[-24,-4],[4,-10],[65,-35],[18,-29],[25,-30],[12,-25],[-1,-11],[-10,-17],[5,-6],[44,-11],[28,10],[34,4],[30,-3],[3,-11],[-5,-28],[-31,-25],[9,-7],[36,8],[17,-12],[21,-62],[25,-48],[-20,-11],[-22,-5],[3,-61],[14,-64],[1,-60],[-5,-54],[-20,-12],[-22,1],[-8,14],[-53,161],[-13,29],[-16,25],[-56,70],[2,-11],[14,-32],[12,-48],[16,-96],[8,-61],[-4,-23],[-11,-6],[-3,-11],[5,-17],[43,-63],[21,-38],[15,-39],[13,-26],[13,-14],[-3,-11],[-19,-9],[-32,-4],[-16,5],[-58,36],[-8,-11],[32,-133],[-1,-32],[-16,-11],[-20,13],[-24,38],[-36,42],[-49,46],[-47,37],[-11,-1],[-7,-11],[-7,-2],[-9,7],[-16,28],[-16,18],[-68,62],[-7,0],[7,-18],[6,-41],[-7,-8],[-18,3],[-34,18],[-23,40],[-28,70],[-16,26],[-1,-17],[8,-67],[-1,-22],[-17,-6],[-8,6],[-7,18],[-6,29],[-17,23],[-25,15],[-14,16],[-7,29],[-5,6],[-45,-6],[-23,20],[-65,81],[-59,88],[-38,46],[-14,12],[20,-57],[22,-84],[6,-39],[-10,-1],[-22,17],[-113,108],[-69,51],[-39,9],[-63,6],[-14,-28],[34,-62],[33,-47],[32,-32],[50,-61],[46,-79],[19,-25],[62,-34],[33,-9],[34,-2],[3,-12],[-16,-23],[-4,-14],[75,-35],[28,-20],[27,-32],[15,-8],[65,-82],[16,-14],[58,-26],[19,-17],[32,-53],[20,-27],[28,-64],[21,-29],[52,-32],[22,-10],[10,-12],[-7,-29],[-6,-12],[-30,-20],[5,-28],[17,-50],[-1,-31],[-18,-12],[-37,-14],[-19,1],[-28,12],[-35,20],[-70,50],[-105,35],[-39,18],[-13,17],[-20,10],[-260,48],[-44,12],[-27,15],[-25,22],[-100,49],[-12,11],[-67,85],[-49,100],[-17,13],[-54,13],[-45,-8],[-30,-11],[-46,4],[-30,16],[-63,45],[-64,23],[-56,39],[-29,14],[3,10],[41,58],[-12,0],[-73,-45],[-26,14],[-43,35],[-32,35],[-66,97],[-38,35],[5,8],[43,3],[34,-3],[23,8],[44,39],[19,25],[2,14],[-37,4],[-8,7],[-7,16],[-17,21],[-27,25],[-31,10],[-107,-9],[-19,11],[0,17],[21,47],[12,19],[3,10],[-4,3],[-14,-2],[-62,-42],[-14,3],[-24,45],[-15,51],[-11,17],[-14,6],[-51,50],[-72,95],[-27,30],[-30,27],[-21,11],[3,14],[46,79],[2,12],[-40,-4],[-59,16],[-28,-20],[-18,-1],[-21,11],[-12,-4],[-11,-65],[-9,-16],[-12,-9],[-11,2],[-9,11],[0,15],[-9,79],[-21,12],[-58,3],[-13,6],[-14,15],[-12,27],[-10,40],[-12,22],[-13,3],[-11,-3],[-8,-10],[-18,-6],[-28,-3],[-1,-15],[27,-28],[25,-40],[25,-52],[-15,-35],[-55,-18],[-48,-5],[-41,7],[-32,12],[-44,29],[-63,-9],[-15,-76],[-13,-4],[-60,1],[-24,-6],[-80,-42],[-25,-6],[-18,5],[-18,-11],[-27,-24],[-37,-2],[-47,19],[-39,8],[-33,-3],[-33,12],[-34,25],[-29,11],[-36,-2],[-9,4],[-54,55],[-17,22],[-35,68],[-7,27],[-1,29],[3,21],[13,32],[13,76],[12,25],[17,23],[32,29],[120,51],[24,20],[-1,14],[-27,62],[0,16],[9,9],[19,37],[9,10],[21,6],[44,-19],[37,-7],[50,-3],[83,-25],[115,-49],[66,-33],[50,-50],[36,-49],[5,-25],[-16,-38],[-9,-11],[1,-13],[9,-15],[29,-21],[7,8],[-3,26],[6,22],[15,17],[1,23],[-11,28],[-13,24],[-17,21],[-74,70],[-7,23],[25,11],[108,-24],[42,6],[16,27],[17,19],[18,10],[37,4],[51,-13],[25,-2],[23,5],[29,15],[42,50],[28,11],[41,8],[31,1],[56,-20],[35,0],[-3,34],[-23,63],[-28,66],[-23,22],[-57,41],[-68,78],[-34,49],[-9,24],[4,16],[12,24],[123,86],[97,86],[42,44],[21,31],[21,22],[22,14],[47,16],[13,22],[3,36],[8,32],[44,85],[33,23],[51,16],[33,20],[41,70],[-4,17],[-19,13],[-14,20],[-62,182],[-42,89],[-49,76],[-45,94],[-73,92],[-1,24],[13,28],[-6,6],[-76,-40],[-18,-2],[-29,17],[-20,22],[-16,38],[1,20],[11,19],[15,47],[0,24],[-5,22],[-6,16],[-9,9],[-23,6],[-38,2],[-13,-8],[43,-71],[-7,-17],[-54,-7],[-24,3],[-22,8],[-20,14],[-63,74],[-13,27],[4,20],[-5,11],[-13,-7],[-17,0],[-24,7],[-5,8],[44,40],[3,12],[-21,13],[-30,3],[-8,12],[10,12],[41,22],[15,14],[-25,11],[-13,1],[-28,-24],[-42,-48],[-30,-18],[-41,22],[-27,8],[-18,-5],[-28,-38],[-61,-27],[-109,-65],[-46,-20],[-51,4],[-9,13],[0,22],[4,18],[6,14],[2,18],[-4,73],[9,21],[17,12],[32,12],[81,-15],[37,3],[27,17],[26,24],[27,33],[5,31],[-28,50],[-10,11],[-72,39],[-40,14],[-35,6],[-26,11],[-16,17],[-15,27],[-1,18],[2,24],[15,17],[64,20],[0,5],[-53,14],[-25,-2],[-21,-16],[-27,-37],[-16,-11],[-48,22],[-29,3],[-19,11],[-11,10],[7,10],[24,11],[41,32],[3,18],[-29,28],[-15,7],[-60,10],[-72,-10],[-28,5],[-12,32],[-7,37],[-4,44],[-13,75],[-14,39],[-19,4],[-88,-16],[-20,0],[-15,6],[-57,50],[-24,18],[-13,4],[-42,53],[-16,10],[-19,26],[-22,42],[-24,13],[-26,-16],[-26,-24],[-26,-30],[-14,-26],[-2,-21],[16,-16],[91,-28],[24,-18],[19,-30],[15,-36],[10,-43],[-1,-32],[-11,-22],[-20,-19],[-57,-30],[-58,-17],[-59,-5],[-28,4],[-152,59],[-27,0],[-35,8],[-79,24],[-43,3],[-76,20],[-128,11],[-25,-9],[34,-27],[30,-14],[25,0],[37,-24],[48,-47],[28,-29],[22,-34],[1,-12],[-23,-23],[-178,122],[-109,-42],[-51,-16],[-43,-3],[-54,17],[-121,59],[-46,20],[-16,3],[-106,-25],[-91,-1],[-185,24],[-67,17],[-18,17],[-22,8],[-40,0],[-105,19],[-97,-43],[-116,40],[-35,23],[-11,16],[-33,66],[-5,36],[10,32],[9,22],[10,12],[-64,-37],[-22,-6],[-29,-1],[-87,13],[-14,-7],[5,-12],[23,-19],[2,-12],[-48,-8],[-73,9],[-33,-4],[-14,-5],[-33,-30],[-14,-7],[-17,3],[-77,67],[-62,43],[-73,16],[-33,14],[-18,16],[-100,137],[-14,29],[-32,107],[-10,23],[-13,15],[25,3],[95,-13],[91,0],[50,-8],[57,-27],[76,-19],[53,-4],[87,7],[98,18],[11,14],[-63,24],[-57,31],[-52,41],[-31,17],[-53,11],[-146,8],[-137,27],[-93,37],[-77,41],[-31,22],[-11,18],[-12,54],[-13,90],[-12,61],[-12,31],[-1,27],[26,57],[74,63],[2,10],[-15,3],[-31,16],[-10,23],[-4,37],[0,32],[3,25],[13,33],[32,57],[46,71],[49,65],[9,22],[4,58],[7,43],[6,30],[11,22],[31,43],[38,41],[60,34],[5,13],[1,18],[3,13],[6,9],[149,110],[68,45],[57,29],[69,21],[195,43],[101,12],[127,-3],[233,-24],[28,-17],[7,-9],[10,-24],[-7,-16],[-64,-52],[-80,-44],[-53,-38],[-88,-86],[-24,-30],[-110,-173],[-26,-28],[-15,-23],[-11,-63],[4,-22],[17,-36],[59,-79],[16,-36],[0,-34],[-7,-81],[-1,-41],[3,-39],[12,-56],[22,-73],[51,-74],[79,-74],[59,-50],[59,-36],[69,-54],[15,-26],[-32,-29],[-74,-44],[-98,-19],[-52,-18],[-65,-39],[-82,-30],[-32,-19]],[[32833,80122],[-117,-8],[-92,36],[-69,17],[-67,31],[-146,100],[-16,35],[-14,43],[-28,39],[-30,32],[-154,98],[-13,34],[31,23],[36,10],[31,-1],[104,-38],[130,-34],[56,-26],[64,-38],[62,-47],[140,-125],[24,-10],[63,-61],[23,-46],[11,-38],[-14,-19],[-15,-7]],[[32274,78610],[8,-8],[13,15],[15,47],[41,-12],[22,-21],[12,4],[12,-2],[23,-28],[44,-22],[46,4],[70,13],[8,5],[72,11],[72,5],[25,-12],[9,-12],[5,-14],[-41,-38],[-41,-44],[-58,-44],[-7,-21],[4,-39],[-1,-40],[11,-3],[7,-14],[-15,-13],[-59,-6],[-17,4],[-21,16],[-7,39],[-25,-6],[-7,5],[35,32],[-16,42],[-18,-3],[-11,19],[1,27],[16,13],[5,14],[-22,-13],[-17,-24],[-21,-9],[-22,-22],[33,-6],[-17,-17],[-17,-3],[-81,32],[-20,12],[-26,34],[-19,45],[11,2],[3,8],[-2,7],[-28,6],[-45,-2],[-25,12],[1,79],[-8,22],[-28,18],[-42,5],[-4,30],[13,44],[21,39],[16,37],[18,31],[46,62],[-1,-46],[4,-40],[-30,-79],[52,-79],[6,-17],[5,-21],[-4,-19],[-8,-18],[20,-8],[6,-15]],[[27222,88107],[11,-17],[3,-24],[-4,-32],[-7,-30],[-10,-27],[-25,-44],[-76,-77],[-28,-42],[-22,-25],[-124,-111],[-16,-6],[-16,2],[-34,17],[-34,3],[-90,-45],[-4,8],[-4,48],[-9,27],[-40,57],[-2,13],[0,16],[3,13],[45,54],[101,193],[24,10],[49,-22],[24,-7],[17,1],[72,41],[68,-5],[63,24],[29,0],[23,-4],[13,-9]],[[27904,87794],[22,-16],[36,-52],[14,-26],[4,-36],[-10,-48],[-5,-44],[-13,-34],[-25,-42],[-22,-50],[-20,-56],[-15,-38],[-13,-18],[-14,-10],[-14,-1],[-23,21],[-30,42],[-24,25],[-31,18],[-17,23],[-3,23],[-1,76],[1,37],[4,32],[7,25],[16,34],[44,75],[26,29],[16,7],[43,-6],[18,2],[14,9],[15,-1]],[[28979,91199],[145,-51],[14,-19],[7,-16],[4,-19],[0,-38],[-3,-15],[-14,-36],[-1,-12],[11,-123],[-1,-67],[-10,-56],[-21,-45],[-31,-34],[-24,-20],[-105,-48],[-75,-12],[-79,-2],[-100,-13],[-46,3],[-24,5],[-17,10],[-19,30],[-23,51],[-18,58],[-23,102],[0,12],[21,83],[29,56],[50,82],[57,81],[14,14],[26,14],[64,23],[54,-6],[23,3],[29,10],[33,3],[53,-8]],[[27906,94270],[47,-7],[300,14],[63,-11],[189,-64],[48,-21],[25,-28],[21,-45],[10,-10],[69,-26],[28,-32],[10,-17],[14,-38],[31,-22],[36,-12],[11,-11],[-5,-48],[15,-22],[33,-27],[13,-18],[-26,-22],[-61,-13],[-170,13],[-228,31],[-133,-9],[-67,-14],[-161,-49],[-51,-8],[-51,-1],[-89,40],[-32,22],[-11,16],[-21,49],[-17,58],[-9,48],[-10,37],[-31,12],[-90,14],[-30,20],[-14,17],[-13,27],[0,27],[7,25],[6,6],[11,1],[-25,29],[-9,33],[-1,46],[4,29],[7,13],[17,8],[39,5],[58,-1],[81,-33],[64,-4],[98,-27]],[[27574,82227],[-19,-8],[-58,16],[-24,11],[-71,41],[-135,61],[-46,31],[-10,22],[25,48],[13,19],[15,12],[143,22],[55,-11],[65,-97],[38,-66],[15,-52],[0,-26],[-6,-23]],[[28103,84184],[-14,-8],[-10,1],[2,19],[14,38],[8,34],[2,28],[6,25],[10,22],[11,11],[15,-1],[4,-70],[-5,-32],[-10,-28],[-14,-22],[-19,-17]],[[28073,84254],[-23,-58],[-18,-56],[-25,-106],[-15,-3],[-13,25],[37,123],[1,14],[-1,12],[-11,18],[-11,-21],[-52,-139],[-13,-22],[-11,-13],[-9,-2],[-22,3],[-44,-40],[74,165],[1,13],[-14,8],[-6,-5],[-60,-104],[-34,-40],[-23,13],[-6,10],[2,13],[59,104],[54,75],[22,48],[9,44],[4,33],[0,36],[3,10],[3,-2],[3,-14],[1,-38],[-12,-77],[-10,-38],[-12,-32],[5,-7],[22,18],[18,38],[15,57],[9,50],[10,80],[3,-3],[4,-16],[10,-11],[15,-7],[9,-10],[6,-26],[7,-12],[23,-10],[9,-8],[6,-29],[-1,-16],[3,-9],[7,-5],[-8,-31]],[[27784,84220],[-14,-4],[-17,8],[9,42],[14,18],[36,17],[7,11],[11,6],[17,0],[19,15],[21,32],[7,4],[-14,-46],[-16,-34],[-80,-69]],[[25046,96352],[-73,-33],[-37,1],[-212,67],[-43,33],[-8,23],[-2,32],[0,43],[9,30],[12,10],[25,10],[49,7],[46,-4],[70,-12],[70,-19],[92,-60],[34,-28],[7,-37],[0,-22],[-5,-17],[-10,-10],[-24,-14]],[[20956,96279],[-43,-10],[-84,23],[-56,10],[-45,42],[-49,57],[-39,62],[-14,37],[-28,22],[-10,36],[-51,57],[8,9],[48,8],[77,-11],[36,-20],[47,-34],[60,-54],[18,-24],[4,-33],[11,-17],[51,-4],[63,-43],[12,-17],[13,-34],[-1,-16],[-10,-34],[-18,-12]],[[22558,97915],[6,-75],[-6,-38],[-14,-28],[-12,-7],[-17,0],[-76,21],[-23,13],[-1,11],[-8,21],[-50,27],[-95,-4],[-40,3],[-16,8],[-10,12],[-9,47],[2,17],[11,29],[7,7],[70,27],[20,2],[85,-10],[75,-1],[38,-7],[34,-17],[20,-26],[9,-32]],[[20753,93847],[-14,-3],[-26,14],[-39,29],[-63,60],[-75,59],[-12,36],[-19,26],[-96,63],[-62,26],[-48,13],[-7,17],[33,51],[37,41],[23,15],[70,13],[236,27],[54,1],[56,-13],[78,-56],[32,-6],[20,-13],[17,-21],[9,-21],[0,-44],[-8,-64],[-11,-25],[-47,-82],[-49,-46],[-10,-29],[-20,-23],[-35,-29],[-24,-16]],[[21603,95630],[58,-35],[3,-9],[-11,-6],[-75,-19],[-29,-15],[-25,-35],[-19,-16],[-101,-10],[-103,1],[20,33],[56,56],[-44,22],[-158,-38],[-60,24],[51,60],[-51,5],[-71,0],[-46,36],[16,42],[94,24],[122,20],[131,31],[103,-3],[40,-14],[14,-49],[12,-59],[18,-5],[55,-41]],[[21105,95957],[13,-3],[43,12],[27,2],[30,-22],[8,-14],[110,-36],[38,-16],[5,-10],[-13,-15],[-33,-20],[-31,-13],[-44,-11],[-222,-2],[-24,5],[-14,18],[-28,65],[-19,36],[-8,24],[5,14],[24,13],[82,21],[36,0],[23,-5],[9,-11],[-3,-14],[-14,-18]],[[17131,95379],[-79,-37],[-57,4],[-75,27],[-61,10],[-21,9],[-3,9],[20,26],[26,21],[62,41],[105,78],[69,30],[67,21],[69,47],[38,21],[33,2],[33,-9],[4,-13],[-35,-64],[-25,-26],[-49,-67],[-93,-112],[-28,-18]],[[18380,96632],[-76,-19],[-51,0],[-89,28],[-103,84],[-14,30],[39,5],[28,9],[17,13],[34,15],[76,21],[10,-8],[-2,-18],[6,-16],[28,-4],[26,-11],[53,-36],[36,-7],[13,-8],[6,-12],[22,-21],[0,-11],[-30,-22],[-29,-12]],[[13631,83225],[-6,-1],[-3,12],[2,25],[9,42],[4,9],[36,-7],[5,-3],[1,-8],[-2,-13],[-12,-19],[-34,-37]],[[13603,81774],[-5,-1],[-9,12],[-7,19],[-4,51],[3,20],[3,8],[24,-32],[-5,-77]],[[13823,82925],[-8,-21],[-20,-32],[-13,-13],[-6,6],[-18,4],[-19,32],[-14,13],[-10,1],[-5,-12],[-1,-15],[3,-20],[-2,-9],[-6,2],[-5,9],[-6,16],[-1,17],[4,17],[13,24],[42,47],[13,9],[14,-2],[23,-22],[5,-7],[17,-44]],[[13931,82469],[-6,-2],[-18,7],[-60,98],[-43,35],[-29,48],[-30,31],[18,50],[16,-6],[56,-41],[44,-39],[25,-26],[53,-110],[-4,-16],[-22,-29]],[[13829,83540],[3,-46],[-40,-76],[-52,-38],[-11,12]],[[14291,82338],[13,-184],[-1,-59],[-19,-38],[-13,-65],[-15,-29],[-15,39],[-1,64],[-4,51],[-5,24],[6,95],[-6,-7],[-18,-41],[-19,-3],[-34,47],[-17,38],[-3,40],[-22,42],[-3,15],[2,16],[19,42],[7,28],[7,58],[7,23],[18,-3],[31,-27],[33,-28],[30,-39],[22,-99]],[[14974,80272],[8,-52],[-34,9],[-12,10],[0,25],[6,23],[26,-8],[6,-7]],[[15513,80374],[4,-12],[-62,45],[-27,27],[-10,19],[-6,11],[-32,28],[-5,13],[7,10],[21,-6],[35,-21],[32,-35],[43,-79]],[[14822,80417],[-11,-2],[-18,7],[-19,16],[-35,44],[-3,10],[3,9],[9,7],[3,11],[-8,32],[27,20],[25,-17],[11,-20],[13,-36],[6,-41],[1,-28],[-4,-12]],[[15226,80700],[-3,-30],[-17,49],[-28,105],[4,24],[12,35],[11,2],[18,-16],[16,-29],[3,-11],[10,-30],[5,-27],[-11,-33],[-20,-39]],[[14184,82090],[-9,-26],[-37,63],[-13,18],[-28,67],[-5,29],[1,17],[5,6],[9,-4],[8,-8],[53,-74],[15,-35],[1,-53]],[[14465,81493],[-4,-9],[-11,0],[-18,10],[-13,21],[-16,66],[2,12],[5,12],[25,24],[10,-3],[3,-18],[15,-39],[5,-11],[0,-46],[-3,-19]],[[14342,82027],[-21,-7],[7,31],[2,18],[-4,17],[-3,33],[-1,79],[21,49],[33,1],[-1,-25],[-14,-111],[-7,-51],[-5,-19],[-7,-15]],[[14079,82368],[-4,-5],[-11,8],[-11,15],[-19,43],[-6,18],[-4,29],[3,5],[9,-3],[5,-5],[30,-70],[8,-35]],[[14120,82440],[-2,-4],[-28,0],[-8,6],[-5,12],[-2,19],[4,22],[17,42],[1,18],[3,8],[12,-22],[5,-19],[3,-82]],[[15712,79927],[-11,-15],[-7,2],[-5,10],[-18,102],[8,-3],[24,-31],[-5,-12],[18,-31],[4,-21],[-8,-1]],[[33392,77153],[-37,-20],[-32,1],[-22,19],[-1,8],[51,-8],[19,5],[39,32],[-17,-37]],[[33066,78046],[-12,-4],[-2,8],[-18,24],[-1,12],[15,11],[32,-6],[-12,-30],[-2,-15]],[[32801,79080],[10,-11],[18,1],[12,-4],[-17,-21],[-33,-3],[-16,9],[23,110],[27,26],[56,71],[22,22],[21,9],[21,-5],[-22,-43],[-30,-2],[-28,-35],[-18,-40],[-23,-22],[-15,-27],[-8,-35]],[[32081,79427],[-7,-42],[-25,-36],[-12,-2],[-5,3],[6,23],[0,40],[20,6],[7,-4],[16,12]],[[32090,79469],[-32,-30],[14,45],[6,11],[5,5],[5,-4],[2,-27]],[[31590,77357],[-14,-21],[4,20],[17,51],[11,7],[-18,-57]],[[31455,77581],[-38,-31],[15,78],[12,24],[15,-8],[-2,-47],[-2,-16]],[[29565,78034],[-22,-11],[-36,11],[-41,-15],[-11,0],[30,42],[46,27],[46,80],[13,2],[-18,-91],[-3,-33],[-4,-12]],[[29529,78102],[-34,-12],[-11,5],[37,56],[42,13],[-34,-62]],[[30270,78843],[-25,-5],[6,20],[35,36],[25,20],[15,0],[-24,-44],[-32,-27]],[[34573,81059],[-9,-6],[-9,0],[-8,7],[-1,11],[8,23],[21,12],[17,-3],[-1,-12],[-9,-19],[-9,-13]],[[34846,80408],[-43,-34],[-10,-13],[-12,-7],[-9,11],[-12,35],[2,12],[12,2],[7,-5],[1,-11],[5,-6],[9,0],[32,35],[16,5],[6,-6],[-4,-18]],[[34622,81733],[-14,-1],[-3,7],[6,22],[15,26],[20,7],[-6,-38],[-18,-23]],[[34974,80497],[20,-37],[11,-10],[-72,-41],[-8,-2],[-5,4],[-1,38],[4,29],[5,5],[16,-18],[17,36],[13,-4]],[[34937,79171],[-14,-20],[-14,0],[2,18],[17,34],[8,24],[1,15],[3,11],[13,13],[11,23],[-5,-43],[-22,-75]],[[31993,87879],[53,-6],[33,2],[14,-9],[13,-28],[-17,-40],[-19,-16],[-31,-4],[-50,13],[-17,8],[-16,22],[7,15],[25,5],[4,7],[-6,12],[0,10],[7,9]],[[31046,86544],[-25,-5],[-12,12],[0,35],[8,26],[29,55],[25,62],[15,14],[31,-10],[18,-17],[18,-30],[8,-22],[-7,-34],[-22,-29],[-25,-21],[-61,-36]],[[30462,87873],[-20,-2],[-37,4],[-40,12],[-23,14],[-19,29],[-4,33],[-38,48],[-42,16],[-23,33],[24,3],[34,-8],[49,-14],[45,-19],[64,-42],[21,-40],[21,-28],[7,-22],[-6,-10],[-13,-7]],[[31991,87192],[-7,-7],[-6,2],[-21,30],[-28,13],[-10,12],[-84,63],[-9,28],[-2,22],[28,11],[56,10],[49,-1],[46,-13],[9,-14],[24,-26],[-6,-30],[-2,-40],[-10,-19],[-15,-14],[-12,-27]],[[31936,87487],[6,-5],[7,6],[6,-5],[4,-16],[6,-12],[17,-14],[5,-11],[0,-11],[-14,-16],[-9,0],[-66,37],[-18,39],[-1,19],[7,18],[10,8],[13,0],[16,-10],[11,-27]],[[30789,85852],[-17,-42],[-23,5],[-8,-8],[-6,-1],[10,39],[1,27],[-5,27],[8,13],[30,1],[0,-31],[4,-11],[7,-6],[-1,-13]],[[32109,86616],[-10,-40],[-32,15],[-50,30],[-20,20],[-7,22],[0,30],[15,5],[37,3],[32,-42],[9,-6],[26,-37]],[[33057,84123],[3,-14],[-43,10],[-15,9],[-1,9],[2,15],[8,17],[20,13],[11,-7],[23,-17],[3,-11],[-11,-24]],[[32849,84996],[23,-17],[6,-63],[-44,4],[-50,42],[-10,31],[1,5],[7,5],[13,-7],[12,11],[13,3],[29,-14]],[[31134,91901],[-7,-4],[-72,26],[-6,21],[36,24],[29,12],[22,2],[22,-4],[21,-25],[-25,-23],[-20,-29]],[[32588,90469],[-34,-15],[-19,19],[13,6],[19,23],[26,20],[11,17],[43,8],[15,-1],[5,-6],[-24,-26],[-55,-45]],[[28038,95579],[3,-34],[-20,1],[-65,-22],[-52,-3],[-26,10],[-17,23],[41,43],[47,31],[57,47],[47,30],[23,-6],[22,-16],[-28,-47],[-30,-23],[-2,-34]],[[27814,84547],[-7,-10],[-14,11],[0,29],[13,22],[10,-1],[10,-12],[-3,-15],[-9,-24]],[[27856,84974],[-4,-5],[-12,4],[-5,-38],[-4,-3],[-9,23],[7,20],[-1,14],[2,10],[12,23],[7,5],[4,-2],[4,-29],[-1,-22]],[[27911,84479],[-9,-7],[-7,0],[7,51],[-8,18],[-1,9],[4,9],[5,2],[11,-16],[6,-17],[2,-16],[0,-16],[-4,-11],[-6,-6]],[[27795,82548],[-1,-17],[-18,3],[-9,10],[-8,15],[-2,12],[7,11],[21,-7],[10,-27]],[[27949,81769],[-12,-4],[-26,4],[-22,15],[-13,18],[86,51],[18,-6],[0,-10],[-13,-27],[-3,-18],[-6,-14],[-9,-9]],[[15730,80003],[-4,-7],[-43,41],[-29,54],[-12,32],[57,-81],[29,-26],[2,-13]],[[15284,80661],[-7,-5],[-7,66],[9,23],[2,12],[-1,13],[15,-30],[6,-20],[2,-27],[0,-8],[-19,-24]],[[29549,90889],[-135,-1],[-74,4],[-29,9],[-26,13],[-29,45],[-19,45],[-1,20],[5,17],[7,11],[91,15],[74,-19],[64,-22],[83,-4],[25,-9],[9,-6],[7,-11],[9,-53],[1,-28],[-2,-21],[-60,-5]],[[28367,88404],[24,-25],[24,2],[14,-20],[32,-63],[3,-10],[-1,-21],[-17,-26],[-18,-13],[-37,-20],[-42,-9],[-23,14],[-64,58],[-59,68],[-19,38],[8,16],[25,11],[51,11],[83,-6],[16,-5]],[[23742,95477],[-27,0],[-35,12],[-10,12],[-8,17],[-5,22],[-7,18],[-10,13],[-2,10],[6,9],[11,5],[27,2],[57,22],[11,-2],[8,-12],[7,-31],[9,-19],[22,-34],[10,-22],[-2,-6],[-7,-6],[-55,-10]],[[27698,86188],[-9,-2],[-2,7],[7,24],[12,3],[13,26],[12,-9],[-4,-15],[-16,-22],[-13,-12]],[[27760,86273],[-29,-4],[13,34],[10,16],[12,11],[24,4],[16,-14],[-15,-25],[-31,-22]],[[23116,93857],[-45,-6],[-41,40],[-2,38],[3,21],[5,18],[15,16],[43,18],[19,-13],[7,-17],[6,-6],[28,-14],[13,-16],[-2,-19],[-8,-28],[-10,-18],[-11,-8],[-20,-6]],[[22957,94772],[-84,-34],[-18,13],[-8,12],[65,53],[28,14],[27,-16],[7,-13],[-3,-9],[-14,-20]],[[22702,94394],[-80,-13],[-36,6],[-20,-16],[-15,-7],[-44,-3],[-90,29],[-24,10],[-9,9],[4,9],[16,9],[69,12],[25,10],[11,13],[17,11],[24,8],[65,8],[146,41],[72,5],[28,-3],[9,-11],[2,-10],[-4,-11],[-22,-28],[-30,-21],[-79,-46],[-35,-11]],[[24944,91831],[6,-36],[-24,-49],[-8,-8],[-10,-4],[-9,6],[-28,38],[-8,24],[10,12],[22,15],[15,7],[20,-6],[6,10],[8,-9]],[[24863,91716],[-23,-6],[-14,24],[-12,5],[-5,16],[-24,3],[2,25],[7,12],[22,10],[17,-4],[17,-25],[8,-20],[7,-25],[-2,-15]],[[29444,87913],[-15,-5],[-55,7],[-69,27],[-35,25],[2,8],[15,4],[18,-4],[29,-17],[80,-9],[25,-10],[8,-16],[-3,-10]],[[29199,91214],[-21,-4],[-32,36],[-66,40],[-25,30],[-1,14],[2,22],[8,27],[23,30],[24,5],[35,-7],[25,-21],[27,-59],[19,-29],[5,-21],[-9,-10],[1,-10],[4,-6],[-1,-11],[-8,-16],[-10,-10]],[[28185,86824],[-38,-6],[0,8],[16,24],[59,20],[44,6],[-10,-20],[-26,-16],[-45,-16]],[[28060,91124],[-23,-6],[-30,30],[0,17],[6,41],[55,10],[24,-24],[11,-24],[-43,-44]],[[28700,88360],[-29,-6],[-38,13],[-38,25],[-85,80],[64,54],[102,-63],[31,-40],[-7,-63]],[[27936,92043],[11,-33],[7,-11],[-11,-15],[-41,-31],[-92,-13],[-46,14],[22,-44],[4,-19],[-6,-8],[-20,2],[-31,13],[-19,15],[-4,18],[-7,4],[-9,-10],[-8,2],[-19,27],[-14,9],[-92,16],[-4,7],[5,12],[14,18],[20,5],[52,-7],[4,4],[4,22],[4,9],[36,-3],[22,5],[13,-11],[12,-26],[17,5],[26,-4],[28,9],[43,23],[33,9],[46,-13]],[[28325,92001],[14,-29],[3,-15],[-20,-17],[-74,-33],[-46,-28],[-22,-7],[-31,7],[-37,-14],[-15,2],[17,23],[58,67],[49,7],[16,14],[14,-5],[8,12],[1,17],[17,13],[16,0],[32,-14]],[[28432,88704],[-20,-26],[-59,9],[-8,8],[-2,10],[9,12],[61,12],[26,1],[14,-4],[1,-4],[-22,-18]],[[26910,90024],[28,-7],[21,1],[4,-9],[-22,-28],[-13,-5],[-25,20],[-18,25],[-5,15],[-2,16],[4,3],[28,-31]],[[27997,91500],[-19,-4],[-23,11],[-8,19],[-4,19],[4,10],[10,9],[13,21],[18,32],[27,22],[60,21],[8,7],[27,58],[9,9],[30,6],[3,8],[-10,14],[0,14],[10,15],[15,12],[39,10],[35,-2],[9,-4],[7,-10],[11,-27],[1,-6],[-16,-24],[-42,-36],[-26,-31],[-5,-10],[-3,-13],[-9,-15],[-31,-38],[-20,-36],[-21,-20],[-56,-19],[-43,-22]],[[28612,91672],[-35,-7],[-26,4],[-17,13],[-13,19],[-16,46],[6,22],[2,38],[3,15],[6,7],[37,14],[21,-2],[32,-15],[69,-4],[18,-14],[4,-8],[-1,-10],[-4,-12],[-34,-35],[-17,-24],[-12,-29],[-23,-18]],[[25857,92230],[32,-4],[30,5],[22,-5],[13,-16],[9,-17],[5,-18],[-12,-13],[-49,-11],[-34,6],[-35,15],[-17,-7],[-41,11],[-20,14],[-17,21],[0,13],[43,14],[17,12],[54,-20]],[[26743,89744],[35,-23],[36,-13],[57,-6],[8,-5],[0,-11],[-8,-16],[-19,-22],[-14,0],[-31,15],[-12,7],[-13,17],[-6,2],[-9,-6],[-2,-7],[4,-10],[-5,-2],[-39,6],[-6,6],[3,18],[27,27],[-23,8],[-8,10],[-35,-17],[-19,-4],[-30,12],[-4,60],[-3,23],[-14,15],[-9,16],[-13,12],[-27,12],[-23,30],[-4,14],[3,10],[13,14],[79,-30],[48,-29],[46,-36],[23,-26],[2,-17],[-5,-17],[-14,-17],[11,-20]],[[25945,90861],[-11,-1],[-19,9],[-43,35],[-9,15],[-4,17],[0,21],[3,20],[14,42],[-26,33],[-6,19],[3,10],[14,26],[4,16],[14,22],[37,44],[37,-10],[32,-36],[9,-24],[-3,-26],[3,-37],[8,-49],[3,-36],[-4,-22],[-14,-41],[-12,-20],[-16,-18],[-14,-9]],[[26479,89616],[-15,-6],[-15,3],[-13,17],[-11,30],[-17,22],[-39,28],[-7,11],[-11,37],[-2,37],[-9,34],[0,16],[7,25],[33,6],[26,-10],[5,-7],[8,-14],[6,-18],[31,-47],[18,-38],[25,-78],[0,-15],[-7,-16],[-13,-17]],[[24154,87467],[-11,-1],[-26,29],[-5,15],[33,9],[23,-26],[-2,-12],[-12,-14]],[[21881,95955],[-72,-2],[-33,6],[-2,11],[29,13],[95,22],[57,39],[21,5],[73,6],[43,-1],[55,-10],[-132,-49],[-134,-40]],[[21388,96858],[-32,-12],[-37,7],[-6,7],[0,9],[3,10],[42,36],[38,12],[23,3],[18,-13],[10,-18],[-59,-41]],[[21752,96599],[-39,-6],[-69,3],[-83,21],[-22,24],[-5,38],[1,22],[7,4],[51,5],[96,6],[78,-5],[88,-22],[36,-14],[18,-10],[22,-20],[8,-8],[5,-16],[-110,-4],[-52,-6],[-30,-12]],[[25076,95914],[-13,-8],[-42,4],[-14,-8],[-22,5],[-31,16],[-36,32],[-41,48],[-32,41],[-1,12],[10,19],[32,13],[76,15],[52,0],[48,-31],[14,-11],[8,-13],[1,-12],[-4,-11],[-22,-24],[-10,-16],[0,-17],[5,-23],[9,-16],[13,-8],[0,-7]],[[23311,95339],[-21,-19],[-23,-1],[-30,18],[-32,-7],[-45,-36],[-16,-22],[-12,-7],[-37,-7],[-16,6],[-15,19],[-14,32],[10,24],[35,16],[93,27],[26,13],[3,14],[6,9],[8,4],[62,-23],[29,-16],[22,-18],[-2,-8],[-31,-18]],[[23526,94760],[-13,-2],[-25,3],[-93,26],[-16,10],[-4,8],[21,9],[8,10],[23,12],[42,0],[44,-29],[21,-27],[1,-12],[-9,-8]],[[16368,95475],[-22,-3],[-24,6],[5,15],[54,41],[3,11],[0,9],[-7,11],[14,15],[22,5],[7,-5],[2,-12],[-5,-36],[-6,-18],[-10,-14],[-14,-14],[-19,-11]],[[18455,96049],[-42,-18],[-289,27],[-15,9],[-8,12],[52,33],[64,14],[146,11],[51,-13],[34,-15],[19,-12],[8,-24],[-20,-24]],[[21078,95066],[-53,-3],[-90,18],[-54,33],[-17,16],[2,8],[9,7],[13,22],[31,63],[12,17],[48,36],[36,10],[75,-3],[44,-19],[18,-12],[13,-15],[13,-32],[3,-21],[22,-24],[7,-14],[0,-14],[-6,-14],[-12,-13],[-29,-21],[-85,-25]],[[22162,91478],[-9,-18],[-11,-6],[-22,-21],[-8,-3],[-13,14],[-11,22],[-4,3],[-7,0],[-14,-15],[-7,1],[-5,9],[-3,19],[0,29],[7,43],[1,16],[-4,12],[3,12],[10,10],[12,4],[30,-4],[23,-17],[12,-23],[23,-18],[7,-13],[-10,-56]],[[22223,91597],[-6,-34],[-34,9],[-15,12],[-13,28],[-2,8],[3,10],[14,25],[9,9],[23,-11],[10,-14],[8,-23],[3,-19]],[[22136,92451],[-3,-5],[-60,22],[-23,12],[-8,10],[-5,19],[-3,28],[12,14],[27,-1],[28,-11],[44,-31],[-12,-10],[-1,-20],[5,-20],[-1,-7]],[[23468,91920],[37,-39],[0,-19],[-5,-31],[-11,-24],[-16,-16],[-23,-8],[-29,-1],[-13,7],[10,24],[7,8],[1,21],[-5,35],[-6,22],[-16,12],[-12,1],[-3,-12],[5,-23],[-4,-30],[-13,-38],[-9,-17],[-18,9],[-8,14],[2,23],[-4,22],[4,22],[12,34],[17,22],[21,12],[26,-1],[29,-13],[24,-16]],[[21897,91818],[-23,-5],[-4,1],[2,16],[-2,8],[-6,5],[20,13],[3,10],[-7,7],[-27,14],[-8,13],[2,11],[10,10],[19,-2],[41,-18],[19,-26],[8,-20],[-13,-3],[-11,-8],[-11,-16],[-12,-10]],[[21709,91351],[-11,-1],[-16,10],[-90,35],[-11,11],[10,15],[33,19],[22,19],[17,30],[51,-16],[19,-14],[8,-12],[3,-17],[-3,-41],[-17,-9],[-15,-29]],[[20961,91247],[-16,-2],[-28,9],[-43,21],[-31,21],[-21,23],[-3,16],[16,9],[24,4],[57,-3],[28,-8],[36,-34],[7,-19],[2,-12],[-5,-11],[-23,-14]],[[20028,90668],[-14,-48],[-6,5],[-9,23],[-20,11],[-21,25],[0,55],[8,25],[-2,35],[22,21],[16,-25],[5,-42],[-4,-20],[16,-22],[7,-5],[4,-17],[-2,-21]],[[19676,91003],[31,-6],[23,4],[17,-23],[7,-23],[-2,-8],[-8,-4],[-49,26],[-18,16],[-6,14],[5,4]],[[19974,90440],[35,-5],[45,1],[-8,-44],[-17,-29],[-14,-8],[-6,16],[-26,35],[-9,34]],[[19632,91008],[-10,-2],[-38,34],[8,30],[35,-31],[5,-18],[0,-13]],[[11377,91921],[-23,-21],[-37,22],[-9,11],[42,30],[19,-1],[39,-18],[14,-15],[-45,-8]],[[52722,53170],[6,135],[12,113],[5,105],[18,93],[-9,93],[-11,40],[-57,131],[26,50],[-34,-7],[-7,49],[-17,58],[10,10],[10,32],[31,-10],[-1,16],[-27,49],[3,25],[11,27],[-6,12],[-19,-29],[-14,1],[-10,19],[-8,3],[5,-38],[-11,-33],[-10,-12],[-18,2],[-14,8],[-4,19],[-13,15],[-38,24],[-31,30],[-7,80],[-12,34],[-6,39],[-3,44],[5,69],[-8,11],[-9,3],[-14,-3],[-13,4],[-15,38],[-13,14],[8,-69],[-9,-20],[-23,6],[-9,26],[-2,20],[10,84],[-4,2]],[[78623,58343],[-5,-5],[-5,0],[-5,8],[1,34],[3,20],[9,4],[2,-61]],[[78699,58017],[-11,-22],[-16,46],[0,12],[27,-36]],[[79007,57840],[-46,75],[-90,26],[-10,33],[-9,6],[-8,-43],[-50,-41],[-21,25],[-15,30],[2,37],[15,30],[24,22],[12,76],[-19,97],[-16,28],[-18,23],[-18,-37],[-15,-61],[-16,-32],[-23,-7],[-33,2],[-13,93],[-4,79],[4,90],[5,53],[-32,74],[-2,70],[-15,37],[-4,-19],[0,-20]],[[77417,57713],[-13,-7],[-26,-83],[-12,42],[-7,43],[8,98],[-16,186],[10,25],[9,13],[18,71],[21,70],[2,85],[17,61],[-4,52],[1,61],[4,49],[-2,41],[14,42],[24,32],[-10,11],[-10,23],[-31,-35],[-16,11],[-3,37],[4,39],[2,23],[12,27],[-1,52],[-6,46],[9,57],[-18,0],[-9,11],[5,32],[17,28],[-15,53],[11,57],[0,71],[-8,62],[0,45],[-11,79],[-6,101],[-24,76],[-19,110],[-48,144],[0,61],[-2,54],[-11,27],[-14,-192],[-11,38],[-3,107],[-7,50],[7,101],[-28,100],[-6,73],[-19,110],[6,25],[25,-25],[-23,64],[-19,-14],[-16,69],[-3,188],[-16,70],[9,71],[-18,257],[-35,82],[7,72],[9,63],[-2,118],[8,36],[17,28],[-16,-10],[-13,-8],[-32,-7],[-36,-2],[-12,86],[-18,41],[-16,86],[-9,98],[6,19],[-27,40],[-8,24],[-29,64],[-33,48],[8,-34],[9,-21],[-17,-59],[16,-99],[-14,-63],[-13,-82],[-12,-40],[-40,-84],[-32,-29],[-21,-5],[-19,9],[-23,44],[-5,36],[-4,61],[-8,9],[-9,-7],[14,-79],[0,-37],[24,-71],[-9,-20],[-44,-38],[-15,6],[-10,-8],[-3,-32],[-6,-18],[-69,-48],[-14,-56],[-9,-55],[-35,-80],[-46,-66],[-11,3],[-13,16],[2,71],[15,61],[-5,64],[-3,-37],[-30,-90],[-14,-29],[-27,8],[-38,-12],[-14,92],[0,34],[-3,29],[5,30],[-2,25],[-9,-47],[-3,-40],[-14,-35],[-38,-39],[-1,49],[-2,44],[8,39],[-1,63],[12,90],[-1,31],[-3,34],[-7,-50],[-4,-51],[-8,-16],[-13,-11],[-26,-60],[-15,-52],[-40,-50],[-20,5],[-3,63],[16,225],[15,32],[8,39],[12,131],[15,50],[6,104],[6,18],[19,82],[7,150],[-8,75],[-18,72],[-18,217],[-46,176],[-4,59],[-22,71],[21,5],[-43,62],[-6,26],[-9,146],[2,81],[-6,-11],[-6,-50],[-17,-21],[7,-87],[-1,-21],[-9,-33],[-36,35],[-26,38],[-30,93],[-29,104],[10,16],[13,2],[42,-77],[27,-16],[17,19],[21,33],[10,64],[-11,24],[-20,13],[-13,17],[-20,43],[-2,23],[-6,28],[-20,20],[-16,25],[14,45],[13,34],[-35,-2],[-39,58],[-9,16],[-13,12],[-31,7],[-26,-17],[12,-82],[-2,-27],[-17,4],[-36,124],[11,32],[15,30],[-7,4],[-15,-2],[14,111],[-9,16],[-4,-34],[-8,-34],[-30,-78],[-15,15],[-10,19],[14,41],[8,11],[5,22],[-11,43],[-18,32],[-14,53],[-7,1],[6,-63],[-2,-91],[-32,100],[-64,143],[-15,42]],[[75645,63819],[-4,42],[-7,39],[-5,42],[-1,33],[-14,29],[-6,52],[-3,52],[8,38],[19,40],[15,7],[11,-18],[28,-27],[19,-24],[8,-33],[8,4],[9,21],[-2,25],[-8,68],[-3,81],[0,191],[-3,22]],[[77280,58152],[23,-100],[-3,-15],[-3,-8],[-6,3],[-9,54],[-17,34],[-21,-6],[17,44],[7,10],[12,-16]],[[77272,57565],[-13,-34],[-5,2],[6,55],[23,41],[19,4],[-2,-26],[-14,-31],[-14,-11]],[[77283,58455],[-1,-13],[-2,0],[-7,9],[4,55],[11,44],[11,66],[6,14],[2,-35],[-7,-74],[-5,-40],[-12,-26]],[[77365,58700],[-12,-3],[-5,93],[3,14],[16,-46],[24,-28],[-9,-18],[-17,-12]],[[77375,58608],[-7,-119],[-17,17],[-9,0],[-10,67],[0,18],[-6,44],[41,8],[8,-35]],[[77336,59100],[7,-16],[9,0],[-3,-56],[-22,-69],[-13,-10],[-5,0],[5,101],[-9,57],[3,39],[24,-18],[4,-28]],[[77259,58842],[-3,-3],[-4,1],[-10,10],[-10,39],[5,27],[4,7],[10,-2],[4,-5],[2,-10],[-3,-22],[1,-19],[4,-23]],[[76243,61028],[-18,-56],[-7,84],[30,47],[14,44],[15,31],[5,-37],[-14,-71],[-25,-42]],[[77103,61205],[-10,-7],[-16,37],[-3,90],[13,20],[7,5],[11,-11],[3,-14],[2,-18],[-3,-19],[-4,-83]],[[76024,62605],[-4,-5],[-29,49],[-23,62],[36,12],[35,-13],[1,-33],[-8,-53],[-8,-19]],[[75969,63301],[6,-79],[-19,30],[-7,41],[-2,42],[22,-34]],[[76031,63109],[32,-48],[13,3],[19,-30],[1,-12],[-4,-24],[-9,-19],[-24,-20],[-16,16],[-7,52],[-19,25],[-6,20],[13,29],[7,8]],[[77372,58157],[-6,-1],[-6,2],[-6,9],[14,62],[4,-72]],[[77242,58578],[3,-32],[-18,34],[-3,95],[14,-60],[6,-14],[-2,-23]],[[77240,58980],[-2,-21],[-16,-43],[-14,25],[-4,13],[15,28],[15,-4],[4,6],[2,-4]],[[77309,59388],[-2,-95],[-14,46],[-2,52],[1,49],[3,8],[1,-8],[8,-22],[5,-30]],[[76334,60955],[-6,-15],[-11,11],[-3,6],[26,64],[3,-24],[-9,-42]],[[75835,63320],[4,-55],[-13,22],[-18,76],[1,50],[12,-23],[14,-70]],[[50663,58696],[-7,-33],[-21,-86],[-16,-36],[-69,-121],[-35,14],[-71,-24],[-11,28],[-16,3],[-21,-4],[-8,-11],[-2,-12],[-7,-17],[-14,-48],[-10,-12],[-13,-8],[-15,1],[-9,-6],[0,-24],[-3,-21],[-11,-10],[-4,-23],[1,-23],[-6,-10],[-14,5],[-8,7],[-7,-30],[-10,-20],[-6,0]],[[57940,77040],[-7,-139],[-27,-65],[-40,22],[-52,-18],[-27,-73],[-16,-22],[-14,-26],[-9,-95],[-2,-156],[-19,-19],[-18,-6],[-75,-137],[43,-39],[19,-29],[32,-82],[44,-93],[9,-45]],[[81951,54665],[32,0]],[[81684,54488],[31,-1],[34,10],[35,30],[33,37],[28,43],[27,47],[27,38],[43,44],[15,-4],[0,-31],[-6,-36]],[[35652,54182],[26,99],[3,45],[24,2],[37,-52],[30,-75],[40,-243],[6,-225],[17,-118],[46,-245],[3,-45],[7,-55],[15,-58],[16,-96],[1,-18],[-11,-26],[16,-2],[14,-15],[9,-61],[11,-41],[21,-56],[43,-19],[33,-7],[37,-31],[27,-41],[21,-138],[-7,-87],[2,-61],[-11,-24],[-30,-40],[-7,-22],[-62,-103],[-14,-49],[-33,-65],[-33,-125],[-48,-114],[-17,-29],[-26,-7],[-16,-17],[-37,-93],[-51,-31],[-4,-54],[-29,-124],[-26,-67],[-16,-23],[-41,-122],[-5,-54],[0,-94],[-28,-57],[-28,-37],[-4,-80],[-12,-27],[-11,-18],[-58,21],[-91,-88],[-30,-21],[98,-5],[32,-46],[69,31],[83,110],[32,24],[65,75],[27,50],[48,60],[10,26],[27,29],[15,-36],[1,-23],[-22,-44],[6,-28],[14,-36],[5,-49],[2,-37],[9,-66],[30,-88],[1,-30],[-4,-38],[14,-32],[15,-19],[51,-95],[39,53],[25,15],[15,23],[33,14],[27,-22],[51,-32],[37,34],[75,78],[-23,-138],[-17,-127],[-13,-51],[-13,-138],[-13,-37],[-10,-42],[17,15],[14,20],[18,53],[14,92],[55,247],[16,22],[45,28],[78,197],[31,-1],[19,-45],[19,-27],[4,54],[27,22],[-28,27],[-5,24],[-2,40],[19,55],[-12,48],[40,61],[-3,45],[14,38],[18,39],[21,19],[3,33],[13,14],[10,4],[20,-37],[22,44],[21,17],[9,-7],[12,-20],[12,-8],[10,4],[26,28],[24,-46],[15,-10],[-4,26],[-8,23],[6,20],[11,12],[36,-11],[19,-20],[21,-38],[28,-3],[23,4],[14,-21],[23,1],[11,-33],[35,-46],[7,-31],[28,-16],[27,-19],[28,-5],[28,5],[1,-40],[21,-11],[26,9],[21,-48],[53,-37],[38,-56],[24,10],[27,-15],[30,-121],[6,-87],[13,12],[12,39],[16,71],[29,23],[14,-27],[30,-44],[25,-47],[11,-31],[19,-5],[-16,-38],[16,4],[19,27],[17,-55],[13,-60],[2,-62],[-12,-35],[-10,-22],[-12,-44],[-13,-7],[-14,-14],[16,-32],[10,-30],[24,82],[16,23],[23,13],[13,-59],[2,-55],[-38,-23],[0,-44],[-12,-24],[-7,-29],[-6,-59],[-8,-50],[-23,-218],[0,-36],[27,38],[52,112],[16,118],[20,117],[22,37],[14,0],[20,-13],[1,-38],[-3,-22],[-22,-58],[-9,-32],[9,-32],[50,97],[22,33],[19,-6],[38,44],[76,9],[5,51],[16,22],[41,-6],[82,-45],[29,-37],[43,-35],[23,-41],[96,-76],[69,-8],[34,35],[43,-36],[23,-41],[44,-21],[45,-12],[35,29],[88,10],[112,42],[66,-10],[75,-28],[54,-71],[45,-41],[27,-40],[44,-41],[94,-111],[33,-64],[58,-88],[59,-37],[32,-91],[25,-42],[61,-154],[71,-108],[47,-109],[90,-69],[35,-115],[61,-14],[26,-17],[32,-49],[44,-27],[56,8],[63,-6],[50,23],[120,-43],[19,-21],[24,-49],[44,-182],[26,-202],[13,-154],[30,-120],[16,-226],[14,-71],[1,-54],[12,-13],[7,-152],[-3,-61],[-11,-80],[-1,-35],[2,-23],[-5,-33],[-2,-32],[12,-72],[0,-57],[-15,-70],[-21,-181],[-53,-302],[-51,-173],[-71,-178],[-47,-93],[-18,-10],[-17,19],[12,-50],[-11,-43],[-47,-131],[-46,-86],[-49,-150],[-4,-3],[-62,-58],[-37,-47],[-47,-85],[-43,-135],[-9,-18],[-16,10],[0,-69],[-37,-108],[-11,-16],[0,30],[7,24],[3,25],[-1,29],[-10,-21],[-22,-82],[7,-59],[-16,-90],[-60,-257],[-75,-217],[-17,-66],[-62,-146],[-45,-70],[-12,-1],[-15,6],[-7,112],[-36,68],[-10,12],[-15,-72],[-12,-20],[-18,-4],[19,-31],[6,-36],[-19,-73],[-1,-66],[-34,-72],[-20,-53],[-10,-67],[-7,-62],[16,17],[7,-13],[5,-19],[-3,-29],[-11,-54],[2,-134],[-4,-30],[11,-33],[12,56],[6,-16],[-32,-359],[13,-162],[4,-183],[15,-179],[16,-160],[1,-13],[-22,-185],[-28,-183],[-17,-150],[-11,-161],[-11,-78],[-4,-79],[13,-188],[4,-35],[-34,-84],[-37,-41],[-21,-40],[-45,-151],[-25,-224],[-1,-118],[12,-249],[-9,-102],[-14,-67],[-17,-45],[-44,-53],[-39,-131],[-17,-137],[-27,-50],[-5,-76],[-21,-83],[-56,-124],[-36,-36],[-18,-34],[-11,-72],[-35,-119],[-25,-154],[6,-53],[1,-8],[9,-178],[-3,-46],[-34,-49],[-128,-91],[-34,-39],[-77,-156],[-4,-36],[3,-53],[12,-30],[-13,-33],[-15,-59],[-22,4],[-127,0],[-69,-19],[-36,4],[-16,14],[-18,23],[-6,30],[10,46],[-6,27],[-19,-1],[-20,-13],[-4,-27],[1,-20],[8,-28],[4,-35],[-8,-30],[-40,-4],[-46,-28],[-56,-12],[-45,-20],[-21,26],[21,13],[29,-7],[32,21],[-7,25],[-45,32],[-51,-19],[-28,-39],[-61,4],[-75,-29],[-12,-30],[2,-57],[15,-13],[14,-26],[-14,-24],[-13,-11],[-79,-27],[-73,-112],[-31,-14],[-27,-49],[-3,-42],[-8,-25],[-18,-2],[-38,23],[-50,1],[-35,-18],[-183,-182],[-66,-72],[-75,-148],[-126,-166],[-67,-99],[-12,-26],[-11,-1],[-21,-21],[9,-17],[14,-2],[-6,-57],[-26,-40],[-50,-103],[-11,7],[16,54],[-25,2],[-36,20],[-15,-22],[9,-54],[-14,-22],[-24,-3],[-23,6],[-24,39],[11,-70],[51,-18],[22,-16],[8,-27],[-40,-126],[-34,-17],[-3,-17],[18,0],[10,-35],[-12,-141],[-16,-26],[-10,-1],[-10,-24],[14,-46],[13,-33],[-2,-65],[-5,-54],[0,-52],[17,-101],[6,-104],[7,-37],[4,-42],[-11,-39],[6,-63],[-19,-107],[10,-154],[-4,-144],[-8,-76],[-12,-59],[-29,-76],[-1,-77],[-62,-71],[-69,-99],[-63,-118],[-69,-166],[-80,-252],[-73,-360],[-89,-272],[-36,-98],[-48,-109],[-64,-128],[-86,-128],[-94,-114],[-34,-51],[-33,-73],[-8,30],[7,49],[-4,37],[-1,48],[19,9],[28,-30],[14,20],[11,21],[34,12],[65,125],[48,47],[28,79],[4,42],[-1,85],[16,22],[35,-8],[7,24],[-3,27],[6,59],[48,52],[22,63],[-7,160],[8,7],[20,-25],[9,11],[10,70],[-5,36],[-23,10],[-79,-79],[-26,3],[-4,62],[-39,29],[-15,52],[-4,35],[-14,14],[1,-61],[4,-59],[34,-69],[-8,-28],[-17,-32],[-11,-71],[1,-92],[-9,28],[-12,16],[-5,-99],[-23,-38],[-7,-38],[6,-43],[-12,-30],[-58,-80],[-58,-55],[-13,-26],[-6,-61],[-9,-63],[-26,-55],[-21,-110],[1,-47],[7,-69],[11,-46],[-18,-31],[-23,-59],[-19,-67],[-46,-251],[-40,-151],[-31,-74],[-44,-78],[-125,-196]],[[33997,34453],[13,28],[44,61],[24,54],[5,48],[21,43],[38,38],[41,70],[47,102],[28,75],[9,49],[19,37],[26,26],[23,55],[20,84],[26,66],[35,49],[19,41],[4,32],[9,21],[15,9],[8,17],[-1,25],[5,17],[8,10],[15,-4],[21,-15],[12,3],[4,21],[-5,24],[-15,27],[5,30],[40,48],[29,18],[19,30],[18,47],[28,33],[40,18],[10,18],[-1,23],[8,16],[23,12],[13,22],[2,33],[7,31],[13,28],[15,10],[16,-7],[15,10],[14,29],[17,13],[19,-2],[10,6],[34,14],[18,24],[16,53],[13,20],[12,-12],[21,18],[29,48],[5,1],[22,22],[22,82],[11,55],[-3,45],[-7,32],[3,48],[7,128],[2,53],[12,37],[-1,36],[-21,82],[-21,71],[-12,121],[-7,46],[-18,13],[-16,40],[-20,3],[-9,16],[-10,12],[-15,-3],[-12,-24],[-23,-1],[-14,-9],[-17,-21],[-16,9],[-10,19],[-21,0]],[[33844,40227],[19,8],[7,23],[13,32],[17,8],[20,12],[7,24],[-47,84],[-28,51],[17,69],[27,116],[27,112],[21,85],[5,16],[18,6],[-3,44],[-1,29],[-14,1],[16,105],[24,148],[18,113],[6,19],[13,5],[3,13],[-16,19],[-10,35],[-20,100],[-33,159],[-3,57],[-12,35],[-20,-12],[-24,12],[-60,86],[-39,47],[-13,27],[-6,89],[-12,97],[-5,121],[2,30],[33,91],[0,47],[3,40],[-1,32],[-9,1],[-13,-14],[-20,-11],[-12,-1],[-116,9],[-133,10],[-110,8],[-96,7],[-3,79],[-5,133],[-4,94],[-6,149],[-39,93],[-41,101],[-15,25],[50,4],[36,2],[-7,271],[-11,28],[-10,87],[-6,49],[-18,41],[-4,45],[3,30],[10,19],[7,46],[-5,47],[-11,43],[-13,42],[-24,26],[-36,46],[-53,60],[-45,41],[-15,-5],[-79,-16],[-27,-9],[-18,10],[-59,-1],[-24,32],[-19,37],[-42,95],[-6,47],[-16,15],[-25,-6],[-25,7],[-48,39],[-44,40],[-22,-1],[-20,25],[-34,61],[-16,24],[-7,32],[-7,47],[-14,10],[-18,-9],[-19,-24],[-27,16],[-33,44],[-21,33],[-12,16],[-29,24],[-27,5],[-42,-35],[-34,14],[-54,13],[-46,25],[-17,65],[-9,44],[-27,27],[-22,33],[-26,50],[-13,17],[-23,14],[-22,17],[-2,32],[-8,42],[-2,10],[-15,51],[-7,4],[-8,-10],[-5,-8],[-6,10],[-2,22],[4,37],[-8,38],[-21,40],[-11,41],[-1,43],[-5,29],[-8,14],[-5,25],[-1,36],[6,43],[13,49],[-3,76],[-19,103],[-10,74],[-2,45],[3,34],[11,32],[23,81],[4,61],[-7,69],[-1,52],[5,37],[-8,47],[-16,45],[-11,1],[-16,-12],[-18,-38],[-22,-7],[-19,24],[-61,-10],[-94,-24],[-38,-24],[-22,-10],[-26,-8],[-43,-44],[-106,-169],[-22,-24],[-25,-3],[-15,-24],[-23,-18],[-46,-67],[-24,-54],[-15,-48],[-18,-2],[-13,13],[-44,-6],[-22,-17],[-24,-47],[-30,-85],[-13,-24],[-24,-26],[-28,-20],[-34,-32],[-16,-2],[-13,-5],[-12,14],[-4,31],[-18,19],[-42,10],[-63,22],[-65,4],[-33,-2]],[[36214,51711],[26,-3],[37,11],[24,27],[28,5],[27,-3],[92,-30],[55,-9],[20,-9],[20,-14],[14,-15],[4,-32],[-14,-51],[-10,-53],[-9,-75],[-7,-16],[-12,4],[7,-67],[-2,-27],[-6,-26],[-15,-54],[-22,-69],[-7,-14],[-17,-24],[-14,-31],[3,-29],[7,-29],[-8,-36],[-27,-53],[-16,-13],[-14,-6],[-14,6],[-23,53],[-3,-42],[-6,-42],[-8,-24],[-31,3],[-17,23],[-28,25],[-5,-69],[-18,-47],[-17,-15],[-27,-10],[-16,-20],[-30,16],[-27,31],[-16,3],[-12,-25],[-63,-5],[-29,-26],[-18,8],[-26,52],[-5,34],[-15,70],[-14,84],[-10,75],[8,66],[17,-3],[20,-9],[4,4],[1,21],[-4,18],[-32,-3],[-21,39],[-3,60],[4,124],[2,26],[15,36],[4,31],[-3,34],[6,61],[13,52],[52,67],[59,24],[172,-65]],[[37741,38512],[9,-16],[-16,2],[-18,-14],[-28,-12],[-11,23],[24,32],[9,24],[6,-5],[8,-17],[17,-17]],[[36504,36634],[-5,-7],[-18,72],[35,69],[12,-28],[-9,-55],[-10,-38],[-5,-13]],[[37427,38082],[0,-30],[-11,15],[-31,-12],[-11,23],[42,97],[8,-14],[6,-18],[5,-25],[-5,-16],[-3,-20]],[[37639,50149],[-28,-56],[9,65],[-4,45],[3,35],[19,34],[6,5],[-2,-41],[1,-13],[-4,-74]],[[39237,44298],[-10,-12],[-2,36],[29,47],[4,54],[15,-25],[4,-28],[0,-12],[-40,-60]],[[39193,44081],[-9,-33],[-11,5],[-5,22],[-8,22],[4,18],[8,10],[20,-2],[1,-42]],[[37532,51083],[-18,-27],[-5,-15],[-15,11],[3,16],[4,-2],[5,47],[25,-6],[1,-24]],[[36183,51997],[12,-30],[-40,-120],[-21,-18],[-24,-3],[-31,36],[-48,-3],[-15,9],[-1,52],[20,56],[40,-3],[69,45],[39,-21]],[[36028,52959],[-28,-26],[-16,10],[-15,69],[5,57],[20,19],[16,-4],[6,-8],[14,-93],[-2,-24]],[[35929,51767],[-76,-113],[-25,37],[-6,22],[5,21],[-1,9],[8,39],[43,32],[21,5],[27,-10],[5,-27],[-1,-15]],[[36265,51778],[-73,-18],[-34,29],[8,24],[25,38],[30,28],[28,12],[28,-15],[8,-33],[-2,-32],[-18,-33]],[[35992,51923],[-5,-85],[-50,36],[4,87],[24,24],[20,46],[7,56],[1,77],[8,14],[6,5],[6,-5],[3,-116],[2,-70],[-26,-69]],[[36068,52069],[-30,-19],[-5,18],[0,72],[8,40],[38,11],[4,12],[11,7],[7,-25],[-1,-41],[-32,-75]],[[35602,51017],[-30,-11],[38,144],[34,67],[1,133],[36,118],[34,49],[47,14],[26,-72],[-32,-205],[-9,-1],[-43,-108],[-48,-75],[-54,-53]],[[36531,35848],[-19,-26],[4,137],[10,45],[11,34],[14,21],[10,-29],[-8,-67],[-25,-81],[3,-34]],[[54907,76553],[-23,24]],[[32597,39035],[-4,9],[-22,34],[-20,63],[-5,29],[-3,1],[-118,-1],[-113,-3],[-11,-13],[-17,0],[-12,13],[-11,-1],[-17,-13],[-15,-25],[-44,-169],[-21,-72],[-16,-65],[-12,-110],[-4,-19],[-14,38],[-20,102],[-9,57],[-13,66],[-22,82],[-27,25],[-16,8],[-23,16],[-42,20],[-18,4],[-119,2],[-9,2],[-46,-9],[-24,6],[-25,46],[-55,81],[-11,26],[-21,17],[-13,2],[-7,-16],[-10,-68],[-11,-61],[-12,-35],[-39,-25],[-37,-27],[-20,-7],[-11,-30],[-5,-43],[-9,-38],[-53,-58],[-12,-24],[-6,-57],[-29,-71],[-10,-27]],[[50751,55512],[-116,-24],[-130,-39],[-55,-25]],[[25473,62483],[-15,-65],[15,-9],[14,7],[32,-3],[13,-71],[-4,-61],[-30,-158],[-4,-55],[-14,-81],[19,-54],[-18,-72],[-6,-46],[-1,-69],[9,-132],[-15,-190],[-25,-83],[-16,-32],[-28,-82],[-37,-25],[-51,-133],[-9,-35],[5,-38]],[[25569,62168],[-13,-11],[11,34],[1,21],[16,89],[10,-1],[3,-8],[-28,-124]],[[25596,61879],[-21,-81],[-2,23],[9,60],[12,21],[8,22],[2,26],[10,-13],[-3,-25],[-15,-33]],[[50701,81276],[121,97],[73,50],[35,15]],[[33474,59378],[-8,-11],[-25,23],[-9,28],[-1,88],[15,8],[29,-70],[17,-25],[-18,-41]],[[75645,63819],[-5,0],[-16,53],[-15,58],[-39,110],[-12,197],[-1,97],[-26,114],[-18,158],[-7,41],[9,51],[2,19],[-5,-4],[-14,-26],[-17,63],[-11,56],[-46,117],[-13,52],[-1,50],[-19,-50],[-27,-36],[-27,-54],[-18,-16],[-57,-10],[-33,72],[-47,175],[-7,40],[6,103],[-11,97],[0,52],[-3,34],[-8,-8],[-4,-23],[2,-36],[-3,-31],[-41,6],[-39,14],[34,-51],[36,-12],[19,-46],[3,-36],[-1,-40],[-19,-29],[-17,-17],[3,-39],[21,-47],[-26,-14],[-6,-31],[-1,-43],[13,-39],[5,-29],[-3,-26],[12,-29],[18,-60],[5,-42],[-7,-60],[-10,-23],[-16,-23],[-39,-75],[-19,-86],[-16,-40],[-20,-7],[-7,18],[-17,22],[0,42],[5,33],[33,81],[-18,-11],[-21,-23],[-31,-43],[-11,53],[-6,50],[0,61],[25,91],[-29,-45],[-8,-57],[4,-67],[-4,-47],[-11,-62],[-15,-37],[-25,-24],[-11,-37],[-17,-27],[0,54],[-5,71],[-18,168],[-4,-36],[9,-104],[0,-68],[-14,-54],[-27,-57],[-21,-8],[-12,8],[-19,36],[-20,51],[-4,82],[-8,45]],[[75319,64616],[-30,-40],[10,239],[22,-89],[6,-48],[-8,-62]],[[75432,64736],[-13,-17],[-12,14],[-16,56],[8,71],[5,11],[7,-23],[11,-50],[7,-38],[3,-24]],[[75215,64567],[-48,-20],[-25,6],[46,151],[-1,68],[-7,55],[-24,44],[-1,32],[-11,43],[-5,51],[26,16],[21,-29],[3,-16],[4,-42],[11,-43],[36,-88],[0,-55],[-10,-132],[-15,-41]],[[75520,64419],[-10,-47],[-5,34],[4,43],[4,24],[3,0],[6,-25],[-2,-29]],[[75541,64232],[-17,-3],[-8,17],[4,24],[-5,78],[14,8],[7,-1],[5,-22],[3,-42],[-3,-59]],[[75178,65070],[4,-25],[-15,15],[-12,17],[-7,23],[12,12],[18,-42]],[[64057,66752],[-9,-44],[-9,16],[-21,76],[6,53],[-10,76],[5,22],[26,11],[6,-4],[-8,-24],[15,-43],[2,-70],[-3,-69]],[[28428,65811],[1,-13],[-28,-36],[20,-26],[19,56],[15,-46],[8,-86],[-1,-15],[1,-12],[3,-17],[1,-24],[-16,-75],[-54,8],[-2,63],[-8,12],[-13,91],[-17,29],[-24,74],[14,19],[18,-6],[10,9],[25,7],[16,10],[12,-22]],[[28548,66764],[-6,-5],[-24,58],[-19,17],[30,41],[13,35],[0,76],[7,42],[-2,36],[7,37],[-9,42],[-26,33],[-50,131],[-79,32],[-41,1],[22,21],[21,-2],[32,-13],[39,-6],[23,-39],[22,-51],[21,-20],[8,-14],[-1,-14],[3,-14],[27,-24],[26,-39],[8,-113],[-36,-54],[-6,-164],[-10,-30]],[[29714,64050],[-8,-42],[-30,-81],[-65,-20],[-73,-4],[-5,22],[-2,20],[5,30],[0,12],[-3,12],[26,13],[18,37],[27,7],[34,-27],[19,-1],[27,29],[22,63],[13,-8],[-5,-62]],[[28404,66075],[0,-70],[3,-52],[-3,-19],[-30,-34],[-8,-20],[-28,-20],[-17,-27],[-9,45],[-17,27],[-2,47],[-13,-16],[-19,10],[-30,35],[-19,48],[27,8],[5,-30],[22,37],[-5,19],[-4,3],[-7,36],[32,94],[7,60],[-15,98],[14,6],[36,-34],[16,-34],[0,-46],[16,-35],[21,-86],[27,-50]],[[28196,67240],[34,-18],[18,2],[11,12],[49,-5],[41,17],[6,-30],[-1,-16],[-86,-15],[-78,-45],[-43,-31],[-21,-3],[-15,16],[-52,93],[14,-10],[38,-52],[24,10],[22,34],[4,26],[-4,13],[10,41],[29,-39]],[[28514,66252],[-31,-12],[-23,11],[-5,10],[9,16],[21,13],[34,1],[15,-15],[2,-7],[-22,-17]],[[29428,64932],[6,-10],[-17,-23],[-40,28],[-9,-2],[-8,31],[-3,22],[2,21],[24,-16],[12,-30],[33,-21]],[[29325,65707],[-22,-63],[-12,6],[7,78],[15,12],[6,0],[6,-33]],[[29387,64639],[-20,-18],[5,30],[37,51],[21,44],[11,16],[5,12],[16,17],[8,28],[-2,24],[-17,38],[0,27],[6,20],[29,9],[-8,-29],[12,-82],[-39,-103],[-33,-31],[-31,-53]],[[28708,66524],[46,-65],[39,-24],[42,-82],[18,-29],[4,-26],[-7,-120],[-10,-73],[2,-63],[-10,18],[-10,42],[-17,24],[-5,13],[29,2],[3,66],[14,51],[-2,54],[-34,59],[-24,53],[-36,16],[-34,52],[-20,7],[-24,-10],[9,31],[6,41],[4,8],[17,-45]],[[28982,65351],[-12,-4],[-21,16],[-48,70],[-23,6],[8,39],[17,-14],[39,-60],[15,-30],[25,-23]],[[29211,65031],[-2,-15],[-35,115],[-44,28],[-26,28],[6,15],[17,7],[3,37],[-7,39],[-24,80],[-13,54],[-6,12],[-1,45],[27,-70],[12,-62],[18,-61],[13,-105],[35,-36],[25,-51],[2,-60]],[[29081,65783],[2,-30],[-19,6],[-28,-11],[-9,0],[6,20],[19,27],[1,26],[-24,37],[-27,92],[-13,22],[-6,35],[-23,38],[5,20],[4,4],[16,-9],[35,-134],[2,-12],[59,-131]],[[29711,64763],[17,-9],[9,1],[32,-17],[19,-24],[4,-10],[-10,-21],[-29,40],[-26,5],[-36,-1],[-14,8],[10,43],[24,-15]],[[29745,64231],[-37,-28],[-3,33],[18,27],[22,-32]],[[62435,74713],[27,9],[46,27],[13,-13],[13,-27],[7,-23],[1,-42],[5,-7],[23,14],[9,-17],[18,-21],[29,-20],[43,32],[21,8],[18,-1],[9,-10],[4,-33],[-4,-41],[-5,-22],[9,-16],[35,-40],[15,-21],[-7,-38],[26,-93],[9,-36],[10,-44]],[[62913,74254],[-1,53],[1,41],[-4,24],[-20,33],[-1,14],[6,8],[16,-5],[20,2],[10,13],[-22,43],[-19,29],[-17,19],[-3,12],[0,8],[3,10],[28,24],[3,21],[-2,25],[-44,36],[-34,-14],[-30,41],[-19,31],[-24,33],[-21,19],[-20,42],[-36,43],[-23,12],[1,7],[4,8],[9,6],[64,-1],[7,7],[4,19],[9,27],[10,41],[-1,34],[-63,55],[-46,50],[-32,67],[-22,61],[1,20],[6,19],[49,56],[4,15],[-1,10],[-18,29],[-22,29],[-7,22],[-14,11],[-27,1],[-46,36],[-10,4],[-2,7],[2,7],[33,15],[0,12],[-10,16],[-19,12],[-17,29],[-6,26]],[[63492,75947],[25,-34],[45,-90],[63,-147],[15,-42],[10,-48],[9,-59],[14,-52],[64,-130],[28,-48],[45,-63],[16,-14],[21,-3],[39,-1],[35,-24],[18,-17],[18,-25],[16,-28],[17,-77],[-62,25],[-62,-4],[-36,-16],[-34,-22],[-32,-32],[-21,-62],[-17,-142],[-25,-134],[0,-61],[12,-59],[-2,-29],[-11,-12],[-15,-25],[-19,-122],[-10,-25],[-12,-15],[-3,15],[0,32],[-27,28],[-14,-32],[-10,-67],[-20,-71],[-1,-13],[5,-219]],[[62653,75239],[3,19],[-8,9],[-8,0],[-8,-9],[0,-24],[10,-5],[11,10]],[[62506,75476],[-6,-7],[-9,7],[-3,14],[1,16],[9,3],[7,-4],[2,-14],[-1,-15]],[[89771,44956],[-7,-69],[-14,-55],[-1,-32],[3,-45],[22,-33],[18,-21],[10,-58],[31,-81],[-1,-56],[16,-69],[16,-137],[4,-121],[16,-80],[-10,-172],[11,-70],[15,-58],[18,-116],[13,-106],[19,-30],[38,-36],[41,40],[28,53],[31,13],[43,28],[31,-71],[17,-80],[74,-104],[42,-68],[32,-37],[30,-50],[-3,-50],[-7,-39],[7,-61],[4,-71],[-6,-86],[22,-130],[7,-103],[23,-101],[-2,-104],[-4,-40],[-3,-58],[18,-72],[17,-54],[24,-58],[33,-89],[23,-17],[20,-2],[-3,-90],[41,-179],[22,-147],[-15,-197],[-14,-114],[3,-56],[53,-137],[30,-25],[-6,-65],[-4,-101],[24,-78],[27,-58],[30,-35],[29,-28],[38,-28],[48,-12],[25,-44],[13,-35],[39,-12],[17,7],[22,14],[14,-24],[11,-31],[21,-86],[44,-85],[30,-14],[18,-43],[24,-11],[22,-6],[30,-33],[49,-75],[45,-13],[20,-21],[44,-83],[17,-44],[18,-66],[-22,-6],[-21,13],[-13,-64],[29,-90],[35,-63],[41,-67],[40,-94],[10,-72],[11,-29],[13,-101],[35,-59],[2,-108],[18,-149],[19,-135],[14,-40],[17,-65],[18,8],[14,21],[28,-64],[15,-28],[8,16],[-17,123],[11,72],[10,9],[16,2],[18,-58],[26,-62],[47,-55],[38,-52],[11,2],[-4,40],[1,59],[15,9],[14,-29],[25,-91],[5,-188],[0,-158],[17,-162],[24,-43],[16,-40],[28,-54],[18,-51],[23,-23],[74,-108],[20,-13],[32,-2],[40,-49],[19,-45],[43,-169],[20,-59],[43,-59],[19,-19],[29,-40],[10,-59],[3,-34],[17,-63],[25,-75],[38,-41],[34,-91],[2,-148],[18,-73],[12,-32],[27,-30],[11,-24],[-23,-195],[22,-391],[-12,-122],[22,-121],[52,-210],[12,-74],[7,-87],[34,-111],[-2,-169],[13,-80],[-3,-105],[-40,-112],[-31,-139],[-1,-118],[-20,-228],[-14,-62],[-10,-95],[-43,-230],[-2,-90],[6,-108],[-7,-103],[-11,-71],[-10,-130],[-44,-202],[-63,-150],[-4,-114],[-8,-50],[-13,-62],[-39,-69],[-23,-29],[-9,-40],[-22,0],[0,-13],[15,-12],[-7,-21],[-58,-36],[-40,-47],[-40,-113],[-17,-60],[-21,-57],[-13,-27],[-6,-28],[-8,-72],[-21,-13],[-18,-21],[8,-68],[-9,-78],[-3,-53],[-10,-34],[-11,12],[-10,-5],[-12,-19],[19,-5],[11,-9],[-39,-76],[-36,-78],[-10,-51],[-15,-65],[-14,-144],[-11,-83],[8,-58],[-2,-11],[-8,-4],[-5,7],[-17,-20],[-4,-20],[7,-25],[4,-8],[-2,-12],[-6,-13],[-16,0],[-19,-21],[-53,-213],[-23,-57],[-27,-87],[-10,-79],[-8,-86],[-10,-145],[-9,-103],[-21,-99],[-7,-71],[-3,-135],[10,-103],[-7,-54],[0,-52],[-8,-49],[-34,-11],[-28,-40],[-40,-65],[-23,-24],[-51,-18],[-99,8],[-189,-24],[-37,-15],[-70,-45],[-68,-70],[-66,-94],[-149,-256],[-117,-28],[-22,0],[-18,7],[-21,-16],[0,-32],[19,-33],[14,-31],[25,43],[11,-12],[4,-79],[1,-50],[-8,-27],[-15,-20],[-17,13],[-2,27],[-22,65],[-26,57],[-25,18],[-14,-19],[-23,-20],[-20,72],[-20,63],[-28,7],[-24,-1],[-19,27],[-39,43],[8,33],[10,35],[22,13],[-6,48],[-12,39],[-30,10],[-21,-7],[-12,-30],[-16,-54],[-64,-67],[-32,37],[-36,55],[18,-4],[36,2],[30,49],[13,31],[15,66],[-19,46],[-18,34],[-26,30],[-98,-102],[-21,-15],[-19,-20],[34,-17],[20,5],[21,-30],[-34,-42],[-26,-12],[-34,-25],[-63,-66],[-80,-136],[-35,-39],[-41,-32],[-56,37],[-31,8],[-40,56],[-67,38],[-63,74],[-44,38],[-31,8],[-43,-16],[-73,67],[-56,7],[-36,-67],[-29,5],[-18,9],[-59,110],[-56,55],[-107,28],[-66,76],[-49,146],[-94,168],[-25,61],[-12,60],[-1,47],[13,90],[17,89],[3,50],[-35,167],[-50,159],[-23,49],[-62,106],[-57,79],[-15,42],[-4,21],[27,-10],[12,32],[19,11],[14,-43],[17,-8],[0,72],[10,35],[-7,15],[-5,14],[-25,16],[-28,-24],[-21,-31],[-28,-26],[-11,-28],[-29,-1],[-12,-7],[-58,-53],[-36,-1],[-57,18],[18,73],[23,43],[19,50],[30,173],[-5,151],[-15,61],[-48,125],[-22,76],[-27,80],[-13,-46],[-8,-49],[-26,-70],[-13,-157],[-50,-239],[-35,-3],[-30,10],[-52,-28],[-35,-33],[-32,0],[-18,-10],[-23,8],[37,187],[31,-5],[35,7],[15,-3],[23,2],[18,86],[11,96],[-7,62],[-3,64],[7,73],[3,53],[43,174],[37,89],[42,72],[-5,68],[-14,85],[-4,65],[20,20],[19,41],[-22,187],[-14,55],[-22,55],[0,-71],[2,-70],[-30,-89],[-40,-64],[-26,-60],[-25,-136],[-32,-115],[-30,-43],[-27,-9],[-27,-18],[-42,-45],[-42,-39],[-30,-50],[-26,-27],[-86,-230],[-40,-76],[-8,-31],[-16,-26],[3,-37],[13,-24],[13,-102],[-8,-22],[-14,11],[-35,57],[-22,-21],[-18,-23],[-46,105],[-20,24],[-24,42],[-26,36],[-11,5],[-19,-8],[2,28],[13,23],[11,6],[21,-34],[24,-30],[14,-2],[6,12],[-23,118],[-15,104],[-7,30],[-19,106],[-9,30],[-40,74],[-43,88],[-11,104],[-16,67],[-20,42],[-31,38],[-85,14],[-35,107],[-21,133],[16,9],[19,2],[7,41],[-5,64],[-84,78],[-40,83],[-34,35],[-31,14],[-42,-3],[-53,3],[-126,131],[-30,4],[-90,-41],[-31,7],[-137,179],[-91,86],[-30,15],[-39,15],[-32,-21],[-22,-19],[-46,-22],[-182,14],[-156,-28],[-105,-19],[-67,-24],[-112,-107],[-133,-103],[-108,-49],[-99,-65],[-66,-19],[-84,-8],[-179,32],[-61,-24],[-97,-120],[-29,-29],[-55,-33],[-141,-155],[-65,-33],[-42,-11],[-36,-32],[-32,-66],[-45,-183],[-27,-86],[-61,-138],[-39,-46],[-40,6],[-44,-48],[-38,51],[-31,9],[-50,-4],[-174,-58],[-25,68],[-32,10],[-60,-3],[-90,20],[-164,-25],[-79,-28],[-31,-25],[-58,16],[-99,-23],[-35,-38],[-26,-35],[-51,-154],[-56,-51],[-47,-1],[-51,-12],[-105,-148],[-106,-144],[-36,-15],[-40,-24],[-52,-12],[-26,-13],[-122,37],[-77,4],[-97,22],[-83,71],[-64,40],[-73,155],[-44,58],[-80,70],[-23,-2],[-19,-19],[-33,49],[-1,64],[-9,54],[1,142],[5,167],[29,-38],[23,-36],[49,2],[44,62],[25,92],[21,103],[-3,110],[-15,193],[10,41],[15,16],[5,96],[4,296],[-11,111],[-68,226],[-45,197],[-32,88],[-28,143],[-23,198],[-7,100],[-7,185],[8,105],[-4,61],[-28,167],[-64,156],[-10,58],[0,61],[-15,71],[-51,143],[-52,123],[-9,60],[-10,249],[-19,114],[-89,287],[-104,248],[-29,102],[-13,34],[8,4],[11,-13],[13,-25],[7,-2],[6,21],[-1,47],[4,26],[9,-14],[11,-53],[33,-138],[10,-70],[42,-21],[13,18],[15,36],[5,97],[-21,44],[-20,19],[-32,72],[-21,115],[-33,107],[0,38],[15,28],[25,-15],[23,-62],[25,-57],[-4,-100],[-4,-27],[2,-23],[9,-22],[12,-17],[13,25],[11,58],[7,-7],[18,-133],[14,-36],[27,-42],[24,32],[11,28],[-4,94],[7,91],[-4,67],[-61,177],[-56,218],[-34,109],[-28,164],[-18,56],[-24,92],[-1,104],[2,71],[19,151],[18,79],[56,181],[3,78],[0,59],[8,90],[0,63],[-8,59],[-23,100],[31,177],[45,226],[18,33],[28,31],[5,-47],[-13,-157],[19,-81],[-6,-92],[18,15],[27,18],[21,48],[11,46],[51,184],[30,69],[41,50],[85,61],[81,80],[39,77],[49,66],[34,73],[32,49],[166,183],[28,34],[36,4],[44,-6],[40,10],[43,-42],[31,-5],[77,46],[41,40],[71,89],[31,25],[72,28],[82,37],[98,154],[70,-10],[63,-15],[51,46],[119,28],[66,39],[124,102],[33,35],[50,73],[44,91],[43,123],[27,110],[11,57],[26,90],[17,71],[14,34],[48,48],[71,135],[23,28],[4,43],[-15,24],[-19,15],[-13,143],[-12,99],[-1,69],[5,66],[28,103],[19,44],[28,51],[25,16],[21,45],[34,44],[15,45],[21,91],[19,69],[15,-3],[28,-160],[19,-85],[35,-100],[32,-148],[27,-67],[13,-44],[10,-20],[3,28],[-3,33],[13,112],[-6,79],[2,31],[6,12],[13,-8],[25,-44],[13,-16],[9,3],[-1,72],[13,45],[-5,31],[-22,-2],[-9,39],[-18,44],[-21,32],[-24,74],[-8,28],[10,14],[15,-2],[13,31],[5,42],[-11,69],[12,25],[22,-7],[36,-109],[16,11],[13,44],[23,12],[24,-8],[15,-31],[32,-32],[42,4],[22,-8],[45,6],[22,-10],[-4,17],[-25,20],[-27,4],[-32,-2],[-14,21],[-5,55],[8,40],[5,17],[21,-7],[19,2],[2,53],[7,48],[11,39],[0,37],[-12,-10],[-28,-86],[-14,70],[-20,53],[4,77],[12,76],[18,10],[16,-12],[23,45],[13,34],[-3,28],[3,21],[16,-6],[62,-69],[12,-36],[13,14],[4,39],[-1,39],[-14,-5],[-32,3],[-7,22],[3,19],[-15,46],[21,29],[17,2],[13,20],[0,27],[4,12],[10,-17],[32,-7],[31,-35],[15,-8],[6,19],[2,41],[-39,41],[-1,40],[-17,47],[0,45],[24,39],[5,37],[15,15],[27,0],[19,32],[21,11],[6,70],[-1,48],[9,12],[21,-20],[-6,-55],[0,-53],[-6,-29],[8,2],[5,12],[9,35],[22,-14],[6,-37],[3,-37],[11,-12],[15,56],[21,15],[-1,71],[8,51],[2,38],[13,19],[3,40],[-10,28],[-6,51],[18,11],[18,-25],[13,-64],[8,-29],[11,16],[7,42],[22,25],[22,-34],[24,-48],[31,42],[28,77],[-5,47],[4,49],[35,26],[29,-19],[25,-52],[54,-39],[46,-56],[20,-36],[40,-58],[25,-60],[34,-107],[82,-131],[5,-23],[-11,-43],[-10,-56],[-12,-95],[-3,-139],[12,10],[12,50],[13,-10],[14,-32],[2,31],[-9,18],[-15,64],[0,34],[12,28],[19,32],[20,22],[13,18],[2,24],[18,23],[28,8],[16,-4],[118,-59],[29,-60],[3,-73],[11,-26],[7,46],[-2,100],[10,20],[31,-15],[22,-20],[30,-66],[6,-32],[13,-21],[4,30],[-6,43],[-4,50],[6,43],[36,3],[23,10],[-11,16],[-15,6],[-25,40],[-17,42],[27,42],[-1,10],[-25,-1],[-34,40],[-29,56],[22,103],[45,101],[25,34],[2,34],[12,62],[8,53],[2,42],[11,43],[28,41],[37,15],[18,16],[18,38],[16,46],[-34,90],[3,50],[6,59],[42,43],[22,112],[15,17],[33,-3],[13,10],[-2,89],[3,35],[14,14],[18,-12],[11,-39],[25,-36],[9,20],[-4,39],[-3,51],[23,11],[19,3],[1,41],[-3,33],[8,14],[48,7],[13,34],[7,29],[6,-16],[8,-66],[27,-38],[80,-1],[45,27],[19,-16],[30,-13],[32,31],[20,24],[33,-31],[11,-32],[8,69],[20,24],[20,14],[26,-12],[10,4],[-23,51],[1,46],[-1,69],[4,62],[8,45],[-55,91],[-55,14],[-40,-19],[-17,15],[-36,72],[-34,27],[-2,18],[41,52],[16,-9],[24,-49],[14,-17],[12,4],[7,38],[11,20],[20,-12],[62,-82],[34,-80],[18,21],[31,45],[29,-9],[17,-27],[25,-97],[20,-48],[48,-13],[24,-19],[25,-32],[33,3],[70,-12],[65,-62],[27,-39],[32,-11],[18,-15],[34,-5],[53,44],[24,-40],[11,-28],[48,-52],[53,-16],[37,53],[55,39],[38,60],[28,29],[27,49],[10,-2],[-22,-46],[-2,-26],[17,-11],[-2,-14],[-23,-35],[-29,-56],[1,-34],[11,-18],[13,8],[18,28],[23,16],[19,-23],[7,-80],[14,-53],[30,-7],[19,0],[19,74],[-10,63],[-12,14],[6,23],[48,104],[27,-3],[19,-102],[31,-53],[32,4],[17,-14],[14,-61],[-114,-251],[-5,-28],[15,-45],[6,-53],[-37,-128],[-14,-6],[-13,35],[-19,22],[-18,-16],[-18,-9],[-66,-71],[0,-183],[17,-109],[-10,-71],[-19,-126],[-22,-47],[-17,-30],[-57,-172],[-18,-41],[-19,-59],[6,-56],[7,-39],[22,-44],[83,-92],[38,-64],[66,-76],[15,-53],[9,-43],[47,-49],[34,-30],[10,8],[7,10],[8,0],[9,-6],[-2,-38],[-3,-21],[3,-27],[24,-34],[38,1],[22,8],[25,-36],[22,-24],[36,-48],[63,-58],[49,-38],[58,-140],[44,-81],[49,-59],[72,-41],[33,7],[54,-48],[53,-22],[28,-66],[9,-50],[3,-39],[26,-92],[54,-30],[69,-92],[57,-41],[14,-24],[25,-29],[48,-1],[84,46],[38,47],[51,74],[23,128],[14,103],[71,212],[20,105],[18,140],[15,87],[-5,95],[16,172],[36,237],[13,79],[-7,118],[-22,220],[10,77],[10,106],[-16,77],[-16,53],[-2,75],[17,140],[15,74],[16,96],[-9,182],[34,63],[13,32],[26,0],[12,-14],[3,36],[-10,34],[-4,39],[-8,20],[-16,7],[-13,21],[-19,22],[3,81],[33,156],[18,60],[11,-25],[14,-20],[2,45],[-5,46],[25,152],[27,207],[8,188],[44,36],[23,47],[13,55],[25,0],[17,-24],[-11,-41],[-4,-31],[47,-79],[16,-60],[7,-57],[9,-54],[4,-72],[0,-115],[6,-109],[17,-34],[15,-22],[22,-3],[31,-18]],[[92521,37009],[-7,-16],[-13,29],[-8,102],[6,59],[14,55],[3,30],[-6,62],[42,71],[10,37],[4,48],[-15,52],[-12,10],[10,29],[12,15],[9,6],[7,-5],[5,-102],[17,-36],[-3,-50],[-58,-259],[-16,-97],[-1,-40]],[[88751,42296],[-21,-51],[-11,7],[-10,-27],[-20,-13],[-12,0],[-22,-13],[-4,16],[4,51],[19,56],[18,35],[46,16],[36,25],[4,-4],[26,-65],[-38,-8],[-15,-25]],[[87975,43891],[12,-24],[13,2],[12,53],[7,-8],[5,-13],[4,-23],[-17,-40],[-8,-6],[-7,-23],[-12,-73],[1,-24],[11,-25],[27,-22],[13,10],[5,-3],[-5,-36],[-11,-27],[-36,12],[-32,-4],[-52,26],[-27,3],[-8,10],[16,21],[10,28],[-5,67],[4,84],[30,41],[14,42],[20,26],[13,-3],[-2,-26],[5,-45]],[[86238,45115],[23,-14],[10,-19],[7,-21],[1,-25],[-29,-11],[-52,37],[-51,-31],[-15,0],[-10,22],[8,61],[19,-9],[16,22],[-3,67],[-9,37],[27,68],[12,13],[12,0],[11,-48],[2,-51],[13,-48],[8,-50]],[[86282,45290],[37,-5],[45,43],[21,-18],[9,4],[33,41],[21,12],[15,30],[14,-33],[32,-38],[11,-40],[13,-19],[5,-12],[-20,-42],[-3,-45],[-21,3],[-25,-74],[-95,-124],[-85,106],[-37,71],[-24,99],[-5,82],[-10,51],[4,14],[5,6],[7,-1],[25,-56],[12,-15],[16,-40]],[[81439,36835],[-7,-24],[-54,180],[-15,123],[10,22],[10,6],[32,-170],[10,-39],[0,-40],[4,-12],[10,-46]],[[88220,31256],[67,-14],[26,21],[32,-17],[22,-56],[-16,-27],[-15,-4],[-49,23],[-46,-18],[-13,-23],[-9,-51],[-40,-28],[-18,31],[-48,22],[-17,-32],[-34,9],[-32,-14],[-43,8],[-46,57],[-14,26],[11,47],[16,34],[126,49],[67,41],[55,-7],[15,-9],[14,-21],[-10,-38],[-1,-9]],[[90412,29749],[-42,-38],[-15,17],[1,29],[3,13],[36,2],[17,-23]],[[90364,29671],[10,-28],[2,-11],[-24,22],[-39,-5],[24,40],[20,-8],[7,-10]],[[91400,40154],[-6,-6],[-10,0],[-13,11],[12,74],[6,-39],[12,-32],[-1,-8]],[[91370,40236],[-6,-3],[-7,6],[5,24],[7,19],[10,14],[-3,-52],[-6,-8]],[[91984,38311],[10,-15],[8,2],[8,-9],[-3,-38],[13,-42],[6,-30],[-10,-24],[-6,-8],[-15,20],[-42,121],[7,41],[24,-18]],[[91809,38984],[-8,-1],[-7,10],[6,23],[1,32],[10,-10],[7,-45],[-9,-9]],[[91646,39059],[-10,-18],[-6,42],[1,44],[10,15],[5,-58],[0,-25]],[[92649,36038],[-24,-158],[-7,3],[-9,24],[1,91],[10,58],[24,-10],[5,-8]],[[92622,36108],[-6,-9],[-12,55],[-4,56],[5,51],[14,11],[10,-4],[-11,-94],[4,-66]],[[89520,45676],[-23,-33],[-15,18],[-4,36],[2,16],[19,28],[21,-65]],[[89538,45972],[-17,-36],[-17,11],[-6,20],[6,29],[23,5],[11,-29]],[[89490,45994],[-7,-16],[-12,34],[14,40],[12,-19],[-7,-39]],[[90632,41341],[6,-55],[12,-42],[-5,-28],[-7,-21],[-18,19],[-12,51],[-21,41],[-5,23],[25,-2],[12,8],[5,9],[8,-3]],[[87943,45288],[-20,-35],[-1,26],[10,21],[25,84],[11,20],[6,11],[5,31],[1,46],[14,7],[-11,-105],[-40,-106]],[[87871,45159],[-44,-43],[24,58],[51,52],[8,12],[-2,-25],[-26,-43],[-11,-11]],[[88081,42754],[-12,-27],[-15,28],[-3,29],[-12,8],[6,27],[6,7],[6,33],[16,-39],[1,-43],[7,-23]],[[88017,42845],[-5,-4],[0,48],[8,24],[4,-50],[-7,-18]],[[87941,42840],[-17,-2],[-4,3],[-3,25],[5,23],[18,6],[7,-6],[-6,-49]],[[88738,41984],[-11,-10],[-3,24],[14,24],[9,34],[19,-30],[3,-30],[-31,-12]],[[87843,43879],[-7,-6],[-25,11],[0,21],[3,15],[7,10],[16,41],[11,-24],[5,-49],[-10,-19]],[[86831,45332],[-6,-9],[-22,89],[6,27],[-9,46],[15,5],[12,34],[4,-16],[1,-63],[9,-36],[-10,-77]],[[84777,43444],[-18,-36],[-12,29],[7,58],[12,20],[10,-10],[-1,-45],[2,-16]],[[84610,42971],[-11,-17],[-10,5],[0,23],[-11,24],[6,28],[4,14],[9,-2],[3,-23],[12,-26],[-2,-26]],[[82068,39868],[-17,-45],[-19,9],[-3,23],[13,37],[22,45],[7,-28],[-3,-41]],[[90289,28348],[32,-2],[18,14],[16,-2],[19,-33],[22,-18],[16,3],[13,-6],[12,-24],[30,-20],[14,-13],[11,-20],[13,-16],[81,-54],[57,-26],[71,12],[21,15],[21,22],[17,-20],[17,-32],[-3,34],[6,30],[17,23],[20,15],[32,-2],[31,7],[14,13],[14,2],[19,-17],[19,-9],[13,22],[21,51],[12,18],[55,-16],[15,0],[27,53],[17,-1],[51,-42],[22,-53],[-3,-97],[2,-34],[4,-34],[2,-67],[-6,-67],[-1,-52],[3,-52],[-3,-98],[8,-64],[-4,-44],[0,-21],[7,-19],[4,-22],[-3,-28],[3,-32],[-3,-27],[-11,4],[-4,21],[2,26],[-2,22],[-6,19],[-20,22],[6,13],[10,12],[-7,29],[-13,-24],[-8,-33],[5,-11],[-8,-9],[-17,-38],[-12,-51],[-5,-50],[1,-52],[-10,-40],[-14,-39],[-3,-49],[1,-91],[11,-83],[7,-113],[-10,-15],[-30,-7],[-14,-15],[-24,57],[-15,58],[11,24],[24,-14],[8,13],[2,16],[-2,15],[-30,32],[-33,15],[-11,-19],[4,-55],[-3,-13],[-24,-21],[-12,80],[-31,60],[1,-29],[13,-50],[-1,-21],[-5,-29],[-13,-10],[-5,-23],[0,-32],[-5,-51],[-20,-23],[-48,57],[-4,-19],[1,-17],[25,-33],[-12,-25],[-8,-29],[-14,-76],[-23,-64],[-11,-4],[-37,10],[-42,54],[-38,-6],[-62,4],[-40,-20],[-9,59],[-8,21],[3,18],[32,13],[33,-1],[-6,23],[-8,8],[-15,-5],[-41,19],[-29,-8],[-19,28],[-34,96],[-20,45],[-12,18],[-13,9],[-9,14],[-61,221],[-8,51],[-11,129],[48,-62],[18,-39],[9,-50],[16,61],[-3,19],[-43,73],[-6,21],[-2,25],[-10,-25],[-17,-3],[7,51],[-6,51],[-51,111],[-39,105],[-38,130],[-3,16],[-1,28],[-18,87],[-10,65],[-4,56],[17,114],[3,64],[27,-29],[63,-37]],[[89979,28734],[-8,-2],[-6,32],[3,47],[-14,45],[8,46],[-1,50],[5,22],[16,24],[3,43],[14,2],[25,-33],[9,-85],[-4,-51],[9,-46],[-8,-40],[-21,-32],[-30,-22]],[[91110,28941],[50,-104],[25,-17],[8,-11],[-2,-45],[-11,-20],[20,-26],[-3,-17],[-4,1],[-24,-35],[-29,-17],[-9,12],[-8,17],[-6,23],[-37,91],[4,25],[-8,38],[-18,-3],[-12,23],[20,22],[26,61],[18,-18]],[[90931,26844],[-13,-59],[-21,10],[-22,-10],[-13,40],[0,10],[16,-10],[6,13],[4,17],[5,4],[4,24],[14,29],[8,0],[9,-38],[3,-30]],[[91139,27240],[-15,-5],[-6,2],[1,30],[-2,13],[13,27],[20,-13],[7,-20],[-19,-17],[1,-17]],[[90953,26934],[-17,0],[-7,5],[-3,29],[-11,12],[6,9],[2,18],[7,20],[13,-22],[10,-71]],[[90217,28509],[-10,-47],[-11,60],[12,8],[9,21],[2,-3],[-2,-39]],[[91201,28624],[26,-34],[15,-38],[-20,-31],[-14,-6],[-9,36],[-29,-13],[-31,3],[-23,27],[-3,14],[14,14],[38,-1],[36,29]],[[91176,28504],[-14,-44],[-17,28],[-2,13],[21,10],[7,-1],[5,-6]],[[94132,20328],[-9,-23],[-3,26],[17,114],[17,20],[-3,-60],[-19,-77]],[[79367,45798],[-8,-41],[-14,23],[-17,7],[3,30],[14,5],[7,1],[10,11],[5,-36]],[[76899,44825],[4,-2],[4,3],[2,-4],[-7,-5],[-4,10],[-2,16],[-1,15],[2,0],[0,-6],[1,-5],[1,-9],[-1,-6],[1,-7]],[[76921,44818],[-3,-3],[-3,3],[-1,1],[0,3],[3,1],[3,2],[1,5],[1,7],[1,-7],[0,-6],[-2,-6]],[[70474,21234],[-34,-28],[-34,1],[-14,21],[-22,68],[-14,4],[-8,19],[-1,8],[15,5],[23,-19],[55,-16],[40,-37],[30,-12],[-12,-10],[-24,-4]],[[96649,35127],[6,-6],[5,-3],[3,-5],[0,-9],[-3,-10],[-3,-4],[-1,-2],[-1,-1],[0,-3],[0,-2],[-2,8],[-3,6],[-3,0],[-2,-6],[-1,0],[-1,6],[-1,6],[-1,5],[1,5],[3,5],[0,4],[-2,2],[-3,-2],[4,9],[5,-3]],[[84331,44685],[0,-6],[-6,1],[0,6],[6,-1]],[[33833,33138],[-6,-53],[14,-228],[-8,-32],[-14,-37],[-16,-2],[-19,6],[-13,-23],[-9,-100],[-25,-218],[4,-51],[21,-84],[7,-53],[6,-41],[5,-76],[-12,-34],[-11,-6],[-14,-19],[16,-93],[13,-43],[38,-87],[144,-122],[60,-72],[68,-97],[37,-100],[3,-83],[-54,-124],[-6,-103],[11,-73],[20,-68],[52,-88],[39,-32],[52,4],[9,-25],[5,-21],[8,-178],[-1,-67],[-15,-61],[-100,-282],[-86,-172],[-31,-94],[-11,-102],[-27,-48],[-148,-154],[-230,-137],[-186,-71],[-42,-24],[-299,-78],[-58,-11],[-75,7],[-61,-10],[-68,21],[-61,25],[-34,61],[-41,7],[-11,-30],[20,-78],[-9,-93],[11,-54],[24,-11],[23,-27],[21,-37],[-35,-4],[13,-29],[15,-18],[-2,-61],[-13,-148],[-34,-32],[-9,-8],[-11,-32],[-21,-142],[-7,-92],[9,-59],[41,-124],[-15,-81],[-26,-44],[-112,-90],[-45,-36],[-70,-25],[-114,-4],[-42,6],[-97,82],[-73,49],[-66,39],[-64,23],[9,12],[4,21],[-18,12],[-13,3],[-42,-43],[-18,-43],[-5,-38],[-1,-92],[8,-76],[30,-189],[3,-103],[-14,-130],[20,-76],[24,-34],[56,-34],[21,-23],[24,3],[7,-9],[-4,-16],[-14,-33],[1,-35],[42,-10],[43,7],[46,16],[11,24],[0,50],[-53,9],[6,18],[41,21],[53,33],[27,7],[18,-23],[12,-21],[16,-54],[9,-71],[1,-86],[-7,-81],[-7,-28],[-14,-35],[-95,-43],[-26,11],[-25,61],[-8,63],[-21,42],[-46,34],[-45,-10],[-45,-59],[-44,-19],[-15,-53],[110,-86],[52,-24],[17,0],[17,-11],[-15,-32],[-16,-20],[-79,-44],[-34,-31],[-41,-60],[-57,-132],[-17,-28],[-9,-34],[-6,-91],[19,-150],[-20,-63],[12,-70],[-6,-47],[-20,-67],[-80,-106],[-14,-78],[28,-45],[-2,-40],[-9,-36],[-33,0],[-120,24],[-44,-39],[-41,-49],[-11,-23],[-14,-14],[-83,-26],[-16,-17],[-88,-184],[-38,-115],[-45,-112],[-12,-47],[-3,-66],[7,-59],[6,-44],[16,-56],[33,-64],[170,-260],[35,-23],[181,-28],[40,-36],[23,-58],[9,-51],[-10,-128],[-11,-41],[-20,-36],[-43,-47],[-51,-25],[14,-18],[21,2],[46,16],[19,-16],[15,-50],[-28,-21],[-9,-24],[-20,-38],[-105,-148],[-56,-45],[-52,-59],[-70,-61],[-27,-34],[-37,-73],[-56,-79],[-61,-170],[-2,-33],[9,-22],[-34,-298],[-12,-35],[-24,-37],[-65,-62],[-31,-7],[-41,35],[-23,38],[-22,63],[-28,66],[-1,-23],[9,-40],[-6,-42],[-70,-19],[-18,-20],[63,9],[43,-13],[18,-15],[16,-32],[15,-38],[-12,-21],[-35,-18],[-44,-32],[-53,-58],[-29,-68],[-13,-48],[-14,-98],[-4,-64],[-22,-50],[-35,-44],[2,-11],[24,23],[18,7],[16,-59],[22,-119],[10,-82],[-2,-25],[-6,-33],[-45,-8],[-39,1],[-29,-15],[15,-15],[27,6],[37,-36],[41,15],[19,-23],[13,-22],[63,-172],[55,-106],[27,-63],[-13,-29]],[[30936,21513],[16,-25],[65,-118],[17,-48],[10,-56],[-26,35],[-27,-20],[-13,-34],[-12,-36],[0,-26],[9,-23],[27,-19],[64,-7],[5,-7],[37,-141],[19,-32],[22,-25],[51,-72],[49,-77],[58,-74],[62,-57],[57,-42],[54,-53],[58,-73],[63,-54],[67,-37],[69,-32],[105,13],[32,-4],[20,-23],[-20,-64],[-26,-51],[-35,-21],[-36,-8],[-34,1],[-33,10],[-31,-6],[-29,-21],[-31,-11],[-32,-2],[-31,-18],[-32,-13],[-32,11],[-84,51],[-55,12],[-185,20],[-59,12],[-59,18],[-31,0],[-45,-11],[-35,1],[-10,-11]],[[32069,20324],[31,-13],[61,10],[32,0],[14,-5],[6,-7],[42,11],[18,-1],[-5,-25],[-38,-24],[-16,10],[-82,-2],[-36,-25],[-15,0],[-36,-36],[-26,23],[-7,21],[18,29],[18,1],[12,12],[9,21]],[[32812,29278],[3,-36],[-15,4],[-34,35],[-12,33],[-2,14],[35,-15],[16,-14],[9,-21]],[[32856,61657],[-9,-23],[-31,9],[-6,29],[-1,20],[19,41],[22,-18],[9,-19],[6,-4],[0,-17],[-3,-12],[-6,-6]],[[32848,61966],[-4,-15],[-23,28],[-7,51],[1,11],[3,6],[9,-10],[12,-4],[8,-17],[1,-50]],[[53392,48525],[-4,16],[-12,57],[7,54],[7,41],[-8,82],[-18,74],[-20,93],[-6,18]],[[53261,41906],[11,218],[11,96],[0,116],[-7,298],[-7,41],[-5,48],[27,37],[14,27],[19,50],[13,69],[16,153],[58,352],[27,345],[35,163],[13,183],[96,236],[24,145],[50,72],[70,75],[51,135],[24,94],[28,179],[-1,187],[18,250],[-4,72],[-26,99],[-5,71],[-24,70],[-27,53],[-12,94],[-45,149],[-13,99],[-21,71],[-4,88],[-11,93],[-22,92],[-22,105],[0,32],[14,40],[12,13],[-4,-20],[-8,-23],[2,-19],[84,184],[6,36],[-3,41],[-1,49],[4,57],[-80,340],[-64,316],[-10,159],[-84,210],[-33,137],[-19,96],[-15,36],[6,18],[21,5],[49,22],[65,24],[61,56],[17,24]],[[49383,72064],[56,-11],[29,5],[67,51],[52,69],[41,36],[37,75],[32,48],[48,52],[136,111],[21,1],[45,-25],[39,8],[27,39],[29,93],[44,57],[57,58],[76,54],[50,51],[80,43],[199,28],[102,24],[70,-5],[70,80],[35,26],[152,6],[72,58],[272,0],[33,-19],[33,-32],[56,-75],[27,-17],[36,16],[84,72],[94,37],[51,42],[22,62],[44,23],[25,-47],[98,-48],[60,13],[26,15],[-9,71],[63,-19],[49,-34],[51,-69],[33,-14],[60,31],[125,16]],[[55555,74717],[-1,52],[-9,41],[-31,99],[-102,96],[-24,43],[-11,36],[-10,35],[10,1],[10,-9],[13,-11],[5,18],[-6,37],[-26,87],[-2,24],[13,74],[21,82],[-1,99],[7,75],[-8,49],[-3,60],[15,79],[14,20],[8,25],[1,85],[-31,39],[-35,8]],[[37300,16980],[61,-14],[31,-21],[8,-24],[36,-9],[5,-5],[7,-14],[4,-15],[-1,-20],[-62,48],[-86,3],[-20,34],[-44,-20],[-5,13],[0,17],[6,24],[28,-10],[32,13]],[[24851,12213],[-3,-1],[-6,0],[-4,0],[-4,-1],[-3,-1],[-3,0],[-1,0],[0,1],[-2,2],[-3,5],[-2,5],[-1,5],[1,7],[3,3],[0,4],[0,5],[1,5],[1,5],[0,3],[1,1],[2,1],[5,0],[3,0],[5,-1],[3,-1],[3,-2],[4,-5],[3,-6],[0,-3],[1,-3],[0,-4],[1,-5],[1,-4],[-1,-7],[-2,-7],[-2,-1],[-1,0]],[[0,0],[99608,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0]],[[0,3253],[447,8],[89,-8],[94,-25],[207,-2],[194,-11],[50,-33],[65,-20],[137,17],[110,9],[89,1],[823,-46],[843,-81],[172,-26],[154,-61],[162,9],[957,-47],[148,0],[586,-50],[1026,-114],[89,-4],[97,3],[-51,62],[-96,56],[-129,40],[84,12],[184,1],[-37,29],[-101,16],[-366,19],[-1463,144],[-32,9],[-21,12],[-38,13],[-60,14],[-223,8],[-61,13],[-29,16],[15,7],[17,-3],[340,13],[38,16],[2,11],[-18,8],[-59,10],[-137,48],[-44,21],[23,33],[28,14],[105,11],[31,22],[-20,40],[-241,80],[-162,29],[-107,-20],[-203,-1],[-251,-10],[-68,11],[-70,32],[-82,57],[-42,15],[-80,47],[-106,46],[-561,111],[-98,30],[-702,175],[-29,30],[-18,32],[324,-71],[61,0],[72,18],[55,-5],[75,18],[84,9],[219,-55],[442,-89],[118,-31],[63,-22],[52,-7],[51,-16],[63,9],[38,-8],[92,5],[419,10],[166,-8],[195,-43],[75,-71],[56,-32],[107,25],[90,30],[173,25],[56,-10],[93,-37],[105,-62],[445,17],[187,-3],[133,-28],[485,93],[75,20],[111,65],[-91,20],[-65,7],[-25,33],[44,13],[140,18],[272,28],[161,27],[86,70],[369,109],[117,48],[108,79],[-242,157],[-232,136],[74,42],[73,33],[35,26],[29,37],[-76,45],[-71,33],[-117,32],[-440,77],[-150,33],[60,51],[80,39],[169,17],[1079,60],[1087,74],[27,37],[-144,44],[-123,11],[-45,13],[-17,28],[-1,38],[-14,6],[-46,4],[-196,44],[-41,17],[-65,41],[-17,32],[39,82],[60,35],[104,19],[75,7],[225,-1],[88,10],[37,11],[-7,39],[-25,18],[-1,24],[38,14],[47,-1],[13,29],[-26,47],[-67,25],[-176,43],[-400,65],[-155,49],[-89,38],[-74,44],[-75,21],[-52,23],[11,28],[-24,44],[-29,8],[-127,-19],[-227,10],[-278,41],[-192,47],[-251,127],[-99,63],[73,44],[80,28],[334,65],[50,22],[68,58],[-112,24],[-95,-2],[-84,16],[-342,4],[-193,-8],[-162,72],[-121,71],[-34,36],[-26,64],[41,94],[34,67],[-4,83],[9,113],[58,38],[45,7],[105,-87],[90,-7],[131,17],[83,45],[44,17],[81,4],[156,-20],[71,8],[80,-4],[251,-58],[55,-27],[30,-21],[9,-30],[31,-31],[107,-15],[299,17],[78,-7],[212,-85],[180,-91],[62,-23],[102,-15],[36,13],[31,34],[97,42],[218,52],[52,52],[-29,28],[-84,30],[-51,10],[-28,34],[2,47],[17,45],[57,11],[104,-61],[130,-57],[45,-8],[35,2],[65,20],[78,15],[149,-122],[88,-8],[110,-1],[21,19],[-13,32],[-18,35],[-23,5],[-3,32],[48,30],[33,13],[-13,22],[-53,33],[-31,6],[-28,14],[9,23],[35,10],[49,34],[-15,39],[2,51],[-20,27],[-116,53],[-169,87],[-157,39],[-350,-31],[-124,20],[-81,23],[-88,30],[103,32],[108,22],[32,20],[41,40],[48,29],[39,8],[128,-15],[289,-108],[61,-12],[198,-49],[55,-3],[68,11],[-55,48],[-61,34],[-145,96],[16,46],[94,76],[245,6],[107,27],[139,58],[179,96],[154,12],[192,30],[65,-22],[164,-93],[103,-32],[35,-3],[37,3],[-97,116],[63,14],[80,13],[66,29],[49,24],[168,111],[150,31],[426,48],[146,-44],[123,-5],[27,13],[25,59],[65,115],[55,41],[185,43],[145,-2],[104,-47],[97,-31],[89,-14],[90,1],[134,27],[178,9],[83,14],[96,-26],[236,-9],[183,-37],[113,0],[153,36],[83,5],[299,58],[234,12],[177,-26],[286,16],[290,-12],[117,-21],[652,13],[518,55],[71,19],[111,60],[61,55],[41,17],[87,6],[149,-12],[205,-41],[176,15],[337,-23],[32,19],[32,104],[55,165],[47,49],[77,-13],[233,-94],[5,-40],[-24,-29],[-38,-11],[-11,-80],[31,-23],[52,7],[33,-35],[-73,-60],[-52,-34],[-33,-15],[-23,-115],[-31,-38],[-4,-42],[50,0],[50,18],[44,4],[140,30],[255,35],[84,17],[48,6],[31,23],[-43,57],[-14,47],[26,39],[-7,67],[-24,68],[49,50],[46,-11],[79,8],[45,-25],[69,-22],[66,-11],[63,-45],[21,-98],[-19,-100],[-65,-73],[-121,-66],[-137,-105],[29,-50],[71,17],[309,-5],[199,8],[125,-12],[158,-27],[125,-39],[149,-8],[93,15],[87,-20],[339,84],[138,48],[79,-24],[128,20],[71,-18],[133,30],[84,3],[97,-12],[296,-6],[22,-55],[90,-83],[73,-32],[93,14],[67,25],[106,-9],[153,35],[153,-11],[64,6],[29,23],[25,51],[-47,28],[-134,36],[-123,74],[-55,16],[-88,-9],[-41,13],[-44,24],[57,29],[70,93],[-29,84],[-33,18],[-81,-3],[-98,-30],[-39,21],[-64,11],[-25,78],[-68,146],[-36,42],[-108,38],[-93,19],[-90,24],[-27,58],[17,79],[108,17],[104,-8],[58,-15],[67,-6],[77,-16],[50,-23],[40,-13],[75,0],[260,21],[35,15],[31,28],[55,7],[51,-4],[74,17],[-85,23],[-91,44],[-137,53],[-115,29],[-209,20],[-107,-7],[-67,11],[-239,-6],[-65,21],[-46,58],[-65,138],[-18,72],[44,27],[29,30],[71,3],[103,-12],[34,-14],[25,-43],[-25,-44],[-33,-23],[20,-21],[105,-6],[52,-13],[45,-5],[97,20],[142,8],[71,-20],[85,-15],[125,24],[445,-13],[54,-6],[54,-40],[46,-24],[49,10],[145,-46],[77,-36],[79,-18],[67,-5],[75,9],[98,30],[81,12],[58,-11],[123,-6],[94,-36],[73,15],[77,41],[244,29],[163,-8],[298,-74],[69,-7],[136,44],[44,72],[-6,81],[39,19],[33,-9],[60,56],[82,-5],[51,-10],[31,36],[28,77],[97,6],[70,-12],[92,-49],[0,-41],[-38,-43],[-63,-107],[39,-63],[59,6],[75,-13],[91,27],[58,1],[101,-93],[68,-5],[53,5],[172,84],[50,9],[61,-38],[89,-89],[78,-51],[114,-32],[99,-9],[116,-42],[64,-35],[146,0],[62,-15],[176,-72],[160,36],[83,33],[40,61],[-20,91],[-7,92],[24,38],[42,7],[191,-103],[-12,62],[-16,47],[-49,82],[7,61],[41,19],[80,-32],[96,-16],[79,-36],[155,-128],[50,-112],[105,-28],[73,5],[83,18],[111,16],[86,-5],[79,21],[24,-61],[-74,-88],[-29,-57],[24,-15],[45,13],[37,18],[129,-9],[104,40],[89,14],[84,42],[69,-4],[53,-7],[72,-33],[69,18],[41,-7],[56,-2],[297,145],[67,-3],[85,9],[107,34],[83,15],[68,-1],[121,53],[193,-7],[98,28],[191,32],[128,37],[228,98],[92,58],[100,129],[63,129],[70,171],[-34,111],[-37,49],[-31,54],[-73,111],[-20,139],[7,131],[-26,123],[-26,91],[-54,152],[-66,99],[-77,133],[0,121],[-19,95],[-46,68],[-20,54],[36,11],[33,17],[89,21],[213,-37],[19,54],[54,40],[38,50],[-13,77],[-47,31],[-56,65],[26,52],[45,0],[22,57],[-17,56],[21,70],[41,90],[28,33],[-51,54],[-48,70],[12,54],[24,57],[29,80],[40,57],[26,20],[-7,19],[-61,20],[-56,4],[-101,-36],[-16,7],[-5,19],[-6,39],[10,95],[16,90],[14,13],[40,11],[38,69],[35,4],[22,-23],[7,-91],[12,-21],[-4,-44],[18,-15],[22,28],[41,14],[16,-31],[15,-15],[7,26],[-5,74],[-7,30],[-5,48],[9,23],[10,37],[-17,78],[6,29],[37,47],[18,9],[35,0],[63,-31],[30,-2],[22,14],[14,30],[11,98],[-27,35],[0,31],[16,20],[28,68],[42,4],[41,-6],[40,13],[-14,28],[-12,43],[45,21],[29,6],[77,-27],[30,-15],[28,35],[-9,34],[-30,19],[-5,30],[7,39],[48,-20],[11,8],[13,34],[-8,17],[-6,22],[63,5],[9,9],[13,27],[19,9],[56,-1],[12,14],[6,30],[-31,7],[-39,29],[-6,80],[9,57],[35,50],[42,34],[78,-30],[60,7],[24,-30],[33,-8],[8,34],[-15,30],[-10,49],[96,59],[31,-10],[38,14],[-14,45],[21,57],[27,8],[19,-50],[26,-10],[29,12],[71,58],[35,9],[35,3],[36,34],[9,40],[20,28],[62,38],[25,27],[55,95],[-10,24],[16,20],[163,86],[80,8],[133,52],[81,61],[51,25],[45,68],[55,11],[128,47],[96,77],[133,53],[62,-5],[25,-16],[16,-63],[26,-77],[40,-38],[-15,-34],[-38,4],[-41,-8],[-9,38],[15,28],[-15,25],[-37,-6],[-49,-13],[-33,-19],[-43,-41],[-34,-23],[-113,-61],[-74,-88],[-53,-93],[-32,-63],[-47,-5],[-11,-23],[19,-18],[15,-8],[35,-7],[-6,-27],[-24,-7],[3,-22],[25,-32],[5,-46],[-29,-7],[-44,49],[-50,5],[-39,23],[-25,33],[-24,-7],[-18,-47],[11,-52],[-21,-31],[-24,14],[-9,62],[-23,11],[-32,1],[-77,-67],[-28,-2],[-14,-34],[-45,-38],[-29,-31],[-71,-102],[-40,-43],[-76,-24],[-30,3],[-18,10],[-27,7],[-28,1],[-9,-27],[44,-88],[-24,-30],[-53,2],[-26,25],[-21,-24],[-17,-23],[-17,-34],[26,-72],[41,-32],[30,-6],[11,-27],[-65,-11],[-44,-63],[-20,-44],[-23,-38],[3,-44],[34,-66],[46,-47],[46,-4],[60,15],[14,13],[59,7],[26,46],[19,3],[17,-8],[27,-2],[15,30],[20,11],[28,-8],[54,1],[15,-27],[-17,-30],[-33,-42],[-31,23],[-27,-4],[-15,-22],[29,-47],[-11,-42],[-24,-42],[-29,27],[-4,45],[-40,27],[-39,12],[-26,-47],[-41,-13],[-6,-54],[-17,-50],[-24,15],[-9,62],[-67,50],[-35,7],[-70,-13],[-24,1],[-28,-11],[-20,-42],[29,-31],[10,-42],[-1,-31],[-6,-12],[-5,-26],[32,-37],[1,-50],[-25,1],[-21,15],[-81,130],[-51,58],[-22,51],[-53,12],[-38,1],[-46,-21],[18,-24],[9,-36],[-28,-15],[-35,-56],[-23,-48],[-14,-10],[-18,-28],[75,-61],[11,-24],[4,-41],[-24,-22],[-56,-9],[-99,43],[-43,1],[-15,30],[-22,-4],[-13,-51],[-16,-45],[-24,-30],[7,-46],[19,-11],[-15,-19],[-31,-15],[-21,-18],[46,-17],[9,-15],[2,-22],[-72,-16],[-47,-4],[-28,18],[-26,-9],[-17,-29],[-5,-39],[5,-48],[9,-34],[7,-13],[8,-29],[-43,-74],[-5,-16],[-3,-34],[21,-31],[16,-46],[-23,-23],[-25,-47],[26,-9],[44,-2],[48,6],[72,41],[20,7],[9,-16],[6,-25],[-18,-24],[-130,-68],[-24,-29],[33,-16],[67,-3],[26,-22],[-16,-24],[-24,-23],[-28,-54],[23,-20],[72,-32],[131,-42],[97,-14],[-22,49],[-3,60],[68,49],[35,16],[162,29],[44,-1],[34,-13],[-13,-25],[-37,9],[-65,-16],[-100,-54],[-18,-23],[7,-42],[85,-34],[27,-27],[-37,-81],[6,-52],[43,-57],[57,-65],[28,-43],[43,-25],[70,-61],[38,-61],[12,-140],[57,-116],[67,-53],[8,-46],[-22,-46],[-57,27],[-32,-27],[-12,-49],[40,-34],[64,-42],[138,4],[4,-46],[-32,-27],[-25,-34],[-31,-19],[-52,-12],[-13,-41],[22,-58],[72,26],[53,3],[55,-10],[17,-77],[65,-95],[16,-45],[-12,-43],[-40,-13],[-25,-34],[-36,-29],[-41,-16],[-76,-79],[-33,-8],[-14,-16],[65,-8],[45,-2],[97,64],[37,-14],[24,-42],[12,-49],[-24,-42],[-169,-25],[-82,-23],[-88,-66],[101,-31],[74,11],[37,-12],[51,-23],[56,12],[44,24],[33,-1],[31,-12],[4,-41],[4,-72],[7,-54],[-18,-36],[-88,-26],[-64,1],[-2,-76],[96,-57],[60,30],[53,-15],[0,-91],[41,-101],[36,-6],[30,46],[38,0],[15,-54],[-17,-91],[-29,-50],[-78,21],[-44,16],[-35,-34],[-58,-29],[-51,-4],[-45,45],[-52,34],[-83,17],[-78,8],[26,-39],[35,-23],[14,-69],[28,-72],[65,19],[90,-41],[56,-43],[24,-57],[-31,-91],[-51,-34],[-32,-16],[-56,35],[-39,0],[-41,-16],[-14,-42],[-27,-20],[144,-3],[45,-11],[33,-38],[-52,-50],[-95,8],[-41,-19],[-35,-36],[142,-22],[59,12],[93,38],[22,-38],[-37,-38],[-48,-61],[-100,-19],[-75,-1],[-98,22],[-26,13],[-41,7],[3,-37],[26,-26],[66,-94],[11,-36],[-21,-50],[-58,-37],[-65,-14],[-54,32],[-39,91],[-50,27],[-51,8],[-30,-4],[3,-46],[12,-49],[-20,-35],[-44,18],[-57,-16],[-53,-27],[-48,-30],[98,-14],[65,-3],[46,-46],[-17,-23],[-88,-10],[-86,-20],[-117,-50],[86,-21],[81,1],[57,-5],[47,-9],[13,-27],[-29,-30],[-192,-74],[-201,-91],[-74,-29],[-77,-16],[-179,-78],[-113,-36],[-318,-55],[-497,-139],[-169,-99],[-50,-76],[-32,-11],[-95,-26],[-95,-12],[-251,-8],[-257,37],[-208,8],[-113,-12],[-386,66],[-49,-3],[-60,-12],[-48,0],[-36,9],[-78,4],[-263,-26],[-27,-41],[33,-76],[96,-92],[160,-162],[86,-35],[53,-37],[100,-43],[224,-2],[306,-34],[174,-31],[-6,-60],[-105,-115],[-65,-44],[-155,-80],[-213,-40],[-163,12],[-289,65],[-362,60],[-538,57],[-118,26],[-139,26],[-79,-27],[-60,-25],[-133,-2],[39,-23],[537,-155],[458,-113],[54,-29],[65,-20],[-6,-72],[-26,-57],[-90,-50],[-234,-3],[-293,-40],[-146,-1],[-145,39],[-309,113],[-189,84],[-132,96],[-91,76],[-102,75],[7,-47],[18,-47],[50,-58],[73,-63],[5,-25],[-35,-4],[-53,30],[-45,-28],[-16,-33],[19,-44],[28,-42],[93,-94],[80,-25],[106,-57],[258,-106],[44,-36],[78,-78],[16,-59],[76,-58],[52,-9],[47,2],[16,50],[-3,61],[20,15],[74,15],[193,-21],[821,-12],[78,-35],[31,-45],[21,-93],[-87,-112],[-59,-48],[-97,-29],[-88,-23],[-133,-9],[-275,8],[-269,0],[209,-54],[203,-44],[282,8],[112,12],[97,21],[41,-37],[77,-78],[45,-25],[31,-26],[43,-85],[17,-50],[42,-58],[30,-49],[44,-33],[75,-15],[82,28],[159,13],[154,-45],[99,-14],[132,37],[105,52],[221,47],[41,20],[60,16],[91,-4],[36,-12],[46,-51],[43,-70],[63,-35],[67,-25],[38,-3],[126,-22],[164,21],[73,-21],[12,-40],[39,-32],[49,-11],[665,-180],[229,-35],[353,-18],[274,-2],[38,-11],[53,-35],[-105,-24],[-112,-3],[-169,9],[-60,-5],[-129,10],[-67,-7],[-61,11],[-91,-25],[-166,-19],[37,-27],[62,-6],[126,-10],[172,5],[15,-43],[-158,-10],[-336,-9],[-35,-7],[-26,-22],[50,-11],[31,-12],[16,-31],[-36,-79],[56,-55],[39,-9],[41,8],[71,-22],[69,-30],[146,-2],[173,40],[85,-1],[228,25],[207,-4],[289,48],[48,-1],[44,-6],[-80,-44],[-355,-110],[-127,-21],[-51,-14],[29,-54],[46,-56],[94,-60],[59,-89],[57,-19],[110,41],[27,-31],[5,-61],[-29,-49],[-37,-28],[-26,-27],[-17,-36],[46,-31],[123,-19],[163,-7],[151,-1],[93,-9],[341,194],[137,94],[67,39],[56,29],[288,119],[67,36],[76,53],[141,8],[193,86],[171,66],[68,13],[51,5],[60,14],[150,-5],[107,11],[190,42],[145,27],[154,23],[174,4],[463,44],[132,-19],[146,-46],[95,1],[125,14],[86,18],[39,-53],[20,-69],[-42,-64],[-70,-40],[-19,-66],[95,-33],[108,10],[206,32],[164,42],[45,28],[64,-8],[109,35],[136,146],[171,147],[144,94],[93,110],[77,63],[86,48],[58,24],[132,5],[189,76],[275,87],[211,-42],[223,-63],[110,51],[87,9],[74,23],[74,17],[53,45],[71,38],[54,55],[271,27],[284,36],[38,13],[37,-7],[98,10],[125,30],[172,10],[90,-3],[82,81],[164,17],[175,32],[73,24],[57,6],[1413,63],[61,31],[124,25],[47,61],[-190,25],[-58,26],[-65,7],[-38,-9],[-164,7],[-1303,94],[-27,8],[-45,57],[9,105],[-39,81],[-91,22],[-94,-2],[-119,-10],[-314,-44],[-125,-4],[-335,68],[-221,77],[-145,25],[-104,52],[-97,40],[-7,91],[23,85],[187,246],[117,118],[78,9],[71,53],[73,119],[59,56],[135,66],[59,17],[212,81],[58,2],[95,-13],[108,73],[329,156],[75,59],[91,35],[266,132],[238,64],[118,19],[144,39],[160,59],[139,57],[497,109],[298,29],[203,32],[144,-19],[143,6],[123,29],[57,23],[83,59],[276,-28],[178,40],[74,4],[78,18],[-31,21],[-28,3],[-28,28],[-37,58],[37,73],[28,36],[82,45],[43,64],[40,94],[135,185],[38,26],[86,8],[73,-5],[83,2],[210,-48],[39,19],[67,54],[56,68],[120,100],[23,30],[-10,49],[-180,-21],[-136,-33],[-131,18],[-17,28],[28,21],[49,8],[19,34],[-45,28],[-81,16],[-36,21],[3,51],[20,75],[44,21],[36,31],[96,105],[57,32],[164,29],[190,-44],[44,12],[46,59],[-47,90],[-36,34],[0,30],[100,-14],[93,-20],[109,4],[129,90],[181,75],[88,31],[78,18],[42,76],[62,144],[46,75],[-1,45],[-14,38],[-47,-11],[-43,-5],[-101,38],[-125,61],[-38,68],[-18,61],[39,33],[38,20],[41,5],[73,-25],[93,-62],[46,-24],[53,-46],[40,4],[47,64],[38,85],[32,26],[49,28],[54,41],[-24,40],[-58,21],[-8,24],[25,27],[47,6],[59,-59],[80,-39],[55,-13],[47,-32],[74,-108],[89,-179],[41,-2],[78,16],[84,7],[56,51],[12,128],[22,58],[-8,59],[-38,60],[-33,44],[6,33],[28,24],[37,8],[64,24],[99,-28],[54,-5],[81,16],[84,35],[86,25],[67,-19],[29,-64],[-33,-65],[-54,-48],[-49,-59],[-13,-64],[2,-35],[47,-9],[416,8],[55,-6],[72,0],[78,-21],[132,8],[118,23],[56,0],[97,-21],[69,-44],[143,13],[40,14],[39,59],[41,11],[48,-48],[15,-110],[22,-52],[61,-47],[60,40],[39,48],[94,93],[107,71],[82,42],[200,70],[99,44],[194,60],[250,32],[446,108],[147,12],[240,28],[123,30],[125,23],[77,80],[175,-61],[60,-7],[82,48],[90,119],[131,-49],[75,-77],[93,-60],[208,-104],[66,-24],[138,-21],[37,17],[65,69],[67,100],[42,42],[61,35],[69,55],[-18,30],[-39,10],[-36,16],[9,29],[122,7],[64,-101],[66,-33],[80,-33],[186,26],[159,2],[138,-20],[68,3],[61,76],[99,28],[56,-34],[35,-112],[127,-31],[266,-51],[30,13],[33,59],[23,72],[54,12],[69,39],[37,-6],[52,-47],[-18,-114],[-29,-105],[35,-85],[31,-47],[40,-8],[67,-2],[82,6],[51,-4],[261,42],[32,94],[42,107],[103,136],[40,-10],[31,-14],[70,-67],[42,-34],[9,-49],[-46,-47],[13,-31],[46,-25],[148,-41],[48,8],[71,43],[72,85],[39,98],[61,-5],[59,-20],[41,-51],[0,-97],[57,-66],[46,-42],[120,-45],[128,-11],[90,-27],[146,10],[71,30],[46,8],[80,24],[84,57],[52,23],[192,52],[145,57],[154,102],[150,61],[230,31],[64,13],[88,-1],[217,73],[82,42],[46,15],[52,52],[28,102],[22,63],[-4,61],[-20,80],[-46,71],[-47,104],[21,119],[37,49],[96,54],[95,11],[108,-7],[94,-11],[8,-51],[-41,-55],[-52,-54],[-31,-23],[11,-46],[68,-7],[149,10],[43,-42],[106,-184],[26,-87],[37,-25],[58,12],[125,-1],[87,13],[71,1],[37,-9],[38,-42],[72,-49],[72,36],[52,17],[63,-4],[99,-57],[99,-133],[107,-67],[7,43],[-14,53],[44,47],[53,79],[77,103],[61,105],[15,145],[29,119],[49,57],[48,37],[75,38],[92,8],[88,86],[62,35],[130,47],[163,47],[114,131],[39,16],[58,21],[107,8],[173,42],[54,6],[91,33],[80,78],[58,22],[104,-3],[88,44],[74,2],[68,22],[10,49],[-32,33],[-1,43],[38,56],[30,21],[90,-4],[75,-48],[55,-2],[14,-27],[-48,-34],[-32,-61],[55,-53],[49,-36],[59,7],[71,32],[70,-23],[31,-49],[0,-76],[15,-41],[49,36],[27,76],[-8,97],[3,60],[117,97],[46,73],[-82,15],[-58,-10],[-32,27],[-37,73],[101,61],[116,-2],[67,-52],[144,-83],[80,2],[72,-13],[15,26],[-27,122],[3,68],[-60,38],[-17,87],[25,91],[71,51],[97,24],[208,140],[55,30],[137,29],[160,14],[199,50],[355,-34],[95,-21],[59,-28],[57,-45],[74,-74],[107,-94],[139,-30],[39,-29],[51,-80],[-55,-52],[-45,-5],[-87,31],[-60,32],[-42,-13],[41,-55],[45,-34],[7,-46],[-24,-66],[-164,-130],[98,-37],[59,30],[54,55],[55,25],[37,10],[130,2],[74,22],[56,-16],[55,-35],[81,-35],[116,-38],[143,-147],[111,15],[60,32],[171,10],[147,-65],[83,-24],[240,-20],[143,-42],[91,50],[61,20],[128,10],[65,-10],[178,-54],[315,-55],[217,-29],[191,-1],[91,-24],[166,-26],[63,-20],[159,16],[74,21],[70,47],[39,-11],[27,-59],[-15,-101],[29,-69],[23,-69],[33,-57],[21,-49],[-15,-41],[-46,-37],[-64,-79],[4,-69],[27,-44],[-32,-53],[24,-74],[4,-45],[-22,-36],[-50,-22],[-85,-3],[-44,-21],[-7,-55],[22,-41],[49,-22],[14,-44],[-7,-66],[-22,-56],[-45,-26],[-49,-6],[-91,12],[-66,37],[-42,-33],[-31,-34],[-95,-77],[-44,-52],[-41,-55],[108,-31],[79,-55],[172,6],[55,24],[73,26],[39,-5],[24,-56],[-14,-89],[-3,-69],[-87,-190],[-29,-32],[-41,-52],[-48,-41],[-39,-20],[-75,-60],[-46,-109],[-50,-90],[-73,-154],[-42,-165],[-18,-99],[-28,-103],[-62,-177],[-40,-30],[-69,-72],[20,-48],[54,-5],[66,-11],[89,-37],[118,76],[62,48],[13,96],[-13,97],[38,57],[87,78],[205,56],[42,6],[68,19],[60,70],[53,70],[93,44],[77,72],[12,51],[32,11],[96,50],[25,37],[30,28],[21,63],[8,118],[24,89],[47,118],[38,86],[37,54],[99,29],[43,33],[57,73],[39,44],[-5,90],[22,83],[61,50],[78,92],[98,13],[74,48],[79,-33],[95,-46],[161,14],[76,-21],[59,25],[52,71],[19,87],[61,50],[69,-1],[114,87],[118,77],[96,18],[77,60],[55,102],[59,79],[73,75],[20,133],[46,67],[85,59],[71,32],[298,100],[229,66],[231,82],[71,-1],[93,45],[153,2],[40,4],[53,93],[114,86],[71,28],[90,74],[73,7],[103,-13],[87,-20],[78,-1],[113,62],[176,10],[54,30],[38,26],[249,87],[93,-17],[132,15],[80,-4],[76,-11],[96,-3],[166,31],[70,20],[132,76],[146,18],[64,20],[82,17],[67,-29],[48,-27],[29,-6],[39,-5],[95,30],[79,-8],[101,-33],[67,-27],[35,0],[62,24],[76,60],[71,24],[67,-15],[46,-25],[81,-34],[126,5],[120,13],[101,28],[87,30],[80,-46],[92,-17],[149,81],[57,-18],[39,-21],[32,-10],[39,-68],[142,13],[126,57],[108,43],[105,28],[83,39],[122,148],[-2,46],[17,28],[26,12],[194,-1],[60,12],[79,39],[137,-30],[131,-47],[34,5],[53,1],[93,-29],[105,-57],[93,-15],[385,-142],[218,-35],[110,-47],[28,-16],[32,-48],[58,-5],[46,19],[61,-73],[148,-55],[154,-27],[100,43],[170,123],[52,55],[-10,122],[89,136],[151,67],[188,35],[116,30],[154,28],[74,-29],[38,-21],[57,-25],[68,-76],[106,-172],[79,-62],[69,-5],[60,-10],[63,-39],[90,-121],[-54,-108],[-46,-40],[-196,-46],[-86,-37],[-75,-23],[-21,-90],[31,-42],[81,21],[95,10],[74,18],[68,28],[59,40],[140,21],[91,34],[82,20],[57,35],[58,-5],[58,-34],[46,3],[124,-11],[58,25],[51,2],[52,-19],[54,-26],[54,-7],[70,16],[98,42],[125,46],[117,15],[28,-1],[24,-9],[-117,-53],[-187,-72],[-100,-69],[59,-29],[352,77],[160,58],[142,26],[35,19],[116,90],[42,24],[125,32],[163,34],[124,39],[84,40],[63,4],[49,-29],[63,-33],[62,8],[76,31],[53,72],[31,53],[57,18],[73,16],[59,-18],[96,-38],[67,-20],[58,-151],[136,-133],[49,-35],[119,13],[128,-52],[55,7],[52,15],[47,-10],[70,32],[73,167],[67,163],[66,72],[40,30],[50,14],[77,34],[104,10],[77,-14],[167,-12],[136,41],[154,-7],[76,48],[82,7],[111,-41],[32,-29],[61,-42],[15,-41],[16,-74],[30,-2],[103,73],[56,13],[106,117],[56,-30],[127,-50],[51,-15],[100,-85],[51,18],[42,40],[124,-4],[116,-35],[48,-29],[59,-50],[37,-12],[29,14],[240,-19],[104,-37],[79,-45],[278,-21],[107,-46],[64,22],[127,-7],[52,-39],[46,-43],[101,-37],[55,7],[78,30],[78,41],[78,0],[37,-35],[13,-88],[58,2],[64,40],[56,-10],[20,-61],[-30,-81],[-71,-114],[-29,-95],[-59,-86],[10,-41],[59,-20],[59,61],[132,42],[69,55],[119,20],[117,-19],[83,-73],[154,-123],[6,-44],[13,-46],[-5,-41],[-23,-47],[82,-55],[73,-9],[59,5],[247,-53],[118,21],[106,0],[126,8],[97,-2],[77,-9],[91,19],[74,26],[36,-16],[15,-137],[5,-81],[42,-30],[44,30],[32,41],[195,-19],[78,-2],[74,-22],[75,-51],[72,22],[43,31],[58,20],[17,51],[7,85],[-2,83],[34,15],[35,-15],[46,-39],[105,-125],[80,-81],[34,-38],[49,-31],[99,-75],[136,-31],[133,-60],[155,4],[121,-77],[82,60],[43,14],[63,-16],[76,-52],[60,-12],[205,-86],[110,-30],[41,-63],[54,-60],[0,-61],[24,-77],[123,-61],[48,-59],[59,-78],[107,-293],[56,-52],[81,5],[76,-76],[24,11],[3,30],[-69,198],[-5,107],[54,61],[127,17],[98,-114],[90,-69],[60,-12],[120,3],[113,73],[86,-26],[138,-9],[179,-43],[77,8],[137,-18],[167,-62],[95,-23],[20,-25],[44,-41],[22,-50],[24,-46],[58,-52],[58,-9],[115,-44],[241,-136],[87,-40],[51,-29],[25,35],[7,72],[44,15],[47,-107],[49,-81],[22,-71],[-51,-58],[-74,12],[-52,0],[-53,-96],[-22,-166],[49,3],[36,15],[8,-61],[-22,-51],[-44,-20],[-76,39],[-93,27],[-102,10],[-99,49],[-39,3],[-41,-3],[53,-51],[55,-46],[125,-40],[156,-62],[4,-38],[-37,-47],[-46,-100],[-142,-86],[-83,62],[-98,15],[-49,-37],[-98,4],[-194,-14],[-76,79],[-119,43],[4,-36],[102,-130],[109,-30],[108,-35],[26,-33],[-49,-31],[-66,5],[-83,-61],[-158,10],[-75,-3],[-44,-25],[-39,-9],[31,-22],[38,-60],[-54,-51],[-50,-25],[-51,12],[-56,-20],[-27,56],[-2,122],[-32,109],[-34,4],[-54,-13],[-17,-93],[38,-161],[26,-50],[-21,-45],[-36,-14],[73,-136],[62,-93],[38,-31],[3,-46],[-30,-20],[-83,18],[-41,-9],[-46,6],[-77,20],[-66,6],[-66,-26],[-56,2],[-50,85],[-44,20],[-36,-26],[-28,-101],[-57,-31],[-58,-46],[-41,-50],[-20,-198],[-34,-41],[-51,2],[-39,-16],[-49,16],[-64,10],[-214,-68],[34,-35],[54,6],[188,-11],[80,-36],[13,-89],[32,-38],[63,-41],[48,-20],[18,-30],[-20,-61],[-27,-56],[-59,-61],[17,-31],[64,-10],[27,-137],[-42,-61],[20,-51],[5,-51],[-43,-47],[-33,-24],[-11,-50],[64,-29],[47,-10],[66,-5],[45,-54],[58,-82],[42,-68],[3,-113],[41,-67],[77,-43],[-2,-45],[54,-14],[53,-4],[19,-41],[-17,-50],[-89,-61],[-37,-44],[89,-7],[92,-46],[117,52],[62,56],[40,50],[30,-13],[3,-52],[36,-87],[151,-84],[84,-27],[81,-14],[71,2],[20,-50],[-22,-46],[-56,3],[-90,-8],[-66,38],[-47,33],[-412,-19],[-93,-15],[-111,-50],[-110,-24],[-169,-50],[-71,-30],[-185,117],[-60,86],[-25,5],[-44,-20],[-2,-61],[86,-133],[39,-35],[0,-35],[-25,-18],[-35,0],[-53,26],[-99,21],[-88,-41],[-108,-87],[23,-58],[29,-33],[-7,-39],[-121,-74],[-40,-3],[-25,-15],[30,-27],[66,-1],[7,-33],[-23,-26],[-109,-30],[7,-40],[59,-19],[77,7],[48,-29],[0,-46],[-49,-26],[-57,-19],[-392,-118],[-57,-32],[3,-43],[137,-11],[410,10],[27,-14],[-10,-34],[-23,-43],[23,-31],[61,-21],[2,-33],[-30,-13],[-61,-15],[-67,-4],[4,-35],[92,-31],[31,-4],[3,-118],[-3,-50],[-49,-24],[-18,-17],[-2,-40],[122,-29],[187,-127],[41,0],[74,-24],[119,-65],[42,-39],[68,-19],[9,-32],[42,-27],[166,-88],[22,-38],[-348,-73],[-350,-54],[32,-48],[378,5],[102,-30],[45,9],[26,32],[204,38],[207,25],[65,-18],[278,-141],[129,-53],[82,-20],[60,-5],[44,-21],[43,-45],[-10,-42],[18,-19],[29,-8],[55,-28],[63,10],[73,32],[51,-7],[92,-45],[-35,-35],[-20,-17],[-24,-32],[-23,-11],[-74,-7],[-41,0],[-42,6],[-4,-23],[51,-25],[74,-27],[480,-21],[137,-46],[135,25],[61,-8],[51,-15],[19,-46],[69,-15],[106,-36],[148,-18],[118,1],[145,-49],[73,-2],[45,-28],[330,-17],[49,-22],[38,-36],[78,-16],[85,-3],[464,-59],[174,-31],[40,2],[40,-6],[125,-26],[127,-14],[61,-36],[-99894,-48]],[[37438,6445],[36,-2],[146,6],[146,-2],[89,-7],[26,-16],[23,-32],[26,-50],[24,-55],[27,-45],[16,-79],[25,-29],[43,-73],[6,-59],[-13,-128],[-21,-52],[-56,-50],[-64,5],[-29,-2],[-28,-10],[-11,-7],[-4,-10],[74,-43],[9,-16],[1,-19],[-10,-13],[-10,-7],[-1573,-260],[-61,-14],[-61,-27],[-20,-23],[-20,-18],[-1219,-49],[-11,3],[-11,10],[-31,50],[-6,79],[7,31],[61,30],[23,17],[103,117],[53,55],[25,46],[13,-3],[47,-27],[35,-8],[68,11],[67,33],[29,18],[29,-6],[5,-28],[12,-9],[162,88],[147,98],[144,111],[73,66],[18,19],[12,28],[-10,28],[-13,25],[-12,10],[-12,4],[-75,18],[23,29],[22,35],[14,39],[5,47],[-3,24],[3,18],[34,15],[23,24],[16,28],[-26,9],[-12,21],[23,49],[21,52],[21,28],[56,55],[163,138],[59,74],[17,27],[386,119],[63,12],[121,17],[56,3],[158,-12],[74,-12],[128,-32],[189,-61],[71,-27],[71,-34],[68,-43],[67,-52],[13,-16],[6,-29],[2,-28],[-3,-27],[-18,-56],[-26,-39],[-311,-37],[-41,-15],[-22,-30],[-16,-30],[36,-11]],[[33407,5562],[-11,-124],[1,-56],[-16,-45],[-28,-23],[-55,-39],[-40,-23],[-87,-38],[-400,34],[-180,31],[-75,40],[-12,18],[-23,61],[-21,19],[-159,-13],[-97,-19],[-17,-10],[-26,-38],[-14,-8],[-259,81],[-273,95],[-113,49],[-39,22],[-11,15],[25,19],[26,12],[29,9],[30,1],[22,-7],[22,-14],[14,-51],[14,-8],[38,-14],[961,7],[80,2],[166,15],[89,21],[33,29],[-80,7],[-32,22],[-27,41],[-6,38],[9,28],[106,14],[16,10],[-28,16],[1,37],[63,14],[25,31],[124,39],[196,-21],[47,-56],[-13,-36],[-9,-37],[-1,-57],[80,-8],[25,-21],[24,-26],[-29,-1],[-28,-6],[-23,-27],[-20,-35],[-14,-16]],[[30541,11987],[-8,-70],[46,25],[17,-5],[40,-26],[81,-151],[18,-48],[33,-139],[40,-105],[100,-183],[49,-100],[26,-58],[3,-78],[31,-22],[7,-32],[10,-107],[7,-124],[7,-238],[-4,-55],[-43,-89],[-18,-63],[-23,-42],[-27,-30],[-141,-125],[-17,-62],[-237,-53],[-134,-22],[-52,24],[-53,6],[-66,-8],[-191,-7],[-144,-18],[-19,7],[-13,23],[-14,16],[-38,-3],[-31,9],[-30,19],[-33,36],[-14,21],[-8,23],[64,60],[33,13],[33,4],[67,-13],[67,-20],[147,-16],[204,-4],[56,6],[67,19],[62,55],[-30,21],[-31,13],[-30,3],[-30,-4],[-84,-34],[-65,-20],[-65,-12],[-69,20],[-64,56],[-2,18],[220,43],[20,7],[40,27],[13,24],[6,23],[-148,40],[-31,-1],[-30,-7],[-67,17],[-64,47],[-59,57],[-22,5],[-21,-17],[-143,-150],[-12,-1],[-54,11],[-68,30],[-62,10],[-40,-8],[-15,-12],[39,-34],[33,-30],[10,-24],[-101,-75],[-27,-10],[-43,7],[-16,9],[-31,40],[-30,10],[-65,-8],[-34,3],[-34,18],[-32,26],[-30,14],[-36,29],[-26,20],[-8,29],[3,28],[11,16],[2,15],[-8,27],[5,19],[12,18],[54,34],[65,7],[63,-43],[42,-13],[19,-1],[7,2],[5,12],[-1,22],[-12,42],[-1,29],[14,24],[19,9],[20,6],[13,3],[41,-15],[29,-16],[59,-46],[49,-32],[19,-3],[14,11],[13,18],[-59,46],[-6,30],[3,26],[36,15],[22,2],[104,-27],[56,-9],[55,-3],[114,31],[-61,35],[-132,30],[-25,21],[-18,34],[97,31],[99,-1],[177,-40],[59,19],[55,58],[32,15],[125,-5],[101,27],[16,-3],[15,-8],[97,-97],[13,5],[10,19],[3,34],[1,34],[-3,35],[-12,22],[-16,-3],[-17,-10],[-28,9],[-28,18],[-29,8],[-100,11],[-71,18],[-37,14],[-34,28],[-5,31],[36,71],[138,76],[65,25],[66,6],[32,-5],[76,-32],[12,2],[11,8],[-73,53],[-65,41],[-33,31],[-26,12],[-109,12],[-57,-31],[-27,-5],[-27,3],[-160,74],[-9,8],[-23,28],[-12,21],[-7,35],[3,35],[5,23],[24,91],[13,72],[-7,59],[-25,32],[-36,22],[-33,35],[-9,24],[-6,28],[-1,36],[9,32],[14,34],[18,17],[34,17],[133,39],[270,49],[30,-25],[43,-52],[14,-21],[15,-104],[0,-29]],[[22752,10418],[-23,-61],[2,-60],[68,4],[30,114],[64,21],[31,-68],[-30,-55],[15,-31],[18,-22],[32,-1],[29,33],[13,24],[11,26],[19,58],[61,54],[135,8],[71,-34],[-48,-86],[-115,-50],[-74,-52],[25,-14],[25,-7],[23,2],[65,27],[160,50],[61,37],[22,-6],[0,-62],[21,-42],[-12,-93],[-69,-17],[-71,-8],[18,-41],[-4,-17],[-6,-13],[-178,17],[-31,-6],[-31,-12],[-31,3],[-62,30],[-32,0],[-64,-15],[-65,-6],[-93,1],[-68,5],[-64,33],[-67,9],[-75,1],[-79,38],[-66,15],[-95,39],[-25,15],[-25,8],[-45,-3],[-346,59],[-51,-1],[-33,-8],[-33,4],[-67,28],[-14,31],[7,29],[15,13],[30,13],[480,69],[50,19],[37,-2],[28,-59],[42,-61],[14,1],[14,6],[47,51],[86,-16],[48,23],[33,45],[97,52],[61,-10],[57,-22],[27,-54]],[[16512,9357],[49,-58],[19,-38],[11,-39],[-199,-96],[-9,-10],[-9,-50],[5,-11],[8,-8],[1,-19],[-17,-6],[-340,-38],[-159,35],[-22,23],[-5,36],[19,7],[35,5],[-9,16],[-22,29],[-2,24],[48,61],[23,16],[-90,57],[-11,13],[-12,4],[-44,-7],[-43,3],[15,23],[12,38],[38,32],[28,5],[28,-3],[132,-2],[130,-17],[131,-12],[215,-11],[46,-2]],[[14908,9627],[74,-16],[25,-25],[33,-18],[33,-10],[31,-27],[18,-48],[16,-15],[49,-32],[17,-28],[-3,-14],[-93,-11],[-31,4],[-29,-9],[-9,-17],[1,-18],[16,-13],[34,-12],[34,2],[63,14],[28,-3],[32,-15],[32,-2],[84,46],[21,8],[21,-2],[115,-54],[24,-27],[-17,-15],[-14,-22],[6,-15],[55,-22],[23,-28],[14,-11],[-3,-24],[-8,-29],[1,-33],[-28,-18],[-13,0],[-60,18],[-187,10],[-60,15],[-92,65],[-36,4],[-37,16],[-57,46],[-99,37],[-63,45],[2,38],[-9,27],[-12,11],[-12,6],[-36,10],[-35,-3],[-18,-11],[-29,-28],[-32,-5],[-25,6],[-5,6],[-1,74],[-27,10],[-23,30],[-4,40],[10,37],[35,45],[40,5],[40,-7],[41,10],[65,6],[74,-4]],[[5819,5871],[-347,-22],[-141,19],[-294,63],[-403,114],[-110,36],[-72,31],[-70,39],[-16,43],[10,62],[13,51],[21,32],[86,38],[43,42],[87,44],[25,33],[37,2],[70,-4],[69,-9],[65,-11],[63,-19],[144,-62],[100,-61],[144,-72],[143,-81],[80,-30],[77,-45],[74,-61],[14,-21],[31,-27],[19,-26],[19,-22],[19,-11],[15,-24],[-3,-26],[-12,-15]],[[96411,7303],[105,-42],[275,4],[229,-39],[21,-40],[-65,-21],[-101,-53],[-65,-17],[-55,0],[-112,22],[-146,-3],[-31,-31],[-71,-31],[-82,-54],[-22,44],[-33,42],[-82,89],[-6,13],[45,17],[22,29],[47,39],[-5,24],[-39,26],[-15,22],[26,36],[58,16],[75,-15],[34,-48],[-6,-21],[-1,-8]],[[41355,5876],[38,-12],[40,28],[-6,26],[23,45],[33,-49],[219,-52],[71,-50],[-29,-12],[-22,2],[-64,-5],[-109,-43],[-117,41],[-209,29],[-63,22],[-49,68],[88,56],[21,-6],[135,-88]],[[40573,6151],[-32,-21],[-675,36],[-33,7],[9,43],[92,7],[52,8],[72,19],[53,33],[18,1],[317,-77],[111,-32],[13,-15],[3,-9]],[[30462,5944],[-60,-2],[-120,5],[-120,20],[-31,10],[-44,32],[-14,17],[-12,21],[-1,33],[32,114],[59,68],[56,39],[174,92],[23,10],[159,43],[62,23],[97,48],[534,186],[122,27],[55,-20],[31,-19],[-16,-22],[-72,-53],[-34,-32],[-87,-65],[-188,-109],[-133,-82],[-171,-113],[-40,-40],[-81,-95],[15,-42],[-27,-58],[-107,-28],[-61,-8]],[[33931,14945],[11,-8],[9,4],[9,8],[9,19],[33,27],[31,3],[-10,-28],[74,-50],[-6,-39],[14,-32],[-30,-10],[-24,-33],[21,-13],[12,-28],[-25,-7],[-54,17],[-28,-4],[3,26],[-9,10],[-33,-5],[-14,-57],[-10,-5],[-12,9],[9,37],[-14,6],[-14,-1],[-42,-27],[-12,-1],[-25,32],[79,42],[-33,21],[-7,26],[5,36],[-29,-5],[-28,-14],[-13,-2],[-11,12],[4,26],[23,43],[18,45],[36,22],[21,17],[28,8],[12,16],[26,1],[15,-37],[-1,-22],[-12,-24],[-6,-61]],[[34575,15452],[17,-15],[70,1],[16,-4],[14,-25],[9,-43],[-23,-17],[-121,10],[-44,22],[-22,-1],[-49,-24],[-21,-24],[-82,-32],[-23,12],[-11,34],[-1,14],[8,9],[4,9],[-1,11],[22,29],[95,44],[126,16],[17,-16],[0,-10]],[[33895,16179],[35,-16],[31,11],[17,-12],[12,-33],[-1,-12],[-47,5],[-43,-38],[-51,8],[-7,-31],[11,-17],[-14,-14],[-44,30],[-35,-11],[-11,-51],[-16,-10],[-8,-2],[-14,13],[-29,4],[-2,7],[-18,20],[-51,-22],[13,26],[68,69],[8,21],[79,40],[37,-9],[80,24]],[[32450,14706],[-27,-60],[40,1],[28,21],[29,9],[25,-30],[-52,-23],[-50,-40],[-20,-21],[-22,-9],[-28,3],[-28,-4],[-25,-39],[-26,-18],[-8,15],[-10,9],[-56,14],[-26,20],[-23,14],[-25,7],[13,35],[15,31],[85,42],[-8,13],[-6,17],[67,21],[2,21],[-4,24],[21,16],[20,24],[14,7],[42,-3],[29,-33],[-12,-33],[26,-51]],[[32687,14732],[-20,-23],[-16,-4],[-15,10],[-20,-35],[-40,11],[-16,9],[10,5],[7,15],[22,31],[38,79],[7,25],[-31,41],[-5,13],[7,24],[11,17],[26,19],[34,0],[17,-16],[0,-29],[58,-27],[-10,-56],[-22,-35],[-3,-42],[-33,-19],[-6,-13]],[[31114,12975],[-29,-37],[-23,-11],[-21,10],[-21,5],[-15,-14],[-16,-58],[-19,-29],[-20,-15],[-12,6],[-12,0],[-19,-13],[-24,-5],[-23,6],[-22,37],[-32,44],[-6,14],[-5,36],[1,37],[14,28],[73,98],[24,44],[21,50],[23,45],[44,80],[22,29],[111,84],[30,19],[33,-5],[8,-44],[-16,-22],[-53,-56],[-11,-79],[1,-29],[5,-8],[20,-10],[14,-11],[18,-24],[21,-14],[-45,-41],[-30,-21],[-21,-26],[-40,-25],[-17,-16],[26,-6],[38,-21],[10,-18],[-5,-14]],[[29526,11154],[43,-51],[-40,-40],[-142,-75],[-83,-29],[-84,-22],[-380,-69],[-27,0],[-26,9],[-15,15],[-25,57],[3,29],[34,27],[35,18],[60,16],[229,36],[23,12],[19,27],[6,31],[8,24],[15,11],[16,0],[30,-23],[55,-93],[18,13],[16,25],[3,80],[16,6],[49,-22],[30,-23],[1,45],[21,14],[22,-5],[22,-10],[48,-33]],[[29170,11677],[49,-14],[72,-63],[24,-32],[7,-19],[-6,-13],[-33,-15],[-25,-77],[-50,-27],[-116,17],[-128,31],[-10,6],[-11,27],[-2,31],[14,39],[22,20],[95,24],[7,14],[14,39],[24,8],[11,-3],[42,7]],[[29346,9735],[-40,-75],[-7,-8],[-40,-19],[14,-20],[11,-10],[7,-24],[23,-33],[28,-21],[-23,-59],[-34,-26],[-369,160],[-28,26],[-14,19],[-11,30],[-1,30],[9,24],[13,14],[33,17],[34,1],[75,-32],[10,5],[14,28],[40,1],[9,24],[-55,8],[-44,24],[-29,24],[-8,19],[99,33],[251,-42],[38,-14],[17,-19],[14,-26],[-36,-59]],[[24677,9687],[-51,-14],[-46,6],[17,132],[26,33],[-7,24],[-47,66],[-33,75],[16,17],[86,27],[99,-5],[39,-32],[12,-40],[-5,-29],[-32,-53],[33,-18],[7,-36],[-7,-44],[-32,-52],[-30,-31],[-45,-26]],[[96566,6830],[-34,-43],[-39,-19],[-123,16],[-86,-36],[-95,-13],[-45,19],[-20,35],[-10,47],[0,17],[27,7],[127,-33],[53,-29],[29,1],[76,38],[63,48],[16,23],[21,8],[27,-17],[13,-52],[0,-17]],[[78050,14010],[-121,-14],[-10,15],[-45,2],[-16,12],[-6,28],[15,47],[24,32],[37,33],[18,7],[76,11],[55,-15],[39,-40],[11,-32],[-6,-21],[-71,-65]],[[57460,11301],[-18,-22],[-51,4],[-39,-21],[-31,8],[-98,35],[-11,45],[-3,20],[8,35],[88,73],[35,7],[50,-10],[22,-21],[14,-41],[39,-83],[-5,-29]],[[48362,11202],[-73,-34],[-6,15],[-24,20],[-48,56],[54,4],[49,24],[27,-10],[6,-6],[15,-69]],[[49088,11213],[-45,-1],[-13,16],[-2,11],[58,83],[32,21],[62,16],[40,-5],[26,-18],[8,-33],[0,-49],[-15,-26],[-151,-15]],[[31618,5715],[-26,-2],[-14,4],[-14,12],[-12,46],[-137,37],[-16,21],[-9,46],[-23,18],[-178,82],[-15,17],[-10,25],[33,10],[70,-18],[127,-5],[28,-8],[26,-14],[142,-3],[72,-7],[40,-65],[81,-19],[11,-38],[10,-68],[-110,-50],[-25,-7],[-51,-14]],[[31316,6075],[-48,-28],[-202,13],[-69,9],[-39,15],[36,60],[27,20],[25,8],[56,33],[88,8],[67,-6],[113,-26],[-29,-25],[-19,-9],[-18,-38],[12,-34]],[[34676,16577],[-37,-16],[-13,22],[-7,37],[-19,23],[14,20],[199,-26],[-11,-13],[-96,-17],[-30,-30]],[[34480,15244],[-24,-26],[-61,39],[-16,25],[7,19],[98,17],[26,-9],[12,-40],[-42,-25]],[[34100,14650],[-24,-2],[-30,17],[-4,30],[0,16],[23,13],[14,2],[81,47],[36,12],[-16,-29],[2,-26],[-13,-23],[-69,-57]],[[34427,15507],[-55,-54],[-26,2],[-54,41],[-15,21],[-3,9],[34,37],[97,-14],[22,-4],[1,-3],[2,-21],[-3,-14]],[[34062,15087],[4,-10],[56,6],[15,-15],[-31,-20],[-8,4],[-27,-6],[-76,15],[-18,23],[67,13],[18,-10]],[[32778,11680],[-24,-4],[-24,53],[-13,82],[-77,119],[-20,62],[14,15],[21,5],[56,-17],[34,-23],[38,-49],[46,-44],[9,-37],[-7,-42],[-29,-11],[1,-31],[-17,-60],[-8,-18]],[[33159,15806],[14,-7],[121,13],[38,-40],[43,2],[-103,-75],[-28,22],[-9,16],[-7,36],[-67,-9],[-22,7],[-27,-24],[-55,-10],[-19,0],[-24,26],[-1,26],[49,-1],[38,33],[11,34],[19,-9],[29,-40]],[[30004,11694],[-60,-24],[-40,19],[-120,36],[-50,66],[5,35],[23,21],[36,11],[73,-22],[37,-23],[96,-119]],[[23603,9985],[-53,-3],[-15,13],[16,28],[128,47],[52,28],[8,-4],[7,-9],[22,-56],[2,-14],[-167,-30]],[[20961,9696],[-33,-26],[-62,6],[-48,43],[-19,58],[-2,20],[13,15],[31,14],[120,-130]],[[16792,9152],[-58,-6],[-18,1],[-18,13],[-5,9],[30,30],[29,13],[9,10],[-40,101],[37,3],[43,20],[83,-2],[72,-18],[13,-15],[9,-25],[-31,-51],[-19,-18],[-108,-45],[-28,-20]],[[14620,8857],[-42,-10],[-83,38],[-27,18],[-24,31],[-19,7],[-7,6],[-11,80],[25,9],[53,-11],[102,-42],[71,-12],[24,-32],[-24,-56],[-38,-26]],[[5002,3963],[-87,-13],[-206,26],[-54,21],[-30,22],[-56,20],[-14,11],[0,24],[-9,14],[-19,13],[-9,13],[-17,8],[277,-12],[108,-20],[20,-14],[195,-60],[-53,-9],[-46,-44]],[[5426,4844],[-29,-5],[-745,67],[-143,22],[-34,12],[-14,11],[-3,8],[6,22],[17,16],[185,25],[207,-19],[250,-48],[172,-38],[89,-34],[37,-26],[5,-13]],[[95548,8736],[-37,0],[-22,18],[-7,39],[1,13],[72,48],[58,12],[-31,-72],[-11,-12],[-23,-46]],[[95268,8313],[-50,-74],[-35,2],[-20,14],[36,41],[34,18],[21,5],[14,-6]],[[97178,9444],[-38,-12],[-51,37],[-12,12],[50,70],[-4,23],[7,19],[19,14],[12,-2],[29,-77],[20,-32],[-28,-31],[-4,-21]],[[95786,12937],[-24,-16],[-15,5],[-15,34],[16,53],[-6,69],[3,17],[39,-39],[7,-21],[16,-32],[3,-17],[-16,-32],[-8,-21]],[[95361,13351],[-5,-35],[-14,8],[-20,28],[-20,69],[18,7],[23,-12],[9,-34],[8,-18],[1,-13]],[[95169,13549],[-15,-27],[-13,3],[-58,69],[7,30],[-8,25],[1,23],[2,8],[71,-105],[13,-26]],[[76836,13804],[32,-15],[57,2],[20,-22],[4,-25],[-1,-14],[-23,-21],[-150,-14],[-24,22],[26,61],[28,20],[31,6]],[[77851,13700],[-37,-8],[-14,15],[-2,9],[27,33],[33,11],[-3,-39],[-4,-21]],[[77456,13554],[-26,-7],[-27,16],[-13,31],[-3,10],[42,8],[56,-30],[-29,-28]],[[78721,14144],[-17,-14],[-45,8],[-10,12],[-4,55],[-3,16],[-17,15],[-73,28],[-8,40],[10,18],[27,4],[67,-35],[15,-27],[-2,-41],[1,-13],[21,-27],[33,-28],[5,-11]],[[75722,13935],[-37,-8],[-38,8],[-19,27],[-4,12],[15,19],[54,3],[38,-17],[8,-17],[2,-8],[-19,-19]],[[73839,13275],[-48,-15],[-8,8],[-1,9],[-72,55],[-12,45],[7,31],[59,-3],[70,-27],[37,-69],[-32,-34]],[[74039,13382],[-32,-14],[-25,3],[-29,31],[12,21],[30,13],[38,-7],[10,-11],[26,-7],[-30,-29]],[[73702,13472],[-30,-18],[-24,3],[-16,19],[-3,12],[15,38],[12,-2],[8,-20],[38,-32]],[[69421,10415],[-35,-74],[-13,2],[-15,43],[13,27],[16,16],[28,-8],[6,-6]],[[69016,10195],[-14,0],[7,23],[37,41],[28,50],[17,8],[31,-44],[-7,-37],[-41,-27],[-58,-14]],[[70000,11156],[-20,0],[-25,6],[-32,42],[-18,30],[-7,31],[3,61],[16,30],[26,12],[11,-28],[4,-32],[8,-21],[33,-30],[16,-25],[5,-14],[6,-29],[-5,-20],[-21,-13]],[[63484,13373],[-46,-14],[-21,6],[-2,14],[-1,13],[2,15],[16,12],[78,1],[31,-10],[9,-7],[1,-21],[-3,-6],[-64,-3]],[[54506,11516],[-18,-37],[-87,51],[-51,16],[-13,9],[-12,32],[-3,12],[10,20],[28,32],[59,26],[93,13],[91,-10],[15,-16],[-86,-54],[-26,-94]],[[50843,11176],[-94,-15],[-21,17],[-11,34],[13,20],[123,68],[33,-6],[11,-6],[8,-26],[-11,-41],[-14,-20],[-37,-25]],[[49179,10821],[-30,-13],[-39,3],[-30,17],[-21,34],[-5,13],[3,22],[-2,11],[38,6],[14,-14],[6,-11],[66,-68]],[[50360,11373],[-24,-73],[-15,2],[-15,43],[-31,46],[-11,32],[-1,43],[22,25],[80,16],[27,-10],[13,-55],[-45,-69]],[[49296,11078],[30,-19],[47,3],[45,-15],[-7,-20],[-26,-26],[-22,-56],[-22,-26],[-66,-56],[-49,-15],[-11,31],[1,32],[4,25],[2,18],[-46,24],[-3,33],[-9,19],[-134,66],[-23,19],[10,12],[138,5],[81,-12],[60,-42]],[[51257,11244],[-45,-13],[-51,29],[-14,20],[-15,53],[-2,20],[12,13],[40,15],[66,-6],[25,-24],[9,-43],[-8,-37],[-17,-27]],[[44275,9281],[-13,-125],[4,-27],[11,-26],[49,-70],[4,-52],[-2,-20],[-20,-29],[-69,7],[-22,15],[-8,10],[-36,122],[-21,29],[-32,25],[-123,23],[-118,-8],[29,28],[178,39],[45,29],[28,34],[13,52],[31,65],[49,30],[31,3],[16,-53],[0,-50],[-24,-51]],[[45526,9977],[-19,-14],[-40,1],[-38,28],[-16,41],[-1,29],[17,33],[27,9],[15,-11],[36,-71],[19,-45]],[[46525,10268],[-22,-13],[-37,5],[-47,29],[-15,22],[-5,20],[13,29],[11,8],[24,-4],[42,-37],[29,-40],[7,-19]],[[41016,5948],[-48,-6],[-19,15],[23,38],[34,33],[63,3],[60,-22],[-6,-21],[-13,-2],[-94,-38]],[[34980,16532],[-12,-5],[-19,22],[-3,13],[20,26],[20,35],[7,4],[-5,-70],[-8,-25]],[[33656,15954],[-62,-26],[-32,27],[-7,10],[38,26],[20,-6],[8,-9],[23,-2],[12,-20]],[[33011,11534],[-42,-1],[-19,16],[-7,10],[5,23],[16,21],[49,-16],[12,-41],[-14,-12]],[[33151,12230],[-11,-16],[-35,10],[-20,11],[-34,28],[19,17],[37,-4],[30,-20],[14,-26]],[[33127,11111],[-23,0],[-20,12],[-17,35],[-5,17],[9,38],[16,9],[92,5],[28,-20],[1,-34],[-10,-25],[-71,-37]],[[33180,10914],[-28,-4],[-38,10],[-33,20],[-11,23],[16,19],[30,12],[47,-4],[22,-24],[5,-22],[-6,-23],[-4,-7]],[[33503,15872],[-38,-4],[-26,33],[-12,23],[51,2],[23,-9],[12,-26],[-10,-19]],[[33193,15571],[-14,-6],[-18,5],[0,-10],[15,-13],[-16,-5],[-19,13],[-14,27],[10,25],[19,6],[37,-42]],[[33152,15053],[-35,-20],[-21,6],[-33,24],[45,7],[4,70],[22,27],[43,-15],[-26,-37],[-9,-28],[9,-24],[1,-10]],[[32791,14932],[-26,-2],[7,31],[23,21],[38,14],[-24,-35],[-7,-16],[-11,-13]],[[32412,14480],[-44,-26],[-23,0],[27,64],[26,2],[41,36],[11,-5],[-22,-30],[-16,-41]],[[32607,15512],[-12,-2],[5,24],[31,62],[58,29],[-7,-25],[-19,-31],[-56,-57]],[[31709,13915],[-60,-22],[-31,8],[-2,23],[8,31],[29,16],[-5,46],[18,19],[9,35],[38,26],[54,-12],[-8,-45],[-1,-16],[-32,-12],[-8,-7],[-7,-30],[1,-43],[-3,-17]],[[31501,13709],[-62,-65],[-9,4],[-5,7],[1,11],[20,24],[4,70],[41,26],[16,-9],[-14,-30],[9,-26],[-1,-12]],[[31288,13309],[-13,-4],[-31,2],[-20,13],[26,41],[-3,28],[23,11],[26,-10],[18,-35],[3,-15],[-29,-31]],[[31292,12807],[-55,-11],[-41,12],[1,44],[-11,5],[-4,10],[52,33],[39,8],[47,-5],[20,-14],[7,-15],[-36,-36],[-6,-14],[-13,-17]],[[30084,11367],[14,-17],[60,16],[21,-17],[4,-12],[-27,-42],[-32,-28],[-37,-2],[-27,71],[-3,18],[27,13]],[[29478,9586],[-27,-11],[-17,6],[-31,29],[4,23],[14,15],[10,17],[60,62],[44,7],[36,-13],[-39,-59],[-10,-41],[-44,-35]],[[23945,9838],[-47,0],[-31,21],[-10,14],[19,21],[11,2],[57,-36],[12,-15],[-11,-7]],[[17572,9121],[-136,-16],[-37,18],[-10,22],[6,23],[277,125],[49,-17],[14,-8],[-83,-62],[-37,-22],[-6,-7],[20,-9],[6,-7],[-16,-17],[-47,-23]],[[13225,8961],[-44,-32],[-86,21],[7,23],[78,20],[53,-13],[-8,-19]],[[13592,8880],[-31,-12],[-116,29],[-68,6],[-31,17],[-20,15],[-6,14],[-32,22],[62,44],[49,14],[47,-3],[10,-22],[90,-26],[70,-1],[7,-24],[-3,-34],[-28,-39]],[[9003,7690],[3,-8],[-42,6],[-63,32],[-12,11],[28,11],[36,-10],[33,-20],[17,-22]],[[9656,8230],[-31,-3],[-53,14],[-140,46],[-30,23],[21,23],[50,16],[38,-5],[95,-43],[29,-31],[17,-23],[4,-17]],[[9276,7510],[-104,-25],[-27,7],[9,36],[-16,25],[-4,12],[9,17],[61,0],[172,-27],[23,-37],[-123,-8]],[[8723,7484],[-116,-7],[-64,15],[-16,44],[18,9],[148,-20],[54,-11],[20,-13],[-10,-12],[-34,-5]],[[8518,7651],[113,-8],[74,6],[77,-14],[18,-16],[-14,-13],[-83,-4],[-40,-22],[-47,-3],[-71,16],[-64,35],[37,23]],[[8550,7294],[81,-29],[-142,9],[-62,41],[40,15],[40,-3],[35,-21],[8,-12]],[[8269,7617],[-118,-8],[-48,16],[-12,15],[10,13],[183,13],[20,-16],[6,-10],[-41,-23]],[[9253,7922],[-57,-8],[-71,36],[-54,29],[-18,25],[-3,8],[0,10],[16,6],[115,-21],[72,-85]],[[9225,7699],[-33,-46],[-87,24],[-37,30],[21,39],[40,12],[52,-14],[19,-5],[25,-40]],[[8223,7275],[-22,-2],[-241,44],[-47,13],[82,27],[54,4],[146,-66],[39,-8],[-11,-12]],[[7241,5741],[-51,-2],[-65,6],[-50,14],[-114,20],[-29,38],[-134,31],[-62,10],[21,37],[142,-49],[175,-49],[141,-30],[26,-26]],[[8547,7418],[-17,-9],[-121,5],[-25,8],[-11,9],[-168,13],[-76,41],[-15,13],[30,20],[57,12],[23,16],[145,14],[23,-8],[13,-22],[66,-43],[17,-27],[7,-18],[36,-8],[16,-16]],[[6115,4547],[-25,-4],[-22,31],[-108,63],[-64,42],[-42,33],[-18,23],[21,0],[158,-70],[24,-27],[118,-48],[-42,-43]],[[32497,62251],[-1,-14],[-3,-15],[-18,13],[-10,13],[0,3]]],"bbox":[-180,-89.999,180,83.599609375],"transform":{"scale":[0.0036000360003600037,0.001736003453784538],"translate":[-180,-89.999]}} ================================================ FILE: freedata_gui/src/assets/waterfall/LICENSE ================================================ MIT License Copyright (c) 2019 Jeppe Ledet-Pedersen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 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: freedata_gui/src/assets/waterfall/README.rst ================================================ ******************************** HTML Canvas/WebSockets Waterfall ******************************** This is a small experiment to create a waterfall plot with HTML Canvas and WebSockets to stream live FFT data from an SDR: .. image:: img/waterfall.png ``spectrum.js`` contains the main JavaScript source code for the plot, while ``colormap.js`` contains colormaps generated using ``make_colormap.py``. ``index.html``, ``style.css``, ``script.js`` contain an example page that receives FFT data on a WebSocket and plots it on the waterfall plot. ``server.py`` contains a example `Bottle `_ and `gevent-websocket `_ server that broadcasts FFT data to connected clients. The FFT data is generated using `GNU radio `_ using a USRP but it should be fairly easy to change it to a different SDR. ================================================ FILE: freedata_gui/src/assets/waterfall/colormap.js ================================================ var turbo = [ [48, 18, 59], [50, 21, 67], [51, 24, 74], [52, 27, 81], [53, 30, 88], [54, 33, 95], [55, 36, 102], [56, 39, 109], [57, 42, 115], [58, 45, 121], [59, 47, 128], [60, 50, 134], [61, 53, 139], [62, 56, 145], [63, 59, 151], [63, 62, 156], [64, 64, 162], [65, 67, 167], [65, 70, 172], [66, 73, 177], [66, 75, 181], [67, 78, 186], [68, 81, 191], [68, 84, 195], [68, 86, 199], [69, 89, 203], [69, 92, 207], [69, 94, 211], [70, 97, 214], [70, 100, 218], [70, 102, 221], [70, 105, 224], [70, 107, 227], [71, 110, 230], [71, 113, 233], [71, 115, 235], [71, 118, 238], [71, 120, 240], [71, 123, 242], [70, 125, 244], [70, 128, 246], [70, 130, 248], [70, 133, 250], [70, 135, 251], [69, 138, 252], [69, 140, 253], [68, 143, 254], [67, 145, 254], [66, 148, 255], [65, 150, 255], [64, 153, 255], [62, 155, 254], [61, 158, 254], [59, 160, 253], [58, 163, 252], [56, 165, 251], [55, 168, 250], [53, 171, 248], [51, 173, 247], [49, 175, 245], [47, 178, 244], [46, 180, 242], [44, 183, 240], [42, 185, 238], [40, 188, 235], [39, 190, 233], [37, 192, 231], [35, 195, 228], [34, 197, 226], [32, 199, 223], [31, 201, 221], [30, 203, 218], [28, 205, 216], [27, 208, 213], [26, 210, 210], [26, 212, 208], [25, 213, 205], [24, 215, 202], [24, 217, 200], [24, 219, 197], [24, 221, 194], [24, 222, 192], [24, 224, 189], [25, 226, 187], [25, 227, 185], [26, 228, 182], [28, 230, 180], [29, 231, 178], [31, 233, 175], [32, 234, 172], [34, 235, 170], [37, 236, 167], [39, 238, 164], [42, 239, 161], [44, 240, 158], [47, 241, 155], [50, 242, 152], [53, 243, 148], [56, 244, 145], [60, 245, 142], [63, 246, 138], [67, 247, 135], [70, 248, 132], [74, 248, 128], [78, 249, 125], [82, 250, 122], [85, 250, 118], [89, 251, 115], [93, 252, 111], [97, 252, 108], [101, 253, 105], [105, 253, 102], [109, 254, 98], [113, 254, 95], [117, 254, 92], [121, 254, 89], [125, 255, 86], [128, 255, 83], [132, 255, 81], [136, 255, 78], [139, 255, 75], [143, 255, 73], [146, 255, 71], [150, 254, 68], [153, 254, 66], [156, 254, 64], [159, 253, 63], [161, 253, 61], [164, 252, 60], [167, 252, 58], [169, 251, 57], [172, 251, 56], [175, 250, 55], [177, 249, 54], [180, 248, 54], [183, 247, 53], [185, 246, 53], [188, 245, 52], [190, 244, 52], [193, 243, 52], [195, 241, 52], [198, 240, 52], [200, 239, 52], [203, 237, 52], [205, 236, 52], [208, 234, 52], [210, 233, 53], [212, 231, 53], [215, 229, 53], [217, 228, 54], [219, 226, 54], [221, 224, 55], [223, 223, 55], [225, 221, 55], [227, 219, 56], [229, 217, 56], [231, 215, 57], [233, 213, 57], [235, 211, 57], [236, 209, 58], [238, 207, 58], [239, 205, 58], [241, 203, 58], [242, 201, 58], [244, 199, 58], [245, 197, 58], [246, 195, 58], [247, 193, 58], [248, 190, 57], [249, 188, 57], [250, 186, 57], [251, 184, 56], [251, 182, 55], [252, 179, 54], [252, 177, 54], [253, 174, 53], [253, 172, 52], [254, 169, 51], [254, 167, 50], [254, 164, 49], [254, 161, 48], [254, 158, 47], [254, 155, 45], [254, 153, 44], [254, 150, 43], [254, 147, 42], [254, 144, 41], [253, 141, 39], [253, 138, 38], [252, 135, 37], [252, 132, 35], [251, 129, 34], [251, 126, 33], [250, 123, 31], [249, 120, 30], [249, 117, 29], [248, 114, 28], [247, 111, 26], [246, 108, 25], [245, 105, 24], [244, 102, 23], [243, 99, 21], [242, 96, 20], [241, 93, 19], [240, 91, 18], [239, 88, 17], [237, 85, 16], [236, 83, 15], [235, 80, 14], [234, 78, 13], [232, 75, 12], [231, 73, 12], [229, 71, 11], [228, 69, 10], [226, 67, 10], [225, 65, 9], [223, 63, 8], [221, 61, 8], [220, 59, 7], [218, 57, 7], [216, 55, 6], [214, 53, 6], [212, 51, 5], [210, 49, 5], [208, 47, 5], [206, 45, 4], [204, 43, 4], [202, 42, 4], [200, 40, 3], [197, 38, 3], [195, 37, 3], [193, 35, 2], [190, 33, 2], [188, 32, 2], [185, 30, 2], [183, 29, 2], [180, 27, 1], [178, 26, 1], [175, 24, 1], [172, 23, 1], [169, 22, 1], [167, 20, 1], [164, 19, 1], [161, 18, 1], [158, 16, 1], [155, 15, 1], [152, 14, 1], [149, 13, 1], [146, 11, 1], [142, 10, 1], [139, 9, 2], [136, 8, 2], [133, 7, 2], [129, 6, 2], [126, 5, 2], [122, 4, 3], ]; var fosphor = [ [6, 0, 13], [7, 0, 14], [7, 0, 15], [7, 0, 16], [7, 0, 17], [7, 0, 18], [7, 0, 18], [7, 0, 19], [7, 0, 20], [7, 0, 21], [7, 0, 22], [7, 0, 23], [7, 0, 24], [7, 0, 25], [7, 0, 26], [6, 0, 27], [6, 0, 28], [6, 0, 29], [5, 0, 30], [5, 0, 31], [5, 0, 32], [4, 0, 33], [4, 0, 34], [3, 0, 35], [3, 0, 36], [2, 0, 36], [2, 0, 37], [1, 0, 38], [0, 0, 39], [0, 0, 40], [0, 1, 41], [0, 2, 42], [0, 3, 43], [0, 4, 44], [0, 5, 45], [0, 5, 46], [0, 6, 47], [0, 7, 48], [0, 8, 49], [0, 9, 50], [0, 10, 51], [0, 12, 52], [0, 13, 53], [0, 14, 54], [0, 15, 55], [0, 16, 56], [0, 18, 56], [0, 19, 57], [0, 20, 58], [0, 22, 59], [0, 23, 60], [0, 24, 61], [0, 26, 62], [0, 27, 63], [0, 29, 64], [0, 31, 65], [0, 32, 66], [0, 34, 67], [0, 36, 68], [0, 37, 69], [0, 39, 70], [0, 41, 71], [0, 43, 72], [0, 44, 73], [0, 46, 74], [0, 48, 74], [0, 50, 75], [0, 52, 76], [0, 54, 77], [0, 56, 78], [0, 58, 79], [0, 60, 80], [0, 63, 81], [0, 65, 82], [0, 67, 83], [0, 69, 84], [0, 71, 85], [0, 74, 86], [0, 76, 87], [0, 79, 88], [0, 81, 89], [0, 83, 90], [0, 86, 91], [0, 88, 92], [0, 91, 93], [0, 94, 94], [0, 94, 93], [0, 95, 92], [0, 96, 91], [0, 97, 90], [0, 98, 90], [0, 99, 89], [0, 100, 88], [0, 101, 87], [0, 102, 86], [0, 103, 85], [0, 104, 84], [0, 105, 83], [0, 106, 82], [0, 107, 80], [0, 108, 79], [0, 109, 78], [0, 110, 77], [0, 111, 75], [0, 112, 74], [0, 112, 73], [0, 113, 71], [0, 114, 70], [0, 115, 69], [0, 116, 67], [0, 117, 66], [0, 118, 64], [0, 119, 62], [0, 120, 61], [0, 121, 59], [0, 122, 57], [0, 123, 56], [0, 124, 54], [0, 125, 52], [0, 126, 50], [0, 127, 48], [0, 128, 47], [0, 129, 45], [0, 130, 43], [0, 131, 41], [0, 132, 39], [0, 132, 37], [0, 133, 35], [0, 134, 32], [0, 135, 30], [0, 136, 28], [0, 137, 26], [0, 138, 24], [0, 139, 21], [0, 140, 19], [0, 141, 17], [0, 142, 14], [0, 143, 12], [0, 144, 9], [0, 145, 7], [0, 146, 4], [0, 147, 2], [1, 148, 0], [3, 149, 0], [6, 150, 0], [9, 150, 0], [12, 151, 0], [14, 152, 0], [17, 153, 0], [20, 154, 0], [23, 155, 0], [26, 156, 0], [29, 157, 0], [32, 158, 0], [35, 159, 0], [38, 160, 0], [41, 161, 0], [44, 162, 0], [47, 163, 0], [50, 164, 0], [53, 165, 0], [57, 166, 0], [60, 167, 0], [63, 168, 0], [66, 169, 0], [70, 170, 0], [73, 170, 0], [77, 171, 0], [80, 172, 0], [84, 173, 0], [87, 174, 0], [91, 175, 0], [94, 176, 0], [98, 177, 0], [102, 178, 0], [105, 179, 0], [109, 180, 0], [113, 181, 0], [117, 182, 0], [120, 183, 0], [124, 184, 0], [128, 185, 0], [132, 186, 0], [136, 187, 0], [140, 188, 0], [144, 188, 0], [148, 189, 0], [152, 190, 0], [156, 191, 0], [161, 192, 0], [165, 193, 0], [169, 194, 0], [173, 195, 0], [178, 196, 0], [182, 197, 0], [186, 198, 0], [191, 199, 0], [195, 200, 0], [200, 201, 0], [202, 199, 0], [203, 197, 0], [204, 194, 0], [205, 191, 0], [206, 189, 0], [207, 186, 0], [208, 183, 0], [208, 180, 0], [209, 177, 0], [210, 174, 0], [211, 172, 0], [212, 169, 0], [213, 166, 0], [214, 163, 0], [215, 159, 0], [216, 156, 0], [217, 153, 0], [218, 150, 0], [219, 147, 0], [220, 144, 0], [221, 140, 0], [222, 137, 0], [223, 134, 0], [224, 130, 0], [225, 127, 0], [226, 123, 0], [226, 120, 0], [227, 116, 0], [228, 113, 0], [229, 109, 0], [230, 106, 0], [231, 102, 0], [232, 98, 0], [233, 95, 0], [234, 91, 0], [235, 87, 0], [236, 83, 0], [237, 79, 0], [238, 76, 0], [239, 72, 0], [240, 68, 0], [241, 64, 0], [242, 60, 0], [243, 56, 0], [244, 52, 0], [245, 47, 0], [246, 43, 0], [246, 39, 0], [247, 35, 0], [248, 31, 0], [249, 26, 0], [250, 22, 0], [251, 18, 0], [252, 13, 0], [253, 9, 0], [254, 4, 0], [255, 0, 0], ]; var viridis = [[68, 1, 84], [68, 2, 86], [69, 4, 87], [69, 5, 89], [70, 7, 90], [70, 8, 92], [70, 10, 93], [70, 11, 94], [71, 13, 96], [71, 14, 97], [71, 16, 99], [71, 17, 100], [71, 19, 101], [72, 20, 103], [72, 22, 104], [72, 23, 105], [72, 24, 106], [72, 26, 108], [72, 27, 109], [72, 28, 110], [72, 29, 111], [72, 31, 112], [72, 32, 113], [72, 33, 115], [72, 35, 116], [72, 36, 117], [72, 37, 118], [72, 38, 119], [72, 40, 120], [72, 41, 121], [71, 42, 122], [71, 44, 122], [71, 45, 123], [71, 46, 124], [71, 47, 125], [70, 48, 126], [70, 50, 126], [70, 51, 127], [70, 52, 128], [69, 53, 129], [69, 55, 129], [69, 56, 130], [68, 57, 131], [68, 58, 131], [68, 59, 132], [67, 61, 132], [67, 62, 133], [66, 63, 133], [66, 64, 134], [66, 65, 134], [65, 66, 135], [65, 68, 135], [64, 69, 136], [64, 70, 136], [63, 71, 136], [63, 72, 137], [62, 73, 137], [62, 74, 137], [62, 76, 138], [61, 77, 138], [61, 78, 138], [60, 79, 138], [60, 80, 139], [59, 81, 139], [59, 82, 139], [58, 83, 139], [58, 84, 140], [57, 85, 140], [57, 86, 140], [56, 88, 140], [56, 89, 140], [55, 90, 140], [55, 91, 141], [54, 92, 141], [54, 93, 141], [53, 94, 141], [53, 95, 141], [52, 96, 141], [52, 97, 141], [51, 98, 141], [51, 99, 141], [50, 100, 142], [50, 101, 142], [49, 102, 142], [49, 103, 142], [49, 104, 142], [48, 105, 142], [48, 106, 142], [47, 107, 142], [47, 108, 142], [46, 109, 142], [46, 110, 142], [46, 111, 142], [45, 112, 142], [45, 113, 142], [44, 113, 142], [44, 114, 142], [44, 115, 142], [43, 116, 142], [43, 117, 142], [42, 118, 142], [42, 119, 142], [42, 120, 142], [41, 121, 142], [41, 122, 142], [41, 123, 142], [40, 124, 142], [40, 125, 142], [39, 126, 142], [39, 127, 142], [39, 128, 142], [38, 129, 142], [38, 130, 142], [38, 130, 142], [37, 131, 142], [37, 132, 142], [37, 133, 142], [36, 134, 142], [36, 135, 142], [35, 136, 142], [35, 137, 142], [35, 138, 141], [34, 139, 141], [34, 140, 141], [34, 141, 141], [33, 142, 141], [33, 143, 141], [33, 144, 141], [33, 145, 140], [32, 146, 140], [32, 146, 140], [32, 147, 140], [31, 148, 140], [31, 149, 139], [31, 150, 139], [31, 151, 139], [31, 152, 139], [31, 153, 138], [31, 154, 138], [30, 155, 138], [30, 156, 137], [30, 157, 137], [31, 158, 137], [31, 159, 136], [31, 160, 136], [31, 161, 136], [31, 161, 135], [31, 162, 135], [32, 163, 134], [32, 164, 134], [33, 165, 133], [33, 166, 133], [34, 167, 133], [34, 168, 132], [35, 169, 131], [36, 170, 131], [37, 171, 130], [37, 172, 130], [38, 173, 129], [39, 173, 129], [40, 174, 128], [41, 175, 127], [42, 176, 127], [44, 177, 126], [45, 178, 125], [46, 179, 124], [47, 180, 124], [49, 181, 123], [50, 182, 122], [52, 182, 121], [53, 183, 121], [55, 184, 120], [56, 185, 119], [58, 186, 118], [59, 187, 117], [61, 188, 116], [63, 188, 115], [64, 189, 114], [66, 190, 113], [68, 191, 112], [70, 192, 111], [72, 193, 110], [74, 193, 109], [76, 194, 108], [78, 195, 107], [80, 196, 106], [82, 197, 105], [84, 197, 104], [86, 198, 103], [88, 199, 101], [90, 200, 100], [92, 200, 99], [94, 201, 98], [96, 202, 96], [99, 203, 95], [101, 203, 94], [103, 204, 92], [105, 205, 91], [108, 205, 90], [110, 206, 88], [112, 207, 87], [115, 208, 86], [117, 208, 84], [119, 209, 83], [122, 209, 81], [124, 210, 80], [127, 211, 78], [129, 211, 77], [132, 212, 75], [134, 213, 73], [137, 213, 72], [139, 214, 70], [142, 214, 69], [144, 215, 67], [147, 215, 65], [149, 216, 64], [152, 216, 62], [155, 217, 60], [157, 217, 59], [160, 218, 57], [162, 218, 55], [165, 219, 54], [168, 219, 52], [170, 220, 50], [173, 220, 48], [176, 221, 47], [178, 221, 45], [181, 222, 43], [184, 222, 41], [186, 222, 40], [189, 223, 38], [192, 223, 37], [194, 223, 35], [197, 224, 33], [200, 224, 32], [202, 225, 31], [205, 225, 29], [208, 225, 28], [210, 226, 27], [213, 226, 26], [216, 226, 25], [218, 227, 25], [221, 227, 24], [223, 227, 24], [226, 228, 24], [229, 228, 25], [231, 228, 25], [234, 229, 26], [236, 229, 27], [239, 229, 28], [241, 229, 29], [244, 230, 30], [246, 230, 32], [248, 230, 33], [251, 231, 35], [253, 231, 37]] var inferno = [[0, 0, 4], [1, 0, 5], [1, 1, 6], [1, 1, 8], [2, 1, 10], [2, 2, 12], [2, 2, 14], [3, 2, 16], [4, 3, 18], [4, 3, 20], [5, 4, 23], [6, 4, 25], [7, 5, 27], [8, 5, 29], [9, 6, 31], [10, 7, 34], [11, 7, 36], [12, 8, 38], [13, 8, 41], [14, 9, 43], [16, 9, 45], [17, 10, 48], [18, 10, 50], [20, 11, 52], [21, 11, 55], [22, 11, 57], [24, 12, 60], [25, 12, 62], [27, 12, 65], [28, 12, 67], [30, 12, 69], [31, 12, 72], [33, 12, 74], [35, 12, 76], [36, 12, 79], [38, 12, 81], [40, 11, 83], [41, 11, 85], [43, 11, 87], [45, 11, 89], [47, 10, 91], [49, 10, 92], [50, 10, 94], [52, 10, 95], [54, 9, 97], [56, 9, 98], [57, 9, 99], [59, 9, 100], [61, 9, 101], [62, 9, 102], [64, 10, 103], [66, 10, 104], [68, 10, 104], [69, 10, 105], [71, 11, 106], [73, 11, 106], [74, 12, 107], [76, 12, 107], [77, 13, 108], [79, 13, 108], [81, 14, 108], [82, 14, 109], [84, 15, 109], [85, 15, 109], [87, 16, 110], [89, 16, 110], [90, 17, 110], [92, 18, 110], [93, 18, 110], [95, 19, 110], [97, 19, 110], [98, 20, 110], [100, 21, 110], [101, 21, 110], [103, 22, 110], [105, 22, 110], [106, 23, 110], [108, 24, 110], [109, 24, 110], [111, 25, 110], [113, 25, 110], [114, 26, 110], [116, 26, 110], [117, 27, 110], [119, 28, 109], [120, 28, 109], [122, 29, 109], [124, 29, 109], [125, 30, 109], [127, 30, 108], [128, 31, 108], [130, 32, 108], [132, 32, 107], [133, 33, 107], [135, 33, 107], [136, 34, 106], [138, 34, 106], [140, 35, 105], [141, 35, 105], [143, 36, 105], [144, 37, 104], [146, 37, 104], [147, 38, 103], [149, 38, 103], [151, 39, 102], [152, 39, 102], [154, 40, 101], [155, 41, 100], [157, 41, 100], [159, 42, 99], [160, 42, 99], [162, 43, 98], [163, 44, 97], [165, 44, 96], [166, 45, 96], [168, 46, 95], [169, 46, 94], [171, 47, 94], [173, 48, 93], [174, 48, 92], [176, 49, 91], [177, 50, 90], [179, 50, 90], [180, 51, 89], [182, 52, 88], [183, 53, 87], [185, 53, 86], [186, 54, 85], [188, 55, 84], [189, 56, 83], [191, 57, 82], [192, 58, 81], [193, 58, 80], [195, 59, 79], [196, 60, 78], [198, 61, 77], [199, 62, 76], [200, 63, 75], [202, 64, 74], [203, 65, 73], [204, 66, 72], [206, 67, 71], [207, 68, 70], [208, 69, 69], [210, 70, 68], [211, 71, 67], [212, 72, 66], [213, 74, 65], [215, 75, 63], [216, 76, 62], [217, 77, 61], [218, 78, 60], [219, 80, 59], [221, 81, 58], [222, 82, 56], [223, 83, 55], [224, 85, 54], [225, 86, 53], [226, 87, 52], [227, 89, 51], [228, 90, 49], [229, 92, 48], [230, 93, 47], [231, 94, 46], [232, 96, 45], [233, 97, 43], [234, 99, 42], [235, 100, 41], [235, 102, 40], [236, 103, 38], [237, 105, 37], [238, 106, 36], [239, 108, 35], [239, 110, 33], [240, 111, 32], [241, 113, 31], [241, 115, 29], [242, 116, 28], [243, 118, 27], [243, 120, 25], [244, 121, 24], [245, 123, 23], [245, 125, 21], [246, 126, 20], [246, 128, 19], [247, 130, 18], [247, 132, 16], [248, 133, 15], [248, 135, 14], [248, 137, 12], [249, 139, 11], [249, 140, 10], [249, 142, 9], [250, 144, 8], [250, 146, 7], [250, 148, 7], [251, 150, 6], [251, 151, 6], [251, 153, 6], [251, 155, 6], [251, 157, 7], [252, 159, 7], [252, 161, 8], [252, 163, 9], [252, 165, 10], [252, 166, 12], [252, 168, 13], [252, 170, 15], [252, 172, 17], [252, 174, 18], [252, 176, 20], [252, 178, 22], [252, 180, 24], [251, 182, 26], [251, 184, 29], [251, 186, 31], [251, 188, 33], [251, 190, 35], [250, 192, 38], [250, 194, 40], [250, 196, 42], [250, 198, 45], [249, 199, 47], [249, 201, 50], [249, 203, 53], [248, 205, 55], [248, 207, 58], [247, 209, 61], [247, 211, 64], [246, 213, 67], [246, 215, 70], [245, 217, 73], [245, 219, 76], [244, 221, 79], [244, 223, 83], [244, 225, 86], [243, 227, 90], [243, 229, 93], [242, 230, 97], [242, 232, 101], [242, 234, 105], [241, 236, 109], [241, 237, 113], [241, 239, 117], [241, 241, 121], [242, 242, 125], [242, 244, 130], [243, 245, 134], [243, 246, 138], [244, 248, 142], [245, 249, 146], [246, 250, 150], [248, 251, 154], [249, 252, 157], [250, 253, 161], [252, 255, 164]] var magma = [[0, 0, 4], [1, 0, 5], [1, 1, 6], [1, 1, 8], [2, 1, 9], [2, 2, 11], [2, 2, 13], [3, 3, 15], [3, 3, 18], [4, 4, 20], [5, 4, 22], [6, 5, 24], [6, 5, 26], [7, 6, 28], [8, 7, 30], [9, 7, 32], [10, 8, 34], [11, 9, 36], [12, 9, 38], [13, 10, 41], [14, 11, 43], [16, 11, 45], [17, 12, 47], [18, 13, 49], [19, 13, 52], [20, 14, 54], [21, 14, 56], [22, 15, 59], [24, 15, 61], [25, 16, 63], [26, 16, 66], [28, 16, 68], [29, 17, 71], [30, 17, 73], [32, 17, 75], [33, 17, 78], [34, 17, 80], [36, 18, 83], [37, 18, 85], [39, 18, 88], [41, 17, 90], [42, 17, 92], [44, 17, 95], [45, 17, 97], [47, 17, 99], [49, 17, 101], [51, 16, 103], [52, 16, 105], [54, 16, 107], [56, 16, 108], [57, 15, 110], [59, 15, 112], [61, 15, 113], [63, 15, 114], [64, 15, 116], [66, 15, 117], [68, 15, 118], [69, 16, 119], [71, 16, 120], [73, 16, 120], [74, 16, 121], [76, 17, 122], [78, 17, 123], [79, 18, 123], [81, 18, 124], [82, 19, 124], [84, 19, 125], [86, 20, 125], [87, 21, 126], [89, 21, 126], [90, 22, 126], [92, 22, 127], [93, 23, 127], [95, 24, 127], [96, 24, 128], [98, 25, 128], [100, 26, 128], [101, 26, 128], [103, 27, 128], [104, 28, 129], [106, 28, 129], [107, 29, 129], [109, 29, 129], [110, 30, 129], [112, 31, 129], [114, 31, 129], [115, 32, 129], [117, 33, 129], [118, 33, 129], [120, 34, 129], [121, 34, 130], [123, 35, 130], [124, 35, 130], [126, 36, 130], [128, 37, 130], [129, 37, 129], [131, 38, 129], [132, 38, 129], [134, 39, 129], [136, 39, 129], [137, 40, 129], [139, 41, 129], [140, 41, 129], [142, 42, 129], [144, 42, 129], [145, 43, 129], [147, 43, 128], [148, 44, 128], [150, 44, 128], [152, 45, 128], [153, 45, 128], [155, 46, 127], [156, 46, 127], [158, 47, 127], [160, 47, 127], [161, 48, 126], [163, 48, 126], [165, 49, 126], [166, 49, 125], [168, 50, 125], [170, 51, 125], [171, 51, 124], [173, 52, 124], [174, 52, 123], [176, 53, 123], [178, 53, 123], [179, 54, 122], [181, 54, 122], [183, 55, 121], [184, 55, 121], [186, 56, 120], [188, 57, 120], [189, 57, 119], [191, 58, 119], [192, 58, 118], [194, 59, 117], [196, 60, 117], [197, 60, 116], [199, 61, 115], [200, 62, 115], [202, 62, 114], [204, 63, 113], [205, 64, 113], [207, 64, 112], [208, 65, 111], [210, 66, 111], [211, 67, 110], [213, 68, 109], [214, 69, 108], [216, 69, 108], [217, 70, 107], [219, 71, 106], [220, 72, 105], [222, 73, 104], [223, 74, 104], [224, 76, 103], [226, 77, 102], [227, 78, 101], [228, 79, 100], [229, 80, 100], [231, 82, 99], [232, 83, 98], [233, 84, 98], [234, 86, 97], [235, 87, 96], [236, 88, 96], [237, 90, 95], [238, 91, 94], [239, 93, 94], [240, 95, 94], [241, 96, 93], [242, 98, 93], [242, 100, 92], [243, 101, 92], [244, 103, 92], [244, 105, 92], [245, 107, 92], [246, 108, 92], [246, 110, 92], [247, 112, 92], [247, 114, 92], [248, 116, 92], [248, 118, 92], [249, 120, 93], [249, 121, 93], [249, 123, 93], [250, 125, 94], [250, 127, 94], [250, 129, 95], [251, 131, 95], [251, 133, 96], [251, 135, 97], [252, 137, 97], [252, 138, 98], [252, 140, 99], [252, 142, 100], [252, 144, 101], [253, 146, 102], [253, 148, 103], [253, 150, 104], [253, 152, 105], [253, 154, 106], [253, 155, 107], [254, 157, 108], [254, 159, 109], [254, 161, 110], [254, 163, 111], [254, 165, 113], [254, 167, 114], [254, 169, 115], [254, 170, 116], [254, 172, 118], [254, 174, 119], [254, 176, 120], [254, 178, 122], [254, 180, 123], [254, 182, 124], [254, 183, 126], [254, 185, 127], [254, 187, 129], [254, 189, 130], [254, 191, 132], [254, 193, 133], [254, 194, 135], [254, 196, 136], [254, 198, 138], [254, 200, 140], [254, 202, 141], [254, 204, 143], [254, 205, 144], [254, 207, 146], [254, 209, 148], [254, 211, 149], [254, 213, 151], [254, 215, 153], [254, 216, 154], [253, 218, 156], [253, 220, 158], [253, 222, 160], [253, 224, 161], [253, 226, 163], [253, 227, 165], [253, 229, 167], [253, 231, 169], [253, 233, 170], [253, 235, 172], [252, 236, 174], [252, 238, 176], [252, 240, 178], [252, 242, 180], [252, 244, 182], [252, 246, 184], [252, 247, 185], [252, 249, 187], [252, 251, 189], [252, 253, 191]] var jet = [[0, 0, 128], [0, 0, 132], [0, 0, 137], [0, 0, 141], [0, 0, 146], [0, 0, 150], [0, 0, 155], [0, 0, 159], [0, 0, 164], [0, 0, 168], [0, 0, 173], [0, 0, 178], [0, 0, 182], [0, 0, 187], [0, 0, 191], [0, 0, 196], [0, 0, 200], [0, 0, 205], [0, 0, 209], [0, 0, 214], [0, 0, 218], [0, 0, 223], [0, 0, 227], [0, 0, 232], [0, 0, 237], [0, 0, 241], [0, 0, 246], [0, 0, 250], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 4, 255], [0, 8, 255], [0, 12, 255], [0, 16, 255], [0, 20, 255], [0, 24, 255], [0, 28, 255], [0, 32, 255], [0, 36, 255], [0, 40, 255], [0, 44, 255], [0, 48, 255], [0, 52, 255], [0, 56, 255], [0, 60, 255], [0, 64, 255], [0, 68, 255], [0, 72, 255], [0, 76, 255], [0, 80, 255], [0, 84, 255], [0, 88, 255], [0, 92, 255], [0, 96, 255], [0, 100, 255], [0, 104, 255], [0, 108, 255], [0, 112, 255], [0, 116, 255], [0, 120, 255], [0, 124, 255], [0, 128, 255], [0, 132, 255], [0, 136, 255], [0, 140, 255], [0, 144, 255], [0, 148, 255], [0, 152, 255], [0, 156, 255], [0, 160, 255], [0, 164, 255], [0, 168, 255], [0, 172, 255], [0, 176, 255], [0, 180, 255], [0, 184, 255], [0, 188, 255], [0, 192, 255], [0, 196, 255], [0, 200, 255], [0, 204, 255], [0, 208, 255], [0, 212, 255], [0, 216, 255], [0, 220, 254], [0, 224, 251], [0, 228, 248], [2, 232, 244], [6, 236, 241], [9, 240, 238], [12, 244, 235], [15, 248, 231], [19, 252, 228], [22, 255, 225], [25, 255, 222], [28, 255, 219], [31, 255, 215], [35, 255, 212], [38, 255, 209], [41, 255, 206], [44, 255, 202], [48, 255, 199], [51, 255, 196], [54, 255, 193], [57, 255, 190], [60, 255, 186], [64, 255, 183], [67, 255, 180], [70, 255, 177], [73, 255, 173], [77, 255, 170], [80, 255, 167], [83, 255, 164], [86, 255, 160], [90, 255, 157], [93, 255, 154], [96, 255, 151], [99, 255, 148], [102, 255, 144], [106, 255, 141], [109, 255, 138], [112, 255, 135], [115, 255, 131], [119, 255, 128], [122, 255, 125], [125, 255, 122], [128, 255, 119], [131, 255, 115], [135, 255, 112], [138, 255, 109], [141, 255, 106], [144, 255, 102], [148, 255, 99], [151, 255, 96], [154, 255, 93], [157, 255, 90], [160, 255, 86], [164, 255, 83], [167, 255, 80], [170, 255, 77], [173, 255, 73], [177, 255, 70], [180, 255, 67], [183, 255, 64], [186, 255, 60], [190, 255, 57], [193, 255, 54], [196, 255, 51], [199, 255, 48], [202, 255, 44], [206, 255, 41], [209, 255, 38], [212, 255, 35], [215, 255, 31], [219, 255, 28], [222, 255, 25], [225, 255, 22], [228, 255, 19], [231, 255, 15], [235, 255, 12], [238, 255, 9], [241, 252, 6], [244, 248, 2], [248, 245, 0], [251, 241, 0], [254, 237, 0], [255, 234, 0], [255, 230, 0], [255, 226, 0], [255, 222, 0], [255, 219, 0], [255, 215, 0], [255, 211, 0], [255, 208, 0], [255, 204, 0], [255, 200, 0], [255, 196, 0], [255, 193, 0], [255, 189, 0], [255, 185, 0], [255, 182, 0], [255, 178, 0], [255, 174, 0], [255, 171, 0], [255, 167, 0], [255, 163, 0], [255, 159, 0], [255, 156, 0], [255, 152, 0], [255, 148, 0], [255, 145, 0], [255, 141, 0], [255, 137, 0], [255, 134, 0], [255, 130, 0], [255, 126, 0], [255, 122, 0], [255, 119, 0], [255, 115, 0], [255, 111, 0], [255, 108, 0], [255, 104, 0], [255, 100, 0], [255, 96, 0], [255, 93, 0], [255, 89, 0], [255, 85, 0], [255, 82, 0], [255, 78, 0], [255, 74, 0], [255, 71, 0], [255, 67, 0], [255, 63, 0], [255, 59, 0], [255, 56, 0], [255, 52, 0], [255, 48, 0], [255, 45, 0], [255, 41, 0], [255, 37, 0], [255, 34, 0], [255, 30, 0], [255, 26, 0], [255, 22, 0], [255, 19, 0], [250, 15, 0], [246, 11, 0], [241, 8, 0], [237, 4, 0], [232, 0, 0], [228, 0, 0], [223, 0, 0], [218, 0, 0], [214, 0, 0], [209, 0, 0], [205, 0, 0], [200, 0, 0], [196, 0, 0], [191, 0, 0], [187, 0, 0], [182, 0, 0], [178, 0, 0], [173, 0, 0], [168, 0, 0], [164, 0, 0], [159, 0, 0], [155, 0, 0], [150, 0, 0], [146, 0, 0], [141, 0, 0], [137, 0, 0], [132, 0, 0], [128, 0, 0]] var binary = [[255, 255, 255], [254, 254, 254], [253, 253, 253], [252, 252, 252], [251, 251, 251], [250, 250, 250], [249, 249, 249], [248, 248, 248], [247, 247, 247], [246, 246, 246], [245, 245, 245], [244, 244, 244], [243, 243, 243], [242, 242, 242], [241, 241, 241], [240, 240, 240], [239, 239, 239], [238, 238, 238], [237, 237, 237], [236, 236, 236], [235, 235, 235], [234, 234, 234], [233, 233, 233], [232, 232, 232], [231, 231, 231], [230, 230, 230], [229, 229, 229], [228, 228, 228], [227, 227, 227], [226, 226, 226], [225, 225, 225], [224, 224, 224], [223, 223, 223], [222, 222, 222], [221, 221, 221], [220, 220, 220], [219, 219, 219], [218, 218, 218], [217, 217, 217], [216, 216, 216], [215, 215, 215], [214, 214, 214], [213, 213, 213], [212, 212, 212], [211, 211, 211], [210, 210, 210], [209, 209, 209], [208, 208, 208], [207, 207, 207], [206, 206, 206], [205, 205, 205], [204, 204, 204], [203, 203, 203], [202, 202, 202], [201, 201, 201], [200, 200, 200], [199, 199, 199], [198, 198, 198], [197, 197, 197], [196, 196, 196], [195, 195, 195], [194, 194, 194], [193, 193, 193], [192, 192, 192], [191, 191, 191], [190, 190, 190], [189, 189, 189], [188, 188, 188], [187, 187, 187], [186, 186, 186], [185, 185, 185], [184, 184, 184], [183, 183, 183], [182, 182, 182], [181, 181, 181], [180, 180, 180], [179, 179, 179], [178, 178, 178], [177, 177, 177], [176, 176, 176], [175, 175, 175], [174, 174, 174], [173, 173, 173], [172, 172, 172], [171, 171, 171], [170, 170, 170], [169, 169, 169], [168, 168, 168], [167, 167, 167], [166, 166, 166], [165, 165, 165], [164, 164, 164], [163, 163, 163], [162, 162, 162], [161, 161, 161], [160, 160, 160], [159, 159, 159], [158, 158, 158], [157, 157, 157], [156, 156, 156], [155, 155, 155], [154, 154, 154], [153, 153, 153], [152, 152, 152], [151, 151, 151], [150, 150, 150], [149, 149, 149], [148, 148, 148], [147, 147, 147], [146, 146, 146], [145, 145, 145], [144, 144, 144], [143, 143, 143], [142, 142, 142], [141, 141, 141], [140, 140, 140], [139, 139, 139], [138, 138, 138], [137, 137, 137], [136, 136, 136], [135, 135, 135], [134, 134, 134], [133, 133, 133], [132, 132, 132], [131, 131, 131], [130, 130, 130], [129, 129, 129], [128, 128, 128], [127, 127, 127], [126, 126, 126], [125, 125, 125], [124, 124, 124], [123, 123, 123], [122, 122, 122], [121, 121, 121], [120, 120, 120], [119, 119, 119], [118, 118, 118], [117, 117, 117], [116, 116, 116], [115, 115, 115], [114, 114, 114], [113, 113, 113], [112, 112, 112], [111, 111, 111], [110, 110, 110], [109, 109, 109], [108, 108, 108], [107, 107, 107], [106, 106, 106], [105, 105, 105], [104, 104, 104], [103, 103, 103], [102, 102, 102], [101, 101, 101], [100, 100, 100], [99, 99, 99], [98, 98, 98], [97, 97, 97], [96, 96, 96], [95, 95, 95], [94, 94, 94], [93, 93, 93], [92, 92, 92], [91, 91, 91], [90, 90, 90], [89, 89, 89], [88, 88, 88], [87, 87, 87], [86, 86, 86], [85, 85, 85], [84, 84, 84], [83, 83, 83], [82, 82, 82], [81, 81, 81], [80, 80, 80], [79, 79, 79], [78, 78, 78], [77, 77, 77], [76, 76, 76], [75, 75, 75], [74, 74, 74], [73, 73, 73], [72, 72, 72], [71, 71, 71], [70, 70, 70], [69, 69, 69], [68, 68, 68], [67, 67, 67], [66, 66, 66], [65, 65, 65], [64, 64, 64], [63, 63, 63], [62, 62, 62], [61, 61, 61], [60, 60, 60], [59, 59, 59], [58, 58, 58], [57, 57, 57], [56, 56, 56], [55, 55, 55], [54, 54, 54], [53, 53, 53], [52, 52, 52], [51, 51, 51], [50, 50, 50], [49, 49, 49], [48, 48, 48], [47, 47, 47], [46, 46, 46], [45, 45, 45], [44, 44, 44], [43, 43, 43], [42, 42, 42], [41, 41, 41], [40, 40, 40], [39, 39, 39], [38, 38, 38], [37, 37, 37], [36, 36, 36], [35, 35, 35], [34, 34, 34], [33, 33, 33], [32, 32, 32], [31, 31, 31], [30, 30, 30], [29, 29, 29], [28, 28, 28], [27, 27, 27], [26, 26, 26], [25, 25, 25], [24, 24, 24], [23, 23, 23], [22, 22, 22], [21, 21, 21], [20, 20, 20], [19, 19, 19], [18, 18, 18], [17, 17, 17], [16, 16, 16], [15, 15, 15], [14, 14, 14], [13, 13, 13], [12, 12, 12], [11, 11, 11], [10, 10, 10], [9, 9, 9], [8, 8, 8], [7, 7, 7], [6, 6, 6], [5, 5, 5], [4, 4, 4], [3, 3, 3], [2, 2, 2], [1, 1, 1], [0, 0, 0]] var plasma = [[13, 8, 135], [16, 7, 136], [19, 7, 137], [22, 7, 138], [25, 6, 140], [27, 6, 141], [29, 6, 142], [32, 6, 143], [34, 6, 144], [36, 6, 145], [38, 5, 145], [40, 5, 146], [42, 5, 147], [44, 5, 148], [46, 5, 149], [47, 5, 150], [49, 5, 151], [51, 5, 151], [53, 4, 152], [55, 4, 153], [56, 4, 154], [58, 4, 154], [60, 4, 155], [62, 4, 156], [63, 4, 156], [65, 4, 157], [67, 3, 158], [68, 3, 158], [70, 3, 159], [72, 3, 159], [73, 3, 160], [75, 3, 161], [76, 2, 161], [78, 2, 162], [80, 2, 162], [81, 2, 163], [83, 2, 163], [85, 2, 164], [86, 1, 164], [88, 1, 164], [89, 1, 165], [91, 1, 165], [92, 1, 166], [94, 1, 166], [96, 1, 166], [97, 0, 167], [99, 0, 167], [100, 0, 167], [102, 0, 167], [103, 0, 168], [105, 0, 168], [106, 0, 168], [108, 0, 168], [110, 0, 168], [111, 0, 168], [113, 0, 168], [114, 1, 168], [116, 1, 168], [117, 1, 168], [119, 1, 168], [120, 1, 168], [122, 2, 168], [123, 2, 168], [125, 3, 168], [126, 3, 168], [128, 4, 168], [129, 4, 167], [131, 5, 167], [132, 5, 167], [134, 6, 166], [135, 7, 166], [136, 8, 166], [138, 9, 165], [139, 10, 165], [141, 11, 165], [142, 12, 164], [143, 13, 164], [145, 14, 163], [146, 15, 163], [148, 16, 162], [149, 17, 161], [150, 19, 161], [152, 20, 160], [153, 21, 159], [154, 22, 159], [156, 23, 158], [157, 24, 157], [158, 25, 157], [160, 26, 156], [161, 27, 155], [162, 29, 154], [163, 30, 154], [165, 31, 153], [166, 32, 152], [167, 33, 151], [168, 34, 150], [170, 35, 149], [171, 36, 148], [172, 38, 148], [173, 39, 147], [174, 40, 146], [176, 41, 145], [177, 42, 144], [178, 43, 143], [179, 44, 142], [180, 46, 141], [181, 47, 140], [182, 48, 139], [183, 49, 138], [184, 50, 137], [186, 51, 136], [187, 52, 136], [188, 53, 135], [189, 55, 134], [190, 56, 133], [191, 57, 132], [192, 58, 131], [193, 59, 130], [194, 60, 129], [195, 61, 128], [196, 62, 127], [197, 64, 126], [198, 65, 125], [199, 66, 124], [200, 67, 123], [201, 68, 122], [202, 69, 122], [203, 70, 121], [204, 71, 120], [204, 73, 119], [205, 74, 118], [206, 75, 117], [207, 76, 116], [208, 77, 115], [209, 78, 114], [210, 79, 113], [211, 81, 113], [212, 82, 112], [213, 83, 111], [213, 84, 110], [214, 85, 109], [215, 86, 108], [216, 87, 107], [217, 88, 106], [218, 90, 106], [218, 91, 105], [219, 92, 104], [220, 93, 103], [221, 94, 102], [222, 95, 101], [222, 97, 100], [223, 98, 99], [224, 99, 99], [225, 100, 98], [226, 101, 97], [226, 102, 96], [227, 104, 95], [228, 105, 94], [229, 106, 93], [229, 107, 93], [230, 108, 92], [231, 110, 91], [231, 111, 90], [232, 112, 89], [233, 113, 88], [233, 114, 87], [234, 116, 87], [235, 117, 86], [235, 118, 85], [236, 119, 84], [237, 121, 83], [237, 122, 82], [238, 123, 81], [239, 124, 81], [239, 126, 80], [240, 127, 79], [240, 128, 78], [241, 129, 77], [241, 131, 76], [242, 132, 75], [243, 133, 75], [243, 135, 74], [244, 136, 73], [244, 137, 72], [245, 139, 71], [245, 140, 70], [246, 141, 69], [246, 143, 68], [247, 144, 68], [247, 145, 67], [247, 147, 66], [248, 148, 65], [248, 149, 64], [249, 151, 63], [249, 152, 62], [249, 154, 62], [250, 155, 61], [250, 156, 60], [250, 158, 59], [251, 159, 58], [251, 161, 57], [251, 162, 56], [252, 163, 56], [252, 165, 55], [252, 166, 54], [252, 168, 53], [252, 169, 52], [253, 171, 51], [253, 172, 51], [253, 174, 50], [253, 175, 49], [253, 177, 48], [253, 178, 47], [253, 180, 47], [253, 181, 46], [254, 183, 45], [254, 184, 44], [254, 186, 44], [254, 187, 43], [254, 189, 42], [254, 190, 42], [254, 192, 41], [253, 194, 41], [253, 195, 40], [253, 197, 39], [253, 198, 39], [253, 200, 39], [253, 202, 38], [253, 203, 38], [252, 205, 37], [252, 206, 37], [252, 208, 37], [252, 210, 37], [251, 211, 36], [251, 213, 36], [251, 215, 36], [250, 216, 36], [250, 218, 36], [249, 220, 36], [249, 221, 37], [248, 223, 37], [248, 225, 37], [247, 226, 37], [247, 228, 37], [246, 230, 38], [246, 232, 38], [245, 233, 38], [245, 235, 39], [244, 237, 39], [243, 238, 39], [243, 240, 39], [242, 242, 39], [241, 244, 38], [241, 245, 37], [240, 247, 36], [240, 249, 33]] var rainbow = [[128, 0, 255], [126, 3, 255], [124, 6, 255], [122, 9, 255], [120, 13, 255], [118, 16, 255], [116, 19, 255], [114, 22, 255], [112, 25, 255], [110, 28, 255], [108, 31, 255], [106, 34, 254], [104, 38, 254], [102, 41, 254], [100, 44, 254], [98, 47, 254], [96, 50, 254], [94, 53, 254], [92, 56, 253], [90, 59, 253], [88, 62, 253], [86, 65, 253], [84, 68, 253], [82, 71, 252], [80, 74, 252], [78, 77, 252], [76, 80, 252], [74, 83, 251], [72, 86, 251], [70, 89, 251], [68, 92, 251], [66, 95, 250], [64, 98, 250], [62, 101, 250], [60, 104, 249], [57, 107, 249], [56, 109, 249], [54, 112, 248], [52, 115, 248], [49, 118, 248], [48, 121, 247], [46, 123, 247], [44, 126, 247], [41, 129, 246], [40, 132, 246], [38, 134, 245], [36, 137, 245], [33, 140, 244], [32, 142, 244], [30, 145, 243], [28, 147, 243], [25, 150, 243], [24, 152, 242], [22, 155, 242], [20, 157, 241], [17, 160, 241], [16, 162, 240], [14, 165, 239], [12, 167, 239], [9, 169, 238], [8, 172, 238], [6, 174, 237], [4, 176, 237], [1, 179, 236], [0, 181, 235], [2, 183, 235], [4, 185, 234], [7, 187, 234], [8, 190, 233], [10, 192, 232], [13, 194, 232], [15, 196, 231], [16, 198, 230], [18, 200, 230], [20, 202, 229], [23, 203, 228], [24, 205, 228], [26, 207, 227], [29, 209, 226], [31, 211, 225], [32, 213, 225], [34, 214, 224], [36, 216, 223], [39, 218, 222], [40, 219, 222], [42, 221, 221], [45, 222, 220], [47, 224, 219], [48, 225, 218], [50, 227, 218], [52, 228, 217], [55, 230, 216], [56, 231, 215], [58, 232, 214], [61, 234, 213], [63, 235, 213], [64, 236, 212], [66, 237, 211], [68, 238, 210], [70, 239, 209], [72, 241, 208], [74, 242, 207], [77, 243, 206], [78, 243, 205], [80, 244, 204], [82, 245, 203], [84, 246, 203], [86, 247, 202], [88, 248, 201], [90, 248, 200], [93, 249, 199], [94, 250, 198], [96, 250, 197], [98, 251, 196], [100, 251, 195], [102, 252, 194], [104, 252, 193], [106, 253, 192], [109, 253, 191], [110, 254, 190], [112, 254, 188], [114, 254, 187], [116, 254, 186], [118, 255, 185], [120, 255, 184], [122, 255, 183], [125, 255, 182], [126, 255, 181], [128, 255, 180], [130, 255, 179], [132, 255, 178], [134, 255, 176], [136, 255, 175], [139, 254, 174], [140, 254, 173], [142, 254, 172], [144, 254, 171], [146, 253, 169], [148, 253, 168], [150, 252, 167], [153, 252, 166], [155, 251, 165], [156, 251, 164], [158, 250, 162], [160, 250, 161], [162, 249, 160], [164, 248, 159], [166, 248, 157], [168, 247, 156], [171, 246, 155], [172, 245, 154], [174, 244, 152], [176, 243, 151], [178, 243, 150], [180, 242, 149], [182, 241, 147], [185, 239, 146], [187, 238, 145], [188, 237, 143], [190, 236, 142], [192, 235, 141], [194, 234, 140], [196, 232, 138], [198, 231, 137], [200, 230, 136], [203, 228, 134], [204, 227, 133], [206, 225, 132], [208, 224, 130], [210, 222, 129], [212, 221, 128], [214, 219, 126], [217, 218, 125], [219, 216, 123], [220, 214, 122], [222, 213, 121], [224, 211, 119], [226, 209, 118], [228, 207, 116], [230, 205, 115], [232, 203, 114], [235, 202, 112], [236, 200, 111], [238, 198, 109], [240, 196, 108], [242, 194, 107], [244, 192, 105], [246, 190, 104], [249, 187, 102], [251, 185, 101], [252, 183, 99], [254, 181, 98], [255, 179, 96], [255, 176, 95], [255, 174, 94], [255, 172, 92], [255, 169, 91], [255, 167, 89], [255, 165, 88], [255, 162, 86], [255, 160, 85], [255, 157, 83], [255, 155, 82], [255, 152, 80], [255, 150, 79], [255, 147, 77], [255, 145, 76], [255, 142, 74], [255, 140, 73], [255, 137, 71], [255, 134, 70], [255, 132, 68], [255, 129, 67], [255, 126, 65], [255, 123, 64], [255, 121, 62], [255, 118, 61], [255, 115, 59], [255, 112, 58], [255, 109, 56], [255, 107, 55], [255, 104, 53], [255, 101, 51], [255, 98, 50], [255, 95, 48], [255, 92, 47], [255, 89, 45], [255, 86, 44], [255, 83, 42], [255, 80, 41], [255, 77, 39], [255, 74, 38], [255, 71, 36], [255, 68, 34], [255, 65, 33], [255, 62, 31], [255, 59, 30], [255, 56, 28], [255, 53, 27], [255, 50, 25], [255, 47, 24], [255, 44, 22], [255, 41, 20], [255, 38, 19], [255, 34, 17], [255, 31, 16], [255, 28, 14], [255, 25, 13], [255, 22, 11], [255, 19, 9], [255, 16, 8], [255, 13, 6], [255, 9, 5], [255, 6, 3], [255, 3, 2], [255, 0, 0]] var ocean = [[0, 128, 0], [0, 126, 1], [0, 124, 2], [0, 123, 3], [0, 122, 4], [0, 120, 5], [0, 118, 6], [0, 117, 7], [0, 116, 8], [0, 114, 9], [0, 112, 10], [0, 111, 11], [0, 110, 12], [0, 108, 13], [0, 106, 14], [0, 105, 15], [0, 104, 16], [0, 102, 17], [0, 100, 18], [0, 99, 19], [0, 98, 20], [0, 96, 21], [0, 94, 22], [0, 93, 23], [0, 92, 24], [0, 90, 25], [0, 88, 26], [0, 87, 27], [0, 86, 28], [0, 84, 29], [0, 82, 30], [0, 81, 31], [0, 80, 32], [0, 78, 33], [0, 76, 34], [0, 75, 35], [0, 74, 36], [0, 72, 37], [0, 70, 38], [0, 69, 39], [0, 68, 40], [0, 66, 41], [0, 64, 42], [0, 63, 43], [0, 62, 44], [0, 60, 45], [0, 59, 46], [0, 57, 47], [0, 56, 48], [0, 54, 49], [0, 52, 50], [0, 51, 51], [0, 49, 52], [0, 48, 53], [0, 47, 54], [0, 45, 55], [0, 44, 56], [0, 42, 57], [0, 40, 58], [0, 39, 59], [0, 38, 60], [0, 36, 61], [0, 35, 62], [0, 33, 63], [0, 32, 64], [0, 30, 65], [0, 29, 66], [0, 27, 67], [0, 25, 68], [0, 24, 69], [0, 22, 70], [0, 21, 71], [0, 20, 72], [0, 18, 73], [0, 17, 74], [0, 15, 75], [0, 14, 76], [0, 12, 77], [0, 10, 78], [0, 9, 79], [0, 8, 80], [0, 6, 81], [0, 5, 82], [0, 3, 83], [0, 1, 84], [0, 0, 85], [0, 1, 86], [0, 3, 87], [0, 4, 88], [0, 6, 89], [0, 7, 90], [0, 9, 91], [0, 10, 92], [0, 12, 93], [0, 14, 94], [0, 15, 95], [0, 16, 96], [0, 18, 97], [0, 19, 98], [0, 21, 99], [0, 23, 100], [0, 24, 101], [0, 26, 102], [0, 27, 103], [0, 29, 104], [0, 30, 105], [0, 32, 106], [0, 33, 107], [0, 34, 108], [0, 36, 109], [0, 38, 110], [0, 39, 111], [0, 40, 112], [0, 42, 113], [0, 43, 114], [0, 45, 115], [0, 47, 116], [0, 48, 117], [0, 49, 118], [0, 51, 119], [0, 52, 120], [0, 54, 121], [0, 55, 122], [0, 57, 123], [0, 58, 124], [0, 60, 125], [0, 62, 126], [0, 63, 127], [0, 64, 128], [0, 66, 129], [0, 67, 130], [0, 69, 131], [0, 70, 132], [0, 72, 133], [0, 74, 134], [0, 75, 135], [0, 77, 136], [0, 78, 137], [0, 80, 138], [0, 81, 139], [0, 83, 140], [0, 84, 141], [0, 86, 142], [0, 87, 143], [0, 88, 144], [0, 90, 145], [0, 91, 146], [0, 93, 147], [0, 94, 148], [0, 96, 149], [0, 98, 150], [0, 99, 151], [0, 100, 152], [0, 102, 153], [0, 103, 154], [0, 105, 155], [0, 107, 156], [0, 108, 157], [0, 110, 158], [0, 111, 159], [0, 112, 160], [0, 114, 161], [0, 115, 162], [0, 117, 163], [0, 118, 164], [0, 120, 165], [0, 122, 166], [0, 123, 167], [0, 125, 168], [0, 126, 169], [0, 128, 170], [3, 129, 171], [6, 130, 172], [9, 132, 173], [12, 133, 174], [15, 135, 175], [18, 136, 176], [21, 138, 177], [24, 139, 178], [27, 141, 179], [30, 142, 180], [33, 144, 181], [36, 146, 182], [39, 147, 183], [42, 148, 184], [45, 150, 185], [48, 151, 186], [51, 153, 187], [54, 155, 188], [57, 156, 189], [60, 158, 190], [63, 159, 191], [66, 160, 192], [69, 162, 193], [72, 163, 194], [75, 165, 195], [78, 166, 196], [81, 168, 197], [84, 170, 198], [87, 171, 199], [90, 172, 200], [93, 174, 201], [96, 176, 202], [99, 177, 203], [102, 179, 204], [105, 180, 205], [108, 182, 206], [111, 183, 207], [114, 185, 208], [117, 186, 209], [120, 188, 210], [123, 189, 211], [126, 190, 212], [129, 192, 213], [132, 194, 214], [135, 195, 215], [138, 196, 216], [141, 198, 217], [144, 199, 218], [147, 201, 219], [150, 203, 220], [153, 204, 221], [156, 206, 222], [159, 207, 223], [162, 208, 224], [165, 210, 225], [168, 211, 226], [171, 213, 227], [174, 214, 228], [177, 216, 229], [180, 218, 230], [183, 219, 231], [186, 220, 232], [189, 222, 233], [192, 224, 234], [195, 225, 235], [198, 226, 236], [201, 228, 237], [204, 229, 238], [207, 231, 239], [210, 232, 240], [213, 234, 241], [216, 235, 242], [219, 237, 243], [222, 238, 244], [225, 240, 245], [228, 242, 246], [231, 243, 247], [234, 244, 248], [237, 246, 249], [240, 247, 250], [243, 249, 251], [246, 251, 252], [249, 252, 253], [252, 254, 254], [255, 255, 255]] var colormaps = [turbo, fosphor, viridis, inferno, magma, jet, binary, plasma, rainbow, ocean]; ================================================ FILE: freedata_gui/src/assets/waterfall/index.html ================================================ Spectrum Plot ================================================ FILE: freedata_gui/src/assets/waterfall/make_colormap.py ================================================ #!/usr/bin/env python import matplotlib.pyplot as plt colormaps = ('viridis', 'inferno', 'magma', 'jet', 'binary', 'plasma', 'turbo','rainbow', 'ocean') for c in colormaps: cmap_name = c cmap = plt.get_cmap(cmap_name) colors = [[int(round(255 * x)) for x in cmap(i)[:3]] for i in range(256)] print(f'var {c} = {colors}') print(f'var colormaps = [{", ".join(colormaps)}];') ================================================ FILE: freedata_gui/src/assets/waterfall/spectrum.js ================================================ /* * Copyright (c) 2019 Jeppe Ledet-Pedersen * This software is released under the MIT license. * See the LICENSE file for further details. */ "use strict"; Spectrum.prototype.squeeze = function (value, out_min, out_max) { if (value <= this.min_db) return out_min; else if (value >= this.max_db) return out_max; else return Math.round( ((value - this.min_db) / (this.max_db - this.min_db)) * out_max ); }; Spectrum.prototype.rowToImageData = function (bins) { for (var i = 0; i < this.imagedata.data.length; i += 4) { var cindex = this.squeeze(bins[i / 4], 0, 255); var color = this.colormap[cindex]; this.imagedata.data[i + 0] = color[0]; this.imagedata.data[i + 1] = color[1]; this.imagedata.data[i + 2] = color[2]; this.imagedata.data[i + 3] = 255; } }; Spectrum.prototype.addWaterfallRow = function (bins) { // Shift waterfall 1 row down this.ctx_wf.drawImage( this.ctx_wf.canvas, 0, 0, this.wf_size, this.wf_rows - 1, 0, 1, this.wf_size, this.wf_rows - 1 ); // Draw new line on waterfall canvas this.rowToImageData(bins); this.ctx_wf.putImageData(this.imagedata, 0, 0); var width = this.ctx.canvas.width; var height = this.ctx.canvas.height; // Copy scaled FFT canvas to screen. Only copy the number of rows that will // fit in waterfall area to avoid vertical scaling. this.ctx.imageSmoothingEnabled = false; var rows = Math.min(this.wf_rows, height - this.spectrumHeight); this.ctx.drawImage( this.ctx_wf.canvas, 0, 0, this.wf_size, rows, 0, this.spectrumHeight, width, height - this.spectrumHeight ); }; Spectrum.prototype.drawFFT = function (bins) { this.ctx.beginPath(); this.ctx.moveTo(-1, this.spectrumHeight + 1); for (var i = 0; i < bins.length; i++) { var y = this.spectrumHeight - this.squeeze(bins[i], 0, this.spectrumHeight); if (y > this.spectrumHeight - 1) y = this.spectrumHeight + 1; // Hide underflow if (y < 0) y = 0; if (i == 0) this.ctx.lineTo(-1, y); this.ctx.lineTo(i, y); if (i == bins.length - 1) this.ctx.lineTo(this.wf_size + 1, y); } this.ctx.lineTo(this.wf_size + 1, this.spectrumHeight + 1); this.ctx.strokeStyle = "#fefefe"; this.ctx.stroke(); }; //Spectrum.prototype.drawSpectrum = function(bins) { Spectrum.prototype.drawSpectrum = function () { var width = this.ctx.canvas.width; var height = this.ctx.canvas.height; // Modification by DJ2LS // Draw bandwidth lines // TODO: Math not correct. But a first attempt // it seems position is more or less equal to frequenzy by factor 10 // eg. position 150 == 1500Hz /* // CENTER LINE this.ctx_wf.beginPath(); this.ctx_wf.moveTo(150,0); this.ctx_wf.lineTo(150, height); this.ctx_wf.lineWidth = 1; this.ctx_wf.strokeStyle = '#8C8C8C'; this.ctx_wf.stroke() */ // 586Hz and 1700Hz LINES var linePositionLow = 121.6; //150 - bandwith/20 var linePositionHigh = 178.4; //150 + bandwidth/20 var linePositionLow2 = 65; //150 - bandwith/20 var linePositionHigh2 = 235; //150 + bandwith/20 var linePositionLow3 = 28.1; //150 - bandwith/20 var linePositionHigh3 = 271.9; //150 + bandwith/20 this.ctx_wf.beginPath(); this.ctx_wf.moveTo(linePositionLow, 0); this.ctx_wf.lineTo(linePositionLow, height); this.ctx_wf.moveTo(linePositionHigh, 0); this.ctx_wf.lineTo(linePositionHigh, height); this.ctx_wf.moveTo(linePositionLow2, 0); this.ctx_wf.lineTo(linePositionLow2, height); this.ctx_wf.moveTo(linePositionHigh2, 0); this.ctx_wf.lineTo(linePositionHigh2, height); this.ctx_wf.moveTo(linePositionLow3, 0); this.ctx_wf.lineTo(linePositionLow3, height); this.ctx_wf.moveTo(linePositionHigh3, 0); this.ctx_wf.lineTo(linePositionHigh3, height); this.ctx_wf.lineWidth = 1; this.ctx_wf.strokeStyle = "#C3C3C3"; this.ctx_wf.stroke(); // ---- END OF MODIFICATION ------ // Fill with black this.ctx.fillStyle = "white"; this.ctx.fillRect(0, 0, width, height); //Commenting out the remainder of this code, it's not needed and unused as of 6.9.11 and saves three if statements return; /* // FFT averaging if (this.averaging > 0) { if (!this.binsAverage || this.binsAverage.length != bins.length) { this.binsAverage = Array.from(bins); } else { for (var i = 0; i < bins.length; i++) { this.binsAverage[i] += this.alpha * (bins[i] - this.binsAverage[i]); } } bins = this.binsAverage; } // Max hold if (this.maxHold) { if (!this.binsMax || this.binsMax.length != bins.length) { this.binsMax = Array.from(bins); } else { for (var i = 0; i < bins.length; i++) { if (bins[i] > this.binsMax[i]) { this.binsMax[i] = bins[i]; } else { // Decay this.binsMax[i] = 1.0025 * this.binsMax[i]; } } } } // Do not draw anything if spectrum is not visible if (this.ctx_axes.canvas.height < 1) return; // Scale for FFT this.ctx.save(); this.ctx.scale(width / this.wf_size, 1); // Draw maxhold if (this.maxHold) this.drawFFT(this.binsMax); // Draw FFT bins this.drawFFT(bins); // Restore scale this.ctx.restore(); // Fill scaled path this.ctx.fillStyle = this.gradient; this.ctx.fill(); // Copy axes from offscreen canvas this.ctx.drawImage(this.ctx_axes.canvas, 0, 0); */ }; //Allow setting colormap Spectrum.prototype.setColorMap = function (index) { this.colormap = colormaps[index]; }; Spectrum.prototype.updateAxes = function () { var width = this.ctx_axes.canvas.width; var height = this.ctx_axes.canvas.height; // Clear axes canvas this.ctx_axes.clearRect(0, 0, width, height); // Draw axes this.ctx_axes.font = "12px sans-serif"; this.ctx_axes.fillStyle = "white"; this.ctx_axes.textBaseline = "middle"; this.ctx_axes.textAlign = "left"; var step = 10; for (var i = this.min_db + 10; i <= this.max_db - 10; i += step) { var y = height - this.squeeze(i, 0, height); this.ctx_axes.fillText(i, 5, y); this.ctx_axes.beginPath(); this.ctx_axes.moveTo(20, y); this.ctx_axes.lineTo(width, y); this.ctx_axes.strokeStyle = "rgba(200, 200, 200, 0.10)"; this.ctx_axes.stroke(); } this.ctx_axes.textBaseline = "bottom"; for (let i = 0; i < 11; i++) { var x = Math.round(width / 10) * i; if (this.spanHz > 0) { var adjust = 0; if (i == 0) { this.ctx_axes.textAlign = "left"; adjust = 3; } else if (i == 10) { this.ctx_axes.textAlign = "right"; adjust = -3; } else { this.ctx_axes.textAlign = "center"; } var freq = this.centerHz + (this.spanHz / 10) * (i - 5); if (this.centerHz + this.spanHz > 1e6) freq = freq / 1e6 + "M"; else if (this.centerHz + this.spanHz > 1e3) freq = freq / 1e3 + "k"; this.ctx_axes.fillText(freq, x + adjust, height - 3); } this.ctx_axes.beginPath(); this.ctx_axes.moveTo(x, 0); this.ctx_axes.lineTo(x, height); this.ctx_axes.strokeStyle = "rgba(200, 200, 200, 0.10)"; this.ctx_axes.stroke(); } }; Spectrum.prototype.addData = function (data) { if (!this.paused) { if (data.length != this.wf_size) { this.wf_size = data.length; this.ctx_wf.canvas.width = data.length; this.ctx_wf.fillStyle = "white"; this.ctx_wf.fillRect(0, 0, this.wf.width, this.wf.height); this.imagedata = this.ctx_wf.createImageData(data.length, 1); } //this.drawSpectrum(data); this.drawSpectrum(); this.addWaterfallRow(data); this.resize(); } }; Spectrum.prototype.updateSpectrumRatio = function () { this.spectrumHeight = Math.round( (this.canvas.height * this.spectrumPercent) / 100.0 ); this.gradient = this.ctx.createLinearGradient(0, 0, 0, this.spectrumHeight); for (var i = 0; i < this.colormap.length; i++) { var c = this.colormap[this.colormap.length - 1 - i]; this.gradient.addColorStop( i / this.colormap.length, "rgba(" + c[0] + "," + c[1] + "," + c[2] + ", 1.0)" ); } }; Spectrum.prototype.resize = function () { var width = this.parent.clientWidth; var height =this.parent.clientHeight; // little helper for setting height of clientHeight is not working as expected if (height == 0){ height = 250 } if (width == 0){ width=500; } if (this.canvas.width != width || this.canvas.height != height) { this.canvas.width = width; this.canvas.height = height; this.updateSpectrumRatio(); } if (this.axes.width != width || this.axes.height != this.spectrumHeight) { this.axes.width = width; this.axes.height = this.spectrumHeight; this.updateAxes(); } }; Spectrum.prototype.setSpectrumPercent = function (percent) { if (percent >= 0 && percent <= 100) { this.spectrumPercent = percent; this.updateSpectrumRatio(); } }; Spectrum.prototype.incrementSpectrumPercent = function () { if (this.spectrumPercent + this.spectrumPercentStep <= 100) { this.setSpectrumPercent(this.spectrumPercent + this.spectrumPercentStep); } }; Spectrum.prototype.decrementSpectrumPercent = function () { if (this.spectrumPercent - this.spectrumPercentStep >= 0) { this.setSpectrumPercent(this.spectrumPercent - this.spectrumPercentStep); } }; Spectrum.prototype.toggleColor = function () { this.colorindex++; if (this.colorindex >= colormaps.length) this.colorindex = 0; this.colormap = colormaps[this.colorindex]; this.updateSpectrumRatio(); }; Spectrum.prototype.setRange = function (min_db, max_db) { this.min_db = min_db; this.max_db = max_db; this.updateAxes(); }; Spectrum.prototype.rangeUp = function () { this.setRange(this.min_db - 5, this.max_db - 5); }; Spectrum.prototype.rangeDown = function () { this.setRange(this.min_db + 5, this.max_db + 5); }; Spectrum.prototype.rangeIncrease = function () { this.setRange(this.min_db - 5, this.max_db + 5); }; Spectrum.prototype.rangeDecrease = function () { if (this.max_db - this.min_db > 10) this.setRange(this.min_db + 5, this.max_db - 5); }; Spectrum.prototype.setCenterHz = function (hz) { this.centerHz = hz; this.updateAxes(); }; Spectrum.prototype.setSpanHz = function (hz) { this.spanHz = hz; this.updateAxes(); }; Spectrum.prototype.setAveraging = function (num) { if (num >= 0) { this.averaging = num; this.alpha = 2 / (this.averaging + 1); } }; Spectrum.prototype.incrementAveraging = function () { this.setAveraging(this.averaging + 1); }; Spectrum.prototype.decrementAveraging = function () { if (this.averaging > 0) { this.setAveraging(this.averaging - 1); } }; Spectrum.prototype.setPaused = function (paused) { this.paused = paused; }; Spectrum.prototype.togglePaused = function () { this.setPaused(!this.paused); }; Spectrum.prototype.setMaxHold = function (maxhold) { this.maxHold = maxhold; this.binsMax = undefined; }; Spectrum.prototype.toggleMaxHold = function () { this.setMaxHold(!this.maxHold); }; Spectrum.prototype.toggleFullscreen = function () { if (!this.fullscreen) { if (this.canvas.requestFullscreen) { this.canvas.requestFullscreen(); } else if (this.canvas.mozRequestFullScreen) { this.canvas.mozRequestFullScreen(); } else if (this.canvas.webkitRequestFullscreen) { this.canvas.webkitRequestFullscreen(); } else if (this.canvas.msRequestFullscreen) { this.canvas.msRequestFullscreen(); } this.fullscreen = true; } else { if (document.exitFullscreen) { document.exitFullscreen(); } else if (document.mozCancelFullScreen) { document.mozCancelFullScreen(); } else if (document.webkitExitFullscreen) { document.webkitExitFullscreen(); } else if (document.msExitFullscreen) { document.msExitFullscreen(); } this.fullscreen = false; } }; Spectrum.prototype.onKeypress = function (e) { if (e.key == " ") { this.togglePaused(); } else if (e.key == "f") { this.toggleFullscreen(); } else if (e.key == "c") { this.toggleColor(); } else if (e.key == "ArrowUp") { this.rangeUp(); } else if (e.key == "ArrowDown") { this.rangeDown(); } else if (e.key == "ArrowLeft") { this.rangeDecrease(); } else if (e.key == "ArrowRight") { this.rangeIncrease(); } else if (e.key == "s") { this.incrementSpectrumPercent(); } else if (e.key == "w") { this.decrementSpectrumPercent(); } else if (e.key == "+") { this.incrementAveraging(); } else if (e.key == "-") { this.decrementAveraging(); } else if (e.key == "m") { this.toggleMaxHold(); } }; export function Spectrum(id, options) { // console.log("waterfall init....") //console.log(document.getElementById(id)) // Handle options this.centerHz = options && options.centerHz ? options.centerHz : 1500; this.spanHz = options && options.spanHz ? options.spanHz : 0; this.wf_size = options && options.wf_size ? options.wf_size : 0; this.wf_rows = options && options.wf_rows ? options.wf_rows : 512; this.spectrumPercent = options && options.spectrumPercent ? options.spectrumPercent : 0; this.spectrumPercentStep = options && options.spectrumPercentStep ? options.spectrumPercentStep : 0; this.averaging = options && options.averaging ? options.averaging : 0; this.maxHold = options && options.maxHold ? options.maxHold : false; // Setup state this.paused = false; this.fullscreen = false; this.min_db = 0; this.max_db = 70; this.spectrumHeight = 0; // Colors this.colorindex = 0; this.colormap = colormaps[1]; // Create main canvas and adjust dimensions to match actual this.canvas = document.getElementById(id); this.parent = this.canvas.parentElement; this.canvas.height = this.canvas.clientHeight; this.canvas.width = this.canvas.clientWidth; this.ctx = this.canvas.getContext("2d"); this.ctx.fillStyle = "white"; this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height); // Create offscreen canvas for axes this.axes = document.createElement("canvas"); this.axes.height = 1; // Updated later this.axes.width = this.canvas.width; this.ctx_axes = this.axes.getContext("2d"); // Create offscreen canvas for waterfall this.wf = document.createElement("canvas"); this.wf.height = this.wf_rows; this.wf.width = this.wf_size; this.ctx_wf = this.wf.getContext("2d"); // Trigger first render this.setAveraging(this.averaging); this.updateSpectrumRatio(); this.resize(); } var turbo = [ [48, 18, 59], [50, 21, 67], [51, 24, 74], [52, 27, 81], [53, 30, 88], [54, 33, 95], [55, 36, 102], [56, 39, 109], [57, 42, 115], [58, 45, 121], [59, 47, 128], [60, 50, 134], [61, 53, 139], [62, 56, 145], [63, 59, 151], [63, 62, 156], [64, 64, 162], [65, 67, 167], [65, 70, 172], [66, 73, 177], [66, 75, 181], [67, 78, 186], [68, 81, 191], [68, 84, 195], [68, 86, 199], [69, 89, 203], [69, 92, 207], [69, 94, 211], [70, 97, 214], [70, 100, 218], [70, 102, 221], [70, 105, 224], [70, 107, 227], [71, 110, 230], [71, 113, 233], [71, 115, 235], [71, 118, 238], [71, 120, 240], [71, 123, 242], [70, 125, 244], [70, 128, 246], [70, 130, 248], [70, 133, 250], [70, 135, 251], [69, 138, 252], [69, 140, 253], [68, 143, 254], [67, 145, 254], [66, 148, 255], [65, 150, 255], [64, 153, 255], [62, 155, 254], [61, 158, 254], [59, 160, 253], [58, 163, 252], [56, 165, 251], [55, 168, 250], [53, 171, 248], [51, 173, 247], [49, 175, 245], [47, 178, 244], [46, 180, 242], [44, 183, 240], [42, 185, 238], [40, 188, 235], [39, 190, 233], [37, 192, 231], [35, 195, 228], [34, 197, 226], [32, 199, 223], [31, 201, 221], [30, 203, 218], [28, 205, 216], [27, 208, 213], [26, 210, 210], [26, 212, 208], [25, 213, 205], [24, 215, 202], [24, 217, 200], [24, 219, 197], [24, 221, 194], [24, 222, 192], [24, 224, 189], [25, 226, 187], [25, 227, 185], [26, 228, 182], [28, 230, 180], [29, 231, 178], [31, 233, 175], [32, 234, 172], [34, 235, 170], [37, 236, 167], [39, 238, 164], [42, 239, 161], [44, 240, 158], [47, 241, 155], [50, 242, 152], [53, 243, 148], [56, 244, 145], [60, 245, 142], [63, 246, 138], [67, 247, 135], [70, 248, 132], [74, 248, 128], [78, 249, 125], [82, 250, 122], [85, 250, 118], [89, 251, 115], [93, 252, 111], [97, 252, 108], [101, 253, 105], [105, 253, 102], [109, 254, 98], [113, 254, 95], [117, 254, 92], [121, 254, 89], [125, 255, 86], [128, 255, 83], [132, 255, 81], [136, 255, 78], [139, 255, 75], [143, 255, 73], [146, 255, 71], [150, 254, 68], [153, 254, 66], [156, 254, 64], [159, 253, 63], [161, 253, 61], [164, 252, 60], [167, 252, 58], [169, 251, 57], [172, 251, 56], [175, 250, 55], [177, 249, 54], [180, 248, 54], [183, 247, 53], [185, 246, 53], [188, 245, 52], [190, 244, 52], [193, 243, 52], [195, 241, 52], [198, 240, 52], [200, 239, 52], [203, 237, 52], [205, 236, 52], [208, 234, 52], [210, 233, 53], [212, 231, 53], [215, 229, 53], [217, 228, 54], [219, 226, 54], [221, 224, 55], [223, 223, 55], [225, 221, 55], [227, 219, 56], [229, 217, 56], [231, 215, 57], [233, 213, 57], [235, 211, 57], [236, 209, 58], [238, 207, 58], [239, 205, 58], [241, 203, 58], [242, 201, 58], [244, 199, 58], [245, 197, 58], [246, 195, 58], [247, 193, 58], [248, 190, 57], [249, 188, 57], [250, 186, 57], [251, 184, 56], [251, 182, 55], [252, 179, 54], [252, 177, 54], [253, 174, 53], [253, 172, 52], [254, 169, 51], [254, 167, 50], [254, 164, 49], [254, 161, 48], [254, 158, 47], [254, 155, 45], [254, 153, 44], [254, 150, 43], [254, 147, 42], [254, 144, 41], [253, 141, 39], [253, 138, 38], [252, 135, 37], [252, 132, 35], [251, 129, 34], [251, 126, 33], [250, 123, 31], [249, 120, 30], [249, 117, 29], [248, 114, 28], [247, 111, 26], [246, 108, 25], [245, 105, 24], [244, 102, 23], [243, 99, 21], [242, 96, 20], [241, 93, 19], [240, 91, 18], [239, 88, 17], [237, 85, 16], [236, 83, 15], [235, 80, 14], [234, 78, 13], [232, 75, 12], [231, 73, 12], [229, 71, 11], [228, 69, 10], [226, 67, 10], [225, 65, 9], [223, 63, 8], [221, 61, 8], [220, 59, 7], [218, 57, 7], [216, 55, 6], [214, 53, 6], [212, 51, 5], [210, 49, 5], [208, 47, 5], [206, 45, 4], [204, 43, 4], [202, 42, 4], [200, 40, 3], [197, 38, 3], [195, 37, 3], [193, 35, 2], [190, 33, 2], [188, 32, 2], [185, 30, 2], [183, 29, 2], [180, 27, 1], [178, 26, 1], [175, 24, 1], [172, 23, 1], [169, 22, 1], [167, 20, 1], [164, 19, 1], [161, 18, 1], [158, 16, 1], [155, 15, 1], [152, 14, 1], [149, 13, 1], [146, 11, 1], [142, 10, 1], [139, 9, 2], [136, 8, 2], [133, 7, 2], [129, 6, 2], [126, 5, 2], [122, 4, 3], ]; var fosphor = [ [6, 0, 13], [7, 0, 14], [7, 0, 15], [7, 0, 16], [7, 0, 17], [7, 0, 18], [7, 0, 18], [7, 0, 19], [7, 0, 20], [7, 0, 21], [7, 0, 22], [7, 0, 23], [7, 0, 24], [7, 0, 25], [7, 0, 26], [6, 0, 27], [6, 0, 28], [6, 0, 29], [5, 0, 30], [5, 0, 31], [5, 0, 32], [4, 0, 33], [4, 0, 34], [3, 0, 35], [3, 0, 36], [2, 0, 36], [2, 0, 37], [1, 0, 38], [0, 0, 39], [0, 0, 40], [0, 1, 41], [0, 2, 42], [0, 3, 43], [0, 4, 44], [0, 5, 45], [0, 5, 46], [0, 6, 47], [0, 7, 48], [0, 8, 49], [0, 9, 50], [0, 10, 51], [0, 12, 52], [0, 13, 53], [0, 14, 54], [0, 15, 55], [0, 16, 56], [0, 18, 56], [0, 19, 57], [0, 20, 58], [0, 22, 59], [0, 23, 60], [0, 24, 61], [0, 26, 62], [0, 27, 63], [0, 29, 64], [0, 31, 65], [0, 32, 66], [0, 34, 67], [0, 36, 68], [0, 37, 69], [0, 39, 70], [0, 41, 71], [0, 43, 72], [0, 44, 73], [0, 46, 74], [0, 48, 74], [0, 50, 75], [0, 52, 76], [0, 54, 77], [0, 56, 78], [0, 58, 79], [0, 60, 80], [0, 63, 81], [0, 65, 82], [0, 67, 83], [0, 69, 84], [0, 71, 85], [0, 74, 86], [0, 76, 87], [0, 79, 88], [0, 81, 89], [0, 83, 90], [0, 86, 91], [0, 88, 92], [0, 91, 93], [0, 94, 94], [0, 94, 93], [0, 95, 92], [0, 96, 91], [0, 97, 90], [0, 98, 90], [0, 99, 89], [0, 100, 88], [0, 101, 87], [0, 102, 86], [0, 103, 85], [0, 104, 84], [0, 105, 83], [0, 106, 82], [0, 107, 80], [0, 108, 79], [0, 109, 78], [0, 110, 77], [0, 111, 75], [0, 112, 74], [0, 112, 73], [0, 113, 71], [0, 114, 70], [0, 115, 69], [0, 116, 67], [0, 117, 66], [0, 118, 64], [0, 119, 62], [0, 120, 61], [0, 121, 59], [0, 122, 57], [0, 123, 56], [0, 124, 54], [0, 125, 52], [0, 126, 50], [0, 127, 48], [0, 128, 47], [0, 129, 45], [0, 130, 43], [0, 131, 41], [0, 132, 39], [0, 132, 37], [0, 133, 35], [0, 134, 32], [0, 135, 30], [0, 136, 28], [0, 137, 26], [0, 138, 24], [0, 139, 21], [0, 140, 19], [0, 141, 17], [0, 142, 14], [0, 143, 12], [0, 144, 9], [0, 145, 7], [0, 146, 4], [0, 147, 2], [1, 148, 0], [3, 149, 0], [6, 150, 0], [9, 150, 0], [12, 151, 0], [14, 152, 0], [17, 153, 0], [20, 154, 0], [23, 155, 0], [26, 156, 0], [29, 157, 0], [32, 158, 0], [35, 159, 0], [38, 160, 0], [41, 161, 0], [44, 162, 0], [47, 163, 0], [50, 164, 0], [53, 165, 0], [57, 166, 0], [60, 167, 0], [63, 168, 0], [66, 169, 0], [70, 170, 0], [73, 170, 0], [77, 171, 0], [80, 172, 0], [84, 173, 0], [87, 174, 0], [91, 175, 0], [94, 176, 0], [98, 177, 0], [102, 178, 0], [105, 179, 0], [109, 180, 0], [113, 181, 0], [117, 182, 0], [120, 183, 0], [124, 184, 0], [128, 185, 0], [132, 186, 0], [136, 187, 0], [140, 188, 0], [144, 188, 0], [148, 189, 0], [152, 190, 0], [156, 191, 0], [161, 192, 0], [165, 193, 0], [169, 194, 0], [173, 195, 0], [178, 196, 0], [182, 197, 0], [186, 198, 0], [191, 199, 0], [195, 200, 0], [200, 201, 0], [202, 199, 0], [203, 197, 0], [204, 194, 0], [205, 191, 0], [206, 189, 0], [207, 186, 0], [208, 183, 0], [208, 180, 0], [209, 177, 0], [210, 174, 0], [211, 172, 0], [212, 169, 0], [213, 166, 0], [214, 163, 0], [215, 159, 0], [216, 156, 0], [217, 153, 0], [218, 150, 0], [219, 147, 0], [220, 144, 0], [221, 140, 0], [222, 137, 0], [223, 134, 0], [224, 130, 0], [225, 127, 0], [226, 123, 0], [226, 120, 0], [227, 116, 0], [228, 113, 0], [229, 109, 0], [230, 106, 0], [231, 102, 0], [232, 98, 0], [233, 95, 0], [234, 91, 0], [235, 87, 0], [236, 83, 0], [237, 79, 0], [238, 76, 0], [239, 72, 0], [240, 68, 0], [241, 64, 0], [242, 60, 0], [243, 56, 0], [244, 52, 0], [245, 47, 0], [246, 43, 0], [246, 39, 0], [247, 35, 0], [248, 31, 0], [249, 26, 0], [250, 22, 0], [251, 18, 0], [252, 13, 0], [253, 9, 0], [254, 4, 0], [255, 0, 0], ]; var viridis = [ [68, 1, 84], [68, 2, 86], [69, 4, 87], [69, 5, 89], [70, 7, 90], [70, 8, 92], [70, 10, 93], [70, 11, 94], [71, 13, 96], [71, 14, 97], [71, 16, 99], [71, 17, 100], [71, 19, 101], [72, 20, 103], [72, 22, 104], [72, 23, 105], [72, 24, 106], [72, 26, 108], [72, 27, 109], [72, 28, 110], [72, 29, 111], [72, 31, 112], [72, 32, 113], [72, 33, 115], [72, 35, 116], [72, 36, 117], [72, 37, 118], [72, 38, 119], [72, 40, 120], [72, 41, 121], [71, 42, 122], [71, 44, 122], [71, 45, 123], [71, 46, 124], [71, 47, 125], [70, 48, 126], [70, 50, 126], [70, 51, 127], [70, 52, 128], [69, 53, 129], [69, 55, 129], [69, 56, 130], [68, 57, 131], [68, 58, 131], [68, 59, 132], [67, 61, 132], [67, 62, 133], [66, 63, 133], [66, 64, 134], [66, 65, 134], [65, 66, 135], [65, 68, 135], [64, 69, 136], [64, 70, 136], [63, 71, 136], [63, 72, 137], [62, 73, 137], [62, 74, 137], [62, 76, 138], [61, 77, 138], [61, 78, 138], [60, 79, 138], [60, 80, 139], [59, 81, 139], [59, 82, 139], [58, 83, 139], [58, 84, 140], [57, 85, 140], [57, 86, 140], [56, 88, 140], [56, 89, 140], [55, 90, 140], [55, 91, 141], [54, 92, 141], [54, 93, 141], [53, 94, 141], [53, 95, 141], [52, 96, 141], [52, 97, 141], [51, 98, 141], [51, 99, 141], [50, 100, 142], [50, 101, 142], [49, 102, 142], [49, 103, 142], [49, 104, 142], [48, 105, 142], [48, 106, 142], [47, 107, 142], [47, 108, 142], [46, 109, 142], [46, 110, 142], [46, 111, 142], [45, 112, 142], [45, 113, 142], [44, 113, 142], [44, 114, 142], [44, 115, 142], [43, 116, 142], [43, 117, 142], [42, 118, 142], [42, 119, 142], [42, 120, 142], [41, 121, 142], [41, 122, 142], [41, 123, 142], [40, 124, 142], [40, 125, 142], [39, 126, 142], [39, 127, 142], [39, 128, 142], [38, 129, 142], [38, 130, 142], [38, 130, 142], [37, 131, 142], [37, 132, 142], [37, 133, 142], [36, 134, 142], [36, 135, 142], [35, 136, 142], [35, 137, 142], [35, 138, 141], [34, 139, 141], [34, 140, 141], [34, 141, 141], [33, 142, 141], [33, 143, 141], [33, 144, 141], [33, 145, 140], [32, 146, 140], [32, 146, 140], [32, 147, 140], [31, 148, 140], [31, 149, 139], [31, 150, 139], [31, 151, 139], [31, 152, 139], [31, 153, 138], [31, 154, 138], [30, 155, 138], [30, 156, 137], [30, 157, 137], [31, 158, 137], [31, 159, 136], [31, 160, 136], [31, 161, 136], [31, 161, 135], [31, 162, 135], [32, 163, 134], [32, 164, 134], [33, 165, 133], [33, 166, 133], [34, 167, 133], [34, 168, 132], [35, 169, 131], [36, 170, 131], [37, 171, 130], [37, 172, 130], [38, 173, 129], [39, 173, 129], [40, 174, 128], [41, 175, 127], [42, 176, 127], [44, 177, 126], [45, 178, 125], [46, 179, 124], [47, 180, 124], [49, 181, 123], [50, 182, 122], [52, 182, 121], [53, 183, 121], [55, 184, 120], [56, 185, 119], [58, 186, 118], [59, 187, 117], [61, 188, 116], [63, 188, 115], [64, 189, 114], [66, 190, 113], [68, 191, 112], [70, 192, 111], [72, 193, 110], [74, 193, 109], [76, 194, 108], [78, 195, 107], [80, 196, 106], [82, 197, 105], [84, 197, 104], [86, 198, 103], [88, 199, 101], [90, 200, 100], [92, 200, 99], [94, 201, 98], [96, 202, 96], [99, 203, 95], [101, 203, 94], [103, 204, 92], [105, 205, 91], [108, 205, 90], [110, 206, 88], [112, 207, 87], [115, 208, 86], [117, 208, 84], [119, 209, 83], [122, 209, 81], [124, 210, 80], [127, 211, 78], [129, 211, 77], [132, 212, 75], [134, 213, 73], [137, 213, 72], [139, 214, 70], [142, 214, 69], [144, 215, 67], [147, 215, 65], [149, 216, 64], [152, 216, 62], [155, 217, 60], [157, 217, 59], [160, 218, 57], [162, 218, 55], [165, 219, 54], [168, 219, 52], [170, 220, 50], [173, 220, 48], [176, 221, 47], [178, 221, 45], [181, 222, 43], [184, 222, 41], [186, 222, 40], [189, 223, 38], [192, 223, 37], [194, 223, 35], [197, 224, 33], [200, 224, 32], [202, 225, 31], [205, 225, 29], [208, 225, 28], [210, 226, 27], [213, 226, 26], [216, 226, 25], [218, 227, 25], [221, 227, 24], [223, 227, 24], [226, 228, 24], [229, 228, 25], [231, 228, 25], [234, 229, 26], [236, 229, 27], [239, 229, 28], [241, 229, 29], [244, 230, 30], [246, 230, 32], [248, 230, 33], [251, 231, 35], [253, 231, 37], ]; var inferno = [ [0, 0, 4], [1, 0, 5], [1, 1, 6], [1, 1, 8], [2, 1, 10], [2, 2, 12], [2, 2, 14], [3, 2, 16], [4, 3, 18], [4, 3, 20], [5, 4, 23], [6, 4, 25], [7, 5, 27], [8, 5, 29], [9, 6, 31], [10, 7, 34], [11, 7, 36], [12, 8, 38], [13, 8, 41], [14, 9, 43], [16, 9, 45], [17, 10, 48], [18, 10, 50], [20, 11, 52], [21, 11, 55], [22, 11, 57], [24, 12, 60], [25, 12, 62], [27, 12, 65], [28, 12, 67], [30, 12, 69], [31, 12, 72], [33, 12, 74], [35, 12, 76], [36, 12, 79], [38, 12, 81], [40, 11, 83], [41, 11, 85], [43, 11, 87], [45, 11, 89], [47, 10, 91], [49, 10, 92], [50, 10, 94], [52, 10, 95], [54, 9, 97], [56, 9, 98], [57, 9, 99], [59, 9, 100], [61, 9, 101], [62, 9, 102], [64, 10, 103], [66, 10, 104], [68, 10, 104], [69, 10, 105], [71, 11, 106], [73, 11, 106], [74, 12, 107], [76, 12, 107], [77, 13, 108], [79, 13, 108], [81, 14, 108], [82, 14, 109], [84, 15, 109], [85, 15, 109], [87, 16, 110], [89, 16, 110], [90, 17, 110], [92, 18, 110], [93, 18, 110], [95, 19, 110], [97, 19, 110], [98, 20, 110], [100, 21, 110], [101, 21, 110], [103, 22, 110], [105, 22, 110], [106, 23, 110], [108, 24, 110], [109, 24, 110], [111, 25, 110], [113, 25, 110], [114, 26, 110], [116, 26, 110], [117, 27, 110], [119, 28, 109], [120, 28, 109], [122, 29, 109], [124, 29, 109], [125, 30, 109], [127, 30, 108], [128, 31, 108], [130, 32, 108], [132, 32, 107], [133, 33, 107], [135, 33, 107], [136, 34, 106], [138, 34, 106], [140, 35, 105], [141, 35, 105], [143, 36, 105], [144, 37, 104], [146, 37, 104], [147, 38, 103], [149, 38, 103], [151, 39, 102], [152, 39, 102], [154, 40, 101], [155, 41, 100], [157, 41, 100], [159, 42, 99], [160, 42, 99], [162, 43, 98], [163, 44, 97], [165, 44, 96], [166, 45, 96], [168, 46, 95], [169, 46, 94], [171, 47, 94], [173, 48, 93], [174, 48, 92], [176, 49, 91], [177, 50, 90], [179, 50, 90], [180, 51, 89], [182, 52, 88], [183, 53, 87], [185, 53, 86], [186, 54, 85], [188, 55, 84], [189, 56, 83], [191, 57, 82], [192, 58, 81], [193, 58, 80], [195, 59, 79], [196, 60, 78], [198, 61, 77], [199, 62, 76], [200, 63, 75], [202, 64, 74], [203, 65, 73], [204, 66, 72], [206, 67, 71], [207, 68, 70], [208, 69, 69], [210, 70, 68], [211, 71, 67], [212, 72, 66], [213, 74, 65], [215, 75, 63], [216, 76, 62], [217, 77, 61], [218, 78, 60], [219, 80, 59], [221, 81, 58], [222, 82, 56], [223, 83, 55], [224, 85, 54], [225, 86, 53], [226, 87, 52], [227, 89, 51], [228, 90, 49], [229, 92, 48], [230, 93, 47], [231, 94, 46], [232, 96, 45], [233, 97, 43], [234, 99, 42], [235, 100, 41], [235, 102, 40], [236, 103, 38], [237, 105, 37], [238, 106, 36], [239, 108, 35], [239, 110, 33], [240, 111, 32], [241, 113, 31], [241, 115, 29], [242, 116, 28], [243, 118, 27], [243, 120, 25], [244, 121, 24], [245, 123, 23], [245, 125, 21], [246, 126, 20], [246, 128, 19], [247, 130, 18], [247, 132, 16], [248, 133, 15], [248, 135, 14], [248, 137, 12], [249, 139, 11], [249, 140, 10], [249, 142, 9], [250, 144, 8], [250, 146, 7], [250, 148, 7], [251, 150, 6], [251, 151, 6], [251, 153, 6], [251, 155, 6], [251, 157, 7], [252, 159, 7], [252, 161, 8], [252, 163, 9], [252, 165, 10], [252, 166, 12], [252, 168, 13], [252, 170, 15], [252, 172, 17], [252, 174, 18], [252, 176, 20], [252, 178, 22], [252, 180, 24], [251, 182, 26], [251, 184, 29], [251, 186, 31], [251, 188, 33], [251, 190, 35], [250, 192, 38], [250, 194, 40], [250, 196, 42], [250, 198, 45], [249, 199, 47], [249, 201, 50], [249, 203, 53], [248, 205, 55], [248, 207, 58], [247, 209, 61], [247, 211, 64], [246, 213, 67], [246, 215, 70], [245, 217, 73], [245, 219, 76], [244, 221, 79], [244, 223, 83], [244, 225, 86], [243, 227, 90], [243, 229, 93], [242, 230, 97], [242, 232, 101], [242, 234, 105], [241, 236, 109], [241, 237, 113], [241, 239, 117], [241, 241, 121], [242, 242, 125], [242, 244, 130], [243, 245, 134], [243, 246, 138], [244, 248, 142], [245, 249, 146], [246, 250, 150], [248, 251, 154], [249, 252, 157], [250, 253, 161], [252, 255, 164], ]; var magma = [ [0, 0, 4], [1, 0, 5], [1, 1, 6], [1, 1, 8], [2, 1, 9], [2, 2, 11], [2, 2, 13], [3, 3, 15], [3, 3, 18], [4, 4, 20], [5, 4, 22], [6, 5, 24], [6, 5, 26], [7, 6, 28], [8, 7, 30], [9, 7, 32], [10, 8, 34], [11, 9, 36], [12, 9, 38], [13, 10, 41], [14, 11, 43], [16, 11, 45], [17, 12, 47], [18, 13, 49], [19, 13, 52], [20, 14, 54], [21, 14, 56], [22, 15, 59], [24, 15, 61], [25, 16, 63], [26, 16, 66], [28, 16, 68], [29, 17, 71], [30, 17, 73], [32, 17, 75], [33, 17, 78], [34, 17, 80], [36, 18, 83], [37, 18, 85], [39, 18, 88], [41, 17, 90], [42, 17, 92], [44, 17, 95], [45, 17, 97], [47, 17, 99], [49, 17, 101], [51, 16, 103], [52, 16, 105], [54, 16, 107], [56, 16, 108], [57, 15, 110], [59, 15, 112], [61, 15, 113], [63, 15, 114], [64, 15, 116], [66, 15, 117], [68, 15, 118], [69, 16, 119], [71, 16, 120], [73, 16, 120], [74, 16, 121], [76, 17, 122], [78, 17, 123], [79, 18, 123], [81, 18, 124], [82, 19, 124], [84, 19, 125], [86, 20, 125], [87, 21, 126], [89, 21, 126], [90, 22, 126], [92, 22, 127], [93, 23, 127], [95, 24, 127], [96, 24, 128], [98, 25, 128], [100, 26, 128], [101, 26, 128], [103, 27, 128], [104, 28, 129], [106, 28, 129], [107, 29, 129], [109, 29, 129], [110, 30, 129], [112, 31, 129], [114, 31, 129], [115, 32, 129], [117, 33, 129], [118, 33, 129], [120, 34, 129], [121, 34, 130], [123, 35, 130], [124, 35, 130], [126, 36, 130], [128, 37, 130], [129, 37, 129], [131, 38, 129], [132, 38, 129], [134, 39, 129], [136, 39, 129], [137, 40, 129], [139, 41, 129], [140, 41, 129], [142, 42, 129], [144, 42, 129], [145, 43, 129], [147, 43, 128], [148, 44, 128], [150, 44, 128], [152, 45, 128], [153, 45, 128], [155, 46, 127], [156, 46, 127], [158, 47, 127], [160, 47, 127], [161, 48, 126], [163, 48, 126], [165, 49, 126], [166, 49, 125], [168, 50, 125], [170, 51, 125], [171, 51, 124], [173, 52, 124], [174, 52, 123], [176, 53, 123], [178, 53, 123], [179, 54, 122], [181, 54, 122], [183, 55, 121], [184, 55, 121], [186, 56, 120], [188, 57, 120], [189, 57, 119], [191, 58, 119], [192, 58, 118], [194, 59, 117], [196, 60, 117], [197, 60, 116], [199, 61, 115], [200, 62, 115], [202, 62, 114], [204, 63, 113], [205, 64, 113], [207, 64, 112], [208, 65, 111], [210, 66, 111], [211, 67, 110], [213, 68, 109], [214, 69, 108], [216, 69, 108], [217, 70, 107], [219, 71, 106], [220, 72, 105], [222, 73, 104], [223, 74, 104], [224, 76, 103], [226, 77, 102], [227, 78, 101], [228, 79, 100], [229, 80, 100], [231, 82, 99], [232, 83, 98], [233, 84, 98], [234, 86, 97], [235, 87, 96], [236, 88, 96], [237, 90, 95], [238, 91, 94], [239, 93, 94], [240, 95, 94], [241, 96, 93], [242, 98, 93], [242, 100, 92], [243, 101, 92], [244, 103, 92], [244, 105, 92], [245, 107, 92], [246, 108, 92], [246, 110, 92], [247, 112, 92], [247, 114, 92], [248, 116, 92], [248, 118, 92], [249, 120, 93], [249, 121, 93], [249, 123, 93], [250, 125, 94], [250, 127, 94], [250, 129, 95], [251, 131, 95], [251, 133, 96], [251, 135, 97], [252, 137, 97], [252, 138, 98], [252, 140, 99], [252, 142, 100], [252, 144, 101], [253, 146, 102], [253, 148, 103], [253, 150, 104], [253, 152, 105], [253, 154, 106], [253, 155, 107], [254, 157, 108], [254, 159, 109], [254, 161, 110], [254, 163, 111], [254, 165, 113], [254, 167, 114], [254, 169, 115], [254, 170, 116], [254, 172, 118], [254, 174, 119], [254, 176, 120], [254, 178, 122], [254, 180, 123], [254, 182, 124], [254, 183, 126], [254, 185, 127], [254, 187, 129], [254, 189, 130], [254, 191, 132], [254, 193, 133], [254, 194, 135], [254, 196, 136], [254, 198, 138], [254, 200, 140], [254, 202, 141], [254, 204, 143], [254, 205, 144], [254, 207, 146], [254, 209, 148], [254, 211, 149], [254, 213, 151], [254, 215, 153], [254, 216, 154], [253, 218, 156], [253, 220, 158], [253, 222, 160], [253, 224, 161], [253, 226, 163], [253, 227, 165], [253, 229, 167], [253, 231, 169], [253, 233, 170], [253, 235, 172], [252, 236, 174], [252, 238, 176], [252, 240, 178], [252, 242, 180], [252, 244, 182], [252, 246, 184], [252, 247, 185], [252, 249, 187], [252, 251, 189], [252, 253, 191], ]; var jet = [ [0, 0, 128], [0, 0, 132], [0, 0, 137], [0, 0, 141], [0, 0, 146], [0, 0, 150], [0, 0, 155], [0, 0, 159], [0, 0, 164], [0, 0, 168], [0, 0, 173], [0, 0, 178], [0, 0, 182], [0, 0, 187], [0, 0, 191], [0, 0, 196], [0, 0, 200], [0, 0, 205], [0, 0, 209], [0, 0, 214], [0, 0, 218], [0, 0, 223], [0, 0, 227], [0, 0, 232], [0, 0, 237], [0, 0, 241], [0, 0, 246], [0, 0, 250], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 4, 255], [0, 8, 255], [0, 12, 255], [0, 16, 255], [0, 20, 255], [0, 24, 255], [0, 28, 255], [0, 32, 255], [0, 36, 255], [0, 40, 255], [0, 44, 255], [0, 48, 255], [0, 52, 255], [0, 56, 255], [0, 60, 255], [0, 64, 255], [0, 68, 255], [0, 72, 255], [0, 76, 255], [0, 80, 255], [0, 84, 255], [0, 88, 255], [0, 92, 255], [0, 96, 255], [0, 100, 255], [0, 104, 255], [0, 108, 255], [0, 112, 255], [0, 116, 255], [0, 120, 255], [0, 124, 255], [0, 128, 255], [0, 132, 255], [0, 136, 255], [0, 140, 255], [0, 144, 255], [0, 148, 255], [0, 152, 255], [0, 156, 255], [0, 160, 255], [0, 164, 255], [0, 168, 255], [0, 172, 255], [0, 176, 255], [0, 180, 255], [0, 184, 255], [0, 188, 255], [0, 192, 255], [0, 196, 255], [0, 200, 255], [0, 204, 255], [0, 208, 255], [0, 212, 255], [0, 216, 255], [0, 220, 254], [0, 224, 251], [0, 228, 248], [2, 232, 244], [6, 236, 241], [9, 240, 238], [12, 244, 235], [15, 248, 231], [19, 252, 228], [22, 255, 225], [25, 255, 222], [28, 255, 219], [31, 255, 215], [35, 255, 212], [38, 255, 209], [41, 255, 206], [44, 255, 202], [48, 255, 199], [51, 255, 196], [54, 255, 193], [57, 255, 190], [60, 255, 186], [64, 255, 183], [67, 255, 180], [70, 255, 177], [73, 255, 173], [77, 255, 170], [80, 255, 167], [83, 255, 164], [86, 255, 160], [90, 255, 157], [93, 255, 154], [96, 255, 151], [99, 255, 148], [102, 255, 144], [106, 255, 141], [109, 255, 138], [112, 255, 135], [115, 255, 131], [119, 255, 128], [122, 255, 125], [125, 255, 122], [128, 255, 119], [131, 255, 115], [135, 255, 112], [138, 255, 109], [141, 255, 106], [144, 255, 102], [148, 255, 99], [151, 255, 96], [154, 255, 93], [157, 255, 90], [160, 255, 86], [164, 255, 83], [167, 255, 80], [170, 255, 77], [173, 255, 73], [177, 255, 70], [180, 255, 67], [183, 255, 64], [186, 255, 60], [190, 255, 57], [193, 255, 54], [196, 255, 51], [199, 255, 48], [202, 255, 44], [206, 255, 41], [209, 255, 38], [212, 255, 35], [215, 255, 31], [219, 255, 28], [222, 255, 25], [225, 255, 22], [228, 255, 19], [231, 255, 15], [235, 255, 12], [238, 255, 9], [241, 252, 6], [244, 248, 2], [248, 245, 0], [251, 241, 0], [254, 237, 0], [255, 234, 0], [255, 230, 0], [255, 226, 0], [255, 222, 0], [255, 219, 0], [255, 215, 0], [255, 211, 0], [255, 208, 0], [255, 204, 0], [255, 200, 0], [255, 196, 0], [255, 193, 0], [255, 189, 0], [255, 185, 0], [255, 182, 0], [255, 178, 0], [255, 174, 0], [255, 171, 0], [255, 167, 0], [255, 163, 0], [255, 159, 0], [255, 156, 0], [255, 152, 0], [255, 148, 0], [255, 145, 0], [255, 141, 0], [255, 137, 0], [255, 134, 0], [255, 130, 0], [255, 126, 0], [255, 122, 0], [255, 119, 0], [255, 115, 0], [255, 111, 0], [255, 108, 0], [255, 104, 0], [255, 100, 0], [255, 96, 0], [255, 93, 0], [255, 89, 0], [255, 85, 0], [255, 82, 0], [255, 78, 0], [255, 74, 0], [255, 71, 0], [255, 67, 0], [255, 63, 0], [255, 59, 0], [255, 56, 0], [255, 52, 0], [255, 48, 0], [255, 45, 0], [255, 41, 0], [255, 37, 0], [255, 34, 0], [255, 30, 0], [255, 26, 0], [255, 22, 0], [255, 19, 0], [250, 15, 0], [246, 11, 0], [241, 8, 0], [237, 4, 0], [232, 0, 0], [228, 0, 0], [223, 0, 0], [218, 0, 0], [214, 0, 0], [209, 0, 0], [205, 0, 0], [200, 0, 0], [196, 0, 0], [191, 0, 0], [187, 0, 0], [182, 0, 0], [178, 0, 0], [173, 0, 0], [168, 0, 0], [164, 0, 0], [159, 0, 0], [155, 0, 0], [150, 0, 0], [146, 0, 0], [141, 0, 0], [137, 0, 0], [132, 0, 0], [128, 0, 0], ]; var binary = [ [255, 255, 255], [254, 254, 254], [253, 253, 253], [252, 252, 252], [251, 251, 251], [250, 250, 250], [249, 249, 249], [248, 248, 248], [247, 247, 247], [246, 246, 246], [245, 245, 245], [244, 244, 244], [243, 243, 243], [242, 242, 242], [241, 241, 241], [240, 240, 240], [239, 239, 239], [238, 238, 238], [237, 237, 237], [236, 236, 236], [235, 235, 235], [234, 234, 234], [233, 233, 233], [232, 232, 232], [231, 231, 231], [230, 230, 230], [229, 229, 229], [228, 228, 228], [227, 227, 227], [226, 226, 226], [225, 225, 225], [224, 224, 224], [223, 223, 223], [222, 222, 222], [221, 221, 221], [220, 220, 220], [219, 219, 219], [218, 218, 218], [217, 217, 217], [216, 216, 216], [215, 215, 215], [214, 214, 214], [213, 213, 213], [212, 212, 212], [211, 211, 211], [210, 210, 210], [209, 209, 209], [208, 208, 208], [207, 207, 207], [206, 206, 206], [205, 205, 205], [204, 204, 204], [203, 203, 203], [202, 202, 202], [201, 201, 201], [200, 200, 200], [199, 199, 199], [198, 198, 198], [197, 197, 197], [196, 196, 196], [195, 195, 195], [194, 194, 194], [193, 193, 193], [192, 192, 192], [191, 191, 191], [190, 190, 190], [189, 189, 189], [188, 188, 188], [187, 187, 187], [186, 186, 186], [185, 185, 185], [184, 184, 184], [183, 183, 183], [182, 182, 182], [181, 181, 181], [180, 180, 180], [179, 179, 179], [178, 178, 178], [177, 177, 177], [176, 176, 176], [175, 175, 175], [174, 174, 174], [173, 173, 173], [172, 172, 172], [171, 171, 171], [170, 170, 170], [169, 169, 169], [168, 168, 168], [167, 167, 167], [166, 166, 166], [165, 165, 165], [164, 164, 164], [163, 163, 163], [162, 162, 162], [161, 161, 161], [160, 160, 160], [159, 159, 159], [158, 158, 158], [157, 157, 157], [156, 156, 156], [155, 155, 155], [154, 154, 154], [153, 153, 153], [152, 152, 152], [151, 151, 151], [150, 150, 150], [149, 149, 149], [148, 148, 148], [147, 147, 147], [146, 146, 146], [145, 145, 145], [144, 144, 144], [143, 143, 143], [142, 142, 142], [141, 141, 141], [140, 140, 140], [139, 139, 139], [138, 138, 138], [137, 137, 137], [136, 136, 136], [135, 135, 135], [134, 134, 134], [133, 133, 133], [132, 132, 132], [131, 131, 131], [130, 130, 130], [129, 129, 129], [128, 128, 128], [127, 127, 127], [126, 126, 126], [125, 125, 125], [124, 124, 124], [123, 123, 123], [122, 122, 122], [121, 121, 121], [120, 120, 120], [119, 119, 119], [118, 118, 118], [117, 117, 117], [116, 116, 116], [115, 115, 115], [114, 114, 114], [113, 113, 113], [112, 112, 112], [111, 111, 111], [110, 110, 110], [109, 109, 109], [108, 108, 108], [107, 107, 107], [106, 106, 106], [105, 105, 105], [104, 104, 104], [103, 103, 103], [102, 102, 102], [101, 101, 101], [100, 100, 100], [99, 99, 99], [98, 98, 98], [97, 97, 97], [96, 96, 96], [95, 95, 95], [94, 94, 94], [93, 93, 93], [92, 92, 92], [91, 91, 91], [90, 90, 90], [89, 89, 89], [88, 88, 88], [87, 87, 87], [86, 86, 86], [85, 85, 85], [84, 84, 84], [83, 83, 83], [82, 82, 82], [81, 81, 81], [80, 80, 80], [79, 79, 79], [78, 78, 78], [77, 77, 77], [76, 76, 76], [75, 75, 75], [74, 74, 74], [73, 73, 73], [72, 72, 72], [71, 71, 71], [70, 70, 70], [69, 69, 69], [68, 68, 68], [67, 67, 67], [66, 66, 66], [65, 65, 65], [64, 64, 64], [63, 63, 63], [62, 62, 62], [61, 61, 61], [60, 60, 60], [59, 59, 59], [58, 58, 58], [57, 57, 57], [56, 56, 56], [55, 55, 55], [54, 54, 54], [53, 53, 53], [52, 52, 52], [51, 51, 51], [50, 50, 50], [49, 49, 49], [48, 48, 48], [47, 47, 47], [46, 46, 46], [45, 45, 45], [44, 44, 44], [43, 43, 43], [42, 42, 42], [41, 41, 41], [40, 40, 40], [39, 39, 39], [38, 38, 38], [37, 37, 37], [36, 36, 36], [35, 35, 35], [34, 34, 34], [33, 33, 33], [32, 32, 32], [31, 31, 31], [30, 30, 30], [29, 29, 29], [28, 28, 28], [27, 27, 27], [26, 26, 26], [25, 25, 25], [24, 24, 24], [23, 23, 23], [22, 22, 22], [21, 21, 21], [20, 20, 20], [19, 19, 19], [18, 18, 18], [17, 17, 17], [16, 16, 16], [15, 15, 15], [14, 14, 14], [13, 13, 13], [12, 12, 12], [11, 11, 11], [10, 10, 10], [9, 9, 9], [8, 8, 8], [7, 7, 7], [6, 6, 6], [5, 5, 5], [4, 4, 4], [3, 3, 3], [2, 2, 2], [1, 1, 1], [0, 0, 0], ]; var plasma = [[13, 8, 135], [16, 7, 136], [19, 7, 137], [22, 7, 138], [25, 6, 140], [27, 6, 141], [29, 6, 142], [32, 6, 143], [34, 6, 144], [36, 6, 145], [38, 5, 145], [40, 5, 146], [42, 5, 147], [44, 5, 148], [46, 5, 149], [47, 5, 150], [49, 5, 151], [51, 5, 151], [53, 4, 152], [55, 4, 153], [56, 4, 154], [58, 4, 154], [60, 4, 155], [62, 4, 156], [63, 4, 156], [65, 4, 157], [67, 3, 158], [68, 3, 158], [70, 3, 159], [72, 3, 159], [73, 3, 160], [75, 3, 161], [76, 2, 161], [78, 2, 162], [80, 2, 162], [81, 2, 163], [83, 2, 163], [85, 2, 164], [86, 1, 164], [88, 1, 164], [89, 1, 165], [91, 1, 165], [92, 1, 166], [94, 1, 166], [96, 1, 166], [97, 0, 167], [99, 0, 167], [100, 0, 167], [102, 0, 167], [103, 0, 168], [105, 0, 168], [106, 0, 168], [108, 0, 168], [110, 0, 168], [111, 0, 168], [113, 0, 168], [114, 1, 168], [116, 1, 168], [117, 1, 168], [119, 1, 168], [120, 1, 168], [122, 2, 168], [123, 2, 168], [125, 3, 168], [126, 3, 168], [128, 4, 168], [129, 4, 167], [131, 5, 167], [132, 5, 167], [134, 6, 166], [135, 7, 166], [136, 8, 166], [138, 9, 165], [139, 10, 165], [141, 11, 165], [142, 12, 164], [143, 13, 164], [145, 14, 163], [146, 15, 163], [148, 16, 162], [149, 17, 161], [150, 19, 161], [152, 20, 160], [153, 21, 159], [154, 22, 159], [156, 23, 158], [157, 24, 157], [158, 25, 157], [160, 26, 156], [161, 27, 155], [162, 29, 154], [163, 30, 154], [165, 31, 153], [166, 32, 152], [167, 33, 151], [168, 34, 150], [170, 35, 149], [171, 36, 148], [172, 38, 148], [173, 39, 147], [174, 40, 146], [176, 41, 145], [177, 42, 144], [178, 43, 143], [179, 44, 142], [180, 46, 141], [181, 47, 140], [182, 48, 139], [183, 49, 138], [184, 50, 137], [186, 51, 136], [187, 52, 136], [188, 53, 135], [189, 55, 134], [190, 56, 133], [191, 57, 132], [192, 58, 131], [193, 59, 130], [194, 60, 129], [195, 61, 128], [196, 62, 127], [197, 64, 126], [198, 65, 125], [199, 66, 124], [200, 67, 123], [201, 68, 122], [202, 69, 122], [203, 70, 121], [204, 71, 120], [204, 73, 119], [205, 74, 118], [206, 75, 117], [207, 76, 116], [208, 77, 115], [209, 78, 114], [210, 79, 113], [211, 81, 113], [212, 82, 112], [213, 83, 111], [213, 84, 110], [214, 85, 109], [215, 86, 108], [216, 87, 107], [217, 88, 106], [218, 90, 106], [218, 91, 105], [219, 92, 104], [220, 93, 103], [221, 94, 102], [222, 95, 101], [222, 97, 100], [223, 98, 99], [224, 99, 99], [225, 100, 98], [226, 101, 97], [226, 102, 96], [227, 104, 95], [228, 105, 94], [229, 106, 93], [229, 107, 93], [230, 108, 92], [231, 110, 91], [231, 111, 90], [232, 112, 89], [233, 113, 88], [233, 114, 87], [234, 116, 87], [235, 117, 86], [235, 118, 85], [236, 119, 84], [237, 121, 83], [237, 122, 82], [238, 123, 81], [239, 124, 81], [239, 126, 80], [240, 127, 79], [240, 128, 78], [241, 129, 77], [241, 131, 76], [242, 132, 75], [243, 133, 75], [243, 135, 74], [244, 136, 73], [244, 137, 72], [245, 139, 71], [245, 140, 70], [246, 141, 69], [246, 143, 68], [247, 144, 68], [247, 145, 67], [247, 147, 66], [248, 148, 65], [248, 149, 64], [249, 151, 63], [249, 152, 62], [249, 154, 62], [250, 155, 61], [250, 156, 60], [250, 158, 59], [251, 159, 58], [251, 161, 57], [251, 162, 56], [252, 163, 56], [252, 165, 55], [252, 166, 54], [252, 168, 53], [252, 169, 52], [253, 171, 51], [253, 172, 51], [253, 174, 50], [253, 175, 49], [253, 177, 48], [253, 178, 47], [253, 180, 47], [253, 181, 46], [254, 183, 45], [254, 184, 44], [254, 186, 44], [254, 187, 43], [254, 189, 42], [254, 190, 42], [254, 192, 41], [253, 194, 41], [253, 195, 40], [253, 197, 39], [253, 198, 39], [253, 200, 39], [253, 202, 38], [253, 203, 38], [252, 205, 37], [252, 206, 37], [252, 208, 37], [252, 210, 37], [251, 211, 36], [251, 213, 36], [251, 215, 36], [250, 216, 36], [250, 218, 36], [249, 220, 36], [249, 221, 37], [248, 223, 37], [248, 225, 37], [247, 226, 37], [247, 228, 37], [246, 230, 38], [246, 232, 38], [245, 233, 38], [245, 235, 39], [244, 237, 39], [243, 238, 39], [243, 240, 39], [242, 242, 39], [241, 244, 38], [241, 245, 37], [240, 247, 36], [240, 249, 33]] var rainbow = [[128, 0, 255], [126, 3, 255], [124, 6, 255], [122, 9, 255], [120, 13, 255], [118, 16, 255], [116, 19, 255], [114, 22, 255], [112, 25, 255], [110, 28, 255], [108, 31, 255], [106, 34, 254], [104, 38, 254], [102, 41, 254], [100, 44, 254], [98, 47, 254], [96, 50, 254], [94, 53, 254], [92, 56, 253], [90, 59, 253], [88, 62, 253], [86, 65, 253], [84, 68, 253], [82, 71, 252], [80, 74, 252], [78, 77, 252], [76, 80, 252], [74, 83, 251], [72, 86, 251], [70, 89, 251], [68, 92, 251], [66, 95, 250], [64, 98, 250], [62, 101, 250], [60, 104, 249], [57, 107, 249], [56, 109, 249], [54, 112, 248], [52, 115, 248], [49, 118, 248], [48, 121, 247], [46, 123, 247], [44, 126, 247], [41, 129, 246], [40, 132, 246], [38, 134, 245], [36, 137, 245], [33, 140, 244], [32, 142, 244], [30, 145, 243], [28, 147, 243], [25, 150, 243], [24, 152, 242], [22, 155, 242], [20, 157, 241], [17, 160, 241], [16, 162, 240], [14, 165, 239], [12, 167, 239], [9, 169, 238], [8, 172, 238], [6, 174, 237], [4, 176, 237], [1, 179, 236], [0, 181, 235], [2, 183, 235], [4, 185, 234], [7, 187, 234], [8, 190, 233], [10, 192, 232], [13, 194, 232], [15, 196, 231], [16, 198, 230], [18, 200, 230], [20, 202, 229], [23, 203, 228], [24, 205, 228], [26, 207, 227], [29, 209, 226], [31, 211, 225], [32, 213, 225], [34, 214, 224], [36, 216, 223], [39, 218, 222], [40, 219, 222], [42, 221, 221], [45, 222, 220], [47, 224, 219], [48, 225, 218], [50, 227, 218], [52, 228, 217], [55, 230, 216], [56, 231, 215], [58, 232, 214], [61, 234, 213], [63, 235, 213], [64, 236, 212], [66, 237, 211], [68, 238, 210], [70, 239, 209], [72, 241, 208], [74, 242, 207], [77, 243, 206], [78, 243, 205], [80, 244, 204], [82, 245, 203], [84, 246, 203], [86, 247, 202], [88, 248, 201], [90, 248, 200], [93, 249, 199], [94, 250, 198], [96, 250, 197], [98, 251, 196], [100, 251, 195], [102, 252, 194], [104, 252, 193], [106, 253, 192], [109, 253, 191], [110, 254, 190], [112, 254, 188], [114, 254, 187], [116, 254, 186], [118, 255, 185], [120, 255, 184], [122, 255, 183], [125, 255, 182], [126, 255, 181], [128, 255, 180], [130, 255, 179], [132, 255, 178], [134, 255, 176], [136, 255, 175], [139, 254, 174], [140, 254, 173], [142, 254, 172], [144, 254, 171], [146, 253, 169], [148, 253, 168], [150, 252, 167], [153, 252, 166], [155, 251, 165], [156, 251, 164], [158, 250, 162], [160, 250, 161], [162, 249, 160], [164, 248, 159], [166, 248, 157], [168, 247, 156], [171, 246, 155], [172, 245, 154], [174, 244, 152], [176, 243, 151], [178, 243, 150], [180, 242, 149], [182, 241, 147], [185, 239, 146], [187, 238, 145], [188, 237, 143], [190, 236, 142], [192, 235, 141], [194, 234, 140], [196, 232, 138], [198, 231, 137], [200, 230, 136], [203, 228, 134], [204, 227, 133], [206, 225, 132], [208, 224, 130], [210, 222, 129], [212, 221, 128], [214, 219, 126], [217, 218, 125], [219, 216, 123], [220, 214, 122], [222, 213, 121], [224, 211, 119], [226, 209, 118], [228, 207, 116], [230, 205, 115], [232, 203, 114], [235, 202, 112], [236, 200, 111], [238, 198, 109], [240, 196, 108], [242, 194, 107], [244, 192, 105], [246, 190, 104], [249, 187, 102], [251, 185, 101], [252, 183, 99], [254, 181, 98], [255, 179, 96], [255, 176, 95], [255, 174, 94], [255, 172, 92], [255, 169, 91], [255, 167, 89], [255, 165, 88], [255, 162, 86], [255, 160, 85], [255, 157, 83], [255, 155, 82], [255, 152, 80], [255, 150, 79], [255, 147, 77], [255, 145, 76], [255, 142, 74], [255, 140, 73], [255, 137, 71], [255, 134, 70], [255, 132, 68], [255, 129, 67], [255, 126, 65], [255, 123, 64], [255, 121, 62], [255, 118, 61], [255, 115, 59], [255, 112, 58], [255, 109, 56], [255, 107, 55], [255, 104, 53], [255, 101, 51], [255, 98, 50], [255, 95, 48], [255, 92, 47], [255, 89, 45], [255, 86, 44], [255, 83, 42], [255, 80, 41], [255, 77, 39], [255, 74, 38], [255, 71, 36], [255, 68, 34], [255, 65, 33], [255, 62, 31], [255, 59, 30], [255, 56, 28], [255, 53, 27], [255, 50, 25], [255, 47, 24], [255, 44, 22], [255, 41, 20], [255, 38, 19], [255, 34, 17], [255, 31, 16], [255, 28, 14], [255, 25, 13], [255, 22, 11], [255, 19, 9], [255, 16, 8], [255, 13, 6], [255, 9, 5], [255, 6, 3], [255, 3, 2], [255, 0, 0]] var ocean = [[0, 128, 0], [0, 126, 1], [0, 124, 2], [0, 123, 3], [0, 122, 4], [0, 120, 5], [0, 118, 6], [0, 117, 7], [0, 116, 8], [0, 114, 9], [0, 112, 10], [0, 111, 11], [0, 110, 12], [0, 108, 13], [0, 106, 14], [0, 105, 15], [0, 104, 16], [0, 102, 17], [0, 100, 18], [0, 99, 19], [0, 98, 20], [0, 96, 21], [0, 94, 22], [0, 93, 23], [0, 92, 24], [0, 90, 25], [0, 88, 26], [0, 87, 27], [0, 86, 28], [0, 84, 29], [0, 82, 30], [0, 81, 31], [0, 80, 32], [0, 78, 33], [0, 76, 34], [0, 75, 35], [0, 74, 36], [0, 72, 37], [0, 70, 38], [0, 69, 39], [0, 68, 40], [0, 66, 41], [0, 64, 42], [0, 63, 43], [0, 62, 44], [0, 60, 45], [0, 59, 46], [0, 57, 47], [0, 56, 48], [0, 54, 49], [0, 52, 50], [0, 51, 51], [0, 49, 52], [0, 48, 53], [0, 47, 54], [0, 45, 55], [0, 44, 56], [0, 42, 57], [0, 40, 58], [0, 39, 59], [0, 38, 60], [0, 36, 61], [0, 35, 62], [0, 33, 63], [0, 32, 64], [0, 30, 65], [0, 29, 66], [0, 27, 67], [0, 25, 68], [0, 24, 69], [0, 22, 70], [0, 21, 71], [0, 20, 72], [0, 18, 73], [0, 17, 74], [0, 15, 75], [0, 14, 76], [0, 12, 77], [0, 10, 78], [0, 9, 79], [0, 8, 80], [0, 6, 81], [0, 5, 82], [0, 3, 83], [0, 1, 84], [0, 0, 85], [0, 1, 86], [0, 3, 87], [0, 4, 88], [0, 6, 89], [0, 7, 90], [0, 9, 91], [0, 10, 92], [0, 12, 93], [0, 14, 94], [0, 15, 95], [0, 16, 96], [0, 18, 97], [0, 19, 98], [0, 21, 99], [0, 23, 100], [0, 24, 101], [0, 26, 102], [0, 27, 103], [0, 29, 104], [0, 30, 105], [0, 32, 106], [0, 33, 107], [0, 34, 108], [0, 36, 109], [0, 38, 110], [0, 39, 111], [0, 40, 112], [0, 42, 113], [0, 43, 114], [0, 45, 115], [0, 47, 116], [0, 48, 117], [0, 49, 118], [0, 51, 119], [0, 52, 120], [0, 54, 121], [0, 55, 122], [0, 57, 123], [0, 58, 124], [0, 60, 125], [0, 62, 126], [0, 63, 127], [0, 64, 128], [0, 66, 129], [0, 67, 130], [0, 69, 131], [0, 70, 132], [0, 72, 133], [0, 74, 134], [0, 75, 135], [0, 77, 136], [0, 78, 137], [0, 80, 138], [0, 81, 139], [0, 83, 140], [0, 84, 141], [0, 86, 142], [0, 87, 143], [0, 88, 144], [0, 90, 145], [0, 91, 146], [0, 93, 147], [0, 94, 148], [0, 96, 149], [0, 98, 150], [0, 99, 151], [0, 100, 152], [0, 102, 153], [0, 103, 154], [0, 105, 155], [0, 107, 156], [0, 108, 157], [0, 110, 158], [0, 111, 159], [0, 112, 160], [0, 114, 161], [0, 115, 162], [0, 117, 163], [0, 118, 164], [0, 120, 165], [0, 122, 166], [0, 123, 167], [0, 125, 168], [0, 126, 169], [0, 128, 170], [3, 129, 171], [6, 130, 172], [9, 132, 173], [12, 133, 174], [15, 135, 175], [18, 136, 176], [21, 138, 177], [24, 139, 178], [27, 141, 179], [30, 142, 180], [33, 144, 181], [36, 146, 182], [39, 147, 183], [42, 148, 184], [45, 150, 185], [48, 151, 186], [51, 153, 187], [54, 155, 188], [57, 156, 189], [60, 158, 190], [63, 159, 191], [66, 160, 192], [69, 162, 193], [72, 163, 194], [75, 165, 195], [78, 166, 196], [81, 168, 197], [84, 170, 198], [87, 171, 199], [90, 172, 200], [93, 174, 201], [96, 176, 202], [99, 177, 203], [102, 179, 204], [105, 180, 205], [108, 182, 206], [111, 183, 207], [114, 185, 208], [117, 186, 209], [120, 188, 210], [123, 189, 211], [126, 190, 212], [129, 192, 213], [132, 194, 214], [135, 195, 215], [138, 196, 216], [141, 198, 217], [144, 199, 218], [147, 201, 219], [150, 203, 220], [153, 204, 221], [156, 206, 222], [159, 207, 223], [162, 208, 224], [165, 210, 225], [168, 211, 226], [171, 213, 227], [174, 214, 228], [177, 216, 229], [180, 218, 230], [183, 219, 231], [186, 220, 232], [189, 222, 233], [192, 224, 234], [195, 225, 235], [198, 226, 236], [201, 228, 237], [204, 229, 238], [207, 231, 239], [210, 232, 240], [213, 234, 241], [216, 235, 242], [219, 237, 243], [222, 238, 244], [225, 240, 245], [228, 242, 246], [231, 243, 247], [234, 244, 248], [237, 246, 249], [240, 247, 250], [243, 249, 251], [246, 251, 252], [249, 252, 253], [252, 254, 254], [255, 255, 255]] var colormaps = [turbo, fosphor, viridis, inferno, magma, jet, binary, plasma, rainbow, ocean]; ================================================ FILE: freedata_gui/src/assets/waterfall/waterfall.css ================================================ html, body { width: 100%; height: 100%; margin: 0px; } #waterfall { display: block; width: 100%; height: 100%; } ================================================ FILE: freedata_gui/src/components/chat_conversations.vue ================================================ ================================================ FILE: freedata_gui/src/components/chat_messages.vue ================================================ ================================================ FILE: freedata_gui/src/components/chat_messages_action_menu.vue ================================================ ================================================ FILE: freedata_gui/src/components/chat_messages_image_preview.vue ================================================ ================================================ FILE: freedata_gui/src/components/chat_messages_received.vue ================================================ ================================================ FILE: freedata_gui/src/components/chat_messages_sent.vue ================================================ ================================================ FILE: freedata_gui/src/components/chat_new_message.vue ================================================